Homework 1

Sophie Du

In [4]:
import nltk
nltk.download()
import spacy
from spacy.lang.en import English
import stanfordnlp
stanfordnlp.download('en')
showing info https://raw.githubusercontent.com/nltk/nltk_data/gh-pages/index.xml
Using the default treebank "en_ewt" for language "en".
Would you like to download the models for: en_ewt now? (Y/n)
y

Default download directory: /Users/Sophie/stanfordnlp_resources
Hit enter to continue or type an alternate directory.


Downloading models for: en_ewt
Download location: /Users/Sophie/stanfordnlp_resources/en_ewt_models.zip
100%|██████████| 235M/235M [24:23<00:00, 160kB/s] 
Download complete.  Models saved to: /Users/Sophie/stanfordnlp_resources/en_ewt_models.zip
Extracting models file for: en_ewt
Cleaning up...Done.

Problem 1

In [80]:
import os
import time
with open('20-newsgroups/sci.med.txt', encoding = 'utf8', errors = 'ignore') as f:
    text = str(f.read().replace('\n', ''))
In [72]:
## sample text data
sample = """Newsgroup: sci.med
document_id: 58045
From: fulk@cs.rochester.edu (Mark Fulk)
Subject: Re: Breech Baby Info Needed

In article <1993Apr5.151818.27409@trentu.ca> xtkmg@trentu.ca (Kate Gregory) writes:
>In article <1993Apr3.161757.19612@cs.rochester.edu> fulk@cs.rochester.edu (Mark Fulk) writes:
>>
>>Another uncommon problem is maternal hemorrhage.  I don't remember the
>>incidence, but it is something like 1 in 1,000 or 10,000 births.  It is hard
>>to see how you could handle it at home, and you wouldn't have very much time.
>>
>>thing you might consider is that people's risk tradeoffs vary.  I consider
>>a 1/1,000 risk of loss of a loved one to require considerable effort in
>>the avoiding.
>
>Mark, you seem to be terrified of the birth process

That's ridiculous!

>and unable to
>believe that women's bodies are actually designed to do it.

They aren't designed, they evolved.  And, much as it discomforts us, in
humans a trouble-free birth process was sacrificed to increased brain and
cranial size.  Wild animals have a much easier time with birth than humans do.
Domestic horses and cows typically have a worse time.  To give you an idea:
my family tree is complicated because a few of my pioneer great-great-
grandfathers had several wives, and we never could figure out which wife
had each child.  One might ask why this happened.  My great-great-
grandfathers were, by the time they reached their forties, quite prosperous
farmers.  Nonetheless, they lost several wives each to the rigors of
childbirth; the graveyards in Spencer, Indiana, and Boswell, North Dakota,
contain quite a few gravestones like "Ida, wf. of Jacob Liptrap, and
baby, May 6, 1853."

>You wanted
>to section all women carrying breech in case one in a hundred or a
>thousand breech babies get hung up in second stage,

More like one in ten.  And the consequences can be devastating; I have
direct experience of more than a dozen victims of a fouled-up breech birth.

>and now you want
>all babies born in hospital based on a guess of how likely maternal
>hemorrhage is and a false belief that it is fatal.

It isn't always fatal.  But it is often fatal, when it happens out of
reach of adequate help.  More often, it permanently damages one's health.

Clearly women's bodies _evolved_ to give birth (I am no believer in divine
design); however, evolution did not favor trouble-free births for humans.  

>You have your kids where you want. You encourage your wife to
>get six inch holes cut through her stomach muscles, expose herself
>to anesthesia and infection, and whatever other "just in case" measures
>you think are necessary.

My, aren't we wroth!  I haven't read a more outrageous straw man attack
in months!  I can practically see your mouth foam.

We're statistically sophisticated enough to balance the risks.  Although
I can't produce exact statistics 5 years after the last time we looked
them up, rest assured that we balanced C-section risks against other risks.
I wouldn't encourage my wife to have a Caesarean unless it was clearly
indicated; on the other hand, I am opposed (on obvious grounds) to waiting
until an emergency to give in.

And bear this in mind: my wife took the lead in all of these decisions.
We talked things over, and I did a lot of the leg work, but the main
decisions were really hers.

>But I for one am bothered by your continued
>suggestions, especially to the misc.kidders pregnant for the first
>time, that birth is dangerous, even fatal, and that all these
>unpleasant things are far better than the risks you run just doing
>it naturally.

I don't know of very many home birth advocates, even, that think that
a first-time mother should have her baby at home.

>I'm no Luddite. I've had a section. I'm planning a hospital birth
>this time. But for heaven's sake, not everyone needs that!

But people should bother to find out the relative risks.  My wife was
unwilling to take any significant risks in order to have nice surroundings.
In view of the intensity of the birth experience, I doubt surroundings
have much importance anyway.  Somehow the values you're advocating seem
all lopsided to me: taking risks, even if fairly small, of serious
permanent harm in order to preserve something that is, after all,
an esthetic consideration.
-- 
Mark A. Fulk			University of Rochester
Computer Science Department	fulk@cs.rochester.edu
"""

NLTK

In [83]:
## Sentence tokenize
from nltk.tokenize import sent_tokenize
now = time.time()
sent_nltk = sent_tokenize(text)
print('NLTK took %s seconds for sentence tokenize'%(time.time()-now))
NLTK took 1.378211259841919 for sentence tokenize
In [84]:
## Word tokenize
from nltk.tokenize import word_tokenize
## tokenize text
now = time.time()
word_nltk = word_tokenize(text)
print('NLTK took %s seconds for word tokenize'%(time.time()-now))
NLTK took 4.892294883728027 seconds for word tokenize
In [86]:
## stemming
from nltk.stem import PorterStemmer
ps = PorterStemmer()
words = list(set(word_tokenize(sample)))
for word in words:
    print(ps.stem(word))
should
if
experi
encourag
am
give
bother
,
someth
home
grandfath
expos
wa
infect
especi
complic
danger
by
balanc
6
write
against
not
fulk
peopl
fulk
``
foam
year
exact
indic
anoth
thi
plan
rest
which
more
perman
.
veri
stage
guess
<
misc.kidd
kid
decis
need
health
advoc
figur
mani
My
continu
did
lopsid
cranial
do
that
gregori
hand
work
perman
famili
few
or
at
think
--
they
10,000
happen
howev
alway
ca
talk
suggest
1993apr3.161757.19612
reach
whatev
kate
ground
order
over
much
we
read
lost
thing
unwil
run
seem
with
ten
obviou
the
leg
all
than
prosper
childbirth
matern
quit
adequ
unabl
articl
's
To
do
could
1853
human
me
bodi
they
wife
view
my
you
carri
no
but
'm
as
5
straw
never
a
pioneer
inch
uncommon
Re
see
becaus
might
requir
necessari
brain
1/1,000
cow
design
produc
cut
hole
bear
import
small
and
fouled-up
trouble-fre
it
one
when
)
discomfort
clearli
clearli
thing
women
damag
intens
babi
avoid
hors
hung
A.
hemorrhag
out
even
ask
believ
their
north
after
her
mark
help
often
liptrap
easier
spencer
wait
take
rel
rememb
in
now
victim
trentu.ca
:
preserv
contain
these
lead
boswel
assur
tree
advoc
wild
six
thousand
mother
divin
harm
last
sophist
is
take
get
valu
loss
evolv
like
an
process
1
born
We
It
believ
nice
dakota
where
risk
emerg
c-section
somehow
idea
actual
babi
anim
effort
want
1993apr5.151818.27409
hospit
ani
farmer
doubt
scienc
better
wf
up
devast
handl
ida
lot
to
comput
info
us
sacrif
seriou
first
breech
balanc
signific
luddit
vari
ridicul
want
cs.rochester.edu
whi
bother
esthet
anesthesia
I
but
pregnant
xtkmg
know
happen
@
have
were
man
heaven
case
took
fairli
first-tim
;
are
newsgroup
consider
consider
58045
would
incid
unless
natur
can
sake
babi
them
graveston
find
document_id
tradeoff
time
section
sever
statist
love
reach
had
fatal
main
favor
far
_evolved_
caesarean
attack
birth
univers
on
statist
surround
rigor
In
mouth
subject
your
're
consid
dozen
practic
like
breech
herself
've
depart
typic
child
second
direct
terrifi
enough
more
!
indiana
nonetheless
forti
>
everyon
graveyard
until
one
just
unpleas
mind
for
realli
consequ
1,000
birth
increas
fals
be
wroth
outrag
stomach
need
other
sci.m
although
n't
design
domest
hundr
anyway
jacob
through
(
hard
base
wive
and
belief
may
rochest
measur
risk
wors
look
that
of
you
size
her
evolut
muscl
each
oppos
''
month
problem
from
how
great-great-
In [87]:
## POS tagging
nltk.pos_tag(words)
Out[87]:
[('should', 'MD'),
 ('if', 'IN'),
 ('experience', 'NN'),
 ('encourage', 'NN'),
 ('am', 'VBP'),
 ('give', 'JJ'),
 ('bothered', 'VBN'),
 (',', ','),
 ('something', 'NN'),
 ('home', 'NN'),
 ('grandfathers', 'NNS'),
 ('expose', 'VBP'),
 ('was', 'VBD'),
 ('infection', 'NN'),
 ('especially', 'RB'),
 ('complicated', 'VBN'),
 ('dangerous', 'JJ'),
 ('by', 'IN'),
 ('balanced', 'JJ'),
 ('6', 'CD'),
 ('writes', 'NNS'),
 ('against', 'IN'),
 ('not', 'RB'),
 ('fulk', 'JJ'),
 ('people', 'NNS'),
 ('Fulk', 'NNP'),
 ('``', '``'),
 ('foam', 'JJ'),
 ('years', 'NNS'),
 ('exact', 'RB'),
 ('indicated', 'VBD'),
 ('Another', 'DT'),
 ('this', 'DT'),
 ('planning', 'NN'),
 ('rest', 'NN'),
 ('which', 'WDT'),
 ('more', 'RBR'),
 ('permanently', 'RB'),
 ('.', '.'),
 ('very', 'RB'),
 ('stage', 'JJ'),
 ('guess', 'NN'),
 ('<', 'NN'),
 ('misc.kidders', 'NNS'),
 ('kids', 'VBP'),
 ('decisions', 'NNS'),
 ('needs', 'VBZ'),
 ('health', 'NN'),
 ('advocates', 'NNS'),
 ('figure', 'VBP'),
 ('many', 'JJ'),
 ('My', 'NNP'),
 ('continued', 'VBD'),
 ('did', 'VBD'),
 ('lopsided', 'JJ'),
 ('cranial', 'NN'),
 ('do', 'VBP'),
 ('that', 'IN'),
 ('Gregory', 'NNP'),
 ('hand', 'NN'),
 ('work', 'NN'),
 ('permanent', 'JJ'),
 ('family', 'NN'),
 ('few', 'JJ'),
 ('or', 'CC'),
 ('at', 'IN'),
 ('think', 'VBP'),
 ('--', ':'),
 ('they', 'PRP'),
 ('10,000', 'CD'),
 ('happens', 'NNS'),
 ('however', 'RB'),
 ('always', 'RB'),
 ('ca', 'MD'),
 ('talked', 'VBD'),
 ('suggestions', 'NNS'),
 ('1993Apr3.161757.19612', 'CD'),
 ('reached', 'VBD'),
 ('whatever', 'WDT'),
 ('Kate', 'NNP'),
 ('grounds', 'VBZ'),
 ('order', 'NN'),
 ('over', 'IN'),
 ('much', 'JJ'),
 ('we', 'PRP'),
 ('read', 'VBP'),
 ('lost', 'VBN'),
 ('things', 'NNS'),
 ('unwilling', 'JJ'),
 ('run', 'NN'),
 ('seem', 'VBP'),
 ('with', 'IN'),
 ('ten', 'NNS'),
 ('obvious', 'JJ'),
 ('the', 'DT'),
 ('leg', 'NN'),
 ('all', 'DT'),
 ('than', 'IN'),
 ('prosperous', 'JJ'),
 ('childbirth', 'JJ'),
 ('maternal', 'JJ'),
 ('quite', 'NN'),
 ('adequate', 'NN'),
 ('unable', 'JJ'),
 ('article', 'NN'),
 ("'s", 'POS'),
 ('To', 'TO'),
 ('doing', 'VBG'),
 ('could', 'MD'),
 ('1853', 'CD'),
 ('humans', 'NNS'),
 ('me', 'PRP'),
 ('bodies', 'VBZ'),
 ('They', 'PRP'),
 ('wife', 'NN'),
 ('view', 'VBP'),
 ('my', 'PRP$'),
 ('You', 'PRP'),
 ('carrying', 'VBG'),
 ('no', 'DT'),
 ('but', 'CC'),
 ("'m", 'VBP'),
 ('as', 'IN'),
 ('5', 'CD'),
 ('straw', 'JJ'),
 ('never', 'RB'),
 ('a', 'DT'),
 ('pioneer', 'NN'),
 ('inch', 'NN'),
 ('uncommon', 'JJ'),
 ('Re', 'NNP'),
 ('see', 'NN'),
 ('because', 'IN'),
 ('might', 'MD'),
 ('require', 'VB'),
 ('necessary', 'JJ'),
 ('brain', 'NN'),
 ('1/1,000', 'CD'),
 ('cows', 'NNS'),
 ('designed', 'VBN'),
 ('produce', 'VBP'),
 ('cut', 'VBN'),
 ('holes', 'NNS'),
 ('bear', 'VBP'),
 ('importance', 'NN'),
 ('small', 'JJ'),
 ('And', 'CC'),
 ('fouled-up', 'JJ'),
 ('trouble-free', 'JJ'),
 ('it', 'PRP'),
 ('One', 'CD'),
 ('when', 'WRB'),
 (')', ')'),
 ('discomforts', 'VBZ'),
 ('Clearly', 'RB'),
 ('clearly', 'RB'),
 ('thing', 'NN'),
 ('women', 'NNS'),
 ('damages', 'NNS'),
 ('intensity', 'NN'),
 ('Baby', 'NNP'),
 ('avoiding', 'VBG'),
 ('horses', 'NNS'),
 ('hung', 'VBD'),
 ('A.', 'NNP'),
 ('hemorrhage', 'NN'),
 ('out', 'RP'),
 ('even', 'RB'),
 ('ask', 'VB'),
 ('believer', 'RP'),
 ('their', 'PRP$'),
 ('North', 'NN'),
 ('after', 'IN'),
 ('her', 'PRP$'),
 ('Mark', 'NNP'),
 ('help', 'NN'),
 ('often', 'RB'),
 ('Liptrap', 'NNP'),
 ('easier', 'JJR'),
 ('Spencer', 'NNP'),
 ('waiting', 'VBG'),
 ('take', 'VB'),
 ('relative', 'JJ'),
 ('remember', 'NN'),
 ('in', 'IN'),
 ('now', 'RB'),
 ('victims', 'NNS'),
 ('trentu.ca', 'NN'),
 (':', ':'),
 ('preserve', 'NN'),
 ('contain', 'VBP'),
 ('these', 'DT'),
 ('lead', 'VBP'),
 ('Boswell', 'NNP'),
 ('assured', 'VBD'),
 ('tree', 'JJ'),
 ('advocating', 'VBG'),
 ('Wild', 'JJ'),
 ('six', 'CD'),
 ('thousand', 'VBP'),
 ('mother', 'JJR'),
 ('divine', 'NN'),
 ('harm', 'NN'),
 ('last', 'JJ'),
 ('sophisticated', 'JJ'),
 ('is', 'VBZ'),
 ('taking', 'VBG'),
 ('get', 'VB'),
 ('values', 'NNS'),
 ('loss', 'NN'),
 ('evolved', 'VBD'),
 ('likely', 'JJ'),
 ('an', 'DT'),
 ('process', 'NN'),
 ('1', 'CD'),
 ('born', 'IN'),
 ('We', 'PRP'),
 ('It', 'PRP'),
 ('believe', 'VBP'),
 ('nice', 'JJ'),
 ('Dakota', 'NNP'),
 ('where', 'WRB'),
 ('risk', 'NN'),
 ('emergency', 'NN'),
 ('C-section', 'NNP'),
 ('Somehow', 'NNP'),
 ('idea', 'NN'),
 ('actually', 'RB'),
 ('babies', 'VBZ'),
 ('animals', 'NNS'),
 ('effort', 'NN'),
 ('want', 'VBP'),
 ('1993Apr5.151818.27409', 'CD'),
 ('hospital', 'NN'),
 ('any', 'DT'),
 ('farmers', 'NNS'),
 ('doubt', 'VBP'),
 ('Science', 'NNP'),
 ('better', 'RB'),
 ('wf', 'VBD'),
 ('up', 'RP'),
 ('devastating', 'VBG'),
 ('handle', 'JJ'),
 ('Ida', 'NNP'),
 ('lot', 'NN'),
 ('to', 'TO'),
 ('Computer', 'NNP'),
 ('Info', 'NNP'),
 ('us', 'PRP'),
 ('sacrificed', 'VBD'),
 ('serious', 'JJ'),
 ('first', 'JJ'),
 ('Breech', 'NNP'),
 ('balance', 'NN'),
 ('significant', 'JJ'),
 ('Luddite', 'NNP'),
 ('vary', 'VBP'),
 ('ridiculous', 'JJ'),
 ('wanted', 'VBD'),
 ('cs.rochester.edu', 'JJ'),
 ('why', 'WRB'),
 ('bother', 'RB'),
 ('esthetic', 'JJ'),
 ('anesthesia', 'NN'),
 ('I', 'PRP'),
 ('But', 'CC'),
 ('pregnant', 'JJ'),
 ('xtkmg', 'NN'),
 ('know', 'VBP'),
 ('happened', 'VBN'),
 ('@', 'NNS'),
 ('have', 'VBP'),
 ('were', 'VBD'),
 ('man', 'NN'),
 ('heaven', 'NN'),
 ('case', 'NN'),
 ('took', 'VBD'),
 ('fairly', 'RB'),
 ('first-time', 'JJ'),
 (';', ':'),
 ('are', 'VBP'),
 ('Newsgroup', 'NNP'),
 ('consideration', 'NN'),
 ('considerable', 'JJ'),
 ('58045', 'CD'),
 ('would', 'MD'),
 ('incidence', 'VB'),
 ('unless', 'IN'),
 ('naturally', 'RB'),
 ('can', 'MD'),
 ('sake', 'VB'),
 ('baby', 'VB'),
 ('them', 'PRP'),
 ('gravestones', 'NNS'),
 ('find', 'VBP'),
 ('document_id', 'JJ'),
 ('tradeoffs', 'NNS'),
 ('time', 'NN'),
 ('section', 'NN'),
 ('several', 'JJ'),
 ('statistically', 'RB'),
 ('loved', 'VBN'),
 ('reach', 'NN'),
 ('had', 'VBD'),
 ('fatal', 'JJ'),
 ('main', 'JJ'),
 ('favor', 'NN'),
 ('far', 'RB'),
 ('_evolved_', 'JJ'),
 ('Caesarean', 'NNP'),
 ('attack', 'NN'),
 ('birth', 'NN'),
 ('University', 'NNP'),
 ('on', 'IN'),
 ('statistics', 'NNS'),
 ('surroundings', 'NNS'),
 ('rigors', 'NNS'),
 ('In', 'IN'),
 ('mouth', 'NN'),
 ('Subject', 'NNP'),
 ('your', 'PRP$'),
 ("'re", 'VBP'),
 ('consider', 'VB'),
 ('dozen', 'NN'),
 ('practically', 'RB'),
 ('like', 'IN'),
 ('breech', 'NN'),
 ('herself', 'PRP'),
 ("'ve", 'VBP'),
 ('Department', 'NNP'),
 ('typically', 'RB'),
 ('child', 'VBP'),
 ('second', 'JJ'),
 ('direct', 'JJ'),
 ('terrified', 'VBD'),
 ('enough', 'RB'),
 ('More', 'JJR'),
 ('!', '.'),
 ('Indiana', 'NNP'),
 ('Nonetheless', 'NNP'),
 ('forties', 'NNS'),
 ('>', 'VBP'),
 ('everyone', 'NN'),
 ('graveyards', 'NNS'),
 ('until', 'IN'),
 ('one', 'CD'),
 ('just', 'RB'),
 ('unpleasant', 'JJ'),
 ('mind', 'NN'),
 ('for', 'IN'),
 ('really', 'RB'),
 ('consequences', 'NNS'),
 ('1,000', 'CD'),
 ('births', 'NNS'),
 ('increased', 'VBD'),
 ('false', 'JJ'),
 ('be', 'VB'),
 ('wroth', 'VBN'),
 ('outrageous', 'JJ'),
 ('stomach', 'NN'),
 ('Needed', 'VBD'),
 ('other', 'JJ'),
 ('sci.med', 'VBD'),
 ('Although', 'IN'),
 ("n't", 'RB'),
 ('design', 'VB'),
 ('Domestic', 'JJ'),
 ('hundred', 'CD'),
 ('anyway', 'RB'),
 ('Jacob', 'NNP'),
 ('through', 'IN'),
 ('(', '('),
 ('hard', 'JJ'),
 ('based', 'VBN'),
 ('wives', 'NNS'),
 ('and', 'CC'),
 ('belief', 'NN'),
 ('May', 'NNP'),
 ('Rochester', 'NNP'),
 ('measures', 'VBZ'),
 ('risks', 'NNS'),
 ('worse', 'JJR'),
 ('looked', 'VBD'),
 ('That', 'IN'),
 ('of', 'IN'),
 ('you', 'PRP'),
 ('size', 'NN'),
 ('hers', 'NNS'),
 ('evolution', 'VBP'),
 ('muscles', 'NNS'),
 ('each', 'DT'),
 ('opposed', 'VBN'),
 ("''", "''"),
 ('months', 'NNS'),
 ('problem', 'NN'),
 ('From', 'IN'),
 ('how', 'WRB'),
 ('great-great-', 'JJ')]

Spacy

In [88]:
## sentence tokenize
now = time.time()
nlp = English()
nlp.max_length = 20000000
nlp.add_pipe(nlp.create_pipe('sentencizer'))

now = time.time()
doc = nlp(text)
sent_spc = [sent.string.strip() for sent in doc.sents]
print('Spacy took %s seconds for sentence tokenize'%(time.time()-now))
Spacy took 8.43147897720337 seconds for sentence tokenize
In [90]:
## word tokenize
nlp = English()
nlp.max_length = 50000000
now = time.time()
doc = nlp(text)
word_spc = [token.text for token in doc]
print('Spacy took %s seconds for word tokenize'%(time.time()-now))
Spacy took 7.93451714515686 seconds for word tokenize
In [102]:
## stemming
sp = spacy.load('en')
sp.max_length = 50000000
doc_sp = sp(text)
[token.lemma_ for token in doc_sp]
Out[102]:
['newsgroup',
 ':',
 'sci.meddocument_id',
 ':',
 '57110from',
 ':',
 'bed@intacc.uucp',
 '(',
 'Deb',
 'waddington)subject',
 ':',
 'INFO',
 'NEEDED',
 ':',
 'Gaucher',
 "'s",
 'diseasei',
 'have',
 'a',
 '42',
 'yr',
 'old',
 'male',
 'friend',
 ',',
 'misdiagnose',
 'as',
 'have',
 'osteopporosis',
 'for',
 'two',
 'year',
 ',',
 'who',
 'recently',
 'find',
 'out',
 'that',
 '-PRON-',
 'illness',
 'be',
 'the',
 'rare',
 'Gaucher',
 "'s",
 'disease',
 '.',
 'Gaucher',
 "'s",
 'disease',
 'symptom',
 'include',
 ':',
 'brittle',
 'bone',
 '(',
 '-PRON-',
 'lose',
 '9',
 ' ',
 'inch',
 'off',
 '-PRON-',
 'hieght',
 ')',
 ';',
 'enlarge',
 'liver',
 'and',
 'spleen',
 ';',
 'internal',
 'bleeding',
 ';',
 'and',
 'fatigue',
 '(',
 'all',
 'the',
 'time',
 ')',
 '.',
 'the',
 'problem',
 '(',
 'in',
 'type',
 '1',
 ')',
 'be',
 'attribute',
 'to',
 'a',
 'genetic',
 'mutation',
 'where',
 'there',
 'be',
 'a',
 'lack',
 'of',
 'the',
 'enzyme',
 'glucocerebroside',
 'in',
 'macrophage',
 'so',
 'the',
 'cell',
 'swell',
 'up',
 '.',
 'this',
 'will',
 'eventually',
 'cause',
 'death',
 '.',
 'Enyzme',
 'replacement',
 'therapy',
 'have',
 'be',
 'successfully',
 'develop',
 'and',
 'approve',
 'by',
 'the',
 'FDA',
 'in',
 'the',
 'last',
 'few',
 'year',
 'so',
 'that',
 'those',
 'patient',
 'administer',
 'with',
 'this',
 'drug',
 '(',
 'call',
 'Ceredase',
 ')',
 'report',
 'a',
 'remarkable',
 'improvement',
 'in',
 '-PRON-',
 'condition',
 '.',
 'Ceredase',
 ',',
 'which',
 'be',
 'manufacture',
 'by',
 'biotech',
 'biggy',
 'company',
 '--',
 'Genzyme',
 '--',
 'cost',
 'the',
 'patient',
 '$',
 '380,000',
 'per',
 'year',
 '.',
 'Gaucher',
 "'s",
 'disease',
 'have',
 'justifyably',
 'be',
 'call',
 '"',
 'the',
 'most',
 'expensive',
 'disease',
 'in',
 'the',
 'world"',
 '.',
 'NEED',
 'INFO',
 ':',
 '-PRON-',
 'have',
 'research',
 'Gaucher',
 "'s",
 'disease',
 'at',
 'the',
 'library',
 'but',
 'be',
 'rely',
 'on',
 'netlander',
 'to',
 'provide',
 '-PRON-',
 'with',
 'any',
 'additional',
 'information:**new',
 ',',
 'story',
 ',',
 'reports**people',
 '-PRON-',
 'know',
 'with',
 'this',
 'disease**ideas',
 ',',
 'article',
 'about',
 'Genzyme',
 'Corp',
 ',',
 'how',
 'to',
 'get',
 'a',
 'hold',
 'of',
 '  ',
 'enough',
 'money',
 'to',
 'buy',
 'some',
 ',',
 'program',
 'available',
 'to',
 'help',
 'with',
 '  ',
 'costs.**basically',
 'any',
 'HELP',
 'you',
 'can',
 'offerthank',
 'so',
 'very',
 'much!Deborah',
 'Newsgroup',
 ':',
 'sci.meddocument_id',
 ':',
 '58043from',
 ':',
 'mcdonald@aries.scs.uiuc.edu',
 '(',
 'J.',
 'D.',
 'McDonald)Subject',
 ':',
 're',
 ':',
 'jiggersIn',
 'article',
 '<',
 '78846@cup.portal.com',
 '>',
 'mmm@cup.portal.com',
 '(',
 'Mark',
 'Robert',
 'Thorson',
 ')',
 'writes:>This',
 'would',
 'not',
 'happen',
 'to',
 'be',
 'the',
 'same',
 'thing',
 'as',
 'chigger',
 ',',
 'would',
 'it?>a',
 'truly',
 'awful',
 'parasitic',
 'affliction',
 ',',
 'as',
 '-PRON-',
 'understand',
 '-PRON-',
 '.',
 ' ',
 'tiny',
 'bug',
 '>',
 'dig',
 'deeply',
 'into',
 'the',
 'skin',
 ',',
 'bury',
 '-PRON-',
 '.',
 ' ',
 'Yuck',
 '!',
 ' ',
 '-PRON-',
 'have',
 'these',
 '>',
 'thing',
 'in',
 'Oklahoma',
 '.',
 'close',
 '.',
 '-PRON-',
 'mother',
 'come',
 'from',
 'Gainesville',
 'Tex',
 ',',
 'right',
 'across',
 'the',
 'border',
 '.',
 '-PRON-',
 'claim',
 'to',
 'be',
 'the',
 'chigger',
 'capitol',
 'of',
 'the',
 'world',
 ',',
 'and',
 '-PRON-',
 'believe',
 '-PRON-',
 '.',
 'when',
 '-PRON-',
 'grow',
 'up',
 'in',
 'Fort',
 'Worth',
 '-PRON-',
 'be',
 'bad',
 'enough',
 ',',
 'but',
 'in',
 'Gainesvillein',
 'the',
 'summer',
 'an',
 'attack',
 'be',
 'guarantee',
 '.',
 'Doug',
 'McDonaldNewsgroup',
 ':',
 'sci.meddocument_id',
 ':',
 '58045from',
 ':',
 'fulk@cs.rochester.edu',
 '(',
 'Mark',
 'fulk)subject',
 ':',
 're',
 ':',
 'Breech',
 'Baby',
 'Info',
 'NeededIn',
 'article',
 '<',
 '1993apr5.151818.27409@trentu.ca',
 '>',
 'xtkmg@trentu.ca',
 '(',
 'Kate',
 'Gregory',
 ')',
 'writes:>In',
 'article',
 '<',
 '1993apr3.161757.19612@cs.rochester.edu',
 '>',
 'fulk@cs.rochester.edu',
 '(',
 'Mark',
 'Fulk',
 ')',
 'writes:>>>>Another',
 'uncommon',
 'problem',
 'be',
 'maternal',
 'hemorrhage',
 '.',
 ' ',
 '-PRON-',
 'do',
 'not',
 'remember',
 'the>>incidence',
 ',',
 'but',
 '-PRON-',
 'be',
 'something',
 'like',
 '1',
 'in',
 '1,000',
 'or',
 '10,000',
 'birth',
 '.',
 ' ',
 '-PRON-',
 'be',
 'hard>>to',
 'see',
 'how',
 '-PRON-',
 'could',
 'handle',
 '-PRON-',
 'at',
 'home',
 ',',
 'and',
 '-PRON-',
 'would',
 'not',
 'have',
 'very',
 'much',
 'time.>>>>the',
 '-PRON-',
 'might',
 'consider',
 'be',
 'that',
 'people',
 "'s",
 'risk',
 'tradeoff',
 'vary',
 '.',
 ' ',
 '-PRON-',
 'consider>>a',
 '1/1,000',
 'risk',
 'of',
 'loss',
 'of',
 'a',
 'love',
 'one',
 'to',
 'require',
 'considerable',
 'effort',
 'in>>the',
 'avoiding.>>Mark',
 ',',
 '-PRON-',
 'seem',
 'to',
 'be',
 'terrify',
 'of',
 'the',
 'birth',
 'processthat',
 "'s",
 'ridiculous!>and',
 'unable',
 'to',
 '>',
 'believe',
 'that',
 'woman',
 "'s",
 'body',
 'be',
 'actually',
 'design',
 'to',
 'do',
 '-PRON-',
 '.',
 '-PRON-',
 'be',
 'not',
 'design',
 ',',
 '-PRON-',
 'evolve',
 '.',
 ' ',
 'and',
 ',',
 'much',
 'as',
 '-PRON-',
 'discomfort',
 '-PRON-',
 ',',
 'inhuman',
 'a',
 'trouble',
 '-',
 'free',
 'birth',
 'process',
 'be',
 'sacrifice',
 'to',
 'increase',
 'brain',
 'andcranial',
 'size',
 '.',
 ' ',
 'wild',
 'animal',
 'have',
 'a',
 'much',
 'easy',
 'time',
 'with',
 'birth',
 'than',
 'human',
 'do',
 '.',
 'domestic',
 'horse',
 'and',
 'cow',
 'typically',
 'have',
 'a',
 'bad',
 'time',
 '.',
 ' ',
 'to',
 'give',
 '-PRON-',
 'an',
 'idea',
 ':',
 '-PRON-',
 'family',
 'tree',
 'be',
 'complicate',
 'because',
 'a',
 'few',
 'of',
 '-PRON-',
 'pioneer',
 'great',
 '-',
 'great',
 '-',
 'grandfather',
 'have',
 'several',
 'wife',
 ',',
 'and',
 '-PRON-',
 'never',
 'could',
 'figure',
 'out',
 'which',
 'wifehad',
 'each',
 'child',
 '.',
 ' ',
 'one',
 'might',
 'ask',
 'why',
 'this',
 'happen',
 '.',
 ' ',
 '-PRON-',
 'great',
 '-',
 'great',
 '-',
 'grandfather',
 'be',
 ',',
 'by',
 'the',
 'time',
 '-PRON-',
 'reach',
 '-PRON-',
 'forty',
 ',',
 'quite',
 'prosperousfarmer',
 '.',
 ' ',
 'nonetheless',
 ',',
 '-PRON-',
 'lose',
 'several',
 'wife',
 'each',
 'to',
 'the',
 'rigor',
 'ofchildbirth',
 ';',
 'the',
 'graveyard',
 'in',
 'Spencer',
 ',',
 'Indiana',
 ',',
 'and',
 'Boswell',
 ',',
 'North',
 'Dakota',
 ',',
 'contain',
 'quite',
 'a',
 'few',
 'gravestone',
 'like',
 '"',
 'Ida',
 ',',
 'wf',
 '.',
 'of',
 'Jacob',
 'Liptrap',
 ',',
 'andbaby',
 ',',
 'May',
 '6',
 ',',
 '1853.">You',
 'want',
 '>',
 'to',
 'section',
 'all',
 'woman',
 'carry',
 'breech',
 'in',
 'case',
 'one',
 'in',
 'a',
 'hundred',
 'or',
 'a',
 '>',
 'thousand',
 'breech',
 'baby',
 'get',
 'hang',
 'up',
 'in',
 'second',
 'stage',
 ',',
 'More',
 'like',
 'one',
 'in',
 'ten',
 '.',
 ' ',
 'and',
 'the',
 'consequence',
 'can',
 'be',
 'devastating',
 ';',
 '-PRON-',
 'havedirect',
 'experience',
 'of',
 'more',
 'than',
 'a',
 'dozen',
 'victim',
 'of',
 'a',
 'foul',
 '-',
 'up',
 'breech',
 'birth.>and',
 'now',
 '-PRON-',
 'want',
 '>',
 'all',
 'baby',
 'bear',
 'in',
 'hospital',
 'base',
 'on',
 'a',
 'guess',
 'of',
 'how',
 'likely',
 'maternal',
 '>',
 'hemorrhage',
 'be',
 'and',
 'a',
 'false',
 'belief',
 'that',
 '-PRON-',
 'be',
 'fatal',
 '.',
 '-PRON-',
 'be',
 'not',
 'always',
 'fatal',
 '.',
 ' ',
 'but',
 '-PRON-',
 'be',
 'often',
 'fatal',
 ',',
 'when',
 '-PRON-',
 'happen',
 'out',
 'ofreach',
 'of',
 'adequate',
 'help',
 '.',
 ' ',
 'more',
 'often',
 ',',
 '-PRON-',
 'permanently',
 'damage',
 'one',
 "'s",
 'health',
 '.',
 'clearly',
 'woman',
 "'s",
 'body',
 '_',
 'evolve',
 '_',
 'to',
 'give',
 'birth',
 '(',
 '-PRON-',
 'be',
 'no',
 'believer',
 'in',
 'divinedesign',
 ')',
 ';',
 'however',
 ',',
 'evolution',
 'do',
 'not',
 'favor',
 'trouble',
 '-',
 'free',
 'birth',
 'for',
 'human',
 '.',
 ' ',
 '>',
 '-PRON-',
 'have',
 '-PRON-',
 'kid',
 'where',
 '-PRON-',
 'want',
 '.',
 '-PRON-',
 'encourage',
 '-PRON-',
 'wife',
 'to',
 '>',
 'get',
 'six',
 'inch',
 'hole',
 'cut',
 'through',
 '-PRON-',
 'stomach',
 'muscle',
 ',',
 'expose',
 '-PRON-',
 '>',
 'to',
 'anesthesia',
 'and',
 'infection',
 ',',
 'and',
 'whatever',
 'other',
 '"',
 'just',
 'in',
 'case',
 '"',
 'measure',
 '>',
 '-PRON-',
 'think',
 'be',
 'necessary',
 '.',
 '-PRON-',
 ',',
 'be',
 'not',
 '-PRON-',
 'wroth',
 '!',
 ' ',
 '-PRON-',
 'have',
 'not',
 'read',
 'a',
 'more',
 'outrageous',
 'straw',
 'man',
 'attackin',
 'month',
 '!',
 ' ',
 '-PRON-',
 'can',
 'practically',
 'see',
 '-PRON-',
 'mouth',
 'foam',
 '.',
 "We're",
 'statistically',
 'sophisticate',
 'enough',
 'to',
 'balance',
 'the',
 'risk',
 '.',
 ' ',
 'althoughi',
 'can',
 'not',
 'produce',
 'exact',
 'statistic',
 '5',
 'year',
 'after',
 'the',
 'last',
 'time',
 '-PRON-',
 'lookedthem',
 'up',
 ',',
 'rest',
 'assure',
 'that',
 '-PRON-',
 'balance',
 'c',
 '-',
 'section',
 'risk',
 'against',
 'other',
 'risk',
 '.',
 '-PRON-',
 'would',
 'not',
 'encourage',
 '-PRON-',
 'wife',
 'to',
 'have',
 'a',
 'Caesarean',
 'unless',
 '-PRON-',
 'be',
 'clearlyindicate',
 ';',
 'on',
 'the',
 'other',
 'hand',
 ',',
 '-PRON-',
 'be',
 'oppose',
 '(',
 'on',
 'obvious',
 'ground',
 ')',
 'to',
 'waitinguntil',
 'an',
 'emergency',
 'to',
 'give',
 'in',
 '.',
 'and',
 'bear',
 'this',
 'in',
 ...]
In [103]:
## POS tagging
for token in doc_sp:
    print(token, token.pos_)
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
57110From NUM
: PUNCT
bed@intacc.uucp PROPN
( PUNCT
Deb PROPN
Waddington)Subject NOUN
: PUNCT
INFO PROPN
NEEDED PROPN
: PUNCT
Gaucher PROPN
's PART
DiseaseI NUM
have AUX
a DET
42 NUM
yr NOUN
old ADJ
male ADJ
friend NOUN
, PUNCT
misdiagnosed VERB
as SCONJ
having VERB
osteopporosis NOUN
for ADP
two NUM
years NOUN
, PUNCT
who PRON
recently ADV
found VERB
out ADP
that SCONJ
his PRON
illness NOUN
is AUX
the DET
rare ADJ
Gaucher PROPN
's PART
disease NOUN
. PUNCT
Gaucher PROPN
's PART
disease NOUN
symptoms NOUN
include VERB
: PUNCT
brittle PROPN
bones NOUN
( PUNCT
he PRON
lost VERB
9 NUM
  SPACE
inches NOUN
off ADP
his PRON
hieght NOUN
) PUNCT
; PUNCT
enlarged VERB
liver NOUN
and CCONJ
spleen NOUN
; PUNCT
internal ADJ
bleeding NOUN
; PUNCT
and CCONJ
fatigue NOUN
( PUNCT
all DET
the DET
time NOUN
) PUNCT
. PUNCT
The DET
problem NOUN
( PUNCT
in ADP
Type NOUN
1 NUM
) PUNCT
is AUX
attributed VERB
to ADP
a DET
genetic ADJ
mutation NOUN
where ADV
there PRON
is AUX
a DET
lack NOUN
of ADP
the DET
enzyme NOUN
glucocerebroside NOUN
in ADP
macrophages NOUN
so SCONJ
the DET
cells NOUN
swell VERB
up ADP
. PUNCT
This DET
will AUX
eventually ADV
cause VERB
death NOUN
. PUNCT
Enyzme PROPN
replacement NOUN
therapy NOUN
has AUX
been AUX
successfully ADV
developed VERB
and CCONJ
approved VERB
by ADP
the DET
FDA PROPN
in ADP
the DET
last ADJ
few ADJ
years NOUN
so SCONJ
that SCONJ
those DET
patients NOUN
administered VERB
with ADP
this DET
drug NOUN
( PUNCT
called VERB
Ceredase PROPN
) PUNCT
report VERB
a DET
remarkable ADJ
improvement NOUN
in ADP
their PRON
condition NOUN
. PUNCT
Ceredase PROPN
, PUNCT
which PRON
is AUX
manufactured VERB
by ADP
biotech PROPN
biggy PROPN
company NOUN
-- PUNCT
Genzyme PROPN
-- PUNCT
costs VERB
the DET
patient ADJ
$ SYM
380,000 NUM
per ADP
year NOUN
. PUNCT
Gaucher PROPN
's PART
disease NOUN
has AUX
justifyably ADV
been AUX
called VERB
" PUNCT
the DET
most ADV
expensive ADJ
disease NOUN
in ADP
the DET
world" NOUN
. PUNCT
NEED PROPN
INFO PROPN
: PUNCT
I PRON
have AUX
researched VERB
Gaucher PROPN
's PART
disease NOUN
at ADP
the DET
library NOUN
but CCONJ
am AUX
relying VERB
on ADP
netlanders NOUN
to PART
provide VERB
me PRON
with ADP
any DET
additional ADJ
information:**news NOUN
, PUNCT
stories NOUN
, PUNCT
reports**people VERB
you PRON
know VERB
with ADP
this DET
disease**ideas PROPN
, PUNCT
articles NOUN
about ADP
Genzyme PROPN
Corp PROPN
, PUNCT
how ADV
to PART
get AUX
a DET
hold NOUN
of ADP
   SPACE
enough ADJ
money NOUN
to PART
buy VERB
some DET
, PUNCT
programs NOUN
available ADJ
to PART
help VERB
with ADP
   SPACE
costs.**Basically ADV
ANY DET
HELP PROPN
YOU PRON
CAN AUX
OFFERThanks NOUN
so ADV
very ADV
much!Deborah PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58043From NUM
: PUNCT
mcdonald@aries.scs.uiuc.edu PROPN
( PUNCT
J. PROPN
D. PROPN
McDonald)Subject PROPN
: PUNCT
Re ADP
: PUNCT
jiggersIn PROPN
article NOUN
< X
78846@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes:>This PROPN
would AUX
n't PART
happen VERB
to PART
be AUX
the DET
same ADJ
thing NOUN
as SCONJ
chiggers NOUN
, PUNCT
would AUX
it?>A VERB
truly ADV
awful ADJ
parasitic ADJ
affliction NOUN
, PUNCT
as SCONJ
I PRON
understand VERB
it PRON
. PUNCT
  SPACE
Tiny ADJ
bugs NOUN
> X
dig X
deeply ADV
into ADP
the DET
skin NOUN
, PUNCT
burying VERB
themselves PRON
. PUNCT
  SPACE
Yuck PROPN
! PUNCT
  SPACE
They PRON
have AUX
these DET
> X
things NOUN
in ADP
Oklahoma PROPN
. PUNCT
Close ADV
. PUNCT
My PRON
mother NOUN
comes VERB
from ADP
Gainesville PROPN
Tex PROPN
, PUNCT
right ADV
across ADP
the DET
border NOUN
. PUNCT
They PRON
claim VERB
to PART
be AUX
the DET
chigger NOUN
capitol NOUN
of ADP
the DET
world NOUN
, PUNCT
and CCONJ
I PRON
believe VERB
them PRON
. PUNCT
When ADV
I PRON
grew VERB
up ADP
in ADP
Fort PROPN
Worth PROPN
it PRON
was AUX
bad ADJ
enough ADV
, PUNCT
but CCONJ
in ADP
Gainesvillein PROPN
the DET
summer NOUN
an DET
attack NOUN
was AUX
guaranteed VERB
. PUNCT
Doug PROPN
McDonaldNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58045From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Breech PROPN
Baby PROPN
Info PROPN
NeededIn PROPN
article NOUN
< X
1993Apr5.151818.27409@trentu.ca NUM
> X
xtkmg@trentu.ca PUNCT
( PUNCT
Kate PROPN
Gregory PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr3.161757.19612@cs.rochester.edu NUM
> X
fulk@cs.rochester.edu NOUN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>>>Another PROPN
uncommon ADJ
problem NOUN
is AUX
maternal ADJ
hemorrhage NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
the>>incidence PROPN
, PUNCT
but CCONJ
it PRON
is AUX
something PRON
like SCONJ
1 NUM
in ADP
1,000 NUM
or CCONJ
10,000 NUM
births NOUN
. PUNCT
  SPACE
It PRON
is AUX
hard>>to ADJ
see VERB
how ADV
you PRON
could AUX
handle VERB
it PRON
at ADP
home NOUN
, PUNCT
and CCONJ
you PRON
would AUX
n't PART
have AUX
very ADV
much ADJ
time.>>>>thing VERB
you PRON
might AUX
consider VERB
is AUX
that SCONJ
people NOUN
's PART
risk NOUN
tradeoffs NOUN
vary VERB
. PUNCT
  SPACE
I PRON
consider>>a VERB
1/1,000 NUM
risk NOUN
of ADP
loss NOUN
of ADP
a DET
loved VERB
one NOUN
to PART
require VERB
considerable ADJ
effort NOUN
in>>the DET
avoiding.>>Mark PROPN
, PUNCT
you PRON
seem VERB
to PART
be AUX
terrified VERB
of ADP
the DET
birth NOUN
processThat NOUN
's PART
ridiculous!>and PROPN
unable ADJ
to PART
> X
believe VERB
that SCONJ
women NOUN
's PART
bodies NOUN
are AUX
actually ADV
designed VERB
to PART
do AUX
it PRON
. PUNCT
They PRON
are AUX
n't PART
designed VERB
, PUNCT
they PRON
evolved VERB
. PUNCT
  SPACE
And CCONJ
, PUNCT
much ADV
as SCONJ
it PRON
discomforts VERB
us PRON
, PUNCT
inhumans VERB
a DET
trouble NOUN
- PUNCT
free ADJ
birth NOUN
process NOUN
was AUX
sacrificed VERB
to ADP
increased VERB
brain NOUN
andcranial ADJ
size NOUN
. PUNCT
  SPACE
Wild ADJ
animals NOUN
have AUX
a DET
much ADV
easier ADJ
time NOUN
with ADP
birth NOUN
than SCONJ
humans NOUN
do AUX
. PUNCT
Domestic ADJ
horses NOUN
and CCONJ
cows NOUN
typically ADV
have AUX
a DET
worse ADJ
time NOUN
. PUNCT
  SPACE
To PART
give VERB
you PRON
an DET
idea NOUN
: PUNCT
my PRON
family NOUN
tree NOUN
is AUX
complicated VERB
because SCONJ
a DET
few ADJ
of ADP
my PRON
pioneer NOUN
great ADJ
- PUNCT
great ADJ
- PUNCT
grandfathers NOUN
had AUX
several ADJ
wives NOUN
, PUNCT
and CCONJ
we PRON
never ADV
could AUX
figure VERB
out ADP
which PRON
wifehad VERB
each DET
child NOUN
. PUNCT
  SPACE
One PRON
might AUX
ask VERB
why ADV
this DET
happened VERB
. PUNCT
  SPACE
My PRON
great ADJ
- PUNCT
great ADJ
- PUNCT
grandfathers NOUN
were AUX
, PUNCT
by ADP
the DET
time NOUN
they PRON
reached VERB
their PRON
forties NOUN
, PUNCT
quite ADJ
prosperousfarmers NOUN
. PUNCT
  SPACE
Nonetheless ADV
, PUNCT
they PRON
lost VERB
several ADJ
wives NOUN
each DET
to ADP
the DET
rigors NOUN
ofchildbirth ADV
; PUNCT
the DET
graveyards NOUN
in ADP
Spencer PROPN
, PUNCT
Indiana PROPN
, PUNCT
and CCONJ
Boswell PROPN
, PUNCT
North PROPN
Dakota PROPN
, PUNCT
contain VERB
quite DET
a DET
few ADJ
gravestones NOUN
like SCONJ
" PUNCT
Ida PROPN
, PUNCT
wf PROPN
. PROPN
of ADP
Jacob PROPN
Liptrap PROPN
, PUNCT
andbaby NOUN
, PUNCT
May PROPN
6 NUM
, PUNCT
1853.">You PROPN
wanted VERB
> X
to PART
section NOUN
all DET
women NOUN
carrying VERB
breech NOUN
in ADP
case NOUN
one NUM
in ADP
a DET
hundred NUM
or CCONJ
a DET
> X
thousand NUM
breech NOUN
babies NOUN
get VERB
hung VERB
up ADP
in ADP
second ADJ
stage NOUN
, PUNCT
More ADJ
like SCONJ
one NUM
in ADP
ten NUM
. PUNCT
  SPACE
And CCONJ
the DET
consequences NOUN
can AUX
be AUX
devastating ADJ
; PUNCT
I PRON
havedirect VERB
experience NOUN
of ADP
more ADJ
than SCONJ
a DET
dozen NOUN
victims NOUN
of ADP
a DET
fouled VERB
- PUNCT
up ADP
breech NOUN
birth.>and NOUN
now ADV
you PRON
want VERB
> X
all DET
babies NOUN
born VERB
in ADP
hospital NOUN
based VERB
on ADP
a DET
guess NOUN
of ADP
how ADV
likely ADJ
maternal ADJ
> X
hemorrhage NOUN
is AUX
and CCONJ
a DET
false ADJ
belief NOUN
that SCONJ
it PRON
is AUX
fatal ADJ
. PUNCT
It PRON
is AUX
n't PART
always ADV
fatal ADJ
. PUNCT
  SPACE
But CCONJ
it PRON
is AUX
often ADV
fatal ADJ
, PUNCT
when ADV
it PRON
happens VERB
out ADP
ofreach NOUN
of ADP
adequate ADJ
help NOUN
. PUNCT
  SPACE
More ADV
often ADV
, PUNCT
it PRON
permanently ADV
damages VERB
one NUM
's PART
health NOUN
. PUNCT
Clearly ADV
women NOUN
's PART
bodies NOUN
_ PROPN
evolved VERB
_ PROPN
to PART
give VERB
birth NOUN
( PUNCT
I PRON
am AUX
no DET
believer NOUN
in ADP
divinedesign NOUN
) PUNCT
; PUNCT
however ADV
, PUNCT
evolution NOUN
did AUX
not PART
favor VERB
trouble NOUN
- PUNCT
free ADJ
births NOUN
for ADP
humans NOUN
. PUNCT
  SPACE
> X
You PRON
have AUX
your PRON
kids NOUN
where ADV
you PRON
want VERB
. PUNCT
You PRON
encourage VERB
your PRON
wife NOUN
to PART
> X
get AUX
six NUM
inch NOUN
holes NOUN
cut VERB
through ADP
her PRON
stomach NOUN
muscles NOUN
, PUNCT
expose VERB
herself PRON
> X
to ADP
anesthesia PROPN
and CCONJ
infection NOUN
, PUNCT
and CCONJ
whatever PRON
other ADJ
" PUNCT
just ADV
in ADP
case NOUN
" PUNCT
measures NOUN
> X
you PRON
think VERB
are AUX
necessary ADJ
. PUNCT
My PRON
, PUNCT
are AUX
n't PART
we PRON
wroth ADJ
! PUNCT
  SPACE
I PRON
have AUX
n't PART
read VERB
a DET
more ADV
outrageous ADJ
straw NOUN
man NOUN
attackin PROPN
months NOUN
! PUNCT
  SPACE
I PRON
can AUX
practically ADV
see VERB
your PRON
mouth NOUN
foam NOUN
. PUNCT
We're PROPN
statistically ADV
sophisticated VERB
enough ADV
to PART
balance VERB
the DET
risks NOUN
. PUNCT
  SPACE
AlthoughI DET
ca AUX
n't PART
produce VERB
exact ADJ
statistics NOUN
5 NUM
years NOUN
after ADP
the DET
last ADJ
time NOUN
we PRON
lookedthem VERB
up ADP
, PUNCT
rest VERB
assured VERB
that SCONJ
we PRON
balanced VERB
C NOUN
- PUNCT
section NOUN
risks NOUN
against ADP
other ADJ
risks NOUN
. PUNCT
I PRON
would AUX
n't PART
encourage VERB
my PRON
wife NOUN
to PART
have AUX
a DET
Caesarean PROPN
unless SCONJ
it PRON
was AUX
clearlyindicated VERB
; PUNCT
on ADP
the DET
other ADJ
hand NOUN
, PUNCT
I PRON
am AUX
opposed VERB
( PUNCT
on ADP
obvious ADJ
grounds NOUN
) PUNCT
to PART
waitinguntil PROPN
an DET
emergency NOUN
to PART
give VERB
in ADP
. PUNCT
And CCONJ
bear VERB
this DET
in ADP
mind NOUN
: PUNCT
my PRON
wife NOUN
took VERB
the DET
lead NOUN
in ADP
all DET
of ADP
these DET
decisions NOUN
. PUNCT
We PRON
talked VERB
things NOUN
over ADP
, PUNCT
and CCONJ
I PRON
did AUX
a DET
lot NOUN
of ADP
the DET
leg NOUN
work NOUN
, PUNCT
but CCONJ
the DET
maindecisions NOUN
were AUX
really ADV
hers.>But INTJ
I PRON
for ADP
one NUM
am AUX
bothered VERB
by ADP
your PRON
continued VERB
> X
suggestions NOUN
, PUNCT
especially ADV
to ADP
the DET
misc.kidders NOUN
pregnant ADJ
for ADP
the DET
first ADJ
> X
time NOUN
, PUNCT
that DET
birth NOUN
is AUX
dangerous ADJ
, PUNCT
even ADV
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
all DET
these DET
> X
unpleasant ADJ
things NOUN
are AUX
far ADV
better ADJ
than SCONJ
the DET
risks NOUN
you PRON
run VERB
just ADV
doing VERB
> X
it PRON
naturally ADV
. PUNCT
I PRON
do AUX
n't PART
know VERB
of ADP
very ADV
many ADJ
home NOUN
birth NOUN
advocates NOUN
, PUNCT
even ADV
, PUNCT
that PRON
think VERB
thata PROPN
first ADJ
- PUNCT
time NOUN
mother NOUN
should AUX
have AUX
her PRON
baby NOUN
at ADP
home.>I'm PROPN
no DET
Luddite PROPN
. PUNCT
I PRON
've AUX
had VERB
a DET
section NOUN
. PUNCT
I PRON
'm AUX
planning VERB
a DET
hospital NOUN
birth NOUN
> X
this DET
time NOUN
. PUNCT
But CCONJ
for ADP
heaven PROPN
's PART
sake NOUN
, PUNCT
not PART
everyone PRON
needs VERB
that!But PROPN
people NOUN
should AUX
bother VERB
to PART
find VERB
out ADP
the DET
relative ADJ
risks NOUN
. PUNCT
  SPACE
My PRON
wife NOUN
wasunwilling VERB
to PART
take VERB
any DET
significant ADJ
risks NOUN
in ADP
order NOUN
to PART
have AUX
nice ADJ
surroundings NOUN
. PUNCT
In ADP
view NOUN
of ADP
the DET
intensity NOUN
of ADP
the DET
birth NOUN
experience NOUN
, PUNCT
I PRON
doubt VERB
surroundingshave VERB
much ADJ
importance NOUN
anyway ADV
. PUNCT
  SPACE
Somehow ADV
the DET
values NOUN
you PRON
're AUX
advocating VERB
seemall NOUN
lopsided VERB
to ADP
me PRON
: PUNCT
taking VERB
risks NOUN
, PUNCT
even ADV
if SCONJ
fairly ADV
small ADJ
, PUNCT
of ADP
seriouspermanent ADJ
harm NOUN
in ADP
order NOUN
to PART
preserve VERB
something PRON
that PRON
is AUX
, PUNCT
after ADV
all ADV
, PUNCT
an DET
esthetic ADJ
consideration.-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58046From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Analgesics NOUN
with ADP
DiureticsI PROPN
sometimes ADV
see VERB
OTC PROPN
preparations NOUN
for ADP
muscle NOUN
aches NOUN
/ SYM
back NOUN
aches NOUN
thatcombine NOUN
aspirin NOUN
with ADP
a DET
diuretic NOUN
. PUNCT
The DET
idea NOUN
seems VERB
to PART
be AUX
to ADP
reduceinflammation NOUN
by ADP
getting VERB
rid VERB
of ADP
fluid NOUN
. PUNCT
Does AUX
this DET
actually ADV
work VERB
? PUNCT
Thanks,-Larry PROPN
C. PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58047From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lactose PROPN
intoleranceIn PROPN
article NOUN
< X
ng4.733990422@husc.harvard.edu NOUN
> X
, PUNCT
ng4@husc11.harvard.edu X
( PUNCT
HoLeung PROPN
Ng PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
    SPACE
When ADV
I PRON
was AUX
a DET
kid NOUN
in ADP
primary ADJ
school NOUN
, PUNCT
I PRON
used VERB
to PART
drink VERB
tons NOUN
of ADP
milk NOUN
without ADP
> X
any DET
problems NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
nowadays ADV
, PUNCT
I PRON
can AUX
hardly ADV
drink VERB
any DET
at ADV
all ADV
without ADP
> X
experiencing VERB
some DET
discomfort NOUN
. PUNCT
  SPACE
What PRON
could AUX
be AUX
responsible ADJ
for ADP
the DET
change NOUN
? PUNCT
> X
> X
Ho PROPN
Leung PROPN
Ng PROPN
> X
ng4@husc.harvard.eduYou NUM
became VERB
older ADJ
and CCONJ
your PRON
intestine NOUN
normalized VERB
to ADP
the DET
weaned ADJ
state NOUN
. PUNCT
  SPACE
Thatis PROPN
, PUNCT
lactose ADJ
tolerance NOUN
is AUX
an DET
unusual ADJ
state NOUN
for ADP
adults NOUN
of ADP
most ADJ
mammalsexcept VERB
for ADP
h. NOUN
sapiens NOUN
of ADP
northern ADJ
European ADJ
origin NOUN
. PUNCT
  SPACE
As SCONJ
a DET
h. NOUN
sapiens NOUN
of ADP
asian ADJ
descent NOUN
( PUNCT
assumption NOUN
based VERB
on ADP
name NOUN
) PUNCT
the DET
loss NOUN
of ADP
lactase NOUN
is AUX
normalfor ADP
you PRON
. PUNCT
  SPACE
Steve PROPN
Hollandgila005@uabdpo.dpo.uab.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58048From NUM
: PUNCT
bennett@kuhub.cc.ukans.eduSubject PROPN
: PUNCT
Smoker PROPN
's PART
LungsHow PROPN
long ADV
does AUX
it PRON
take VERB
a DET
smoker NOUN
's PART
lungs NOUN
to PART
clear VERB
of ADP
the DET
tar NOUN
after ADP
quitting VERB
? PUNCT
Does AUX
your PRON
chances NOUN
of ADP
getting VERB
lung NOUN
cancer NOUN
decrease NOUN
quickly ADV
or CCONJ
does AUX
it PRON
takea VERB
considerable ADJ
amount NOUN
of ADP
time NOUN
for ADP
that DET
to ADP
happen?Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
58049From NUM
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Blood PROPN
Cholesterol PROPN
- PUNCT
  SPACE
Gabe PROPN
Mirkin PROPN
's PART
adviceIn PROPN
article NOUN
< X
1pka0uINNnqa@mojo.eng.umd.edu NUM
> X
, PUNCT
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark PROPN
) PUNCT
writes:| PROPN
> X
Forget VERB
about ADP
total ADJ
cholesterol NOUN
when ADV
assessing VERB
health NOUN
risk NOUN
factors.| PROPN
> X
Instead ADV
, PUNCT
use VERB
a DET
relationship NOUN
between ADP
LDL PROPN
and CCONJ
HDL PROPN
cholesterol:| PROPN
> X
| ADP
> X
If SCONJ
your PRON
LDL PROPN
is AUX
       SPACE
You PRON
need VERB
an DET
HDL NOUN
of ADP
at ADP
least| PROPN
> X
| CCONJ
> X
       SPACE
90 NUM
                 SPACE
35| PROPN
> X
      SPACE
100 NUM
                 SPACE
45| PROPN
> X
      SPACE
110 NUM
                 SPACE
50| NUM
> X
      SPACE
120 NUM
                 SPACE
55| NUM
> X
      SPACE
130 NUM
                 SPACE
60| NUM
> X
      SPACE
140 NUM
                 SPACE
70Gee NUM
, PUNCT
what PRON
do AUX
I PRON
do AUX
? PUNCT
  SPACE
My PRON
LDL PROPN
is AUX
only ADV
50 NUM
- SYM
60 NUM
. PUNCT
( PUNCT
and CCONJ
my PRON
HDL PROPN
is AUX
only ADV
23 NUM
- PUNCT
25)I PROPN
must AUX
be AUX
risking VERB
something PRON
, PUNCT
but CCONJ
Is AUX
it PRON
the DET
same ADJ
risk NOUN
as SCONJ
those DET
with ADP
very ADV
high ADJ
LDL?| NOUN
> X
If SCONJ
your PRON
triglycerides NOUN
are AUX
above ADP
300 NUM
, PUNCT
and CCONJ
your PRON
HDL PROPN
is AUX
below ADP
30 NUM
, PUNCT
the| PROPN
> X
drug NOUN
of ADP
choice NOUN
is AUX
gemfibrozil ADJ
( PUNCT
Lopid PROPN
) PUNCT
taken VERB
as SCONJ
a DET
600 NUM
mg NOUN
tablet| PROPN
> X
thirty NUM
minutes NOUN
before ADP
your PRON
morning NOUN
and CCONJ
evening NOUN
meals NOUN
. PUNCT
What PRON
about ADP
exercise NOUN
and CCONJ
a DET
low ADJ
- PUNCT
fat NOUN
diet NOUN
? PUNCT
  SPACE
What PRON
are AUX
the DET
long ADJ
- PUNCT
term NOUN
effects NOUN
of ADP
this DET
drug?-- PROPN
Doug PROPN
Bank PROPN
                       SPACE
Private PROPN
Systems PROPN
Divisiondougb@ecs.comm.mot.com X
          SPACE
Motorola PROPN
Communications PROPN
Sectordougb@nwu.edu PROPN
                   SPACE
Schaumburg PROPN
, PUNCT
Illinoisdougb@casbah.acns.nwu.edu NOUN
       SPACE
708 NUM
- PUNCT
576 NUM
- SYM
8207 NUM
                    SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58050From NUM
: PUNCT
cliff@buster.stafford.tx.us PROPN
( PUNCT
Cliff PROPN
Tomplait)Subject NUM
: PUNCT
Re ADP
: PUNCT
sex NOUN
problem.ls8139@albnyvms.bitnet NOUN
( PUNCT
larry PROPN
silverberg PROPN
) PUNCT
writes:>I PRON
have AUX
question NOUN
that PRON
I PRON
hope VERB
is AUX
taken VERB
seriously ADV
, PUNCT
despite SCONJ
the DET
subject NOUN
content.>Problem PROPN
: PUNCT
  SPACE
My PRON
long ADJ
time NOUN
girlfriend NOUN
lately ADV
has AUX
not PART
been AUX
initiating VERB
any DET
sexual ADJ
> X
	 SPACE
activity NOUN
. PUNCT
  SPACE
For ADP
the DET
last ADJ
four NUM
months NOUN
things NOUN
have AUX
changed VERB
dramatically ADV
. PUNCT
> X
       SPACE
... PUNCT
> X
	 SPACE
--to NOUN
make VERB
this DET
shorter-- PROPN
Summary PROPN
: PUNCT
nothing PRON
that PRON
I PRON
can AUX
think VERB
of ADP
has AUX
> X
				 SPACE
changed VERB
.... PUNCT
> X
       SPACE
... PUNCT
> X
She PRON
suggested VERB
we PRON
go VERB
to ADP
a DET
sex NOUN
counselor NOUN
, PUNCT
but CCONJ
I PRON
really ADV
do AUX
n't PART
want VERB
to PART
( PUNCT
just ADV
yet).>Any NOUN
suggestions NOUN
would AUX
be AUX
appreciated.>If PUNCT
you PRON
think VERB
you PRON
can AUX
help VERB
me PRON
, PUNCT
please INTJ
contact VERB
me PRON
by ADP
e NOUN
- NOUN
mail NOUN
for ADP
further ADJ
info.>PLEASE PUNCT
serious ADJ
replies NOUN
only.>Thanks PROPN
, PUNCT
LarryLarry PROPN
: PUNCT
The DET
subject ADJ
content NOUN
IS VERB
serious ADJ
; PUNCT
as SCONJ
is AUX
the DET
question NOUN
. PUNCT
On ADP
one NUM
hand NOUN
you PRON
state VERB
that SCONJ
" PUNCT
things NOUN
have AUX
changed VERB
dramatically ADV
" PUNCT
but CCONJ
, PUNCT
at ADP
thesame NOUN
time NOUN
nothing PRON
you PRON
" PUNCT
can AUX
think VERB
of ADP
has AUX
changed VERB
" PUNCT
. PUNCT
  SPACE
Your PRON
girlfriend NOUN
seemsto NOUN
want VERB
to PART
see VERB
a DET
counselor NOUN
, PUNCT
but CCONJ
you PRON
do AUX
n't PART
. PUNCT
  SPACE
I PRON
'd AUX
recommend VERB
that SCONJ
you PRON
examine VERB
your PRON
hesitation NOUN
to PART
see VERB
a DET
counselor NOUN
. PUNCT
  SPACE
It'sa PROPN
very ADV
good ADJ
environment NOUN
to PART
examine VERB
issues NOUN
. PUNCT
  SPACE
The DET
fact NOUN
of ADP
the DET
matter NOUN
is AUX
: PUNCT
  SPACE
your PRON
girlfriend NOUN
has AUX
a DET
different ADJ
perception NOUN
thanyou NOUN
. PUNCT
  SPACE
The DET
TWO PROPN
of ADP
you PRON
need VERB
to PART
address VERB
the DET
issue NOUN
in ADP
order NOUN
to PART
resolve VERB
it PRON
. PUNCT
Please INTJ
consider VERB
going VERB
to ADP
a DET
counselor NOUN
with ADP
your PRON
girlfriend NOUN
. PUNCT
  SPACE
What PRON
could AUX
itpossibly VERB
hurt?Cliff NOUN
  SPACE
( PUNCT
the DET
paramedic)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58051From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Prednisone NOUN
... PUNCT
what PRON
are AUX
the DET
significant ADJ
long ADJ
term NOUN
side NOUN
effects NOUN
? PUNCT
> X
> X
I PRON
have AUX
been AUX
taking VERB
prednisone PROPN
5 NUM
mg PROPN
twice DET
a DET
day NOUN
for ADP
a DET
while NOUN
to PART
control VERB
> X
> X
Ulcerative PROPN
Colitis PROPN
. PUNCT
It PRON
seems VERB
like SCONJ
if SCONJ
I PRON
reduce VERB
the DET
dosage NOUN
, PUNCT
the DET
problem NOUN
> X
> X
becomes VERB
worse ADJ
. PUNCT
At ADP
this DET
point NOUN
, PUNCT
i PRON
see VERB
myself PRON
taking VERB
prednisone NOUN
for ADP
a DET
long ADJ
> X
> X
long ADJ
time NOUN
, PUNCT
perhaps ADV
for ADP
ever ADV
. PUNCT
I PRON
was AUX
wondering VERB
about ADP
long ADJ
term NOUN
major ADJ
side NOUN
> X
> X
effects NOUN
, PUNCT
things NOUN
like SCONJ
potential ADJ
birth NOUN
defects NOUN
, PUNCT
arthritis NOUN
etc X
. PUNCT
I PRON
have AUX
been AUX
> X
> X
putting VERB
on ADP
weight NOUN
, PUNCT
my PRON
face NOUN
looks VERB
puffed VERB
and CCONJ
round ADJ
, PUNCT
experience VERB
sudden ADJ
mood NOUN
> X
> X
swings NOUN
. PUNCT
As SCONJ
I PRON
understand VERB
, PUNCT
these DET
are AUX
all DET
short ADJ
term NOUN
. PUNCT
I PRON
second ADV
what PRON
Spenser PROPN
Aden PROPN
said VERB
in ADP
reply NOUN
. PUNCT
  SPACE
Additionally ADV
, PUNCT
it PRON
is AUX
hard ADJ
to PART
saywhat DET
type NOUN
of ADP
response NOUN
you PRON
ar3e PROPN
having VERB
to PART
prednisone VERB
since SCONJ
you PRON
did AUX
not PART
sayhow VERB
long ADV
you PRON
have AUX
been AUX
on ADP
it PRON
. PUNCT
  SPACE
Patients NOUN
are AUX
generally ADV
kept VERB
on ADP
steroids NOUN
formonths NOUN
before ADP
thinking VERB
about ADP
tapering VERB
. PUNCT
  SPACE
Alternatives NOUN
to ADP
daily ADJ
dosing NOUN
are AUX
every DET
other ADJ
day NOUN
dosing VERB
, PUNCT
in ADP
your PRON
case NOUN
20 NUM
mg PROPN
every DET
other ADJ
day NOUN
would AUX
be AUX
a DET
start NOUN
. PUNCT
Another DET
option NOUN
if SCONJ
it PRON
is AUX
not PART
possible ADJ
to PART
get AUX
you PRON
off ADP
prednisone NOUN
is AUX
to PART
startazathioprine VERB
. PUNCT
  SPACE
Like SCONJ
Spenser PROPN
said VERB
, PUNCT
you PRON
should AUX
generally ADV
be AUX
on ADP
another DET
drugin NOUN
addition NOUN
to ADP
your PRON
prednisone NOUN
, PUNCT
like SCONJ
asulfidine NOUN
. PUNCT
  SPACE
A DET
lot NOUN
of ADP
the DET
specificsabout NOUN
options NOUN
, PUNCT
though ADV
, PUNCT
depends VERB
on ADP
severity NOUN
, PUNCT
location NOUN
, PUNCT
and CCONJ
duration NOUN
of ADP
disease NOUN
, PUNCT
as ADV
well ADV
as SCONJ
histology NOUN
, PUNCT
so ADV
take VERB
advice NOUN
off ADP
the DET
net NOUN
for ADP
what PRON
itis NOUN
worth ADJ
. PUNCT
  SPACE
I PRON
treat VERB
patients NOUN
with ADP
UC PROPN
and CCONJ
Crohn PROPN
's PART
. PUNCT
  SPACE
An DET
educated VERB
patient NOUN
is AUX
a DET
good ADJ
patient NOUN
, PUNCT
but CCONJ
let VERB
your PRON
doctor NOUN
know VERB
where ADV
the DET
advice NOUN
came VERB
from ADP
so ADV
thingscan ADV
be AUX
put VERB
in ADP
context NOUN
. PUNCT
  SPACE
You PRON
should AUX
also ADV
be AUX
a DET
member NOUN
of ADP
the DET
Crohn PROPN
's PART
andColitis PROPN
Foundation PROPN
of ADP
America PROPN
. PUNCT
  SPACE
1 NUM
- PUNCT
800 NUM
- PUNCT
932 NUM
- PUNCT
2423 NUM
office NOUN
/ SYM
1 NUM
- PUNCT
800 NUM
- PUNCT
343 NUM
- PUNCT
3637info NUM
hotline NOUN
. PUNCT
Best ADJ
of ADP
Luck PROPN
to ADP
you PRON
. PUNCT
Steve PROPN
Holland.gila005@uabdpo.dpo.uab.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58054From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Mental PROPN
Illness[reply ADV
to ADP
dabbott@augean.eleceng.adelaide.edu.AU PROPN
( PUNCT
Derek PROPN
Abbott PROPN
) PUNCT
] PUNCT
> X
Are AUX
there PRON
any DET
case NOUN
histories NOUN
of ADP
severe ADJ
mental ADJ
illness NOUN
cases NOUN
remarkably ADV
> X
recovering VERB
after ADP
a DET
tragic ADJ
accident NOUN
or CCONJ
trauma NOUN
( PUNCT
eg PROPN
. PUNCT
through ADP
nobody PRON
's PART
fault,>being NOUN
trapped VERB
in ADP
a DET
fire NOUN
and CCONJ
losing VERB
your PRON
legs NOUN
, PUNCT
say VERB
) PUNCT
? PUNCT
I PRON
know VERB
of ADP
a DET
patient NOUN
who PRON
was AUX
severely ADV
and CCONJ
chronically ADV
depressed ADJ
and CCONJ
triedto PROPN
kill VERB
himself PRON
with ADP
a DET
bullet NOUN
to ADP
the DET
temple PROPN
. PUNCT
  SPACE
He PRON
essentially ADV
gavehimself PRON
a DET
prefrontal ADJ
lobotomy NOUN
, PUNCT
curing VERB
the DET
depression NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58055From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
Breathe[reply ADV
to ADP
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
] PUNCT
> X
While SCONJ
you PRON
're AUX
right ADJ
that SCONJ
the DET
S PROPN
vertebrae NOUN
are AUX
attached VERB
to ADP
each DET
other,>the NOUN
sacrum NOUN
, PUNCT
to ADP
my PRON
knowledge NOUN
, PUNCT
* PUNCT
can AUX
* PUNCT
be AUX
adjusted VERB
either ADV
directly ADV
, PUNCT
or CCONJ
> X
by ADP
applying VERB
pressure NOUN
on ADP
the DET
pubic ADJ
bone NOUN
... PUNCT
Ron PROPN
, PUNCT
you PRON
're AUX
an DET
endless ADJ
source NOUN
of ADP
misinformation NOUN
! PUNCT
  SPACE
There PRON
ARE VERB
no DET
sacralvertebrae NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
bone NOUN
called VERB
the DET
sacrum NOUN
at ADP
the DET
end NOUN
of ADP
the DET
spine NOUN
. PUNCT
It PRON
is AUX
a DET
single ADJ
, PUNCT
solid ADJ
bone NOUN
except SCONJ
in ADP
a DET
few ADJ
patients NOUN
who PRON
have AUX
alumbarized VERB
S1 PROPN
as SCONJ
a DET
normal ADJ
variant NOUN
. PUNCT
  SPACE
How ADV
do AUX
you PRON
adjust VERB
a DET
solid ADJ
bone NOUN
, PUNCT
break VERB
it PRON
? PUNCT
  SPACE
No INTJ
, PUNCT
do AUX
n't PART
tell VERB
me PRON
, PUNCT
I PRON
do AUX
n't PART
want VERB
to PART
know VERB
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58056From NUM
: PUNCT
rousseaua@immunex.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Lactose PROPN
intoleranceIn PROPN
article NOUN
< X
ng4.733990422@husc.harvard.edu NOUN
> X
, PUNCT
ng4@husc11.harvard.edu PROPN
( PUNCT
Ho PROPN
Leung PROPN
Ng PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
    SPACE
When ADV
I PRON
was AUX
a DET
kid NOUN
in ADP
primary ADJ
school NOUN
, PUNCT
I PRON
used VERB
to PART
drink VERB
tons NOUN
of ADP
milk NOUN
without ADP
> X
any DET
problems NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
nowadays ADV
, PUNCT
I PRON
can AUX
hardly ADV
drink VERB
any DET
at ADV
all ADV
without ADP
> X
experiencing VERB
some DET
discomfort NOUN
. PUNCT
  SPACE
What PRON
could AUX
be AUX
responsible ADJ
for ADP
the DET
change NOUN
? PUNCT
> X
> X
Ho PROPN
Leung PROPN
Ng PROPN
> X
ng4@husc.harvard.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58057From NUM
: PUNCT
rousseaua@immunex.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Lactose PROPN
intoleranceIn NUM
article NOUN
< X
1993Apr5.165716.59@immunex.com NUM
> X
, PUNCT
rousseaua@immunex.com X
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
ng4.733990422@husc.harvard.edu NOUN
> X
, PUNCT
ng4@husc11.harvard.edu PROPN
( PUNCT
Ho PROPN
Leung PROPN
Ng PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
    SPACE
When ADV
I PRON
was AUX
a DET
kid NOUN
in ADP
primary ADJ
school NOUN
, PUNCT
I PRON
used VERB
to PART
drink VERB
tons NOUN
of ADP
milk NOUN
without ADP
> X
> X
any DET
problems NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
nowadays ADV
, PUNCT
I PRON
can AUX
hardly ADV
drink VERB
any DET
at ADV
all ADV
without ADP
> X
> X
experiencing VERB
some DET
discomfort NOUN
. PUNCT
  SPACE
What PRON
could AUX
be AUX
responsible ADJ
for ADP
the DET
change NOUN
? PUNCT
> X
> X
> X
> X
Ho PROPN
Leung PROPN
Ng PROPN
> X
> X
ng4@husc.harvard.eduOOPS NOUN
. PUNCT
My PRON
original ADJ
message NOUN
died VERB
. PUNCT
I PRON
'll AUX
try VERB
again ADV
... PUNCT
I PRON
always ADV
understood VERB
( PUNCT
perhaps ADV
wrongly ADV
... PUNCT
: PUNCT
) PUNCT
) PUNCT
that SCONJ
the DET
bacteria NOUN
in ADP
our PRON
digestivetracts NOUN
help VERB
us PRON
break VERB
down ADP
the DET
components NOUN
of ADP
milk NOUN
. PUNCT
Perhaps ADV
the DET
normal ADJ
flora NOUN
of ADP
the DET
intestine NOUN
changes NOUN
as SCONJ
one NUM
passes VERB
from ADP
childhood NOUN
. PUNCT
Is AUX
there PRON
a DET
pathologist NOUN
or CCONJ
microbiologist NOUN
in ADP
the DET
house?Anne PROPN
- PUNCT
Marie PROPN
Rousseaue PROPN
- PUNCT
mail NOUN
: PUNCT
rousseaua@immunex.com(Please NOUN
note NOUN
that SCONJ
these DET
opinions NOUN
are AUX
mine PRON
, PUNCT
and CCONJ
only ADV
mine PRON
. PUNCT
) PUNCT
                                           SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58058From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Smoker PROPN
's PART
LungsIn PROPN
article NOUN
< X
1993Apr5.123315.48837@kuhub.cc.ukans.edu NUM
> X
bennett@kuhub.cc.ukans.edu NUM
writes:>How PROPN
long ADV
does AUX
it PRON
take VERB
a DET
smoker NOUN
's PART
lungs NOUN
to PART
clear VERB
of ADP
the DET
tar NOUN
after ADP
quitting VERB
? PUNCT
> X
Does AUX
your PRON
chances NOUN
of ADP
getting VERB
lung NOUN
cancer NOUN
decrease NOUN
quickly ADV
or CCONJ
does AUX
it PRON
take VERB
> X
a DET
considerable ADJ
amount NOUN
of ADP
time NOUN
for ADP
that DET
to ADP
happen?The PROPN
answer NOUN
to ADP
your PRON
first ADJ
question NOUN
is AUX
rather ADV
difficult ADJ
to PART
answer VERB
withoutdoing VERB
a DET
lot NOUN
of ADP
autopsies NOUN
. PUNCT
  SPACE
The DET
second ADJ
question NOUN
is AUX
something PRON
that PRON
's AUX
beenknown VERB
for ADP
some DET
time NOUN
. PUNCT
  SPACE
It PRON
appears VERB
that SCONJ
within ADP
about ADV
15 NUM
years NOUN
of ADP
quittingsmoking VERB
a DET
person NOUN
's PART
risk NOUN
for ADP
developing VERB
lung NOUN
cancer NOUN
drops VERB
to ADP
that DET
of ADP
theperson PROPN
who PRON
never ADV
smoked VERB
( PUNCT
assuming VERB
you PRON
do AUX
not PART
get AUX
lung NOUN
cancer NOUN
in ADP
theinterim PROPN
! PUNCT
) PUNCT
. PUNCT
  SPACE
The DET
risk NOUN
to ADP
someone PRON
who PRON
smoked VERB
the DET
equivalent NOUN
of ADP
a DET
pack NOUN
perday NOUN
for ADP
40 NUM
years NOUN
is AUX
around ADV
20 NUM
times NOUN
as ADV
high ADJ
as SCONJ
a DET
non ADJ
- NOUN
smoker ADJ
. PUNCT
  SPACE
Stillrather PROPN
low ADJ
overall ADV
, PUNCT
but CCONJ
significant ADJ
. PUNCT
  SPACE
Personally ADV
, PUNCT
I PRON
'd AUX
be AUX
more ADJ
concernedabout NOUN
heart NOUN
disease NOUN
secondary ADJ
to ADP
smoking NOUN
-- PUNCT
it PRON
's AUX
much ADV
more ADV
common ADJ
, PUNCT
andeven ADV
a DET
small ADJ
increase NOUN
in ADP
risk NOUN
is AUX
significant ADJ
there.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58059From NUM
: PUNCT
kxgst1@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
BreatheDavid PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
[ PUNCT
reply NOUN
to ADP
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
] PUNCT
: PUNCT
  SPACE
: PUNCT
> X
While SCONJ
you PRON
're AUX
right ADJ
that SCONJ
the DET
S PROPN
vertebrae NOUN
are AUX
attached VERB
to ADP
each DET
other ADJ
, PUNCT
: PUNCT
> X
the DET
sacrum NOUN
, PUNCT
to ADP
my PRON
knowledge NOUN
, PUNCT
* PUNCT
can AUX
* PUNCT
be AUX
adjusted VERB
either ADV
directly ADV
, PUNCT
or CCONJ
: PUNCT
> X
by ADP
applying VERB
pressure NOUN
on ADP
the DET
pubic ADJ
bone NOUN
... PUNCT
: PUNCT
  SPACE
: PUNCT
Ron PROPN
, PUNCT
you PRON
're AUX
an DET
endless ADJ
source NOUN
of ADP
misinformation NOUN
! PUNCT
  SPACE
There PRON
ARE VERB
no DET
sacral NOUN
: PUNCT
vertebrae PROPN
. PUNCT
  SPACE
There PRON
is AUX
a DET
bone NOUN
called VERB
the DET
sacrum NOUN
at ADP
the DET
end NOUN
of ADP
the DET
spine NOUN
. PUNCT
: PUNCT
It PRON
is AUX
a DET
single ADJ
, PUNCT
solid ADJ
bone NOUN
except SCONJ
in ADP
a DET
few ADJ
patients NOUN
who PRON
have AUX
a DET
: PUNCT
lumbarized VERB
S1 PROPN
as SCONJ
a DET
normal ADJ
variant NOUN
. PUNCT
  SPACE
How ADV
do AUX
you PRON
adjust VERB
a DET
solid ADJ
bone NOUN
, PUNCT
: PUNCT
break VERB
it PRON
? PUNCT
  SPACE
No INTJ
, PUNCT
do AUX
n't PART
tell VERB
me PRON
, PUNCT
I PRON
do AUX
n't PART
want VERB
to PART
know VERB
. PUNCT
: PUNCT
  SPACE
Oh INTJ
come VERB
now ADV
, PUNCT
surely ADV
you PRON
know VERB
he PRON
only ADV
meant VERB
to PART
measure VERB
the DET
flow NOUN
ofelectromagnetic ADJ
energy NOUN
about ADP
the DET
sacrum NOUN
and CCONJ
then ADV
adjust VERB
these DET
flowswith NOUN
a DET
crystal NOUN
of ADP
chromium NOUN
applied VERB
to ADP
the DET
right ADJ
great ADJ
toe NOUN
. PUNCT
  SPACE
Don'tyou PROPN
know VERB
anything?--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NUM
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58060From NUM
: PUNCT
euclid@mrcnext.cso.uiuc.edu PROPN
( PUNCT
Euclid PROPN
K.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Anti ADJ
- ADJ
Viral ADJ
Herbskxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>Unfortunately ADV
it PRON
was AUX
rather ADV
poorly ADV
researched VERB
, PUNCT
and CCONJ
would AUX
not PART
be AUX
available ADJ
> X
today NOUN
if SCONJ
it PRON
were AUX
just ADV
invented VERB
. PUNCT
  SPACE
Keep VERB
in ADP
mind NOUN
however ADV
that SCONJ
those DET
were AUX
> X
the DET
days NOUN
when ADV
a DET
bottle NOUN
of ADP
Coca PROPN
Cola PROPN
really ADV
did AUX
contain VERB
coca NOUN
extract NOUN
and CCONJ
> X
a DET
certain ADJ
amount NOUN
of ADP
active ADJ
cocaine NOUN
. PUNCT
  SPACE
Times PROPN
have AUX
changed VERB
, PUNCT
and CCONJ
our PRON
attitudes NOUN
> X
need VERB
to PART
change VERB
with ADP
them PRON
. PUNCT
Well INTJ
, PUNCT
yes INTJ
. PUNCT
  SPACE
That DET
was AUX
a DET
part NOUN
of ADP
my PRON
point NOUN
. PUNCT
  SPACE
Aspirin PROPN
has AUX
its PRON
problems NOUN
, PUNCT
butin VERB
some DET
situations NOUN
it PRON
is AUX
useful ADJ
. PUNCT
  SPACE
Ditto PROPN
stuff NOUN
like SCONJ
licorice NOUN
root NOUN
. PUNCT
  SPACE
Takinganything VERB
as SCONJ
a DET
drug NOUN
for ADP
theraputic ADJ
purposes NOUN
implicitly ADV
carries VERB
the DET
ideaof NOUN
taking VERB
a DET
dose NOUN
where ADV
the DET
benefits NOUN
are AUX
not PART
exceeded VERB
by ADP
any DET
unwanted ADJ
, PUNCT
additional ADJ
effects NOUN
. PUNCT
  SPACE
Taking VERB
any DET
drug NOUN
when ADV
the DET
potential ADJ
ill ADJ
- PUNCT
effects NOUN
arenot NOUN
known VERB
is AUX
a DET
risk NOUN
assumed VERB
by ADP
the DET
parties NOUN
involved VERB
, PUNCT
and CCONJ
it PRON
may AUX
be AUX
thatin NOUN
a DET
given VERB
situation NOUN
the DET
risk NOUN
is AUX
worthwhile ADJ
. PUNCT
   SPACE
Like SCONJ
Prozac PROPN
, PUNCT
for ADP
instance NOUN
; PUNCT
Prozac PROPN
has AUX
been AUX
shown VERB
to PART
be AUX
theraputic ADJ
insome ADJ
cases NOUN
where ADV
the DET
tri ADJ
- PUNCT
cyclics NOUN
fail NOUN
. PUNCT
  SPACE
But CCONJ
Prozac PROPN
has AUX
n't PART
been AUX
in ADP
usethat DET
long ADV
, PUNCT
and CCONJ
it PRON
really ADV
is AUX
n't PART
clear ADJ
what PRON
if SCONJ
any DET
effects NOUN
it PRON
may AUX
havewhen VERB
taken VERB
over ADP
long ADJ
periods NOUN
of ADP
time NOUN
, PUNCT
even ADV
though SCONJ
it PRON
has AUX
been AUX
testedby ADJ
present ADJ
day NOUN
standards NOUN
. PUNCT
  SPACE
Should AUX
Prozac PROPN
be AUX
taken VERB
off ADP
the DET
market NOUN
becauselong ADJ
- PUNCT
term NOUN
effects NOUN
, PUNCT
if SCONJ
any DET
, PUNCT
are AUX
not PART
known VERB
? PUNCT
  SPACE
IMHO PROPN
, PUNCT
i PRON
'd AUX
say VERB
no.euclid>=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>= PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
                SPACE
| PROPN
          SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
> X
= SYM
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
    SPACE
--*-- PROPN
        SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
             SPACE
= SYM
> X
= SYM
  SPACE
kxgst1+@pitt.edu PROPN
               SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= PUNCT
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>-- PUNCT
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>= PUNCT
  SPACE
Kenneth PROPN
Gilbert PROPN
                SPACE
| PROPN
          SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
> X
= SYM
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
    SPACE
--*-- PROPN
        SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
             SPACE
= SYM
> X
= SYM
  SPACE
kxgst1+@pitt.edu PROPN
               SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
--Euclid PUNCT
K. PROPN
       SPACE
standard ADJ
disclaimers NOUN
apply"It PROPN
is AUX
a DET
bit NOUN
ironic ADJ
that SCONJ
we PRON
need VERB
the DET
wave NOUN
model NOUN
[ PUNCT
of ADP
light NOUN
] PUNCT
to PART
understand VERB
thepropagation NOUN
of ADP
light NOUN
only ADV
through ADP
that DET
part NOUN
of ADP
the DET
system NOUN
where ADV
it PRON
leaves VERB
notrace NOUN
. PUNCT
" PUNCT
  SPACE
--Hudson PROPN
& CCONJ
Nelson PROPN
( PUNCT
_ PROPN
University_Physics_)Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58061From NUM
: PUNCT
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare)Subject PROPN
: PUNCT
ringing VERB
earsA PROPN
friend NOUN
of ADP
mine NOUN
has AUX
a DET
trouble NOUN
with ADP
her PRON
ears NOUN
ringing VERB
. PUNCT
  SPACE
The DET
ringing VERB
is AUX
so ADV
loudthat ADP
she PRON
has AUX
great ADJ
difficulty NOUN
sleeping VERB
at ADP
night NOUN
. PUNCT
  SPACE
She PRON
says VERB
that SCONJ
she PRON
has AUX
n't PART
had VERB
a DET
normal ADJ
night NOUN
's PART
sleep NOUN
in ADP
about ADV
6 NUM
months NOUN
( PUNCT
she PRON
looks VERB
like SCONJ
it PRON
too ADV
: PUNCT
-().This PUNCT
is AUX
making VERB
her PRON
depressed ADJ
so SCONJ
her PRON
doctor NOUN
has AUX
put VERB
her PRON
on ADP
anti NOUN
- NOUN
depressants NOUN
. PUNCT
The DET
ringing NOUN
started VERB
rather ADV
suddenly ADV
about ADV
6 NUM
months NOUN
ago ADV
. PUNCT
  SPACE
She PRON
is AUX
quickly ADV
losingsleep ADJ
, PUNCT
social ADJ
life NOUN
and CCONJ
sanity NOUN
over ADP
this DET
. PUNCT
Does AUX
anyone PRON
know VERB
of ADP
any DET
treatments NOUN
for ADP
this DET
? PUNCT
  SPACE
Any DET
experience NOUN
? PUNCT
  SPACE
Copingmechanisms PROPN
? PUNCT
  SPACE
Any DET
opinions NOUN
on ADP
the DET
anti ADJ
- ADJ
depressant ADJ
drugs NOUN
? PUNCT
                                              SPACE
[ PUNCT
J.F.]Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58062From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Twitching VERB
eyelidI'm PROPN
surprised VERB
nobody PRON
mentioned VERB
that SCONJ
twitching NOUN
of ADP
the DET
eyelid NOUN
can AUX
be AUX
asymptom ADP
of ADP
an DET
infection NOUN
, PUNCT
especially ADV
if SCONJ
it PRON
also ADV
itches VERB
or CCONJ
stings.(It PROPN
happened VERB
to ADP
me PRON
, PUNCT
and CCONJ
antibiotic ADJ
eyedrops NOUN
cleared VERB
it PRON
up ADP
nicely.)-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
         SPACE
internet NOUN
mcovingt@ai.uga.edu PROPN
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
       SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
                SPACE
fax NOUN
706 NUM
542 NUM
- PUNCT
0349 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58063From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
fibromyalgiaIn ADV
article NOUN
< X
93Apr5.133521edt.1231@smoke.cs.toronto.edu NUM
> X
craig@cs.toronto.edu PROPN
( PUNCT
Craig PROPN
MacDonald PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
  SPACE
It PRON
may AUX
be AUX
extremely>>common ADJ
, PUNCT
something PRON
like SCONJ
5 NUM
% NOUN
of ADP
the DET
population NOUN
. PUNCT
  SPACE
It PRON
is AUX
treatable ADJ
with>>tricyclic SYM
antidepressant ADJ
- PUNCT
type NOUN
drugs NOUN
( PUNCT
Elavil PROPN
, PUNCT
Pamelor PROPN
) PUNCT
. PUNCT
  SPACE
> X
> X
Why ADV
is AUX
it PRON
treated VERB
with ADP
antidepressants NOUN
? PUNCT
  SPACE
Is AUX
it PRON
considered VERB
a DET
> X
psychogenic ADJ
condition?No PROPN
. PUNCT
  SPACE
That SCONJ
these DET
drugs NOUN
happen VERB
to PART
be AUX
useful ADJ
as SCONJ
antidepressants NOUN
is AUX
neitherhere ADV
nor CCONJ
there.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58064From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Analgesics PROPN
with ADP
DiureticsIn PROPN
article NOUN
< X
ofk=lve00WB2AvUktO@andrew.cmu.edu PROPN
> X
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu NOUN
> X
writes:>I INTJ
sometimes ADV
see VERB
OTC PROPN
preparations NOUN
for ADP
muscle NOUN
aches NOUN
/ SYM
back NOUN
aches NOUN
that SCONJ
> X
combine VERB
aspirin NOUN
with ADP
a DET
diuretic NOUN
. PUNCT
You PRON
certainly ADV
do AUX
not PART
see VERB
OTC PROPN
preparations NOUN
advertised VERB
as SCONJ
such ADJ
. PUNCT
The DET
only ADJ
such ADJ
ridiculous ADJ
concoctions NOUN
are AUX
nostrums ADJ
for ADP
premenstrualsyndrome NOUN
, PUNCT
ostensibly ADV
to PART
treat VERB
headache NOUN
and CCONJ
" PUNCT
bloating VERB
" PUNCT
simultaneously ADV
. PUNCT
They're PROPN
worthless.>The NOUN
idea NOUN
seems VERB
to PART
be AUX
to PART
reduce VERB
> X
inflammation NOUN
by ADP
getting VERB
rid VERB
of ADP
fluid NOUN
. PUNCT
Does AUX
this DET
actually ADV
work VERB
? PUNCT
That DET
's AUX
not PART
the DET
idea NOUN
, PUNCT
and CCONJ
no INTJ
, PUNCT
they PRON
do AUX
n't PART
work.-- VERB
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58065From NUM
: PUNCT
jmilhoan@magnus.acs.ohio-state.edu PROPN
( PUNCT
JT)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
ringing VERB
earsIn NUM
article NOUN
< X
10893@ncrwat NUM
. PUNCT
Waterloo PROPN
. PUNCT
NCR.COM PROPN
> X
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare PROPN
) PUNCT
writes:>>>A DET
friend NOUN
of ADP
mine NOUN
has AUX
a DET
trouble NOUN
with ADP
her PRON
ears NOUN
ringing VERB
. PUNCT
  SPACE
The DET
ringing VERB
is AUX
so ADV
loud ADJ
> X
that SCONJ
she PRON
has AUX
great ADJ
difficulty NOUN
sleeping VERB
at ADP
night NOUN
. PUNCT
  SPACE
She PRON
says VERB
that SCONJ
she PRON
has AUX
n't PART
> X
had AUX
a DET
normal ADJ
night NOUN
's PART
sleep NOUN
in ADP
about ADV
6 NUM
months NOUN
( PUNCT
she PRON
looks VERB
like SCONJ
it PRON
too ADV
: PUNCT
-().>This PRON
is AUX
making VERB
her PRON
depressed ADJ
so SCONJ
her PRON
doctor NOUN
has AUX
put VERB
her PRON
on ADP
anti NOUN
- NOUN
depressants NOUN
. PUNCT
Sometimes ADV
I PRON
have AUX
a DET
problem NOUN
with ADP
doctor NOUN
's PART
prescribing ADJ
medicine NOUN
likethis NOUN
. PUNCT
  SPACE
I PRON
of ADP
course NOUN
do AUX
n't PART
know VERB
the DET
exact ADJ
situation NOUN
, PUNCT
andanti ADJ
- NOUN
depressants NOUN
may AUX
work VERB
, PUNCT
but CCONJ
it PRON
is AUX
n't PART
helping VERB
the DET
ringing NOUN
at ADV
all ADV
, PUNCT
is AUX
it?>The DET
ringing NOUN
started VERB
rather ADV
suddenly ADV
about ADV
6 NUM
months NOUN
ago ADV
. PUNCT
  SPACE
She PRON
is AUX
quickly ADV
losing VERB
> X
sleep NOUN
, PUNCT
social ADJ
life NOUN
and CCONJ
sanity NOUN
over ADP
this DET
. PUNCT
Mine PRON
started VERB
about ADV
three NUM
years NOUN
back ADV
. PUNCT
  SPACE
Turns VERB
out ADP
I PRON
have AUX
tinnitusbilateral ADJ
( PUNCT
translation NOUN
: PUNCT
ringing VERB
in ADP
both DET
ears NOUN
, PUNCT
basically ADV
;) NOUN
. PUNCT
  SPACE
If SCONJ
thisis NOUN
what PRON
it PRON
is AUX
, PUNCT
she PRON
'll AUX
probably ADV
get AUX
used ADJ
to ADP
it PRON
. PUNCT
  SPACE
It PRON
would AUX
keep VERB
me PRON
upand ADJ
drive VERB
me PRON
nuts NOUN
too ADV
, PUNCT
but CCONJ
nowadays ADV
, PUNCT
I PRON
have AUX
to PART
plug VERB
both CCONJ
my PRON
ears NOUN
withmy VERB
fingers NOUN
to PART
check VERB
to PART
see VERB
if SCONJ
they PRON
are AUX
ringing VERB
. PUNCT
  SPACE
Usually ADV
they PRON
are AUX
, PUNCT
butyou ADJ
get VERB
so ADV
used ADJ
to ADP
it PRON
, PUNCT
it PRON
just ADV
gets VERB
tuned VERB
out ADP
. PUNCT
  SPACE
Yes INTJ
, PUNCT
this DET
is AUX
what PRON
I'veread PROPN
about ADP
it PRON
... PUNCT
not PART
just ADV
from ADP
my PRON
own ADJ
personal ADJ
experience.>Does NOUN
anyone PRON
know VERB
of ADP
any DET
treatments NOUN
for ADP
this DET
? PUNCT
  SPACE
Any DET
experience NOUN
? PUNCT
  SPACE
Coping VERB
> X
mechanisms NOUN
? PUNCT
  SPACE
Any DET
opinions NOUN
on ADP
the DET
anti ADJ
- ADJ
depressant ADJ
drugs?Millions NOUN
have AUX
it PRON
, PUNCT
according VERB
to ADP
my PRON
physician NOUN
. PUNCT
  SPACE
You PRON
just ADV
learn VERB
to ADP
copewith PROPN
it PRON
( PUNCT
like SCONJ
I PRON
mentioned VERB
earlier ADV
) PUNCT
by ADP
ignoring VERB
it PRON
. PUNCT
  SPACE
It PRON
eventuallybecomes VERB
unconscious ADJ
. PUNCT
The DET
doc NOUN
also ADV
said VERB
it PRON
could AUX
be AUX
caused VERB
by ADP
diet PROPN
( PUNCT
ie PROPN
: PUNCT
too ADV
much ADJ
caffeine)and PROPN
stress NOUN
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
changed VERB
my PRON
lifestyle NOUN
much ADJ
, PUNCT
and CCONJ
it PRON
just ADV
comesand VERB
goes VERB
( PUNCT
it PRON
is AUX
always ADV
there ADV
somewhat ADV
, PUNCT
but CCONJ
now ADV
I PRON
rarely ADV
notice VERB
it PRON
whenit ADV
really ADV
" PUNCT
kicks NOUN
in").Also ADV
, PUNCT
it PRON
does AUX
n't PART
necessarily ADV
mean VERB
there PRON
is AUX
any DET
hearing NOUN
loss NOUN
, PUNCT
eithercaused VERB
by ADP
it PRON
or CCONJ
causing VERB
it PRON
. PUNCT
  SPACE
I PRON
had AUX
an DET
ENT PROPN
( PUNCT
ear NOUN
/ SYM
nose NOUN
/ SYM
throat NOUN
) PUNCT
exam NOUN
, PUNCT
andpassed VERB
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
my PRON
hearing NOUN
is AUX
quite ADV
good ADJ
considering VERB
I PRON
do AUX
n't PART
take VERB
asgood NOUN
of ADP
care NOUN
of ADP
my PRON
hearing NOUN
as SCONJ
I PRON
should AUX
. PUNCT
Her PRON
reaction NOUN
is AUX
normal ADJ
. PUNCT
  SPACE
If SCONJ
it PRON
is AUX
tinnitus ADJ
, PUNCT
chances NOUN
are AUX
good ADJ
she'llbegin ADV
to PART
not PART
even ADV
notice VERB
it PRON
. PUNCT
  SPACE
This DET
info NOUN
is AUX
taken VERB
mostly ADV
from ADP
a DET
few ADJ
" PUNCT
experts NOUN
" PUNCT
, PUNCT
my PRON
own ADJ
experience NOUN
, PUNCT
andsome ADJ
readings NOUN
( PUNCT
sorry INTJ
, PUNCT
it PRON
was AUX
a DET
few ADJ
years NOUN
back ADV
and CCONJ
do AUX
n't PART
have AUX
anyspecifics NOUN
handy).JTNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58066From NUM
: PUNCT
amigan@cup.portal.com PROPN
( PUNCT
Mike PROPN
- PUNCT
Medwid)Subject PROPN
: PUNCT
Emphysema PROPN
questionA PROPN
friend NOUN
of ADP
mine NOUN
is AUX
going VERB
in ADP
later ADV
this DET
week NOUN
for ADP
tests NOUN
to PART
see VERB
if SCONJ
hasemphysema NOUN
. PUNCT
  SPACE
His PRON
lung NOUN
capacity NOUN
has AUX
decreased VERB
over ADP
time NOUN
. PUNCT
  SPACE
His PRON
father NOUN
diedof VERB
the DET
disease NOUN
. PUNCT
  SPACE
He PRON
works VERB
in ADP
woodworking NOUN
. PUNCT
  SPACE
I PRON
believe VERB
he PRON
has AUX
a DET
veryoccasional ADJ
cigarette NOUN
, PUNCT
perhaps ADV
one NUM
cigarette NOUN
a DET
day NOUN
or CCONJ
even ADV
less ADJ
. PUNCT
  SPACE
He PRON
tellsme VERB
this DET
.. PUNCT
I've PROPN
never ADV
seen VERB
him PRON
light VERB
up ADP
. PUNCT
  SPACE
He PRON
has AUX
some DET
pretty ADJ
healthylife NOUN
style NOUN
habits NOUN
, PUNCT
good ADJ
diet NOUN
, PUNCT
exercise NOUN
, PUNCT
meditation NOUN
, PUNCT
retreats NOUN
, PUNCT
therapyetc PROPN
. PUNCT
  SPACE
Anyhow ADV
.. PUNCT
he PRON
is AUX
very ADV
concerned ADJ
with ADP
this DET
check NOUN
up ADP
. PUNCT
  SPACE
I PRON
know VERB
reallynothing VERB
about ADP
the DET
disease NOUN
. PUNCT
  SPACE
I PRON
believe VERB
it PRON
interferes VERB
with ADP
the DET
liningof NOUN
the DET
lung NOUN
being AUX
able ADJ
to PART
exchange VERB
oxygen NOUN
. PUNCT
  SPACE
Is AUX
a DET
diagnosis NOUN
of ADP
emphysema PROPN
a DET
death NOUN
sentence NOUN
? PUNCT
  SPACE
If SCONJ
he PRON
were AUX
to PART
give VERB
up ADP
smokingentirely ADV
would AUX
that DET
better VERB
his PRON
chances NOUN
for ADP
recovery NOUN
? PUNCT
  SPACE
What PRON
are AUX
some DET
modern ADJ
therapies NOUN
used VERB
in ADP
people NOUN
with ADP
this DET
disease NOUN
? PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
Thanks INTJ
. PUNCT
  SPACE
amigan@cup.portal.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58067From NUM
: PUNCT
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare)Subject NUM
: PUNCT
Re ADP
: PUNCT
Oily ADJ
skin NOUN
- PUNCT
problem?In NOUN
article NOUN
< X
1993Apr5.044140.1@vaxc.stevens-tech.edu NUM
> X
u92_hwong@vaxc.stevens-tech.edu NOUN
writes VERB
: PUNCT
> X
	 SPACE
I PRON
have AUX
a DET
very ADV
oily ADJ
skin NOUN
. PUNCT
  SPACE
My PRON
problem NOUN
is AUX
when ADV
I PRON
wash VERB
my PRON
face NOUN
, PUNCT
it PRON
becomes VERB
> X
oily ADV
in ADP
half DET
an DET
hour NOUN
. PUNCT
  SPACE
Especially ADV
in ADP
the DET
nose NOUN
region NOUN
. PUNCT
  SPACE
Is AUX
this DET
an DET
illness NOUN
? PUNCT
  SPACE
How ADV
> X
can AUX
I PRON
prevent VERB
it PRON
from ADP
occuring VERB
in ADP
such ADJ
short ADJ
time NOUN
? PUNCT
  SPACE
Is AUX
there PRON
a DET
cleanser NOUN
out ADP
> X
there ADV
that PRON
will AUX
do AUX
a DET
better ADJ
job NOUN
-- PUNCT
that DET
is AUX
after ADP
cleaning VERB
, PUNCT
my PRON
face NOUN
wo AUX
n't PART
become VERB
> X
oily ADV
in ADP
such DET
a DET
short ADJ
time NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
that DET
's AUX
a DET
problem NOUN
. PUNCT
  SPACE
My PRON
face NOUN
is AUX
quite ADV
oily ADJ
too ADV
. PUNCT
  SPACE
I PRON
had AUX
a DET
moderateacne NOUN
problem NOUN
for ADP
many ADJ
years NOUN
. PUNCT
  SPACE
I PRON
then ADV
found VERB
that SCONJ
if SCONJ
I PRON
vigorously ADV
scrub VERB
my PRON
facewith NOUN
a DET
nail NOUN
brush NOUN
and CCONJ
soap NOUN
( PUNCT
Irish PROPN
Spring PROPN
) PUNCT
twice DET
a DET
day NOUN
the DET
acne NOUN
was AUX
not PART
a DET
problem NOUN
. PUNCT
  SPACE
I PRON
can AUX
still ADV
leave VERB
a DET
pretty ADJ
health NOUN
nose NOUN
print NOUN
on ADP
a DET
mirror NOUN
after ADP
45 NUM
min(don't PROPN
ask VERB
; PUNCT
- PUNCT
> X
) PUNCT
but CCONJ
acne PROPN
is AUX
not PART
a DET
real ADJ
problem NOUN
anymore ADV
. PUNCT
                                           SPACE
[ PUNCT
J.F.]Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58069From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Migraines NOUN
and CCONJ
scansDN PROPN
> X
From ADP
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)DN NOUN
> X
A DET
neurologyDN SYM
> X
consultation NOUN
is AUX
cheaper ADJ
than SCONJ
a DET
scan NOUN
. PUNCT
And CCONJ
also ADV
better ADV
, PUNCT
because SCONJ
a DET
neurologist NOUN
can AUX
make VERB
a DET
differentialdiagnosis NOUN
between ADP
migraine NOUN
, PUNCT
tension NOUN
- PUNCT
type NOUN
headache NOUN
, PUNCT
cluster NOUN
, PUNCT
benignintracranial ADJ
hypertension NOUN
, PUNCT
chronic PROPN
paroxysmal ADJ
hemicrania PROPN
, PUNCT
and CCONJ
otherheadache PROPN
syndromes VERB
that SCONJ
all DET
appear VERB
normal ADJ
on ADP
a DET
scan NOUN
. PUNCT
  SPACE
A DET
neurologistcan PROPN
also ADV
recommend VERB
a DET
course NOUN
of ADP
treatment NOUN
that PRON
is AUX
appropriate ADJ
to ADP
thediagnosis NOUN
. PUNCT
DN PROPN
> X
> X
> X
Also ADV
, PUNCT
since SCONJ
many ADJ
people NOUN
are AUX
convinced ADJ
they PRON
have AUX
brain NOUN
tumors NOUN
or CCONJ
otherDN NOUN
> X
> X
> X
serious ADJ
pathology NOUN
, PUNCT
it PRON
may AUX
be AUX
cheaper ADJ
to PART
just ADV
get AUX
a DET
CT NOUN
scan AUX
then ADV
haveDN PROPN
> X
> X
> X
them PRON
come VERB
into ADP
the DET
ER PROPN
every DET
few ADJ
weeks NOUN
. PUNCT
DN PROPN
> X
And CCONJ
easier ADJ
than SCONJ
taking VERB
the DET
time NOUN
to PART
reassure VERB
the DET
patient NOUN
, PUNCT
right?DN VERB
> X
Personally ADV
, PUNCT
I PRON
do AUX
n't PART
think VERB
this DET
can AUX
ever ADV
be AUX
justified VERB
. PUNCT
Sigh ADJ
. PUNCT
  SPACE
It PRON
may AUX
never ADV
be AUX
justifiable ADJ
, PUNCT
but CCONJ
I PRON
sometimes ADV
do AUX
it PRON
. PUNCT
  SPACE
Evenafter PROPN
I PRON
try VERB
to PART
show VERB
thoroughness NOUN
with ADP
a DET
detailed ADJ
history NOUN
, PUNCT
neurologicexamination NOUN
, PUNCT
and CCONJ
discussion NOUN
with ADP
the DET
patient NOUN
about ADP
my PRON
diagnosis NOUN
, PUNCT
salted VERB
with ADP
lots NOUN
of ADP
reassurance NOUN
, PUNCT
patients NOUN
still ADV
ask VERB
" PUNCT
why ADV
ca AUX
n't PART
youorder VERB
a DET
scan NOUN
, PUNCT
so SCONJ
we PRON
can AUX
be AUX
absolutely ADV
sure ADJ
? PUNCT
" PUNCT
  SPACE
Aunt PROPN
Millie PROPN
often ADV
getsinto VERB
the DET
conversation NOUN
, PUNCT
as SCONJ
in ADP
" PUNCT
they PRON
ignored VERB
Aunt PROPN
Millie PROPN
's PART
headachesfor NOUN
years NOUN
" PUNCT
, PUNCT
and CCONJ
then ADV
she PRON
died VERB
of ADP
a DET
brain NOUN
tumor NOUN
, PUNCT
aneurysm PROPN
, PUNCT
orwhatever NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
away ADV
without ADP
ever ADV
ordering VERB
imaging VERB
for ADP
apatient NOUN
with ADP
an DET
obviously ADV
benign ADJ
headache NOUN
syndrome NOUN
, PUNCT
I PRON
'd AUX
like VERB
to ADP
hearwhat VERB
your PRON
magic NOUN
is AUX
. PUNCT
Every ADV
once ADV
in ADP
a DET
while NOUN
I PRON
am AUX
able ADJ
to PART
bypass VERB
imaging VERB
by ADP
getting VERB
an DET
EEG.Mind NOUN
you PRON
, PUNCT
I PRON
do AUX
n't PART
think VERB
EEG PROPN
is AUX
terribly ADV
sensitive ADJ
for ADP
brain NOUN
tumor NOUN
, PUNCT
but CCONJ
the DET
patient NOUN
feels VERB
like SCONJ
" PUNCT
something PRON
is AUX
being AUX
done VERB
" PUNCT
( PUNCT
as SCONJ
if SCONJ
thehours NOUN
I PRON
spent VERB
talking VERB
with ADP
and CCONJ
examining VERB
the DET
patient NOUN
were"nothing NOUN
" PUNCT
) PUNCT
, PUNCT
the DET
EEG PROPN
has AUX
no DET
ionizing VERB
radiation NOUN
, PUNCT
it PRON
's AUX
* PUNCT
much ADJ
* PUNCT
cheaperthan PROPN
CT PROPN
or CCONJ
MRI PROPN
, PUNCT
and CCONJ
the DET
EEG PROPN
brings VERB
in ADP
some DET
money NOUN
to ADP
my PRON
department.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                         SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58070From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
migraine NOUN
and CCONJ
exerciseJL PROPN
> X
From ADP
: PUNCT
jlecher@pbs.orgJL X
> X
> X
I PRON
would AUX
not PART
classify VERB
a DET
mild ADJ
headache NOUN
that PRON
was AUX
continuous ADJ
for ADP
weeksJL PROPN
> X
> X
as SCONJ
migraine ADJ
, PUNCT
even ADV
if SCONJ
the DET
other ADJ
typical ADJ
features NOUN
were AUX
there ADV
( PUNCT
e.g PROPN
. PROPN
,JL PUNCT
> X
> X
unilateral PROPN
, PUNCT
nausea NOUN
and CCONJ
vomiting NOUN
, PUNCT
photophobia PROPN
) PUNCT
. PUNCT
  SPACE
Migraines NOUN
are AUX
, PUNCT
byJL PROPN
> X
> X
common PROPN
agreement PROPN
, PUNCT
episodic PROPN
rather ADV
than SCONJ
constant ADJ
. PUNCT
JL PROPN
> X
> X
JL PROPN
> X
Well INTJ
, PUNCT
I PRON
'm AUX
glad ADJ
that SCONJ
you PRON
are AUX
n't PART
my PRON
doctor NOUN
, PUNCT
then ADV
, PUNCT
or CCONJ
I PRON
'd AUX
still ADV
be AUX
suffering VERB
. PUNCT
JL PROPN
> X
Remember VERB
, PUNCT
I PRON
was AUX
tested VERB
for ADP
any DET
other ADJ
cause NOUN
, PUNCT
and CCONJ
there PRON
was AUX
nothing PRON
. PUNCT
I'mJL PROPN
> X
otherwise ADV
very ADV
healthy ADJ
. PUNCT
JL PROPN
> X
The DET
nagging ADJ
pain NOUN
has AUX
all DET
of ADP
the DET
qualifications NOUN
: PUNCT
it PRON
's AUX
on ADP
one NUM
side NOUN
, PUNCT
andJL X
> X
frequently ADV
included VERB
my PRON
entire ADJ
right ADJ
side NOUN
: PUNCT
right ADJ
arm NOUN
, PUNCT
right ADJ
leg NOUN
, PUNCT
right ADJ
eye NOUN
, PUNCT
JL PROPN
> X
even ADV
the DET
right ADJ
side NOUN
of ADP
my PRON
tongue NOUN
hurt VERB
or CCONJ
tingled VERB
. PUNCT
Noise NOUN
hurt NOUN
, PUNCT
light ADJ
hurt NOUN
, PUNCT
JL PROPN
> X
thinking NOUN
hurt VERB
. PUNCT
When ADV
it PRON
got VERB
bad ADJ
, PUNCT
I PRON
would AUX
lose VERB
my PRON
ability NOUN
to PART
read VERB
. PUNCT
The DET
differential ADJ
diagnosis NOUN
between ADP
migraine NOUN
and CCONJ
non ADJ
- ADJ
migranous ADJ
painis NOUN
not PART
* PUNCT
always ADV
* PUNCT
important ADJ
, PUNCT
because SCONJ
some DET
therapies NOUN
are AUX
effective ADJ
inboth NOUN
( PUNCT
e.g. ADV
, PUNCT
tricyclic ADJ
antidepressants NOUN
such ADJ
as SCONJ
amitriptyline ADV
, PUNCT
non ADJ
- ADJ
steroidal ADJ
anti ADJ
- ADJ
inflammatory ADJ
drugs NOUN
such ADJ
as SCONJ
ibuprofen PROPN
) PUNCT
. PUNCT
  SPACE
Othertherapies NOUN
may AUX
be AUX
more ADV
specific ADJ
: PUNCT
beta NOUN
- PUNCT
blockers NOUN
such ADJ
as SCONJ
propranololwork NOUN
better ADV
in ADP
migraine NOUN
than SCONJ
tension NOUN
- PUNCT
type NOUN
headache NOUN
. PUNCT
The DET
most ADV
important ADJ
thing NOUN
, PUNCT
from ADP
your PRON
perspective NOUN
, PUNCT
is AUX
that SCONJ
you PRON
gotrelief VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
please INTJ
understand VERB
that SCONJ
a DET
diagnosis NOUN
other ADJ
thanmigraine NOUN
does AUX
not PART
necessarily ADV
mean VERB
" PUNCT
psychogenic ADJ
" PUNCT
; PUNCT
I PRON
suspect VERB
thatorganic NOUN
factors NOUN
play VERB
as SCONJ
large ADJ
a DET
role NOUN
in ADP
tension NOUN
- PUNCT
type NOUN
headache NOUN
as SCONJ
inmigraine.--- ADJ
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58071From NUM
: PUNCT
julkunen@messi.uku.fi PROPN
( PUNCT
Antero NOUN
Julkunen)Subject NUM
: PUNCT
What PRON
about ADP
sci.med.chemistryThere NOUN
is AUX
this DET
newsgroup NOUN
sci.med.physics PROPN
and CCONJ
there PRON
has AUX
been AUX
quite DET
a DET
lotdiscussion NOUN
in ADP
this DET
group NOUN
about ADP
many ADJ
chemical NOUN
items NOUN
e.g. DET
prolactincholesterol NOUN
, PUNCT
TSH ADP
etc X
. PUNCT
Should AUX
there PRON
also ADV
be AUX
a DET
newsgroup NOUN
sci.med.chemistry?-- NOUN
Antero PROPN
Julkunen PROPN
, PUNCT
Dept PROPN
Clinical PROPN
Chemistry PROPN
, PUNCT
University PROPN
of ADP
Kuopio PROPN
, PUNCT
Finlande PROPN
- PUNCT
mail NOUN
: PUNCT
julkunen@messi.uku.fi PROPN
, PUNCT
phone NOUN
+358 PROPN
- PUNCT
71 NUM
- PUNCT
162680 NUM
, PUNCT
fax NOUN
+358 PROPN
- PUNCT
71 NUM
- PUNCT
162020Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58072From NUM
: PUNCT
kturner@copper.denver.colorado.edu NOUN
( PUNCT
Kathleen PROPN
J PROPN
Turner)Subject PROPN
: PUNCT
Mystery NOUN
Illness PROPN
with ADP
eye NOUN
problems NOUN
	 SPACE
A DET
friend NOUN
has AUX
the DET
following VERB
symptoms NOUN
which PRON
have AUX
occurred VERB
periodicallyevery NOUN
few ADJ
months NOUN
for ADP
the DET
last ADJ
3 NUM
years NOUN
. PUNCT
  SPACE
An DET
episode NOUN
begins VERB
with ADP
extremetiredness NOUN
followed VERB
by ADP
: PUNCT
	 SPACE
1 NUM
. PUNCT
traveling VERB
joint ADJ
pains NOUN
and CCONJ
stiffness NOUN
affecting VERB
mostly ADV
the DET
elbows NOUN
, PUNCT
	 SPACE
knees NOUN
, PUNCT
and CCONJ
hips NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
generalized ADJ
muscle NOUN
pains NOUN
	 SPACE
3 NUM
. PUNCT
tinnitus NOUN
and CCONJ
a DET
feeling NOUN
of ADP
pressure NOUN
in ADP
her PRON
ears NOUN
	 SPACE
4 NUM
. PUNCT
severe ADJ
sweating NOUN
occuring VERB
both CCONJ
at ADP
night NOUN
and CCONJ
during ADP
the DET
day NOUN
	 SPACE
5 NUM
. PUNCT
hemorrhaging VERB
in ADP
both DET
eyes NOUN
. PUNCT
  SPACE
Her PRON
opthamologist NOUN
calls VERB
it PRON
peripheral ADJ
   SPACE
retinal ADJ
hemorhages NOUN
and CCONJ
says VERB
it PRON
looks VERB
similar ADJ
to ADP
diabetic ADJ
retinopathy PROPN
. PUNCT
  SPACE
( PUNCT
She PRON
        SPACE
is AUX
n't PART
diabetic ADJ
-- PUNCT
they PRON
checked VERB
. PUNCT
	 SPACE
6 NUM
. PUNCT
distorted VERB
color NOUN
vision NOUN
and CCONJ
distorted VERB
vision NOUN
in ADP
general ADJ
( PUNCT
telephone NOUN
	    SPACE
poles NOUN
do AUX
not PART
appear VERB
to PART
be AUX
straight ADJ
) PUNCT
	 SPACE
7 NUM
. PUNCT
loss NOUN
of ADP
peripheral ADJ
vision NOUN
. PUNCT
		 SPACE
Many ADJ
tests NOUN
have AUX
been AUX
run VERB
and CCONJ
all DET
are AUX
normal ADJ
except SCONJ
for ADP
something PRON
called VERB
unidentified ADJ
bright ADJ
objects NOUN
found VERB
on ADP
a DET
MRI NOUN
of ADP
her PRON
brain NOUN
. PUNCT
  SPACE
The DET
onlything NOUN
that PRON
seems VERB
to PART
alleviate VERB
one NUM
of ADP
these DET
episodes NOUN
is AUX
prednisone ADJ
. PUNCT
  SPACE
Attimes PROPN
she PRON
had AUX
been AUX
on ADP
60 NUM
mg NOUN
per ADP
day NOUN
. PUNCT
  SPACE
Whenever ADV
she PRON
gets VERB
down ADV
to PART
10 NUM
- SYM
15 NUM
mgthe NOUN
symptoms NOUN
become VERB
acute ADJ
again ADV
. PUNCT
	 SPACE
She PRON
is AUX
quite ADV
concerned ADJ
because SCONJ
the DET
retinal ADJ
hemorrhages NOUN
are AUX
becomingworse ADJ
with ADP
each DET
episode NOUN
and CCONJ
her PRON
vision NOUN
is AUX
suffering VERB
. PUNCT
  SPACE
None NOUN
of ADP
the DET
docs PROPN
shehas PROPN
seen VERB
have AUX
any DET
idea NOUN
what PRON
this DET
condition NOUN
is AUX
or CCONJ
what PRON
can AUX
be AUX
done VERB
to PART
stopit VERB
. PUNCT
  SPACE
Any DET
suggestions NOUN
or CCONJ
advice NOUN
would AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
Thanks NOUN
in ADP
advance NOUN
. PUNCT
  SPACE
Kathy PROPN
Turner PROPN
	 SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58073From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr5.191712.7543@inmet.camb.inmet.com PROPN
> X
mazur@bluefin.camb.inmet.com PROPN
( PUNCT
Beth PROPN
Mazur PROPN
) PUNCT
writes:>In PROPN
< X
1993Apr03.1.6627@omen X
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>Gordon PROPN
, PUNCT
your PRON
experience NOUN
is AUX
valid ADJ
for ADP
many ADJ
, PUNCT
but CCONJ
not PART
all DET
. PUNCT
  SPACE
The>>fact VERB
that SCONJ
you PRON
know VERB
a DET
few ADJ
people NOUN
who PRON
have AUX
been AUX
overweight ADJ
and CCONJ
are>>now NOUN
stable ADJ
at ADP
a DET
lower ADJ
( PUNCT
normal ADJ
or CCONJ
just ADV
less ADJ
? PUNCT
) PUNCT
weight NOUN
does AUX
not>>contradict PROPN
the DET
observation NOUN
that PRON
only ADV
5 NUM
- SYM
10 NUM
per NOUN
cent NOUN
can AUX
maintain>>ideal VERB
weight NOUN
with ADP
current ADJ
technology.>>Actually ADV
, PUNCT
the DET
observation NOUN
is AUX
that SCONJ
only ADV
5 NUM
- SYM
10 NUM
% NOUN
of ADP
those DET
who PRON
seek VERB
help NOUN
> X
from ADP
your PRON
so ADV
- PUNCT
called VERB
" PUNCT
diet NOUN
evangelists NOUN
" PUNCT
can AUX
maintain VERB
their PRON
weight NOUN
. PUNCT
  SPACE
I PRON
> X
happen VERB
to PART
agree VERB
with ADP
Keith PROPN
Lynch PROPN
that SCONJ
there PRON
are AUX
many ADJ
people NOUN
who PRON
can AUX
> X
and CCONJ
do AUX
lose VERB
weight NOUN
on ADP
their PRON
own ADJ
, PUNCT
and CCONJ
who PRON
are AUX
not PART
reflected VERB
in ADP
the DET
> X
dismal ADJ
failure NOUN
rate NOUN
that PRON
is AUX
often ADV
quoted.>>Wasn't ADV
there ADV
a DET
study NOUN
where ADV
a DET
researcher NOUN
asked VERB
a DET
more ADV
general ADJ
population,>perhaps NOUN
some DET
part NOUN
of ADP
a DET
university NOUN
community NOUN
, PUNCT
about ADP
weight NOUN
loss NOUN
and CCONJ
he PRON
/ CCONJ
she PRON
> X
found VERB
that SCONJ
a DET
much ADV
higher ADJ
percentage NOUN
had AUX
lost VERB
and CCONJ
maintained VERB
? PUNCT
In ADP
fact NOUN
Adiposity NOUN
101 NUM
mentions VERB
a DET
similar ADJ
study NOUN
( PUNCT
search NOUN
for ADP
" PUNCT
lifeevents NOUN
" PUNCT
in ADP
any DET
recent ADJ
version NOUN
of ADP
Adiposity NOUN
101).The NUM
problem NOUN
with ADP
anecdotal ADJ
reports NOUN
about ADP
individuals NOUN
who PRON
havelost VERB
weight NOUN
and CCONJ
kept VERB
it PRON
off ADP
is AUX
that SCONJ
we PRON
do AUX
n't PART
know VERB
what PRON
causedthe DET
weight NOUN
gain NOUN
in ADP
the DET
first ADJ
place NOUN
. PUNCT
  SPACE
This DET
is AUX
critical ADJ
becausesomeone NOUN
who PRON
gains VERB
weight NOUN
because SCONJ
of ADP
something PRON
temporary ADJ
( PUNCT
drugeffect ADJ
, PUNCT
life NOUN
event NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
may AUX
appear VERB
successful ADJ
at ADP
dieting VERB
whenthe DET
weight NOUN
loss NOUN
was AUX
really ADV
the DET
result NOUN
of ADP
reversing VERB
the DET
temporarycondition NOUN
that PRON
caused VERB
the DET
weight NOUN
gain.-- PROPN
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58074From NUM
: PUNCT
swkirch@sun6850.nrl.navy.mil PROPN
( PUNCT
Steve PROPN
Kirchoefer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
BreatheGetting VERB
back ADV
to ADP
the DET
original ADJ
question NOUN
in ADP
this DET
thread NOUN
: PUNCT
I PRON
experienced VERB
breathing VERB
difficulties NOUN
a DET
few ADJ
years NOUN
ago ADV
similar ADJ
to ADP
thosedescribed NOUN
. PUNCT
  SPACE
In ADP
my PRON
case NOUN
, PUNCT
it PRON
turned VERB
out ADP
that SCONJ
I PRON
was AUX
developing VERB
Type NOUN
Idiabetes NOUN
. PUNCT
  SPACE
Although SCONJ
I PRON
never ADV
sought VERB
direct ADJ
confirmation NOUN
of ADP
this DET
from ADP
mydoctor NOUN
, PUNCT
I PRON
think VERB
that SCONJ
the DET
breathing NOUN
problem NOUN
was AUX
associated VERB
with ADP
thepresence NOUN
of ADP
ketones NOUN
due ADJ
to ADP
the DET
diabetes NOUN
. PUNCT
I PRON
think VERB
that SCONJ
ketosis NOUN
can AUX
occur VERB
in ADP
lesser ADJ
degree NOUN
if SCONJ
one NOUN
is AUX
restrictingtheir NOUN
food NOUN
intake VERB
drastically ADV
. PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
this DET
relevant ADJ
in ADP
thiscase NOUN
, PUNCT
but CCONJ
you PRON
might AUX
ask VERB
your PRON
daughter NOUN
if SCONJ
she PRON
has AUX
been AUX
eatingproperly.-- PROPN
Steve PROPN
Kirchoefer PROPN
                                             SPACE
( PUNCT
202 NUM
) PUNCT
767 NUM
- SYM
2862Code NUM
6851 NUM
                                      SPACE
kirchoefer@estd.nrl.navy.milNaval PROPN
Research PROPN
Laboratory PROPN
                       SPACE
Microwave PROPN
Technology PROPN
BranchWashington PROPN
, PUNCT
DC PROPN
  SPACE
20375 NUM
- SYM
5000 NUM
              SPACE
Electronics PROPN
Sci PROPN
. PUNCT
and CCONJ
Tech PROPN
. PUNCT
DivisionNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58075From NUM
: PUNCT
jperkski@kentcomm.uucp PROPN
( PUNCT
Jim PROPN
Perkowski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
jiggersIn PROPN
article NOUN
< X
1ppae1$bt0@bigboote X
. PUNCT
WPI.EDU PROPN
> X
susan@wpi PROPN
. PUNCT
WPI.EDU PROPN
( PUNCT
susan PROPN
) PUNCT
writes VERB
: PUNCT
> X
a DET
friend NOUN
of ADP
mine NOUN
has AUX
a DET
very ADV
severe ADJ
cause NOUN
of ADP
jiggers NOUN
- PUNCT
> X
for ADP
over ADP
a DET
year NOUN
now ADV
- PUNCT
they PRON
cause VERB
him PRON
a DET
lot NOUN
of ADP
pain NOUN
. PUNCT
> X
> X
i PRON
recently ADV
read VERB
( PUNCT
i PRON
do AUX
n't PART
know VERB
where ADV
) PUNCT
about ADP
a DET
possible ADJ
> X
cure NOUN
for ADP
jiggers NOUN
. PUNCT
  SPACE
does AUX
anyone PRON
have AUX
any DET
information NOUN
on ADP
> X
this DET
? PUNCT
  SPACE
i PRON
ca AUX
n't PART
remember VERB
the DET
name NOUN
of ADP
the DET
treatment NOUN
, PUNCT
or CCONJ
> X
where ADV
i PRON
read VERB
it.>I'll INTJ
probably ADV
get AUX
flamed VERB
for ADP
this DET
, PUNCT
but CCONJ
when ADV
I PRON
was AUX
a DET
kid NOUN
we PRON
would AUX
go VERB
tomy NOUN
uncles NOUN
cabin NOUN
on ADP
Middle PROPN
Bass PROPN
Island PROPN
on ADP
Lake PROPN
Erie PROPN
. PUNCT
We PRON
always ADV
came VERB
homewith PROPN
a DET
nasty ADJ
case NOUN
of ADP
jiggers NOUN
( PUNCT
large ADJ
red ADJ
bumps NOUN
where ADV
the DET
buggers NOUN
hadburrowed VERB
into ADP
the DET
skin NOUN
) PUNCT
. PUNCT
My PRON
mother NOUN
would AUX
paint VERB
the DET
bumps NOUN
with ADP
clearfinger NOUN
nail NOUN
polish NOUN
. PUNCT
This DET
was AUX
repeated VERB
daily ADV
for ADP
about ADV
a DET
week NOUN
or CCONJ
so ADV
. PUNCT
Theapplication NOUN
of ADP
the DET
polish NOUN
is AUX
supposed VERB
to PART
suffocate VERB
them PRON
as SCONJ
it PRON
seals VERB
ofthe DET
skin NOUN
. PUNCT
All DET
I PRON
can AUX
say VERB
is AUX
it PRON
worked VERB
for ADP
us PRON
. PUNCT
One NUM
word NOUN
of ADP
cautionthough NOUN
. PUNCT
Putting VERB
finger NOUN
nail NOUN
polish NOUN
on ADP
a DET
jigger NOUN
bite NOUN
stings NOUN
like SCONJ
hell.(If INTJ
I PRON
do AUX
get AUX
flamed VERB
for ADP
this DET
just ADV
put VERB
jam NOUN
in ADP
my PRON
pockets NOUN
and CCONJ
call VERB
metoast.:)--_______________________________________________________________________________kentcomm!jperkski@aldhfn.akron.oh.us NUM
( PUNCT
and CCONJ
) PUNCT
kentcomm!jperkski@legend.akron.oh.usNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58076Subject NUM
: PUNCT
Teenage ADJ
acneFrom PROPN
: PUNCT
pchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill)My PROPN
14-y PROPN
- PUNCT
o PROPN
son NOUN
has AUX
the DET
usual ADJ
teenage NOUN
spotty ADJ
chin NOUN
and CCONJ
greasy NOUN
nose NOUN
. PUNCT
  SPACE
Ibought VERB
him PRON
Clearasil PROPN
face NOUN
wash NOUN
and CCONJ
ointment NOUN
. PUNCT
  SPACE
I PRON
think VERB
that DET
is AUX
probablyenough ADJ
, PUNCT
along ADP
with ADP
the DET
usual ADJ
good ADJ
diet NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
he PRON
is AUX
on ADP
at ADP
me PRON
toget VERB
some DET
product NOUN
called VERB
Dalacin PROPN
T PROPN
, PUNCT
which PRON
used VERB
to PART
be AUX
adoctor's VERB
- PUNCT
prescription NOUN
only ADJ
treatment NOUN
but CCONJ
is AUX
not PART
available ADJ
over ADP
thechemist NOUN
's PART
counter NOUN
. PUNCT
  SPACE
I PRON
have AUX
asked VERB
a DET
couple NOUN
of ADP
pharmacists NOUN
who PRON
sayeither VERB
his PRON
acne NOUN
is AUX
not PART
severe ADJ
enough ADV
for ADP
Dalacin PROPN
T PROPN
, PUNCT
or CCONJ
that SCONJ
Clearasilis PROPN
OK INTJ
. PUNCT
  SPACE
I PRON
had AUX
the DET
odd ADJ
spots NOUN
as SCONJ
a DET
teenager NOUN
, PUNCT
nothing PRON
serious ADJ
. PUNCT
  SPACE
Hisfather PROPN
was AUX
the DET
same ADJ
, PUNCT
so ADV
I PRON
do AUX
n't PART
figure VERB
his PRON
acne NOUN
is AUX
going VERB
to PART
escalateinto VERB
something PRON
disfiguring VERB
. PUNCT
  SPACE
But CCONJ
I PRON
know VERB
kids NOUN
are AUX
senstitive ADJ
abouttheir NOUN
appearance NOUN
. PUNCT
  SPACE
I PRON
am AUX
wary ADJ
because SCONJ
a DET
neighbour NOUN
's PART
son NOUN
had AUX
this DET
wierdmalady NOUN
that PRON
was AUX
eventually ADV
put VERB
down ADP
to ADP
an DET
overdose NOUN
of ADP
vitamin NOUN
A DET
fromacne ADJ
treatment NOUN
. PUNCT
  SPACE
I PRON
want VERB
to PART
help VERB
- PUNCT
but CCONJ
with ADP
appropriate ADJ
treatment NOUN
. PUNCT
My PRON
son NOUN
also ADV
has AUX
some DET
scaliness NOUN
around ADP
the DET
hairline NOUN
on ADP
his PRON
scalp NOUN
. PUNCT
  SPACE
Sortof PROPN
teenage ADJ
cradle NOUN
cap NOUN
. PUNCT
  SPACE
Any DET
pointers NOUN
/ SYM
advice NOUN
on ADP
this DET
? PUNCT
  SPACE
We PRON
have AUX
tried VERB
acouple NOUN
of ADP
anti PROPN
dandruff PROPN
shampoos NOUN
and CCONJ
some DET
of ADP
these DET
are AUX
inclined VERB
tomake NOUN
the DET
condition NOUN
worse ADV
, PUNCT
not PART
better ADJ
. PUNCT
Shall AUX
I PRON
bury VERB
the DET
kid NOUN
till SCONJ
he PRON
's AUX
21 NUM
: PUNCT
) PUNCT
-- PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
            SPACE
The DET
floggings NOUN
will AUX
continue VERB
until ADP
morale NOUN
improves VERB
                  SPACE
pchurch@swell.actrix.gen.nz PROPN
  SPACE
Pat PROPN
Churchill PROPN
, PUNCT
Wellington PROPN
New PROPN
Zealand PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58077From NUM
: PUNCT
rog@cdc.hp.com PROPN
( PUNCT
Roger PROPN
Haaheim)Subject ADJ
: PUNCT
Re ADP
: PUNCT
sex NOUN
problem.larry NOUN
silverberg PROPN
( PUNCT
ls8139@albnyvms.bitnet PROPN
) PUNCT
wrote VERB
: PUNCT
> X
Hello INTJ
out ADV
there ADV
, PUNCT
> X
She PRON
suggested VERB
we PRON
go VERB
to ADP
a DET
sex NOUN
counselor NOUN
, PUNCT
but CCONJ
I PRON
really ADV
do AUX
n't PART
want VERB
to PART
( PUNCT
just ADV
yet).Interesting VERB
. PUNCT
  SPACE
Does AUX
she PRON
know VERB
you PRON
have AUX
placed VERB
this DET
info NOUN
request NOUN
on ADP
thenet NOUN
for ADP
the DET
world NOUN
to PART
see VERB
? PUNCT
  SPACE
If SCONJ
not PART
, PUNCT
how ADV
do AUX
you PRON
think VERB
she PRON
would AUX
reactif VERB
she PRON
found VERB
out ADP
? PUNCT
  SPACE
Why ADV
would AUX
you PRON
accept VERB
the DET
advice NOUN
of ADP
unknown ADJ
entitiesrather ADV
than SCONJ
a DET
counselor NOUN
? PUNCT
> X
Any DET
suggestions NOUN
would AUX
be AUX
appreciated VERB
. PUNCT
See VERB
the DET
counselor NOUN
. PUNCT
Well INTJ
, PUNCT
you PRON
asked VERB
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58078From NUM
: PUNCT
news&aio.jsc.nasa.gov PROPN
( PUNCT
USENET PROPN
News NOUN
System)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Oily ADJ
skin NOUN
- PUNCT
problem?In NOUN
article NOUN
< X
1993Apr5.044140.1@vaxc.stevens-tech.edu NUM
> X
, PUNCT
u92_hwong@vaxc.stevens-tech.edu PROPN
writes VERB
: PUNCT
> X
> X
Hi INTJ
there ADV
, PUNCT
> X
> X
	 SPACE
I PRON
have AUX
a DET
very ADV
oily ADJ
skin NOUN
. PUNCT
  SPACE
My PRON
problem NOUN
is AUX
when ADV
I PRON
wash VERB
my PRON
face NOUN
, PUNCT
it PRON
becomes VERB
> X
oily ADV
in ADP
half DET
an DET
hour NOUN
. PUNCT
  SPACE
Especially ADV
in ADP
the DET
nose NOUN
region NOUN
. PUNCT
  SPACE
Is AUX
this DET
an DET
illness NOUN
? PUNCT
  SPACE
How ADV
> X
can AUX
I PRON
prevent VERB
it PRON
from ADP
occuring VERB
in ADP
such ADJ
short ADJ
time NOUN
? PUNCT
  SPACE
Is AUX
there PRON
a DET
cleanser NOUN
out ADP
> X
there ADV
that PRON
will AUX
do AUX
a DET
better ADJ
job NOUN
-- PUNCT
that DET
is AUX
after ADP
cleaning VERB
, PUNCT
my PRON
face NOUN
wo AUX
n't PART
become VERB
> X
oily ADV
in ADP
such DET
a DET
short ADJ
time NOUN
. PUNCT
> X
> X
	 SPACE
Thank VERB
you PRON
for ADP
any DET
suggestion NOUN
. PUNCT
> X
> X
if SCONJ
this DET
is AUX
a DET
disease NOUN
, PUNCT
everyone PRON
should AUX
have AUX
it PRON
. PUNCT
  SPACE
My PRON
skin NOUN
has AUX
always ADV
been AUX
oily ADV
-i ADV
used VERB
to PART
say VERB
" PUNCT
if SCONJ
i PRON
were AUX
hot ADJ
enough ADV
, PUNCT
you PRON
could AUX
fry VERB
an DET
egg NOUN
on ADP
my PRON
oily ADJ
face".i NOUN
am AUX
now ADV
50 NUM
yrs PROPN
old ADJ
and CCONJ
my PRON
skin NOUN
looks VERB
younger ADJ
( PUNCT
i PRON
'm AUX
told VERB
) PUNCT
than SCONJ
some DET
people'sskin NOUN
at ADP
30 NUM
( PUNCT
it PRON
's AUX
still ADV
oily ADJ
) PUNCT
. PUNCT
  SPACE
i PRON
have AUX
only ADV
a DET
very ADV
few ADJ
tiny ADJ
wrinkles NOUN
. PUNCT
  SPACE
Thankyour ADJ
lucky ADJ
stars NOUN
for ADP
that DET
skin NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58079From NUM
: PUNCT
jec@watson.ibm.comSubject ADJ
: PUNCT
Contraceptive PROPN
pillA PROPN
very ADV
simple ADJ
question NOUN
: PUNCT
it PRON
seems VERB
to ADP
me PRON
that SCONJ
the DET
contraceptivepill NOUN
just ADV
prevents VERB
the DET
ovule NOUN
to PART
nest VERB
in ADP
the DET
vagina PROPN
and CCONJ
forces NOUN
it PRON
tofall VERB
every DET
month NOUN
. PUNCT
But CCONJ
it PRON
does AUX
not PART
prevent VERB
the DET
fertilzation NOUN
of ADP
the DET
ovule NOUN
. PUNCT
Is AUX
it PRON
true ADJ
? PUNCT
If SCONJ
yes INTJ
, PUNCT
is AUX
there PRON
a DET
risk NOUN
of ADP
extra ADJ
- PUNCT
uterinepregnancy ADJ
, PUNCT
that DET
is AUX
the DET
development NOUN
of ADP
the DET
ovule NOUN
inside ADP
the DET
Fallopiantube PROPN
? PUNCT
J.Cherbonnierjec@zurich.ibm.comNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58080From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Brain PROPN
Tumor PROPN
Treatment PROPN
( PUNCT
thanks)There NOUN
were AUX
a DET
few ADJ
people NOUN
who PRON
responded VERB
to ADP
my PRON
request NOUN
for ADP
info NOUN
ontreatment NOUN
for ADP
astrocytomas NOUN
through ADP
email NOUN
, PUNCT
whom PRON
I PRON
could AUX
n't PART
thankdirectly ADV
because SCONJ
of ADP
mail NOUN
- PUNCT
bouncing VERB
probs NOUN
( PUNCT
Sean PROPN
, PUNCT
Debra PROPN
, PUNCT
and CCONJ
Sharon PROPN
) PUNCT
. PUNCT
  SPACE
SoI PROPN
thought VERB
I PRON
'd AUX
publicly ADV
thank VERB
everyone PRON
. PUNCT
Thanks NOUN
! PUNCT
( PUNCT
I PRON
'm AUX
sure ADJ
glad ADJ
I PRON
accidentally ADV
hit VERB
" PUNCT
rn NOUN
" PUNCT
instead ADV
of ADP
" PUNCT
rm X
" PUNCT
when ADV
I PRON
wastrying VERB
to PART
delete VERB
a DET
file NOUN
last ADJ
September PROPN
. PUNCT
" PUNCT
Hmmm PROPN
... PUNCT
' PUNCT
News NOUN
? PUNCT
' PUNCT
What'sthis?" PROPN
.... PUNCT
)-BrianNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58081Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
Breathe VERB
-- PUNCT
UpdateFrom PROPN
: PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg)Thanks PROPN
to ADP
all DET
those DET
who PRON
responded VERB
to ADP
my PRON
original ADJ
post NOUN
on ADP
this DET
question NOUN
. PUNCT
  SPACE
Thefinal ADJ
diagnosis NOUN
was AUX
Stress PROPN
. PUNCT
  SPACE
I PRON
did AUX
not PART
take VERB
her PRON
for ADP
a DET
chiropractic ADJ
adjustment.(Rachel PROPN
receives VERB
all DET
her PRON
medical ADJ
care NOUN
at ADP
Keller PROPN
Army PROPN
Hospital PROPN
since SCONJ
she PRON
is AUX
amilitary ADJ
dependant ADJ
, PUNCT
and CCONJ
the DET
Army PROPN
does AUX
not PART
yet ADV
provide VERB
chiropractic ADJ
adjustmentsas ADJ
part NOUN
of ADP
its PRON
regular ADJ
health NOUN
care NOUN
. PUNCT
) PUNCT
  SPACE
I PRON
am AUX
hoping VERB
that SCONJ
the DET
arrival NOUN
of ADP
( PUNCT
1)Spring PROPN
Break PROPN
, PUNCT
and CCONJ
( PUNCT
2 X
) PUNCT
College PROPN
Acceptance PROPN
Letters PROPN
, PUNCT
will AUX
help VERB
. PUNCT
  SPACE
* PUNCT
UNFORTUNATELY*she PROPN
was AUX
wait VERB
- PUNCT
listed VERB
at ADP
the DET
college NOUN
she PRON
most ADV
dearly ADV
wanted VERB
to PART
attend VERB
, PUNCT
so ADV
itseems NOUN
as SCONJ
though SCONJ
that DET
stressor NOUN
may AUX
just ADV
continue VERB
for ADP
a DET
while NOUN
. PUNCT
  SPACE
: PUNCT
-(Meanwhile PUNCT
she PRON
is AUX
going VERB
on ADP
a DET
camping NOUN
trip NOUN
with ADP
her PRON
religious ADJ
youth NOUN
group NOUN
forspring VERB
break NOUN
, PUNCT
which PRON
seems VERB
like SCONJ
a DET
good ADJ
stress NOUN
- PUNCT
reliever NOUN
to ADP
me PRON
. PUNCT
Thanks NOUN
again ADV
for ADP
everybody PRON
's PART
help NOUN
/ SYM
advice NOUN
/ SYM
suggestions NOUN
/ SYM
ideas.------------------------Ruth NOUN
Ginzberg PROPN
< X
rginzberg@eagle.wesleyan.edu>Philosophy NOUN
Department;Wesleyan PROPN
University;USANewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58082From NUM
: PUNCT
kaminski@netcom.com X
( PUNCT
Peter PROPN
Kaminski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
What PRON
about ADP
sci.med.chemistryIn PROPN
< X
julkunen.734086202@messi.uku.fi PROPN
> X
julkunen@messi.uku.fi PROPN
( PUNCT
AnteroJulkunen PROPN
) PUNCT
writes:>There ADV
is AUX
this DET
newsgroup NOUN
sci.med.physics PROPN
and CCONJ
there PRON
has AUX
been AUX
quite DET
a DET
lot NOUN
> X
discussion NOUN
in ADP
this DET
group NOUN
about ADP
many ADJ
chemical NOUN
items NOUN
e.g. ADV
prolactin PROPN
> X
cholesterol NOUN
, PUNCT
TSH PROPN
etc X
. PUNCT
Should AUX
there PRON
also ADV
be AUX
a DET
newsgroup NOUN
sci.med.chemistry?It's NOUN
got VERB
potential ADJ
. PUNCT
  SPACE
Instead ADV
of ADP
* PUNCT
.chemistry PUNCT
, PUNCT
how ADV
about ADP
splitting NOUN
theclassification NOUN
into ADP
* PUNCT
.biochemistry PUNCT
( PUNCT
which PRON
are AUX
probably ADV
the DET
topicsyou're ADJ
thinking NOUN
of ADP
) PUNCT
and CCONJ
* PUNCT
.pharmaceutical PUNCT
( PUNCT
which PRON
otherwise ADV
might AUX
end VERB
upin ADJ
* PUNCT
.(bio)chemistry)?(This PUNCT
is AUX
separate ADJ
from ADP
the DET
issue NOUN
of ADP
whether SCONJ
there PRON
is AUX
sufficient ADJ
potentialnews NOUN
volume NOUN
to PART
support VERB
either CCONJ
or CCONJ
both DET
groups.)I'll NOUN
add VERB
'em PRON
to ADP
my PRON
medical ADJ
/ SYM
health NOUN
newsgroup PROPN
wish PROPN
list NOUN
( PUNCT
which PRON
I PRON
'm AUX
lookingforward ADJ
to ADP
posting VERB
and CCONJ
discussing VERB
-- PUNCT
but CCONJ
not PART
for ADP
another DET
10 NUM
days NOUN
or CCONJ
so).PeteNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58083From NUM
: PUNCT
shafer@rigel.dfrf.nasa.gov NOUN
( PUNCT
Mary PROPN
Shafer)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Inner ADJ
Ear NOUN
Problems NOUN
from ADP
Too PROPN
Much PROPN
Flying?On PROPN
5 NUM
Apr PROPN
93 NUM
23:27:26 NUM
GMT PROPN
, PUNCT
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
said VERB
: PUNCT
Vida PROPN
> X
Can AUX
one PRON
develop VERB
inner ADJ
- PUNCT
ear NOUN
problems NOUN
from ADP
too ADV
much ADJ
flying VERB
? PUNCT
  SPACE
I PRON
hearVida PROPN
> X
that SCONJ
pilots NOUN
and CCONJ
steward NOUN
/ SYM
esses NOUN
have AUX
a DET
limit NOUN
as SCONJ
to ADP
the DET
maximumVida PROPN
> X
number NOUN
of ADP
flying VERB
hours NOUN
-- PUNCT
what PRON
are AUX
these DET
limits NOUN
? PUNCT
  SPACE
What PRON
are AUX
theVida PROPN
> X
main ADJ
problems NOUN
associated VERB
with ADP
too ADV
many ADJ
long ADJ
- PUNCT
haul NOUN
( PUNCT
over ADP
4 NUM
hours)Vida X
> X
trips?The ADJ
crew NOUN
rest NOUN
requirements NOUN
are AUX
to PART
prevent VERB
undue ADJ
fatigue NOUN
. PUNCT
  SPACE
The DET
cockpitcrew PROPN
( PUNCT
pilot NOUN
) PUNCT
limits NOUN
are AUX
somewhat ADV
more ADV
stringent ADJ
than SCONJ
the DET
cabin NOUN
crewlimits NOUN
for ADP
this DET
reason NOUN
. PUNCT
  SPACE
Crew PROPN
rest NOUN
requirements NOUN
address VERB
amount NOUN
of ADP
timeon NOUN
duty NOUN
plus CCONJ
rest NOUN
time NOUN
. PUNCT
  SPACE
A DET
tired ADJ
crew NOUN
is AUX
an DET
accident NOUN
- PUNCT
prone ADJ
crew NOUN
. PUNCT
The DET
only ADJ
limits NOUN
I PRON
know VERB
of ADP
for ADP
inner ADJ
- PUNCT
ear NOUN
problems NOUN
are AUX
in ADP
militaryaircraft NOUN
, PUNCT
which PRON
are AUX
frequently ADV
unpressurized ADJ
or CCONJ
less ADV
reliablypressurized VERB
. PUNCT
  SPACE
Not PART
being AUX
able ADJ
to PART
clear VERB
the DET
ears NOUN
renders NOUN
aircrew PROPN
membersDNIF NOUN
( PUNCT
duties NOUN
not PART
involving VERB
flying VERB
) PUNCT
or CCONJ
grounded VERB
until ADP
the DET
ears NOUN
clear ADJ
. PUNCT
Flying VERB
can AUX
accentuate VERB
problems NOUN
if SCONJ
ears NOUN
do AUX
n't PART
clear VERB
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
havebig VERB
pressure NOUN
changes NOUN
, PUNCT
you PRON
may AUX
not PART
know VERB
that SCONJ
you PRON
've AUX
got VERB
a DET
problem NOUN
. PUNCT
  SPACE
Butif ADP
you PRON
zip VERB
up ADP
to PART
5,000 NUM
or CCONJ
6,000 NUM
ft NOUN
( PUNCT
the DET
usual ADJ
cabin NOUN
altitude NOUN
in ADP
anairliner NOUN
) PUNCT
and CCONJ
then ADV
back ADV
down ADP
to ADP
sea NOUN
level NOUN
, PUNCT
you PRON
may AUX
discover VERB
a DET
problem NOUN
. PUNCT
Ears NOUN
do AUX
n't PART
clear VERB
readily ADV
because SCONJ
of ADP
allergies NOUN
, PUNCT
colds NOUN
, PUNCT
infections NOUN
, PUNCT
andanatomical ADJ
problems NOUN
. PUNCT
  SPACE
The DET
last ADJ
wo AUX
n't PART
change VERB
; PUNCT
the DET
first ADJ
three NUM
can NOUN
. PUNCT
Medication NOUN
( PUNCT
decongestants NOUN
or CCONJ
antihistimines NOUN
, PUNCT
usually ADV
) PUNCT
can AUX
help VERB
. PUNCT
Chewing VERB
gum NOUN
, PUNCT
sucking VERB
hard ADJ
candy NOUN
( PUNCT
or CCONJ
a DET
bottle NOUN
for ADP
babies),yawning VERB
-- PUNCT
these DET
will AUX
help VERB
all DET
four NUM
causes.--Mary PROPN
Shafer PROPN
  SPACE
DoD NOUN
# NOUN
0362 NUM
KotFR PROPN
NASA PROPN
Dryden PROPN
Flight PROPN
Research PROPN
Facility PROPN
, PUNCT
Edwards PROPN
, PUNCT
CAshafer@rigel.dfrf.nasa.gov PROPN
                    SPACE
Of ADV
course ADV
I PRON
do AUX
n't PART
speak VERB
for ADP
NASA PROPN
" PUNCT
A DET
MiG NOUN
at ADP
your PRON
six NUM
is AUX
better ADJ
than SCONJ
no DET
MiG NOUN
at ADV
all ADV
. PUNCT
" PUNCT
  SPACE
Unknown ADJ
US PROPN
fighter NOUN
pilotNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58084From NUM
: PUNCT
kxgst1@pitt.edu X
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Contraceptive ADJ
pilljec@watson.ibm.com NOUN
wrote VERB
: PUNCT
: PUNCT
A DET
very ADV
simple ADJ
question NOUN
: PUNCT
it PRON
seems VERB
to ADP
me PRON
that SCONJ
the DET
contraceptive NOUN
: PUNCT
pill NOUN
just ADV
prevents VERB
the DET
ovule NOUN
to PART
nest VERB
in ADP
the DET
vagina PROPN
and CCONJ
forces VERB
it PRON
to PART
: PUNCT
fall VERB
every DET
month NOUN
. PUNCT
But CCONJ
it PRON
does AUX
not PART
prevent VERB
the DET
fertilzation NOUN
of ADP
the DET
: PUNCT
ovule NOUN
. PUNCT
Is AUX
it PRON
true ADJ
? PUNCT
If SCONJ
yes INTJ
, PUNCT
is AUX
there PRON
a DET
risk NOUN
of ADP
extra ADJ
- PUNCT
uterine ADJ
: PUNCT
pregnancy NOUN
, PUNCT
that DET
is AUX
the DET
development NOUN
of ADP
the DET
ovule NOUN
inside ADP
the DET
Fallopian PROPN
: PUNCT
tube NOUN
? PUNCT
Actually ADV
that DET
is AUX
not PART
how ADV
the DET
pill NOUN
works VERB
, PUNCT
but CCONJ
it PRON
* PUNCT
is AUX
* PUNCT
how ADV
the DET
IUD PROPN
works VERB
. PUNCT
The DET
oral ADJ
contraceptive NOUN
pill NOUN
actually ADV
* PUNCT
prevents NOUN
* PUNCT
ovulation NOUN
from ADP
occuringby PROPN
providing VERB
negatve PROPN
feedback NOUN
to ADP
the DET
pituitary ADJ
gland NOUN
, PUNCT
and CCONJ
thus ADV
preventingthe ADJ
LH PROPN
surge VERB
that PRON
normally ADV
occurs VERB
at ADP
the DET
time NOUN
of ADP
ovulation NOUN
. PUNCT
  SPACE
With ADP
the DET
IUDwhat PROPN
happens VERB
is AUX
that DET
fertilization NOUN
may AUX
occur VERB
, PUNCT
but CCONJ
the DET
device NOUN
preventsimplantation NOUN
within ADP
the DET
wall NOUN
of ADP
the DET
uterus NOUN
( PUNCT
* PUNCT
not PART
* PUNCT
the DET
vagina).--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58085From NUM
: PUNCT
bytor@cruzio.santa-cruz.ca.usSubject NOUN
: PUNCT
LupusI NOUN
have AUX
a DET
friend NOUN
who PRON
has AUX
just ADV
been AUX
diagnosed VERB
with ADP
Lupus PROPN
, PUNCT
and CCONJ
I PRON
know VERB
nothingabout ADP
this DET
disease NOUN
. PUNCT
The DET
only ADJ
thing NOUN
I PRON
do AUX
know VERB
is AUX
that SCONJ
this DET
is AUX
some DET
sort ADJ
ofskin NOUN
disease NOUN
, PUNCT
and CCONJ
my PRON
friend NOUN
shows VERB
no DET
skin NOUN
rashes NOUN
- PUNCT
in ADP
fact NOUN
, PUNCT
they PRON
used VERB
a DET
blood NOUN
test NOUN
to PART
determine VERB
what PRON
had AUX
been AUX
wrong ADJ
with ADP
an DET
on ADP
going VERB
sacro ADJ
- PUNCT
illiac ADJ
joint ADJ
problem NOUN
. PUNCT
I PRON
am AUX
finding VERB
a DET
hard ADJ
time NOUN
finding VERB
information NOUN
on ADP
this DET
disease NOUN
. PUNCT
Couldanyone NOUN
please INTJ
enlighten VERB
me PRON
as SCONJ
to ADP
the DET
particulars NOUN
of ADP
this DET
disease NOUN
. PUNCT
please INTJ
feel VERB
free ADJ
to ADP
E NOUN
- NOUN
mail VERB
me PRON
at ADP
bytor@cruzio.santa-cruz.ca.usThanks NOUN
in ADP
advance NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58086From NUM
: PUNCT
bbesler@ouchem.chem.oakland.edu NOUN
( PUNCT
Brent PROPN
H. PROPN
Besler)Subject NOUN
: PUNCT
Is AUX
an DET
oral ADJ
form NOUN
of ADP
Imitrex(sumatriptan PROPN
) PUNCT
available ADJ
in ADP
CASumatriptan(Imitrex PROPN
) PUNCT
just ADV
became VERB
available ADJ
in ADP
the DET
US PROPN
in ADP
a DET
subcutaneousinjectable ADJ
form NOUN
. PUNCT
  SPACE
Is AUX
there PRON
an DET
oral ADJ
form NOUN
available ADJ
in ADP
CA PROPN
? PUNCT
  SPACE
A DET
friend(yesreally ADV
not PART
me PRON
! PUNCT
) PUNCT
  SPACE
has AUX
severe ADJ
migranes NOUN
about ADV
2 NUM
- SYM
3 NUM
times NOUN
per ADP
week NOUN
. PUNCT
  SPACE
Welive PROPN
right ADV
by ADP
the DET
CA PROPN
border NOUN
and CCONJ
he PRON
has AUX
gotten VERB
drugs NOUN
for ADP
GERD PROPN
prescribedby NOUN
a DET
US PROPN
physician NOUN
and CCONJ
filled VERB
in ADP
a DET
CA PROPN
pharmacy NOUN
, PUNCT
but CCONJ
not PART
yet ADV
FDA PROPN
approvedin NOUN
the DET
US PROPN
. PUNCT
  SPACE
What PRON
would AUX
be AUX
the DET
cost NOUN
of ADP
the DET
oral ADJ
form NOUN
in ADP
CA$ PROPN
also ADV
ifanyone NOUN
would AUX
have AUX
that DET
info NOUN
? PUNCT
    SPACE
ThanksNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58087From NUM
: PUNCT
jmetz@austin.ibm.com PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Twitching VERB
eye NOUN
? PUNCT
  SPACE
I PRON
had AUX
this DET
one NUM
time NOUN
. PUNCT
  SPACE
I PRON
attributed VERB
it PRON
to ADP
a DET
lack NOUN
of ADP
sleep NOUN
since SCONJ
it PRON
disappearedafter VERB
a DET
few ADJ
nights NOUN
of ADP
good ADJ
zzz's NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58088From NUM
: PUNCT
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas)Subject NOUN
: PUNCT
Inner ADJ
Ear NOUN
Problems NOUN
from ADP
Too PROPN
Much PROPN
Flying?Can PROPN
one PRON
develop VERB
inner ADJ
- PUNCT
ear NOUN
problems NOUN
from ADP
too ADV
much ADJ
flying VERB
? PUNCT
  SPACE
I PRON
hear VERB
that DET
pilotsand PROPN
steward PROPN
/ SYM
esses NOUN
have AUX
a DET
limit NOUN
as SCONJ
to ADP
the DET
maximum ADJ
number NOUN
of ADP
flying VERB
hours NOUN
--what PRON
are AUX
these DET
limits NOUN
? PUNCT
  SPACE
What PRON
are AUX
the DET
main ADJ
problems NOUN
associated VERB
with ADP
too ADV
manylong PROPN
- PUNCT
haul PROPN
( PUNCT
over ADP
4 NUM
hours NOUN
) PUNCT
trips?Frequent ADJ
Flyer PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58089From NUM
: PUNCT
rjb3@cbnewsk.cb.att.com PROPN
( PUNCT
robert.j.brown)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Human ADJ
breast NOUN
- PUNCT
feeding NOUN
: PUNCT
Myths NOUN
or CCONJ
reality NOUN
? PUNCT
In ADP
article NOUN
< X
C4vHwo.HLt@tripos.com X
> X
, PUNCT
homer@tripos.com X
( PUNCT
Webster PROPN
Homer PROPN
) PUNCT
writes VERB
: PUNCT
> X
rjasoar@vnet PROPN
. PUNCT
IBM.COM PROPN
( PUNCT
Robert PROPN
J. PROPN
Alexander PROPN
MD PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
I PRON
have AUX
an DET
additional ADJ
question NOUN
. PUNCT
How ADV
long ADV
should AUX
a DET
mother NOUN
breast NOUN
feed VERB
her PRON
> X
child NOUN
? PUNCT
A DET
friend NOUN
of ADP
mine NOUN
is AUX
still ADV
nursing VERB
her PRON
two NUM
year NOUN
old ADJ
. PUNCT
Is AUX
this DET
beneficial ADJ
? PUNCT
> X
Her PRON
ex NOUN
- NOUN
husband NOUN
is AUX
trying VERB
to PART
use VERB
her PRON
coninued VERB
nursing NOUN
of ADP
a DET
two NUM
year NOUN
old ADJ
as SCONJ
> X
" PUNCT
proof NOUN
" PUNCT
of ADP
her PRON
being AUX
unfit ADJ
to PART
be AUX
a DET
mother NOUN
. PUNCT
What PRON
studies NOUN
have AUX
been AUX
done VERB
> X
on ADP
breast NOUN
feeding NOUN
past ADP
a DET
year NOUN
etc X
... PUNCT
upon SCONJ
the DET
psychological ADJ
health NOUN
of ADP
the DET
> X
child NOUN
? PUNCT
> X
> X
> X
Web NOUN
Homer PROPN
> X
My PRON
wife NOUN
breast NOUN
- PUNCT
fed VERB
my PRON
three NUM
boys NOUN
12 NUM
months NOUN
, PUNCT
16 NUM
months NOUN
, PUNCT
and CCONJ
29 NUM
monthsrespectively ADV
and CCONJ
they PRON
are AUX
18 NUM
, PUNCT
16 NUM
, PUNCT
and CCONJ
10 NUM
years NOUN
old ADJ
respectively ADV
. PUNCT
  SPACE
Sofar PROPN
everybody PRON
seems VERB
fairly ADV
normal ADJ
. PUNCT
  SPACE
I PRON
noticed VERB
a DET
negative ADJ
correlationwith NOUN
ear NOUN
infections NOUN
and CCONJ
length NOUN
of ADP
time NOUN
nursed VERB
in ADP
my PRON
very ADV
small ADJ
sample NOUN
. PUNCT
I PRON
do AUX
notice VERB
that SCONJ
the DET
16 NUM
and CCONJ
18 NUM
year NOUN
old ADJ
seem VERB
to PART
eat VERB
a DET
lot NOUN
, PUNCT
could AUX
thatbe VERB
from ADP
the DET
breast NOUN
feeding NOUN
:-) PUNCT
  SPACE
? PUNCT
I PRON
do AUX
n't PART
understand VERB
the DET
" PUNCT
unfit ADJ
mother NOUN
" PUNCT
charge VERB
other ADJ
than SCONJ
any DET
tactic ADJ
isnot NOUN
too ADV
low ADJ
down ADP
for ADP
some DET
folks NOUN
during ADP
divorce NOUN
/ SYM
child NOUN
custody NOUN
battles NOUN
. PUNCT
Most ADJ
of ADP
the DET
developing VERB
nations NOUN
practice NOUN
breast NOUN
feeding VERB
to ADP
3 NUM
and CCONJ
4 NUM
yearsold NOUN
. PUNCT
  SPACE
Are AUX
they PRON
screwed VERB
up ADP
because SCONJ
of ADP
it PRON
? PUNCT
  SPACE
Would AUX
they PRON
be AUX
much ADV
betteroff ADJ
if SCONJ
they PRON
could AUX
use VERB
cow NOUN
's PART
milk NOUN
or CCONJ
commercial ADJ
formula NOUN
? PUNCT
  SPACE
Doctors PROPN
? PUNCT
Bobby PROPN
- PUNCT
akgua!rjbNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58090From NUM
: PUNCT
jose@csd.uwo.ca PROPN
( PUNCT
Jose PROPN
Thekkumthala)Subject PROPN
: PUNCT
recurrent ADJ
volvulus NOUN
    SPACE
Recurrent PROPN
Volvulus PROPN
    SPACE
------------------- PUNCT
     SPACE
This DET
is AUX
regarding VERB
recurrent ADJ
volvulus NOUN
which PRON
our PRON
little ADJ
boy NOUN
has AUX
been AUX
suffering VERB
from ADP
ever ADV
since SCONJ
he PRON
was AUX
an DET
infant NOUN
. PUNCT
He PRON
had AUX
a DET
surgery NOUN
when ADV
he PRON
was AUX
one NUM
year NOUN
old ADJ
. PUNCT
Another DET
surgery NOUN
had AUX
to PART
be AUX
performed VERB
one NUM
year NOUN
after ADV
, PUNCT
when ADV
he PRON
was AUX
two NUM
years NOUN
old ADJ
. PUNCT
He PRON
turned VERB
three NUM
this DET
February PROPN
and CCONJ
he PRON
is AUX
still ADV
getting VERB
afflicted VERB
by ADP
this DET
illness NOUN
, PUNCT
like SCONJ
having VERB
to PART
get AUX
hospitalised VERB
for ADP
vomitting VERB
and CCONJ
accompanying VERB
stomach NOUN
pain NOUN
. PUNCT
He PRON
managed VERB
not PART
having VERB
a DET
third ADJ
surgery NOUN
so ADV
far ADV
. PUNCT
  SPACE
* PUNCT
 	 SPACE
One NUM
thing NOUN
me PRON
and CCONJ
my PRON
wife NOUN
noticed VERB
is AUX
that SCONJ
his PRON
affliction NOUN
	 SPACE
peaks NOUN
around ADP
the DET
time NOUN
he PRON
was AUX
born VERB
, PUNCT
on ADP
nearabouts NOUN
, PUNCT
like SCONJ
in ADP
	 SPACE
March PROPN
every DET
year NOUN
. PUNCT
  SPACE
Any DET
significance NOUN
to ADP
this DET
? PUNCT
  SPACE
* PUNCT
	 SPACE
Why ADV
does AUX
this DET
recur NOUN
? PUNCT
Me PRON
and CCONJ
my PRON
family NOUN
go VERB
through ADP
severe ADJ
pain NOUN
	 SPACE
when ADV
our PRON
little ADJ
boy NOUN
have AUX
to PART
undergo VERB
surgery NOUN
. PUNCT
Why ADV
does AUX
surgery VERB
	 SPACE
not PART
rectify VERB
the DET
situation NOUN
? PUNCT
   SPACE
* PUNCT
	 SPACE
Also ADV
, PUNCT
which PRON
hospital NOUN
in ADP
US PROPN
or CCONJ
Canada PROPN
specialize VERB
in ADP
this DET
malady NOUN
? PUNCT
  SPACE
* PUNCT
	 SPACE
What PRON
will AUX
be AUX
a DET
good ADJ
book NOUN
explaining VERB
this DET
disease NOUN
in ADP
detail NOUN
? PUNCT
  SPACE
* PUNCT
	 SPACE
Will AUX
keeping VERB
a DET
particular ADJ
diet NOUN
keep VERB
down ADP
the DET
probability NOUN
of ADP
 	 SPACE
recurrence NOUN
? PUNCT
  SPACE
* PUNCT
	 SPACE
As SCONJ
time NOUN
goes VERB
on ADP
, PUNCT
will AUX
the DET
probability NOUN
of ADP
recurrence NOUN
go VERB
down ADP
	 SPACE
considering VERB
he PRON
is AUX
getting VERB
stronger ADJ
and CCONJ
healthier ADJ
and CCONJ
probably ADV
	 SPACE
less ADV
prone ADJ
to ADP
attacks NOUN
? PUNCT
Or CCONJ
is AUX
this DET
assumption NOUN
wrong ADJ
? PUNCT
  SPACE
* PUNCT
	 SPACE
Any DET
help NOUN
throwing VERB
light NOUN
on ADP
these DET
queries NOUN
will AUX
be AUX
highly ADV
appreciated VERB
. PUNCT
	 SPACE
Thanks NOUN
very ADV
much ADV
! PUNCT
  SPACE
jose@csd.uwo.caNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58091From NUM
: PUNCT
mrb@cbnewsj.cb.att.com PROPN
( PUNCT
m PROPN
.. PUNCT
bruncati)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Smoker PROPN
's PART
LungsIn PROPN
article NOUN
< X
1993Apr5.123315.48837@kuhub.cc.ukans.edu NUM
> X
, PUNCT
bennett@kuhub.cc.ukans.edu PROPN
writes VERB
: PUNCT
> X
How ADV
long ADV
does AUX
it PRON
take VERB
a DET
smoker NOUN
's PART
lungs NOUN
to PART
clear VERB
of ADP
the DET
tar NOUN
after ADP
quitting VERB
? PUNCT
> X
Does AUX
your PRON
chances NOUN
of ADP
getting VERB
lung NOUN
cancer NOUN
decrease NOUN
quickly ADV
or CCONJ
does AUX
it PRON
take VERB
> X
a DET
considerable ADJ
amount NOUN
of ADP
time NOUN
for ADP
that DET
to ADP
happen?Seems NOUN
to ADP
me PRON
that SCONJ
I PRON
read VERB
in ADP
either CCONJ
a DET
recent ADJ
NY PROPN
TimesScience PROPN
Times PROPN
or CCONJ
maybe ADV
it PRON
was AUX
Science PROPN
News PROPN
that SCONJ
there PRON
isevidence NOUN
that DET
ex NOUN
- NOUN
smoker PROPN
's PART
risk NOUN
of ADP
lung NOUN
cancer NOUN
never ADV
returnsto VERB
that SCONJ
of ADP
a DET
person NOUN
who PRON
has AUX
never ADV
smoked VERB
( PUNCT
I PRON
think VERB
it PRON
mayget VERB
close ADJ
) PUNCT
. PUNCT
  SPACE
I PRON
'll AUX
find VERB
the DET
article NOUN
and CCONJ
post VERB
it PRON
since SCONJ
mymemory NOUN
is AUX
hazy ADJ
on ADP
the DET
specifics NOUN
- PUNCT
if SCONJ
you PRON
are AUX
interested ADJ
. PUNCT
MichaelNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58092From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
various ADJ
migraine NOUN
therapiesIn PROPN
article NOUN
< X
C4HtMw.H3J@olsen.ch X
> X
lindy@olsen.ch PUNCT
( PUNCT
Lindy PROPN
Foster PROPN
) PUNCT
writes:>I've NOUN
been AUX
treated VERB
to ADP
many ADJ
therapies NOUN
for ADP
migraine ADJ
prophylaxis PROPN
and CCONJ
treatment,>and CCONJ
it PRON
looks VERB
like SCONJ
they PRON
'll AUX
try VERB
a DET
few ADJ
more ADJ
on ADP
me PRON
. PUNCT
  SPACE
I PRON
have AUX
taken VERB
propanolol>(I NOUN
think VERB
it PRON
was AUX
10 NUM
mg PROPN
3xdaily PROPN
) PUNCT
with ADP
no DET
relief NOUN
. PUNCT
  SPACE
I PRON
have AUX
just ADV
been AUX
started30 ADJ
mg PROPN
per ADP
day NOUN
of ADP
propranolol NOUN
is AUX
a DET
homeopathic ADJ
dose NOUN
in ADP
migraine NOUN
. PUNCT
If SCONJ
you PRON
got VERB
fatigued VERB
at ADP
that DET
level NOUN
, PUNCT
it PRON
is AUX
unlikely ADJ
that SCONJ
you PRON
willtolerate VERB
enough ADJ
beta NOUN
blocker NOUN
to PART
help VERB
you PRON
. PUNCT
  SPACE
> X
> X
If SCONJ
we PRON
go VERB
the DET
antidepressant ADJ
route NOUN
, PUNCT
what PRON
is AUX
it PRON
likely ADJ
to PART
be AUX
? PUNCT
  SPACE
How ADV
do AUX
> X
antidepressants NOUN
work NOUN
in ADP
migraine NOUN
prophylaxis?>Probably PUNCT
a DET
single ADJ
nightime NOUN
dose NOUN
. PUNCT
  SPACE
We PRON
do AUX
n't PART
know VERB
how ADV
they PRON
work VERB
in ADP
migraine NOUN
, PUNCT
butit NOUN
probably ADV
has AUX
something PRON
to PART
do AUX
with ADP
seratonin.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58093From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
vangus PROPN
nerve NOUN
( PUNCT
vagus PROPN
nerve)In PROPN
article NOUN
< X
52223@seismo NOUN
. PUNCT
CSS.GOV NOUN
> X
bwb@seismo NOUN
. PUNCT
CSS.GOV PROPN
( PUNCT
Brian PROPN
W. PROPN
Barker PROPN
) PUNCT
writes:>mostly ADV
right ADV
. PUNCT
Is AUX
there PRON
a DET
connection NOUN
between ADP
vomiting VERB
> X
and CCONJ
fainting NOUN
that PRON
has AUX
something PRON
to PART
do AUX
with ADP
the DET
vagus NOUN
nerve?>Stimulation PUNCT
of ADP
the DET
vagus PROPN
nerve NOUN
slows VERB
the DET
heart NOUN
and CCONJ
drops VERB
the DET
bloodpressure.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58094From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
MigrainesIn PROPN
article NOUN
< X
DRAND.93Mar26112932@spinner.osf.org PROPN
> X
drand@spinner.osf.org PROPN
( PUNCT
Douglas PROPN
S. PROPN
Rand PROPN
) PUNCT
writes:>So PROPN
I PRON
'll AUX
ask VERB
this DET
, PUNCT
  SPACE
my PRON
neurologist NOUN
just ADV
prescribed VERB
Cafergot PROPN
and CCONJ
> X
Midrin PROPN
as SCONJ
some DET
alternatives NOUN
for ADP
me PRON
to PART
try VERB
. PUNCT
  SPACE
He PRON
stated VERB
that SCONJ
> X
the DET
sublingual ADJ
tablets NOUN
of ADP
ergotamine NOUN
were AUX
no ADV
longer ADV
available.>Any DET
idea NOUN
why ADV
? PUNCT
  SPACE
He PRON
also ADV
suggested VERB
trying VERB
800 NUM
mg PROPN
ibuprophen.>I PROPN
just ADV
found VERB
out ADP
about ADP
the DET
sublinguals NOUN
disappearing VERB
too ADV
. PUNCT
  SPACE
I PRON
don'tknow VERB
why ADV
. PUNCT
  SPACE
Perhaps ADV
because SCONJ
they PRON
were AUX
n't PART
as ADV
profitable ADJ
as SCONJ
cafergot VERB
. PUNCT
Too ADV
bad ADJ
, PUNCT
since SCONJ
tablets NOUN
are AUX
sometimes ADV
vomited VERB
up ADP
by ADP
migraine NOUN
patientsand NOUN
they PRON
do AUX
n't PART
do AUX
any DET
good ADJ
flushed VERB
down ADP
the DET
toilet NOUN
. PUNCT
  SPACE
I PRON
suspectwe'll AUX
be AUX
moving VERB
those DET
patients NOUN
more ADV
and CCONJ
more ADV
to ADP
the DET
DHE PROPN
nasalspray NOUN
, PUNCT
which PRON
is AUX
far ADV
more ADJ
effective.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58095From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
3 X
AIDS PROPN
Related VERB
QuestionsIn PROPN
article NOUN
< X
93087.011308PXF3@psuvm.psu.edu NUM
> X
PXF3@psuvm.psu.edu NUM
( PUNCT
Paula PROPN
Ford PROPN
) PUNCT
writes:>A PROPN
friend NOUN
of ADP
mine NOUN
was AUX
a DET
regular ADJ
volunteer NOUN
blood NOUN
donor NOUN
. PUNCT
  SPACE
During ADP
surgery NOUN
, PUNCT
he PRON
> X
was AUX
given VERB
five NUM
units NOUN
of ADP
blood NOUN
, PUNCT
and CCONJ
after ADP
a DET
suitable ADJ
recovery NOUN
time NOUN
, PUNCT
he PRON
went VERB
> X
to PART
donate VERB
blood NOUN
at ADP
a DET
" PUNCT
bloodmobile NOUN
. PUNCT
" PUNCT
He PRON
was AUX
HIV+ NUM
, PUNCT
and CCONJ
did AUX
not PART
know VERB
it.>>The PROPN
Red PROPN
Cross PROPN
notified VERB
him PRON
with ADP
a DET
_ PROPN
registered VERB
letter NOUN
_ PROPN
. PUNCT
  SPACE
That DET
's AUX
all DET
. PUNCT
  SPACE
No NOUN
> X
counselling NOUN
, PUNCT
no DET
nothing PRON
. PUNCT
  SPACE
He PRON
died VERB
two NUM
years NOUN
ago ADV
, PUNCT
this DET
week NOUN
. PUNCT
  SPACE
He PRON
left VERB
behindHow PROPN
long ADV
ago ADV
was AUX
this DET
? PUNCT
  SPACE
When ADV
I PRON
said VERB
you PRON
'd AUX
get AUX
counselling NOUN
, PUNCT
I PRON
meant VERB
ifyou NOUN
did AUX
it PRON
now ADV
. PUNCT
  SPACE
Long ADV
ago ADV
, PUNCT
practices NOUN
varied ADJ
and CCONJ
agencies NOUN
had AUX
to PART
gearup VERB
to PART
provide VERB
the DET
counselling.>a PROPN
wife NOUN
and CCONJ
a DET
four NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
. PUNCT
  SPACE
Many ADJ
people NOUN
have AUX
suggested VERB
that SCONJ
his PRON
wife NOUN
> X
should AUX
sue VERB
the DET
Red PROPN
Cross PROPN
, PUNCT
but CCONJ
she PRON
would AUX
not PART
. PUNCT
  SPACE
She PRON
says VERB
that SCONJ
without ADP
the DET
> X
blood NOUN
transfusions NOUN
he PRON
would AUX
have AUX
died VERB
during ADP
the DET
surgery.>Good PROPN
for ADP
her PRON
. PUNCT
  SPACE
What PRON
we PRON
do AUX
n't PART
need VERB
is AUX
everyone PRON
suing VERB
community NOUN
serviceagencies NOUN
that PRON
provide VERB
blood NOUN
that PRON
people NOUN
need VERB
. PUNCT
  SPACE
Testing NOUN
is AUX
not PART
fool NOUN
proof NOUN
. PUNCT
The DET
fact NOUN
that SCONJ
he PRON
got VERB
AIDS PROPN
from ADP
a DET
transfusion NOUN
( PUNCT
if SCONJ
he PRON
really ADV
did AUX
) PUNCT
doesnot ADV
mean VERB
the DET
Red PROPN
Cross PROPN
screwed VERB
up ADP
. PUNCT
  SPACE
Prior ADV
to ADP
1983 NUM
or CCONJ
so ADV
, PUNCT
there PRON
wasn'ta ADJ
good ADJ
test NOUN
and CCONJ
a DET
lot NOUN
of ADP
bad ADJ
blood NOUN
got VERB
through ADP
. PUNCT
  SPACE
This DET
was AUX
n't PART
the DET
faultof NOUN
the DET
Red PROPN
Cross PROPN
. PUNCT
  SPACE
When ADV
did AUX
he PRON
get AUX
the DET
transfusions?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58096From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
health NOUN
care NOUN
reformIn NOUN
article NOUN
< X
LMC001@wrc.wrgrace.com PROPN
> X
custer@wrc.wrgrace.com PROPN
( PUNCT
Linda PROPN
Custer PROPN
) PUNCT
writes:>This PROPN
is AUX
my PRON
first ADJ
post NOUN
, PUNCT
and CCONJ
I PRON
am AUX
not PART
even ADV
sure ADJ
it PRON
will AUX
work VERB
. PUNCT
Here ADV
goes.>>Did PROPN
anyone PRON
read VERB
the DET
editorial NOUN
on ADP
page NOUN
70 NUM
in ADP
the DET
29 NUM
march PROPN
1993 NUM
edition NOUN
of ADP
Time PROPN
> X
Magazine PROPN
, PUNCT
noting VERB
that SCONJ
managed VERB
care NOUN
is AUX
extremely ADV
inefficient ADJ
? PUNCT
  SPACE
Of ADP
all DET
the DET
possible ADJ
> NOUN
clients NOUN
that SCONJ
Billary PROPN
could AUX
be AUX
pandering VERB
to ADP
, PUNCT
the DET
insurance NOUN
industry NOUN
is AUX
the DET
worst!>>Comments NOUN
? PUNCT
I PRON
agree VERB
. PUNCT
Adding VERB
layers NOUN
of ADP
managers NOUN
and CCONJ
bureaucrats NOUN
simply ADV
eat VERB
upmoney PROPN
that PRON
could AUX
be AUX
spent VERB
on ADP
those DET
who PRON
actually ADV
are AUX
doing VERB
the DET
worksuch ADJ
as SCONJ
doctors NOUN
and CCONJ
nurse NOUN
, PUNCT
and CCONJ
supplies NOUN
. PUNCT
  SPACE
The DET
most ADV
efficient ADJ
systemis VERB
probably ADV
one NUM
that PRON
has AUX
limited VERB
management NOUN
and CCONJ
a DET
fixed VERB
budget NOUN
suchas PROPN
England PROPN
's PART
or CCONJ
even ADV
Canada PROPN
's PART
. PUNCT
  SPACE
I PRON
'm AUX
afraid ADJ
we PRON
are AUX
on ADP
the DET
wrongtrack NOUN
. PUNCT
  SPACE
The DET
problem NOUN
may AUX
be AUX
that SCONJ
the DET
insurance NOUN
lobby NOUN
is AUX
too ADV
powerful.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58097From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
health NOUN
care NOUN
reformIn NOUN
article NOUN
< X
1993Mar28.200619.5371@cnsvax.uwec.edu NUM
> X
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye PROPN
) PUNCT
writes:>and PROPN
may AUX
be AUX
a DET
total ADJ
disaster NOUN
and CCONJ
that SCONJ
the DET
Canadian ADJ
model NOUN
is AUX
preferable ADJ
, PUNCT
a DET
> X
position NOUN
with ADP
which PRON
I PRON
agree VERB
. PUNCT
  SPACE
The DET
other ADJ
is AUX
surprising ADJ
sympathy NOUN
for ADP
the DET
> PROPN
physicians NOUN
in ADP
all DET
of ADP
this DET
, PUNCT
to ADP
the DET
effect NOUN
that PRON
beating VERB
up ADP
on ADP
us PRON
won't NOUN
> X
help VERB
anything PRON
. PUNCT
> X
I PRON
'm AUX
not PART
sure ADJ
about ADP
that DET
. PUNCT
  SPACE
Did AUX
you PRON
see VERB
the DET
" PUNCT
poll NOUN
" PUNCT
they PRON
took VERB
that DET
showedthat ADV
most ADJ
people NOUN
thought VERB
physicians NOUN
should AUX
be AUX
paid VERB
$ SYM
80,000 NUM
per ADP
yeartops NOUN
? PUNCT
  SPACE
That DET
's AUX
all DET
I PRON
make VERB
, PUNCT
but CCONJ
I PRON
doubt VERB
that SCONJ
most ADJ
physicians NOUN
are AUX
goingto PROPN
work VERB
very ADV
hard ADV
for ADP
that DET
kind NOUN
of ADP
bread NOUN
. PUNCT
  SPACE
Many ADJ
would AUX
n't PART
be AUX
ableto PROPN
service NOUN
their PRON
med ADJ
school NOUN
debts NOUN
on ADP
that DET
. PUNCT
  SPACE
Mike PROPN
Royko PROPN
had AUX
a DET
goodcolumn NOUN
about ADP
it.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58098From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Mar24.182145.11004@equator.com NUM
> X
jod@equator.com PROPN
( PUNCT
John PROPN
Setel PROPN
O'Donnell PROPN
) PUNCT
writes:>IMHO NOUN
, PUNCT
you PRON
have AUX
Lyme PROPN
disease NOUN
. PUNCT
  SPACE
I PRON
told VERB
you PRON
this DET
in ADP
private ADJ
email NOUN
and CCONJ
predicted VERB
> X
that SCONJ
you PRON
might AUX
next ADV
start VERB
having VERB
the DET
migrating VERB
pains NOUN
and CCONJ
further ADJ
jointIMHO PROPN
, PUNCT
the DET
original ADJ
poster NOUN
has AUX
no DET
business NOUN
soliciting VERB
diagnoses NOUN
off ADP
the DET
net NOUN
, PUNCT
nor CCONJ
does AUX
Dr./Mr PROPN
. PUNCT
  SPACE
O'Donnell PROPN
have AUX
any DET
business NOUN
supplying VERB
same ADJ
. PUNCT
This DET
is AUX
onemajor ADJ
reason NOUN
real ADJ
physicians NOUN
avoid VERB
this DET
newsgroup NOUN
like SCONJ
the DET
plague NOUN
. PUNCT
It PRON
isalso VERB
another DET
example NOUN
of ADP
the DET
double ADJ
standard NOUN
: PUNCT
if SCONJ
I PRON
as SCONJ
a DET
physician NOUN
offeredto NOUN
diagnose NOUN
and CCONJ
treat VERB
on ADP
the DET
net NOUN
, PUNCT
I PRON
can AUX
be AUX
sued VERB
. PUNCT
But CCONJ
people NOUN
withoutqualifications NOUN
are AUX
free ADJ
to PART
do AUX
whatever PRON
they PRON
want VERB
and CCONJ
disclaim VERB
it PRON
all DET
with"I'm VERB
not PART
a DET
doctor NOUN
. PUNCT
"Get PUNCT
and CCONJ
keep VERB
this DET
crap NOUN
off ADP
the DET
net NOUN
. PUNCT
Period.-kmNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58099From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Patient ADJ
- PUNCT
Physician ADJ
DiplomacyIn PROPN
article NOUN
< X
C4Hyou.1Iz@mentor.cc.purdue.edu PROPN
> X
hrubin@pop.stat.purdue.edu NOUN
( PUNCT
Herman PROPN
Rubin PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
188@ky3b NUM
. PUNCT
UUCP NOUN
> X
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum PROPN
) PUNCT
writes:>>>Ditto X
. PUNCT
Disease PROPN
is AUX
a DET
great ADJ
leveling NOUN
experience NOUN
, PUNCT
however ADV
. PUNCT
Some DET
people>>are VERB
very ADV
much ADV
afronted VERB
to PART
find VERB
out ADP
that SCONJ
all DET
the DET
money NOUN
in ADP
the DET
world>>does NOUN
not PART
buy VERB
one NUM
health NOUN
. PUNCT
Everyone PRON
looks VERB
the DET
same ADJ
when ADV
they PRON
die.>>If VERB
money NOUN
does AUX
not PART
buy VERB
one NUM
health NOUN
, PUNCT
why ADV
are AUX
we PRON
talking VERB
about ADP
paying VERB
> X
for ADP
medical ADJ
expenses NOUN
for ADP
those DET
not PART
currently ADV
" PUNCT
adequately ADV
covered"?Herman PUNCT
, PUNCT
I PRON
would AUX
think VERB
you PRON
of ADP
all DET
people NOUN
would AUX
/ PUNCT
could AUX
distinguishbetween VERB
" PUNCT
health NOUN
" PUNCT
and CCONJ
" PUNCT
treatment NOUN
of ADP
disease NOUN
. PUNCT
" PUNCT
All DET
the DET
preventionmedicine NOUN
people NOUN
preach VERB
this DET
all DET
the DET
time NOUN
. PUNCT
You PRON
can AUX
not PART
buy VERB
health NOUN
. PUNCT
You PRON
can AUX
buy VERB
treatment NOUN
of ADP
disease NOUN
, PUNCT
assuming VERB
you PRON
are AUX
lucky ADJ
enoughto PROPN
have AUX
a DET
disease NOUN
which PRON
can AUX
be AUX
treated VERB
. PUNCT
A DET
rich ADJ
person NOUN
with ADP
aterminal ADJ
disease NOUN
is AUX
a DET
bit NOUN
out SCONJ
of ADP
luck NOUN
. PUNCT
There PRON
is AUX
no DET
such ADJ
thingas NOUN
" PUNCT
adequately ADV
covered VERB
" PUNCT
and CCONJ
there PRON
never ADV
will AUX
be AUX
. PUNCT
And CCONJ
for ADP
what PRON
it PRON
's AUX
worth ADJ
, PUNCT
I PRON
'll AUX
be AUX
the DET
first ADJ
to PART
admit VERB
that SCONJ
all DET
mypatients NOUN
die.-kmNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58100From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Immotile PROPN
Cilia PROPN
SyndromeIn PROPN
article NOUN
< X
1993Mar26.213522.26224@ncsu.edu NUM
> X
andrea@unity.ncsu.edu PROPN
( PUNCT
Andrea PROPN
M PROPN
Free PROPN
- PUNCT
Kwiatkowski PROPN
) PUNCT
writes:>I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
new ADJ
information NOUN
out ADV
there ADV
about ADP
the DET
> X
subject NOUN
or CCONJ
any DET
new ADJ
studies NOUN
being AUX
conducted VERB
. PUNCT
  SPACE
I PRON
am AUX
confident ADJ
in ADP
my PRON
> X
pediatrician NOUN
and CCONJ
her PRON
communication NOUN
with ADP
the DET
people NOUN
in ADP
Chapel PROPN
Hill PROPN
, PUNCT
but CCONJ
> X
since SCONJ
this DET
is AUX
a DET
life NOUN
- PUNCT
long ADJ
disorder NOUN
and CCONJ
genetically ADV
transferred VERB
I PRON
would AUX
> X
like INTJ
keep VERB
current ADJ
. PUNCT
  SPACE
I PRON
do AUX
realize VERB
that SCONJ
since SCONJ
this DET
is AUX
a DET
relatively ADV
new ADJ
> X
disorder NOUN
( PUNCT
first ADV
documented VERB
in ADP
1974 NUM
in ADP
a DET
fertility NOUN
clinic NOUN
in ADP
Scandanavia)>and PROPN
is AUX
therefore ADV
" PUNCT
controversial" X
. PUNCT
I PRON
do AUX
not PART
know VERB
a DET
lot NOUN
about ADP
this DET
, PUNCT
except SCONJ
from ADP
seeing VERB
one NUM
patient NOUN
with"Kartagener PROPN
's PART
syndrome NOUN
" PUNCT
, PUNCT
which PRON
is AUX
a DET
form NOUN
of ADP
immotile PROPN
cilia PROPN
syndromein PROPN
which PRON
there PRON
is AUX
situs NOUN
inversus NOUN
, PUNCT
bronchiectasis NOUN
, PUNCT
and CCONJ
chronicinfections NOUN
. PUNCT
" PUNCT
Situs PROPN
inversus NOUN
" PUNCT
means VERB
that SCONJ
organs NOUN
are AUX
on ADP
the DET
wrongside NOUN
of ADP
the DET
body NOUN
, PUNCT
and CCONJ
can AUX
be AUX
complete ADJ
or CCONJ
partial ADJ
. PUNCT
It PRON
is AUX
interestingmedically ADJ
because SCONJ
the DET
normal ADJ
location NOUN
of ADP
organs NOUN
is AUX
caused VERB
in ADP
partby PROPN
the DET
" PUNCT
normal ADJ
" PUNCT
rotation NOUN
associated VERB
with ADP
ciliary ADJ
motion NOUN
, PUNCT
so SCONJ
that DET
inabsence NOUN
of ADP
this DET
, PUNCT
laterality NOUN
can AUX
be AUX
" PUNCT
random ADJ
. PUNCT
" PUNCT
People NOUN
with ADP
situsinversus NOUN
are AUX
quite ADV
popular ADJ
at ADP
medical ADJ
schools NOUN
, PUNCT
because SCONJ
of ADP
theirrarity NOUN
, PUNCT
and CCONJ
the DET
fact NOUN
that SCONJ
most ADJ
doctors NOUN
get VERB
a DET
bit NOUN
upset ADJ
when ADV
theycan't PROPN
find VERB
the DET
patient NOUN
's PART
heart NOUN
sounds VERB
( PUNCT
because SCONJ
they PRON
're AUX
on ADP
the DET
wrongside NOUN
) PUNCT
. PUNCT
According VERB
to ADP
Harrison PROPN
's PART
, PUNCT
immotile PROPN
cilia PROPN
syndrom PROPN
is AUX
an DET
autosomalrecessive NOUN
, PUNCT
which PRON
should AUX
imply VERB
that SCONJ
on ADP
average ADJ
one NUM
child NOUN
in ADP
fourin PROPN
a DET
family NOUN
would AUX
be AUX
affected VERB
. PUNCT
But CCONJ
there PRON
may AUX
be AUX
much ADV
more ADJ
currentinformation NOUN
on ADP
this DET
, PUNCT
and CCONJ
as ADV
usual ADJ
in ADP
medicine NOUN
, PUNCT
we PRON
may AUX
be AUX
talkingabout ADP
more ADJ
than SCONJ
one NUM
conditiion NOUN
. PUNCT
I PRON
would AUX
suggest VERB
that SCONJ
you PRON
ask VERB
yourpediatrician PROPN
about ADP
contacting VERB
a DET
medical ADJ
geneticics NOUN
specialist NOUN
, PUNCT
ofwhich PROPN
there PRON
is AUX
probably ADV
one NUM
at ADP
NCSU.-kmNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58101From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Lung NOUN
disorders NOUN
and CCONJ
clubbing NOUN
of ADP
fingersIn PROPN
article NOUN
< X
SLAGLE.93Mar26205915@sgi417.msd.lmsc.lockheed.com NOUN
> X
slagle@lmsc.lockheed.com X
writes:>Can VERB
anyone PRON
out ADV
there ADV
enlighten VERB
me PRON
on ADP
the DET
relationship NOUN
between ADP
> PROPN
lung NOUN
disorders NOUN
and CCONJ
" PUNCT
clubbing VERB
" PUNCT
, PUNCT
or CCONJ
swelling VERB
and CCONJ
widening VERB
, PUNCT
of ADP
the DET
> X
fingertips NOUN
? PUNCT
  SPACE
What PRON
is AUX
the DET
mechanism NOUN
and CCONJ
why ADV
would AUX
a DET
physician NOUN
> X
call NOUN
for ADP
chest NOUN
xrays NOUN
to PART
diagnose VERB
the DET
cause NOUN
of ADP
the DET
clubbing?Purists NOUN
often ADV
distinguish VERB
between ADP
" PUNCT
true ADJ
" PUNCT
clubbing NOUN
and CCONJ
" PUNCT
pseudo"clubbing VERB
, PUNCT
the DET
difference NOUN
being AUX
that SCONJ
with ADP
" PUNCT
true ADJ
" PUNCT
clubbing ADJ
theangle NOUN
of ADP
the DET
nail NOUN
when ADV
viewed VERB
from ADP
the DET
side NOUN
is AUX
constantlynegative ADJ
when ADV
proceeding VERB
distally ADV
( PUNCT
towards ADP
the DET
fingertip).With PROPN
" PUNCT
pseudo ADJ
" PUNCT
clubbing NOUN
, PUNCT
the DET
angle NOUN
is AUX
initially ADV
positive ADJ
, PUNCT
thennegative ADJ
, PUNCT
which PRON
is AUX
the DET
normal ADJ
situation NOUN
. PUNCT
" PUNCT
Real ADJ
" PUNCT
internistscan ADJ
talk NOUN
for ADP
hours NOUN
about ADP
clubbing VERB
. PUNCT
I PRON
'm AUX
limited ADJ
to ADP
a DET
coupleof NOUN
minutes NOUN
. PUNCT
Whether SCONJ
this DET
distinction NOUN
has AUX
anything PRON
to PART
do AUX
with ADP
reality NOUN
isentirely ADV
unclear ADJ
, PUNCT
but CCONJ
it PRON
is AUX
one NUM
of ADP
those DET
things NOUN
that PRON
internistslove VERB
to ADP
paw ADV
over ADV
during ADP
rounds NOUN
. PUNCT
Supposedly ADV
, PUNCT
only ADV
" PUNCT
true ADJ
" PUNCT
clubbingis PROPN
associated VERB
with ADP
disease NOUN
. PUNCT
The DET
problem NOUN
is AUX
that SCONJ
the DET
list NOUN
ofdiseases NOUN
associated VERB
with ADP
clubbing NOUN
is AUX
quite ADV
long ADJ
, PUNCT
and CCONJ
includesboth DET
congenital ADJ
conditions NOUN
and CCONJ
acquired VERB
disease NOUN
. PUNCT
Since SCONJ
many ADJ
ofthese ADJ
diseases NOUN
are AUX
associated VERB
with ADP
cardiopulmonary ADJ
problemsleading NOUN
to PART
right VERB
to PART
left VERB
shunts NOUN
and CCONJ
chronic ADJ
hypoxemia NOUN
, PUNCT
it PRON
isvery NOUN
reasonable ADJ
to PART
get AUX
a DET
chest NOUN
xray NOUN
. PUNCT
However ADV
, PUNCT
many ADJ
of ADP
the DET
congenital ADJ
abnormalities NOUN
would AUX
only ADV
be AUX
diagnosed VERB
with ADP
a DET
cardiaccatheterization NOUN
. PUNCT
The DET
cause NOUN
of ADP
clubbing NOUN
is AUX
unclear ADJ
, PUNCT
but CCONJ
presumably ADV
relates VERB
tosome NOUN
factor NOUN
causing VERB
blood NOUN
vessels NOUN
in ADP
the DET
distal ADJ
fingertip NOUN
todilate ADJ
abnormally ADV
. PUNCT
Clubbing NOUN
is AUX
one NUM
of ADP
those DET
things NOUN
from ADP
an DET
examination NOUN
which PRON
isa VERB
tipoff NOUN
to PART
do AUX
more ADV
extensive ADJ
examination NOUN
. PUNCT
Often ADV
, PUNCT
however ADV
, PUNCT
the DET
cause NOUN
of ADP
the DET
clubbing NOUN
is AUX
quite ADV
apparent.-kmNewsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58102From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Open VERB
letter NOUN
to ADP
Hillary PROPN
Rodham PROPN
Clinton PROPN
( PUNCT
# SYM
7)How PUNCT
about ADP
posting VERB
one NUM
of ADP
her PRON
replies NOUN
to ADP
your PRON
letters?-kmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58103From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Menangitis PROPN
questionIn PROPN
article NOUN
< X
C4nzn6.Mzx@crdnns.crd.ge.com PROPN
> X
brooksby@brigham PROPN
. PUNCT
NoSubdomain PROPN
. PUNCT
NoDomain PROPN
( PUNCT
Glen PROPN
W PROPN
Brooksby PROPN
) PUNCT
writes:>This PROPN
past ADJ
weekend NOUN
a DET
friend NOUN
of ADP
mine NOUN
lost VERB
his PRON
13 NUM
month NOUN
old ADJ
> X
daughter NOUN
in ADP
a DET
matter NOUN
of ADP
hours NOUN
to ADP
a DET
form NOUN
of ADP
menangitis NOUN
. PUNCT
  SPACE
The DET
> X
person NOUN
informing VERB
me PRON
called VERB
it PRON
' PUNCT
Nicereal PROPN
Meningicocis PROPN
' PUNCT
( PUNCT
sp?).>In PROPN
retrospect PROPN
, PUNCT
the DET
disease NOUN
struck VERB
her PRON
probably ADV
sometime ADV
on ADP
> X
Friday PROPN
evening NOUN
and CCONJ
she PRON
passed VERB
away ADP
about ADP
2:30pm NUM
on ADP
Saturday.>The PROPN
symptoms NOUN
seemed VERB
to PART
be AUX
a DET
rash NOUN
that PRON
started VERB
small ADJ
and CCONJ
> X
then ADV
began VERB
progressing VERB
rapidly ADV
. PUNCT
She PRON
began VERB
turning VERB
blue ADJ
> X
eventually ADV
which PRON
was AUX
the DET
tip NOUN
- PUNCT
off NOUN
that SCONJ
this DET
was AUX
serious ADJ
> X
but CCONJ
by ADP
that DET
time NOUN
it PRON
was AUX
too ADV
late ADJ
( PUNCT
this DET
is AUX
all DET
second ADJ
hand NOUN
info.).>>My PROPN
question NOUN
is:>Is ADP
this DET
an DET
unusual ADJ
form NOUN
of ADP
Menangitis PROPN
? PUNCT
  SPACE
How ADV
is AUX
it PRON
transmitted?>How PROPN
does AUX
it PRON
work VERB
( PUNCT
ie X
. PUNCT
how ADV
does AUX
it PRON
kill VERB
so ADV
quickly)?There ADV
are AUX
many ADJ
organisms NOUN
, PUNCT
viral ADJ
, PUNCT
bacterial ADJ
, PUNCT
and CCONJ
fungal PROPN
, PUNCT
which PRON
cancause NOUN
meningitits NOUN
, PUNCT
and CCONJ
the DET
course NOUN
of ADP
these DET
infections NOUN
varieswidely ADV
. PUNCT
The DET
causes NOUN
of ADP
bacterial ADJ
meningitis NOUN
vary VERB
with ADP
age NOUN
: PUNCT
in ADP
adultspneumococcus PROPN
( PUNCT
the DET
same ADJ
organism NOUN
which PRON
causes VERB
pneumococcal ADJ
pneumonia)is NOUN
the DET
most ADV
common ADJ
cause NOUN
, PUNCT
while SCONJ
in ADP
children NOUN
Hemophilus PROPN
influenzaeis VERB
the DET
most ADV
common ADJ
cause NOUN
. PUNCT
What PRON
you PRON
are AUX
describing VERB
is AUX
meningitis NOUN
from ADP
Neisseria PROPN
meningitidis PROPN
, PUNCT
which PRON
is AUX
the DET
second ADJ
most ADV
common ADJ
cause NOUN
of ADP
bacterial ADJ
meningitis NOUN
inboth NOUN
groups NOUN
, PUNCT
but CCONJ
with ADP
lower ADJ
incidence NOUN
in ADP
infants NOUN
. PUNCT
This DET
organismis NOUN
also ADV
called VERB
the DET
" PUNCT
meningococcus NOUN
" PUNCT
, PUNCT
and CCONJ
is AUX
the DET
source NOUN
of ADP
thecommon PROPN
epidemics NOUN
of ADP
meningitis PROPN
that PRON
occur VERB
and CCONJ
are AUX
popularized VERB
inthe DET
press NOUN
. PUNCT
Without ADP
prompt ADJ
treatment NOUN
( PUNCT
and CCONJ
even ADV
WITH ADP
it PRON
in ADP
some DET
cases),the NOUN
organism NOUN
typically ADV
causes VERB
death NOUN
within ADP
a DET
day NOUN
. PUNCT
This DET
organism NOUN
, PUNCT
feared VERB
as SCONJ
it PRON
is AUX
, PUNCT
is AUX
actually ADV
grown VERB
from ADP
the DET
throatsof ADJ
many ADJ
normal ADJ
adults NOUN
. PUNCT
It PRON
can AUX
get AUX
to ADP
the DET
meninges NOUN
by ADP
differentways NOUN
, PUNCT
but CCONJ
blood NOUN
borne PROPN
spread NOUN
is AUX
probably ADV
the DET
usual ADJ
case NOUN
. PUNCT
Rifampin NOUN
( PUNCT
an DET
oral ADJ
antibiotic NOUN
) PUNCT
is AUX
often ADV
given VERB
to ADP
family NOUN
and CCONJ
contactsof PROPN
a DET
case NOUN
of ADP
meningococcal ADJ
meningitis NOUN
, PUNCT
by ADP
the DET
way NOUN
. PUNCT
Sorry INTJ
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
have AUX
time NOUN
for ADP
a DET
more ADV
detailed ADJ
reply NOUN
. PUNCT
Meningitisis VERB
a DET
huge ADJ
topic NOUN
, PUNCT
and CCONJ
sci.med PUNCT
ca AUX
n't PART
do AUX
it PRON
justice.-kmNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
58104From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
3 X
AIDS PROPN
Related VERB
QuestionsIn PROPN
article NOUN
< X
93088.130924PXF3@psuvm.psu.edu NUM
> NUM
PXF3@psuvm.psu.edu NUM
( PUNCT
Paula PROPN
Ford PROPN
) PUNCT
writes:>we PROPN
know VERB
ours PRON
is AUX
not PART
HIV+ ADJ
and CCONJ
people NOUN
need VERB
it PRON
. PUNCT
  SPACE
I PRON
think VERB
my PRON
husband NOUN
should AUX
give VERB
> X
blood NOUN
, PUNCT
especially ADV
, PUNCT
because SCONJ
his PRON
is AUX
O+ NOUN
, PUNCT
and CCONJ
I PRON
understand VERB
that DET
's AUX
a DET
very ADV
useful ADJ
> X
blood NOUN
type.>It PUNCT
's PART
O- PROPN
that PRON
is AUX
especially ADV
useful ADJ
. PUNCT
  SPACE
Still ADV
, PUNCT
he PRON
is AUX
n't PART
punishing VERB
theRed NUM
Cross PROPN
but CCONJ
some DET
O+ NOUN
person NOUN
that PRON
needed VERB
his PRON
blood NOUN
and CCONJ
couldn'tget VERB
it PRON
. PUNCT
  SPACE
You PRON
are AUX
right ADJ
, PUNCT
nagging VERB
probably ADV
wo AUX
n't PART
help.-- VERB
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58105From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Mar29.181958.3224@equator.com NUM
> X
jod@equator.com PROPN
( PUNCT
John PROPN
Setel PROPN
O'Donnell PROPN
) PUNCT
writes:>>I NOUN
should AUX
n't PART
have AUX
to PART
be AUX
posting VERB
here ADV
. PUNCT
  SPACE
Physicians PROPN
should AUX
know VERB
the DET
Lyme PROPN
> X
literature NOUN
beyond ADP
Steere PROPN
& CCONJ
co PROPN
's PART
denial ADJ
merry NOUN
- PUNCT
go NOUN
- PUNCT
round NOUN
. PUNCT
  SPACE
Patients NOUN
> X
should AUX
get AUX
correctly ADV
diagnosed VERB
and CCONJ
treated.>Why NOUN
do AUX
you PRON
think VERB
Steere PROPN
is AUX
doing VERB
this DET
? PUNCT
  SPACE
Is AUX
n't PART
he PRON
acting VERB
in ADP
good ADJ
faith?After ADV
all ADV
, PUNCT
as SCONJ
the DET
" PUNCT
discoverer NOUN
" PUNCT
of ADP
Lyme PROPN
for ADP
all DET
intents NOUN
and CCONJ
purposes NOUN
, PUNCT
the DET
more ADV
famous ADJ
Lyme PROPN
gets VERB
, PUNCT
the DET
more ADV
famous ADJ
Steere PROPN
gets VERB
. PUNCT
  SPACE
I PRON
don'tsee VERB
the DET
ulterior ADJ
motive NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
easy ADJ
for ADP
me PRON
to PART
see VERB
it PRON
thethose ADP
physicians NOUN
who PRON
call VERB
everything PRON
lyme NOUN
and CCONJ
treat VERB
everything PRON
. PUNCT
There PRON
is AUX
a DET
lot NOUN
of ADP
money NOUN
involved.>I'm ADP
a DET
computer NOUN
engineer NOUN
, PUNCT
not PART
a DET
doctor NOUN
( PUNCT
, PUNCT
Jim PROPN
) PUNCT
. PUNCT
  SPACE
I PRON
was AUX
building VERB
a DET
> X
computer NOUN
manufacturing NOUN
company NOUN
when ADV
I PRON
got VERB
Lyme PROPN
. PUNCT
I PRON
lost VERB
several ADJ
> X
years NOUN
of ADP
my PRON
life NOUN
to ADP
near ADJ
- PUNCT
total ADJ
disability NOUN
; PUNCT
partially ADV
as SCONJ
a DET
result,>the NOUN
company NOUN
failed VERB
, PUNCT
taking VERB
with ADP
it PRON
over ADP
150 NUM
jobs NOUN
, PUNCT
my PRON
savings,>and INTJ
everything PRON
I PRON
'd AUX
worked VERB
for ADP
for ADP
years NOUN
. PUNCT
  SPACE
I PRON
'm AUX
one NUM
of ADP
the DET
" PUNCT
lucky">ones PROPN
in ADP
that SCONJ
I PRON
found VERB
a DET
physician NOUN
through ADP
the DET
Lyme PROPN
foundation NOUN
> X
and CCONJ
now ADV
can AUX
work VERB
almost ADV
full ADJ
- PUNCT
time NOUN
, PUNCT
although SCONJ
I PRON
have AUX
persistent ADJ
> X
infection NOUN
and CCONJ
still ADV
suffer VERB
a DET
variety NOUN
of ADP
sypmtoms NOUN
. PUNCT
  SPACE
And CCONJ
now ADV
> X
I PRON
try VERB
to PART
follow VERB
the DET
Lyme PROPN
literature.>Well PROPN
, PUNCT
it PRON
is AUX
tragic ADJ
what PRON
has AUX
happened VERB
to ADP
you PRON
, PUNCT
but CCONJ
it PRON
doesn'tnecessarily ADV
make VERB
you PRON
the DET
most ADV
objective ADJ
source NOUN
of ADP
informationabout VERB
it PRON
. PUNCT
  SPACE
If SCONJ
your PRON
whole ADJ
life NOUN
is AUX
focussed VERB
around ADP
this DET
, PUNCT
youmay PROPN
be AUX
too ADV
emotionally ADV
involved VERB
to PART
be AUX
advising VERB
other ADJ
peoplewho PROPN
may AUX
or CCONJ
may AUX
not PART
have AUX
Lyme PROPN
. PUNCT
  SPACE
Certainly ADV
advocacy NOUN
of ADP
more ADJ
researchon NOUN
Lyme PROPN
would AUX
not PART
be AUX
out SCONJ
of ADP
order NOUN
, PUNCT
though ADV
, PUNCT
and CCONJ
people NOUN
like SCONJ
youcan PROPN
be AUX
very ADV
effective ADJ
there.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58106From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
CAN'T NOUN
BREATHEIn NOUN
article NOUN
< X
1p8t1p$mvv@agate.berkeley.edu NUM
> X
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes:>>Re VERB
: PUNCT
the DET
prostate NOUN
treatment NOUN
is AUX
worse ADJ
than SCONJ
the DET
disease NOUN
... PUNCT
In ADP
medicine NOUN
there ADV
> X
really ADV
is AUX
something PRON
histologically ADV
identified VERB
as SCONJ
prostate NOUN
tissue NOUN
and CCONJ
> X
there PRON
are AUX
observable ADJ
changes NOUN
which PRON
take VERB
place NOUN
, PUNCT
that SCONJ
whenever ADV
they PRON
occur VERB
, PUNCT
> X
can AUX
be AUX
identified VERB
as SCONJ
prostate NOUN
cancer NOUN
. PUNCT
What PRON
if SCONJ
I PRON
told VERB
you PRON
that SCONJ
most ADV
chiropractorstreat VERB
Subluxation NOUN
( PUNCT
Spinal PROPN
Demons PROPN
) PUNCT
, PUNCT
which PRON
do AUX
n't PART
exist VERB
at ADV
all ADV
. PUNCT
Therefore ADV
any DET
> X
tissue NOUN
damage NOUN
incurred VERB
in ADP
a DET
chiropractic ADJ
treatment NOUN
performed VERB
> X
in ADP
an DET
effort NOUN
to PART
exorcise VERB
this DET
elusive ADJ
Silent PROPN
Killer PROPN
, PUNCT
such ADJ
as SCONJ
ligamentous ADJ
> X
damage NOUN
and CCONJ
laxity NOUN
, PUNCT
microfracture NOUN
of ADP
the DET
joint ADJ
surfaces NOUN
, PUNCT
rib PROPN
fractures NOUN
, PUNCT
> X
strokes NOUN
, PUNCT
paralysis NOUN
, PUNCT
etc X
. PROPN
, PUNCT
is AUX
by ADP
definition NOUN
worse ADJ
than SCONJ
non ADJ
- ADJ
treatment.>>John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CA PROPN
> X
email NOUN
: PUNCT
romdas@uclink.berkeley.eduWhat DET
does AUX
" PUNCT
DC PROPN
" PUNCT
stand VERB
for ADP
? PUNCT
  SPACE
Could AUX
n't PART
be AUX
an DET
antichiropractic NOUN
postingfrom NOUN
a DET
chiropractor NOUN
, PUNCT
could AUX
it PRON
? PUNCT
  SPACE
My PRON
curiosity NOUN
is AUX
piqued VERB
. PUNCT
Prostate PROPN
CA PROPN
is AUX
an DET
especially ADV
troublesome ADJ
entity NOUN
for ADP
chiropractors NOUN
. PUNCT
It PRON
so ADV
typically ADV
causes VERB
bone NOUN
pain NOUN
due ADP
to ADP
spinal ADJ
metastases NOUN
that PRON
itgets NOUN
manipulated VERB
frequently ADV
. PUNCT
  SPACE
Manipulating VERB
a DET
cancer NOUN
riddled ADJ
boneis NOUN
highly ADV
dangerous ADJ
, PUNCT
since SCONJ
it PRON
can AUX
then ADV
fracture VERB
. PUNCT
  SPACE
I PRON
've AUX
seen VERB
atleast ADV
three NUM
cases NOUN
where ADV
this DET
happened VERB
with ADP
resulting VERB
neurologicdamage NOUN
, PUNCT
including VERB
paraplegia NOUN
. PUNCT
  SPACE
This DET
is AUX
one NUM
instance NOUN
where ADV
knowinghow NOUN
to PART
read VERB
x NOUN
- NOUN
rays NOUN
can AUX
really ADV
help VERB
a DET
chiropractor NOUN
stay VERB
out SCONJ
of ADP
trouble NOUN
. PUNCT
DO VERB
chiropractors NOUN
know VERB
what PRON
bony NOUN
mets NOUN
from ADP
prostate NOUN
look VERB
like?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58107From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Menangitis PROPN
questionIn PROPN
article NOUN
< X
C4nzn6.Mzx@crdnns.crd.ge.com PROPN
> X
brooksby@brigham PROPN
. PUNCT
NoSubdomain PROPN
. PUNCT
NoDomain PROPN
( PUNCT
Glen PROPN
W PROPN
Brooksby PROPN
) PUNCT
writes:>This PROPN
past ADJ
weekend NOUN
a DET
friend NOUN
of ADP
mine NOUN
lost VERB
his PRON
13 NUM
month NOUN
old ADJ
> X
daughter NOUN
in ADP
a DET
matter NOUN
of ADP
hours NOUN
to ADP
a DET
form NOUN
of ADP
menangitis NOUN
. PUNCT
  SPACE
The DET
> X
person NOUN
informing VERB
me PRON
called VERB
it PRON
' PUNCT
Nicereal PROPN
Meningicocis PROPN
' PUNCT
( PUNCT
sp?).>In PROPN
retrospect PROPN
, PUNCT
the DET
disease NOUN
struck VERB
her PRON
probably ADV
sometime ADV
on ADP
> X
Friday PROPN
evening NOUN
and CCONJ
she PRON
passed VERB
away ADP
about ADP
2:30pm NUM
on ADP
Saturday.>The PROPN
symptoms NOUN
seemed VERB
to PART
be AUX
a DET
rash NOUN
that PRON
started VERB
small ADJ
and CCONJ
> X
then ADV
began VERB
progressing VERB
rapidly ADV
. PUNCT
She PRON
began VERB
turning VERB
blue ADJ
> X
eventually ADV
which PRON
was AUX
the DET
tip NOUN
- PUNCT
off NOUN
that SCONJ
this DET
was AUX
serious ADJ
> X
but CCONJ
by ADP
that DET
time NOUN
it PRON
was AUX
too ADV
late ADJ
( PUNCT
this DET
is AUX
all DET
second ADJ
hand NOUN
info.).>>My PROPN
question NOUN
is:>Is ADP
this DET
an DET
unusual ADJ
form NOUN
of ADP
Menangitis PROPN
? PUNCT
  SPACE
How ADV
is AUX
it PRON
transmitted?>How PROPN
does AUX
it PRON
work VERB
( PUNCT
ie X
. PUNCT
how ADV
does AUX
it PRON
kill VERB
so ADV
quickly)?>No PROPN
, PUNCT
the DET
neiseria PROPN
meningococcus NOUN
is AUX
one NUM
of ADP
the DET
most ADJ
commonforms NOUN
of ADP
meningitis NOUN
. PUNCT
  SPACE
It PRON
's AUX
the DET
one NOUN
that PRON
sometimes ADV
sweepsschools PROPN
or CCONJ
boot PROPN
camp NOUN
. PUNCT
  SPACE
It PRON
is AUX
contagious ADJ
and CCONJ
kills NOUN
by ADP
attackingthe NOUN
covering NOUN
of ADP
the DET
brain NOUN
, PUNCT
causing VERB
the DET
blood NOUN
vessels NOUN
to PART
thromboseand VERB
the DET
brain NOUN
to PART
swell VERB
up ADP
. PUNCT
It PRON
is AUX
very ADV
treatable ADJ
if SCONJ
caught VERB
in ADP
time NOUN
. PUNCT
  SPACE
There PRON
is AUX
n't PART
much ADJ
time NOUN
, PUNCT
however ADV
. PUNCT
  SPACE
The DET
rash NOUN
is AUX
the DET
tip NOUN
off ADV
. PUNCT
  SPACE
Infants NOUN
are AUX
very ADV
susceptibleto ADJ
dying VERB
from ADP
bacterial ADJ
meningitis NOUN
. PUNCT
  SPACE
Any DET
infant NOUN
with ADP
a DET
fever NOUN
whobecomes VERB
stiff ADJ
or CCONJ
lethargic ADJ
needs NOUN
to PART
be AUX
rushed VERB
to ADP
a DET
hospital NOUN
wherea ADJ
spinal ADJ
tap PROPN
will AUX
show VERB
if SCONJ
they PRON
have AUX
meningitis PROPN
. PUNCT
  SPACE
Seizures PROPN
can AUX
alsooccur.>Immediate VERB
family NOUN
members NOUN
were AUX
told VERB
to PART
take VERB
some DET
kind NOUN
of ADP
medication NOUN
> X
to PART
prevent VERB
them PRON
from ADP
being AUX
carriers NOUN
, PUNCT
yet CCONJ
they PRON
did AUX
n't PART
have AUX
> X
any DET
concerns NOUN
about ADP
my PRON
wife NOUN
and CCONJ
I PRON
coming VERB
to PART
visit VERB
them.>It PROPN
can AUX
live VERB
in ADP
the DET
throat NOUN
of ADP
carriers NOUN
. PUNCT
  SPACE
Do AUX
n't PART
worry VERB
, PUNCT
you PRON
wo AUX
n't PART
get AUX
it PRON
from ADP
them PRON
, PUNCT
especially ADV
if SCONJ
they PRON
took VERB
the DET
medication.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58108From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
CAN'T PROPN
BREATHE"In ADP
article NOUN
< X
1993Mar29.204003.26952@tijc02.uucp NUM
> X
pjs269@tijc02.uucp PROPN
( PUNCT
Paul PROPN
Schmidt PROPN
) PUNCT
writes:>I INTJ
think VERB
it PRON
is AUX
important ADJ
to PART
verify VERB
all DET
procedures NOUN
with ADP
proper ADJ
studies NOUN
to PART
> X
show VERB
their PRON
worthiness NOUN
and CCONJ
risk NOUN
. PUNCT
  SPACE
I PRON
just ADV
read VERB
an DET
interesting ADJ
tidbit NOUN
that SCONJ
> X
80 NUM
% NOUN
of ADP
the DET
medical ADJ
treatments NOUN
are AUX
unproven ADJ
and CCONJ
not PART
based VERB
on ADP
scientific ADJ
> X
fact NOUN
. PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
many ADJ
treatments NOUN
of ADP
prostate NOUN
cancer NOUN
are AUX
unproven ADJ
and CCONJ
> X
the DET
treatment NOUN
may AUX
be AUX
more ADV
dangerous ADJ
than SCONJ
the DET
disease NOUN
( PUNCT
according VERB
to ADP
the DET
> X
article NOUN
I PRON
read.)Where PROPN
did AUX
you PRON
read VERB
this DET
? PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
this DET
is AUX
true ADJ
. PUNCT
  SPACE
I PRON
think VERB
mostmedical ADJ
treatments NOUN
are AUX
based VERB
on ADP
science NOUN
, PUNCT
although SCONJ
it PRON
is AUX
difficultto ADJ
prove VERB
anything PRON
with ADP
certitude NOUN
. PUNCT
  SPACE
It PRON
is AUX
true ADJ
that SCONJ
there PRON
are AUX
somethings NOUN
that PRON
have AUX
just ADV
been AUX
found VERB
" PUNCT
to PART
work VERB
" PUNCT
, PUNCT
but CCONJ
we PRON
have AUX
no DET
goodexplanation NOUN
for ADP
why ADV
. PUNCT
  SPACE
But CCONJ
almost ADV
everything PRON
does AUX
have AUX
a DET
scientificrationale NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
treatment NOUN
for ADP
prostate NOUN
cancer NOUN
isprobably ADV
hormone NOUN
therapy NOUN
. PUNCT
  SPACE
It PRON
has AUX
been AUX
" PUNCT
proven VERB
" PUNCT
to PART
work VERB
. PUNCT
  SPACE
So ADV
haveradiation NOUN
and CCONJ
chemotherapy NOUN
. PUNCT
  SPACE
What PRON
treatments NOUN
did AUX
the DET
article NOUN
sayare VERB
not PART
proven VERB
? PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58109From NUM
: PUNCT
jer@prefect.cc.bellcore.com PROPN
( PUNCT
rathmann PROPN
, PUNCT
janice PROPN
e)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
vs. ADP
Migraine PROPN
( PUNCT
was AUX
Re ADP
: PUNCT
Sinus NOUN
Endoscopy)I NOUN
noticed VERB
several ADJ
years NOUN
ago ADV
that SCONJ
when ADV
I PRON
took VERB
analgesics NOUN
fairly ADV
regularly,(motrin NOUN
at ADP
the DET
time NOUN
) PUNCT
, PUNCT
I PRON
seemed VERB
to PART
get AUX
a DET
lot NOUN
of ADP
migraines NOUN
. PUNCT
  SPACE
But CCONJ
hadforgotten VERB
about ADP
that DET
until ADP
I PRON
started VERB
reading VERB
some DET
of ADP
the DET
posts NOUN
here ADV
. PUNCT
I PRON
generally ADV
do AUX
n't PART
take VERB
NSAIDS PROPN
or CCONJ
Tylenol PROPN
for ADP
headaches NOUN
, PUNCT
because SCONJ
I'vefound PROPN
them PRON
to PART
be AUX
ineffective ADJ
. PUNCT
  SPACE
However ADV
, PUNCT
I PRON
have AUX
two NUM
other ADJ
pain NOUN
sourcesthat PRON
force VERB
me PRON
to PART
take VERB
NSAIDS PROPN
( PUNCT
currently ADV
Naprosyn PROPN
) PUNCT
. PUNCT
  SPACE
First ADV
, PUNCT
is AUX
somepelvic ADJ
pain NOUN
that PRON
I PRON
get VERB
at ADP
the DET
beginning NOUN
of ADP
my PRON
period NOUN
, PUNCT
and CCONJ
then ADV
muchworse VERB
at ADP
midcycle NOUN
. PUNCT
  SPACE
I PRON
have AUX
had VERB
surgery NOUN
for ADP
endometriosis NOUN
in ADP
the DET
past(~12 NOUN
years NOUN
ago ADV
) PUNCT
, PUNCT
so ADV
the DET
Drs PROPN
. PUNCT
tell VERB
me PRON
that SCONJ
my PRON
pain NOUN
is AUX
probably ADV
dueto VERB
the DET
endometriosis NOUN
coming VERB
back ADV
. PUNCT
  SPACE
I PRON
've AUX
tried VERB
Synarel PROPN
, PUNCT
it PRON
reducedthe DET
pain NOUN
while SCONJ
I PRON
took VERB
it PRON
( PUNCT
3 NUM
mos NOUN
) PUNCT
, PUNCT
but CCONJ
the DET
pain NOUN
returned VERB
immediatelyafter NOUN
I PRON
stopped VERB
. PUNCT
  SPACE
Three NUM
doctors NOUN
have AUX
suggested VERB
hysterectomy NOUN
as SCONJ
theonly ADJ
" PUNCT
real ADJ
solution NOUN
" PUNCT
to ADP
my PRON
problem NOUN
. PUNCT
  SPACE
Although SCONJ
I PRON
do AUX
n't PART
expect VERB
to PART
haveany VERB
more ADJ
children NOUN
, PUNCT
I PRON
do AUX
n't PART
like VERB
the DET
idea NOUN
of ADP
having VERB
my PRON
uterus NOUN
andone NOUN
remaining VERB
ovary ADJ
removed VERB
( PUNCT
the DET
first ADJ
ovary NOUN
was AUX
removed VERB
when ADV
I PRON
hadthe VERB
surgery NOUN
for ADP
endometriosis NOUN
) PUNCT
. PUNCT
  SPACE
One NUM
of ADP
the DET
Drs PROPN
that SCONJ
suggestedI PROPN
get AUX
a DET
hysterectomy NOUN
is AUX
an DET
expert NOUN
in ADP
laser NOUN
surgery NOUN
, PUNCT
but CCONJ
perhaps ADV
thinksthat DET
type NOUN
of ADP
procedure NOUN
is AUX
only ADV
worthwhile ADJ
on ADP
women NOUN
who PRON
still ADV
planto VERB
have AUX
children NOUN
. PUNCT
  SPACE
So ADV
basically ADV
all DET
I PRON
'm AUX
left VERB
with ADP
is AUX
toughing VERB
outthe DET
pain NOUN
. PUNCT
  SPACE
This DET
would AUX
be AUX
impossible ADJ
without ADP
Naprosyn PROPN
( PUNCT
or CCONJ
somethingsimilar NOUN
- PUNCT
but CCONJ
not PART
aspirin NOUN
, PUNCT
that DET
does AUX
n't PART
work VERB
, PUNCT
and CCONJ
Motrin PROPN
gave VERB
mehorrible ADJ
gastritis NOUN
a DET
few ADJ
years NOUN
ago ADV
, PUNCT
so ADV
I PRON
'm AUX
through ADP
with ADP
it PRON
) PUNCT
. PUNCT
  SPACE
Infact PROPN
, PUNCT
Naprosyn PROPN
works VERB
very ADV
well ADV
at ADP
eliminating VERB
the DET
pain NOUN
if SCONJ
I PRON
takeit VERB
regularly ADV
as SCONJ
I PRON
did AUX
when ADV
I PRON
had AUX
severe ADJ
back ADJ
pain NOUN
( PUNCT
and CCONJ
pain NOUN
in ADP
both DET
legs NOUN
) PUNCT
as SCONJ
I PRON
'll AUX
discuss VERB
in ADP
a DET
moment NOUN
. PUNCT
  SPACE
Generally ADV
though ADV
, PUNCT
I PRON
wait VERB
untilI PROPN
have AUX
the DET
pain NOUN
before ADP
I PRON
take VERB
the DET
Naprosyn PROPN
, PUNCT
but CCONJ
then ADV
it PRON
takesseveral ADJ
hours NOUN
for ADP
it PRON
reduce VERB
the DET
pain NOUN
( PUNCT
it PRON
's AUX
actually ADV
quite ADV
effectiveat NOUN
reducing VERB
the DET
pain NOUN
, PUNCT
it PRON
just ADV
takes VERB
quite DET
a DET
while NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
the DET
meantimeI'm PROPN
frequently ADV
in ADP
severe ADJ
pain NOUN
. PUNCT
The DET
other ADJ
pain NOUN
source NOUN
I PRON
have AUX
is AUX
chronic ADJ
lower ADJ
back ADJ
pain NOUN
resulting VERB
inbilateral ADJ
radiculopathy ADJ
. PUNCT
  SPACE
I PRON
've AUX
had VERB
MRIs NOUN
, PUNCT
Xrays PROPN
, PUNCT
CT PROPN
scan NOUN
, PUNCT
and CCONJ
EMGs(I've PROPN
had AUX
2 NUM
of ADP
them PRON
, PUNCT
and CCONJ
do AUX
n't PART
intend VERB
to PART
ever ADV
do AUX
that DET
again ADV
) PUNCT
withnerve VERB
conduction NOUN
tests NOUN
. PUNCT
  SPACE
The DET
tests NOUN
have AUX
not PART
been AUX
conclusive ADJ
as SCONJ
towhat DET
is AUX
causing VERB
my PRON
back NOUN
and CCONJ
leg NOUN
pain NOUN
. PUNCT
  SPACE
The DET
MRI PROPN
reports VERB
both DET
say VERB
I PRON
haveseveral ADJ
bulging VERB
, PUNCT
degeneratig NOUN
disks NOUN
, PUNCT
and CCONJ
from ADP
the DET
Xrays PROPN
( PUNCT
and CCONJ
MRI PROPN
, PUNCT
I PRON
think)it VERB
is AUX
apparent ADJ
that SCONJ
I PRON
have AUX
arthritis NOUN
. PUNCT
  SPACE
The DET
reading NOUN
on ADP
the DET
CT PROPN
scanwas VERB
that SCONJ
there PRON
are AUX
two NUM
herniations NOUN
( PUNCT
L3-L4 PROPN
, PUNCT
and CCONJ
L4-L5 PROPN
) PUNCT
, PUNCT
but CCONJ
othershav PROPN
looked VERB
at ADP
the DET
films NOUN
and CCONJ
concluded VERB
that SCONJ
there PRON
are AUX
no DET
herniations NOUN
. PUNCT
The DET
second ADJ
EMG NOUN
and CCONJ
nerve NOUN
conduction NOUN
studies NOUN
shows VERB
significant ADJ
denervationcompared VERB
to ADP
the DET
first ADJ
EMG PROPN
. PUNCT
  SPACE
Oh INTJ
yeah INTJ
, PUNCT
I PRON
had AUX
some DET
other ADJ
horrible ADJ
test NOUN
, PUNCT
called VERB
something PRON
like SCONJ
Somatic PROPN
Evoked PROPN
Response PROPN
which PRON
showed VERB
that SCONJ
the"internal ADJ
nerves NOUN
" PUNCT
are AUX
working VERB
fine ADV
. PUNCT
   SPACE
Anyway INTJ
, PUNCT
the DET
bottom ADJ
line NOUN
is AUX
thatI PROPN
sometimes ADV
have AUX
severe ADJ
pain NOUN
in ADP
both DET
legs NOUN
and CCONJ
back ADJ
pain NOUN
. PUNCT
  SPACE
The DET
back ADJ
painis NOUN
there ADV
all DET
the DET
time NOUN
, PUNCT
but CCONJ
I PRON
can AUX
live VERB
with ADP
it PRON
. PUNCT
  SPACE
When ADV
the DET
leg NOUN
pain NOUN
is AUX
there ADV
, PUNCT
I PRON
need VERB
some DET
analgesic ADJ
/ SYM
anti ADJ
- ADJ
inflammatory ADJ
medication NOUN
to PART
reduce VERB
the DET
painto NOUN
a DET
level NOUN
where ADV
I PRON
can AUX
work VERB
. PUNCT
  SPACE
So ADV
I PRON
took VERB
Naprosyn PROPN
regulary NOUN
for ADP
6 NUM
- SYM
9months NOUN
( PUNCT
every DET
time NOUN
I PRON
tried VERB
to PART
stop VERB
the DET
leg NOUN
pain NOUN
got VERB
worse ADJ
, PUNCT
so CCONJ
I PRON
'd AUX
always ADV
resume VERB
) PUNCT
. PUNCT
  SPACE
Since SCONJ
last ADJ
November PROPN
I PRON
have AUX
taken VERB
it PRON
much ADV
less ADV
frequently ADV
, PUNCT
and CCONJ
primarily ADV
for ADP
the DET
pelvic ADJ
pain NOUN
. PUNCT
  SPACE
I PRON
have AUX
been AUX
going VERB
to ADP
physicaltherapy NOUN
for ADP
the DET
last ADJ
8 NUM
months NOUN
( PUNCT
2 NUM
- SYM
3 NUM
times NOUN
a DET
week NOUN
) PUNCT
. PUNCT
  SPACE
After ADP
the DET
first ADJ
monthor NOUN
so ADV
, PUNCT
my PRON
therapist NOUN
put VERB
me PRON
on ADP
pelvic ADJ
traction NOUN
( PUNCT
she PRON
had AUX
tried VERB
it PRON
earlier ADV
, PUNCT
but CCONJ
it PRON
had AUX
caused VERB
a DET
lot NOUN
of ADP
pain NOUN
in ADP
my PRON
back NOUN
, PUNCT
this DET
time NOUN
she PRON
tried VERB
it PRON
ata PROPN
lower ADJ
weight NOUN
) PUNCT
. PUNCT
  SPACE
After ADP
a DET
month NOUN
or CCONJ
two NUM
, PUNCT
the DET
pain NOUN
in ADP
my PRON
legs NOUN
began VERB
goingaway ADJ
( PUNCT
but CCONJ
the DET
traction NOUN
aways VERB
caused VERB
discomfort NOUN
in ADP
my PRON
lower ADJ
back ADV
, PUNCT
whichcould AUX
be AUX
reduced VERB
with ADP
ultrasound NOUN
and CCONJ
massage NOUN
) PUNCT
. PUNCT
  SPACE
So ADV
now ADV
, PUNCT
I PRON
do AUX
n't PART
havenearly ADV
as ADV
much ADJ
pain NOUN
in ADP
my PRON
legs NOUN
, PUNCT
in ADP
fact NOUN
my PRON
therapist NOUN
took VERB
me PRON
offtraction NOUN
about ADV
2 NUM
weeks NOUN
ago ADV
. PUNCT
Getting VERB
back ADV
to ADP
my PRON
original ADJ
reason NOUN
for ADP
this DET
post NOUN
... PUNCT
  SPACE
Even ADV
if SCONJ
I PRON
can AUX
avoidtaking VERB
analgesic ADJ
for ADP
headaches NOUN
, PUNCT
I PRON
really ADV
ca AUX
n't PART
avoid VERB
them PRON
entirely ADV
becauseI PROPN
have AUX
other ADJ
pain NOUN
sources NOUN
, PUNCT
that SCONJ
" PUNCT
force NOUN
" PUNCT
me PRON
to PART
use VERB
them PRON
( PUNCT
Oh INTJ
, PUNCT
I PRON
forgotto VERB
mention VERB
that SCONJ
it PRON
has AUX
been AUX
suggested VERB
to ADP
me PRON
that SCONJ
I PRON
have AUX
back NOUN
surgery NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
avoiding VERB
that SCONJ
too ADV
) PUNCT
. PUNCT
  SPACE
I PRON
find VERB
the DET
migraines NOUN
difficult ADJ
to PART
deal VERB
with ADP
, PUNCT
occassionally ADV
I PRON
have AUX
to PART
take VERB
off ADP
work NOUN
, PUNCT
but CCONJ
usually ADV
I PRON
can AUX
work VERB
, PUNCT
but CCONJ
ata PROPN
reduced VERB
capacity NOUN
( PUNCT
I PRON
'm AUX
a DET
systems NOUN
engineer NOUN
and CCONJ
do AUX
a DET
lot NOUN
of ADP
readingand NOUN
writing NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
the DET
pelvic ADJ
pain NOUN
is AUX
bad ADJ
, PUNCT
I PRON
ca AUX
n't PART
concentrate VERB
much ADV
, PUNCT
I PRON
usually ADV
end VERB
up ADP
jumping VERB
out SCONJ
of ADP
my PRON
chair NOUN
every DET
few ADJ
minutes NOUN
, PUNCT
becausethe NOUN
pain NOUN
is AUX
so ADV
bothersome ADJ
. PUNCT
  SPACE
When ADV
the DET
pain NOUN
in ADP
my PRON
back NOUN
is AUX
bad ADJ
, PUNCT
it PRON
cancause VERB
severe ADJ
burning NOUN
in ADP
both DET
legs NOUN
, PUNCT
shooting VERB
pains NOUN
in ADP
my PRON
legs NOUN
, PUNCT
electricshock NOUN
type NOUN
of ADP
pain NOUN
in ADP
my PRON
feet NOUN
and CCONJ
toes NOUN
, PUNCT
and CCONJ
basically ADV
when ADV
it PRON
gets VERB
badI PROPN
ca AUX
n't PART
really ADV
sit VERB
at ADV
all ADV
. PUNCT
  SPACE
Then ADV
I PRON
end VERB
up ADP
spending VERB
most ADJ
of ADP
my PRON
time NOUN
homeand NOUN
in ADP
bed NOUN
. PUNCT
  SPACE
So ADV
even ADV
if SCONJ
the DET
analgesics NOUN
contribute VERB
to ADP
the DET
migraines NOUN
, PUNCT
themigraines NOUN
are AUX
more ADV
tolerable ADJ
than SCONJ
the DET
other ADJ
pain NOUN
sources NOUN
. PUNCT
  SPACE
I PRON
get VERB
a DET
lotof NOUN
migraines NOUN
, PUNCT
an DET
average NOUN
of ADP
3 NUM
to ADP
4 NUM
a DET
month NOUN
, PUNCT
which PRON
last ADJ
1 NUM
- SYM
3 NUM
days NOUN
. PUNCT
I've PROPN
taken VERB
cafergot VERB
( PUNCT
the DET
first ADJ
time NOUN
the DET
caffiene NOUN
really ADV
got VERB
to ADP
me PRON
soI PROPN
reduced VERB
the DET
dosage NOUN
) PUNCT
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
like VERB
the DET
side NOUN
effects NOUN
( PUNCT
if SCONJ
I PRON
takemore VERB
than SCONJ
two NUM
I PRON
get VERB
diahrea ADJ
) PUNCT
. PUNCT
  SPACE
If SCONJ
I PRON
get VERB
a DET
very ADV
bad ADJ
headache NOUN
, PUNCT
I PRON
willeventually ADV
take VERB
the DET
cafergot NOUN
. PUNCT
  SPACE
My PRON
neurologist NOUN
was AUX
n't PART
very ADV
helpful ADJ
whenI PROPN
told VERB
him PRON
my PRON
problems NOUN
with ADP
cafergot PROPN
, PUNCT
he PRON
said VERB
that SCONJ
when ADV
sumatriptanbecomes NOUN
available ADJ
, PUNCT
I PRON
should AUX
try VERB
that DET
. PUNCT
  SPACE
I PRON
've AUX
tried VERB
several ADJ
other ADJ
medications(fiornal PROPN
, PUNCT
midrin PROPN
, PUNCT
fiornal ADJ
with ADP
codeine NOUN
, PUNCT
tegretol PROPN
, PUNCT
and CCONJ
inderal ADJ
) PUNCT
butthey NOUN
either CCONJ
did AUX
n't PART
work VERB
, PUNCT
or CCONJ
I PRON
could AUX
n't PART
tolerate VERB
them PRON
. PUNCT
  SPACE
So ADV
what PRON
can AUX
I PRON
do?My PROPN
doctor NOUN
's PART
seem NOUN
to PART
be AUX
satisfied ADJ
with ADP
me PRON
just ADV
trying VERB
to PART
tolerate VERB
thepain NOUN
, PUNCT
which PRON
I PRON
agree VERB
with ADP
most ADJ
of ADP
the DET
time NOUN
, PUNCT
but CCONJ
not PART
when ADV
I PRON
have AUX
a DET
lot NOUN
ofpain NOUN
. PUNCT
  SPACE
I PRON
've AUX
had VERB
some DET
bad ADJ
experiences NOUN
with ADP
surgery NOUN
( PUNCT
my PRON
heart NOUN
stoppedonce NOUN
from ADP
the DET
anesthesia PROPN
- PUNCT
I PRON
was AUX
told VERB
that SCONJ
it PRON
was AUX
likely ADV
thesuccinylcholine ADJ
) PUNCT
, PUNCT
and CCONJ
I PRON
've AUX
already ADV
had VERB
surgery NOUN
several ADJ
times NOUN
. PUNCT
Anyway INTJ
, PUNCT
the DET
point NOUN
of ADP
what PRON
I PRON
'm AUX
saying VERB
is AUX
that SCONJ
even ADV
if SCONJ
analgesics NOUN
can AUX
contributeto VERB
migraines NOUN
, PUNCT
some DET
people NOUN
NEED VERB
to PART
take VERB
them PRON
to PART
tolerate VERB
other ADJ
pain NOUN
. PUNCT
Janice PROPN
RathmannNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58110From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Teenage ADJ
acnepchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill PROPN
) PUNCT
writes:>My PROPN
14-y PROPN
- PUNCT
o PROPN
son NOUN
has AUX
the DET
usual ADJ
teenage NOUN
spotty ADJ
chin NOUN
and CCONJ
greasy NOUN
nose NOUN
. PUNCT
  SPACE
I PRON
> X
bought VERB
him PRON
Clearasil PROPN
face NOUN
wash NOUN
and CCONJ
ointment NOUN
. PUNCT
  SPACE
I PRON
think VERB
that DET
is AUX
probably ADV
> X
enough ADV
, PUNCT
along ADP
with ADP
the DET
usual ADJ
good ADJ
diet NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
he PRON
is AUX
on ADP
at ADP
me PRON
to PART
> X
get AUX
some DET
product NOUN
called VERB
Dalacin PROPN
T PROPN
, PUNCT
which PRON
used VERB
to PART
be AUX
a DET
> X
doctor's ADJ
- PUNCT
prescription NOUN
only ADJ
treatment NOUN
but CCONJ
is AUX
not PART
available ADJ
over ADP
the DET
> PROPN
chemist NOUN
's PART
counter NOUN
. PUNCT
  SPACE
I PRON
have AUX
asked VERB
a DET
couple NOUN
of ADP
pharmacists NOUN
who PRON
say VERB
> X
either CCONJ
his PRON
acne NOUN
is AUX
not PART
severe ADJ
enough ADV
for ADP
Dalacin PROPN
T PROPN
, PUNCT
or CCONJ
that SCONJ
Clearasil PROPN
> X
is AUX
OK ADJ
. PUNCT
  SPACE
I PRON
had AUX
the DET
odd ADJ
spots NOUN
as SCONJ
a DET
teenager NOUN
, PUNCT
nothing PRON
serious ADJ
. PUNCT
  SPACE
His PRON
> X
father NOUN
was AUX
the DET
same ADJ
, PUNCT
so ADV
I PRON
do AUX
n't PART
figure VERB
his PRON
acne NOUN
is AUX
going VERB
to PART
escalate VERB
> X
into ADP
something PRON
disfiguring VERB
. PUNCT
  SPACE
But CCONJ
I PRON
know VERB
kids NOUN
are AUX
senstitive ADJ
about ADP
> X
their PRON
appearance NOUN
. PUNCT
  SPACE
I PRON
am AUX
wary ADJ
because SCONJ
a DET
neighbour NOUN
's PART
son NOUN
had AUX
this DET
wierd NOUN
> X
malady PROPN
that PRON
was AUX
eventually ADV
put VERB
down ADP
to ADP
an DET
overdose NOUN
of ADP
vitamin NOUN
A NOUN
from ADP
> PROPN
acne PROPN
treatment NOUN
. PUNCT
  SPACE
I PRON
want VERB
to PART
help VERB
- PUNCT
but CCONJ
with ADP
appropriate ADJ
treatment.>My NUM
son NOUN
also ADV
has AUX
some DET
scaliness NOUN
around ADP
the DET
hairline NOUN
on ADP
his PRON
scalp NOUN
. PUNCT
  SPACE
Sort ADV
> PROPN
of ADP
teenage ADJ
cradle PROPN
cap NOUN
. PUNCT
  SPACE
Any DET
pointers NOUN
/ SYM
advice NOUN
on ADP
this DET
? PUNCT
  SPACE
We PRON
have AUX
tried VERB
a DET
> X
couple NOUN
of ADP
anti PROPN
dandruff PROPN
shampoos NOUN
and CCONJ
some DET
of ADP
these DET
are AUX
inclined ADJ
to PART
> X
make VERB
the DET
condition NOUN
worse ADV
, PUNCT
not PART
better.>Shall PROPN
I PRON
bury VERB
the DET
kid NOUN
till SCONJ
he PRON
's AUX
21 NUM
: PUNCT
): PROPN
) PUNCT
No INTJ
... PUNCT
I PRON
was AUX
one NUM
of ADP
the DET
lucky ADJ
ones NOUN
. PUNCT
Very ADV
little ADJ
acne NOUN
as SCONJ
a DET
teenager NOUN
. PUNCT
Ididn't PROPN
have AUX
any DET
luck NOUN
with ADP
clearasil PROPN
. PUNCT
Even ADV
though SCONJ
my PRON
skin NOUN
gets VERB
oily ADV
itreally ADV
only ADV
gets VERB
miserable ADJ
pimples NOUN
when ADV
it PRON
's AUX
dry ADJ
. PUNCT
Frequent ADJ
lukewarm ADJ
water NOUN
rinses VERB
on ADP
the DET
face NOUN
might AUX
help VERB
. PUNCT
Getting VERB
the DET
scalpthing NOUN
under ADP
control NOUN
might AUX
help VERB
( PUNCT
that PRON
could AUX
be AUX
as ADV
simple ADJ
as SCONJ
submerging VERB
underthe PROPN
bathwater PROPN
till SCONJ
it PRON
's AUX
softened VERB
and CCONJ
washing VERB
it PRON
out ADP
) PUNCT
. PUNCT
Taking VERB
a DET
one NOUN
a DET
dayvitamin NOUN
/ SYM
mineral NOUN
might AUX
help VERB
. PUNCT
I PRON
've AUX
heard VERB
iodine NOUN
causes NOUN
trouble NOUN
and CCONJ
that SCONJ
it PRON
  SPACE
is AUX
used VERB
in ADP
fast ADJ
food NOUN
restaurants NOUN
to PART
sterilize VERB
equipment NOUN
which PRON
might AUX
bewhere VERB
the DET
belief NOUN
that SCONJ
greasy NOUN
foods NOUN
cause PROPN
acne PROPN
came VERB
from ADP
. PUNCT
I PRON
notice VERB
grease NOUN
on ADP
my PRON
face NOUN
, PUNCT
not PART
immediately ADV
removed VERB
will AUX
cause VERB
acne PROPN
( PUNCT
even ADV
from ADP
eatingmeat).Keeping VERB
hair NOUN
rinse NOUN
, PUNCT
mousse PROPN
, PUNCT
dip PROPN
, PUNCT
and CCONJ
spray VERB
off ADP
the DET
face NOUN
will AUX
help VERB
. PUNCT
Warmwater NOUN
bath NOUN
soaks VERB
or CCONJ
cloths NOUN
on ADP
the DET
face NOUN
to PART
soften VERB
the DET
oil NOUN
in ADP
the DET
pores NOUN
willhelp NOUN
prevent NOUN
blackheads NOUN
. PUNCT
Body NOUN
oil NOUN
is AUX
hydrophilic ADJ
, PUNCT
loves VERB
water NOUN
and CCONJ
itsoftens NOUN
and CCONJ
washes VERB
off ADP
when ADV
it PRON
has AUX
a DET
chance NOUN
. PUNCT
That DET
's AUX
why ADV
hair NOUN
goes VERB
limp ADJ
withoilyness NOUN
. PUNCT
Becoming VERB
convinced ADJ
that SCONJ
the DET
best ADJ
thing NOUN
to PART
do AUX
witha NOUN
whitehead NOUN
is AUX
leave VERB
it PRON
alone ADJ
will AUX
save VERB
him PRON
days NOUN
of ADP
pimple NOUN
misery NOUN
. PUNCT
Anyprying VERB
of ADP
black ADJ
or CCONJ
whiteheads NOUN
can AUX
cause VERB
infections NOUN
, PUNCT
the DET
red ADJ
spots NOUN
ofpimples NOUN
. PUNCT
Usually ADV
a DET
whitehead NOUN
will AUX
break VERB
naturally ADV
in ADP
a DET
day NOUN
and CCONJ
there ADV
won'tbe CCONJ
an DET
infection NOUN
afterwards ADV
. PUNCT
Tell VERB
him PRON
that SCONJ
it PRON
's AUX
normal ADJ
to PART
have AUX
some DET
pimples NOUN
but CCONJ
the DET
cosmetic NOUN
industrymakes NOUN
it PRON
's AUX
money NOUN
off ADP
of ADP
selling VERB
people NOUN
on ADP
the DET
idea NOUN
that SCONJ
they PRON
are AUX
anincredible ADJ
defect ADJ
to PART
be AUX
hidden VERB
at ADP
any DET
cost NOUN
( PUNCT
even ADV
that DET
of ADP
causing VERB
more ADJ
pimples NOUN
) PUNCT
. PUNCT
-Jackie NUM
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58111From NUM
: PUNCT
Mark PROPN
W. PROPN
DubinSubject PROPN
: PUNCT
Re ADP
: PUNCT
ringing VERB
earsjfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare PROPN
) PUNCT
writes:>A PROPN
friend NOUN
of ADP
mine NOUN
has AUX
a DET
trouble NOUN
with ADP
her PRON
ears NOUN
ringing VERB
. PUNCT
[ PUNCT
etc.]A. PROPN
  SPACE
Folks NOUN
, PUNCT
do AUX
we PRON
have AUX
an DET
FAQ PROPN
on ADP
tinnitus NOUN
yet?B. PROPN
  SPACE
As SCONJ
a DET
lo PROPN
- PUNCT
o NOUN
- PUNCT
o NOUN
- PUNCT
ong ADJ
time NOUN
sufferer NOUN
of ADP
tinnitus PROPN
and CCONJ
as SCONJ
a DET
neuroscientistwho NOUN
has AUX
looked VERB
over ADP
the DET
literature NOUN
carefully ADV
I PRON
believe VERB
the DET
followingare NOUN
reasonable ADJ
conclusions:1 PROPN
. PUNCT
Millions NOUN
of ADP
people NOUN
suffer VERB
from ADP
chronic ADJ
tinnitus.2 NOUN
. PUNCT
The DET
cause NOUN
it PRON
not PART
understood.3 ADV
. PUNCT
There PRON
is AUX
no DET
accepted ADJ
treatment NOUN
that PRON
cures VERB
it.4 PUNCT
. PUNCT
Some DET
experimental ADJ
treatments NOUN
may AUX
have AUX
helped VERB
some DET
people NOUN
a DET
bit NOUN
, PUNCT
butthere ADV
have AUX
be AUX
no DET
reports NOUN
-- PUNCT
even ADV
anecdotal ADJ
-- PUNCT
of ADP
massive ADJ
good ADJ
results NOUN
withany NOUN
of ADP
these DET
experimental ADJ
drugs.5 NOUN
. PUNCT
Some DET
people NOUN
with ADP
chronic ADJ
loud ADJ
tinnitus NOUN
use VERB
noise NOUN
blocking VERB
to PART
get AUX
to ADP
sleep.6 PROPN
. PUNCT
Sudden ADJ
onset NOUN
loud ADJ
tinnitus NOUN
can AUX
be AUX
caused VERB
by ADP
injuries NOUN
and CCONJ
sometimesabates NOUN
or CCONJ
goes VERB
away ADV
after ADP
a DET
few ADJ
months.7 NOUN
. PUNCT
Aspirin NOUN
is AUX
well ADV
known ADJ
to PART
exacerbate VERB
tinnitus NOUN
in ADP
some DET
people.8 PROPN
. PUNCT
There PRON
is AUX
a DET
national ADJ
association NOUN
of ADP
tinnitus PROPN
sufferers NOUN
in ADP
the DET
US.9 PROPN
. PUNCT
One NUM
usually ADV
gets VERB
used VERB
to ADP
it PRON
. PUNCT
  SPACE
Especially ADV
when ADV
concentrating VERB
onsomething VERB
else ADV
the DET
tinnitus NOUN
becomes VERB
unnoticed.10 X
. PUNCT
  SPACE
Stress NOUN
and CCONJ
lack NOUN
of ADP
sleep NOUN
make VERB
tinnitus NOUN
more ADV
annoying ADJ
, PUNCT
sometimes.11 PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
those DET
of ADP
us PRON
who PRON
have AUX
it PRON
wish VERB
there PRON
was AUX
a DET
cure NOUN
, PUNCT
but CCONJ
thereis PROPN
not PART
. PUNCT
Mark PROPN
dubinthe NOUN
ol' ADJ
professorNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58112From NUM
: PUNCT
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
jiggersI PROPN
may AUX
not PART
be AUX
the DET
world NOUN
's PART
greatest ADJ
expert NOUN
on ADP
chiggers NOUN
( PUNCT
a DET
type NOUN
ofmite ADJ
indigenous ADJ
to ADP
the DET
south NOUN
) PUNCT
, PUNCT
but CCONJ
I PRON
certainly ADV
have AUX
spent VERB
a DET
lotof NOUN
time NOUN
contemplating VERB
the DET
little ADJ
buggers NOUN
over ADP
the DET
past ADJ
six NUM
years(since NOUN
we PRON
moved VERB
to ADP
N.C. PROPN
) PUNCT
. PUNCT
  SPACE
Here ADV
are AUX
some DET
observations NOUN
gained VERB
frompainful ADJ
experience NOUN
: PUNCT
  SPACE
1 NUM
. PUNCT
Reactions NOUN
to ADP
chiggers NOUN
vary VERB
greatly ADV
from ADP
person NOUN
to ADP
person NOUN
. PUNCT
     SPACE
Some DET
people NOUN
get VERB
tiny ADJ
red ADJ
bites NOUN
. PUNCT
  SPACE
Others NOUN
( PUNCT
like SCONJ
me PRON
) PUNCT
are AUX
more ADV
     SPACE
sensitive NOUN
and CCONJ
get VERB
fairly ADV
large ADJ
swollen ADJ
sore ADJ
- PUNCT
like ADJ
affairs NOUN
. PUNCT
  SPACE
2 X
. PUNCT
Chigger NOUN
bites NOUN
are AUX
the DET
gift NOUN
that PRON
keeps VERB
on ADP
giving VERB
. PUNCT
  SPACE
I PRON
swear VERB
     SPACE
that SCONJ
these DET
things NOUN
will AUX
itch VERB
for ADP
months NOUN
. PUNCT
  SPACE
3 NUM
. PUNCT
There PRON
is AUX
a DET
lot NOUN
of ADP
folklore NOUN
about ADP
chiggers NOUN
. PUNCT
  SPACE
I PRON
think VERB
most ADJ
of ADP
     SPACE
it PRON
is AUX
fiction NOUN
. PUNCT
  SPACE
I PRON
have AUX
tried VERB
to PART
do AUX
research NOUN
on ADP
the DET
critters NOUN
, PUNCT
     SPACE
since SCONJ
they PRON
have AUX
such DET
an DET
effect NOUN
on ADP
me PRON
. PUNCT
  SPACE
The DET
only ADJ
book NOUN
I PRON
could AUX
     SPACE
find VERB
on ADP
the DET
subject NOUN
was AUX
a DET
* PUNCT
single ADJ
* PUNCT
book NOUN
in ADP
UNC PROPN
's PART
special ADJ
     SPACE
collections NOUN
library NOUN
. PUNCT
  SPACE
I PRON
have AUX
not PART
yet ADV
gone VERB
through ADP
what PRON
is AUX
     SPACE
required VERB
to PART
get AUX
it PRON
. PUNCT
  SPACE
4 NUM
. PUNCT
Based VERB
on ADP
my PRON
experience NOUN
and CCONJ
that DET
of ADP
my PRON
family NOUN
members NOUN
, PUNCT
the DET
old ADJ
     SPACE
folk NOUN
remedy NOUN
of ADP
fingernail NOUN
polish NOUN
simply ADV
does AUX
n't PART
work VERB
. PUNCT
  SPACE
I PRON
recall VERB
     SPACE
reading NOUN
that SCONJ
the DET
theory NOUN
upon SCONJ
which PRON
it PRON
is AUX
based VERB
( PUNCT
that SCONJ
the DET
chiggers NOUN
     SPACE
burrow NOUN
into ADP
your PRON
skin NOUN
and CCONJ
continue VERB
to PART
party NOUN
there ADV
) PUNCT
is AUX
false ADJ
. PUNCT
  SPACE
I PRON
     SPACE
think VERB
it PRON
is AUX
more ADV
likely ADJ
that SCONJ
the DET
reaction NOUN
is AUX
to ADP
toxins NOUN
of ADP
some DET
     SPACE
sort NOUN
the DET
little ADJ
pests NOUN
release VERB
. PUNCT
  SPACE
But CCONJ
this DET
is AUX
speculation NOUN
. PUNCT
  SPACE
5 NUM
. PUNCT
The DET
* PUNCT
best ADJ
* PUNCT
approach NOUN
is AUX
prevention NOUN
. PUNCT
  SPACE
A DET
couple NOUN
of ADP
things NOUN
work VERB
well ADV
. PUNCT
     SPACE
A DET
good ADJ
insect NOUN
repellent NOUN
( PUNCT
DEET PROPN
) PUNCT
such ADJ
as SCONJ
Deep PROPN
Woods PROPN
Off ADP
liberally ADV
     SPACE
applied VERB
to ADP
ankles NOUN
, PUNCT
waistband NOUN
, PUNCT
etc X
. PUNCT
is AUX
a DET
good ADJ
start NOUN
. PUNCT
  SPACE
There PRON
is AUX
     SPACE
another DET
preparation NOUN
called VERB
" PUNCT
Chig PROPN
Away ADV
" PUNCT
that DET
is AUX
a DET
combination NOUN
of ADP
     SPACE
sulfur NOUN
and CCONJ
some DET
kind NOUN
of ADP
cream NOUN
( PUNCT
cortisone PROPN
? PUNCT
) PUNCT
that SCONJ
originally ADV
was AUX
     SPACE
prepared VERB
for ADP
the DET
Army PROPN
and CCONJ
is AUX
not PART
commercially ADV
available ADJ
. PUNCT
  SPACE
In ADP
     SPACE
the DET
summer NOUN
I PRON
put VERB
this DET
on ADP
my PRON
ankles NOUN
every DET
morning NOUN
when ADV
I PRON
get VERB
     SPACE
up ADP
on ADP
weekends NOUN
since SCONJ
I PRON
literally ADV
ca AUX
n't PART
go VERB
outside ADV
where ADV
we PRON
     SPACE
live ADV
( PUNCT
in ADP
the DET
country NOUN
) PUNCT
without ADP
serious ADJ
consequences NOUN
. PUNCT
  SPACE
( PUNCT
They PRON
     SPACE
apparently ADV
do AUX
n't PART
like VERB
sulfur NOUN
much ADV
at ADV
all ADV
. PUNCT
  SPACE
You PRON
can AUX
use VERB
sulfur NOUN
     SPACE
as SCONJ
a DET
dust NOUN
on ADP
your PRON
body NOUN
or CCONJ
clothing NOUN
to PART
repel VERB
them PRON
. PUNCT
) PUNCT
  SPACE
6 NUM
. PUNCT
No DET
amount NOUN
of ADP
prevention NOUN
will AUX
be AUX
* PUNCT
completely ADV
* PUNCT
successful ADJ
. PUNCT
  SPACE
Forget VERB
     SPACE
the DET
fingernail NOUN
polish NOUN
. PUNCT
  SPACE
I PRON
have AUX
finally ADV
settled VERB
upon SCONJ
a DET
treatment NOUN
     SPACE
that PRON
involves VERB
topical ADJ
application NOUN
of ADP
a DET
combination NOUN
of ADP
cortisone NOUN
     SPACE
creme NOUN
( PUNCT
reduces VERB
the DET
inflamation NOUN
and CCONJ
swelling NOUN
) PUNCT
and CCONJ
benzocaine VERB
     SPACE
( PUNCT
relieves VERB
the DET
itch NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
wo AUX
n't PART
tell VERB
you PRON
all DET
the DET
things NOUN
I PRON
've AUX
tried VERB
. PUNCT
     SPACE
Nor CCONJ
will AUX
I PRON
tell VERB
you PRON
some DET
of ADP
the DET
things NOUN
my PRON
wife NOUN
does AUX
since SCONJ
this DET
     SPACE
counts NOUN
as SCONJ
minor ADJ
surgery NOUN
and CCONJ
is AUX
best ADJ
not PART
mentioned VERB
( PUNCT
I PRON
also ADV
think VERB
     SPACE
it PRON
gains VERB
nothing PRON
) PUNCT
. PUNCT
  SPACE
7 NUM
. PUNCT
The DET
swelling VERB
and CCONJ
itching NOUN
can AUX
also ADV
be AUX
significantly ADV
relieved VERB
     SPACE
by ADP
the DET
application NOUN
of ADP
hot ADJ
packs NOUN
, PUNCT
and CCONJ
this DET
seems VERB
to PART
speed VERB
recovery NOUN
     SPACE
as ADV
well ADV
. PUNCT
Doctors NOUN
seem VERB
not PART
to PART
care VERB
much ADJ
about ADP
chiggers NOUN
. PUNCT
  SPACE
The DET
urban ADJ
and CCONJ
suburbandoctors NOUN
apparently ADV
do AUX
n't PART
encounter VERB
them PRON
much ADV
. PUNCT
  SPACE
And CCONJ
the DET
rural ADJ
doctorsseem NOUN
to PART
regard VERB
them PRON
as SCONJ
a DET
force NOUN
of ADP
nature NOUN
that SCONJ
one PRON
must AUX
endure VERB
. PUNCT
  SPACE
Isuspect VERB
that SCONJ
anyone PRON
who PRON
could AUX
come VERB
up ADP
with ADP
a DET
good ADJ
treatment NOUN
for ADP
chiggerswould AUX
make VERB
a DET
* PUNCT
lot NOUN
* PUNCT
of ADP
money.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58113From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Mar27.142431.25188@inmet.camb.inmet.com PROPN
> X
mazur@bluefin.camb.inmet.com NOUN
( PUNCT
Beth PROPN
Mazur PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1ov4toINNh0h@lynx.unm.edu NUM
> X
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
writes:>>On PROPN
the DET
other ADJ
hand NOUN
, PUNCT
we PRON
do AUX
a DET
good ADJ
job NOUN
of ADP
implying VERB
that SCONJ
the DET
person NOUN
who PRON
> X
weighs VERB
400lbs PROPN
is AUX
" PUNCT
overeating VERB
" PUNCT
when ADV
in ADP
fact NOUN
, PUNCT
the DET
body NOUN
probably ADV
doesn't VERB
> X
make VERB
any DET
moral ADJ
judgements NOUN
about ADP
its PRON
composition NOUN
. PUNCT
  SPACE
Conceivably ADV
, PUNCT
the DET
> NOUN
body NOUN
works VERB
just ADV
as SCONJ
hard ADJ
maintaining VERB
its PRON
weight NOUN
at ADP
400 NUM
as SCONJ
someone PRON
else's PROPN
> X
does AUX
at ADP
200.>Undoubtedly NUM
it PRON
does AUX
, PUNCT
to PART
maintain VERB
such ADJ
a DET
weight NOUN
. PUNCT
  SPACE
And CCONJ
it PRON
does AUX
soprimarily ADV
by ADP
overeating VERB
. PUNCT
  SPACE
If SCONJ
it PRON
did AUX
n't PART
, PUNCT
the DET
weight NOUN
would AUX
dropback VERB
to ADP
normal.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58114From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
BlindsightIn PROPN
article NOUN
< X
werner-240393161954@tol7mac15.soe.berkeley.edu PRON
> X
werner@soe.berkeley.edu PROPN
( PUNCT
John PROPN
Werner PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19213@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
> X
Explain PROPN
. PUNCT
  SPACE
I PRON
thought VERB
there PRON
were AUX
3 NUM
types NOUN
of ADP
cones NOUN
, PUNCT
equivalent ADJ
to ADP
RGB.>>You're VERB
basically ADV
right ADJ
, PUNCT
but CCONJ
I PRON
think VERB
there PRON
are AUX
just ADV
2 NUM
types NOUN
. PUNCT
  SPACE
One NUM
is AUX
> X
sensitive ADJ
to ADP
red ADJ
and CCONJ
green ADJ
, PUNCT
and CCONJ
the DET
other ADJ
is AUX
sensitive ADJ
to ADP
blue ADJ
and CCONJ
yellow ADJ
. PUNCT
> X
This DET
is AUX
why ADV
the DET
two NUM
most ADV
common ADJ
kinds NOUN
of ADP
color NOUN
- PUNCT
blindness NOUN
are AUX
red ADJ
- PUNCT
green ADJ
and CCONJ
> X
blue PROPN
- PUNCT
yellow.>Yes PROPN
, PUNCT
I PRON
remember VERB
that DET
now ADV
. PUNCT
  SPACE
Well INTJ
, PUNCT
in ADP
that DET
case NOUN
, PUNCT
the DET
cones NOUN
are AUX
indeedcolor NOUN
sensitive ADJ
, PUNCT
contrary ADJ
to ADP
what PRON
the DET
original ADJ
respondent NOUN
had AUX
claimed.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58115From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
vs. ADP
Migraine PROPN
( PUNCT
was AUX
Re ADP
: PUNCT
Sinus NOUN
Endoscopy)In NOUN
article NOUN
< X
Lauger-240393141539@lauger.mdc.com X
> X
Lauger@ssdgwy.mdc.com PROPN
( PUNCT
John PROPN
Lauger PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19201@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
wrote:>What DET
's AUX
the DET
best ADJ
approach NOUN
to ADP
getting VERB
off ADP
the DET
analgesics NOUN
. PUNCT
  SPACE
Is AUX
there PRON
somethingTwo PROPN
approaches VERB
that SCONJ
I PRON
've AUX
used VERB
: PUNCT
Tofranil NOUN
, PUNCT
50 NUM
mg NOUN
qhs NOUN
, PUNCT
Naproxen PROPN
250 NUM
mg PROPN
bid NOUN
. PUNCT
The DET
Naproxen PROPN
does AUX
n't PART
seem VERB
to PART
be AUX
as ADV
bad ADJ
as SCONJ
things NOUN
like SCONJ
Tylenol PROPN
in ADP
promotingthe PROPN
analgesic ADJ
abuse NOUN
Headache PROPN
. PUNCT
  SPACE
DHE PROPN
IV PROPN
infusions NOUN
for ADP
about ADV
3 NUM
days NOUN
( PUNCT
inhospital ADJ
) PUNCT
. PUNCT
  SPACE
Cold ADJ
turkey PROPN
is AUX
the DET
only ADJ
way NOUN
I PRON
think VERB
. PUNCT
  SPACE
Tapering PROPN
doesn'thelp PUNCT
. PUNCT
I PRON
would AUX
n't PART
know VERB
how ADV
you PRON
can AUX
do AUX
this DET
without ADP
your PRON
doctor NOUN
. PUNCT
  SPACE
I PRON
haven'tseen NUM
anyone PRON
successfully ADV
do AUX
it PRON
alone ADJ
. PUNCT
  SPACE
Does AUX
n't PART
mean VERB
it PRON
ca AUX
n't PART
be AUX
done.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58116From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
vs. ADP
Migraine PROPN
( PUNCT
was AUX
Re ADP
: PUNCT
Sinus NOUN
Endoscopy)In NOUN
article NOUN
< X
1993Mar26.001004.10983@news.eng.convex.com NUM
> X
cash@convex.com X
( PUNCT
Peter PROPN
Cash PROPN
) PUNCT
writes:>>By PROPN
the DET
way NOUN
, PUNCT
does AUX
the DET
brain NOUN
even ADV
have AUX
pain NOUN
receptors NOUN
? PUNCT
I PRON
thought VERB
not PART
-- PUNCT
I PRON
heard VERB
> X
that DET
brain NOUN
surgery NOUN
can AUX
be AUX
performed VERB
while SCONJ
the DET
patient NOUN
is AUX
conscious ADJ
for ADP
> X
precisely ADV
this DET
reason.>No NUM
, PUNCT
no INTJ
, PUNCT
we PRON
are AUX
n't PART
talking VERB
about ADP
receptors NOUN
for ADP
the DET
brain NOUN
's PART
sensory ADJ
innervation NOUN
, PUNCT
but CCONJ
structures NOUN
such ADJ
as SCONJ
the DET
thalamus NOUN
that PRON
handle VERB
painfor ADP
the DET
entire ADJ
organism NOUN
. PUNCT
  SPACE
Apples PROPN
and CCONJ
oranges.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58117From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
1993Mar25.020646.852@news.columbia.edu PROPN
> X
jhl14@cunixa.cc.columbia.edu NOUN
( PUNCT
Jonathan PROPN
H. PROPN
Lin PROPN
) PUNCT
writes:>I PROPN
was AUX
wondering VERB
what PRON
steps NOUN
are AUX
being AUX
taken VERB
to PART
prevent VERB
the DET
spread NOUN
of ADP
> X
multi ADJ
- ADJ
drug ADJ
resistant ADJ
tuberculosis NOUN
. PUNCT
  SPACE
I PRON
've AUX
heard VERB
that SCONJ
some DET
places NOUN
are AUX
> X
thinking VERB
of ADP
incarcerating VERB
those DET
with ADP
the DET
disease NOUN
. PUNCT
  SPACE
Does AUX
n't PART
this DET
violate NOUN
> X
the DET
civil ADJ
rights NOUN
of ADP
these DET
individuals NOUN
? PUNCT
  SPACE
Are AUX
there PRON
any DET
legal ADJ
precedents NOUN
> X
for ADP
such ADJ
action?>Who PROPN
knows VERB
in ADP
this DET
legal ADJ
climate NOUN
, PUNCT
but CCONJ
there PRON
is AUX
tremendous ADJ
legal ADJ
precendentfor NOUN
forcibly ADV
quarantining VERB
TB PROPN
patients NOUN
in ADP
sanitariums NOUN
. PUNCT
  SPACE
100 NUM
yrs PROPN
agoit PROPN
was AUX
done VERB
all DET
the DET
time NOUN
. PUNCT
  SPACE
It PRON
has AUX
been AUX
done VERB
sporadically ADV
all DET
alongin NOUN
patients NOUN
who PRON
wo AUX
n't PART
take VERB
their PRON
medicine NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
TB PROPN
youmay NOUN
find VERB
yourself PRON
under ADP
surveilence NOUN
of ADP
the DET
Public PROPN
Health PROPN
Departmentand PROPN
you PRON
may AUX
find VERB
they PRON
have AUX
the DET
legal ADJ
power NOUN
to PART
insist VERB
you PRON
make VERB
yourclinic ADJ
visits.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58118From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
BlindsightIn PROPN
article NOUN
< X
1993Mar26.185117.21400@cs.rochester.edu NUM
> X
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
33587@castle.ed.ac.uk ADV
> X
hrvoje@castle.ed.ac.uk PROPN
( PUNCT
H PROPN
Hecimovic PROPN
) PUNCT
writes:>compensation PROPN
? PUNCT
  SPACE
Or CCONJ
are AUX
lesions NOUN
localized VERB
to ADP
the DET
SC PROPN
too ADV
rare ADJ
to PART
be AUX
able ADJ
> X
to PART
tell?Extremely ADV
rare ADJ
in ADP
humans NOUN
. PUNCT
  SPACE
Usually ADV
so ADV
much ADJ
else ADV
is AUX
involved VERB
you'djust NUM
have AUX
a DET
mess NOUN
to PART
sort VERB
out ADP
. PUNCT
  SPACE
Birds NOUN
do AUX
all DET
vision NOUN
in ADP
the DET
tectum NOUN
, PUNCT
don't NOUN
they PRON
? PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58119From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Name NOUN
of ADP
MD PROPN
's PART
eyepiece?In PROPN
article NOUN
< X
C4IHM2.Gs9@watson.ibm.com X
> X
clarke@watson.ibm.com PROPN
( PUNCT
Ed PROPN
Clarke PROPN
) PUNCT
writes:>| PUNCT
> X
|It PROPN
's AUX
not PART
an DET
eyepiece NOUN
. PUNCT
  SPACE
It PRON
is AUX
called VERB
a DET
head NOUN
mirror NOUN
. PUNCT
  SPACE
All DET
doctors NOUN
never>>A VERB
speculum?The PROPN
speculum PROPN
is AUX
the DET
little ADJ
cone NOUN
that PRON
fits VERB
on ADP
the DET
end NOUN
of ADP
the DET
otoscope NOUN
. PUNCT
There PRON
are AUX
also ADV
vaginal ADJ
specula NOUN
that PRON
females NOUN
and CCONJ
gynecologists NOUN
areall VERB
too ADV
familiar ADJ
with.-- PROPN
----------------------------------------------------------------------------Gordon PUNCT
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58120From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Patient ADJ
- PUNCT
Physician ADJ
DiplomacyIn PROPN
article NOUN
< X
1993Mar29.130824.16629@aoa.aoa.utc.com X
> X
carl@aoa.aoa.utc.com X
( PUNCT
Carl PROPN
Witthoft PROPN
) PUNCT
writes:>What DET
is AUX
" PUNCT
unacceptable ADJ
" PUNCT
about ADP
this DET
is AUX
that SCONJ
hospitals NOUN
and CCONJ
MDs NOUN
by ADP
law NOUN
> X
have AUX
no DET
choice NOUN
but SCONJ
to PART
treat VERB
you PRON
if SCONJ
you PRON
show VERB
up ADP
sick ADJ
or CCONJ
mangled VERB
from ADP
> X
an DET
accident NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
n't PART
rich ADJ
and CCONJ
have AUX
no DET
insurance NOUN
, PUNCT
who PRON
is AUX
going VERB
> X
to PART
foot VERB
your PRON
bills NOUN
? PUNCT
  SPACE
Do AUX
you PRON
actually ADV
intend VERB
to PART
tell VERB
the DET
ambulance>"No PROPN
, PUNCT
let VERB
me PRON
die VERB
in ADP
the DET
gutter NOUN
because SCONJ
I PRON
ca AUX
n't PART
afford VERB
the DET
treatment"??By PROPN
law NOUN
, PUNCT
they PRON
would AUX
not PART
be AUX
allowed VERB
to PART
do AUX
that DET
anyhow.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58121From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
Exercise NOUN
" PUNCT
HypertensionIn NOUN
article NOUN
< X
93084.140929RFM@psuvm.psu.edu NUM
> X
RFM@psuvm.psu.edu PROPN
writes:>I NUM
took VERB
a DET
stress NOUN
test NOUN
a DET
couple NOUN
weeks NOUN
back ADV
, PUNCT
and CCONJ
results NOUN
came VERB
back ADV
noting>"Exercise PROPN
" PUNCT
Hypertension PROPN
. PUNCT
  SPACE
Fool NOUN
that PRON
I PRON
am AUX
, PUNCT
I PRON
did AUX
n't PART
ask VERB
Doc PROPN
what PRON
this DET
meant,>and PROPN
she PRON
did AUX
n't PART
explain VERB
; PUNCT
and CCONJ
now ADV
I PRON
'm AUX
wondering VERB
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
> X
enlighten VERB
. PUNCT
  SPACE
And CCONJ
I PRON
promise VERB
, PUNCT
next ADJ
time NOUN
I PRON
'll AUX
ask!Probably ADV
she PRON
meant VERB
that SCONJ
your PRON
blood NOUN
pressure NOUN
went VERB
up ADP
while SCONJ
you PRON
were AUX
onthe PROPN
treadmill PROPN
. PUNCT
  SPACE
This DET
is AUX
normal ADJ
. PUNCT
  SPACE
You PRON
'll AUX
have AUX
to PART
ask VERB
her PRON
if SCONJ
this DET
iswhat ADP
she PRON
meant VERB
, PUNCT
since SCONJ
no DET
one NOUN
else ADV
can AUX
answer VERB
for ADP
another DET
person.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58122From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Striato PROPN
Nigral PROPN
DegenerationIn PROPN
article NOUN
< X
9303252134.AA09923@walrus.mvhs.edu NUM
> X
ktodd@walrus.mvhs.edu NOUN
( PUNCT
( PUNCT
Ken PROPN
Todd PROPN
) PUNCT
) PUNCT
writes:>I PROPN
would AUX
like VERB
any DET
information NOUN
available ADJ
on ADP
this DET
rare ADJ
disease NOUN
. PUNCT
  SPACE
I PRON
understand VERB
> X
that SCONJ
an DET
operation NOUN
referred VERB
to ADP
as SCONJ
POLLIDOTOMY PROPN
may AUX
be AUX
in ADP
order NOUN
. PUNCT
  SPACE
Does AUX
anyone PRON
> X
know VERB
of ADP
a DET
physician NOUN
that PRON
performs VERB
this DET
procedure NOUN
. PUNCT
  SPACE
All DET
responses NOUN
will AUX
be AUX
> X
appreciated VERB
. PUNCT
  SPACE
Please INTJ
respond VERB
via ADP
email NOUN
to ADP
ktodd@walrus.mvhs.eduIt PROPN
is AUX
n't PART
that ADV
rare ADJ
, PUNCT
actually ADV
. PUNCT
  SPACE
Many ADJ
cases NOUN
that PRON
are AUX
called VERB
Parkinson'sDisease ADV
turn VERB
out ADP
on ADP
autopsy ADJ
to PART
be AUX
SND PROPN
. PUNCT
  SPACE
It PRON
should AUX
be AUX
suspected VERB
in ADP
anycase NOUN
of ADP
Parkinsonism PROPN
without ADP
tremor NOUN
and CCONJ
which PRON
does AUX
not PART
respond VERB
toL NOUN
- PUNCT
dopa NOUN
therapy NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
pallidotomy NOUN
will AUX
do AUX
much ADJ
for ADP
SND.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58123From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?In PROPN
article NOUN
< X
lindaeC4JGLK.FxM@netcom.com X
> X
lindae@netcom.com X
writes:>>My PRON
biggest ADJ
resentment NOUN
is AUX
the DET
doctor NOUN
who PRON
makes VERB
it PRON
seem VERB
like SCONJ
most ADJ
> X
people NOUN
with ADP
dizziness NOUN
can AUX
be AUX
cured VERB
. PUNCT
  SPACE
That DET
's AUX
definitely ADV
not PART
the DET
> X
case NOUN
. PUNCT
  SPACE
In ADP
most ADJ
cases NOUN
, PUNCT
like SCONJ
I PRON
said VERB
above ADV
, PUNCT
it PRON
is AUX
a DET
long ADJ
, PUNCT
tedious ADJ
> X
process NOUN
that PRON
may AUX
or CCONJ
may AUX
not PART
end VERB
up ADP
in ADP
a DET
partial ADJ
cure NOUN
. PUNCT
  SPACE
> X
Be AUX
sure ADJ
to PART
say VERB
" PUNCT
chronic ADJ
" PUNCT
dizziness NOUN
, PUNCT
not PART
just ADV
dizziness ADJ
. PUNCT
  SPACE
Mostpatients NOUN
with ADP
acute ADJ
or CCONJ
subacute VERB
dizziness NOUN
will AUX
get AUX
better ADJ
. PUNCT
The DET
vertiginous ADJ
spells NOUN
of ADP
Meniere PROPN
's PART
will AUX
also ADV
eventually ADV
goaway ADJ
, PUNCT
however ADV
, PUNCT
the DET
patient NOUN
is AUX
left VERB
with ADP
a DET
deaf ADJ
ear.>To PROPN
anyone PRON
suffering VERB
with ADP
vertigo NOUN
, PUNCT
dizziness NOUN
, PUNCT
or CCONJ
any DET
variation NOUN
> X
thereof ADV
, PUNCT
my PRON
best ADJ
advice NOUN
to ADP
you PRON
( PUNCT
as SCONJ
a DET
fellow NOUN
- PUNCT
sufferer NOUN
) PUNCT
is AUX
this DET
... PUNCT
>just PROPN
keep VERB
searching VERB
... PUNCT
don't NOUN
let VERB
the DET
doctors NOUN
tell VERB
you PRON
there's PUNCT
> X
nothing PRON
that PRON
can AUX
be AUX
done VERB
... PUNCT
do AUX
your PRON
own ADJ
research NOUN
... PUNCT
and CCONJ
let VERB
yourThis PRON
may AUX
have AUX
helped VERB
you PRON
, PUNCT
but CCONJ
I PRON
'm AUX
not PART
sure ADJ
it PRON
is AUX
good ADJ
generaladvice PROPN
. PUNCT
  SPACE
The DET
odds NOUN
that SCONJ
you PRON
are AUX
going VERB
to PART
find VERB
some DET
miracle NOUN
withyour NOUN
own ADJ
research NOUN
that PRON
is AUX
secret ADJ
or CCONJ
hidden VERB
from ADP
general ADJ
knowledgefor CCONJ
this DET
or CCONJ
any DET
other ADJ
disease NOUN
are AUX
slim ADJ
. PUNCT
  SPACE
When ADV
good ADJ
answers NOUN
to ADP
theseproblems NOUN
are AUX
found VERB
, PUNCT
it PRON
is AUX
usually ADV
in ADP
all DET
the DET
newspapers NOUN
. PUNCT
  SPACE
Untilthen PROPN
, PUNCT
spending VERB
a DET
great ADJ
deal NOUN
of ADP
time NOUN
and CCONJ
energy NOUN
on ADP
the DET
medicalproblem NOUN
may AUX
divert VERB
that DET
energy NOUN
from ADP
more ADJ
productive ADJ
thingsin NOUN
life NOUN
. PUNCT
  SPACE
A DET
limited ADJ
amount NOUN
should AUX
be AUX
spent VERB
to PART
assure VERB
yourselfthat DET
your PRON
doctor NOUN
gave VERB
you PRON
the DET
correct ADJ
story NOUN
, PUNCT
but CCONJ
after ADP
it PRON
becomesclear VERB
that SCONJ
you PRON
are AUX
dealing VERB
with ADP
a DET
problem NOUN
for ADP
which PRON
medicinehas VERB
no DET
good ADJ
solution NOUN
, PUNCT
perhaps ADV
the DET
best ADJ
strategy NOUN
is AUX
to ADP
jointhe PROPN
support NOUN
group NOUN
and CCONJ
keep VERB
abreast ADV
of ADP
new ADJ
findings NOUN
but CCONJ
not PART
tomake VERB
a DET
career NOUN
out SCONJ
of ADP
it.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58124From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Donating VERB
organsIn NOUN
article NOUN
< X
1993Mar25.161109.13101@sbcs.sunysb.edu NUM
> X
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>Dr PROPN
. PUNCT
Banks NOUN
, PUNCT
> X
	 SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
you PRON
make VERB
a DET
point NOUN
of ADP
keeping VERB
up ADP
with ADP
liver NOUN
transplant NOUN
> X
research NOUN
but CCONJ
you PRON
're AUX
certainly ADV
in ADP
the DET
right ADJ
place NOUN
for ADP
these DET
questions NOUN
. PUNCT
  SPACE
Has AUX
> X
there PRON
been AUX
anything PRON
recent ADJ
in ADP
" PUNCT
Transplant PROPN
Proceedings NOUN
" PUNCT
or CCONJ
somesuch ADV
, PUNCT
on ADP
> X
xenografts PROPN
? PUNCT
  SPACE
How ADV
about ADP
liver NOUN
section NOUN
transplants NOUN
from ADP
living VERB
donors NOUN
? PUNCT
> X
I PRON
'm AUX
sure ADJ
the DET
Pittsburgh PROPN
group NOUN
has AUX
published VERB
the DET
baboon NOUN
work NOUN
, PUNCT
but CCONJ
Idon't CCONJ
know VERB
where ADV
. PUNCT
  SPACE
In ADP
Chicago PROPN
they PRON
were AUX
doing VERB
lobe NOUN
transplants NOUN
fromliving VERB
donors NOUN
, PUNCT
and CCONJ
I PRON
'm AUX
sure ADJ
they PRON
've AUX
published VERB
. PUNCT
  SPACE
I PRON
do AUX
n't PART
read VERB
thetransplant ADJ
literature NOUN
. PUNCT
  SPACE
I PRON
just ADV
see VERB
the DET
liver NOUN
transplant NOUN
patientswhen NOUN
they PRON
get VERB
into ADP
neurologic ADJ
trouble NOUN
( PUNCT
pretty ADV
frequent ADJ
) PUNCT
, PUNCT
so ADV
thatand ADV
the DET
newspapers NOUN
and CCONJ
scuttlebutt NOUN
is AUX
the DET
way NOUN
I PRON
keep VERB
up ADP
with ADP
whatthey NOUN
are AUX
doing VERB
. PUNCT
  SPACE
Howard PROPN
Doyle PROPN
works VERB
with ADP
them PRON
, PUNCT
and CCONJ
can AUX
tell VERB
you PRON
more.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58125From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Mar24.182145.11004@equator.com NUM
> X
jod@equator.com PROPN
( PUNCT
John PROPN
Setel PROPN
O'Donnell PROPN
) PUNCT
writes:>IMHO NOUN
, PUNCT
you PRON
have AUX
Lyme PROPN
disease NOUN
. PUNCT
> X
I PRON
sent VERB
you PRON
in ADP
private ADJ
email NOUN
a DET
summary NOUN
of ADP
the DET
treatment NOUN
protocols NOUN
put VERB
> X
forth ADV
by ADP
the DET
Lyme PROPN
Disease PROPN
Foundation PROPN
. PUNCT
  SPACE
I PRON
respectfully ADV
suggest VERB
that SCONJ
you PRON
> X
save VERB
yourself PRON
a DET
great ADJ
deal NOUN
of ADP
suffering VERB
by ADP
contacting VERB
them PRON
for ADP
a DET
> X
Lyme NOUN
- PUNCT
knowledgeable ADJ
physician NOUN
referral NOUN
and CCONJ
seek VERB
treatment NOUN
at ADP
once.>You'll X
know VERB
in ADP
2 NUM
weeks NOUN
if SCONJ
you PRON
're AUX
on ADP
the DET
right ADJ
course NOUN
; PUNCT
and CCONJ
the DET
clock NOUN
is AUX
> X
ticking VERB
on ADP
your PRON
6 NUM
weeks NOUN
if SCONJ
you PRON
have AUX
it PRON
. PUNCT
1 NUM
- NUM
800 NUM
- PUNCT
886-LYME.If PROPN
these DET
folks NOUN
are AUX
who PRON
I PRON
think VERB
they PRON
are AUX
, PUNCT
Lyme PROPN
- PUNCT
knowledgeable ADJ
maymean NOUN
a DET
physician NOUN
to ADP
whom PRON
everything PRON
that PRON
walks VERB
in ADP
the DET
door NOUN
islyme PROPN
disease NOUN
, PUNCT
and CCONJ
you PRON
will AUX
be AUX
treated VERB
for ADP
lyme NOUN
, PUNCT
whether SCONJ
or CCONJ
notyou NOUN
have AUX
it PRON
. PUNCT
  SPACE
Hope VERB
you PRON
have AUX
good ADJ
insurance.-- ADP
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58126From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
codine NOUN
in ADP
narcolepsy NOUN
. PUNCT
In ADP
article NOUN
< X
1993Mar26.005148.7899@aio.jsc.nasa.gov NUM
> X
stevel@aio.jsc.nasa.gov NOUN
( PUNCT
Steve PROPN
Lancaster PROPN
) PUNCT
writes:>3 NOUN
) PUNCT
Is AUX
there PRON
any DET
way NOUN
around ADP
the DET
scheduled ADJ
drug NOUN
mess NOUN
so SCONJ
that SCONJ
he PRON
can AUX
use VERB
> X
just ADV
the DET
substance NOUN
that PRON
works VERB
and CCONJ
not PART
one NUM
adulterated VERB
with ADP
Tylenol PROPN
? PUNCT
> X
Can AUX
the DET
MD PROPN
perscribe VERB
a DET
year NOUN
long ADJ
supply NOUN
on ADP
one NUM
script NOUN
? PUNCT
His PRON
doctor NOUN
> X
basically ADV
refused VERB
to PART
prescribe VERB
it PRON
, PUNCT
saying VERB
" PUNCT
His PRON
clinic NOUN
does AUX
not PART
prescribe VERB
> X
controled VERB
substances NOUN
. PUNCT
Its PRON
is AUX
' PUNCT
company NOUN
' PUNCT
rule.!">Short NOUN
of ADP
changes NOUN
by ADP
the DET
feds NOUN
, PUNCT
there PRON
is AUX
no DET
way NOUN
. PUNCT
  SPACE
Codeine PROPN
alone ADV
is AUX
verydifficult NOUN
to PART
prescribe VERB
without ADP
a DET
lot NOUN
of ADP
hassles NOUN
. PUNCT
  SPACE
Tylenol PROPN
# SYM
3 NUM
is AUX
thebest ADJ
compromise NOUN
. PUNCT
  SPACE
That DET
way NOUN
he PRON
can AUX
get AUX
refills NOUN
. PUNCT
  SPACE
The DET
amount NOUN
of ADP
acetominophenhe PROPN
is AUX
getting VERB
with ADP
his PRON
codeine NOUN
wo AUX
n't PART
hurt VERB
him PRON
any.-- NUM
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58127From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Migraines PROPN
and CCONJ
EstrogenIn PROPN
article NOUN
< X
3FB51B6w165w@jupiter.spk.wa.us NUM
> X
pwageman@jupiter.spk.wa.us X
( PUNCT
Peggy PROPN
Wageman PROPN
) PUNCT
writes:>I PRON
read VERB
that SCONJ
hormonal ADJ
fluctuations NOUN
can AUX
contribute VERB
to ADP
migraines NOUN
, PUNCT
could AUX
> X
taking VERB
supplemental ADJ
estrogen PROPN
( PUNCT
ERT PROPN
) PUNCT
cause VERB
migraines NOUN
? PUNCT
  SPACE
Any DET
information NOUN
I PRON
'm AUX
not PART
sure ADJ
it PRON
is AUX
the DET
fluctuation NOUN
so ADV
much ADV
as SCONJ
the DET
estrogen PROPN
level NOUN
. PUNCT
Taking VERB
Premarin PROPN
can AUX
certainly ADV
cause VERB
migraines NOUN
in ADP
some DET
women.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58128From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
migraine NOUN
and CCONJ
exerciseIn NOUN
article NOUN
< X
C4Iozx.7wx@world.std.com PROPN
> X
rsilver@world.std.com NOUN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>I PRON
have AUX
two NUM
questions NOUN
. PUNCT
Is AUX
there PRON
any DET
obvious ADJ
connection NOUN
between ADP
the DET
> X
flushed ADJ
appearance NOUN
and CCONJ
the DET
migraine NOUN
? PUNCT
Was AUX
I PRON
foolish ADJ
to PART
play VERB
through ADP
> X
the DET
migraine NOUN
( PUNCT
aside ADV
from ADP
the DET
visual ADJ
disturbance NOUN
affecting VERB
my PRON
play)?>I NOUN
just ADV
prefer VERB
to PART
ignore VERB
it PRON
when ADV
possible.>The ADJ
flushing NOUN
is AUX
due ADJ
to ADP
vascular ADJ
dilation NOUN
, PUNCT
part NOUN
of ADP
a DET
migraine ADJ
attack NOUN
. PUNCT
Some DET
people NOUN
event VERB
get VERB
puffy NOUN
and CCONJ
swollen ADJ
. PUNCT
  SPACE
As ADV
long ADV
as SCONJ
you PRON
are AUX
carefulyou PROPN
can AUX
see VERB
well ADV
enough ADV
to PART
avoid VERB
getting VERB
hit VERB
in ADP
the DET
face NOUN
or CCONJ
eye NOUN
bythe NOUN
ball NOUN
, PUNCT
migraine NOUN
will AUX
not PART
hurt VERB
your PRON
health.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58129From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
new ADJ
Multiple PROPN
Sclerosis PROPN
drug?In PROPN
article NOUN
< X
12252@news.duke.edu NUM
> X
adm@neuro.duke.edu NOUN
( PUNCT
Alan PROPN
Magid PROPN
) PUNCT
writes:>Disclaimer PROPN
: PUNCT
I PRON
speak VERB
only ADV
for ADP
myself PRON
. PUNCT
So ADV
just ADV
what PRON
was AUX
it PRON
you PRON
wanted VERB
to ADP
say?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58130From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
Info NOUN
on ADP
RSDIn PROPN
article NOUN
< X
1993Mar27.004627.21258@rmtc NUM
. PUNCT
Central ADJ
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
> X
lrd@rmtc NOUN
. PUNCT
Central ADJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
writes:>I NOUN
just ADV
started VERB
working VERB
for ADP
a DET
rehabilitation NOUN
hospital NOUN
and CCONJ
have AUX
seen VERB
RSD PROPN
> X
come VERB
up ADP
as SCONJ
a DET
diagnosis NOUN
several ADJ
times NOUN
. PUNCT
  SPACE
What PRON
exactly ADV
is AUX
RSD PROPN
and CCONJ
what PRON
is AUX
> X
the DET
nature NOUN
of ADP
it PRON
? PUNCT
  SPACE
If SCONJ
there PRON
is AUX
a DET
FAQ PROPN
on ADP
this DET
subject NOUN
, PUNCT
I PRON
'd AUX
really ADV
> X
appreciate VERB
it PRON
if SCONJ
someone PRON
would AUX
mail VERB
it PRON
to ADP
me PRON
. PUNCT
  SPACE
While SCONJ
any DET
and CCONJ
allReflex ADJ
sympathetic ADJ
dystrophy NOUN
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
there PRON
's AUX
an DET
FAQ PROPN
, PUNCT
as SCONJ
I PRON
havemade VERB
at ADP
least ADV
10 NUM
answers NOUN
to ADP
questions NOUN
on ADP
it PRON
in ADP
the DET
last ADJ
year NOUN
or CCONJ
so.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58131From NUM
: PUNCT
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
1993Mar25.085526.914@news.wesleyan.edu NUM
> X
, PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
But CCONJ
I PRON
'll AUX
be AUX
damned VERB
, PUNCT
his PRON
" PUNCT
rights NOUN
" PUNCT
to PART
be AUX
sick ADJ
& CCONJ
to PART
fail VERB
to PART
treat VERB
his PRON
disease NOUN
& CCONJ
to| X
> X
spread VERB
it PRON
all DET
over ADP
the DET
place NOUN
were AUX
, PUNCT
indeed ADV
preserved VERB
. PUNCT
  SPACE
Happy?Several ADJ
years NOUN
ago ADV
I PRON
tried VERB
to PART
commit VERB
a DET
patient NOUN
who PRON
was AUX
growing VERB
Salmonella PROPN
out SCONJ
of ADP
hisstool NOUN
, PUNCT
blood NOUN
, PUNCT
and CCONJ
an DET
open ADJ
ulcer NOUN
for ADP
treatment NOUN
. PUNCT
The DET
idea NOUN
was AUX
that SCONJ
the DET
guy NOUN
was AUX
awalking VERB
public ADJ
health NOUN
risk NOUN
, PUNCT
and CCONJ
that SCONJ
forcing VERB
him PRON
to PART
receive VERB
IV PROPN
antibiotics NOUN
fora NOUN
few ADJ
days NOUN
was AUX
in ADP
the DET
public ADJ
interest NOUN
. PUNCT
I PRON
will AUX
make VERB
a DET
long ADJ
story NOUN
short ADJ
by ADP
sayingthat PRON
the DET
judge NOUN
laughed VERB
at ADP
my PRON
idea NOUN
, PUNCT
yelled VERB
at ADP
me PRON
for ADP
wasting VERB
his PRON
time NOUN
, PUNCT
and CCONJ
letthe DET
guy NOUN
go VERB
. PUNCT
I PRON
found VERB
out ADP
that SCONJ
tuberculosis NOUN
appears VERB
to PART
be AUX
the DET
only ADJ
MEDICAL PROPN
( PUNCT
as SCONJ
oppsed VERB
to ADP
psychiatric)condition VERB
that SCONJ
one NOUN
can AUX
be AUX
committed VERB
for ADP
, PUNCT
and CCONJ
this DET
is AUX
because SCONJ
very ADV
specific ADJ
laws NOUN
wereenacted VERB
many ADJ
years NOUN
ago ADV
regarding VERB
tb INTJ
. PUNCT
I PRON
am AUX
certain ADJ
these DET
vary VERB
from ADP
state NOUN
to ADP
state NOUN
. PUNCT
Any DET
legal ADJ
experts NOUN
out ADV
there ADV
to PART
help VERB
us PRON
on ADP
this?-kmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58132From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
amitriptylineIn X
article NOUN
< X
1993Mar27.010702.8176@julian.uwo.ca NUM
> X
roberts@gaul.csd.uwo.ca VERB
( PUNCT
Eric PROPN
Roberts PROPN
) PUNCT
writes:>Could AUX
someone PRON
please INTJ
tell VERB
me PRON
, PUNCT
what PRON
effect VERB
an DET
overdose ADJ
( PUNCT
900 NUM
- SYM
1000 NUM
mg PROPN
) PUNCT
of ADP
> PROPN
amitriptyline PROPN
would AUX
have?Probably ADV
would AUX
not PART
be AUX
fatal ADJ
in ADP
an DET
adult NOUN
at ADP
that DET
dose NOUN
, PUNCT
but CCONJ
could AUX
killa PROPN
child NOUN
. PUNCT
  SPACE
Patient PROPN
would AUX
be AUX
very ADV
somnolent ADJ
, PUNCT
with ADP
dilated VERB
pupils NOUN
, PUNCT
lowblood NOUN
pressure NOUN
. PUNCT
  SPACE
Possibly ADV
cardiac ADJ
arrhythmias NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58133From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Medication PROPN
For ADP
ParkinsonsIn PROPN
article NOUN
< X
19621.3049.uupcb@factory.com PROPN
> X
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
writes:>If PROPN
you PRON
want VERB
to PART
throw VERB
around ADP
names NOUN
, PUNCT
Drs PROPN
. PUNCT
Donald PROPN
Calne PROPN
, PUNCT
Terry PROPN
Elizan,>and PROPN
Jesse PROPN
Cedarbaum PROPN
do AUX
n't PART
recommend VERB
selegiline NOUN
( PUNCT
not PART
to PART
mention VERB
Dr.>William PROPN
Landau).>Gosh PROPN
, PUNCT
Jesse PROPN
is AUX
that SCONJ
famous ADJ
now ADV
? PUNCT
  SPACE
He PRON
was AUX
my PRON
intern NOUN
. PUNCT
  SPACE
Landau PROPN
not PART
likingit NOUN
makes VERB
me PRON
like SCONJ
it PRON
out SCONJ
of ADP
spite NOUN
. PUNCT
  SPACE
( PUNCT
Just ADV
kidding VERB
, PUNCT
Bill PROPN
) PUNCT
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58134From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Fingernail PROPN
" PUNCT
moons"In NOUN
article NOUN
< X
733196190.AA00076@calcom.socal.com NUM
> X
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince PROPN
) PUNCT
writes:>I NUM
only ADV
have AUX
lunulas NOUN
on ADP
my PRON
thumbs NOUN
. PUNCT
  SPACE
Is AUX
there PRON
any DET
medical ADJ
> X
significance NOUN
to ADP
that DET
finding NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
> X
replies.>Try PROPN
peeling VERB
the DET
skin NOUN
back ADV
at ADP
the DET
base NOUN
of ADP
your PRON
other ADJ
fingernails(not NOUN
too ADV
hard ADV
, PUNCT
now ADV
, PUNCT
do AUX
n't PART
want VERB
to PART
hurt VERB
yourself PRON
) PUNCT
. PUNCT
  SPACE
You PRON
'll AUX
findnice VERB
little ADJ
lunulas NOUN
there ADV
if SCONJ
you PRON
can AUX
peel VERB
it PRON
back ADV
enough ADV
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58135From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
health NOUN
care NOUN
reformIn NOUN
article NOUN
< X
LMC006@wrc.wrgrace.com PROPN
> X
custer@wrc.wrgrace.com PROPN
( PUNCT
Linda PROPN
Custer PROPN
) PUNCT
writes:>>Also PROPN
, PUNCT
I PRON
'm AUX
not PART
sure ADJ
that SCONJ
physician NOUN
fees NOUN
at ADP
the DET
very ADV
, PUNCT
very ADV
highest ADJ
levels NOUN
> X
don't NOUN
have AUX
to PART
come VERB
down ADP
. PUNCT
( PUNCT
I PRON
'm AUX
not PART
talking VERB
about ADP
the DET
bulk NOUN
of ADP
physicians NOUN
> X
making VERB
good ADJ
but CCONJ
not PART
great ADJ
salaries NOUN
who PRON
have AUX
mega NOUN
- NOUN
loans NOUN
from ADP
medical ADJ
school NOUN
> X
debts NOUN
. PUNCT
) PUNCT
I PRON
'd AUX
also ADV
like VERB
to PART
see VERB
some DET
strong ADJ
ethics NOUN
with ADP
teeth NOUN
for ADP
physiciansI PROPN
agree VERB
that SCONJ
some DET
specialties NOUN
have AUX
gotten VERB
way NOUN
out SCONJ
of ADP
line NOUN
. PUNCT
  SPACE
The DET
mainproblem NOUN
is AUX
the DET
payment NOUN
method NOUN
for ADP
procedures NOUN
rather ADV
than SCONJ
time NOUN
distortsthe NOUN
system NOUN
. PUNCT
  SPACE
I PRON
hope VERB
they PRON
will AUX
fix VERB
that DET
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
afraid ADJ
, PUNCT
as SCONJ
usual ADJ
, PUNCT
the DET
local ADJ
doc NOUN
is AUX
going VERB
to PART
take VERB
the DET
brunt NOUN
. PUNCT
  SPACE
People NOUN
grouse VERB
about ADP
paying$50 PROPN
to PART
see VERB
their PRON
home NOUN
doctor NOUN
in ADP
his PRON
office NOUN
, PUNCT
but CCONJ
do AUX
n't PART
mind VERB
paying$20,000 NOUN
to PART
have AUX
brain NOUN
surgery NOUN
. PUNCT
  SPACE
They PRON
think VERB
their PRON
local ADJ
doc NOUN
is AUX
cheatingthem PROPN
but CCONJ
worship VERB
the DET
feet NOUN
of ADP
the DET
neurosurgeon NOUN
who PRON
saved VERB
their PRON
life NOUN
. PUNCT
What PRON
they PRON
do AUX
n't PART
realize VERB
is AUX
that SCONJ
we PRON
need VERB
more ADV
local ADJ
docs NOUN
and CCONJ
fewer-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58136From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
High ADJ
ProlactinIn PROPN
article NOUN
< X
93088.112203JER4@psuvm.psu.edu NUM
> X
JER4@psuvm.psu.edu PROPN
( PUNCT
John PROPN
E. PROPN
Rodway PROPN
) PUNCT
writes:>Any VERB
comments NOUN
on ADP
the DET
use NOUN
of ADP
the DET
drug NOUN
Parlodel PROPN
for ADP
high ADJ
prolactin NOUN
in ADP
the DET
blood?>It NOUN
can AUX
suppress VERB
secretion NOUN
of ADP
prolactin PROPN
. PUNCT
  SPACE
Is AUX
useful ADJ
in ADP
cases NOUN
of ADP
galactorrhea NOUN
. PUNCT
Some DET
adenomas NOUN
of ADP
the DET
pituitary ADJ
secret NOUN
too ADV
much.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58137From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
ToxoplasmosisIn PROPN
article NOUN
< X
1240002@isoit109.BBN.HP.COM PROPN
> X
sude@isoit109.BBN.HP.COM PUNCT
( PUNCT
# SYM
Susanne PROPN
Denninger PROPN
) PUNCT
writes:>>1 PROPN
. PUNCT
How ADV
dangerous ADJ
is AUX
it PRON
? PUNCT
From ADP
whom PRON
is AUX
it PRON
especially ADV
dangerous ADJ
? PUNCT
> X
Dangerous ADJ
only ADV
to ADP
immune VERB
suppressed ADJ
persons NOUN
and CCONJ
fetuses NOUN
. PUNCT
  SPACE
To ADP
them PRON
, PUNCT
it PRON
is AUX
extremely ADV
dangerous ADJ
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
rest NOUN
of ADP
us PRON
have AUX
already ADV
hadit ADJ
and CCONJ
it PRON
is AUX
n't PART
dangerous ADJ
at ADP
all.>2 PROPN
. PUNCT
How ADV
is AUX
it PRON
transmitted VERB
( PUNCT
I PRON
read VERB
about ADP
raw ADJ
meat NOUN
and CCONJ
cats NOUN
, PUNCT
but CCONJ
I PRON
'd AUX
like VERB
to PART
> X
   SPACE
have AUX
more ADJ
details NOUN
) PUNCT
? PUNCT
> X
Cat ADJ
feces NOUN
are AUX
the DET
worst ADJ
. PUNCT
  SPACE
Pregnant ADJ
women NOUN
should AUX
never ADV
touch VERB
the DET
litter NOUN
box.>3 PROPN
. PUNCT
What PRON
can AUX
be AUX
done VERB
to PART
prevent VERB
infection NOUN
? PUNCT
> X
Cook VERB
your PRON
meat NOUN
. PUNCT
  SPACE
Watch VERB
it PRON
with ADP
pets.>4 PROPN
. PUNCT
What PRON
are AUX
the DET
symptoms NOUN
and CCONJ
long ADJ
- PUNCT
term NOUN
effects NOUN
? PUNCT
> X
You PRON
'll AUX
have AUX
to PART
read VERB
up ADP
on ADP
it PRON
. PUNCT
  SPACE
> X
5 NUM
. PUNCT
What PRON
treatments NOUN
are AUX
availble ADJ
? PUNCT
> X
There PRON
is AUX
an DET
effective ADJ
antibiotic NOUN
that PRON
can AUX
keep VERB
it PRON
in ADP
check NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
it PRON
ca AUX
n't PART
reverse VERB
damage NOUN
already ADV
done VERB
, PUNCT
such ADJ
as SCONJ
ina PROPN
fetus.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58138From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Mar30.030105.26772@omen NUM
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>Sometime ADP
in ADP
the DET
future ADJ
diet NOUN
evangelists NOUN
may AUX
get AUX
off ADP
their PRON
" PUNCT
our PRON
> X
diet NOUN
will AUX
work VERB
if SCONJ
only ADV
the DET
obese PROPN
would AUX
obey VERB
it PRON
" PUNCT
mode NOUN
and CCONJ
do AUX
> X
useful ADJ
research NOUN
to PART
allow VERB
prediction NOUN
of ADP
which PRON
types NOUN
of ADP
diet NOUN
might AUX
> X
be AUX
useful ADJ
to ADP
a DET
given VERB
individual.>"Diet PROPN
Evangelist PROPN
" PUNCT
. PUNCT
  SPACE
Good ADJ
term NOUN
. PUNCT
  SPACE
Fits VERB
Atkins PROPN
to ADP
a DET
" PUNCT
T NOUN
" PUNCT
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58139From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Should AUX
patients NOUN
read VERB
package NOUN
inserts NOUN
( PUNCT
PDR)?In PROPN
article NOUN
< X
1993Mar29.113528.930@news.wesleyan.edu PROPN
> X
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg PROPN
) PUNCT
writes:>Hmmmm PROPN
... PUNCT
here ADV
's AUX
one NUM
place NOUN
where ADV
I PRON
really ADV
think VERB
the DET
patient NOUN
ought AUX
to PART
take VERB
more ADJ
> X
responsibility NOUN
for ADP
him- NOUN
or CCONJ
herself PRON
. PUNCT
  SPACE
There PRON
is AUX
absolutely ADV
no DET
reason NOUN
why ADV
you PRON
> VERB
can't NOUN
ask VERB
the DET
pharmacist NOUN
filling VERB
the DET
prescription NOUN
for ADP
the DET
" PUNCT
Physicians PROPN
' PART
Package NOUN
> X
Insert PROPN
" PUNCT
for ADP
the DET
medication NOUN
when ADV
you PRON
pick VERB
it PRON
up ADP
at ADP
the DET
pharmacy NOUN
. PUNCT
  SPACE
Make VERB
sure ADJ
to PART
> X
tell VERB
the DET
pharmacist NOUN
that PRON
you PRON
want VERB
the DET
" PUNCT
Physicians PROPN
' PART
Package PROPN
Insert PROPN
" PUNCT
* PUNCT
NOT ADV
* PUNCT
theIf NUM
people NOUN
are AUX
going VERB
to PART
do AUX
this DET
, PUNCT
I PRON
really ADV
wish VERB
they PRON
would AUX
tell VERB
me PRON
first ADV
. PUNCT
I'd NOUN
be VERB
happy ADJ
to PART
go VERB
over ADP
the DET
insert NOUN
( PUNCT
in ADP
the DET
PDR PROPN
) PUNCT
with ADP
them PRON
and CCONJ
explaineverything VERB
. PUNCT
  SPACE
All ADV
too ADV
many ADJ
patients NOUN
read VERB
the DET
insert NOUN
and CCONJ
panic NOUN
and CCONJ
thenon PROPN
the DET
next ADJ
visit NOUN
sheepishly ADV
admit VERB
they PRON
were AUX
afraid ADJ
to PART
take VERB
the DET
drugand NOUN
we PRON
are AUX
starting VERB
over ADV
again ADV
at ADP
square PROPN
one NUM
. PUNCT
  SPACE
Some DET
of ADP
them PRON
probablydidn't VERB
even ADV
come VERB
back ADV
for ADP
followup NOUN
because SCONJ
they PRON
did AUX
n't PART
want VERB
to PART
admitthey NOUN
would AUX
n't PART
take VERB
the DET
drug NOUN
or CCONJ
thought VERB
I PRON
was AUX
trying VERB
to PART
kill VERB
them PRON
orsomething VERB
. PUNCT
  SPACE
What PRON
people NOUN
do AUX
n't PART
understand VERB
about ADP
the DET
inserts NOUN
is AUX
that DET
theyreport NOUN
every DET
adverse ADJ
side NOUN
effect NOUN
ever ADV
reported VERB
, PUNCT
without ADP
substantiatingthat ADP
the DET
drug NOUN
was AUX
responsible ADJ
. PUNCT
  SPACE
The DET
insert NOUN
is AUX
a DET
legal ADJ
document NOUN
to ADP
sloughliability NOUN
from ADP
the DET
manufacturer NOUN
to ADP
the DET
physician NOUN
if SCONJ
something PRON
was AUX
tohappen PRON
. PUNCT
  SPACE
If SCONJ
patients NOUN
want VERB
to PART
have AUX
the DET
most ADV
useful ADJ
and CCONJ
reliable ADJ
informationon PROPN
a DET
drug NOUN
they PRON
would AUX
be AUX
so ADV
much ADV
better ADJ
off ADP
getting VERB
hold NOUN
of ADP
one NUM
of ADP
theAMA PROPN
drug NOUN
evaluation NOUN
books NOUN
or CCONJ
something PRON
similar ADJ
that PRON
is AUX
much ADV
more ADV
scientific ADJ
. PUNCT
There PRON
are AUX
very ADV
few ADJ
drugs NOUN
that SCONJ
someone PRON
has AUX
n't PART
reported VERB
a DET
death NOUN
from ADP
taking VERB
. PUNCT
Patients NOUN
do AUX
n't PART
realize VERB
that DET
and CCONJ
do AUX
n't PART
usually ADV
appreciate VERB
the DET
risksto NOUN
themselves PRON
properly ADV
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
Herman PROPN
is AUX
going VERB
to PART
" PUNCT
go VERB
ballistic",but ADV
so ADV
be AUX
it PRON
. PUNCT
  SPACE
Another DET
problem NOUN
is AUX
that SCONJ
probably ADV
most ADJ
drugs NOUN
have AUX
beenreported VERB
to PART
cause VERB
impotence NOUN
. PUNCT
  SPACE
Half DET
the DET
males NOUN
who PRON
read VERB
that DET
will AUX
falsely ADV
assumeit VERB
could AUX
permanently ADV
cause VERB
them PRON
to PART
lose VERB
sexual ADJ
function NOUN
and CCONJ
so ADV
willrefuse NOUN
to PART
take VERB
any DET
drug NOUN
like SCONJ
that DET
. PUNCT
  SPACE
This DET
can AUX
be AUX
a DET
real ADJ
problem NOUN
forPDR PROPN
readers NOUN
. PUNCT
  SPACE
There PRON
needs VERB
to PART
be AUX
some DET
way NOUN
of ADP
providing VERB
patients NOUN
withtools NOUN
geared VERB
to ADP
them PRON
that PRON
allow VERB
them PRON
to PART
get AUX
the DET
information NOUN
they PRON
need VERB
. PUNCT
I PRON
am AUX
involved VERB
in ADP
a DET
research NOUN
project NOUN
to PART
do AUX
that DET
, PUNCT
with ADP
migraine NOUN
as SCONJ
thedomain NOUN
. PUNCT
  SPACE
It PRON
involves VERB
a DET
computer NOUN
system NOUN
that PRON
will AUX
provide VERB
answers NOUN
to PART
questionsabout ADV
migraine NOUN
as ADV
well ADV
as SCONJ
the DET
therapy NOUN
prescribed VERB
for ADP
the DET
patient NOUN
. PUNCT
For ADP
common ADJ
illnesses NOUN
, PUNCT
such ADJ
as SCONJ
migraine NOUN
and CCONJ
hypertension NOUN
, PUNCT
this DET
may AUX
helpquite VERB
a DET
bit NOUN
. PUNCT
  SPACE
The DET
patient NOUN
could AUX
spend VERB
as ADV
much ADJ
time NOUN
as SCONJ
needed VERB
with ADP
thecomputer PROPN
and CCONJ
this DET
would AUX
then ADV
not PART
burden VERB
the DET
physician NOUN
. PUNCT
  SPACE
Clearly ADV
, PUNCT
physicians NOUN
in ADP
large ADJ
part NOUN
fail VERB
to PART
answer VERB
all DET
the DET
questions NOUN
patients NOUN
have AUX
, PUNCT
as SCONJ
is AUX
demonstrated VERB
over ADP
and CCONJ
over ADV
here ADV
on ADP
the DET
net NOUN
where ADV
we PRON
get VERB
askedthings NOUN
that SCONJ
the DET
patients NOUN
should AUX
have AUX
found VERB
out ADP
from ADP
their PRON
physicianbut NOUN
did AUX
n't PART
. PUNCT
  SPACE
Why ADV
they PRON
did AUX
n't PART
is AUX
n't PART
always ADV
the DET
physician NOUN
's PART
fault NOUN
either ADV
. PUNCT
Sometimes ADV
the DET
patients NOUN
are AUX
afraid ADJ
to PART
ask VERB
. PUNCT
  SPACE
They PRON
wo AUX
n't PART
be AUX
as ADV
afraid ADJ
toask NOUN
the DET
system NOUN
, PUNCT
we PRON
hope.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58140From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
206@ky3b NUM
. PUNCT
UUCP NOUN
> X
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum PROPN
) PUNCT
writes:>>I NOUN
found VERB
out ADP
that SCONJ
tuberculosis NOUN
appears VERB
to PART
be AUX
the DET
only ADJ
MEDICAL PROPN
( PUNCT
as SCONJ
oppsed VERB
to ADP
psychiatric)>condition NOUN
that SCONJ
one PRON
can AUX
be AUX
committed VERB
for ADP
, PUNCT
and CCONJ
this DET
is AUX
because SCONJ
very ADV
specific ADJ
laws NOUN
were AUX
> X
enacted VERB
many ADJ
years NOUN
ago ADV
regarding VERB
tb INTJ
. PUNCT
I PRON
am AUX
certain ADJ
these DET
vary VERB
from ADP
state NOUN
to ADP
state NOUN
. PUNCT
I PRON
think VERB
in ADP
Illinois PROPN
venereal NOUN
disease NOUN
( PUNCT
the DET
old ADJ
ones NOUN
, PUNCT
not PART
AIDS PROPN
) PUNCT
was AUX
included VERB
. PUNCT
Syphillis PROPN
was AUX
, PUNCT
for ADP
sure.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58141From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
1993Mar29.181406.11915@iscsvax.uni.edu NUM
> X
klier@iscsvax.uni.edu PROPN
writes:>>Multiple ADJ
drug NOUN
resistance NOUN
in ADP
TB PROPN
is AUX
a DET
relatively ADV
new ADJ
phenomenon NOUN
, PUNCT
and CCONJ
> X
one NUM
of ADP
the DET
largest ADJ
contributing VERB
factors NOUN
is AUX
that SCONJ
people NOUN
are AUX
no ADV
longer ADV
> X
as SCONJ
scared ADJ
of ADP
TB PROPN
as SCONJ
they PRON
were AUX
before ADP
antibiotics NOUN
. PUNCT
  SPACE
( PUNCT
It PRON
was AUX
roughly ADV
as SCONJ
> X
feared VERB
as SCONJ
HIV PROPN
is AUX
now ADV
... PUNCT
)>Not PUNCT
that SCONJ
new ADJ
. PUNCT
  SPACE
20 NUM
years NOUN
ago ADV
, PUNCT
we PRON
had AUX
drug NOUN
addicts NOUN
harboring VERB
active ADJ
TBthat PROPN
was AUX
resistant ADJ
to ADP
everything PRON
( PUNCT
in ADP
Chicago PROPN
) PUNCT
. PUNCT
  SPACE
The DET
difference NOUN
nowis NOUN
that SCONJ
such ADJ
strains NOUN
have AUX
become VERB
virulent ADJ
. PUNCT
  SPACE
In ADP
the DET
old ADJ
days NOUN
, PUNCT
suchTB PROPN
was AUX
weak ADJ
. PUNCT
  SPACE
It PRON
did AUX
n't PART
spread VERB
to ADP
other ADJ
people NOUN
very ADV
easily ADV
and CCONJ
justinfected VERB
the DET
one NUM
person NOUN
in ADP
whom PRON
it PRON
developed VERB
( PUNCT
because SCONJ
of ADP
non ADJ
- ADJ
compliancewith ADJ
medications NOUN
) PUNCT
. PUNCT
  SPACE
Non ADJ
- ADJ
compliance NOUN
and CCONJ
development NOUN
of ADP
resistant ADJ
strainshas NOUN
been AUX
a DET
problem NOUN
for ADP
a DET
very ADV
long ADJ
time NOUN
. PUNCT
  SPACE
That DET
is AUX
why ADV
we PRON
have AUX
like INTJ
9drugs NUM
against ADP
TB PROPN
. PUNCT
  SPACE
There PRON
is AUX
always ADV
a DET
need NOUN
to PART
develop VERB
new ADJ
ones NOUN
due ADJ
tosuch ADJ
strains NOUN
. PUNCT
  SPACE
Now ADV
, PUNCT
however ADV
, PUNCT
with ADP
a DET
virulent NOUN
resistant ADJ
strain NOUN
, PUNCT
weare NOUN
in ADP
more ADJ
trouble NOUN
, PUNCT
and CCONJ
measures NOUN
to PART
assure VERB
compliance NOUN
may AUX
be AUX
necessaryeven VERB
if SCONJ
they PRON
entail VERB
force.-- ADP
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58142From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Fungus NOUN
" PUNCT
epidemic NOUN
" PUNCT
in ADP
CA?>In PROPN
article NOUN
steward@cup.portal.com PROPN
( PUNCT
John PROPN
Joseph PROPN
Deltuvia PROPN
) PUNCT
writes:>>>There PUNCT
was AUX
a DET
story NOUN
a DET
few ADJ
weeks NOUN
ago ADV
on ADP
a DET
network NOUN
news NOUN
show NOUN
about ADP
some DET
sort>>of NOUN
fungus NOUN
which PRON
supposedly ADV
attacks VERB
the DET
bone NOUN
structure NOUN
and CCONJ
is AUX
somewhat>>widespread ADJ
in ADP
California PROPN
. PUNCT
  SPACE
Anybody PRON
hear VERB
anything PRON
about ADP
this DET
one?>The NOUN
only ADV
fungus NOUN
I PRON
know VERB
of ADP
from ADP
California PROPN
is AUX
Coccidiomycosis PROPN
. PUNCT
  SPACE
Ihadn't PROPN
heard VERB
that SCONJ
it PRON
attacked VERB
bone NOUN
. PUNCT
  SPACE
It PRON
attacks VERB
lung NOUN
and CCONJ
if SCONJ
youare NOUN
especially ADV
unlucky ADJ
, PUNCT
the DET
central ADJ
nervous ADJ
system NOUN
. PUNCT
  SPACE
Nothing PRON
newabout ADP
it PRON
. PUNCT
  SPACE
It PRON
's AUX
been AUX
around ADV
for ADP
years NOUN
. PUNCT
  SPACE
THey PRON
call VERB
it PRON
" PUNCT
valleyfever PROPN
" PUNCT
, PUNCT
since SCONJ
it PRON
is AUX
found VERB
in ADP
the DET
inland ADJ
valleys NOUN
, PUNCT
not PART
on ADP
the DET
coast.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58143From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Travel VERB
outside ADP
US PROPN
( PUNCT
Bangladesh)In NUM
article NOUN
< X
1p7ciqINN3th@tamsun.tamu.edu NUM
> X
covingc@ee.tamu.edu PROPN
( PUNCT
Just ADV
George PROPN
) PUNCT
writes:>I PROPN
will AUX
be AUX
traveling VERB
to ADP
Bangaldesh PROPN
this DET
summer NOUN
, PUNCT
and CCONJ
am AUX
wondering VERB
> X
if SCONJ
there PRON
are AUX
any DET
immunizations NOUN
I PRON
should AUX
get AUX
before ADP
going.>You NOUN
can AUX
probably ADV
get AUX
this DET
information NOUN
by ADP
calling VERB
your PRON
public ADJ
healthdepartment NOUN
in ADP
your PRON
county NOUN
( PUNCT
in ADP
Pittsburgh PROPN
, PUNCT
they PRON
give VERB
the DET
shots NOUN
free ADJ
, PUNCT
as ADV
well ADV
) PUNCT
. PUNCT
  SPACE
There PRON
are AUX
bulletins NOUN
in ADP
medical ADJ
libraries NOUN
that PRON
giverecommendations NOUN
, PUNCT
or CCONJ
you PRON
could AUX
call VERB
the DET
infectious ADJ
diseases NOUN
sectionof VERB
the DET
medicine PROPN
department PROPN
of ADP
your PRON
local ADJ
medical ADJ
school NOUN
. PUNCT
  SPACE
You PRON
alsowill VERB
probably ADV
want VERB
to PART
talk VERB
about ADP
Malaria PROPN
prophylaxis PROPN
. PUNCT
  SPACE
You PRON
willneed VERB
your PRON
doctor NOUN
to PART
get AUX
the DET
prescription NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58144From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
compartment NOUN
syndrome NOUN
- PUNCT
general ADJ
information NOUN
, PUNCT
references NOUN
, PUNCT
etc X
. PUNCT
In ADP
article NOUN
< X
639@cfdd50.boeing.com NUM
> X
lry1219@cfdd50.boeing.com NOUN
( PUNCT
Larry PROPN
Yeagley PROPN
) PUNCT
writes:>I PRON
have AUX
an DET
acquaintance NOUN
who PRON
has AUX
been AUX
diagnosed VERB
as SCONJ
having VERB
blood NOUN
clots NOUN
and>"compartment NUM
syndrome NOUN
" PUNCT
. PUNCT
I PRON
searched VERB
the DET
latest ADJ
edition NOUN
of ADP
the DET
Columbia PROPN
medical ADJ
> X
encyclopedia PROPN
and CCONJ
found VERB
nothing PRON
. PUNCT
Mosby PROPN
's PART
medical ADJ
dictionary NOUN
gives VERB
a DET
very ADV
brief ADJ
> X
description NOUN
which PRON
suggests VERB
it PRON
's AUX
an DET
arterial ADJ
condition NOUN
. PUNCT
Can AUX
someone PRON
point VERB
me PRON
( PUNCT
anCompartment PROPN
syndrome NOUN
occurs VERB
when ADV
swelling VERB
happens VERB
in ADP
a DET
" PUNCT
compartment"bounded VERB
by ADP
fascia PROPN
. PUNCT
  SPACE
The DET
pressure NOUN
rises VERB
in ADP
the DET
compartment NOUN
and CCONJ
bloodsupply ADJ
and CCONJ
nerves NOUN
are AUX
compromised VERB
. PUNCT
  SPACE
The DET
treatment NOUN
is AUX
to PART
open VERB
thecompartment NOUN
surgically ADV
. PUNCT
  SPACE
THe PROPN
most ADV
common ADJ
places NOUN
for ADP
compartmentsyndromes NOUN
are AUX
the DET
forearm NOUN
and CCONJ
calf NOUN
. PUNCT
  SPACE
It PRON
is AUX
an DET
emergency NOUN
, PUNCT
sinceif PROPN
the DET
pressure NOUN
is AUX
not PART
relieved VERB
, PUNCT
stuff NOUN
will AUX
die.-- NUM
----------------------------------------------------------------------------Gordon NUM
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58145From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
x X
- PUNCT
raysIn NOUN
article NOUN
< X
1993Mar30.195242.8070@leland NUM
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
> PROPN
iceskate@leland PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Lin PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
	 SPACE
First ADJ
question NOUN
- PUNCT
how ADV
bad ADJ
is AUX
x NOUN
- PUNCT
ray PROPN
? PUNCT
  SPACE
i PRON
've AUX
heard VERB
that SCONJ
it PRON
's AUX
nothing PRON
> X
compared VERB
to ADP
the DET
amount NOUN
of ADP
time NOUN
spent VERB
under ADP
the DET
sun NOUN
and CCONJ
i PRON
've AUX
also ADV
heard VERB
that SCONJ
it PRON
> X
is AUX
very ADV
harmful ADJ
. PUNCT
  SPACE
second ADJ
question NOUN
- PUNCT
is AUX
there PRON
anyway ADV
out SCONJ
of ADP
this DET
yearly ADJ
test NOUN
for ADP
> X
me?The NUM
yearly PROPN
chest PROPN
x NOUN
- PUNCT
ray PROPN
provides VERB
a DET
minute NOUN
amount NOUN
of ADP
radiation NOUN
. PUNCT
  SPACE
It PRON
isa VERB
drop NOUN
in ADP
the DET
bucket NOUN
as ADV
far ADV
as SCONJ
increased VERB
risk NOUN
is AUX
concerned VERB
. PUNCT
  SPACE
Who PRON
cantell VERB
you PRON
whether SCONJ
you PRON
can AUX
get AUX
out SCONJ
of ADP
it PRON
or CCONJ
not PART
? PUNCT
  SPACE
No DET
one NOUN
here ADV
controlsthat ADV
. PUNCT
  SPACE
It PRON
may AUX
well ADV
be AUX
a DET
matter NOUN
of ADP
the DET
law NOUN
, PUNCT
in ADP
which PRON
case NOUN
, PUNCT
write VERB
yourlegislator NOUN
, PUNCT
but CCONJ
do AUX
n't PART
hold VERB
your PRON
breath.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58146From NUM
: PUNCT
wright@duca.hi.com PROPN
( PUNCT
David PROPN
Wright)Subject NUM
: PUNCT
Re ADP
: PUNCT
Name NOUN
of ADP
MD PROPN
's PART
eyepiece?In PROPN
article NOUN
< X
19387@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
C4IHM2.Gs9@watson.ibm.com X
> X
clarke@watson.ibm.com PROPN
( PUNCT
Ed PROPN
Clarke PROPN
) PUNCT
writes:>>| PROPN
> X
|It PROPN
's AUX
not PART
an DET
eyepiece NOUN
. PUNCT
  SPACE
It PRON
is AUX
called VERB
a DET
head NOUN
mirror NOUN
. PUNCT
  SPACE
All DET
doctors NOUN
never>>>>A PROPN
speculum?>>The PROPN
speculum PROPN
is AUX
the DET
little ADJ
cone NOUN
that PRON
fits VERB
on ADP
the DET
end NOUN
of ADP
the DET
otoscope.>There NOUN
are AUX
also ADV
vaginal ADJ
specula NOUN
that PRON
females NOUN
and CCONJ
gynecologists NOUN
are AUX
> X
all ADV
too ADV
familiar ADJ
with ADP
. PUNCT
In ADP
fairness NOUN
, PUNCT
we PRON
should AUX
note VERB
that SCONJ
if SCONJ
you PRON
look VERB
up ADP
" PUNCT
speculum PROPN
" PUNCT
in ADP
thedictionary NOUN
( PUNCT
which PRON
I PRON
did AUX
when ADV
this DET
question NOUN
first ADV
surfaced VERB
) PUNCT
, PUNCT
the DET
firstdefinition NOUN
is AUX
" PUNCT
a DET
mirror NOUN
or CCONJ
polished VERB
metal NOUN
plate NOUN
used VERB
as SCONJ
a DET
reflector NOUN
inoptical ADJ
instruments NOUN
. PUNCT
"Which PROPN
does AUX
n't PART
mean VERB
the DET
name NOUN
fits VERB
in ADP
this DET
context NOUN
, PUNCT
but CCONJ
it PRON
's AUX
not PART
as SCONJ
faroff NOUN
as SCONJ
you PRON
might AUX
think VERB
. PUNCT
  SPACE
-- PUNCT
David PROPN
Wright PROPN
, PUNCT
Hitachi PROPN
Computer PROPN
Products PROPN
( PUNCT
America PROPN
) PUNCT
, PUNCT
Inc. PROPN
  SPACE
Waltham PROPN
, PUNCT
MA PROPN
     SPACE
wright@hicomb.hi.com PROPN
  SPACE
: PUNCT
: PUNCT
  SPACE
These DET
are AUX
my PRON
opinions NOUN
, PUNCT
not PART
necessarily ADV
      SPACE
Hitachi PROPN
's PART
, PUNCT
though SCONJ
they PRON
are AUX
the DET
opinions NOUN
of ADP
all DET
right ADJ
- PUNCT
thinking VERB
peopleNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58147From NUM
: PUNCT
ritley@uimrl7.mrl.uiuc.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
MYSTERY NOUN
ILLNESS PROPN
WITH ADP
SPOTSI PROPN
attended VERB
high ADJ
school NOUN
in ADP
the DET
San PROPN
Jose PROPN
, PUNCT
California PROPN
area NOUN
in ADP
the DET
early ADJ
1980's NOUN
, PUNCT
and CCONJ
I PRON
remember VERB
a DET
( PUNCT
smallish NOUN
) PUNCT
outbreak NOUN
of ADP
a DET
strange ADJ
illness NOUN
, PUNCT
in ADP
whichpeople ADJ
developed VERB
measles NOUN
- PUNCT
like ADJ
spots NOUN
on ADP
their PRON
bodies NOUN
. PUNCT
  SPACE
This DET
conditionseemed VERB
to PART
last VERB
only ADV
a DET
few ADJ
days NOUN
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
recall VERB
anyone PRON
reporting VERB
any DET
othersymptoms NOUN
. PUNCT
  SPACE
I PRON
seem VERB
to PART
recall VERB
reading VERB
somewhere ADV
that SCONJ
this DET
was AUX
believed VERB
to ADP
havebeen PROPN
viral NOUN
in ADP
nature NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
for ADP
sure ADJ
. PUNCT
However ADV
, PUNCT
I PRON
have AUX
been AUX
curious ADJ
since SCONJ
then ADV
about ADP
this DET
. PUNCT
Anyone PRON
have AUX
any DET
ideas NOUN
about ADP
what PRON
this DET
might AUX
have AUX
been?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58148From NUM
: PUNCT
walkup@cs.washington.edu PROPN
( PUNCT
Elizabeth PROPN
Walkup)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Menangitis PROPN
questionIn PROPN
article NOUN
< X
19439@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
... PUNCT
the DET
neiseria PROPN
meningococcus NOUN
is AUX
one NUM
of ADP
the DET
most ADV
common ADJ
> X
forms NOUN
of ADP
meningitis PROPN
. PUNCT
  SPACE
It PRON
's AUX
the DET
one NOUN
that PRON
sometimes ADV
sweeps VERB
> X
schools NOUN
or CCONJ
boot PROPN
camp NOUN
. PUNCT
  SPACE
It PRON
is AUX
contagious ADJ
and CCONJ
kills VERB
by ADP
attacking VERB
> X
the DET
covering NOUN
of ADP
the DET
brain NOUN
, PUNCT
causing VERB
the DET
blood NOUN
vessels NOUN
to PART
thrombose VERB
> X
and CCONJ
the DET
brain NOUN
to PART
swell VERB
up ADP
. PUNCT
> X
> X
	 SPACE
... PUNCT
> X
> X
It PRON
can AUX
live VERB
in ADP
the DET
throat NOUN
of ADP
carriers NOUN
. PUNCT
  SPACE
Do AUX
n't PART
worry VERB
, PUNCT
you PRON
wo AUX
n't PART
get AUX
> X
it PRON
from ADP
them PRON
, PUNCT
especially ADV
if SCONJ
they PRON
took VERB
the DET
medication NOUN
. PUNCT
Assuming VERB
one NUM
has AUX
been AUX
cultured ADJ
as SCONJ
having VERB
a DET
throat NOUN
laden ADJ
withneiseria PROPN
meningococcus PROPN
and CCONJ
given VERB
( PUNCT
and CCONJ
taken VERB
) PUNCT
a DET
course NOUN
of ADP
ERYC PROPN
without ADP
the DET
culture NOUN
becoming VERB
negative ADJ
, PUNCT
should AUX
one NUM
worry VERB
aboutbeing VERB
a DET
carrier NOUN
? PUNCT
  SPACE
-- PUNCT
Elizabeth PROPN
   SPACE
walkup@cs.washington.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58149From NUM
: PUNCT
ns14@crux3.cit.cornell.edu PROPN
( PUNCT
Nathan PROPN
Otto PROPN
Siemers)Subject NUM
: PUNCT
Re ADP
: PUNCT
Analgesics PROPN
with ADP
Diuretics PROPN
> X
> X
> X
> X
> X
On ADP
Tue PROPN
, PUNCT
6 NUM
Apr PROPN
1993 NUM
03:28:57 NUM
GMT PROPN
, PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
said VERB
: PUNCT
| PROPN
In ADP
article NOUN
< X
ofk=lve00WB2AvUktO@andrew.cmu.edu NOUN
> X
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu NOUN
> X
writes:|>I PUNCT
sometimes ADV
see VERB
OTC PROPN
preparations NOUN
for ADP
muscle NOUN
aches NOUN
/ SYM
back NOUN
aches NOUN
that|>combine NUM
aspirin NOUN
with ADP
a DET
diuretic NOUN
. PUNCT
| INTJ
You PRON
certainly ADV
do AUX
not PART
see VERB
OTC PROPN
preparations NOUN
advertised VERB
as SCONJ
such ADJ
. PUNCT
| PROPN
The DET
only ADJ
such ADJ
ridiculous ADJ
concoctions NOUN
are AUX
nostrums ADJ
for ADP
premenstrual ADJ
| PROPN
syndrome NOUN
, PUNCT
ostensibly ADV
to PART
treat VERB
headache NOUN
and CCONJ
" PUNCT
bloating VERB
" PUNCT
simultaneously ADV
. PUNCT
| ADV
They PRON
're AUX
worthless.|>The NOUN
idea NOUN
seems VERB
to PART
be AUX
to ADP
reduce|>inflammation NOUN
by ADP
getting VERB
rid VERB
of ADP
fluid NOUN
. PUNCT
Does AUX
this DET
actually ADV
work VERB
? PUNCT
  SPACE
| PROPN
That DET
's AUX
not PART
the DET
idea NOUN
, PUNCT
and CCONJ
no INTJ
, PUNCT
they PRON
do AUX
n't PART
work VERB
. PUNCT
	 SPACE
I PRON
* PUNCT
believe VERB
* PUNCT
there PRON
is AUX
a DET
known ADJ
synergism NOUN
between ADP
certainanalgesics NOUN
and CCONJ
caffiene NOUN
. PUNCT
  SPACE
For ADP
treating VERB
pain NOUN
, PUNCT
not PART
inflammation NOUN
. PUNCT
	 SPACE
Now ADV
that SCONJ
I PRON
am AUX
an DET
ibuprofen NOUN
convert NOUN
I PRON
have AUX
n't PART
taken VERB
it PRON
for ADP
sometime ADV
, PUNCT
but CCONJ
excedrin PROPN
really ADV
works VERB
! PUNCT
( PUNCT
grin)Nathan PROPN
| PROPN
-- PUNCT
  SPACE
| PROPN
Steve PROPN
Dyer PROPN
| PROPN
dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyer-- PROPN
  SPACE
...... PUNCT
: PUNCT
bb|`:|| PROPN
, PUNCT
	 SPACE
nathan@chemres.tn.cornell.edu NUM
    SPACE
... PUNCT
  SPACE
.|| PUNCT
: PUNCT
   SPACE
` PUNCT
||bbbbb ADP
   SPACE
.. PUNCT
   SPACE
, PUNCT
: PUNCT
` PUNCT
     SPACE
.``"P$$$ PUNCT
      SPACE
.|| PROPN
. PROPN
, PUNCT
  SPACE
. PUNCT
  SPACE
` PUNCT
  SPACE
.`P$Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58150From NUM
: PUNCT
eb3@world.std.com X
( PUNCT
Edwin PROPN
Barkdoll)Subject NUM
: PUNCT
Re ADP
: PUNCT
BlindsightIn PROPN
article NOUN
< X
19382@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
werner-240393161954@tol7mac15.soe.berkeley.edu PRON
> X
werner@soe.berkeley.edu PROPN
( PUNCT
John PROPN
Werner PROPN
) PUNCT
writes:>>In X
article NOUN
< X
19213@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
> X
> X
> X
Explain PROPN
. PUNCT
  SPACE
I PRON
thought VERB
there PRON
were AUX
3 NUM
types NOUN
of ADP
cones NOUN
, PUNCT
equivalent ADJ
to ADP
RGB.>>>>You're VERB
basically ADV
right ADV
, PUNCT
but CCONJ
I PRON
think VERB
there PRON
are AUX
just ADV
2 NUM
types NOUN
. PUNCT
  SPACE
One NUM
is>>sensitive NOUN
to ADP
red ADJ
and CCONJ
green ADJ
, PUNCT
and CCONJ
the DET
other ADJ
is AUX
sensitive ADJ
to ADP
blue ADJ
and CCONJ
yellow ADJ
. PUNCT
> X
> X
This DET
is AUX
why ADV
the DET
two NUM
most ADV
common ADJ
kinds NOUN
of ADP
color NOUN
- PUNCT
blindness NOUN
are AUX
red ADJ
- PUNCT
green ADJ
and>>blue PROPN
- PUNCT
yellow.>>>>Yes PROPN
, PUNCT
I PRON
remember VERB
that DET
now ADV
. PUNCT
  SPACE
Well INTJ
, PUNCT
in ADP
that DET
case NOUN
, PUNCT
the DET
cones NOUN
are AUX
indeed ADV
> X
color NOUN
sensitive ADJ
, PUNCT
contrary ADJ
to ADP
what PRON
the DET
original ADJ
respondent NOUN
had AUX
claimed VERB
. PUNCT
	 SPACE
I PRON
'm AUX
not PART
sure ADJ
who PRON
the DET
" PUNCT
original ADJ
respondent NOUN
" PUNCT
was AUX
but CCONJ
toreiterate ADJ
cones NOUN
respond VERB
to ADP
particular ADJ
portions NOUN
of ADP
the DET
spectrum NOUN
, PUNCT
justas PROPN
_ PROPN
rods NOUN
_ AUX
respond VERB
to ADP
certain ADJ
parts NOUN
of ADP
the DET
visible ADJ
spectrum NOUN
( PUNCT
bluegreenin NOUN
our PRON
case NOUN
, PUNCT
reddish NOUN
in ADP
certain ADJ
amphibia PROPN
) PUNCT
, PUNCT
just ADV
as SCONJ
the DET
hoseshoe PROPN
crab_Limulus PROPN
polyphemus NOUN
_ PROPN
photoreceptors NOUN
respond VERB
to ADP
a DET
certain ADJ
portion NOUN
ofthe NOUN
spectrum PROPN
etc X
. PUNCT
  SPACE
It PRON
is AUX
a DET
common ADJ
misconception NOUN
to PART
confound VERB
wavelengthspecificity NOUN
with ADP
being AUX
color NOUN
sensitive ADJ
, PUNCT
however ADV
the DET
two NUM
are AUX
notsynonymous ADJ
. PUNCT
	 SPACE
So ADV
in ADP
sum NOUN
and CCONJ
to PART
beat VERB
a DET
dead ADJ
horse NOUN
: PUNCT
	 SPACE
( PUNCT
1 X
) PUNCT
When ADV
the DET
outputs NOUN
of ADP
a DET
cone NOUN
are AUX
matched VERB
for ADP
number NOUN
ofabsorbed NOUN
photons NOUN
_ VERB
irrespective ADJ
_ NOUN
of ADP
the DET
absorbed VERB
photons NOUN
wavelength PROPN
, PUNCT
the DET
cone NOUN
outputs NOUN
are AUX
_ PROPN
indistinguishable ADJ
_ PROPN
. PUNCT
	 SPACE
( PUNCT
2 X
) PUNCT
Cones NOUN
are AUX
simply ADV
detectors NOUN
with ADP
different ADJ
spectralsensitivities NOUN
and CCONJ
are AUX
not PART
any DET
more ADJ
" PUNCT
color NOUN
sensitive ADJ
" PUNCT
than SCONJ
are AUX
rods NOUN
, PUNCT
ommatidia NOUN
or CCONJ
other ADJ
photoreceptors NOUN
. PUNCT
	 SPACE
( PUNCT
3 X
) PUNCT
Color NOUN
vision NOUN
arises VERB
because SCONJ
outputs NOUN
of ADP
receptors NOUN
whichsample VERB
different ADJ
parts NOUN
of ADP
the DET
spectrum NOUN
( PUNCT
cones NOUN
in ADP
this DET
case NOUN
) PUNCT
are"processed VERB
centrally ADV
" PUNCT
. PUNCT
  SPACE
( PUNCT
The DET
handwave NOUN
is AUX
intentional ADJ
) PUNCT
	 SPACE
I PRON
've AUX
worked VERB
and CCONJ
published VERB
research NOUN
on ADP
rods NOUN
and CCONJ
cones NOUN
for ADP
over10 ADJ
years NOUN
so ADV
the DET
adherence NOUN
to ADP
the DET
belief NOUN
that SCONJ
cones NOUN
can AUX
" PUNCT
detect VERB
color"is PROPN
frustrating ADJ
. PUNCT
  SPACE
But CCONJ
do AUX
n't PART
take VERB
my PRON
word NOUN
for ADP
it PRON
. PUNCT
  SPACE
I PRON
'm AUX
reposting VERB
a DET
fewexcellent NOUN
articles NOUN
together ADV
with ADP
two NUM
rather ADV
good ADJ
but CCONJ
oldish ADJ
colorvision NOUN
texts NOUN
. PUNCT
The DET
texts NOUN
: PUNCT
Robert PROPN
Boynton PROPN
( PUNCT
1979 NUM
) PUNCT
_ VERB
Human PROPN
Color PROPN
Vision PROPN
_ PROPN
Holt PROPN
, PUNCT
Rhiehart PROPN
and CCONJ
WinstonLeo PROPN
M. PROPN
Hurvich PROPN
( PUNCT
1981 NUM
) PUNCT
_ VERB
Color PROPN
Vision PROPN
_ PROPN
, PUNCT
Sinauer PROPN
Associates PROPN
. PUNCT
The DET
original ADJ
articles NOUN
: PUNCT
Baylor PROPN
and CCONJ
Hodgkin PROPN
( PUNCT
1973 NUM
) PUNCT
Detection NOUN
and CCONJ
resolution NOUN
of ADP
visual ADJ
stimuli NOUN
byturtle NOUN
phoreceptors NOUN
, PUNCT
_ PROPN
J. PROPN
Physiol PROPN
. PUNCT
_ DET
234 NUM
pp163 PROPN
- PUNCT
198.Baylor NUM
Lamb PROPN
and CCONJ
Yau PROPN
( PUNCT
1978 NUM
) PUNCT
Reponses NOUN
of ADP
retinal ADJ
rods NOUN
to ADP
single ADJ
photons._J. NOUN
Physiol PROPN
. PUNCT
_ PROPN
288 NUM
pp613 PROPN
- PUNCT
634.Schnapf NUM
et PROPN
al PROPN
. PUNCT
( PUNCT
1990 NUM
) PUNCT
Visual ADJ
transduction NOUN
in ADP
cones NOUN
of ADP
the DET
monkey_Macaca PROPN
fascicularis PROPN
_ PROPN
. PUNCT
J. PROPN
Physiol PROPN
. PUNCT
427 NUM
pp681 PROPN
- PUNCT
713.-- PROPN
Edwin PROPN
Barkdollbarkdoll@lepomis.psych.upenn.edueb3@world.std.com-- PROPN
Edwin PROPN
Barkdolleb3@world.std.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58151From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Donating VERB
organsIn NOUN
article NOUN
< X
19393@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
1993Mar25.161109.13101@sbcs.sunysb.edu NUM
> X
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>>>there VERB
been AUX
anything PRON
recent ADJ
in ADP
" PUNCT
Transplant PROPN
Proceedings NOUN
" PUNCT
or CCONJ
somesuch ADV
, PUNCT
on ADP
> X
> X
xenografts PROPN
? PUNCT
  SPACE
How ADV
about ADP
liver NOUN
section NOUN
transplants NOUN
from ADP
living VERB
donors NOUN
? PUNCT
> X
> X
> X
> X
I PRON
'm AUX
sure ADJ
the DET
Pittsburgh PROPN
group NOUN
has AUX
published VERB
the DET
baboon NOUN
work NOUN
, PUNCT
but CCONJ
I PRON
> X
don't NOUN
know VERB
where ADV
. PUNCT
  SPACE
In ADP
Chicago PROPN
they PRON
were AUX
doing VERB
lobe NOUN
transplants NOUN
from ADP
> X
living VERB
donors NOUN
, PUNCT
and CCONJ
I PRON
'm AUX
sure ADJ
they PRON
've AUX
published VERB
. PUNCT
  SPACE
The DET
case NOUN
report NOUN
of ADP
the DET
first ADJ
xenotransplant NOUN
was AUX
published VERB
in ADP
Lancet PROPN
1993 NUM
; PUNCT
341:65 NUM
- PUNCT
71.I NOUN
can AUX
send VERB
you PRON
a DET
reprint NOUN
if SCONJ
you PRON
are AUX
interested ADJ
. PUNCT
There PRON
was AUX
  SPACE
another DET
paper NOUN
, PUNCT
sort ADV
of ADV
a DET
tour NOUN
of ADP
the DET
horizon NOUN
, PUNCT
written VERB
by ADP
Starzl PROPN
andpublished VERB
in ADP
the DET
Resident PROPN
's PART
Edition PROPN
of ADP
the DET
Annals PROPN
of ADP
Surgery PROPN
( PUNCT
vol PROPN
216 NUM
, PUNCT
October PROPN
1992).It NOUN
's AUX
in ADP
the DET
Surgical PROPN
Resident PROPN
's PART
Newsletter PROPN
section NOUN
, PUNCT
so ADV
you PRON
wo AUX
n't PART
find VERB
it PRON
in ADP
the DET
regularissue NOUN
of ADP
the DET
Annals PROPN
. PUNCT
I PRON
do AUX
n't PART
have AUX
any DET
reprints NOUN
of ADP
that DET
one NUM
. PUNCT
A DET
paper NOUN
has AUX
been AUX
accepted VERB
for ADP
publication NOUN
by ADP
Immunology PROPN
Today PROPN
, PUNCT
though SCONJ
I PRON
'm AUX
not PART
surewhen ADJ
it PRON
's AUX
coming VERB
out ADP
, PUNCT
describing VERB
our PRON
experience NOUN
with ADP
the DET
two NUM
xenografts NOUN
done VERB
to ADP
date NOUN
. PUNCT
As SCONJ
for ADP
segmental ADJ
liver NOUN
transplants NOUN
from ADP
living VERB
related ADJ
donors NOUN
I PRON
must AUX
confess VERB
to ADP
a DET
totalignorance NOUN
of ADP
that DET
literature NOUN
. PUNCT
We PRON
are AUX
philosophically ADV
opposed VERB
to ADP
those DET
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
keep VERB
up ADP
with ADP
that DET
particular ADJ
field.=====================================================Howard NOUN
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58152From NUM
: PUNCT
mcelwre@cnsvax.uwec.eduSubject NOUN
: PUNCT
NATURAL ADJ
ANTI NOUN
- PUNCT
cancer NOUN
/ SYM
AIDS PROPN
Remedies NOUN
     SPACE
The DET
biggest ADJ
reason NOUN
why ADV
the DET
cost NOUN
of ADP
medical ADJ
care NOUN
is AUX
so ADV
EXTREMELY PROPN
high ADJ
andincreasing ADJ
is AUX
that SCONJ
NATURAL ADJ
methods NOUN
of ADP
treatment NOUN
and CCONJ
even ADV
diagnosis NOUN
are AUX
stillbeing VERB
SYSTEMATICALLY NOUN
IGNORED PROPN
and CCONJ
SUPPRESSED VERB
by ADP
the DET
MONEY NOUN
- PUNCT
GRUBBING NOUN
and CCONJ
POWER NOUN
- PUNCT
MONGERING PROPN
" PUNCT
medical ADJ
" PUNCT
establishment NOUN
. PUNCT
     SPACE
Some DET
examples NOUN
of ADP
very ADV
low ADJ
cost NOUN
NATURAL PROPN
ANTI NOUN
- PUNCT
cancer NOUN
Remedies NOUN
are AUX
listed VERB
inthe NOUN
following ADJ
article NOUN
: PUNCT
                          SPACE
NATURAL PROPN
ANTI PROPN
- PUNCT
CANCER NOUN
REMEDIES NOUN
                                 SPACE
A DET
3RD NUM
OPINION NOUN
                         SPACE
( PUNCT
Some DET
of ADP
these DET
Remedies NOUN
also ADV
work VERB
against ADP
AIDS PROPN
. PUNCT
) PUNCT
          SPACE
DISCLAIMER PROPN
: PUNCT
This DET
list NOUN
was AUX
compiled VERB
from ADP
unorthodox PROPN
sources NOUN
           SPACE
that PRON
have AUX
shown VERB
themselves PRON
to PART
be AUX
reliable ADJ
. PUNCT
  SPACE
The DET
compiler NOUN
of ADP
           SPACE
this DET
list NOUN
is AUX
NOT ADV
a DET
doctor NOUN
of ADP
any DET
kind NOUN
, PUNCT
but CCONJ
is AUX
exercising VERB
his PRON
           SPACE
First PROPN
Amendment PROPN
Constitutional PROPN
RIGHT NOUN
of ADP
FREE ADJ
SPEECH NOUN
on ADP
the DET
           SPACE
subjects NOUN
of ADP
his PRON
choice NOUN
. PUNCT
           SPACE
( PUNCT
MOST ADJ
of ADP
these DET
Remedies NOUN
can AUX
be AUX
found VERB
in ADP
ANY DET
Grocery PROPN
Store PROPN
. PUNCT
            SPACE
MOST ADJ
of ADP
the DET
rest NOUN
of ADP
them PRON
can AUX
be AUX
found VERB
in ADP
ANY DET
Health PROPN
Food PROPN
           SPACE
Store PROPN
. PUNCT
  SPACE
What PRON
is AUX
important ADJ
is AUX
HOW ADV
they PRON
are AUX
used VERB
, PUNCT
and CCONJ
what PRON
           SPACE
else ADV
is AUX
EXCLUDED VERB
DURING ADP
their PRON
use NOUN
. PUNCT
) PUNCT
          SPACE
( PUNCT
1 NUM
) PUNCT
THE DET
7-DAY NOUN
FAST PROPN
. PUNCT
                SPACE
1st ADJ
day NOUN
: PUNCT
Eat VERB
as ADV
much ADJ
fresh ADJ
fruit NOUN
as SCONJ
you PRON
want VERB
, PUNCT
one NUM
kind NOUN
           SPACE
at ADP
a DET
time NOUN
, PUNCT
preferably ADV
grapes NOUN
. PUNCT
                SPACE
2nd ADJ
day NOUN
: PUNCT
Eat VERB
all DET
the DET
vegetables NOUN
you PRON
want VERB
, PUNCT
at ADP
least ADV
half DET
           SPACE
raw ADJ
, PUNCT
including VERB
GARLIC PROPN
; PUNCT
also ADV
, PUNCT
whole ADJ
kernel NOUN
corn NOUN
to PART
help VERB
scrape VERB
           SPACE
clean VERB
the DET
intestinal ADJ
linings NOUN
. PUNCT
                SPACE
3rd ADJ
day NOUN
: PUNCT
Drink VERB
all DET
the DET
fresh ADJ
fruit NOUN
and CCONJ
vegetable NOUN
juice NOUN
           SPACE
you PRON
want VERB
. PUNCT
  SPACE
Preferably ADV
start VERB
with ADP
16 NUM
to PART
32 NUM
ounces NOUN
of ADP
prune NOUN
           SPACE
juice NOUN
WITH ADP
PULP NOUN
, PUNCT
followed VERB
by ADP
a DET
gallon NOUN
of ADP
pure ADJ
( PUNCT
NOT ADV
from ADP
           SPACE
concentrate PROPN
) PUNCT
apple NOUN
juice NOUN
, PUNCT
then ADV
grape PROPN
juice PROPN
. PUNCT
  SPACE
( PUNCT
Stay VERB
close ADJ
to PART
           SPACE
your PRON
home NOUN
bathroom NOUN
. PUNCT
) PUNCT
                SPACE
4th ADJ
day NOUN
: PUNCT
Eat VERB
all DET
the DET
UN PROPN
- PUNCT
salted VERB
nuts NOUN
( PUNCT
NO DET
peanuts NOUN
) PUNCT
and CCONJ
           SPACE
dried VERB
fruit NOUN
you PRON
want VERB
, PUNCT
preferably ADV
raisins NOUN
and CCONJ
almonds NOUN
( PUNCT
ALMONDS PROPN
           SPACE
CONTAIN PROPN
LAETRILE PROPN
. PUNCT
) PUNCT
. PUNCT
                SPACE
5th ADJ
day NOUN
: PUNCT
ONE NUM
GALLON PROPN
OF ADP
LEMONADE PROPN
. PUNCT
  SPACE
Squeeze VERB
the DET
juice NOUN
from ADP
           SPACE
two NUM
lemons NOUN
into ADP
a DET
gallon NOUN
of ADP
water NOUN
( PUNCT
preferably ADV
distilled ADJ
) PUNCT
, PUNCT
and CCONJ
           SPACE
add VERB
2 NUM
to PART
4 NUM
tablespoons NOUN
of ADP
locally ADV
- PUNCT
made VERB
honey NOUN
, PUNCT
( PUNCT
NO DET
sugar NOUN
) PUNCT
. PUNCT
            SPACE
Drink VERB
one NUM
glass NOUN
per ADP
hour NOUN
. PUNCT
          SPACE
[ PUNCT
EVERYone NOUN
, PUNCT
including VERB
healthy ADJ
people NOUN
, PUNCT
should AUX
do AUX
this DET
one NUM
day NOUN
           SPACE
every DET
week NOUN
, PUNCT
preceded VERB
by ADP
a DET
large ADJ
glass NOUN
of ADP
prune NOUN
juice NOUN
WITH ADP
           SPACE
PULP PROPN
. PUNCT
] PUNCT
                SPACE
6th ADJ
day NOUN
: PUNCT
Same ADJ
as SCONJ
5th ADJ
day NOUN
. PUNCT
                SPACE
7th ADJ
day NOUN
: PUNCT
Same ADJ
as SCONJ
6th ADJ
day NOUN
. PUNCT
                SPACE
All DET
7 NUM
days NOUN
, PUNCT
eat VERB
ONLY ADV
the DET
foods NOUN
listed VERB
above ADV
for ADP
each DET
           SPACE
day NOUN
, PUNCT
along ADP
with ADP
your PRON
usual ADJ
vitamin NOUN
and CCONJ
mineral NOUN
supplements NOUN
, PUNCT
           SPACE
plus CCONJ
as ADV
much ADJ
DISTILLED ADJ
WATER NOUN
as SCONJ
you PRON
want VERB
. PUNCT
           SPACE
( PUNCT
2 X
) PUNCT
THE DET
GRAPE NOUN
DIET PROPN
. PUNCT
                SPACE
Eat VERB
2 NUM
to ADP
3 NUM
ounces NOUN
of ADP
fresh ADJ
grapes NOUN
every DET
2 NUM
hours NOUN
, PUNCT
8 NUM
AM NOUN
to ADP
           SPACE
8 NUM
PM NOUN
, PUNCT
every DET
day NOUN
for ADP
six NUM
days NOUN
. PUNCT
  SPACE
Eat VERB
NOTHING NOUN
else ADV
during ADP
the DET
           SPACE
six NUM
days NOUN
, PUNCT
but CCONJ
drink VERB
as ADV
much ADJ
DISTILLED ADJ
WATER NOUN
as SCONJ
you PRON
want VERB
. PUNCT
                 SPACE
( PUNCT
3 X
) PUNCT
APPLE PROPN
CIDER NOUN
VINEGAR NOUN
. PUNCT
               SPACE
Mix VERB
a DET
teaspoon NOUN
of ADP
pure ADJ
apple NOUN
cider NOUN
vinegar NOUN
( PUNCT
NOT ADV
apple PROPN
           SPACE
cider NOUN
" PUNCT
flavored VERB
" PUNCT
vinegar NOUN
. PUNCT
  SPACE
Regular ADJ
vinegar NOUN
is AUX
HARMFUL PROPN
. PUNCT
) PUNCT
in ADP
a DET
           SPACE
glass NOUN
of ADP
water NOUN
( PUNCT
preferably ADV
distilled ADJ
) PUNCT
and CCONJ
drink VERB
all DET
of ADP
it PRON
. PUNCT
            SPACE
Do AUX
this DET
3 NUM
or CCONJ
4 NUM
times NOUN
per ADP
day NOUN
, PUNCT
for ADP
3 NUM
weeks NOUN
; PUNCT
then ADV
stop VERB
for ADP
a DET
           SPACE
week NOUN
. PUNCT
  SPACE
Repeat PROPN
if SCONJ
desired VERB
. PUNCT
  SPACE
Do AUX
this DET
along ADP
with ADP
a DET
normal ADJ
           SPACE
healthy ADJ
diet NOUN
of ADP
natural ADJ
foods NOUN
. PUNCT
  SPACE
This DET
remedy NOUN
is AUX
especially ADV
           SPACE
effective ADJ
against ADP
those DET
types NOUN
of ADP
cancer NOUN
that PRON
resemble VERB
a DET
           SPACE
FUNGUS NOUN
, PUNCT
as ADV
well ADV
as SCONJ
against ADP
other ADJ
kinds NOUN
of ADP
fungus NOUN
infections NOUN
. PUNCT
                   SPACE
( PUNCT
4 NUM
) PUNCT
THE DET
SEA PROPN
- PUNCT
SALT PROPN
& CCONJ
SODA PROPN
BATH PROPN
. PUNCT
  SPACE
[ PUNCT
Please INTJ
keep VERB
an DET
OPEN PROPN
MIND PROPN
. PUNCT
] PUNCT
               SPACE
Fill VERB
a DET
bathtub NOUN
with ADP
moderately ADV
warm ADJ
water NOUN
so SCONJ
the DET
level NOUN
           SPACE
comes VERB
up ADP
almost ADV
to ADP
the DET
overflow ADJ
drain NOUN
when ADV
you PRON
get VERB
in ADP
. PUNCT
            SPACE
Immerse VERB
yourself PRON
in ADP
it PRON
for ADP
a DET
minute NOUN
, PUNCT
and CCONJ
then ADV
completely ADV
           SPACE
dissolve NOUN
in ADP
the DET
bath NOUN
water NOUN
1 NUM
pound NOUN
of ADP
SUN PROPN
- PUNCT
evaporated VERB
SEA PROPN
- PUNCT
salt NOUN
           SPACE
( PUNCT
regular ADJ
salt NOUN
wo AUX
n't PART
work VERB
. PUNCT
) PUNCT
and CCONJ
1 NUM
pound NOUN
of ADP
fresh ADJ
baking NOUN
- PUNCT
soda NOUN
. PUNCT
                SPACE
Soak PROPN
in ADP
this DET
bath NOUN
for ADP
10 NUM
to PART
20 NUM
minutes NOUN
, PUNCT
while SCONJ
exercising VERB
           SPACE
your PRON
fingers NOUN
, PUNCT
toes NOUN
, PUNCT
and CCONJ
limbs NOUN
, PUNCT
turning VERB
sideways ADV
and CCONJ
onto ADP
your PRON
           SPACE
stomach NOUN
, PUNCT
dunking VERB
your PRON
head NOUN
, PUNCT
sitting VERB
up ADP
and CCONJ
laying VERB
back ADV
down ADV
, PUNCT
           SPACE
chomping VERB
your PRON
teeth NOUN
together ADV
, PUNCT
etc X
.. PUNCT
                SPACE
Among ADP
other ADJ
things NOUN
, PUNCT
the DET
SEA PROPN
- PUNCT
salt NOUN
& CCONJ
Soda PROPN
Bath PROPN
neutralizes VERB
           SPACE
the DET
accumulated VERB
effects NOUN
of ADP
X NOUN
- NOUN
rays NOUN
, PUNCT
etc X
. X
, PUNCT
as SCONJ
described VERB
in ADP
the DET
           SPACE
book NOUN
" PUNCT
Born VERB
To PART
Be AUX
Magnetic PROPN
, PUNCT
Vol PROPN
. PROPN
2 NUM
" PUNCT
, PUNCT
by ADP
Frances PROPN
Nixon PROPN
, PUNCT
1973 NUM
. PUNCT
                SPACE
PRECAUTIONS PROPN
: PUNCT
Only ADV
the DET
ONE NUM
person NOUN
using VERB
each DET
bath NOUN
should AUX
           SPACE
prepare VERB
it PRON
and CCONJ
drain VERB
it PRON
. PUNCT
          SPACE
For ADP
at ADV
least ADV
30 NUM
minutes NOUN
after ADP
taking VERB
the DET
bath NOUN
, PUNCT
stay VERB
away ADV
           SPACE
from ADP
, PUNCT
and CCONJ
even ADV
out SCONJ
of ADP
sight NOUN
of ADP
, PUNCT
other ADJ
people NOUN
. PUNCT
  SPACE
( PUNCT
Your PRON
greatly ADV
           SPACE
expanded VERB
Aura PROPN
energy NOUN
- PUNCT
field NOUN
during ADP
that DET
time NOUN
could AUX
disrupt VERB
           SPACE
other ADJ
people NOUN
's PART
fields NOUN
. PUNCT
) PUNCT
  SPACE
Two NUM
hours NOUN
after ADP
the DET
bath NOUN
, PUNCT
eat VERB
at ADP
           SPACE
least ADJ
8 NUM
ounces NOUN
of ADP
yogurt NOUN
containing VERB
ACTIVE PROPN
Yogurt PROPN
Cultures PROPN
. PUNCT
            SPACE
( PUNCT
The DET
bath NOUN
may AUX
kill VERB
FRIENDLY ADJ
bacteria NOUN
also ADV
. PUNCT
) PUNCT
  SPACE
Better ADV
yet ADV
, PUNCT
take VERB
           SPACE
a DET
2-Billion NUM
- PUNCT
bacteria NOUN
" PUNCT
Acidophilus ADJ
" PUNCT
capsule NOUN
, PUNCT
which PRON
is AUX
also ADV
an DET
           SPACE
EXCELLENT ADJ
DAILY PROPN
REMEDY NOUN
AGAINST PROPN
THE DET
EFFECTS NOUN
OF ADP
" PUNCT
A.I.D.S. PROPN
" PUNCT
           SPACE
( PUNCT
because SCONJ
it PRON
kills VERB
all DET
kinds NOUN
of ADP
harmful ADJ
bacteria NOUN
in ADP
the DET
           SPACE
digestive ADJ
tract NOUN
, PUNCT
taking VERB
a DET
big ADJ
load NOUN
off ADP
the DET
remaining VERB
immune ADJ
           SPACE
system NOUN
) PUNCT
. PUNCT
  SPACE
[ PUNCT
Because SCONJ
this DET
external ADJ
bath NOUN
can AUX
kill VERB
IN NOUN
- PUNCT
ternal ADJ
           SPACE
bacteria NOUN
, PUNCT
it PRON
may AUX
also ADV
be AUX
a DET
CURE NOUN
for ADP
" PUNCT
Lyme PROPN
disease NOUN
" PUNCT
. PUNCT
] PUNCT
          SPACE
Do AUX
NOT ADV
take VERB
this DET
bath NOUN
within ADP
a DET
few ADJ
hundred NUM
miles NOUN
of ADP
a DET
thunder NOUN
           SPACE
storm NOUN
, PUNCT
within ADP
3 NUM
days NOUN
of ADP
a DET
full ADJ
moon NOUN
, PUNCT
nor CCONJ
during ADP
" PUNCT
Major ADJ
" PUNCT
or CCONJ
           SPACE
" PUNCT
Minor PROPN
Periods NOUN
" PUNCT
as SCONJ
listed VERB
in ADP
the DET
" PUNCT
Solunar PROPN
Tables PROPN
" PUNCT
published VERB
           SPACE
bimonthly ADV
in ADP
" PUNCT
Field PROPN
& CCONJ
Stream PROPN
" PUNCT
Magazine PROPN
, PUNCT
( PUNCT
because SCONJ
of ADP
the DET
           SPACE
measurable ADJ
disruptive ADJ
ambient NOUN
environmental ADJ
energy NOUN
- PUNCT
fields NOUN
           SPACE
present ADJ
at ADP
those DET
times NOUN
) PUNCT
. PUNCT
          SPACE
Do AUX
NOT ADV
take VERB
this DET
bath NOUN
more ADJ
than SCONJ
four NUM
times NOUN
per ADP
year NOUN
. PUNCT
                  SPACE
( PUNCT
5 NUM
) PUNCT
MISCELLANEOUS PROPN
NATURAL PROPN
ANTI NOUN
- PUNCT
CANCER ADJ
REMEDIES NOUN
: PUNCT
                       SPACE
For ADP
skin NOUN
cancer NOUN
, PUNCT
apply VERB
STABILIZED PROPN
Aloe PROPN
Vera PROPN
Jel PROPN
to ADP
the DET
                SPACE
affected ADJ
skin NOUN
twice ADV
daily ADV
, PUNCT
and CCONJ
take VERB
2 NUM
to PART
4 NUM
tablespoons NOUN
                SPACE
per ADP
day NOUN
of ADP
STABILIZED PROPN
Aloe PROPN
Vera PROPN
Juice PROPN
internally ADV
, PUNCT
for ADP
                SPACE
about ADV
2 NUM
months NOUN
. PUNCT
                        SPACE
D.M.S.O. PROPN
( PUNCT
Dimethyl PROPN
Sulfoxide PROPN
) PUNCT
causes VERB
cancer NOUN
cells NOUN
to PART
                SPACE
perform VERB
NORMAL PROPN
cell NOUN
functions NOUN
. PUNCT
                SPACE
ALMONDS PROPN
( PUNCT
UN PROPN
- PUNCT
blanched VERB
, PUNCT
UN PROPN
- PUNCT
roasted VERB
) PUNCT
CONTAIN PROPN
LAETRILE PROPN
. PUNCT
                 SPACE
To PART
help VERB
prevent VERB
cancer NOUN
, PUNCT
eat VERB
several ADJ
almonds NOUN
every DET
day NOUN
. PUNCT
                 SPACE
To PART
help VERB
cure VERB
cancer NOUN
, PUNCT
eat VERB
several ADJ
OUNCES NOUN
of ADP
almonds NOUN
per ADP
                SPACE
day NOUN
. PUNCT
               SPACE
[ PUNCT
NEVER ADV
take VERB
large ADJ
concentrated ADJ
doses NOUN
of ADP
Laetrile PROPN
orally ADV
. PUNCT
                 SPACE
IT PRON
WILL AUX
KILL VERB
YOU PRON
! PUNCT
  SPACE
Take VERB
it PRON
INTRAVENOUSLY PROPN
ONLY ADV
. PUNCT
  SPACE
( PUNCT
Cancer NOUN
                SPACE
cells NOUN
contain VERB
a DET
certain ADJ
enzyme NOUN
which PRON
converts VERB
Laetrile PROPN
                SPACE
into ADP
cyanide NOUN
, PUNCT
which PRON
then ADV
kills VERB
the DET
cell NOUN
. PUNCT
  SPACE
This DET
enzyme NOUN
is AUX
                SPACE
ALSO PROPN
present ADJ
in ADP
the DET
digestive ADJ
system NOUN
. PUNCT
) PUNCT
] PUNCT
                SPACE
ANTI NOUN
- PUNCT
OXIDANTS NOUN
are AUX
FREE ADJ
- PUNCT
RADICAL NOUN
SCAVENGERS NOUN
, PUNCT
and CCONJ
include VERB
                SPACE
Vitamin NOUN
E NOUN
, PUNCT
Selenium PROPN
( PUNCT
200 NUM
mcg NOUN
. PUNCT
per ADP
day NOUN
is AUX
safe ADJ
for ADP
most ADJ
                SPACE
people NOUN
. PUNCT
) PUNCT
, PUNCT
Chromium NOUN
( PUNCT
up ADP
to PART
100 NUM
mcg PROPN
. PUNCT
per ADP
day NOUN
) PUNCT
, PUNCT
Vitamin PROPN
A PROPN
                SPACE
( PUNCT
25,000 NUM
IU ADV
per ADP
day NOUN
is AUX
safe ADJ
for ADP
most ADJ
people NOUN
. PUNCT
) PUNCT
, PUNCT
Superoxide PROPN
                SPACE
Dismutase PROPN
( PUNCT
up ADP
to PART
4,000,000 NUM
Units NOUN
per ADP
day NOUN
) PUNCT
, PUNCT
Vitamin PROPN
C PROPN
( PUNCT
up ADV
                SPACE
to ADP
3000 NUM
mg PROPN
. PROPN
per ADP
day NOUN
) PUNCT
, PUNCT
and CCONJ
BHT PROPN
( PUNCT
Butylated VERB
Hydroxy- PROPN
               SPACE
toluene NOUN
) PUNCT
, PUNCT
[ PUNCT
1 NUM
to ADP
4 NUM
capsules NOUN
of ADP
BHT PROPN
every DET
night NOUN
at ADP
bedtime ADJ
                SPACE
will AUX
also ADV
MAKE VERB
ONE NUM
IMMUNE ADJ
AGAINST PROPN
HERPES NOUN
( PUNCT
BOTH DET
types NOUN
) PUNCT
, PUNCT
                SPACE
suppress ADJ
herpes NOUN
symptoms NOUN
if SCONJ
one NOUN
already ADV
has AUX
herpes NOUN
, PUNCT
                SPACE
prevent NOUN
spreading VERB
herpes NOUN
to ADP
other ADJ
people NOUN
, PUNCT
but CCONJ
will AUX
not PART
                SPACE
cure VERB
herpes NOUN
. PUNCT
  SPACE
BHT PROPN
MIGHT PROPN
ALSO ADV
DO VERB
THESE DET
THINGS NOUN
AGAINST ADJ
                SPACE
" PUNCT
A.I.D.S. PROPN
" PUNCT
, PUNCT
which PRON
is AUX
really ADV
a DET
form NOUN
of ADP
cancer NOUN
similar ADJ
to ADP
                SPACE
leukemia NOUN
. PUNCT
] PUNCT
  SPACE
( PUNCT
See VERB
the DET
book NOUN
" PUNCT
Life PROPN
Extension PROPN
" PUNCT
, PUNCT
by ADP
Durk PROPN
                SPACE
Pearson PROPN
and CCONJ
Sandy PROPN
Shaw PROPN
. PUNCT
) PUNCT
                SPACE
HYDROGEN PROPN
- PUNCT
PEROXIDE PROPN
. PUNCT
  SPACE
Dilute PROPN
twelve(12 PROPN
) PUNCT
drops NOUN
of ADP
3 NUM
% NOUN
                SPACE
hydrogen NOUN
- PUNCT
peroxide NOUN
in ADP
a DET
glass NOUN
of ADP
pure ADJ
water NOUN
( PUNCT
preferably ADV
                SPACE
DISTILLED PROPN
) PUNCT
and CCONJ
drink VERB
it PRON
. PUNCT
  SPACE
Do AUX
this DET
once ADV
or CCONJ
twice ADV
per ADP
day NOUN
, PUNCT
                SPACE
hours NOUN
before ADV
or CCONJ
after ADP
eating VERB
or CCONJ
drinking VERB
anything PRON
else ADV
. PUNCT
                 SPACE
Apply PROPN
3 NUM
% NOUN
hydrogen NOUN
- PUNCT
peroxide NOUN
directly ADV
to PART
skin NOUN
cancers NOUN
                SPACE
several ADJ
times NOUN
per ADP
day NOUN
. PUNCT
               SPACE
Use PROPN
hydrogen NOUN
- PUNCT
peroxide NOUN
ONLY ADV
if SCONJ
you PRON
are AUX
taking VERB
a DET
good ADJ
                SPACE
daily ADJ
dose NOUN
of ADP
some DET
of ADP
the DET
various ADJ
anti NOUN
- NOUN
oxidants NOUN
                SPACE
described VERB
above ADV
. PUNCT
                SPACE
VITAMIN PROPN
& CCONJ
MINERAL PROPN
SUPPLEMENTS NOUN
are AUX
more ADV
effective ADJ
, PUNCT
and CCONJ
                SPACE
much ADV
less ADV
expensive ADJ
, PUNCT
when ADV
COMBINED PROPN
together ADV
in ADP
MEGA PROPN
                SPACE
doses NOUN
into ADP
SINGLE ADJ
tablets NOUN
made VERB
from ADP
NATURAL PROPN
sources NOUN
. PUNCT
                SPACE
Cancer NOUN
cells NOUN
can AUX
NOT ADV
live VERB
in ADP
a DET
strong ADJ
( PUNCT
100,000 NUM
Maxwell PROPN
) PUNCT
                SPACE
NORTH PROPN
MAGNETIC PROPN
FIELD PROPN
, PUNCT
especially ADV
if SCONJ
it PRON
is AUX
pulsating VERB
on ADP
                SPACE
and CCONJ
off ADV
. PUNCT
  SPACE
[ PUNCT
A DET
strong ADJ
south ADJ
magnetic ADJ
field NOUN
is AUX
an DET
                SPACE
aphrodisiac NOUN
. PUNCT
] PUNCT
  SPACE
In ADP
my PRON
opinion NOUN
, PUNCT
ALL DET
types NOUN
of ADP
ionizing- ADJ
               SPACE
radiation NOUN
treatments NOUN
for ADP
cancer NOUN
should AUX
be AUX
REPLACED NOUN
with ADP
                SPACE
daily ADJ
30-minute NUM
doses NOUN
of ADP
pulsating VERB
100,000-Maxwell NUM
NORTH NOUN
                SPACE
magnetic ADJ
fields NOUN
. PUNCT
                SPACE
Properly ADV
made VERB
and CCONJ
operated VERB
RADIONICS PROPN
/ SYM
PSIONICS PROPN
MACHINES NOUN
                SPACE
can AUX
both CCONJ
diagnose VERB
and CCONJ
cure VERB
all DET
forms NOUN
of ADP
cancer NOUN
, PUNCT
as ADV
well ADV
                SPACE
as SCONJ
most ADJ
other ADJ
medical ADJ
problems NOUN
. PUNCT
  SPACE
Some DET
Radionics PROPN
/ SYM
Psionics PROPN
                SPACE
Machines PROPN
can AUX
even ADV
take VERB
cross ADJ
- ADJ
sectional ADJ
X NOUN
- NOUN
ray NOUN
- PUNCT
like ADJ
photos NOUN
                SPACE
of ADP
cancer NOUN
tumors NOUN
, PUNCT
etc X
. X
, PUNCT
with ADP
- PUNCT
OUT ADP
X NOUN
- NOUN
rays NOUN
! PUNCT
                SPACE
INTERFERON PROPN
tablets NOUN
. PUNCT
               SPACE
TAHEEBO PROPN
TEA NOUN
, PUNCT
( PUNCT
Lapacho PROPN
) PUNCT
. PUNCT
                           SPACE
HOMEOPATHY PROPN
can AUX
cure VERB
cancer NOUN
, PUNCT
and CCONJ
many ADJ
other ADJ
medical ADJ
                SPACE
problems NOUN
( PUNCT
even ADV
drug NOUN
addiction NOUN
! PUNCT
) PUNCT
. PUNCT
                SPACE
50 NUM
mg PROPN
. PUNCT
per ADP
day NOUN
of ADP
CHELATED ADJ
ZINC NOUN
can AUX
help VERB
prevent VERB
or CCONJ
cure VERB
                SPACE
prostate NOUN
trouble NOUN
. PUNCT
                SPACE
This DET
list NOUN
is AUX
NOT ADV
exhaustive ADJ
. PUNCT
           SPACE
The DET
above ADJ
NATURAL PROPN
Remedies NOUN
can AUX
CURE VERB
both CCONJ
diagnosed VERB
AND CCONJ
UN- ADJ
          SPACE
DIAGNOSED PROPN
cancers NOUN
, PUNCT
as ADV
well ADV
as SCONJ
PREVENT PROPN
them PRON
, PUNCT
and CCONJ
also ADV
prevent VERB
           SPACE
and CCONJ
cure VERB
many ADJ
other ADJ
medical ADJ
problems NOUN
including VERB
heart- PROPN
          SPACE
diseases NOUN
. PUNCT
  SPACE
They PRON
are AUX
NOT ADV
too ADV
simple ADJ
and CCONJ
inexpensive ADJ
to PART
work VERB
           SPACE
effectively ADV
. PUNCT
           SPACE
Besides SCONJ
acting VERB
on ADP
a DET
person NOUN
biologically ADV
and CCONJ
chemically ADV
, PUNCT
these DET
           SPACE
remedies NOUN
, PUNCT
especially ADV
The DET
7-Day PROPN
Fast PROPN
and CCONJ
The DET
Grape PROPN
Diet PROPN
, PUNCT
send VERB
           SPACE
a DET
strong ADJ
message NOUN
to ADP
one PRON
's PART
subconscious ADJ
mind NOUN
, PUNCT
PROGRAMMING VERB
it PRON
           SPACE
to PART
CURE VERB
the DET
cancer NOUN
. PUNCT
           SPACE
In ADP
my PRON
opinion NOUN
, PUNCT
if SCONJ
a DET
person NOUN
finds VERB
out ADP
that SCONJ
s PROPN
/ PUNCT
he PRON
has AUX
cancer NOUN
, PUNCT
           SPACE
then ADV
s PROPN
/ PUNCT
he PRON
should AUX
promptly ADV
try VERB
at ADP
least ADJ
the DET
first ADJ
4 NUM
remedies NOUN
           SPACE
described VERB
above ADV
, PUNCT
in ADP
sequence NOUN
( PUNCT
starting VERB
with ADP
The DET
7-Day PROPN
Fast PROPN
) PUNCT
, PUNCT
           SPACE
BEFORE ADP
resorting VERB
to ADP
the DET
UN PROPN
- PUNCT
natural ADJ
and CCONJ
expensive ADJ
mutilations NOUN
           SPACE
and CCONJ
agonies NOUN
[ PUNCT
POISON NOUN
, PUNCT
BURN NOUN
, PUNCT
and CCONJ
MUTILATE PROPN
! PUNCT
] PUNCT
of ADP
orthodox ADJ
cancer NOUN
           SPACE
treatment NOUN
[ PUNCT
organi$ed ADJ
- PUNCT
CRIME NOUN
! PUNCT
] PUNCT
. PUNCT
                               SPACE
DISCLAIMER PROPN
: PUNCT
This DET
list NOUN
was AUX
compiled VERB
from ADP
unorthodox PROPN
sources NOUN
           SPACE
that PRON
have AUX
shown VERB
themselves PRON
to PART
be AUX
reliable ADJ
. PUNCT
  SPACE
The DET
compiler NOUN
of ADP
           SPACE
this DET
list NOUN
is AUX
NOT ADV
a DET
doctor NOUN
of ADP
any DET
kind NOUN
, PUNCT
but CCONJ
is AUX
exercising VERB
his PRON
           SPACE
First PROPN
Amendment PROPN
Constitutional PROPN
RIGHT NOUN
of ADP
FREE ADJ
SPEECH NOUN
on ADP
the DET
           SPACE
subjects NOUN
of ADP
his PRON
choice NOUN
. PUNCT
           SPACE
FOR ADP
MORE ADJ
INFORMATION NOUN
, PUNCT
contact NOUN
Cancer PROPN
Control PROPN
Society PROPN
, PUNCT
2043 NUM
N. PROPN
           SPACE
Berendo PROPN
St. PROPN
, PUNCT
Los PROPN
Angeles PROPN
, PUNCT
CA PROPN
  SPACE
90027 NUM
, PUNCT
and/or CCONJ
other ADJ
organiza- ADJ
          SPACE
tions NOUN
listed VERB
in ADP
the DET
" PUNCT
Alternative PROPN
Medicine PROPN
" PUNCT
and CCONJ
" PUNCT
Holistic PROPN
           SPACE
Medicine PROPN
" PUNCT
portions NOUN
of ADP
the DET
" PUNCT
Health PROPN
and CCONJ
Medical PROPN
Organizations PROPN
" PUNCT
           SPACE
Section PROPN
( PUNCT
Section NOUN
8) NUM
of ADP
the DET
latest ADJ
edition NOUN
of ADP
the DET
" PUNCT
Encyclope- PROPN
          SPACE
dia NOUN
of ADP
Associations PROPN
" PUNCT
reference NOUN
book NOUN
in ADP
your PRON
local ADJ
public NOUN
or CCONJ
           SPACE
university PROPN
library NOUN
. PUNCT
                SPACE
UN PROPN
- PUNCT
altered VERB
REPRODUCTION NOUN
and CCONJ
DISSEMINATION NOUN
of ADP
this DET
           SPACE
IMPORTANT PROPN
Information PROPN
is AUX
ENCOURAGED PROPN
. PUNCT
                                              SPACE
Robert PROPN
E. PROPN
McElwaine PROPN
         SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58153From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Fungus NOUN
" PUNCT
epidemic NOUN
" PUNCT
in ADP
CA?In PROPN
article NOUN
< X
19435@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>In X
article NOUN
steward@cup.portal.com PROPN
( PUNCT
John PROPN
Joseph PROPN
Deltuvia PROPN
) PUNCT
writes:>>>>>There PROPN
was AUX
a DET
story NOUN
a DET
few ADJ
weeks NOUN
ago ADV
on ADP
a DET
network NOUN
news NOUN
show NOUN
about ADP
some DET
sort>>>of NOUN
fungus NOUN
which PRON
supposedly ADV
attacks VERB
the DET
bone NOUN
structure NOUN
and CCONJ
is AUX
somewhat>>>widespread PROPN
in ADP
California PROPN
. PUNCT
  SPACE
Anybody PRON
hear VERB
anything PRON
about ADP
this DET
one?>>>>The VERB
only ADV
fungus NOUN
I PRON
know VERB
of ADP
from ADP
California PROPN
is AUX
Coccidiomycosis PROPN
. PUNCT
  SPACE
I PRON
> X
hadn't ADV
heard VERB
that SCONJ
it PRON
attacked VERB
bone NOUN
. PUNCT
  SPACE
It PRON
attacks VERB
lung NOUN
and CCONJ
if SCONJ
you PRON
> X
are AUX
especially ADV
unlucky ADJ
, PUNCT
the DET
central ADJ
nervous ADJ
system NOUN
. PUNCT
  SPACE
Nothing PRON
new ADJ
> X
about ADP
it PRON
. PUNCT
  SPACE
It PRON
's AUX
been AUX
around ADV
for ADP
years NOUN
. PUNCT
  SPACE
THey PRON
call VERB
it PRON
" PUNCT
valley PROPN
> X
fever PROPN
" PUNCT
, PUNCT
since SCONJ
it PRON
is AUX
found VERB
in ADP
the DET
inland ADJ
valleys NOUN
, PUNCT
not PART
on ADP
the DET
coast NOUN
. PUNCT
There PRON
is AUX
a DET
mini ADJ
- NOUN
epidemic NOUN
of ADP
Coccidiodes PROPN
that PRON
is AUX
occurring VERB
in ADP
, PUNCT
I PRON
believe VERB
, PUNCT
the DET
Owen PROPN
's PART
Valley/ PROPN
Bishop PROPN
area NOUN
east ADV
of ADP
the DET
Sierras PROPN
. PUNCT
I PRON
do AUX
n't PART
believe VERB
there PRON
has AUX
been AUX
any DET
great ADJ
insight NOUN
into ADP
theincreased VERB
incidence NOUN
in ADP
that DET
area NOUN
. PUNCT
There PRON
is AUX
a DET
low ADJ
- PUNCT
levelof NOUN
endemic ADJ
infection NOUN
in ADP
that DET
region NOUN
. PUNCT
Many ADJ
people NOUN
withevidence NOUN
of ADP
past ADJ
exposure NOUN
to ADP
the DET
organism NOUN
did AUX
not PART
haveserious VERB
disease NOUN
. PUNCT
Brian PROPN
> X
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58154From NUM
: PUNCT
bshelley@ucs.indiana.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Xanax PROPN
... PUNCT
please INTJ
provide VERB
infoI PROPN
am AUX
currently ADV
doing VERB
a DET
group NOUN
research NOUN
project NOUN
on ADP
the DET
drug NOUN
Xanax PROPN
. PUNCT
  SPACE
I PRON
wouldbe VERB
exponentially ADV
gracious ADJ
to PART
receive VERB
any DET
and CCONJ
all DET
information NOUN
you PRON
couldprovideme VERB
regarding VERB
its PRON
usage NOUN
, PUNCT
history NOUN
, PUNCT
mechanism NOUN
of ADP
reaction NOUN
, PUNCT
side NOUN
effects NOUN
, PUNCT
andother PROPN
pertinent PROPN
information NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
care VERB
how ADV
long ADV
or CCONJ
how ADV
short ADJ
your PRON
response NOUN
is AUX
. PUNCT
Thanks NOUN
in ADP
advance!Brent PROPN
E. PROPN
ShelleyNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58155From NUM
: PUNCT
lindae@netcom.comSubject X
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?In PROPN
article NOUN
< X
19392@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
lindaeC4JGLK.FxM@netcom.com X
> X
lindae@netcom.com X
writes:>>>>>My PROPN
biggest ADJ
resentment NOUN
is AUX
the DET
doctor NOUN
who PRON
makes VERB
it PRON
seem VERB
like SCONJ
most>>people NOUN
with ADP
dizziness NOUN
can AUX
be AUX
cured VERB
. PUNCT
  SPACE
That DET
's AUX
definitely ADV
not PART
the>>case NOUN
. PUNCT
  SPACE
In ADP
most ADJ
cases NOUN
, PUNCT
like SCONJ
I PRON
said VERB
above ADV
, PUNCT
it PRON
is AUX
a DET
long ADJ
, PUNCT
tedious>>process NOUN
that PRON
may AUX
or CCONJ
may AUX
not PART
end VERB
up ADP
in ADP
a DET
partial ADJ
cure NOUN
. PUNCT
  SPACE
> X
> X
> X
> X
Be AUX
sure ADJ
to PART
say VERB
" PUNCT
chronic ADJ
" PUNCT
dizziness NOUN
, PUNCT
not PART
just ADV
dizziness ADJ
. PUNCT
  SPACE
Most ADJ
> X
patients NOUN
with ADP
acute ADJ
or CCONJ
subacute VERB
dizziness NOUN
will AUX
get AUX
better.>The DET
vertiginous ADJ
spells NOUN
of ADP
Meniere PROPN
's PART
will AUX
also ADV
eventually ADV
go VERB
> X
away ADV
, PUNCT
however ADV
, PUNCT
the DET
patient NOUN
is AUX
left VERB
with ADP
a DET
deaf ADJ
ear NOUN
. PUNCT
All DET
true ADJ
. PUNCT
  SPACE
And CCONJ
all DET
good ADJ
points.>>>To NOUN
anyone PRON
suffering VERB
with ADP
vertigo NOUN
, PUNCT
dizziness NOUN
, PUNCT
or CCONJ
any DET
variation>>thereof NOUN
, PUNCT
my PRON
best ADJ
advice NOUN
to ADP
you PRON
( PUNCT
as SCONJ
a DET
fellow NOUN
- PUNCT
sufferer NOUN
) PUNCT
is AUX
this DET
... PUNCT
>>just PUNCT
keep VERB
searching VERB
... PUNCT
don't NOUN
let VERB
the DET
doctors NOUN
tell VERB
you PRON
there's>>nothing VERB
that DET
can AUX
be AUX
done VERB
... PUNCT
do AUX
your PRON
own ADJ
research NOUN
... PUNCT
and CCONJ
let VERB
your>>This PRON
may AUX
have AUX
helped VERB
you PRON
, PUNCT
but CCONJ
I PRON
'm AUX
not PART
sure ADJ
it PRON
is AUX
good ADJ
general ADJ
> PROPN
advice NOUN
. PUNCT
  SPACE
The DET
odds NOUN
that SCONJ
you PRON
are AUX
going VERB
to PART
find VERB
some DET
miracle NOUN
with ADP
> X
your PRON
own ADJ
research NOUN
that PRON
is AUX
secret ADJ
or CCONJ
hidden VERB
from ADP
general ADJ
knowledge NOUN
> X
for ADP
this DET
or CCONJ
any DET
other ADJ
disease NOUN
are AUX
slim ADJ
. PUNCT
  SPACE
When ADV
good ADJ
answers NOUN
to ADP
these DET
> X
then ADV
, PUNCT
spending VERB
a DET
great ADJ
deal NOUN
of ADP
time NOUN
and CCONJ
energy NOUN
on ADP
the DET
medical ADJ
> NOUN
problem NOUN
may AUX
divert VERB
that DET
energy NOUN
from ADP
more ADJ
productive ADJ
things NOUN
> X
in ADP
life NOUN
. PUNCT
  SPACE
A DET
limited ADJ
amount NOUN
should AUX
be AUX
spent VERB
to PART
assure VERB
yourself PRON
> X
that SCONJ
your PRON
doctor NOUN
gave VERB
you PRON
the DET
correct ADJ
story NOUN
, PUNCT
but CCONJ
after ADP
it PRON
becomes VERB
> X
clear ADJ
that SCONJ
you PRON
are AUX
dealing VERB
with ADP
a DET
problem NOUN
for ADP
which PRON
medicine NOUN
> X
has AUX
no DET
good ADJ
solution NOUN
, PUNCT
perhaps ADV
the DET
best ADJ
strategy NOUN
is AUX
to PART
join VERB
> X
the DET
support NOUN
group NOUN
and CCONJ
keep VERB
abreast ADV
of ADP
new ADJ
findings NOUN
but CCONJ
not PART
to PART
> X
make VERB
a DET
career NOUN
out SCONJ
of ADP
it PRON
. PUNCT
Well INTJ
, PUNCT
making VERB
a DET
career NOUN
out SCONJ
of ADP
it PRON
is AUX
a DET
bit NOUN
strong ADJ
. PUNCT
  SPACE
I PRON
still ADV
believethat ADP
doing VERB
your PRON
own ADJ
research NOUN
is AUX
very ADV
, PUNCT
very ADV
necessary ADJ
. PUNCT
  SPACE
I PRON
wouldnot ADV
have AUX
progressed VERB
as ADV
much ADV
as SCONJ
I PRON
have AUX
today NOUN
, PUNCT
unless SCONJ
I PRON
had AUX
spentthe NOUN
many ADJ
hours NOUN
in ADP
Stanford PROPN
's PART
Med PROPN
Library PROPN
as SCONJ
I PRON
have AUX
done VERB
. PUNCT
And CCONJ
5 NUM
years NOUN
ago ADV
, PUNCT
it PRON
was AUX
clear ADJ
that SCONJ
there PRON
was AUX
no DET
medicine NOUN
that PRON
would AUX
help VERB
me PRON
. PUNCT
  SPACE
So ADV
should AUX
I PRON
have AUX
stopped VERB
searching VERB
. PUNCT
  SPACE
Thankgoodness PROPN
I PRON
did AUX
n't PART
. PUNCT
  SPACE
Now ADV
I PRON
found VERB
that SCONJ
there PRON
is AUX
indeed ADV
medicinethat NOUN
helps VERB
me PRON
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
what PRON
you PRON
've AUX
said VERB
is AUX
kind ADV
of ADV
idealistic ADJ
. PUNCT
  SPACE
That DET
youwould AUX
go VERB
to ADP
one NUM
doctor NOUN
, PUNCT
get AUX
a DET
diagnosis NOUN
, PUNCT
maybe ADV
get AUX
a DET
secondopinion NOUN
, PUNCT
and CCONJ
then ADV
move VERB
on ADP
with ADP
your PRON
life NOUN
. PUNCT
Just ADV
as SCONJ
an DET
example NOUN
... PUNCT
having VERB
seen VERB
6 NUM
of ADP
the DET
top ADJ
specialists NOUN
in ADP
this DET
field NOUN
in ADP
the DET
country NOUN
, PUNCT
I PRON
have AUX
received VERB
6 NUM
different ADJ
diagnoses NOUN
. PUNCT
These DET
are AUX
the DET
top ADJ
names NOUN
, PUNCT
the DET
ones NOUN
that PRON
people NOUN
come VERB
to ADP
from ADP
all DET
overthe NOUN
country NOUN
. PUNCT
  SPACE
I PRON
have AUX
HAD VERB
to PART
sort VERB
all DET
of ADP
this DET
out ADP
myself PRON
. PUNCT
  SPACE
Goingto PROPN
a DET
support NOUN
group NOUN
( PUNCT
and CCONJ
in ADP
fact NOUN
, PUNCT
HEADING VERB
that SCONJ
support NOUN
group NOUN
) PUNCT
was AUX
helpful ADJ
for ADP
a DET
while NOUN
, PUNCT
but CCONJ
after ADP
a DET
point NOUN
, PUNCT
I PRON
found VERB
it PRON
veryunproductive ADJ
. PUNCT
  SPACE
It PRON
was AUX
much ADV
more ADV
productive ADJ
to PART
do AUX
library NOUN
research NOUN
, PUNCT
make VERB
phone NOUN
calls NOUN
and CCONJ
put VERB
together ADP
the DET
pieces NOUN
of ADP
the DET
puzzle NOUN
myself PRON
. PUNCT
A DET
recent ADJ
movie NOUN
, PUNCT
Lorenzo PROPN
's PART
Oil PROPN
, PUNCT
offers VERB
a DET
perfect ADJ
example NOUN
of ADP
whatI'm PROPN
talking VERB
about ADP
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
n't PART
seen VERB
it PRON
, PUNCT
you PRON
should AUX
. PUNCT
  SPACE
It PRON
's AUX
nota ADV
put VERB
down ADP
of ADP
doctor NOUN
's PART
and CCONJ
neither DET
is AUX
what PRON
I PRON
'm AUX
saying VERB
. PUNCT
  SPACE
Doctors NOUN
areonly ADV
human ADJ
and CCONJ
can AUX
only ADV
do AUX
so ADV
much ADV
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
those DET
of ADP
usout NOUN
here ADV
who PRON
are AUX
intelligent ADJ
and CCONJ
able ADJ
to PART
sometimes ADV
find VERB
a DET
missingpiece NOUN
of ADP
the DET
puzzle NOUN
that PRON
might AUX
have AUX
otherwise ADV
gone VERB
unnoticed ADJ
. PUNCT
I PRON
guess VERB
I PRON
'm AUX
biased ADJ
because SCONJ
dizziness NOUN
is AUX
one NUM
of ADP
those DET
weird ADJ
thingsthat DET
is AUX
still ADV
so ADV
unknown ADJ
. PUNCT
  SPACE
If SCONJ
I PRON
had AUX
a DET
broken ADJ
arm NOUN
, PUNCT
or CCONJ
a DET
weak ADJ
heart NOUN
, PUNCT
or CCONJ
failing VERB
kidneys NOUN
, PUNCT
I PRON
might AUX
not PART
have AUX
the DET
same ADJ
opinion NOUN
. PUNCT
  SPACE
That DET
's AUX
because SCONJ
those DET
things NOUN
are AUX
much ADV
more ADV
tangible ADJ
and CCONJ
have AUX
much ADV
more ADJ
concise ADJ
definitions NOUN
and CCONJ
treatments NOUN
. PUNCT
  SPACE
With ADP
dizziness NOUN
, PUNCT
you PRON
just ADV
have AUX
todecide NOUN
to PART
live VERB
with ADP
it PRON
or CCONJ
decide VERB
to PART
live VERB
with ADP
it PRON
while SCONJ
trying VERB
tofind NOUN
your PRON
way NOUN
out SCONJ
of ADP
it PRON
. PUNCT
I PRON
have AUX
chosen VERB
the DET
latter ADJ
. PUNCT
Lindalindae@netcom.netcom.com>>-- PUNCT
> X
---------------------------------------------------------------------------->Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58568From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
3/4 NUM
) PUNCT
: PUNCT
Keyboard PROPN
Alternatives PROPN
[ PUNCT
monthly ADV
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
keyboardsVersion NOUN
: PUNCT
$ SYM
Revision NOUN
: PUNCT
5.11 NUM
$ SYM
$ SYM
Date NOUN
: PUNCT
1993/04/13 NUM
01:20:43 NUM
$ SYM
------------------------------------------------------------------------------- PUNCT
      SPACE
Answers NOUN
To ADP
Frequently ADV
Asked VERB
Questions PROPN
about ADP
Keyboard PROPN
Alternatives-------------------------------------------------------------------------------The PROPN
Alternative PROPN
Keyboard PROPN
FAQCopyright NOUN
1992,1993 NOUN
By ADP
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>The ADJ
opinions NOUN
in ADP
here ADV
are AUX
my PRON
own ADJ
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
and CCONJ
do AUX
notrepresent VERB
the DET
opinions NOUN
of ADP
any DET
organization NOUN
or CCONJ
vendor.[Current PROPN
distribution NOUN
: PUNCT
sci.med.occupational PROPN
, PUNCT
sci.med PUNCT
, PUNCT
comp.human-factors PROPN
, PUNCT
{ PUNCT
news NOUN
, PUNCT
sci PROPN
, PUNCT
comp}.answers PROPN
, PUNCT
and CCONJ
e NOUN
- NOUN
mail NOUN
to ADP
c+health@iubvm.ucs.indiana.edu PROPN
, PUNCT
sorehand@vm.ucsf.edu PROPN
, PUNCT
and CCONJ
cstg-L@vtvm1.cc.vt.edu]Changes NOUN
since SCONJ
previously ADV
distributed VERB
versions NOUN
are AUX
marked VERB
with ADP
change NOUN
        SPACE
||bars NOUN
to ADP
the DET
right NOUN
of ADP
the DET
text NOUN
, PUNCT
as SCONJ
is AUX
this DET
paragraph NOUN
. PUNCT
                        SPACE
||Information NOUN
in ADP
this DET
FAQ PROPN
has AUX
been AUX
pieced VERB
together ADV
from ADP
phone NOUN
conversations NOUN
, PUNCT
e NOUN
- NOUN
mail NOUN
, PUNCT
and CCONJ
product NOUN
literature NOUN
. PUNCT
  SPACE
While SCONJ
I PRON
hope VERB
it PRON
's AUX
useful ADJ
, PUNCT
the DET
informationin NOUN
here ADV
is AUX
neither CCONJ
comprehensive ADJ
nor CCONJ
error NOUN
free ADJ
. PUNCT
  SPACE
If SCONJ
you PRON
find VERB
somethingwrong ADJ
or CCONJ
missing ADJ
, PUNCT
please INTJ
mail VERB
me PRON
, PUNCT
and CCONJ
I PRON
'll AUX
update VERB
my PRON
list NOUN
. PUNCT
  SPACE
Thanks INTJ
. PUNCT
All DET
phone NOUN
numbers NOUN
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
are AUX
U.S.A. PROPN
phone NOUN
numbers NOUN
. PUNCT
All DET
monetary ADJ
figures NOUN
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
are AUX
U.S.A. PROPN
dollars NOUN
. PUNCT
Products NOUN
covered VERB
in ADP
this DET
FAQ PROPN
: PUNCT
    SPACE
Using VERB
a DET
PC NOUN
's PART
keyboard NOUN
on ADP
your PRON
workstation NOUN
/ SYM
compatibility NOUN
issues NOUN
    SPACE
Apple PROPN
Computer PROPN
, PUNCT
Inc. PROPN
    SPACE
Key PROPN
Tronic PROPN
FlexPro PROPN
    SPACE
Dragon PROPN
Systems PROPN
    SPACE
The DET
Bat PROPN
    SPACE
DataHand PROPN
    SPACE
Comfort PROPN
Keyboard PROPN
System PROPN
    SPACE
Kinesis PROPN
Ergonomic PROPN
Keyboard PROPN
    SPACE
Maltron PROPN
    SPACE
The DET
Tony PROPN
! PUNCT
Ergonomic PROPN
KeySystem PROPN
    SPACE
The DET
Vertical ADJ
    SPACE
The DET
MIKey PROPN
    SPACE
The DET
Wave PROPN
    SPACE
The DET
Minimal PROPN
Motion PROPN
Computer PROPN
Access PROPN
System PROPN
    SPACE
Twiddler NOUN
    SPACE
Half PROPN
- PUNCT
QWERTY PROPN
    SPACE
Microwriter PROPN
    SPACE
Braille PROPN
' CCONJ
n CCONJ
Speak PROPN
    SPACE
Octima PROPN
    SPACE
AccuKeyGIF PUNCT
pictures NOUN
of ADP
many ADJ
of ADP
these DET
products NOUN
are AUX
available ADJ
via ADP
anonymous PROPN
ftpfrom PROPN
soda.berkeley.edu:pub/typing-injury PROPN
. PROPN
  SPACE
( PUNCT
128.32.149.19 NUM
) PUNCT
  SPACE
I PRON
highlyrecommend VERB
getting VERB
the DET
pictures NOUN
. PUNCT
  SPACE
They PRON
tell VERB
much ADV
more ADJ
than SCONJ
I PRON
can AUX
fitinto ADP
this DET
file NOUN
. PUNCT
If SCONJ
you PRON
ca AUX
n't PART
ftp VERB
, PUNCT
send VERB
me PRON
mail NOUN
, PUNCT
and CCONJ
I PRON
'll AUX
uuencode VERB
and CCONJ
mail VERB
them PRON
to ADP
you(they're PRON
pretty ADV
big ADJ
... PUNCT
)==============Using VERB
a DET
PC NOUN
's PART
keyboard NOUN
on ADP
your PRON
workstation NOUN
/ SYM
compatibility NOUN
issues NOUN
    SPACE
Mini PROPN
outline NOUN
: PUNCT
        SPACE
1 NUM
. PUNCT
Spoofing VERB
a DET
keyboard NOUN
over ADP
the DET
serial ADJ
port NOUN
        SPACE
2 NUM
. PUNCT
X NOUN
terminals NOUN
        SPACE
3 NUM
. PUNCT
NeXT ADV
        SPACE
4 NUM
. PUNCT
Silicon PROPN
Graphics PROPN
        SPACE
5 NUM
. PUNCT
IBM PROPN
RS/6000 PROPN
	 SPACE
6 NUM
. PUNCT
Other ADJ
stuff NOUN
    SPACE
1 NUM
. PUNCT
Spoofing VERB
a DET
keyboard NOUN
over ADP
the DET
serial ADJ
port NOUN
	 SPACE
If SCONJ
you PRON
've AUX
got VERB
a DET
proprietary ADJ
computer NOUN
which PRON
uses VERB
its PRON
own ADJ
keyboard NOUN
	 SPACE
( PUNCT
Sun PROPN
, PUNCT
HP PROPN
, PUNCT
DEC PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
then ADV
you PRON
're AUX
going VERB
to PART
have AUX
a DET
hard ADJ
time NOUN
finding VERB
	 SPACE
a DET
vendor NOUN
to PART
sell VERB
you PRON
a DET
compatible ADJ
keyboard NOUN
. PUNCT
  SPACE
If SCONJ
your PRON
workstation NOUN
	 SPACE
runs VERB
the DET
X NOUN
window NOUN
system NOUN
, PUNCT
you PRON
're AUX
in ADP
luck NOUN
. PUNCT
  SPACE
You PRON
can AUX
buy VERB
a DET
cheap ADJ
used VERB
	 SPACE
PC NOUN
, PUNCT
hook VERB
your PRON
expensive ADJ
keyboard NOUN
up ADP
to ADP
it PRON
, PUNCT
and CCONJ
run VERB
a DET
serial ADJ
cable NOUN
	 SPACE
to ADP
your PRON
workstation NOUN
. PUNCT
  SPACE
Then ADV
, PUNCT
run VERB
a DET
program NOUN
on ADP
the DET
workstation NOUN
to PART
read VERB
	 SPACE
the DET
serial ADJ
port NOUN
and CCONJ
generate VERB
fake ADJ
X NOUN
keyboard NOUN
events NOUN
. PUNCT
	 SPACE
The DET
two NUM
main ADJ
programs NOUN
I PRON
've AUX
found VERB
to PART
do AUX
this DET
are AUX
KT PROPN
and CCONJ
A2X. PROPN
	 SPACE
a2x PROPN
is AUX
a DET
sophisticated ADJ
program NOUN
, PUNCT
capable ADJ
of ADP
controlling VERB
the DET
mouse NOUN
, PUNCT
and CCONJ
	 SPACE
even ADV
moving VERB
among ADP
widgets NOUN
on ADP
the DET
screen NOUN
. PUNCT
  SPACE
It PRON
requires VERB
a DET
server NOUN
	 SPACE
extension NOUN
( PUNCT
XTEST PROPN
, PUNCT
DEC PROPN
- PUNCT
XTRAP PROPN
, PUNCT
or CCONJ
XTestExtension1 PROPN
) PUNCT
. PUNCT
  SPACE
To PART
find VERB
out ADP
if SCONJ
your PRON
	 SPACE
server NOUN
can AUX
do AUX
this DET
, PUNCT
run VERB
' PUNCT
xdpyinfo PROPN
' PUNCT
and CCONJ
see VERB
if SCONJ
any DET
of ADP
these DET
strings NOUN
	 SPACE
appear VERB
in ADP
the DET
extensions NOUN
list NOUN
. PUNCT
  SPACE
If SCONJ
your PRON
server NOUN
does AUX
n't PART
have AUX
this DET
, PUNCT
	 SPACE
you PRON
may AUX
want VERB
to PART
investigate VERB
compiling VERB
X11R5 NOUN
, PUNCT
patchlevel NOUN
18 NUM
or CCONJ
later ADV
, PUNCT
	 SPACE
or CCONJ
bugging VERB
your PRON
vendor NOUN
. PUNCT
	 SPACE
kt NOUN
is AUX
a DET
simpler ADJ
program NOUN
, PUNCT
which PRON
should AUX
work VERB
with ADP
unextended ADJ
X NOUN
servers NOUN
. PUNCT
	 SPACE
Another DET
program NOUN
called VERB
xsendevent PROPN
also ADV
exists VERB
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
seen VERB
it PRON
. PUNCT
	 SPACE
Both DET
a2x PROPN
and CCONJ
kt NOUN
are AUX
available ADJ
via ADP
anonymous ADJ
ftp NOUN
from ADP
soda.berkeley.edu PROPN
. PUNCT
    SPACE
2 NUM
. PUNCT
X NOUN
terminals NOUN
	 SPACE
Also ADV
, PUNCT
a DET
number NOUN
of ADP
X NOUN
terminals NOUN
( PUNCT
NCD PROPN
, PUNCT
Tektronics PROPN
, PUNCT
to PART
name VERB
a DET
few ADJ
) PUNCT
use NOUN
	 SPACE
PC NOUN
- PUNCT
compatible ADJ
keyboards NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
an DET
X NOUN
terminal NOUN
, PUNCT
you PRON
may AUX
be AUX
all DET
	 SPACE
set VERB
. PUNCT
  SPACE
Try VERB
it PRON
out ADP
with ADP
a DET
normal ADJ
PC NOUN
keyboard NOUN
before ADP
you PRON
go VERB
through ADP
the DET
	 SPACE
trouble NOUN
of ADP
buying VERB
an DET
alternative ADJ
keyboard NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
some DET
X NOUN
terminals NOUN
add VERB
	 SPACE
extra ADJ
buttons NOUN
-- PUNCT
you PRON
may AUX
need VERB
to PART
keep VERB
your PRON
original ADJ
keyboard NOUN
around ADV
	 SPACE
for ADP
the DET
once ADV
- PUNCT
in ADP
- PUNCT
a DET
- PUNCT
blue ADJ
- PUNCT
moon NOUN
that PRON
you PRON
have AUX
to PART
hit VERB
the DET
Setup PROPN
key NOUN
. PUNCT
    SPACE
3 NUM
. PUNCT
NeXT PROPN
	 SPACE
NeXT PROPN
had AUX
announced VERB
that SCONJ
new ADJ
NeXT ADJ
machines NOUN
will AUX
use VERB
the DET
Apple PROPN
Desktop PROPN
	 SPACE
Bus NOUN
, PUNCT
meaning VERB
any DET
Mac PROPN
keyboard NOUN
will AUX
work VERB
. PUNCT
  SPACE
Then ADV
, PUNCT
they PRON
announced VERB
they PRON
	 SPACE
were AUX
cancelling VERB
their PRON
hardware NOUN
production NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
any DET
kind NOUN
of ADP
	 SPACE
upgrade VERB
for ADP
an DET
older ADJ
NeXT ADV
, PUNCT
do AUX
it PRON
now ADV
! PUNCT
    SPACE
4 NUM
. PUNCT
Silicon PROPN
Graphics PROPN
	 SPACE
Silicon PROPN
Graphics PROPN
has AUX
announced VERB
that SCONJ
their PRON
newer ADJ
machines NOUN
( PUNCT
Indigo^2 PROPN
and CCONJ
	 SPACE
beyond ADP
) PUNCT
will AUX
use VERB
standard ADJ
PC NOUN
- PUNCT
compatible ADJ
keyboards NOUN
and CCONJ
mice NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
	 SPACE
believe VERB
this DET
also ADV
applies VERB
to ADP
the DET
Power PROPN
Series PROPN
machines NOUN
. PUNCT
  SPACE
It PRON
's AUX
not PART
	 SPACE
possible ADJ
to PART
upgrade VERB
an DET
older ADJ
SGI NOUN
to PART
use VERB
PC NOUN
keyboards NOUN
, PUNCT
except SCONJ
by ADP
	 SPACE
upgrading VERB
the DET
entire ADJ
machine NOUN
. PUNCT
  SPACE
Contact VERB
your PRON
SGI PROPN
sales NOUN
rep PROPN
for ADP
more ADV
	 SPACE
details NOUN
. PUNCT
    SPACE
5 NUM
. PUNCT
IBM PROPN
RS/6000 PROPN
	 SPACE
IBM PROPN
RS/6000 PROPN
keyboards NOUN
are AUX
actually ADV
similar ADJ
to ADP
normal ADJ
PC NOUN
keyboards NOUN
. PUNCT
  SPACE
|| PROPN
	 SPACE
Unfortunately ADV
, PUNCT
you PRON
ca AUX
n't PART
just ADV
plug VERB
one NUM
in ADP
. PUNCT
  SPACE
You PRON
need VERB
two NUM
things NOUN
: PUNCT
a DET
  SPACE
|| PROPN
	 SPACE
cable NOUN
converter NOUN
to PART
go VERB
from ADP
the DET
large ADJ
PC NOUN
keyboard NOUN
connector NOUN
to ADP
the DET
   SPACE
|| PROPN
	 SPACE
smaller ADJ
PS/2 PROPN
style NOUN
DIN-6 PROPN
, PUNCT
and CCONJ
a DET
new ADJ
device NOUN
driver NOUN
for ADP
AIX PROPN
. PUNCT
  SPACE
Believe PROPN
|| PROPN
	 SPACE
it PRON
or CCONJ
not PART
, PUNCT
IBM PROPN
wrote VERB
this DET
device NOUN
driver NOUN
recently ADV
, PUNCT
I PRON
used VERB
it PRON
, PUNCT
and CCONJ
it PRON
|| PROPN
	 SPACE
works NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
they PRON
do AUX
n't PART
want VERB
me PRON
to PART
redistribute VERB
it PRON
. PUNCT
  SPACE
I PRON
've AUX
been AUX
  SPACE
|| PROPN
	 SPACE
told VERB
Judy PROPN
Hume PROPN
( PUNCT
512 NUM
) PUNCT
823 NUM
- SYM
6337 NUM
is AUX
a DET
potential ADJ
contact NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
learn VERB
|| PROPN
	 SPACE
anything PRON
new ADJ
, PUNCT
please INTJ
send VERB
me PRON
e NOUN
- NOUN
mail NOUN
. PUNCT
				     SPACE
|| PROPN
        SPACE
6 NUM
. PUNCT
Other ADJ
stuff NOUN
	 SPACE
Some DET
vendors NOUN
here ADV
( PUNCT
notably ADV
: PUNCT
Health PROPN
Care PROPN
Keyboard PROPN
Co. PROPN
and CCONJ
AccuCorp PROPN
) PUNCT
	 SPACE
support VERB
some DET
odd ADJ
keyboard NOUN
types NOUN
, PUNCT
and CCONJ
may AUX
be AUX
responsive ADJ
to ADP
your PRON
	 SPACE
queries NOUN
regarding VERB
supporting VERB
your PRON
own ADJ
weird ADJ
computer NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
	 SPACE
get AUX
sufficient ADJ
documention NOUN
about ADP
how ADV
your PRON
keyboard NOUN
works VERB
( PUNCT
either CCONJ
	 SPACE
from ADP
the DET
vendor NOUN
, PUNCT
or CCONJ
with ADP
a DET
storage NOUN
oscilloscope NOUN
) PUNCT
, PUNCT
you PRON
may AUX
be AUX
in ADP
	 SPACE
luck NOUN
. PUNCT
  SPACE
Contact VERB
the DET
companies NOUN
for ADP
more ADJ
details NOUN
. PUNCT
Apple PROPN
Adjustable PROPN
Keyboard PROPN
    SPACE
Apple PROPN
Computer PROPN
, PUNCT
Inc. PROPN
    SPACE
Sales NOUN
offices NOUN
all ADV
over ADP
the DET
place NOUN
. PUNCT
    SPACE
Availability NOUN
: PUNCT
February PROPN
, PUNCT
1993 NUM
    SPACE
Price NOUN
: PUNCT
$ SYM
219 NUM
    SPACE
Supports NOUN
: PUNCT
Mac PROPN
only ADV
    SPACE
Apple PROPN
has AUX
recently ADV
announced VERB
their PRON
new ADJ
split ADJ
- PUNCT
design NOUN
keyboard NOUN
. PUNCT
  SPACE
The DET
    SPACE
keyboard NOUN
has AUX
one NUM
section NOUN
for ADP
each DET
hand NOUN
, PUNCT
and CCONJ
the DET
sections NOUN
rotate VERB
    SPACE
backward ADV
on ADP
a DET
hinge NOUN
. PUNCT
  SPACE
The DET
sections NOUN
do AUX
not PART
tilt VERB
upward ADV
. PUNCT
  SPACE
The DET
keys NOUN
are AUX
    SPACE
arranged VERB
in ADP
a DET
normal ADJ
QWERTY PROPN
fashion NOUN
. PUNCT
    SPACE
The DET
main ADJ
foldable ADJ
keyboard NOUN
resembles VERB
a DET
normal ADJ
Apple PROPN
Keyboard PROPN
. PUNCT
    SPACE
A DET
separate ADJ
keypad NOUN
contains VERB
all DET
the DET
extended ADJ
key ADJ
functions NOUN
. PUNCT
    SPACE
The DET
keyboard NOUN
also ADV
comes VERB
with ADP
matching VERB
wrist NOUN
rests NOUN
, PUNCT
which PRON
are AUX
not PART
    SPACE
directly ADV
attachable ADJ
to ADP
the DET
keyboard NOUN
. PUNCT
    SPACE
As ADV
soon ADV
as SCONJ
soda NOUN
comes VERB
back ADV
up ADV
, PUNCT
I PRON
'll AUX
have AUX
a DET
detailed ADJ
blurb NOUN
from ADP
    SPACE
TidBITS NUM
available ADJ
there ADV
. PUNCT
FlexPro PROPN
Keyboard PROPN
    SPACE
Key PROPN
Tronic PROPN
    SPACE
Phone NOUN
: PUNCT
800 NUM
- PUNCT
262 NUM
- PUNCT
6006 NUM
    SPACE
Possible ADJ
contact NOUN
: PUNCT
Denise PROPN
Razzeto PROPN
, PUNCT
509 NUM
- PUNCT
927 NUM
- PUNCT
5299 NUM
    SPACE
Sold VERB
by ADP
many ADJ
clone NOUN
vendors NOUN
and CCONJ
PC NOUN
shops NOUN
    SPACE
Availability NOUN
: PUNCT
Spring NOUN
, PUNCT
1993 NUM
( PUNCT
? PUNCT
) PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
489 NUM
( PUNCT
? PUNCT
) PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
only ADV
( PUNCT
highly ADV
likely ADJ
) PUNCT
    SPACE
Keytronic PROPN
apparently ADV
showed VERB
a DET
prototype NOUN
keyboard NOUN
at ADP
Comdex PROPN
. PUNCT
  SPACE
It PRON
's AUX
    SPACE
another DET
split ADJ
- PUNCT
design NOUN
. PUNCT
  SPACE
One NUM
thumb ADJ
- PUNCT
wheel NOUN
controls NOUN
the DET
tilt NOUN
of ADP
both DET
    SPACE
the DET
left ADJ
and CCONJ
right ADJ
- PUNCT
hand NOUN
sides NOUN
of ADP
the DET
main ADJ
alphanumeric NOUN
section NOUN
. PUNCT
    SPACE
The DET
arrow NOUN
keys NOUN
and CCONJ
keypad PROPN
resemble VERB
a DET
normal ADJ
101-key NUM
PC NOUN
keyboard NOUN
. PUNCT
    SPACE
Keytronic PROPN
makes VERB
standard ADJ
PC NOUN
keyboards NOUN
, PUNCT
also ADV
, PUNCT
so ADV
this DET
product NOUN
will AUX
    SPACE
probably ADV
be AUX
sold VERB
through ADP
their PRON
standard ADJ
distribution NOUN
channels NOUN
. PUNCT
DragonDictate-30 PUNCT
K NOUN
( PUNCT
and CCONJ
numerous ADJ
other ADJ
Dragon PROPN
products NOUN
) PUNCT
    SPACE
Dragon PROPN
Systems PROPN
, PUNCT
Inc. PROPN
    SPACE
320 NUM
Nevada PROPN
Street PROPN
    SPACE
Newton PROPN
, PUNCT
MA PROPN
  SPACE
02160 NUM
    SPACE
Phone NOUN
: PUNCT
800-TALK NUM
- PUNCT
TYP PROPN
or CCONJ
617 NUM
- PUNCT
965 NUM
- PUNCT
5200 NUM
    SPACE
Fax NOUN
: PUNCT
617 NUM
- PUNCT
527 NUM
- PUNCT
0372 NUM
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Price NOUN
: PUNCT
DragonDictate-30 X
K PROPN
-- PUNCT
$ SYM
4995 NUM
( PUNCT
end NOUN
user NOUN
system NOUN
) PUNCT
	    SPACE
DragonWriter PROPN
1000 NUM
-- PUNCT
$ SYM
1595 NUM
/ SYM
$ SYM
2495 NUM
( PUNCT
end NOUN
user NOUN
/ SYM
developer NOUN
system NOUN
) PUNCT
	    SPACE
various ADJ
other ADJ
prices NOUN
for ADP
service NOUN
contracts NOUN
, PUNCT
site NOUN
licenses NOUN
, PUNCT
etc X
. PUNCT
        SPACE
Compatibility PROPN
: PUNCT
386 NUM
( PUNCT
or CCONJ
higher ADJ
) PUNCT
PC NOUN
only ADV
		    SPACE
( PUNCT
3rd ADJ
party NOUN
support NOUN
for ADP
Mac PROPN
) PUNCT
	 SPACE
Free ADJ
software NOUN
support NOUN
for ADP
X NOUN
windows NOUN
is AUX
also ADV
available ADJ
-- PUNCT
your PRON
	 SPACE
PC NOUN
with ADP
Dragon PROPN
hardware NOUN
talks NOUN
to ADP
your PRON
workstation NOUN
over ADP
a DET
	 SPACE
serial ADJ
cable NOUN
or CCONJ
network NOUN
. PUNCT
  SPACE
The DET
program NOUN
is AUX
called VERB
a2x PROPN
, PUNCT
and CCONJ
is AUX
	 SPACE
available ADJ
via ADP
anonymous ADJ
ftp NOUN
: PUNCT
	 SPACE
soda.berkeley.edu:pub/typing-injury/a2x.tar.Z PROPN
	 SPACE
export.lcs.mit.edu:contrib/a2x.tar.Z NOUN
( PUNCT
most ADV
current ADJ
) PUNCT
	 SPACE
If SCONJ
you PRON
want VERB
to PART
use VERB
your PRON
Dragon PROPN
product NOUN
with ADP
X NOUN
windows NOUN
, PUNCT
you PRON
may AUX
want VERB
	 SPACE
to PART
ask VERB
for ADP
Peter PROPN
Cohen PROPN
, PUNCT
an DET
salesman NOUN
at ADP
Dragon PROPN
who PRON
knows VERB
more ADJ
about ADP
	 SPACE
this DET
sort NOUN
of ADP
thing NOUN
. PUNCT
    SPACE
Dragon PROPN
Systems PROPN
sells VERB
a DET
number NOUN
of ADP
voice NOUN
recognition NOUN
products NOUN
. PUNCT
    SPACE
Most ADJ
( PUNCT
if SCONJ
not PART
all DET
) PUNCT
of ADP
them PRON
seem VERB
to PART
run VERB
on ADP
PC NOUN
's PART
and CCONJ
compatibles VERB
    SPACE
( PUNCT
including VERB
PS/2 PROPN
's PART
and CCONJ
other ADJ
MicroChannel PROPN
boxes NOUN
) PUNCT
. PUNCT
  SPACE
They PRON
sell VERB
you PRON
    SPACE
a DET
hardware NOUN
board NOUN
and CCONJ
software NOUN
which PRON
sits VERB
in ADP
front NOUN
of ADP
a DET
number NOUN
    SPACE
of ADP
popular ADJ
word NOUN
processors NOUN
and CCONJ
spreadsheets NOUN
. PUNCT
    SPACE
Each DET
user NOUN
` PUNCT
trains NOUN
' PART
the DET
system NOUN
to ADP
their PRON
voice NOUN
, PUNCT
and CCONJ
there PRON
are AUX
provisions NOUN
    SPACE
to PART
correct VERB
the DET
system NOUN
when ADV
it PRON
makes VERB
mistakes NOUN
, PUNCT
on ADP
the DET
fly NOUN
. PUNCT
  SPACE
Multiple ADJ
    SPACE
people NOUN
can AUX
use VERB
it PRON
, PUNCT
but CCONJ
you PRON
have AUX
to PART
load VERB
a DET
different ADJ
personality NOUN
file NOUN
    SPACE
for ADP
each DET
person NOUN
. PUNCT
  SPACE
You PRON
still ADV
get VERB
the DET
use NOUN
of ADP
your PRON
normal ADJ
keyboard NOUN
, PUNCT
too ADV
. PUNCT
    SPACE
On ADP
the DET
DragonDictate-30 PUNCT
K NOUN
you PRON
need VERB
to PART
pause VERB
1/10th ADJ
sec PROPN
between ADP
    SPACE
words NOUN
. PUNCT
  SPACE
Dragon PROPN
claims VERB
typical ADJ
input NOUN
speeds NOUN
of ADP
30 NUM
- SYM
40 NUM
words NOUN
per ADP
minute NOUN
. PUNCT
    SPACE
I PRON
do AUX
n't PART
have AUX
specs NOUN
on ADP
the DET
DragonWriter PROPN
1000 NUM
. PUNCT
    SPACE
The DET
DragonDictate-30 PUNCT
K NOUN
can AUX
recognize VERB
30,000 NUM
words NOUN
at ADP
a DET
time NOUN
. PUNCT
    SPACE
The DET
DragonWriter PROPN
1000 NUM
can AUX
recognize VERB
( PUNCT
you PRON
guessed VERB
it PRON
) PUNCT
1000 NUM
words NOUN
at ADP
a DET
time NOUN
. PUNCT
    SPACE
Dragon PROPN
's PART
technology NOUN
is AUX
also ADV
part NOUN
of ADP
the DET
following VERB
products NOUN
    SPACE
( PUNCT
about ADP
which PRON
I PRON
have AUX
no DET
other ADJ
info NOUN
) PUNCT
: PUNCT
	 SPACE
Microsoft PROPN
Windows PROPN
Sound PROPN
System PROPN
( PUNCT
Voice PROPN
Pilot PROPN
) PUNCT
	 SPACE
IBM PROPN
VoiceType PROPN
	 SPACE
Voice PROPN
Navigator PROPN
II PROPN
( PUNCT
by ADP
Articulate PROPN
Systems PROPN
-- PUNCT
for ADP
Macintosh PROPN
) PUNCT
	 SPACE
EMStation NOUN
( PUNCT
by ADP
Lanier PROPN
Voice PROPN
Products PROPN
-- PUNCT
" PUNCT
emergency NOUN
medical ADJ
workstation")The NOUN
Bat PROPN
    SPACE
old ADJ
phone NOUN
number NOUN
: PUNCT
504 NUM
- PUNCT
336 NUM
- PUNCT
0033 NUM
    SPACE
current ADJ
phone NOUN
number NOUN
: PUNCT
504 NUM
- PUNCT
766 NUM
- PUNCT
8082 NUM
    SPACE
Infogrip PROPN
, PUNCT
Inc. PROPN
    SPACE
812 NUM
North PROPN
Blvd PROPN
. PUNCT
    SPACE
Baton PROPN
Rouge PROPN
, PUNCT
Louisiana PROPN
70802 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Ward PROPN
Bond PROPN
( PUNCT
main ADJ
contact NOUN
) PUNCT
    SPACE
David PROPN
Vicknair PROPN
( PUNCT
did AUX
the DET
Unix PROPN
software NOUN
) PUNCT
  SPACE
504 NUM
- PUNCT
766 NUM
- PUNCT
1029 NUM
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
Mac PROPN
, PUNCT
IBM PROPN
PC NOUN
( PUNCT
serial ADJ
port NOUN
-- PUNCT
native ADJ
keyboard PROPN
port PROPN
version PROPN
    SPACE
coming VERB
very ADV
soon ADV
... PUNCT
) PUNCT
. PUNCT
  SPACE
No DET
other ADJ
workstations NOUN
supported VERB
, PUNCT
but CCONJ
serial ADJ
    SPACE
support NOUN
for ADP
Unix PROPN
with ADP
X NOUN
Windows PROPN
has AUX
been AUX
written VERB
. PUNCT
  SPACE
PC PROPN
and CCONJ
Mac PROPN
are AUX
    SPACE
getting VERB
all DET
the DET
real ADJ
attention NOUN
from ADP
the DET
company NOUN
. PUNCT
    SPACE
A DET
chording NOUN
system NOUN
. PUNCT
  SPACE
One NUM
hand NOUN
is AUX
sufficient ADJ
to PART
type VERB
everything PRON
. PUNCT
    SPACE
The DET
second ADJ
hand NOUN
is AUX
for ADP
redundancy NOUN
and CCONJ
increased VERB
speed NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
	 SPACE
$ SYM
495 NUM
( PUNCT
dual ADJ
set NOUN
-- PUNCT
each DET
one NOUN
is AUX
a DET
complete ADJ
keyboard NOUN
by ADP
itself PRON
) PUNCT
	 SPACE
$ SYM
295 NUM
( PUNCT
single ADJ
) PUNCT
	 SPACE
( PUNCT
cheaper ADJ
prices NOUN
were AUX
offered VERB
at ADP
MacWorld PROPN
Expo PROPN
as SCONJ
a DET
show NOUN
- PUNCT
special.)DataHand NUM
   SPACE
602 NUM
- PUNCT
860 NUM
- PUNCT
8584 NUM
    SPACE
Industrial PROPN
Innovations PROPN
, PUNCT
Inc. PROPN
    SPACE
10789 NUM
North PROPN
90th ADJ
Street PROPN
    SPACE
Scottsdale PROPN
, PUNCT
Arizona PROPN
85260 NUM
- SYM
6727 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Mark PROPN
Roggenbuck PROPN
( PUNCT
contact NOUN
) PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
and CCONJ
Mac PROPN
    SPACE
Shipping NOUN
: PUNCT
In ADP
beta NOUN
. PUNCT
  SPACE
" PUNCT
Big ADJ
backlog NOUN
" PUNCT
-- PUNCT
could AUX
take VERB
3 NUM
+ SYM
months NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
2000 NUM
/ SYM
unit NOUN
( PUNCT
1 NUM
unit NOUN
= SYM
= SYM
2 NUM
pods NOUN
) PUNCT
. PUNCT
( PUNCT
new ADJ
price NOUN
! PUNCT
) PUNCT
			     SPACE
|| NUM
    SPACE
Each DET
hand NOUN
has AUX
its PRON
own ADJ
" PUNCT
pod NOUN
" PUNCT
. PUNCT
  SPACE
Each DET
of ADP
the DET
four NUM
main ADJ
fingers NOUN
has AUX
five NUM
    SPACE
switches NOUN
each DET
: PUNCT
forward ADV
, PUNCT
back ADV
, PUNCT
left VERB
, PUNCT
right INTJ
, PUNCT
and CCONJ
down ADV
. PUNCT
  SPACE
The DET
thumbs NOUN
have AUX
    SPACE
a DET
number NOUN
of ADP
switches NOUN
. PUNCT
  SPACE
Despite SCONJ
appearances NOUN
, PUNCT
the DET
key ADJ
layout NOUN
resembles VERB
    SPACE
QWERTY PROPN
, PUNCT
and CCONJ
is AUX
reported VERB
to PART
be AUX
no DET
big ADJ
deal NOUN
to PART
adapt VERB
to ADP
. PUNCT
  SPACE
The DET
idea NOUN
is AUX
    SPACE
that SCONJ
your PRON
hands NOUN
never ADV
have AUX
to PART
move VERB
to PART
use VERB
the DET
keyboard NOUN
. PUNCT
  SPACE
The DET
whole ADJ
pod NOUN
    SPACE
tilts VERB
in ADP
its PRON
base NOUN
, PUNCT
to PART
act VERB
as SCONJ
a DET
mouse NOUN
. PUNCT
    SPACE
( PUNCT
see VERB
also ADV
: PUNCT
the DET
detailed ADJ
review NOUN
, PUNCT
written VERB
by ADP
Cliff PROPN
Lasser PROPN
< X
cal@THINK.COM PROPN
> X
     SPACE
available ADJ
via ADP
anonymous ADJ
ftp NOUN
from ADP
soda.berkeley.edu)Comfort PROPN
Keyboard PROPN
System PROPN
   SPACE
414 NUM
- PUNCT
253 NUM
- PUNCT
4131 NUM
    SPACE
FAX NOUN
: PUNCT
414 NUM
- PUNCT
253 NUM
- PUNCT
4177 NUM
    SPACE
Health PROPN
Care PROPN
Keyboard PROPN
Company PROPN
    SPACE
N82 PROPN
W15340 PROPN
Appleton PROPN
Ave PROPN
    SPACE
Menomonee PROPN
Falls PROPN
, PUNCT
Wisconsin PROPN
53051 NUM
U.S.A. PROPN
    SPACE
Jeffrey PROPN
Szmanda PROPN
( PUNCT
Vice PROPN
President PROPN
-- PUNCT
contact NOUN
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
( PUNCT
and CCONJ
Mac PROPN
? PUNCT
? PUNCT
? PUNCT
) PUNCT
						     SPACE
|| PROPN
        SPACE
Planned VERB
future ADJ
support NOUN
: PUNCT
	 SPACE
IBM PROPN
122-key NUM
layout NOUN
( PUNCT
3270-style NUM
, PUNCT
I PRON
believe VERB
) PUNCT
	 SPACE
Sun PROPN
Sparc PROPN
	 SPACE
Decision PROPN
Data PROPN
	 SPACE
Unisys PROPN
UTS-40 NUM
	 SPACE
Silicon PROPN
Graphics PROPN
	 SPACE
Others NOUN
to PART
be AUX
supported VERB
later ADV
. PUNCT
  SPACE
The DET
hardware NOUN
design NOUN
is AUX
relatively ADV
	 SPACE
easy ADJ
for ADP
the DET
company NOUN
to PART
re VERB
- VERB
configure NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
690 NUM
, PUNCT
including VERB
one NUM
system NOUN
" PUNCT
personality NOUN
module NOUN
" PUNCT
. PUNCT
		     SPACE
|| PROPN
    SPACE
The DET
idea NOUN
is AUX
that SCONJ
one NUM
keyboard NOUN
works VERB
with ADP
everything PRON
. PUNCT
  SPACE
You PRON
purchase VERB
    SPACE
" PUNCT
compatibility NOUN
modules NOUN
" PUNCT
, PUNCT
a DET
new ADJ
cord NOUN
, PUNCT
and CCONJ
possibly ADV
new ADJ
keycaps NOUN
, PUNCT
and CCONJ
    SPACE
then ADV
you PRON
can AUX
move VERB
your PRON
one NUM
keyboard NOUN
around ADV
among ADP
different ADJ
machines NOUN
. PUNCT
    SPACE
It PRON
's AUX
a DET
three NUM
- PUNCT
piece NOUN
folding VERB
keyboard NOUN
. PUNCT
  SPACE
The DET
layout NOUN
resembles VERB
the DET
    SPACE
standard ADJ
101-key NUM
keyboard NOUN
, PUNCT
except SCONJ
sliced VERB
into ADP
three NUM
sections NOUN
. PUNCT
  SPACE
Each DET
    SPACE
section NOUN
is AUX
on ADP
a DET
" PUNCT
custom NOUN
telescoping VERB
universal PROPN
mount PROPN
. PUNCT
" PUNCT
  SPACE
Each DET
section NOUN
    SPACE
independently ADV
adjusts VERB
to ADP
an DET
infinite ADJ
number NOUN
of ADP
positions NOUN
allowing VERB
each DET
    SPACE
individual NOUN
to PART
type VERB
in ADP
a DET
natural ADJ
posture NOUN
. PUNCT
  SPACE
You PRON
can AUX
rearrange VERB
the DET
three NUM
    SPACE
sections NOUN
, PUNCT
too ADV
( PUNCT
have AUX
the DET
keypad PROPN
in ADP
the DET
middle NOUN
if SCONJ
you PRON
want VERB
) PUNCT
. PUNCT
  SPACE
Each DET
    SPACE
section NOUN
is AUX
otherwise ADV
normal ADJ
- PUNCT
shaped ADJ
( PUNCT
i.e. X
: PUNCT
you PRON
put VERB
all DET
three NUM
sections NOUN
    SPACE
flat ADJ
, PUNCT
and CCONJ
you PRON
have AUX
what PRON
looks VERB
like SCONJ
a DET
normal ADJ
101-key NUM
keyboard).Kinesis NOUN
Ergonomic PROPN
Keyboard PROPN
   SPACE
206 NUM
- SYM
455 NUM
- PUNCT
9220 NUM
    SPACE
206 NUM
- SYM
455 NUM
- PUNCT
9233 NUM
( PUNCT
fax NOUN
) PUNCT
    SPACE
Kinesis PROPN
Corporation PROPN
    SPACE
15245 NUM
Pacific PROPN
Highway PROPN
South PROPN
, PUNCT
    SPACE
Seattle PROPN
, PUNCT
Washington PROPN
98188 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Shirley PROPN
Lunde PROPN
( PUNCT
VP PROPN
Marketing PROPN
-- PUNCT
contact NOUN
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
. PUNCT
  SPACE
Mac PROPN
and CCONJ
Sun PROPN
Sparc PROPN
in ADP
the DET
works NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
690 NUM
. PUNCT
  SPACE
Volume NOUN
discounts NOUN
available ADJ
. PUNCT
  SPACE
The DET
$ SYM
690 NUM
includes VERB
one NUM
foot NOUN
	 SPACE
pedal NOUN
, PUNCT
one NUM
set NOUN
of ADP
adhesive ADJ
wrist NOUN
pads NOUN
, PUNCT
and CCONJ
a DET
TypingTutor PROPN
program NOUN
. PUNCT
	 SPACE
An DET
additional ADJ
foot NOUN
pedal NOUN
and CCONJ
other ADJ
accessories NOUN
are AUX
extra ADJ
. PUNCT
    SPACE
The DET
layout NOUN
has AUX
a DET
large ADJ
blank ADJ
space NOUN
in ADP
the DET
middle NOUN
, PUNCT
even ADV
though SCONJ
the DET
    SPACE
keyboard NOUN
is AUX
about ADP
the DET
size NOUN
of ADP
a DET
normal ADJ
PC NOUN
keyboard NOUN
-- PUNCT
slightly ADV
    SPACE
smaller ADJ
. PUNCT
  SPACE
Each DET
hand NOUN
has AUX
its PRON
own ADJ
set NOUN
of ADP
keys NOUN
, PUNCT
laid VERB
out ADP
to PART
minimize VERB
    SPACE
finger NOUN
travel NOUN
. PUNCT
  SPACE
Thumb ADJ
buttons NOUN
handle VERB
many ADJ
major ADJ
functions NOUN
( PUNCT
enter VERB
, PUNCT
    SPACE
backspace NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
    SPACE
You PRON
can AUX
remap VERB
the DET
keyboard NOUN
in ADP
firmware ADJ
( PUNCT
very ADV
nice ADJ
when ADV
software NOUN
wo AUX
n't PART
    SPACE
allow VERB
the DET
reconfig NOUN
) PUNCT
. PUNCT
    SPACE
Foot PROPN
pedals NOUN
are AUX
also ADV
available ADJ
, PUNCT
and CCONJ
can AUX
be AUX
mapped VERB
to ADP
any DET
key NOUN
on ADP
the DET
    SPACE
keyboard NOUN
( PUNCT
shift NOUN
, PUNCT
control NOUN
, PUNCT
whatever).Maltron PROPN
		 SPACE
( PUNCT
+44 PROPN
) PUNCT
081 NUM
398 NUM
3265 NUM
( PUNCT
United PROPN
Kingdom PROPN
) PUNCT
    SPACE
P.C.D. PROPN
Maltron PROPN
Limited PROPN
    SPACE
15 NUM
Orchard PROPN
Lane PROPN
    SPACE
East PROPN
Molesey PROPN
    SPACE
Surrey PROPN
KT8 PROPN
OBN PROPN
    SPACE
England PROPN
    SPACE
Pamela PROPN
and CCONJ
Stephen PROPN
Hobday PROPN
( PUNCT
contacts NOUN
) PUNCT
    SPACE
U.S. PROPN
Distributor NOUN
: PUNCT
	 SPACE
Jim PROPN
Barrett PROPN
	 SPACE
Applied PROPN
Learning PROPN
Corp. PROPN
	 SPACE
1376 NUM
Glen PROPN
Hardie PROPN
Road PROPN
	 SPACE
Wayne PROPN
, PUNCT
PA PROPN
  SPACE
19087 NUM
	 SPACE
Phone NOUN
: PUNCT
215 NUM
- PUNCT
688 NUM
- SYM
6866 NUM
    SPACE
Supports NOUN
: PUNCT
PC NOUN
's PART
, PUNCT
Amstrad PROPN
1512/1640 NUM
, PUNCT
BBC PROPN
B PROPN
, PUNCT
BBC PROPN
Master PROPN
, PUNCT
	       SPACE
Mac PROPN
apparently ADV
now ADV
also ADV
available ADJ
    SPACE
Price NOUN
: PUNCT
375 NUM
pounds NOUN
	    SPACE
$ SYM
735 NUM
shipped VERB
in ADP
the DET
U.S.A. PROPN
( PUNCT
basically ADV
, PUNCT
converted VERB
price NOUN
+ CCONJ
shipping NOUN
) PUNCT
	    SPACE
The DET
cost NOUN
is AUX
less ADJ
for ADP
BBC PROPN
computers NOUN
, PUNCT
and CCONJ
they PRON
have AUX
a DET
number NOUN
of ADP
	    SPACE
accessories NOUN
, PUNCT
including VERB
carrying VERB
cases NOUN
, PUNCT
switch VERB
boxes NOUN
to PART
use VERB
both DET
	    SPACE
your PRON
normal ADJ
keyboard NOUN
and CCONJ
the DET
Maltron PROPN
, PUNCT
an DET
articulated ADJ
arm NOUN
that SCONJ
	    SPACE
clamps NOUN
on ADP
to ADP
your PRON
table NOUN
, PUNCT
and CCONJ
training NOUN
' PUNCT
courses NOUN
' PUNCT
to PART
help VERB
you PRON
learn VERB
	    SPACE
to PART
type VERB
on ADP
your PRON
Maltron PROPN
. PUNCT
	    SPACE
You PRON
can AUX
also ADV
rent VERB
a DET
keyboard NOUN
for ADP
10 NUM
pounds NOUN
/ SYM
week NOUN
+ CCONJ
taxes NOUN
. PUNCT
	    SPACE
U.S. PROPN
price NOUN
: PUNCT
$ SYM
120 NUM
/ SYM
month NOUN
, PUNCT
and CCONJ
then ADV
$ SYM
60 NUM
off ADP
purchase NOUN
if SCONJ
you PRON
want VERB
it PRON
. PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
( PUNCT
in ADP
your PRON
choice NOUN
of ADP
colors NOUN
: PUNCT
black ADJ
or CCONJ
grey NOUN
) PUNCT
        SPACE
Maltron PROPN
has AUX
four NUM
main ADJ
products NOUN
-- PUNCT
a DET
two NUM
- PUNCT
handed ADJ
keyboard NOUN
, PUNCT
two NUM
one NUM
- PUNCT
handed ADJ
    SPACE
keyboards NOUN
, PUNCT
and CCONJ
a DET
keyboard NOUN
designed VERB
for ADP
handicapped ADJ
people NOUN
to PART
control VERB
with ADP
    SPACE
a DET
mouth NOUN
- PUNCT
stick NOUN
. PUNCT
    SPACE
The DET
layout NOUN
allocates VERB
more ADJ
buttons NOUN
to ADP
the DET
thumbs NOUN
, PUNCT
and CCONJ
is AUX
curved VERB
to ADP
    SPACE
bring VERB
keys NOUN
closer ADV
to ADP
the DET
fingers NOUN
. PUNCT
  SPACE
A DET
separate ADJ
keypad NOUN
is AUX
in ADP
the DET
middle NOUN
. PUNCT
AccuKey PROPN
    SPACE
AccuCorp PROPN
, PUNCT
Inc. PROPN
    SPACE
P.O. PROPN
Box PROPN
66 NUM
    SPACE
Christiansburg PROPN
, PUNCT
VA PROPN
  SPACE
24073 NUM
, PUNCT
U.S.A. PROPN
     SPACE
703 NUM
- PUNCT
961 NUM
- PUNCT
3576 NUM
( PUNCT
Pete PROPN
Rosenquist PROPN
-- PUNCT
Sales NOUN
) PUNCT
    SPACE
703 NUM
- PUNCT
961 NUM
- PUNCT
2001 NUM
( PUNCT
Larry PROPN
Langley PROPN
-- PUNCT
President PROPN
) PUNCT
     SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
, PUNCT
Mac PROPN
, PUNCT
IBM PROPN
3270 NUM
, PUNCT
Sun PROPN
Sparc PROPN
, PUNCT
and CCONJ
TeleVideo PROPN
935 NUM
and CCONJ
955 NUM
. PUNCT
    SPACE
Cost NOUN
: PUNCT
$ SYM
495 NUM
+ CCONJ
shipping NOUN
. PUNCT
     SPACE
Does AUX
n't PART
use VERB
conventional ADJ
push NOUN
- PUNCT
keys NOUN
. PUNCT
  SPACE
Soft ADJ
rubber NOUN
keys NOUN
, PUNCT
which PRON
rock NOUN
    SPACE
forward ADV
and CCONJ
backward ADJ
( PUNCT
each DET
key NOUN
has AUX
three NUM
states NOUN
) PUNCT
, PUNCT
make VERB
chords NOUN
for ADP
    SPACE
typing NOUN
keys NOUN
. PUNCT
  SPACE
Learning VERB
time NOUN
is AUX
estimated VERB
to PART
be AUX
2 NUM
- SYM
3 NUM
hours NOUN
, PUNCT
for ADP
getting VERB
    SPACE
started VERB
, PUNCT
and CCONJ
maybe ADV
two NUM
weeks NOUN
to PART
get AUX
used ADJ
to ADP
it PRON
. PUNCT
    SPACE
Currently ADV
, PUNCT
the DET
thumbs NOUN
do AUX
n't PART
do AUX
anything PRON
, PUNCT
although SCONJ
a DET
thumb NOUN
- PUNCT
trackball NOUN
    SPACE
is AUX
in ADP
the DET
works NOUN
. PUNCT
     SPACE
The DET
company NOUN
claims VERB
it PRON
takes VERB
about ADV
a DET
week NOUN
of ADP
work NOUN
to PART
support VERB
a DET
    SPACE
new ADJ
computer NOUN
. PUNCT
  SPACE
They PRON
will AUX
be AUX
happy ADJ
to PART
adapt VERB
their PRON
keyboard NOUN
to PART
    SPACE
your PRON
computer NOUN
, PUNCT
if SCONJ
possible ADJ
. PUNCT
Twiddler NOUN
	 SPACE
516 NUM
- PUNCT
474 NUM
- PUNCT
4405 NUM
, PUNCT
or CCONJ
800 NUM
- PUNCT
638 NUM
- PUNCT
2352 NUM
    SPACE
Handykey PROPN
    SPACE
141 NUM
Mt. PROPN
Sinai PROPN
Ave PROPN
. PUNCT
    SPACE
Mt. PROPN
Sinai PROPN
, PUNCT
NY PROPN
11766 NUM
    SPACE
Chris PROPN
George PROPN
( PUNCT
President PROPN
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
now ADV
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
199 NUM
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
only ADV
. PUNCT
  SPACE
Mac PROPN
and CCONJ
X PROPN
Windows NOUN
in ADP
the DET
works NOUN
. PUNCT
    SPACE
The DET
Twiddler PROPN
is AUX
both DET
a DET
keyboard NOUN
and CCONJ
a DET
mouse NOUN
, PUNCT
and CCONJ
it PRON
fits VERB
in ADP
one NUM
hand NOUN
. PUNCT
    SPACE
You PRON
type VERB
via ADP
finger NOUN
chords NOUN
. PUNCT
  SPACE
Shift PROPN
, PUNCT
control NOUN
, PUNCT
etc X
. PUNCT
are AUX
thumb ADJ
buttons NOUN
. PUNCT
    SPACE
When ADV
in ADP
" PUNCT
mouse NOUN
" PUNCT
mode NOUN
, PUNCT
tilting VERB
the DET
Twiddler PROPN
moves VERB
the DET
mouse NOUN
, PUNCT
and CCONJ
mouse NOUN
    SPACE
buttons NOUN
are AUX
on ADP
your PRON
fingers NOUN
. PUNCT
    SPACE
The DET
cabling NOUN
leaves VERB
your PRON
normal ADJ
keyboard NOUN
available ADJ
, PUNCT
also ADV
. PUNCT
    SPACE
Most ADJ
applications NOUN
work VERB
, PUNCT
and CCONJ
Windows PROPN
works VERB
fine ADV
. PUNCT
  SPACE
DESQview PROPN
has AUX
trouble NOUN
. PUNCT
    SPACE
GEOWorks NOUN
also ADV
has AUX
trouble NOUN
-- PUNCT
mouse NOUN
works NOUN
, PUNCT
keyboard NOUN
doesn't PROPN
. PUNCT
Braille PROPN
' PART
n CCONJ
Speak PROPN
     SPACE
301 NUM
- PUNCT
879 NUM
- PUNCT
4944 NUM
    SPACE
Blazie PROPN
Engineering PROPN
    SPACE
3660 NUM
Mill PROPN
Green PROPN
Rd PROPN
. PUNCT
    SPACE
Street PROPN
, PUNCT
Md PROPN
21154 NUM
, PUNCT
U.S.A. PROPN
    SPACE
( PUNCT
information NOUN
provided VERB
by ADP
Doug PROPN
Martin PROPN
< X
martin@nosc.mil NOUN
> X
) PUNCT
    SPACE
The DET
Braille PROPN
N PROPN
Speak PROPN
uses VERB
any DET
of ADP
several ADJ
Braille PROPN
codes NOUN
for ADP
entering VERB
    SPACE
information NOUN
: PUNCT
Grade PROPN
I PROPN
, PUNCT
Grade PROPN
II PROPN
, PUNCT
or CCONJ
computer NOUN
Braille PROPN
. PUNCT
  SPACE
Basically ADV
, PUNCT
    SPACE
letters NOUN
a PROPN
- PUNCT
j PROPN
are AUX
combinations NOUN
of ADP
dots NOUN
1 NUM
, PUNCT
2 NUM
, PUNCT
4 NUM
, PUNCT
and CCONJ
5 NUM
. PUNCT
  SPACE
Letters PROPN
k PROPN
- PUNCT
t PROPN
are AUX
    SPACE
the DET
same ADJ
combinations NOUN
as SCONJ
a X
- PUNCT
j PROPN
with ADP
dot NOUN
3 NUM
added VERB
. PUNCT
Letters NOUN
u PROPN
, PUNCT
v NOUN
, PUNCT
x PROPN
, PUNCT
y PROPN
, PUNCT
and CCONJ
    SPACE
z NOUN
are AUX
like SCONJ
a DET
- PUNCT
e NOUN
with ADP
dots NOUN
3 NUM
and CCONJ
6 NUM
added VERB
. PUNCT
  SPACE
( PUNCT
w PROPN
is AUX
unique ADJ
because SCONJ
Louis PROPN
    SPACE
Braille PROPN
did AUX
n't PART
have AUX
a DET
w NOUN
in ADP
the DET
French ADJ
alphabet.)The PROPN
Tony PROPN
! PUNCT
Ergonomic PROPN
KeySystem PROPN
        SPACE
415 NUM
- PUNCT
969 NUM
- PUNCT
8669 NUM
    SPACE
Tony PROPN
Hodges PROPN
    SPACE
The DET
Tony PROPN
! PUNCT
Corporation NOUN
    SPACE
2332 NUM
Thompson PROPN
Court PROPN
    SPACE
Mountain PROPN
View PROPN
, PUNCT
CA PROPN
  SPACE
94043 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Supports VERB
: PUNCT
Mac PROPN
, PUNCT
PC NOUN
, PUNCT
IBM PROPN
3270 NUM
, PUNCT
Sun PROPN
, PUNCT
and CCONJ
DEC PROPN
. PUNCT
        SPACE
Shipping NOUN
: PUNCT
? PUNCT
? PUNCT
? PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
625 NUM
( PUNCT
you PRON
commit VERB
now ADV
, PUNCT
and CCONJ
then ADV
you PRON
're AUX
in ADP
line NOUN
to PART
buy VERB
the DET
    SPACE
keyboard NOUN
. PUNCT
  SPACE
When ADV
it PRON
ships VERB
, PUNCT
if SCONJ
it PRON
's AUX
cheaper ADJ
, PUNCT
you PRON
pay VERB
the DET
cheaper ADJ
price NOUN
. PUNCT
    SPACE
If SCONJ
it PRON
's AUX
more ADV
expensive ADJ
, PUNCT
you PRON
still ADV
pay VERB
$ SYM
625 NUM
) PUNCT
    SPACE
The DET
Tony PROPN
! PUNCT
should AUX
allow VERB
separate ADJ
positioning NOUN
of ADP
every DET
key NOUN
, PUNCT
to PART
allow VERB
    SPACE
the DET
keyboard NOUN
to PART
be AUX
personally ADV
customized VERB
. PUNCT
  SPACE
A DET
thumb NOUN
- PUNCT
operated VERB
mouse NOUN
    SPACE
will AUX
also ADV
be AUX
available ADJ
. PUNCT
The DET
Vertical ADJ
    SPACE
Contact NOUN
: PUNCT
Jeffrey PROPN
Spencer PROPN
or CCONJ
Stephen PROPN
Albert PROPN
, PUNCT
619 NUM
- PUNCT
454 NUM
- PUNCT
0000 NUM
    SPACE
P.O. PROPN
Box PROPN
2636 NUM
    SPACE
La PROPN
Jolla PROPN
, PUNCT
CA PROPN
  SPACE
92038 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Supports VERB
: PUNCT
no DET
info NOUN
available ADJ
, PUNCT
probably ADV
PC PROPN
's PART
    SPACE
Available ADJ
: PUNCT
Summer NOUN
, PUNCT
1993 NUM
    SPACE
Price NOUN
: PUNCT
$ SYM
249 NUM
    SPACE
The DET
Vertical PROPN
Keyboard PROPN
is AUX
split VERB
in ADP
two NUM
halves NOUN
, PUNCT
each DET
pointing VERB
straight ADV
up ADV
. PUNCT
    SPACE
The DET
user NOUN
can AUX
adjust VERB
the DET
width NOUN
of ADP
the DET
device NOUN
, PUNCT
but CCONJ
not PART
the DET
tilt NOUN
of ADP
each DET
    SPACE
section NOUN
. PUNCT
  SPACE
Side NOUN
- PUNCT
view NOUN
mirrors NOUN
are AUX
installed VERB
to PART
allow VERB
users NOUN
to PART
see VERB
their PRON
    SPACE
fingers NOUN
on ADP
the DET
keys NOUN
. PUNCT
The DET
MIKey PROPN
     SPACE
301 NUM
- PUNCT
933 NUM
- PUNCT
1111 NUM
    SPACE
Dr. PROPN
Alan PROPN
Grant PROPN
    SPACE
3208 NUM
Woodhollow PROPN
Drive PROPN
    SPACE
Chevy PROPN
Chase PROPN
, PUNCT
Maryland PROPN
20815 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Shipping NOUN
: PUNCT
As SCONJ
of ADP
July PROPN
, PUNCT
1992 NUM
: PUNCT
" PUNCT
Should AUX
be AUX
Available ADJ
in ADP
One NUM
Year PROPN
. PUNCT
" PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
, PUNCT
Mac PROPN
( PUNCT
maybe ADV
) PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
200 NUM
( PUNCT
estimated VERB
) PUNCT
    SPACE
The DET
keyboard NOUN
is AUX
at ADP
a DET
fixed VERB
angle NOUN
, PUNCT
and CCONJ
incorporates VERB
a DET
built VERB
- PUNCT
in ADP
mouse NOUN
    SPACE
operated VERB
by ADP
the DET
thumbs NOUN
. PUNCT
  SPACE
Function NOUN
keys NOUN
are AUX
arranged VERB
in ADP
a DET
circle NOUN
at ADP
    SPACE
the DET
keyboard NOUN
's PART
left VERB
. PUNCT
The DET
Wave PROPN
	 SPACE
( PUNCT
was AUX
: PUNCT
213- X
) PUNCT
  SPACE
310 NUM
- PUNCT
644 NUM
- PUNCT
6100 NUM
    SPACE
FAX NOUN
: PUNCT
310 NUM
- PUNCT
644 NUM
- PUNCT
6068 NUM
    SPACE
Iocomm PROPN
International PROPN
Technology PROPN
    SPACE
12700 NUM
Yukon PROPN
Avenue PROPN
    SPACE
Hawthorne PROPN
, PUNCT
California PROPN
90250 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Robin PROPN
Hunter PROPN
( PUNCT
contact NOUN
-- PUNCT
in ADP
sales NOUN
) PUNCT
    SPACE
Cost NOUN
: PUNCT
$ SYM
99.95 NUM
+ SYM
$ SYM
15 NUM
for ADP
a DET
set NOUN
of ADP
cables NOUN
    SPACE
Supports NOUN
: PUNCT
PC NOUN
only ADV
. PUNCT
    SPACE
Shipping NOUN
: PUNCT
now ADV
. PUNCT
    SPACE
Iocomm PROPN
also ADV
manufactures VERB
" PUNCT
ordinary ADJ
" PUNCT
101-key NUM
keyboard NOUN
( PUNCT
PC PROPN
/ SYM
AT PROPN
) PUNCT
and CCONJ
    SPACE
84-key NUM
keyboard NOUN
( PUNCT
PC PROPN
/ SYM
XT PROPN
) PUNCT
, PUNCT
so ADV
make VERB
sure ADJ
you PRON
get VERB
the DET
right ADJ
one NOUN
. PUNCT
    SPACE
The DET
one NUM
- PUNCT
piece NOUN
keyboard NOUN
has AUX
a DET
built VERB
- PUNCT
in ADP
wrist NOUN
- PUNCT
rest NOUN
. PUNCT
  SPACE
It PRON
looks VERB
* PUNCT
exactly ADV
* PUNCT
    SPACE
like SCONJ
a DET
normal ADJ
101-key NUM
PC NOUN
keyboard NOUN
, PUNCT
with ADP
two NUM
inches NOUN
of ADP
built VERB
- PUNCT
in ADP
wrist NOUN
    SPACE
rest NOUN
. PUNCT
  SPACE
The DET
key ADJ
switch NOUN
feel NOUN
is AUX
reported VERB
to PART
be AUX
greatly ADV
improved VERB
. PUNCT
    SPACE
The DET
Minimal PROPN
Motion PROPN
Computer PROPN
Access PROPN
System PROPN
	 SPACE
508 NUM
- SYM
263 NUM
- PUNCT
6437 NUM
    SPACE
508 NUM
- PUNCT
263 NUM
- PUNCT
6537 NUM
( PUNCT
fax NOUN
) PUNCT
    SPACE
Equal PROPN
Access PROPN
Computer PROPN
Technology PROPN
    SPACE
Dr. PROPN
Michael PROPN
Weinreigh PROPN
    SPACE
39 NUM
Oneida PROPN
Rd PROPN
. PROPN
    SPACE
Acton PROPN
, PUNCT
MA PROPN
  SPACE
01720 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Price NOUN
: PUNCT
InfoGrip PROPN
- PUNCT
compatible ADJ
: PUNCT
" PUNCT
a DET
few ADJ
hundred NUM
dollars NOUN
" PUNCT
+ CCONJ
a DET
one NUM
- PUNCT
handed VERB
Bat PROPN
	   SPACE
For ADP
their PRON
own ADJ
system NOUN
: PUNCT
$ SYM
300 NUM
( PUNCT
DOS PROPN
software NOUN
) PUNCT
+ PUNCT
" PUNCT
a DET
few ADJ
hundred NUM
dollars NOUN
" PUNCT
        SPACE
Shipping NOUN
: PUNCT
these DET
are AUX
custom NOUN
- PUNCT
made VERB
, PUNCT
so ADV
an DET
occupational ADJ
therapist NOUN
would AUX
	   SPACE
make VERB
moulds NOUN
/ SYM
do AUX
whatever PRON
to PART
make VERB
it PRON
for ADP
you PRON
. PUNCT
  SPACE
You PRON
can AUX
buy VERB
one NOUN
now ADV
. PUNCT
        SPACE
Supports PROPN
: PUNCT
PC NOUN
only ADV
, PUNCT
although SCONJ
the DET
InfoGrip PROPN
- PUNCT
compatible ADJ
version NOUN
might AUX
	   SPACE
work VERB
with ADP
a DET
Mac PROPN
. PROPN
    SPACE
In ADP
a DET
one NUM
- PUNCT
handed ADJ
version NOUN
, PUNCT
there PRON
is AUX
exactly ADV
one NUM
button NOUN
per ADP
finger NOUN
. PUNCT
  SPACE
In ADP
a DET
    SPACE
two NUM
- PUNCT
handed ADJ
version NOUN
, PUNCT
you PRON
get VERB
four NUM
buttons NOUN
per ADP
finger NOUN
, PUNCT
and CCONJ
the DET
thumbs NOUN
    SPACE
do AUX
n't PART
do AUX
anything PRON
. PUNCT
  SPACE
You PRON
can AUX
also ADV
get AUX
one NUM
- PUNCT
handed ADJ
versions NOUN
with ADP
three NUM
    SPACE
thumb NOUN
buttons NOUN
-- PUNCT
compatible ADJ
with ADP
the DET
InfoGrip PROPN
Bat PROPN
. PUNCT
  SPACE
Basically ADV
, PUNCT
get AUX
it PRON
    SPACE
any DET
way NOUN
you PRON
want VERB
. PUNCT
    SPACE
They PRON
also ADV
have AUX
a DET
software NOUN
tutorial ADJ
to PART
help VERB
you PRON
learn VERB
the DET
chording NOUN
. PUNCT
    SPACE
Works VERB
on ADP
a DET
PC NOUN
under ADP
DOS PROPN
, PUNCT
not PART
Windows PROPN
. PUNCT
  SPACE
Planning VERB
on ADP
Macintosh PROPN
and CCONJ
    SPACE
PC PROPN
/ SYM
Windows PROPN
support NOUN
. PUNCT
  SPACE
No DET
work NOUN
has AUX
been AUX
done VERB
on ADP
a DET
Unix PROPN
version NOUN
, PUNCT
yet ADV
. PUNCT
Half PROPN
- PUNCT
QWERTY PROPN
	 SPACE
( PUNCT
Canada PROPN
) PUNCT
416 NUM
- SYM
749 NUM
- PUNCT
3124 NUM
    SPACE
The DET
Matias PROPN
Corporation PROPN
    SPACE
178 NUM
Thistledown PROPN
Boulevard PROPN
    SPACE
Rexdale PROPN
, PUNCT
Ontario PROPN
, PUNCT
Canada PROPN
    SPACE
M9V PROPN
1K1 NUM
    SPACE
E NOUN
- NOUN
mail NOUN
: PUNCT
ematias@dgp.toronto.edu PROPN
    SPACE
Supports VERB
: PUNCT
Mac PROPN
and CCONJ
PC PROPN
( PUNCT
but CCONJ
, PUNCT
not PART
Windows PROPN
) PUNCT
    SPACE
Demo VERB
for ADP
anonymous ADJ
ftp NOUN
: PUNCT
explorer.dgp.toronto.edu:/pub/Half-QWERTY PROPN
	     SPACE
|| PROPN
    SPACE
Price NOUN
: PUNCT
   SPACE
$ SYM
129.95 NUM
( PUNCT
higher ADJ
in ADP
Canada PROPN
, PUNCT
quantity NOUN
discounts NOUN
available ADJ
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
        SPACE
This DET
thing NOUN
is AUX
purely ADV
software NOUN
. PUNCT
  SPACE
No DET
hardware NOUN
at ADV
all ADV
. PUNCT
    SPACE
The DET
software NOUN
will AUX
mirror VERB
the DET
keyboard NOUN
when ADV
you PRON
hold VERB
down ADP
the DET
space NOUN
    SPACE
bar NOUN
, PUNCT
allowing VERB
you PRON
type VERB
one NUM
- PUNCT
handed ADJ
. PUNCT
Octima NOUN
	 SPACE
( PUNCT
Israel PROPN
) PUNCT
972 NUM
- SYM
4 NUM
- SYM
5322844 NUM
    SPACE
FAX NOUN
: PUNCT
( PUNCT
+972 PROPN
) PUNCT
3 NUM
5322970 NUM
    SPACE
Ergoplic PROPN
Keyboards PROPN
Ltd. PROPN
    SPACE
P.O. PROPN
Box PROPN
31 NUM
    SPACE
Kiryat PROPN
Ono PROPN
55100 NUM
, PUNCT
Israel PROPN
    SPACE
( PUNCT
info NOUN
from ADP
Mandy PROPN
Jaffe PROPN
- PUNCT
Katz PROPN
< X
RXHFUN@HAIFAUVM.BITNET PROPN
> X
) PUNCT
    SPACE
A DET
one NUM
- PUNCT
handed ADJ
keyboard NOUN
. PUNCT
Microwriter PROPN
AgendA PROPN
( PUNCT
U.K. PROPN
) PUNCT
( PUNCT
+44 PROPN
) PUNCT
276 NUM
692 NUM
084 NUM
    SPACE
FAX NOUN
: PUNCT
( PUNCT
+44 PROPN
) PUNCT
276 NUM
691 NUM
826 NUM
    SPACE
Microwriter PROPN
Systems PROPN
plc PROPN
    SPACE
M.S.A. PROPN
House PROPN
    SPACE
2 NUM
Albany PROPN
Court PROPN
    SPACE
Albany PROPN
Park PROPN
    SPACE
Frimley PROPN
    SPACE
Surrey PROPN
GU15 PROPN
2XA NUM
, PUNCT
United PROPN
Kingdom PROPN
    SPACE
( PUNCT
Info PROPN
from ADP
Carroll PROPN
Morgan PROPN
< X
Carroll.Morgan@prg.oxford.ac.uk ADV
> X
) PUNCT
    SPACE
The DET
AgendA PROPN
is AUX
a DET
personal ADJ
desktop NOUN
assistant NOUN
( PUNCT
PDA PROPN
) PUNCT
style NOUN
machine NOUN
. PUNCT
  SPACE
You PRON
    SPACE
can AUX
carry VERB
it PRON
along ADP
with ADP
you PRON
. PUNCT
  SPACE
It PRON
has AUX
chording VERB
input NOUN
. PUNCT
  SPACE
You PRON
can AUX
also ADV
    SPACE
hook VERB
it PRON
up ADP
to ADP
your PRON
PC NOUN
, PUNCT
or CCONJ
even ADV
program VERB
it PRON
. PUNCT
    SPACE
It PRON
costs VERB
just ADV
under ADP
200 NUM
pounds NOUN
, PUNCT
with ADP
128 NUM
K NOUN
memory.===========Thanks NOUN
go VERB
to ADP
Chris PROPN
Bekins PROPN
< X
AS.CCB@forsythe.stanford.edu PROPN
> X
for ADP
providingthe ADJ
basis NOUN
for ADP
this DET
information NOUN
. PUNCT
Thanks NOUN
to ADP
the DET
numerous ADJ
contributors NOUN
: PUNCT
Doug PROPN
Martin PROPN
< X
martin@nosc.mil>Carroll ADJ
Morgan PROPN
< X
Carroll.Morgan@prg.oxford.ac.uk>Mandy PROPN
Jaffe PROPN
- PUNCT
Katz PROPN
< X
RXHFUN@HAIFAUVM.BITNET NOUN
> X
Wes PROPN
Hunter PROPN
< X
Wesley PROPN
. PUNCT
Hunter@AtlantaGA.NCR.com PROPN
> X
Paul PROPN
Schwartz PROPN
< X
pschwrtz@cs.washington.edu PROPN
> X
H.J. PROPN
Woltring PROPN
< X
WOLTRING@NICI.KUN.NL X
> X
Dan PROPN
Sorenson PROPN
< X
viking@iastate.edu>Chris PROPN
VanHaren NOUN
< X
vanharen@MIT.EDU PUNCT
> X
Ravi PROPN
Pandya PROPN
< X
ravi@xanadu.com>Leonard PROPN
H. PROPN
Tower PROPN
Jr. PROPN
< X
tower@ai.mit.edu>Dan PROPN
Jacobson PROPN
< X
Dan_Jacobson@ATT.COM NOUN
> X
Jim PROPN
Cheetham PROPN
  SPACE
< X
jim@oasis.icl.co.uk>Cliff PROPN
Lasser PROPN
< X
cal@THINK.COM PROPN
> X
Richard PROPN
Donkin PROPN
< X
richardd@hoskyns.co.uk>Paul PROPN
Rubin PROPN
< X
phr@napa PRON
. PUNCT
Telebit NOUN
. PUNCT
COM NOUN
> X
David PROPN
Erb PROPN
< X
erb@fullfeed.com>Bob ADJ
Scheifler NOUN
< X
rws@expo.lcs.mit.edu>Chris PROPN
Grant NOUN
< X
Chris.Grant@um.cc.umich.edu>Scott PUNCT
Mandell PROPN
< X
sem1@postoffice.mail.cornell.edu>and ADV
everybody PRON
else ADV
who PRON
I PRON
've AUX
probably ADV
managed VERB
to PART
forget VERB
. PUNCT
The DET
opinions NOUN
in ADP
here ADV
are AUX
my PRON
own ADJ
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
and CCONJ
do AUX
notrepresent VERB
the DET
opinions NOUN
of ADP
any DET
organization NOUN
or CCONJ
vendor.-- PROPN
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58569From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
4/4 NUM
) PUNCT
: PUNCT
Software NOUN
Monitoring PROPN
Tools PROPN
[ PUNCT
monthly ADJ
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
softwareVersion NOUN
: PUNCT
1.8 NUM
, PUNCT
7th ADJ
December PROPN
1992This NUM
FAQ PROPN
is AUX
actually ADV
maintained VERB
by ADP
Richard PROPN
Donkin PROPN
< X
richardd@hoskyns.co.uk>.I INTJ
post VERB
it PRON
, PUNCT
along ADP
with ADP
the DET
other ADJ
FAQ PROPN
stuff NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
questions NOUN
, PUNCT
you PRON
wantto NOUN
send VERB
mail NOUN
to ADP
Richard PROPN
, PUNCT
not PART
me PRON
. PUNCT
  SPACE
-- PUNCT
Dan PROPN
 		     SPACE
Software PROPN
Tools PROPN
to PART
help VERB
with ADP
RSI PROPN
		     SPACE
------------------------------- PUNCT
This DET
file NOUN
describes VERB
tools NOUN
, PUNCT
primarily ADV
software NOUN
, PUNCT
to PART
help VERB
prevent VERB
or CCONJ
manage VERB
RSI.This X
version NOUN
now ADV
includes VERB
information NOUN
on ADP
such ADJ
diverse ADJ
tools NOUN
as SCONJ
calendarprograms NOUN
and CCONJ
digital ADJ
watches NOUN
... PUNCT
Please INTJ
let VERB
me PRON
know VERB
if SCONJ
you PRON
know VERB
any DET
other ADJ
tools NOUN
, PUNCT
or CCONJ
if SCONJ
you PRON
have AUX
informationor NOUN
opinions NOUN
on ADP
these DET
ones NOUN
, PUNCT
and CCONJ
I PRON
will AUX
update VERB
this DET
FAQ.I PROPN
am AUX
especially ADV
interested ADJ
in ADP
getting VERB
reviews NOUN
of ADP
these DET
products NOUN
from ADP
peoplewho PROPN
have AUX
evaluated VERB
them PRON
or CCONJ
are AUX
using VERB
them PRON
. PUNCT
   SPACE
Richard PROPN
Donkin PROPN
                           SPACE
Internet NOUN
mail NOUN
: PUNCT
richardd@hoskyns.co.uk PUNCT
              SPACE
Tel PROPN
: PUNCT
+44 PROPN
71 NUM
814 NUM
5708 NUM
( PUNCT
direct)Fax NOUN
: PUNCT
+44 PROPN
71 NUM
251 NUM
2853Changes NUM
in ADP
this DET
version NOUN
: PUNCT
     SPACE
Added VERB
information NOUN
on ADP
StressFree PROPN
, PUNCT
another DET
typing NOUN
management NOUN
tool NOUN
      SPACE
for ADP
Windows PROPN
. PUNCT
TYPING NOUN
MANAGEMENT NOUN
TOOLS NOUN
: PUNCT
these DET
aim VERB
to PART
help VERB
you PRON
manage VERB
your PRON
keyboard NOUN
use NOUN
, PUNCT
by ADP
warning VERB
you PRON
to PART
take VERB
a DET
break NOUN
every DET
so ADV
often ADV
. PUNCT
  SPACE
The DET
better ADJ
ones NOUN
also ADV
includeadvice VERB
on ADP
exercises NOUN
, PUNCT
posture NOUN
and CCONJ
workstation NOUN
setup NOUN
. PUNCT
  SPACE
Some DET
use VERB
sound ADJ
hardware NOUN
to PART
warn VERB
of ADP
a DET
break NOUN
, PUNCT
others NOUN
use VERB
beeps NOUN
or CCONJ
screen NOUN
messages NOUN
. PUNCT
Often ADV
, PUNCT
RSI PROPN
appears VERB
only ADV
after ADP
many ADJ
years NOUN
of ADP
typing NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
hasa PROPN
delayed VERB
action NOUN
in ADP
the DET
short ADJ
term NOUN
too ADV
: PUNCT
frequently ADV
you PRON
can AUX
be AUX
typingall NUM
day NOUN
with ADP
little ADJ
problem NOUN
and CCONJ
the DET
pain NOUN
gets VERB
worse ADJ
in ADP
the DET
evening NOUN
. PUNCT
These DET
tools NOUN
act VERB
as SCONJ
an DET
early ADJ
warning NOUN
system NOUN
: PUNCT
by ADP
listening VERB
to ADP
theirwarnings NOUN
and CCONJ
taking VERB
breaks NOUN
with ADP
exercises NOUN
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
wait VERB
for ADP
your PRON
body NOUN
to PART
give VERB
you PRON
a DET
more ADV
serious ADJ
and CCONJ
painful ADJ
warning NOUN
- PUNCT
that ADV
is ADV
, PUNCT
getting VERB
RSI PROPN
. PUNCT
     SPACE
Tool NOUN
: PUNCT
At ADP
Your PRON
Service NOUN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Bright PROPN
Star PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
206 NUM
) PUNCT
451 NUM
3697 NUM
    SPACE
Platforms NOUN
: PUNCT
Mac PROPN
( PUNCT
System PROPN
6.0.4 PROPN
) PUNCT
, PUNCT
Windows PROPN
    SPACE
Description NOUN
: PUNCT
	 SPACE
Provides VERB
calendar NOUN
, PUNCT
keyboard NOUN
watch NOUN
, PUNCT
email NOUN
watch NOUN
, PUNCT
and CCONJ
system NOUN
info NOUN
. PUNCT
	 SPACE
Warns PROPN
when ADV
to PART
take VERB
a DET
break NOUN
( PUNCT
configurable NOUN
) PUNCT
. PUNCT
  SPACE
Has AUX
a DET
few ADJ
recommendations NOUN
	 SPACE
on ADP
posture NOUN
, PUNCT
and CCONJ
exercises NOUN
. PUNCT
  SPACE
Sound NOUN
- PUNCT
oriented VERB
, PUNCT
will AUX
probably ADV
work VERB
best ADV
	 SPACE
with ADP
sound NOUN
card NOUN
( PUNCT
PC NOUN
) PUNCT
or CCONJ
with ADP
microphone NOUN
( PUNCT
Mac PROPN
) PUNCT
. PUNCT
  SPACE
Should AUX
be AUX
possible ADJ
	 SPACE
to PART
record VERB
your PRON
own ADJ
messages NOUN
to PART
warn VERB
of ADP
break NOUN
. PUNCT
     SPACE
Tool PROPN
: PUNCT
AudioPort PROPN
( PUNCT
sound NOUN
card NOUN
and CCONJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Media NOUN
Vision PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
510 NUM
) PUNCT
226 NUM
2563 NUM
    SPACE
Platforms NOUN
: PUNCT
PC NOUN
    SPACE
Description NOUN
: PUNCT
	 SPACE
A DET
sound NOUN
card NOUN
to PART
plug VERB
into ADP
your PRON
PC NOUN
parallel ADJ
port NOUN
. PUNCT
	 SPACE
Includes VERB
' PUNCT
At ADP
Your PRON
Service NOUN
' PUNCT
. PUNCT
     SPACE
Tool PROPN
: PUNCT
Computer PROPN
Health PROPN
Break PROPN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Escape PROPN
Ergonomics PROPN
, PUNCT
Inc PROPN
	 SPACE
1111 NUM
W. PROPN
El PROPN
Camino PROPN
Real PROPN
	 SPACE
Suite NOUN
109 NUM
	 SPACE
Mailstop PROPN
403 NUM
	 SPACE
Sunnyvale PROPN
, PUNCT
CA PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
408 NUM
) PUNCT
730 NUM
8410 NUM
    SPACE
Platforms NOUN
: PUNCT
DOS PROPN
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
, PUNCT
this DET
program NOUN
warns VERB
you PRON
to PART
take VERB
	 SPACE
breaks NOUN
after ADP
a DET
configurable ADJ
interval NOUN
, PUNCT
based VERB
on ADP
clock NOUN
time NOUN
, PUNCT
or CCONJ
	 SPACE
after ADP
a DET
set VERB
number NOUN
of ADP
keystrokes NOUN
-- PUNCT
whichever PRON
is AUX
earlier ADJ
. PUNCT
	 SPACE
It PRON
gives VERB
you PRON
3 NUM
exercises NOUN
to PART
do AUX
each DET
time NOUN
, PUNCT
randomly ADV
selected VERB
from ADP
	 SPACE
a DET
set NOUN
of ADP
70 NUM
. PUNCT
  SPACE
Exercises NOUN
are AUX
apparently ADV
tuned VERB
to ADP
the DET
type NOUN
of ADP
work NOUN
	 SPACE
you PRON
do AUX
- PUNCT
data NOUN
entry NOUN
, PUNCT
word NOUN
processing NOUN
, PUNCT
information NOUN
processing NOUN
. PUNCT
	 SPACE
Exercises NOUN
are AUX
illustrated VERB
and CCONJ
include VERB
quite DET
a DET
lot NOUN
of ADP
text NOUN
on ADP
	 SPACE
how ADV
to PART
do AUX
the DET
exercise NOUN
and CCONJ
on ADP
what PRON
exactly ADV
the DET
exercise NOUN
does AUX
. PUNCT
	 SPACE
CHB PROPN
includes VERB
hypertext ADJ
information NOUN
on ADP
RSI PROPN
that SCONJ
you PRON
can AUX
use VERB
	 SPACE
to PART
learn VERB
more ADJ
about ADP
RSI PROPN
and CCONJ
how ADV
to PART
prevent VERB
it PRON
. PUNCT
  SPACE
Other ADJ
information NOUN
	 SPACE
on ADP
non ADJ
- ADJ
RSI ADJ
topics NOUN
can AUX
be AUX
plugged VERB
into ADP
this DET
hypertext ADJ
viewer NOUN
. PUNCT
	 SPACE
A DET
full ADJ
glossary NOUN
of ADP
medical ADJ
terms NOUN
and CCONJ
jargon PROPN
is AUX
included VERB
. PUNCT
	 SPACE
CHB PROPN
can AUX
be AUX
run VERB
in ADP
a DET
DOS PROPN
box NOUN
under ADP
Windows PROPN
, PUNCT
but CCONJ
does AUX
not PART
then ADV
	 SPACE
warn VERB
you PRON
when ADV
to PART
take VERB
a DET
break NOUN
; PUNCT
it PRON
does AUX
not PART
therefore ADV
appear VERB
	 SPACE
useful ADJ
when ADV
used VERB
with ADP
Windows PROPN
. PUNCT
	 SPACE
Cost NOUN
: PUNCT
$ SYM
79.95 NUM
; PUNCT
quantity NOUN
discounts NOUN
, PUNCT
site NOUN
licenses NOUN
. PUNCT
    SPACE
Comments NOUN
: PUNCT
	 SPACE
The DET
keystroke NOUN
- PUNCT
counting VERB
approach NOUN
looks VERB
good ADJ
: PUNCT
it PRON
seems VERB
better ADV
	 SPACE
to PART
measure VERB
the DET
activity NOUN
that PRON
is AUX
causing VERB
you PRON
problems NOUN
than SCONJ
to ADP
	 SPACE
measure NOUN
clock NOUN
time NOUN
or CCONJ
even ADV
typing NOUN
time NOUN
. PUNCT
  SPACE
The DET
marketing NOUN
stuff NOUN
	 SPACE
is AUX
very ADV
good ADJ
and CCONJ
includes VERB
some DET
summaries NOUN
of ADP
research NOUN
papers NOUN
, PUNCT
	 SPACE
as ADV
well ADV
as SCONJ
lots NOUN
of ADP
arguments NOUN
you PRON
can AUX
use VERB
to PART
get AUX
your PRON
company NOUN
	 SPACE
to PART
pay VERB
up ADP
for ADP
RSI PROPN
management NOUN
tools NOUN
. PUNCT
      SPACE
Tool PROPN
: PUNCT
EyerCise NOUN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
RAN PROPN
Enterprises PROPN
	 SPACE
One NUM
Woodland PROPN
Park PROPN
Dr. PROPN
	 SPACE
Haverhill PROPN
, PUNCT
MA PROPN
  SPACE
01830 NUM
, PUNCT
US PROPN
	 SPACE
Tel NOUN
: PUNCT
800 NUM
- NUM
451 NUM
- PUNCT
4487 NUM
( PUNCT
US PROPN
only ADV
) PUNCT
    SPACE
Platforms NOUN
: PUNCT
Windows PROPN
( PUNCT
3.0/3.1 PROPN
) PUNCT
, PUNCT
OS/2 PROPN
PM PROPN
( PUNCT
1.3/2.0 PROPN
) PUNCT
[ PUNCT
Not PART
DOS PROPN
] PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
and CCONJ
eye NOUN
strain NOUN
, PUNCT
this DET
program NOUN
warns VERB
you PRON
to PART
take VERB
	 SPACE
breaks NOUN
after ADP
a DET
configurable ADJ
interval NOUN
( PUNCT
or CCONJ
at ADP
fixed VERB
times NOUN
) PUNCT
. PUNCT
Optionally ADV
	 SPACE
displays NOUN
descriptions NOUN
and CCONJ
pictures NOUN
of ADP
exercises NOUN
- PUNCT
pictures NOUN
are AUX
	 SPACE
animated VERB
and CCONJ
program NOUN
beeps NOUN
you PRON
to PART
help VERB
you PRON
do AUX
exercises NOUN
at ADP
the DET
	 SPACE
correct ADJ
rate NOUN
. PUNCT
  SPACE
Includes VERB
19 NUM
stretches NOUN
and CCONJ
4 NUM
visual ADJ
training NOUN
	 SPACE
exercises NOUN
, PUNCT
can AUX
configure VERB
which PRON
are AUX
included VERB
and CCONJ
how ADV
many ADJ
repetitions NOUN
	 SPACE
you PRON
do AUX
- PUNCT
breaks NOUN
last ADJ
from ADP
3 NUM
to ADP
7 NUM
minutes NOUN
. PUNCT
  SPACE
Also ADV
includes VERB
online ADJ
help NOUN
	 SPACE
on ADP
workplace ADJ
ergonomics NOUN
. PUNCT
 	 SPACE
Quote INTJ
from ADP
their PRON
literature NOUN
: PUNCT
	 SPACE
" PUNCT
EyerCise NOUN
is AUX
a DET
Windows PROPN
program NOUN
that PRON
breaks VERB
up ADP
your PRON
day NOUN
with ADP
periodic ADJ
	 SPACE
sets NOUN
of ADP
stretches NOUN
and CCONJ
visual ADJ
training NOUN
exercises NOUN
. PUNCT
  SPACE
The DET
stretches NOUN
work NOUN
	 SPACE
all DET
parts NOUN
of ADP
your PRON
body NOUN
, PUNCT
relieving VERB
tension NOUN
and CCONJ
helping VERB
to PART
prevent VERB
	 SPACE
Repetitive PROPN
Strain PROPN
Injury PROPN
. PUNCT
  SPACE
The DET
visual ADJ
training NOUN
exercises NOUN
will AUX
improve VERB
	 SPACE
your PRON
peripheral ADJ
vision NOUN
and CCONJ
help VERB
to PART
relieve VERB
eye NOUN
strain NOUN
. PUNCT
  SPACE
Together ADV
these DET
	 SPACE
help VERB
you PRON
to PART
become VERB
more ADV
relaxed ADJ
and CCONJ
productive ADJ
. PUNCT
" PUNCT
	 SPACE
" PUNCT
The DET
package NOUN
includes VERB
the DET
book NOUN
_ ADP
Computers PROPN
& CCONJ
Visual PROPN
Stress PROPN
_ PROPN
by ADP
Edward PROPN
C. PROPN
	 SPACE
Godnig PROPN
, PUNCT
O.D. PROPN
and CCONJ
John PROPN
S. PROPN
Hacunda PROPN
, PUNCT
which PRON
describes VERB
the DET
ergonomic ADJ
setup NOUN
	 SPACE
for ADP
a DET
computer NOUN
workstation NOUN
and CCONJ
provides VERB
procedures NOUN
and CCONJ
exercises NOUN
to PART
	 SPACE
promote VERB
healthy ADJ
and CCONJ
efficient ADJ
computer NOUN
use NOUN
. PUNCT
		 SPACE
Cost NOUN
: PUNCT
$ SYM
69.95 NUM
including VERB
shipping NOUN
and CCONJ
handling NOUN
, PUNCT
quantity NOUN
discounts NOUN
	 SPACE
for ADP
resellers NOUN
. PUNCT
  SPACE
Free ADJ
demo NOUN
( PUNCT
$ SYM
5 NUM
outside ADP
US PROPN
) PUNCT
. PUNCT
     SPACE
Comments NOUN
: PUNCT
	 SPACE
I PRON
have AUX
a DET
copy NOUN
of ADP
this DET
, PUNCT
and CCONJ
it PRON
works VERB
as SCONJ
advertised VERB
: PUNCT
I PRON
would AUX
say VERB
	 SPACE
it PRON
is AUX
better ADJ
for ADP
RSI PROPN
prevention NOUN
than SCONJ
RSI PROPN
management NOUN
, PUNCT
because SCONJ
it PRON
	 SPACE
does AUX
not PART
allow VERB
breaks NOUN
at ADP
periods NOUN
less ADJ
than SCONJ
30 NUM
minutes NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
	 SPACE
interrupts NOUN
you PRON
based VERB
on ADP
clock NOUN
time NOUN
rather ADV
than SCONJ
typing VERB
time NOUN
, PUNCT
which PRON
	 SPACE
is AUX
not PART
so ADV
helpful ADJ
unless SCONJ
you PRON
use VERB
the DET
keyboard NOUN
all DET
day NOUN
. PUNCT
  SPACE
Worked VERB
OK INTJ
on ADP
	 SPACE
Windows PROPN
3.0 NUM
though SCONJ
it PRON
did AUX
occasionally ADV
crash VERB
with ADP
a DET
UAE PROPN
- PUNCT
not PART
sure ADJ
	 SPACE
why ADV
. PUNCT
Also ADV
refused VERB
to PART
work VERB
with ADP
the DET
space NOUN
bar NOUN
on ADP
one NUM
PC NOUN
, PUNCT
and CCONJ
has AUX
	 SPACE
one NUM
window NOUN
without ADP
window NOUN
controls NOUN
. PUNCT
  SPACE
Very ADV
usable ADJ
though ADV
, PUNCT
and CCONJ
does AUX
not PART
	 SPACE
require VERB
any DET
sound ADJ
hardware NOUN
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Lifeguard PROPN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Visionary PROPN
Software PROPN
	 SPACE
P.O. PROPN
Box PROPN
69447 NUM
	 SPACE
Portland PROPN
, PUNCT
OR CCONJ
  SPACE
97201 NUM
, PUNCT
US PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
503 NUM
) PUNCT
246 NUM
- SYM
6200 NUM
    SPACE
Platforms NOUN
: PUNCT
Mac PROPN
, PUNCT
DOS PROPN
( PUNCT
Windows PROPN
version NOUN
underway ADV
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
. PUNCT
  SPACE
Warns VERB
you PRON
to PART
take VERB
a DET
break NOUN
	 SPACE
with ADP
dialog NOUN
box NOUN
and CCONJ
sound NOUN
. PUNCT
  SPACE
Includes VERB
a DET
list NOUN
of ADP
exercises NOUN
	 SPACE
to PART
do AUX
during ADP
breaks NOUN
, PUNCT
and CCONJ
information NOUN
on ADP
configuring VERB
your PRON
	 SPACE
workstation NOUN
in ADP
an DET
ergonomic ADJ
manner NOUN
. PUNCT
  SPACE
Price NOUN
: PUNCT
$ SYM
59 NUM
; PUNCT
	 SPACE
quantity NOUN
discounts NOUN
and CCONJ
site NOUN
licenses NOUN
. PUNCT
  SPACE
The DET
DOS PROPN
product NOUN
is AUX
	 SPACE
bought VERB
in ADP
from ADP
another DET
company NOUN
, PUNCT
apparently ADV
; PUNCT
not PART
sure ADJ
how ADV
	 SPACE
equivalent ADJ
this DET
is AUX
to ADP
the DET
Mac PROPN
version NOUN
. PUNCT
		 SPACE
The DET
Mac PROPN
version NOUN
got VERB
a DET
good ADJ
review NOUN
in ADP
Desktop PROPN
Publisher PROPN
	 SPACE
Magazine PROPN
( PUNCT
Feb PROPN
1991 NUM
) PUNCT
. PUNCT
  SPACE
Good ADJ
marketing NOUN
stuff NOUN
with ADP
useful ADJ
	 SPACE
2-page NUM
summaries NOUN
of ADP
RSI PROPN
problems NOUN
and CCONJ
solutions NOUN
, PUNCT
with ADP
	 SPACE
references NOUN
. PUNCT
     SPACE
Tool PROPN
: PUNCT
StressFree PROPN
( PUNCT
commercial ADJ
software NOUN
, PUNCT
free ADJ
usable ADJ
demo NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
LifeTime PROPN
Software PROPN
	 SPACE
P.O. PROPN
Box PROPN
87522 NUM
	 SPACE
Houston PROPN
	 SPACE
Texas PROPN
77287 NUM
- SYM
7522 NUM
, PUNCT
US PROPN
	 SPACE
Tel NOUN
: PUNCT
800 NUM
- NUM
947 NUM
- PUNCT
2178 NUM
( PUNCT
US PROPN
only ADV
) PUNCT
	 SPACE
Fax NOUN
: PUNCT
+1 NOUN
( PUNCT
713 NUM
) PUNCT
474 NUM
- SYM
2067 NUM
	 SPACE
Mail NOUN
: PUNCT
70412.727@compuserve.com NUM
	 SPACE
Demo PROPN
( PUNCT
working VERB
program NOUN
but CCONJ
reduced ADJ
functions NOUN
) PUNCT
available ADJ
from ADP
: PUNCT
	     SPACE
Compuserve NOUN
: PUNCT
Windows PROPN
Advanced PROPN
Forum PROPN
, PUNCT
New PROPN
Uploads PROPN
section NOUN
, PUNCT
or CCONJ
			 SPACE
Health PROPN
and CCONJ
Fitness PROPN
Forum PROPN
, PUNCT
Issues PROPN
At ADP
Work NOUN
section NOUN
. PUNCT
	     SPACE
Anon PROPN
FTP PROPN
: PUNCT
   SPACE
ftp.cica.indiana.edu NUM
( PUNCT
and CCONJ
mirroring NOUN
sites NOUN
) PUNCT
    SPACE
Platforms NOUN
: PUNCT
Windows PROPN
( PUNCT
3.0/3.1 PROPN
) PUNCT
( PUNCT
Mac PROPN
and CCONJ
DOS PROPN
versions NOUN
underway ADV
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
, PUNCT
this DET
program NOUN
warns VERB
you PRON
to PART
take VERB
	 SPACE
breaks NOUN
after ADP
a DET
configurable ADJ
interval NOUN
( PUNCT
or CCONJ
at ADP
fixed VERB
times NOUN
) PUNCT
. PUNCT
	 SPACE
Displays NOUN
descriptions NOUN
and CCONJ
pictures NOUN
of ADP
exercises NOUN
- PUNCT
pictures NOUN
are AUX
	 SPACE
animated VERB
and CCONJ
program NOUN
paces NOUN
you PRON
to PART
help VERB
you PRON
do AUX
exercises NOUN
at ADP
the DET
	 SPACE
correct ADJ
rate NOUN
. PUNCT
  SPACE
Quite DET
a DET
few ADJ
exercises NOUN
, PUNCT
can AUX
configure VERB
which PRON
ones NOUN
	 SPACE
are AUX
included VERB
to ADP
some DET
extent NOUN
. PUNCT
  SPACE
Online ADJ
help NOUN
. PUNCT
	 SPACE
Version PROPN
2.0 NUM
is AUX
out ADV
soon ADV
, PUNCT
Mac PROPN
and CCONJ
DOS PROPN
versions NOUN
will AUX
be AUX
based VERB
	 SPACE
on ADP
this DET
. PUNCT
	 SPACE
Cost NOUN
: PUNCT
$ SYM
29.95 NUM
if SCONJ
support NOUN
via ADP
CompuServe PROPN
or CCONJ
Internet PROPN
, PUNCT
otherwise ADV
$ SYM
39.95 NUM
. PUNCT
                SPACE
Site NOUN
license NOUN
for ADP
3 NUM
or CCONJ
more ADJ
copies NOUN
is AUX
$ SYM
20.00 NUM
each DET
. PUNCT
	       SPACE
( PUNCT
NOTE NOUN
: PUNCT
prices NOUN
may AUX
have AUX
gone VERB
up ADP
for ADP
V2.0 PROPN
) PUNCT
. PUNCT
     SPACE
Comments NOUN
: PUNCT
	 SPACE
I PRON
have AUX
had VERB
a DET
play NOUN
with ADP
this DET
, PUNCT
and CCONJ
it PRON
works VERB
OK ADJ
. PUNCT
  SPACE
Its PRON
user NOUN
interface NOUN
	 SPACE
design NOUN
is AUX
much ADV
better ADJ
in ADP
2.0 NUM
, PUNCT
though SCONJ
still ADV
a DET
bit NOUN
unusual ADJ
. PUNCT
	 SPACE
expensive ADJ
tool NOUN
around ADV
and CCONJ
it PRON
does AUX
the DET
job NOUN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
the DET
only ADJ
	 SPACE
tool NOUN
with ADP
a DET
redistributable ADJ
demo NOUN
, PUNCT
so CCONJ
if SCONJ
you PRON
do AUX
get AUX
the DET
demo NOUN
, PUNCT
post VERB
it PRON
	 SPACE
on ADP
your PRON
local ADJ
bulletin NOUN
boards NOUN
, PUNCT
FTP PROPN
servers NOUN
and CCONJ
Bitnet PROPN
servers NOUN
! PUNCT
	 SPACE
Does AUX
not PART
include VERB
general ADJ
info NOUN
on ADP
RSI PROPN
and CCONJ
ergonomics NOUN
, PUNCT
but CCONJ
it PRON
does AUX
	 SPACE
have AUX
the DET
ability NOUN
to PART
step VERB
backward ADV
in ADP
the DET
exercise NOUN
sequence NOUN
, PUNCT
	 SPACE
which PRON
is AUX
good ADJ
for ADP
repeating VERB
the DET
most ADV
helpful ADJ
exercises NOUN
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Typewatch NOUN
( PUNCT
freeware NOUN
) PUNCT
, PUNCT
version NOUN
3.8 NUM
( PUNCT
October PROPN
1992 NUM
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Email NOUN
to ADP
richardd@hoskyns.co.uk PUNCT
	 SPACE
Anonymous ADJ
ftp NOUN
: PUNCT
soda.berkeley.edu:pub/typing-injury/typewatch.shar ADJ
    SPACE
Platforms NOUN
: PUNCT
UNIX PROPN
( PUNCT
tested VERB
on ADP
SCO PROPN
, PUNCT
SunOS PROPN
, PUNCT
Mach PROPN
; PUNCT
character NOUN
and CCONJ
X NOUN
Window PROPN
mode NOUN
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
This DET
is AUX
a DET
shell ADJ
script NOUN
that PRON
runs VERB
in ADP
the DET
background NOUN
and CCONJ
warns VERB
you PRON
	 SPACE
to PART
stop VERB
typing NOUN
, PUNCT
based VERB
on ADP
how ADV
long ADV
you PRON
have AUX
been AUX
continuously ADV
	 SPACE
typing NOUN
. PUNCT
  SPACE
It PRON
does AUX
not PART
provide VERB
exercises NOUN
, PUNCT
but CCONJ
it PRON
does AUX
check VERB
	 SPACE
that SCONJ
you PRON
really ADV
do AUX
take VERB
a DET
break NOUN
, PUNCT
and CCONJ
tells VERB
you PRON
when ADV
you PRON
	 SPACE
can AUX
start VERB
typing VERB
again ADV
. PUNCT
 	 SPACE
Typewatch PROPN
now ADV
tells VERB
you PRON
how ADV
many ADJ
minutes NOUN
you PRON
have AUX
been AUX
typing VERB
	 SPACE
today NOUN
, PUNCT
each DET
time NOUN
it PRON
warns VERB
you PRON
, PUNCT
which PRON
is AUX
useful ADJ
so SCONJ
you PRON
	 SPACE
know VERB
how ADV
much ADJ
you PRON
* PUNCT
really ADV
* PUNCT
type NOUN
. PUNCT
  SPACE
It PRON
also ADV
logs VERB
information NOUN
	 SPACE
to ADP
a DET
file NOUN
that PRON
you PRON
can AUX
analyse VERB
or CCONJ
simply ADV
print VERB
out ADP
. PUNCT
 	 SPACE
The DET
warning NOUN
message NOUN
appears VERB
on ADP
your PRON
screen NOUN
( PUNCT
in ADP
character NOUN
mode NOUN
) PUNCT
, PUNCT
	 SPACE
in ADP
a DET
pop VERB
- PUNCT
up ADP
window NOUN
( PUNCT
for ADP
X PROPN
Windows PROPN
) PUNCT
, PUNCT
or CCONJ
as SCONJ
a DET
Zephyr PROPN
message NOUN
	 SPACE
( PUNCT
for ADP
those DET
with ADP
Athena PROPN
stuff NOUN
) PUNCT
. PUNCT
   SPACE
Tim PROPN
Freeman PROPN
< X
tsf@cs.cmu.edu NOUN
> X
	 SPACE
has AUX
put VERB
in ADP
a DET
lot NOUN
of ADP
bug NOUN
fixes NOUN
, PUNCT
extra ADJ
features NOUN
and CCONJ
support NOUN
for ADP
	 SPACE
X NOUN
, PUNCT
Zephyr PROPN
and CCONJ
Mach PROPN
. PUNCT
	 SPACE
Not PART
formally ADV
supported VERB
, PUNCT
but CCONJ
email NOUN
richardd@hoskyns.co.uk PUNCT
	 SPACE
( PUNCT
for ADP
SCO PROPN
, PUNCT
SunOS PROPN
, PUNCT
character NOUN
mode NOUN
) PUNCT
or CCONJ
tsf@cs.cmu.edu PROPN
( PUNCT
for ADP
Mach PROPN
, PUNCT
	 SPACE
X NOUN
Window PROPN
mode NOUN
, PUNCT
Zephyr PROPN
) PUNCT
if SCONJ
you PRON
have AUX
problems NOUN
or CCONJ
want VERB
to PART
give VERB
	 SPACE
feedback NOUN
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Various ADJ
calendar NOUN
/ SYM
batch NOUN
queue NOUN
programs NOUN
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Various ADJ
sources NOUN
    SPACE
Platforms NOUN
: PUNCT
Various ADJ
    SPACE
Description NOUN
: PUNCT
	 SPACE
Any DET
calendar NOUN
/ SYM
reminder NOUN
program NOUN
that PRON
warns VERB
you PRON
of ADP
an DET
upcoming ADJ
	 SPACE
appointment NOUN
can AUX
be AUX
turned VERB
into ADP
an DET
ad X
hoc X
RSI PROPN
management NOUN
tool NOUN
. PUNCT
	 SPACE
Or CCONJ
, PUNCT
any DET
batch NOUN
queue NOUN
submission NOUN
program NOUN
that PRON
lets VERB
you PRON
submit VERB
	 SPACE
a DET
program NOUN
to PART
run VERB
at ADP
a DET
specific ADJ
time NOUN
to PART
display VERB
a DET
message NOUN
to ADP
	 SPACE
the DET
screen NOUN
. PUNCT
	 SPACE
Using VERB
Windows PROPN
as SCONJ
an DET
example NOUN
: PUNCT
create VERB
a DET
Calendar NOUN
file NOUN
, PUNCT
and CCONJ
	 SPACE
include VERB
this DET
filename NOUN
in ADP
your PRON
WIN.INI NOUN
's PART
' PUNCT
load= NOUN
' PUNCT
line NOUN
so ADV
	 SPACE
you PRON
get VERB
it PRON
on ADP
every DET
startup NOUN
of ADP
Windows PROPN
. PUNCT
  SPACE
Suppose VERB
you PRON
	 SPACE
want VERB
to PART
have AUX
breaks NOUN
every DET
30 NUM
minutes NOUN
, PUNCT
starting VERB
from ADP
9 NUM
am NOUN
. PUNCT
	 SPACE
Press PROPN
F7 PROPN
( PUNCT
Special PROPN
Time PROPN
... PUNCT
) PUNCT
to PART
enter VERB
an DET
appointment NOUN
, PUNCT
enter VERB
	 SPACE
9:30 NUM
, PUNCT
hit VERB
Enter NOUN
, PUNCT
and CCONJ
type VERB
some DET
text NOUN
in ADP
saying VERB
what PRON
the DET
break NOUN
	 SPACE
is AUX
for ADP
. PUNCT
  SPACE
Then ADV
press VERB
F5 PROPN
to PART
set VERB
an DET
alarm NOUN
on ADP
this DET
entry NOUN
, PUNCT
and CCONJ
repeat VERB
	 SPACE
for ADP
the DET
next ADJ
appointment NOUN
. PUNCT
	 SPACE
By ADP
using VERB
Windows PROPN
Recorder PROPN
, PUNCT
you PRON
can AUX
record VERB
the DET
keystrokes NOUN
	 SPACE
that PRON
set VERB
up ADP
breaks NOUN
throughout ADP
a DET
day NOUN
in ADP
a DET
.REC NOUN
file NOUN
. PUNCT
  SPACE
Put VERB
this DET
	 SPACE
file NOUN
on ADP
your PRON
' PUNCT
run= ADJ
' PUNCT
line NOUN
, PUNCT
as SCONJ
above ADV
, PUNCT
and CCONJ
you PRON
will AUX
then ADV
, PUNCT
with ADP
	 SPACE
a DET
single ADJ
keypress NOUN
, PUNCT
be AUX
able ADJ
to PART
set VERB
up ADP
your PRON
daily ADJ
appointments NOUN
	 SPACE
with ADP
RSI PROPN
exercises NOUN
. PUNCT
	 SPACE
The DET
above ADJ
method NOUN
should AUX
be AUX
adaptable ADJ
to ADP
most ADJ
calendar NOUN
programs NOUN
. PUNCT
	 SPACE
An DET
example NOUN
using VERB
batch NOUN
jobs NOUN
would AUX
be AUX
to PART
submit VERB
a DET
simple ADJ
job NOUN
	 SPACE
that PRON
runs VERB
at ADP
9:30 NUM
am NOUN
and CCONJ
warns VERB
you PRON
to PART
take VERB
a DET
break NOUN
; PUNCT
this DET
will AUX
	 SPACE
depend VERB
a DET
lot NOUN
on ADP
your PRON
operating NOUN
system NOUN
. PUNCT
	 SPACE
While SCONJ
these DET
approaches NOUN
are AUX
not PART
ideal ADJ
, PUNCT
they PRON
are AUX
a DET
good ADJ
way NOUN
of ADP
forcing VERB
	 SPACE
yourself PRON
to PART
take VERB
a DET
break NOUN
if SCONJ
you PRON
ca AUX
n't PART
get AUX
hold NOUN
of ADP
a DET
suitable ADJ
RSI PROPN
	 SPACE
management NOUN
tool NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
techie ADJ
enough ADV
you PRON
might AUX
want VERB
to PART
	 SPACE
write VERB
a DET
version NOUN
of ADP
Typewatch PROPN
( PUNCT
see VERB
above ADV
) PUNCT
for ADP
your PRON
operating NOUN
	 SPACE
system NOUN
, PUNCT
using VERB
batch NOUN
jobs NOUN
or CCONJ
whatever PRON
fits VERB
best ADV
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Digital PROPN
watches VERB
with ADP
count NOUN
- PUNCT
down NOUN
timers NOUN
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Various ADJ
sources NOUN
, PUNCT
e.g. DET
Casio PROPN
BP-100 PROPN
. PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Many ADJ
digital ADJ
watches NOUN
have AUX
timers NOUN
that PRON
count VERB
down ADP
from ADP
a DET
settable NOUN
	 SPACE
number NOUN
of ADP
minutes NOUN
; PUNCT
they PRON
usually ADV
reset VERB
easily ADV
to ADP
that DET
number NOUN
, PUNCT
either CCONJ
	 SPACE
manually ADV
or CCONJ
automatically ADV
. PUNCT
 	 SPACE
While SCONJ
these DET
are AUX
a DET
very ADV
basic ADJ
tool NOUN
, PUNCT
they PRON
are AUX
very ADV
useful ADJ
if SCONJ
you PRON
	 SPACE
are AUX
writing VERB
, PUNCT
reading VERB
, PUNCT
driving NOUN
, PUNCT
or CCONJ
doing VERB
anything PRON
away ADV
from ADP
	 SPACE
a DET
computer NOUN
which PRON
can AUX
still ADV
cause VERB
or CCONJ
aggravate VERB
RSI PROPN
. PUNCT
  SPACE
The DET
great ADJ
	 SPACE
advantage NOUN
is AUX
that SCONJ
they PRON
remind VERB
you PRON
to PART
break VERB
from ADP
whatever PRON
you PRON
	 SPACE
are AUX
doing VERB
. PUNCT
	     SPACE
Comments PROPN
: PUNCT
	 SPACE
My PRON
own ADJ
experience NOUN
was AUX
that SCONJ
cutting VERB
down ADP
a DET
lot NOUN
on ADP
my PRON
typing NOUN
led VERB
to ADP
	 SPACE
my PRON
writing NOUN
a DET
lot NOUN
more ADJ
, PUNCT
and CCONJ
still ADV
reading VERB
as ADV
much ADV
as SCONJ
ever ADV
, PUNCT
which PRON
	 SPACE
actually ADV
aggravated VERB
the DET
RSI PROPN
in ADP
my PRON
right ADJ
arm NOUN
though SCONJ
the DET
left NOUN
	 SPACE
arm NOUN
improved VERB
. PUNCT
  SPACE
Getting VERB
a DET
count VERB
- PUNCT
down ADP
timer NOUN
watch NOUN
has AUX
been AUX
	 SPACE
very ADV
useful ADJ
on ADP
some DET
occasions NOUN
where ADV
I PRON
write VERB
a DET
lot NOUN
in ADP
a DET
day NOUN
. PUNCT
	 SPACE
I PRON
have AUX
tried VERB
an DET
old ADJ
fashioned ADJ
hour NOUN
- PUNCT
glass NOUN
type NOUN
egg NOUN
timer NOUN
, PUNCT
but CCONJ
	 SPACE
these DET
are AUX
not PART
much ADV
good ADJ
because SCONJ
they PRON
do AUX
not PART
give VERB
an DET
audible ADJ
	 SPACE
warning NOUN
of ADP
the DET
end NOUN
of ADP
the DET
time NOUN
period!KEYBOARD NOUN
REMAPPING NOUN
TOOLS NOUN
: PUNCT
these DET
enable VERB
you PRON
to PART
change VERB
your PRON
keyboard NOUN
mappingso PUNCT
you PRON
can AUX
type VERB
one NUM
- PUNCT
handedly ADV
or CCONJ
with ADP
a DET
different ADJ
two NUM
- PUNCT
handed ADJ
layout NOUN
. PUNCT
  SPACE
One NUM
- PUNCT
handed ADJ
typing NOUN
tools NOUN
may AUX
help VERB
, PUNCT
but CCONJ
be AUX
VERY ADV
careful ADJ
about ADP
how ADV
you PRON
use VERB
them PRON
-- PUNCT
if SCONJ
you PRON
keep VERB
the DET
same ADJ
overall ADJ
typing NOUN
workload NOUN
youare NOUN
simply ADV
doubling VERB
your PRON
hand NOUN
use NOUN
for ADP
the DET
hand NOUN
that PRON
you PRON
use VERB
for ADP
typing NOUN
, PUNCT
and CCONJ
may AUX
therefore ADV
make VERB
matters NOUN
worse ADJ
. PUNCT
    SPACE
Tool NOUN
: PUNCT
hsh PROPN
( PUNCT
public ADJ
domain NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Anonymous ADJ
ftp NOUN
: PUNCT
soda.berkeley.edu:pub/typing-injury/hsh.shar PROPN
    SPACE
Platforms NOUN
: PUNCT
UNIX NOUN
( PUNCT
do AUX
n't PART
know VERB
which PRON
ones NOUN
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Allows VERB
one NUM
- PUNCT
handed ADJ
typing NOUN
and CCONJ
other ADJ
general ADJ
keyboard NOUN
remappings NOUN
. PUNCT
	 SPACE
Only ADV
works VERB
through ADP
tty NOUN
's PART
( PUNCT
so ADV
, PUNCT
you PRON
can AUX
use VERB
it PRON
with ADP
a DET
terminal NOUN
or CCONJ
	 SPACE
an DET
xterm NOUN
, PUNCT
but CCONJ
not PART
most ADJ
X NOUN
programs NOUN
) PUNCT
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Dvorak PROPN
keyboard NOUN
tools NOUN
( PUNCT
various ADJ
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Anonymous ADJ
ftp NOUN
: PUNCT
soda.berkeley.edu:pub/typing-injury/xdvorak.c PROPN
	 SPACE
Also ADV
built VERB
into ADP
Windows PROPN
3.x PROPN
. PUNCT
     SPACE
Description NOUN
: PUNCT
	 SPACE
The DET
Dvorak PROPN
keyboard NOUN
apparently ADV
uses VERB
a DET
more ADV
rational ADJ
layout NOUN
	 SPACE
that DET
involves VERB
more ADV
balanced ADJ
hand NOUN
use NOUN
. PUNCT
   SPACE
It PRON
* PUNCT
may AUX
* PUNCT
help VERB
prevent VERB
	 SPACE
RSI PROPN
a DET
bit NOUN
, PUNCT
but CCONJ
you PRON
can AUX
also ADV
use VERB
it PRON
if SCONJ
you PRON
have AUX
RSI PROPN
, PUNCT
since SCONJ
	 SPACE
it PRON
will AUX
slow VERB
down ADP
your PRON
typing NOUN
a DET
* PUNCT
lot NOUN
* PUNCT
:-) PUNCT
  SPACE
-- PUNCT
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup PUNCT
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58570From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
lsj4gnINNl6c@saltillo.cs.utexas.edu NOUN
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>-*----->I PROPN
wrote VERB
: PUNCT
> X
> X
> X
... PUNCT
Or CCONJ
, PUNCT
to PART
use VERB
a DET
phrasing NOUN
that PRON
I PRON
think VERB
is AUX
more ADV
accurate ADJ
, PUNCT
science NOUN
> X
> X
> X
is AUX
the DET
investigation NOUN
of ADP
phenomena PROPN
that PRON
avoids VERB
methods NOUN
and CCONJ
reasoning VERB
> X
> X
> X
that PRON
are AUX
known VERB
to PART
be AUX
erroneous ADJ
from ADP
past ADJ
foul ADJ
- PUNCT
ups NOUN
. PUNCT
> X
> X
In ADP
article NOUN
< X
C57Iu2.HBn@bunyip.cc.uq.oz.au NUM
> X
bd@psych.psy.uq.oz.au PROPN
writes VERB
: PUNCT
> X
> X
I PRON
can AUX
agree VERB
with ADP
this DET
if SCONJ
you PRON
are AUX
talking VERB
about ADP
the DET
less ADV
fundamental ADJ
> X
> X
aspects NOUN
of ADP
scientific ADJ
method NOUN
. PUNCT
... PUNCT
> X
    SPACE
... PUNCT
> X
> X
... PUNCT
In ADP
fact NOUN
, PUNCT
I PRON
do AUX
n't PART
see VERB
the DET
alternative NOUN
, PUNCT
as SCONJ
I PRON
do AUX
n't PART
think VERB
that SCONJ
the DET
> X
> X
fundamentals NOUN
are AUX
capable ADJ
of ADP
experimental ADJ
investigation NOUN
. PUNCT
  SPACE
In ADP
saying VERB
> X
> X
this DET
I PRON
am AUX
agreeing VERB
with ADP
the DET
work NOUN
of ADP
people NOUN
like SCONJ
Kuhn PROPN
( PUNCT
1970 NUM
) PUNCT
, PUNCT
> X
> X
Feyerabend NOUN
( PUNCT
1981 NUM
) PUNCT
and CCONJ
Lakatos PROPN
( PUNCT
1972 NUM
) PUNCT
. PUNCT
> X
      SPACE
.... PUNCT
> X
While SCONJ
methodology NOUN
can AUX
not PART
be AUX
subject ADJ
to ADP
the DET
same ADJ
kind NOUN
of ADP
" PUNCT
experimental ADJ
> PROPN
investigation NOUN
, PUNCT
" PUNCT
as SCONJ
that DET
to PART
which PRON
it PRON
is AUX
applied VERB
, PUNCT
it PRON
* PUNCT
can AUX
* PUNCT
be AUX
critically ADV
> X
appraised VERB
. PUNCT
  SPACE
Methodologies NOUN
can AUX
be AUX
compared VERB
to ADP
each DET
other ADJ
, PUNCT
sometimes ADV
by ADP
> X
the DET
conflicting ADJ
results NOUN
they PRON
produce VERB
. PUNCT
  SPACE
This DET
kind NOUN
of ADP
critical ADJ
appraisal NOUN
> X
and CCONJ
comparison NOUN
, PUNCT
together ADV
with ADP
the DET
inappropriateness NOUN
of ADP
existing VERB
> X
methodologies NOUN
for ADP
new ADJ
fields NOUN
of ADP
study NOUN
, PUNCT
is AUX
what PRON
drives VERB
the DET
evolution NOUN
of ADP
> X
methodologies NOUN
and CCONJ
how ADV
we PRON
think VERB
about ADP
them PRON
. PUNCT
  SPACE
As SCONJ
usual ADJ
, PUNCT
you PRON
are AUX
missing VERB
the DET
whole ADJ
point NOUN
, PUNCT
Russell PROPN
, PUNCT
because SCONJ
you PRON
are AUX
notwilling VERB
to PART
even ADV
consider VERB
questionning VERB
your PRON
basic ADJ
article NOUN
of ADP
faith NOUN
, PUNCT
whichis ADJ
that SCONJ
science NOUN
is AUX
merely ADV
a DET
matter NOUN
of ADP
methodology NOUN
and CCONJ
that SCONJ
the DET
highestpurpose NOUN
of ADP
science NOUN
is AUX
to PART
avoid VERB
making VERB
mistakes NOUN
. PUNCT
  SPACE
This DET
is AUX
like SCONJ
saying VERB
that SCONJ
the DET
most ADV
important ADJ
aspect NOUN
of ADP
business NOUN
managementis NOUN
accurate ADJ
bookkeeping NOUN
. PUNCT
  SPACE
If SCONJ
science NOUN
were AUX
no ADV
more ADJ
than SCONJ
methodology NOUN
and CCONJ
not PART
making VERB
mistakes NOUN
, PUNCT
itwould AUX
be AUX
a DET
poor ADJ
thing NOUN
indeed ADV
. PUNCT
  SPACE
What PRON
was AUX
the DET
methodology NOUN
of ADP
Darwin PROPN
? PUNCT
  SPACE
Whatwas VERB
the DET
methodology NOUN
of ADP
Einstein PROPN
? PUNCT
  SPACE
What PRON
was AUX
, PUNCT
for ADP
that DET
matter NOUN
, PUNCT
themethodology NOUN
of ADP
Jenner PROPN
and CCONJ
Pasteur PROPN
? PUNCT
  SPACE
In ADP
an DET
earlier ADJ
article NOUN
, PUNCT
Russell PROPN
Turpin PROPN
writes VERB
: PUNCT
  SPACE
> X
None NOUN
of ADP
the DET
foregoing NOUN
should AUX
be AUX
read VERB
as SCONJ
meaning VERB
that SCONJ
we PRON
should AUX
> X
open VERB
the DET
door NOUN
to ADP
practitioners NOUN
of ADP
quackery NOUN
and CCONJ
psuedo ADJ
- PUNCT
science.>Modern NOUN
advocates NOUN
of ADP
homeopathy NOUN
, PUNCT
chiropracty PROPN
, PUNCT
and CCONJ
traditional ADJ
> X
Chinese ADJ
medicine NOUN
receive VERB
little ADJ
respect NOUN
because SCONJ
, PUNCT
for ADP
the DET
most ADJ
> X
part NOUN
, PUNCT
they PRON
use VERB
methods NOUN
and CCONJ
reasoning VERB
that SCONJ
the DET
kind NOUN
of ADP
research NOUN
> X
Lee PROPN
Lady PROPN
recommends VERB
has AUX
shown VERB
to PART
be AUX
terribly ADV
faulty ADJ
. PUNCT
  SPACE
( PUNCT
This DET
does>*not PROPN
* PUNCT
imply VERB
that SCONJ
all DET
their PRON
treatments NOUN
are AUX
ineffective ADJ
. PUNCT
  SPACE
It PRON
* PUNCT
does*>imply ADV
that SCONJ
those DET
who PRON
rely VERB
on ADP
faulty ADJ
methodology NOUN
and CCONJ
reasoning NOUN
are AUX
> X
incapable ADJ
of ADP
discovering VERB
* PUNCT
which PRON
* PUNCT
treatments NOUN
are AUX
effective ADJ
and CCONJ
> X
which PRON
are AUX
not.)First ADV
of ADP
all DET
, PUNCT
I PRON
think VERB
you PRON
are AUX
arguing VERB
against ADP
a DET
straw NOUN
man NOUN
, PUNCT
because SCONJ
Idon't PRON
think VERB
that SCONJ
anyone PRON
here ADV
is AUX
arguing VERB
that DET
quackery NOUN
, PUNCT
pseudo NOUN
- PUNCT
science NOUN
, PUNCT
homeopathy NOUN
, PUNCT
chiropracty PROPN
, PUNCT
and CCONJ
traditional ADJ
Chinese ADJ
medicine NOUN
should AUX
beaccepted VERB
as SCONJ
science NOUN
. PUNCT
  SPACE
I PRON
, PUNCT
in ADP
particular ADJ
, PUNCT
think VERB
the DET
basic ADJ
ideas NOUN
ofhomeopathy ADJ
and CCONJ
chiropracty NOUN
seem VERB
extremely ADV
flaky ADJ
. PUNCT
  SPACE
What PRON
some DET
of ADP
us PRON
do AUX
believe VERB
, PUNCT
however ADV
, PUNCT
is AUX
that SCONJ
some DET
of ADP
these DET
things(including PROPN
some DET
of ADP
the DET
flaky ADJ
ideas NOUN
) PUNCT
are AUX
deserving VERB
of ADP
serious ADJ
scientificattention NOUN
. PUNCT
  SPACE
If SCONJ
in ADP
fact NOUN
it PRON
were AUX
true ADJ
, PUNCT
as SCONJ
you PRON
have AUX
stated VERB
above ADV
, PUNCT
that SCONJ
those DET
who PRON
do AUX
notuse VERB
the DET
currently ADV
fashionable ADJ
methodology NOUN
can AUX
have AUX
no DET
idea NOUN
what PRON
iseffective NOUN
and CCONJ
what PRON
is AUX
not PART
, PUNCT
then ADV
science NOUN
today NOUN
would AUX
not PART
exist VERB
. PUNCT
  SPACE
For ADP
allof ADJ
current ADJ
science NOUN
is AUX
based VERB
on ADP
the DET
past ADJ
work NOUN
of ADP
scientists NOUN
whosemethodology NOUN
, PUNCT
by ADP
current ADJ
standards NOUN
, PUNCT
was AUX
seriously ADV
flawed ADJ
. PUNCT
  SPACE
It PRON
is AUX
certainly ADV
true ADJ
that SCONJ
as SCONJ
methodology NOUN
improves VERB
, PUNCT
we PRON
need VERB
to PART
re VERB
- VERB
examinethose ADJ
results NOUN
derived VERB
in ADP
the DET
past NOUN
using VERB
less ADV
perfect ADJ
methodologies NOUN
. PUNCT
  SPACE
It PRON
isalso ADV
true ADJ
that SCONJ
the DET
results NOUN
obtained VERB
by ADP
people NOUN
today NOUN
who PRON
still ADV
rely VERB
on ADP
those DET
early ADJ
methodologies NOUN
needs VERB
to PART
be AUX
re VERB
- VERB
examined VERB
in ADP
a DET
more ADV
rigorous ADJ
fashion NOUN
by ADP
those DET
qualified ADJ
to PART
do AUX
so ADV
credibly ADV
. PUNCT
  SPACE
But CCONJ
to PART
say VERB
that SCONJ
nobody PRON
who PRON
fails VERB
to PART
do AUX
elaborate VERB
double ADJ
- PUNCT
blind ADJ
studies NOUN
iscapable ADJ
of ADP
knowing VERB
their PRON
ass NOUN
from ADP
a DET
hole NOUN
in ADP
the DET
ground NOUN
and CCONJ
to PART
say VERB
that SCONJ
noideas NOUN
that PRON
come VERB
from ADP
outside ADP
the DET
scientific ADJ
establishment NOUN
could AUX
possiblybe VERB
worthy ADJ
of ADP
serious ADJ
investigation NOUN
... PUNCT
this DET
truly ADV
marks VERB
one PRON
's PART
attitude NOUN
asdoctrinaire NOUN
, PUNCT
cultist PROPN
. PUNCT
  SPACE
This DET
attitude NOUN
is AUX
not PART
compatible ADJ
with ADP
a DET
belief NOUN
inreason NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58577From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
1/4 NUM
) PUNCT
: PUNCT
Changes NOUN
since SCONJ
last ADJ
month NOUN
[ PUNCT
monthly ADV
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
changesVersion NOUN
: PUNCT
$ SYM
Revision NOUN
: PUNCT
1.3 NUM
$ SYM
$ SYM
Date NOUN
: PUNCT
1993/04/13 NUM
04:12:33 NUM
$ SYM
This DET
file NOUN
details NOUN
changes VERB
to ADP
the DET
soda.berkeley.edu PROPN
archive ADJ
and CCONJ
summarizeswhat DET
's AUX
new ADJ
in ADP
the DET
various ADJ
FAQ PROPN
( PUNCT
frequently ADV
asked VERB
questions NOUN
) PUNCT
documents NOUN
. PUNCT
This DET
will AUX
be AUX
posted VERB
monthly ADV
, PUNCT
along ADP
with ADP
the DET
full ADJ
FAQ PROPN
to ADP
the DET
various ADJ
netgroups NOUN
. PUNCT
  SPACE
The DET
various ADJ
mailing NOUN
lists NOUN
will AUX
either CCONJ
receive VERB
the DET
full ADJ
FAQevery PROPN
month NOUN
, PUNCT
or CCONJ
every DET
third ADJ
month NOUN
, PUNCT
but CCONJ
will AUX
always ADV
get AUX
this DET
file NOUN
, PUNCT
onceper ADJ
month NOUN
. PUNCT
  SPACE
Phew!============================================================================Changes NOUN
to ADP
the DET
Typing NOUN
Injuries PROPN
FAQ PROPN
and CCONJ
soda.berkeley.edu PROPN
archive NOUN
, PUNCT
this DET
month============================================================================a NUM
few ADJ
new ADJ
files NOUN
on ADP
the DET
soda.berkeley.edu PROPN
archive NOUN
    SPACE
the DET
TidBITS PROPN
" PUNCT
Caring VERB
for ADP
your PRON
wrists NOUN
" PUNCT
document NOUN
    SPACE
RSI PROPN
Network PROPN
# SYM
11 NUM
    SPACE
Advice NOUN
about ADP
" PUNCT
adverse ADJ
mechanical ADJ
tension NOUN
" PUNCT
    SPACE
More ADJ
details NOUN
about ADP
the DET
new ADJ
Apple PROPN
keyboard NOUN
    SPACE
more ADJ
info NOUN
about ADP
carpal ADJ
tunnel PROPN
syndrome NOUN
( PUNCT
carpal.explained PROPN
) PUNCT
    SPACE
more ADJ
general ADJ
info NOUN
about ADP
RSI PROPN
( PUNCT
rsi.details PROPN
, PUNCT
rsi.physical PROPN
) PUNCT
    SPACE
marketing NOUN
info NOUN
on ADP
the DET
Vertical ADJ
    SPACE
MacWeek PROPN
article NOUN
the DET
Batnew ADJ
details NOUN
on ADP
hooking VERB
a DET
normal ADJ
PC NOUN
keyboard NOUN
to ADP
an DET
RS/6000updated ADJ
pricing NOUN
info NOUN
on ADP
the DET
DataHand PROPN
and CCONJ
ComfortHalf PROPN
- PUNCT
QWERTY PROPN
now ADV
available ADJ
for ADP
anonymous ADJ
ftp NOUN
on ADP
explorer.dgp.toronto.edunew PRON
GIF PROPN
picutures NOUN
! PUNCT
    SPACE
The DET
Apple PROPN
Adjustable PROPN
Keyboard PROPN
    SPACE
The DET
Key PROPN
Tronic PROPN
FlexPro PROPN
    SPACE
another DET
picture NOUN
of ADP
the DET
Kinesis PROPN
    SPACE
The DET
Vertical ADJ
    SPACE
The DET
Tony!============================================================================If NOUN
you PRON
'd AUX
like VERB
to PART
receive VERB
a DET
copy NOUN
of ADP
the DET
FAQ PROPN
and CCONJ
you PRON
did AUX
n't PART
find VERB
it PRON
in ADP
thesame ADJ
place NOUN
you PRON
found VERB
this DET
document NOUN
, PUNCT
you PRON
can AUX
either CCONJ
send VERB
e NOUN
- NOUN
mail NOUN
to ADP
dwallach@cs.berkeley.edu PROPN
, PUNCT
or CCONJ
you PRON
can AUX
anonymous VERB
ftp NOUN
to ADP
soda.berkeley.edu(128.32.149.19 PROPN
) PUNCT
and CCONJ
look VERB
in ADP
the DET
pub NOUN
/ SYM
typing NOUN
- PUNCT
injury NOUN
directory NOUN
. PUNCT
Enjoy!-- PROPN
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup X
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58578From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
2/4 NUM
) PUNCT
: PUNCT
General PROPN
Info PROPN
[ PUNCT
monthly ADJ
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
generalVersion NOUN
: PUNCT
$ SYM
Revision NOUN
: PUNCT
4.28 NUM
$ SYM
$ SYM
Date NOUN
: PUNCT
1993/04/13 NUM
04:17:58 NUM
$ SYM
------------------------------------------------------------------------------- PUNCT
         SPACE
Answers NOUN
To ADP
Frequently ADV
Asked VERB
Questions PROPN
about ADP
Typing VERB
Injuries-------------------------------------------------------------------------------The PROPN
Typing PROPN
Injury PROPN
FAQ PROPN
-- PUNCT
sources NOUN
of ADP
information NOUN
for ADP
people NOUN
with ADP
typinginjuries NOUN
, PUNCT
repetitive ADJ
stress NOUN
injuries NOUN
, PUNCT
carpal ADJ
tunnel PROPN
syndrome NOUN
, PUNCT
etc X
. PUNCT
Copyright NOUN
1992,1993 NOUN
by ADP
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Many NOUN
FAQs NOUN
, PUNCT
including VERB
this DET
one NOUN
, PUNCT
are AUX
available ADJ
on ADP
the DET
archive ADJ
sitepit-manager.mit.edu PROPN
( PUNCT
alias PROPN
rtfm.mit.edu PROPN
) PUNCT
[ PUNCT
18.172.1.27 NUM
] PUNCT
in ADP
the DET
directorypub NOUN
/ SYM
usenet PROPN
/ SYM
news.answers NOUN
. PUNCT
  SPACE
The DET
name NOUN
under ADP
which PRON
a DET
FAQ PROPN
is AUX
archived VERB
appearsin PROPN
the DET
Archive ADJ
- PUNCT
name NOUN
line NOUN
at ADP
the DET
top NOUN
of ADP
the DET
article NOUN
. PUNCT
  SPACE
This DET
FAQ PROPN
is AUX
archivedas ADV
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
general NOUN
. PUNCT
ZThere PROPN
's AUX
a DET
mail NOUN
server NOUN
also ADV
. PUNCT
  SPACE
Just ADV
e ADJ
- PUNCT
mail NOUN
mail-server@pit-manager.mit.eduwith NOUN
the DET
word NOUN
' PUNCT
help NOUN
' PUNCT
on ADP
a DET
line NOUN
by ADP
itself PRON
in ADP
the DET
body NOUN
. PUNCT
The DET
opinions NOUN
in ADP
here ADV
are AUX
my PRON
own ADJ
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
and CCONJ
do AUX
notrepresent VERB
the DET
opinions NOUN
of ADP
any DET
organization NOUN
or CCONJ
vendor NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
a DET
medicaldoctor NOUN
, PUNCT
so CCONJ
my PRON
advice NOUN
should AUX
be AUX
taken VERB
with ADP
many ADJ
grains NOUN
of ADP
salt.[Current NUM
distribution NOUN
: PUNCT
sci.med.occupational PROPN
, PUNCT
sci.med PUNCT
, PUNCT
comp.human-factors PROPN
, PUNCT
{ PUNCT
news NOUN
, PUNCT
sci PROPN
, PUNCT
comp}.answers PROPN
, PUNCT
and CCONJ
e NOUN
- NOUN
mail NOUN
to ADP
c+health@iubvm.ucs.indiana.edu PROPN
, PUNCT
sorehand@vm.ucsf.edu PROPN
, PUNCT
and CCONJ
cstg-L@vtvm1.cc.vt.edu]Changes NOUN
since SCONJ
previously ADV
distributed VERB
versions NOUN
are AUX
marked VERB
with ADP
change NOUN
        SPACE
||bars NOUN
to ADP
the DET
right NOUN
of ADP
the DET
text NOUN
, PUNCT
as SCONJ
is AUX
this DET
paragraph NOUN
. PUNCT
                        SPACE
||Table ADJ
of ADP
Contents NOUN
: PUNCT
    SPACE
= SYM
= PUNCT
1== NUM
Mailing PROPN
lists NOUN
, PUNCT
newsgroups NOUN
, PUNCT
etc X
. PUNCT
    SPACE
= PUNCT
= PUNCT
2== NUM
The DET
soda.berkeley.edu PROPN
archive ADJ
    SPACE
= PUNCT
= SYM
3== NUM
General ADJ
info NOUN
on ADP
injuries NOUN
    SPACE
= PUNCT
= PUNCT
4== NUM
Typing NOUN
posture NOUN
, PUNCT
ergonomics NOUN
, PUNCT
prevention NOUN
, PUNCT
treatment NOUN
    SPACE
= PUNCT
= PUNCT
5== NUM
Requests PROPN
for ADP
more ADJ
info NOUN
    SPACE
= PUNCT
= PUNCT
6== NOUN
References==1== VERB
Mailing PROPN
lists NOUN
, PUNCT
newsgroups NOUN
, PUNCT
etc X
. PUNCT
USENET PROPN
News:-----------comp.human NOUN
- PUNCT
factors NOUN
occasionally ADV
has AUX
discussion NOUN
about ADP
alternative ADJ
input NOUN
devices.comp.risks PROPN
has AUX
an DET
occasional ADJ
posting NOUN
relevant ADJ
to ADP
injuries NOUN
via ADP
computers.sci.med PROPN
and CCONJ
misc.handicap PROPN
also ADV
tend VERB
to PART
have AUX
relevant ADJ
traffic NOUN
. PUNCT
There PRON
's AUX
a DET
Brand PROPN
New ADJ
newsgroup NOUN
, PUNCT
sci.med.occupational PROPN
, PUNCT
chartered VERB
specificallyto PROPN
discuss VERB
these DET
things NOUN
. PUNCT
  SPACE
This DET
would AUX
be AUX
the DET
recommended VERB
place NOUN
to PART
post VERB
. PUNCT
Mailing VERB
lists:-------------The NUM
RSI PROPN
Network PROPN
: PUNCT
Available ADJ
both DET
on ADP
paper NOUN
and CCONJ
via ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
this DET
publication NOUN
    SPACE
covers VERB
issues NOUN
relevant ADJ
to ADP
those DET
with ADP
repetitive ADJ
stress NOUN
injuries NOUN
. PUNCT
  SPACE
For ADP
    SPACE
a DET
sample NOUN
issue NOUN
and CCONJ
subscription NOUN
information NOUN
, PUNCT
send VERB
a DET
stamped VERB
, PUNCT
self- ADJ
    SPACE
addressed VERB
business NOUN
envelope NOUN
to ADP
Caroline PROPN
Rose PROPN
, PUNCT
970 NUM
Paradise PROPN
Way PROPN
, PUNCT
Palo PROPN
    SPACE
Alto PROPN
CA PROPN
94306 NUM
. PUNCT
    SPACE
E NOUN
- NOUN
mail NOUN
to ADP
< X
crose@applelink.apple.com X
> X
    SPACE
$ SYM
2 NUM
donation NOUN
, PUNCT
requested VERB
. PUNCT
    SPACE
All DET
RSI PROPN
Network PROPN
newsletters NOUN
are AUX
available ADJ
via ADP
anonymous ADJ
ftp NOUN
from ADP
    SPACE
soda.berkeley.edu NOUN
( PUNCT
see VERB
below ADV
for ADP
details).c+health PROPN
and CCONJ
sorehand PROPN
are AUX
both DET
IBM PROPN
Listserv PROPN
things NOUN
. PUNCT
  SPACE
For ADP
those DET
familiar ADJ
    SPACE
with ADP
Listserv PROPN
, PUNCT
here ADV
's AUX
the DET
quick ADJ
info NOUN
: PUNCT
    SPACE
c+health NOUN
-- PUNCT
subscribe NOUN
to ADP
listserv@iubvm.ucs.indiana.edu PROPN
		 SPACE
post PROPN
to ADP
c+health@iubvm.ucs.indiana.edu PROPN
    SPACE
sorehand NOUN
-- PUNCT
subscribe VERB
to ADP
listserv@vm.ucsf.edu PROPN
		 SPACE
post NOUN
to ADP
sorehand@vm.ucsf.eduQuick VERB
tutorial NOUN
on ADP
subscribing VERB
to ADP
a DET
Listserv PROPN
: PUNCT
    SPACE
% NOUN
mail NOUN
listserv@vm.ucsf.edu PROPN
    SPACE
Subject NOUN
: PUNCT
Total ADJ
Listserv PROPN
Mania PROPN
! PUNCT
    SPACE
SUBSCRIBE PROPN
SOREHAND PROPN
J. PROPN
Random PROPN
Hacker PROPN
    SPACE
INFO PROPN
? PUNCT
    SPACE
.That PROPN
's AUX
all DET
there PRON
is AUX
to ADP
it PRON
. PUNCT
  SPACE
You PRON
'll AUX
get AUX
bunches NOUN
of ADP
mail NOUN
back ADV
from ADP
the DET
Listserv PROPN
, PUNCT
including VERB
a DET
list NOUN
of ADP
other ADJ
possible ADJ
commands NOUN
you PRON
can AUX
mail VERB
. PUNCT
  SPACE
Cool INTJ
, PUNCT
huh INTJ
? PUNCT
  SPACE
What'llthose NOUN
BITNET NOUN
people NOUN
think VERB
of ADP
, PUNCT
next?==2== ADP
The DET
soda.berkeley.edu PROPN
archiveI've PROPN
started VERB
an DET
archive ADJ
site NOUN
for ADP
info NOUN
related VERB
to ADP
typing NOUN
injuries NOUN
. PUNCT
  SPACE
Justanonymous ADJ
ftp NOUN
to ADP
soda.berkeley.edu:pub/typing-injury PROPN
. PROPN
  SPACE
( PUNCT
128.32.149.19)Currently ADV
, PUNCT
you PRON
'll AUX
find VERB
: PUNCT
Informative ADJ
files NOUN
: PUNCT
    SPACE
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq/ PROPN
        SPACE
general ADJ
           SPACE
-- PUNCT
information NOUN
about ADP
typing NOUN
injuries NOUN
        SPACE
keyboards NOUN
         SPACE
-- PUNCT
products NOUN
to PART
replace VERB
your PRON
keyboard NOUN
        SPACE
software NOUN
          SPACE
-- PUNCT
software NOUN
to PART
watch VERB
your PRON
keyboard NOUN
usage NOUN
	 SPACE
changes NOUN
		   SPACE
-- PUNCT
changes NOUN
since SCONJ
last ADJ
month NOUN
's PART
edition NOUN
( PUNCT
new ADJ
! PUNCT
) PUNCT
	     SPACE
|| PROPN
    SPACE
keyboard NOUN
- PUNCT
commentary NOUN
   SPACE
-- PUNCT
Dan PROPN
's PART
opinions NOUN
on ADP
the DET
keyboard NOUN
replacements VERB
    SPACE
amt.advice ADJ
		   SPACE
-- PUNCT
about ADP
Adverse ADJ
Mechanical PROPN
Tension PROPN
    SPACE
caringforwrists.sit.hqx PROPN
-- PUNCT
PageMaker4 NUM
document NOUN
about ADP
your PRON
wrists NOUN
    SPACE
caringforwrists.ps PROPN
	   SPACE
-- PUNCT
PostScript PROPN
converted VERB
version NOUN
of ADP
above ADV
... PUNCT
    SPACE
carpal.info PROPN
           SPACE
-- PUNCT
info NOUN
on ADP
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
    SPACE
carpal.explained VERB
	   SPACE
-- PUNCT
very ADV
detailed ADJ
information NOUN
about ADP
CTS PROPN
    SPACE
carpal.surgery NOUN
	   SPACE
-- PUNCT
JAMA PROPN
article NOUN
on ADP
CTS PROPN
surgery NOUN
    SPACE
carpal.tidbits NOUN
	   SPACE
-- PUNCT
TidBITS NUM
article NOUN
on ADP
CTS PROPN
    SPACE
tendonitis.info PROPN
       SPACE
-- PUNCT
info NOUN
on ADP
Tendonitis PROPN
    SPACE
rsi.biblio NOUN
		   SPACE
-- PUNCT
bibliography NOUN
of ADP
RSI PROPN
- PUNCT
related VERB
publications NOUN
    SPACE
rsi PROPN
- PUNCT
network/ PROPN
* PUNCT
         SPACE
-- PUNCT
archive ADJ
of ADP
the DET
RSI PROPN
Network PROPN
newsletter NOUN
			      SPACE
( PUNCT
currently ADV
, PUNCT
containing VERB
issues NOUN
1 NUM
through ADP
11 NUM
) PUNCT
    SPACE
|| NUM
        SPACE
rsi.details PROPN
		   SPACE
-- PUNCT
long ADJ
detailed ADJ
information NOUN
about ADP
RSI PROPN
    SPACE
rsi.physical PROPN
	   SPACE
-- PUNCT
study NOUN
showing VERB
RSI PROPN
is AUX
n't PART
just ADV
psychological ADJ
    SPACE
Various ADJ
product NOUN
literature NOUN
: PUNCT
    SPACE
apple NOUN
- PUNCT
press NOUN
		   SPACE
-- PUNCT
press NOUN
release NOUN
on ADP
the DET
Apple PROPN
Adjustable PROPN
Keyboard PROPN
    SPACE
apple NOUN
- PUNCT
tidbits PROPN
	   SPACE
-- PUNCT
extensive ADJ
info NOUN
about ADP
Apple PROPN
's PART
Adjustable PROPN
Keybd PROPN
    SPACE
bat NOUN
- PUNCT
info NOUN
		   SPACE
-- PUNCT
MacWeek PROPN
review NOUN
on ADP
the DET
Bat PROPN
			     SPACE
|| PROPN
    SPACE
comfort- NOUN
* PUNCT
		   SPACE
-- PUNCT
marketing NOUN
info NOUN
on ADP
the DET
Comfort PROPN
Keyboard PROPN
    SPACE
datahand NOUN
- PUNCT
review NOUN
	   SPACE
-- PUNCT
detailed ADJ
opinions NOUN
of ADP
the DET
DataHand PROPN
    SPACE
datahand NOUN
- PUNCT
review2 NOUN
	   SPACE
-- PUNCT
follow VERB
- PUNCT
up NOUN
to ADP
above ADP
    SPACE
datahand ADJ
- PUNCT
desc NOUN
	   SPACE
-- PUNCT
description NOUN
of ADP
the DET
DataHand PROPN
's PART
appearance NOUN
    SPACE
kinesis NOUN
- PUNCT
review NOUN
	   SPACE
-- PUNCT
one NUM
user NOUN
's PART
personal ADJ
opinions NOUN
    SPACE
maltron- NOUN
* PUNCT
		   SPACE
-- PUNCT
marketing NOUN
info NOUN
on ADP
various ADJ
Maltron PROPN
products NOUN
    SPACE
maltron NOUN
- PUNCT
review PROPN
	   SPACE
-- PUNCT
one NUM
user NOUN
's PART
personal ADJ
opinions NOUN
    SPACE
vertical ADJ
- PUNCT
info NOUN
	   SPACE
-- PUNCT
marketing NOUN
info NOUN
on ADP
the DET
Vertical ADJ
( PUNCT
new ADJ
! PUNCT
) PUNCT
	     SPACE
||Programs PROPN
: PUNCT
    SPACE
( PUNCT
With ADP
the DET
exception NOUN
of ADP
accpak.exe PROPN
, PUNCT
everything PRON
here ADV
is AUX
distributed VERB
as SCONJ
     SPACE
source NOUN
to PART
be AUX
compiled VERB
with ADP
a DET
Unix PROPN
system NOUN
. PUNCT
  SPACE
Some DET
programs NOUN
take VERB
advantage NOUN
     SPACE
of ADP
the DET
X NOUN
window NOUN
system NOUN
, PUNCT
also ADV
. PUNCT
) PUNCT
    SPACE
hsh.shar NOUN
		   SPACE
-- PUNCT
a DET
program NOUN
for ADP
one NUM
- PUNCT
handed ADJ
usage NOUN
of ADP
normal ADJ
keyboards NOUN
    SPACE
typewatch.shar NOUN
	   SPACE
-- PUNCT
tells VERB
you PRON
when ADV
to PART
take VERB
a DET
break NOUN
    SPACE
xdvorak.c NUM
		   SPACE
-- PUNCT
turns VERB
your PRON
QWERTY PROPN
keyboard NOUN
into ADP
Dvorak PROPN
    SPACE
xidle.shar PROPN
		   SPACE
-- PUNCT
keeps VERB
track NOUN
of ADP
how ADV
long ADV
you PRON
've AUX
been AUX
typing VERB
    SPACE
rest-reminder.sh PROPN
      SPACE
-- PUNCT
yet ADV
another DET
idle ADJ
watcher NOUN
    SPACE
kt15.tar PUNCT
 		   SPACE
-- PUNCT
generates VERB
fake ADJ
X NOUN
keyboard NOUN
events NOUN
from ADP
the DET
			      SPACE
serial ADJ
port NOUN
-- PUNCT
use VERB
a DET
PC NOUN
keyboard NOUN
on ADP
anything PRON
! PUNCT
			      SPACE
( PUNCT
new ADJ
improved ADJ
version NOUN
! PUNCT
) PUNCT
    SPACE
accpak.exe PUNCT
		   SPACE
-- PUNCT
a DET
serial ADJ
port NOUN
keyboard NOUN
spoofer NOUN
for ADP
MS PROPN
Windows PROPN
    SPACE
( PUNCT
Note VERB
: PUNCT
a2x.tar PROPN
and CCONJ
rk.tar PROPN
are AUX
both DET
from ADP
export.lcs.mit.edu:contrib/ PUNCT
     SPACE
so ADV
they PRON
may AUX
have AUX
a DET
more ADV
current ADJ
version NOUN
than SCONJ
soda PROPN
. PUNCT
) PUNCT
    SPACE
a2x.tar PROPN
 		   SPACE
-- PUNCT
a DET
more ADV
sophisticated ADJ
X NOUN
keyboard NOUN
/ SYM
mouse NOUN
spoofing NOUN
			      SPACE
program NOUN
. PUNCT
  SPACE
Supports PROPN
DragonDictate PROPN
. PUNCT
			      SPACE
( PUNCT
note NOUN
: PUNCT
a DET
new ADJ
version NOUN
is AUX
now ADV
available ADJ
) PUNCT
	     SPACE
|| NUM
    SPACE
rk.tar NOUN
 		   SPACE
-- PUNCT
the DET
reactive NOUN
keyboard NOUN
-- PUNCT
predicts VERB
what PRON
you PRON
'll AUX
			      SPACE
type VERB
next ADV
-- PUNCT
saves VERB
typingPictures NOUN
( PUNCT
in ADP
the DET
gifs NOUN
subdirectory NOUN
) PUNCT
: PUNCT
    SPACE
howtosit.gif PROPN
	   SPACE
-- PUNCT
picture NOUN
of ADP
good ADJ
sitting VERB
posture NOUN
			      SPACE
( PUNCT
the DET
caringforwrists NOUN
document NOUN
is AUX
better ADJ
for ADP
this DET
) PUNCT
    SPACE
accukey1.gif PROPN
	   SPACE
-- PUNCT
fuzzy ADJ
picture NOUN
    SPACE
accukey2.gif PROPN
	   SPACE
-- PUNCT
fuzzy ADJ
picture NOUN
with ADP
somebody PRON
using VERB
it PRON
    SPACE
apple.gif PROPN
		   SPACE
-- PUNCT
the DET
Apple PROPN
Adjustable PROPN
Keyboard PROPN
		     SPACE
|| NOUN
    SPACE
bat.gif NOUN
               SPACE
-- PUNCT
the DET
InfoGrip PROPN
Bat PROPN
    SPACE
comfort.gif PROPN
           SPACE
-- PUNCT
the DET
Health PROPN
Care PROPN
Comfort PROPN
Keyboard PROPN
    SPACE
datahand1.gif PROPN
	   SPACE
-- PUNCT
fuzzy ADJ
picture NOUN
    SPACE
datahand2.gif PROPN
	   SPACE
-- PUNCT
key ADJ
layout NOUN
schematic NOUN
    SPACE
datahand3.gif PROPN
	   SPACE
-- PUNCT
a DET
much ADV
better ADJ
picture NOUN
of ADP
the DET
datahand NOUN
    SPACE
flexpro.gif PUNCT
		   SPACE
-- PUNCT
the DET
Key PROPN
Tronic PROPN
FlexPro PROPN
keyboard NOUN
		     SPACE
|| NUM
    SPACE
kinesis1.gif PROPN
          SPACE
-- PUNCT
the DET
Kinesis PROPN
Ergonomic PROPN
Keyboard PROPN
    SPACE
kinesis2.gif PROPN
	   SPACE
-- PUNCT
multiple ADJ
views NOUN
of ADP
the DET
Kinesis PROPN
		     SPACE
|| NOUN
    SPACE
maltron[1 PROPN
- PUNCT
4].gif NUM
      SPACE
-- PUNCT
several ADJ
pictures NOUN
of ADP
Maltron PROPN
products NOUN
    SPACE
mikey1.gif PROPN
            SPACE
-- PUNCT
the DET
MIKey PROPN
    SPACE
mikey2.gif PROPN
            SPACE
-- PUNCT
Schematic PROPN
Picture PROPN
of ADP
the DET
MIKey PROPN
    SPACE
tony.gif PROPN
		   SPACE
-- PUNCT
The DET
Tony PROPN
! PUNCT
Ergonomic PROPN
Keysystem PROPN
		     SPACE
|| PROPN
    SPACE
twiddler1.gif PROPN
	   SPACE
-- PUNCT
" PUNCT
front ADJ
" PUNCT
view NOUN
    SPACE
twiddler2.gif PROPN
	   SPACE
-- PUNCT
" PUNCT
side NOUN
" PUNCT
view NOUN
    SPACE
vertical.gif PROPN
	   SPACE
-- PUNCT
the DET
Vertical ADJ
keyboard NOUN
			     SPACE
|| NUM
    SPACE
wave.gif PROPN
		   SPACE
-- PUNCT
the DET
Iocomm PROPN
` PUNCT
Wave PROPN
' PUNCT
keyboardMany ADJ
files NOUN
are AUX
compressed VERB
( PUNCT
have AUX
a DET
.Z PUNCT
ending VERB
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
ca AUX
n't PART
uncompress VERB
a DET
filelocally ADV
, PUNCT
soda NOUN
will AUX
do AUX
it PRON
. PUNCT
  SPACE
Just ADV
ask VERB
for ADP
the DET
file NOUN
, PUNCT
without ADP
the DET
.Z PUNCT
extension NOUN
. PUNCT
If SCONJ
you PRON
're AUX
unable ADJ
to PART
ftp VERB
to ADP
soda NOUN
, PUNCT
send VERB
me PRON
e NOUN
- NOUN
mail NOUN
and CCONJ
we PRON
'll AUX
see VERB
what PRON
wecan PROPN
arrange.==3== VERB
General ADJ
info NOUN
on ADP
injuriesFirst ADV
, PUNCT
and CCONJ
foremost ADV
of ADP
importance NOUN
: PUNCT
if SCONJ
you PRON
experience VERB
pain NOUN
at ADV
all ADV
, PUNCT
thenyou NOUN
absolutely ADV
need VERB
to PART
go VERB
see VERB
a DET
doctor NOUN
. PUNCT
  SPACE
As ADV
soon ADV
as SCONJ
you PRON
possibly ADV
can AUX
. PUNCT
  SPACE
Thedifference NOUN
of ADP
a DET
day NOUN
or CCONJ
two NUM
can AUX
mean VERB
the DET
difference NOUN
between ADP
a DET
short ADJ
recoveryand NOUN
a DET
long ADJ
, PUNCT
drawn VERB
- PUNCT
out ADP
ordeal NOUN
. PUNCT
  SPACE
GO PROPN
SEE PROPN
A DET
DOCTOR PROPN
. PUNCT
  SPACE
Now ADV
, PUNCT
your PRON
garden NOUN
- PUNCT
varietydoctor NOUN
may AUX
not PART
necessarily ADV
be AUX
familiar ADJ
with ADP
this DET
sort NOUN
of ADP
injury NOUN
. PUNCT
  SPACE
Generally ADV
, PUNCT
any DET
hospital NOUN
with ADP
an DET
occupational ADJ
therapy NOUN
clinic NOUN
will AUX
offer VERB
specialists NOUN
inthese ADJ
kinds NOUN
of ADP
problems NOUN
. PUNCT
  SPACE
DON'T VERB
WAIT PROPN
, PUNCT
THOUGH PROPN
. PUNCT
  SPACE
GO PROPN
SEE PROPN
A DET
DOCTOR.The ADP
remainder NOUN
of ADP
this DET
information NOUN
is AUX
paraphrased ADJ
, PUNCT
without ADP
permission NOUN
, PUNCT
froma ADJ
wonderful ADJ
report NOUN
by ADP
New PROPN
Zealand PROPN
's PART
Department PROPN
of ADP
Labour PROPN
( PUNCT
OccupationalSafety PROPN
and CCONJ
Health PROPN
Service PROPN
) PUNCT
: PUNCT
" PUNCT
Occupational PROPN
Overuse PROPN
Syndrome PROPN
. PUNCT
Treatment NOUN
andRehabilitation PROPN
: PUNCT
A DET
Practitioner PROPN
's PART
Guide" PROPN
. PUNCT
First ADV
, PUNCT
a DET
glossary NOUN
( PUNCT
or CCONJ
, PUNCT
fancy ADJ
names NOUN
for ADP
how ADV
you PRON
should AUX
n't PART
have AUX
your PRON
hands):(note NOUN
: PUNCT
you PRON
're AUX
likely ADJ
to PART
hear VERB
these DET
terms NOUN
from ADP
doctors NOUN
and CCONJ
keyboard NOUN
vendors NOUN
:) PUNCT
  SPACE
RSI PROPN
: PUNCT
Repetitive PROPN
Strain PROPN
Injury PROPN
- PUNCT
a DET
general ADJ
term NOUN
for ADP
many ADJ
kinds NOUN
of ADP
injuries NOUN
  SPACE
OOS PROPN
: PUNCT
Occupational PROPN
Overuse PROPN
Syndrome PROPN
-- PUNCT
synonym NOUN
for ADP
RSI PROPN
  SPACE
CTD PROPN
: PUNCT
Cumulative PROPN
Trauma PROPN
Disorder PROPN
-- PUNCT
another DET
synonym NOUN
for ADP
RSI PROPN
  SPACE
WRULD PROPN
: PUNCT
Work NOUN
- PUNCT
Related VERB
Upper PROPN
Limb PROPN
Disorders PROPN
-- PUNCT
yet ADV
another DET
synonym NOUN
for ADP
RSI PROPN
  SPACE
CTS PROPN
: PUNCT
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
( PUNCT
see VERB
below ADV
) PUNCT
  SPACE
Hyperextension NOUN
: PUNCT
  SPACE
Marked VERB
bending VERB
at ADP
a DET
joint NOUN
. PUNCT
  SPACE
Pronation NOUN
: PUNCT
Turning VERB
the DET
palm NOUN
down ADV
. PUNCT
  SPACE
Wrist NOUN
extension NOUN
: PUNCT
Bending VERB
the DET
wrist NOUN
up ADP
. PUNCT
  SPACE
Supination NOUN
: PUNCT
Turning VERB
the DET
palm NOUN
up ADP
. PUNCT
  SPACE
Wrist NOUN
flexion NOUN
: PUNCT
Bending VERB
the DET
wrist NOUN
down ADV
. PUNCT
  SPACE
Pinch ADJ
grip NOUN
: PUNCT
The DET
grip NOUN
used VERB
for ADP
a DET
pencil NOUN
. PUNCT
  SPACE
Ulnar ADJ
deviation NOUN
: PUNCT
Bending VERB
the DET
wrist NOUN
towards ADP
the DET
little ADJ
finger NOUN
. PUNCT
  SPACE
Power NOUN
grip NOUN
: PUNCT
The DET
grip NOUN
used VERB
for ADP
a DET
hammer NOUN
. PUNCT
  SPACE
Radial PROPN
Deviation PROPN
: PUNCT
Bending VERB
the DET
wrist NOUN
toward ADP
the DET
thumb NOUN
. PUNCT
  SPACE
Abduction NOUN
: PUNCT
Moving VERB
away ADV
from ADP
the DET
body NOUN
. PUNCT
  SPACE
Overspanning VERB
: PUNCT
Opening VERB
the DET
fingers NOUN
out ADV
wide ADV
. PUNCT
Now ADV
then ADV
, PUNCT
problems NOUN
come VERB
in ADP
two NUM
main ADJ
types NOUN
: PUNCT
Local ADJ
conditions NOUN
and CCONJ
diffuseconditions NOUN
. PUNCT
  SPACE
Local ADJ
problems NOUN
are AUX
what PRON
you PRON
'd AUX
expect VERB
: PUNCT
specific ADJ
muscles NOUN
, PUNCT
tendons NOUN
, PUNCT
tendon NOUN
sheaths NOUN
, PUNCT
nerves NOUN
, PUNCT
etc X
. PUNCT
being AUX
inflamed VERB
or CCONJ
otherwise ADV
hurt VERB
. PUNCT
Diffuse NOUN
conditions NOUN
, PUNCT
often ADV
mistaken VERB
for ADP
local ADJ
problems NOUN
, PUNCT
can AUX
involve VERB
musclediscomfort NOUN
, PUNCT
pain NOUN
, PUNCT
burning VERB
and/or CCONJ
tingling NOUN
; PUNCT
with ADP
identifiable ADJ
areas NOUN
oftenderness NOUN
in ADP
muscles NOUN
, PUNCT
although SCONJ
they PRON
're AUX
not PART
necessarily ADV
" PUNCT
the DET
problem NOUN
. PUNCT
"--- PUNCT
Why ADV
does AUX
Occupational PROPN
Overuse PROPN
Syndrome PROPN
occur VERB
? PUNCT
  SPACE
Here ADV
's AUX
the DET
theory NOUN
. PUNCT
Normally ADV
, PUNCT
your PRON
muscles NOUN
and CCONJ
tendons NOUN
get VERB
blood NOUN
through ADP
capillaries NOUN
whichpass VERB
among ADP
the DET
muscle NOUN
fibers NOUN
. PUNCT
  SPACE
When ADV
you PRON
tense VERB
a DET
muscle NOUN
, PUNCT
you PRON
restrictthe VERB
blood NOUN
flow NOUN
. PUNCT
  SPACE
By ADP
the DET
time NOUN
you PRON
're AUX
exerting VERB
50 NUM
% NOUN
of ADP
your PRON
full ADJ
power NOUN
, PUNCT
you're PRON
completely ADV
restricting VERB
your PRON
blood NOUN
flow NOUN
. PUNCT
Without ADP
fresh ADJ
blood NOUN
, PUNCT
your PRON
muscles NOUN
use VERB
stored VERB
energy NOUN
until ADP
they PRON
run VERB
out ADP
, PUNCT
then ADV
they PRON
switch VERB
to ADP
anaerobic PROPN
( PUNCT
without ADP
oxygen NOUN
) PUNCT
metabolism NOUN
, PUNCT
which PRON
generatesnasty PROPN
by ADP
- PUNCT
products NOUN
like SCONJ
lactic ADJ
acid NOUN
, PUNCT
which PRON
cause VERB
pain NOUN
. PUNCT
Once ADV
one NUM
muscle NOUN
hurts VERB
, PUNCT
all DET
its PRON
neighbors NOUN
tense ADJ
up ADP
, PUNCT
perhaps ADV
to PART
relieve VERB
theload NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
for ADP
your PRON
normal ADJ
sort NOUN
of ADP
injury NOUN
, PUNCT
but CCONJ
it PRON
only ADV
makesthings VERB
worse ADJ
with ADP
repetitive ADJ
motion NOUN
. PUNCT
  SPACE
More ADJ
tension NOUN
means VERB
less ADJ
blood NOUN
flow NOUN
, PUNCT
and CCONJ
the DET
cycle NOUN
continues VERB
. PUNCT
Another DET
by ADP
- PUNCT
product NOUN
of ADP
the DET
lack NOUN
of ADP
blood NOUN
flow NOUN
is AUX
tingling VERB
and CCONJ
numbness ADJ
fromyour ADJ
nerves NOUN
. PUNCT
  SPACE
They PRON
need VERB
blood NOUN
too ADV
. PUNCT
Anyway INTJ
, PUNCT
when ADV
you PRON
're AUX
typing VERB
too ADV
much ADV
, PUNCT
you PRON
're AUX
never ADV
really ADV
giving VERB
a DET
changefor NOUN
the DET
blood NOUN
to PART
get AUX
back ADV
where ADV
it PRON
belongs VERB
, PUNCT
because SCONJ
your PRON
muscles NOUN
neverrelax ADJ
enough ADV
to PART
let VERB
the DET
blood NOUN
through ADP
. PUNCT
  SPACE
Stress PROPN
, PUNCT
poor ADJ
posture NOUN
, PUNCT
and CCONJ
poorergonomics NOUN
, PUNCT
only ADV
make VERB
things NOUN
worse.--- PROPN
Specific ADJ
injuries NOUN
you PRON
may AUX
have AUX
heard VERB
of:(note NOUN
: PUNCT
most ADJ
injuries NOUN
come VERB
in ADP
two NUM
flavors NOUN
: PUNCT
acute ADJ
and CCONJ
chronic ADJ
. PUNCT
  SPACE
Acuteinjuries NOUN
are AUX
severely ADV
painful ADJ
and CCONJ
noticable ADJ
. PUNCT
  SPACE
Chronic PROPN
conditions NOUN
haveless VERB
pronounced ADJ
symptoms NOUN
but CCONJ
are AUX
every DET
bit NOUN
as SCONJ
real.)Tenosynovitis PROPN
-- PUNCT
an DET
inflamation NOUN
of ADP
the DET
tendon NOUN
sheath NOUN
. PUNCT
  SPACE
Chronic PROPN
tenosynovitisoccurs NOUN
when ADV
the DET
repetitive ADJ
activity NOUN
is AUX
mild ADJ
or CCONJ
intermittent ADJ
: PUNCT
not PART
enough ADJ
tocause NOUN
acute ADJ
inflamation NOUN
, PUNCT
but CCONJ
enough ADV
to PART
exceed VERB
the DET
tendon NOUN
sheath NOUN
's PART
abilityto PROPN
lubricate VERB
the DET
tendon NOUN
. PUNCT
  SPACE
As SCONJ
a DET
result NOUN
, PUNCT
the DET
tendon PROPN
sheath PROPN
thickens PROPN
, PUNCT
getsinflamed VERB
, PUNCT
and CCONJ
you PRON
've AUX
got VERB
your PRON
problem NOUN
. PUNCT
Tendonitis PROPN
-- PUNCT
an DET
inflammation NOUN
of ADP
a DET
tendon NOUN
. PUNCT
  SPACE
Repeated VERB
tensing NOUN
of ADP
a DET
tendoncan ADJ
cause NOUN
inflamation NOUN
. PUNCT
  SPACE
Eventually ADV
, PUNCT
the DET
fibers NOUN
of ADP
the DET
tendon NOUN
start VERB
separating VERB
, PUNCT
and CCONJ
can AUX
even ADV
break VERB
, PUNCT
leaving VERB
behind ADP
debris NOUN
which PRON
induces VERB
more ADJ
friction NOUN
, PUNCT
moreswelling NOUN
, PUNCT
and CCONJ
more ADJ
pain NOUN
. PUNCT
  SPACE
" PUNCT
Sub ADJ
- PUNCT
acute ADJ
" PUNCT
tendonitis NOUN
is AUX
more ADV
common ADJ
, PUNCT
which PRON
entailsa PROPN
dull ADJ
ache PROPN
over ADP
the DET
wrist NOUN
and CCONJ
forearm NOUN
, PUNCT
some DET
tenderness NOUN
, PUNCT
and CCONJ
it PRON
gets VERB
worsewith ADJ
repetitive ADJ
activity NOUN
. PUNCT
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
-- PUNCT
the DET
nerves NOUN
that PRON
run VERB
through ADP
your PRON
wrist NOUN
into ADP
yourfingers NOUN
get VERB
trapped VERB
by ADP
the DET
inflamed ADJ
muscles NOUN
around ADP
them PRON
. PUNCT
  SPACE
Symptoms NOUN
includefeeling VERB
" PUNCT
pins NOUN
and CCONJ
needles NOUN
" PUNCT
, PUNCT
tingling NOUN
, PUNCT
numbness NOUN
, PUNCT
and CCONJ
even ADV
loss NOUN
of ADP
sensation NOUN
. PUNCT
CTS PROPN
is AUX
often ADV
confused ADJ
for ADP
a DET
diffuse NOUN
condition NOUN
. PUNCT
Adverse ADJ
Mechanical PROPN
Tension PROPN
-- PUNCT
also ADV
known VERB
as SCONJ
' PUNCT
neural ADJ
tension NOUN
' PUNCT
, PUNCT
this DET
is AUX
wherethe NOUN
nerves NOUN
running VERB
down ADV
to ADP
your PRON
arm NOUN
have AUX
become VERB
contracted VERB
and CCONJ
possiblycompressed VERB
as SCONJ
a DET
result NOUN
of ADP
muscle NOUN
spasms NOUN
in ADP
the DET
shoulders NOUN
and CCONJ
elsewhere ADV
. PUNCT
AMT PROPN
can AUX
often ADV
misdiagnosed VERB
as SCONJ
or CCONJ
associated VERB
with ADP
one NUM
of ADP
the DET
other ADJ
OOS PROPN
disorders NOUN
. PUNCT
  SPACE
It PRON
is AUX
largely ADV
reversible ADJ
and CCONJ
can AUX
be AUX
treated VERB
with ADP
physiotherapy NOUN
( PUNCT
brachial ADJ
plexus NOUN
stretches NOUN
and CCONJ
trigger NOUN
point NOUN
therapy).Others NOUN
: PUNCT
for ADP
just ADV
about ADV
every DET
part NOUN
of ADP
your PRON
body NOUN
, PUNCT
there PRON
's AUX
a DET
fancy ADJ
name NOUN
fora PROPN
way NOUN
to PART
injure VERB
it PRON
. PUNCT
  SPACE
By ADP
now ADV
, PUNCT
you PRON
should AUX
be AUX
getting VERB
an DET
idea NOUN
of ADP
how ADV
OOSconditions NOUN
occur VERB
and CCONJ
why ADV
. PUNCT
  SPACE
Just ADV
be AUX
careful ADJ
: PUNCT
many ADJ
inexperienced VERB
doctorsmisdiagnose NOUN
problems NOUN
as SCONJ
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
, PUNCT
when ADV
in ADP
reality NOUN
, PUNCT
youmay PROPN
have AUX
a DET
completely ADV
different ADJ
problem NOUN
. PUNCT
  SPACE
Always ADV
get AUX
a DET
second ADJ
opinionbefore ADJ
somebody PRON
does AUX
something PRON
drastic ADJ
to ADP
you PRON
( PUNCT
like SCONJ
surgery).==4== PROPN
Typing PROPN
posture NOUN
, PUNCT
ergonomics NOUN
, PUNCT
prevention NOUN
, PUNCT
treatmentThe PROPN
most ADV
important ADJ
element NOUN
of ADP
both DET
prevention NOUN
and CCONJ
recovery NOUN
is AUX
to ADP
reducetension NOUN
in ADP
the DET
muscles NOUN
and CCONJ
tendons NOUN
. PUNCT
  SPACE
This DET
requires VERB
learning VERB
how ADV
to PART
relax VERB
. PUNCT
If SCONJ
you PRON
're AUX
under ADP
a DET
load NOUN
of ADP
stress NOUN
, PUNCT
this DET
is AUX
doubly ADV
important ADJ
. PUNCT
  SPACE
Tune PROPN
outthe ADJ
world NOUN
and CCONJ
breath NOUN
deep ADJ
and CCONJ
regular ADJ
. PUNCT
  SPACE
Relaxing VERB
should AUX
become VERB
a DET
guidingprinciple NOUN
in ADP
your PRON
work NOUN
: PUNCT
every DET
three NUM
minutes NOUN
take VERB
a DET
three NUM
second ADJ
break NOUN
. PUNCT
EVERY DET
THREE NUM
MINUTES NOUN
, PUNCT
TAKE VERB
A DET
THREE NUM
SECOND NOUN
BREAK PROPN
. PUNCT
  SPACE
Really ADV
, PUNCT
do AUX
it PRON
everythree VERB
minutes NOUN
. PUNCT
  SPACE
It PRON
's AUX
also ADV
helpful ADJ
to PART
work VERB
in ADP
comfortable ADJ
surroundings NOUN
, PUNCT
calm VERB
down ADP
, PUNCT
and CCONJ
relax VERB
. PUNCT
If SCONJ
you PRON
ca AUX
n't PART
sleep VERB
, PUNCT
you PRON
really ADV
need VERB
to PART
focus VERB
on ADP
this DET
. PUNCT
  SPACE
Rest NOUN
, PUNCT
sleep NOUN
, PUNCT
andrelaxation NOUN
are AUX
really ADV
a DET
big ADJ
deal NOUN
. PUNCT
There PRON
are AUX
all DET
kinds NOUN
of ADP
other ADJ
treatments NOUN
, PUNCT
of ADP
course NOUN
. PUNCT
  SPACE
Drugs NOUN
can AUX
reduceinflamation NOUN
and CCONJ
pain NOUN
. PUNCT
  SPACE
Custom NOUN
- PUNCT
molded VERB
splints NOUN
can AUX
forcefully ADV
prevent VERB
badposture NOUN
. PUNCT
  SPACE
Surgery NOUN
can AUX
fix VERB
some DET
problems NOUN
. PUNCT
  SPACE
Exercise NOUN
can AUX
help VERB
strengthenyour VERB
muscles NOUN
. PUNCT
  SPACE
Regular ADJ
stretching NOUN
can AUX
help VERB
prevent VERB
injury NOUN
. PUNCT
  SPACE
Good ADJ
postureand NOUN
a DET
good ADJ
ergonomic ADJ
workspace NOUN
promote VERB
reduced VERB
tension NOUN
. PUNCT
  SPACE
Ice NOUN
or CCONJ
hot ADJ
- PUNCT
coldcontrast ADJ
baths NOUN
also ADV
reduce VERB
swelling VERB
. PUNCT
  SPACE
Only ADV
your PRON
doctor NOUN
can AUX
say VERB
what PRON
's AUX
bestfor ADP
you.--- PROPN
Posture PROPN
-- PUNCT
here ADV
are AUX
some DET
basic ADJ
guidelines NOUN
. PUNCT
  SPACE
[ PUNCT
I PRON
so ADV
liked VERB
the DET
way NOUN
this DET
waswritten VERB
in ADP
the DET
New PROPN
Zealand PROPN
book NOUN
that PRON
I PRON
'm AUX
lifting VERB
it PRON
almost ADV
verbatim ADV
fromAppendix PROPN
10 NUM
. PUNCT
-- PUNCT
dwallach NOUN
] PUNCT
. PUNCT
Let VERB
your PRON
shoulders NOUN
relax VERB
.. PUNCT
Let VERB
your PRON
elbows NOUN
swing VERB
free ADJ
.. PUNCT
Keep VERB
your PRON
wrists NOUN
straight ADV
.. PUNCT
Pull VERB
your PRON
chin NOUN
in ADP
to PART
look VERB
down ADV
- PUNCT
do AUX
n't PART
flop VERB
your PRON
head NOUN
forward ADV
.. PUNCT
Keep VERB
the DET
hollow ADJ
in ADP
the DET
base NOUN
of ADP
your PRON
spine NOUN
.. PUNCT
Try VERB
leaning VERB
back ADV
in ADP
the DET
chair NOUN
.. PUNCT
Do AUX
n't PART
slouch VERB
or CCONJ
slump VERB
forward ADV
.. PUNCT
Alter VERB
your PRON
posture NOUN
from ADP
time NOUN
to ADP
time NOUN
.. PUNCT
Every DET
20 NUM
minutes NOUN
, PUNCT
get AUX
up ADP
and CCONJ
bend VERB
your PRON
spine NOUN
backward ADV
. PUNCT
Set VERB
the DET
seat NOUN
height NOUN
, PUNCT
first ADV
. PUNCT
  SPACE
Your PRON
feet NOUN
should AUX
be AUX
flat ADJ
on ADP
the DET
floor NOUN
. PUNCT
  SPACE
There PRON
should AUX
be AUX
no DET
undue ADJ
pressure NOUN
on ADP
the DET
underside NOUN
of ADP
your PRON
thighs NOUN
near SCONJ
the DET
knees NOUN
, PUNCT
and CCONJ
your PRON
thighs NOUN
should AUX
not PART
slope VERB
too ADV
much ADV
. PUNCT
Now ADV
, PUNCT
draw VERB
yourself PRON
up ADP
to ADP
your PRON
desk NOUN
and CCONJ
see VERB
that SCONJ
its PRON
height NOUN
is AUX
comfortableto PROPN
work VERB
at ADP
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
short ADJ
, PUNCT
this DET
may AUX
be AUX
impossible ADJ
. PUNCT
  SPACE
The DET
beest ADJ
remedyis VERB
to PART
raise VERB
the DET
seat NOUN
height NOUN
and CCONJ
prevent VERB
your PRON
legs NOUN
from ADP
dangling VERB
by ADP
using VERB
afootrest NOUN
. PUNCT
Now ADV
, PUNCT
adjust VERB
the DET
backrest ADJ
height NOUN
so SCONJ
that SCONJ
your PRON
buttocks NOUN
fit VERB
into ADP
the DET
spacebetween NOUN
the DET
backrest ADJ
and CCONJ
the DET
seat NOUN
pan PROPN
. PUNCT
  SPACE
The DET
backrest ADJ
should AUX
support VERB
you PRON
inthe ADV
hollow ADJ
of ADP
your PRON
back NOUN
, PUNCT
so ADV
adjust VERB
its PRON
tilt NOUN
to PART
give VERB
firm ADJ
support NOUN
in ADP
thisarea NOUN
. PUNCT
If SCONJ
you PRON
operate VERB
a DET
keyboard NOUN
, PUNCT
you PRON
will AUX
be AUX
able ADJ
to PART
spend VERB
more ADJ
time NOUN
leaningback NOUN
, PUNCT
so CCONJ
experiment NOUN
with ADP
a DET
chair NOUN
with ADP
a DET
taller ADJ
backrest NOUN
, PUNCT
if SCONJ
available.[Now NUM
, PUNCT
I PRON
diverge VERB
a DET
little ADJ
from ADP
the DET
text]A ADJ
good ADJ
chair NOUN
makes VERB
a DET
big ADJ
difference NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
like VERB
your PRON
chair NOUN
, PUNCT
gofind VERB
a DET
better ADJ
one NUM
. PUNCT
  SPACE
You PRON
really ADV
want VERB
adjustments NOUN
for ADP
height NOUN
, PUNCT
back ADJ
angle NOUN
, PUNCT
back ADV
height NOUN
, PUNCT
and CCONJ
maybe ADV
even ADV
seat NOUN
tilt NOUN
. PUNCT
  SPACE
Most ADJ
arm NOUN
rests NOUN
seem VERB
to PART
get AUX
inthe DET
way NOUN
, PUNCT
although SCONJ
some DET
more ADV
expensive ADJ
chairs NOUN
have AUX
height VERB
adjustable ADJ
armrests NOUN
which PRON
you PRON
can AUX
also ADV
rotate VERB
out SCONJ
of ADP
the DET
way NOUN
. PUNCT
  SPACE
You PRON
should AUX
find VERB
a DET
goodstore NOUN
and CCONJ
play VERB
with ADP
all DET
these DET
chairs NOUN
-- PUNCT
pick VERB
one NUM
that PRON
's AUX
right ADJ
for ADP
you PRON
. PUNCT
In ADP
the DET
San PROPN
Francisco PROPN
Bay PROPN
Area PROPN
, PUNCT
I PRON
highly ADV
recommend VERB
" PUNCT
Just ADV
Chairs PROPN
. PUNCT
" PUNCT
  SPACE
Thename PROPN
says VERB
it PRON
all.--- PROPN
Keyboard PROPN
drawers NOUN
, PUNCT
wrist NOUN
pads NOUN
, PUNCT
and CCONJ
keyboard NOUN
replacements NOUN
: PUNCT
There PRON
is AUX
a DET
fair ADJ
amount NOUN
of ADP
controvery NOUN
on ADP
how ADV
to PART
get AUX
this DET
right NOUN
. PUNCT
  SPACE
For ADP
somepeople NOUN
, PUNCT
wrist NOUN
pads NOUN
seem VERB
to PART
work VERB
wonders NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
with ADP
good ADJ
posture NOUN
, PUNCT
youshouldn't CCONJ
be AUX
resting VERB
your PRON
wrists NOUN
on ADP
anything PRON
-- PUNCT
you PRON
would AUX
prefer VERB
yourkeyboard ADJ
to PART
be AUX
" PUNCT
right ADV
there ADV
" PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
drop VERB
your PRON
arms NOUN
at ADP
your PRON
side NOUN
and CCONJ
thenlift VERB
your PRON
hands NOUN
up ADP
at ADP
the DET
elbow NOUN
, PUNCT
you PRON
want VERB
your PRON
keyboard NOUN
under ADP
your PRON
handswhen NOUN
your PRON
elbows NOUN
are AUX
at ADP
about ADV
90 NUM
degrees NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
you PRON
want VERB
to ADP
avoidpronation NOUN
, PUNCT
wrist NOUN
extension NOUN
, PUNCT
and CCONJ
ulnar NOUN
deviation NOUN
at ADP
all DET
costs NOUN
. PUNCT
  SPACE
Wrist NOUN
padsmay NOUN
or CCONJ
may AUX
not PART
help VERB
at ADP
this DET
. PUNCT
  SPACE
You PRON
should AUX
get AUX
somebody PRON
else ADV
to PART
come VERB
andlook NOUN
at ADP
how ADV
you PRON
work VERB
: PUNCT
how ADV
you PRON
sit VERB
, PUNCT
how ADV
you PRON
type VERB
, PUNCT
and CCONJ
how ADV
you PRON
relax VERB
. PUNCT
  SPACE
It'soften ADV
easier ADJ
for ADP
somebody PRON
else ADV
to PART
notice VERB
your PRON
hunched ADJ
shoulders NOUN
ordeviated VERB
hands NOUN
. PUNCT
Some DET
argue VERB
that SCONJ
the DET
normal ADJ
, PUNCT
flat ADJ
keyboard NOUN
is AUX
antiquated VERB
and CCONJ
poorlydesigned VERB
. PUNCT
  SPACE
A DET
number NOUN
of ADP
replacements NOUN
are AUX
available ADJ
, PUNCT
on ADP
the DET
market NOUN
, PUNCT
today NOUN
. PUNCT
Check VERB
out ADP
the DET
accompanying ADJ
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ PUNCT
keyboards NOUN
for ADP
much ADJ
detail.==5== ADJ
Requests NOUN
for ADP
more ADV
infoClearly ADV
, PUNCT
the DET
above ADJ
information NOUN
is AUX
incomplete ADJ
. PUNCT
  SPACE
The DET
typing NOUN
- PUNCT
injury NOUN
archiveis PROPN
incomplete ADJ
. PUNCT
  SPACE
There PRON
's AUX
always ADV
more ADJ
information NOUN
out ADV
there ADV
. PUNCT
  SPACE
If SCONJ
you PRON
'd AUX
liketo PROPN
submit VERB
something PRON
, PUNCT
please INTJ
send VERB
me PRON
mail NOUN
, PUNCT
and CCONJ
I PRON
'll AUX
gladly ADV
throw VERB
it PRON
in ADP
. PUNCT
If SCONJ
you PRON
'd AUX
like VERB
to PART
maintain VERB
a DET
list NOUN
of ADP
products NOUN
or CCONJ
vendors NOUN
, PUNCT
that PRON
would AUX
bewonderful VERB
! PUNCT
  SPACE
I PRON
'd AUX
love VERB
somebody PRON
to PART
make VERB
a DET
list NOUN
of ADP
chair NOUN
/ SYM
desk NOUN
vendors NOUN
. PUNCT
  SPACE
I'dlove PROPN
somebody PRON
to PART
make VERB
a DET
list NOUN
of ADP
doctors NOUN
. PUNCT
  SPACE
I PRON
'd AUX
love VERB
somebody PRON
to PART
edit VERB
theabove NOUN
sections NOUN
, PUNCT
looking VERB
for ADP
places NOUN
where ADV
I PRON
've AUX
obviously ADV
goofed.==6== VERB
ReferencesI NOUN
completely ADV
rewrote VERB
the DET
information NOUN
section NOUN
here ADV
, PUNCT
using VERB
a DET
wonderfulguide NOUN
produced VERB
in ADP
New PROPN
Zealand PROPN
by ADP
their PRON
Occupational PROPN
Safety PROPN
& CCONJ
HealthService PROPN
, PUNCT
a DET
service NOUN
of ADP
their PRON
Department PROPN
of ADP
Labour PROPN
. PUNCT
  SPACE
Special PROPN
thanksto VERB
the DET
authors NOUN
: PUNCT
Wigley PROPN
, PUNCT
Turner PROPN
, PUNCT
Blake PROPN
, PUNCT
Darby PROPN
, PUNCT
McInnes PROPN
, PUNCT
and CCONJ
Harding PROPN
. PUNCT
Semi ADJ
- ADJ
bibliographic ADJ
reference NOUN
: PUNCT
    SPACE
. PUNCT
Occupational PROPN
Overuse PROPN
Syndrome PROPN
    SPACE
. PUNCT
Treatment NOUN
and CCONJ
Rehabilitation PROPN
: PUNCT
      SPACE
A DET
Practitioner PROPN
's PART
Guide PROPN
        SPACE
Published VERB
by ADP
the DET
Occupational PROPN
Safety PROPN
and CCONJ
Health PROPN
Service PROPN
    SPACE
Department PROPN
of ADP
Labour PROPN
    SPACE
Wellington PROPN
, PUNCT
    SPACE
New PROPN
Zealand PROPN
. PUNCT
    SPACE
First PROPN
Edition PROPN
: PUNCT
June PROPN
1992 NUM
    SPACE
ISBN ADJ
0 NUM
- SYM
477 NUM
- PUNCT
3499 NUM
- SYM
3 NUM
    SPACE
Price NOUN
: PUNCT
$ SYM
9.95 NUM
( PUNCT
New PROPN
Zealand PROPN
$ PROPN
's PART
, PUNCT
of ADP
course)Thanks NOUN
to ADP
Richard PROPN
Donkin PROPN
< X
richardd@hoskyns.co.uk ADP
> X
for ADP
reviewing VERB
this DET
posting.-- ADP
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup PUNCT
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58719From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
MethodologyIn PROPN
article NOUN
< X
1993Apr11.015518.21198@sbcs.sunysb.edu INTJ
> X
mhollowa@ic.sunysb.edu PROPN
     SPACE
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C552Jv NOUN
. PUNCT
GGB@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
     SPACE
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes:>>I NOUN
would AUX
also ADV
like VERB
to PART
point VERB
out ADP
that SCONJ
most ADJ
of ADP
the DET
arguments NOUN
about ADP
science>>in PROPN
sci.med VERB
, PUNCT
sci.psychology PROPN
, PUNCT
etc X
. PUNCT
are AUX
not PART
about ADP
cases NOUN
where ADV
people NOUN
are>>rejecting VERB
scientific ADJ
argument NOUN
/ SYM
evidence NOUN
/ SYM
proof NOUN
. PUNCT
  SPACE
They PRON
are AUX
about ADP
cases NOUN
where>>no VERB
adequate ADJ
scientific ADJ
research NOUN
has AUX
been AUX
done VERB
. PUNCT
   SPACE
( PUNCT
In ADP
some DET
cases NOUN
, PUNCT
there ADV
is>>quite NOUN
a DET
bit NOUN
of ADP
evidence NOUN
, PUNCT
but CCONJ
it PRON
is AUX
n't PART
in ADP
a DET
format NOUN
to PART
fit VERB
doctrinaire>>conceptions NOUN
of ADP
what PRON
science NOUN
is AUX
. PUNCT
) PUNCT
  SPACE
> X
> X
Here ADV
it PRON
is AUX
again ADV
. PUNCT
  SPACE
This DET
indicates VERB
confusion NOUN
between ADP
" PUNCT
proof NOUN
" PUNCT
and CCONJ
the DET
process NOUN
> X
of ADP
doing VERB
science NOUN
. PUNCT
  SPACE
You PRON
are AUX
making VERB
precisely ADV
one NUM
of ADP
the DET
points NOUN
I PRON
wanted VERB
to PART
make VERB
. PUNCT
I PRON
fully ADV
agree VERB
with ADP
you PRON
that SCONJ
there PRON
is AUX
a DET
big ADJ
distinction NOUN
between ADP
the*process NUM
* PUNCT
of ADP
science NOUN
and CCONJ
the DET
end NOUN
result NOUN
. PUNCT
  SPACE
As SCONJ
an DET
end NOUN
result NOUN
of ADP
science NOUN
, PUNCT
one PRON
wants VERB
to PART
get AUX
results NOUN
that PRON
areobjectively ADV
verifiable ADJ
. PUNCT
  SPACE
But CCONJ
there PRON
is AUX
nothing PRON
objective ADJ
about ADP
the*process NUM
* PUNCT
of ADP
science NOUN
. PUNCT
  SPACE
If SCONJ
good ADJ
empirical ADJ
research NOUN
were AUX
done VERB
and CCONJ
showed VERB
that SCONJ
there PRON
is AUX
some DET
meritto NOUN
homeopathic ADJ
remedies NOUN
, PUNCT
this DET
would AUX
certainly ADV
be AUX
valuable ADJ
information NOUN
. PUNCT
But CCONJ
it PRON
would AUX
still ADV
not PART
mean VERB
that SCONJ
homeopathy NOUN
qualifies NOUN
as SCONJ
a DET
science NOUN
. PUNCT
  SPACE
Thisis NOUN
where ADV
you PRON
and CCONJ
I PRON
disagree VERB
with ADP
Turpin PROPN
. PUNCT
  SPACE
In ADP
order NOUN
to PART
have AUX
science NOUN
, PUNCT
onemust ADV
have AUX
a DET
theoretical ADJ
structure NOUN
that PRON
makes VERB
sense NOUN
, PUNCT
not PART
a DET
merecollection NOUN
of ADP
empirically ADV
validated VERB
random ADJ
hypotheses NOUN
. PUNCT
Experiment NOUN
and CCONJ
empirical ADJ
studies NOUN
are AUX
an DET
important ADJ
part NOUN
of ADP
science NOUN
, PUNCT
butthey NOUN
are AUX
merely ADV
the DET
culmination NOUN
of ADP
scientific ADJ
research NOUN
. PUNCT
  SPACE
The DET
mostimportant ADJ
part NOUN
of ADP
true ADJ
scientific ADJ
methodology NOUN
is AUX
SCIENTIFIC PROPN
THINKING NOUN
. PUNCT
  SPACE
Without ADP
this DET
, PUNCT
one PRON
does AUX
not PART
have AUX
any DET
hypotheses NOUN
worth ADJ
testing VERB
. PUNCT
  SPACE
( PUNCT
No INTJ
, PUNCT
hypotheses NOUN
do AUX
not PART
just ADV
leap VERB
out ADP
at ADP
you PRON
after ADP
you PRON
look VERB
at ADP
enough ADJ
data NOUN
. PUNCT
Nor CCONJ
do AUX
they PRON
simply ADV
come VERB
to ADP
you PRON
in ADP
a DET
flash NOUN
one NUM
day NOUN
while SCONJ
you PRON
're AUX
shaving VERB
orlooking VERB
out ADP
the DET
window NOUN
. PUNCT
  SPACE
At ADP
least ADJ
not PART
unless SCONJ
you PRON
've AUX
done VERB
a DET
lot NOUN
of ADP
reallygood NOUN
thinking VERB
beforehand ADV
. PUNCT
) PUNCT
  SPACE
The DET
difference NOUN
between ADP
a DET
Nobel PROPN
Prize PROPN
level NOUN
scientist NOUN
and CCONJ
a DET
mediocrescientist NOUN
does AUX
not PART
lie VERB
in ADP
the DET
quality NOUN
of ADP
their PRON
empirical ADJ
methodology NOUN
. PUNCT
  SPACE
It PRON
depends VERB
on ADP
the DET
quality NOUN
of ADP
their PRON
THINKING NOUN
. PUNCT
  SPACE
It PRON
really ADV
bothers VERB
me PRON
that SCONJ
so ADV
many ADJ
graduate NOUN
students NOUN
seem VERB
to PART
believe VERB
thatthey PRON
are AUX
doing VERB
science NOUN
merely ADV
because SCONJ
they PRON
are AUX
conducting VERB
empiricalstudies NOUN
. PUNCT
  SPACE
And CCONJ
it PRON
bothers VERB
me PRON
even ADV
more ADV
that SCONJ
there PRON
are AUX
many ADJ
fields NOUN
, PUNCT
such ADJ
ascertain NOUN
parts NOUN
of ADP
psychology NOUN
, PUNCT
where ADV
there PRON
seems VERB
to PART
be AUX
no DET
thinking NOUN
at ADV
all ADV
, PUNCT
but CCONJ
mere ADJ
studies NOUN
testing VERB
ad X
hoc X
hypotheses VERB
. PUNCT
  SPACE
And CCONJ
I PRON
'm AUX
especially ADV
offended VERB
by ADP
Russell PROPN
Turpin PROPN
's PART
repeated VERB
assertion NOUN
thatscience NOUN
amounts VERB
to ADP
nothing PRON
more ADJ
than SCONJ
avoiding VERB
mistakes NOUN
. PUNCT
  SPACE
Simply ADV
avoidingmistakes NOUN
does AUX
n't PART
get AUX
you PRON
anywhere ADV
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58758From NUM
: PUNCT
wright@duca.hi.com PROPN
( PUNCT
David PROPN
Wright)Subject NUM
: PUNCT
Re ADP
: PUNCT
NATURAL ADJ
ANTI NOUN
- PUNCT
cancer NOUN
/ SYM
AIDS PROPN
RemediesIn NOUN
article NOUN
< X
19604@pitt PROPN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:|In ADJ
article NOUN
< X
1993Apr6.165840.5703@cnsvax.uwec.edu NUM
> X
mcelwre@cnsvax.uwec.edu PROPN
writes:| NOUN
> X
     SPACE
The DET
biggest ADJ
reason NOUN
why ADV
the DET
cost NOUN
of ADP
medical ADJ
care NOUN
is AUX
so ADV
EXTREMELY PROPN
high ADJ
and|>increasing NOUN
is AUX
that SCONJ
NATURAL ADJ
methods NOUN
of ADP
treatment NOUN
and CCONJ
even ADV
diagnosis NOUN
are AUX
still|>being VERB
SYSTEMATICALLY NOUN
IGNORED NOUN
and CCONJ
SUPPRESSED VERB
by ADP
the DET
MONEY NOUN
- PUNCT
GRUBBING NOUN
and CCONJ
POWER-|>MONGERING ADP
" PUNCT
medical ADJ
" PUNCT
establishment.|That DET
's AUX
not PART
the DET
half NOUN
of ADP
it PRON
. PUNCT
  SPACE
Did AUX
you PRON
realize VERB
that SCONJ
all DET
medical ADJ
doctors NOUN
have|now X
been AUX
replaced VERB
by ADP
aliens?Yup NOUN
. PUNCT
  SPACE
By ADP
the DET
way NOUN
, PUNCT
what PRON
planet NOUN
are AUX
you PRON
from ADP
, PUNCT
and CCONJ
once SCONJ
you PRON
got VERB
here ADV
, PUNCT
didyou NOUN
encounter VERB
those DET
prejudices NOUN
against ADP
foreign ADJ
medical ADJ
graduates NOUN
? PUNCT
  SPACE
-- PUNCT
David PROPN
Wright PROPN
, PUNCT
Hitachi PROPN
Computer PROPN
Products PROPN
( PUNCT
America PROPN
) PUNCT
, PUNCT
Inc. PROPN
  SPACE
Waltham PROPN
, PUNCT
MA PROPN
     SPACE
wright@hicomb.hi.com PROPN
  SPACE
: PUNCT
: PUNCT
  SPACE
These DET
are AUX
my PRON
opinions NOUN
, PUNCT
not PART
necessarily ADV
      SPACE
Hitachi PROPN
's PART
, PUNCT
though SCONJ
they PRON
are AUX
the DET
opinions NOUN
of ADP
all DET
right ADJ
- PUNCT
thinking VERB
peopleNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58759From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qi2h1INNr3o@roundup.crhc.uiuc.edu NUM
> X
, PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Two NUM
different ADJ
Tuesdays PROPN
( PUNCT
two NUM
weeks NOUN
apart ADV
we PRON
used VERB
the DET
same ADJ
day NOUN
of ADP
the| PROPN
> X
week NOUN
just ADV
for ADP
consistancies NOUN
sake NOUN
) PUNCT
we PRON
ordered VERB
food NOUN
from ADP
the DET
local ADJ
| NOUN
> X
Chinese PROPN
take VERB
out ADV
- PUNCT
same ADJ
exact ADJ
food NOUN
except SCONJ
ONE NUM
of ADP
the DET
days NOUN
we PRON
had AUX
them| PROPN
> X
hold VERB
the DET
MSG PROPN
. PUNCT
  SPACE
I PRON
did AUX
not PART
know VERB
which PRON
time NOUN
the DET
food NOUN
was AUX
ordered VERB
without| PROPN
> X
the DET
MSG PROPN
but CCONJ
one NUM
time NOUN
I PRON
had AUX
the DET
reaction NOUN
and CCONJ
one NUM
time NOUN
I PRON
did AUX
not PART
. PUNCT
  SPACE
| ADP
> X
| ADP
> X
NOW ADV
- PUNCT
you PRON
can AUX
TRY VERB
to PART
tell VERB
me PRON
that SCONJ
it PRON
was AUX
n't PART
" PUNCT
scientific ADJ
" PUNCT
enough ADJ
and| PROPN
> X
that PRON
I PRON
have AUX
not PART
PROVEN ADJ
beyond ADP
the DET
shadow NOUN
of ADP
a DET
doubt NOUN
that PRON
I PRON
have AUX
a| VERB
> X
reaction NOUN
to ADP
MSG PROPN
- PUNCT
but CCONJ
it PRON
was AUX
proof ADJ
enough ADV
for ADP
ME PROPN
and CCONJ
I PRON
'll AUX
have AUX
you| PROPN
> X
know VERB
that SCONJ
I PRON
do AUX
NOT ADV
wish VERB
to PART
get AUX
sick ADJ
from ADP
eating VERB
food NOUN
thank VERB
you PRON
very| PROPN
> X
much ADV
. PUNCT
  SPACE
| ADP
> X
If SCONJ
you PRON
could AUX
not PART
tell VERB
which PRON
one NOUN
had AUX
MSG PROPN
, PUNCT
why ADV
restaurants NOUN
bother VERB
touse ADP
it PRON
at ADV
all ADV
? PUNCT
If SCONJ
you PRON
can AUX
taste VERB
the DET
difference NOUN
, PUNCT
psychological ADJ
reaction NOUN
might AUX
play VERB
a DET
role NOUN
. PUNCT
The DET
fact NOUN
is AUX
, PUNCT
MSG PROPN
is AUX
part NOUN
of ADP
natural ADJ
substance NOUN
. PUNCT
Everyone PRON
, PUNCT
I PRON
mean VERB
EVERYONE NOUN
, PUNCT
consumes VERB
certain ADJ
amount NOUN
of ADP
MSG PROPN
every DET
day NOUN
through ADP
regular ADJ
diet NOUN
withoutthe NOUN
synthesized VERB
MSG PROPN
additive NOUN
. PUNCT
Chinese PROPN
, PUNCT
and CCONJ
many ADJ
other ADJ
Asians PROPN
( PUNCT
Japanese PROPN
, PUNCT
Koreans PROPN
, PUNCT
etc X
) PUNCT
have AUX
usedMSG NUM
as SCONJ
flavor NOUN
enhancer NOUN
for ADP
two NUM
thousand NUM
years NOUN
. PUNCT
Do AUX
you PRON
believe VERB
thatthey PRON
knew VERB
how ADV
to PART
make VERB
MSG PROPN
from ADP
chemical NOUN
processes NOUN
? PUNCT
Not PART
. PUNCT
They PRON
justextracted VERB
it PRON
from ADP
natural ADJ
food NOUN
such ADJ
sea NOUN
food NOUN
and CCONJ
meat NOUN
broth NOUN
. PUNCT
Baring VERB
MSG PROPN
is AUX
just ADV
like SCONJ
baring VERB
sugar NOUN
which PRON
many ADJ
people NOUN
react VERB
to ADP
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58760From NUM
: PUNCT
cdm@pmafire.inel.gov PROPN
( PUNCT
Dale PROPN
Cook)Subject PROPN
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?In PROPN
article NOUN
< X
19607@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>A ADJ
recent ADJ
movie NOUN
, PUNCT
Lorenzo PROPN
's PART
Oil PROPN
, PUNCT
offers VERB
a DET
perfect ADJ
example NOUN
of ADP
what>>I'm NOUN
talking VERB
about ADP
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
n't PART
seen VERB
it PRON
, PUNCT
you PRON
should AUX
. PUNCT
  SPACE
It PRON
's AUX
not>>I NOUN
saw VERB
it PRON
. PUNCT
  SPACE
It PRON
is AUX
almost ADV
a DET
unique ADJ
case NOUN
in ADP
history NOUN
. PUNCT
  SPACE
First ADV
, PUNCT
ALD PROPN
> X
is AUX
a DET
rare ADJ
but CCONJ
fatal ADJ
disease NOUN
. PUNCT
[ PUNCT
... PUNCT
] PUNCT
> X
Their PRON
accomplishment NOUN
was AUX
significant ADJ
. PUNCT
  SPACE
( PUNCT
Of ADV
course ADV
, PUNCT
it PRON
was AUX
overplayed VERB
> X
in ADP
the DET
movie NOUN
for ADP
dramatic ADJ
effect NOUN
. PUNCT
  SPACE
The DET
oil NOUN
is AUX
not PART
curative ADJ
, PUNCT
and CCONJ
does AUX
n't PART
even ADV
> X
prevent VERB
progression NOUN
, PUNCT
only ADV
slows VERB
it PRON
. PUNCT
) PUNCT
There PRON
's AUX
a DET
pretty ADV
good ADJ
article NOUN
in ADP
the DET
the DET
March PROPN
6 NUM
, PUNCT
1993 NUM
New PROPN
Scientist PROPN
titled"Pouring VERB
cold ADJ
water NOUN
on ADP
Lorenzo PROPN
's PART
oil NOUN
" PUNCT
. PUNCT
  SPACE
The DET
article NOUN
states VERB
that SCONJ
researchhas PROPN
shown VERB
that SCONJ
the DET
oil NOUN
has AUX
no DET
discernable ADJ
effect NOUN
on ADP
the DET
progression NOUN
of ADP
thedisease NOUN
in ADP
patients NOUN
in ADP
which PRON
demyelination NOUN
has AUX
begun VERB
. PUNCT
  SPACE
In ADP
patients NOUN
withAMN PUNCT
( PUNCT
a DET
less ADV
acute ADJ
form NOUN
of ADP
the DET
same ADJ
disease NOUN
) PUNCT
there PRON
is AUX
some DET
improvementseen NOUN
in ADP
the DET
ability NOUN
of ADP
nerve NOUN
fibres NOUN
to PART
conduct VERB
impulses NOUN
. PUNCT
  SPACE
In ADP
ALD PROPN
patientswho NOUN
have AUX
not PART
yet ADV
begun VERB
demyelination NOUN
, PUNCT
the DET
jury NOUN
is AUX
still ADV
out.---Dale ADJ
CookNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58761From NUM
: PUNCT
ls8139@albnyvms.bitnet PROPN
( PUNCT
larry PROPN
silverberg)Subject PROPN
: PUNCT
podiatry NOUN
School PROPN
info?Hello INTJ
, PUNCT
I PRON
am AUX
planning VERB
on ADP
attending VERB
Podiatry PROPN
School PROPN
next ADJ
year NOUN
. PUNCT
I PRON
have AUX
narrowed VERB
my PRON
choices NOUN
to ADP
the DET
Pennsylvania PROPN
College PROPN
of ADP
PodiatricMedicine PROPN
, PUNCT
in ADP
Philadelphia PROPN
, PUNCT
or CCONJ
the DET
California PROPN
College PROPN
of ADP
PodiatricMedicine PROPN
in ADP
San PROPN
Francisco PROPN
. PUNCT
  SPACE
If SCONJ
anyone PRON
has AUX
any DET
information NOUN
or CCONJ
oppinions NOUN
about ADP
these DET
two NUM
schools NOUN
, PUNCT
pleasetell VERB
me PRON
. PUNCT
  SPACE
I PRON
am AUX
having VERB
a DET
hard ADJ
time NOUN
deciding VERB
which PRON
one NOUN
to PART
attend VERB
, PUNCT
and CCONJ
mustmake VERB
a DET
decision NOUN
very ADV
soon ADV
. PUNCT
  SPACE
thank VERB
you PRON
, PUNCT
Larry~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Live PROPN
From ADP
New PROPN
York PROPN
, PUNCT
It PRON
's AUX
SATURDAY PROPN
NIGHT PROPN
... PUNCT
Tonight NOUN
's PART
special ADJ
guest NOUN
: PUNCT
Lawrence PROPN
Silverberg PROPN
from ADP
The DET
State PROPN
University PROPN
of ADP
New PROPN
York PROPN
@ ADP
Albanyaka PROPN
: PUNCT
ls8139@gemini PROPN
. PUNCT
Albany.edu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58762From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?I PROPN
am AUX
posting VERB
to ADP
this DET
group NOUN
in ADP
hopes NOUN
of ADP
finding VERB
someone PRON
out SCONJ
there ADV
innetwork NOUN
newsland NOUN
who PRON
has AUX
heard VERB
of ADP
something PRON
similar ADJ
to ADP
what PRON
I PRON
am AUX
goingto PROPN
describe VERB
here ADV
. PUNCT
  SPACE
I PRON
have AUX
a DET
fourteen NUM
year NOUN
old ADJ
daugter NOUN
who PRON
experienceda VERB
seizure NOUN
on ADP
November PROPN
3 NUM
, PUNCT
1992 NUM
at ADP
6:45AM NUM
after ADP
eating VERB
Kellog PROPN
's PART
FrostedFlakes PROPN
. PUNCT
  SPACE
She PRON
is AUX
perfectly ADV
healthy ADJ
, PUNCT
had AUX
never ADV
experienced VERB
anything PRON
likethis ADV
before ADV
, PUNCT
and CCONJ
there PRON
is AUX
no DET
history NOUN
of ADP
seizures NOUN
in ADP
either DET
side NOUN
of ADP
thefamily PROPN
. PUNCT
  SPACE
All DET
the DET
tests NOUN
( PUNCT
EEG PROPN
, PUNCT
MRI PROPN
, PUNCT
EKG PROPN
) PUNCT
came VERB
out ADP
negative ADJ
so ADV
the DET
decisionwas NOUN
made VERB
to PART
do AUX
nothing PRON
and CCONJ
just ADV
wait VERB
to PART
see VERB
if SCONJ
it PRON
happened VERB
again ADV
. PUNCT
Well INTJ
, PUNCT
we PRON
were AUX
going VERB
along ADP
fine ADJ
and CCONJ
the DET
other ADJ
morning NOUN
, PUNCT
April PROPN
5 NUM
, PUNCT
she PRON
hada PROPN
bowl PROPN
of ADP
another DET
Kellog PROPN
's PART
frosted ADJ
kind NOUN
of ADP
cereal NOUN
, PUNCT
Fruit PROPN
Loops PROPN
( PUNCT
I PRON
amembarrassed VERB
to PART
admit VERB
that SCONJ
I PRON
even ADV
bought VERB
that DET
junk NOUN
but CCONJ
every DET
oncein NOUN
a DET
while NOUN
... PUNCT
) PUNCT
So ADV
I PRON
pour VERB
it PRON
in ADP
her PRON
bowl NOUN
and CCONJ
think VERB
" PUNCT
Oh INTJ
, PUNCT
oh INTJ
, PUNCT
this DET
is AUX
thesame ADJ
kind NOUN
of ADP
junk NOUN
she PRON
was AUX
eating VERB
when ADV
she PRON
had AUX
that DET
seizure NOUN
. PUNCT
" PUNCT
  SPACE
Ten NUM
minutes NOUN
later ADV
she PRON
had AUX
a DET
full ADJ
blown VERB
seizures NOUN
. PUNCT
This DET
was AUX
her PRON
first ADJ
exposureto NOUN
a DET
sugar NOUN
coated VERB
cereal NOUN
since SCONJ
the DET
last ADJ
seizure NOUN
. PUNCT
When ADV
I PRON
mentioned VERB
what PRON
she PRON
ate VERB
the DET
first ADJ
time NOUN
as SCONJ
a DET
possible ADJ
reason NOUN
forthe NOUN
seizure NOUN
the DET
neurologist NOUN
basically ADV
negated VERB
that SCONJ
as SCONJ
an DET
idea NOUN
. PUNCT
  SPACE
Nowafter PROPN
this DET
second ADJ
episode NOUN
, PUNCT
so ADV
similar ADJ
in ADP
nature NOUN
to ADP
the DET
first ADJ
, PUNCT
evenhe VERB
is AUX
scratching VERB
his PRON
head NOUN
. PUNCT
  SPACE
Once ADV
again ADV
her PRON
EEG PROPN
looks VERB
normal ADJ
which PRON
Iunderstand PROPN
can AUX
happen VERB
even ADV
when ADV
a DET
person NOUN
has AUX
a DET
seizure NOUN
. PUNCT
Once ADV
again ADV
we PRON
are AUX
waiting VERB
. PUNCT
I PRON
have AUX
been AUX
thinking VERB
that SCONJ
it PRON
would AUX
be AUX
goodto ADJ
get AUX
to ADP
as ADV
large ADJ
a DET
group NOUN
as SCONJ
possible ADJ
to PART
see VERB
if SCONJ
anyone PRON
has AUX
anyexperience NOUN
with ADP
this DET
kind NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
members NOUN
of ADP
the DET
medicalcommunity NOUN
are AUX
sometimes ADV
loathe VERB
to PART
admit VERB
the DET
importance NOUN
that SCONJ
diet NOUN
andfoods NOUN
play VERB
in ADP
our PRON
general ADJ
health NOUN
and CCONJ
well NOUN
- PUNCT
being NOUN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
as SCONJ
you PRON
canguess VERB
, PUNCT
I PRON
am AUX
worried ADJ
sick ADJ
about ADP
this DET
, PUNCT
and CCONJ
would AUX
appreciate VERB
any DET
ideasanyone NOUN
out ADV
there ADV
has AUX
. PUNCT
  SPACE
Sorry ADJ
to PART
be AUX
so ADV
wordy ADJ
but CCONJ
I PRON
wanted VERB
to PART
really ADV
getacross VERB
what PRON
is AUX
going VERB
on ADP
here ADV
. PUNCT
Thanks.--Sharon PROPN
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58763From NUM
: PUNCT
rogers@calamari.hi.com PROPN
( PUNCT
Andrew PROPN
Rogers)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.153729.13738@walter.bellcore.com PROPN
> X
jchen@ctt.bellcore.com X
writes:>Chinese NUM
, PUNCT
and CCONJ
many ADJ
other ADJ
Asians PROPN
( PUNCT
Japanese PROPN
, PUNCT
Koreans PROPN
, PUNCT
etc X
) PUNCT
have AUX
used VERB
> X
MSG PROPN
as SCONJ
flavor NOUN
enhancer NOUN
for ADP
two NUM
thousand NUM
years NOUN
. PUNCT
Do AUX
you PRON
believe VERB
that SCONJ
> X
they PRON
knew VERB
how ADV
to PART
make VERB
MSG PROPN
from ADP
chemical NOUN
processes NOUN
? PUNCT
Not PART
. PUNCT
They PRON
just ADV
> X
extracted VERB
it PRON
from ADP
natural ADJ
food NOUN
such ADJ
sea NOUN
food NOUN
and CCONJ
meat NOUN
broth NOUN
. PUNCT
And CCONJ
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
thatthe DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
notcause VERB
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
-extracted PROPN
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese PROPN
RestaurantSyndrome PROPN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it?AndrewNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58764From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes:>>What ADP
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene NOUN
rings NOUN
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic PROPN
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of ADP
> X
hypothesizing NOUN
. PUNCT
And CCONJ
has AUX
been AUX
rather ADV
thoroughly ADV
demolished VERB
as SCONJ
myth NOUN
by ADP
Robert PROPN
Scott PROPN
Root PROPN
- PUNCT
Bernstein PROPN
. PUNCT
  SPACE
See VERB
his PRON
book NOUN
, PUNCT
" PUNCT
Discovering VERB
" PUNCT
. PUNCT
  SPACE
Ring NOUN
structures NOUN
for ADP
benzenehad PROPN
been AUX
proposed VERB
before ADP
Kekule PROPN
' PUNCT
, PUNCT
after ADP
him PRON
, PUNCT
and CCONJ
at ADP
the DET
same ADJ
time NOUN
as SCONJ
him PRON
. PUNCT
The DET
current ADJ
models NOUN
do AUX
not PART
resemble VERB
Kekule PROPN
's PART
. PUNCT
  SPACE
Many ADJ
of ADP
the DET
predecessorsof NOUN
Kekule PROPN
's PART
structure NOUN
resemble VERB
the DET
modern ADJ
model NOUN
more ADJ
. PUNCT
I PRON
do AUX
n't PART
think VERB
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
is AUX
a DET
very ADV
useful ADJ
phrase NOUN
in ADP
a DET
discussionof NOUN
the DET
boundaries NOUN
of ADP
science NOUN
, PUNCT
except SCONJ
as SCONJ
a DET
proposed VERB
definiens NOUN
. PUNCT
  SPACE
Extra PROPN
- PUNCT
rationalis X
a DET
better ADJ
phrase NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
number NOUN
of ADP
well ADV
- PUNCT
known VERB
casesof ADJ
extra ADJ
- ADJ
rational ADJ
considerations NOUN
driving VERB
science NOUN
in ADP
a DET
useful ADJ
direction NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
Pasteur PROPN
discovered VERB
that SCONJ
racemic ADJ
acid NOUN
was AUX
a DET
mixture NOUN
ofenantiomers NOUN
( PUNCT
the DET
origin NOUN
of ADP
stereochemistry NOUN
) PUNCT
partly ADV
because SCONJ
he PRON
liked VERB
afriend PROPN
's PART
crank ADJ
theory NOUN
of ADP
chemical NOUN
action NOUN
. PUNCT
  SPACE
The DET
friend NOUN
was AUX
wrong ADJ
, PUNCT
butPasteur PROPN
's PART
discovery NOUN
stood VERB
. PUNCT
  SPACE
A DET
prior ADJ
investigator NOUN
( PUNCT
Mitscherlich PROPN
) PUNCT
, PUNCT
lookingat VERB
the DET
same ADJ
phenomenon NOUN
, PUNCT
had AUX
missed VERB
a DET
crucial ADJ
detail NOUN
; PUNCT
presumably ADV
because SCONJ
helacked VERB
Pasteur PROPN
's PART
motivation NOUN
to PART
find VERB
something PRON
that PRON
distinguished VERB
racemicacid VERB
from ADP
tartaric NOUN
( PUNCT
now ADV
we PRON
say VERB
: PUNCT
d X
- PUNCT
tartaric ADJ
) PUNCT
acid NOUN
. PUNCT
Again ADV
, PUNCT
Pasteur PROPN
discovered VERB
the DET
differential ADJ
fermentation NOUN
of ADP
enantiomers(tartaric ADJ
acid NOUN
again ADV
) PUNCT
not PART
because SCONJ
of ADP
some DET
rational ADJ
conviction NOUN
, PUNCT
but CCONJ
becausehe PROPN
was AUX
trying VERB
to PART
produce VERB
yeast NOUN
that PRON
lived VERB
on ADP
l NOUN
- PUNCT
tartaric NOUN
acid NOUN
. PUNCT
  SPACE
His PRON
notebookscontained VERB
fantasies NOUN
of ADP
becoming VERB
the DET
" PUNCT
Newton PROPN
of ADP
mirror NOUN
- PUNCT
image NOUN
life NOUN
, PUNCT
" PUNCT
whichhe PROPN
never ADV
admitted VERB
publically ADV
. PUNCT
Perhaps ADV
the DET
best ADJ
example NOUN
is AUX
the DET
discovery NOUN
that PRON
DNA PROPN
carries VERB
genes NOUN
. PUNCT
  SPACE
Averystarted VERB
this DET
work NOUN
because SCONJ
of ADP
one NUM
of ADP
his PRON
students NOUN
, PUNCT
and CCONJ
ardent ADJ
Anglophileand PROPN
Francophobe PROPN
Canadian PROPN
, PUNCT
defended VERB
Fred PROPN
Griffiths PROPN
' PART
discoveries NOUN
in ADP
mice NOUN
. PUNCT
Most ADJ
of ADP
Griffiths NOUN
' PART
critics NOUN
were AUX
French PROPN
, PUNCT
which PRON
decided VERB
the DET
issue NOUN
for ADP
thestudent NOUN
. PUNCT
  SPACE
Avery PROPN
told VERB
him PRON
to PART
replicate VERB
Griffiths NOUN
' PART
work NOUN
in ADP
vitro PROPN
, PUNCT
which PRON
thestudent NOUN
eventually ADV
did AUX
, PUNCT
whereupon DET
Avery PROPN
was AUX
convinced VERB
and CCONJ
started VERB
theresearch NOUN
program NOUN
which PRON
, PUNCT
in ADP
15 NUM
or CCONJ
so ADV
years NOUN
, PUNCT
produced VERB
the DET
famous ADJ
discovery(Avery NOUN
, PUNCT
MacLeod PROPN
, PUNCT
and CCONJ
McCarty PROPN
, PUNCT
JEM PROPN
1944).-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58765From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Apr7.221357.12533@lamont.ldgo.columbia.edu NUM
> X
brenner@ldgo.columbia.edu PROPN
( PUNCT
carl PROPN
brenner PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
see VERB
the DET
ulterior ADJ
motive NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
easy ADJ
for ADP
me PRON
to PART
see VERB
it PRON
the DET
> X
> X
those DET
physicians NOUN
who PRON
call VERB
everything PRON
lyme NOUN
and CCONJ
treat VERB
everything PRON
. PUNCT
> X
> X
There PRON
is AUX
a DET
lot NOUN
of ADP
money NOUN
involved VERB
. PUNCT
> X
> X
	 SPACE
You PRON
keep VERB
bringing VERB
this DET
up ADP
. PUNCT
But CCONJ
I PRON
do AUX
n't PART
understand VERB
what PRON
's AUX
in ADP
it PRON
> X
financially ADV
for ADP
the DET
physician NOUN
to PART
go VERB
ahead ADV
and CCONJ
treat VERB
. PUNCT
Unless SCONJ
the DET
physician NOUN
> X
has AUX
an DET
investment NOUN
in ADP
( PUNCT
or CCONJ
is AUX
involved VERB
in ADP
some DET
kickback NOUN
scheme NOUN
with ADP
) PUNCT
the DET
> X
home PROPN
infusion NOUN
company NOUN
, PUNCT
where ADV
is AUX
the DET
financial ADJ
gain NOUN
for ADP
the DET
doctor?Well PROPN
, PUNCT
let VERB
me PRON
put VERB
it PRON
this DET
way NOUN
, PUNCT
based VERB
on ADP
my PRON
own ADJ
experience NOUN
. PUNCT
  SPACE
Ageneral ADJ
practitioner NOUN
with ADP
no DET
training NOUN
in ADP
infectious ADJ
diseases NOUN
, PUNCT
by ADP
establishing VERB
links NOUN
to ADP
the DET
" PUNCT
Lyme PROPN
community NOUN
" PUNCT
, PUNCT
treating VERB
patientswho PROPN
come VERB
to ADP
him PRON
wondering VERB
about ADP
lyme NOUN
or CCONJ
having VERB
decided VERB
theyhave ADJ
lyme NOUN
as SCONJ
if SCONJ
they PRON
did AUX
, PUNCT
saying VERB
that SCONJ
diseases NOUN
such ADJ
as SCONJ
MSare PROPN
probably ADV
spirochetal ADJ
, PUNCT
if SCONJ
not PART
Lyme PROPN
, PUNCT
giving VERB
talks NOUN
at ADP
meetingsof ADJ
users NOUN
groups NOUN
, PUNCT
validating VERB
the DET
feelings NOUN
of ADP
even ADJ
delusionalpatients NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
GP PROPN
can AUX
go VERB
from ADP
being AUX
a DET
run NOUN
- PUNCT
of ADP
- PUNCT
the DET
- PUNCT
mill$100K NOUN
/ SYM
yr INTJ
GP PROPN
to ADP
someone PRON
with ADP
lots NOUN
of ADP
patients NOUN
in ADP
the DET
hospitaland NOUN
getting VERB
expensive ADJ
infusions NOUN
that PRON
need VERB
monitoring NOUN
in ADP
hisoffice NOUN
, PUNCT
and CCONJ
making VERB
lots NOUN
of ADP
bread NOUN
. PUNCT
  SPACE
Also ADV
getting VERB
the DET
adulationof NOUN
many ADJ
who PRON
believe VERB
his PRON
is AUX
their PRON
only ADJ
hope NOUN
( PUNCT
if SCONJ
not PART
of ADP
cure NOUN
, PUNCT
then ADV
of ADP
control NOUN
) PUNCT
and CCONJ
seeing VERB
his PRON
name NOUN
in ADP
publications NOUN
put VERB
outby ADJ
support NOUN
groups NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
is AUX
a DET
definite ADJ
temptation.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58766From NUM
: PUNCT
ndallen@r-node.hub.org PROPN
( PUNCT
Nigel PROPN
Allen)Subject PROPN
: PUNCT
Water NOUN
supplies NOUN
vulnerable ADJ
to ADP
Milwaukee PROPN
- PUNCT
type NOUN
disease NOUN
outbreakHere NOUN
is AUX
a DET
press NOUN
release NOUN
from ADP
the DET
Natural PROPN
Resources PROPN
Defense PROPN
Council PROPN
. PUNCT
New PROPN
Data PROPN
Show PROPN
About ADV
100 NUM
Major ADJ
U.S. PROPN
Water PROPN
Supplies VERB
Vulnerable PROPN
ToMilwaukee PROPN
- PUNCT
Type PROPN
Disease PROPN
Outbreak PROPN
To ADP
: PUNCT
National PROPN
Desk PROPN
, PUNCT
Environment PROPN
Writer PROPN
Contact PROPN
: PUNCT
Erik PROPN
Olson PROPN
or CCONJ
Sarah PROPN
Silver PROPN
, PUNCT
202 NUM
- PUNCT
783 NUM
- PUNCT
7800 NUM
, PUNCT
both DET
          SPACE
of ADP
the DET
Natural PROPN
Resources PROPN
Defense PROPN
Council PROPN
   SPACE
WASHINGTON PROPN
, PUNCT
April PROPN
14 NUM
  SPACE
-- PUNCT
Internal ADJ
EPA PROPN
data NOUN
releasedtoday NOUN
by ADP
the DET
Natural PROPN
Resources PROPN
Defense PROPN
Council PROPN
reveals VERB
that SCONJ
about100 VERB
large ADJ
water NOUN
systems NOUN
-- PUNCT
serving VERB
cities NOUN
from ADP
Boston PROPN
to ADP
SanFrancisco PROPN
-- PUNCT
do AUX
not PART
filter VERB
to PART
remove VERB
disease NOUN
- PUNCT
carrying VERB
organismsleaving VERB
those DET
communities NOUN
potentially ADV
vulnerable ADJ
to ADP
a DET
diseaseoutbreak NOUN
similar ADJ
to ADP
the DET
one NOUN
affecting VERB
Milwaukee PROPN
. PUNCT
   SPACE
The DET
EPA PROPN
list NOUN
is AUX
attached VERB
. PUNCT
   SPACE
" PUNCT
These DET
internal ADJ
EPA PROPN
documents NOUN
reveal VERB
that SCONJ
the DET
safety NOUN
of ADP
watersupplies NOUN
in ADP
many ADJ
American ADJ
cities NOUN
is AUX
threatened VERB
by ADP
inadequatepollution NOUN
controls NOUN
or CCONJ
filtration NOUN
, PUNCT
" PUNCT
said VERB
Erik PROPN
Olson PROPN
, PUNCT
a DET
seniorattorney NOUN
with ADP
NRDC PROPN
. PUNCT
  SPACE
" PUNCT
Water NOUN
contamination NOUN
is AUX
n't PART
just ADV
a DET
problem NOUN
inBangladesh NOUN
, PUNCT
it PRON
's AUX
also ADV
a DET
problem NOUN
in ADP
Bozeman PROPN
and CCONJ
Boston PROPN
. PUNCT
" PUNCT
   SPACE
" PUNCT
As SCONJ
of ADP
June PROPN
29 NUM
, PUNCT
1993 NUM
, PUNCT
about ADV
100 NUM
large ADJ
surface NOUN
water NOUN
systems NOUN
onEPA PROPN
's PART
list NOUN
probably ADV
will AUX
be AUX
breaking VERB
the DET
law NOUN
. PUNCT
  SPACE
The DET
1986 NUM
SafeDrinking PROPN
Water PROPN
Act PROPN
requires VERB
all DET
surface NOUN
water NOUN
systems NOUN
to PART
eitherfilter VERB
their PRON
water NOUN
or CCONJ
fully ADV
protect VERB
the DET
rivers NOUN
or CCONJ
lakes VERB
they PRON
usefrom ADP
pollution NOUN
, PUNCT
" PUNCT
Olson PROPN
continued VERB
. PUNCT
  SPACE
Some DET
systems NOUN
are AUX
movingtowards NOUN
eventually ADV
implementing VERB
filtration NOUN
systems NOUN
but CCONJ
areexpected VERB
to PART
miss VERB
the DET
law NOUN
's PART
deadline NOUN
. PUNCT
   SPACE
Olson PROPN
pointed VERB
out ADP
that SCONJ
the DET
threat NOUN
of ADP
contamination NOUN
is AUX
alreadya PROPN
reality NOUN
in ADP
other ADJ
cities NOUN
. PUNCT
  SPACE
A DET
1991 NUM
survey NOUN
of ADP
66 NUM
U.S. PROPN
surfacewater NOUN
systems NOUN
by ADP
water NOUN
utility NOUN
scientists NOUN
found VERB
that SCONJ
87 NUM
percentof NOUN
raw ADJ
water NOUN
samples NOUN
contained VERB
the DET
Milwaukee PROPN
organismcryptosporidium NOUN
, PUNCT
and CCONJ
81 NUM
percent NOUN
contained VERB
a DET
similar ADJ
parasitecalled VERB
giardia PROPN
. PUNCT
   SPACE
Adding VERB
to ADP
the DET
level NOUN
of ADP
concern NOUN
, PUNCT
a DET
General PROPN
Accounting PROPN
Officestudy PROPN
released VERB
today NOUN
by ADP
House PROPN
Health PROPN
and CCONJ
Environment PROPN
SubcommitteeChairman PROPN
Henry PROPN
Waxman PROPN
indicates VERB
serious ADJ
deficiencies NOUN
in ADP
thenation NOUN
's PART
system NOUN
for ADP
conducting VERB
and CCONJ
following VERB
through ADP
on ADP
sanitarysurveys NOUN
of ADP
water NOUN
systems NOUN
. PUNCT
   SPACE
" PUNCT
This DET
new ADJ
information NOUN
raises VERB
a DET
huge ADJ
warning NOUN
sign NOUN
that SCONJ
millionsof ADJ
Americans PROPN
can AUX
no ADV
longer ADV
simply ADV
turn VERB
on ADP
their PRON
taps NOUN
and CCONJ
beassured VERB
that SCONJ
their PRON
water NOUN
is AUX
safe ADJ
to PART
drink VERB
. PUNCT
  SPACE
We PRON
must AUX
immediatelyput VERB
into ADP
place NOUN
programs NOUN
to PART
protect VERB
water NOUN
sources NOUN
fromcontamination NOUN
and CCONJ
where ADV
this DET
is AUX
not PART
assured VERB
, PUNCT
filtration NOUN
equipmentmust NOUN
be AUX
installed VERB
to PART
protect VERB
the DET
public NOUN
, PUNCT
" PUNCT
Olson PROPN
noted VERB
. PUNCT
  SPACE
" PUNCT
The DET
timehas NOUN
come VERB
for ADP
many ADJ
of ADP
the DET
nation NOUN
's PART
water NOUN
utilities NOUN
to PART
stopdragging VERB
their PRON
feet NOUN
and CCONJ
to PART
aggressively ADV
protect VERB
their PRON
water NOUN
fromcontamination NOUN
; PUNCT
consumers NOUN
are AUX
prepared ADJ
to PART
pay VERB
the DET
modest ADJ
costsneeded VERB
to PART
assure VERB
their PRON
water NOUN
is AUX
safe ADJ
to PART
drink VERB
. PUNCT
" PUNCT
   SPACE
NRDC PROPN
is AUX
a DET
national ADJ
non ADJ
- ADJ
profit ADJ
environmental ADJ
advocacy NOUN
organization PROPN
. PUNCT
   SPACE
Systems PROPN
EPA PROPN
Indicates VERB
Require VERB
Filtration PROPN
and CCONJ
Do AUX
Not PART
AdequatelyProtect VERB
Watersheds PROPN
CONNECTICUT PROPN
Bridgeport PROPN
            SPACE
Bridgeport PROPN
Hydraulic PROPN
Co. PROPN
MASSACHUSETTS PROPN
Boston PROPN
                SPACE
H2O PROPN
Resource PROPN
Author PROPN
( PUNCT
MWRA PROPN
) PUNCT
Medford PROPN
               SPACE
MWRA PROPN
- PUNCT
Medford PROPN
Water PROPN
Dept PROPN
Melrose PROPN
               SPACE
MWRA PROPN
- PUNCT
Melrose PROPN
Water PROPN
Dept PROPN
Hilton PROPN
                SPACE
MWRA PROPN
- PUNCT
Hilton PROPN
Water PROPN
Dept PROPN
Needham PROPN
               SPACE
MWRA PROPN
- PUNCT
Needham PROPN
Water PROPN
Division PROPN
Newtoncenter PROPN
          SPACE
MWRA PROPN
- PUNCT
Newton PROPN
Water PROPN
Dept PROPN
. PUNCT
Marblehead PROPN
            SPACE
MWRA PROPN
- PUNCT
Marblehead PROPN
Water PROPN
Dept PROPN
Quincy PROPN
                SPACE
MWRA PROPN
- PUNCT
Quincy PROPN
Water PROPN
Dept PROPN
Norwood PROPN
               SPACE
MWRA PROPN
- PUNCT
Norwood PROPN
Water PROPN
Dept PROPN
Framingham PROPN
            SPACE
MWRA PROPN
- PUNCT
Framingham PROPN
Water PROPN
Div PROPN
Cambridge PROPN
             SPACE
MWRA PROPN
- PUNCT
Cambridge PROPN
Water PROPN
Dept PROPN
Canton PROPN
                SPACE
MWRA PROPN
- PUNCT
Canton PROPN
Water PROPN
Div PROPN
- PUNCT
DPW PROPN
Chelsea PROPN
               SPACE
MWRA PROPN
- PUNCT
Chelsea PROPN
Water PROPN
Dept PROPN
Everett PROPN
               SPACE
MWRA PROPN
- PUNCT
Everett PROPN
Water PROPN
Dept PROPN
Lexington PROPN
             SPACE
MWRA-201 PROPN
Bedford PROPN
( PUNCT
PUO PROPN
WRKS NOUN
) PUNCT
Lynn VERB
                  SPACE
MWRA PROPN
- PUNCT
Lynn PROPN
Water PROPN
& CCONJ
Sewer PROPN
Co PROPN
Malden PROPN
                SPACE
MWRA PROPN
- PUNCT
Malden PROPN
Water PROPN
Division PROPN
Revere PROPN
                SPACE
MWRA PROPN
- PUNCT
Revere PROPN
Water PROPN
Dept PROPN
Woburn PROPN
                SPACE
MWRA PROPN
- PUNCT
Woburn PROPN
Water PROPN
Dept PROPN
Swampscott PROPN
            SPACE
MWRA PROPN
- PUNCT
Swampscott PROPN
Water PROPN
Dept PROPN
Saugus PROPN
                SPACE
MWRA PROPN
- PUNCT
Saugus PROPN
Water PROPN
Dept PROPN
Somerville PROPN
            SPACE
MWRA PROPN
- PUNCT
Somerville PROPN
Water PROPN
Dept PROPN
Stoneman PROPN
              SPACE
MWRA PROPN
- PUNCT
Stoneman PROPN
Water PROPN
Dept PROPN
Brookline PROPN
             SPACE
MWRA PROPN
- PUNCT
Brookline PROPN
Water PROPN
Dept PROPN
Wakefield PROPN
             SPACE
MWRA PROPN
- PUNCT
Same ADJ
as SCONJ
Above ADV
Waltham PROPN
               SPACE
MWRA PROPN
- PUNCT
Waltham PROPN
Water PROPN
Division PROPN
Watertown PROPN
             SPACE
MWRA PROPN
- PUNCT
Watertown PROPN
Water PROPN
Division PROPN
Weston PROPN
                SPACE
MWRA PROPN
- PUNCT
Weston PROPN
Water PROPN
Dept PROPN
Dedham PROPN
                SPACE
MWRA PROPN
- PUNCT
Dedham PROPN
- PUNCT
Westwood PROPN
District PROPN
Winchester PROPN
            SPACE
MWRA PROPN
- PUNCT
Winchester PROPN
Water PROPN
& CCONJ
Sewer PROPN
Winthrop PROPN
              SPACE
MWRA PROPN
- PUNCT
Winthrop PROPN
Water PROPN
Dept PROPN
Boston PROPN
                SPACE
MWRA PROPN
- PUNCT
Boston PROPN
Water PROPN
& CCONJ
Sewer PROPN
Co PROPN
S. PROPN
Hadley PROPN
             SPACE
MWRA PROPN
- PUNCT
South PROPN
Hadley PROPN
Fire PROPN
Dist PROPN
Arlington PROPN
             SPACE
MWRA PROPN
- PUNCT
Arlington PROPN
Water PROPN
Dept PROPN
Belmont PROPN
               SPACE
MWRA PROPN
- PUNCT
Belmont PROPN
Water PROPN
Dept PROPN
Clinton PROPN
               SPACE
MWRA PROPN
- PUNCT
Clinton PROPN
Water PROPN
Dept PROPN
Attleboro PROPN
             SPACE
Attleboro PROPN
Water PROPN
Dept PROPN
Fitchburg PROPN
             SPACE
Fitchburg PROPN
Water PROPN
Dept PROPN
Northampton PROPN
           SPACE
Northampton PROPN
Water PROPN
Dept PROPN
North PROPN
Adams PROPN
           SPACE
North PROPN
Adams PROPN
Water PROPN
Dept PROPN
Amherst PROPN
               SPACE
Amherst PROPN
Water PROPN
Division PROPN
DPW PROPN
Gardner PROPN
               SPACE
Gardner PROPN
Water PROPN
Dept PROPN
Worcester PROPN
             SPACE
Worcester PROPN
DPW PROPN
, PUNCT
Water PROPN
Oper PROPN
Westboro PROPN
              SPACE
Westboro PROPN
Water PROPN
Dept PROPN
Southbridge PROPN
           SPACE
Southbridge PROPN
Water PROPN
Supply PROPN
Co PROPN
Newburyport PROPN
           SPACE
Newburyport PROPN
Water PROPN
Dept PROPN
Hingham PROPN
               SPACE
Hingham PROPN
Water PROPN
Co PROPN
Brockton PROPN
              SPACE
Brockton PROPN
Water PROPN
Dept PROPN
MAINE PROPN
Rockland PROPN
              SPACE
Camden PROPN
& CCONJ
Rockland PROPN
Water PROPN
Co PROPN
Bath PROPN
                  SPACE
Bath PROPN
Water PROPN
District PROPN
NEW PROPN
HAMPSHIRE PROPN
Keene PROPN
                 SPACE
City PROPN
of ADP
Keene PROPN
Salem PROPN
                 SPACE
Salem PROPN
Water PROPN
Dept PROPN
VERMONT PROPN
Barre PROPN
City PROPN
            SPACE
Barre PROPN
City PROPN
Water PROPN
System PROPN
Rutland PROPN
City PROPN
          SPACE
Rutland PROPN
City PROPN
Water PROPN
Dept PROPN
NEW PROPN
YORK PROPN
Glens PROPN
Falls PROPN
           SPACE
Glens PROPN
Falls PROPN
City PROPN
Yorktown PROPN
Hts PROPN
          SPACE
Yorktown PROPN
Water PROPN
Storage PROPN
& CCONJ
Dist PROPN
Rochester PROPN
             SPACE
Rochester PROPN
City PROPN
Henrietta PROPN
             SPACE
Henrietta PROPN
WD PROPN
Rochester PROPN
             SPACE
MCWA PROPN
Upland PROPN
System PROPN
Rochester PROPN
             SPACE
Greece PROPN
Consolidated PROPN
New PROPN
York PROPN
              SPACE
NYC PROPN
- PUNCT
Aquaduct PROPN
Sys PROPN
( PUNCT
Croton PROPN
) PUNCT
Chappaqua PROPN
             SPACE
New PROPN
Castle PROPN
/ SYM
Stanwood PROPN
WD PROPN
Beacon PROPN
                SPACE
Beacon PROPN
City PROPN
Mamaronek PROPN
             SPACE
Westchester PROPN
Joint PROPN
Water PROPN
Works VERB
PENNSYLVANIA PROPN
Bethlehem PROPN
             SPACE
Bethlehem PROPN
Public PROPN
Water PROPN
Sys PROPN
Johnstown PROPN
             SPACE
Greater PROPN
Johnstown PROPN
Water PROPN
Auth PROPN
Lock PROPN
Haven PROPN
            SPACE
City PROPN
of ADP
Lock PROPN
Haven PROPN
- PUNCT
Water PROPN
Dept PROPN
Shamokin PROPN
              SPACE
Roaring VERB
Creek PROPN
Water PROPN
Comp PROPN
Harrisburg PROPN
            SPACE
Harrisburg PROPN
City PROPN
Hazleton PROPN
              SPACE
Hazleton PROPN
City PROPN
Water PROPN
Dept PROPN
Wind PROPN
Gap PROPN
              SPACE
Blue PROPN
Mt PROPN
Consolidated PROPN
Apollo PROPN
                SPACE
Westmoreland PROPN
Auth PROPN
Fayettville PROPN
           SPACE
Guilford PROPN
Water PROPN
Auth PROPN
Humlock PROPN
Creek PROPN
         SPACE
PG&W PROPN
- PUNCT
Ceasetown PROPN
Reservoir PROPN
Springbrook PROPN
           SPACE
PG&W PROPN
- PUNCT
Waters PROPN
Reservoir PROPN
Wilkes PROPN
Barre PROPN
          SPACE
PG&W PROPN
- PUNCT
Gardners PROPN
Creek PROPN
Wilkes PROPN
Barre PROPN
          SPACE
PG&W PROPN
- PUNCT
Hill PROPN
Creek PROPN
Wilkes PROPN
Barre PROPN
          SPACE
PG&W PROPN
- PUNCT
Plymouth PROPN
Relief PROPN
Altoona PROPN
               SPACE
Altoona PROPN
City PROPN
Auth PROPN
Tamaqua PROPN
               SPACE
Tamaqua PROPN
Municipal ADJ
water NOUN
Waynesboro PROPN
            SPACE
Waynesboro PROPN
Borough PROPN
Auth PROPN
Pottsville PROPN
            SPACE
Schuykill PROPN
Co PROPN
Mun PROPN
Auth PROPN
VIRGINIA PROPN
Covington PROPN
             SPACE
City PROPN
of ADP
Covington PROPN
Fishersville PROPN
          SPACE
South PROPN
River PROPN
Sa PROPN
Dist PROPN
- PUNCT
ACSA PROPN
SOUTH PROPN
CAROLINA VERB
Greenville PROPN
            SPACE
Greenville PROPN
Water PROPN
Sys PROPN
MICHIGAN PROPN
Sault PROPN
Ste PROPN
Marie PROPN
       SPACE
Sault PROPN
Ste PROPN
Marie PROPN
Marquette PROPN
             SPACE
Marquette PROPN
MONTANA PROPN
Butte PROPN
                 SPACE
Butte PROPN
Water PROPN
Co PROPN
Bozeman PROPN
               SPACE
Bozeman PROPN
City PROPN
CALIFORNIA PROPN
San PROPN
Francisco PROPN
         SPACE
City PROPN
& CCONJ
County PROPN
of ADP
San PROPN
Fran PROPN
NEVADA PROPN
Reno PROPN
                  SPACE
Westpac PROPN
IDAHO PROPN
Twin PROPN
Falls PROPN
            SPACE
Twin PROPN
Falls PROPN
City PROPN
WASHINGTON PROPN
Aberdeen PROPN
              SPACE
Aberdeen PROPN
Water PROPN
Dept PROPN
Centralia PROPN
             SPACE
Centralia PROPN
Water PROPN
Dept PROPN
-30 PROPN
- PUNCT
-- PUNCT
Nigel PROPN
Allen PROPN
, PUNCT
Toronto PROPN
, PUNCT
Ontario PROPN
, PUNCT
Canada PROPN
    SPACE
ndallen@r-node.hub.orgNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58767From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)-*-----In PUNCT
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes VERB
: PUNCT
> X
What PRON
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene NOUN
rings NOUN
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic PROPN
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of ADP
> X
hypothesizing NOUN
. PUNCT
I PRON
think VERB
the DET
question NOUN
is AUX
: PUNCT
What PRON
is AUX
extra ADJ
- ADJ
scientific ADJ
about ADP
this DET
? PUNCT
  SPACE
It PRON
has AUX
been AUX
a DET
long ADJ
time NOUN
since SCONJ
anyone PRON
has AUX
proposed VERB
restrictions NOUN
onwhere ADJ
one NOUN
comes VERB
up ADP
with ADP
ideas NOUN
in ADP
order NOUN
for ADP
them PRON
to PART
be AUX
consideredlegitimate ADJ
hypotheses NOUN
. PUNCT
  SPACE
The DET
point NOUN
, PUNCT
in ADP
short ADJ
, PUNCT
is AUX
this DET
: PUNCT
hypotheses NOUN
andspeculation NOUN
in ADP
science NOUN
may AUX
come VERB
from ADP
wild ADJ
flights NOUN
of ADP
fancy PROPN
, PUNCT
daydreams PROPN
, PUNCT
ancient ADJ
traditions NOUN
, PUNCT
modern ADJ
quackery NOUN
, PUNCT
or CCONJ
anywhere ADV
else ADV
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58768From NUM
: PUNCT
janet@ntmtv.com X
( PUNCT
Janet PROPN
Jakstys)Subject NUM
: PUNCT
Exercise NOUN
and CCONJ
MigraineWe PROPN
were AUX
talking VERB
about ADP
Migraine PROPN
and CCONJ
Exercise NOUN
( PUNCT
I PRON
'm AUX
the DET
one NUM
who PRON
can'tfathom VERB
the DET
thought NOUN
of ADP
exercise NOUN
during ADP
migraine NOUN
... PUNCT
) PUNCT
. PUNCT
  SPACE
Anyway ADV
, PUNCT
turningthe DET
thread NOUN
around ADV
, PUNCT
the DET
other ADJ
day NOUN
I PRON
played VERB
tennis NOUN
during ADP
my PRON
lunchhour NOUN
. PUNCT
  SPACE
I PRON
'm AUX
out SCONJ
of ADP
tennis NOUN
shape NOUN
so ADV
it PRON
was AUX
very ADV
intense ADJ
exercise NOUN
. PUNCT
  SPACE
Igot PROPN
overheated VERB
, PUNCT
and CCONJ
dehydrated VERB
. PUNCT
  SPACE
Afterwards ADV
, PUNCT
I PRON
noticed VERB
a DET
tinglingsensation NOUN
all ADV
over ADP
my PRON
head NOUN
then ADV
about ADV
2 NUM
hours NOUN
later ADV
, PUNCT
I PRON
could AUX
feela PROPN
migraine ADJ
start NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
continued VERB
to PART
drink VERB
water NOUN
in ADP
the DET
afternoon.)I NOUN
took VERB
cafergot VERB
, PUNCT
but CCONJ
it PRON
did AUX
n't PART
help VERB
and CCONJ
the DET
pain NOUN
started VERB
althoughit NOUN
was AUX
n't PART
as ADV
intense ADJ
as SCONJ
it PRON
usually ADV
is AUX
and CCONJ
about ADV
9 NUM
pm NOUN
that DET
night NOUN
, PUNCT
thepain NOUN
subsided VERB
. PUNCT
This DET
is AUX
n't PART
the DET
first ADJ
time NOUN
that PRON
I PRON
've AUX
had VERB
a DET
migraine ADJ
occur NOUN
after ADP
exercise NOUN
. PUNCT
I'm PRON
wondering VERB
if SCONJ
anyone PRON
else ADV
has AUX
had VERB
the DET
same ADJ
experience NOUN
and CCONJ
I PRON
wonderwhat PRON
triggers VERB
the DET
migraine NOUN
in ADP
this DET
situation NOUN
( PUNCT
heat NOUN
buildup NOUN
? PUNCT
dehydration?).I'm PROPN
not PART
giving VERB
up ADP
tennis NOUN
so ADV
is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
( PUNCT
besides ADV
get AUX
into ADP
shape NOUN
and CCONJ
do AUX
n't PART
play VERB
at ADP
high ADJ
noon NOUN
) PUNCT
to PART
prevent VERB
this?Thanks,-- PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Janet PROPN
Jakstys PROPN
         SPACE
UUCP:{ames PROPN
, PUNCT
mcdcup}!ntmtv!janetNorthern PROPN
Telecom PROPN
      SPACE
INTERNET:janet@ntmtv.comMtn PRON
. PUNCT
View NOUN
, PUNCT
CA.**********************************************************************Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58769From NUM
: PUNCT
wsun@jeeves.ucsd.edu NOUN
( PUNCT
Fiberman)Subject NOUN
: PUNCT
erythromycinIs NOUN
erythromycin NOUN
effective ADJ
in ADP
treating VERB
pneumonia?-fmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58770From NUM
: PUNCT
colby@oahu.cs.ucla.edu PROPN
( PUNCT
Kenneth PROPN
Colby)Subject NUM
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibiotics VERB
     SPACE
If SCONJ
the DET
nose NOUN
culture NOUN
shows VERB
Staph PROPN
, PUNCT
then ADV
Ceftin PROPN
or CCONJ
even ADV
Ceclor PROPN
     SPACE
are AUX
better ADJ
. PUNCT
Suprax NOUN
does AUX
not PART
kill VERB
Staph PROPN
. PUNCT
Treating VERB
bacterial ADJ
     SPACE
infections NOUN
involves VERB
a DET
lot NOUN
of ADP
try VERB
- PUNCT
and CCONJ
- PUNCT
fail VERB
because SCONJ
the DET
     SPACE
infections NOUN
often ADV
involve VERB
multiple ADJ
organisms NOUN
with ADP
many ADJ
resistant ADJ
     SPACE
strains NOUN
. PUNCT
Some DET
60 NUM
% NOUN
of ADP
Hemophilus PROPN
Influenza PROPN
strains NOUN
are AUX
now ADV
     SPACE
resistant ADJ
. PUNCT
What PRON
works VERB
for ADP
me PRON
and CCONJ
my PRON
organisms NOUN
may AUX
not PART
work VERB
     SPACE
for ADP
you PRON
and CCONJ
yours PRON
. PUNCT
Keep VERB
experimenting VERB
. PUNCT
	        SPACE
Ken PROPN
ColbyNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58771From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?| NOUN
article NOUN
< X
1qjc0fINN841@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:|| NOUN
Now ADV
, PUNCT
if SCONJ
instead ADV
of ADP
using VERB
the DET
MSG PROPN
as SCONJ
a DET
food NOUN
additive ADJ
, PUNCT
you PRON
put VERB
the DET
MSG PROPN
|| PROPN
in ADP
gelatin PROPN
capsules NOUN
or CCONJ
whatever PRON
, PUNCT
there PRON
may AUX
not|| NOUN
be AUX
a DET
reaction NOUN
, PUNCT
becasue VERB
the DET
_ PROPN
sensory_response NOUN
_ PROPN
might AUX
be|| VERB
a DET
necessary ADJ
element NOUN
in ADP
the DET
creation NOUN
of ADP
the DET
MSG PROPN
reaction NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
'll AUX
bet VERB
|| PROPN
the DET
bogus ADJ
medical ADJ
researchers NOUN
never ADV
even ADV
thought VERB
about ADP
|| PROPN
that SCONJ
obvious ADJ
fact.)| PROPN
Gee PROPN
. PUNCT
  SPACE
He PRON
means VERB
" PUNCT
placebo NOUN
effect NOUN
. PUNCT
" PUNCT
  SPACE
Sorry INTJ
, PUNCT
but CCONJ
the DET
researchers NOUN
DO VERB
know VERB
about| PROPN
this DET
. PUNCT
Carl PROPN
, PUNCT
it PRON
is AUX
not PART
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
if SCONJ
as SCONJ
hypothesised VERB
the DET
sensory ADJ
response NOUN
to ADP
MSG PROPN
's PART
effect NOUN
on ADP
flavor NOUN
is AUX
responsiblefor ADP
the DET
MSG PROPN
reaction NOUN
. PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58772From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
Gordon PROPN
Banks:>a PROPN
lot NOUN
to PART
keep VERB
from ADP
going VERB
back ADV
to ADP
morbid PROPN
obesity NOUN
. PUNCT
  SPACE
I PRON
think VERB
all DET
> X
of ADP
us PROPN
cycle NOUN
. PUNCT
  SPACE
One NOUN
's PART
success NOUN
depends VERB
on ADP
how ADV
large ADJ
the DET
fluctuations NOUN
> X
in ADP
the DET
cycle NOUN
are AUX
. PUNCT
  SPACE
Some DET
people NOUN
can AUX
cycle VERB
only ADV
5 NUM
pounds NOUN
. PUNCT
  SPACE
Unfortunately,>I'm ADV
not PART
one NUM
of ADP
them.>>This PROPN
certainly ADV
describes VERB
my PRON
situation NOUN
perfectly ADV
. PUNCT
For ADP
me PRON
there ADV
isa VERB
constant ADJ
dynamic NOUN
between ADP
my PRON
tendency NOUN
to PART
eat VERB
, PUNCT
which PRON
appears VERB
tobe NOUN
totally ADV
limitless VERB
, PUNCT
and CCONJ
the DET
purely ADV
conscious ADJ
desire NOUN
to PART
notput VERB
on ADP
too ADV
much ADJ
weight NOUN
. PUNCT
When ADV
I PRON
get VERB
too ADV
fat ADJ
, PUNCT
I PRON
just ADV
diet VERB
/ SYM
exercisemore NOUN
( PUNCT
with ADP
varying VERB
degrees NOUN
of ADP
success NOUN
) PUNCT
to PART
take VERB
off ADP
theextra ADJ
weight NOUN
. PUNCT
Usually ADV
I PRON
cycle VERB
within ADP
a DET
15 NUM
lb PROPN
range NOUN
, PUNCT
butsmaller NOUN
and CCONJ
larger ADJ
cycles NOUN
occur VERB
as ADV
well ADV
. PUNCT
I PRON
'm AUX
always ADV
afraidthat ADP
this DET
method NOUN
will AUX
stop VERB
working VERB
someday ADV
, PUNCT
but CCONJ
usuallyI PROPN
seem VERB
to PART
be AUX
able ADJ
to PART
hold VERB
the DET
weight NOUN
gain NOUN
in ADP
check NOUN
. PUNCT
This DET
is AUX
one NUM
reason NOUN
I PRON
have AUX
a DET
hard ADJ
time NOUN
accepting VERB
the DET
notionof PROPN
some DET
metabolic ADJ
derangement NOUN
associated VERB
with ADP
cycle NOUN
dieting(that PRON
results VERB
in ADP
long ADJ
- PUNCT
term NOUN
weight NOUN
gain NOUN
) PUNCT
. PUNCT
I PRON
have AUX
been AUX
cycle NOUN
- PUNCT
dieting VERB
for ADP
at ADV
least ADV
20 NUM
years NOUN
without ADP
seeing VERB
such DET
a DET
change NOUN
. PUNCT
I PRON
think VERB
a DET
vigorous ADJ
exercise NOUN
program NOUN
can AUX
go VERB
a DET
long ADJ
way NOUN
towardkeeping VERB
the DET
cycles NOUN
smaller ADJ
and CCONJ
the DET
baseline ADJ
weight NOUN
low ADJ
. PUNCT
BrianNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58773From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
EugenicsProbably PROPN
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
willthen ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
geneticengineering VERB
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want VERB
. PUNCT
No DET
breeding NOUN
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
shouldwe NOUN
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADV
- PUNCT
lived VERB
, PUNCT
Arnold PROPN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can.-- VERB
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58774From NUM
: PUNCT
dmp1@ukc.ac.uk ADJ
( PUNCT
D.M.Procida)Subject NUM
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
19609@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
Not PART
by ADP
scientists NOUN
. PUNCT
  SPACE
There PRON
are AUX
people NOUN
> X
in ADP
every DET
country NOUN
who PRON
waste VERB
time NOUN
and CCONJ
money NOUN
on ADP
quackery.>In PROPN
Britain PROPN
and CCONJ
Scandanavia PROPN
, PUNCT
where ADV
I PRON
have AUX
worked VERB
, PUNCT
it PRON
was AUX
not PART
paid VERB
for.>What PUNCT
are AUX
" PUNCT
most ADJ
of ADP
these DET
countries NOUN
? PUNCT
" PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
you PRON
. PUNCT
I PRON
am AUX
told VERB
( PUNCT
by ADP
the DET
person NOUN
who PRON
I PRON
care VERB
a DET
lot NOUN
about ADP
and CCONJ
who PRON
I PRON
am AUX
worriedis NOUN
going VERB
to PART
start VERB
putting VERB
his PRON
health NOUN
and CCONJ
money NOUN
into ADP
homeopathy NOUN
withoutreally ADV
knowing VERB
what PRON
he PRON
is AUX
getting VERB
into ADP
and CCONJ
who PRON
is AUX
the DET
reason NOUN
I PRON
postedin VERB
the DET
first ADJ
place NOUN
about ADP
homeopathy NOUN
) PUNCT
that SCONJ
in ADP
Britain PROPN
homeopathy NOUN
isavailable NOUN
on ADP
the DET
National PROPN
Health PROPN
Service PROPN
and CCONJ
that SCONJ
there PRON
are AUX
about ADV
6000GPs NUM
who PRON
use VERB
homeopathic ADJ
practices NOUN
. PUNCT
True ADJ
? PUNCT
False ADJ
? PUNCT
What?Have PUNCT
there PRON
been AUX
any DET
important ADJ
and CCONJ
documented ADJ
investigations NOUN
intohomeopathic ADJ
principles?I NOUN
was AUX
reading VERB
a DET
book NOUN
on ADP
homeopathy NOUN
over ADP
the DET
weekend NOUN
. PUNCT
I PRON
turned VERB
to ADP
thesection NOUN
on ADP
the DET
principles NOUN
behind ADP
homeopathic ADJ
medicine NOUN
, PUNCT
and CCONJ
twoparagraphs NOUN
informed VERB
me PRON
that SCONJ
homeopaths NOUN
do AUX
n't PART
feel VERB
obliged VERB
to PART
provideany VERB
sort ADV
of ADP
explanation NOUN
. PUNCT
The DET
author NOUN
stated VERB
this DET
with ADP
pride NOUN
, PUNCT
as SCONJ
thoughit NOUN
were AUX
some DET
sort NOUN
of ADP
virtue NOUN
! PUNCT
Why ADV
am AUX
I PRON
sceptical ADJ
about ADP
homeopathy NOUN
? PUNCT
Isit NOUN
because SCONJ
I PRON
am AUX
a DET
narrow ADJ
- PUNCT
minded ADJ
bigot NOUN
, PUNCT
or CCONJ
is AUX
it PRON
because SCONJ
homeopathyreally ADV
looks VERB
more ADJ
like SCONJ
witch NOUN
- PUNCT
doctory NOUN
than SCONJ
anything PRON
else?Daniele NOUN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58775From NUM
: PUNCT
tomca@microsoft.com X
( PUNCT
Tom PROPN
B. PROPN
Carey)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>ted@marvin.dgbt.doc.ca PROPN
( PUNCT
Ted PROPN
Grusec PROPN
) PUNCT
writes:>| PUNCT
> X
Gary PROPN
: PUNCT
By ADP
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
I PRON
did AUX
not PART
mean VERB
to PART
imply VERB
that SCONJ
hypothesis>| NOUN
> X
generation NOUN
was AUX
not PART
, PUNCT
in ADP
most ADJ
cases NOUN
extremely ADV
closely ADV
tied VERB
to ADP
the>| PROPN
> X
state NOUN
of ADP
knowledge NOUN
within ADP
a DET
scientific ADJ
area NOUN
. PUNCT
  SPACE
I PRON
meant VERB
was AUX
that SCONJ
there>| PROPN
> X
was AUX
no DET
" PUNCT
scientific ADJ
logic NOUN
" PUNCT
involved VERB
in ADP
the DET
process NOUN
. PUNCT
  SPACE
It PRON
is AUX
inductive,>| PROPN
> X
not PART
deductive ADJ
. PUNCT
  SPACE
> X
> X
I PRON
am AUX
further ADV
puzzled VERB
by ADP
the DET
proposed VERB
distinction NOUN
between ADP
" PUNCT
scientific ADJ
> X
logic NOUN
" PUNCT
and CCONJ
" PUNCT
inductive ADJ
logic NOUN
" PUNCT
. PUNCT
  SPACE
At ADP
this DET
point NOUN
I PRON
do AUX
n't PART
have AUX
a DET
clue NOUN
> X
what PRON
you PRON
mean VERB
by ADP
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
-- PUNCT
unless SCONJ
you PRON
mean VERB
that SCONJ
at ADP
* PUNCT
some*>times VERB
someone PRON
seems VERB
to PART
come VERB
up ADP
with ADP
an DET
idea NOUN
that SCONJ
we PRON
ca AUX
n't PART
trace VERB
to ADP
> X
prior ADJ
theories NOUN
, PUNCT
concepts NOUN
, PUNCT
knowledge NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
is AUX
a DET
fairly ADV
common ADJ
> NOUN
observation NOUN
, PUNCT
but CCONJ
just ADV
for ADP
grins NOUN
I PRON
'd AUX
like VERB
to PART
see VERB
some DET
genuine ADJ
examples NOUN
. PUNCT
OK INTJ
, PUNCT
just ADV
for ADP
grins:- PROPN
Kekule PROPN
hypothesized VERB
a DET
resonant ADJ
structure NOUN
for ADP
the DET
aromatic ADJ
benzenering NOUN
after ADP
waking VERB
from ADP
a DET
dream NOUN
in ADP
which PRON
a DET
snake NOUN
was AUX
swallowing VERB
his PRON
tail.- PROPN
Archimedes PROPN
formalized VERB
the DET
principle NOUN
of ADP
buoyancy NOUN
while SCONJ
meditating VERB
inhis ADJ
bath NOUN
. PUNCT
In ADP
neither DET
case NOUN
was AUX
there ADV
" PUNCT
no DET
connection NOUN
to ADP
prior ADJ
theories NOUN
, PUNCT
concepts NOUN
, PUNCT
etc X
. PUNCT
"as PUNCT
you PRON
stipulated VERB
above ADV
. PUNCT
What PRON
there PRON
was AUX
was AUX
an DET
intuitive ADJ
leap PROPN
beyondthe PROPN
current ADJ
way NOUN
of ADP
thinking NOUN
, PUNCT
to PART
develop VERB
ideas NOUN
which PRON
subsequently ADV
provedto ADJ
have AUX
predictive ADJ
power NOUN
( PUNCT
e.g. ADV
, PUNCT
they PRON
stood VERB
the DET
test NOUN
of ADP
experimentalverification).pardon PROPN
my PRON
kibbutzing NOUN
... PUNCT
TomNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58776From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1qk4qqINNgvs@im4u.cs.utexas.edu NUM
> X
, PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:| PROPN
> X
-*-----| NOUN
> X
In ADP
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes:| PROPN
> X
> X
What PRON
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene PROPN
rings| PROPN
> X
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this| PROPN
> X
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic| PROPN
> X
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of| ADP
> X
> X
hypothesizing NOUN
. PUNCT
| ADV
> X
| INTJ
> X
I PRON
think VERB
the DET
question NOUN
is AUX
: PUNCT
What PRON
is AUX
extra ADJ
- ADJ
scientific ADJ
about ADP
this DET
? PUNCT
  SPACE
| ADP
> X
| X
> X
It PRON
has AUX
been AUX
a DET
long ADJ
time NOUN
since SCONJ
anyone PRON
has AUX
proposed VERB
restrictions NOUN
on| ADP
> X
where ADV
one PRON
comes VERB
up ADP
with ADP
ideas NOUN
in ADP
order NOUN
for ADP
them PRON
to PART
be AUX
considered| PROPN
> X
legitimate ADJ
hypotheses NOUN
. PUNCT
  SPACE
The DET
point NOUN
, PUNCT
in ADP
short ADJ
, PUNCT
is AUX
this DET
: PUNCT
hypotheses NOUN
and| PROPN
> X
speculation NOUN
in ADP
science NOUN
may AUX
come VERB
from ADP
wild ADJ
flights NOUN
of ADP
fancy ADJ
, PUNCT
| PROPN
> X
daydreams NOUN
, PUNCT
ancient ADJ
traditions NOUN
, PUNCT
modern ADJ
quackery NOUN
, PUNCT
or CCONJ
anywhere ADV
else.| PROPN
> X
| NOUN
> X
Russell| X
> X
Yes INTJ
, PUNCT
but CCONJ
typically ADV
they PRON
* PUNCT
do AUX
n't PART
* PUNCT
. PUNCT
  SPACE
Not PART
every DET
wild ADJ
flight NOUN
of ADP
fancy ADJ
serves(or NOUN
can AUX
serve VERB
) PUNCT
in ADP
the DET
appropriate ADJ
relation NOUN
to ADP
a DET
hypothesis NOUN
. PUNCT
  SPACE
It PRON
issomewhat ADV
interesting ADJ
that SCONJ
when ADV
anyone PRON
is AUX
challanged VERB
to PART
provide VERB
anexample NOUN
of ADP
this DET
sort NOUN
the DET
* PUNCT
only ADV
* PUNCT
one NUM
they PRON
come VERB
up ADP
with ADP
is AUX
the DET
one NUM
aboutKekule NOUN
. PUNCT
  SPACE
Surely ADV
, PUNCT
there PRON
must AUX
be AUX
others NOUN
. PUNCT
  SPACE
But CCONJ
apparently ADV
this DET
is AUX
regardedas PROPN
an DET
* PUNCT
extreme ADJ
* PUNCT
example NOUN
of ADP
a DET
" PUNCT
non ADJ
- ADJ
rational ADJ
" PUNCT
process NOUN
in ADP
science NOUN
wherebya PROPN
successful ADJ
hypothesis NOUN
was AUX
proposed VERB
. PUNCT
  SPACE
But CCONJ
how ADV
non ADJ
- ADJ
rational ADJ
is AUX
it?Of ADV
course NOUN
we PRON
ca AUX
n't PART
hope VERB
( PUNCT
currently ADV
at ADP
least ADJ
) PUNCT
to PART
explain VERB
how ADV
or CCONJ
whyKekule PROPN
had AUX
the DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
. PUNCT
Surely ADV
it PRON
was AUX
n't PART
the DET
* PUNCT
only ADV
* PUNCT
daydream NOUN
he PRON
had AUX
. PUNCT
  SPACE
What PRON
was AUX
special ADJ
about*this DET
* PUNCT
one NUM
? PUNCT
  SPACE
Could AUX
it PRON
have AUX
had VERB
something PRON
to PART
do AUX
with ADP
a DET
perceived*analogy NOUN
* PUNCT
between ADP
the DET
geometry NOUN
of ADP
the DET
snakes NOUN
and CCONJ
problems NOUN
concerninggeometry NOUN
of ADP
molecules NOUN
? PUNCT
  SPACE
Is AUX
such ADJ
analogical ADJ
reasoning NOUN
" PUNCT
extra ADJ
- PUNCT
scientific"?Or ADJ
is AUX
it PRON
rather ADV
at ADP
the DET
very ADJ
heart NOUN
of ADP
science NOUN
( PUNCT
Perice PROPN
's PART
notion NOUN
of ADP
abduction NOUN
, PUNCT
the DET
use NOUN
of ADP
models NOUN
within ADP
and CCONJ
across ADP
disciplines NOUN
) PUNCT
? PUNCT
  SPACE
Upon SCONJ
close ADJ
examination NOUN
, PUNCT
is AUX
there PRON
a DET
non ADJ
- ADJ
rational ADJ
mystical ADJ
leap NOUN
taking VERB
place NOUN
, PUNCT
or CCONJ
is AUX
it PRON
perhapscloser VERB
to ADP
a DET
formal ADJ
( PUNCT
though SCONJ
often ADV
incomplete ADJ
) PUNCT
analogy NOUN
or CCONJ
model?-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58777From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Emphysema PROPN
questionThanks NOUN
for ADP
all DET
your PRON
assistance NOUN
. PUNCT
I PRON
'll AUX
see VERB
if SCONJ
he PRON
can AUX
try VERB
adifferent NOUN
brand NOUN
of ADP
patches NOUN
, PUNCT
although SCONJ
he PRON
's AUX
tried VERB
two NUM
brandsalready NOUN
. PUNCT
Are AUX
there PRON
more ADJ
than SCONJ
two?Melissa--- PUNCT
                        SPACE
mmatusev@radford.vak12ed.edu"After NOUN
a DET
time NOUN
you PRON
may AUX
find VERB
that SCONJ
having VERB
is AUX
not PART
so ADV
pleasing ADJ
a DET
thingafter NOUN
all ADV
as SCONJ
wanting VERB
. PUNCT
It PRON
is AUX
not PART
logical ADJ
, PUNCT
but CCONJ
it PRON
is AUX
often ADV
true ADJ
. PUNCT
"Spock PUNCT
to ADP
StonnNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58778From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science PROPN
and CCONJ
Methodology-*----In PROPN
article NOUN
< X
C5I2Bo PROPN
. PUNCT
CG9@news X
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
The DET
difference NOUN
between ADP
a DET
Nobel PROPN
Prize PROPN
level NOUN
scientist NOUN
and CCONJ
a DET
mediocre ADJ
> X
scientist NOUN
does AUX
not PART
lie VERB
in ADP
the DET
quality NOUN
of ADP
their PRON
empirical ADJ
methodology NOUN
. PUNCT
  SPACE
> X
It PRON
depends VERB
on ADP
the DET
quality NOUN
of ADP
their PRON
THINKING NOUN
. PUNCT
  SPACE
> X
> X
It PRON
really ADV
bothers VERB
me PRON
that SCONJ
so ADV
many ADJ
graduate NOUN
students NOUN
seem VERB
to PART
believe VERB
that SCONJ
> X
they PRON
are AUX
doing VERB
science NOUN
merely ADV
because SCONJ
they PRON
are AUX
conducting VERB
empirical ADJ
> PROPN
studies NOUN
. PUNCT
... PUNCT
> X
> X
And CCONJ
I PRON
'm AUX
especially ADV
offended VERB
by ADP
Russell PROPN
Turpin PROPN
's PART
repeated VERB
assertion NOUN
that SCONJ
> X
science NOUN
amounts VERB
to ADP
nothing PRON
more ADJ
than SCONJ
avoiding VERB
mistakes NOUN
. PUNCT
  SPACE
Simply ADV
avoiding VERB
> X
mistakes NOUN
does AUX
n't PART
get AUX
you PRON
anywhere ADV
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
Lee PROPN
Lady PROPN
and CCONJ
I PRON
are AUX
talking VERB
at ADP
cross NOUN
purposes NOUN
. PUNCT
Above ADV
, PUNCT
Lady PROPN
seems VERB
concerned ADJ
with ADP
the DET
contrast NOUN
between ADP
greatscience NOUN
that PRON
makes VERB
big ADJ
advances NOUN
in ADP
our PRON
knowledge NOUN
and CCONJ
mediocrescience NOUN
that PRON
makes VERB
smaller ADJ
steps NOUN
. PUNCT
  SPACE
In ADP
most ADJ
of ADP
this DET
thread NOUN
, PUNCT
I PRON
havebeen VERB
concerned VERB
with ADP
the DET
difference NOUN
between ADP
what PRON
is AUX
science NOUN
andwhat PROPN
is AUX
not PART
. PUNCT
Lee PROPN
Lady PROPN
is AUX
correct ADJ
when ADV
she PRON
asserts VERB
that SCONJ
the DET
difference NOUN
betweenEinstein NOUN
and CCONJ
the DET
average ADJ
post ADJ
- ADJ
doc ADJ
physicist NOUN
is AUX
the DET
quality NOUN
oftheir NOUN
thought VERB
. PUNCT
  SPACE
But CCONJ
what PRON
is AUX
the DET
difference NOUN
between ADP
Einstein PROPN
and CCONJ
agenius NOUN
who PRON
would AUX
be AUX
a DET
great ADJ
scientist NOUN
but CCONJ
whose PRON
great ADJ
thoughtsare NOUN
scientifically ADV
screwy PROPN
? PUNCT
  SPACE
( PUNCT
Some DET
would AUX
give VERB
Velikovsky PROPN
orKorzybski PROPN
as SCONJ
examples NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
like VERB
these DET
, PUNCT
choose VERB
yourown VERB
. PUNCT
) PUNCT
  SPACE
I PRON
say VERB
it PRON
is AUX
the DET
same ADJ
as SCONJ
the DET
difference NOUN
between ADP
the DET
mediocrephysicist NOUN
and CCONJ
the DET
mediocre ADJ
proponent NOUN
of ADP
qi PROPN
. PUNCT
  SPACE
Both DET
Einstein PROPN
andthe DET
mediocre ADJ
physcists NOUN
have AUX
disciplined VERB
their PRON
work NOUN
from ADP
thecumulative ADJ
knowledge NOUN
of ADP
how ADV
previous ADJ
researchers NOUN
went VERB
wrong ADJ
. PUNCT
Both CCONJ
Velikovsky PROPN
and CCONJ
the DET
mediocre ADJ
proponent NOUN
of ADP
qi PROPN
have AUX
failed VERB
todo NOUN
this DET
. PUNCT
  SPACE
Let VERB
me PRON
approach VERB
this DET
from ADP
a DET
second ADJ
direction NOUN
. PUNCT
  SPACE
When ADV
one NOUN
is AUX
askedto PROPN
review VERB
a DET
paper NOUN
for ADP
a DET
journal NOUN
or CCONJ
conference NOUN
, PUNCT
there PRON
are AUX
manykinds NOUN
of ADP
criticism NOUN
that SCONJ
one PRON
can AUX
make VERB
. PUNCT
  SPACE
One NUM
kind NOUN
of ADP
criticism NOUN
isthat ADP
the DET
work NOUN
is AUX
just ADV
wrong ADJ
or CCONJ
misinformed VERB
. PUNCT
  SPACE
Another DET
kind ADJ
ofcriticism NOUN
is AUX
that SCONJ
the DET
work NOUN
, PUNCT
while SCONJ
technically ADV
correct ADJ
, PUNCT
is AUX
eithernot ADV
important ADJ
or CCONJ
not PART
interesting ADJ
. PUNCT
  SPACE
The DET
first ADJ
difference NOUN
is AUX
theone NOUN
that PRON
I PRON
have AUX
been AUX
pointing VERB
to ADP
. PUNCT
  SPACE
The DET
second ADJ
difference NOUN
is AUX
theone NOUN
that SCONJ
Lee PROPN
Lady PROPN
seems VERB
to PART
be AUX
discussing VERB
. PUNCT
> X
If SCONJ
good ADJ
empirical ADJ
research NOUN
were AUX
done VERB
and CCONJ
showed VERB
that SCONJ
there PRON
is AUX
some DET
merit NOUN
> X
to ADP
homeopathic ADJ
remedies NOUN
, PUNCT
this DET
would AUX
certainly ADV
be AUX
valuable ADJ
information NOUN
. PUNCT
> X
But CCONJ
it PRON
would AUX
still ADV
not PART
mean VERB
that SCONJ
homeopathy NOUN
qualifies NOUN
as SCONJ
a DET
science NOUN
. PUNCT
  SPACE
This DET
> X
is AUX
where ADV
you PRON
and CCONJ
I PRON
disagree VERB
with ADP
Turpin PROPN
. PUNCT
  SPACE
I PRON
have AUX
often ADV
pointed VERB
out ADP
that SCONJ
for ADP
homeopathy NOUN
to PART
be AUX
considered VERB
scientific ADJ
, PUNCT
what PRON
is AUX
needed VERB
is AUX
a DET
test NOUN
of ADP
its PRON
theoretical ADJ
claims NOUN
, PUNCT
not PART
just ADV
of ADP
some DET
of ADP
its PRON
proposed VERB
remedies NOUN
. PUNCT
  SPACE
Similarly ADV
, PUNCT
I PRON
suspectthat ADV
traditional ADJ
Chinese ADJ
medicine NOUN
has AUX
many ADJ
remedies NOUN
that PRON
work;what ADP
it PRON
lacks VERB
( PUNCT
as SCONJ
one NUM
example NOUN
) PUNCT
is AUX
any DET
experiment NOUN
that PRON
tests VERB
thepresence NOUN
of ADP
qi PROPN
. PUNCT
> X
... PUNCT
In ADP
order NOUN
to PART
have AUX
science NOUN
, PUNCT
one PRON
must AUX
have AUX
a DET
theoretical ADJ
> X
structure NOUN
that PRON
makes VERB
sense NOUN
, PUNCT
not PART
a DET
mere ADJ
collection NOUN
of ADP
empirically ADV
> X
validated VERB
random ADJ
hypotheses NOUN
. PUNCT
Certainly ADV
a DET
" PUNCT
theoretical ADJ
structure NOUN
that PRON
makes VERB
sense NOUN
" PUNCT
is AUX
the DET
goal NOUN
. PUNCT
In ADP
areas NOUN
where ADV
we PRON
do AUX
not PART
yet ADV
have AUX
this DET
, PUNCT
I PRON
see VERB
nothing PRON
wrong ADJ
withforming NOUN
and CCONJ
testing VERB
smaller ADJ
hypotheses NOUN
. PUNCT
  SPACE
Let VERB
's PRON
face VERB
it PRON
: PUNCT
we PRON
cannotalways NOUN
wait VERB
for ADP
an DET
Einstein PROPN
to PART
come VERB
along ADP
and CCONJ
make VERB
everythingclear NOUN
for ADP
us PRON
. PUNCT
  SPACE
Sometimes ADV
those DET
of ADP
us PRON
who PRON
are AUX
not PART
Einstein PROPN
have AUX
toplug VERB
along ADP
and CCONJ
make VERB
small ADJ
amounts NOUN
of ADP
progress NOUN
as SCONJ
best ADV
we PRON
can AUX
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58779From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.161112.21772@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> X
I PRON
do AUX
n't PART
think VERB
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
is AUX
a DET
very ADV
useful ADJ
phrase NOUN
in ADP
a DET
discussion| PROPN
> X
of ADP
the DET
boundaries NOUN
of ADP
science NOUN
, PUNCT
except SCONJ
as SCONJ
a DET
proposed VERB
definiens NOUN
. PUNCT
  SPACE
Extra PROPN
- PUNCT
rational| PROPN
> X
is AUX
a DET
better ADJ
phrase NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
number NOUN
of ADP
well ADV
- PUNCT
known VERB
cases| PROPN
> X
of ADP
extra ADJ
- ADJ
rational ADJ
considerations NOUN
driving VERB
science NOUN
in ADP
a DET
useful ADJ
direction NOUN
. PUNCT
Yeah INTJ
, PUNCT
but CCONJ
the DET
problem NOUN
with ADP
holding VERB
up ADP
the DET
" PUNCT
extra ADJ
- ADJ
rational ADJ
" PUNCT
examples NOUN
asexemplars NOUN
, PUNCT
or CCONJ
as SCONJ
refutations NOUN
of ADP
well ADV
founded VERB
methodology NOUN
, PUNCT
is AUX
that DET
yourun NOUN
smack VERB
up ADP
against ADP
such ADJ
unuseful ADJ
directions NOUN
as SCONJ
Lysenko PROPN
. PUNCT
  SPACE
Such ADJ
" PUNCT
extra ADJ
- ADJ
rational ADJ
" PUNCT
cases NOUN
are AUX
curiosities NOUN
-- PUNCT
not PART
guides VERB
to ADP
methodology.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58780From NUM
: PUNCT
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark)Subject PROPN
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibioticsYou PROPN
can AUX
also ADV
swab VERB
the DET
inside NOUN
of ADP
your PRON
nose NOUN
with ADP
Bacitracin PROPN
using VERB
aQ DET
tip NOUN
. PUNCT
Bacitracin PROPN
is AUX
an DET
antibiotic ADJ
that PRON
can AUX
be AUX
bought VERB
OTC PROPN
as SCONJ
anointment NOUN
in ADP
a DET
tube NOUN
. PUNCT
The DET
doctor NOUN
I PRON
listen VERB
to ADP
on ADP
the DET
radio NOUN
says VERB
to ADP
applyit NOUN
for ADP
30 NUM
days NOUN
, PUNCT
while SCONJ
you PRON
are AUX
taking VERB
other ADJ
antibiotics NOUN
by ADP
mouth NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58781From NUM
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com NUM
> X
, PUNCT
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:| PROPN
> X
cnavarro@cymbal.calpoly.edu ADJ
( PUNCT
CLAIRE PROPN
) PUNCT
writes:| PROPN
> X
> X
> X
Is AUX
there PRON
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?| PROPN
> X
> X
> X
I PRON
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
| PROPN
> X
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG PROPN
sensitivity NOUN
are| PROPN
> X
> X
> X
superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
| ADV
> X
> X
> X
| CCONJ
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least| PROPN
> X
> X
> X
a DET
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the| PROPN
> X
> X
> X
" PUNCT
Chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has| PROPN
> X
> X
> X
always ADV
used VERB
it.| PROPN
> X
So ADV
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but| PROPN
> X
no DET
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
| PROPN
> X
work NOUN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study| NOUN
> X
using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
Here ADV
is AUX
another DET
anecdotal ADJ
story NOUN
. PUNCT
  SPACE
I PRON
am AUX
a DET
picky ADJ
eater NOUN
and CCONJ
never ADV
wanted VERB
to PART
try VERB
chinese ADJ
food NOUN
, PUNCT
however ADV
, PUNCT
I PRON
finally ADV
tried VERB
some DET
in ADP
order NOUN
to PART
please VERB
agirl NOUN
I PRON
was AUX
seeing VERB
at ADP
the DET
time NOUN
. PUNCT
  SPACE
I PRON
had AUX
never ADV
heard VERB
of ADP
Chinese ADJ
restaurantsyndrome NOUN
. PUNCT
  SPACE
A DET
group NOUN
of ADP
us PRON
went VERB
to ADP
the DET
restaurant NOUN
and CCONJ
all DET
shared VERB
6 NUM
differentdishes NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
taste VERB
great ADJ
, PUNCT
but CCONJ
I PRON
decided VERB
it PRON
was AUX
n't PART
so ADV
bad ADJ
. PUNCT
  SPACE
We PRON
wenthome VERB
and CCONJ
went VERB
to ADP
bed NOUN
early ADV
. PUNCT
  SPACE
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs NOUN
. PUNCT
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
inmy PROPN
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'mnot PROPN
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
Suffice VERB
to PART
say VERB
that SCONJ
I PRON
wo AUX
nt PART
go VERB
into ADP
a DET
chinese ADJ
restaurant NOUN
unless SCONJ
I PRON
am AUX
physically ADV
threatened VERB
. PUNCT
  SPACE
The DET
smell NOUN
of ADP
the DET
food NOUN
makes VERB
me PRON
ill ADJ
( PUNCT
and CCONJ
that SCONJ
* PUNCT
is*a ADJ
psycholgical ADJ
reaction NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
I PRON
have AUX
been AUX
dragged VERB
in ADP
to ADP
sufferthrough ADJ
beef NOUN
and CCONJ
broccoli NOUN
without ADP
any DET
sauces NOUN
, PUNCT
I PRON
insist VERB
on ADP
no DET
MSG NOUN
. PUNCT
  SPACE
I PRON
have AUX
n't PART
gotten VERB
sick ADJ
yet.-- NUM
Doug PROPN
Bank PROPN
                       SPACE
Private PROPN
Systems PROPN
Divisiondougb@ecs.comm.mot.com X
          SPACE
Motorola PROPN
Communications PROPN
Sectordougb@nwu.edu PROPN
                   SPACE
Schaumburg PROPN
, PUNCT
Illinoisdougb@casbah.acns.nwu.edu NOUN
       SPACE
708 NUM
- PUNCT
576 NUM
- SYM
8207 NUM
                    SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58782From NUM
: PUNCT
vilok@bmerh322.bnr.ca PUNCT
( PUNCT
Vilok PROPN
Kusumakar)Subject ADJ
: PUNCT
Future NOUN
of ADP
methanolI PROPN
hope VERB
this DET
is AUX
the DET
correct ADJ
newsgroup NOUN
for ADP
this DET
. PUNCT
What PRON
is AUX
the DET
scoop NOUN
on ADP
Methanol PROPN
and CCONJ
its PRON
future NOUN
as SCONJ
an DET
alternative ADJ
fuel NOUN
forvehicles NOUN
? PUNCT
  SPACE
How ADV
does AUX
it PRON
compare VERB
to ADP
ethanol VERB
? PUNCT
There PRON
was AUX
some DET
news NOUN
about ADP
health NOUN
risks NOUN
involved VERB
. PUNCT
  SPACE
Anybody PRON
know VERB
aboutthat DET
. PUNCT
  SPACE
How ADV
does AUX
the DET
US PROPN
Clean PROPN
Air PROPN
act NOUN
impact VERB
the DET
use NOUN
of ADP
Methanol PROPN
by ADP
theyear NOUN
1995 NUM
? PUNCT
I PRON
think VERB
its PRON
Methyl PROPN
Tertiary PROPN
butyl NOUN
ether NOUN
which PRON
the DET
future ADJ
industries NOUN
willuse NOUN
as SCONJ
a DET
substitute NOUN
for ADP
conventional ADJ
fuels NOUN
. PUNCT
There PRON
is AUX
company NOUN
Methanex PROPN
which PRON
produces VERB
12 NUM
% NOUN
of ADP
the DET
world NOUN
's PART
supply NOUN
ofMethanol NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Please INTJ
reply VERB
by ADP
e NOUN
- NOUN
mail NOUN
as SCONJ
I PRON
do AUX
not PART
read VERB
these DET
newsgroups NOUN
. PUNCT
Thanks NOUN
in ADP
advance.--Vilok NUM
Kusumakar PROPN
                    SPACE
OSI PROPN
Protocols PROPN
for ADP
tomorrow......vilok@bnr.ca PROPN
                       SPACE
Bell PROPN
- PUNCT
Northern PROPN
Research PROPN
, PUNCT
Ltd PROPN
. PUNCT
Phone NOUN
: PUNCT
( PUNCT
613 NUM
) PUNCT
763 NUM
- PUNCT
2273 NUM
              SPACE
P.O. PROPN
Box PROPN
3511 NUM
, PUNCT
Station PROPN
C PROPN
Fax PROPN
: PUNCT
   SPACE
( PUNCT
613 NUM
) PUNCT
765 NUM
- SYM
4777 NUM
              SPACE
Ottawa PROPN
, PUNCT
Ontario PROPN
, PUNCT
K1Y PROPN
4H7Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58783From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.163923.25120@microsoft.com NUM
> X
, PUNCT
tomca@microsoft.com X
( PUNCT
Tom PROPN
B. PROPN
Carey PROPN
) PUNCT
writes:| PROPN
> X
OK INTJ
, PUNCT
just ADV
for ADP
grins:| PROPN
> X
- PUNCT
Kekule PROPN
hypothesized VERB
a DET
resonant ADJ
structure NOUN
for ADP
the DET
aromatic ADJ
benzene| NOUN
> X
ring NOUN
after ADP
waking VERB
from ADP
a DET
dream NOUN
in ADP
which PRON
a DET
snake NOUN
was AUX
swallowing VERB
his PRON
tail.| PROPN
> X
- PUNCT
Archimedes NOUN
formalized VERB
the DET
principle NOUN
of ADP
buoyancy NOUN
while SCONJ
meditating VERB
in| PROPN
> X
his PRON
bath NOUN
. PUNCT
Well INTJ
, PUNCT
certainly ADV
in ADP
Archimedes PROPN
case NOUN
the DET
description NOUN
" PUNCT
while SCONJ
observing VERB
thephenomena PROPN
in ADP
his PRON
bath NOUN
" PUNCT
seems VERB
more ADV
accurate ADJ
than SCONJ
" PUNCT
while SCONJ
meditating VERB
inhis ADJ
bath NOUN
" PUNCT
-- PUNCT
it PRON
was AUX
, PUNCT
after ADV
all ADV
, PUNCT
a DET
rather ADV
buoyancy NOUN
intense ADJ
environment.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58784From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:| PROPN
> X
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs.| PROPN
> X
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in| ADP
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'm| PROPN
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
The DET
funny ADJ
thing NOUN
is AUX
the DET
personaly ADJ
stories NOUN
about ADP
reactions NOUN
to ADP
MSG PROPN
vary VERB
sogreatly ADV
. PUNCT
Some DET
said VERB
that SCONJ
their PRON
heart NOUN
beat VERB
speeded VERB
up ADP
with ADP
flush ADJ
face NOUN
. PUNCT
Someclaim VERB
their PRON
heart NOUN
" PUNCT
skipped VERB
" PUNCT
beats NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Some DET
reacted VERB
withheadache PROPN
, PUNCT
some DET
stomach NOUN
ache NOUN
. PUNCT
Some DET
had AUX
watery ADJ
eyes NOUN
or CCONJ
running VERB
nose NOUN
, PUNCT
somehad VERB
itchy ADJ
skin NOUN
or CCONJ
rashes NOUN
. PUNCT
More ADV
serious ADJ
accusations NOUN
include VERB
respiration NOUN
difficulty NOUN
and CCONJ
brain NOUN
damage NOUN
. PUNCT
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
onesuspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
Butif ADP
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it PRON
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58785From NUM
: PUNCT
mossman@cea X
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
( PUNCT
Amy PROPN
Mossman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Here ADV
is AUX
another DET
anecdotal ADJ
story NOUN
. PUNCT
  SPACE
I PRON
am AUX
a DET
picky ADJ
eater NOUN
and CCONJ
never ADV
wanted VERB
to ADP
| PROPN
> X
try VERB
chinese ADJ
food NOUN
, PUNCT
however ADV
, PUNCT
I PRON
finally ADV
tried VERB
some DET
in ADP
order NOUN
to PART
please VERB
a| VERB
> X
girl NOUN
I PRON
was AUX
seeing VERB
at ADP
the DET
time NOUN
. PUNCT
  SPACE
I PRON
had AUX
never ADV
heard VERB
of ADP
Chinese ADJ
restaurant| PROPN
> X
syndrome NOUN
. PUNCT
  SPACE
A DET
group NOUN
of ADP
us PRON
went VERB
to ADP
the DET
restaurant NOUN
and CCONJ
all DET
shared VERB
6 NUM
different| NOUN
> X
dishes NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
taste VERB
great ADJ
, PUNCT
but CCONJ
I PRON
decided VERB
it PRON
was AUX
n't PART
so ADV
bad ADJ
. PUNCT
  SPACE
We PRON
went| NOUN
> X
home ADV
and CCONJ
went VERB
to ADP
bed NOUN
early ADV
. PUNCT
  SPACE
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs.| PROPN
> X
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in| ADP
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'm| PROPN
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
| X
> X
| ADV
> X
Suffice VERB
to PART
say VERB
that SCONJ
I PRON
wo AUX
nt PART
go VERB
into ADP
a DET
chinese ADJ
restaurant NOUN
unless SCONJ
I PRON
am AUX
| ADJ
> X
physically ADV
threatened VERB
. PUNCT
  SPACE
The DET
smell NOUN
of ADP
the DET
food NOUN
makes VERB
me PRON
ill ADJ
( PUNCT
and CCONJ
that DET
* PUNCT
is*| NUM
> X
a DET
psycholgical ADJ
reaction NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
I PRON
have AUX
been AUX
dragged VERB
in ADP
to ADP
suffer| PROPN
> X
through ADP
beef NOUN
and CCONJ
broccoli NOUN
without ADP
any DET
sauces NOUN
, PUNCT
I PRON
insist VERB
on ADP
no DET
MSG NOUN
. PUNCT
  SPACE
| NOUN
> X
I PRON
have AUX
n't PART
gotten VERB
sick ADJ
yet.| PUNCT
> X
| ADP
> X
-- PUNCT
I PRON
had AUX
a DET
similar ADJ
reaction NOUN
to ADP
Chinese ADJ
food NOUN
but CCONJ
came VERB
to ADP
a DET
completly ADV
differentconclusion NOUN
. PUNCT
I PRON
've AUX
eaten VERB
Chinese ADJ
food NOUN
for ADP
ages NOUN
and CCONJ
never ADV
had AUX
problems NOUN
. PUNCT
I PRON
wentwith VERB
some DET
Chinese ADJ
Malaysian ADJ
friends NOUN
to ADP
a DET
swanky ADJ
Chinses PROPN
rest NOUN
. PUNCT
and CCONJ
they PRON
orderedlots VERB
of ADP
stuff NOUN
I PRON
had AUX
never ADV
seen VERB
before ADV
. PUNCT
The DET
only ADJ
thing NOUN
I PRON
can AUX
remember VERB
of ADP
thatmeal NOUN
was AUX
the DET
first ADJ
course NOUN
, PUNCT
scallops NOUN
served VERB
in ADP
the DET
shell NOUN
with ADP
a DET
soy NOUN
- PUNCT
type NOUN
sauce NOUN
. PUNCT
I PRON
thought VERB
, PUNCT
" PUNCT
Well INTJ
, PUNCT
I PRON
've AUX
only ADV
had VERB
scallops NOUN
once ADV
and CCONJ
I PRON
was AUX
sick ADJ
after ADP
but CCONJ
thatcould NOUN
have AUX
been AUX
a DET
coincidence NOUN
" PUNCT
. PUNCT
That DET
night NOUN
as SCONJ
I PRON
sat VERB
on ADP
the DET
bathroom NOUN
floor NOUN
, PUNCT
sweating VERB
and CCONJ
emptying VERB
my PRON
stomach NOUN
the DET
hard ADJ
way NOUN
, PUNCT
I PRON
decided VERB
I PRON
would AUX
never ADV
touchanother VERB
scallop VERB
. PUNCT
I PRON
may AUX
not PART
be AUX
allergic ADJ
but CCONJ
I PRON
do AUX
n't PART
want VERB
to PART
take VERB
the DET
chance NOUN
. PUNCT
Amy PROPN
MossmanNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58786From NUM
: PUNCT
snichols@adobe.com X
( PUNCT
Sherri ADJ
Nichols)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Exercise NOUN
and CCONJ
MigraineIn PROPN
article NOUN
< X
1993Apr15.163133.25634@ntmtv NUM
> X
janet@ntmtv.com X
( PUNCT
Janet PROPN
Jakstys PROPN
) PUNCT
writes:>This NOUN
is AUX
n't PART
the DET
first ADJ
time NOUN
that PRON
I PRON
've AUX
had VERB
a DET
migraine ADJ
occur NOUN
after ADP
exercise.>I'm PROPN
wondering VERB
if SCONJ
anyone PRON
else ADV
has AUX
had VERB
the DET
same ADJ
experience NOUN
and CCONJ
I PRON
wonder VERB
> X
what PRON
triggers VERB
the DET
migraine NOUN
in ADP
this DET
situation NOUN
( PUNCT
heat NOUN
buildup NOUN
? PUNCT
dehydration?).>I'm ADV
not PART
giving VERB
up ADP
tennis NOUN
so ADV
is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
( PUNCT
besides ADV
get AUX
into ADP
> X
shape NOUN
and CCONJ
do AUX
n't PART
play VERB
at ADP
high ADJ
noon NOUN
) PUNCT
to PART
prevent VERB
this?I've NOUN
gotten VERB
migraines NOUN
after ADP
exercise NOUN
, PUNCT
though ADV
for ADP
me PRON
it PRON
seems VERB
to PART
be AUX
relatedto NOUN
exercising VERB
without ADP
having VERB
eaten VERB
recently ADV
. PUNCT
  SPACE
Sherri PROPN
Nicholssnichols@adobe.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58787From NUM
: PUNCT
hrubin@pop.stat.purdue.edu PROPN
( PUNCT
Herman PROPN
Rubin)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
MethodologyIn PROPN
article NOUN
< X
1qk92lINNl55@im4u.cs.utexas.edu NUM
> X
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C5I2Bo PROPN
. PUNCT
CG9@news X
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
The DET
difference NOUN
between ADP
a DET
Nobel PROPN
Prize PROPN
level NOUN
scientist NOUN
and CCONJ
a DET
mediocre ADJ
> X
> X
scientist NOUN
does AUX
not PART
lie VERB
in ADP
the DET
quality NOUN
of ADP
their PRON
empirical ADJ
methodology NOUN
. PUNCT
  SPACE
> X
> X
It PRON
depends VERB
on ADP
the DET
quality NOUN
of ADP
their PRON
THINKING NOUN
. PUNCT
 			 SPACE
.................... PUNCT
> X
Lee PROPN
Lady PROPN
is AUX
correct ADJ
when ADV
she PRON
asserts VERB
that SCONJ
the DET
difference NOUN
between ADP
> X
Einstein PROPN
and CCONJ
the DET
average ADJ
post ADJ
- ADJ
doc ADJ
physicist NOUN
is AUX
the DET
quality NOUN
of ADP
> X
their PRON
thought NOUN
. PUNCT
  SPACE
But CCONJ
what PRON
is AUX
the DET
difference NOUN
between ADP
Einstein PROPN
and CCONJ
a DET
> X
genius NOUN
who PRON
would AUX
be AUX
a DET
great ADJ
scientist NOUN
but CCONJ
whose PRON
great ADJ
thoughts NOUN
> X
are AUX
scientifically ADV
screwy?This PROPN
example NOUN
is AUX
probably ADV
wrong ADJ
. PUNCT
  SPACE
There PRON
is AUX
the DET
case NOUN
of ADP
one NUM
famousphysicist NOUN
telling VERB
another DET
that SCONJ
he PRON
was AUX
probably ADV
wrong ADJ
. PUNCT
  SPACE
As SCONJ
I PRON
recallthe VERB
quote INTJ
: PUNCT
	 SPACE
Your PRON
ideas NOUN
are AUX
crazy ADJ
, PUNCT
to PART
be AUX
sure ADJ
. PUNCT
  SPACE
But CCONJ
they PRON
are AUX
not PART
crazy ADJ
	 SPACE
enough ADJ
to PART
be AUX
right ADJ
. PUNCT
The DET
typical ADJ
screwball NOUN
is AUX
only ADV
somewhat ADV
screwy.-- PROPN
Herman PROPN
Rubin PROPN
, PUNCT
Dept PROPN
. PROPN
of ADP
Statistics PROPN
, PUNCT
Purdue PROPN
Univ PROPN
. PROPN
, PUNCT
West PROPN
Lafayette PROPN
IN47907 PROPN
- PUNCT
1399Phone NUM
: PUNCT
( PUNCT
317)494-6054hrubin@snap.stat.purdue.edu NUM
( PUNCT
Internet NOUN
, PUNCT
bitnet NOUN
) PUNCT
  SPACE
{ PUNCT
purdue PROPN
, PUNCT
pur NOUN
- PUNCT
ee}!snap.stat!hrubin(UUCP)Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58788From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5JE94.KrL@unx.sas.com PROPN
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr15.161112.21772@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>| VERB
> X
I PRON
do AUX
n't PART
think VERB
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
is AUX
a DET
very ADV
useful ADJ
phrase NOUN
in ADP
a DET
discussion>| NOUN
> X
of ADP
the DET
boundaries NOUN
of ADP
science NOUN
, PUNCT
except SCONJ
as SCONJ
a DET
proposed VERB
definiens.>| NUM
> X
Extra PROPN
- PUNCT
rational>| PROPN
> X
is AUX
a DET
better ADJ
phrase NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
number NOUN
of ADP
well ADV
- PUNCT
known VERB
cases>| NOUN
> X
of ADP
extra ADJ
- ADJ
rational ADJ
considerations NOUN
driving VERB
science NOUN
in ADP
a DET
useful ADJ
direction.>>Yeah PROPN
, PUNCT
but CCONJ
the DET
problem NOUN
with ADP
holding VERB
up ADP
the DET
" PUNCT
extra ADJ
- ADJ
rational ADJ
" PUNCT
examples NOUN
as SCONJ
> X
exemplars NOUN
, PUNCT
or CCONJ
as SCONJ
refutations NOUN
of ADP
well ADV
founded VERB
methodology NOUN
, PUNCT
is AUX
that SCONJ
you PRON
> X
run VERB
smack ADV
up ADV
against ADP
such ADJ
unuseful ADJ
directions NOUN
as SCONJ
Lysenko PROPN
. PUNCT
  SPACE
Such ADJ
" PUNCT
extra->rational ADJ
" PUNCT
cases NOUN
are AUX
curiosities NOUN
-- PUNCT
not PART
guides VERB
to PART
methodology NOUN
. PUNCT
As SCONJ
has AUX
been AUX
noted VERB
before ADV
, PUNCT
there PRON
is AUX
the DET
distinction NOUN
between ADP
_ PROPN
motivation_and PROPN
_ PROPN
method NOUN
_ PROPN
. PUNCT
  SPACE
No DET
experimental ADJ
result NOUN
should AUX
be AUX
accepted VERB
unless SCONJ
it PRON
isdescribed VERB
in ADP
sufficient ADJ
detail NOUN
to PART
be AUX
replicated VERB
, PUNCT
and CCONJ
the DET
replicationsdo NOUN
indeed ADV
reproduce VERB
the DET
result NOUN
. PUNCT
  SPACE
No DET
theoretical ADJ
argument NOUN
should AUX
beaccepted VERB
unless SCONJ
it PRON
is AUX
presented VERB
in ADP
sufficient ADJ
detail NOUN
to PART
be AUX
followed VERB
, PUNCT
andreasonable ADJ
, PUNCT
knowlegeable ADJ
, PUNCT
people NOUN
agree VERB
with ADP
the DET
force NOUN
of ADP
the DET
logic NOUN
. PUNCT
But CCONJ
people NOUN
try VERB
experiments NOUN
, PUNCT
and CCONJ
pursue VERB
arguments NOUN
, PUNCT
for ADP
all DET
sorts NOUN
of ADP
crazyreasons NOUN
. PUNCT
  SPACE
Irrational ADJ
motivations NOUN
are AUX
not PART
just ADV
curiousities NOUN
; PUNCT
they PRON
are AUX
alarge ADJ
part NOUN
of ADP
the DET
history NOUN
of ADP
science NOUN
. PUNCT
There PRON
are AUX
a DET
couple NOUN
of ADP
negative ADJ
points NOUN
to PART
make VERB
here:1 NUM
) PUNCT
A DET
theory NOUN
of ADP
qi PROPN
could AUX
, PUNCT
conceivably ADV
, PUNCT
become VERB
accepted VERB
without ADP
directverification NOUN
of ADP
the DET
existence NOUN
of ADP
qi PROPN
. PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
quarks NOUN
are AUX
an DET
acceptedpart NOUN
of ADP
the DET
standard ADJ
model NOUN
of ADP
physics NOUN
, PUNCT
with ADP
no DET
direct ADJ
verification NOUN
. PUNCT
  SPACE
Whatwould AUX
be AUX
needed VERB
would AUX
be AUX
a DET
theory NOUN
, PUNCT
based VERB
on ADP
qi PROPN
, PUNCT
that PRON
predicted VERB
medicalreality NOUN
better ADV
than SCONJ
the DET
alternatives NOUN
. PUNCT
  SPACE
The DET
central ADJ
theoretical ADJ
claim NOUN
couldlie NOUN
forever ADV
beyond ADP
experiment NOUN
, PUNCT
as ADV
long ADV
as SCONJ
there PRON
was AUX
a DET
sufficient ADJ
body NOUN
ofexperimental ADJ
data NOUN
that PRON
the DET
qi PROPN
theory NOUN
predicted VERB
better ADV
than SCONJ
any DET
other.(I NOUN
would AUX
n't PART
hold VERB
my PRON
breath NOUN
waiting VERB
for ADP
the DET
triumph NOUN
of ADP
qi PROPN
, PUNCT
though ADV
. PUNCT
I PRON
do AUX
n't PART
think VERB
that SCONJ
there PRON
is AUX
even ADV
a DET
coherent ADJ
theory NOUN
based VERB
on ADP
it PRON
, PUNCT
much ADJ
lessa NOUN
theory NOUN
that PRON
explains VERB
anything PRON
at ADV
all ADV
better ADJ
than SCONJ
modern ADJ
biology NOUN
. PUNCT
  SPACE
And CCONJ
itis VERB
hard ADJ
to PART
imagine VERB
a DET
qi PROPN
theory NOUN
that PRON
would AUX
not PART
predict VERB
some DET
way NOUN
of ADP
ratherdirectly ADV
verifying VERB
the DET
existence NOUN
of ADP
qi.)2 NOUN
) PUNCT
Science NOUN
has AUX
not PART
historically ADV
progressed VERB
in ADP
any DET
sort NOUN
of ADP
rationalexperiment NOUN
- PUNCT
data NOUN
- PUNCT
theory NOUN
sequence NOUN
. PUNCT
  SPACE
Most ADJ
experiments NOUN
are AUX
carried VERB
out ADP
, PUNCT
andinterpreted VERB
, PUNCT
in ADP
pre ADJ
- ADJ
existing VERB
theoretical ADJ
frameworks NOUN
. PUNCT
  SPACE
The DET
theoreticalcontroversies NOUN
of ADP
the DET
day NOUN
determine NOUN
which PRON
experiments NOUN
get VERB
done VERB
. PUNCT
  SPACE
Overall PROPN
, PUNCT
there PRON
is AUX
a DET
huge ADJ
messy ADJ
affair NOUN
of ADP
personal ADJ
jealousies NOUN
, PUNCT
crazy ADJ
motivations NOUN
, PUNCT
petty ADJ
hatreds NOUN
, PUNCT
and CCONJ
the DET
like ADJ
that DET
determines VERB
which PRON
experiments NOUN
, PUNCT
and CCONJ
whichcomputations NOUN
, PUNCT
get VERB
done VERB
. PUNCT
  SPACE
What PRON
keeps VERB
it PRON
going VERB
forward ADV
is AUX
the DET
criticalfunction NOUN
of ADP
science NOUN
: PUNCT
results NOUN
do AUX
n't PART
count VERB
unless SCONJ
they PRON
can AUX
be AUX
replicated VERB
. PUNCT
The DET
whole ADJ
system NOUN
is AUX
a DET
sort NOUN
of ADP
mechanism NOUN
for ADP
generate NOUN
- PUNCT
and CCONJ
- PUNCT
test NOUN
. PUNCT
  SPACE
The DET
generatepart NOUN
can AUX
be AUX
totally ADV
irrational ADJ
, PUNCT
as ADV
long ADV
as SCONJ
the DET
test NOUN
part NOUN
works VERB
properly ADV
. PUNCT
Pasteur PROPN
could AUX
believe VERB
whatever PRON
he PRON
liked VERB
about ADP
chemical NOUN
activity NOUN
and CCONJ
crystals;but CCONJ
even ADV
Mitscherlich PROPN
had AUX
to PART
agree VERB
that SCONJ
racemic ADJ
acid NOUN
crystals NOUN
were AUX
handed;that VERB
when ADV
you PRON
separate VERB
them PRON
by ADP
handedness NOUN
, PUNCT
you PRON
get VERB
two NUM
chemicals NOUN
that PRON
rotatepolarized VERB
light NOUN
in ADP
opposite ADJ
directions NOUN
; PUNCT
and CCONJ
the DET
right ADV
- PUNCT
rotating VERB
version NOUN
wasindistinguishable ADJ
from ADP
tartaric ADJ
acid NOUN
. PUNCT
  SPACE
Pasteur PROPN
's PART
irrational ADJ
motivation NOUN
hadled VERB
to ADP
a DET
replicable ADJ
, PUNCT
and CCONJ
important ADJ
, PUNCT
result VERB
. PUNCT
This DET
is AUX
where ADV
Lysenko PROPN
, PUNCT
creationists NOUN
, PUNCT
etc X
. PUNCT
fail VERB
. PUNCT
  SPACE
They PRON
have AUX
usually ADV
noteven ADV
produced VERB
coherent ADJ
theories NOUN
that PRON
predict VERB
much ADJ
of ADP
anything PRON
. PUNCT
  SPACE
When ADV
theirtheories NOUN
do AUX
predict VERB
, PUNCT
and CCONJ
are AUX
contradicted VERB
by ADP
experiment NOUN
, PUNCT
they PRON
do AUX
notconcede VERB
the DET
point NOUN
and CCONJ
modify VERB
their PRON
theories NOUN
; PUNCT
rather ADV
they PRON
try VERB
to PART
suppressthe DET
results NOUN
( PUNCT
Lysenko PROPN
) PUNCT
or CCONJ
try VERB
to PART
divert VERB
attention NOUN
to ADP
other ADJ
evidence NOUN
theythink NOUN
supports VERB
their PRON
position NOUN
( PUNCT
creationists).-- ADJ
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58789From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Steve PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Crohn PROPN
's PART
DiseaseIn PROPN
article NOUN
< X
1993Apr14.174824.12295@westminster.ac.uk PROPN
> X
, PUNCT
kxaec@sun.pcl.ac.uk(David PROPN
Watters PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
Dear INTJ
all DET
, PUNCT
> X
> X
I PRON
am AUX
a DET
Crohn PROPN
's PART
Disease PROPN
sufferer NOUN
and CCONJ
I PRON
'm AUX
interested ADJ
if SCONJ
anyone PRON
knows VERB
of ADP
any DET
current ADJ
research NOUN
that PRON
is AUX
going VERB
on ADP
into ADP
the DET
subject NOUN
. PUNCT
I PRON
've AUX
done VERB
some DET
investigation NOUN
myself PRON
so ADV
you PRON
do AUX
n't PART
need VERB
to PART
spare VERB
me PRON
any DET
details NOUN
. PUNCT
I PRON
've AUX
had VERB
the DET
fistulas NOUN
, PUNCT
the DET
ileostomy NOUN
, PUNCT
etc X
.. PUNCT
> X
> X
Is AUX
a DET
" PUNCT
cure NOUN
" PUNCT
on ADP
the DET
horizon NOUN
? PUNCT
> X
> X
I PRON
am AUX
not PART
in ADP
the DET
medical ADJ
profession NOUN
so SCONJ
if SCONJ
you PRON
do AUX
reply VERB
I PRON
would AUX
appreciate VERB
plain ADJ
speak VERB
. PUNCT
> X
> X
I PRON
'd AUX
prefer VERB
to PART
be AUX
mailed VERB
direct ADJ
as SCONJ
I PRON
do AUX
n't PART
always ADV
get AUX
a DET
chance NOUN
to PART
read VERB
the DET
news NOUN
. PUNCT
> X
> X
Thank VERB
you PRON
in ADP
advance NOUN
. PUNCT
> X
> X
Dave PROPN
. PUNCT
The DET
best ADJ
group NOUN
to PART
keep VERB
you PRON
informed ADJ
is AUX
the DET
Crohn PROPN
's PART
and CCONJ
Colitis PROPN
Foundationof PROPN
America PROPN
. PUNCT
  SPACE
I PRON
do AUX
not PART
know VERB
if SCONJ
the DET
UK PROPN
has AUX
a DET
similar ADJ
organization NOUN
. PUNCT
  SPACE
Theaddress PROPN
ofthe NOUN
CCFA PROPN
is AUX
CCFA444 PROPN
Park PROPN
Avenue PROPN
South11th NOUN
FloorNew PROPN
York PROPN
, PUNCT
NY PROPN
  SPACE
10016 NUM
- PUNCT
7374USAThey NOUN
have AUX
a DET
lot NOUN
of ADP
information NOUN
available ADJ
and CCONJ
have AUX
a DET
number NOUN
of ADP
newsletters NOUN
. PUNCT
Good ADJ
Luck PROPN
. PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58790From NUM
: PUNCT
sue@netcom.com PROPN
( PUNCT
Sue PROPN
Miller)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EugenicsIn PROPN
article NOUN
< X
19617@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>we PUNCT
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADJ
- PUNCT
lived,>Arnold NOUN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can.>Sure VERB
, PUNCT
as ADV
long ADV
as SCONJ
they PRON
'll AUX
make VERB
one NUM
for ADP
me PRON
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58791From NUM
: PUNCT
lehr@austin.ibm.com PROPN
( PUNCT
Ted PROPN
Lehr)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)Gary PROPN
Merrill PROPN
writes VERB
: PUNCT
> X
.. PUNCT
Not PART
every DET
wild ADJ
flight NOUN
of ADP
fancy ADJ
serves NOUN
> X
( PUNCT
or CCONJ
can AUX
serve VERB
) PUNCT
in ADP
the DET
appropriate ADJ
relation NOUN
to ADP
a DET
hypothesis NOUN
. PUNCT
  SPACE
It PRON
is AUX
> X
somewhat ADV
interesting ADJ
that SCONJ
when ADV
anyone PRON
is AUX
challanged VERB
to PART
provide VERB
an DET
> X
example NOUN
of ADP
this DET
sort NOUN
the DET
* PUNCT
only ADV
* PUNCT
one NUM
they PRON
come VERB
up ADP
with ADP
is AUX
the DET
one NOUN
about ADP
> X
Kekule PROPN
. PUNCT
  SPACE
Surely ADV
, PUNCT
there PRON
must AUX
be AUX
others NOUN
. PUNCT
  SPACE
But CCONJ
apparently ADV
this DET
is AUX
regarded VERB
> X
as SCONJ
an DET
* PUNCT
extreme ADJ
* PUNCT
example NOUN
of ADP
a DET
" PUNCT
non ADJ
- ADJ
rational ADJ
" PUNCT
process NOUN
in ADP
science NOUN
whereby ADV
> X
a DET
successful ADJ
hypothesis NOUN
was AUX
proposed VERB
. PUNCT
  SPACE
But CCONJ
how ADV
non ADJ
- ADJ
rational ADJ
is AUX
it?Indeed VERB
, PUNCT
an DET
extreme ADJ
example NOUN
. PUNCT
  SPACE
It PRON
came VERB
" PUNCT
out SCONJ
of ADP
nowhere ADV
. PUNCT
" PUNCT
  SPACE
The DET
connectionKekule NOUN
saw VERB
between ADP
it PRON
and CCONJ
his PRON
problem NOUN
is AUX
fortunate ADJ
but CCONJ
not PART
extraordinary ADJ
. PUNCT
I PRON
, PUNCT
for ADP
example NOUN
, PUNCT
often ADV
receive VERB
/ SYM
conjure NOUN
solutions NOUN
( PUNCT
hypotheses NOUN
for ADP
solutions NOUN
) PUNCT
to ADP
my PRON
everyday ADJ
problems NOUN
at ADP
moments NOUN
when ADV
I PRON
appear VERB
to ADP
myself PRON
to PART
be AUX
occupied VERB
with ADP
activities NOUN
quite ADV
removed VERB
. PUNCT
  SPACE
Algorithms PROPN
for ADP
that DET
new ADJ
software NOUN
feature NOUN
comewhen ADV
I PRON
trample VERB
the DET
meadow NOUN
on ADP
my PRON
occasional ADJ
runs NOUN
. PUNCT
  SPACE
Alternative PROPN
( PUNCT
better ADJ
> X
) PUNCT
ways NOUN
to PART
instruct VERB
and CCONJ
rear VERB
my PRON
sons NOUN
arrive VERB
while SCONJ
I PRON
weed VERB
the DET
garden NOUN
. PUNCT
  SPACE
I PRON
'll AUX
swear VERB
I PRON
am AUX
not PART
thinking VERB
about ADP
any DET
of ADP
it PRON
when ADV
ideas NOUN
come VERB
. PUNCT
   SPACE
These DET
ideas NOUN
are AUX
not PART
the DET
stuff NOUN
of ADP
" PUNCT
great ADJ
" PUNCT
discoveries NOUN
, PUNCT
of ADP
course NOUN
, PUNCT
but CCONJ
myconnecting VERB
them PRON
to ADP
particular ADJ
problems NOUN
is AUX
fraught ADJ
with ADP
deliberation NOUN
andoccasional ADJ
fits NOUN
of ADP
rationality NOUN
. PUNCT
> X
Surely ADV
it PRON
was AUX
n't PART
the DET
* PUNCT
only ADV
* PUNCT
daydream NOUN
[ PUNCT
Kekule PROPN
] PUNCT
had AUX
. PUNCT
  SPACE
What PRON
was AUX
special ADJ
about ADP
> X
* PUNCT
this DET
* PUNCT
one NUM
? PUNCT
  SPACE
Could AUX
it PRON
have AUX
had VERB
something PRON
to PART
do AUX
with ADP
a DET
perceived VERB
> X
* PUNCT
analogy NOUN
* PUNCT
between ADP
the DET
geometry NOUN
of ADP
the DET
snakes NOUN
and CCONJ
problems NOUN
concerning VERB
> X
geometry NOUN
of ADP
molecules NOUN
? PUNCT
  SPACE
Yes INTJ
. PUNCT
  SPACE
And CCONJ
he PRON
was AUX
lucky ADJ
to PART
have AUX
such DET
a DET
colorful ADJ
, PUNCT
vivid ADJ
image NOUN
. PUNCT
  SPACE
I PRON
, PUNCT
alas INTJ
, PUNCT
willnever NOUN
figure VERB
out ADP
why ADV
returning VERB
worms NOUN
to ADP
the DET
loose ADJ
soil NOUN
of ADP
my PRON
garden NOUN
brought VERB
, PUNCT
" PUNCT
have AUX
him PRON
count NOUN
objects NOUN
instead ADV
of ADP
merely ADV
count VERB
" PUNCT
to ADP
mind NOUN
regarding VERB
my PRON
2 NUM
year NOUN
- PUNCT
old ADJ
's PART
fledging ADJ
arithmetic ADJ
skills NOUN
. PUNCT
> X
... PUNCT
Upon SCONJ
close ADJ
examination NOUN
, PUNCT
> X
is AUX
there PRON
a DET
non ADJ
- ADJ
rational ADJ
mystical ADJ
leap NOUN
taking VERB
place NOUN
, PUNCT
or CCONJ
is AUX
it PRON
perhaps ADV
> X
closer ADV
to ADP
a DET
formal ADJ
( PUNCT
though SCONJ
often ADV
incomplete ADJ
) PUNCT
analogy NOUN
or CCONJ
model?The PROPN
latter ADV
. PUNCT
  SPACE
Worms PROPN
wiggling VERB
around ADV
in ADP
the DET
dirt NOUN
fascinate NOUN
my PRON
son NOUN
. PUNCT
Regards PROPN
, PUNCT
Ted PROPN
-- PUNCT
Ted PROPN
Lehr PROPN
                             SPACE
| NOUN
" PUNCT
... PUNCT
my PRON
thoughts NOUN
, PUNCT
opinions NOUN
and CCONJ
questions NOUN
... PUNCT
"Future PROPN
Systems PROPN
Technology PROPN
Group PROPN
, PUNCT
AWS PROPN
| PROPN
   SPACE
IBM PROPN
				      SPACE
| PROPN
Internet PROPN
: PUNCT
lehr@futserv.austin.ibm.comAustin PROPN
, PUNCT
TX PROPN
  SPACE
78758 NUM
		      SPACE
| DET
   SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58792From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)Avoiding PROPN
mistakes NOUN
is AUX
certainly ADV
highly ADV
desirable ADJ
. PUNCT
  SPACE
However ADV
it PRON
is AUX
also ADV
widely ADV
acknowledged VERB
that SCONJ
perfectionism NOUN
is AUX
inimicable ADJ
to ADP
creativity NOUN
. PUNCT
And CCONJ
in ADP
ordinary ADJ
life NOUN
, PUNCT
perfectionism NOUN
carried VERB
beyond ADP
a DET
certain ADJ
point NOUN
is AUX
indicative ADJ
of ADP
a DET
psychological ADJ
disorder NOUN
. PUNCT
  SPACE
In ADP
the DET
extreme ADJ
case NOUN
, PUNCT
a DET
  SPACE
perfectionist NOUN
becomes VERB
so ADV
paralyzed ADJ
by ADP
all DET
the DET
possible ADJ
mistakes NOUN
he PRON
might AUX
make VERB
that SCONJ
he PRON
is AUX
unable ADJ
to PART
even ADV
leave VERB
the DET
house NOUN
. PUNCT
  SPACE
In ADP
science NOUN
, PUNCT
we PRON
want VERB
to PART
discover VERB
as ADV
much ADJ
truth NOUN
about ADP
the DET
world NOUN
as SCONJ
possible ADJ
and CCONJ
we PRON
also ADV
want VERB
to PART
have AUX
as ADV
much ADJ
certainty NOUN
as SCONJ
possible ADJ
about ADP
these DET
discoveries NOUN
. PUNCT
  SPACE
Usually ADV
there PRON
is AUX
some DET
trade NOUN
- PUNCT
off NOUN
between ADP
these DET
two NUM
desiderata NOUN
--- PUNCT
the DET
search NOUN
for ADP
scope NOUN
and CCONJ
the DET
search NOUN
for ADP
certainty NOUN
. PUNCT
  SPACE
If SCONJ
18th ADJ
century NOUN
mathematicians PROPN
had AUX
demanded VERB
total ADJ
rigor NOUN
from ADP
Newton PROPN
and CCONJ
Leibniz PROPN
then ADV
there PRON
would AUX
probably ADV
be AUX
no DET
calculus NOUN
today NOUN
, PUNCT
because SCONJ
neither DET
of ADP
the DET
two NUM
could AUX
explain VERB
calculus NOUN
in ADP
a DET
way NOUN
that PRON
really ADV
made VERB
sense NOUN
, PUNCT
since SCONJ
they PRON
lacked VERB
the DET
concept NOUN
of ADP
a DET
limit NOUN
. PUNCT
  SPACE
And CCONJ
in ADP
fact NOUN
, PUNCT
because SCONJ
of ADP
the DET
lack NOUN
of ADP
a DET
rigorous ADJ
foundation NOUN
, PUNCT
they PRON
made VERB
a DET
number NOUN
of ADP
errors NOUN
in ADP
their PRON
use NOUN
of ADP
calculus NOUN
. PUNCT
It PRON
was AUX
only ADV
a DET
hundred NUM
years NOUN
later ADV
that SCONJ
Weistrass PROPN
was AUX
able ADJ
to PART
give VERB
a DET
solid ADJ
grounding NOUN
for ADP
the DET
ideas NOUN
of ADP
Newton PROPN
and CCONJ
Leibniz PROPN
. PUNCT
  SPACE
Nonetheless ADV
, PUNCT
what PRON
Newton PROPN
and CCONJ
Leibniz PROPN
did AUX
was AUX
undoubtedly ADV
science NOUN
and CCONJ
mathematics NOUN
gained VERB
a DET
great ADJ
deal NOUN
more ADV
from ADP
the DET
application NOUN
of ADP
their PRON
important ADJ
ideas NOUN
than SCONJ
it PRON
lost VERB
through ADP
the DET
mistakes NOUN
they PRON
made VERB
. PUNCT
  SPACE
In ADP
article NOUN
< X
1993Apr14.171230.16138@kestrel.edu NUM
> X
king@reasoning.com X
     SPACE
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes VERB
: PUNCT
> X
  SPACE
[ PUNCT
Somebody PRON
writes VERB
: PUNCT
] PUNCT
> X
> X
I PRON
doubt VERB
if SCONJ
Einstein PROPN
used VERB
any DET
formal ADJ
methodology NOUN
. PUNCT
  SPACE
.... PUNCT
> X
  SPACE
.... PUNCT
> X
He PRON
also ADV
proposed VERB
numerous ADJ
experiments NOUN
which PRON
if SCONJ
performed VERB
would AUX
distinguish VERB
a DET
> X
universe NOUN
in ADP
which PRON
special ADJ
relativity NOUN
holds VERB
from ADP
one NUM
in ADP
which PRON
it PRON
does AUX
not PART
. PUNCT
> X
         SPACE
.... PUNCT
> X
Einstein PROPN
played VERB
by ADP
the DET
rules NOUN
, PUNCT
which PRON
demand VERB
that SCONJ
hypotheses VERB
only ADV
be AUX
put VERB
out ADP
> X
there ADV
if SCONJ
there PRON
exists VERB
a DET
specific ADJ
experiment NOUN
that PRON
could AUX
disprove VERB
them PRON
. PUNCT
These DET
are AUX
not PART
the DET
rules NOUN
according VERB
to ADP
many ADJ
who PRON
post VERB
to ADP
sci.med ADJ
andsci.psychology NOUN
. PUNCT
  SPACE
According VERB
to ADP
these DET
posters NOUN
  SPACE
" PUNCT
If SCONJ
it PRON
's AUX
not PART
supported VERB
bycarefully ADV
designed VERB
controlled VERB
studies NOUN
then ADV
it PRON
's AUX
not PART
science NOUN
. PUNCT
"Taken PUNCT
to ADP
the DET
extreme NOUN
, PUNCT
I PRON
believe VERB
that SCONJ
the DET
attitude NOUN
that SCONJ
empirical ADJ
studies NOUN
are AUX
everything PRON
and CCONJ
ideas NOUN
are AUX
nothing PRON
results NOUN
in ADP
a DET
complete ADJ
stultification NOUN
of ADP
science NOUN
. PUNCT
  SPACE
For ADP
one NUM
thing NOUN
, PUNCT
an DET
insistence NOUN
on ADP
an DET
elaborate ADJ
and CCONJ
expensive ADJ
methodology NOUN
results NOUN
in ADP
a DET
sort NOUN
of ADP
scientific ADJ
trade NOUN
- PUNCT
unionism NOUN
, PUNCT
where ADV
those DET
outside ADP
the DET
establishment NOUN
and CCONJ
lacking VERB
institutional ADJ
or CCONJ
corporate ADJ
support NOUN
have AUX
no DET
chance NOUN
to PART
obtain VERB
a DET
hearing NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
do AUX
n't PART
in ADP
the DET
least ADJ
believe VERB
that SCONJ
this DET
is AUX
the DET
intention NOUN
of ADP
the DET
arbiters NOUN
of ADP
scientific ADJ
methodology NOUN
. PUNCT
  SPACE
Nonetheless ADV
, PUNCT
it PRON
is AUX
one NUM
of ADP
the DET
results NOUN
. PUNCT
) PUNCT
   SPACE
And CCONJ
although SCONJ
institutional ADJ
science NOUN
has AUX
certainly ADV
produced VERB
many ADJ
wonderful ADJ
results NOUN
, PUNCT
I PRON
think VERB
it PRON
is AUX
a DET
foolish ADJ
arrogance NOUN
for ADP
scientists NOUN
to PART
believe VERB
that SCONJ
no DET
one NOUN
outside ADP
the DET
establishment NOUN
--- PUNCT
and CCONJ
using VERB
less ADJ
than SCONJ
perfect ADJ
empirical ADJ
methodology NOUN
--- PUNCT
will AUX
ever ADV
come VERB
with ADP
anything PRON
worthwhile ADJ
. PUNCT
  SPACE
Furthermore ADV
, PUNCT
the DET
big ADJ
bucks NOUN
approach VERB
to ADP
science NOUN
promotes NOUN
what PRON
I PRON
think VERB
isone NOUN
of ADP
the DET
most ADV
significant ADJ
errors NOUN
in ADP
science NOUN
: PUNCT
  SPACE
choosing VERB
to ADP
investigatequestions NOUN
because SCONJ
they PRON
can AUX
be AUX
readily ADV
handled VERB
by ADP
the DET
currentlyfashionable ADJ
methodology NOUN
( PUNCT
or CCONJ
because SCONJ
one PRON
can AUX
readily ADV
get AUX
institutionalor ADJ
corporate ADJ
sponsorship NOUN
for ADP
them PRON
) PUNCT
instead ADV
of ADP
directing VERB
attention NOUN
tothose NOUN
questions NOUN
which PRON
seem VERB
to PART
have AUX
fundamental ADJ
significance NOUN
. PUNCT
For ADP
instance NOUN
, PUNCT
certain ADJ
questions NOUN
can AUX
not PART
be AUX
easily ADV
investigated VERB
withstatistical ADJ
methods NOUN
because SCONJ
the DET
relevant ADJ
factors NOUN
are AUX
not PART
quantitative.(One VERB
could AUX
argue VERB
that SCONJ
this DET
is AUX
the DET
case NOUN
for ADP
almost ADV
all DET
questions NOUN
in ADP
manyareas NOUN
of ADP
psychology NOUN
. PUNCT
  SPACE
In ADP
my PRON
opinion NOUN
, PUNCT
a DET
perusal NOUN
of ADP
many ADJ
of ADP
the DET
papersresulting VERB
from ADP
the DET
attempt NOUN
by ADP
psychologists NOUN
to PART
force VERB
these DET
questionsinto PROPN
a DET
statistical ADJ
framework NOUN
gives VERB
the DET
lie NOUN
to ADP
Russell PROPN
Turpin'sassertion PROPN
that SCONJ
current ADJ
scientific ADJ
methods NOUN
" PUNCT
avoid VERB
all DET
known VERB
errors NOUN
. PUNCT
")I PUNCT
think VERB
that SCONJ
asking VERB
the DET
wrong ADJ
question NOUN
is AUX
probably ADV
the DET
most ADV
fundamental ADJ
error NOUN
in ADP
science NOUN
. PUNCT
  SPACE
( PUNCT
Ignoring VERB
potentially ADV
valuable ADJ
ideas NOUN
is AUX
one NUM
of ADP
the DET
others NOUN
. PUNCT
) PUNCT
  SPACE
And CCONJ
I PRON
think VERB
that SCONJ
scientific ADJ
journals NOUN
are AUX
full ADJ
of ADP
all DET
too ADV
many ADJ
studies NOUN
done VERB
with ADP
impeccable ADJ
empirical ADJ
methods NOUN
but CCONJ
which PRON
are AUX
worthless ADJ
because SCONJ
the DET
wrong ADJ
question NOUN
was AUX
asked VERB
in ADP
the DET
first ADJ
place NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58793From NUM
: PUNCT
johnf@HQ.Ileaf PROPN
. PUNCT
COM PROPN
( PUNCT
John PROPN
Finlayson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Exercise NOUN
and CCONJ
MigraineIn PROPN
article NOUN
< X
1993Apr15.163133.25634@ntmtv NUM
> X
janet@ntmtv.com X
( PUNCT
Janet PROPN
Jakstys PROPN
) PUNCT
writes VERB
: PUNCT
> X
               SPACE
... PUNCT
the DET
other ADJ
day NOUN
I PRON
played VERB
tennis NOUN
during ADP
my PRON
lunch NOUN
> X
hour NOUN
. PUNCT
  SPACE
I PRON
'm AUX
out SCONJ
of ADP
tennis NOUN
shape NOUN
so ADV
it PRON
was AUX
very ADV
intense ADJ
exercise NOUN
. PUNCT
  SPACE
I PRON
> X
got VERB
overheated VERB
, PUNCT
and CCONJ
dehydrated VERB
. PUNCT
  SPACE
Afterwards ADV
, PUNCT
I PRON
noticed VERB
a DET
tingling NOUN
> X
sensation NOUN
all ADV
over ADP
my PRON
head NOUN
then ADV
about ADV
2 NUM
hours NOUN
later ADV
, PUNCT
I PRON
could AUX
feel VERB
> X
a DET
migraine ADJ
start NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
continued VERB
to PART
drink VERB
water NOUN
in ADP
the DET
afternoon.)>I NOUN
took VERB
cafergot VERB
, PUNCT
but CCONJ
it PRON
did AUX
n't PART
help VERB
and CCONJ
the DET
pain NOUN
started VERB
although SCONJ
> X
it PRON
was AUX
n't PART
as ADV
intense ADJ
as SCONJ
it PRON
usually ADV
is AUX
and CCONJ
about ADV
9 NUM
pm NOUN
that DET
night NOUN
, PUNCT
the DET
> X
pain NOUN
subsided.>>This PROPN
is AUX
n't PART
the DET
first ADJ
time NOUN
that PRON
I PRON
've AUX
had VERB
a DET
migraine ADJ
occur NOUN
after ADP
exercise.>I'm PROPN
wondering VERB
if SCONJ
anyone PRON
else ADV
has AUX
had VERB
the DET
same ADJ
experience NOUN
and CCONJ
I PRON
wonder VERB
> X
what PRON
triggers VERB
the DET
migraine NOUN
in ADP
this DET
situation NOUN
( PUNCT
heat NOUN
buildup NOUN
? PUNCT
dehydration?).>I'm ADV
not PART
giving VERB
up ADP
tennis NOUN
so ADV
is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
( PUNCT
besides ADV
get AUX
into ADP
> X
shape NOUN
and CCONJ
do AUX
n't PART
play VERB
at ADP
high ADJ
noon NOUN
) PUNCT
to PART
prevent VERB
this?Hi PROPN
Janet PROPN
, PUNCT
Sounds VERB
exactly ADV
like SCONJ
mine PRON
. PUNCT
  SPACE
Same ADJ
circumstance NOUN
, PUNCT
same ADJ
onset NOUN
symptoms NOUN
, PUNCT
same ADJ
cafergot ADJ
uselessness ADJ
, PUNCT
same ADJ
duration NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
of ADP
all DET
the DET
peopleI PROPN
know VERB
who PRON
have AUX
migraines NOUN
, PUNCT
none NOUN
have AUX
been AUX
so ADV
similar ADJ
. PUNCT
  SPACE
There PRON
is AUX
sucha ADJ
wide ADJ
variation NOUN
between ADP
people NOUN
with ADP
respect NOUN
to ADP
what PRON
causes VERB
theirheadaches NOUN
, PUNCT
that SCONJ
I PRON
generally ADV
do AUX
n't PART
bother VERB
sharing VERB
what PRON
I PRON
've AUX
learnedabout VERB
mine PRON
, PUNCT
but CCONJ
since SCONJ
ours NOUN
seem VERB
to PART
be AUX
alike ADJ
, PUNCT
here ADV
are AUX
my PRON
observations NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
it PRON
's AUX
heat NOUN
, PUNCT
per X
se X
( PUNCT
I PRON
've AUX
had VERB
more ADJ
in ADP
winter NOUN
than SCONJ
summer).Dehydration NOUN
could AUX
conceivably ADV
figure VERB
, PUNCT
though ADV
. PUNCT
  SPACE
Try VERB
tanking VERB
up ADP
beforeplaying VERB
rather ADV
than SCONJ
after ADV
. PUNCT
Being AUX
in ADP
shape NOUN
does AUX
n't PART
seem VERB
to PART
help VERB
me PRON
much ADJ
, PUNCT
either ADV
. PUNCT
I've PROPN
identified VERB
four NUM
factors NOUN
that PRON
do AUX
make VERB
a DET
difference NOUN
( PUNCT
listed VERB
in ADP
descending VERB
order NOUN
of ADP
importance):1 NOUN
) PUNCT
Heavy ADJ
exercise2 NOUN
) PUNCT
Sleep NOUN
deprivation3 NOUN
) PUNCT
Fasting VERB
		 SPACE
( PUNCT
e.g. ADV
, PUNCT
skipped VERB
breakfast)4 PROPN
) PUNCT
Physical ADJ
trauma NOUN
	 SPACE
( PUNCT
e.g. ADV
, PUNCT
head NOUN
bonk)Heavy PROPN
exercise NOUN
has AUX
preceded VERB
all DET
of ADP
my PRON
post ADJ
- ADJ
adolescent ADJ
migraines NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
get AUX
migraines NOUN
after ADP
every DET
heavy ADJ
exercise NOUN
session NOUN
. PUNCT
  SPACE
One NUM
or CCONJ
more ADJ
of ADP
the DET
other ADJ
factors NOUN
* PUNCT
must AUX
* PUNCT
be AUX
present ADJ
( PUNCT
usually ADV
# SYM
2 NUM
) PUNCT
. PUNCT
  SPACE
Since SCONJ
I PRON
discovered VERB
this DET
, PUNCT
I PRON
've AUX
been AUX
nearly ADV
migraine NOUN
- PUNCT
free ADJ
-- PUNCT
relapsing VERB
only ADV
once ADV
every DET
two NUM
or CCONJ
three NUM
years NOUN
when ADV
I PRON
get VERB
cocky ADJ
( PUNCT
" PUNCT
It PRON
's AUX
been AUX
so ADV
long ADV
, PUNCT
maybe ADV
I PRON
just ADV
do AUX
n't PART
get AUX
them PRON
anymore ADV
" PUNCT
) PUNCT
and CCONJ
stop VERB
being AUX
careful ADJ
. PUNCT
Hope PROPN
this DET
is AUX
helpful ADJ
. PUNCT
John PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58794From NUM
: PUNCT
kxgst1+@pitt.edu NOUN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
erythromycinIn X
article NOUN
< X
47974@sdcc12.ucsd.edu NUM
> X
wsun@jeeves.ucsd.edu PROPN
( PUNCT
Fiberman PROPN
) PUNCT
writes::Is PROPN
erythromycin PROPN
effective ADJ
in ADP
treating VERB
pneumonia?::-fmNot PROPN
only ADV
is AUX
it PRON
effective ADJ
, PUNCT
it PRON
is AUX
in ADP
fact NOUN
the DET
drug NOUN
of ADP
choice NOUN
foruncomplicated VERB
cases NOUN
of ADP
community NOUN
- PUNCT
acquired VERB
penumonia.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58795From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Emphysema PROPN
questionIn PROPN
article NOUN
< X
1993Apr15.180621.29465@radford.vak12ed.edu NUM
> X
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich PROPN
) PUNCT
writes::Thanks VERB
for ADP
all DET
your PRON
assistance NOUN
. PUNCT
I PRON
'll AUX
see VERB
if SCONJ
he PRON
can AUX
try VERB
a DET
: PUNCT
different ADJ
brand NOUN
of ADP
patches NOUN
, PUNCT
although SCONJ
he PRON
's AUX
tried VERB
two NUM
brands NOUN
: PUNCT
already ADV
. PUNCT
Are AUX
there PRON
more ADJ
than SCONJ
two?The PROPN
brands NOUN
I PRON
can AUX
come VERB
up ADP
with ADP
off ADP
the DET
top NOUN
of ADP
my PRON
head NOUN
are AUX
Nicotrol PROPN
, PUNCT
Nicoderm PROPN
and CCONJ
Habitrol PROPN
. PUNCT
  SPACE
There PRON
may AUX
be AUX
a DET
fourth ADJ
as SCONJ
well.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58796From NUM
: PUNCT
dmp@fig.citib.com PROPN
( PUNCT
Donna PROPN
M. PROPN
Paino)Subject PROPN
: PUNCT
Psoriatic PROPN
Arthritis PROPN
- PUNCT
Info PROPN
Needed PROPN
Please!A PROPN
friend NOUN
of ADP
mine NOUN
has AUX
been AUX
diagnosed VERB
with ADP
Psoriatic PROPN
Arthritis PROPN
, PUNCT
as SCONJ
a DET
result NOUN
oftrauma NOUN
sustained VERB
in ADP
a DET
car NOUN
accident NOUN
several ADJ
years NOUN
ago ADV
. PUNCT
  SPACE
The DET
psoriasis NOUN
is AUX
undercontrol ADJ
but CCONJ
the DET
arthritis NOUN
part NOUN
of ADP
the DET
illness NOUN
is AUX
not PART
. PUNCT
Ansaid NOUN
( PUNCT
non ADJ
- ADJ
steroidal ADJ
anti ADJ
- ADJ
inflammatory ADJ
) PUNCT
worked VERB
pretty ADV
well ADV
for ADP
three NUM
years NOUN
butisn't VERB
helping VERB
much ADV
now ADV
. PUNCT
  SPACE
My PRON
friend NOUN
is AUX
now ADV
taking VERB
Meclomen PROPN
( PUNCT
another DET
NSAID PROPN
) PUNCT
butthis PROPN
is AUX
n't PART
helping VERB
control VERB
the DET
pain NOUN
at ADV
all ADV
. PUNCT
  SPACE
In ADP
the DET
past ADJ
two NUM
months NOUN
my PRON
friendhas NOUN
also ADV
started VERB
taking VERB
Azulfadine PROPN
along ADP
with ADP
the DET
NSAID PROPN
medicines NOUN
, PUNCT
but CCONJ
theeffects NOUN
of ADP
the DET
combined VERB
drugs NOUN
are AUX
n't PART
supposed VERB
to PART
be AUX
realized VERB
for ADP
several ADJ
months NOUN
. PUNCT
As SCONJ
a DET
result NOUN
of ADP
the DET
pain NOUN
, PUNCT
my PRON
friend NOUN
is AUX
having VERB
problems NOUN
sleeping VERB
. PUNCT
  SPACE
Staying VERB
inone NOUN
position NOUN
too ADV
long ADJ
is AUX
an DET
ordeal NOUN
. PUNCT
  SPACE
Another DET
major ADJ
contributor NOUN
to ADP
pain NOUN
is AUX
thattendonitis PROPN
has AUX
now ADV
developed VERB
( PUNCT
left VERB
thumb NOUN
and CCONJ
hand NOUN
with ADP
numbness NOUN
at ADP
the DET
base NOUN
ofthe PROPN
palm NOUN
; PUNCT
bottom NOUN
of ADP
feet NOUN
; PUNCT
shoulders NOUN
and CCONJ
outer ADJ
thighs NOUN
) PUNCT
. PUNCT
  SPACE
The DET
tendonitis NOUN
isquite VERB
painful ADJ
yet CCONJ
my PRON
friend NOUN
's PART
doctor NOUN
has AUX
not PART
recommended VERB
any DET
form NOUN
of ADP
treatmentto NOUN
relieve VERB
it PRON
. PUNCT
The DET
latest ADJ
twist NOUN
is AUX
that SCONJ
the DET
doctor NOUN
has AUX
dropped VERB
the DET
anti NOUN
- ADJ
inflammatories NOUN
and CCONJ
isnow ADP
recommending VERB
Prednisone PROPN
. PUNCT
  SPACE
The DET
hope NOUN
is AUX
that SCONJ
the DET
Prednisone PROPN
will AUX
relieve VERB
someof NOUN
the DET
pain NOUN
from ADP
the DET
tendonitis NOUN
. PUNCT
My PRON
friend NOUN
is AUX
a DET
41 NUM
year NOUN
old ADJ
male NOUN
who PRON
feels VERB
like SCONJ
he PRON
's AUX
80 NUM
( PUNCT
his PRON
words NOUN
, PUNCT
not PART
mine).If VERB
anyone PRON
is AUX
aware ADJ
of ADP
any DET
new ADJ
treatments NOUN
for ADP
Psoriatic PROPN
Arthritis PROPN
, PUNCT
alternativecourses NOUN
of ADP
action NOUN
, PUNCT
support NOUN
groups NOUN
or CCONJ
literature NOUN
on ADP
it PRON
, PUNCT
I PRON
would AUX
be AUX
extremelygrateful ADJ
if SCONJ
you PRON
could AUX
e NOUN
- NOUN
mail NOUN
to ADP
me PRON
. PUNCT
  SPACE
If SCONJ
anyone PRON
is AUX
interested ADJ
, PUNCT
I PRON
'll AUX
post VERB
asummary ADJ
to ADP
this DET
newsgroup.thanks NOUN
in ADP
advance,Donnadmp@fig.citib.comNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58797From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
erythromycinIn X
article NOUN
< X
47974@sdcc12.ucsd.edu NUM
> X
wsun@jeeves.ucsd.edu PROPN
( PUNCT
Fiberman PROPN
) PUNCT
writes:>Is PROPN
erythromycin VERB
effective ADJ
in ADP
treating VERB
pneumonia?It PROPN
depends VERB
on ADP
the DET
cause NOUN
of ADP
the DET
pneumonia NOUN
. PUNCT
  SPACE
For ADP
treating VERB
bacterialpneumonia NOUN
in ADP
young ADJ
otherwise ADV
- PUNCT
healthy ADJ
non NOUN
- NOUN
smokers NOUN
, PUNCT
erythromycinis PROPN
usually ADV
considered VERB
the DET
antibiotic NOUN
of ADP
choice NOUN
, PUNCT
since SCONJ
it PRON
coversthe NOUN
two NUM
most ADV
- PUNCT
common ADJ
pathogens NOUN
: PUNCT
strep VERB
pneumoniae NOUN
and CCONJ
mycoplasmapneumoniae.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58798From NUM
: PUNCT
slyx0@cc.usu.eduSubject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.190711.22190@walter.bellcore.com NUM
> X
, PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
| ADV
> X
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs NOUN
. PUNCT
> X
| ADV
> X
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in ADP
> X
| CCONJ
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I PRON
'm AUX
> X
| ADV
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
> X
> X
The DET
funny ADJ
thing NOUN
is AUX
the DET
personaly ADJ
stories NOUN
about ADP
reactions NOUN
to ADP
MSG PROPN
vary VERB
so ADV
> X
greatly ADV
. PUNCT
Some DET
said VERB
that SCONJ
their PRON
heart NOUN
beat VERB
speeded VERB
up ADP
with ADP
flush ADJ
face NOUN
. PUNCT
Some DET
> PUNCT
claim VERB
their PRON
heart NOUN
" PUNCT
skipped VERB
" PUNCT
beats NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Some DET
reacted VERB
with ADP
> PROPN
headache PROPN
, PUNCT
some DET
stomach NOUN
ache NOUN
. PUNCT
Some DET
had AUX
watery ADJ
eyes NOUN
or CCONJ
running VERB
nose NOUN
, PUNCT
some DET
> X
had AUX
itchy ADJ
skin NOUN
or CCONJ
rashes NOUN
. PUNCT
More ADV
serious ADJ
accusations NOUN
include VERB
respiration NOUN
> X
difficulty NOUN
and CCONJ
brain NOUN
damage NOUN
. PUNCT
> X
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one NUM
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But CCONJ
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it PRON
. PUNCT
Surprise NOUN
surprise NOUN
, PUNCT
different ADJ
people NOUN
react VERB
differently ADV
to ADP
different ADJ
things NOUN
. PUNCT
Oneslightly ADV
off ADP
the DET
subject ADJ
case NOUN
in ADP
point NOUN
. PUNCT
My PRON
brother NOUN
got VERB
stung VERB
by ADP
a DET
bee NOUN
. PUNCT
I PRON
knowhe VERB
is AUX
allergic ADJ
to ADP
bee PROPN
stings NOUN
, PUNCT
but CCONJ
that SCONJ
his PRON
reaction NOUN
is AUX
severe ADJ
localizedswelling NOUN
, PUNCT
not PART
anaphylactic ADJ
shock NOUN
. PUNCT
I PRON
could AUX
not PART
convince VERB
the DET
doctors NOUN
of ADP
that DET
, PUNCT
however ADV
, PUNCT
because SCONJ
that DET
's AUX
not PART
written VERB
in ADP
their PRON
little ADJ
rule NOUN
book NOUN
. PUNCT
I PRON
would AUX
not PART
be AUX
surprised ADJ
in ADP
the DET
least ADJ
to PART
find VERB
out ADP
the DET
SOME PROPN
people NOUN
have AUX
badreactions NOUN
to ADP
MSG PROPN
, PUNCT
including VERB
headaches NOUN
, PUNCT
stomachaches NOUN
and CCONJ
even ADV
vomiting VERB
. PUNCT
Not PART
thatthe DET
stuff NOUN
is AUX
BAD ADJ
or CCONJ
POISON NOUN
and CCONJ
needs VERB
to PART
be AUX
banned VERB
, PUNCT
but CCONJ
people NOUN
need VERB
to PART
be AUX
awarethat ADP
it PRON
can AUX
have AUX
a DET
bad ADJ
effect NOUN
on ADP
SOME DET
people NOUN
. PUNCT
Lone PROPN
Wolf PROPN
                                      SPACE
Happy PROPN
are AUX
they PRON
who PRON
dream VERB
dreams NOUN
, PUNCT
Ed PROPN
Philips PROPN
                            SPACE
And CCONJ
pay VERB
the DET
price NOUN
to PART
see VERB
them PRON
come VERB
true.slyx0@cc.usu.edu PROPN
                                                                                                            SPACE
-unknown PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58799From NUM
: PUNCT
milsh@nmr-z.mgh.harvard.edu X
( PUNCT
Alex PROPN
Milshteyn)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
C5H74z.9v4@crdnns.crd.ge.com X
> X
meltsner@crd.ge.com X
writes:>>>I NOUN
would AUX
n't PART
call VERB
it PRON
a DET
double ADJ
- PUNCT
blind ADJ
, PUNCT
but CCONJ
one NUM
local ADJ
restaurant NOUN
's PART
soup NOUN
> X
provokes VERB
an DET
impressive ADJ
migraine NOUN
headache NOUN
for ADP
my PRON
wife NOUN
-- PUNCT
that SCONJ
one NOUN
> X
take VERB
- PUNCT
out NOUN
and CCONJ
no DET
other ADJ
... PUNCT
Nothing PRON
unisual ADJ
. PUNCT
Quote:"Chinese ADJ
Restaurant PROPN
Syndrome PROPN
( PUNCT
CRS):a PROPN
transient ADJ
syndrome NOUN
, PUNCT
associated VERB
with ADP
arterial ADJ
dilatation NOUN
, PUNCT
due ADP
to ADP
ingestionof PROPN
monosodium PROPN
glutamate PROPN
, PUNCT
which PRON
is AUX
used VERB
liberally ADV
in ADP
seasoning VERB
chinesefood NOUN
; PUNCT
it PRON
is AUX
characterized VERB
by ADP
throbbing NOUN
of ADP
the DET
head NOUN
, PUNCT
lightheadedness NOUN
, PUNCT
tightness NOUN
of ADP
the DET
jaw NOUN
, PUNCT
neck NOUN
and CCONJ
shoulders NOUN
, PUNCT
and CCONJ
bachache PROPN
. PUNCT
"End PUNCT
quote INTJ
. PUNCT
Source NOUN
: PUNCT
Dorland PROPN
's PART
Illustrated PROPN
Medical PROPN
Dictionary PROPN
, PUNCT
27th ADJ
edition NOUN
, PUNCT
1988 NUM
, PUNCT
W.B. PROPN
Saunders PROPN
, PUNCT
p NOUN
1632.This NOUN
was AUX
known VERB
long ADV
ago ADV
. PUNCT
  SPACE
Brain PROPN
produces VERB
and CCONJ
uses VERB
some DET
MSG NOUN
naturally ADV
, PUNCT
but CCONJ
not PART
in ADP
doses NOUN
it PRON
is AUX
served VERB
at ADP
some DET
chinese ADJ
places NOUN
. PUNCT
Having VERB
said VERB
that DET
, PUNCT
i PRON
might AUX
add VERB
, PUNCT
that SCONJ
in ADP
MHO PROPN
, PUNCT
MSG PROPN
does AUX
not PART
enhanceflavor VERB
enoughf VERB
for ADP
me PRON
to PART
miss VERB
it PRON
. PUNCT
  SPACE
When ADV
I PRON
go VERB
to ADP
chinese ADJ
places NOUN
, PUNCT
I PRON
order VERB
food NOUN
without ADP
MSG PROPN
. PUNCT
  SPACE
Goos PROPN
places NOUN
will AUX
do AUX
it PRON
for ADP
you PRON
. PUNCT
A DET
prerequisite NOUN
for ADP
such DET
a DET
service NOUN
would AUX
be AUX
a DET
waiter NOUN
, PUNCT
capable ADJ
ofunderstanding NOUN
, PUNCT
what PRON
you PRON
want VERB
. PUNCT
Good ADJ
Luck.am-- PROPN
Alexander PROPN
M. PROPN
Milshteyn PROPN
M.D. PROPN
   SPACE
< X
milsh@cipr-server.mgh.harvard.edu>CIPR PROPN
, PUNCT
MGH PROPN
in ADP
Boston PROPN
, PUNCT
MA PROPN
. PUNCT
     SPACE
( PUNCT
617)724 NUM
- PUNCT
9507 NUM
Vox PROPN
  SPACE
( PUNCT
617)726 NUM
- PUNCT
7830 NUM
FaxNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58800From NUM
: PUNCT
neal@cmptrc.lonestar.org PROPN
( PUNCT
Neal PROPN
Howard)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes:>>What ADP
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene NOUN
rings NOUN
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic PROPN
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of ADP
> X
hypothesizing NOUN
. PUNCT
I PRON
sometimes ADV
wonder VERB
if SCONJ
Kekule PROPN
's PART
dream NOUN
was AUX
n't PART
just ADV
a DET
wee ADJ
bit NOUN
influenced VERB
byaromatic ADJ
solvent NOUN
vapors NOUN
;-) PUNCT
heh PROPN
heh.-- NUM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
Neal PROPN
Howard PROPN
   SPACE
' PART
91 NUM
XLH-1200 PROPN
      SPACE
DoD PROPN
# SYM
686 NUM
      SPACE
CompuTrac PROPN
, PUNCT
Inc PROPN
( PUNCT
Richardson PROPN
, PUNCT
TX PROPN
) PUNCT
	       SPACE
doh VERB
# SYM
0000001200 NUM
   SPACE
|355o33| PROPN
      SPACE
neal@cmptrc.lonestar.org PROPN
	       SPACE
Std PROPN
disclaimer NOUN
: PUNCT
My PRON
opinions NOUN
are AUX
mine ADJ
, PUNCT
not PART
CompuTrac PROPN
's PART
. PUNCT
         SPACE
" PUNCT
Let VERB
us PRON
learn VERB
to PART
dream VERB
, PUNCT
gentlemen NOUN
, PUNCT
and CCONJ
then ADV
perhaps ADV
          SPACE
we PRON
shall AUX
learn VERB
the DET
truth NOUN
. PUNCT
" PUNCT
-- PUNCT
August PROPN
Kekule PROPN
' PUNCT
( PUNCT
1890)=============================================================================Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58801From NUM
: PUNCT
dwebb@unl.edu NUM
( PUNCT
dale PROPN
webb)Subject PROPN
: PUNCT
Re ADP
: PUNCT
THE DET
BACK ADJ
MACHINE PROPN
- PUNCT
Update NOUN
   SPACE
I PRON
have AUX
a DET
BACK ADJ
MACHINE NOUN
and CCONJ
have AUX
had VERB
one NUM
since SCONJ
January PROPN
. PUNCT
  SPACE
While SCONJ
I PRON
have AUX
not PART
found VERB
it PRON
to PART
be AUX
a DET
panacea NOUN
for ADP
my PRON
back NOUN
pain NOUN
, PUNCT
I PRON
think VERB
it PRON
has AUX
helped VERB
somewhat ADV
. PUNCT
It PRON
MAINLY VERB
acts VERB
to PART
stretch VERB
muscles NOUN
in ADP
the DET
back NOUN
and CCONJ
prevent VERB
spasms PROPN
associatedwith PROPN
pain PROPN
. PUNCT
  SPACE
I PRON
am AUX
taking VERB
less ADJ
pain NOUN
medication NOUN
than SCONJ
I PRON
was AUX
previously ADV
. PUNCT
     SPACE
The DET
folks NOUN
at ADP
BACK PROPN
TECHNOLOGIES NOUN
are AUX
VERY ADV
reluctant ADJ
to PART
honor VERB
their PRON
return NOUN
policy NOUN
. PUNCT
  SPACE
They PRON
extended VERB
my PRON
" PUNCT
warranty NOUN
" PUNCT
period NOUN
rather ADV
than SCONJ
allow VERB
me PRON
to PART
return VERB
the DET
machine NOUN
when ADV
, PUNCT
after ADP
the DET
first ADJ
month NOUN
or CCONJ
so ADV
, PUNCT
I PRON
was AUX
not PART
thrilled VERB
with ADP
it PRON
. PUNCT
They PRON
encouraged VERB
me PRON
to PART
continue VERB
to PART
use VERB
it PRON
, PUNCT
abeit ADV
less ADV
vigourously ADV
. PUNCT
    SPACE
Like INTJ
I PRON
said VERB
, PUNCT
I PRON
ca AUX
n't PART
say VERB
it PRON
is AUX
a DET
cure NOUN
- PUNCT
all DET
, PUNCT
but CCONJ
it PRON
keeps VERB
me PRON
stretched VERB
outand NOUN
I PRON
am AUX
in ADP
less ADJ
pain.--***********************************************************************Dale VERB
M. PROPN
Webb PROPN
, PUNCT
DVM PROPN
, PUNCT
PhD NOUN
           SPACE
* PUNCT
  SPACE
97 NUM
% NOUN
of ADP
the DET
body NOUN
is AUX
water NOUN
. PUNCT
  SPACE
TheVeterinary PROPN
Diagnostic PROPN
Center PROPN
     SPACE
* PUNCT
  SPACE
other ADJ
3 NUM
% NOUN
keeps VERB
you PRON
from ADP
drowning VERB
. PUNCT
University PROPN
of ADP
Nebraska PROPN
, PUNCT
Lincoln PROPN
  SPACE
* PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58802From NUM
: PUNCT
rjf@lzsc.lincroftnj.ncr.com PROPN
( PUNCT
51351[efw]-Robert NUM
Feddeler(MT4799)T343)Subject PROPN
: PUNCT
Re ADP
: PUNCT
centrifugeMr PROPN
. PUNCT
Blue PROPN
( PUNCT
car@access.digex.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Could AUX
somebody PRON
explain VERB
to ADP
me PRON
what PRON
a DET
centrifuge NOUN
is AUX
and CCONJ
what PRON
it PRON
is AUX
: PUNCT
used VERB
for ADP
? PUNCT
I PRON
vaguely ADV
remembre VERB
it PRON
being AUX
something PRON
that PRON
spins VERB
test NOUN
tubes NOUN
: PUNCT
around ADP
really ADV
fast ADV
but CCONJ
I PRON
ca AUX
nt PART
remember VERB
why ADV
you PRON
d AUX
want VERB
to PART
do AUX
that?Purely ADV
recreational ADJ
. PUNCT
  SPACE
They PRON
get VERB
bored ADJ
sitting NOUN
in ADP
thatrack NOUN
all DET
the DET
time.--bob NOUN
. PUNCT
					    SPACE
| INTJ
I PRON
only ADV
smile VERB
when ADV
I PRON
lie VERB
, PUNCT
You PRON
can AUX
learn VERB
more ADJ
in ADP
a DET
bar NOUN
		    SPACE
| PROPN
And CCONJ
I PRON
'll AUX
tell VERB
you PRON
why ADV
... PUNCT
	 SPACE
than SCONJ
you PRON
can AUX
in ADP
a DET
lawyer NOUN
's PART
office NOUN
. PUNCT
|Were DET
these DET
more ADV
than SCONJ
just ADV
my PRON
opinions NOUN
, PUNCT
they PRON
would AUX
have AUX
cost VERB
a DET
bit NOUN
more ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58803From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1qk6v3INNrm6@lynx.unm.edu NUM
> X
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
writes:>>Gordon PROPN
Banks:>>>a PROPN
lot NOUN
to PART
keep VERB
from ADP
going VERB
back ADV
to ADP
morbid PROPN
obesity NOUN
. PUNCT
  SPACE
I PRON
think VERB
all>>of PROPN
us PROPN
cycle NOUN
. PUNCT
  SPACE
One NOUN
's PART
success NOUN
depends VERB
on ADP
how ADV
large ADJ
the DET
fluctuations>>in NOUN
the DET
cycle NOUN
are AUX
. PUNCT
  SPACE
Some DET
people NOUN
can AUX
cycle VERB
only ADV
5 NUM
pounds NOUN
. PUNCT
  SPACE
Unfortunately,>>I'm ADP
not PART
one NUM
of ADP
them.>>>>>This DET
certainly ADV
describes VERB
my PRON
situation NOUN
perfectly ADV
. PUNCT
For ADP
me PRON
there PRON
is AUX
> X
a DET
constant ADJ
dynamic NOUN
between ADP
my PRON
tendency NOUN
to PART
eat VERB
, PUNCT
which PRON
appears VERB
to PART
> X
be AUX
totally ADV
limitless ADJ
, PUNCT
and CCONJ
the DET
purely ADV
conscious ADJ
desire NOUN
to PART
not PART
> X
put VERB
on ADP
too ADV
much ADJ
weight NOUN
. PUNCT
When ADV
I PRON
get VERB
too ADV
fat ADJ
, PUNCT
I PRON
just ADV
diet VERB
/ SYM
exercise NOUN
> X
more ADJ
( PUNCT
with ADP
varying VERB
degrees NOUN
of ADP
success NOUN
) PUNCT
to PART
take VERB
off ADP
the DET
> X
extra ADJ
weight NOUN
. PUNCT
Usually ADV
I PRON
cycle VERB
within ADP
a DET
15 NUM
lb NOUN
range NOUN
, PUNCT
but CCONJ
> X
smaller ADJ
and CCONJ
larger ADJ
cycles NOUN
occur VERB
as ADV
well ADV
. PUNCT
I PRON
'm AUX
always ADV
afraid ADJ
> X
that SCONJ
this DET
method NOUN
will AUX
stop VERB
working VERB
someday ADV
, PUNCT
but CCONJ
usually ADV
> X
I PRON
seem VERB
to PART
be AUX
able ADJ
to PART
hold VERB
the DET
weight NOUN
gain NOUN
in ADP
check.>This PROPN
is AUX
one NUM
reason NOUN
I PRON
have AUX
a DET
hard ADJ
time NOUN
accepting VERB
the DET
notion NOUN
> X
of ADP
some DET
metabolic ADJ
derangement NOUN
associated VERB
with ADP
cycle NOUN
dieting>(that ADP
results NOUN
in ADP
long ADJ
- PUNCT
term NOUN
weight NOUN
gain NOUN
) PUNCT
. PUNCT
I PRON
have AUX
been AUX
cycle->dieting VERB
for ADP
at ADV
least ADV
20 NUM
years NOUN
without ADP
seeing VERB
such DET
a DET
change NOUN
. PUNCT
As SCONJ
mentioned VERB
in ADP
Adiposity NOUN
101 NUM
, PUNCT
only ADV
some DET
experience NOUN
weightrebound NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
you PRON
do AUX
n't PART
does AUX
n't PART
prove VERB
it PRON
doesn'thappen PUNCT
to ADP
others.-- ADJ
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58804From NUM
: PUNCT
smithmc@mentor.cc.purdue.edu NUM
( PUNCT
Lost VERB
Boy)Subject X
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?In PROPN
article NOUN
< X
noringC5Fnx2.2v2@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
Tammy.Vandenboom@launchpad.unc.edu NUM
( PUNCT
Tammy PROPN
Vandenboom PROPN
) PUNCT
writes:>>>Here PROPN
's AUX
a DET
potentially ADV
stupid ADJ
question NOUN
to ADP
possibly ADV
the DET
wrong PROPN
news NOUN
group NOUN
, PUNCT
but CCONJ
. PUNCT
.>>>>Can PUNCT
men NOUN
get VERB
yeast NOUN
infections NOUN
? PUNCT
Spread VERB
them PRON
? PUNCT
What PRON
kind NOUN
of ADV
symptoms?>>Similar ADJ
as SCONJ
women NOUN
's PART
? PUNCT
  SPACE
I PRON
have AUX
a DET
yeast NOUN
infection NOUN
and CCONJ
my PRON
husband NOUN
( PUNCT
who PRON
is AUX
a>>natural ADJ
paranoid NOUN
on ADP
a DET
good ADJ
day NOUN
) PUNCT
is AUX
sure ADJ
he PRON
's AUX
gon VERB
na PART
catch VERB
it PRON
and CCONJ
keeps>>asking VERB
me PRON
what PRON
it PRON
's AUX
like SCONJ
. PUNCT
  SPACE
I PRON
'm AUX
not PART
sure ADJ
what PRON
his PRON
symptoms NOUN
would AUX
be AUX
. PUNCT
. PUNCT
> X
> X
The DET
answer NOUN
is AUX
yes INTJ
and CCONJ
no INTJ
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
others NOUN
on ADP
sci.med VERB
can AUX
expand VERB
on ADP
this.>>JonI DET
know VERB
from ADP
personal ADJ
experience NOUN
that PRON
men NOUN
CAN AUX
get AUX
yeast NOUN
infections NOUN
. PUNCT
I PRON
get VERB
rather ADV
nasty ADJ
ones NOUN
from ADP
time NOUN
to ADP
time NOUN
, PUNCT
mostly ADV
in ADP
the DET
area NOUN
of ADP
thescrotum NOUN
and CCONJ
the DET
base NOUN
of ADP
the DET
penis NOUN
. PUNCT
They PRON
're AUX
nowhere ADV
near ADV
as SCONJ
dangerousfor NOUN
me PRON
as SCONJ
for ADP
many ADJ
women NOUN
, PUNCT
but CCONJ
goddamn NOUN
does AUX
it PRON
hurt VERB
in ADP
the DET
summertime!Even PROPN
in ADP
the DET
wintertime NOUN
, PUNCT
when ADV
I PRON
sweat VERB
I PRON
get VERB
really ADV
uncomfy ADJ
down ADP
there ADV
. PUNCT
Thebest NOUN
thing NOUN
I PRON
can AUX
do AUX
to PART
keep VERB
it PRON
under ADP
control NOUN
is AUX
keep VERB
my PRON
weight NOUN
down ADP
andkeep ADV
cool ADJ
down ADV
there ADV
. PUNCT
Shorts NOUN
in ADP
60 NUM
degree NOUN
weather NOUN
, PUNCT
that DET
kind NOUN
of ADP
thing NOUN
. PUNCT
Andof ADJ
course NOUN
some DET
occasional ADJ
sun NOUN
. PUNCT
Lost ADJ
BoyNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58805From NUM
: PUNCT
black@sybase.com X
( PUNCT
Chris PROPN
Black)Subject PROPN
: PUNCT
cystic ADJ
breast NOUN
diseaseMy PROPN
mom NOUN
has AUX
just ADV
been AUX
diagnosed VERB
with ADP
cystic ADJ
breast NOUN
disease NOUN
-- PUNCT
a DET
bigrelief NOUN
, PUNCT
as SCONJ
it PRON
was AUX
a DET
lump NOUN
that PRON
could AUX
have AUX
been AUX
cancer NOUN
. PUNCT
  SPACE
Her PRON
doctor NOUN
saysshe NOUN
should AUX
go VERB
off ADP
caffeine NOUN
and CCONJ
chocolate VERB
for ADP
6 NUM
months NOUN
, PUNCT
as ADV
well ADV
asstopping VERB
the DET
estrogen PROPN
she PRON
's AUX
been AUX
taking VERB
for ADP
menopause NOUN
- PUNCT
related VERB
reasons NOUN
. PUNCT
She PRON
's AUX
not PART
thrilled VERB
with ADP
this DET
, PUNCT
I PRON
think VERB
especially ADV
because SCONJ
she PRON
just ADV
gaveup VERB
cigarettes NOUN
-- PUNCT
soon ADV
she PRON
wo AUX
n't PART
have AUX
any DET
pleasures NOUN
left VERB
! PUNCT
  SPACE
Now ADV
, PUNCT
I PRON
thoughtI'd ADV
heard VERB
that SCONJ
cystic ADJ
breasts NOUN
were AUX
common ADJ
and CCONJ
not PART
really ADV
a DET
health NOUN
risk NOUN
. PUNCT
Is AUX
this DET
accurate ADJ
? PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
why ADV
is AUX
she PRON
being AUX
told VERB
to PART
make VERB
varioussacrifices NOUN
to PART
treat VERB
something PRON
that PRON
's AUX
not PART
that ADV
big ADJ
of ADP
a DET
deal?Thanks NOUN
for ADP
any DET
information.-- PROPN
Chris-- PROPN
black@sybase.comNote PUNCT
: PUNCT
  SPACE
My PRON
mailer NOUN
tends VERB
to PART
garble ADJ
subject ADJ
lines NOUN
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58806From NUM
: PUNCT
naomi@rock.concert.net PROPN
( PUNCT
Naomi PROPN
T NOUN
Courter)Subject NOUN
: PUNCT
Endometriosiscan ADJ
anyone PRON
give VERB
me PRON
more ADJ
information NOUN
regarding VERB
endometriosis NOUN
? PUNCT
   SPACE
i PRON
heardit VERB
's AUX
a DET
very ADV
common ADJ
disease NOUN
among ADP
women NOUN
and CCONJ
if SCONJ
anyone PRON
can AUX
provide VERB
namesof PROPN
a DET
specialist NOUN
/ SYM
surgeon NOUN
in ADP
  SPACE
the DET
north PROPN
carolina PROPN
research NOUN
triangle PROPN
  SPACE
parkarea PROPN
( PUNCT
raleigh PROPN
/ SYM
durham PROPN
/ SYM
chapel PROPN
  SPACE
hill PROPN
) PUNCT
who PRON
is AUX
familiar ADJ
with ADP
the DET
condition NOUN
, PUNCT
i PRON
would AUX
really ADV
appreciate VERB
it.thanks NOUN
. PUNCT
--Naomi-- PROPN
Naomi PROPN
L.T. PROPN
CourterNetwork PROPN
Services PROPN
SpecialistMCNC PROPN
- PUNCT
Center PROPN
for ADP
CommunicationsCONCERT PROPN
Network PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58807From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Migraines NOUN
and CCONJ
scans[reply NOUN
to ADP
geb@cs.pitt.edu VERB
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
] PUNCT
> X
> X
If SCONJ
you PRON
can AUX
get AUX
away ADV
without ADP
ever ADV
ordering VERB
imaging VERB
for ADP
a DET
patient ADJ
with>>an NOUN
obviously ADV
benign ADJ
headache NOUN
syndrome NOUN
, PUNCT
I PRON
'd AUX
like VERB
to PART
hear VERB
what PRON
your PRON
magic>>is NOUN
. PUNCT
> X
I PRON
certainly ADV
ca AUX
n't PART
always ADV
avoid VERB
it PRON
( PUNCT
unless SCONJ
I PRON
want VERB
to PART
be AUX
rude ADJ
, PUNCT
I PRON
suppose VERB
) PUNCT
. PUNCT
I PRON
made VERB
a DET
decision NOUN
a DET
while NOUN
back ADV
that SCONJ
I PRON
will AUX
not PART
be AUX
bullied VERB
into ADP
gettingstudies NOUN
like SCONJ
a DET
CT PROPN
or CCONJ
MRI PROPN
when ADV
I PRON
do AUX
n't PART
think VERB
they PRON
are AUX
indicated VERB
. PUNCT
  SPACE
If SCONJ
thepatient ADJ
wo AUX
n't PART
accept VERB
my PRON
explanation NOUN
of ADP
why ADV
I PRON
think VERB
the DET
study NOUN
would AUX
be AUX
awaste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
, PUNCT
I PRON
suggest VERB
a DET
second ADJ
opinion NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58808From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
klonopin NOUN
and CCONJ
pregnancyA PROPN
( PUNCT
> X
From ADP
: PUNCT
adwright@iastate.edu X
( PUNCT
) PUNCT
A NOUN
( PUNCT
> X
A DET
woman NOUN
I PRON
know VERB
is AUX
tapering VERB
off ADP
klonopin NOUN
. PUNCT
I PRON
believe VERB
that DET
is AUX
one NUM
of ADP
theA NOUN
( PUNCT
> X
benzodiazopines NOUN
. PUNCT
She PRON
is AUX
taking VERB
a DET
very ADV
minimal ADJ
dose NOUN
right ADV
now ADV
, PUNCT
half DET
a DET
tabletA PROPN
( PUNCT
> X
a DET
day NOUN
. PUNCT
She PRON
is AUX
also ADV
pregnant ADJ
. PUNCT
My PRON
question NOUN
is AUX
Are AUX
there PRON
any DET
known VERB
cases NOUN
whereA PROPN
( PUNCT
> X
klonopin NOUN
or CCONJ
similar ADJ
drug NOUN
has AUX
caused VERB
harmful ADJ
effects NOUN
to ADP
the DET
fetus?A PROPN
( PUNCT
> X
  SPACE
How ADV
about ADP
cases NOUN
where ADV
the DET
mother NOUN
took VERB
klonopin NOUN
or CCONJ
similar ADJ
substance NOUN
and CCONJ
hadA PROPN
( PUNCT
> X
normal ADJ
baby NOUN
. PUNCT
Any DET
information NOUN
is AUX
appreciated VERB
. PUNCT
She PRON
wants VERB
to PART
get AUX
a DET
feel NOUN
forA NOUN
( PUNCT
> X
what PRON
sort NOUN
of ADP
risk NOUN
she PRON
is AUX
taking VERB
. PUNCT
She PRON
is AUX
in ADP
her PRON
first ADJ
month NOUN
of ADP
pregnancy NOUN
. PUNCT
Klonopin PROPN
, PUNCT
according VERB
to ADP
the DET
PDR PROPN
( PUNCT
Physician PROPN
's PART
Desk PROPN
Reference PROPN
) PUNCT
, PUNCT
is AUX
not PART
aproven VERB
teratogen NOUN
. PUNCT
  SPACE
There PRON
are AUX
isolated VERB
case NOUN
reports NOUN
of ADP
malformations NOUN
, PUNCT
but CCONJ
it PRON
is AUX
impossible ADJ
to PART
establish VERB
cause NOUN
- PUNCT
effect NOUN
relationships NOUN
. PUNCT
  SPACE
Theoverwhelming VERB
majority NOUN
of ADP
women NOUN
that PRON
take VERB
Klonopin PROPN
while SCONJ
pregnant ADJ
havenormal PROPN
babies.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                               SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58809From NUM
: PUNCT
C599143@mizzou1.missouri.edu PROPN
( PUNCT
Matthew PROPN
Q PROPN
Keeler PROPN
de X
la PROPN
Mancha)Subject NUM
: PUNCT
Infant NOUN
Immune PROPN
Development PROPN
QuestionAs PROPN
an DET
animal NOUN
science NOUN
student NOUN
, PUNCT
I PRON
know VERB
that SCONJ
a DET
number NOUN
of ADP
animals NOUN
transferimmunoglobin ADV
to ADP
thier ADJ
young ADJ
through ADP
thier PRON
milk NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
a DET
calf NOUN
_ NOUN
must_have VERB
a DET
sufficient ADJ
amount NOUN
of ADP
colostrum NOUN
( PUNCT
early ADJ
milk NOUN
) PUNCT
within ADP
12 NUM
hours NOUN
toeffectively ADV
develop VERB
the DET
immune ADJ
system NOUN
, PUNCT
since SCONJ
for ADP
the DET
first ADJ
( PUNCT
less ADJ
than)24 ADJ
hours NOUN
the DET
intestines NOUN
are AUX
" PUNCT
open ADJ
" PUNCT
to ADP
the DET
IG PROPN
passage NOUN
. PUNCT
  SPACE
My PRON
question NOUN
is AUX
, PUNCT
does AUX
this DET
apply VERB
to ADP
human ADJ
infants NOUN
to ADP
any DET
degree NOUN
? PUNCT
Thanks NOUN
for ADP
your PRON
time NOUN
responding VERB
, PUNCT
Matthew PROPN
Keelerc599143@mizzou1.missouri.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58810From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.173902.66278@cc.usu.edu PROPN
> X
, PUNCT
slyx0@cc.usu.edu ADV
writes:=Surprise NOUN
surprise NOUN
, PUNCT
different ADJ
people NOUN
react VERB
differently ADV
to ADP
different ADJ
things NOUN
. PUNCT
One NUM
= SYM
slightly ADV
off ADP
the DET
subject ADJ
case NOUN
in ADP
point NOUN
. PUNCT
My PRON
brother NOUN
got VERB
stung VERB
by ADP
a DET
bee NOUN
. PUNCT
I PRON
know VERB
= PUNCT
he PRON
is AUX
allergic ADJ
to ADP
bee PROPN
stings NOUN
, PUNCT
but CCONJ
that SCONJ
his PRON
reaction NOUN
is AUX
severe ADJ
localized ADJ
= SYM
swelling VERB
, PUNCT
not PART
anaphylactic ADJ
shock NOUN
. PUNCT
I PRON
could AUX
not PART
convince VERB
the DET
doctors NOUN
of ADP
that,=however PROPN
, PUNCT
because SCONJ
that DET
's AUX
not PART
written VERB
in ADP
their PRON
little ADJ
rule NOUN
book NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
bee PROPN
venom PROPN
is AUX
n't PART
a DET
single ADJ
chemical NOUN
. PUNCT
  SPACE
Could AUX
be AUX
your PRON
brother NOUN
isreacting VERB
to ADP
a DET
different ADJ
component NOUN
than SCONJ
the DET
one NOUN
that PRON
causes VERB
anaphylactic ADJ
shockin NOUN
other ADJ
people NOUN
. PUNCT
Similarly ADV
, PUNCT
Chinese ADJ
food NOUN
is AUX
n't PART
just ADV
MSG PROPN
. PUNCT
  SPACE
There PRON
are AUX
a DET
lot NOUN
of ADP
other ADJ
ingredientsin NOUN
it PRON
. PUNCT
  SPACE
Why ADV
, PUNCT
when ADV
someone PRON
eats VERB
something PRON
with ADP
lots NOUN
of ADP
ingredients NOUN
they PRON
don'tnormally ADV
consume VERB
, PUNCT
one NUM
of ADP
which PRON
happens VERB
to PART
be AUX
MSG PROPN
, PUNCT
do AUX
they PRON
immediately ADV
concludethat VERB
any DET
negative ADJ
reaction NOUN
is AUX
to ADP
the DET
MSG?=I NOUN
would AUX
not PART
be AUX
surprised ADJ
in ADP
the DET
least ADJ
to PART
find VERB
out ADP
the DET
SOME PROPN
people NOUN
have AUX
bad ADJ
= X
reactions NOUN
to ADP
MSG PROPN
, PUNCT
including VERB
headaches NOUN
, PUNCT
stomachaches NOUN
and CCONJ
even ADV
vomiting VERB
. PUNCT
I'd NOUN
be AUX
surprised ADJ
if SCONJ
some DET
of ADP
these DET
reactions NOUN
were AUX
n't PART
due ADJ
to ADP
other ADJ
ingredients.--------------------------------------------------------------------------------Carl ADP
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58811From NUM
: PUNCT
texx@ossi.com X
( PUNCT
Robert PROPN
" PUNCT
Texx PROPN
" PUNCT
Woodworth)Subject VERB
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?noring@netcom.com PROPN
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
Tammy.Vandenboom@launchpad.unc.edu NUM
( PUNCT
Tammy PROPN
Vandenboom PROPN
) PUNCT
writes:>>Here PROPN
's AUX
a DET
potentially ADV
stupid ADJ
question NOUN
to ADP
possibly ADV
the DET
wrong PROPN
news NOUN
group NOUN
, PUNCT
but CCONJ
. PUNCT
.>>>>Can PUNCT
men NOUN
get VERB
yeast NOUN
infections NOUN
? PUNCT
Spread VERB
them PRON
? PUNCT
What PRON
kind NOUN
of ADV
symptoms?>>Similar ADJ
as SCONJ
women NOUN
's PART
? PUNCT
  SPACE
I PRON
have AUX
a DET
yeast NOUN
infection NOUN
and CCONJ
my PRON
husband NOUN
( PUNCT
who PRON
is AUX
a>>natural ADJ
paranoid NOUN
on ADP
a DET
good ADJ
day NOUN
) PUNCT
is AUX
sure ADJ
he PRON
's AUX
gon VERB
na PART
catch VERB
it PRON
and CCONJ
keeps>>asking VERB
me PRON
what PRON
it PRON
's AUX
like SCONJ
. PUNCT
  SPACE
I PRON
'm AUX
not PART
sure ADJ
what PRON
his PRON
symptoms NOUN
would AUX
be AUX
. PUNCT
. PUNCT
> X
The DET
answer NOUN
is AUX
yes INTJ
and CCONJ
no INTJ
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
others NOUN
on ADP
sci.med VERB
can AUX
expand VERB
on ADP
this DET
. PUNCT
Recently ADV
someone PRON
posted VERB
an DET
account NOUN
of ADP
this DET
. PUNCT
Unfortunately ADV
it PRON
was AUX
posted VERB
to ADP
alt.tasteless ADV
so ADV
the DET
gross ADJ
details NOUN
were AUX
emphasizedinstead ADJ
of ADP
th ADP
e PROPN
actual ADJ
scientific ADJ
facts NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58812From NUM
: PUNCT
dfitts@carson.u.washington.edu PROPN
( PUNCT
Douglas PROPN
Fitts)Subject PROPN
: PUNCT
Re ADP
: PUNCT
RA NOUN
treatment NOUN
questioneulenbrg@carson.u.washington.edu PROPN
( PUNCT
Julia PROPN
Eulenberg PROPN
) PUNCT
writes:>I'm PROPN
assuming VERB
that SCONJ
you PRON
mean VERB
Rheumatoid PROPN
Arthritis PROPN
( PUNCT
RA PROPN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
never ADV
heard VERB
> X
of ADP
the DET
" PUNCT
cold ADJ
treatment NOUN
" PUNCT
you PRON
mentioned VERB
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
imagine VERB
how ADV
it PRON
would AUX
> X
work VERB
, PUNCT
since SCONJ
most ADJ
of ADP
us PRON
who PRON
have AUX
Rh PROPN
. PUNCT
Arthr./RA PROPN
seem VERB
to PART
have AUX
more ADJ
problems NOUN
> X
in ADP
cold ADJ
weather NOUN
than SCONJ
in ADP
warm ADJ
weather NOUN
. PUNCT
  SPACE
Would AUX
be AUX
interested ADJ
to PART
hear VERB
more!>Z PROPN
> X
ZNo NOUN
, PUNCT
obviously ADV
talking VERB
about ADP
Research PROPN
Assistants PROPN
. PUNCT
  SPACE
I PRON
favor VERB
a DET
high ADJ
protein NOUN
, PUNCT
low ADJ
fat NOUN
diet NOUN
, PUNCT
barely ADV
adequate ADJ
salary NOUN
on ADP
a DET
fixed VERB
time NOUN
schedule NOUN
, PUNCT
four NUM
hoursof NOUN
sleep NOUN
a DET
night NOUN
, PUNCT
continuous ADJ
infusion NOUN
of ADP
latte NOUN
, PUNCT
unpredictable ADJ
praise NOUN
mixed VERB
randomly ADV
with ADP
anxiety NOUN
- PUNCT
provoking VERB
, PUNCT
everpresent NOUN
glances NOUN
with ADP
lowered VERB
eyebrows NOUN
, PUNCT
unrealistic ADJ
promises NOUN
of ADP
rapid ADJ
publication NOUN
, PUNCT
and CCONJ
every DET
three NUM
months NOUN
a DET
dinner NOUN
consisting VERB
of ADP
nothing PRON
but SCONJ
microbrewery NOUN
aleand CCONJ
free ADJ
pretzels NOUN
. PUNCT
  SPACE
Actually ADV
, PUNCT
mine NOUN
hails NOUN
from ADP
San PROPN
Diego PROPN
, PUNCT
and CCONJ
indeed ADV
has AUX
more ADJ
problems NOUN
in ADP
Seattle PROPN
in ADP
cold ADJ
weather NOUN
than SCONJ
in ADP
warm ADJ
. PUNCT
Doug PROPN
Fittsdfitts@u.washington.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58813From NUM
: PUNCT
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field))Subject PROPN
: PUNCT
Ca AUX
n't PART
wear VERB
contacts NOUN
after ADP
RK PROPN
/ SYM
PRK?I NOUN
love VERB
the DET
FAQ PROPN
. PUNCT
       SPACE
The DET
comment NOUN
about ADP
contact NOUN
lenses NOUN
not PART
being AUX
an DET
option NOUN
for ADP
any DET
remainingcorrection NOUN
after ADP
RK PROPN
and CCONJ
possibly ADV
after ADP
PRK PROPN
is AUX
interresting VERB
. PUNCT
  SPACE
Why ADV
isthis DET
? PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
for ADP
sure ADJ
whether SCONJ
this DET
applies VERB
to ADP
PRK PROPN
as SCONJ
well?Also PROPN
, PUNCT
why ADV
is AUX
it PRON
possible ADJ
to PART
get AUX
a DET
correction NOUN
in ADP
PRK PROPN
with ADP
involvement NOUN
ofonly ADV
about ADV
5 NUM
% NOUN
of ADP
the DET
corneal ADJ
depth NOUN
, PUNCT
while SCONJ
RK PROPN
is AUX
done VERB
to ADP
a DET
depth NOUN
of ADP
up ADJ
to95 PROPN
% NOUN
? PUNCT
  SPACE
Why ADV
such DET
a DET
difference NOUN
? PUNCT
  SPACE
I PRON
thought VERB
the DET
proceedures NOUN
were AUX
simmilarwith ADP
the DET
exception NOUN
of ADP
a DET
laser NOUN
being AUX
the DET
cutting VERB
tool NOUN
in ADP
PRK PROPN
. PUNCT
  SPACE
I PRON
must AUX
notbe VERB
understanding NOUN
all DET
of ADP
the DET
differences NOUN
. PUNCT
In ADP
the DET
FAQ PROPN
, PUNCT
the DET
vision NOUN
was AUX
considered VERB
less ADV
clear ADJ
after ADP
the DET
surgery NOUN
thanwith NOUN
glasses NOUN
alone ADV
. PUNCT
  SPACE
If SCONJ
this DET
is AUX
completly ADV
attributable ADJ
to ADP
theintentional ADJ
slight ADJ
undercorrection NOUN
, PUNCT
then ADV
it PRON
can AUX
be AUX
compensated VERB
for ADP
whennecessary NOUN
with ADP
glasses NOUN
( PUNCT
or CCONJ
contacts NOUN
, PUNCT
if SCONJ
they PRON
CAN AUX
be AUX
worn VERB
afterall NOUN
! PUNCT
) PUNCT
. PUNCT
  SPACE
Itis PROPN
important ADJ
to PART
know VERB
if SCONJ
that DET
is AUX
not PART
the DET
case NOUN
, PUNCT
however ADV
, PUNCT
and CCONJ
some DET
otherconsequence NOUN
of ADP
the DET
surgery NOUN
would AUX
often ADV
interfere VERB
with ADP
clear ADJ
vision NOUN
. PUNCT
  SPACE
Thefirst PROPN
thing NOUN
that PRON
came VERB
to ADP
my PRON
mind NOUN
was AUX
a DET
fogging NOUN
of ADP
the DET
lense NOUN
, PUNCT
whichglasses NOUN
could AUX
n't PART
help VERB
. PUNCT
would AUX
not PART
help.-- VERB
| PROPN
Daniel PROPN
R. PROPN
Field PROPN
, PUNCT
AKA PROPN
InfoSpunj PROPN
| PROPN
I PRON
'm AUX
just ADV
a DET
lowly ADJ
phlebe NOUN
. PUNCT
              SPACE
|| PROPN
dfield@oboe.calpoly.edu NUM
        SPACE
| PROPN
                                       SPACE
|| PROPN
Biochemistry PROPN
, PUNCT
Biotechnology PROPN
    SPACE
| INTJ
I PRON
'm AUX
at ADP
the DET
phlebottom NOUN
                 SPACE
|| PROPN
California PROPN
Polytechnic PROPN
State PROPN
U PROPN
| PROPN
of ADP
the DET
medical ADJ
totem NOUN
pole NOUN
. PUNCT
            SPACE
| PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58814From NUM
: PUNCT
ghilardi@urz.unibas.chSubject NOUN
: PUNCT
left VERB
side NOUN
painsHello ADV
to ADP
everybody PRON
, PUNCT
I PRON
write VERB
here ADV
because SCONJ
I PRON
am AUX
kind ADV
of ADV
desperate ADJ
. PUNCT
For ADP
about ADV
six NUM
weeks NOUN
, PUNCT
I PRON
've AUX
beensuffering VERB
on ADP
pains NOUN
in ADP
my PRON
left ADJ
head NOUN
side NOUN
, PUNCT
the DET
left ADJ
leg NOUN
and CCONJ
sometimes ADV
the DET
left ADJ
arm NOUN
. PUNCT
I PRON
made VERB
many ADJ
tests NOUN
( PUNCT
e.g. ADV
computer NOUN
tomography NOUN
, PUNCT
negative ADJ
, PUNCT
lyme NOUN
borreliosis NOUN
, PUNCT
negative ADJ
, PUNCT
all DET
electrolytes NOUN
in ADP
the DET
blood NOUN
in ADP
their PRON
correct ADJ
range NOUN
) PUNCT
, PUNCT
they'reall INTJ
o INTJ
. PUNCT
K. PROPN
, PUNCT
so ADV
I PRON
should AUX
be AUX
healthy ADJ
. PUNCT
As SCONJ
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
am AUX
not PART
feeling VERB
so ADV
. PUNCT
I PRON
was AUX
also ADV
at ADP
a DET
Neurologist PROPN
's PART
too ADV
, PUNCT
he PRON
considered VERB
me PRON
healthy ADJ
too ADV
. PUNCT
The DET
blood NOUN
tests NOUN
have AUX
shown VERB
that SCONJ
I PRON
have AUX
little ADJ
too ADV
much ADJ
of ADP
Hemoglobin PROPN
( PUNCT
17.5,common NUM
range NOUN
is AUX
14 NUM
to PART
17 NUM
, PUNCT
I PRON
unfortunately ADV
do AUX
not PART
know VERB
about ADP
the DET
units).Could NOUN
these DET
hemi ADJ
- PUNCT
sided ADJ
pains NOUN
be VERB
the DET
result NOUN
of ADP
this DET
or CCONJ
of ADP
a DET
also ADV
possibleblock NOUN
of ADP
the DET
neck NOUN
muscles NOUN
? PUNCT
I PRON
have AUX
no DET
fever NOUN
, PUNCT
and CCONJ
I PRON
am AUX
not PART
feeling VERB
entirely ADV
sick ADJ
, PUNCT
but CCONJ
neither DET
entirely ADV
healthy ADJ
. PUNCT
Please INTJ
answer VERB
by ADP
direct ADJ
email NOUN
on ADP
< X
ghilardi@urz.unibas.ch>Thanks NOUN
for ADP
every DET
hintNicoNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58815From NUM
: PUNCT
Nigel@dataman.demon.co.uk PROPN
( PUNCT
Nigel PROPN
Ballard)Subject VERB
: PUNCT
Re ADP
: PUNCT
Sarchoidosis NOUN
> X
> X
       SPACE
Hello,>>Does PROPN
anybody PRON
know VERB
if SCONJ
sarchoidosis NOUN
is AUX
a DET
mortem ADJ
desease NOUN
? PUNCT
> X
> X
( PUNCT
i.e PROPN
if SCONJ
someone PRON
who PRON
tooke VERB
this DET
desease NOUN
can AUX
be AUX
kill>>bye PUNCT
this DET
one NUM
? PUNCT
) PUNCT
> X
> X
People NOUN
have AUX
died VERB
from ADP
sarcoid ADJ
, PUNCT
but CCONJ
usually ADV
it PRON
is AUX
not PART
> X
fatal ADJ
and CCONJ
is AUX
treatable.>---------------------------------------------------------------------------->Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------Hi PUNCT
thereI'm PROPN
suffering VERB
from ADP
Sarcoidosis PROPN
at ADP
present NOUN
. PUNCT
  SPACE
Although SCONJ
it PRON
's AUX
shown VERB
as SCONJ
achronic ADJ
& CCONJ
rare ADJ
tissue NOUN
disorder NOUN
, PUNCT
it PRON
is AUX
thankfully ADV
NOT ADV
life NOUN
threatening VERB
. PUNCT
The DET
very ADV
worsed ADJ
thing NOUN
that PRON
can AUX
happen VERB
to ADP
a DET
non ADJ
- ADJ
treated VERB
sufferer PROPN
isglaucoma PROPN
. PUNCT
  SPACE
My PRON
specialists NOUN
are AUX
bombarding VERB
me PRON
with ADP
Prednisolone PROPN
E.C. PROPN
( PUNCT
acortico PROPN
- PUNCT
steriod PROPN
) PUNCT
and CCONJ
after ADP
four NUM
months NOUN
at ADP
20 NUM
mg NOUN
a DET
day NOUN
, PUNCT
it PRON
's AUX
totally ADV
doneaway ADJ
with ADP
my PRON
enlarged ADJ
lymph NOUN
glands NOUN
, PUNCT
so SCONJ
somethings NOUN
happening VERB
for ADP
thegood!Cheers PROPN
Nigel PROPN
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
* PUNCT
NIGEL PROPN
BALLARD PROPN
  SPACE
| ADP
INT PROPN
: PUNCT
nigel@dataman.demon.co.uk PROPN
  SPACE
| PROPN
MEXICAN PROPN
FOOD PROPN
      SPACE
* PUNCT
   SPACE
* PUNCT
BOURNEMOUTH PROPN
    SPACE
| PROPN
CIS PROPN
: PUNCT
100015.2644 NUM
   SPACE
RADIO PROPN
- PUNCT
G1HOI PROPN
  SPACE
| ADJ
GUINNESS PROPN
ON ADP
TAP NOUN
   SPACE
* PUNCT
   SPACE
* PUNCT
UNITED PROPN
KINGDOM PROPN
| PROPN
AMAZING PROPN
! PUNCT
and CCONJ
all DET
down ADV
two NUM
wires NOUN
| ADJ
TALL PROPN
SKINNY NOUN
WOMEN NOUN
* PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
Two NUM
penguins NOUN
are AUX
walking VERB
along ADP
an DET
iceberg NOUN
. PUNCT
The DET
first ADJ
penguin NOUN
turns VERB
to PART
    SPACE
the DET
second ADJ
penguin NOUN
and CCONJ
says VERB
" PUNCT
it PRON
looks VERB
like SCONJ
you PRON
are AUX
wearing VERB
a DET
tuxedo NOUN
. PUNCT
" PUNCT
    SPACE
The DET
second ADJ
penguin NOUN
turns VERB
to ADP
the DET
first ADJ
penguin NOUN
and CCONJ
says VERB
, PUNCT
" PUNCT
maybe ADV
I PRON
am AUX
. PUNCT
" PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58816From NUM
: PUNCT
ken@sugra.uucp PROPN
( PUNCT
Kenneth PROPN
Ng)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
szikopou.734725851@cunews PROPN
: PUNCT
szikopou@superior.carleton.ca PROPN
( PUNCT
Steven PROPN
Zikopoulos PROPN
) PUNCT
writes::In PROPN
< X
1993Apr13.144340.3549@news.cs.brandeis.edu NUM
> X
reynold@binah.cc.brandeis.edu NUM
( PUNCT
" PUNCT
Susan PROPN
Reynold PROPN
( PUNCT
w PROPN
/ SYM
out SCONJ
the DET
s NOUN
) PUNCT
" PUNCT
) PUNCT
writes::>I PROPN
think VERB
the DET
scientists NOUN
are AUX
biased ADJ
towards ADP
the DET
food NOUN
industry NOUN
or CCONJ
something.:>Was NOUN
the DET
article NOUN
long ADV
? PUNCT
Would AUX
anyone PRON
be AUX
interested ADJ
in ADP
posting VERB
it?:a NUM
neuroscientist NOUN
told VERB
me PRON
that SCONJ
MSG PROPN
is AUX
used VERB
as SCONJ
a DET
neurotoxin NOUN
... PUNCT
that's PUNCT
: PUNCT
right INTJ
... PUNCT
some DET
labs NOUN
use VERB
it PRON
to PART
" PUNCT
kill VERB
" PUNCT
neurons NOUN
in ADP
mice NOUN
and CCONJ
ratsVitamin NOUN
A NOUN
( PUNCT
and CCONJ
I PRON
think VERB
vitamin NOUN
D NOUN
) PUNCT
in ADP
strong ADJ
enough ADJ
amounts NOUN
can AUX
kill VERB
. PUNCT
  SPACE
The DET
keywords NOUN
are AUX
DOSAGE VERB
and CCONJ
EXPOSURE PROPN
MECHANISM.-- PROPN
Kenneth PROPN
NgPlease PROPN
reply NOUN
to ADP
ken@blue.njit.edu PROPN
for ADP
now ADV
. PUNCT
"All PUNCT
this DET
might AUX
be AUX
an DET
elaborate ADJ
simulation NOUN
running VERB
in ADP
a DET
little ADJ
device NOUN
sittingon NOUN
someone PRON
's PART
table NOUN
" PUNCT
-- PUNCT
J.L. PROPN
Picard PROPN
: PUNCT
ST PROPN
: PUNCT
TNGNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58817From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
pointer NOUN
for ADP
info NOUN
( PUNCT
long PROPN
shot)In PROPN
article NOUN
< X
ZONKER.93Apr14174640@splinter.coe.northeastern.edu PROPN
> X
, PUNCT
Regis PROPN
M PROPN
Donovan PROPN
< X
zonker@silver.lcs.mit.edu NUM
> X
writes VERB
: PUNCT
> X
This DET
is AUX
something PRON
of ADP
a DET
long ADJ
shot NOUN
... PUNCT
but CCONJ
what PRON
the DET
hell NOUN
. PUNCT
  SPACE
the DET
net NOUN
is AUX
> X
full ADJ
of ADP
people NOUN
with ADP
strange ADJ
knowledge NOUN
... PUNCT
> X
> X
I PRON
'm AUX
looking VERB
for ADP
suggestions NOUN
as SCONJ
to ADP
what PRON
could AUX
be AUX
causing VERB
health NOUN
> X
problems NOUN
one NUM
of ADP
my PRON
relatives NOUN
is AUX
having VERB
. PUNCT
> X
> X
One NUM
of ADP
my PRON
cousins NOUN
has AUX
had VERB
health NOUN
problems NOUN
for ADP
much ADJ
of ADP
her PRON
life NOUN
. PUNCT
> X
Around ADP
the DET
age NOUN
of ADP
10 NUM
she PRON
had AUX
some DET
gynecological ADJ
problems NOUN
. PUNCT
  SPACE
Now ADV
she PRON
's AUX
> X
in ADP
her PRON
early ADJ
/ SYM
mid ADJ
twenties NOUN
and CCONJ
she PRON
is AUX
going VERB
blind ADJ
. PUNCT
> X
> X
Her PRON
eyes NOUN
are AUX
not PART
producing VERB
enough ADV
( PUNCT
if SCONJ
any DET
) PUNCT
moisture NOUN
. PUNCT
  SPACE
She PRON
's AUX
been AUX
going VERB
> X
to ADP
Mass PROPN
Eye PROPN
and CCONJ
Ear PROPN
and CCONJ
the DET
doctors NOUN
there ADV
have AUX
no DET
clue NOUN
what PRON
the DET
actual ADJ
> X
cause NOUN
is AUX
. PUNCT
  SPACE
THey PRON
have AUX
apparently ADV
tried VERB
eyedrops NOUN
and CCONJ
such ADJ
. PUNCT
  SPACE
She PRON
is AUX
just ADV
> X
about ADP
completely ADV
blind ADJ
in ADP
one NUM
eye NOUN
and CCONJ
the DET
other ADJ
is AUX
massively ADV
> ADV
deteriorated VERB
. PUNCT
Sjogren PROPN
's PART
syndrome NOUN
has AUX
been AUX
known VERB
to PART
induce VERB
dryness NOUN
in ADP
vaginal ADJ
tissue NOUN
as SCONJ
wellas NOUN
induce VERB
primary ADJ
biliary ADJ
cirrhosis NOUN
. PUNCT
Otherwise ADV
the DET
abdominal ADJ
swelling NOUN
could AUX
bedue PROPN
to ADP
a DET
complication NOUN
of ADP
Sjogren PROPN
's PART
known VERB
as SCONJ
pseudolymphoma NOUN
which PRON
* PUNCT
can AUX
* PUNCT
producea PROPN
splenomegaly PROPN
( PUNCT
enlarged VERB
spleen NOUN
) PUNCT
. PUNCT
She PRON
should AUX
definitely ADV
see VERB
a DET
rheumatologist NOUN
. PUNCT
Since SCONJ
you PRON
do AUX
n't PART
mention VERB
skin NOUN
disorder NOUN
, PUNCT
anemia NOUN
, PUNCT
or CCONJ
joint ADJ
pain NOUN
you PRON
'd AUX
probablyrule VERB
out ADP
erythema NOUN
nodosum NOUN
or CCONJ
scleroderma PROPN
. PUNCT
Joshbackon@VMS.HUJI.AC.IL X
> X
> X
Also ADV
, PUNCT
and CCONJ
this DET
may AUX
or CCONJ
may AUX
not PART
be AUX
related VERB
, PUNCT
she PRON
is AUX
having VERB
some DET
changes NOUN
> X
in ADP
her PRON
abdomen NOUN
. PUNCT
  SPACE
her PRON
stomach NOUN
has AUX
swelled VERB
( PUNCT
i PRON
'm AUX
not PART
sure ADJ
if SCONJ
this DET
is AUX
> X
stomach NOUN
the DET
organ NOUN
or CCONJ
stomach NOUN
teh NOUN
area NOUN
of ADP
the DET
body NOUN
) PUNCT
. PUNCT
> X
> X
I PRON
guess VERB
the DET
step NOUN
they PRON
're AUX
going VERB
to PART
take VERB
next ADJ
is AUX
to PART
do AUX
a DET
whole ADJ
battery NOUN
> X
of ADP
tests NOUN
to PART
check VERB
all DET
the DET
other ADJ
internal ADJ
systmes NOUN
besides SCONJ
just ADV
the DET
> X
eyes NOUN
... PUNCT
> X
> X
but CCONJ
just ADV
because SCONJ
the DET
net NOUN
is AUX
a DET
source NOUN
of ADP
large ADJ
amounts NOUN
of ADP
bizarre ADJ
> X
knowledge NOUN
, PUNCT
i PRON
'm AUX
going VERB
to PART
ask VERB
: PUNCT
has AUX
anyone PRON
ever ADV
heard VERB
of ADP
anything PRON
like SCONJ
> X
this DET
? PUNCT
  SPACE
suggestions NOUN
of ADP
things NOUN
to PART
ask VERB
about ADP
( PUNCT
since SCONJ
much ADJ
of ADP
my PRON
knowledge NOUN
> X
about ADP
her PRON
state NOUN
comes VERB
second ADJ
or CCONJ
third ADJ
hand NOUN
) PUNCT
? PUNCT
> X
> X
Thanks INTJ
. PUNCT
> X
--Regis PUNCT
> X
   SPACE
zonker@silver.lcs.mit.edu>Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58818From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.200344.28013@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> PROPN
2 X
) PUNCT
Science NOUN
has AUX
not PART
historically ADV
progressed VERB
in ADP
any DET
sort NOUN
of ADP
rational| PROPN
> X
experiment NOUN
- PUNCT
data NOUN
- PUNCT
theory NOUN
sequence NOUN
. PUNCT
  SPACE
Most ADJ
experiments NOUN
are AUX
carried VERB
out ADP
, PUNCT
and| PROPN
> PROPN
interpreted VERB
, PUNCT
in ADP
pre ADJ
- ADJ
existing VERB
theoretical ADJ
frameworks NOUN
. PUNCT
  SPACE
The DET
theoretical| PROPN
> X
controversies NOUN
of ADP
the DET
day NOUN
determine NOUN
which PRON
experiments NOUN
get VERB
done VERB
. PUNCT
  SPACE
Overall,| ADJ
> X
there PRON
is AUX
a DET
huge ADJ
messy ADJ
affair NOUN
of ADP
personal ADJ
jealousies NOUN
, PUNCT
crazy ADJ
motivations,| NOUN
> X
petty ADJ
hatreds NOUN
, PUNCT
and CCONJ
the DET
like ADJ
that DET
determines VERB
which PRON
experiments NOUN
, PUNCT
and CCONJ
which| PROPN
> X
computations NOUN
, PUNCT
get AUX
done VERB
. PUNCT
  SPACE
What PRON
keeps VERB
it PRON
going VERB
forward ADV
is AUX
the DET
critical| PROPN
> X
function NOUN
of ADP
science NOUN
: PUNCT
results NOUN
do AUX
n't PART
count VERB
unless SCONJ
they PRON
can AUX
be AUX
replicated.| PROPN
> X
| ADP
> X
The DET
whole ADJ
system NOUN
is AUX
a DET
sort NOUN
of ADP
mechanism NOUN
for ADP
generate NOUN
- PUNCT
and CCONJ
- PUNCT
test NOUN
. PUNCT
  SPACE
The DET
generate| PROPN
> X
part NOUN
can AUX
be AUX
totally ADV
irrational ADJ
, PUNCT
as ADV
long ADV
as SCONJ
the DET
test NOUN
part NOUN
works VERB
properly ADV
. PUNCT
I PRON
think VERB
we PRON
agree VERB
on ADP
much ADJ
. PUNCT
  SPACE
However ADV
the DET
paragraphs NOUN
above ADV
seem VERB
to PART
repeatuncritically ADV
the DET
standard ADJ
Kuhn PROPN
/ SYM
Lakatos PROPN
/ SYM
Feyerabend PROPN
view NOUN
of ADP
" PUNCT
progress NOUN
" PUNCT
and"rationality NOUN
" PUNCT
in ADP
science NOUN
. PUNCT
  SPACE
Since SCONJ
I PRON
've AUX
addressed VERB
these DET
issues NOUN
in ADP
thisnewsgroup NOUN
in ADP
the DET
not PART
too ADV
distant ADJ
past ADV
, PUNCT
I PRON
wo AUX
n't PART
go VERB
into ADP
them PRON
again ADV
now ADV
. PUNCT
What PRON
is AUX
wrong ADJ
with ADP
the DET
above ADJ
observation NOUN
is AUX
that SCONJ
it PRON
explicitly ADV
gives VERB
theimpression NOUN
( PUNCT
and CCONJ
you PRON
may AUX
not PART
in ADP
fact NOUN
hold VERB
this DET
view NOUN
) PUNCT
that SCONJ
the DET
common ADJ
( PUNCT
perhapseven VERB
the DET
" PUNCT
correct ADJ
" PUNCT
) PUNCT
approach NOUN
for ADP
a DET
scientist NOUN
to PART
follow VERB
is AUX
to PART
sit VERB
aroundhaving NOUN
flights NOUN
of ADP
fancy ADJ
and CCONJ
scheming VERB
on ADP
the DET
basis NOUN
of ADP
his PRON
jealousies NOUN
andpetty ADV
hatreds NOUN
. PUNCT
  SPACE
It PRON
further ADV
at ADV
least ADV
implicitly ADV
advances VERB
the DET
position NOUN
thatsciences NOUN
goes VERB
" PUNCT
forward ADV
" PUNCT
( PUNCT
and CCONJ
it PRON
is AUX
not PART
clear ADJ
what PRON
this DET
means VERB
given VERB
thecontext ADV
in ADP
which PRON
it PRON
occurs VERB
) PUNCT
by ADP
generating VERB
in ADP
a DET
completely ADV
non ADJ
- ADJ
rationaland VERB
even ADV
random ADJ
way NOUN
a DET
plethora NOUN
of ADP
hypotheses NOUN
and CCONJ
theories NOUN
that PRON
are AUX
thenweeded VERB
out ADP
via ADP
the DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
of ADP
science NOUN
. PUNCT
  SPACE
( PUNCT
Though SCONJ
why ADV
this DET
criticalfunction NOUN
should AUX
be AUX
less ADV
subject ADJ
to ADP
the DET
non ADJ
- ADJ
rational ADJ
forces NOUN
is AUX
a DET
mystery NOUN
. PUNCT
If SCONJ
experimental ADJ
design NOUN
, PUNCT
hypotheses NOUN
creation NOUN
, PUNCT
and CCONJ
theory NOUN
construction NOUN
aresubject NOUN
to ADP
jealousies NOUN
and CCONJ
petty ADJ
hatreds NOUN
, PUNCT
then ADV
this DET
must AUX
be AUX
equally ADV
trueof VERB
the DET
application NOUN
of ADP
any DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
concerning VERB
replication NOUN
. PUNCT
This DET
is AUX
what PRON
leads VERB
one NUM
( PUNCT
ala PROPN
Feyerabend PROPN
) PUNCT
to ADP
an DET
" PUNCT
anything PRON
goes VERB
" PUNCT
view.)True PUNCT
, PUNCT
the DET
generation NOUN
part NOUN
* PUNCT
can AUX
* PUNCT
be AUX
totally ADV
irrational ADJ
. PUNCT
  SPACE
But CCONJ
typically ADV
it PRON
is*not ADV
* PUNCT
. PUNCT
  SPACE
Anecdotes VERB
concerning VERB
instances NOUN
where ADV
a DET
hypothesis NOUN
seems VERB
to PART
haveresulted VERB
in ADP
some DET
way NOUN
from ADP
a DET
dream NOUN
or CCONJ
from ADP
one PRON
's PART
political ADJ
views NOUN
simplydo VERB
not PART
generalize VERB
well ADV
to ADP
the DET
actual ADJ
history NOUN
of ADP
science.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58819From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Seeking VERB
advice NOUN
/ SYM
experience NOUN
with ADP
back ADJ
problemIn NOUN
article NOUN
< X
C5FI9r.7yz@cbnewsk.cb.att.com NOUN
> X
janet.m.cooper,jmcooper@cbnewsk.cb.att.com X
writes:>The DET
mother NOUN
of ADP
a DET
friend NOUN
of ADP
mine NOUN
is AUX
experiencing VERB
a DET
disabling VERB
back ADP
> X
pain NOUN
. PUNCT
  SPACE
After ADP
MRIs NOUN
, PUNCT
CT PROPN
scans VERB
, PUNCT
and CCONJ
doctors NOUN
visits NOUN
she PRON
has AUX
beenpresented VERB
> X
with ADP
2 NUM
alternatives NOUN
: PUNCT
> X
( PUNCT
1 X
) PUNCT
live VERB
with ADP
the DET
pain NOUN
> X
or CCONJ
( PUNCT
2 X
) PUNCT
undergo VERB
a DET
somewhat ADV
> X
risky ADJ
operation NOUN
which PRON
may AUX
leave VERB
her PRON
paralyzed ADJ
. PUNCT
  SPACE
She PRON
also ADV
has AUX
a DET
Since SCONJ
her PRON
symptoms NOUN
are AUX
only ADV
pain NOUN
she PRON
would AUX
do AUX
weel NOUN
to PART
seek VERB
theadvice NOUN
of ADP
a DET
good ADJ
, PUNCT
multi ADJ
- ADJ
disciplinary ADJ
pain NOUN
clinic NOUN
. PUNCT
It PRON
is AUX
distressingto PROPN
think VERB
that SCONJ
people NOUN
are AUX
stll ADJ
being NOUN
told VERB
they PRON
have AUX
to PART
" PUNCT
live VERB
with ADP
thepain NOUN
" PUNCT
when ADV
many ADJ
options NOUN
for ADP
pain NOUN
management NOUN
( PUNCT
rather ADV
than SCONJ
treatingMRI DET
findings NOUN
) PUNCT
are AUX
available ADJ
. PUNCT
A DET
good ADJ
pain NOUN
clinic NOUN
will AUX
accept VERB
thatthis DET
lady NOUN
's PART
problem NOUN
is AUX
her PRON
pain NOUN
and CCONJ
set VERB
about ADP
finding VERB
ways NOUN
ofrelieveing VERB
that DET
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsUM PROPN
Anesthesiology PROPN
will AUX
disavow VERB
... PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58820From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
options NOUN
before ADP
back ADJ
surgery NOUN
for ADP
protruding VERB
disc NOUN
at ADP
L4-L5Subject NOUN
: PUNCT
options NOUN
before ADP
back ADJ
surgery NOUN
for ADP
protruding VERB
disc NOUN
at ADP
L4-L5From PROPN
: PUNCT
Alex PROPN
Miller PROPN
, PUNCT
amiller@almaden.ibm.comDate PROPN
: PUNCT
13 NUM
Apr PROPN
93 NUM
18:30:42 NUM
GMTIn NOUN
article NOUN
< X
2241@coyote NOUN
. PUNCT
UUCP NOUN
> X
Alex PROPN
Miller PROPN
, PUNCT
amiller@almaden.ibm.comwrites:>After NOUN
two NUM
weeks NOUN
of ADP
limping VERB
around ADP
with ADP
an DET
acute ADJ
pain NOUN
in ADP
my PRON
low ADJ
back ADV
> CCONJ
and CCONJ
right ADJ
leg NOUN
, PUNCT
my PRON
osteopath NOUN
sent VERB
me PRON
to PART
get AUX
an DET
MRI PROPN
which PRON
revealed VERB
> X
a DET
protruding NOUN
( PUNCT
and CCONJ
extruded VERB
) PUNCT
disc NOUN
at ADP
L4-L5 PROPN
. PUNCT
  SPACE
I PRON
went VERB
to ADP
a DET
neurosurgeon NOUN
> X
who PRON
prescribed VERB
prednisole NOUN
( PUNCT
a DET
steroidal NOUN
anti ADJ
- ADJ
inflamitory ADJ
) PUNCT
and CCONJ
bedrest VERB
> X
for ADP
several ADJ
days NOUN
. PUNCT
  SPACE
It PRON
's AUX
been AUX
nearly ADV
a DET
week NOUN
and CCONJ
overall NOUN
I PRON
feel VERB
> X
slightly ADV
worse ADJ
- PUNCT
I PRON
take VERB
darvocet NOUN
three NUM
times NOUN
a DET
day NOUN
so ADV
I PRON
can AUX
> X
deal VERB
with ADP
daily ADJ
activities NOUN
like SCONJ
preparing VERB
food NOUN
and CCONJ
help VERB
me PRON
> X
get AUX
to ADP
sleep NOUN
. PUNCT
  SPACE
> X
> X
I PRON
'll AUX
see VERB
the DET
neurosurgeon NOUN
tomorrow NOUN
and CCONJ
of ADP
course NOUN
I PRON
'll AUX
be AUX
asking VERB
> X
whether SCONJ
or CCONJ
not PART
this DET
rest NOUN
is AUX
helpful ADJ
or CCONJ
if SCONJ
surgery NOUN
is AUX
the DET
next ADJ
> X
step NOUN
. PUNCT
  SPACE
What PRON
are AUX
my PRON
non ADJ
- ADJ
surgical ADJ
options NOUN
if SCONJ
my PRON
goal NOUN
is AUX
to PART
resume VERB
> X
full ADJ
activity NOUN
, PUNCT
including VERB
competitive ADJ
cycling NOUN
. PUNCT
  SPACE
I PRON
should AUX
add VERB
this DET
> ADJ
condition NOUN
is AUX
, PUNCT
in ADP
my PRON
opinion NOUN
, PUNCT
the DET
result NOUN
of ADP
commulative ADJ
wear NOUN
and CCONJ
> X
tear NOUN
- PUNCT
I PRON
've AUX
had VERB
chronic ADJ
low ADJ
- PUNCT
back NOUN
pain NOUN
for ADP
years NOUN
- PUNCT
but CCONJ
I PRON
managedYou PROPN
do AUX
n't PART
say VERB
whether SCONJ
or CCONJ
not PART
you PRON
have AUX
any DET
symptoms NOUN
other ADJ
than SCONJ
pain NOUN
. PUNCT
If SCONJ
you PRON
have AUX
numbness NOUN
, PUNCT
weakness NOUN
or CCONJ
bladder NOUN
problems NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
these DET
would AUX
suggest VERB
a DET
need NOUN
for ADP
surgery NOUN
. PUNCT
If SCONJ
pain NOUN
is AUX
your PRON
only ADJ
symptomyou NOUN
might AUX
do AUX
well ADV
to PART
find VERB
a DET
reputable ADJ
, PUNCT
multi ADJ
- ADJ
disciplinary ADJ
painclinic NOUN
in ADP
your PRON
area NOUN
. PUNCT
Chronic ADJ
low ADJ
back NOUN
pain NOUN
generally ADV
does AUX
n't PART
do AUX
wellwith NOUN
surgery NOUN
, PUNCT
acute ADJ
on ADP
chronic ADJ
pain NOUN
( PUNCT
as SCONJ
only ADJ
symptom NOUN
) PUNCT
does AUX
n't PART
faremuch VERB
better.e PROPN
correlation NOUN
between ADP
MRI PROPN
findings NOUN
and CCONJ
symptoms NOUN
is AUX
controversial ADJ
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
  SPACE
his PRON
opinionsUM PROPN
will AUX
disavow VERB
... PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58821From NUM
: PUNCT
rcj2@cbnewsd.cb.att.com PROPN
( PUNCT
ray.c.jender)Subject NOUN
: PUNCT
Looking VERB
for ADP
a DET
doctor NOUN
	 SPACE
I PRON
was AUX
kind ADV
of ADV
half ADV
watching VERB
Street PROPN
Stories PROPN
last ADJ
night NOUN
	 SPACE
and CCONJ
one NUM
of ADP
the DET
segments NOUN
was AUX
about ADP
this DET
doctor NOUN
in ADP
	 SPACE
S.F. PROPN
who PRON
provides VERB
a DET
service NOUN
of ADP
investigating VERB
treatment NOUN
	 SPACE
for ADP
various ADJ
diseases NOUN
. PUNCT
I PRON
'm AUX
pretty ADV
sure ADJ
his PRON
name NOUN
is AUX
	 SPACE
Dr. PROPN
Mark PROPN
Renniger PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
or CCONJ
close ADV
to ADP
that DET
. PUNCT
	 SPACE
Did AUX
anyone PRON
else ADV
watch VERB
this DET
? PUNCT
I PRON
'd AUX
like VERB
to PART
get AUX
his PRON
	 SPACE
correct ADJ
name NOUN
and CCONJ
address NOUN
/ SYM
phone NOUN
number NOUN
if SCONJ
possible ADJ
. PUNCT
	 SPACE
Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58822From NUM
: PUNCT
dbc@welkin.gsfc.nasa.gov PROPN
( PUNCT
David PROPN
Considine)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.180459.17852@nmr-z.mgh.harvard.edu NUM
> X
milsh@nmr-z.mgh.harvard.edu PUNCT
( PUNCT
Alex PROPN
Milshteyn PROPN
) PUNCT
writes:>This PROPN
was AUX
known VERB
long ADV
ago ADV
. PUNCT
  SPACE
Brain PROPN
produces VERB
and CCONJ
uses VERB
some DET
MSG NOUN
naturally,>but ADP
not PART
in ADP
doses NOUN
it PRON
is AUX
served VERB
at ADP
some DET
chinese ADJ
places NOUN
. PUNCT
> X
Having VERB
said VERB
that DET
, PUNCT
i PRON
might AUX
add VERB
, PUNCT
that SCONJ
in ADP
MHO PROPN
, PUNCT
MSG PROPN
does AUX
not PART
enhance VERB
> X
flavor NOUN
enoughf VERB
for ADP
me PRON
to PART
miss VERB
it PRON
. PUNCT
  SPACE
When ADV
I PRON
go VERB
to ADP
chinese ADJ
places,>I PROPN
order NOUN
food NOUN
without ADP
MSG PROPN
. PUNCT
  SPACE
Goos PROPN
places NOUN
will AUX
do AUX
it PRON
for ADP
you PRON
. PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
	 SPACE
I PRON
just ADV
wanted VERB
to PART
point VERB
out ADP
that SCONJ
some DET
of ADP
the DET
food NOUN
, PUNCT
particularly ADV
	 SPACE
the DET
soups NOUN
, PUNCT
are AUX
prepared VERB
in ADP
a DET
big ADJ
batch NOUN
, PUNCT
so ADV
the DET
restaurant NOUN
	 SPACE
wo AUX
n't PART
be AUX
able ADJ
to PART
take VERB
the DET
MSG PROPN
out SCONJ
of ADP
it PRON
. PUNCT
  SPACE
Sometimes ADV
its PRON
	 SPACE
pretty ADV
hard ADV
to PART
find VERB
out ADP
if SCONJ
this DET
is AUX
the DET
case NOUN
or CCONJ
not.>Alexander PROPN
M. PROPN
Milshteyn PROPN
M.D. PROPN
   SPACE
< X
milsh@cipr-server.mgh.harvard.edu>>CIPR PROPN
, PUNCT
MGH PROPN
in ADP
Boston PROPN
, PUNCT
MA PROPN
. PUNCT
     SPACE
( PUNCT
617)724 NUM
- PUNCT
9507 NUM
Vox PROPN
  SPACE
( PUNCT
617)726 NUM
- PUNCT
7830 NUM
FaxDavid PROPN
B. PROPN
Considinedbc@welkin.gsfc.nasa.govNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58823From NUM
: PUNCT
debbie@csd4.csd.uwm.edu PROPN
( PUNCT
Debbie PROPN
Forest)Subject NUM
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?In PROPN
article NOUN
< X
1993Apr14.184444.24065@galileo.cc.rochester.edu NUM
> X
jkis_ltd@uhura.cc.rochester.edu NOUN
( PUNCT
Da PROPN
' PUNCT
Beave NOUN
) PUNCT
writes:>>Well PROPN
folks NOUN
, PUNCT
I PRON
currently ADV
have AUX
a DET
yeast NOUN
infection NOUN
. PUNCT
I PRON
am AUX
male ADJ
. PUNCT
> X
[ PUNCT
... PUNCT
] PUNCT
your PRON
best ADJ
bet NOUN
( PUNCT
or CCONJ
at ADP
least ADJ
your PRON
husband's)>is NOUN
to PART
treat VERB
and CCONJ
cure VERB
your PRON
infection NOUN
before ADP
any DET
intercourse NOUN
. PUNCT
If SCONJ
you PRON
must AUX
, PUNCT
use VERB
> X
a DET
condom NOUN
. PUNCT
Also ADV
, PUNCT
consider VERB
other ADJ
forms NOUN
of ADP
sexual ADJ
release NOUN
( PUNCT
ie X
. PROPN
handjobs PROPN
) PUNCT
until ADP
> X
you PRON
are AUX
cured VERB
. PUNCT
Though SCONJ
I PRON
ca AUX
n't PART
imagine VERB
WANTING NOUN
to PART
have AUX
intercourse NOUN
during ADP
a DET
full ADJ
- PUNCT
blownyeast NOUN
infection NOUN
:-) PUNCT
chances NOUN
of ADP
it PRON
being AUX
transmitted VERB
to ADP
the DET
male NOUN
are AUX
quitelow ADJ
, PUNCT
especially ADV
if SCONJ
he PRON
's AUX
circumcised VERB
. PUNCT
  SPACE
But CCONJ
it PRON
can AUX
happen VERB
. PUNCT
At ADP
one NUM
point NOUN
I PRON
was AUX
getting VERB
recurrent ADJ
yeast NOUN
infections NOUN
and CCONJ
the DET
Dr PROPN
suspectedmy ADJ
boyfriend NOUN
might AUX
have AUX
gotten VERB
it PRON
from ADP
me PRON
and CCONJ
be AUX
reinfecting VERB
me PRON
. PUNCT
  SPACE
Theprescription PROPN
was AUX
interesting ADJ
. PUNCT
  SPACE
For ADP
each DET
day NOUN
of ADP
the DET
medication NOUN
( PUNCT
a DET
week NOUN
) PUNCT
I PRON
was AUX
to PART
insert VERB
the DET
medication NOUN
, PUNCT
then ADV
to PART
have AUX
intercourse NOUN
. PUNCT
  SPACE
The DET
resulting VERB
action NOUN
would AUX
help VERB
the DET
medicine NOUN
be AUX
spread VERB
around ADV
in ADP
me PRON
better ADV
, PUNCT
and CCONJ
would AUX
simultaneously ADV
treat VERB
him PRON
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58824From NUM
: PUNCT
sdbsd5@cislabs.pitt.edu PROPN
( PUNCT
Stephen PROPN
D PROPN
Brener)Subject PROPN
: PUNCT
Intensive ADJ
Japanese PROPN
at ADP
PittIn NOUN
article NOUN
< X
C5KxIx.5Ct@cbnewsd.cb.att.com X
> X
rcj2@cbnewsd.cb.att.com NOUN
( PUNCT
ray.c.jender PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
	 SPACE
I PRON
was AUX
kind ADV
of ADV
half ADV
watching VERB
Street PROPN
Stories PROPN
last ADJ
night NOUN
> X
	 SPACE
and CCONJ
one NUM
of ADP
the DET
segments NOUN
was AUX
about ADP
this DET
doctor NOUN
in ADP
> X
	 SPACE
S.F. PROPN
who PRON
provides VERB
a DET
service NOUN
of ADP
investigating VERB
treatment NOUN
> X
	 SPACE
for ADP
various ADJ
diseases NOUN
. PUNCT
I PRON
'm AUX
pretty ADV
sure ADJ
his PRON
name NOUN
is AUX
> X
	 SPACE
Dr. PROPN
Mark PROPN
Renniger PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
or CCONJ
close ADV
to ADP
that DET
. PUNCT
> X
	 SPACE
Did AUX
anyone PRON
else ADV
watch VERB
this DET
? PUNCT
I PRON
'd AUX
like VERB
to PART
get AUX
his PRON
> X
	 SPACE
correct ADJ
name NOUN
and CCONJ
address NOUN
/ SYM
phone NOUN
number NOUN
if SCONJ
possible ADJ
. PUNCT
> X
	 SPACE
Thanks NOUN
. PUNCT
    SPACE
INTENSIVE VERB
JAPANESE ADJ
AT ADP
THE DET
UNIVERSITY NOUN
OF ADP
PITTSBURGH PROPN
THIS PROPN
SUMMER NOUN
    SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^The PUNCT
University PROPN
of ADP
Pittsburgh PROPN
is AUX
offering VERB
two NUM
intensive ADJ
Japanese ADJ
languagecourses NOUN
this DET
summer NOUN
. PUNCT
  SPACE
Both DET
courses NOUN
, PUNCT
Intensive ADJ
Elementary PROPN
Japanese ADJ
and CCONJ
Intensive ADJ
Intermediate PROPN
Japanese PROPN
, PUNCT
are AUX
ten NUM
week NOUN
, PUNCT
ten NUM
credit NOUN
courses NOUN
each DET
equivalent ADJ
to ADP
one NUM
full ADJ
year NOUN
of ADP
Japanese ADJ
language NOUN
study NOUN
. PUNCT
  SPACE
They PRON
begin VERB
June PROPN
7 NUM
and CCONJ
end VERB
August PROPN
13 NUM
. PUNCT
  SPACE
The DET
courses NOUN
meet VERB
five NUM
days NOUN
per ADP
week NOUN
, PUNCT
five NUM
hours NOUN
per ADP
day NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
flat ADJ
rate NOUN
tuition NOUN
charge NOUN
of ADP
$ SYM
1600 NUM
per ADP
course NOUN
. PUNCT
  SPACE
Fellowships NOUN
available ADJ
for ADP
science NOUN
and CCONJ
engineering NOUN
students NOUN
. PUNCT
  SPACE
Contact PROPN
Steven PROPN
Brener PROPN
, PUNCT
Program PROPN
Manager PROPN
of ADP
the DET
Japanese PROPN
Science PROPN
and CCONJ
TechnologyManagement PROPN
Program PROPN
, PUNCT
at ADP
the DET
University PROPN
of ADP
Pittsburgh PROPN
at ADP
the DET
number NOUN
oraddress ADV
below ADV
. PUNCT
  SPACE
ALL DET
INTERESTED ADJ
INDIVIDUALS NOUN
ARE VERB
ENCOURAGED VERB
TO PART
APPLY VERB
, PUNCT
THIS DET
IS VERB
NOT ADV
LIMITED ADJ
TO PART
UNIVERSITY VERB
STUDENTS NOUN
. PUNCT
  SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
   SPACE
New PROPN
Program PROPN
Announcement PROPN
   SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
            SPACE
JAPANESE ADJ
SCIENCE PROPN
AND CCONJ
TECHNOLOGY PROPN
MANAGEMENT PROPN
PROGRAMThe ADJ
Japanese PROPN
Science PROPN
and CCONJ
Technology PROPN
Management PROPN
Program PROPN
( PUNCT
JSTMP PROPN
) PUNCT
is AUX
a DET
newprogram NOUN
jointly ADV
developed VERB
by ADP
the DET
University PROPN
of ADP
Pittsbugh PROPN
and CCONJ
Carnegie PROPN
Mellon PROPN
University PROPN
. PUNCT
  SPACE
Students NOUN
and CCONJ
professionals NOUN
in ADP
the DET
engineering NOUN
and CCONJ
scientific ADJ
communitites NOUN
are AUX
encouraged VERB
to PART
apply VERB
for ADP
classes NOUN
commencing VERB
in ADP
June PROPN
1993 NUM
and CCONJ
January PROPN
1994.PROGRAM PUNCT
OBJECTIVESThe ADJ
program NOUN
intends VERB
to PART
promote VERB
technology NOUN
transfer NOUN
between ADP
Japan PROPN
and CCONJ
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
designed VERB
to PART
let VERB
scientists NOUN
, PUNCT
engineers NOUN
, PUNCT
and CCONJ
managersexperience VERB
how ADV
the DET
Japanese PROPN
proceed VERB
with ADP
technological ADJ
development NOUN
. PUNCT
  SPACE
This DET
is AUX
facilitated VERB
by ADP
extended ADJ
internships NOUN
in ADP
Japanese ADJ
research NOUN
facilities NOUN
andlaboratories NOUN
that PRON
provide VERB
participants NOUN
with ADP
the DET
opportunity NOUN
to ADP
developlong ADJ
- PUNCT
term NOUN
professional ADJ
relationships NOUN
with ADP
their PRON
Japanese ADJ
counterparts NOUN
. PUNCT
PROGRAM NOUN
DESIGNTo NOUN
fulfill VERB
the DET
objectives NOUN
of ADP
the DET
program NOUN
, PUNCT
participants NOUN
will AUX
be AUX
required VERB
to PART
develop VERB
advanced ADJ
language NOUN
capability NOUN
and CCONJ
a DET
deep ADJ
understanding NOUN
of ADP
Japan PROPN
andits VERB
culture NOUN
. PUNCT
  SPACE
Correspondingly ADV
, PUNCT
JSTMP PROPN
consists VERB
of ADP
three NUM
major ADJ
components:1 PROPN
. PUNCT
TRAINING NOUN
IN ADP
THE DET
JAPANESE ADJ
LANGUAGESeveral ADJ
Japanese ADJ
language NOUN
courses NOUN
will AUX
be AUX
offered VERB
, PUNCT
including VERB
intensive ADJ
coursesdesigned VERB
to ADP
expedite ADJ
language NOUN
preparation NOUN
for ADP
scientists NOUN
and CCONJ
engineers NOUN
in ADP
arelatively ADV
short ADJ
time.2 NOUN
. PUNCT
EDUCATION PROPN
IN ADP
JAPANESE ADJ
BUSINESS NOUN
AND CCONJ
SOCIAL PROPN
CULTUREA VERB
particular ADJ
enphasis NOUN
is AUX
placed VERB
on ADP
attaining VERB
a DET
deep ADJ
understanding NOUN
of ADP
thecultural ADJ
and CCONJ
educational ADJ
basis NOUN
of ADP
Japanese ADJ
management NOUN
approaches NOUN
in ADP
manufacturing NOUN
and CCONJ
information NOUN
technology NOUN
. PUNCT
  SPACE
Courses NOUN
will AUX
be AUX
available ADJ
in ADP
a DET
variety NOUN
of ADP
departments NOUN
throughout ADP
both DET
universities NOUN
including VERB
Anthropology PROPN
, PUNCT
Sociology NOUN
, PUNCT
History NOUN
, PUNCT
and CCONJ
Political PROPN
Science PROPN
. PUNCT
  SPACE
Moreover ADV
, PUNCT
seminars NOUN
and CCONJ
colloquiumswill ADV
be AUX
conducted VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
a DET
field NOUN
trip NOUN
to ADP
Japanese ADJ
manufacturing NOUN
or CCONJ
research NOUN
facilities NOUN
in ADP
the DET
United PROPN
States PROPN
will AUX
be AUX
scheduled.3 PROPN
. PUNCT
AN DET
INTERNSHIP NOUN
OR CCONJ
A DET
STUDY NOUN
MISSION NOUN
IN ADP
JAPANUpon ADJ
completion NOUN
of ADP
their PRON
language NOUN
and CCONJ
cultural ADJ
training NOUN
at ADP
PITT PROPN
and CCONJ
CMU PROPN
, PUNCT
participants NOUN
will AUX
have AUX
the DET
opportunity NOUN
to PART
go VERB
to ADP
Japan PROPN
and CCONJ
observe VERB
, PUNCT
and CCONJ
participate VERB
in ADP
the DET
management NOUN
of ADP
technology NOUN
. PUNCT
  SPACE
Internships PROPN
in ADP
Japanwill PROPN
generally ADV
run VERB
for ADP
one NUM
year NOUN
; PUNCT
however ADV
, PUNCT
shorter ADJ
ones NOUN
are AUX
possible ADJ
. PUNCT
FELLOWSHIPS PROPN
COVERING VERB
TUITION NOUN
FOR ADP
LANGUAGE PROPN
AND CCONJ
CULTURE NOUN
COURSES NOUN
, PUNCT
AS ADP
WELL NOUN
ASSTIPENDS VERB
FOR ADP
LIVING NOUN
EXPENSES NOUN
ARE VERB
AVAILABLE ADJ
. PUNCT
        SPACE
FOR ADP
MORE ADJ
INFORMATION NOUN
AND CCONJ
APPLICATION NOUN
MATERIALS NOUN
CONTACTSTEVEN VERB
BRENER NOUN
				 SPACE
SUSIE ADJ
BROWNJSTMP PROPN
					 SPACE
Carnegie PROPN
Mellon PROPN
University PROPN
, PUNCT
GSIAUniversity NOUN
of ADP
Pittsburgh PROPN
		 SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
15213 NUM
- PUNCT
38904E25 NOUN
Forbes PROPN
Quadrangle PROPN
			 SPACE
Telephone NOUN
: PUNCT
( PUNCT
412 NUM
) PUNCT
268 NUM
- SYM
7806Pittsburgh PROPN
, PUNCT
PA PROPN
15260 NUM
			 SPACE
FAX NOUN
: PUNCT
	    SPACE
( PUNCT
412 NUM
) PUNCT
268 NUM
- PUNCT
8163Telephone NUM
: PUNCT
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
7414 NUM
		 SPACE
FAX PROPN
: PUNCT
       SPACE
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
2199 NUM
		 SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# NOUN
Interested ADJ
individuals NOUN
, PUNCT
companies NOUN
and CCONJ
institutions NOUN
should AUX
respond VERB
by ADP
phone NOUN
ormail NOUN
. PUNCT
  SPACE
Please INTJ
do AUX
not PART
inquire VERB
via ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
Please INTJ
note VERB
that SCONJ
this DET
is AUX
directed VERB
at ADP
grads NOUN
and CCONJ
professionals NOUN
, PUNCT
however ADV
, PUNCT
advancedundergrads NOUN
will AUX
be AUX
considered VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
funding NOUN
is AUX
resticted VERB
to ADP
US PROPN
citizensand NOUN
permanent ADJ
residents NOUN
of ADP
the DET
US.Steve PROPN
BrenerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58825From NUM
: PUNCT
anello@adcs00.fnal.gov PROPN
( PUNCT
Anthony PROPN
Anello)Subject NUM
: PUNCT
HYPOGLYCEMIACan ADV
anyone PRON
tell VERB
me PRON
if SCONJ
a DET
bloodcount NOUN
of ADP
40 NUM
when ADV
diagnosed VERB
as SCONJ
hypoglycemic PROPN
isdangerous PROPN
, PUNCT
i.e. X
indicates VERB
a DET
possible ADJ
pancreatic ADJ
problem NOUN
? PUNCT
  SPACE
One NUM
Dr. PROPN
says VERB
no DET
, PUNCT
theother NOUN
( PUNCT
not PART
his PRON
specialty NOUN
) PUNCT
says VERB
the DET
first ADJ
is AUX
negligent ADJ
and CCONJ
that SCONJ
another DET
bloodtest NOUN
should AUX
be AUX
done VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
what PRON
is AUX
a DET
good ADJ
diet NOUN
( PUNCT
what PRON
has AUX
worked VERB
) PUNCT
for ADP
a DET
hypo ADV
- PUNCT
glycemic ADJ
? PUNCT
  SPACE
TIA.Anthony PROPN
AnelloFermilabBatavia PROPN
, PUNCT
Illinois-- PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58826From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com X
> X
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
13APR199308003715@delphi.gsfc.nasa.gov NUM
> X
, PUNCT
packer@delphi.gsfc.nasa.gov NOUN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>>>Is VERB
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>>I NOUN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG NOUN
sensitivity NOUN
are>>>superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
> X
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least>>>a PROPN
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the>>>"Chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has>>>always VERB
used VERB
it.>>So NOUN
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but CCONJ
> X
no DET
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
> X
work NOUN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study NOUN
> X
using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
Check VERB
out ADP
# SYM
27903 NUM
, PUNCT
just ADV
some DET
20 NUM
posts NOUN
before ADP
your PRON
own ADJ
. PUNCT
Maybe ADV
you PRON
missedit VERB
amidst ADP
the DET
flurry NOUN
of ADP
responses NOUN
? PUNCT
Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
thisnewsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
mattersthey NOUN
have AUX
substantial ADJ
knowledge NOUN
of ADP
. PUNCT
For ADP
cites NOUN
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
atoxicologist NOUN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
ondevelopment NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
anexcitotoxic ADJ
food NOUN
additive ADJ
, PUNCT
and CCONJ
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamateis PROPN
essentially ADV
the DET
premierie PROPN
neurotransmitter PROPN
in ADP
the DET
mammalian PROPN
brain(humans PROPN
included VERB
) PUNCT
. PUNCT
  SPACE
Too ADV
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrownoff NOUN
. PUNCT
  SPACE
Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
insmall ADJ
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amountsadded VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
beencountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
  SPACE
By ADP
eating VERB
lots NOUN
of ADP
junk NOUN
food NOUN
, PUNCT
packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to PART
jack VERB
yourblood PROPN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
thesecompounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical ADJ
effects NOUN
. PUNCT
Read VERB
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*sources PUNCT
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
                    SPACE
--Dianne PUNCT
Murray PROPN
    SPACE
wcsbeau@ccs.carleton.caNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58827From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5Kv7p.JM3@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr15.200344.28013@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>What DET
is AUX
wrong ADJ
with ADP
the DET
above ADJ
observation NOUN
is AUX
that SCONJ
it PRON
explicitly ADV
gives VERB
the DET
> X
impression NOUN
( PUNCT
and CCONJ
you PRON
may AUX
not PART
in ADP
fact NOUN
hold VERB
this DET
view NOUN
) PUNCT
that SCONJ
the DET
common ADJ
( PUNCT
perhaps ADV
> X
even ADV
the DET
" PUNCT
correct ADJ
" PUNCT
) PUNCT
approach NOUN
for ADP
a DET
scientist NOUN
to PART
follow VERB
is AUX
to PART
sit VERB
around ADP
> X
having VERB
flights NOUN
of ADP
fancy ADJ
and CCONJ
scheming VERB
on ADP
the DET
basis NOUN
of ADP
his PRON
jealousies NOUN
and CCONJ
> X
petty ADJ
hatreds NOUN
. PUNCT
Flights NOUN
of ADP
fancy ADJ
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucialthing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
useunless NOUN
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
I PRON
've AUX
known VERB
a DET
lot NOUN
of ADP
scientistswhose ADJ
fantasies NOUN
lead VERB
them PRON
on ADP
to ADP
creative ADJ
work NOUN
; PUNCT
usually ADV
they PRON
wo AUX
n't PART
admitout VERB
loud ADJ
what PRON
the DET
fantasy NOUN
was AUX
, PUNCT
prior ADV
to ADP
the DET
consumption NOUN
of ADP
a DET
few ADJ
beers.(Simple PROPN
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNAelectrophoresis ADJ
gel NOUN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
hoping VERB
thathe'd PROPN
seen VERB
some DET
essential ADJ
part NOUN
of ADP
the DET
control NOUN
mechanism NOUN
for ADP
eukaryoticgenes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
outbinding ADJ
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequencethat DET
occurs VERB
about ADV
500,000 NUM
times NOUN
in ADP
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
Unfortunately ADV
forWarren PROPN
's PART
fantasy NOUN
, PUNCT
it PRON
turns VERB
out ADP
to PART
be AUX
a DET
transposon NOUN
that PRON
is AUX
present ADJ
inso NOUN
many ADJ
copies NOUN
because SCONJ
it PRON
replicates VERB
itself PRON
and CCONJ
copies NOUN
itself PRON
back ADV
intothe PROPN
genome PROPN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
the DET
characteristics NOUN
of ADP
transposons NOUN
weremuch ADV
elucidated VERB
; PUNCT
the DET
necessity NOUN
of ADP
a DET
cellular ADJ
reverse NOUN
transcriptase NOUN
wasrecognized VERB
; PUNCT
and CCONJ
the DET
standard ADJ
method NOUN
of ADP
recognizing VERB
human ADJ
DNA PROPN
was AUX
created VERB
. PUNCT
Other ADJ
species NOUN
have AUX
different ADJ
sets NOUN
of ADP
transposons NOUN
. PUNCT
  SPACE
Fortunately ADV
for ADP
me PRON
, PUNCT
Warren PROPN
and CCONJ
I PRON
used VERB
to PART
eat VERB
dinner NOUN
at ADP
T.G.I. PROPN
Fridays VERB
all DET
the DET
time.)>It PROPN
further ADV
at ADP
least ADV
implicitly ADV
advances VERB
the DET
position NOUN
that SCONJ
> PRON
sciences PROPN
goes VERB
" PUNCT
forward ADV
" PUNCT
( PUNCT
and CCONJ
it PRON
is AUX
not PART
clear ADJ
what PRON
this DET
means VERB
given VERB
the DET
> X
context NOUN
in ADP
which PRON
it PRON
occurs VERB
) PUNCT
by ADP
generating VERB
in ADP
a DET
completely ADV
non ADJ
- ADJ
rational ADJ
> X
and CCONJ
even ADV
random ADJ
way NOUN
a DET
plethora NOUN
of ADP
hypotheses NOUN
and CCONJ
theories NOUN
that PRON
are AUX
then ADV
> X
weeded VERB
out ADP
via ADP
the DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
of ADP
science NOUN
. PUNCT
I'm PRON
not PART
sure ADJ
that SCONJ
it PRON
's AUX
random ADJ
. PUNCT
  SPACE
But CCONJ
there PRON
is AUX
no DET
known VERB
rational ADJ
mechanismfor NOUN
generating VERB
a DET
rich ADJ
set NOUN
of ADP
interesting ADJ
hypotheses NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
reallyworking VERB
in ADP
an DET
unknown ADJ
area NOUN
, PUNCT
it PRON
is AUX
unlikely ADJ
that SCONJ
you PRON
will AUX
have AUX
much ADJ
senseof ADJ
what PRON
might AUX
or CCONJ
might AUX
not PART
be AUX
true ADJ
; PUNCT
under ADP
those DET
circumstances NOUN
, PUNCT
the DET
bestthing NOUN
to PART
do AUX
is AUX
just ADV
follow VERB
whatever PRON
instincts NOUN
you PRON
have AUX
. PUNCT
  SPACE
If SCONJ
they PRON
are AUX
wrong ADJ
, PUNCT
you PRON
will AUX
find VERB
out ADP
soon ADV
enough ADV
; PUNCT
but CCONJ
at ADP
least ADJ
, PUNCT
you PRON
will AUX
find VERB
out ADP
_ PUNCT
something_.If NOUN
you PRON
try VERB
to PART
do AUX
experiments NOUN
at ADP
random ADJ
, PUNCT
with ADP
no DET
prior ADJ
conceptions NOUN
at ADP
allin PROPN
mind PROPN
, PUNCT
you PRON
will AUX
probably ADV
get AUX
nowhere.>(Though ADJ
why ADV
this DET
critical ADJ
> X
function NOUN
should AUX
be AUX
less ADV
subject ADJ
to ADP
the DET
non ADJ
- ADJ
rational ADJ
forces NOUN
is AUX
a DET
mystery NOUN
. PUNCT
Unfortunately ADV
, PUNCT
the DET
critical ADJ
function NOUN
does AUX
sometimes ADV
become VERB
hostage NOUN
tonon ADJ
- PUNCT
rational ADJ
forces NOUN
. PUNCT
  SPACE
Then ADV
we PRON
get VERB
varieties NOUN
of ADP
pathological ADJ
science NOUN
: PUNCT
Lysenko PROPN
, PUNCT
Mirsky PROPN
's PART
opposition NOUN
to ADP
DNA PROPN
- PUNCT
as SCONJ
- PUNCT
gene NOUN
, PUNCT
cold ADJ
fusion NOUN
, PUNCT
and CCONJ
so ADV
forth.>If ADJ
experimental ADJ
design NOUN
, PUNCT
hypotheses NOUN
creation NOUN
, PUNCT
and CCONJ
theory NOUN
construction NOUN
are AUX
> X
subject ADJ
to ADP
jealousies NOUN
and CCONJ
petty ADJ
hatreds NOUN
, PUNCT
then ADV
this DET
must AUX
be AUX
equally ADV
true ADJ
> X
of ADP
the DET
application NOUN
of ADP
any DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
concerning VERB
replication.>This PROPN
is AUX
what PRON
leads VERB
one NUM
( PUNCT
ala PROPN
Feyerabend PROPN
) PUNCT
to ADP
an DET
" PUNCT
anything PRON
goes VERB
" PUNCT
view.)I PROPN
do AUX
n't PART
agree VERB
that SCONJ
this DET
follows VERB
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
this DET
is AUX
_ PROPN
exactly ADV
_ ADP
the DET
point NOUN
atwhich PUNCT
I PRON
disagree VERB
with ADP
Feyerabend PROPN
. PUNCT
  SPACE
It PRON
is AUX
a DET
most ADV
important ADJ
part NOUN
of ADP
theculture NOUN
of ADP
science NOUN
that PRON
one PRON
keeps VERB
one PRON
's PART
jealousies NOUN
out SCONJ
of ADP
the DET
refereeingprocess NOUN
. PUNCT
  SPACE
Failures NOUN
there PRON
are AUX
aplenty ADJ
, PUNCT
but CCONJ
, PUNCT
on ADP
the DET
whole NOUN
, PUNCT
things NOUN
work VERB
out ADP
. PUNCT
Another DET
point NOUN
: PUNCT
there PRON
are AUX
a DET
couple NOUN
of ADP
senses NOUN
of ADP
the DET
phrase NOUN
` PUNCT
` PUNCT
experimentaldesign NOUN
' PUNCT
' PUNCT
. PUNCT
  SPACE
I PRON
'd AUX
say VERB
that SCONJ
the DET
less ADV
rational ADJ
part NOUN
is AUX
in ADP
experimental ADJ
_ PROPN
choice_,not PROPN
design NOUN
. PUNCT
  SPACE
Alexander PROPN
Fleming PROPN
( PUNCT
Proc PROPN
. PUNCT
Royal PROPN
Soc PROPN
. PROPN
, PUNCT
1922 NUM
) PUNCT
chose VERB
to PART
look VERB
forbacteriophage NOUN
in ADP
his PRON
own ADJ
mucus NOUN
for ADP
strange ADJ
reasons NOUN
( PUNCT
Phage NOUN
had AUX
previouslybeen NOUN
found VERB
in ADP
locust NOUN
diarrhea NOUN
; PUNCT
Fleming VERB
probably ADV
thought VERB
runny ADJ
bottom NOUN
, PUNCT
runnynose PROPN
, PUNCT
what PRON
the DET
hell NOUN
, PUNCT
it PRON
's AUX
worth ADJ
a DET
try NOUN
. PUNCT
) PUNCT
but CCONJ
his PRON
method NOUN
of ADP
looking VERB
for ADP
phagewas PROPN
well ADV
- PUNCT
designed VERB
to PART
detect VERB
anything PRON
phage NOUN
- PUNCT
like INTJ
; PUNCT
in ADP
fact NOUN
, PUNCT
he PRON
found VERB
lysozyme.>True PROPN
, PUNCT
the DET
generation NOUN
part NOUN
* PUNCT
can AUX
* PUNCT
be AUX
totally ADV
irrational ADJ
. PUNCT
  SPACE
But CCONJ
typically ADV
it PRON
is>*not VERB
* PUNCT
. PUNCT
  SPACE
Anecdotes VERB
concerning VERB
instances NOUN
where ADV
a DET
hypothesis NOUN
seems VERB
to PART
have AUX
> X
resulted VERB
in ADP
some DET
way NOUN
from ADP
a DET
dream NOUN
or CCONJ
from ADP
one PRON
's PART
political ADJ
views NOUN
simply ADV
> X
do AUX
not PART
generalize VERB
well ADV
to ADP
the DET
actual ADJ
history NOUN
of ADP
science NOUN
. PUNCT
It PRON
is AUX
not PART
clear ADJ
to ADP
me PRON
what PRON
you PRON
mean VERB
by ADP
rational ADJ
vs. CCONJ
irrational ADJ
. PUNCT
  SPACE
Perhapsyou NOUN
can AUX
give VERB
a DET
few ADJ
examples NOUN
of ADP
surprising ADJ
experiments NOUN
that PRON
were AUX
tried VERB
outfor ADP
perfectly ADV
rational ADJ
reasons NOUN
, PUNCT
or CCONJ
interesting ADJ
new ADJ
theories NOUN
that PRON
were AUX
firstadvanced VERB
from ADP
logical ADJ
grounds NOUN
. PUNCT
  SPACE
The DET
main ADJ
examples NOUN
I PRON
can AUX
think VERB
of ADP
are AUX
frommodern ADJ
high ADJ
- PUNCT
energy NOUN
physics NOUN
which PRON
is AUX
not PART
typical ADJ
of ADP
science NOUN
as SCONJ
a DET
whole.-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58828From NUM
: PUNCT
cab@col.hp.com PROPN
( PUNCT
Chris PROPN
Best)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?Jason NOUN
Chen PROPN
writes VERB
: PUNCT
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one NUM
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But CCONJ
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it.----------Yeah PROPN
, PUNCT
it PRON
might AUX
, PUNCT
if SCONJ
you PRON
only ADV
read VERB
the DET
part NOUN
you PRON
quoted VERB
. PUNCT
  SPACE
You PRON
somehow ADV
left VERB
out ADP
the DET
part NOUN
about ADP
" PUNCT
we PRON
all DET
ate VERB
the DET
same ADJ
thing NOUN
. PUNCT
" PUNCT
  SPACE
Changes VERB
things NOUN
a DET
bit NOUN
, PUNCT
eh?You X
complain VERB
that SCONJ
people NOUN
blame VERB
MSG PROPN
automatically ADV
, PUNCT
since SCONJ
it PRON
's AUX
an DET
unknown NOUN
andtherefore ADV
must AUX
be AUX
the DET
cause NOUN
. PUNCT
  SPACE
It PRON
is AUX
equally ADV
( PUNCT
if SCONJ
not PART
more ADJ
) PUNCT
unreasonable ADJ
todefend NOUN
it PRON
, PUNCT
automatically ADV
assuming VERB
that SCONJ
it PRON
CAN'T ADV
be AUX
the DET
culprit NOUN
. PUNCT
Pepper PROPN
makes VERB
me PRON
sneeze VERB
. PUNCT
  SPACE
If SCONJ
it PRON
does AUX
n't PART
affect VERB
you PRON
the DET
same ADJ
way NOUN
, PUNCT
fine ADJ
. PUNCT
Just ADV
do AUX
n't PART
tell VERB
me PRON
I PRON
'm AUX
wrong ADJ
for ADP
saying VERB
so ADV
. PUNCT
These DET
people NOUN
are AUX
n't PART
condemning VERB
Chinese ADJ
food NOUN
, PUNCT
Mr. PROPN
Chen PROPN
- PUNCT
just ADV
one NUM
of ADP
its PRON
( PUNCT
optional ADJ
) PUNCT
ingredients NOUN
. PUNCT
  SPACE
Try VERB
not PART
to PART
take VERB
it PRON
so ADV
personally ADV
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58829From NUM
: PUNCT
francis@ircam.fr X
( PUNCT
Joseph PROPN
Francis)Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
wear VERB
contacts NOUN
after ADP
RK PROPN
/ SYM
PRK?In PROPN
article NOUN
< X
1993Apr16.063425.163999@zeus.calpoly.edu NUM
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>I NUM
love VERB
the DET
FAQ PROPN
. PUNCT
       SPACE
> X
> X
The DET
comment NOUN
about ADP
contact NOUN
lenses NOUN
not PART
being AUX
an DET
option NOUN
for ADP
any DET
remaining VERB
> X
correction NOUN
after ADP
RK PROPN
and CCONJ
possibly ADV
after ADP
PRK PROPN
is AUX
interresting VERB
. PUNCT
  SPACE
Why ADV
is AUX
> X
this DET
? PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
for ADP
sure ADJ
whether SCONJ
this DET
applies VERB
to ADP
PRK PROPN
as SCONJ
well?I've NOUN
had AUX
PRK.I PROPN
would AUX
suggest VERB
asking VERB
a DET
doctor NOUN
about ADP
contacts NOUN
. PUNCT
Mine PRON
said VERB
yes INTJ
tocontacts NOUN
. PUNCT
I PRON
think VERB
the DET
scars NOUN
from ADP
RK PROPN
would AUX
preclude VERB
contacts.>Also NOUN
, PUNCT
why ADV
is AUX
it PRON
possible ADJ
to PART
get AUX
a DET
correction NOUN
in ADP
PRK PROPN
with ADP
involvement NOUN
of ADP
> X
only ADV
about ADV
5 NUM
% NOUN
of ADP
the DET
corneal ADJ
depth NOUN
, PUNCT
while SCONJ
RK PROPN
is AUX
done VERB
to ADP
a DET
depth NOUN
of ADP
up ADJ
to>95 NUM
% NOUN
? PUNCT
  SPACE
Why ADV
such DET
a DET
difference NOUN
? PUNCT
  SPACE
I PRON
thought VERB
the DET
proceedures NOUN
were AUX
simmilar ADJ
> X
with ADP
the DET
exception NOUN
of ADP
a DET
laser NOUN
being AUX
the DET
cutting VERB
tool NOUN
in ADP
PRK PROPN
. PUNCT
  SPACE
I PRON
must AUX
not PART
> X
be AUX
understanding VERB
all DET
of ADP
the DET
differences NOUN
. PUNCT
No INTJ
. PUNCT
RK PROPN
makes VERB
radial ADJ
cuts NOUN
around ADP
the DET
circumference NOUN
of ADP
the DET
cornea NOUN
, PUNCT
up ADV
to8 DET
I PRON
think VERB
, PUNCT
and CCONJ
these DET
change VERB
the DET
curvature NOUN
of ADP
the DET
cornea NOUN
through ADP
stresschages NOUN
. PUNCT
PRK PROPN
vaporizes VERB
( PUNCT
burns NOUN
) PUNCT
away ADV
a DET
thin ADJ
layer NOUN
from ADP
the DET
front NOUN
of ADP
thecornea NOUN
making VERB
the DET
optical ADJ
axis NOUN
of ADP
the DET
eye NOUN
shorter ADJ
. PUNCT
The DET
laser NOUN
doesn'tcut VERB
in ADP
PRK PROPN
, PUNCT
it PRON
vaporizes VERB
. PUNCT
In ADP
RK PROPN
, PUNCT
the DET
eye NOUN
is AUX
cut VERB
into.>In PROPN
the DET
FAQ PROPN
, PUNCT
the DET
vision NOUN
was AUX
considered VERB
less ADV
clear ADJ
after ADP
the DET
surgery NOUN
than SCONJ
> X
with ADP
glasses NOUN
alone ADV
. PUNCT
  SPACE
If SCONJ
this DET
is AUX
completly ADV
attributable ADJ
to ADP
the DET
> X
intentional ADJ
slight ADJ
undercorrection NOUN
, PUNCT
then ADV
it PRON
can AUX
be AUX
compensated VERB
for ADP
when ADV
> X
necessary ADJ
with ADP
glasses NOUN
( PUNCT
or CCONJ
contacts NOUN
, PUNCT
if SCONJ
they PRON
CAN AUX
be AUX
worn VERB
afterall NOUN
! PUNCT
) PUNCT
. PUNCT
  SPACE
It PRON
> X
is AUX
important ADJ
to PART
know VERB
if SCONJ
that DET
is AUX
not PART
the DET
case NOUN
, PUNCT
however ADV
, PUNCT
and CCONJ
some DET
other ADJ
> X
consequence NOUN
of ADP
the DET
surgery NOUN
would AUX
often ADV
interfere VERB
with ADP
clear ADJ
vision NOUN
. PUNCT
  SPACE
The DET
> X
first ADJ
thing NOUN
that PRON
came VERB
to ADP
my PRON
mind NOUN
was AUX
a DET
fogging NOUN
of ADP
the DET
lense NOUN
, PUNCT
which PRON
> X
glasses NOUN
could AUX
n't PART
help VERB
. PUNCT
> X
> X
would AUX
not PART
help VERB
. PUNCT
I PRON
find VERB
my PRON
vision NOUN
is AUX
more ADV
clear ADJ
for ADP
some DET
things NOUN
, PUNCT
and CCONJ
less ADV
clear ADJ
forothers NOUN
, PUNCT
only ADV
at ADP
night NOUN
. PUNCT
I PRON
notice VERB
a DET
definite ADJ
haloing NOUN
at ADP
night NOUN
in ADP
thedarkness NOUN
when ADV
I PRON
look VERB
at ADP
automobile NOUN
headlamps NOUN
, PUNCT
though SCONJ
this DET
is AUX
notsomething VERB
I PRON
spend VERB
inordinate ADJ
amounts NOUN
of ADP
time NOUN
doing VERB
. PUNCT
For ADP
ordinarythings NOUN
, PUNCT
my PRON
vision NOUN
, PUNCT
in ADP
particular ADJ
having VERB
a DET
fully ADV
- PUNCT
operating VERB
peripheralvision NOUN
, PUNCT
is AUX
clearer ADJ
than SCONJ
with ADP
glasses NOUN
, PUNCT
or CCONJ
contacts.-- ADV
| PROPN
Le PROPN
Jojo PROPN
: PUNCT
Fresh PROPN
' CCONJ
n CCONJ
' PUNCT
Clean ADJ
, PUNCT
speaking VERB
out SCONJ
to ADP
the DET
way NOUN
you PRON
want VERB
to PART
live| VERB
today NOUN
; PUNCT
American PROPN
- PUNCT
All DET
American PROPN
; PUNCT
doing VERB
, PUNCT
a DET
bit NOUN
so ADV
, PUNCT
and CCONJ
even ADV
more ADV
so ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58830From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5JDuo.K13@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>Of ADV
course NOUN
we PRON
ca AUX
n't PART
hope VERB
( PUNCT
currently ADV
at ADP
least ADJ
) PUNCT
to PART
explain VERB
how ADV
or CCONJ
why ADV
> X
Kekule PROPN
had AUX
the DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails.>Surely ADV
it PRON
was AUX
n't PART
the DET
* PUNCT
only ADV
* PUNCT
daydream NOUN
he PRON
had AUX
. PUNCT
  SPACE
What PRON
was AUX
special ADJ
about>*this PROPN
* PUNCT
one NUM
? PUNCT
  SPACE
Could AUX
it PRON
have AUX
had VERB
something PRON
to PART
do AUX
with ADP
a DET
perceived>*analogy NOUN
* PUNCT
between ADP
the DET
geometry NOUN
of ADP
the DET
snakes NOUN
and CCONJ
problems NOUN
concerning VERB
> X
geometry NOUN
of ADP
molecules NOUN
? PUNCT
  SPACE
Is AUX
such ADJ
analogical ADJ
reasoning NOUN
" PUNCT
extra ADJ
- PUNCT
scientific"?>Or ADJ
is AUX
it PRON
rather ADV
at ADP
the DET
very ADJ
heart NOUN
of ADP
science NOUN
( PUNCT
Perice PROPN
's PART
notion NOUN
of ADP
abduction,>the DET
use NOUN
of ADP
models NOUN
within ADP
and CCONJ
across ADP
disciplines NOUN
) PUNCT
? PUNCT
  SPACE
Upon SCONJ
close ADJ
examination,>is ADV
there PRON
a DET
non ADJ
- ADJ
rational ADJ
mystical ADJ
leap NOUN
taking VERB
place NOUN
, PUNCT
or CCONJ
is AUX
it PRON
perhaps ADV
> X
closer ADV
to ADP
a DET
formal ADJ
( PUNCT
though SCONJ
often ADV
incomplete ADJ
) PUNCT
analogy NOUN
or CCONJ
model?I PROPN
feel VERB
the DET
need NOUN
to PART
repeat VERB
myself PRON
: PUNCT
Kekule PROPN
's PART
dream NOUN
is AUX
a DET
rather ADV
bad ADJ
exampleof NOUN
much ADJ
of ADP
anything PRON
. PUNCT
  SPACE
Read PROPN
Root PROPN
- PUNCT
Bernstein PROPN
's PART
book NOUN
on ADP
the DET
history NOUN
of ADP
thebenzene NOUN
ring.-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58831From NUM
: PUNCT
turner@reed.edu PART
( PUNCT
Havok PROPN
impersonated)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qlgdrINN79b@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>In PROPN
article NOUN
< X
1993Apr15.173902.66278@cc.usu.edu PROPN
> X
, PUNCT
slyx0@cc.usu.edu ADV
writes:>=Surprise PROPN
surprise VERB
, PUNCT
different ADJ
people NOUN
react VERB
differently ADV
to ADP
different ADJ
things NOUN
. PUNCT
One>=slightly ADV
off ADP
the DET
subject ADJ
case NOUN
in ADP
point NOUN
. PUNCT
My PRON
brother NOUN
got VERB
stung VERB
by ADP
a DET
bee NOUN
. PUNCT
I PRON
know>=he VERB
is AUX
allergic ADJ
to ADP
bee PROPN
stings NOUN
, PUNCT
but CCONJ
that SCONJ
his PRON
reaction NOUN
is AUX
severe ADJ
localized>=swelling NOUN
, PUNCT
not PART
anaphylactic ADJ
shock NOUN
. PUNCT
I PRON
could AUX
not PART
convince VERB
the DET
doctors NOUN
of ADP
that,>=however PROPN
, PUNCT
because SCONJ
that DET
's AUX
not PART
written VERB
in ADP
their PRON
little ADJ
rule NOUN
book.>Of PROPN
course NOUN
, PUNCT
bee PROPN
venom PROPN
is AUX
n't PART
a DET
single ADJ
chemical NOUN
. PUNCT
  SPACE
Could AUX
be AUX
your PRON
brother NOUN
is AUX
> X
reacting VERB
to ADP
a DET
different ADJ
component NOUN
than SCONJ
the DET
one NOUN
that PRON
causes VERB
anaphylactic ADJ
shock NOUN
> X
in ADP
other ADJ
people NOUN
. PUNCT
Hmmm INTJ
. PUNCT
  SPACE
The DET
last ADJ
time NOUN
I PRON
got VERB
stung VERB
by ADP
a DET
bee NOUN
I PRON
experienced VERB
the DET
same ADJ
reactionthe NOUN
first ADJ
poster NOUN
's PART
brother NOUN
did AUX
. PUNCT
  SPACE
We PRON
went VERB
off ADP
to ADP
the DET
doctor NOUN
to PART
see VERB
if SCONJ
Ishould PROPN
worry VERB
about ADP
the DET
fact NOUN
that SCONJ
my PRON
foot NOUN
was AUX
now ADV
about ADV
3 NUM
times NOUN
it PRON
's AUX
normalsize VERB
. PUNCT
  SPACE
( PUNCT
And CCONJ
itched VERB
! PUNCT
! PUNCT
! PUNCT
  SPACE
Ow INTJ
! PUNCT
) PUNCT
  SPACE
He PRON
basically ADV
said VERB
I PRON
should AUX
n't PART
this DET
time NOUN
, PUNCT
butthat PROPN
bee PROPN
sting VERB
allergy NOUN
was AUX
not PART
something PRON
you PRON
tended VERB
to PART
get AUX
aclimatized VERB
to ADP
, PUNCT
but CCONJ
were AUX
something PRON
that PRON
each DET
time NOUN
got VERB
progressively ADV
worse ADJ
generally ADV
and CCONJ
thatnext NOUN
time NOUN
could AUX
be AUX
the DET
time NOUN
I PRON
go VERB
into ADP
anaphylactic ADJ
shock NOUN
. PUNCT
  SPACE
Admittedly ADV
thiswas VERB
many ADJ
years NOUN
ago ADV
when ADV
I PRON
was AUX
young ADJ
. PUNCT
  SPACE
Since SCONJ
then ADV
I PRON
just ADV
make VERB
sure ADJ
I PRON
don'tget VERB
stung ADJ
. PUNCT
  SPACE
I PRON
also ADV
should AUX
carry VERB
a DET
bee PROPN
sting NOUN
kit NOUN
with ADP
me PRON
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
. PUNCT
  SPACE
This DET
is AUX
n't PART
scientific ADJ
or CCONJ
proof ADJ
, PUNCT
but CCONJ
this DET
would AUX
lead VERB
me PRON
to PART
believe VERB
it PRON
's AUX
not PART
adifferent ADJ
reaction NOUN
, PUNCT
just ADV
a DET
different ADJ
degree NOUN
of ADP
reaction NOUN
. PUNCT
  SPACE
Allergies NOUN
workthat DET
way NOUN
. PUNCT
  SPACE
People NOUN
have AUX
various ADJ
reactions NOUN
. PUNCT
  SPACE
Sort ADV
of ADV
like SCONJ
diabetes NOUN
, PUNCT
somepeople PROPN
can AUX
get AUX
by ADP
with ADP
just ADV
monitoring VERB
their PRON
diet NOUN
, PUNCT
others NOUN
have AUX
to PART
monitortheir VERB
diet NOUN
and CCONJ
use VERB
insulin NOUN
sometimes ADV
while SCONJ
others NOUN
have AUX
to PART
watch VERB
their PRON
dietlike NOUN
a DET
hawk NOUN
and CCONJ
use VERB
insulin NOUN
regularly ADV
. PUNCT
  SPACE
I PRON
think VERB
MSG PROPN
is AUX
probably ADV
similar ADJ
... PUNCT
some DET
people NOUN
have AUX
allergic ADJ
reactions NOUN
toit PROPN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
allergic ADJ
to ADP
fermented VERB
things NOUN
and CCONJ
ca AUX
n't PART
use VERB
soysauce NOUN
... PUNCT
but CCONJ
the DET
chinese PROPN
have AUX
been AUX
using VERB
it PRON
for ADP
centuries NOUN
... PUNCT
that DET
doesn'tnecessarily ADV
mean VERB
that SCONJ
it PRON
's AUX
safe ADJ
for ADP
everyone PRON
. PUNCT
 	 SPACE
Johannaturner@reed.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58832From NUM
: PUNCT
DEHP@calvin.edu PROPN
( PUNCT
Phil PROPN
de PROPN
Haan)Subject NOUN
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibioticsIn NOUN
article NOUN
< X
1qk708INNa12@mojo.eng.umd.edu NUM
> X
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark PROPN
) PUNCT
writes:>You PROPN
can AUX
also ADV
swab VERB
the DET
inside NOUN
of ADP
your PRON
nose NOUN
with ADP
Bacitracin PROPN
using VERB
a DET
> X
Q NOUN
tip NOUN
. PUNCT
Bacitracin PROPN
is AUX
an DET
antibiotic ADJ
that PRON
can AUX
be AUX
bought VERB
OTC PROPN
as SCONJ
an DET
> X
ointment NOUN
in ADP
a DET
tube NOUN
. PUNCT
The DET
doctor NOUN
I PRON
listen VERB
to ADP
on ADP
the DET
radio NOUN
says VERB
to PART
apply VERB
> X
it PRON
for ADP
30 NUM
days NOUN
, PUNCT
while SCONJ
you PRON
are AUX
taking VERB
other ADJ
antibiotics NOUN
by ADP
mouth NOUN
. PUNCT
I PRON
have AUX
a DET
new ADJ
doctor NOUN
who PRON
gave VERB
me PRON
a DET
prescription NOUN
today NOUN
for ADP
something PRON
called VERB
Septra PROPN
DS PROPN
. PUNCT
  SPACE
He PRON
said VERB
it PRON
may AUX
cause VERB
GI PROPN
problems NOUN
and CCONJ
I PRON
have AUX
a DET
sensitive ADJ
stomach NOUN
to PART
begin VERB
with ADP
. PUNCT
  SPACE
Anybody PRON
ever ADV
taken VERB
this DET
antibiotic ADJ
. PUNCT
  SPACE
Any DET
good ADJ
? PUNCT
  SPACE
Suggestions NOUN
for ADP
avoiding VERB
an DET
upset ADJ
stomach NOUN
? PUNCT
  SPACE
Other ADJ
tips NOUN
? PUNCT
       SPACE
Phil PROPN
de PROPN
Haan PROPN
( PUNCT
DoD NOUN
# NOUN
0578 NUM
) PUNCT
Why ADV
yes INTJ
. PUNCT
  SPACE
That DET
is AUX
my PRON
1974 NUM
Honda PROPN
CL360.============================================================================= PROPN
  SPACE
" PUNCT
That DET
's AUX
the DET
nature NOUN
of ADP
being AUX
an DET
executive NOUN
in ADP
America PROPN
. PUNCT
  SPACE
You PRON
have AUX
to PART
rely VERB
on ADP
    SPACE
other ADJ
people NOUN
to PART
do AUX
something PRON
you PRON
used VERB
to PART
do AUX
yourself PRON
. PUNCT
" PUNCT
-- PUNCT
Donald PROPN
Fehr PROPN
, PUNCT
        SPACE
executive ADJ
director NOUN
, PUNCT
Major PROPN
League PROPN
Baseball PROPN
Players PROPN
Association.=============================================================================Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58833From NUM
: PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick PROPN
) PUNCT
writes:>Of PROPN
course NOUN
, PUNCT
bee PROPN
venom PROPN
is AUX
n't PART
a DET
single ADJ
chemical NOUN
. PUNCT
  SPACE
Could AUX
be AUX
your PRON
brother NOUN
is AUX
> X
reacting VERB
to ADP
a DET
different ADJ
component NOUN
than SCONJ
the DET
one NOUN
that PRON
causes VERB
anaphylactic ADJ
shock NOUN
> X
in ADP
other ADJ
people.>Similarly PROPN
, PUNCT
Chinese ADJ
food NOUN
is AUX
n't PART
just ADV
MSG PROPN
. PUNCT
  SPACE
There PRON
are AUX
a DET
lot NOUN
of ADP
other ADJ
> NUM
ingredients NOUN
in ADP
it PRON
. PUNCT
  SPACE
Why ADV
, PUNCT
when ADV
someone PRON
eats VERB
something PRON
with ADP
lots NOUN
of ADP
> NOUN
ingredients NOUN
they PRON
do AUX
n't PART
normally ADV
consume VERB
, PUNCT
one NUM
of ADP
which PRON
happens VERB
to PART
be AUX
> X
MSG PROPN
, PUNCT
do AUX
they PRON
immediately ADV
conclude VERB
that SCONJ
any DET
negative ADJ
reaction NOUN
is AUX
to PART
> X
the DET
MSG PROPN
? PUNCT
ARGHHHHHHHHHhREAD VERB
THE DET
MEMOS!!!!I PROPN
said VERB
that SCONJ
I PRON
PERSONALLY PROPN
had AUX
other ADJ
people NOUN
order VERB
the DET
EXACT PROPN
SAME PROPN
FOOD PROPN
atTWO PRON
DIFFERENT ADJ
TIMES NOUN
from ADP
the DET
SAME PROPN
RESTAURANT PROPN
and CCONJ
the DET
people NOUN
thatordered VERB
the DET
food NOUN
for ADP
me PRON
did AUX
NOT ADV
TELL VERB
ME PROPN
which PRON
time NOUN
the DET
MSG PROPN
was AUX
in ADP
thefood NOUN
and CCONJ
which PRON
time NOUN
it PRON
was AUX
not PART
in ADP
the DET
food NOUN
. PUNCT
ONE NUM
TIME NOUN
I PRON
HAD VERB
A DET
REACTIONONE NOUN
TIME NOUN
I PRON
DID VERB
NOTTHE PROPN
REACTION NOUN
CAME VERB
THE DET
TIME NOUN
THE DET
MSG NOUN
WAS VERB
IN ADP
THE DET
FOODTHAT PROPN
WAS VERB
THE DET
ONLY ADJ
DIFFERENCESAME PROPN
RESTAURANT PROPN
- PUNCT
SAME PROPN
INGREDIENTS!!!>Why NUM
, PUNCT
when ADV
someone PRON
eats VERB
something PRON
with ADP
lots NOUN
of ADP
ingredients NOUN
they PRON
don't VERB
> X
normally ADV
consume VERB
, PUNCT
one NUM
of ADP
which PRON
happens VERB
to PART
be AUX
MSG PROPN
, PUNCT
do AUX
they PRON
immediately ADV
> X
conclude VERB
that SCONJ
any DET
negative ADJ
reaction NOUN
is AUX
to ADP
the DET
MSG PROPN
? PUNCT
I PRON
eat VERB
lots NOUN
of ADP
Chinese ADJ
food NOUN
- PUNCT
I PRON
LOVE VERB
Chinese ADJ
food NOUN
. PUNCT
  SPACE
I PRON
've AUX
just ADV
learnedthe ADJ
followingIF PROPN
I PRON
get VERB
food NOUN
at ADP
one NUM
of ADP
the DET
restaurants NOUN
that PRON
DOES VERB
NOT ADV
USE VERB
MSG NOUN
orIF NOUN
I PRON
prepare VERB
the DET
food NOUN
myself PRON
without ADP
MSG PROPN
or CCONJ
IF ADP
I PRON
order VERB
the DET
food NOUN
from ADP
a DET
restaurant NOUN
that PRON
will AUX
hold VERB
the DET
MSG NOUN
( PUNCT
and CCONJ
Inever PROPN
get AUX
soup NOUN
unless SCONJ
it PRON
's AUX
from ADP
a DET
restaurant NOUN
that PRON
cooks NOUN
without ADP
theMSG)I PUNCT
DO VERB
NOT ADV
GET VERB
A DET
REACTION!!!!OKAYDO NOUN
YOU PRON
UNDERSTAND!!!!I PROPN
GET VERB
A DET
REACTION NOUN
FROM ADP
MSGI PROPN
DO VERB
NOT ADV
GET VERB
A DET
REACTION NOUN
WHEN ADV
THERE PRON
IS VERB
NO DET
MSGIf NOUN
you PRON
're AUX
having VERB
trouble NOUN
understand VERB
this DET
, PUNCT
please INTJ
tell VERB
me PRON
which PRON
of ADP
thewords NOUN
you PRON
do AUX
not PART
understand VERB
and CCONJ
I PRON
'll AUX
look VERB
them PRON
up ADP
in ADP
the DET
dictionaryfor NOUN
you.--The ADJ
great ADJ
secret NOUN
of ADP
successful ADJ
marriage NOUN
is AUX
to PART
treat VERB
all DET
disastersas ADJ
incidents NOUN
and CCONJ
none NOUN
of ADP
the DET
incidents NOUN
as SCONJ
disasters NOUN
. PUNCT
      SPACE
-- PUNCT
Harold PROPN
Nicholson PROPN
    SPACE
Mary PROPN
Allison PROPN
( PUNCT
mary@uicsl.csl.uiuc.edu PROPN
) PUNCT
Urbana PROPN
, PUNCT
IllinoisNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58834From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qmlgaINNjab@hp-col.col.hp.com X
> X
, PUNCT
cab@col.hp.com PROPN
( PUNCT
Chris PROPN
Best PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Jason PROPN
Chen PROPN
writes:| PROPN
> X
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one| ADV
> X
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But| PROPN
> X
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it.| PROPN
> X
| ADP
> X
----------| NUM
> X
| X
> X
Yeah INTJ
, PUNCT
it PRON
might AUX
, PUNCT
if SCONJ
you PRON
only ADV
read VERB
the DET
part NOUN
you PRON
quoted VERB
. PUNCT
  SPACE
You PRON
somehow ADV
left VERB
| PROPN
> X
out SCONJ
the DET
part NOUN
about ADP
" PUNCT
we PRON
all DET
ate VERB
the DET
same ADJ
thing NOUN
. PUNCT
" PUNCT
  SPACE
Changes VERB
things NOUN
a DET
bit NOUN
, PUNCT
eh?Food NOUN
poisoning NOUN
is AUX
only ADV
one NUM
of ADP
the DET
many ADJ
possible ADJ
causes NOUN
. PUNCT
Yes INTJ
, PUNCT
even ADV
other ADJ
peopleshare VERB
the DET
food NOUN
. PUNCT
| ADP
> X
| INTJ
> X
You PRON
complain VERB
that SCONJ
people NOUN
blame VERB
MSG PROPN
automatically ADV
, PUNCT
since SCONJ
it PRON
's AUX
an DET
unknown ADJ
and| PROPN
> X
therefore ADV
must AUX
be AUX
the DET
cause NOUN
. PUNCT
  SPACE
It PRON
is AUX
equally ADV
( PUNCT
if SCONJ
not PART
more ADJ
) PUNCT
unreasonable ADJ
to| X
> X
defend VERB
it PRON
, PUNCT
automatically ADV
assuming VERB
that SCONJ
it PRON
CAN'T ADV
be AUX
the DET
culprit NOUN
. PUNCT
Boy INTJ
, PUNCT
you PRON
computer NOUN
people NOUN
only ADV
know VERB
1s NOUN
and CCONJ
0s INTJ
, PUNCT
but CCONJ
not PART
much ADJ
about ADP
logic NOUN
. PUNCT
: PUNCT
-)No PROPN
. PUNCT
I PRON
did AUX
not PART
said VERB
MSG PROPN
was AUX
not PART
the DET
culprit NOUN
. PUNCT
What PRON
I PRON
argued VERB
was AUX
that SCONJ
thatthere NOUN
was AUX
enough ADJ
reasonable ADJ
doubt NOUN
to PART
convict VERB
MSG PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
convict VERB
MSG NOUN
, PUNCT
show VERB
me PRON
the DET
evidence NOUN
, PUNCT
not PART
quilty NOUN
by ADP
suspicion.| PROPN
> X
Pepper PROPN
makes VERB
me PRON
sneeze VERB
. PUNCT
  SPACE
If SCONJ
it PRON
does AUX
n't PART
affect VERB
you PRON
the DET
same ADJ
way NOUN
, PUNCT
fine.| PROPN
> X
Just ADV
do AUX
n't PART
tell VERB
me PRON
I PRON
'm AUX
wrong ADJ
for ADP
saying VERB
so ADV
. PUNCT
Nobody PRON
is AUX
forcing VERB
you PRON
to PART
change VERB
what PRON
you PRON
believe VERB
. PUNCT
  SPACE
But CCONJ
I PRON
certainly ADV
don'twant VERB
to PART
see VERB
somebody PRON
preach VERB
to PART
ban VERB
pepper NOUN
because SCONJ
that DET
makes VERB
him PRON
/ SYM
hersneeze PROPN
. PUNCT
That DET
is AUX
exactly ADV
what PRON
some DET
anti ADJ
- ADJ
MSG ADJ
activitiests NOUN
are AUX
doing| NOUN
> X
These DET
people NOUN
are AUX
n't PART
condemning VERB
Chinese ADJ
food NOUN
, PUNCT
Mr. PROPN
Chen PROPN
- PUNCT
just ADV
one NUM
of ADP
its PRON
| PROPN
> X
( PUNCT
optional ADJ
) PUNCT
ingredients NOUN
. PUNCT
  SPACE
Try VERB
not PART
to PART
take VERB
it PRON
so ADV
personally ADV
. PUNCT
Look VERB
, PUNCT
people NOUN
with ADP
a DET
last ADJ
Chen PROPN
do AUX
n't PART
necessarily ADV
own VERB
a DET
Chinese ADJ
restaurant NOUN
. PUNCT
I PRON
am AUX
not PART
interested ADJ
if SCONJ
you PRON
enjoy VERB
Chinese ADJ
food NOUN
or CCONJ
not PART
. PUNCT
Exploiting VERB
my PRON
lastname NOUN
to PART
discredit VERB
me PRON
on ADP
the DET
issue NOUN
is AUX
hitting VERB
below ADP
the DET
belt NOUN
. PUNCT
What PRON
I PRON
am AUX
interested ADJ
in ADP
is AUX
the DET
truth NOUN
. PUNCT
Let VERB
me PRON
give VERB
you PRON
an DET
excert ADJ
froma NOUN
recent ADJ
FDA PROPN
hearing NOUN
: PUNCT
           SPACE
` PUNCT
` PUNCT
There PRON
is AUX
no DET
evidence NOUN
orally ADV
consumed VERB
glutamate NOUN
has AUX
any DET
effecton PROPN
the DET
brain NOUN
, PUNCT
' PUNCT
' PUNCT
said VERB
Dr. PROPN
Richard PROPN
Wurtman PROPN
of ADP
Massachusetts PROPN
Instituteof PROPN
Technology PROPN
. PUNCT
The DET
anecdotal ADJ
experiences NOUN
of ADP
individuals NOUN
is``superstition NUM
, PUNCT
not PART
science NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
` PUNCT
` PUNCT
I PRON
do AUX
n't PART
think VERB
glutamatehas PROPN
made VERB
them PRON
sick ADJ
. PUNCT
''And VERB
Dr. PROPN
Robert PROPN
Kenney PROPN
of ADP
George PROPN
Washington PROPN
University PROPN
conducted VERB
an DET
doubleblind NOUN
test NOUN
in ADP
1980 NUM
showing VERB
that SCONJ
the DET
35 NUM
people NOUN
who PRON
reacted VERB
to ADP
MSG PROPN
alsohad NOUN
similar ADJ
reaction NOUN
when ADV
they PRON
thought VERB
they PRON
had AUX
MSG PROPN
but CCONJ
actually ADV
not PART
. PUNCT
Although SCONJ
there PRON
are AUX
many ADJ
contradicting VERB
personal ADJ
stories NOUN
told VERB
in ADP
this DET
group NOUN
, PUNCT
some DET
of ADP
them PRON
might AUX
have AUX
been AUX
due ADJ
to ADP
other ADJ
causes NOUN
. PUNCT
But CCONJ
because SCONJ
the DET
anti ADJ
MSGemotion NOUN
runs VERB
so ADV
high ADJ
, PUNCT
that SCONJ
some DET
blame VERB
it PRON
for ADP
anything PRON
and CCONJ
everything PRON
. PUNCT
My PRON
purpose NOUN
is AUX
to PART
present VERB
a DET
balance NOUN
view NOUN
on ADP
the DET
issue NOUN
, PUNCT
although SCONJ
I PRON
am AUX
probably20 NOUN
- PUNCT
1 NUM
outnumbered VERB
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58835From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
wear VERB
contacts NOUN
after ADP
RK PROPN
/ SYM
PRK?In PROPN
article NOUN
< X
1993Apr16.063425.163999@zeus.calpoly.edu NUM
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>I NUM
love VERB
the DET
FAQ PROPN
. PUNCT
       SPACE
> X
> X
The DET
comment NOUN
about ADP
contact NOUN
lenses NOUN
not PART
being AUX
an DET
option NOUN
for ADP
any DET
remaining VERB
> X
correction NOUN
after ADP
RK PROPN
and CCONJ
possibly ADV
after ADP
PRK PROPN
is AUX
interresting VERB
. PUNCT
  SPACE
Why ADV
is AUX
> X
this DET
? PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
for ADP
sure ADJ
whether SCONJ
this DET
applies VERB
to ADP
PRK PROPN
as SCONJ
well?>>Also PROPN
, PUNCT
why ADV
is AUX
it PRON
possible ADJ
to PART
get AUX
a DET
correction NOUN
in ADP
PRK PROPN
with ADP
involvement NOUN
of ADP
> X
only ADV
about ADV
5 NUM
% NOUN
of ADP
the DET
corneal ADJ
depth NOUN
, PUNCT
while SCONJ
RK PROPN
is AUX
done VERB
to ADP
a DET
depth NOUN
of ADP
up ADJ
to>95 NUM
% NOUN
? PUNCT
  SPACE
Why ADV
such DET
a DET
difference?In PROPN
myopia NOUN
the DET
cornea NOUN
is AUX
too ADV
curved ADJ
. PUNCT
  SPACE
There PRON
is AUX
too ADV
much ADJ
of ADP
a DET
bulge NOUN
in ADP
thecenter NOUN
. PUNCT
In ADP
PRK PROPN
the DET
laser NOUN
removes VERB
a DET
small ADJ
amount NOUN
of ADP
material NOUN
from ADP
the DET
center NOUN
. PUNCT
In ADP
RK PROPN
the DET
surgeon NOUN
cuts VERB
incisions NOUN
near SCONJ
the DET
edge NOUN
. PUNCT
  SPACE
They PRON
heal VERB
, PUNCT
and CCONJ
the DET
scarringreshapes NOUN
the DET
cornea NOUN
. PUNCT
Entirely ADV
different ADJ
mechanisms NOUN
, PUNCT
and CCONJ
the DET
action NOUN
is AUX
in ADP
a DET
different ADJ
place.-dkNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58836From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qmlgaINNjab@hp-col.col.hp.com X
> X
, PUNCT
cab@col.hp.com PROPN
( PUNCT
Chris PROPN
Best ADV
) PUNCT
writes:==Jason PROPN
Chen PROPN
writes:= PROPN
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one= ADP
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But= INTJ
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it.==----------==Yeah PUNCT
, PUNCT
it PRON
might AUX
, PUNCT
if SCONJ
you PRON
only ADV
read VERB
the DET
part NOUN
you PRON
quoted VERB
. PUNCT
  SPACE
You PRON
somehow ADV
left VERB
= NOUN
out SCONJ
the DET
part NOUN
about ADP
" PUNCT
we PRON
all DET
ate VERB
the DET
same ADJ
thing NOUN
. PUNCT
" PUNCT
  SPACE
Changes VERB
things NOUN
a DET
bit NOUN
, PUNCT
eh?Perhaps NOUN
. PUNCT
  SPACE
Now ADV
, PUNCT
just ADV
what PRON
leads VERB
you PRON
to PART
believe VERB
that SCONJ
it PRON
was AUX
MSG PROPN
and CCONJ
not PART
someother PROPN
ingredient NOUN
in ADP
the DET
food NOUN
that PRON
made VERB
you PRON
ill?=These ADJ
people NOUN
are AUX
n't PART
condemning VERB
Chinese ADJ
food NOUN
, PUNCT
Mr. PROPN
Chen PROPN
- PUNCT
just ADV
one NUM
of ADP
its PRON
= SYM
( PUNCT
optional ADJ
) PUNCT
ingredients NOUN
. PUNCT
  SPACE
Try VERB
not PART
to PART
take VERB
it PRON
so ADV
personally ADV
. PUNCT
And CCONJ
you PRON
're AUX
condemning VERB
one NUM
particular ADJ
ingredient NOUN
without ADP
any DET
evidence NOUN
thatthat PRON
's AUX
the DET
ingredient NOUN
to PART
which PRON
you PRON
reacted.--------------------------------------------------------------------------------Carl ADJ
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58837Subject NUM
: PUNCT
prozacFrom ADP
: PUNCT
agilmet@eis.calstate.edu PROPN
( PUNCT
Adriana PROPN
Gilmete)Can VERB
anyone PRON
help VERB
me PRON
find VERB
any DET
information NOUN
on ADP
the DET
drug NOUN
Prozac PROPN
? PUNCT
  SPACE
I PRON
am AUX
writinga ADJ
report NOUN
on ADP
the DET
inventors NOUN
, PUNCT
Eli PROPN
Lilly PROPN
and CCONJ
Co. PROPN
, PUNCT
and CCONJ
the DET
product NOUN
. PUNCT
  SPACE
I PRON
need VERB
asmuch ADJ
help NOUN
as SCONJ
I PRON
can AUX
get AUX
. PUNCT
   SPACE
Thanks INTJ
a DET
lot NOUN
, PUNCT
Adriana PROPN
Gilmete PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58838From NUM
: PUNCT
libman@hsc.usc.edu PROPN
( PUNCT
Marlena PROPN
Libman)Subject NOUN
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemI PROPN
need VERB
advice NOUN
with ADP
a DET
situation NOUN
which PRON
occurred VERB
between ADP
me PRON
and CCONJ
a DET
physicanwhich PROPN
upset VERB
me PRON
. PUNCT
  SPACE
I PRON
saw VERB
this DET
doctor NOUN
for ADP
a DET
problem NOUN
with ADP
recurring VERB
pain NOUN
. PUNCT
He PRON
suggested VERB
medication NOUN
and CCONJ
a DET
course NOUN
of ADP
treatment NOUN
, PUNCT
and CCONJ
told VERB
me PRON
that SCONJ
Ineed PROPN
to PART
call VERB
him PRON
7 NUM
days NOUN
after ADP
I PRON
begin VERB
the DET
medication NOUN
so SCONJ
that SCONJ
he PRON
maymonitor VERB
its PRON
effectiveness NOUN
, PUNCT
as ADV
well ADV
as SCONJ
my PRON
general ADJ
health NOUN
. PUNCT
I PRON
did AUX
exactly ADV
as SCONJ
he PRON
asked VERB
, PUNCT
and CCONJ
made VERB
the DET
call NOUN
( PUNCT
reaching VERB
his PRON
secretary).I NOUN
explained VERB
to ADP
her PRON
that SCONJ
I PRON
was AUX
following VERB
up ADP
at ADP
the DET
doctor NOUN
's PART
request NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
was AUX
worried ADJ
because SCONJ
the DET
pain NOUN
episodes NOUN
were AUX
becoming VERB
morefrequent NOUN
and CCONJ
the DET
medication NOUN
did AUX
not PART
seem VERB
effective ADJ
. PUNCT
The DET
doctor NOUN
called VERB
me PRON
back ADP
, PUNCT
and CCONJ
his PRON
first ADJ
words NOUN
were AUX
, PUNCT
" PUNCT
Whatever PRON
you PRON
want VERB
, PUNCT
you'd NOUN
better ADV
make VERB
it PRON
quick ADJ
. PUNCT
  SPACE
I PRON
'm AUX
very ADV
busy ADJ
and CCONJ
do AUX
n't PART
have AUX
time NOUN
to PART
chit VERB
- PUNCT
chat NOUN
with ADP
you PRON
! PUNCT
" PUNCT
  SPACE
I PRON
told VERB
him PRON
I PRON
was AUX
simply ADV
following VERB
his PRON
instructions NOUN
tocall NOUN
on ADP
the DET
7th ADJ
day NOUN
to PART
status VERB
him PRON
, PUNCT
and CCONJ
that SCONJ
I PRON
was AUX
feeling VERB
worse ADJ
. PUNCT
  SPACE
I PRON
then ADV
asked VERB
if SCONJ
perhaps ADV
there PRON
was AUX
a DET
better ADJ
time NOUN
for ADP
us PRON
to PART
talk VERB
when ADV
hehad VERB
more ADJ
time NOUN
. PUNCT
  SPACE
He PRON
responded VERB
, PUNCT
" PUNCT
Just ADV
spit VERB
it PRON
out ADP
now ADV
because SCONJ
no DET
time NOUN
isa PROPN
good ADJ
time NOUN
. PUNCT
" PUNCT
  SPACE
( PUNCT
Said VERB
in ADP
a DET
raised VERB
voice NOUN
. PUNCT
) PUNCT
  SPACE
I PRON
started VERB
to PART
feel VERB
upset ADJ
andtried VERB
to PART
explain VERB
quickly ADV
what PRON
was AUX
going VERB
on ADP
with ADP
my PRON
condition NOUN
but CCONJ
mynervousness NOUN
interfered VERB
with ADP
my PRON
choice NOUN
of ADP
words NOUN
and CCONJ
I PRON
kind ADV
of ADV
stutteredand NOUN
then ADV
said VERB
" PUNCT
well INTJ
, PUNCT
never ADV
mind VERB
" PUNCT
and CCONJ
he PRON
said VERB
he PRON
'll AUX
talk VERB
to ADP
variouscolleagues NOUN
about ADP
other ADJ
medications NOUN
and CCONJ
he PRON
'll AUX
call VERB
me PRON
some DET
other ADJ
time NOUN
. PUNCT
This DET
doctor NOUN
called VERB
me PRON
that DET
evening NOUN
and CCONJ
said VERB
because SCONJ
I PRON
did AUX
n't PART
expressmyself PRON
well ADV
, PUNCT
he PRON
was AUX
confused ADJ
about ADP
what PRON
I PRON
wanted VERB
. PUNCT
  SPACE
At ADP
this DET
point NOUN
Iwas PROPN
pretty ADV
upset ADJ
and CCONJ
I PRON
told VERB
him PRON
( PUNCT
in ADP
an DET
amazingly ADV
polite ADJ
voice NOUN
consideringhow NOUN
angry ADJ
I PRON
felt VERB
) PUNCT
that SCONJ
his PRON
earlier ADJ
manner NOUN
had AUX
hurt VERB
my PRON
feelings NOUN
. PUNCT
  SPACE
He PRON
toldme VERB
that SCONJ
he PRON
just ADV
does AUX
n't PART
have AUX
time NOUN
to PART
" PUNCT
rap VERB
with ADP
patients NOUN
" PUNCT
and CCONJ
thoughtthat DET
was AUX
what PRON
I PRON
wanted VERB
. PUNCT
  SPACE
I PRON
told VERB
him PRON
that SCONJ
to PART
assume VERB
I PRON
was AUX
calling VERB
to"rap PROPN
" PUNCT
was AUX
insulting VERB
, PUNCT
and CCONJ
said VERB
again ADV
that SCONJ
I PRON
was AUX
just ADV
following VERB
throughon PROPN
his PRON
orders NOUN
. PUNCT
  SPACE
He PRON
responded VERB
that SCONJ
he PRON
resented VERB
the DET
implication NOUN
that SCONJ
he PRON
felt VERB
I PRON
was AUX
making VERB
that SCONJ
he PRON
was AUX
not PART
interested ADJ
in ADP
learning VERB
about ADP
what PRON
hispatients NOUN
have AUX
to PART
say VERB
about ADP
their PRON
condition NOUN
status NOUN
. PUNCT
  SPACE
He PRON
then ADV
gave VERB
methis ADJ
apology NOUN
: PUNCT
" PUNCT
I PRON
am AUX
sorry ADJ
that SCONJ
there PRON
was AUX
a DET
miscommunication NOUN
and CCONJ
youmistakenly ADV
thought VERB
I PRON
was AUX
insulting VERB
. PUNCT
  SPACE
I PRON
am AUX
not PART
trying VERB
to PART
insult VERB
youbut NOUN
I PRON
am AUX
not PART
that ADV
knowledgeable ADJ
about ADP
pain NOUN
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
have AUX
a DET
lot NOUN
oftime NOUN
to PART
deal VERB
with ADP
that DET
. PUNCT
" PUNCT
  SPACE
He PRON
then ADV
told VERB
me PRON
to PART
call VERB
him PRON
the DET
next ADJ
dayfor NOUN
further ADJ
instructions NOUN
on ADP
how ADV
do AUX
deal VERB
with ADP
my PRON
pain NOUN
and CCONJ
medication NOUN
. PUNCT
I PRON
am AUX
still ADV
upset ADJ
and CCONJ
have AUX
not PART
yet ADV
called VERB
. PUNCT
My PRON
questions NOUN
: PUNCT
( PUNCT
1 X
) PUNCT
Should AUX
I PRON
continue VERB
to PART
have AUX
this DET
doctor NOUN
manage VERB
my PRON
care?(2 NOUN
) PUNCT
Since SCONJ
I PRON
am AUX
in ADP
pain NOUN
off ADV
and CCONJ
on ADV
, PUNCT
I PRON
realize VERB
that SCONJ
this DET
may AUX
cause VERB
me PRON
tobe VERB
more ADV
anxietous ADJ
so CCONJ
am AUX
I PRON
perhaps ADV
over ADV
- PUNCT
reacting VERB
or CCONJ
overly ADV
sensitive?If PROPN
this DET
doctor NOUN
refers VERB
me PRON
to ADP
his PRON
colleague NOUN
who PRON
knows VERB
more ADJ
about ADP
the DET
typeof NOUN
pain NOUN
I PRON
have AUX
, PUNCT
he PRON
still ADV
wants VERB
me PRON
to PART
status VERB
him PRON
on ADP
my PRON
condition NOUN
butnow ADV
I PRON
am AUX
afraid ADJ
to PART
call VERB
him PRON
. PUNCT
			 SPACE
--MarlenaNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58839From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
sore ADJ
throatIn NOUN
article NOUN
< X
47835@sdcc12.ucsd.edu NUM
> X
wsun@jeeves.ucsd.edu PROPN
( PUNCT
Fiberman PROPN
) PUNCT
writes:>I PRON
have AUX
had VERB
a DET
sore ADJ
throat NOUN
for ADP
almost ADV
a DET
week NOUN
. PUNCT
  SPACE
When ADV
I PRON
look VERB
into ADP
> X
the DET
mirror NOUN
with ADP
the DET
aid NOUN
of ADP
a DET
flash NOUN
light NOUN
, PUNCT
I PRON
see VERB
white ADJ
plaques NOUN
in ADP
> X
the DET
very ADJ
back NOUN
of ADP
my PRON
throat NOUN
( PUNCT
on ADP
the DET
sides NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
went VERB
to ADP
a DET
health NOUN
> X
center NOUN
to PART
have AUX
a DET
throat NOUN
culture NOUN
taken VERB
. PUNCT
  SPACE
They PRON
said VERB
that SCONJ
I PRON
do AUX
not PART
> X
have AUX
strep NOUN
throat NOUN
. PUNCT
  SPACE
Could AUX
a DET
viral ADJ
infection NOUN
cause SCONJ
white ADJ
plaques NOUN
> X
on ADP
the DET
sides NOUN
of ADP
my PRON
throat?First NOUN
, PUNCT
I PRON
am AUX
not PART
a DET
doctor NOUN
. PUNCT
  SPACE
I PRON
know VERB
about ADP
this DET
because SCONJ
I PRON
have AUX
beenthrough ADP
it PRON
. PUNCT
It PRON
sounds VERB
like SCONJ
tonsilitis NOUN
( PUNCT
lit PROPN
. PROPN
swollen PROPN
tonsils NOUN
) PUNCT
. PUNCT
  SPACE
Feel VERB
under ADP
your PRON
jawhinge NOUN
for ADP
a DET
swelling NOUN
on ADP
each DET
side NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
find VERB
them PRON
, PUNCT
its PRON
tonsilitis NOUN
. PUNCT
I've PROPN
had AUX
this DET
a DET
couple NOUN
of ADP
times NOUN
in ADP
the DET
past NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
prescribed VERB
aweeks PROPN
course NOUN
of ADP
penicillin NOUN
and CCONJ
that PRON
cleared VERB
it PRON
up ADP
. PUNCT
In ADP
my PRON
case NOUN
it PRON
was AUX
associated VERB
with ADP
glandular ADJ
fever NOUN
, PUNCT
which PRON
is AUX
a DET
viralinfection NOUN
which PRON
( PUNCT
from ADP
my PRON
point NOUN
of ADP
view NOUN
) PUNCT
resembled VERB
flu PROPN
and CCONJ
tonsilitisthat PRON
kept VERB
coming VERB
back ADV
for ADP
a DET
year NOUN
or CCONJ
so ADV
. PUNCT
  SPACE
There PRON
is AUX
a DET
blood NOUN
test NOUN
forthis NOUN
. PUNCT
In ADP
conclusion NOUN
, PUNCT
see VERB
a DET
doctor NOUN
( PUNCT
if SCONJ
you PRON
have AUX
not PART
done VERB
so ADV
already).Paul.-- ADP
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58840From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
centrifugeIn PROPN
article NOUN
< X
C5JsM5.Hrs@lznj.lincroftnj.ncr.com PROPN
> X
rjf@lzsc.lincroftnj.ncr.com PROPN
( PUNCT
51351[efw]-Robert NUM
Feddeler(MT4799)T343 PROPN
) PUNCT
writes VERB
: PUNCT
> X
: PUNCT
Could AUX
somebody PRON
explain VERB
to ADP
me PRON
what PRON
a DET
centrifuge NOUN
is AUX
and CCONJ
what PRON
it PRON
is AUX
> X
: PUNCT
used VERB
for ADP
? PUNCT
I PRON
vaguely ADV
remembre VERB
it PRON
being AUX
something PRON
that PRON
spins VERB
test VERB
tubes NOUN
> X
: PUNCT
around ADP
really ADV
fast ADV
but CCONJ
I PRON
ca AUX
nt PART
remember VERB
why ADV
you PRON
d AUX
want VERB
to PART
do AUX
that?>Purely ADV
recreational ADJ
. PUNCT
  SPACE
They PRON
get VERB
bored ADJ
sitting NOUN
in ADP
that DET
> X
rack VERB
all DET
the DET
time NOUN
. PUNCT
No INTJ
, PUNCT
this DET
is AUX
wrong ADJ
. PUNCT
  SPACE
The DET
purpose NOUN
is AUX
to PART
preserve VERB
the DET
substances NOUN
inthe ADP
tubes NOUN
longer ADV
by ADP
creating VERB
relativistic ADJ
speeds NOUN
and CCONJ
thustime NOUN
dilatation NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
by ADP
slowing VERB
the DET
subjective ADJ
time NOUN
ofthe NOUN
test NOUN
tubes NOUN
they PRON
get VERB
less ADV
bored ADJ
, PUNCT
which PRON
is AUX
probably ADV
what PRON
youwere ADV
thinking VERB
of.-- INTJ
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58841From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemSounds NOUN
as SCONJ
though SCONJ
his PRON
heart NOUN
's PART
in ADP
the DET
right ADJ
place NOUN
, PUNCT
but CCONJ
he PRON
is AUX
not PART
adept ADJ
atexpressing VERB
it PRON
. PUNCT
  SPACE
What PRON
you PRON
received VERB
was AUX
_ PROPN
meant VERB
_ PROPN
to PART
be AUX
a DET
profound ADJ
apology NOUN
. PUNCT
Apologies NOUN
delivered VERB
by ADP
overworked ADJ
shy ADJ
people NOUN
often ADV
come VERB
out ADP
like SCONJ
that DET
... PUNCT
-- PUNCT
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58842From NUM
: PUNCT
jimj@contractor NOUN
. PUNCT
EBay PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Jim PROPN
Jones)Subject PROPN
: PUNCT
Post ADJ
- ADJ
fever ADJ
rashes NOUN
: PUNCT
  SPACE
I PRON
get VERB
'em PRON
every DET
timeThe PROPN
subject NOUN
- PUNCT
line NOUN
says VERB
it PRON
: PUNCT
  SPACE
every DET
time NOUN
I PRON
run VERB
a DET
fever NOUN
, PUNCT
I PRON
get VERB
an DET
amazingrosy ADJ
rash NOUN
over ADP
my PRON
torso NOUN
and CCONJ
arms NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
it PRON
does AUX
n't PART
itch VERB
. PUNCT
The DET
rash NOUN
  SPACE
always ADV
comes VERB
on ADP
the DET
day NOUN
after ADP
thefever NOUN
breaks NOUN
and CCONJ
no ADV
matter ADV
what PRON
the DET
illness NOUN
was AUX
: PUNCT
  SPACE
cold PROPN
, PUNCT
flu NOUN
, PUNCT
whatever PRON
. PUNCT
It PRON
started VERB
happening VERB
about ADP
four NUM
years NOUN
ago ADV
after ADP
I PRON
moved VERB
to ADP
my PRON
currenttown NOUN
, PUNCT
although SCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
that DET
has AUX
anything PRON
to PART
do AUX
with ADP
anything PRON
. PUNCT
Severity NOUN
and CCONJ
persistance NOUN
of ADP
the DET
rash NOUN
seems VERB
to PART
vary VERB
with ADP
the DET
fever NOUN
: PUNCT
a DET
severe ADJ
or CCONJ
long ADV
- PUNCT
lasting VERB
fever NOUN
brings VERB
a DET
long ADV
- PUNCT
lasting VERB
rash NOUN
. PUNCT
  SPACE
A DET
mild ADJ
feverseems NOUN
to PART
bring VERB
rashes NOUN
that PRON
go VERB
away ADV
faster ADV
. PUNCT
  SPACE
Anybody PRON
know VERB
what PRON
might AUX
be AUX
causing VERB
this DET
? PUNCT
  SPACE
It PRON
's AUX
no DET
more ADJ
than SCONJ
an DET
embarassment NOUN
, PUNCT
but CCONJ
I PRON
'd AUX
be AUX
curious ADJ
to PART
know VERB
what PRON
's AUX
going VERB
on ADP
. PUNCT
  SPACE
Am AUX
I PRON
carryingsome ADJ
kind ADV
of ADP
fever NOUN
- PUNCT
resistant ADJ
bug NOUN
that PRON
goes VERB
wild ADJ
when ADV
fever NOUN
knocks VERB
outits VERB
competition?Jim PROPN
JonesNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58843From NUM
: PUNCT
pan@panda PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Doug PROPN
Pan)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qkdpk$5k6@agate.berkeley.edu NUM
> X
mossman@cea NUM
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
( PUNCT
Amy PROPN
Mossman PROPN
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
I PRON
had AUX
a DET
similar ADJ
reaction NOUN
to ADP
Chinese ADJ
food NOUN
but CCONJ
came VERB
to ADP
a DET
completly ADV
different ADJ
> X
   SPACE
conclusion NOUN
. PUNCT
I PRON
've AUX
eaten VERB
Chinese ADJ
food NOUN
for ADP
ages NOUN
and CCONJ
never ADV
had AUX
problems NOUN
. PUNCT
I PRON
went VERB
> X
   SPACE
with ADP
some DET
Chinese ADJ
Malaysian ADJ
friends NOUN
to ADP
a DET
swanky ADJ
Chinses PROPN
rest NOUN
. PUNCT
and CCONJ
they PRON
ordered VERB
> X
   SPACE
lots NOUN
of ADP
stuff NOUN
I PRON
had AUX
never ADV
seen VERB
before ADV
. PUNCT
The DET
only ADJ
thing NOUN
I PRON
can AUX
remember VERB
of ADP
that DET
> X
   SPACE
meal PROPN
was AUX
the DET
first ADJ
course NOUN
, PUNCT
scallops NOUN
served VERB
in ADP
the DET
shell NOUN
with ADP
a DET
soy NOUN
- PUNCT
type NOUN
sauce NOUN
. PUNCT
> X
   SPACE
I PRON
thought VERB
, PUNCT
" PUNCT
Well INTJ
, PUNCT
I PRON
've AUX
only ADV
had VERB
scallops NOUN
once ADV
and CCONJ
I PRON
was AUX
sick ADJ
after ADP
but CCONJ
that SCONJ
> X
   SPACE
could AUX
have AUX
been AUX
a DET
coincidence NOUN
" PUNCT
. PUNCT
That DET
night NOUN
as SCONJ
I PRON
sat VERB
on ADP
the DET
bathroom NOUN
floor NOUN
, PUNCT
> X
   SPACE
sweating VERB
and CCONJ
emptying VERB
my PRON
stomach NOUN
the DET
hard ADJ
way NOUN
, PUNCT
I PRON
decided VERB
I PRON
would AUX
never ADV
touch VERB
> X
   SPACE
another DET
scallop NOUN
. PUNCT
I PRON
may AUX
not PART
be AUX
allergic ADJ
but CCONJ
I PRON
do AUX
n't PART
want VERB
to PART
take VERB
the DET
chance NOUN
. PUNCT
I PRON
do AUX
n't PART
react VERB
to ADP
scallops NOUN
, PUNCT
but CCONJ
did AUX
have AUX
discomforts NOUN
with ADP
clam PROPN
juiceserved VERB
at ADP
( PUNCT
American ADJ
) PUNCT
waterfront NOUN
seafood NOUN
bars NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
whetherthe NOUN
juice NOUN
is AUX
homemade ADJ
or CCONJ
from ADP
cans NOUN
. PUNCT
The DET
following NOUN
is AUX
my PRON
first ADJ
encounter NOUN
with ADP
the DET
Chinese PROPN
RestaurantSyndrome PROPN
. PUNCT
  SPACE
Ten NUM
years NOUN
ago ADV
, PUNCT
about ADV
an DET
hour NOUN
after ADP
having VERB
Won PROPN
Ton PROPN
Soup PROPN
Icollapsed PROPN
in ADP
a DET
chair NOUN
with ADP
my PRON
face NOUN
feeling VERB
puffed VERB
up ADP
, PUNCT
my PRON
scalptingling NOUN
, PUNCT
my PRON
feet NOUN
too ADV
weak ADJ
to PART
stand VERB
up ADP
. PUNCT
  SPACE
The DET
symptoms NOUN
lasted VERB
for ADP
about20 ADJ
minutes NOUN
. PUNCT
  SPACE
Determined VERB
to PART
find VERB
out ADP
the DET
cause NOUN
of ADP
my PRON
first ADJ
reaction NOUN
, PUNCT
Iwent PROPN
back ADV
to ADP
the DET
Chinese ADJ
restuarant NOUN
and CCONJ
ordered VERB
the DET
same ADJ
dish NOUN
. PUNCT
  SPACE
Thesame PROPN
thing NOUN
happened VERB
. PUNCT
  SPACE
A DET
quick ADJ
look NOUN
inside ADP
the DET
kitchen NOUN
revealed VERB
nothingout ADV
of ADP
the DET
ordinary ADJ
. PUNCT
I've PROPN
also ADV
had AUX
a DET
mild ADJ
attack NOUN
after ADP
having VERB
soup NOUN
at ADP
a DET
Thai PROPN
restuarant ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58844From NUM
: PUNCT
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> X
Flights NOUN
of ADP
fancy ADJ
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucial| PROPN
> X
thing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
use| PROPN
> X
unless SCONJ
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
I PRON
've AUX
known VERB
a DET
lot NOUN
of ADP
scientists| PROPN
> X
whose PRON
fantasies NOUN
lead VERB
them PRON
on ADP
to ADP
creative ADJ
work NOUN
; PUNCT
usually ADV
they PRON
wo AUX
n't PART
admit| ADV
> X
out ADV
loud ADV
what PRON
the DET
fantasy NOUN
was AUX
, PUNCT
prior ADV
to ADP
the DET
consumption NOUN
of ADP
a DET
few ADJ
beers.| PROPN
> X
| NOUN
> X
( PUNCT
Simple ADJ
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNA| PROPN
> X
electrophoresis NOUN
gel NOUN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
hoping VERB
that| PROPN
> X
he PRON
'd AUX
seen VERB
some DET
essential ADJ
part NOUN
of ADP
the DET
control NOUN
mechanism NOUN
for ADP
eukaryotic| PROPN
> X
genes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
out| PROPN
> X
binding PROPN
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequenceBut PROPN
why ADV
do AUX
you PRON
characterize VERB
this DET
as SCONJ
a DET
" PUNCT
flight NOUN
of ADP
fancy NOUN
" PUNCT
or CCONJ
a DET
" PUNCT
fantasy"?While NOUN
I PRON
am AUX
unfamiliar ADJ
with ADP
the DET
scientific ADJ
context NOUN
here ADV
, PUNCT
it PRON
appears VERB
obviousthat ADP
his PRON
speculation NOUN
( PUNCT
for ADP
lack NOUN
of ADP
a DET
better ADJ
or CCONJ
more ADV
neutral ADJ
word NOUN
) PUNCT
wasat NOUN
least ADV
in ADP
significant ADJ
part NOUN
a DET
consequence NOUN
of ADP
his PRON
knowledge NOUN
of ADP
and CCONJ
acceptanceof VERB
current ADJ
theory NOUN
coupled VERB
with ADP
his PRON
observations NOUN
. PUNCT
  SPACE
It PRON
would AUX
appear VERB
thatsomething VERB
quite ADV
rational ADJ
was AUX
going VERB
on ADP
as SCONJ
he PRON
attempted VERB
to PART
fit VERB
his PRON
observationinto NOUN
that DET
theory NOUN
( PUNCT
or CCONJ
to PART
tailor VERB
the DET
theory NOUN
to PART
cover VERB
the DET
observation NOUN
) PUNCT
. PUNCT
  SPACE
Thisdoes PROPN
not PART
seem VERB
like SCONJ
an DET
example NOUN
of ADP
what PRON
most ADJ
would AUX
normally ADV
call VERB
a DET
flight NOUN
offancy NOUN
or CCONJ
a DET
fantasy.| PROPN
> X
| ADP
> X
It PRON
is AUX
not PART
clear ADJ
to ADP
me PRON
what PRON
you PRON
mean VERB
by ADP
rational ADJ
vs. CCONJ
irrational PROPN
. PUNCT
  SPACE
Perhaps| PROPN
> X
you PRON
can AUX
give VERB
a DET
few ADJ
examples NOUN
of ADP
surprising ADJ
experiments NOUN
that PRON
were AUX
tried VERB
out| PROPN
> X
for ADP
perfectly ADV
rational ADJ
reasons NOUN
, PUNCT
or CCONJ
interesting ADJ
new ADJ
theories NOUN
that PRON
were AUX
first| PROPN
> X
advanced VERB
from ADP
logical ADJ
grounds NOUN
. PUNCT
  SPACE
The DET
main ADJ
examples NOUN
I PRON
can AUX
think VERB
of ADP
are AUX
from| PROPN
> X
modern ADJ
high ADJ
- PUNCT
energy NOUN
physics NOUN
which PRON
is AUX
not PART
typical ADJ
of ADP
science NOUN
as SCONJ
a DET
whole NOUN
. PUNCT
Well INTJ
, PUNCT
I PRON
think VERB
someone PRON
else ADV
in ADP
this DET
thread NOUN
was AUX
the DET
first ADJ
to PART
use VERB
the DET
word NOUN
( PUNCT
also,"extra NOUN
- PUNCT
scientific ADJ
" PUNCT
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
  SPACE
Nor CCONJ
am AUX
I PRON
prepared ADJ
to PART
give VERB
a DET
general ADJ
account NOUN
ofrationality NOUN
. PUNCT
  SPACE
In ADP
terms NOUN
of ADP
examples NOUN
, PUNCT
there PRON
is AUX
some DET
danger NOUN
of ADP
beginning VERB
to PART
quibbleover VERB
what PRON
a DET
" PUNCT
surprising ADJ
" PUNCT
experiment NOUN
is AUX
, PUNCT
what PRON
counts VERB
as SCONJ
" PUNCT
surprising ADJ
" PUNCT
, PUNCT
etc X
. PUNCT
The DET
same ADJ
may AUX
be AUX
said VERB
about ADP
" PUNCT
logical ADJ
grounds NOUN
" PUNCT
. PUNCT
  SPACE
My PRON
point NOUN
is AUX
that SCONJ
quite ADV
frequently(perhaps ADV
even ADV
most ADV
frequently ADV
) PUNCT
the DET
roots NOUN
of ADP
a DET
new ADJ
theory NOUN
can AUX
be AUX
traced VERB
topreviously ADV
existing VERB
theories NOUN
( PUNCT
or CCONJ
even ADV
to PART
previously ADV
rejected VERB
hypotheses NOUN
ofsome VERB
other ADJ
theory NOUN
or CCONJ
domain NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
would AUX
offer VERB
some DET
rather ADV
well ADV
known VERB
examplessuch NOUN
as SCONJ
Toricelli PROPN
's PART
Puy PROPN
de X
Dome PROPN
experiment NOUN
done VERB
for ADP
the DET
sake NOUN
of ADP
his PRON
" PUNCT
sea PROPN
of ADP
air"hypothesis NOUN
. PUNCT
  SPACE
Was AUX
this DET
theory NOUN
( PUNCT
and CCONJ
the DET
resulting VERB
experimental ADJ
test NOUN
) PUNCT
" PUNCT
surprising"?Well INTJ
, PUNCT
given VERB
the DET
* PUNCT
prior ADJ
* PUNCT
explanations NOUN
of ADP
the DET
phenomena NOUN
involved VERB
it PRON
certainly ADV
mustbe ADV
counted VERB
as SCONJ
so ADV
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
constructed VERB
( PUNCT
and CCONJ
the DET
experiment NOUN
designed)out PROPN
of ADP
" PUNCT
perfectly ADV
rational ADJ
grounds NOUN
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
there PRON
was AUX
a DET
pretty ADV
successful ADJ
andwell NOUN
know VERB
theory NOUN
of ADP
fluids NOUN
. PUNCT
  SPACE
The DET
analogy NOUN
to ADP
fluids NOUN
by ADP
Toricelli PROPN
is AUX
explicit ADJ
. PUNCT
The DET
novelty NOUN
was AUX
in ADP
thinking NOUN
of ADP
air NOUN
as SCONJ
a DET
fluid NOUN
( PUNCT
but CCONJ
this DET
was AUX
* PUNCT
quite ADV
* PUNCT
a DET
noveltyat NOUN
the DET
time NOUN
) PUNCT
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
interesting ADJ
? PUNCT
  SPACE
Yes INTJ
. PUNCT
  SPACE
Was AUX
it PRON
" PUNCT
new ADJ
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
onecould AUX
argue VERB
that SCONJ
it PRON
was AUX
merely ADV
the DET
extension NOUN
of ADP
an DET
existing VERB
theory NOUN
to ADP
a DET
newdomain NOUN
, PUNCT
but CCONJ
I PRON
think VERB
this DET
begs VERB
certain ADJ
questions NOUN
. PUNCT
  SPACE
We PRON
can AUX
debate VERB
that SCONJ
if SCONJ
youlike.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58845Subject NUM
: PUNCT
EXPERTS NOUN
on ADP
PENICILLIN PROPN
... PUNCT
LOOK!From PROPN
: PUNCT
ndacumo@eis.calstate.edu PROPN
( PUNCT
Noah PROPN
Dacumos)My PROPN
name NOUN
is AUX
Noah PROPN
Dacumos PROPN
and CCONJ
I PRON
am AUX
a DET
student NOUN
at ADP
San PROPN
Leandro PROPN
High PROPN
. PUNCT
  SPACE
I PRON
amdoing VERB
a DET
project NOUN
for ADP
my PRON
physics NOUN
class NOUN
and CCONJ
I PRON
would AUX
like VERB
some DET
info NOUN
on ADP
thediscovery NOUN
of ADP
penicillin NOUN
, PUNCT
its PRON
discoverer(Sir NOUN
Alexander PROPN
Fleming PROPN
) PUNCT
, PUNCT
and CCONJ
how ADV
ithelps ADJ
people NOUN
with ADP
many ADJ
incurable ADJ
bacterias NOUN
. PUNCT
  SPACE
Also ADV
how ADV
it PRON
effects VERB
those DET
whoare VERB
allergic ADJ
to ADP
it PRON
. PUNCT
  SPACE
Any DET
info NOUN
will AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
					 SPACE
Noah PROPN
DacumosNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58846From NUM
: PUNCT
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare)Subject NUM
: PUNCT
Re ADP
: PUNCT
EndometriosisIn PROPN
article NOUN
< X
1993Apr16.032251.6606@rock.concert.net NUM
> X
naomi@rock.concert.net PROPN
( PUNCT
Naomi PROPN
T PROPN
Courter PROPN
) PUNCT
writes:>can ADJ
anyone PRON
give VERB
me PRON
more ADJ
information NOUN
regarding VERB
endometriosis NOUN
? PUNCT
   SPACE
i PRON
heard VERB
> X
it PRON
's AUX
a DET
very ADV
common ADJ
disease NOUN
among ADP
women NOUN
and CCONJ
if SCONJ
anyone PRON
can AUX
provide VERB
names> PROPN
... PUNCT
>--NaomiEndometriosis NOUN
is AUX
where ADV
cells NOUN
that PRON
would AUX
normally ADV
be AUX
lining VERB
the DET
uteris PROPN
existoutside VERB
the DET
uteris PROPN
. PUNCT
  SPACE
Sometimes ADV
this DET
causes VERB
problems NOUN
, PUNCT
often ADV
it PRON
doesn't VERB
. PUNCT
There PRON
is AUX
generally ADV
no DET
need NOUN
to PART
remove VERB
pockets NOUN
of ADP
endometriosis NOUN
unless SCONJ
they PRON
arecausing VERB
other ADJ
problems NOUN
. PUNCT
  SPACE
One NUM
lady NOUN
I PRON
know VERB
had AUX
Endometriosis NOUN
in ADP
an DET
ovary NOUN
. PUNCT
  SPACE
This DET
caused VERB
her PRON
a DET
_ NOUN
great ADJ
_ PROPN
deal NOUN
of ADP
pain NOUN
. PUNCT
  SPACE
Another DET
lady NOUN
I PRON
know VERB
has AUX
an DET
     SPACE
endometrial ADJ
cyst NOUN
in ADP
her PRON
abdominal ADJ
wall NOUN
; PUNCT
she PRON
is AUX
not PART
having VERB
it PRON
removed VERB
. PUNCT
The DET
American PROPN
Fertility PROPN
Society PROPN
has AUX
information NOUN
on ADP
this DET
and CCONJ
they PRON
probably ADV
maintain VERB
a DET
list NOUN
of ADP
physicians NOUN
in ADP
all DET
parts NOUN
of ADP
the DET
continent NOUN
that PRON
deal VERB
withendometriosis NOUN
. PUNCT
  SPACE
You PRON
can AUX
reach VERB
them PRON
at ADP
: PUNCT
The DET
American PROPN
Fertility PROPN
Society2140 PROPN
11th NOUN
Ave PROPN
SouthSuite PROPN
200Birmingham NUM
, PUNCT
Alabama PROPN
35205 NUM
- PUNCT
2800(205)933 NUM
- PUNCT
8494 NUM
                                     SPACE
[ PUNCT
J.F.]Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58847From NUM
: PUNCT
szikopou@superior.carleton.ca NOUN
( PUNCT
Steven PROPN
Zikopoulos)Subject NUM
: PUNCT
Re ADP
: PUNCT
prozacIn VERB
< X
C5L2x5.4B7@eis.calstate.edu NOUN
> X
agilmet@eis.calstate.edu PROPN
( PUNCT
Adriana PROPN
Gilmete PROPN
) PUNCT
writes:>Can VERB
anyone PRON
help VERB
me PRON
find VERB
any DET
information NOUN
on ADP
the DET
drug NOUN
Prozac PROPN
? PUNCT
  SPACE
I PRON
am AUX
writing VERB
> X
a DET
report NOUN
on ADP
the DET
inventors NOUN
, PUNCT
Eli PROPN
Lilly PROPN
and CCONJ
Co. PROPN
, PUNCT
and CCONJ
the DET
product NOUN
. PUNCT
  SPACE
I PRON
need VERB
as SCONJ
> X
much ADJ
help NOUN
as SCONJ
I PRON
can AUX
get AUX
. PUNCT
   SPACE
Thanks INTJ
a DET
lot NOUN
, PUNCT
Adriana PROPN
Gilmete PROPN
. PUNCT
PDR PROPN
and CCONJ
CPS PROPN
are AUX
good ADJ
places NOUN
to ADP
starts.do PROPN
a DET
medline ADJ
search NOUN
... PUNCT
lots NOUN
of ADP
interesting ADJ
debates NOUN
going VERB
on ADP
( PUNCT
rememberwhen PROPN
Prozac PROPN
was AUX
impicated VERB
in ADP
suicidal ADJ
behaviour?)steve PROPN
zNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58848From NUM
: PUNCT
mdf0@shemesh X
. PUNCT
GTE.com PROPN
( PUNCT
Mark PROPN
Feblowitz)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qhu7s$d3u@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
It PRON
's AUX
worse ADJ
than SCONJ
that DET
-- PUNCT
there PRON
* PUNCT
is AUX
* PUNCT
no DET
such ADJ
thing NOUN
as SCONJ
   SPACE
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
on ADP
the DET
effects NOUN
of ADP
MSG PROPN
, PUNCT
by ADP
   SPACE
virtue NOUN
of ADP
the DET
fact NOUN
that SCONJ
MSG PROPN
changes VERB
the DET
taste NOUN
of ADP
food NOUN
in ADP
   SPACE
a DET
characteristic ADJ
way NOUN
that PRON
is AUX
detectable ADJ
by ADP
the DET
subject NOUN
and CCONJ
   SPACE
that PRON
can AUX
not PART
be AUX
duplicated VERB
by ADP
a DET
placebo NOUN
. PUNCT
Common ADJ
! PUNCT
You PRON
can AUX
easily ADV
disguise VERB
  SPACE
to ADP
flavor NOUN
of ADP
  SPACE
MSG PROPN
by ADP
putting VERB
  SPACE
it PRON
in ADP
acapsule NOUN
. PUNCT
Then ADV
, PUNCT
  SPACE
the DET
  SPACE
study NOUN
  SPACE
becomes VERB
  SPACE
a DET
  SPACE
double ADJ
  SPACE
blind ADJ
of ADP
  SPACE
MSG PROPN
capsulesagainst NOUN
control NOUN
  SPACE
capsules NOUN
( PUNCT
containing VERB
exactly ADV
  SPACE
the DET
same ADJ
contents NOUN
minusthe NOUN
MSG).---------------------------------------------------------------------------Mark NOUN
Feblowitz PROPN
, PUNCT
   SPACE
GTE PROPN
Laboratories PROPN
Inc. PROPN
, PUNCT
40 NUM
Sylvan PROPN
Rd PROPN
. PROPN
  SPACE
Waltham PROPN
, PUNCT
MA PROPN
02254mfeblowitz@GTE.com NOUN
, PUNCT
( PUNCT
617 NUM
) PUNCT
466 NUM
- SYM
2947 NUM
, PUNCT
fax NOUN
: PUNCT
( PUNCT
617 NUM
) PUNCT
890 NUM
- PUNCT
9320Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58849From NUM
: PUNCT
tong@ohsu.edu ADP
( PUNCT
Gong PROPN
Tong)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG ADJ
) PUNCT
writes:>In NOUN
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com X
> X
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:>>>>In PROPN
article NOUN
< X
13APR199308003715@delphi.gsfc.nasa.gov NUM
> X
, PUNCT
packer@delphi.gsfc.nasa.gov NOUN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>>>>Is NOUN
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate NOUN
) PUNCT
sensitivity?>>>>I NOUN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
> X
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG PROPN
sensitivity NOUN
are>>>>superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
> X
> X
> X
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least>>>>a PROPN
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the>>>>"Chinese NUM
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has>>>>always PROPN
used VERB
it.>>>>So PROPN
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but>>no PROPN
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
> X
> X
work PROPN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study>>using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
> X
> X
Check VERB
out ADP
# SYM
27903 NUM
, PUNCT
just ADV
some DET
20 NUM
posts NOUN
before ADP
your PRON
own ADJ
. PUNCT
Maybe ADV
you PRON
missed VERB
> X
it PRON
amidst ADP
the DET
flurry NOUN
of ADP
responses NOUN
? PUNCT
Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
this DET
> X
newsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
matters NOUN
> X
they PRON
have AUX
substantial ADJ
knowledge NOUN
of.>>For PRON
cites VERB
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a DET
> X
toxicologist NOUN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on ADP
> NUM
development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an DET
> X
excitotoxic DET
food NOUN
additive ADJ
, PUNCT
and CCONJ
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamate NOUN
> X
is AUX
essentially ADV
the DET
premierie PROPN
neurotransmitter NOUN
in ADP
the DET
mammalian ADJ
brain>(humans NOUN
included VERB
) PUNCT
. PUNCT
  SPACE
Too ADV
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown VERB
> X
off ADV
. PUNCT
  SPACE
Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in ADP
> X
small ADJ
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts NOUN
> X
added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be AUX
> X
encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
  SPACE
By ADP
eating VERB
lots NOUN
of ADP
junk NOUN
food,>packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to PART
jack VERB
your PRON
> X
blood NOUN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
these DET
> X
compounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical PROPN
effects NOUN
. PUNCT
> X
Read VERB
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>sources NOUN
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
> X
> X
                    SPACE
--Dianne PUNCT
Murray PROPN
    SPACE
wcsbeau@ccs.carleton.caIn ADV
order NOUN
to PART
excitotoxin VERB
effects NOUN
of ADP
MSG PROPN
, PUNCT
MSG PROPN
that SCONJ
in ADP
blood NOUN
must AUX
go VERB
through ADP
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
that PRON
I PRON
am AUX
not PART
sure ADJ
MSG NOUN
can AUX
go VERB
through ADV
or CCONJ
not PART
. PUNCT
In ADP
normal ADJ
condition NOUN
, PUNCT
the DET
concentration NOUN
of ADP
glutamate NOUN
in ADP
the DET
cerebrospinal ADJ
fluid NOUN
is AUX
about ADV
2 NUM
uM NOUN
that PRON
is AUX
high ADJ
enough ADV
to PART
activate VERB
one NUM
type NOUN
of ADP
glutamate NOUN
receptor NOUN
- PUNCT
the DET
NMDAreceptor NOUN
. PUNCT
But CCONJ
the DET
question NOUN
is AUX
Neuron PROPN
and CCONJ
glial ADJ
cell NOUN
in ADP
the DET
brain NOUN
have AUX
a DET
lots NOUN
of ADP
transport NOUN
to PART
get AUX
glutamate NOUN
into ADP
Neuron PROPN
or CCONJ
glial NOUN
. PUNCT
So ADV
no DET
one NOUN
know VERB
exact ADJ
concentration NOUN
of ADP
glutamate NOUN
is AUX
around ADP
neurons NOUN
. PUNCT
Glutamate PROPN
is AUX
most ADV
important ADJ
neurotransmitter NOUN
in ADP
the DET
central ADJ
nervous ADJ
system NOUN
. PUNCT
It PRON
is AUX
involved VERB
in ADP
not PART
only ADV
in ADP
daily ADJ
life NOUN
like SCONJ
the DET
controling NOUN
of ADP
movement NOUN
, PUNCT
it PRON
is AUX
alsoinvolved VERB
in ADP
develpoment NOUN
, PUNCT
memory NOUN
and CCONJ
learn VERB
( PUNCT
it PRON
is AUX
involved VERB
in ADP
Logn NOUN
- PUNCT
term NOUN
potentialtion NOUN
that PRON
be AUX
thought VERB
is AUX
the DET
basis NOUN
of ADP
learning NOUN
) PUNCT
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58850From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>So NUM
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but>>no PROPN
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
> X
> X
work PROPN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study>>using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
> X
> X
Check VERB
out ADP
# SYM
27903 NUM
, PUNCT
just ADV
some DET
20 NUM
posts NOUN
before ADP
your PRON
own ADJ
. PUNCT
Um INTJ
, PUNCT
I PRON
hate VERB
to PART
break VERB
this DET
to ADP
you PRON
, PUNCT
but CCONJ
article NOUN
numbers NOUN
are AUX
unique ADJ
per ADP
site NOUN
. PUNCT
They PRON
have AUX
no DET
meaning NOUN
on ADP
other ADJ
machines.>Maybe PROPN
you PRON
missed VERB
it PRON
amidst ADP
the DET
flurry NOUN
of ADP
responses?You NOUN
mean VERB
the DET
responses NOUN
some DET
of ADP
which PRON
pointed VERB
to ADP
double ADJ
- PUNCT
blind ADJ
testswhich NOUN
show VERB
no DET
such ADJ
" PUNCT
chinese ADJ
restaurant NOUN
effect NOUN
" PUNCT
unique ADJ
to ADP
MSG(it PROPN
's PART
elicited VERB
by ADP
the DET
placebo NOUN
as SCONJ
well.)>Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
this DET
> X
newsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
matters NOUN
> X
they PRON
have AUX
substantial ADJ
knowledge NOUN
of ADP
. PUNCT
Like SCONJ
youself PRON
? PUNCT
  SPACE
Someone PRON
who PRON
can AUX
read VERB
a DET
scientific ADJ
paper NOUN
and CCONJ
apparentlycome VERB
away ADV
from ADP
it PRON
with ADP
bizarrely ADV
cracked VERB
ideas NOUN
which PRON
have AUX
nothing PRON
todo NOUN
with ADP
the DET
use NOUN
of ADP
this DET
substance NOUN
in ADP
human PROPN
nutrition?>For NOUN
cites NOUN
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a DET
> X
toxicologist NOUN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on ADP
> NUM
development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an DET
> X
excitotoxic DET
food NOUN
additive ADJ
, PUNCT
No INTJ
, PUNCT
it PRON
's AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
glutamate NOUN
is AUX
an DET
amino NOUN
acidwhich PROPN
is AUX
an DET
excitatory ADJ
neurotransmitter NOUN
. PUNCT
  SPACE
There PRON
is AUX
also ADV
evidence NOUN
thatexcessive ADJ
release NOUN
of ADP
glutamate NOUN
may AUX
be AUX
involved VERB
in ADP
the DET
pathology NOUN
of ADP
certainconditions NOUN
like SCONJ
stroke NOUN
, PUNCT
drowning NOUN
and CCONJ
Lou PROPN
Gehrig PROPN
's PART
disease NOUN
, PUNCT
just ADV
to PART
name VERB
a DET
few ADJ
. PUNCT
This DET
is AUX
a DET
completely ADV
different ADJ
issue NOUN
than SCONJ
the DET
use NOUN
of ADP
this DET
ubiquitous ADJ
amino ADJ
acidin PROPN
foods NOUN
. PUNCT
  SPACE
People NOUN
are AUX
not PART
receiving VERB
intra ADJ
- ADJ
ventricular ADJ
injections NOUN
of ADP
glutamate.>and NUM
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamate NOUN
> X
is AUX
essentially ADV
the DET
premierie PROPN
neurotransmitter NOUN
in ADP
the DET
mammalian PROPN
brain>(humans PROPN
included).I PART
do AUX
n't PART
know VERB
about ADP
premier NOUN
, PUNCT
but CCONJ
it PRON
's AUX
certainly ADV
an DET
important ADJ
one.>Too NOUN
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown VERB
off ADP
. PUNCT
Sez ADV
you PRON
. PUNCT
  SPACE
Such DET
an DET
effect NOUN
in ADP
humans NOUN
has AUX
not PART
been AUX
demonstrated VERB
in ADP
anycontrolled VERB
studies NOUN
. PUNCT
  SPACE
Infant NOUN
mice NOUN
and CCONJ
other ADJ
models NOUN
are AUX
useful ADJ
as SCONJ
faras NOUN
they PRON
go VERB
, PUNCT
but CCONJ
they PRON
're AUX
not PART
relevant ADJ
to ADP
the DET
matter NOUN
at ADP
hand NOUN
. PUNCT
  SPACE
Which PRON
isnot NOUN
to PART
say VERB
that SCONJ
I PRON
favor VERB
its PRON
use NOUN
in ADP
things NOUN
like SCONJ
baby NOUN
food NOUN
-- PUNCT
a DET
patentlyridiculous ADJ
use NOUN
of ADP
the DET
additive ADJ
. PUNCT
  SPACE
But CCONJ
we PRON
have AUX
no DET
reason NOUN
to ADP
believethat DET
MSG PROPN
in ADP
the DET
diet NOUN
effects NOUN
humans NOUN
adversely.>Glutamate VERB
and CCONJ
aspartate VERB
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in ADP
> X
small ADJ
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts NOUN
> X
added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be AUX
> X
encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
Wrong ADJ
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
much ADJ
aspartate NOUN
or CCONJ
phenylalanine NOUN
is AUX
in ADP
a DET
soft ADJ
drink?Milligrams PROPN
worth ADJ
. PUNCT
  SPACE
Compare VERB
that DET
to ADP
a DET
glass NOUN
of ADP
milk NOUN
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
muchglutamate NOUN
is AUX
present ADJ
in ADP
most ADJ
protein NOUN
- PUNCT
containing VERB
foods NOUN
compared VERB
to ADP
thatadded VERB
by ADP
the DET
use NOUN
of ADP
MSG?>By PROPN
eating VERB
lots NOUN
of ADP
junk NOUN
food,>packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to PART
jack VERB
your PRON
> X
blood NOUN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
these DET
> X
compounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical ADJ
effects NOUN
. PUNCT
Notice VERB
the DET
subtle ADJ
covering NOUN
of ADP
her PRON
ass NOUN
here ADV
: PUNCT
" PUNCT
anyone PRON
_ VERB
with ADP
a DET
sensitivity_ PROPN
... PUNCT
"We're PUNCT
disputing VERB
the DET
size NOUN
of ADP
that DET
class.>Read PROPN
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>sources NOUN
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
Impeccable ADJ
. PUNCT
  SPACE
There PRON
most ADV
certainly ADV
is AUX
a DET
dispute.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58851From NUM
: PUNCT
drand@spinner.osf.org PROPN
( PUNCT
Douglas PROPN
S. PROPN
Rand)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibioticsIn NOUN
article NOUN
< X
DEHP.117@calvin.edu PROPN
> X
DEHP@calvin.edu ADJ
( PUNCT
Phil PROPN
de PROPN
Haan PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
In ADP
article NOUN
< X
1qk708INNa12@mojo.eng.umd.edu NUM
> X
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
You PRON
can AUX
also ADV
swab VERB
the DET
inside NOUN
of ADP
your PRON
nose NOUN
with ADP
Bacitracin PROPN
using VERB
a DET
   SPACE
> X
Q NOUN
tip NOUN
. PUNCT
Bacitracin PROPN
is AUX
an DET
antibiotic ADJ
that PRON
can AUX
be AUX
bought VERB
OTC PROPN
as SCONJ
an DET
   SPACE
> X
ointment NOUN
in ADP
a DET
tube NOUN
. PUNCT
The DET
doctor NOUN
I PRON
listen VERB
to ADP
on ADP
the DET
radio NOUN
says VERB
to PART
apply VERB
   SPACE
> X
it PRON
for ADP
30 NUM
days NOUN
, PUNCT
while SCONJ
you PRON
are AUX
taking VERB
other ADJ
antibiotics NOUN
by ADP
mouth NOUN
. PUNCT
   SPACE
I PRON
have AUX
a DET
new ADJ
doctor NOUN
who PRON
gave VERB
me PRON
a DET
prescription NOUN
today NOUN
for ADP
something PRON
called VERB
    SPACE
Septra PROPN
DS PROPN
. PUNCT
  SPACE
He PRON
said VERB
it PRON
may AUX
cause VERB
GI PROPN
problems NOUN
and CCONJ
I PRON
have AUX
a DET
sensitive ADJ
stomach NOUN
    SPACE
to PART
begin VERB
with ADP
. PUNCT
  SPACE
Anybody PRON
ever ADV
taken VERB
this DET
antibiotic ADJ
. PUNCT
  SPACE
Any DET
good ADJ
? PUNCT
  SPACE
Suggestions NOUN
    SPACE
for ADP
avoiding VERB
an DET
upset ADJ
stomach NOUN
? PUNCT
  SPACE
Other ADJ
tips?I've NOUN
taken VERB
Septra PROPN
. PUNCT
  SPACE
My PRON
daughter NOUN
has AUX
taken VERB
it PRON
many ADJ
times NOUN
for ADP
earinfections NOUN
. PUNCT
  SPACE
It PRON
works VERB
sometimes ADV
. PUNCT
  SPACE
It PRON
is AUX
a DET
sulfa ADJ
drug NOUN
. PUNCT
  SPACE
About ADP
the DET
onlyproblem NOUN
I PRON
found VERB
was AUX
that SCONJ
I PRON
'm AUX
sensitive ADJ
and CCONJ
developed VERB
a DET
rash NOUN
after ADP
ninedays NOUN
of ADP
a DET
ten NUM
day NOUN
course NOUN
. PUNCT
  SPACE
No DET
more ADJ
Septra PROPN
for ADP
me PRON
. PUNCT
  SPACE
My PRON
doctor NOUN
wasremiss VERB
in ADP
not PART
telling VERB
me PRON
to PART
watch VERB
out ADP
for ADP
a DET
rash NOUN
. PUNCT
  SPACE
I PRON
was AUX
quite ADV
in ADP
thedark NOUN
and CCONJ
did AUX
n't PART
realize VERB
that SCONJ
it PRON
could AUX
be AUX
a DET
drug NOUN
reaction NOUN
. PUNCT
  SPACE
No ADV
harmdone NOUN
though ADV
. PUNCT
Doug PROPN
-- PUNCT
Douglas PROPN
S. PROPN
Rand PROPN
< X
drand@osf.org NUM
> X
		 SPACE
OSF PROPN
/ SYM
Motif PROPN
Dev PROPN
. PUNCT
Snail NOUN
: PUNCT
         SPACE
11 NUM
Cambridge PROPN
Center PROPN
, PUNCT
  SPACE
Cambridge PROPN
, PUNCT
  SPACE
MA PROPN
  SPACE
02142Disclaimer NUM
: PUNCT
    SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
OSF PROPN
agrees VERB
with ADP
me PRON
... PUNCT
let VERB
's PRON
vote VERB
on ADP
it PRON
. PUNCT
Amateur PROPN
Radio PROPN
: PUNCT
KC1KJNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58852From NUM
: PUNCT
richard@tis.com X
( PUNCT
Richard PROPN
Clark)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>packer@delphi.gsfc.nasa.gov PROPN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>>>Is VERB
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>I NOUN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG NOUN
sensitivity NOUN
are>>superstition PROPN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least>>a NUM
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the>>"Chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has>>always PROPN
used VERB
it PRON
. PUNCT
> X
	 SPACE
My PRON
blood NOUN
pressure NOUN
soars NOUN
, PUNCT
my PRON
heart NOUN
pounds NOUN
, PUNCT
and CCONJ
I PRON
ca AUX
n't PART
get AUX
to ADP
sleepfor NOUN
the DET
life NOUN
of ADP
me PRON
... PUNCT
feels VERB
about ADP
like INTJ
I PRON
just ADV
drank VERB
8 NUM
cups NOUN
of ADP
coffee NOUN
. PUNCT
	 SPACE
I PRON
avoid VERB
it PRON
, PUNCT
and CCONJ
beet NOUN
sugar NOUN
, PUNCT
flavor NOUN
enhancers NOUN
, PUNCT
beet NOUN
powder NOUN
, PUNCT
andwhatever VERB
other ADJ
names NOUN
it PRON
may AUX
go VERB
under ADV
. PUNCT
Basicaly PROPN
I PRON
read VERB
the DET
ingredients NOUN
, PUNCT
andif PROPN
I PRON
do AUX
n't PART
know VERB
what PRON
they PRON
all DET
are AUX
, PUNCT
I PRON
do AUX
n't PART
buy VERB
the DET
product NOUN
. PUNCT
	 SPACE
MSG NOUN
sensitivity NOUN
is AUX
definately ADV
* PUNCT
real*.-----------------------Relativity NOUN
Schmelativity----------------------------- PROPN
Richard PROPN
H. PROPN
Clark PROPN
				 SPACE
My PRON
opinions NOUN
are AUX
my PRON
own ADJ
, PUNCT
and CCONJ
LUNATIK PROPN
- PUNCT
watch VERB
for ADP
me PRON
on ADP
the DET
road NOUN
... PUNCT
		 SPACE
ought AUX
to PART
be AUX
yours PRON
, PUNCT
but CCONJ
under ADP
It PRON
's AUX
not PART
my PRON
fault NOUN
... PUNCT
I PRON
voted VERB
PEROT PROPN
! PUNCT
		 SPACE
no DET
circumstances NOUN
are AUX
they PRON
richard@tis.com X
				 SPACE
those DET
of ADP
my PRON
company NOUN
... PUNCT
-----------------------------------------------------------------------------Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58853From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)-*----I INTJ
agree VERB
with ADP
everything PRON
that PRON
Lee PROPN
Lady PROPN
wrote VERB
in ADP
her PRON
previous ADJ
post NOUN
inthis NOUN
thread NOUN
. PUNCT
  SPACE
In ADP
case NOUN
this DET
puzzles VERB
people NOUN
, PUNCT
I PRON
would AUX
like VERB
to PART
expandon VERB
two NUM
of ADP
her PRON
comments NOUN
. PUNCT
In ADP
article NOUN
< X
C5JoDH.9IG@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
Avoiding NOUN
mistakes NOUN
is AUX
certainly ADV
highly ADV
desirable ADJ
. PUNCT
  SPACE
However ADV
it PRON
is AUX
also ADV
> X
widely ADV
acknowledged VERB
that SCONJ
perfectionism NOUN
is AUX
inimicable ADJ
to ADP
creativity NOUN
. PUNCT
> X
... PUNCT
In ADP
the DET
extreme ADJ
case NOUN
, PUNCT
a DET
perfectionist NOUN
becomes VERB
so ADV
paralyzed ADJ
by ADP
all DET
> X
the DET
possible ADJ
mistakes NOUN
he PRON
might AUX
make VERB
that SCONJ
he PRON
is AUX
unable ADJ
to PART
even ADV
leave VERB
> X
the DET
house NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
most ADV
important ADJ
( PUNCT
and CCONJ
difficult ADJ
) PUNCT
aspects NOUN
of ADP
reasoningabout NOUN
empirical ADJ
investigation NOUN
lies VERB
in ADP
understanding VERB
the DET
context NOUN
, PUNCT
scope NOUN
, PUNCT
and CCONJ
importance NOUN
of ADP
the DET
various ADJ
arguments NOUN
and CCONJ
pieces NOUN
ofevidence NOUN
that PRON
are AUX
marshalled VERB
for ADP
a DET
claim NOUN
. PUNCT
  SPACE
Some DET
errors NOUN
break VERB
theback NOUN
of ADP
a DET
piece NOUN
of ADP
research NOUN
, PUNCT
some DET
leave VERB
a DET
hole NOUN
that PRON
needs VERB
to PART
befilled VERB
in ADV
, PUNCT
and CCONJ
some DET
are AUX
trivial ADJ
in ADP
their PRON
importance NOUN
. PUNCT
  SPACE
It PRON
is AUX
agrave VERB
mistake NOUN
to PART
confuse VERB
these DET
. PUNCT
Past ADJ
snippets NOUN
from ADP
this DET
thread NOUN
: PUNCT
> X
> X
> X
I PRON
doubt VERB
if SCONJ
Einstein PROPN
used VERB
any DET
formal ADJ
methodology NOUN
. PUNCT
  SPACE
.... PUNCT
> X
> X
He PRON
also ADV
proposed VERB
numerous ADJ
experiments NOUN
which PRON
if SCONJ
performed VERB
would AUX
> X
> X
distinguish VERB
a DET
universe NOUN
in ADP
which PRON
special ADJ
relativity NOUN
holds VERB
from ADP
> X
> X
one NUM
in ADP
which PRON
it PRON
does AUX
not PART
. PUNCT
... PUNCT
Back ADV
to ADP
Lee PROPN
Lady PROPN
: PUNCT
> X
These DET
are AUX
not PART
the DET
rules NOUN
according VERB
to ADP
many ADJ
who PRON
post VERB
to ADP
sci.med PUNCT
and CCONJ
> X
sci.psychology NOUN
. PUNCT
  SPACE
According VERB
to ADP
these DET
posters NOUN
  SPACE
" PUNCT
If SCONJ
it PRON
's AUX
not PART
supported VERB
by ADP
> PROPN
carefully ADV
designed VERB
controlled VERB
studies NOUN
then ADV
it PRON
's AUX
not PART
science NOUN
. PUNCT
"These ADJ
posters NOUN
are AUX
making VERB
the DET
mistake NOUN
that PRON
I PRON
have AUX
previouslycriticized VERB
of ADP
adhering VERB
to ADP
a DET
methodological ADJ
recipe NOUN
. PUNCT
  SPACE
A DET
" PUNCT
carefullydesigned VERB
and CCONJ
controlled VERB
study NOUN
" PUNCT
is AUX
neither DET
always ADV
possible ADJ
noralways NOUN
important ADJ
. PUNCT
  SPACE
( PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
if SCONJ
someone PRON
is AUX
proposing VERB
aremedy NOUN
that PRON
supposedly ADV
alleviates VERB
a DET
chronic ADJ
medical ADJ
problem NOUN
, PUNCT
wehave VERB
enough ADJ
knowledge NOUN
of ADP
the DET
errors NOUN
that PRON
have AUX
plagued VERB
* PUNCT
this DET
* PUNCT
kindof NOUN
claim VERB
to PART
ask VERB
for ADP
a DET
" PUNCT
carefully ADV
designed VERB
and CCONJ
controlled VERB
study"to PROPN
alleviate VERB
our PRON
skepticism.)Rules PROPN
such ADJ
as SCONJ
" PUNCT
support VERB
the DET
hypothesis NOUN
by ADP
a DET
carefully ADV
designed VERB
andcontrolled VERB
study NOUN
" PUNCT
are AUX
too ADV
narrow ADJ
to PART
apply VERB
to ADP
* PUNCT
all DET
* PUNCT
investigation NOUN
. PUNCT
I PRON
think VERB
that SCONJ
the DET
requirements NOUN
for ADP
particular ADJ
reasoning NOUN
to ADP
beconvincing NOUN
depends VERB
greatly ADV
on ADP
the DET
kinds NOUN
of ADP
mistakes NOUN
that PRON
haveoccurred VERB
in ADP
past ADJ
reasoning NOUN
about ADP
the DET
same ADJ
kinds NOUN
of ADP
things NOUN
. PUNCT
  SPACE
( PUNCT
Toreuse VERB
the DET
previous ADJ
example NOUN
, PUNCT
we PRON
know VERB
that SCONJ
conclusions NOUN
fromuncontrolled VERB
observations NOUN
of ADP
the DET
treatment NOUN
of ADP
chronic ADJ
medicalproblems NOUN
are AUX
notoriously ADV
problematic ADJ
. PUNCT
) PUNCT
  SPACE
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58854From NUM
: PUNCT
Mark-Tarbell@suite.comSubject ADJ
: PUNCT
Amniocentesis NOUN
, PUNCT
et PROPN
. PUNCT
al PROPN
. PUNCT
Is AUX
there PRON
some DET
difference NOUN
between ADP
the DET
purposes NOUN
behindamniocentesis NOUN
and CCONJ
chorionic ADJ
villi NOUN
sampling NOUN
? PUNCT
They PRON
soundsimilar ADJ
to ADP
me PRON
, PUNCT
but CCONJ
are AUX
intended VERB
to PART
detect VERB
differentthings?Thanks.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58855Subject VERB
: PUNCT
Need VERB
Help NOUN
in ADP
Steroid PROPN
ResearchFrom PROPN
: PUNCT
tthomps@eis.calstate.edu PROPN
( PUNCT
Thomas PROPN
Thompson PROPN
) PUNCT
     SPACE
I PRON
am AUX
doing VERB
a DET
term NOUN
paper NOUN
on ADP
steroids NOUN
, PUNCT
actually ADV
the DET
scientist NOUN
whohelped VERB
crate VERB
the DET
drug NOUN
. PUNCT
I PRON
discovered VERB
that SCONJ
Joseph PROPN
Fruton PROPN
is AUX
one NUM
of ADP
theresearchers NOUN
who PRON
helped VERB
create VERB
anabolic ADJ
steroids NOUN
. PUNCT
The DET
only ADJ
information NOUN
on ADP
this DET
person NOUN
I PRON
know VERB
is AUX
he PRON
was AUX
a DET
biochemist NOUN
that PRON
did AUX
research NOUN
in ADP
the DET
1930's NOUN
. PUNCT
I PRON
already ADV
did AUX
research NOUN
at ADP
my PRON
local ADJ
libraries NOUN
, PUNCT
but CCONJ
I PRON
still ADV
need VERB
moreinformation NOUN
. PUNCT
My PRON
instructor NOUN
is AUX
requiring VERB
resources NOUN
from ADP
the DET
computernetworks NOUN
. PUNCT
Please INTJ
write VERB
back ADV
concerning VERB
my PRON
subject NOUN
, PUNCT
any DET
books NOUN
, PUNCT
articles NOUN
, PUNCT
etc X
. PROPN
, PUNCT
will AUX
be AUX
appreciated VERB
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58856From NUM
: PUNCT
brein@jplpost.jpl.nasa.gov PROPN
( PUNCT
Barry PROPN
S. PROPN
Rein)Subject PROPN
: PUNCT
Need VERB
survival NOUN
data NOUN
on ADP
colon NOUN
cancerA PROPN
relative NOUN
of ADP
mine NOUN
was AUX
recently ADV
diagnosed VERB
with ADP
colon NOUN
cancer NOUN
. PUNCT
  SPACE
I PRON
would AUX
liketo VERB
know VERB
the DET
best ADJ
source NOUN
of ADP
survival NOUN
statistics NOUN
for ADP
this DET
disease NOUN
whendiscovered VERB
at ADP
its PRON
various ADJ
stages NOUN
. PUNCT
I PRON
would AUX
prefer VERB
to PART
be AUX
directed VERB
to ADP
a DET
recent ADJ
source NOUN
of ADP
this DET
data NOUN
, PUNCT
rather ADV
thanreceive VERB
the DET
data NOUN
itself PRON
. PUNCT
Thank VERB
you PRON
, PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                              SPACE
Barry PROPN
Rein PROPN
                                 SPACE
* PUNCT
* PUNCT
                       SPACE
brein@jplpost.jpl.nasa.gov NUM
                        SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                            SPACE
No DET
clever ADJ
comment NOUN
. PUNCT
                           SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58857From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5L9ws.Jn2@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>| PUNCT
> X
genes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
out>| ADP
> X
binding NOUN
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequence>>But PROPN
why ADV
do AUX
you PRON
characterize VERB
this DET
as SCONJ
a DET
" PUNCT
flight NOUN
of ADP
fancy NOUN
" PUNCT
or CCONJ
a DET
" PUNCT
fantasy"?The NUM
fantasy NOUN
was AUX
that SCONJ
he PRON
had AUX
found VERB
something PRON
of ADP
fundamental ADJ
importance NOUN
toone NOUN
of ADP
the DET
hot ADJ
questions NOUN
of ADP
the DET
day NOUN
( PUNCT
' NUM
77 NUM
) PUNCT
. PUNCT
  SPACE
He PRON
really ADV
had AUX
very ADV
littlereason NOUN
to PART
believe VERB
it PRON
, PUNCT
other ADJ
than SCONJ
raw ADJ
hope NOUN
. PUNCT
  SPACE
By ADP
fantasy NOUN
, PUNCT
I PRON
certainly ADV
don'tmean VERB
Velikovskian ADJ
manias.>some PROPN
other ADJ
theory NOUN
or CCONJ
domain NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
would AUX
offer VERB
some DET
rather ADV
well ADV
known VERB
examples NOUN
> X
such ADJ
as SCONJ
Toricelli PROPN
's PART
Puy PROPN
de X
Dome PROPN
experiment NOUN
done VERB
for ADP
the DET
sake NOUN
of ADP
his>"sea PROPN
of ADP
air NOUN
" PUNCT
hypothesis NOUN
. PUNCT
I'm PRON
not PART
familiar ADJ
with ADP
the DET
history NOUN
of ADP
this DET
experiment NOUN
, PUNCT
although SCONJ
, PUNCT
arguably ADV
, PUNCT
I PRON
should AUX
be.>"surprising"?>Well PROPN
, PUNCT
given VERB
the DET
* PUNCT
prior ADJ
* PUNCT
explanations NOUN
of ADP
the DET
phenomena NOUN
involved VERB
it PRON
certainly ADV
> X
be AUX
counted VERB
as SCONJ
so ADV
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
constructed VERB
( PUNCT
and CCONJ
the DET
experiment NOUN
designed)>out ADP
of ADP
" PUNCT
perfectly ADV
rational ADJ
grounds NOUN
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
there PRON
was AUX
a DET
pretty ADV
successful ADJ
and CCONJ
> X
well INTJ
know VERB
theory NOUN
of ADP
fluids NOUN
. PUNCT
  SPACE
The DET
analogy NOUN
to ADP
fluids NOUN
by ADP
Toricelli PROPN
is AUX
explicit.>The ADP
novelty NOUN
was AUX
in ADP
thinking NOUN
of ADP
air NOUN
as SCONJ
a DET
fluid NOUN
( PUNCT
but CCONJ
this DET
was AUX
* PUNCT
quite ADV
* PUNCT
a DET
novelty NOUN
> X
at ADP
the DET
time NOUN
) PUNCT
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
interesting ADJ
? PUNCT
  SPACE
Yes INTJ
. PUNCT
  SPACE
Was AUX
it PRON
" PUNCT
new ADJ
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
one NOUN
> X
could AUX
argue VERB
that SCONJ
it PRON
was AUX
merely ADV
the DET
extension NOUN
of ADP
an DET
existing VERB
theory NOUN
to ADP
a DET
new ADJ
> X
domain NOUN
, PUNCT
but CCONJ
I PRON
think VERB
this DET
begs VERB
certain ADJ
questions NOUN
. PUNCT
  SPACE
We PRON
can AUX
debate VERB
that SCONJ
if SCONJ
you PRON
> X
like INTJ
. PUNCT
I PRON
think VERB
that SCONJ
it PRON
is AUX
enough ADJ
if SCONJ
his PRON
contemporaries NOUN
found VERB
the DET
result NOUN
surprising ADJ
. PUNCT
That DET
's AUX
not PART
what PRON
I PRON
'd AUX
quibble VERB
about ADP
. PUNCT
  SPACE
What PRON
I PRON
'd AUX
like VERB
to PART
know VERB
are AUX
Toricelli'sreasons NOUN
for ADP
doing VERB
his PRON
experiment NOUN
; PUNCT
not PART
the DET
post X
hoc X
_ PROPN
constructed VERB
_ PROPN
reasons NOUN
, PUNCT
but CCONJ
the DET
thoughts NOUN
in ADP
his PRON
head NOUN
as SCONJ
he PRON
considered VERB
the DET
problem NOUN
. PUNCT
  SPACE
It PRON
may AUX
beimpossible VERB
to PART
know VERB
much ADJ
about ADP
Toricelli PROPN
's PART
thoughts NOUN
; PUNCT
that DET
's AUX
too ADV
bad ADJ
ifit NOUN
is AUX
so ADV
. PUNCT
  SPACE
One NUM
of ADP
Root PROPN
- PUNCT
Bernstein PROPN
's PART
services NOUN
to ADP
science NOUN
is AUX
that SCONJ
he PRON
has AUX
gonerooting VERB
about ADP
in ADP
Pasteur PROPN
's PART
and CCONJ
Fleming PROPN
's PART
( PUNCT
and CCONJ
other ADJ
people NOUN
's PART
) PUNCT
notes NOUN
, PUNCT
and CCONJ
hasdiscovered VERB
some DET
surprising ADJ
clues NOUN
about ADP
their PRON
motivations NOUN
. PUNCT
  SPACE
Pasteur PROPN
neverpublicly ADV
admitted VERB
his PRON
plan NOUN
to PART
create VERB
mirror NOUN
- PUNCT
image NOUN
life NOUN
, PUNCT
but CCONJ
the DET
dreams NOUN
areright NOUN
there ADV
in ADP
his PRON
notebooks NOUN
( PUNCT
finally ADV
public ADJ
after ADP
many ADJ
years NOUN
) PUNCT
, PUNCT
ready ADJ
foranyone NOUN
to PART
read VERB
. PUNCT
  SPACE
And CCONJ
I PRON
and CCONJ
my PRON
friends NOUN
often ADV
have AUX
the DET
most ADJ
ridiculousreasons NOUN
for ADP
pursuing VERB
results NOUN
; PUNCT
one NUM
of ADP
my PRON
best ADJ
came VERB
because SCONJ
I PRON
was AUX
mad ADJ
ata NOUN
colleague NOUN
for ADP
a DET
poorly ADV
- PUNCT
written VERB
claim NOUN
( PUNCT
I PRON
disproved VERB
the DET
claim).Of ADJ
course NOUN
, PUNCT
Toricelli PROPN
's PART
case NOUN
may AUX
be AUX
an DET
example NOUN
of ADP
a DET
rarety NOUN
: PUNCT
where ADV
thefantasy NOUN
not PART
only ADV
motivates VERB
the DET
experiment NOUN
, PUNCT
but CCONJ
turns VERB
out ADP
to PART
be AUX
rightin PROPN
the DET
end NOUN
. PUNCT
Mark-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58858From NUM
: PUNCT
sdbsd5@cislabs.pitt.edu PROPN
( PUNCT
Stephen PROPN
D PROPN
Brener)Subject PROPN
: PUNCT
Japanese ADJ
for ADP
Scientists PROPN
and CCONJ
Engineers PROPN
    SPACE
INTENSIVE VERB
JAPANESE ADJ
AT ADP
THE DET
UNIVERSITY NOUN
OF ADP
PITTSBURGH PROPN
THIS PROPN
SUMMER NOUN
    SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^The PUNCT
University PROPN
of ADP
Pittsburgh PROPN
is AUX
offering VERB
two NUM
intensive ADJ
Japanese ADJ
languagecourses NOUN
this DET
summer NOUN
. PUNCT
  SPACE
Both DET
courses NOUN
, PUNCT
Intensive ADJ
Elementary PROPN
Japanese ADJ
and CCONJ
Intensive ADJ
Intermediate PROPN
Japanese PROPN
, PUNCT
are AUX
ten NUM
week NOUN
, PUNCT
ten NUM
credit NOUN
courses NOUN
each DET
equivalent ADJ
to ADP
one NUM
full ADJ
year NOUN
of ADP
Japanese ADJ
language NOUN
study NOUN
. PUNCT
  SPACE
They PRON
begin VERB
June PROPN
7 NUM
and CCONJ
end VERB
August PROPN
13 NUM
. PUNCT
  SPACE
The DET
courses NOUN
meet VERB
five NUM
days NOUN
per ADP
week NOUN
, PUNCT
five NUM
hours NOUN
per ADP
day NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
flat ADJ
rate NOUN
tuition NOUN
charge NOUN
of ADP
$ SYM
1600 NUM
per ADP
course NOUN
. PUNCT
  SPACE
Fellowships NOUN
available ADJ
for ADP
science NOUN
and CCONJ
engineering NOUN
students NOUN
. PUNCT
  SPACE
Contact PROPN
Steven PROPN
Brener PROPN
, PUNCT
Program PROPN
Manager PROPN
of ADP
the DET
Japanese PROPN
Science PROPN
and CCONJ
TechnologyManagement PROPN
Program PROPN
, PUNCT
at ADP
the DET
University PROPN
of ADP
Pittsburgh PROPN
at ADP
the DET
number NOUN
oraddress ADV
below ADV
. PUNCT
  SPACE
ALL DET
INTERESTED ADJ
INDIVIDUALS NOUN
ARE VERB
ENCOURAGED VERB
TO PART
APPLY VERB
, PUNCT
THIS DET
IS VERB
NOT ADV
LIMITED ADJ
TO PART
UNIVERSITY VERB
STUDENTS NOUN
. PUNCT
  SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
   SPACE
New PROPN
Program PROPN
Announcement PROPN
   SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
            SPACE
JAPANESE ADJ
SCIENCE PROPN
AND CCONJ
TECHNOLOGY PROPN
MANAGEMENT PROPN
PROGRAMThe ADJ
Japanese PROPN
Science PROPN
and CCONJ
Technology PROPN
Management PROPN
Program PROPN
( PUNCT
JSTMP PROPN
) PUNCT
is AUX
a DET
newprogram NOUN
jointly ADV
developed VERB
by ADP
the DET
University PROPN
of ADP
Pittsbugh PROPN
and CCONJ
Carnegie PROPN
Mellon PROPN
University PROPN
. PUNCT
  SPACE
Students NOUN
and CCONJ
professionals NOUN
in ADP
the DET
engineering NOUN
and CCONJ
scientific ADJ
communitites NOUN
are AUX
encouraged VERB
to PART
apply VERB
for ADP
classes NOUN
commencing VERB
in ADP
June PROPN
1993 NUM
and CCONJ
January PROPN
1994.PROGRAM PUNCT
OBJECTIVESThe ADJ
program NOUN
intends VERB
to PART
promote VERB
technology NOUN
transfer NOUN
between ADP
Japan PROPN
and CCONJ
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
designed VERB
to PART
let VERB
scientists NOUN
, PUNCT
engineers NOUN
, PUNCT
and CCONJ
managersexperience VERB
how ADV
the DET
Japanese PROPN
proceed VERB
with ADP
technological ADJ
development NOUN
. PUNCT
  SPACE
This DET
is AUX
facilitated VERB
by ADP
extended ADJ
internships NOUN
in ADP
Japanese ADJ
research NOUN
facilities NOUN
andlaboratories NOUN
that PRON
provide VERB
participants NOUN
with ADP
the DET
opportunity NOUN
to ADP
developlong ADJ
- PUNCT
term NOUN
professional ADJ
relationships NOUN
with ADP
their PRON
Japanese ADJ
counterparts NOUN
. PUNCT
PROGRAM NOUN
DESIGNTo NOUN
fulfill VERB
the DET
objectives NOUN
of ADP
the DET
program NOUN
, PUNCT
participants NOUN
will AUX
be AUX
required VERB
to PART
develop VERB
advanced ADJ
language NOUN
capability NOUN
and CCONJ
a DET
deep ADJ
understanding NOUN
of ADP
Japan PROPN
andits VERB
culture NOUN
. PUNCT
  SPACE
Correspondingly ADV
, PUNCT
JSTMP PROPN
consists VERB
of ADP
three NUM
major ADJ
components:1 PROPN
. PUNCT
TRAINING NOUN
IN ADP
THE DET
JAPANESE ADJ
LANGUAGESeveral ADJ
Japanese ADJ
language NOUN
courses NOUN
will AUX
be AUX
offered VERB
, PUNCT
including VERB
intensive ADJ
coursesdesigned VERB
to ADP
expedite ADJ
language NOUN
preparation NOUN
for ADP
scientists NOUN
and CCONJ
engineers NOUN
in ADP
arelatively ADV
short ADJ
time.2 NOUN
. PUNCT
EDUCATION PROPN
IN ADP
JAPANESE ADJ
BUSINESS NOUN
AND CCONJ
SOCIAL PROPN
CULTUREA VERB
particular ADJ
enphasis NOUN
is AUX
placed VERB
on ADP
attaining VERB
a DET
deep ADJ
understanding NOUN
of ADP
thecultural ADJ
and CCONJ
educational ADJ
basis NOUN
of ADP
Japanese ADJ
management NOUN
approaches NOUN
in ADP
manufacturing NOUN
and CCONJ
information NOUN
technology NOUN
. PUNCT
  SPACE
Courses NOUN
will AUX
be AUX
available ADJ
in ADP
a DET
variety NOUN
of ADP
departments NOUN
throughout ADP
both DET
universities NOUN
including VERB
Anthropology PROPN
, PUNCT
Sociology NOUN
, PUNCT
History NOUN
, PUNCT
and CCONJ
Political PROPN
Science PROPN
. PUNCT
  SPACE
Moreover ADV
, PUNCT
seminars NOUN
and CCONJ
colloquiumswill ADV
be AUX
conducted VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
a DET
field NOUN
trip NOUN
to ADP
Japanese ADJ
manufacturing NOUN
or CCONJ
research NOUN
facilities NOUN
in ADP
the DET
United PROPN
States PROPN
will AUX
be AUX
scheduled.3 PROPN
. PUNCT
AN DET
INTERNSHIP NOUN
OR CCONJ
A DET
STUDY NOUN
MISSION NOUN
IN ADP
JAPANUpon ADJ
completion NOUN
of ADP
their PRON
language NOUN
and CCONJ
cultural ADJ
training NOUN
at ADP
PITT PROPN
and CCONJ
CMU PROPN
, PUNCT
participants NOUN
will AUX
have AUX
the DET
opportunity NOUN
to PART
go VERB
to ADP
Japan PROPN
and CCONJ
observe VERB
, PUNCT
and CCONJ
participate VERB
in ADP
the DET
management NOUN
of ADP
technology NOUN
. PUNCT
  SPACE
Internships PROPN
in ADP
Japanwill PROPN
generally ADV
run VERB
for ADP
one NUM
year NOUN
; PUNCT
however ADV
, PUNCT
shorter ADJ
ones NOUN
are AUX
possible ADJ
. PUNCT
FELLOWSHIPS PROPN
COVERING VERB
TUITION NOUN
FOR ADP
LANGUAGE PROPN
AND CCONJ
CULTURE NOUN
COURSES NOUN
, PUNCT
AS ADP
WELL NOUN
ASSTIPENDS VERB
FOR ADP
LIVING NOUN
EXPENSES NOUN
ARE VERB
AVAILABLE ADJ
. PUNCT
        SPACE
FOR ADP
MORE ADJ
INFORMATION NOUN
AND CCONJ
APPLICATION NOUN
MATERIALS NOUN
CONTACTSTEVEN VERB
BRENER NOUN
				 SPACE
SUSIE ADJ
BROWNJSTMP PROPN
					 SPACE
Carnegie PROPN
Mellon PROPN
University PROPN
, PUNCT
GSIAUniversity NOUN
of ADP
Pittsburgh PROPN
		 SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
15213 NUM
- PUNCT
38904E25 NOUN
Forbes PROPN
Quadrangle PROPN
			 SPACE
Telephone NOUN
: PUNCT
( PUNCT
412 NUM
) PUNCT
268 NUM
- SYM
7806Pittsburgh PROPN
, PUNCT
PA PROPN
15260 NUM
			 SPACE
FAX NOUN
: PUNCT
	    SPACE
( PUNCT
412 NUM
) PUNCT
268 NUM
- PUNCT
8163Telephone NUM
: PUNCT
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
7414 NUM
		 SPACE
FAX PROPN
: PUNCT
       SPACE
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
2199 NUM
		 SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# NOUN
Interested ADJ
individuals NOUN
, PUNCT
companies NOUN
and CCONJ
institutions NOUN
should AUX
respond VERB
by ADP
phone NOUN
ormail NOUN
. PUNCT
  SPACE
Please INTJ
do AUX
not PART
inquire VERB
via ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
Please INTJ
note VERB
that SCONJ
this DET
is AUX
directed VERB
at ADP
grads NOUN
and CCONJ
professionals NOUN
, PUNCT
however ADV
, PUNCT
advancedundergrads NOUN
will AUX
be AUX
considered VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
funding NOUN
is AUX
resticted VERB
to ADP
US PROPN
citizensand NOUN
permanent ADJ
residents NOUN
of ADP
the DET
US.Steve PROPN
BrenerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58859From NUM
: PUNCT
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EndometriosisYou PROPN
may AUX
want VERB
to PART
inquire VERB
about ADP
taking VERB
Lupron PROPN
as SCONJ
a DET
medication NOUN
. PUNCT
It'ssupposed VERB
to PART
be AUX
a DET
new ADJ
treatment NOUN
, PUNCT
and CCONJ
it PRON
's AUX
described VERB
in ADP
Nov. PROPN
1992issue NUM
of ADP
J. PROPN
of ADP
Obst PROPN
. PUNCT
and CCONJ
Gyn PROPN
. PUNCT
Lupron PROPN
is AUX
taken VERB
as SCONJ
a DET
monthly ADJ
injection NOUN
, PUNCT
whereas SCONJ
other ADJ
drugs NOUN
suchas PROPN
danazol PROPN
are AUX
taken VERB
daily ADV
as SCONJ
pills NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58860From NUM
: PUNCT
cps@generali.harvard.edu PROPN
( PUNCT
Chris PROPN
Schaeffer)Subject NUM
: PUNCT
Re ADP
: PUNCT
EugenicsIn PROPN
article NOUN
< X
19617@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible.>[ NOUN
... PUNCT
should AUX
] PUNCT
we PRON
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADJ
- PUNCT
lived,>Arnold NOUN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can.>---------------------------------------------------------------------------->Gordon VERB
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
---------------------------------------------------------------------------- PUNCT
	 SPACE
Two NUM
thoughts NOUN
. PUNCT
	 SPACE
- PUNCT
I PRON
think VERB
that SCONJ
psychologically ADV
it PRON
will AUX
be AUX
easier ADJ
for ADP
the DET
next ADJ
generation NOUN
to PART
accept VERB
genetic ADJ
manipulation NOUN
. PUNCT
  SPACE
It PRON
seems VERB
that SCONJ
people NOUN
frownupon ADP
' PUNCT
messing NOUN
with ADP
Nature PROPN
' PUNCT
, PUNCT
ignoring VERB
our PRON
eons NOUN
- PUNCT
old ADJ
practice NOUN
of ADP
doing VERB
just ADV
that DET
. PUNCT
Any DET
new ADJ
human ADJ
intervention NOUN
is AUX
' PUNCT
arrogance NOUN
and CCONJ
hubris PROPN
' PUNCT
and CCONJ
manipulationwe PROPN
routinely ADV
do AUX
is AUX
' PUNCT
natural ADJ
' PUNCT
and CCONJ
certainly ADV
' PUNCT
not PART
a DET
big ADJ
deal NOUN
' PUNCT
. PUNCT
	 SPACE
- PUNCT
Most ADV
interesting ADJ
human ADJ
traits NOUN
will AUX
probably ADV
be AUX
massivelypolygenetic ADJ
and CCONJ
be AUX
full ADJ
of ADP
trade NOUN
- PUNCT
offs NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
without ADP
a DET
positivesocial ADJ
environment NOUN
for ADP
the DET
cultivation NOUN
of ADP
genetic ADJ
gifts NOUN
, PUNCT
having VERB
them PRON
won'tbe ADV
the DET
advantage NOUN
it PRON
's AUX
made VERB
out ADP
to PART
be AUX
. PUNCT
  SPACE
Some DET
people NOUN
will AUX
certainly ADV
pursue VERB
itas PROPN
if SCONJ
it PRON
is AUX
the DET
Grail PROPN
, PUNCT
but CCONJ
we PRON
know VERB
how ADV
most ADJ
of ADP
those DET
quests NOUN
turn VERB
out ADP
. PUNCT
Chris PROPN
Schaeffer PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58861From NUM
: PUNCT
akins@cbnewsd.cb.att.com PROPN
( PUNCT
kay.a.akins)Subject NOUN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
PAULSON.93Apr15082558@cmb00.larc.nasa.gov NUM
> X
, PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
am AUX
posting VERB
to ADP
this DET
group NOUN
in ADP
hopes NOUN
of ADP
finding VERB
someone PRON
out ADV
there ADV
in ADP
> NUM
network NOUN
newsland NOUN
who PRON
has AUX
heard VERB
of ADP
something PRON
similar ADJ
to ADP
what PRON
I PRON
am AUX
going VERB
> X
to PART
describe VERB
here ADV
. PUNCT
  SPACE
I PRON
have AUX
a DET
fourteen NUM
year NOUN
old ADJ
daugter ADV
who PRON
experienced VERB
> X
a DET
seizure NOUN
on ADP
November PROPN
3 NUM
, PUNCT
1992 NUM
at ADP
6:45AM NUM
after ADP
eating VERB
Kellog PROPN
's PART
Frosted PROPN
> X
Flakes PROPN
. PUNCT
  SPACE
She PRON
is AUX
perfectly ADV
healthy ADJ
, PUNCT
had AUX
never ADV
experienced VERB
anything PRON
like SCONJ
> X
this DET
before ADV
, PUNCT
and CCONJ
there PRON
is AUX
no DET
history NOUN
of ADP
seizures NOUN
in ADP
either DET
side NOUN
of ADP
the DET
> PROPN
family NOUN
. PUNCT
  SPACE
All DET
the DET
tests NOUN
( PUNCT
EEG PROPN
, PUNCT
MRI PROPN
, PUNCT
EKG PROPN
) PUNCT
came VERB
out ADP
negative ADJ
so SCONJ
the DET
decision NOUN
> X
was AUX
made VERB
to PART
do AUX
nothing PRON
and CCONJ
just ADV
wait VERB
to PART
see VERB
if SCONJ
it PRON
happened VERB
again ADV
. PUNCT
> X
> X
Well INTJ
, PUNCT
we PRON
were AUX
going VERB
along ADP
fine ADJ
and CCONJ
the DET
other ADJ
morning NOUN
, PUNCT
April PROPN
5 NUM
, PUNCT
she PRON
had AUX
> X
a DET
bowl NOUN
of ADP
another DET
Kellog PROPN
's PART
frosted ADJ
kind NOUN
of ADP
cereal NOUN
, PUNCT
Fruit PROPN
Loops PROPN
( PUNCT
I PRON
am AUX
> X
embarrassed VERB
to PART
admit VERB
that SCONJ
I PRON
even ADV
bought VERB
that DET
junk NOUN
but CCONJ
every DET
once ADV
> X
in ADP
a DET
while NOUN
... PUNCT
) PUNCT
So ADV
I PRON
pour VERB
it PRON
in ADP
her PRON
bowl NOUN
and CCONJ
think VERB
" PUNCT
Oh INTJ
, PUNCT
oh INTJ
, PUNCT
this DET
is AUX
the DET
> X
same ADJ
kind NOUN
of ADP
junk NOUN
she PRON
was AUX
eating VERB
when ADV
she PRON
had AUX
that DET
seizure NOUN
. PUNCT
" PUNCT
  SPACE
Ten NUM
> X
minutes NOUN
later ADV
she PRON
had AUX
a DET
full ADJ
blown VERB
seizures NOUN
. PUNCT
This DET
was AUX
her PRON
first ADJ
exposure NOUN
> X
to ADP
a DET
sugar NOUN
coated VERB
cereal NOUN
since SCONJ
the DET
last ADJ
seizure NOUN
....... PUNCT
My PRON
daughter NOUN
has AUX
Epilepsy PROPN
and CCONJ
I PRON
attend VERB
a DET
monthly ADJ
parent NOUN
support NOUN
group NOUN
. PUNCT
Just ADV
Wednesday PROPN
night NOUN
, PUNCT
a DET
mother NOUN
was AUX
telling VERB
how ADV
she PRON
decided VERB
to PART
throwall VERB
the DET
junk NOUN
food NOUN
out ADP
and CCONJ
see VERB
if SCONJ
it PRON
made VERB
a DET
difference NOUN
in ADP
her PRON
13 NUM
year NOUN
- PUNCT
old'sseizures NOUN
. PUNCT
  SPACE
He PRON
was AUX
having VERB
about ADP
one NUM
seizure NOUN
per ADP
week NOUN
. PUNCT
  SPACE
She PRON
reported VERB
thatshe PRON
did AUX
this DET
on ADP
Thursday PROPN
( PUNCT
3/11 NUM
) PUNCT
, PUNCT
he PRON
had AUX
a DET
seizure NOUN
on ADP
Saturday PROPN
and CCONJ
thenwent NOUN
4 NUM
weeks NOUN
without ADP
a DET
seizure NOUN
! PUNCT
! PUNCT
  SPACE
On ADP
Easter PROPN
he PRON
went VERB
to ADP
Grandma PROPN
's PART
and CCONJ
ate VERB
candy NOUN
, PUNCT
pop NOUN
- PUNCT
anything PRON
he PRON
wanted VERB
. PUNCT
  SPACE
He PRON
had AUX
a DET
seizure NOUN
the DET
next ADJ
day NOUN
. PUNCT
  SPACE
She PRON
sees VERB
sensitivity NOUN
to ADP
nutrasweet PROPN
, PUNCT
sugar NOUN
, PUNCT
colors NOUN
, PUNCT
caffine NOUN
and CCONJ
corn NOUN
. PUNCT
  SPACE
Withcorn PROPN
she PRON
says VERB
, PUNCT
he PRON
gets VERB
very ADV
nervous ADJ
and CCONJ
aggresive ADJ
. PUNCT
  SPACE
With ADP
my PRON
own ADJ
daughter NOUN
( PUNCT
age NOUN
7 NUM
) PUNCT
, PUNCT
I PRON
think VERB
she PRON
is AUX
also ADV
sensitive ADJ
and CCONJ
staysaway NOUN
from ADP
those DET
foods NOUN
on ADP
her PRON
own ADJ
. PUNCT
  SPACE
She PRON
has AUX
never ADV
had VERB
gum NOUN
, PUNCT
wo AUX
n't PART
eatcandy VERB
, PUNCT
prefers VERB
an DET
apple NOUN
to ADP
a DET
cookie NOUN
, PUNCT
does AUX
n't PART
like VERB
chocolate NOUN
and CCONJ
won'teven NUM
use VERB
toothpaste NOUN
! PUNCT
! PUNCT
! PUNCT
  SPACE
Her PRON
brother NOUN
, PUNCT
on ADP
the DET
other ADJ
hand NOUN
, PUNCT
is AUX
a DET
junk NOUN
foodaddict NOUN
! PUNCT
  SPACE
Hope PROPN
this DET
helps VERB
. PUNCT
  SPACE
Good PROPN
Luck PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58862From NUM
: PUNCT
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel)Subject NUM
: PUNCT
Bouncing VERB
LymeNet PROPN
newsletters NOUN
... PUNCT
The DET
following VERB
4 NUM
addresses NOUN
are AUX
on ADP
the DET
LymeNet PROPN
mailing NOUN
list NOUN
, PUNCT
but CCONJ
are AUX
rejectingmail ADJ
. PUNCT
  SPACE
Since SCONJ
the DET
list NOUN
server NOUN
originally ADV
accepted VERB
these DET
addresses NOUN
successfully ADV
, PUNCT
I PRON
assume VERB
these DET
addresses NOUN
have AUX
since SCONJ
been AUX
eliminated VERB
. PUNCT
  SPACE
Improperly ADJ
functioningmail NOUN
gateways NOUN
might AUX
also ADV
be AUX
responsible ADJ
. PUNCT
If SCONJ
you PRON
are AUX
listed VERB
here ADV
and CCONJ
would AUX
still ADV
like VERB
to PART
remain VERB
on ADP
the DET
list NOUN
, PUNCT
pleasewrite VERB
to ADP
me PRON
. PUNCT
  SPACE
Otherwise ADV
, PUNCT
I PRON
will AUX
remove VERB
these DET
addresses NOUN
from ADP
the DET
list NOUN
before ADP
thenext NOUN
newsletter NOUN
goes VERB
out ADP
. PUNCT
As SCONJ
a DET
general ADJ
rule NOUN
, PUNCT
please INTJ
remember VERB
to PART
* PUNCT
unsubscribe VERB
* PUNCT
from ADP
all DET
your PRON
mailinglists NOUN
before ADP
your PRON
account NOUN
is AUX
closed ADJ
. PUNCT
  SPACE
This DET
will AUX
save VERB
the DET
listserv ADJ
maintainerfrom ADP
many ADJ
headaches NOUN
. PUNCT
Lezliel@Sitka NOUN
. PUNCT
Sun PROPN
. PUNCT
COMKenneth_R_Hall@Roch817.Xerox PROPN
. PUNCT
COMWestmx!ayoub@uunet.uu.netAbsol.absol.com!rsb@panix PROPN
. PUNCT
COM-- NOUN
----------------------------------------------------------------------- PUNCT
              SPACE
Marc PROPN
C. PROPN
Gabriel PROPN
        SPACE
- PUNCT
  SPACE
U.C. PROPN
Box PROPN
545 NUM
  SPACE
- PUNCT
              SPACE
( PUNCT
215 NUM
) PUNCT
882 NUM
- SYM
0138 NUM
         SPACE
Lehigh PROPN
UniversityNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58863From NUM
: PUNCT
andersom@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Marc PROPN
Anderson)Subject NUM
: PUNCT
Miracle NOUN
Berries PROPN
anyone?[From ADP
Kalat PROPN
, PUNCT
J.W PROPN
.. PUNCT
( PUNCT
1992 NUM
) PUNCT
: PUNCT
  SPACE
_ PROPN
Biological PROPN
Psychology PROPN
_ PROPN
. PUNCT
Wadsworth PROPN
Publishing PROPN
Co PROPN
. PUNCT
Belmont PROPN
, PUNCT
CA PROPN
. PUNCT
  SPACE
Pg PROPN
. PROPN
219 NUM
. PUNCT
  SPACE
Reproduced VERB
without ADP
permission.]Digression NOUN
6.1 NUM
: PUNCT
  SPACE
Miracle PROPN
Berries PROPN
and CCONJ
the DET
Modification PROPN
of ADP
Taste PROPN
ReceptorsAlthough PROPN
the DET
_ PROPN
miracle NOUN
berry PROPN
_ PROPN
, PUNCT
a DET
plant NOUN
native ADJ
to ADP
West PROPN
Africa PROPN
is AUX
practicallytasteless NOUN
, PUNCT
it PRON
temporarily ADV
changes VERB
the DET
taste NOUN
of ADP
other ADJ
substances NOUN
. PUNCT
  SPACE
Miracleberries PROPN
contain VERB
a DET
protein NOUN
, PUNCT
_ PROPN
miraculin PROPN
_ PROPN
, PUNCT
that SCONJ
modifies VERB
sweet ADJ
receptors NOUN
insuch ADP
a DET
way NOUN
that PRON
they PRON
can AUX
be AUX
stimulated VERB
by ADP
acids NOUN
( PUNCT
Bartoshuk PROPN
, PUNCT
Gentile PROPN
, PUNCT
Moskowitz PROPN
, PUNCT
& CCONJ
Meiselman PROPN
, PUNCT
1974 NUM
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
ever ADV
get VERB
a DET
chance NOUN
to PART
chew VERB
a DET
miracleberry NOUN
( PUNCT
and CCONJ
I PRON
do AUX
recommend VERB
it PRON
) PUNCT
, PUNCT
for ADP
about ADP
the DET
next ADJ
half DET
an DET
hour NOUN
all DET
acids NOUN
( PUNCT
which PRON
are AUX
normally ADV
sour ADJ
) PUNCT
will AUX
taste VERB
sweet PROPN
. PUNCT
  SPACE
They PRON
will AUX
continue VERB
to PART
tastesour VERB
as ADV
well ADV
. PUNCT
Miraculin PROPN
was AUX
, PUNCT
for ADP
a DET
time NOUN
, PUNCT
commercially ADV
available ADJ
in ADP
the DET
United PROPN
States PROPN
as SCONJ
adiet ADJ
aid NOUN
. PUNCT
  SPACE
The DET
idea NOUN
was AUX
that SCONJ
dieters NOUN
could AUX
coat VERB
their PRON
tongue NOUN
with ADP
a DET
miraculinpill NOUN
and CCONJ
then ADV
eat VERB
and CCONJ
drink VERB
unsweetened ADJ
, PUNCT
slightly ADV
acidic ADJ
substances NOUN
. PUNCT
  SPACE
Suchsubstances NOUN
would AUX
taste VERB
sweet PROPN
without ADP
providing VERB
many ADJ
calories NOUN
. PUNCT
A DET
colleague NOUN
and CCONJ
I PRON
once ADV
spent VERB
an DET
evening NOUN
experimenting VERB
with ADP
miracle NOUN
berries NOUN
. PUNCT
We PRON
drank VERB
straight ADJ
lemon NOUN
juice NOUN
, PUNCT
sauerkraut NOUN
juice PROPN
, PUNCT
even ADV
vinegar NOUN
. PUNCT
  SPACE
All DET
tastedextremely ADV
sweet ADJ
. PUNCT
  SPACE
Somehow ADV
we PRON
forgot VERB
how ADV
acidic ADJ
these DET
substances NOUN
are AUX
. PUNCT
  SPACE
We PRON
awoke VERB
the DET
next ADJ
day NOUN
to PART
find VERB
our PRON
mouths NOUN
full ADJ
of ADP
ulcers NOUN
. PUNCT
[ PUNCT
... PUNCT
continued VERB
discussion NOUN
of ADP
a DET
couple NOUN
other ADJ
taste NOUN
- PUNCT
altering VERB
substances NOUN
... PUNCT
] PUNCT
Refs NOUN
: PUNCT
  SPACE
Bartoshuk PROPN
, PUNCT
L.M. PROPN
, PUNCT
Gentile PROPN
, PUNCT
R.L. PROPN
, PUNCT
Moskowitz PROPN
, PUNCT
H.R. PROPN
, PUNCT
& CCONJ
Meiselman PROPN
, PUNCT
H.L. PROPN
  SPACE
( PUNCT
1974 NUM
) PUNCT
: PUNCT
   SPACE
Sweet PROPN
taste NOUN
induced VERB
by ADP
miracle NOUN
fruit NOUN
( PUNCT
_ DET
Synsephalum PROPN
dulcificum NOUN
_ PROPN
) PUNCT
. PUNCT
    SPACE
_ PROPN
Physiology PROPN
& CCONJ
Behavior PROPN
_ PROPN
. PUNCT
  SPACE
12(6):449 NUM
- PUNCT
456.-------------Anyone NUM
ever ADV
hear VERB
of ADP
these DET
things NOUN
or CCONJ
know VERB
where ADV
to PART
get AUX
them?-marcandersom@spot.colorado.eduNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58864From NUM
: PUNCT
vonwaadn@kuhub.cc.ukans.eduSubject NOUN
: PUNCT
Panic NOUN
Disorder NOUN
- PUNCT
more ADJ
success NOUN
storiesI PROPN
posted VERB
this DET
to ADP
sci.psychology PROPN
on ADP
April PROPN
3 NUM
, PUNCT
and CCONJ
after ADP
seeingyour ADJ
post NOUN
here ADV
on ADP
panice NOUN
disorder NOUN
thought VERB
it PRON
would AUX
berelevant.-----My VERB
research NOUN
indicates VERB
that SCONJ
two NUM
schools NOUN
of ADP
thought NOUN
exist.the PROPN
literature PROPN
promoting VERB
medication NOUN
says VERB
it PRON
's AUX
the DET
superiortreatment NOUN
. PUNCT
  SPACE
Not PART
surprisingly ADV
, PUNCT
literature VERB
promoting VERB
cognitivetherapy NOUN
also ADV
claims VERB
to PART
be AUX
superior ADJ
. PUNCT
What PRON
are AUX
the DET
facts NOUN
? PUNCT
  SPACE
Early ADV
in ADP
my PRON
research NOUN
I PRON
did AUX
n't PART
have AUX
abias NOUN
towards ADP
either DET
medication NOUN
or CCONJ
cognitive ADJ
therapy NOUN
. PUNCT
  SPACE
Iwas PROPN
interested ADJ
in ADP
a DET
treatment NOUN
that PRON
worked VERB
. PUNCT
  SPACE
After ADP
readingjournals NOUN
published VERB
after ADP
1986 NUM
, PUNCT
the DET
cognitive ADJ
therapy NOUN
campclaims VERB
a DET
higher ADJ
success NOUN
rate NOUN
( PUNCT
approx NOUN
80 NUM
% NOUN
) PUNCT
, PUNCT
a DET
lower ADJ
drop NOUN
- PUNCT
outrate NOUN
, PUNCT
and CCONJ
no DET
side NOUN
effects NOUN
associated VERB
with ADP
medication NOUN
. PUNCT
Lars PROPN
- PUNCT
Goran PROPN
Ost PROPN
published VERB
an DET
excellent ADJ
article NOUN
titled"Applied ADJ
Relaxation NOUN
: PUNCT
Description NOUN
of ADP
a DET
coping VERB
technique NOUN
anda NOUN
review NOUN
of ADP
controlled VERB
studies NOUN
. PUNCT
" PUNCT
  SPACE
This DET
is AUX
from ADP
Behav PROPN
. PUNCT
Res INTJ
. PUNCT
Ther PROPN
. PUNCT
,vol PROPN
. PUNCT
25 NUM
, PUNCT
no INTJ
. PROPN
5 NUM
, PUNCT
pp PROPN
. PROPN
397 NUM
- SYM
409 NUM
, PUNCT
1987 NUM
. PUNCT
  SPACE
The DET
article NOUN
providesinstructions NOUN
on ADP
how ADV
to PART
perform VERB
applied ADJ
relaxation NOUN
( PUNCT
AR).Briefly INTJ
, PUNCT
you PRON
start VERB
with ADP
two NUM
15 NUM
minute NOUN
sessions NOUN
daily ADV
, PUNCT
andprogress NOUN
in ADP
8 NUM
- SYM
12 NUM
weeks NOUN
to ADP
performing VERB
10 NUM
- SYM
15 NUM
thirty NUM
second ADJ
sessionsdaily ADV
. PUNCT
I'll PROPN
snail ADJ
mail NOUN
this DET
article NOUN
to ADP
anyone PRON
interested ADJ
( PUNCT
USA PROPN
only ADV
please;International ADJ
please INTJ
pay VERB
for ADP
postage).Markvonwaadn@kuhub.cc.ukans.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58865From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?I'm PROPN
told VERB
that DET
corn NOUN
allergy NOUN
is AUX
fairly ADV
common ADJ
. PUNCT
  SPACE
My PRON
wife NOUN
has AUX
it PRON
and CCONJ
it PRON
seemsto NOUN
be AUX
exacerbated VERB
if SCONJ
sugar NOUN
is AUX
eaten VERB
with ADP
the DET
corn NOUN
. PUNCT
I PRON
suppose VERB
that SCONJ
in ADP
a DET
person NOUN
just ADV
on ADP
the DET
verge NOUN
of ADP
having VERB
epilepsy NOUN
, PUNCT
anallergic ADJ
reaction NOUN
might AUX
cause VERB
a DET
seizure NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
really ADV
know VERB
. PUNCT
Gordon?-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58866Subject NUM
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
From ADP
: PUNCT
keith@actrix.gen.nz PROPN
( PUNCT
Keith PROPN
Stewart)My VERB
wife NOUN
has AUX
become VERB
interested ADJ
through ADP
an DET
acquaintance NOUN
in ADP
Post PROPN
- PROPN
Polio PROPN
SyndromeThis PROPN
apparently ADV
is AUX
not PART
recognised VERB
in ADP
New PROPN
Zealand PROPN
and CCONJ
different ADJ
symptons NOUN
( PUNCT
egchest ADJ
complaints NOUN
) PUNCT
are AUX
treated VERB
separately ADV
. PUNCT
Does AUX
anone NOUN
have AUX
any DET
information NOUN
onitThanksKeithNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58867From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?Carl PROPN
Lydick PROPN
: PUNCT
> X
And CCONJ
you PRON
're AUX
condemning VERB
one NUM
particular ADJ
ingredient NOUN
without ADP
any DET
> X
evidence NOUN
that SCONJ
that DET
's AUX
the DET
ingredient NOUN
to PART
which PRON
you PRON
reacted VERB
. PUNCT
Believe VERB
what PRON
you PRON
will AUX
. PUNCT
The DET
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
ofa NOUN
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disprovingthe NOUN
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
themost NOUN
likely ADJ
explanation NOUN
for ADP
events NOUN
. PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58868From NUM
: PUNCT
Simon.N.McRae@dartmouth.edu PROPN
( PUNCT
Simon PROPN
N PROPN
McRae)Subject PROPN
: PUNCT
re ADP
: PUNCT
hepatitis PROPN
- PUNCT
bIn PROPN
article NOUN
< X
1993Apr14.4274.32512@dosgate>russell.sinclair-day@canrem.com X
( PUNCT
russell PROPN
sinclair PROPN
- PUNCT
day NOUN
) PUNCT
writes VERB
: PUNCT
> X
What PRON
we PRON
are AUX
really ADV
worried ADJ
about ADP
is AUX
not PART
knowing VERB
the DET
facts NOUN
. PUNCT
The DET
doctor NOUN
> X
has AUX
stated VERB
that SCONJ
things NOUN
will AUX
not PART
be AUX
good ADJ
if SCONJ
she PRON
is AUX
a DET
carrier NOUN
and CCONJ
avoids NOUN
> X
further ADJ
questions NOUN
on ADP
the DET
subject NOUN
. PUNCT
We PRON
really ADV
would AUX
like VERB
to PART
know VERB
so ADV
we PRON
> X
can AUX
take VERB
steps NOUN
and CCONJ
plan VERB
in ADP
advance NOUN
for ADP
any DET
eventualities NOUN
. PUNCT
> X
> X
Thank VERB
- PUNCT
you PRON
for ADP
your PRON
very ADV
informative ADJ
post NOUN
. PUNCT
Right ADV
now ADV
I PRON
am AUX
just ADV
trying VERB
> X
to PART
find VERB
out ADP
everything PRON
that PRON
I PRON
can AUX
. PUNCT
> X
> X
                         SPACE
Russ PROPN
. PUNCT
Unfortunately ADV
, PUNCT
Hep PROPN
B PROPN
infection NOUN
can AUX
eventuate VERB
in ADP
chronic ADJ
hepatitis NOUN
andsubsequent NOUN
cirrhosis NOUN
. PUNCT
  SPACE
Although SCONJ
not PART
many ADJ
patients NOUN
with ADP
Hep PROPN
B PROPN
go VERB
on ADP
tochronic ADJ
hepatitis NOUN
, PUNCT
it PRON
does AUX
still ADV
occur VERB
in ADP
a DET
good ADJ
number NOUN
( PUNCT
20 NUM
% NOUN
? PUNCT
) PUNCT
and CCONJ
issomething VERB
to PART
keep VERB
in ADP
mind NOUN
. PUNCT
  SPACE
Hepatitis PROPN
C PROPN
( PUNCT
was AUX
: PUNCT
non ADJ
- ADJ
A NOUN
, PUNCT
non ADJ
- ADJ
B PROPN
Hep PROPN
) PUNCT
muchmore ADV
frequently ADV
leads VERB
to ADP
chronic ADJ
hep NOUN
and CCONJ
cirrhosis NOUN
. PUNCT
  SPACE
There PRON
is AUX
also ADV
anautimmune PROPN
chronic ADJ
hepatitis NOUN
that PRON
affects VERB
mostly ADV
younger ADJ
women NOUN
whichalso PRON
leads VERB
to ADP
cirrhosis NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
cirrhosis NOUN
is AUX
a DET
most ADV
unkind ADJ
disease NOUN
. PUNCT
  SPACE
The DET
most ADJ
dangerouseffects NOUN
relate VERB
to ADP
portal ADJ
hypertension NOUN
and CCONJ
loss NOUN
of ADP
liver NOUN
function NOUN
. PUNCT
Patients NOUN
develop VERB
life NOUN
- PUNCT
threatening VERB
variceal NOUN
bleeds NOUN
and CCONJ
hepatic ADJ
comas NOUN
, PUNCT
among ADP
many ADJ
other ADJ
problems NOUN
, PUNCT
as SCONJ
a DET
result NOUN
of ADP
disturbances NOUN
in ADP
hepaticcirculation NOUN
. PUNCT
  SPACE
Less ADV
ominously ADV
, PUNCT
they PRON
can AUX
exhibit VERB
the DET
effects NOUN
ofhyperestrogenemia PROPN
which PRON
often ADV
characterize VERB
patients NOUN
with ADP
cirrhosis NOUN
. PUNCT
These DET
effects NOUN
include VERB
telangiactasias PROPN
( PUNCT
small ADJ
red ADJ
skin NOUN
lesions NOUN
) PUNCT
and CCONJ
, PUNCT
inmen NOUN
, PUNCT
gynecomastia PROPN
( PUNCT
breast NOUN
development NOUN
) PUNCT
. PUNCT
  SPACE
The DET
only ADJ
real ADJ
treatment NOUN
forcirrhosis NOUN
is AUX
liver NOUN
transplant NOUN
. PUNCT
Keep VERB
in ADP
mind NOUN
that SCONJ
cirrhosis NOUN
is AUX
not PART
expected VERB
, PUNCT
at ADP
least ADJ
statistically ADV
, PUNCT
inyour ADJ
friend NOUN
's PART
case NOUN
. PUNCT
  SPACE
Nevertheless ADV
you PRON
might AUX
want VERB
to PART
bring VERB
up ADP
thesubject NOUN
of ADP
chronic ADJ
disease NOUN
and CCONJ
cirrhosis NOUN
with ADP
the DET
doctor NOUN
. PUNCT
  SPACE
Hopefully ADV
heor VERB
she PRON
can AUX
then ADV
carefully ADV
explain VERB
these DET
sequelae NOUN
of ADP
Hep PROPN
B PROPN
infection NOUN
toyou NOUN
, PUNCT
and CCONJ
offer VERB
you PRON
support VERB
. PUNCT
Simon PROPN
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58869From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?SP NOUN
> X
From ADP
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)SP VERB
> X
to PART
describe VERB
here ADV
. PUNCT
  SPACE
I PRON
have AUX
a DET
fourteen NUM
year NOUN
old ADJ
daugter NOUN
who PRON
experiencedSP VERB
> X
a DET
seizure NOUN
on ADP
November PROPN
3 NUM
, PUNCT
1992 NUM
at ADP
6:45AM NUM
after ADP
eating VERB
Kellog PROPN
's PART
FrostedSP PROPN
> X
Flakes NOUN
. PUNCT
SP NOUN
> X
Well INTJ
, PUNCT
we PRON
were AUX
going VERB
along ADP
fine ADJ
and CCONJ
the DET
other ADJ
morning NOUN
, PUNCT
April PROPN
5 NUM
, PUNCT
she PRON
hadSP PROPN
> X
a DET
bowl NOUN
of ADP
another DET
Kellog PROPN
's PART
frosted ADJ
kind NOUN
of ADP
cereal NOUN
, PUNCT
Fruit PROPN
Loops PROPN
( PUNCT
I PRON
amSP VERB
> X
When ADV
I PRON
mentioned VERB
what PRON
she PRON
ate VERB
the DET
first ADJ
time NOUN
as SCONJ
a DET
possible ADJ
reason NOUN
forSP NOUN
> X
the DET
seizure NOUN
the DET
neurologist NOUN
basically ADV
negated VERB
that SCONJ
as SCONJ
an DET
idea NOUN
. PUNCT
  SPACE
NowSP PROPN
> X
after ADP
this DET
second ADJ
episode NOUN
, PUNCT
so ADV
similar ADJ
in ADP
nature NOUN
to ADP
the DET
first ADJ
, PUNCT
evenSP ADV
> X
he PRON
is AUX
scratching VERB
his PRON
head NOUN
. PUNCT
There PRON
's AUX
no DET
data NOUN
that PRON
sugar NOUN
- PUNCT
coated VERB
cereals NOUN
cause VERB
seizures NOUN
. PUNCT
  SPACE
I PRON
haven'teven VERB
seen VERB
anything PRON
anecdotal ADJ
on ADP
it PRON
. PUNCT
  SPACE
Given VERB
how ADV
common ADJ
they PRON
are AUX
eaten- VERB
do AUX
you PRON
know VERB
any DET
child NOUN
or CCONJ
adolescent NOUN
who PRON
* PUNCT
does AUX
n't PART
* PUNCT
eat VERB
the DET
stuff NOUN
? PUNCT
-I PROPN
think VERB
that SCONJ
if SCONJ
there PRON
were AUX
a DET
relationship NOUN
we PRON
would AUX
know VERB
it PRON
by ADP
now ADV
. PUNCT
Also ADV
, PUNCT
there PRON
's AUX
nothing PRON
weird ADJ
in ADP
those DET
cereals NOUN
. PUNCT
  SPACE
As ADV
far ADV
as SCONJ
the DET
brainis PROPN
concerned VERB
( PUNCT
except SCONJ
for ADP
a DET
few ADJ
infantile ADJ
metabolic ADJ
disorders NOUN
such ADJ
asgalactosemia NOUN
) PUNCT
, PUNCT
sugar NOUN
is AUX
sugar NOUN
, PUNCT
regardless ADV
if SCONJ
it PRON
is AUX
coated VERB
on ADP
cereal NOUN
, PUNCT
sprinkled VERB
onto ADP
cereal NOUN
, PUNCT
or CCONJ
dissolved VERB
in ADP
soda NOUN
, PUNCT
coffee NOUN
or CCONJ
whatever PRON
. PUNCT
There PRON
was AUX
some DET
interest NOUN
a DET
few ADJ
years NOUN
ago ADV
in ADP
aspartame PROPN
loweringseizure NOUN
thresholds VERB
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
believe VERB
anything PRON
ever ADV
came VERB
of ADP
it.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                         SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58870From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Could AUX
this DET
be AUX
a DET
migraine????GB X
> X
From ADP
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)GB NOUN
> X
The DET
HMO PROPN
would AUX
stop VERB
the DET
over ADP
- PUNCT
ordering NOUN
, PUNCT
but CCONJ
in ADP
HMOs PROPN
, PUNCT
tests VERB
areGB PROPN
> X
under ADV
- PUNCT
ordered VERB
. PUNCT
That DET
's AUX
a DET
somewhat ADV
overbroad ADJ
statement NOUN
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
there PRON
are AUX
HMOs PROPN
inwhich PROPN
the DET
fees NOUN
for ADP
lab NOUN
tests NOUN
are AUX
subtracted VERB
from ADP
the DET
doctor'sincome NUM
. PUNCT
  SPACE
In ADP
most ADV
, PUNCT
however ADV
, PUNCT
including VERB
the DET
one NOUN
I PRON
work VERB
for ADP
, PUNCT
there PRON
is AUX
nodirect NOUN
incentive NOUN
to ADP
under NOUN
- PUNCT
order NOUN
. PUNCT
  SPACE
Profits NOUN
of ADP
the DET
group NOUN
are AUX
sharedamong ADJ
all DET
partners NOUN
, PUNCT
but CCONJ
the DET
group NOUN
is AUX
so ADV
large ADJ
that SCONJ
an DET
individual'sgenerated VERB
costs NOUN
have AUX
a DET
miniscule ADJ
effect NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
that SCONJ
weunder NOUN
- PUNCT
order NOUN
. PUNCT
  SPACE
Then ADV
again ADV
, PUNCT
I PRON
'm AUX
not PART
really ADV
sure ADJ
what PRON
the DET
right ADJ
amountof NOUN
ordering NOUN
is AUX
or CCONJ
should AUX
be AUX
. PUNCT
  SPACE
Relative ADJ
to ADP
the DET
average ADJ
Britishneurologist PROPN
, PUNCT
I PRON
suspect VERB
that SCONJ
I PRON
rather ADV
drastically ADV
over ADP
- PUNCT
order.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                            SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58871From NUM
: PUNCT
npm@netcom.com PROPN
( PUNCT
Nancy PROPN
P. PROPN
Milligan)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemI'd PART
dump VERB
him PRON
. PUNCT
  SPACE
Rude PROPN
is AUX
rude ADJ
and CCONJ
it PRON
seems VERB
he PRON
enjoys VERB
belittling VERB
andhumiliating VERB
you PRON
. PUNCT
  SPACE
But CCONJ
do AUX
n't PART
just ADV
dump VERB
him PRON
, PUNCT
write VERB
to ADP
him PRON
and CCONJ
tellhim VERB
why ADV
you PRON
are AUX
firing VERB
him PRON
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
, PUNCT
think VERB
about ADP
sending VERB
a DET
copyof NOUN
your PRON
letter NOUN
to ADP
whoever PRON
is AUX
in ADP
charge NOUN
of ADP
the DET
clinic NOUN
where ADV
he PRON
works VERB
, PUNCT
if SCONJ
applicable ADJ
, PUNCT
or CCONJ
maybe ADV
even ADV
to ADP
the DET
AMA PROPN
. PUNCT
  SPACE
Do AUX
n't PART
be AUX
vindictive ADJ
inyour ADJ
letter NOUN
, PUNCT
be AUX
truthful ADJ
but CCONJ
VERY ADV
firm ADJ
. PUNCT
But CCONJ
do AUX
n't PART
be AUX
a DET
victim NOUN
and CCONJ
just ADV
put VERB
up ADP
with ADP
it PRON
. PUNCT
  SPACE
Take VERB
control NOUN
! PUNCT
  SPACE
It'llmake NOUN
you PRON
feel VERB
great!Nancy PROPN
M.-- PROPN
Nancy PROPN
P. PROPN
Milligan PROPN
					 SPACE
npm@netcom.com PROPN
							       SPACE
or CCONJ
							 SPACE
npm@dale.cts.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58872From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
C5HLBu.I3A@tripos.com X
> X
homer@tripos.com X
( PUNCT
Webster PROPN
Homer PROPN
) PUNCT
writes:>mhollowa@ic.sunysb.edu NOUN
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>>>Here PROPN
's PART
your PRON
error NOUN
. PUNCT
  SPACE
I PRON
really ADV
do AUX
think VERB
this DET
shows VERB
some DET
confusion NOUN
on ADP
your>>part NOUN
. PUNCT
  SPACE
( PUNCT
Drum PROPN
roll NOUN
please INTJ
) PUNCT
  SPACE
Science NOUN
is AUX
n't PART
so ADV
much ADV
the DET
gathering NOUN
of ADP
evidence>>to PROPN
support VERB
an DET
" PUNCT
assertion NOUN
" PUNCT
( PUNCT
read VERB
: PUNCT
hypothesis NOUN
) PUNCT
as SCONJ
it PRON
is AUX
the DET
gathering VERB
of>>empirical ADJ
observations NOUN
IN ADP
ORDER NOUN
TO PART
MAKE VERB
AN DET
HYPOTHESIS NOUN
. PUNCT
  SPACE
What PRON
should>>convince PUNCT
you PRON
( PUNCT
or CCONJ
not PART
) PUNCT
should AUX
n't PART
be AUX
the DET
final ADJ
product NOUN
so ADV
much ADV
as SCONJ
* PUNCT
HOW ADV
* PUNCT
the>>product PROPN
was AUX
made VERB
. PUNCT
> X
> X
> X
Here ADV
's AUX
your PRON
error NOUN
. PUNCT
There PRON
is AUX
no DET
observation NOUN
or CCONJ
hypothesis NOUN
that PRON
is AUX
not PART
tainted VERB
> X
by ADP
theory NOUN
. PUNCT
I PRON
have AUX
a DET
theory NOUN
, PUNCT
I PRON
make VERB
observations NOUN
, PUNCT
those DET
observations NOUN
will AUX
be AUX
> X
made VERB
with ADP
my PRON
theory NOUN
in ADP
mind NOUN
. PUNCT
Yes INTJ
, PUNCT
absolutely ADV
, PUNCT
though SCONJ
I PRON
'd AUX
make VERB
the DET
observation NOUN
in ADP
a DET
more ADV
general ADJ
sense NOUN
ofall ADJ
observations NOUN
are AUX
made VERB
by ADP
human ADJ
beings NOUN
and CCONJ
therefore ADV
made VERB
with ADP
variousbiases NOUN
. PUNCT
But CCONJ
here ADV
your PRON
message NOUN
leaves VERB
talk NOUN
of ADP
hypothesis NOUN
and CCONJ
gets VERB
back ADV
, PUNCT
once ADV
again ADV
, PUNCT
to ADP
equating VERB
the DET
business NOUN
of ADP
science NOUN
with ADP
the DET
end NOUN
result NOUN
, PUNCT
the DET
gizmo PROPN
produced.>Science PROPN
works VERB
very ADV
well ADV
at ADP
developing VERB
theories NOUN
> X
within ADP
paradigms NOUN
, PUNCT
but CCONJ
is AUX
very ADV
poor ADJ
at ADP
dealing VERB
with ADP
paradigm NOUN
shifts NOUN
. PUNCT
If SCONJ
I PRON
> X
develop VERB
a DET
novel ADJ
paradigm NOUN
that PRON
explains VERB
homeopathy NOUN
, PUNCT
chinese ADJ
medicine NOUN
, PUNCT
or CCONJ
> X
spontaneous ADJ
combustion NOUN
. PUNCT
If SCONJ
the DET
paradigm NOUN
is AUX
useful ADJ
it PRON
will AUX
show VERB
me PRON
the DET
way NOUN
> X
to PART
make VERB
observations NOUN
that SCONJ
" PUNCT
prove VERB
" PUNCT
or CCONJ
" PUNCT
disprove VERB
" PUNCT
it PRON
. PUNCT
My PRON
point NOUN
is AUX
n't PART
so ADV
much ADJ
whether SCONJ
or CCONJ
not PART
you PRON
have AUX
a DET
novel ADJ
paradigm NOUN
but CCONJ
* PUNCT
how ADV
* PUNCT
you PRON
come VERB
about ADP
developing VERB
it.>The ADP
paradigm NOUN
of ADP
modern ADJ
medicine NOUN
is AUX
that SCONJ
the DET
body NOUN
can AUX
be AUX
reduced VERB
to ADP
a DET
set NOUN
of ADP
> X
essentially ADV
mechanical ADJ
operations NOUN
wherein ADV
disease NOUN
is AUX
seen VERB
as SCONJ
malfunctions NOUN
in ADP
> X
the DET
machinery NOUN
, PUNCT
essentially ADV
the DET
old ADJ
Newtonian ADJ
model NOUN
of ADP
the DET
world NOUN
. PUNCT
It PRON
seems VERB
> X
likely ADJ
that SCONJ
theories NOUN
based VERB
upon SCONJ
this DET
paradigm NOUN
do AUX
not PART
give VERB
a DET
complete ADJ
> X
discription NOUN
of ADP
the DET
universe NOUN
, PUNCT
medicine NOUN
, PUNCT
healing NOUN
etc X
... PUNCT
Indeed ADV
we PRON
now ADV
> X
recognize VERB
an DET
important ADJ
psychological ADJ
component NOUN
to ADP
healing NOUN
. PUNCT
Perhaps ADV
you PRON
'd AUX
admit VERB
that SCONJ
this DET
is AUX
an DET
oversimplification NOUN
on ADP
your PRON
part NOUN
( PUNCT
the DET
topicof NOUN
the DET
philosophy NOUN
of ADP
science NOUN
is AUX
made VERB
for ADP
them PRON
, PUNCT
I PRON
'm AUX
making VERB
them PRON
too ADV
) PUNCT
but CCONJ
Ithink VERB
that SCONJ
it PRON
also ADV
summarizes VERB
popular ADJ
misconceptions NOUN
of ADP
science NOUN
and CCONJ
the DET
business NOUN
of ADP
doing VERB
science NOUN
. PUNCT
  SPACE
Biomedical ADJ
research NOUN
does AUX
n't PART
make VERB
any DET
basic ADJ
assumptions NOUN
that PRON
are AUX
n't PART
the DET
same ADJ
as SCONJ
any DET
other ADJ
discipline NOUN
of ADP
scientificresearch NOUN
. PUNCT
  SPACE
That ADV
is ADV
, PUNCT
that SCONJ
you PRON
make VERB
empirical ADJ
observations NOUN
, PUNCT
form VERB
an DET
hypothesisand NOUN
test NOUN
it PRON
. PUNCT
  SPACE
Modern ADJ
medicine NOUN
has AUX
much ADV
more ADJ
to PART
do AUX
with ADP
biochemistry NOUN
than SCONJ
" PUNCT
the DET
old ADJ
Newtonian ADJ
model NOUN
of ADP
the DET
world NOUN
" PUNCT
. PUNCT
  SPACE
And CCONJ
I PRON
doubt VERB
that SCONJ
many ADJ
psychologistswould AUX
appreciate VERB
being AUX
put VERB
outside ADP
this DET
empirical ADJ
" PUNCT
world NOUN
view NOUN
" PUNCT
. PUNCT
  SPACE
Psychologyalso PROPN
has AUX
more ADJ
to PART
do AUX
with ADP
biochemistry NOUN
than SCONJ
spoon VERB
bending NOUN
. PUNCT
> X
It PRON
is AUX
also ADV
important ADJ
to PART
distinguish VERB
reason NOUN
from ADP
science NOUN
. PUNCT
Science NOUN
may AUX
be AUX
> X
reasonable ADJ
, PUNCT
but CCONJ
so ADV
are AUX
many ADJ
non ADJ
- ADJ
scientific ADJ
methodologies NOUN
. PUNCT
Aristotle PROPN
reasoned VERB
> X
that SCONJ
frogs NOUN
came VERB
from ADP
mud NOUN
by ADP
observing VERB
one NUM
hop NOUN
out SCONJ
of ADP
a DET
puddle NOUN
. PUNCT
Oversimplified ADJ
, PUNCT
of ADP
course NOUN
, PUNCT
but CCONJ
a DET
good ADJ
example NOUN
. PUNCT
  SPACE
This DET
is AUX
an DET
empirical ADJ
observa NOUN
- PUNCT
tion NOUN
. PUNCT
  SPACE
It PRON
was AUX
then ADV
tested VERB
, PUNCT
though SCONJ
perhaps ADV
not PART
by ADP
Aristotle PROPN
, PUNCT
and CCONJ
eventually ADV
found VERB
wanting VERB
. PUNCT
  SPACE
In ADP
the DET
meantime NOUN
, PUNCT
some DET
folk NOUN
will AUX
have AUX
continued VERB
to PART
believe VERB
in ADP
the DET
spontaneous ADJ
generation NOUN
of ADP
animal NOUN
life NOUN
. PUNCT
  SPACE
There PRON
's AUX
nothing PRON
at ADV
all ADV
surprising ADJ
about ADP
this DET
, PUNCT
it PRON
's AUX
the DET
way NOUN
the DET
gathering VERB
ofknowledge NOUN
works VERB
. PUNCT
  SPACE
There PRON
are AUX
probably ADV
more ADJ
than SCONJ
a DET
few ADJ
things NOUN
in ADP
my PRON
own ADJ
discipline NOUN
of ADP
molecular ADJ
biology NOUN
that PRON
will AUX
be AUX
found VERB
to PART
be AUX
totally ADV
off ADP
- PUNCT
base NOUN
, PUNCT
even ADV
idiotic ADJ
, PUNCT
to ADP
someone PRON
in ADP
the DET
future NOUN
. PUNCT
  SPACE
These DET
future ADJ
people NOUN
wo AUX
n't PART
have AUX
cometo VERB
these DET
relevations NOUN
because SCONJ
they PRON
had AUX
suddenly ADV
gone VERB
all DET
Zen PROPN
- PUNCT
like ADJ
and CCONJ
had AUX
a DET
vision NOUN
in ADP
an DET
LSD PROPN
trip NOUN
. PUNCT
  SPACE
Someone PRON
will AUX
have AUX
thought VERB
of ADP
something PRON
new ADJ
and CCONJ
tested VERB
it PRON
. PUNCT
  SPACE
This DET
is AUX
the DET
bit NOUN
that PRON
people NOUN
who PRON
seem VERB
to PART
relish VERB
misrepresentingscience NOUN
and CCONJ
research NOUN
ca AUX
n't PART
seem VERB
to PART
wrap VERB
their PRON
minds NOUN
around ADV
. PUNCT
  SPACE
Science NOUN
is AUX
a DET
creative ADJ
process NOUN
. PUNCT
  SPACE
What PRON
I PRON
think VERB
of ADP
as ADV
factual ADJ
and CCONJ
good ADJ
research NOUN
can AUX
be AUX
totallyturned VERB
on ADP
its PRON
head NOUN
tommorrow NOUN
by ADP
new ADJ
results NOUN
and CCONJ
theories NOUN
. PUNCT
  SPACE
Again ADV
, PUNCT
I PRON
think VERB
it PRON
gets VERB
down ADV
to ADP
defining VERB
what PRON
you PRON
mean VERB
by ADP
" PUNCT
science PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
oftendon't ADV
recognize VERB
what PRON
it PRON
is AUX
that SCONJ
I PRON
do AUX
, PUNCT
and CCONJ
am AUX
involved VERB
in ADP
, PUNCT
in ADP
the DET
way NOUN
scienceis NOUN
portrayed VERB
by ADP
popular ADJ
media NOUN
or CCONJ
writings NOUN
of ADP
people NOUN
in ADP
the DET
humanities NOUN
. PUNCT
  SPACE
Theyportray ADJ
science NOUN
as SCONJ
a DET
collection NOUN
of ADP
immutable ADJ
facts NOUN
, PUNCT
pronouncements NOUN
of ADP
TRUTHin NOUN
big ADJ
gold NOUN
letters NOUN
. PUNCT
  SPACE
That DET
's AUX
silly ADJ
. PUNCT
  SPACE
Its PRON
as SCONJ
though SCONJ
we PRON
just ADV
go VERB
into ADP
the DET
lab NOUN
, PUNCT
turn VERB
over ADP
a DET
stone NOUN
, PUNCT
and CCONJ
come VERB
up ADP
with ADP
a DET
mechanism NOUN
for ADP
transcriptional ADJ
regula NOUN
- PUNCT
tion NOUN
. PUNCT
  SPACE
Its PRON
much ADV
more ADV
interesting ADJ
than SCONJ
that DET
. PUNCT
  SPACE
It PRON
really ADV
is AUX
a DET
very ADV
humanprocess NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58873From NUM
: PUNCT
ak949@yfn.ysu.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
ORGAN PROPN
DONATION NOUN
AND CCONJ
TRANSPLANTATION ADJ
FACT NOUN
SHEETIn NOUN
a DET
previous ADJ
article NOUN
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
says:>In PROPN
article NOUN
< X
1993Apr12.205726.10679@sbcs.sunysb.edu NUM
> X
, PUNCT
mhollowa@ic.sunysb.edu PROPN
> X
| ADP
> X
Organ PROPN
donors NOUN
are AUX
healthy ADJ
people NOUN
who PRON
have AUX
died VERB
suddenly ADV
, PUNCT
usually ADV
> X
| ADP
> X
through ADP
accident NOUN
or CCONJ
head NOUN
injury NOUN
. PUNCT
  SPACE
They PRON
are AUX
brain NOUN
dead ADJ
. PUNCT
  SPACE
The DET
> X
| ADP
> X
organs NOUN
are AUX
kept VERB
alive ADJ
through ADP
mechanical ADJ
means.>>OK PROPN
, PUNCT
so ADV
how ADV
do AUX
you PRON
define VERB
healthy ADJ
people?>>My NOUN
wife NOUN
can AUX
not PART
donate VERB
blood NOUN
because SCONJ
she PRON
has AUX
been AUX
to ADP
a DET
malarial ADJ
region NOUN
> X
in ADP
the DET
past ADJ
three NUM
years NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
she PRON
tried VERB
to PART
have AUX
her PRON
bone NOUN
marrow NOUN
> X
typed VERB
and CCONJ
they PRON
would AUX
n't PART
even ADV
do AUX
that DET
! PUNCT
  SPACE
Why?>>I VERB
ca AUX
n't PART
donate VERB
blood NOUN
either CCONJ
because SCONJ
not PART
only ADV
have AUX
I PRON
been AUX
to ADP
a DET
malarial ADJ
> X
region NOUN
, PUNCT
but CCONJ
I PRON
have AUX
also ADV
been AUX
diagnosed VERB
( PUNCT
and CCONJ
surgically ADV
treated VERB
) PUNCT
for ADP
> X
testicular ADJ
cancer NOUN
. PUNCT
  SPACE
The DET
blood NOUN
bank NOUN
wo AUX
nt PART
accept VERB
blood NOUN
from ADP
me PRON
for ADP
10 NUM
> X
years NOUN
. PUNCT
  SPACE
Obviously ADV
, PUNCT
it PRON
would AUX
n't PART
be AUX
of ADP
much ADJ
help NOUN
to PART
treat VERB
one NUM
problem NOUN
by ADP
knowingly ADV
introducing VERB
another DET
. PUNCT
  SPACE
Cancer NOUN
mestastizes NOUN
. PUNCT
  SPACE
My PRON
imperfect ADJ
understanding NOUN
of ADP
the DET
facts NOUN
are AUX
that DET
gonadal NOUN
cancer NOUN
is AUX
particularly ADV
dangerous ADJ
in ADP
this DET
regard NOUN
. PUNCT
I PRON
have AUX
n't PART
done VERB
the DET
research NOUN
on ADP
it PRON
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
recall VERB
ever ADV
hearing VERB
of ADP
a DET
case NOUN
of ADP
cancer NOUN
being AUX
transmitted VERB
by ADP
a DET
blood NOUN
transfusion NOUN
. PUNCT
  SPACE
Probably ADV
just ADV
a DET
common ADJ
sense NOUN
kind ADV
of ADP
arbitrary ADJ
precaution NOUN
. PUNCT
  SPACE
Transmissable ADJ
diseases NOUN
like SCONJ
malaria PROPN
though ADV
are AUX
obviously ADV
another DET
story.-- PROPN
Michael PROPN
HollowayE PROPN
- PUNCT
mail NOUN
: PUNCT
mhollowa@ccmail.sunysb.edu PROPN
( PUNCT
mail NOUN
to PART
freenet NOUN
is AUX
forwarded)phone NOUN
: PUNCT
( PUNCT
516)444 NUM
- PUNCT
3090Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58874From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.194316.25522@ohsu.edu NUM
> X
tong@ohsu.edu ADP
( PUNCT
Gong PROPN
Tong PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>>>For X
cites VERB
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a>>toxicologist PROPN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on>>development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an>>excitotoxic PROPN
food NOUN
additive ADJ
, PUNCT
and CCONJ
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamate>>is PROPN
essentially ADV
the DET
premierie PROPN
neurotransmitter PROPN
in ADP
the DET
mammalian ADJ
brain>>(humans PROPN
included VERB
) PUNCT
. PUNCT
  SPACE
Too ADV
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown>>off NOUN
. PUNCT
  SPACE
Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in>>small ADP
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts>>added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be>>encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
  SPACE
By ADP
eating VERB
lots NOUN
of ADP
junk NOUN
food,>>packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to ADP
jack PROPN
your>>blood PROPN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
these>>compounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical PROPN
effects NOUN
. PUNCT
> X
> X
Read VERB
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>>sources X
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
> X
> X
> X
> X
                    SPACE
--Dianne PUNCT
Murray PROPN
    SPACE
wcsbeau@ccs.carleton.ca>>In PROPN
order NOUN
to PART
excitotoxin VERB
effects NOUN
of ADP
MSG PROPN
, PUNCT
MSG PROPN
that SCONJ
in ADP
blood NOUN
must AUX
go VERB
through ADP
> PRON
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
that PRON
I PRON
am AUX
not PART
sure ADJ
MSG NOUN
can AUX
go VERB
through ADV
or CCONJ
not PART
. PUNCT
Elevated ADJ
levels NOUN
of ADP
Glu PROPN
and CCONJ
Asp PROPN
in ADP
the DET
blood NOUN
are AUX
able ADJ
to PART
bypass VERB
theBlood NOUN
- PUNCT
brain NOUN
barrier NOUN
through ADP
the DET
circumventricular ADJ
organs NOUN
( PUNCT
or CCONJ
CVO PROPN
) PUNCT
, PUNCT
inparticular ADJ
the DET
adeno PROPN
and CCONJ
neurohypophysis PROPN
( PUNCT
pituitary ADJ
gland NOUN
) PUNCT
areas NOUN
. PUNCT
  SPACE
Thearcuate ADJ
nucleus NOUN
of ADP
the DET
hypothalamus NOUN
, PUNCT
and CCONJ
the DET
median ADJ
eminence NOUN
regionsare PROPN
particularly ADV
effected VERB
. PUNCT
  SPACE
CVO NOUN
areas NOUN
are AUX
not PART
subject ADJ
to ADP
theblood NOUN
- PUNCT
brain NOUN
barrier NOUN
. PUNCT
These DET
areas NOUN
control VERB
the DET
release NOUN
of ADP
gonadotropin NOUN
, PUNCT
which PRON
controls VERB
the DET
release NOUN
and CCONJ
flux NOUN
of ADP
steroids NOUN
governing VERB
development NOUN
, PUNCT
especially ADV
sexual ADJ
development NOUN
. PUNCT
Changes NOUN
in ADP
adult NOUN
rats NOUN
, PUNCT
which PRON
are AUX
lesssensitive ADJ
to ADP
Glu PROPN
than SCONJ
humans NOUN
, PUNCT
have AUX
been AUX
observed VERB
: PUNCT
after ADP
ingesting VERB
Glu PROPN
, PUNCT
on ADP
a DET
chronic ADJ
basis NOUN
, PUNCT
cycles NOUN
of ADP
several ADJ
steroids NOUN
are AUX
disrupted VERB
. PUNCT
Bloodlevels NOUN
of ADP
somatostatin NOUN
are AUX
significantly ADV
reduced VERB
, PUNCT
and CCONJ
cyclic ADJ
releaseof ADJ
steroids NOUN
becomes VERB
flattened VERB
. PUNCT
                    SPACE
Hope NOUN
this DET
helps VERB
. PUNCT
                    SPACE
--Dianne PUNCT
Murray PROPN
: PUNCT
wcsbeau@ccs.carleton.caNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58875From NUM
: PUNCT
lindae@netcom.comSubject X
: PUNCT
Friend NOUN
Needs VERB
Advice PROPN
... PUNCT
A DET
friend NOUN
of ADP
mine NOUN
is AUX
having VERB
some DET
symptoms NOUN
and CCONJ
has AUX
asked VERB
me PRON
to PART
postthe VERB
following VERB
information NOUN
. PUNCT
A DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
she PRON
noticed VERB
that SCONJ
some DET
of ADP
her PRON
hair NOUN
was AUX
startingto NOUN
fall VERB
out ADP
. PUNCT
  SPACE
She PRON
would AUX
touch VERB
her PRON
head NOUN
and CCONJ
strands NOUN
of ADP
hair NOUN
wouldjust NOUN
fall VERB
right ADV
out ADV
. PUNCT
( PUNCT
by ADP
the DET
way NOUN
, PUNCT
she PRON
is AUX
29 NUM
or CCONJ
30 NUM
years NOUN
old ADJ
) PUNCT
. PUNCT
  SPACE
It PRON
continued VERB
to PART
occur VERB
until ADP
she PRON
had AUX
a DET
bald ADJ
spot NOUN
about ADP
thesize NOUN
of ADP
a DET
half ADJ
dollar NOUN
. PUNCT
  SPACE
Since SCONJ
that DET
time NOUN
, PUNCT
she PRON
  SPACE
has AUX
gotten VERB
twomore ADV
bald ADJ
spots NOUN
of ADP
the DET
same ADJ
size NOUN
. PUNCT
  SPACE
Other ADJ
symptoms NOUN
she'sdescribed PROPN
include VERB
: PUNCT
  SPACE
several ADJ
months NOUN
of ADP
an DET
irregular ADJ
menstrualcycle NOUN
( PUNCT
which PRON
is AUX
strange ADJ
for ADP
her PRON
, PUNCT
because SCONJ
she PRON
has AUX
always ADV
beenextremely ADV
regular ADJ
) PUNCT
; PUNCT
laryngitis PROPN
every DET
few ADJ
days NOUN
-- PUNCT
she PRON
will AUX
wakeup VERB
one NUM
morning NOUN
and CCONJ
have AUX
almost ADV
no DET
voice NOUN
, PUNCT
and CCONJ
then ADV
the DET
next ADJ
dayit PROPN
's PART
fine NOUN
; PUNCT
dizzy ADJ
spells NOUN
-- PUNCT
she PRON
claims VERB
that SCONJ
she PRON
's AUX
had VERB
4 NUM
or CCONJ
5very NUM
bad ADJ
dizzy ADJ
spells NOUN
early ADV
in ADP
the DET
morning NOUN
, PUNCT
including VERB
one NUM
thatknocked VERB
her PRON
to ADP
the DET
ground NOUN
; PUNCT
and CCONJ
general ADJ
fatigue NOUN
. PUNCT
She PRON
went VERB
to ADP
a DET
dermatologist NOUN
first ADV
who PRON
could AUX
n't PART
find VERB
any DET
reasonfor NOUN
the DET
symptoms NOUN
and CCONJ
sent VERB
her PRON
to ADP
an DET
internist NOUN
who PRON
suspectedthyroid VERB
problems NOUN
. PUNCT
  SPACE
He PRON
did AUX
the DET
blood NOUN
work NOUN
and CCONJ
claims VERB
that PRON
everythingcame VERB
back ADV
normal ADJ
. PUNCT
  SPACE
She PRON
's AUX
very ADV
concerned ADJ
and CCONJ
very ADV
confused ADJ
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
anyideas NOUN
or CCONJ
suggestions NOUN
? PUNCT
  SPACE
I PRON
told VERB
her PRON
that SCONJ
I PRON
thought VERB
she PRON
shouldsee VERB
an DET
endocrinologist NOUN
. PUNCT
  SPACE
Does AUX
that DET
sound VERB
like SCONJ
the DET
right ADJ
idea NOUN
? PUNCT
* PUNCT
* PUNCT
By ADP
the DET
way NOUN
, PUNCT
in ADP
case NOUN
you PRON
are AUX
going VERB
to PART
ask VERB
... PUNCT
no INTJ
, PUNCT
she PRON
has AUX
recentlytaken VERB
any DET
medications NOUN
that PRON
would AUX
cause VERB
these DET
symptoms NOUN
... PUNCT
no INTJ
, PUNCT
she PRON
hasn'trecently ADV
changed VERB
her PRON
hair NOUN
products NOUN
and CCONJ
she PRON
has AUX
n't PART
gotten VERB
a DET
perm NOUN
, PUNCT
coloring NOUN
, PUNCT
or CCONJ
other ADJ
chemical NOUN
process NOUN
that PRON
might AUX
cause VERB
hair NOUN
to PART
fallout VERB
. PUNCT
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
help!Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58876From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject PROPN
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics NOUN
) PUNCT
> X
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
> X
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
will AUX
> X
then ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
genetic ADJ
> X
engineering NOUN
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want VERB
. PUNCT
> X
No DET
breeding NOUN
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
should AUX
> X
we PRON
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADV
- PUNCT
lived VERB
, PUNCT
> X
Arnold PROPN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can AUX
. PUNCT
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
it PRON
will AUX
be AUX
possible ADJ
to PART
disassemble VERB
andre NOUN
- PUNCT
assemble VERB
our PRON
bodies NOUN
at ADP
the DET
molecular ADJ
level NOUN
. PUNCT
  SPACE
Not PART
only ADV
will AUX
flawlesscosmetic ADJ
surgery NOUN
be AUX
possible ADJ
, PUNCT
but CCONJ
flawless ADJ
cosmetic NOUN
PSYCHOSURGERY.What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
store VERB
all DET
the DET
prices NOUN
of ADP
shelf NOUN
- PUNCT
priced VERB
bar NOUN
- PUNCT
codedgoods NOUN
in ADP
your PRON
head NOUN
, PUNCT
and CCONJ
catch VERB
all DET
the DET
errors NOUN
they PRON
make VERB
in ADP
the DET
store'sfavor NOUN
at ADP
SAFEWAY PROPN
? PUNCT
  SPACE
What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
mentally ADV
edit VERB
and CCONJ
spell NOUN
- PUNCT
check VERB
your PRON
responses NOUN
to ADP
the DET
questions NOUN
posed VERB
by ADP
a DET
phone NOUN
caller NOUN
sellingVACATION PUNCT
TIME PROPN
- PUNCT
SHARE PROPN
OPTIONS?Indeed X
, PUNCT
we PRON
are AUX
today NOUN
a DET
nation NOUN
at ADP
risk NOUN
! PUNCT
  SPACE
The DET
threat NOUN
is AUX
not PART
from ADP
bad ADJ
genes NOUN
, PUNCT
but CCONJ
bad ADJ
memes NOUN
! PUNCT
  SPACE
Memes PROPN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
geneswhich PROPN
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
We PRON
stand VERB
on ADP
the DET
brink NOUN
of ADP
new ADJ
meme ADJ
- PUNCT
amplification NOUN
technologies NOUN
! PUNCT
  SPACE
Harmfulmemes NOUN
which PRON
formerly ADV
were AUX
restricted VERB
in ADP
their PRON
destructive ADJ
power NOUN
willrun NOUN
rampant ADJ
over ADP
the DET
countryside NOUN
, PUNCT
laying VERB
waste NOUN
to ADP
the DET
real ADJ
benefits NOUN
thatfuture NOUN
technology NOUN
has AUX
to PART
offer VERB
. PUNCT
For ADP
example NOUN
, PUNCT
Jeremy PROPN
Rifkin PROPN
has AUX
been AUX
busy ADJ
trying VERB
to PART
whip VERB
up ADP
emotionsagainst ADP
the DET
new ADJ
genetically ADV
engineered VERB
tomatoes NOUN
under ADP
development NOUN
atCALGENE NOUN
. PUNCT
  SPACE
This DET
guy NOUN
is AUX
inventing VERB
harmful ADJ
memes NOUN
, PUNCT
a DET
virtual ADJ
memetic ADJ
TyphoidMary PROPN
. PUNCT
We PRON
must AUX
expand VERB
the DET
public ADJ
- PUNCT
health NOUN
laws NOUN
to PART
include VERB
quarantine NOUN
of ADP
peoplewith PROPN
harmful PROPN
memes NOUN
. PUNCT
  SPACE
They PRON
should AUX
not PART
be AUX
allowed VERB
to PART
infect VERB
other ADJ
peoplewith NOUN
their PRON
memes NOUN
against ADP
genetically ADV
- PUNCT
engineered VERB
food NOUN
, PUNCT
electromagneticfields PROPN
, PUNCT
and CCONJ
the DET
Space PROPN
Shuttle PROPN
solid ADJ
rocket NOUN
boosters NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58877From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problem[reply NOUN
to ADP
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
] PUNCT
> X
Sounds VERB
as SCONJ
though SCONJ
his PRON
heart NOUN
's PART
in ADP
the DET
right ADJ
place NOUN
, PUNCT
but CCONJ
he PRON
is AUX
not PART
adept ADJ
at ADP
> X
expressing VERB
it PRON
. PUNCT
  SPACE
What PRON
you PRON
received VERB
was AUX
_ PROPN
meant VERB
_ PROPN
to PART
be AUX
a DET
profound ADJ
apology.>Apologies NOUN
delivered VERB
by ADP
overworked ADJ
shy ADJ
people NOUN
often ADV
come VERB
out ADP
like SCONJ
that DET
... PUNCT
The DET
guy NOUN
did AUX
n't PART
sound VERB
too ADV
shy ADJ
to ADP
me PRON
. PUNCT
  SPACE
He PRON
sounded VERB
like SCONJ
a DET
jerk NOUN
. PUNCT
  SPACE
I PRON
say VERB
ditchhim NOUN
for ADP
someone PRON
more ADV
knowledgeable ADJ
and CCONJ
empathetic ADJ
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58878From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5JoDH.9IG@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes:>>Furthermore PROPN
, PUNCT
the DET
big ADJ
bucks NOUN
approach VERB
to ADP
science NOUN
promotes NOUN
what PRON
I PRON
think VERB
is AUX
> X
one NUM
of ADP
the DET
most ADV
significant ADJ
errors NOUN
in ADP
science NOUN
: PUNCT
  SPACE
choosing VERB
to PART
investigate VERB
> PUNCT
questions NOUN
because SCONJ
they PRON
can AUX
be AUX
readily ADV
handled VERB
by ADP
the DET
currently ADV
> X
fashionable ADJ
methodology NOUN
( PUNCT
or CCONJ
because SCONJ
one PRON
can AUX
readily ADV
get AUX
institutional ADJ
> X
or CCONJ
corporate ADJ
sponsorship NOUN
for ADP
them PRON
) PUNCT
instead ADV
of ADP
directing VERB
attention NOUN
to ADP
> X
those DET
questions NOUN
which PRON
seem VERB
to PART
have AUX
fundamental ADJ
significance NOUN
. PUNCT
Shades NOUN
of ADP
James PROPN
Watson PROPN
! PUNCT
  SPACE
That DET
's AUX
exactly ADV
the DET
way NOUN
many ADJ
workers NOUN
have AUX
describedtheir ADJ
misgivings NOUN
about ADP
the DET
Human PROPN
Genome PROPN
Project PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
take VERB
a DET
rigid ADJ
definition NOUN
of ADP
scientific ADJ
research NOUN
, PUNCT
the DET
mere ADJ
accumulation NOUN
of ADP
data NOUN
is AUX
not PART
doing VERB
science NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
early ADJ
arguments NOUN
against ADP
the DET
project NOUN
were AUX
that SCONJ
the DET
resources NOUN
would AUX
be AUX
better ADV
used VERB
to PART
focus VERB
on ADP
specific ADJ
genetics NOUN
- PUNCT
related VERB
problems NOUN
rather ADV
than SCONJ
just ADV
going VERB
off ADV
and CCONJ
collecting VERB
maps NOUN
and CCONJ
sequence NOUN
. PUNCT
  SPACE
The DET
project NOUN
ca AUX
n't PART
be AUX
so ADV
narrowly ADV
defined VERB
or CCONJ
easily ADV
described VERB
now ADV
though ADV
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58879From NUM
: PUNCT
mckay@alcor.concordia.ca X
( PUNCT
John PROPN
McKay)Subject PROPN
: PUNCT
Lasers NOUN
for ADP
dermatologistsHaving NOUN
had AUX
limited VERB
tinea NOUN
pedis NOUN
for ADP
more ADJ
than SCONJ
30 NUM
years NOUN
, PUNCT
and CCONJ
findingit VERB
resistant ADJ
to ADP
ALL DET
creams NOUN
and CCONJ
powders NOUN
I PRON
have AUX
tried VERB
, PUNCT
I PRON
wonder VERB
whydermatologists NOUN
do AUX
not PART
use VERB
lasers NOUN
to PART
destroy VERB
the DET
fungus NOUN
. PUNCT
It PRON
wouldseem VERB
likely ADJ
to PART
be AUX
effective ADJ
and CCONJ
inexpensive ADJ
. PUNCT
Are AUX
there PRON
good ADJ
reasonsfor NOUN
not PART
using VERB
lasers?I PROPN
was AUX
told VERB
that SCONJ
dermatology NOUN
had AUX
not PART
yet ADV
reached VERB
the DET
laser NOUN
age NOUN
. PUNCT
John PROPN
McKayvax2.concordia.ca-- PROPN
Deep PROPN
ideas NOUN
are AUX
simple ADJ
. PUNCT
                      SPACE
Odd PROPN
groups NOUN
are AUX
even ADV
. PUNCT
                                           SPACE
Even ADV
simples NOUN
are AUX
not PART
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58880From NUM
: PUNCT
mjliu@csie.nctu.edu.tw PROPN
( PUNCT
Ming PROPN
- PUNCT
zhou PROPN
Liu)Subject VERB
: PUNCT
H NOUN
E NOUN
L NOUN
P NOUN
   SPACE
M NOUN
E NOUN
   SPACE
--- PUNCT
> X
desperate ADJ
with ADP
some DET
VDI PROPN
have AUX
bad ADJ
luck NOUN
and CCONJ
got VERB
a DET
VD PROPN
called VERB
< X
Granuloma PROPN
ingunale NOUN
> X
, PUNCT
which PRON
involvesthe ADJ
growth NOUN
of ADP
granules NOUN
in ADP
the DET
groin NOUN
. PUNCT
  SPACE
I PRON
found VERB
out ADP
about ADP
it PRON
by ADP
checking VERB
medicinebooks NOUN
and CCONJ
I PRON
found VERB
the DET
prescriptions NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
I PRON
can AUX
just ADV
go VERB
to ADP
a DET
clinic NOUN
toget NOUN
it PRON
cured VERB
. PUNCT
  SPACE
BUT CCONJ
unfortunately ADV
I PRON
am AUX
serving VERB
my PRON
duty NOUN
in ADP
the DET
army NOUN
right ADV
now ADV
andI INTJ
think VERB
it PRON
's AUX
impossible ADJ
to PART
prevent VERB
anyone PRON
from ADP
knowing VERB
this DET
if SCONJ
I PRON
take VERB
leaves NOUN
every DET
day NOUN
for ADP
two NUM
weeks NOUN
for ADP
treatment NOUN
. PUNCT
  SPACE
Thus ADV
I PRON
bought VERB
the DET
prescribed NOUN
tabletsat NOUN
some DET
drugstore NOUN
, PUNCT
but CCONJ
to PART
cure VERB
it PRON
I PRON
must AUX
get AUX
INJECTION NOUN
of ADP
< X
Streptomycin PROPN
> X
, PUNCT
witha PROPN
dose PROPN
of ADP
1 NUM
g NOUN
every DET
12 NUM
hours NOUN
, PUNCT
for ADP
at ADV
least ADV
10 NUM
days NOUN
. PUNCT
  SPACE
I PRON
can AUX
probably ADV
buy VERB
the DET
tools NOUN
and CCONJ
this DET
solution NOUN
somewhere ADV
but CCONJ
I PRON
DON'T VERB
KNOW VERB
HOW ADV
TO PART
DO VERB
INJECTION NOUN
BY ADP
MYSELF!Can VERB
any DET
kind ADJ
people NOUN
here ADV
tell VERB
me PRON
: PUNCT
If SCONJ
it PRON
's AUX
possible ADJ
to PART
do AUX
it PRON
? PUNCT
Can AUX
I PRON
do AUX
it PRON
on ADP
my PRON
arm NOUN
? PUNCT
or CCONJ
it PRON
must AUX
be AUX
done VERB
on ADP
the DET
hiponly NOUN
? PUNCT
? PUNCT
  SPACE
Any DET
info NOUN
is AUX
welcome ADJ
and CCONJ
please INTJ
write VERB
me PRON
or CCONJ
post VERB
your PRON
help NOUN
SOON PROPN
! PUNCT
! PUNCT
( PUNCT
I PRON
amalready VERB
taking VERB
the DET
tablets NOUN
.. PUNCT
and CCONJ
I PRON
ca AUX
n't PART
wait!!)Please VERB
do AUX
n't PART
flame VERB
me PRON
for ADP
posting VERB
this DET
, PUNCT
and CCONJ
do AUX
n't PART
judge VERB
me PRON
. PUNCT
I PRON
've AUX
learned VERB
a DET
lesson NOUN
and CCONJ
all DET
I PRON
need VERB
now ADV
is AUX
REAL ADV
MEDICAL VERB
HELP.Desperate NOUN
from ADP
Taipei PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58881From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective PROPN
Placebo PROPN
From ADP
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
JB PROPN
> X
    SPACE
RR NOUN
> X
" PUNCT
I PRON
do AUX
n't PART
doubt VERB
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
alive ADJ
and CCONJ
well ADJ
withJB PUNCT
> X
    SPACE
RR NOUN
> X
  SPACE
EVERY DET
medical ADJ
modality NOUN
- PUNCT
estimated VERB
by ADP
some DET
to PART
be AUX
around ADV
20+%,JB NUM
> X
    SPACE
RR PROPN
> X
  SPACE
but CCONJ
why ADV
would AUX
it PRON
be AUX
higher ADJ
with ADP
alternative NOUN
versus ADP
conventionalJB PROPN
> X
    SPACE
RR PROPN
> X
  SPACE
medicine?"JB PROPN
> X
  SPACE
JB PROPN
> X
  SPACE
Because SCONJ
most ADJ
the DET
the DET
time NOUN
, PUNCT
closer ADJ
to ADP
90 NUM
% NOUN
in ADP
my PRON
experience NOUN
, PUNCT
there PRON
is AUX
noJB PROPN
> X
  SPACE
substance NOUN
to ADP
the DET
' PUNCT
alternative NOUN
' PUNCT
intervention NOUN
beyond ADP
the DET
good ADJ
intentions NOUN
of ADP
theJB PROPN
> X
  SPACE
practitioner PROPN
, PUNCT
which PRON
in ADP
itself PRON
is AUX
quite ADV
therapeutic ADJ
. PUNCT
[ PUNCT
....... PUNCT
] PUNCT
JB PROPN
> X
JB PROPN
> X
  SPACE
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAJB PROPN
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
   SPACE
Well INTJ
, PUNCT
if SCONJ
that DET
's AUX
the DET
case NOUN
in ADP
YOUR PRON
practice NOUN
, PUNCT
I PRON
have AUX
a DET
hard ADJ
time NOUN
    SPACE
figuring VERB
out ADP
how ADV
you PRON
even ADV
managed VERB
to PART
make VERB
it PRON
into ADP
the DET
bottom ADJ
half NOUN
   SPACE
of ADP
your PRON
class NOUN
, PUNCT
or CCONJ
did AUX
you PRON
create VERB
your PRON
diplomas NOUN
with ADP
crayons NOUN
? PUNCT
    SPACE
If SCONJ
someone PRON
runs VERB
a DET
medical ADJ
practice NOUN
with ADP
only ADV
a DET
10 NUM
% NOUN
success NOUN
rate NOUN
, PUNCT
   SPACE
they PRON
either CCONJ
tackle VERB
problems NOUN
for ADP
which PRON
they PRON
are AUX
not PART
qualified ADJ
to PART
   SPACE
treat NOUN
, PUNCT
or CCONJ
they PRON
have AUX
no DET
conscience NOUN
and CCONJ
are AUX
only ADV
in ADP
business NOUN
for ADP
   SPACE
fraudulent ADJ
purposes NOUN
. PUNCT
   SPACE
OTOH PROPN
, PUNCT
who PRON
are AUX
we PRON
kidding VERB
, PUNCT
the DET
New PROPN
England PROPN
Medical PROPN
Journal PROPN
in ADP
1984 NUM
   SPACE
ran VERB
the DET
heading NOUN
: PUNCT
" PUNCT
Ninety PROPN
Percent PROPN
of ADP
Diseases NOUN
are AUX
not PART
Treatable ADJ
by ADP
   SPACE
Drugs NOUN
or CCONJ
Surgery PROPN
, PUNCT
" PUNCT
which PRON
has AUX
been AUX
echoed VERB
by ADP
several ADJ
other ADJ
reports NOUN
. PUNCT
   SPACE
No DET
wonder NOUN
MDs NOUN
are AUX
not PART
amused VERB
with ADP
alternative ADJ
medicine NOUN
, PUNCT
since SCONJ
   SPACE
the DET
20 NUM
% NOUN
magic NOUN
of ADP
the DET
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
would AUX
award VERB
alternative ADJ
    SPACE
practitioners NOUN
twice DET
the DET
success NOUN
rate NOUN
of ADP
conventional ADJ
medicine NOUN
... PUNCT
   SPACE
--Ron----- PROPN
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
Purranoia PROPN
: PUNCT
the DET
fear NOUN
your PRON
cat NOUN
is AUX
up ADP
to ADP
something PRON
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58882From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Scientific PROPN
Yawn PROPN
     SPACE
Gordon PROPN
Rubenfeld PROPN
responds VERB
to ADP
Ron PROPN
Roth PROPN
: PUNCT
GR PROPN
> X
  SPACE
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
wrote VERB
: PUNCT
GR PROPN
> X
GR PROPN
> X
RR PROPN
> X
Well INTJ
, PUNCT
Gordon PROPN
, PUNCT
I PRON
look VERB
at ADP
the DET
RESULTS NOUN
, PUNCT
not PART
at ADP
anyone PRON
's PART
* PUNCT
scientific*GR NOUN
> X
RR PROPN
> X
stamp NOUN
of ADP
approval NOUN
. PUNCT
GR NOUN
> X
  SPACE
GR PROPN
> NUM
    SPACE
If SCONJ
you PRON
and CCONJ
your PRON
patients NOUN
( PUNCT
followers NOUN
? PUNCT
) PUNCT
are AUX
convinced VERB
( PUNCT
as SCONJ
you PRON
've AUX
written)GR PROPN
> X
  SPACE
by ADP
your PRON
methods NOUN
of ADP
uncontrolled ADJ
, PUNCT
undocumented ADJ
, PUNCT
unreported ADJ
, PUNCT
unsubstantiated ADJ
, PUNCT
GR PROPN
> X
  SPACE
subjective ADJ
endpoint PROPN
research NOUN
- PUNCT
great ADJ
. PUNCT
  SPACE
But CCONJ
, PUNCT
why ADV
should AUX
the DET
rest NOUN
of ADP
us PRON
care VERB
? PUNCT
Gordon PROPN
, PUNCT
even ADV
if SCONJ
you PRON
are AUX
trying VERB
to PART
beat VERB
this DET
issue NOUN
to ADP
death NOUN
, PUNCT
you PRON
'll AUX
  SPACE
never ADV
get AUX
more ADJ
than SCONJ
a DET
stalemate NOUN
out SCONJ
of ADP
this DET
one NOUN
! PUNCT
I PRON
have AUX
never ADV
tried VERB
to PART
force VERB
my PRON
type NOUN
of ADP
medicine NOUN
on ADP
any DET
of ADP
you PRON
. PUNCT
Why ADV
  SPACE
should AUX
I PRON
? PUNCT
  SPACE
My PRON
patients NOUN
are AUX
happy ADJ
. PUNCT
I PRON
'm AUX
happy ADJ
. PUNCT
You PRON
and CCONJ
your PRON
peers NOUN
seem VERB
  SPACE
to PART
be AUX
the DET
only ADJ
miserable ADJ
ones NOUN
around ADP
bemoaning VERB
the DET
steady ADJ
loss NOUN
of ADP
  SPACE
patients NOUN
to ADP
the DET
alternative ADJ
camp NOUN
. PUNCT
Just ADV
look VERB
at ADP
Europe PROPN
. PUNCT
There PRON
has AUX
been AUX
a DET
steady ADJ
exodus NOUN
from ADP
' PUNCT
synthetic ADJ
' PUNCT
  SPACE
medicine NOUN
for ADP
over ADP
a DET
decade NOUN
now ADV
, PUNCT
and CCONJ
it PRON
'll AUX
be AUX
just ADV
a DET
matter NOUN
of ADP
time NOUN
before ADP
more ADJ
people NOUN
on ADP
this DET
continent NOUN
will AUX
abandon VERB
their PRON
drug NOUN
and CCONJ
white ADJ
  SPACE
coat NOUN
worship NOUN
as ADV
well ADV
and CCONJ
visit VERB
different ADJ
doctors NOUN
for ADP
different ADJ
needs NOUN
. PUNCT
GR NOUN
> X
     SPACE
You PRON
see VERB
Ron PROPN
, PUNCT
the DET
point NOUN
is AUX
n't PART
whether SCONJ
YOU PRON
and CCONJ
your PRON
patients NOUN
areGR NOUN
> X
  SPACE
convinced VERB
that SCONJ
whatever PRON
it PRON
is AUX
you PRON
do AUX
works NOUN
; PUNCT
it PRON
's AUX
whether SCONJ
what PRON
you PRON
do AUX
isGR PROPN
> X
  SPACE
MORE ADV
effective ADJ
in ADP
similar ADJ
cases NOUN
( PUNCT
of ADP
whatever PRON
it PRON
is AUX
you PRON
think VERB
you PRON
areGR NOUN
> X
  SPACE
treating VERB
) PUNCT
than SCONJ
cupping VERB
, PUNCT
bloodletting VERB
, PUNCT
and CCONJ
placebo NOUN
. PUNCT
This DET
is AUX
very ADV
interesting ADJ
. PUNCT
I PRON
have AUX
come VERB
exactly ADV
to ADP
the DET
same ADJ
conclusions NOUN
but CCONJ
in ADP
regards NOUN
to ADP
* PUNCT
conventional ADJ
* PUNCT
medicine NOUN
. PUNCT
You PRON
see VERB
, PUNCT
I PRON
do AUX
n't PART
just ADV
treat VERB
little ADJ
old ADJ
ladies NOUN
that PRON
would AUX
n't PART
know VERB
any DET
different ADJ
of ADP
what PRON
is AUX
being AUX
done VERB
, PUNCT
but CCONJ
a DET
bulk NOUN
of ADP
my PRON
patients NOUN
consist VERB
of ADP
teachers NOUN
, PUNCT
lawyers NOUN
, PUNCT
judges NOUN
, PUNCT
nurses NOUN
, PUNCT
accountants NOUN
, PUNCT
university NOUN
graduates NOUN
, PUNCT
and CCONJ
various ADJ
health NOUN
practitioners NOUN
. PUNCT
If SCONJ
these DET
people NOUN
have AUX
gotten VERB
results NOUN
with ADP
my PRON
method NOUN
after ADP
having VERB
been AUX
unsuccessful ADJ
with ADP
yours PRON
or CCONJ
their PRON
own ADJ
, PUNCT
I PRON
certainly ADV
would AUX
n't PART
lose VERB
any DET
  SPACE
sleep NOUN
over ADP
whether SCONJ
you PRON
or CCONJ
your PRON
peers NOUN
approve VERB
of ADP
my PRON
treatments NOUN
--- PUNCT
  SPACE
let VERB
's PRON
face VERB
it PRON
, PUNCT
with ADP
all DET
the DET
blunders NOUN
committed VERB
by ADP
" PUNCT
scientific ADJ
" PUNCT
MDs NOUN
  SPACE
over ADP
the DET
years NOUN
, PUNCT
I PRON
know VERB
a DET
lot NOUN
of ADP
people NOUN
who PRON
hold VERB
your PRON
* PUNCT
scientific ADJ
* PUNCT
  SPACE
method NOUN
in ADP
much ADV
lower ADJ
esteem NOUN
than SCONJ
they PRON
hold VERB
mine!GR PROPN
> X
  SPACE
As ADV
far ADV
as SCONJ
we PRON
know VERB
ayurveda NOUN
= SYM
crystals NOUN
= SYM
homeopathy NOUN
= PUNCT
Ron PROPN
RothGR PROPN
> X
  SPACE
which PRON
may AUX
all DET
equal ADJ
placebo NOUN
administered VERB
with ADP
appropriateGR NOUN
> X
  SPACE
trappings NOUN
... PUNCT
       SPACE
Sorry INTJ
, PUNCT
but CCONJ
I PRON
'm AUX
not PART
familiar ADJ
OR CCONJ
interested ADJ
with ADP
what PRON
appears VERB
to PART
be AUX
  SPACE
' PUNCT
NEW PROPN
AGE PROPN
' PART
medicine NOUN
( PUNCT
ayurveda PROPN
, PUNCT
crystals NOUN
) PUNCT
, PUNCT
with ADP
the DET
exception NOUN
of ADP
homeo- PROPN
pathy NOUN
, PUNCT
of ADP
which PRON
I PRON
took VERB
a DET
course NOUN
. PUNCT
But CCONJ
Gordon PROPN
, PUNCT
you PRON
already ADV
knew VERB
that SCONJ
- PUNCT
you PRON
just ADV
wanted VERB
to PART
make VERB
my PRON
system NOUN
look VERB
a DET
bit NOUN
more ADV
far ADV
out ADV
, PUNCT
right ADJ
? PUNCT
  SPACE
I PRON
use VERB
homeopathy NOUN
very ADV
little ADJ
, PUNCT
since SCONJ
my PRON
cellular ADJ
test NOUN
( PUNCT
EMR PROPN
) PUNCT
is AUX
hard ADJ
to PART
beat VERB
for ADP
accuracy NOUN
and CCONJ
minerals NOUN
are AUX
more ADV
predictable ADJ
, PUNCT
while SCONJ
homeopathy NOUN
does AUX
have AUX
a DET
problem NOUN
with ADP
reliability NOUN
, PUNCT
especially ADV
in ADP
acute ADJ
conditions NOUN
. PUNCT
An DET
exception NOUN
perhaps ADV
are AUX
homeopathic ADJ
nosodes NOUN
which PRON
act VERB
fairly ADV
quickly ADV
and CCONJ
are AUX
more ADV
dependable ADJ
in ADP
certain ADJ
viral ADJ
or CCONJ
bacterial ADJ
situations NOUN
. PUNCT
GR NOUN
> X
  SPACE
My PRON
colleagues NOUN
and CCONJ
I PRON
spend VERB
hours NOUN
debating VERB
study NOUN
designGR SYM
> X
  SPACE
and CCONJ
results NOUN
, PUNCT
even ADV
of ADP
therapies NOUN
currently ADV
accepted VERB
as SCONJ
" PUNCT
standard" NOUN
. PUNCT
GR NOUN
> X
  SPACE
As ADV
good ADJ
( PUNCT
well INTJ
, PUNCT
adequate ADJ
) PUNCT
scientists NOUN
, PUNCT
we PRON
are AUX
prepared ADJ
, PUNCT
* PUNCT
if SCONJ
GR PROPN
> X
  SPACE
presented VERB
with ADP
appropriate ADJ
data NOUN
* PUNCT
, PUNCT
to PART
abandon VERB
our PRON
most ADV
deeply ADV
held VERB
GR PROPN
> X
  SPACE
beliefs NOUN
in ADP
favor NOUN
of ADP
new ADJ
ideas NOUN
. PUNCT
I PRON
have AUX
met VERB
the DET
challenges NOUN
of ADP
hundreds NOUN
of ADP
sceptics NOUN
by ADP
verifying VERB
the DET
accuracy NOUN
of ADP
measuring VERB
their PRON
mineral NOUN
status NOUN
to ADP
their PRON
total ADJ
satisfac- ADJ
tion NOUN
--- PUNCT
in ADP
other ADJ
words NOUN
EVERYONE NOUN
INVOLVED PROPN
is AUX
happy ADJ
! PUNCT
If SCONJ
you PRON
were AUX
to PART
cook VERB
a DET
meal NOUN
, PUNCT
would AUX
you PRON
worry VERB
over ADP
whether SCONJ
EVERYONE PROPN
  SPACE
in ADP
this DET
world NOUN
would AUX
find VERB
it PRON
to ADP
their PRON
liking NOUN
, PUNCT
or CCONJ
only ADV
those DET
that PRON
end VERB
  SPACE
up ADP
eating VERB
it PRON
? PUNCT
Since SCONJ
I PRON
have AUX
financed VERB
every DET
research NOUN
project NOUN
that PRON
I PRON
have AUX
undertaken VERB
  SPACE
entirely ADV
myself PRON
, PUNCT
I PRON
do AUX
n't PART
need VERB
to PART
follow VERB
any DET
of ADP
your PRON
rules NOUN
or CCONJ
guide- ADJ
lines NOUN
to PART
satisfy VERB
any DET
aspects NOUN
of ADP
a DET
grant NOUN
application NOUN
, PUNCT
which PRON
YOU PRON
may AUX
  SPACE
have AUX
to PART
; PUNCT
neither CCONJ
am AUX
I PRON
concerned ADJ
of ADP
whether SCONJ
or CCONJ
not PART
my PRON
study NOUN
designs NOUN
  SPACE
meet VERB
your PRON
or CCONJ
anyone PRON
else ADV
's PART
criteria NOUN
or CCONJ
acceptance NOUN
. PUNCT
GR NOUN
> X
    SPACE
Sorry INTJ
Ron PROPN
, PUNCT
if SCONJ
conviction NOUN
were AUX
the DET
ruler NOUN
of ADP
truth NOUN
, PUNCT
a DET
flat ADJ
Earth PROPN
wouldGR PROPN
> X
  SPACE
still ADV
be AUX
the DET
center NOUN
of ADP
the DET
Universe PROPN
and CCONJ
epilepsy NOUN
a DET
curse NOUN
of ADP
the DET
gods NOUN
. PUNCT
                          SPACE
I PRON
think VERB
there PRON
would AUX
be AUX
more ADJ
justification NOUN
for ADP
an DET
uneducated ADJ
person NOUN
growing VERB
up ADP
in ADP
an DET
uncivilized ADJ
environment NOUN
to PART
believe VERB
in ADP
a DET
flat ADJ
earth NOUN
, PUNCT
than SCONJ
for ADP
a DET
civilized ADJ
, PUNCT
well INTJ
educated VERB
and CCONJ
scientifically ADV
trained VERB
mind NOUN
to PART
follow VERB
the DET
doctrine NOUN
of ADP
evolution NOUN
. PUNCT
Genetic ADJ
engineering NOUN
of ADP
course NOUN
is AUX
now ADV
the DET
final ADJ
frontier NOUN
to PART
show VERB
God PROPN
how ADV
it PRON
is AUX
( PUNCT
properly ADV
) PUNCT
done VERB
. PUNCT
Now ADV
we PRON
've AUX
become VERB
capable ADJ
of ADP
creating VERB
our PRON
own ADJ
paradise NOUN
and CCONJ
give VERB
disease NOUN
( PUNCT
and CCONJ
God PROPN
) PUNCT
the DET
boot NOUN
, PUNCT
right ADJ
? PUNCT
But CCONJ
just ADV
before ADP
we PRON
get VERB
rid VERB
of ADP
Him PRON
for ADP
good ADJ
, PUNCT
perhaps ADV
He PRON
could AUX
leave VERB
us PRON
some DET
pointers NOUN
on ADP
how ADV
to PART
solve VERB
a DET
couple NOUN
of ADP
tiny ADJ
problems NOUN
, PUNCT
such ADJ
as SCONJ
war NOUN
, PUNCT
  SPACE
poverty NOUN
, PUNCT
racism NOUN
, PUNCT
crime NOUN
, PUNCT
riots NOUN
, PUNCT
substance NOUN
abuse NOUN
... PUNCT
And CCONJ
one NUM
last ADJ
thing NOUN
, PUNCT
  SPACE
could AUX
He PRON
also ADV
give VERB
us PRON
a DET
hint NOUN
on ADP
how ADV
to PART
control VERB
natural ADJ
disasters NOUN
, PUNCT
the DET
weather NOUN
, PUNCT
and CCONJ
last ADJ
, PUNCT
but CCONJ
not PART
least ADJ
--- PUNCT
peace NOUN
? PUNCT
   SPACE
--Ron----- PROPN
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
  SPACE
The DET
Lab PROPN
called VERB
: PUNCT
Your PRON
brain NOUN
is AUX
ready ADJ
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58883From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboT PROPN
( PUNCT
> X
Russell PROPN
Turpin PROPN
responds VERB
to ADP
article NOUN
by ADP
Ron PROPN
Roth PROPN
: PUNCT
T(>T NOUN
( PUNCT
> X
R NOUN
> X
... PUNCT
I PRON
do AUX
n't PART
doubt VERB
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
alive ADJ
and CCONJ
well ADV
withT PROPN
( PUNCT
> X
R NOUN
> X
EVERY DET
medical ADJ
modality NOUN
- PUNCT
estimated VERB
by ADP
some DET
to PART
be AUX
around ADV
20+%,T NUM
( PUNCT
> X
R NOUN
> X
but CCONJ
why ADV
would AUX
it PRON
be AUX
higher ADJ
with ADP
alternative NOUN
versus ADP
conventional ADJ
T PROPN
( PUNCT
> X
R NOUN
> X
medicine?"T NOUN
( PUNCT
> X
  SPACE
T PROPN
( PUNCT
> X
  SPACE
How ADV
do AUX
you PRON
know VERB
that SCONJ
it PRON
is AUX
? PUNCT
  SPACE
If SCONJ
you PRON
could AUX
show VERB
this DET
by ADP
careful ADJ
T PROPN
( PUNCT
> X
  SPACE
measurement NOUN
, PUNCT
I PRON
suspect VERB
you PRON
would AUX
have AUX
a DET
paper NOUN
worthy ADJ
of ADP
publicationT PROPN
( PUNCT
> X
  SPACE
in ADP
a DET
variety NOUN
of ADP
medical ADJ
journals NOUN
. PUNCT
  SPACE
T PROPN
( PUNCT
> X
  SPACE
T PROPN
( PUNCT
> X
  SPACE
Russell PROPN
  SPACE
If SCONJ
you PRON
notice VERB
the DET
question NOUN
mark NOUN
at ADP
the DET
end NOUN
of ADP
the DET
sentence NOUN
, PUNCT
I PRON
was AUX
addressing VERB
that DET
very ADJ
question NOUN
to ADP
that DET
person NOUN
( PUNCT
who PRON
has AUX
a DET
dog NOUN
named VERB
sugar NOUN
) PUNCT
and CCONJ
a DET
few ADJ
other ADJ
people NOUN
who PRON
seem VERB
to PART
be AUX
of ADP
the DET
same ADJ
opinion NOUN
. PUNCT
I PRON
would AUX
love VERB
to PART
have AUX
anyone PRON
come VERB
up ADP
with ADP
a DET
study NOUN
to PART
support VERB
their PRON
claims NOUN
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
more ADV
prevalent ADJ
with ADP
alternative NOUN
compared VERB
to ADP
conventional ADJ
medicine NOUN
. PUNCT
Perhaps ADV
the DET
study NOUN
could AUX
also ADV
include VERB
how ADV
patients NOUN
respond VERB
if SCONJ
they PRON
are AUX
dissatisfied ADJ
with ADP
a DET
conventional ADJ
versus ADP
an DET
alternative ADJ
doctor NOUN
, PUNCT
i.e. X
which PRON
practitioner NOUN
is AUX
more ADV
likely ADJ
to PART
get AUX
punched VERB
in ADP
the DET
face NOUN
when ADV
the DET
success NOUN
of ADP
the DET
treatment NOUN
does AUX
n't PART
meet VERB
the DET
expectations NOUN
of ADP
  SPACE
the DET
patient NOUN
! PUNCT
  SPACE
--Ron-- PROPN
--- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
When ADV
in ADP
doubt NOUN
, PUNCT
make VERB
it PRON
sound VERB
convincing ADJ
! PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58884From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics)-*----Cross X
- PUNCT
posted VERB
and CCONJ
with ADP
followups NOUN
directed VERB
to ADP
talk.politics.theory.-*----In PROPN
article NOUN
< X
79700@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
Indeed ADV
, PUNCT
we PRON
are AUX
today NOUN
a DET
nation NOUN
at ADP
risk NOUN
! PUNCT
  SPACE
The DET
threat NOUN
is AUX
not PART
from ADP
bad ADJ
genes NOUN
, PUNCT
> X
but CCONJ
bad ADJ
memes NOUN
! PUNCT
  SPACE
Memes PROPN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
genes NOUN
> X
which PRON
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
> X
> X
We PRON
must AUX
expand VERB
the DET
public ADJ
- PUNCT
health NOUN
laws NOUN
to PART
include VERB
quarantine NOUN
of ADP
people NOUN
> X
with ADP
harmful ADJ
memes NOUN
. PUNCT
... PUNCT
In ADP
other ADJ
words NOUN
, PUNCT
we PRON
should AUX
jail VERB
people NOUN
who PRON
say VERB
the DET
wrong ADJ
things NOUN
. PUNCT
  SPACE
In ADP
this DET
advocacy NOUN
, PUNCT
we PRON
can AUX
see VERB
a DET
truly ADV
ugly ADJ
meme NOUN
. PUNCT
Does AUX
Mark PROPN
Robert PROPN
Thorson PROPN
advocate NOUN
jailing PROPN
himself?RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58885From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
H NOUN
E NOUN
L NOUN
P NOUN
   SPACE
M NOUN
E NOUN
   SPACE
--- PUNCT
> X
desperate ADJ
with ADP
some DET
VD-*----In PROPN
article NOUN
< X
1993Apr17.115716.19963@debbie.cc.nctu.edu.tw NUM
> X
mjliu@csie.nctu.edu.tw PROPN
( PUNCT
Ming PROPN
- PUNCT
zhou PROPN
Liu PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
have AUX
bad ADJ
luck NOUN
and CCONJ
got VERB
a DET
VD PROPN
called VERB
< X
Granuloma PROPN
ingunale NOUN
> X
, PUNCT
which PRON
involves VERB
> X
the DET
growth NOUN
of ADP
granules NOUN
in ADP
the DET
groin NOUN
. PUNCT
  SPACE
I PRON
found VERB
out ADP
about ADP
it PRON
by ADP
checking VERB
> X
medicine NOUN
books NOUN
and CCONJ
I PRON
found VERB
the DET
prescriptions NOUN
. PUNCT
... PUNCT
Ming PROPN
- PUNCT
zhou PROPN
Liu PROPN
's PART
main ADJ
problem NOUN
is AUX
that SCONJ
he PRON
has AUX
an DET
incompetentphysician PROPN
-- PUNCT
himself PRON
. PUNCT
  SPACE
This DET
physician NOUN
has AUX
diagnosed VERB
a DET
problem NOUN
, PUNCT
even ADV
though SCONJ
he PRON
probably ADV
has AUX
never ADV
seen VERB
the DET
diagnosed VERB
diseasebefore NOUN
and CCONJ
has AUX
no DET
idea NOUN
of ADP
what PRON
kinds NOUN
of ADP
problems NOUN
can AUX
presentsimilar VERB
symptoms NOUN
. PUNCT
  SPACE
This DET
physician NOUN
now ADV
wants VERB
to PART
treat VERB
his PRON
firstcase NOUN
of ADP
this DET
disease NOUN
without ADP
any DET
help NOUN
from ADP
the DET
medical ADJ
community NOUN
. PUNCT
The DET
best ADJ
thing NOUN
Ming PROPN
- PUNCT
zhou PROPN
Liu PROPN
could AUX
do AUX
is AUX
fire VERB
his PRON
currentphysician NOUN
and CCONJ
seek VERB
out ADP
a DET
better ADJ
one NUM
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58886From NUM
: PUNCT
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver)Subject NUM
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskSome NOUN
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that SCONJ
carcinogens NOUN
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58887From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
[ PUNCT
reply VERB
to ADP
keith@actrix.gen.nz PROPN
( PUNCT
Keith PROPN
Stewart PROPN
) PUNCT
] PUNCT
> X
My PRON
wife NOUN
has AUX
become VERB
interested ADJ
through ADP
an DET
acquaintance NOUN
in ADP
Post PROPN
- PROPN
Polio PROPN
> X
Syndrome PROPN
This DET
apparently ADV
is AUX
not PART
recognised VERB
in ADP
New PROPN
Zealand PROPN
and CCONJ
different ADJ
> X
symptons NOUN
( PUNCT
eg PROPN
chest PROPN
complaints NOUN
) PUNCT
are AUX
treated VERB
separately ADV
. PUNCT
Does AUX
anone NOUN
have AUX
> X
any DET
information NOUN
on ADP
it PRON
It PRON
would AUX
help VERB
if SCONJ
you PRON
( PUNCT
and CCONJ
anyone PRON
else ADV
asking VERB
for ADP
medical ADJ
information NOUN
onsome PROPN
subject NOUN
) PUNCT
could AUX
ask VERB
specific ADJ
questions NOUN
, PUNCT
as SCONJ
no DET
one NOUN
is AUX
likely ADJ
to PART
typein VERB
a DET
textbook NOUN
chapter NOUN
covering VERB
all DET
aspects NOUN
of ADP
the DET
subject NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
arelooking VERB
for ADP
a DET
comprehensive ADJ
review NOUN
, PUNCT
ask VERB
your PRON
local ADJ
hospital NOUN
librarian NOUN
. PUNCT
Most ADJ
are AUX
happy ADJ
to PART
help VERB
with ADP
a DET
request NOUN
of ADP
this DET
sort NOUN
. PUNCT
Briefly ADV
, PUNCT
this DET
is AUX
a DET
condition NOUN
in ADP
which PRON
patients NOUN
who PRON
have AUX
significantresidual ADJ
weakness NOUN
from ADP
childhood NOUN
polio NOUN
notice NOUN
progression NOUN
of ADP
theweakness NOUN
as SCONJ
they PRON
get VERB
older ADJ
. PUNCT
  SPACE
One NUM
theory NOUN
is AUX
that SCONJ
the DET
remaining VERB
motorneurons NOUN
have AUX
to PART
work VERB
harder ADV
and CCONJ
so ADV
die VERB
sooner ADV
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58888From NUM
: PUNCT
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
about ADP
a DET
crash NOUN
program NOUN
in ADP
basic ADJ
immunological ADJ
research?In PROPN
article NOUN
< X
93099.141148C09630GK@wuvmd.wustl.edu NUM
> X
, PUNCT
C09630GK@WUVMD PROPN
( PUNCT
Gary PROPN
Kronk PROPN
) PUNCT
writes:| PROPN
> X
I PRON
have AUX
been AUX
contemplating VERB
this DET
idea NOUN
for ADP
some DET
time NOUN
as ADV
well ADV
. PUNCT
I PRON
am AUX
not PART
a| VERB
> X
doctor NOUN
, PUNCT
but CCONJ
my PRON
wife NOUN
is AUX
a DET
nurse NOUN
and CCONJ
I PRON
know VERB
a DET
lot NOUN
of ADP
doctors NOUN
and CCONJ
nurses.| PROPN
> X
The DET
point NOUN
here ADV
being AUX
that SCONJ
doctors NOUN
and CCONJ
nurses NOUN
do AUX
not PART
seem VERB
to PART
get AUX
sick| PROPN
> X
nearly ADV
as ADV
much ADV
as SCONJ
people NOUN
outside ADP
the DET
medical ADJ
profession NOUN
. PUNCT
This DET
is AUX
a DET
lovely ADJ
area NOUN
for ADP
anecdotes NOUN
, PUNCT
but CCONJ
I PRON
am AUX
sure ADJ
you PRON
are AUX
on ADP
to ADP
something PRON
. PUNCT
As SCONJ
a DET
physician NOUN
, PUNCT
I PRON
almost ADV
never ADV
get VERB
sick ADJ
: PUNCT
usually ADV
, PUNCT
when ADV
something PRON
horrendousis NOUN
going VERB
around ADV
, PUNCT
I PRON
either CCONJ
do AUX
n't PART
get AUX
it PRON
at ADV
all ADV
or CCONJ
get AUX
a DET
very ADV
mild ADJ
case NOUN
. PUNCT
When ADV
I PRON
do AUX
get AUX
really ADV
sick ADJ
, PUNCT
it PRON
is AUX
always ADV
something PRON
unusual ADJ
. PUNCT
This DET
was AUX
not PART
the DET
situation NOUN
when ADV
I PRON
was AUX
in ADP
medical ADJ
school NOUN
, PUNCT
particularly ADV
onpediatrics NOUN
. PUNCT
I PRON
never ADV
had AUX
younger ADJ
siblings NOUN
myself PRON
, PUNCT
and CCONJ
when ADV
I PRON
went VERB
on ADP
thepediatric ADJ
wards NOUN
I PRON
suddenly ADV
found VERB
myself PRON
confronting VERB
all DET
sorts NOUN
of ADP
infectiouschallenges NOUN
that SCONJ
my PRON
body NOUN
was AUX
not PART
ready ADJ
for ADP
. PUNCT
Pediatrics NOUN
for ADP
me PRON
was AUX
three NUM
solidmonths NOUN
of ADP
illness NOUN
, PUNCT
and CCONJ
I PRON
had AUX
a DET
temp NOUN
of ADP
104 NUM
when ADV
I PRON
took VERB
the DET
final ADJ
exam!I NOUN
think VERB
what PRON
happens VERB
is AUX
that SCONJ
during ADP
training NOUN
, PUNCT
and CCONJ
beyond ADP
, PUNCT
we PRON
are AUX
constantlyexposed VERB
to ADP
new ADJ
things NOUN
, PUNCT
and CCONJ
we PRON
have AUX
the DET
usual ADJ
reactions NOUN
to ADP
them PRON
, PUNCT
so SCONJ
that SCONJ
lateron PROPN
, PUNCT
when ADV
challenged VERB
with ADP
something PRON
, PUNCT
it PRON
is AUX
more ADV
likely ADJ
a DET
re NOUN
- NOUN
exposure NOUN
for ADP
us PRON
, PUNCT
so ADV
we PRON
deal VERB
with ADP
it PRON
well INTJ
and CCONJ
get AUX
a DET
mild ADJ
illness NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
it PRON
is AUX
thatthe DET
immune ADJ
system NOUN
is AUX
hyped VERB
up ADP
in ADP
any DET
way NOUN
. PUNCT
Also ADV
, PUNCT
do AUX
n't PART
forget VERB
that SCONJ
thehospital ADJ
flora PROPN
is AUX
very ADV
different ADJ
from ADP
the DET
home NOUN
, PUNCT
and CCONJ
we PRON
carry VERB
a DET
lot NOUN
of ADP
thataround.-kmNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58889From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C5Kv7p.JM3@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>>>In PROPN
article NOUN
< X
1993Apr15.200344.28013@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>What DET
is AUX
wrong ADJ
with ADP
the DET
above ADJ
observation NOUN
is AUX
that SCONJ
it PRON
explicitly ADV
gives VERB
the>>impression PROPN
( PUNCT
and CCONJ
you PRON
may AUX
not PART
in ADP
fact NOUN
hold VERB
this DET
view NOUN
) PUNCT
that SCONJ
the DET
common ADJ
( PUNCT
perhaps>>even PUNCT
the DET
" PUNCT
correct ADJ
" PUNCT
) PUNCT
approach NOUN
for ADP
a DET
scientist NOUN
to PART
follow VERB
is AUX
to PART
sit VERB
around>>having VERB
flights NOUN
of ADP
fancy ADJ
and CCONJ
scheming VERB
on ADP
the DET
basis NOUN
of ADP
his PRON
jealousies NOUN
and>>petty PROPN
hatreds.>>Flights NOUN
of ADP
fancy NOUN
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucial ADJ
> NOUN
thing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
use NOUN
> X
unless SCONJ
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
I PRON
've AUX
known VERB
a DET
lot NOUN
of ADP
scientists NOUN
> X
whose PRON
fantasies NOUN
lead VERB
them PRON
on ADP
to ADP
creative ADJ
work NOUN
; PUNCT
usually ADV
they PRON
wo AUX
n't PART
admit VERB
> X
out ADV
loud ADV
what PRON
the DET
fantasy NOUN
was AUX
, PUNCT
prior ADV
to ADP
the DET
consumption NOUN
of ADP
a DET
few ADJ
beers NOUN
. PUNCT
The DET
danger NOUN
in ADP
philosophizing VERB
about ADP
science NOUN
is AUX
that DET
theory NOUN
and CCONJ
generalization NOUN
can AUX
end VERB
up ADP
being AUX
far ADV
removed VERB
from ADP
the DET
actual ADJ
day NOUN
- PUNCT
to ADP
- PUNCT
day NOUN
of ADP
the DET
grunt NOUN
at ADP
thebench PROPN
. PUNCT
  SPACE
Yes INTJ
, PUNCT
its PRON
great ADJ
to PART
be AUX
involved VERB
in ADP
a DET
process NOUN
were AUX
I PRON
can AUX
walk VERB
into ADP
thelab NOUN
after ADP
a DET
heavy ADJ
night NOUN
of ADP
dreaming NOUN
and CCONJ
just ADV
do AUX
something PRON
for ADP
the DET
hell NOUN
of ADP
it(as NOUN
long ADV
as SCONJ
my PRON
advisor NOUN
does AUX
n't PART
catch VERB
me PRON
- PUNCT
which PRON
is AUX
easy ADJ
enough ADV
to PART
do AUX
) PUNCT
, PUNCT
but CCONJ
stamping VERB
out ADP
such ADJ
behavior NOUN
seems VERB
to PART
be AUX
the DET
purpose NOUN
in ADP
life NOUN
of ADP
grant NOUN
review NOUN
committees NOUN
and CCONJ
the DET
peer NOUN
review NOUN
process NOUN
in ADP
general ADJ
. PUNCT
  SPACE
In ADP
today NOUN
's PART
world NOUN
that DET
's AUX
what PRON
determines VERB
what PRON
science NOUN
is AUX
: PUNCT
what PRON
gets VERB
funded ADJ
. PUNCT
  SPACE
And CCONJ
a DET
damn ADV
good ADJ
thing NOUN
to ADP
. PUNCT
Flights NOUN
of ADP
fantasy NOUN
just ADV
do AUX
n't PART
have AUX
much ADJ
chance NOUN
of ADP
producing VERB
anything PRON
, PUNCT
at ADP
least ADJ
not PART
in ADP
biomedical ADJ
research NOUN
. PUNCT
  SPACE
The DET
surest ADJ
way NOUN
for ADP
a DET
graduate NOUN
student NOUN
toruin VERB
their PRON
life NOUN
is AUX
to PART
work VERB
in ADP
a DET
lab NOUN
where ADV
the DET
boss NOUN
is AUX
more ADV
concerned ADJ
with ADP
fleshing VERB
out ADP
his PRON
/ SYM
her PRON
fantasies NOUN
than SCONJ
with ADP
having VERB
the DET
student NOUN
work NOUN
on ADP
a DET
projectthat NOUN
actually ADV
has AUX
a DET
good ADJ
chance NOUN
of ADP
producing VERB
some DET
results NOUN
. PUNCT
  SPACE
MD PROPN
's PART
seem VERB
to PART
be AUX
particularly ADV
prone ADJ
to ADP
this DET
aberrant ADJ
behavior NOUN
. PUNCT
  SPACE
> X
( PUNCT
Simple ADJ
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNA NOUN
> X
electrophoresis NOUN
gel NOUN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
hoping VERB
that SCONJ
> X
he'd PUNCT
seen VERB
some DET
essential ADJ
part NOUN
of ADP
the DET
control NOUN
mechanism NOUN
for ADP
eukaryotic ADJ
> PROPN
genes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
out ADP
> X
binding VERB
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequence NOUN
> X
that PRON
occurs VERB
about ADV
500,000 NUM
times NOUN
in ADP
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
Unfortunately ADV
for ADP
> X
Warren PROPN
's PART
fantasy NOUN
, PUNCT
it PRON
turns VERB
out ADP
to PART
be AUX
a DET
transposon NOUN
that PRON
is AUX
present ADJ
in ADP
> X
so ADV
many ADJ
copies NOUN
because SCONJ
it PRON
replicates VERB
itself PRON
and CCONJ
copies NOUN
itself PRON
back ADV
into ADP
> X
the DET
genome NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
the DET
characteristics NOUN
of ADP
transposons NOUN
were AUX
> X
much ADV
elucidated VERB
; PUNCT
the DET
necessity NOUN
of ADP
a DET
cellular ADJ
reverse NOUN
transcriptase NOUN
was AUX
> X
recognized VERB
; PUNCT
and CCONJ
the DET
standard ADJ
method NOUN
of ADP
recognizing VERB
human ADJ
DNA PROPN
was AUX
created.>Other PROPN
species NOUN
have AUX
different ADJ
sets NOUN
of ADP
transposons NOUN
. PUNCT
  SPACE
Fortunately ADV
for ADP
me,>Warren PROPN
and CCONJ
I PRON
used VERB
to PART
eat VERB
dinner NOUN
at ADP
T.G.I. PROPN
Fridays VERB
all DET
the DET
time.)I NOUN
have AUX
to PART
agree VERB
with ADP
Gary PROPN
Merrill PROPN
's PART
response NOUN
to ADP
this DET
. PUNCT
  SPACE
I PRON
've AUX
read VERB
alot NOUN
of ADP
theAlu NOUN
and CCONJ
middle ADJ
repetitive ADJ
sequence NOUN
work NOUN
and CCONJ
it PRON
's AUX
really ADV
very ADV
interesting ADJ
, PUNCT
good ADJ
work NOUN
with ADP
implications NOUN
for ADP
many ADJ
fields NOUN
in ADP
molecular ADJ
genetics NOUN
. PUNCT
  SPACE
It PRON
's AUX
really ADV
an DET
example NOUN
of ADP
how ADV
a DET
well ADV
reasoned VERB
project NOUN
turned VERB
up ADP
interesting ADJ
results NOUN
that PRON
were AUX
unexpected ADJ
. PUNCT
MikeNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58890From NUM
: PUNCT
jeffp@vetmed.wsu.edu PROPN
( PUNCT
Jeff PROPN
Parke)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lyme NOUN
vaccinekathleen NOUN
richards NOUN
( PUNCT
kilty@ucrengr NOUN
) PUNCT
wrote VERB
: PUNCT
> X
My PRON
nearly-13 NUM
year NOUN
old ADJ
Pomeranian PROPN
had AUX
a DET
nasty ADJ
reaction NOUN
to ADP
this DET
vaccination NOUN
. PUNCT
> X
... PUNCT
  SPACE
Suffice VERB
it PRON
to PART
say VERB
, PUNCT
we PRON
will AUX
not PART
> X
vaccinate VERB
her PRON
for ADP
Lyme PROPN
disease NOUN
again ADV
. PUNCT
  SPACE
She PRON
's AUX
been AUX
camping VERB
through ADP
some DET
6 NUM
> X
states NOUN
and CCONJ
has AUX
backpacked VERB
with ADP
us PRON
as ADV
well ADV
and CCONJ
we PRON
are AUX
used VERB
to ADP
watching VERB
for ADP
ticks NOUN
> X
and CCONJ
dealing VERB
with ADP
them PRON
and CCONJ
we PRON
simply ADV
wo AUX
n't PART
take VERB
her PRON
to PART
really ADV
active ADJ
Lyme PROPN
> X
disease NOUN
areas NOUN
.... PUNCT
Not PART
to PART
drag VERB
this DET
out ADP
anymore ADV
, PUNCT
but CCONJ
.... PUNCT
Many ADJ
veterinarians NOUN
feel VERB
that SCONJ
Lyme PROPN
Disease PROPN
in ADP
dogs NOUN
is AUX
so ADV
easy ADJ
to PART
treat VERB
thatin NOUN
an DET
endemic ADJ
area NOUN
, PUNCT
they PRON
often ADV
just ADV
give VERB
the DET
appropriate ADJ
antibiotics NOUN
to ADP
dogspresenting VERB
with ADP
lameness NOUN
, PUNCT
swollen ADJ
joints NOUN
, PUNCT
+ X
/- PUNCT
fever NOUN
. PUNCT
A DET
recent ADJ
paper NOUN
( PUNCT
March PROPN
1993 NUM
) PUNCT
has AUX
finally ADV
established VERB
that SCONJ
Lyme PROPN
disease NOUN
in ADP
dogscan PROPN
be AUX
reproduced VERB
in ADP
a DET
controlled VERB
experimentaly ADJ
setting NOUN
. PUNCT
  SPACE
This DET
has AUX
beenan PROPN
ellusive ADJ
matter NOUN
for ADP
researchers NOUN
, PUNCT
and CCONJ
is AUX
one NUM
of ADP
the DET
fundamental ADJ
requirementsfor NOUN
many ADJ
to PART
acknowledge VERB
an DET
agent NOUN
as SCONJ
being AUX
causitive ADJ
of ADP
a DET
particular ADJ
disease NOUN
. PUNCT
Up ADP
to ADP
now ADV
, PUNCT
only ADV
the DET
vaccine NOUN
manufacturer NOUN
has AUX
been AUX
able ADJ
to PART
" PUNCT
prove VERB
" PUNCT
thatthe ADJ
disease NOUN
exists VERB
. PUNCT
This DET
paper NOUN
is AUX
noteworthy ADJ
in ADP
two NUM
other ADJ
regards:1 NUM
) PUNCT
None NOUN
of ADP
the DET
animals NOUN
they PRON
infected VERB
were AUX
treated VERB
in ADP
any DET
way NOUN
. PUNCT
  SPACE
The DET
dogshad NOUN
episodes NOUN
of ADP
lameness NOUN
during ADP
a DET
6 NUM
- SYM
8 NUM
week NOUN
period NOUN
which PRON
occurred VERB
2 NUM
- SYM
5months NUM
after ADP
exposure NOUN
. PUNCT
  SPACE
After ADP
this DET
period NOUN
, PUNCT
none NOUN
showed VERB
any DET
furtherclinical ADJ
signs NOUN
up ADP
to ADP
the DET
17 NUM
month NOUN
observation NOUN
period NOUN
of ADP
the DET
study NOUN
. PUNCT
  SPACE
Sothese PROPN
are AUX
proven VERB
, PUNCT
clinically ADV
sick ADJ
Lyme PROPN
patients NOUN
showing VERB
spontaneousrecovery NOUN
without ADP
the DET
benefit NOUN
of ADP
drug NOUN
treatment NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
observationslonger NOUN
than SCONJ
17 NUM
months NOUN
will AUX
be AUX
necessary ADJ
to PART
be AUX
sure ADJ
the DET
disease NOUN
doesn'thave VERB
the DET
same ADJ
chronicity NOUN
that PRON
some DET
see VERB
in ADP
humans.2 PROPN
) PUNCT
  SPACE
The DET
addendum NOUN
to ADP
the DET
paper NOUN
calls VERB
into ADP
question NOUN
the DET
techniques NOUN
used VERB
by ADP
thevaccine ADJ
manufacturer NOUN
to PART
validate VERB
the DET
vaccine NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
they PRON
wantthe VERB
world NOUN
to PART
use VERB
the DET
model NOUN
they PRON
developed VERB
in ADP
order NOUN
to PART
test VERB
vaccineefficacy NOUN
. PUNCT
Anyway INTJ
, PUNCT
maybe ADV
we PRON
will AUX
see VERB
some DET
independent ADJ
, PUNCT
scientifically ADV
sound VERB
evaluationsof NOUN
this DET
vaccine NOUN
in ADP
the DET
next ADJ
year NOUN
or CCONJ
so.--Jeff ADV
Parke PROPN
< X
jeffp@pgavin1.vetmed.wsu.edu>also NOUN
: PUNCT
   SPACE
jeffp@WSUVM1.bitnet PUNCT
    SPACE
AOL PROPN
: PUNCT
JeffParkeWashington PROPN
State PROPN
University PROPN
College PROPN
of ADP
Veterinary PROPN
Medicine PROPN
class NOUN
of ADP
1994Pullman NUM
, PUNCT
WA PROPN
  SPACE
99164 NUM
- PUNCT
7012Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58891From NUM
: PUNCT
kfl@access.digex.com PROPN
( PUNCT
Keith PROPN
F. PROPN
Lynch)Subject PROPN
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
19600@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
Keith PROPN
is AUX
the DET
only ADJ
person NOUN
I PRON
have AUX
ever ADV
heard VERB
of ADP
that DET
keeps VERB
the DET
weight NOUN
> X
off ADV
without ADP
any DET
conscious ADJ
effort NOUN
to PART
control VERB
eating VERB
behavior NOUN
. PUNCT
  SPACE
... PUNCT
most ADJ
> X
of ADP
us PRON
have AUX
to PART
diet VERB
a DET
lot NOUN
to PART
keep VERB
from ADP
going VERB
back ADV
to ADP
morbid NOUN
obesity NOUN
. PUNCT
I PRON
attribute VERB
my PRON
success NOUN
to ADP
several ADJ
factors NOUN
: PUNCT
Very ADV
low ADJ
fat NOUN
. PUNCT
  SPACE
Except SCONJ
when ADV
someone PRON
else ADV
has AUX
cooked VERB
a DET
meal NOUN
for ADP
me PRON
, PUNCT
I PRON
only ADV
eat VERB
fruit NOUN
, PUNCT
vegetables NOUN
, PUNCT
and CCONJ
whole ADJ
grain NOUN
or CCONJ
bran NOUN
cereals NOUN
. PUNCT
  SPACE
Iestimate PROPN
I PRON
only ADV
get VERB
about ADV
5 NUM
to PART
10 NUM
percent NOUN
of ADP
my PRON
calories NOUN
from ADP
fat NOUN
. PUNCT
Very ADV
little ADJ
sugar NOUN
or CCONJ
salt NOUN
. PUNCT
Very ADV
high ADJ
fiber NOUN
. PUNCT
  SPACE
Most ADJ
Americans PROPN
get VERB
about ADV
10 NUM
grams NOUN
. PUNCT
  SPACE
25 NUM
to PART
35 NUM
arerecommended VERB
. PUNCT
  SPACE
I PRON
get VERB
between ADP
50 NUM
and CCONJ
150 NUM
. PUNCT
  SPACE
Sometimes ADV
200 NUM
. PUNCT
  SPACE
( PUNCT
I PRON
've AUX
heardof ADJ
people NOUN
taking VERB
fiber NOUN
pills NOUN
. PUNCT
  SPACE
It PRON
seems VERB
unlikely ADJ
that SCONJ
pills NOUN
cancontain VERB
enough ADJ
fiber NOUN
to PART
make VERB
a DET
difference NOUN
. PUNCT
  SPACE
It PRON
would AUX
be AUX
about ADV
aslikely ADV
as SCONJ
someone PRON
getting VERB
fat ADJ
by ADP
popping VERB
fat ADJ
pills NOUN
. PUNCT
  SPACE
Tablets NOUN
arejust ADV
too ADV
small ADJ
, PUNCT
unless SCONJ
you PRON
snarf VERB
down ADP
hundreds NOUN
of ADP
them PRON
daily.)My PROPN
" PUNCT
clean VERB
your PRON
plate NOUN
" PUNCT
conditioning NOUN
works NOUN
* PUNCT
for ADP
* PUNCT
me PRON
. PUNCT
  SPACE
Eating VERB
the DET
last10 NOUN
% NOUN
takes VERB
half DET
my PRON
eating VERB
time NOUN
, PUNCT
and CCONJ
gives VERB
satiety NOUN
a DET
chance NOUN
to PART
catchup VERB
, PUNCT
so ADV
I PRON
do AUX
n't PART
still ADV
feel VERB
hungry ADJ
and CCONJ
go VERB
start VERB
eating VERB
something PRON
else ADV
. PUNCT
I PRON
do AUX
n't PART
eat VERB
when ADV
I PRON
'm AUX
not PART
hungry ADJ
( PUNCT
unless SCONJ
I PRON
'm AUX
sure ADJ
I PRON
'll AUX
get AUX
hungryshortly ADV
, PUNCT
and CCONJ
eating VERB
wo AUX
n't PART
be AUX
practical ADJ
then).I NUM
bike NOUN
to PART
work VERB
, PUNCT
22 NUM
miles NOUN
a DET
day NOUN
, PUNCT
year NOUN
round NOUN
. PUNCT
  SPACE
Fast ADV
. PUNCT
  SPACE
I PRON
also ADV
bike VERB
tostores NOUN
, PUNCT
movies NOUN
, PUNCT
and CCONJ
everywhere ADV
else ADV
, PUNCT
as SCONJ
I PRON
've AUX
never ADV
owned VERB
a DET
car NOUN
. PUNCT
I PRON
estimate VERB
this DET
burns VERB
about ADV
1000 NUM
calories NOUN
a DET
day NOUN
. PUNCT
  SPACE
It PRON
also ADV
helpsbuild VERB
and CCONJ
maintain VERB
muscle NOUN
mass NOUN
, PUNCT
prevent VERB
insulin NOUN
resistance NOUN
( PUNCT
diabetesruns NOUN
in ADP
my PRON
family NOUN
) PUNCT
, PUNCT
and CCONJ
increase VERB
my PRON
metabolism NOUN
. PUNCT
  SPACE
( PUNCT
Even ADV
so ADV
, PUNCT
mymetabolism NOUN
is AUX
so ADV
low ADJ
that SCONJ
when ADV
I PRON
'm AUX
at ADP
rest NOUN
I PRON
'm AUX
most ADV
comfortablewith X
a DET
temperature NOUN
in ADP
the DET
90s NOUN
( PUNCT
F PROPN
) PUNCT
, PUNCT
and CCONJ
usually ADV
wear VERB
a DET
sweater NOUN
ifit NOUN
drops NOUN
to ADP
80 NUM
. PUNCT
) PUNCT
  SPACE
Cycling PROPN
also ADV
motivates VERB
me PRON
to PART
avoid VERB
every DET
excessounce NOUN
. PUNCT
  SPACE
( PUNCT
Cyclists NOUN
routinely ADV
pay VERB
a DET
premium NOUN
for ADP
cycling NOUN
products NOUN
thatweigh VERB
slightly ADV
less ADJ
than SCONJ
others NOUN
. PUNCT
  SPACE
But CCONJ
it PRON
's AUX
easier ADJ
and CCONJ
cheaper ADJ
to PART
trimweight VERB
from ADP
the DET
rider NOUN
than SCONJ
from ADP
the DET
vehicle.)There PROPN
's AUX
no DET
question NOUN
in ADP
my PRON
mind NOUN
that SCONJ
my PRON
metabolism NOUN
is AUX
radicallydifferent ADJ
from ADP
that DET
of ADP
most ADJ
people NOUN
who PRON
have AUX
never ADV
been AUX
fat ADJ
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
it PRON
is AUX
n't PART
different ADJ
in ADP
a DET
way NOUN
that PRON
precludes VERB
excellent ADJ
health NOUN
. PUNCT
Obviously ADV
, PUNCT
I PRON
ca AUX
n't PART
swear VERB
that SCONJ
every DET
obese ADJ
person NOUN
who PRON
does AUX
what PRON
I'vedone PROPN
will AUX
have AUX
the DET
success NOUN
I PRON
did AUX
. PUNCT
  SPACE
But CCONJ
I PRON
've AUX
never ADV
yet ADV
heard VERB
of ADP
one NOUN
whodid ADV
try VERB
it PRON
and CCONJ
did AUX
n't PART
succeed VERB
. PUNCT
> X
I PRON
think VERB
all DET
of ADP
us PROPN
cycle NOUN
. PUNCT
  SPACE
One NOUN
's PART
success NOUN
depends VERB
on ADP
how ADV
large ADJ
the DET
> X
fluctuations NOUN
in ADP
the DET
cycle NOUN
are AUX
. PUNCT
  SPACE
Some DET
people NOUN
can AUX
cycle VERB
only ADV
5 NUM
pounds NOUN
. PUNCT
I'm PRON
sure ADJ
everyone PRON
's PART
weight NOUN
cycles NOUN
, PUNCT
whether SCONJ
or CCONJ
not PART
they PRON
've AUX
ever ADV
been AUX
fat ADJ
. PUNCT
I PRON
usually ADV
eat VERB
extremely ADV
little ADJ
salt NOUN
. PUNCT
  SPACE
When ADV
I PRON
do AUX
eat VERB
something PRON
salty ADJ
, PUNCT
my PRON
weight NOUN
can AUX
increase VERB
overnight ADV
by ADP
as ADV
much ADJ
as SCONJ
ten NUM
pounds NOUN
. PUNCT
  SPACE
It PRON
comesoff VERB
again ADV
over ADP
a DET
week NOUN
or CCONJ
two.-- NUM
Keith PROPN
Lynch PROPN
, PUNCT
kfl@access.digex.comf PROPN
p=2,3:2 PROPN
s PROPN
q=1 NOUN
x NOUN
" PUNCT
f PROPN
f=3:2 PROPN
q PROPN
: PUNCT
f*f PROPN
> PROPN
p!'q PROPN
  SPACE
s PROPN
q PROPN
= SYM
p#f NOUN
" PUNCT
w PROPN
: PUNCT
q PROPN
p,?$x\8 PROPN
+ SYM
1 NUM
* PUNCT
8Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58892From NUM
: PUNCT
amigan@cup.portal.com PROPN
( PUNCT
Mike PROPN
- PUNCT
Medwid)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Emphysema PROPN
questionThanks NOUN
to ADP
all DET
who PRON
replied VERB
to ADP
my PRON
initial ADJ
question NOUN
. PUNCT
  SPACE
I PRON
've AUX
been AUX
away ADV
in ADP
New PROPN
Jersey PROPN
all DET
week NOUN
and CCONJ
was AUX
surprised ADJ
to PART
see VERB
all DET
the DET
responseswhen NOUN
I PRON
got VERB
back ADV
. PUNCT
  SPACE
To ADP
the DET
person NOUN
asking VERB
about ADP
nicotine ADJ
patches NOUN
, PUNCT
there PRON
are AUX
four NUM
on ADP
themarket NOUN
: PUNCT
Habitrol PROPN
- PUNCT
Ciba PROPN
PharmaceuticalsNicoderm PROPN
- PUNCT
Marion PROPN
Merill PROPN
Dow PROPN
( PUNCT
Alza PROPN
made)Nicotrol PROPN
- PUNCT
Warner PROPN
Lambert PROPN
( PUNCT
Cygnus PROPN
made)ProStep NOUN
- PUNCT
Made VERB
by ADP
Elan PROPN
and CCONJ
marketed VERB
by ADP
? PUNCT
? PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58893From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?I NOUN
remember VERB
hearing VERB
a DET
few ADJ
years NOUN
back ADV
about ADP
a DET
new ADJ
therapy NOUN
for ADP
hyperactivitywhich PROPN
involved VERB
aggressively ADV
eliminating VERB
artificial ADJ
coloring NOUN
and CCONJ
flavoringfrom ADP
the DET
diet NOUN
. PUNCT
  SPACE
The DET
theory NOUN
-- PUNCT
which PRON
was AUX
backed VERB
up ADP
by ADP
interesting ADJ
anecdotalresults NOUN
-- PUNCT
is AUX
that SCONJ
certain ADJ
people NOUN
are AUX
just ADV
way ADV
more ADV
sensitive ADJ
to ADP
thesechemicals NOUN
than SCONJ
other ADJ
people NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
any DET
connection NOUN
being AUX
madewith PROPN
seizures NOUN
, PUNCT
but CCONJ
it PRON
certainly ADV
could AUX
n't PART
hurt VERB
to PART
try VERB
an DET
all ADV
- PUNCT
natural ADJ
diet NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58894From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
What PRON
are AUX
the DET
problems NOUN
with ADP
Nutrasweet PROPN
( PUNCT
Aspartame)?Phenylketonuria PROPN
is AUX
a DET
disease NOUN
in ADP
which PRON
the DET
body NOUN
can AUX
not PART
process VERB
phenylalanine NOUN
. PUNCT
It PRON
can AUX
build VERB
up ADP
in ADP
the DET
blood NOUN
and CCONJ
cause VERB
seizures NOUN
and CCONJ
neurological ADJ
damage NOUN
. PUNCT
An DET
odd ADJ
side NOUN
effect NOUN
is AUX
that SCONJ
the DET
urine NOUN
can AUX
be AUX
deeply ADV
colored VERB
, PUNCT
like SCONJ
red ADJ
wine NOUN
. PUNCT
People NOUN
with ADP
the DET
condition NOUN
must AUX
avoid VERB
Nutrasweet PROPN
, PUNCT
chocolate NOUN
, PUNCT
and CCONJ
anythingelse ADV
rich ADJ
in ADP
phenylalanine NOUN
. PUNCT
Aspartame PROPN
is AUX
accused VERB
of ADP
having VERB
caused VERB
various ADJ
vague ADJ
neurological ADJ
symptoms NOUN
. PUNCT
Pat PROPN
Robertson PROPN
's PART
program NOUN
_ ADP
The_700_Club PROPN
_ PROPN
was AUX
beating VERB
the DET
drum NOUN
againstaspartame NOUN
rather ADV
vigorously ADV
for ADP
about ADV
a DET
year NOUN
, PUNCT
but CCONJ
that DET
issue NOUN
seems VERB
tohave ADP
been AUX
pushed VERB
to ADP
the DET
back ADJ
burner NOUN
for ADP
the DET
last ADJ
year NOUN
or CCONJ
so ADV
. PUNCT
  SPACE
Apparently ADV
, PUNCT
the DET
evidence NOUN
is AUX
not PART
very ADV
strong ADJ
, PUNCT
or CCONJ
Pat PROPN
would AUX
still ADV
be AUX
flailing VERB
away ADV
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58895From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>The PROPN
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of ADP
> X
a DET
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving VERB
> X
the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the DET
> X
most ADV
likely ADJ
explanation NOUN
for ADP
events NOUN
. PUNCT
You PRON
forgot VERB
the DET
smiley NOUN
- PUNCT
face NOUN
. PUNCT
I PRON
ca AUX
n't PART
believe VERB
this DET
is AUX
what PRON
they PRON
turn VERB
out ADP
at ADP
Berkeley PROPN
. PUNCT
  SPACE
Tell VERB
meyou're X
an DET
aberration.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58896From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
Blood NOUN
Glucose PROPN
test NOUN
stripsIn PROPN
article NOUN
< X
1993Apr12.151035.22555@omen NUM
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr11.192644.29219@clpd.kodak.com NUM
> X
young@serum.kodak.com PROPN
writes VERB
: PUNCT
> X
> X
> X
> X
	 SPACE
Human ADJ
glucose NOUN
: PUNCT
70 NUM
- SYM
110 NUM
mg./dL. NOUN
( PUNCT
fasting VERB
) PUNCT
[ PUNCT
2]>>Are NUM
these DET
numbers NOUN
for ADP
whole ADJ
blood NOUN
, PUNCT
or CCONJ
plasma NOUN
? PUNCT
	 SPACE
Serum PROPN
, PUNCT
actually ADV
, PUNCT
but CCONJ
plasma NOUN
numbers NOUN
are AUX
the DET
same ADJ
. PUNCT
  SPACE
Whole ADJ
blood NOUN
	 SPACE
numbers NOUN
for ADP
humans NOUN
tend VERB
to PART
be AUX
somewhat ADV
lower ADJ
( PUNCT
roughly ADV
5 NUM
to ADP
10 NUM
	 SPACE
percent NOUN
lower ADV
) PUNCT
. PUNCT
  SPACE
I PRON
find VERB
the DET
following ADJ
range NOUN
for ADP
whole ADJ
blood NOUN
in ADP
	 SPACE
FUNDAMENTALS NOUN
OF ADP
CLINICAL PROPN
CHEMISTRY NOUN
: PUNCT
N. PROPN
W. PROPN
Teitz PROPN
, PUNCT
editor NOUN
; PUNCT
W. PROPN
B. PROPN
	 SPACE
Saunders PROPN
, PUNCT
1987 NUM
: PUNCT
	 SPACE
Human ADJ
glucose NOUN
( PUNCT
whole ADJ
blood NOUN
, PUNCT
fasting VERB
levels NOUN
) PUNCT
-- PUNCT
> X
60 NUM
- SYM
95 NUM
mg./dL.>Which PROPN
are AUX
the DET
strips NOUN
calibrated VERB
for ADP
? PUNCT
  SPACE
( PUNCT
Obviously ADV
they PRON
measure VERB
whole ADJ
blood NOUN
) PUNCT
	 SPACE
Indeed ADV
, PUNCT
they PRON
do AUX
measure VERB
whole ADJ
blood NOUN
levels NOUN
, PUNCT
although SCONJ
they PRON
are AUX
not PART
	 SPACE
as ADV
accurate ADJ
as SCONJ
a DET
serum ADJ
test NOUN
done VERB
in ADP
a DET
laboratory NOUN
. PUNCT
  SPACE
One NUM
problem NOUN
is AUX
	 SPACE
that SCONJ
cells NOUN
in ADP
the DET
sample NOUN
continue VERB
to PART
metabolize VERB
glucose NOUN
after ADP
the DET
	 SPACE
sample NOUN
is AUX
drawn VERB
, PUNCT
reducing VERB
the DET
apparent ADJ
level NOUN
. PUNCT
  SPACE
According VERB
to ADP
Teitz PROPN
, PUNCT
	 SPACE
however ADV
, PUNCT
results NOUN
compare VERB
" PUNCT
reasonably ADV
well ADV
" PUNCT
with ADP
laboratory NOUN
results NOUN
, PUNCT
	 SPACE
although SCONJ
" PUNCT
values NOUN
below ADP
80 NUM
mg./dL. NOUN
tend VERB
to PART
be AUX
lower ADJ
with ADP
strip NOUN
tests NOUN
, PUNCT
	 SPACE
whereas SCONJ
values NOUN
above ADP
240 NUM
mg./dL. NOUN
can AUX
be AUX
very ADV
erratic ADJ
. PUNCT
">What PUNCT
is AUX
the DET
conversion NOUN
factor NOUN
between ADP
human ADJ
plasma NOUN
glucose NOUN
and CCONJ
> X
whole ADJ
blood NOUN
( PUNCT
pin NOUN
prick NOUN
) PUNCT
glucose NOUN
concentration NOUN
? PUNCT
	 SPACE
As SCONJ
stated VERB
above ADV
, PUNCT
whole ADJ
blood NOUN
levels NOUN
tend VERB
to PART
be AUX
roughly ADV
5 NUM
to ADP
10 NUM
	 SPACE
percent NOUN
lower ADJ
than SCONJ
serum ADJ
levels NOUN
. PUNCT
  SPACE
Sample NOUN
freshness NOUN
will AUX
affect VERB
	 SPACE
whole ADJ
blood NOUN
levels NOUN
, PUNCT
however ADV
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
there PRON
is AUX
a DET
well- NOUN
	 SPACE
defined VERB
" PUNCT
conversion NOUN
factor NOUN
, PUNCT
" PUNCT
since SCONJ
cell NOUN
metabolism NOUN
will AUX
affect VERB
	 SPACE
samples NOUN
to ADP
varying VERB
degrees NOUN
. PUNCT
  SPACE
The DET
serum NOUN
/ SYM
plasma NOUN
test NOUN
is AUX
much ADV
	 SPACE
preferred VERB
for ADP
any DET
except SCONJ
general ADJ
" PUNCT
ball NOUN
park NOUN
" PUNCT
testing.-Rich NUM
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58897From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.190447.8242@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca>wcsbeau@alfred.carleton.ca X
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>>Maybe PUNCT
you PRON
missed VERB
it PRON
amidst ADP
the DET
flurry NOUN
of ADP
responses?>>You NOUN
mean VERB
the DET
responses NOUN
some DET
of ADP
which PRON
pointed VERB
to ADP
double ADJ
- PUNCT
blind ADJ
tests NOUN
> X
which PRON
show VERB
no DET
such ADJ
" PUNCT
chinese ADJ
restaurant NOUN
effect NOUN
" PUNCT
unique ADJ
to ADP
MSG>(it PROPN
's PART
elicited VERB
by ADP
the DET
placebo NOUN
as SCONJ
well.)Many SYM
people NOUN
responded VERB
with ADP
more ADV
anecdotal ADJ
stories NOUN
; PUNCT
I PRON
think VERB
its PRON
safe ADJ
tosay NOUN
the DET
original ADJ
poster NOUN
is AUX
already ADV
familiar ADJ
with ADP
such ADJ
stories NOUN
. PUNCT
Presumably ADV
, PUNCT
he PRON
wants VERB
hard ADJ
info NOUN
to PART
substantiate VERB
or CCONJ
refute VERB
claims NOUN
aboutMSG DET
making VERB
people NOUN
ill ADJ
. PUNCT
Similarly ADV
, PUNCT
debunking VERB
such ADJ
claims NOUN
without ADP
doing VERB
research NOUN
( PUNCT
whetherliterature NOUN
and CCONJ
lab NOUN
) PUNCT
, PUNCT
is AUX
equally ADV
beside ADP
the DET
point NOUN
. PUNCT
The DET
original ADJ
posterno NOUN
doubt NOUN
already ADV
knows VERB
that SCONJ
some DET
people NOUN
think VERB
' PUNCT
Chinese PROPN
RestaurantSyndrome PROPN
' PUNCT
is AUX
bogus ADJ
. PUNCT
Placebos NOUN
are AUX
all DET
very ADV
interesting ADJ
, PUNCT
but CCONJ
irrelevant ADJ
to ADP
the DET
question NOUN
ofwhat ADP
effects VERB
MSG PROPN
has AUX
. PUNCT
You PRON
could AUX
have AUX
real ADJ
effects NOUN
* PUNCT
and CCONJ
* PUNCT
placeboeffects NOUN
; PUNCT
people NOUN
may AUX
have AUX
allergies NOUN
in ADP
addition NOUN
. PUNCT
> X
> X
> X
Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
this>>newsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
matters>>they NOUN
have AUX
substantial ADJ
knowledge NOUN
of.>>Like VERB
youself PRON
? PUNCT
  SPACE
Someone PRON
who PRON
can AUX
read VERB
a DET
scientific ADJ
paper NOUN
and CCONJ
apparently ADV
> X
come VERB
away ADV
from ADP
it PRON
with ADP
bizarrely ADV
cracked VERB
ideas NOUN
which PRON
have AUX
nothing PRON
to PART
> X
do AUX
with ADP
the DET
use NOUN
of ADP
this DET
substance NOUN
in ADP
human ADJ
nutrition?Have NOUN
you PRON
read VERB
Olney PROPN
's PART
work NOUN
? PUNCT
I PRON
fail VERB
to PART
see VERB
how ADV
citing VERB
results VERB
frompeer PROPN
- PUNCT
reviewed VERB
studies NOUN
qualifies VERB
as SCONJ
" PUNCT
bizarrely ADV
cracked".>>For PROPN
cites NOUN
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a>>toxicologist PROPN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on>>development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an>>excitotoxic PROPN
food NOUN
additive,>>No NUM
, PUNCT
it PRON
's AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
glutamate NOUN
is AUX
an DET
amino ADJ
acid NOUN
> X
which PRON
is AUX
an DET
excitatory ADJ
neurotransmitter NOUN
. PUNCT
  SPACE
There PRON
is AUX
also ADV
evidence NOUN
that SCONJ
> X
excessive ADJ
release NOUN
of ADP
glutamate NOUN
may AUX
be AUX
involved VERB
in ADP
the DET
pathology NOUN
of ADP
certain ADJ
> X
conditions NOUN
like SCONJ
stroke NOUN
, PUNCT
drowning NOUN
and CCONJ
Lou PROPN
Gehrig PROPN
's PART
disease NOUN
, PUNCT
just ADV
to PART
name VERB
a DET
few.>This NOUN
is AUX
a DET
completely ADV
different ADJ
issue NOUN
than SCONJ
the DET
use NOUN
of ADP
this DET
ubiquitous ADJ
amino NOUN
acid NOUN
> X
in ADP
foods NOUN
. PUNCT
  SPACE
People NOUN
are AUX
not PART
receiving VERB
intra ADJ
- ADJ
ventricular ADJ
injections NOUN
of ADP
glutamate NOUN
. PUNCT
Tests NOUN
have AUX
been AUX
done VERB
on ADP
Rhesus PROPN
monkeys NOUN
, PUNCT
as ADV
well ADV
. PUNCT
I PRON
have AUX
never ADV
seen VERB
astudy NOUN
where ADV
the DET
mode NOUN
of ADP
administration NOUN
was AUX
intra ADJ
- ADJ
ventricular ADJ
. PUNCT
  SPACE
The DET
Gluand PROPN
Asp PROPN
were AUX
administered VERB
orally ADV
. PUNCT
Some DET
studies NOUN
used VERB
IV PROPN
and CCONJ
SC.Intra PROPN
- PUNCT
ventricular PROPN
is AUX
not PART
a DET
normal ADJ
admin NOUN
. PUNCT
method NOUN
for ADP
food NOUN
tox NOUN
. PUNCT
studies NOUN
, PUNCT
for ADP
obvious ADJ
reasons NOUN
. PUNCT
You PRON
must AUX
not PART
have AUX
read VERB
the DET
peer NOUN
- PUNCT
reviewed VERB
worksthat ADP
I PRON
referred VERB
to ADP
or CCONJ
you PRON
would AUX
never ADV
have AUX
come VERB
up ADP
with ADP
this DET
braininjection NOUN
bunk.>>Too NOUN
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown VERB
off.>>Sez ADP
you PRON
. PUNCT
  SPACE
Such DET
an DET
effect NOUN
in ADP
humans NOUN
has AUX
not PART
been AUX
demonstrated VERB
in ADP
any DET
> X
controlled VERB
studies NOUN
. PUNCT
  SPACE
Infant NOUN
mice NOUN
and CCONJ
other ADJ
models NOUN
are AUX
useful ADJ
as ADV
far ADV
> X
as SCONJ
they PRON
go VERB
, PUNCT
but CCONJ
they PRON
're AUX
not PART
relevant ADJ
to ADP
the DET
matter NOUN
at ADP
hand NOUN
. PUNCT
  SPACE
Which PRON
is AUX
> X
not PART
to PART
say VERB
that SCONJ
I PRON
favor VERB
its PRON
use NOUN
in ADP
things NOUN
like SCONJ
baby NOUN
food NOUN
-- PUNCT
a DET
patently ADV
> X
ridiculous ADJ
use NOUN
of ADP
the DET
additive ADJ
. PUNCT
  SPACE
But CCONJ
we PRON
have AUX
no DET
reason NOUN
to PART
believe VERB
> X
that SCONJ
MSG PROPN
in ADP
the DET
diet NOUN
effects NOUN
humans NOUN
adversely ADV
. PUNCT
Pardon VERB
me PRON
, PUNCT
but CCONJ
where ADV
are AUX
you PRON
getting VERB
this DET
from ADP
? PUNCT
Have AUX
you PRON
read VERB
thejournals NOUN
? PUNCT
Have AUX
you PRON
done VERB
a DET
thorough ADJ
literature NOUN
search?But NOUN
, PUNCT
you PRON
're AUX
right ADJ
, PUNCT
mice NOUN
are AUX
n't PART
the DET
best ADJ
to PART
study VERB
this DET
on ADP
. PUNCT
They PRON
're AUX
fourtimes NOUN
less ADV
sensitive ADJ
than SCONJ
humans NOUN
to ADP
MSG.>>Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in>>small ADP
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts>>added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be>>encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food.>>Wrong PROPN
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
much ADJ
aspartate NOUN
or CCONJ
phenylalanine NOUN
is AUX
in ADP
a DET
soft ADJ
drink?>Milligrams NUM
worth ADJ
. PUNCT
  SPACE
Compare VERB
that DET
to ADP
a DET
glass NOUN
of ADP
milk NOUN
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
much ADJ
> X
glutamate NOUN
is AUX
present ADJ
in ADP
most ADJ
protein NOUN
- PUNCT
containing VERB
foods NOUN
compared VERB
to ADP
that DET
> X
added VERB
by ADP
the DET
use NOUN
of ADP
MSG?The NOUN
point NOUN
is AUX
exceeding VERB
the DET
window NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
they PRON
're AUX
amino ADJ
acids NOUN
. PUNCT
Note VERB
that SCONJ
people NOUN
with ADP
PKU PROPN
can AUX
not PART
tolerate VERB
any DET
phenylalanine NOUN
. PUNCT
Olney PROPN
's PART
research NOUN
compared VERB
infant NOUN
human ADJ
diets NOUN
. PUNCT
Specifically ADV
, PUNCT
the DET
amountof NOUN
freely ADV
available ADJ
Glu PROPN
in ADP
mother NOUN
's PART
milk NOUN
versus ADP
commercial ADJ
baby NOUN
foods NOUN
, PUNCT
vs PROPN
. PROPN
typical ADJ
lunch NOUN
items NOUN
from ADP
the DET
Standard PROPN
American PROPN
Diet PROPN
such ADJ
as SCONJ
packagedsoup NOUN
mixes NOUN
. PUNCT
He PRON
found VERB
that SCONJ
one PRON
could AUX
exceed VERB
the DET
projected VERB
safety NOUN
marginfor ADP
infant NOUN
humans NOUN
by ADP
at ADV
least ADV
four NUM
- ADV
fold NOUN
in ADP
a DET
single ADJ
meal NOUN
of ADP
processedfoods NOUN
. PUNCT
Mother PROPN
's PART
milk NOUN
was AUX
well ADV
below ADP
the DET
effective ADJ
dose.>>Read PROPN
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>>sources X
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute.>>Impeccable ADJ
. PUNCT
  SPACE
There PRON
most ADV
certainly ADV
is AUX
a DET
dispute NOUN
. PUNCT
Between ADP
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
youprovide ADJ
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to PART
articlesdisputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
> X
> X
Steve PROPN
Dyer>dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerHmm PROPN
. PUNCT
" PUNCT
.com PUNCT
" PUNCT
. PUNCT
Why ADV
am AUX
I PRON
not PART
surprised?- NOUN
Dianne PROPN
Murray PROPN
   SPACE
wcsbeau@ccs.carleton.caNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58898From NUM
: PUNCT
hbloom@moose.uvm.edu PROPN
( PUNCT
* PUNCT
Heather*)Subject PUNCT
: PUNCT
re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)Nutrasweet PROPN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
thansugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
tofor ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehydeproduced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
toliving VERB
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
Phenylalanine NOUN
isnothing VERB
for ADP
you PRON
to PART
worry VERB
about ADP
. PUNCT
  SPACE
It PRON
is AUX
an DET
amino ADJ
acid NOUN
, PUNCT
and CCONJ
everyone PRON
uses VERB
smallquantities NOUN
of ADP
it PRON
for ADP
protein NOUN
synthesis NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
Some DET
people NOUN
have AUX
a DET
diseaseknown NOUN
as SCONJ
phenylketoneurea NOUN
, PUNCT
and CCONJ
they PRON
are AUX
missing VERB
the DET
enzyme NOUN
necessary ADJ
to PART
degrade VERB
this DET
compound NOUN
and CCONJ
eliminate VERB
it PRON
from ADP
the DET
body NOUN
. PUNCT
  SPACE
For ADP
them PRON
, PUNCT
it PRON
will AUX
accumulate VERB
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
in ADP
high ADJ
levels NOUN
this DET
is AUX
toxic ADJ
to ADP
growing VERB
nervecells NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
it PRON
is AUX
Only ADV
a DET
major ADJ
problem NOUN
in ADP
young ADJ
children NOUN
( PUNCT
until ADP
aroundage NOUN
10 NUM
or CCONJ
so ADV
) PUNCT
or CCONJ
women NOUN
who PRON
are AUX
pregnant ADJ
and CCONJ
have AUX
this DET
disorder NOUN
. PUNCT
  SPACE
It PRON
used VERB
tobe NOUN
a DET
leading ADJ
cause NOUN
of ADP
brain NOUN
damage NOUN
in ADP
infants NOUN
, PUNCT
but CCONJ
now ADV
it PRON
can AUX
be AUX
easily ADV
detected VERB
at ADP
birth NOUN
, PUNCT
and CCONJ
then ADV
one PRON
must AUX
simply ADV
avoid VERB
comsumption NOUN
of ADP
phenylalanineas NOUN
a DET
child NOUN
, PUNCT
or CCONJ
when ADV
pregnant ADJ
. PUNCT
  SPACE
-heatherNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58899From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
79727@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes:>I AUX
remember VERB
hearing VERB
a DET
few ADJ
years NOUN
back ADV
about ADP
a DET
new ADJ
therapy NOUN
for ADP
hyperactivity NOUN
> X
which PRON
involved VERB
aggressively ADV
eliminating VERB
artificial ADJ
coloring NOUN
and CCONJ
flavoring NOUN
> X
from ADP
the DET
diet NOUN
. PUNCT
  SPACE
The DET
theory NOUN
-- PUNCT
which PRON
was AUX
backed VERB
up ADP
by ADP
interesting ADJ
anecdotal ADJ
> X
results NOUN
-- PUNCT
is AUX
that SCONJ
certain ADJ
people NOUN
are AUX
just ADV
way ADV
more ADV
sensitive ADJ
to ADP
these DET
> X
chemicals NOUN
than SCONJ
other ADJ
people NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
any DET
connection NOUN
being AUX
made VERB
> X
with ADP
seizures NOUN
, PUNCT
but CCONJ
it PRON
certainly ADV
could AUX
n't PART
hurt VERB
to PART
try VERB
an DET
all ADV
- PUNCT
natural ADJ
diet NOUN
. PUNCT
Yeah INTJ
, PUNCT
the DET
" PUNCT
Feingold PROPN
Diet PROPN
" PUNCT
is AUX
a DET
load NOUN
of ADP
crap NOUN
. PUNCT
  SPACE
Children NOUN
diagnosed VERB
with ADP
ADDwho PROPN
are AUX
placed VERB
on ADP
this DET
diet NOUN
show VERB
no DET
improvement NOUN
in ADP
their PRON
intellectual ADJ
andsocial ADJ
skills NOUN
, PUNCT
which PRON
in ADP
fact NOUN
continue VERB
to PART
decline VERB
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
parentswho PROPN
are AUX
enthusiastic ADJ
about ADP
this DET
approach NOUN
lap VERB
it PRON
up ADP
at ADP
the DET
expense NOUN
of ADP
theirchildren PROPN
's PART
development NOUN
. PUNCT
  SPACE
So ADV
much ADJ
for ADP
the DET
value NOUN
of ADP
" PUNCT
interesting ADJ
anecdotalresults NOUN
" PUNCT
. PUNCT
  SPACE
People NOUN
will AUX
believe VERB
anything PRON
if SCONJ
they PRON
want VERB
to.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58900From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5L9ws.Jn2@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
     SPACE
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
     SPACE
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>| VERB
> X
Flights NOUN
of ADP
fancy ADJ
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucial>| NOUN
> X
thing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
use>| PROPN
> X
unless SCONJ
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
.... PUNCT
> X
| ADV
> X
> X
| NOUN
> X
( PUNCT
Simple ADJ
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNA>| PROPN
> X
electrophoresis PROPN
gel PROPN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
..... PUNCT
> X
> X
But CCONJ
why ADV
do AUX
you PRON
characterize VERB
this DET
as SCONJ
a DET
" PUNCT
flight NOUN
of ADP
fancy NOUN
" PUNCT
or CCONJ
a DET
" PUNCT
fantasy"?>While NOUN
I PRON
am AUX
unfamiliar ADJ
with ADP
the DET
scientific ADJ
context NOUN
here ADV
, PUNCT
it PRON
appears VERB
obvious ADJ
> X
that SCONJ
his PRON
speculation NOUN
( PUNCT
for ADP
lack NOUN
of ADP
a DET
better ADJ
or CCONJ
more ADV
neutral ADJ
word NOUN
) PUNCT
was AUX
> X
at ADP
least ADJ
in ADP
significant ADJ
part NOUN
a DET
consequence NOUN
of ADP
his PRON
knowledge NOUN
of ADP
and CCONJ
acceptance NOUN
> X
of ADP
current ADJ
theory NOUN
coupled VERB
with ADP
his PRON
observations NOUN
. PUNCT
  SPACE
It PRON
would AUX
appear VERB
that SCONJ
> X
something PRON
quite ADV
rational ADJ
was AUX
going VERB
on ADP
as SCONJ
he PRON
attempted VERB
to PART
fit VERB
his PRON
observation NOUN
> X
into ADP
that DET
theory NOUN
( PUNCT
or CCONJ
to PART
tailor VERB
the DET
theory NOUN
to PART
cover VERB
the DET
observation NOUN
) PUNCT
. PUNCT
  SPACE
... PUNCT
Whether SCONJ
a DET
scientific ADJ
idea NOUN
comes VERB
while SCONJ
one PRON
is AUX
staring VERB
out ADP
the DET
window NOUN
, PUNCT
ordreaming NOUN
, PUNCT
or CCONJ
having VERB
a DET
fantasy NOUN
, PUNCT
  SPACE
or CCONJ
watching VERB
an DET
apple NOUN
fall NOUN
( PUNCT
Newton PROPN
) PUNCT
, PUNCT
orsitting VERB
in ADP
a DET
bath NOUN
( PUNCT
Archimedes PROPN
) PUNCT
... PUNCT
it PRON
is AUX
ultimately ADV
the DET
result NOUN
of ADP
a DET
lot NOUN
ofintense NOUN
scientific ADJ
thinking NOUN
done VERB
beforehand ADV
. PUNCT
  SPACE
Letting VERB
one PRON
's PART
mind NOUN
roamfreely ADV
and CCONJ
giving VERB
rein NOUN
to ADP
one NOUN
's PART
intuition NOUN
can AUX
be AUX
a DET
useful ADJ
way NOUN
of ADP
comingup NOUN
with ADP
new ADJ
ideas NOUN
, PUNCT
but CCONJ
only ADV
when ADV
one PRON
has AUX
done VERB
a DET
lot NOUN
of ADP
rational ADJ
analysisof NOUN
the DET
problem NOUN
first ADV
. PUNCT
  SPACE
Scientific ADJ
intuition NOUN
is AUX
not PART
something PRON
one NUM
is AUX
born VERB
with ADP
. PUNCT
  SPACE
It PRON
is AUX
somethingthat ADP
one NOUN
learns VERB
. PUNCT
  SPACE
Maybe ADV
we PRON
do AUX
n't PART
understand VERB
completely ADV
how ADV
it PRON
is AUX
learned VERB
, PUNCT
but CCONJ
training VERB
in ADP
systematic ADJ
scientific ADJ
thinking NOUN
is AUX
certainly ADV
one NUM
of ADP
the DET
key ADJ
elements NOUN
in ADP
developing VERB
it PRON
. PUNCT
  SPACE
Informal ADJ
exploration NOUN
is AUX
also ADV
often ADV
an DET
important ADJ
element NOUN
in ADP
finding VERB
newscientific ADJ
ideas NOUN
. PUNCT
  SPACE
One NOUN
thinks VERB
, PUNCT
for ADP
instance NOUN
, PUNCT
of ADP
Darwin PROPN
's PART
naturalisticstudies NOUN
in ADP
the DET
Galapagos PROPN
islands NOUN
, PUNCT
which PRON
led VERB
him PRON
to ADP
the DET
ideas NOUN
for ADP
the DET
theory NOUN
of ADP
evolution NOUN
. PUNCT
  SPACE
This DET
is AUX
why ADV
I PRON
am AUX
offended VERB
by ADP
a DET
definition NOUN
of ADP
science NOUN
that DET
emphasizesempirical ADJ
verification NOUN
and CCONJ
does AUX
not PART
recognize VERB
thinking NOUN
and CCONJ
informalexploration NOUN
as SCONJ
important ADJ
scientific ADJ
work NOUN
. PUNCT
  SPACE
I PRON
agree VERB
that SCONJ
mere ADJ
speculationdoes NOUN
not PART
deserve VERB
to PART
be AUX
called VERB
science NOUN
. PUNCT
  SPACE
I PRON
also ADV
think VERB
that SCONJ
mere ADJ
empiricalstudies NOUN
not PART
directed VERB
by ADP
good ADJ
scientific ADJ
thinking NOUN
are AUX
at ADP
best ADJ
a DET
verypoor NOUN
kind NOUN
of ADP
science NOUN
. PUNCT
  SPACE
In ADP
article NOUN
< X
1qk92lINNl55@im4u.cs.utexas.edu NUM
> X
turpin@cs.utexas.edu PROPN
     SPACE
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes VERB
: PUNCT
> X
    SPACE
... PUNCT
> X
I PRON
think VERB
that SCONJ
Lee PROPN
Lady PROPN
and CCONJ
I PRON
are AUX
talking VERB
at ADP
cross NOUN
purposes NOUN
. PUNCT
> X
  SPACE
... PUNCT
Lady PROPN
seems VERB
concerned ADJ
with ADP
the DET
contrast NOUN
between ADP
great ADJ
> X
science NOUN
that PRON
makes VERB
big ADJ
advances NOUN
in ADP
our PRON
knowledge NOUN
and CCONJ
mediocre NOUN
> X
science NOUN
that PRON
makes VERB
smaller ADJ
steps NOUN
. PUNCT
  SPACE
In ADP
most ADJ
of ADP
this DET
thread NOUN
, PUNCT
I PRON
have AUX
> X
been AUX
concerned VERB
with ADP
the DET
difference NOUN
between ADP
what PRON
is AUX
science NOUN
and CCONJ
> X
what PRON
is AUX
not PART
. PUNCT
I PRON
do AUX
n't PART
think VERB
that SCONJ
science NOUN
should AUX
be AUX
defined VERB
in ADP
a DET
way NOUN
that PRON
some DET
of ADP
theactivities NOUN
that PRON
lead VERB
to ADP
really ADV
important ADJ
science NOUN
--- PUNCT
namely ADV
thinking VERB
andinformal ADJ
exploration NOUN
--- PUNCT
are AUX
not PART
recognized VERB
as SCONJ
scientific ADJ
work NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58901From NUM
: PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison)Subject NUM
: PUNCT
Bursitis PROPN
and CCONJ
laser NOUN
treatmentMy PROPN
family NOUN
doctor NOUN
and CCONJ
the DET
physiotherapist NOUN
( PUNCT
PT PROPN
) PUNCT
she PRON
sent VERB
me PRON
to PART
agree VERB
that DET
thepain NOUN
in ADP
my PRON
left ADJ
shoulder NOUN
is AUX
bursitis NOUN
. PUNCT
I PRON
have AUX
an DET
appointment NOUN
with ADP
an DET
orthpod(I ADJ
love NOUN
that PRON
, PUNCT
it PRON
's AUX
short ADJ
for ADP
' PUNCT
orthopedic ADJ
surgeon NOUN
, PUNCT
apparently ADV
) PUNCT
but CCONJ
while SCONJ
I'mwaiting VERB
the DET
PT PROPN
is AUX
treating VERB
me PRON
. PUNCT
She PRON
's AUX
using VERB
hot ADJ
packs NOUN
, PUNCT
ultrasound NOUN
, PUNCT
and CCONJ
lasers NOUN
, PUNCT
but CCONJ
there PRON
's AUX
no DET
improvementyet NOUN
. PUNCT
In ADP
fact NOUN
, PUNCT
I PRON
almost ADV
suspect VERB
it PRON
's AUX
getting VERB
worse ADJ
. PUNCT
My PRON
real ADJ
question NOUN
is AUX
about ADP
the DET
laser NOUN
treatment NOUN
. PUNCT
I PRON
ca AUX
n't PART
easily ADV
imagine VERB
whatthe ADJ
physical ADJ
effect NOUN
that PRON
could AUX
have AUX
on ADP
a DET
deep ADJ
tissue NOUN
problem NOUN
. PUNCT
Can AUX
anyoneshed VERB
some DET
light NOUN
( PUNCT
so ADV
to PART
speak VERB
) PUNCT
on ADP
the DET
matter?-- PROPN
Robert PROPN
AllisonOttawa PROPN
, PUNCT
Ontario PROPN
CANADANewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58902From NUM
: PUNCT
dpc47852@uxa.cso.uiuc.edu PROPN
( PUNCT
Daniel PROPN
Paul PROPN
Checkman)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?dyer@spdcc.com NOUN
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>>The NUM
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of>>a NOUN
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving>>the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the>>most PROPN
likely ADJ
explanation NOUN
for ADP
events.>You NOUN
forgot VERB
the DET
smiley ADJ
- PUNCT
face.>I PROPN
ca AUX
n't PART
believe VERB
this DET
is AUX
what PRON
they PRON
turn VERB
out ADP
at ADP
Berkeley PROPN
. PUNCT
  SPACE
Tell VERB
me PRON
> X
you're X
an NOUN
aberration.>-- X
> X
Steve PROPN
Dyer>dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyer PROPN
HEY PROPN
, PUNCT
KEEP VERB
YOUR PRON
FU PROPN
--- PUNCT
NG PROPN
FLAMING VERB
OUT ADP
OF ADP
THIS PROPN
GROUP- PUNCT
THAT DET
GOES VERB
FOR ADP
YOU PRON
, PUNCT
MR.DYER PROPN
, PUNCT
AS ADV
WELL ADV
AS ADP
SEVERAL ADJ
OTHER ADJ
NASTY NOUN
, PUNCT
SARCASTIC PROPN
PEOPLE NOUN
, PUNCT
REGARDING PROPN
THISSUBJECT NOUN
. PUNCT
  SPACE
Shoot PROPN
, PUNCT
now ADV
I PRON
'm AUX
all DET
riled VERB
up ADP
, PUNCT
too ADV
, PUNCT
and CCONJ
I PRON
was AUX
just ADV
going VERB
to PART
ask VERB
ifwe ADJ
can AUX
keep VERB
our PRON
discussion NOUN
about ADP
MSG PROPN
a DET
little ADJ
more ADV
civil ADJ
; PUNCT
blasting VERB
a DET
schoolor NOUN
an DET
idea NOUN
through ADP
simple ADJ
insults NOUN
as SCONJ
demonstrated VERB
above ADV
is AUX
not PART
necessary ADJ
, PUNCT
and CCONJ
otherwise ADV
out SCONJ
of ADP
line NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
continue VERB
your PRON
insult NOUN
war NOUN
, PUNCT
takeit ADP
elsewhere ADV
and CCONJ
stop VERB
wasting VERB
everyone PRON
else ADV
's PART
time NOUN
. PUNCT
Most ADV
sincerely ADV
, PUNCT
	 SPACE
Dan PROPN
CheckmanNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58903From NUM
: PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison)Subject NUM
: PUNCT
Frequent ADJ
nosebleedsI PROPN
have AUX
between ADP
15 NUM
and CCONJ
25 NUM
nosebleeds NOUN
each DET
week NOUN
, PUNCT
as SCONJ
a DET
result NOUN
of ADP
a DET
geneticpredisposition NOUN
to ADP
weak ADJ
capillary ADJ
walls NOUN
( PUNCT
Osler PROPN
- PUNCT
Weber PROPN
- PUNCT
Rendu PROPN
) PUNCT
. PUNCT
Fortunately ADV
, PUNCT
each DET
nosebleed NOUN
is AUX
of ADP
short ADJ
duration NOUN
. PUNCT
Does AUX
anyone PRON
know VERB
of ADP
any DET
method NOUN
to PART
reduce VERB
this DET
frequency NOUN
? PUNCT
My PRON
younger ADJ
brotherseach NOUN
tried VERB
a DET
skin NOUN
transplant NOUN
( PUNCT
thigh NOUN
to PART
nose NOUN
lining NOUN
) PUNCT
, PUNCT
but CCONJ
their PRON
nosebleedssoon NOUN
returned VERB
. PUNCT
I PRON
've AUX
seen VERB
a DET
reference NOUN
to ADP
an DET
herb NOUN
called VERB
Rutin PROPN
that PRON
issupposed VERB
to PART
help VERB
, PUNCT
and CCONJ
I PRON
'd AUX
like VERB
to PART
hear VERB
of ADP
experiences NOUN
with ADP
it PRON
, PUNCT
or CCONJ
othertechniques.-- ADP
Robert PROPN
AllisonOttawa PROPN
, PUNCT
Ontario PROPN
CANADANewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58904From NUM
: PUNCT
brenner@ldgo.columbia.edu PROPN
( PUNCT
carl PROPN
brenner)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
19613@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr7.221357.12533@lamont.ldgo.columbia.edu NUM
> X
brenner@ldgo.columbia.edu PROPN
( PUNCT
carl PROPN
brenner PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
see VERB
the DET
ulterior ADJ
motive NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
easy ADJ
for ADP
me PRON
to PART
see VERB
it PRON
the DET
> X
> X
> X
those DET
physicians NOUN
who PRON
call VERB
everything PRON
lyme NOUN
and CCONJ
treat VERB
everything PRON
. PUNCT
> X
> X
> X
There PRON
is AUX
a DET
lot NOUN
of ADP
money NOUN
involved VERB
. PUNCT
> X
> X
> X
> X
	 SPACE
You PRON
keep VERB
bringing VERB
this DET
up ADP
. PUNCT
But CCONJ
I PRON
do AUX
n't PART
understand VERB
what PRON
's AUX
in ADP
it PRON
> X
> X
financially ADV
for ADP
the DET
physician NOUN
to PART
go VERB
ahead ADV
and CCONJ
treat VERB
. PUNCT
Unless SCONJ
the DET
physician NOUN
> X
> X
has AUX
an DET
investment NOUN
in ADP
( PUNCT
or CCONJ
is AUX
involved VERB
in ADP
some DET
kickback NOUN
scheme NOUN
with ADP
) PUNCT
the DET
> X
> X
home PROPN
infusion NOUN
company NOUN
, PUNCT
where ADV
is AUX
the DET
financial ADJ
gain NOUN
for ADP
the DET
doctor NOUN
? PUNCT
> X
> X
Well INTJ
, PUNCT
let VERB
me PRON
put VERB
it PRON
this DET
way NOUN
, PUNCT
based VERB
on ADP
my PRON
own ADJ
experience NOUN
. PUNCT
  SPACE
A DET
> X
general ADJ
practitioner NOUN
with ADP
no DET
training NOUN
in ADP
infectious ADJ
diseases NOUN
, PUNCT
> X
by ADP
establishing VERB
links NOUN
to ADP
the DET
" PUNCT
Lyme PROPN
community NOUN
" PUNCT
, PUNCT
treating VERB
patients NOUN
> X
who PRON
come VERB
to ADP
him PRON
wondering VERB
about ADP
lyme NOUN
or CCONJ
having VERB
decided VERB
they PRON
> X
have AUX
lyme VERB
as SCONJ
if SCONJ
they PRON
did AUX
, PUNCT
saying VERB
that SCONJ
diseases NOUN
such ADJ
as SCONJ
MS PROPN
> X
are AUX
probably ADV
spirochetal ADJ
, PUNCT
if SCONJ
not PART
Lyme PROPN
, PUNCT
giving VERB
talks NOUN
at ADP
meetings NOUN
> X
of ADP
users NOUN
groups NOUN
, PUNCT
validating VERB
the DET
feelings NOUN
of ADP
even ADV
delusional ADJ
> X
patients NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
GP PROPN
can AUX
go VERB
from ADP
being AUX
a DET
run NOUN
- PUNCT
of ADP
- PUNCT
the DET
- PUNCT
mill NOUN
> X
$ SYM
100K NUM
/ SYM
yr NOUN
GP PROPN
to ADP
someone PRON
with ADP
lots NOUN
of ADP
patients NOUN
in ADP
the DET
hospital NOUN
> X
and CCONJ
getting VERB
expensive ADJ
infusions NOUN
that PRON
need VERB
monitoring NOUN
in ADP
his PRON
> X
office NOUN
, PUNCT
and CCONJ
making VERB
lots NOUN
of ADP
bread NOUN
. PUNCT
  SPACE
Also ADV
getting VERB
the DET
adulation NOUN
> X
of ADP
many ADJ
who PRON
believe VERB
his PRON
is AUX
their PRON
only ADJ
hope NOUN
( PUNCT
if SCONJ
not PART
of ADP
cure NOUN
, PUNCT
> X
then ADV
of ADP
control NOUN
) PUNCT
and CCONJ
seeing VERB
his PRON
name NOUN
in ADP
publications NOUN
put VERB
out ADP
> X
by ADP
support NOUN
groups NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
is AUX
a DET
definite ADJ
temptation NOUN
. PUNCT
	 SPACE
Harumph PROPN
. PUNCT
Getting VERB
published VERB
in ADP
these DET
newsletters NOUN
is AUX
hardly ADV
somethingto PROPN
aspire PROPN
to ADP
. PUNCT
:-) PUNCT
	 SPACE
I PRON
ca AUX
n't PART
really ADV
argue VERB
with ADP
your PRON
logic NOUN
, PUNCT
though SCONJ
I PRON
think VERB
you PRON
may AUX
beextrapolating VERB
a DET
bit NOUN
recklessly ADV
from ADP
what PRON
appears VERB
to PART
be AUX
a DET
sample NOUN
size NOUN
ofone NOUN
. PUNCT
Even ADV
if SCONJ
what PRON
you PRON
say VERB
about ADP
this DET
local ADJ
Pittsburgh PROPN
guy NOUN
is AUX
true ADJ
, PUNCT
it PRON
isnot VERB
logical ADJ
or CCONJ
fair ADJ
to PART
conclude VERB
that SCONJ
this DET
is AUX
true ADJ
of ADP
all DET
doctors NOUN
whotreat VERB
Lyme PROPN
disease NOUN
. PUNCT
	 SPACE
By ADP
your PRON
logic NOUN
, PUNCT
I PRON
could AUX
conclude VERB
that SCONJ
all DET
of ADP
the DET
physicians NOUN
whoconsult NOUN
for ADP
insurance NOUN
companies NOUN
and CCONJ
make VERB
money NOUN
by ADP
denying VERB
benefits NOUN
toLyme NOUN
patients NOUN
are AUX
doing VERB
it PRON
for ADP
the DET
money NOUN
, PUNCT
rather ADV
than SCONJ
because SCONJ
they PRON
believethey PRON
are AUX
encouraging VERB
good ADJ
medicine NOUN
. PUNCT
I PRON
have AUX
no DET
idea NOUN
how ADV
sincere ADJ
these DET
guysare NOUN
, PUNCT
but CCONJ
their PRON
motives NOUN
are AUX
as ADV
suspect ADJ
as SCONJ
the DET
physicians NOUN
you PRON
excoriate VERB
forwhat ADP
you PRON
believe VERB
to PART
be AUX
indiscriminate ADJ
treatment NOUN
. PUNCT
	 SPACE
I PRON
would AUX
really ADV
feel VERB
more ADV
comfortable ADJ
discussing VERB
the DET
medical ADJ
issuesin NOUN
Lyme PROPN
, PUNCT
rather ADV
than SCONJ
speculating VERB
as SCONJ
to ADP
the DET
motives NOUN
of ADP
the DET
various ADJ
partiesinvolved VERB
. PUNCT
> X
---------------------------------------------------------------------------- PUNCT
> X
Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and CCONJ
> X
geb@cadre.dsl.pitt.edu ADJ
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------Carl PROPN
BrennerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58905From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Transplant PROPN
Recipients PROPN
Newsletter PROPN
, PUNCT
April PROPN
` PUNCT
93[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[DInternational PROPN
Newsletter PROPN
, PUNCT
April PROPN
` PART
93This NUM
will AUX
be AUX
the DET
first ADJ
of ADP
monthly ADJ
postings NOUN
of ADP
the DET
newsletter NOUN
of ADP
the DET
Long PROPN
Island PROPN
Chapter PROPN
of ADP
the DET
Transplant PROPN
Recipients PROPN
International PROPN
Organization PROPN
( PUNCT
TRIO PROPN
) PUNCT
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
I PRON
was AUX
unable ADJ
to PART
post VERB
it PRON
before ADP
the DET
date NOUN
of ADP
this DET
month NOUN
's PART
meeting NOUN
. PUNCT
  SPACE
I PRON
'm AUX
posting VERB
it PRON
anyway ADV
, PUNCT
and CCONJ
posting VERB
it PRON
world NOUN
- PUNCT
wide ADV
instead ADV
of ADP
regional ADJ
, PUNCT
in ADP
the DET
hopes NOUN
that SCONJ
some DET
of ADP
the DET
information NOUN
may AUX
be AUX
useful ADJ
or CCONJ
illustrative ADJ
. PUNCT
  SPACE
Also ADV
, PUNCT
I PRON
hope VERB
it PRON
can AUX
be AUX
used VERB
as SCONJ
an DET
example NOUN
and CCONJ
inspiration NOUN
for ADP
the DET
posting NOUN
of ADP
other ADJ
newsletters NOUN
and CCONJ
data NOUN
related VERB
to ADP
organ NOUN
transplantation NOUN
and CCONJ
donation NOUN
. PUNCT
  SPACE
MikeTransplant PROPN
RecipientsInternational PROPN
OrganizationLong PROPN
Island PROPN
ChapterP.O. PROPN
Box PROPN
922Huntington NUM
, PUNCT
NY PROPN
11743 NUM
- SYM
0922 NUM
		  SPACE
NEWSLETTER516/421 PROPN
- PUNCT
3258 NUM
                                         SPACE
APRIL PROPN
1993 NUM
                                          SPACE
VOLUME NOUN
IV PROPN
   SPACE
No NOUN
. PROPN
8NEXT PROPN
MEETINGThe PROPN
next ADJ
meeting NOUN
is AUX
WEDNESDAY PROPN
APRIL PROPN
14 NUM
at ADP
8 NUM
pm NOUN
at ADP
the DET
Knights PROPN
of ADP
Columbus PROPN
Emerald PROPN
Manor PROPN
, PUNCT
517 NUM
Uniondale PROPN
Avenue PROPN
in ADP
Uniondale PROPN
. PUNCT
  SPACE
Our PRON
guest NOUN
speaker NOUN
will AUX
be AUX
Dr. PROPN
Lewis PROPN
Teperman PROPN
. PUNCT
  SPACE
Dr. PROPN
Teperman PROPN
trained VERB
in ADP
Pittsburgh PROPN
under ADP
Dr. PROPN
Starzl PROPN
and CCONJ
is AUX
now ADV
the DET
Assistant PROPN
Director PROPN
of ADP
the DET
Liver PROPN
Transplant PROPN
Program PROPN
at ADP
New PROPN
York PROPN
University PROPN
Medical PROPN
Center PROPN
. PUNCT
  SPACE
Dr. PROPN
Teperman PROPN
will AUX
discuss VERB
current ADJ
trends NOUN
in ADP
transplantation NOUN
and CCONJ
treatment NOUN
and CCONJ
will AUX
answer VERB
questions NOUN
. PUNCT
  SPACE
He PRON
is AUX
a DET
long ADJ
time NOUN
friend NOUN
of ADP
TRIO NOUN
, PUNCT
surgeon NOUN
to ADP
many ADJ
of ADP
our PRON
members NOUN
, PUNCT
and CCONJ
always ADV
a DET
gracious ADJ
and CCONJ
delightful ADJ
guest NOUN
. PUNCT
   SPACE
It PRON
is AUX
sure ADJ
to PART
be AUX
a DET
very ADV
informative ADJ
, PUNCT
interesting ADJ
and CCONJ
engaging ADJ
evening NOUN
. PUNCT
  SPACE
Our PRON
hospitality NOUN
committee NOUN
, PUNCT
  SPACE
Bette PROPN
and CCONJ
Vito PROPN
Suglia PROPN
and CCONJ
Jim PROPN
Spence PROPN
will AUX
be AUX
well ADV
prepared ADJ
, PUNCT
and CCONJ
at ADP
last ADJ
the DET
weather NOUN
should AUX
be AUX
cooperative ADJ
. PUNCT
We PRON
hope VERB
to PART
see VERB
a DET
very ADV
large ADJ
gathering NOUN
to PART
welcome VERB
Dr. PROPN
Teperman PROPN
. PUNCT
           SPACE
WEDNESDAY PROPN
    SPACE
APRIL PROPN
14 NUM
  SPACE
K PROPN
of ADP
C PROPN
   SPACE
UNIONDALELAST PROPN
MEETINGIt NOUN
has AUX
been AUX
noted VERB
here ADV
before ADP
that SCONJ
the DET
Long PROPN
Island PROPN
Chapter PROPN
of ADP
TRIO PROPN
has AUX
extraordinary ADJ
power NOUN
in ADP
predicting VERB
bad ADJ
weather NOUN
, PUNCT
being AUX
able ADJ
to PART
forecast VERB
rain NOUN
, PUNCT
sleet NOUN
and CCONJ
snow NOUN
fully ADV
a DET
month NOUN
in ADP
advance NOUN
. PUNCT
  SPACE
No DET
TV NOUN
weatherman NOUN
can AUX
match VERB
us PRON
. PUNCT
This DET
time NOUN
we PRON
not PART
only ADV
scored VERB
again ADV
, PUNCT
but CCONJ
we PRON
were AUX
also ADV
able ADJ
to PART
disable VERB
the DET
Long PROPN
Island PROPN
Railroad PROPN
, PUNCT
making VERB
travel NOUN
REALLY PROPN
difficult ADJ
. PUNCT
  SPACE
None NOUN
the DET
less ADJ
, PUNCT
many ADJ
braved VERB
the DET
snow NOUN
and CCONJ
we PRON
had AUX
an DET
interesting ADJ
meeting NOUN
and CCONJ
good ADJ
conversation NOUN
. PUNCT
  SPACE
Our PRON
scheduled VERB
speaker NOUN
, PUNCT
Mrs. PROPN
Elizabeth PROPN
Linnehan PROPN
, PUNCT
a DET
professional ADJ
nutritionist NOUN
, PUNCT
had AUX
a DET
family NOUN
emergency NOUN
and CCONJ
was AUX
not PART
able ADJ
to PART
attend VERB
. PUNCT
  SPACE
She PRON
hope VERB
she PRON
will AUX
be AUX
with ADP
us PRON
in ADP
the DET
fall NOUN
to PART
discuss VERB
diet NOUN
and CCONJ
medications NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
  SPACE
Ms. PROPN
Jennifer PROPN
Friedman PROPN
, PUNCT
an DET
image NOUN
consultant NOUN
and CCONJ
sister NOUN
of ADP
a DET
liver NOUN
transplant NOUN
recipient NOUN
was AUX
kind ADJ
enough ADV
to PART
step VERB
in ADP
on ADP
very ADV
short ADJ
notice NOUN
. PUNCT
  SPACE
Ms. PROPN
Friedman PROPN
gave VERB
us PRON
a DET
lot NOUN
of ADP
good ADJ
advice NOUN
about ADP
choosing VERB
clothes NOUN
and CCONJ
makeup NOUN
, PUNCT
( PUNCT
even ADV
a DET
bit NOUN
for ADP
men NOUN
) PUNCT
to PART
help VERB
us PRON
look VERB
well ADJ
and CCONJ
healthy ADJ
and CCONJ
to PART
minimize VERB
some DET
of ADP
the DET
cosmetic ADJ
effects NOUN
of ADP
some DET
of ADP
the DET
medicine NOUN
and CCONJ
drugs NOUN
we PRON
take VERB
. PUNCT
  SPACE
We PRON
are AUX
most ADV
grateful ADJ
to ADP
Jennifer PROPN
and CCONJ
thank VERB
her PRON
for ADP
an DET
entertaining ADJ
evening NOUN
. PUNCT
ANNUAL PROPN
MEETINGIn PROPN
addition NOUN
to ADP
welcoming VERB
Dr. PROPN
Teperman PROPN
, PUNCT
the DET
April PROPN
meeting NOUN
is AUX
also ADV
the DET
Annual ADJ
meeting NOUN
of ADP
the DET
Chapter NOUN
. PUNCT
  SPACE
This DET
is AUX
the DET
official ADJ
notice NOUN
of ADP
the DET
meeting NOUN
as SCONJ
required VERB
by ADP
our PRON
By PROPN
- PUNCT
Laws PROPN
. PUNCT
The DET
main ADJ
purpose NOUN
of ADP
the DET
meeting NOUN
is AUX
to PART
review VERB
the DET
past ADJ
year NOUN
, PUNCT
solicit NOUN
member NOUN
views NOUN
and CCONJ
ideas NOUN
for ADP
better ADJ
ways NOUN
to PART
meet VERB
their PRON
needs NOUN
, PUNCT
and CCONJ
to PART
elect VERB
members NOUN
of ADP
the DET
Board PROPN
of ADP
Directors PROPN
for ADP
the DET
coming VERB
two NUM
year NOUN
term NOUN
. PUNCT
  SPACE
The DET
nominating VERB
committee NOUN
has AUX
prepared VERB
the DET
following VERB
slate NOUN
for ADP
the DET
Board PROPN
. PUNCT
         SPACE
Anne PROPN
( PUNCT
Liver PROPN
Recipient PROPN
) PUNCT
and CCONJ
Don PROPN
Treffeisen PROPN
         SPACE
Robert PROPN
( PUNCT
Heart PROPN
Recipient PROPN
) PUNCT
and CCONJ
Eulene PROPN
Smith PROPN
         SPACE
Vito PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
and CCONJ
Bette PROPN
Suglia PROPN
         SPACE
Kay PROPN
Grenzig PROPN
( PUNCT
Liver PROPN
Recipient PROPN
) PUNCT
         SPACE
Jan PROPN
Schichtel PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
         SPACE
Larry PROPN
Juliano PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
         SPACE
David PROPN
Bekofsky PROPN
( PUNCT
Director PROPN
Public PROPN
Education PROPN
LITP)Those PROPN
remaining VERB
on ADP
the DET
Board PROPN
for ADP
another DET
year NOUN
are AUX
: PUNCT
         SPACE
Robert PROPN
Carroll PROPN
( PUNCT
Liver PROPN
, PUNCT
Kidney PROPN
& CCONJ
Pancreas PROPN
Recipient PROPN
) PUNCT
         SPACE
Jerry PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
and CCONJ
Jeanne PROPN
Eichhorn PROPN
         SPACE
Ron PROPN
( PUNCT
Kidney PROPN
Donor PROPN
) PUNCT
and CCONJ
Marie PROPN
Healy PROPN
         SPACE
Peter PROPN
Smith PROPN
( PUNCT
Bone PROPN
Marrow PROPN
Recipient PROPN
) PUNCT
         SPACE
Patricia PROPN
Ann PROPN
Yankus PROPN
( PUNCT
Kidney PROPN
and CCONJ
Pancreas PROPN
Recipient PROPN
) PUNCT
         SPACE
Walter PROPN
Ruzak PROPN
( PUNCT
Kidney PROPN
Recipient)This PROPN
may AUX
seem VERB
to PART
be AUX
a DET
big ADJ
Board PROPN
, PUNCT
but CCONJ
many ADJ
hands NOUN
make VERB
light ADJ
work NOUN
and CCONJ
with ADP
our PRON
various ADJ
medical ADJ
uncertainties NOUN
, PUNCT
it PRON
is AUX
good ADJ
to PART
have AUX
backups NOUN
for ADP
all DET
the DET
jobs NOUN
on ADP
the DET
Board PROPN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
in ADP
addition NOUN
to ADP
the DET
slate NOUN
being AUX
presented VERB
for ADP
voting NOUN
, PUNCT
nominations NOUN
will AUX
also ADV
be AUX
accepted VERB
from ADP
the DET
floor NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
set ADJ
number NOUN
of ADP
Board PROPN
members NOUN
and CCONJ
there PRON
is AUX
plenty NOUN
of ADP
work NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
  SPACE
brief PROPN
treasurer PROPN
's PART
and CCONJ
membership NOUN
reports NOUN
will AUX
be AUX
given VERB
and CCONJ
the DET
floor NOUN
will AUX
be AUX
open ADJ
for ADP
any DET
new ADJ
business NOUN
, PUNCT
suggestions NOUN
, PUNCT
or CCONJ
comments NOUN
anyone PRON
would AUX
like VERB
to PART
bring VERB
up ADP
. PUNCT
We PRON
will AUX
keep VERB
the DET
formal ADJ
meeting NOUN
short ADJ
so SCONJ
that SCONJ
we PRON
can AUX
spend VERB
the DET
majority NOUN
of ADP
the DET
time NOUN
with ADP
Dr. PROPN
Teperman PROPN
. PUNCT
FUTURE ADJ
MEETINGSRemember PROPN
the DET
scheduled VERB
guests NOUN
for ADP
the DET
rest NOUN
of ADP
the DET
year NOUN
. PUNCT
       SPACE
May PROPN
  SPACE
12 NUM
      SPACE
Dr. PROPN
Peter PROPN
Shaprio PROPN
, PUNCT
Chief PROPN
of ADP
Psychiatry PROPN
                  SPACE
Columbia PROPN
Presbyterian PROPN
Medical PROPN
Center PROPN
     SPACE
June PROPN
  SPACE
9 NUM
      SPACE
Dr. PROPN
Felix PROPN
Rappaport PROPN
, PUNCT
Director PROPN
of ADP
the DET
Stony PROPN
                   SPACE
Brook PROPN
Kidney PROPN
Transplant PROPN
Program PROPN
. PUNCT
Plan NOUN
on ADP
being AUX
with ADP
us PRON
the DET
second ADJ
Wednesday PROPN
of ADP
each DET
month NOUN
. PUNCT
NOTDAWThe ADJ
week NOUN
of ADP
April PROPN
18 NUM
- SYM
24 NUM
is AUX
National PROPN
Organ PROPN
and CCONJ
Tissue PROPN
Donor PROPN
Awareness PROPN
Week PROPN
. PUNCT
NOTDAW PROPN
. PUNCT
While SCONJ
we PRON
are AUX
planning VERB
news NOUN
releases NOUN
, PUNCT
speaking VERB
engagements NOUN
and CCONJ
meetings NOUN
with ADP
Supervisors PROPN
Gullata PROPN
and CCONJ
Gaffney PROPN
, PUNCT
we PRON
have AUX
decided VERB
not PART
to PART
have AUX
our PRON
softball ADJ
game NOUN
   SPACE
because SCONJ
of ADP
two NUM
year NOUN
's PART
experience NOUN
with ADP
miserable ADJ
weather NOUN
. PUNCT
We PRON
all DET
can AUX
help VERB
spread VERB
the DET
word NOUN
on ADP
donor NOUN
awareness NOUN
, PUNCT
however ADV
. PUNCT
We PRON
have AUX
found VERB
it PRON
effective ADJ
to PART
ask VERB
your PRON
pastor NOUN
, PUNCT
or CCONJ
rabbi NOUN
to PART
publish VERB
a DET
letter NOUN
or CCONJ
announcement NOUN
in ADP
the DET
parish ADJ
bulletin NOUN
, PUNCT
allow VERB
you PRON
to PART
address VERB
the DET
congregation NOUN
, PUNCT
or CCONJ
include VERB
mention NOUN
of ADP
the DET
gift NOUN
of ADP
life NOUN
in ADP
his PRON
sermon NOUN
. PUNCT
  SPACE
Attached VERB
to ADP
this DET
Newsletter PROPN
is AUX
a DET
sample NOUN
letter NOUN
and CCONJ
fact NOUN
sheet NOUN
you PRON
can AUX
use VERB
. PUNCT
   SPACE
Thank VERB
you PRON
. PUNCT
DR PROPN
. PUNCT
STARZL NOUN
TO PART
BE VERB
HONORED PROPN
The DET
Long PROPN
Island PROPN
Chapter PROPN
of ADP
the DET
American PROPN
Liver PROPN
Foundation PROPN
will AUX
hold VERB
its PRON
annual ADJ
Auction NOUN
and CCONJ
Dinner PROPN
Dance PROPN
on ADP
May PROPN
7th NOUN
at ADP
the DET
Fountainbleu PROPN
  SPACE
on ADP
Jericho PROPN
Turnpike PROPN
in ADP
Jericho PROPN
. PUNCT
  SPACE
Dr. PROPN
Thomas PROPN
Starzl PROPN
will AUX
be AUX
the DET
honored VERB
guest NOUN
. PUNCT
  SPACE
Tickets NOUN
are AUX
$ SYM
50 NUM
person NOUN
and CCONJ
are AUX
going VERB
fast ADV
. PUNCT
  SPACE
If SCONJ
you PRON
'd AUX
like VERB
to PART
meet VERB
Dr. PROPN
Starzl PROPN
, PUNCT
  SPACE
call VERB
Anne PROPN
Treffeisen PROPN
at ADP
( PUNCT
516 NUM
) PUNCT
421 NUM
- PUNCT
3258 NUM
for ADP
details NOUN
. PUNCT
MEMBERSHIP PROPN
NEWS PROPN
Congratulations NOUN
to ADP
Al PROPN
Reese PROPN
. PUNCT
  SPACE
Al PROPN
received VERB
his PRON
heart NOUN
transplant NOUN
in ADP
Pittsburgh PROPN
after ADP
waiting VERB
3 NUM
1/2 NUM
years NOUN
. PUNCT
  SPACE
He PRON
is AUX
home ADV
and CCONJ
doing VERB
well ADV
after ADP
only ADV
12 NUM
days NOUN
in ADP
hospital NOUN
. PUNCT
Arthur PROPN
Michaels PROPN
, PUNCT
liver NOUN
recipient NOUN
, PUNCT
is AUX
planning VERB
to PART
run VERB
the DET
Boston PROPN
Marathon PROPN
in ADP
April PROPN
. PUNCT
What PRON
fantastic ADJ
proof NOUN
that SCONJ
transplantation NOUN
works VERB
! PUNCT
  SPACE
We PRON
hope VERB
the DET
national ADJ
press NOUN
notices NOUN
. PUNCT
      SPACE
Bob PROPN
McCormack PROPN
, PUNCT
after ADP
a DET
persistent ADJ
bout NOUN
with ADP
infection NOUN
, PUNCT
had AUX
his PRON
transplanted VERB
kidney NOUN
removed VERB
. PUNCT
  SPACE
He PRON
is AUX
home ADV
now ADV
, PUNCT
back ADV
on ADP
dialysis NOUN
and CCONJ
feeling VERB
better ADJ
. PUNCT
  SPACE
Nicole PROPN
Healy PROPN
, PUNCT
kidney NOUN
recipient NOUN
and CCONJ
daughter NOUN
of ADP
Ron PROPN
and CCONJ
Marie PROPN
, PUNCT
spent VERB
the DET
past ADJ
several ADJ
weeks NOUN
in ADP
hospital NOUN
in ADP
Miami PROPN
with ADP
problems NOUN
encountered VERB
on ADP
vacation NOUN
. PUNCT
  SPACE
Marie PROPN
has AUX
been AUX
with ADP
her PRON
in ADP
Florida PROPN
. PUNCT
  SPACE
They PRON
are AUX
back ADV
in ADP
New PROPN
York PROPN
where ADV
Nicole PROPN
's PART
treatment NOUN
will AUX
continue VERB
. PUNCT
  SPACE
We PRON
wish VERB
Nicole PROPN
a DET
speedy ADJ
recovery NOUN
. PUNCT
Kay PROPN
Grenzig PROPN
, PUNCT
liver NOUN
recipient NOUN
, PUNCT
is AUX
mending VERB
now ADV
after ADP
a DET
bad ADJ
fall NOUN
that PRON
resulted VERB
in ADP
a DET
broken ADJ
arm NOUN
and CCONJ
a DET
broken ADJ
leg NOUN
. PUNCT
Kay PROPN
is AUX
a DET
candidate NOUN
for ADP
the DET
Board PROPN
so SCONJ
we PRON
need VERB
her PRON
well ADV
soon ADV
. PUNCT
And CCONJ
best ADJ
wishes NOUN
to ADP
all DET
coming VERB
out SCONJ
of ADP
the DET
flu NOUN
. PUNCT
It PRON
was AUX
a DET
tough ADJ
winter NOUN
for ADP
many ADJ
, PUNCT
but CCONJ
the DET
tulips NOUN
are AUX
just ADV
under ADP
the DET
snow NOUN
. PUNCT
SEE VERB
YOU PRON
...... PUNCT
WEDNESDAY PROPN
   SPACE
APRIL PROPN
14 NUM
  SPACE
8 NUM
PM NOUN
   SPACE
K PROPN
of ADP
C PROPN
UNIONDALE PROPN
                               SPACE
DR PROPN
. PUNCT
LEWIS PROPN
TEPERMANNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58906From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)In PROPN
article NOUN
< X
1993Apr17.181013.3743@uvm.edu NUM
> X
hbloom@moose.uvm.edu ADJ
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>Nutrasweet NOUN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
than SCONJ
> X
sugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
> X
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
to ADP
> X
for ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
> X
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehyde NOUN
> X
produced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
to ADP
> VERB
living NOUN
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
Aspartame PROPN
is AUX
the DET
methyl ADJ
ester NOUN
of ADP
a DET
dipeptide NOUN
, PUNCT
so ADV
a DET
product NOUN
of ADP
itshydrolysis NOUN
is AUX
going VERB
to PART
be AUX
methanol NOUN
, PUNCT
which PRON
can AUX
then ADV
be AUX
oxidized VERB
toformaldehyde NOUN
. PUNCT
  SPACE
The DET
amounts NOUN
of ADP
methanol NOUN
formed VERB
from ADP
the DET
ingestion NOUN
ofaspartame NOUN
- PUNCT
containing VERB
foods NOUN
are AUX
completely ADV
in ADP
the DET
metabolic ADJ
noise NOUN
, PUNCT
since SCONJ
you PRON
're AUX
forming VERB
equally ADV
minute ADJ
amounts NOUN
of ADP
methanol NOUN
from ADP
othercomponents NOUN
of ADP
food NOUN
all DET
the DET
time NOUN
. PUNCT
  SPACE
In ADP
studies NOUN
involving VERB
administrationof PROPN
high ADJ
doses NOUN
of ADP
the DET
additive ADJ
, PUNCT
blood NOUN
methanol NOUN
levels NOUN
were AUX
undetectable ADJ
. PUNCT
Methanol NOUN
is AUX
a DET
poison NOUN
only ADV
in ADP
quantities NOUN
seen VERB
in ADP
human ADJ
poisonings NOUN
, PUNCT
say VERB
5ml ADJ
and CCONJ
above ADV
. PUNCT
  SPACE
This DET
is AUX
a DET
consequence NOUN
of ADP
its PRON
oxidation NOUN
to PART
formaldehydeand VERB
formic PROPN
acid NOUN
, PUNCT
two NUM
quite ADV
reactive ADJ
compounds NOUN
which PRON
at ADP
high ADJ
enough ADJ
levelscan ADJ
damage NOUN
tissues NOUN
like SCONJ
the DET
retina NOUN
and CCONJ
kidney NOUN
, PUNCT
because SCONJ
at ADP
such ADJ
high ADJ
dosesthe NOUN
body NOUN
's PART
detoxification NOUN
system NOUN
is AUX
overwhelmed ADJ
. PUNCT
  SPACE
Interestingly ADV
, PUNCT
onetreatment NOUN
for ADP
early ADJ
methanol NOUN
poisoning NOUN
is AUX
to PART
get AUX
the DET
person NOUN
drunk ADJ
onethyl ADJ
alcohol NOUN
-- PUNCT
vodka NOUN
or CCONJ
an DET
equivalent NOUN
. PUNCT
  SPACE
That DET
's AUX
because SCONJ
ethanol NOUN
ismetabolized VERB
preferentially ADV
over ADP
methanol NOUN
by ADP
the DET
enzymes NOUN
in ADP
the DET
liver NOUN
. PUNCT
If SCONJ
the DET
methanol NOUN
stays VERB
as SCONJ
methanol NOUN
and CCONJ
is AUX
n't PART
metabolized VERB
to PART
formaldehyde VERB
, PUNCT
it PRON
is AUX
actually ADV
relatively ADV
non ADJ
- ADJ
toxic.-- ADJ
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58907From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr17.184435.19725@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG ADJ
) PUNCT
writes:>Many ADJ
people NOUN
responded VERB
with ADP
more ADV
anecdotal ADJ
stories NOUN
; PUNCT
I PRON
think VERB
its PRON
safe ADJ
to ADP
> X
say VERB
the DET
original ADJ
poster NOUN
is AUX
already ADV
familiar ADJ
with ADP
such ADJ
stories.>Presumably ADV
, PUNCT
he PRON
wants VERB
hard ADJ
info NOUN
to PART
substantiate VERB
or CCONJ
refute VERB
claims NOUN
about ADP
> X
MSG NOUN
making VERB
people NOUN
ill ADJ
. PUNCT
There PRON
has AUX
been AUX
NO DET
hard ADJ
info NOUN
provided VERB
about ADP
MSG PROPN
making VERB
people NOUN
ill ADJ
. PUNCT
That DET
's AUX
the DET
point NOUN
, PUNCT
after ADP
all.>>Like PROPN
youself PRON
? PUNCT
  SPACE
Someone PRON
who PRON
can AUX
read VERB
a DET
scientific ADJ
paper NOUN
and CCONJ
apparently>>come NOUN
away ADV
from ADP
it PRON
with ADP
bizarrely ADV
cracked VERB
ideas NOUN
which PRON
have AUX
nothing PRON
to>>do PROPN
with ADP
the DET
use NOUN
of ADP
this DET
substance NOUN
in ADP
human ADJ
nutrition?>Have NOUN
you PRON
read VERB
Olney PROPN
's PART
work NOUN
? PUNCT
I PRON
fail VERB
to PART
see VERB
how ADV
citing VERB
results NOUN
from ADP
> PROPN
peer NOUN
- PUNCT
reviewed VERB
studies NOUN
qualifies VERB
as SCONJ
" PUNCT
bizarrely ADV
cracked" NOUN
. PUNCT
That DET
's AUX
because SCONJ
these DET
" PUNCT
peer NOUN
- PUNCT
reviewed VERB
" PUNCT
studies NOUN
are AUX
not PART
addressingthe NOUN
effects NOUN
of ADP
MSG NOUN
in ADP
people NOUN
, PUNCT
they PRON
're AUX
looking VERB
at ADP
animal NOUN
models NOUN
. PUNCT
You PRON
ca AUX
n't PART
walk VERB
away ADV
from ADP
this DET
and CCONJ
start VERB
ranting VERB
about ADP
gloom NOUN
anddoom VERB
as SCONJ
if SCONJ
there PRON
were AUX
any DET
documented VERB
deleterious ADJ
health NOUN
effectsdemonstrated VERB
in ADP
humans NOUN
. PUNCT
  SPACE
Note VERB
that SCONJ
I PRON
would AUX
n't PART
have AUX
any DET
argumentwith NOUN
a DET
statement NOUN
like SCONJ
" PUNCT
noting VERB
that SCONJ
animal NOUN
administration NOUN
has AUX
pro ADJ
- VERB
duced VERB
the DET
following VERB
[ PUNCT
blah INTJ
, PUNCT
blah INTJ
] PUNCT
, PUNCT
we PRON
must AUX
be AUX
careful ADJ
about ADP
itsuse NOUN
in ADP
humans NOUN
. PUNCT
" PUNCT
  SPACE
This DET
is AUX
precisely ADV
NOT ADV
what PRON
you PRON
said.>Tests VERB
have AUX
been AUX
done VERB
on ADP
Rhesus PROPN
monkeys NOUN
, PUNCT
as ADV
well ADV
. PUNCT
I PRON
have AUX
never ADV
seen VERB
a DET
> X
study NOUN
where ADV
the DET
mode NOUN
of ADP
administration NOUN
was AUX
intra ADJ
- ADJ
ventricular ADJ
. PUNCT
  SPACE
The DET
Glu PROPN
> X
and CCONJ
Asp PROPN
were AUX
administered VERB
orally ADV
. PUNCT
Some DET
studies NOUN
used VERB
IV PROPN
and CCONJ
SC.>Intra PROPN
- PUNCT
ventricular ADJ
is AUX
not PART
a DET
normal ADJ
admin NOUN
. PUNCT
method NOUN
for ADP
food NOUN
tox NOUN
. PUNCT
studies,>for ADP
obvious ADJ
reasons NOUN
. PUNCT
You PRON
must AUX
not PART
have AUX
read VERB
the DET
peer NOUN
- PUNCT
reviewed VERB
works NOUN
> X
that PRON
I PRON
referred VERB
to ADP
or CCONJ
you PRON
would AUX
never ADV
have AUX
come VERB
up ADP
with ADP
this DET
brain NOUN
> X
injection NOUN
bunk NOUN
. PUNCT
It PRON
most ADV
certainly ADV
is AUX
for ADP
neurotoxicology PROPN
. PUNCT
  SPACE
You PRON
know VERB
, PUNCT
studies NOUN
ofglutamate VERB
involve VERB
more ADJ
than SCONJ
" PUNCT
food NOUN
science".>Pardon NOUN
me PRON
, PUNCT
but CCONJ
where ADV
are AUX
you PRON
getting VERB
this DET
from ADP
? PUNCT
Have AUX
you PRON
read VERB
the DET
> X
journals NOUN
? PUNCT
Have AUX
you PRON
done VERB
a DET
thorough ADJ
literature NOUN
search?So NOUN
, PUNCT
point VERB
us PRON
to ADP
the DET
studies NOUN
in ADP
humans NOUN
, PUNCT
please INTJ
. PUNCT
  SPACE
I PRON
'm AUX
familiar ADJ
withthe NOUN
literature NOUN
, PUNCT
and CCONJ
I PRON
've AUX
never ADV
seen VERB
any DET
which PRON
relate VERB
at ADV
all ADV
toOlney NOUN
's PART
work NOUN
in ADP
animals NOUN
and CCONJ
the DET
effects NOUN
of ADP
glutamate NOUN
on ADP
neurons.>The PROPN
point NOUN
is AUX
exceeding VERB
the DET
window NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
they PRON
're AUX
amino ADJ
acids.>Note PROPN
that SCONJ
people NOUN
with ADP
PKU PROPN
can AUX
not PART
tolerate VERB
any DET
phenylalanine NOUN
. PUNCT
Well INTJ
, PUNCT
actually ADV
, PUNCT
they PRON
HAVE VERB
to PART
tolerate VERB
some DET
phenylalanine NOUN
; PUNCT
it PRON
's AUX
aessential ADJ
amino ADJ
acid NOUN
. PUNCT
  SPACE
They PRON
just ADV
try VERB
to PART
get AUX
as ADV
little ADJ
as SCONJ
is AUX
healthywithout ADP
producing VERB
dangerous ADJ
levels NOUN
of ADP
phenylalanine NOUN
and CCONJ
its PRON
metabolitesin NOUN
the DET
blood.>Olney NOUN
's PART
research NOUN
compared VERB
infant NOUN
human ADJ
diets NOUN
. PUNCT
Specifically ADV
, PUNCT
the DET
amount NOUN
> X
of ADP
freely ADV
available ADJ
Glu PROPN
in ADP
mother NOUN
's PART
milk NOUN
versus ADP
commercial ADJ
baby NOUN
foods,>vs PROPN
. PUNCT
typical ADJ
lunch NOUN
items NOUN
from ADP
the DET
Standard PROPN
American PROPN
Diet PROPN
such ADJ
as SCONJ
packaged VERB
> X
soup NOUN
mixes NOUN
. PUNCT
He PRON
found VERB
that SCONJ
one PRON
could AUX
exceed VERB
the DET
projected VERB
safety NOUN
margin NOUN
> X
for ADP
infant NOUN
humans NOUN
by ADP
at ADV
least ADV
four NUM
- ADV
fold NOUN
in ADP
a DET
single ADJ
meal NOUN
of ADP
processed VERB
> NOUN
foods NOUN
. PUNCT
Mother PROPN
's PART
milk NOUN
was AUX
well ADV
below ADP
the DET
effective ADJ
dose NOUN
. PUNCT
Goodness INTJ
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
it PRON
's AUX
good ADJ
to PART
feed VERB
infants NOUN
a DET
lot NOUN
ofglutamate NOUN
- PUNCT
supplemented VERB
foods NOUN
. PUNCT
  SPACE
It PRON
's AUX
just ADV
that SCONJ
this DET
" PUNCT
projected VERB
safetymargin NOUN
" PUNCT
is AUX
a DET
construct NOUN
derived VERB
from ADP
animal NOUN
models NOUN
and CCONJ
given VERB
that DET
, PUNCT
you PRON
can AUX
" PUNCT
prove VERB
" PUNCT
anything PRON
you PRON
like VERB
. PUNCT
  SPACE
We PRON
're AUX
talking VERB
prudent ADJ
policy NOUN
ininfant ADJ
nutrition NOUN
here ADV
, PUNCT
yet CCONJ
you PRON
're AUX
misrepresenting VERB
it PRON
as SCONJ
received VERB
wisdom.>>>Read PROPN
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>>>sources NOUN
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute.>>>>Impeccable ADJ
. PUNCT
  SPACE
There PRON
most ADV
certainly ADV
is AUX
a DET
dispute.>>Between NOUN
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
you PRON
> X
provide VERB
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to ADP
articles NOUN
> X
disputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
You PRON
mean VERB
" PUNCT
asserting VERB
" PUNCT
. PUNCT
  SPACE
You PRON
're AUX
being AUX
intellectually ADV
dishonest ADJ
( PUNCT
or CCONJ
justplain PROPN
confused ADJ
) PUNCT
, PUNCT
because SCONJ
you PRON
're AUX
conflating VERB
reports NOUN
which PRON
do AUX
not PART
necessarilyhave VERB
anything PRON
to PART
do AUX
with ADP
each DET
other ADJ
. PUNCT
  SPACE
Olney PROPN
's PART
reports NOUN
would AUX
argue VERB
a DET
potentialfor NOUN
problems NOUN
in ADP
human ADJ
infants NOUN
, PUNCT
but CCONJ
that DET
's AUX
not PART
to PART
say VERB
that SCONJ
this DET
says VERB
anythingwhatsoever ADP
about ADP
the DET
use NOUN
of ADP
MSG NOUN
in ADP
most ADJ
foods NOUN
, PUNCT
nor CCONJ
does AUX
he PRON
provide VERB
anystudies NOUN
in ADP
humans NOUN
which PRON
indicate VERB
any DET
deleterious ADJ
effects NOUN
( PUNCT
for ADP
obviousreasons NOUN
. PUNCT
) PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
MSG PROPN
's PART
contribtion NOUN
to ADP
the DET
phenomenonof NOUN
the DET
" PUNCT
Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
the DET
frequentinability NOUN
to PART
replicate VERB
anecdotal ADJ
reports NOUN
of ADP
MSG NOUN
sensitivity NOUN
in ADP
the DET
lab.>>dyer@ursa-major.spdcc.com NOUN
> X
Hmm INTJ
. PUNCT
" PUNCT
.com PUNCT
" PUNCT
. PUNCT
Why ADV
am AUX
I PRON
not PART
surprised?>- NUM
Dianne PROPN
Murray PROPN
   SPACE
wcsbeau@ccs.carleton.caProbably ADV
one NUM
of ADP
the DET
dumber ADJ
remarks NOUN
you PRON
've AUX
made.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58908From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Frequent ADJ
nosebleedsIn PROPN
article NOUN
< X
1993Apr17.195202.28921@freenet.carleton.ca ADJ
> X
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison PROPN
) PUNCT
writes:>Does VERB
anyone PRON
know VERB
of ADP
any DET
method NOUN
to PART
reduce VERB
this DET
frequency NOUN
? PUNCT
My PRON
younger ADJ
brothers NOUN
> X
each DET
tried VERB
a DET
skin NOUN
transplant NOUN
( PUNCT
thigh NOUN
to PART
nose NOUN
lining NOUN
) PUNCT
, PUNCT
but CCONJ
their PRON
nosebleeds NOUN
> X
soon ADV
returned VERB
. PUNCT
I PRON
've AUX
seen VERB
a DET
reference NOUN
to ADP
an DET
herb NOUN
called VERB
Rutin PROPN
that PRON
is AUX
> X
supposed VERB
to PART
help VERB
, PUNCT
and CCONJ
I PRON
'd AUX
like VERB
to PART
hear VERB
of ADP
experiences NOUN
with ADP
it PRON
, PUNCT
or CCONJ
other ADJ
> PUNCT
techniques NOUN
. PUNCT
Rutin PROPN
is AUX
a DET
bioflavonoid NOUN
, PUNCT
compounds NOUN
found VERB
( PUNCT
among ADP
other ADJ
places NOUN
) PUNCT
in ADP
therinds NOUN
of ADP
citrus NOUN
fruits NOUN
. PUNCT
  SPACE
These DET
have AUX
been AUX
popular ADJ
, PUNCT
especially ADV
in ADP
Europe PROPN
, PUNCT
to PART
treat VERB
" PUNCT
capillary ADJ
fragility NOUN
" PUNCT
, PUNCT
and CCONJ
seemingly ADV
in ADP
even ADV
more ADV
extreme ADJ
cases NOUN
-- PUNCT
a DET
few ADJ
months NOUN
ago ADV
, PUNCT
a DET
friend NOUN
was AUX
visiting VERB
from ADP
Italy PROPN
, PUNCT
and CCONJ
he PRON
said VERB
that SCONJ
he'dhad PROPN
hemorrhoids NOUN
, PUNCT
but CCONJ
his PRON
pharmacist ADJ
friend NOUN
sold VERB
him PRON
some DET
pills NOUN
. PUNCT
  SPACE
Incredulously ADV
, PUNCT
I PRON
asked VERB
to PART
look VERB
at ADP
them PRON
, PUNCT
and CCONJ
sure ADV
enough ADV
these DET
contained VERB
rutin PROPN
as SCONJ
the DET
activeingredient NOUN
. PUNCT
  SPACE
I PRON
probably ADV
destroyed VERB
the DET
placebo NOUN
effect NOUN
from ADP
my PRON
skepticalsputtering NOUN
. PUNCT
  SPACE
I PRON
have AUX
no DET
idea NOUN
how ADV
he PRON
's AUX
doing VERB
hemorrhoid NOUN
- PUNCT
wise ADJ
these DET
days NOUN
. PUNCT
The DET
studies NOUN
which PRON
attempted VERB
to PART
look VERB
at ADP
the DET
effect NOUN
of ADP
these DET
compounds NOUN
inhuman PROPN
disease NOUN
and CCONJ
nutrition NOUN
were AUX
never ADV
very ADV
well ADV
controlled VERB
, PUNCT
so SCONJ
thereports NOUN
of ADP
positive ADJ
results NOUN
with ADP
them PRON
is AUX
mostly ADV
anecdotal ADJ
. PUNCT
This DET
stuff NOUN
is AUX
pretty ADV
much ADJ
non ADJ
- ADJ
toxic ADJ
, PUNCT
and CCONJ
probably ADV
inexpensive ADJ
, PUNCT
so CCONJ
there'slittle NUM
risk NOUN
of ADP
trying VERB
it PRON
, PUNCT
but CCONJ
I PRON
would AUX
n't PART
expect VERB
much ADJ
of ADP
a DET
result.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58909From NUM
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>>Is NOUN
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>Superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
As SCONJ
a DET
person NOUN
who PRON
is AUX
very ADV
sensitive ADJ
to ADP
msg NOUN
and CCONJ
whose PRON
wife NOUN
and CCONJ
kids NOUN
aretoo VERB
, PUNCT
I PRON
WANT VERB
TO PART
KNOW VERB
WHY ADV
THE DET
FOOD NOUN
INDUSTRY NOUN
WANTS VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
FOOD!!!Somebody NUM
in ADP
the DET
industry NOUN
GIVE VERB
ME PROPN
SOME DET
REASONS NOUN
WHY ADV
! PUNCT
  SPACE
IS VERB
IT NOUN
AN PROPN
INDUSTRIAL PROPN
BYPRODUCT NOUN
THAT ADP
NEEDS NOUN
GETTING NOUN
GET VERB
RID VERB
OF?IS PRON
IT PRON
TO PART
COVER VERB
UP ADP
THE DET
FACT NOUN
THAT PRON
THE DET
RECIPES NOUN
ARE VERB
NOT ADV
VERY ADV
GOOD ADJ
OR CCONJ
THE DET
FOOD NOUN
IS VERB
POOR VERB
QUALITY?DO PROPN
SOME DET
OF ADP
YOU PRON
GET VERB
A DET
SADISTIC NOUN
PLEASURE VERB
OUT ADP
OF ADP
MAKING VERB
SOME DET
OF ADP
US PROPN
SICK?DO PUNCT
THE DET
TASTE NOUN
TESTERS NOUN
HAVE VERB
SOME DET
DEFECT NOUN
IN ADP
THEIR PRON
FLAVOR NOUN
SENSORS PROPN
( PUNCT
MOUTH PROPN
etc X
... PUNCT
) PUNCT
  SPACE
THAT ADP
MSG PROPN
CORRECTS?I PROPN
REALLY PROPN
DON'T VERB
UNDERSTAND!!!ALSO NOUN
... PUNCT
Nitrosiamines PROPN
( PUNCT
sp PROPN
) PUNCT
and CCONJ
sulfites NOUN
... PUNCT
   SPACE
Why ADV
them PRON
? PUNCT
  SPACE
There PRON
are AUX
safer ADJ
ways NOUN
to PART
preserve VERB
food NOUN
, PUNCT
wines PROPN
, PUNCT
and CCONJ
beers!I NOUN
think VERB
1 X
) PUNCT
outlaw VERB
the DET
use NOUN
of ADP
these DET
substances NOUN
without ADP
warning VERB
labels NOUN
aslarge VERB
as SCONJ
those DET
on ADP
cig NOUN
. PUNCT
packages.2 ADV
) PUNCT
Require NOUN
30 NUM
% NOUN
of ADP
comparable ADJ
products NOUN
on ADP
the DET
market NOUN
to PART
be AUX
free ADJ
of ADP
thesesubstances NOUN
and CCONJ
state NOUN
that SCONJ
they PRON
are AUX
free ADJ
of ADP
MSG PROPN
, PUNCT
DYES PROPN
, PUNCT
NITROSIAMINES PROPN
and CCONJ
SULFITES NOUN
on ADP
the DET
package.3 PROPN
) PUNCT
While SCONJ
at ADP
it PRON
outlaw VERB
yellow ADJ
dye NOUN
# PROPN
5 NUM
. PUNCT
  SPACE
For ADP
that DET
matter NOUN
why ADV
dye NOUN
food NOUN
? PUNCT
  SPACE
4 X
) PUNCT
Take VERB
the DET
dyes NOUN
and CCONJ
flavorings NOUN
out SCONJ
of ADP
vitamins NOUN
. PUNCT
  SPACE
( PUNCT
In ADP
my PRON
OSCO PROPN
only ADV
StressTabs PROPN
( PUNCT
tm PROPN
) PUNCT
did AUX
n't PART
have AUX
yellow ADJ
dye NOUN
# SYM
5 NUM
) PUNCT
  SPACE
{ PUNCT
My PRON
doctor NOUN
says VERB
Yellow PROPN
Dye PROPN
# SYM
5 NUM
isresponsible ADJ
for ADP
1/2 NUM
of ADP
all DET
nasal ADJ
polyps NOUN
! PUNCT
! PUNCT
! PUNCT
} PUNCT
KEEP VERB
FOOD PROPN
FOOD NOUN
! PUNCT
  SPACE
QUIT VERB
PUTTING NOUN
IN ADP
JUNK!JUST NOUN
MY PROPN
TWO NUM
CENTS NOUN
WORTH.Sig NOUN
: PUNCT
  SPACE
A DET
person NOUN
tired ADJ
of ADP
getting VERB
sick ADJ
from ADP
this DET
junk!-- PROPN
Walter PROPN
Lundby-- NOUN
Walter PROPN
LundbyNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58910From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
lsu7q7INNia5@saltillo.cs.utexas.edu PROPN
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>-*---->I PROPN
agree VERB
with ADP
everything PRON
that PRON
Lee PROPN
Lady PROPN
wrote VERB
in ADP
her PRON
previous ADJ
post NOUN
in ADP
> X
this DET
thread NOUN
. PUNCT
  SPACE
Gee PROPN
! PUNCT
  SPACE
Maybe ADV
I PRON
've AUX
misjudged VERB
you PRON
, PUNCT
Russell PROPN
. PUNCT
  SPACE
Anyone PRON
who PRON
agrees VERB
with ADP
something PRON
I PRON
say VERB
ca AUX
n't PART
be AUX
all ADV
bad ADJ
. PUNCT
  SPACE
; PUNCT
-)Seriously ADV
, PUNCT
I PRON
'm AUX
not PART
sure ADJ
whether SCONJ
I PRON
misjudged VERB
you PRON
or CCONJ
not PART
, PUNCT
in ADP
one NUM
respect NOUN
. PUNCT
  SPACE
I PRON
still ADV
have AUX
a DET
major ADJ
problem NOUN
, PUNCT
though ADV
, PUNCT
with ADP
your PRON
insistence NOUN
that SCONJ
science NOUN
is AUX
mainly ADV
about ADP
avoiding VERB
mistakes NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
still ADV
disagree VERB
with ADP
your PRON
contention NOUN
that SCONJ
nobody PRON
who PRON
does AUX
n't PART
use VERB
methods NOUN
deemed VERB
" PUNCT
scientific ADJ
" PUNCT
can AUX
possibly ADV
know VERB
what PRON
's AUX
true ADJ
and CCONJ
what PRON
's AUX
not PART
. PUNCT
  SPACE
> X
  SPACE
[ PUNCT
Deleted VERB
material NOUN
which PRON
I PRON
agree VERB
with ADP
. PUNCT
] PUNCT
  SPACE
> X
> X
Back ADV
to ADP
Lee PROPN
Lady PROPN
: PUNCT
> X
> X
> X
These DET
are AUX
not PART
the DET
rules NOUN
according VERB
to ADP
many ADJ
who PRON
post VERB
to ADP
sci.med PUNCT
and CCONJ
> X
> X
sci.psychology PROPN
. PUNCT
  SPACE
According VERB
to ADP
these DET
posters NOUN
  SPACE
" PUNCT
If SCONJ
it PRON
's AUX
not PART
supported VERB
by ADP
> X
> X
carefully ADV
designed VERB
controlled VERB
studies NOUN
then ADV
it PRON
's AUX
not PART
science ADJ
. PUNCT
">>These ADJ
posters NOUN
are AUX
making VERB
the DET
mistake NOUN
that PRON
I PRON
have AUX
previously ADV
> X
criticized VERB
of ADP
adhering VERB
to ADP
a DET
methodological ADJ
recipe NOUN
. PUNCT
  SPACE
A DET
" PUNCT
carefully ADV
... PUNCT
> X
     SPACE
.... PUNCT
  SPACE
> X
Rules NOUN
such ADJ
as SCONJ
" PUNCT
support VERB
the DET
hypothesis NOUN
by ADP
a DET
carefully ADV
designed VERB
and CCONJ
> X
controlled VERB
study NOUN
" PUNCT
are AUX
too ADV
narrow ADJ
to PART
apply VERB
to ADP
* PUNCT
all DET
* PUNCT
investigation.>I NOUN
think VERB
that SCONJ
the DET
requirements NOUN
for ADP
particular ADJ
reasoning NOUN
to PART
be AUX
> X
convincing ADJ
depends VERB
greatly ADV
on ADP
the DET
kinds NOUN
of ADP
mistakes NOUN
that PRON
have AUX
> X
occurred VERB
in ADP
past ADJ
reasoning NOUN
about ADP
the DET
same ADJ
kinds NOUN
of ADP
things NOUN
. PUNCT
  SPACE
( PUNCT
To PART
> X
reuse VERB
the DET
previous ADJ
example NOUN
, PUNCT
we PRON
know VERB
that SCONJ
conclusions NOUN
from ADP
> X
uncontrolled ADJ
observations NOUN
of ADP
the DET
treatment NOUN
of ADP
chronic ADJ
medical ADJ
> NOUN
problems NOUN
are AUX
notoriously ADV
problematic ADJ
. PUNCT
) PUNCT
  SPACE
Okay INTJ
, PUNCT
so ADV
let VERB
's PRON
see VERB
if SCONJ
we PRON
agree VERB
on ADP
this DET
: PUNCT
FIRST ADJ
of ADP
all DET
, PUNCT
there PRON
are AUX
degrees NOUN
of ADP
certainty NOUN
. PUNCT
  SPACE
It PRON
might AUX
be AUX
appropriate ADJ
, PUNCT
for ADP
instance NOUN
, PUNCT
to PART
demand VERB
carefully ADV
controlled VERB
trials NOUN
before ADP
we PRON
accept VERB
as SCONJ
absolute ADJ
scientific ADJ
truth NOUN
( PUNCT
to ADP
the DET
extent NOUN
that SCONJ
there PRON
is AUX
any DET
such ADJ
thing NOUN
) PUNCT
the DET
effectiveness NOUN
of ADP
a DET
certain ADJ
treatment NOUN
. PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
highly ADV
favorable ADJ
clinical ADJ
experience NOUN
, PUNCT
even ADV
if SCONJ
uncontrolled ADJ
, PUNCT
can AUX
be AUX
adequate ADJ
to PART
justify VERB
a DET
* PUNCT
preliminary ADJ
* PUNCT
judgement PROPN
thata PROPN
treatment NOUN
is AUX
useful ADJ
. PUNCT
  SPACE
This DET
is AUX
often ADV
the DET
best ADJ
evidence NOUN
we PRON
can AUX
hope VERB
forfrom ADP
investigators NOUN
who PRON
do AUX
not PART
have AUX
institutional ADJ
or CCONJ
corporate ADJ
support NOUN
. PUNCT
In ADP
this DET
case NOUN
, PUNCT
it PRON
makes VERB
sense NOUN
to PART
tentatively ADV
treat VERB
claims NOUN
as SCONJ
crediblebut NOUN
to PART
reserve VERB
final ADJ
judgement NOUN
until ADP
establishment NOUN
scientists NOUN
who PRON
arequalified VERB
and CCONJ
have AUX
the DET
necessary ADJ
resources NOUN
can AUX
do AUX
more ADV
careful ADJ
testing NOUN
. PUNCT
SECONDLY PROPN
, PUNCT
it PRON
makes VERB
sense NOUN
to PART
be AUX
more ADV
tolerant ADJ
in ADP
our PRON
standards NOUN
of ADP
evidence NOUN
for ADP
a DET
pronounced ADJ
effect NOUN
than SCONJ
for ADP
one NUM
that PRON
is AUX
marginal ADJ
. PUNCT
  SPACE
I PRON
come VERB
to ADP
this DET
dispute NOUN
about ADP
what PRON
science NOUN
is AUX
  SPACE
not PART
only ADV
as SCONJ
amathematician ADJ
but CCONJ
as SCONJ
a DET
veteran NOUN
of ADP
many ADJ
arguments NOUN
in ADP
sci.psychology PROPN
( PUNCT
andoccasionally ADV
in ADP
sci.med VERB
) PUNCT
about ADP
NLP PROPN
( PUNCT
Neurolinguistic PROPN
Programming PROPN
) PUNCT
. PUNCT
  SPACE
Muchof ADP
the DET
work NOUN
done VERB
to ADP
date NOUN
by ADP
NLPers PROPN
can AUX
be AUX
better ADV
categorized VERB
asinformal ADJ
exploration NOUN
than SCONJ
as SCONJ
careful ADJ
scientific ADJ
research NOUN
. PUNCT
  SPACE
For ADP
yearsnow NOUN
I PRON
have AUX
been AUX
trying VERB
to PART
get AUX
scientific ADJ
and CCONJ
clinical ADJ
psychologists NOUN
tojust NOUN
take VERB
a DET
look NOUN
at ADP
it PRON
, PUNCT
to PART
read VERB
a DET
few ADJ
of ADP
the DET
books NOUN
and CCONJ
watch VERB
some DET
ofthe ADJ
videotapes NOUN
( PUNCT
courtesy NOUN
of ADP
your PRON
local ADJ
university NOUN
library NOUN
) PUNCT
. PUNCT
  SPACE
Not PART
forthe ADJ
purpose NOUN
of ADP
making VERB
a DET
definitive ADJ
judgement NOUN
, PUNCT
but CCONJ
simply ADV
to PART
look VERB
at ADP
theNLP PROPN
methodology NOUN
( PUNCT
especially ADV
the DET
approach NOUN
to ADP
eliciting VERB
information NOUN
fromsubjects NOUN
) PUNCT
and CCONJ
look VERB
for ADP
ideas NOUN
and CCONJ
hypotheses NOUN
which PRON
might AUX
be AUX
ofscientific ADJ
interest NOUN
. PUNCT
  SPACE
And CCONJ
most ADV
especially ADV
to PART
be AUX
aware ADJ
of ADP
the*questions NOUN
* PUNCT
NLP PROPN
suggests VERB
which PRON
might AUX
be AUX
worthy ADJ
of ADP
scientificinvestigation NOUN
. PUNCT
Over ADV
and CCONJ
over ADV
again ADV
the DET
response NOUN
I PRON
get VERB
in ADP
sci.pychology NOUN
is AUX
  SPACE
" PUNCT
If SCONJ
thishasn't DET
been AUX
thoroughly ADV
validated VERB
by ADP
the DET
accepted VERB
form NOUN
of ADP
empiricalresearch NOUN
then ADV
it PRON
ca AUX
n't PART
be AUX
of ADP
any DET
interest NOUN
to ADP
us PRON
. PUNCT
" PUNCT
  SPACE
To ADP
me PRON
, PUNCT
the DET
ultimate ADJ
reducio NOUN
ad NOUN
absurdum NOUN
of ADP
the DET
extreme ADJ
" PUNCT
There PRON
've AUX
got VERB
tobe NOUN
controlled VERB
studies NOUN
" PUNCT
position NOUN
is AUX
an DET
NLP PROPN
technique NOUN
called VERB
the DET
FastPhobia PROPN
/ SYM
Trauma PROPN
Cure PROPN
. PUNCT
Simple ADJ
phobias NOUN
( PUNCT
as SCONJ
opposed VERB
to ADP
agoraphobia PROPN
) PUNCT
may AUX
not PART
be AUX
the DET
world NOUN
's PART
most ADV
important ADJ
psychological ADJ
disorder NOUN
, PUNCT
but CCONJ
the DET
nice ADJ
thing NOUN
about ADP
them PRON
is AUX
that SCONJ
it PRON
does AUX
n't PART
take VERB
a DET
sophisticated ADJ
instrument NOUN
to PART
diagnose VERB
them PRON
or CCONJ
tell VERB
when ADV
someone PRON
is AUX
cured VERB
of ADP
one NUM
. PUNCT
  SPACE
The DET
NLP PROPN
phobia PROPN
cure NOUN
is AUX
a DET
simple ADJ
visualization NOUN
which PRON
requires VERB
less ADJ
than SCONJ
15 NUM
minutes NOUN
. PUNCT
  SPACE
( PUNCT
NLPers PROPN
claim NOUN
thatit NOUN
can AUX
also ADV
be AUX
used VERB
to PART
neutralize VERB
a DET
traumatic ADJ
memory NOUN
, PUNCT
and CCONJ
hence ADV
isuseful ADJ
in ADP
treating VERB
Post ADJ
- ADJ
traumatic ADJ
Stress PROPN
Syndrome PROPN
. PUNCT
) PUNCT
  SPACE
It PRON
is AUX
essentiallya ADJ
variation NOUN
on ADP
the DET
classic ADJ
desensitization NOUN
process NOUN
used VERB
by ADP
behavioraltherapists NOUN
. PUNCT
  SPACE
A DET
subject NOUN
only ADV
needs VERB
to PART
be AUX
taken VERB
through ADP
the DET
technique NOUN
once(or NOUN
, PUNCT
in ADP
the DET
case NOUN
of ADP
PTSD PROPN
, PUNCT
once ADV
for ADP
each DET
traumatic ADJ
incident NOUN
) PUNCT
. PUNCT
  SPACE
Theprocess NOUN
does AUX
n't PART
need VERB
to PART
be AUX
repeated VERB
and CCONJ
the DET
subject NOUN
does AUX
n't PART
need VERB
topractice VERB
it PRON
over ADP
again ADV
at ADP
home NOUN
. PUNCT
Now ADV
to ADP
me PRON
, PUNCT
it PRON
seems VERB
pretty ADV
easy ADJ
to PART
test VERB
the DET
effectiveness NOUN
of ADP
this DET
cure NOUN
. PUNCT
( PUNCT
Especially ADV
if SCONJ
, PUNCT
as SCONJ
NLPers PROPN
claim NOUN
, PUNCT
the DET
success NOUN
rate NOUN
is AUX
extremely ADV
high ADJ
. PUNCT
) PUNCT
  SPACE
Take VERB
someone PRON
with ADP
a DET
fear NOUN
of ADP
heights NOUN
( PUNCT
as SCONJ
I PRON
used VERB
to PART
have AUX
) PUNCT
. PUNCT
  SPACE
Take VERB
them PRON
up ADP
to ADP
a DET
balcony NOUN
on ADP
the DET
20th ADJ
floor NOUN
and CCONJ
observe VERB
their PRON
response NOUN
. PUNCT
  SPACE
Spend VERB
15 NUM
minutes NOUN
to PART
have AUX
them PRON
do AUX
the DET
simple ADJ
visualization NOUN
. PUNCT
  SPACE
Send VERB
them PRON
back ADV
up ADP
to ADP
the DET
balcony NOUN
and CCONJ
see VERB
if SCONJ
things NOUN
have AUX
changed VERB
. PUNCT
  SPACE
Check VERB
back ADV
with ADP
them PRON
in ADP
a DET
few ADJ
weeks NOUN
to PART
see VERB
if SCONJ
the DET
cure NOUN
seems VERB
to PART
be AUX
lasting VERB
. PUNCT
  SPACE
( PUNCT
More ADV
long ADJ
term NOUN
follow NOUN
- PUNCT
up NOUN
is AUX
certainly ADV
desirable ADJ
, PUNCT
but CCONJ
from ADP
a DET
scientific ADJ
point NOUN
of ADP
view NOUN
even ADV
a DET
cure NOUN
that PRON
lasts VERB
several ADJ
weeks NOUN
has AUX
significance NOUN
. PUNCT
  SPACE
In ADP
any DET
case NOUN
, PUNCT
there PRON
are AUX
many ADJ
known VERB
cases NOUN
where ADV
the DET
cure NOUN
has AUX
lasted VERB
years NOUN
. PUNCT
  SPACE
To ADP
the DET
best ADJ
of ADP
my PRON
knowledge NOUN
, PUNCT
there PRON
is AUX
no DET
known VERB
case NOUN
where ADV
the DET
cure NOUN
has AUX
been AUX
reversed VERB
after ADP
holding VERB
for ADP
a DET
few ADJ
weeks NOUN
. PUNCT
) PUNCT
  SPACE
( PUNCT
My PRON
own ADJ
cure NOUN
, PUNCT
incidentally ADV
, PUNCT
was AUX
donewith VERB
a DET
slightly ADV
different ADJ
NLP NOUN
technique NOUN
, PUNCT
before ADP
I PRON
learned VERB
of ADP
the DET
Fast PROPN
Phobia PROPN
/ SYM
Trauma PROPN
Cure PROPN
. PUNCT
  SPACE
Ten NUM
years NOUN
later ADV
now ADV
, PUNCT
I PRON
enjoy VERB
living VERB
on ADP
the DET
17thfloor NUM
of ADP
my PRON
building NOUN
and CCONJ
having VERB
a DET
large ADJ
balcony NOUN
. PUNCT
) PUNCT
  SPACE
The DET
folks NOUN
over ADP
in ADP
sci.psychology PROPN
have AUX
a DET
hundred NUM
and CCONJ
one NOUN
excuses NOUN
not PART
tomake VERB
this DET
simple ADJ
test NOUN
. PUNCT
  SPACE
They PRON
claim VERB
that SCONJ
only ADV
an DET
elaborate ADJ
outcome NOUN
studywill NOUN
be AUX
satisfactory ADJ
--- PUNCT
a DET
study NOUN
of ADP
the DET
sort NOUN
that PRON
NLP PROPN
practitioners NOUN
, PUNCT
many DET
of ADP
whom PRON
make VERB
a DET
barely ADV
marginal ADJ
living NOUN
from ADP
their PRON
practice NOUN
, PUNCT
can AUX
ill ADV
afford VERB
to PART
do AUX
. PUNCT
  SPACE
( PUNCT
Most ADJ
of ADP
them PRON
are AUX
also ADV
just ADV
plain ADJ
not PART
interested ADJ
, PUNCT
because SCONJ
the DET
whole ADJ
idea NOUN
seems VERB
frivolous ADJ
. PUNCT
  SPACE
And CCONJ
since SCONJ
they PRON
're AUX
not PART
part NOUN
of ADP
thescientific ADJ
establishment NOUN
, PUNCT
they PRON
have AUX
no DET
tangible ADJ
rewards NOUN
to PART
gain VERB
from ADP
scientific ADJ
acceptance NOUN
. PUNCT
) PUNCT
The DET
Fast PROPN
Phobia PROPN
/ SYM
Trauma PROPN
Cure PROPN
is AUX
over ADP
ten NUM
years NOUN
old ADJ
now ADV
and CCONJ
the DET
clinical ADJ
psychology NOUN
establishment NOUN
is AUX
still ADV
saying VERB
" PUNCT
We PRON
do AUX
n't PART
have AUX
any DET
way NOUN
of ADP
knowing VERB
that SCONJ
it PRON
's AUX
effective ADJ
. PUNCT
" PUNCT
  SPACE
These DET
academics NOUN
themselves PRON
have AUX
the DET
resources NOUN
to PART
do AUX
a DET
study NOUN
as ADV
elaborate ADJ
as SCONJ
anyone PRON
could AUX
want VERB
, PUNCT
of ADP
course NOUN
, PUNCT
but CCONJ
they PRON
say VERB
  SPACE
" PUNCT
Why ADV
should AUX
I PRON
prove VERB
your PRON
theory NOUN
? PUNCT
" PUNCT
  SPACE
and CCONJ
  SPACE
" PUNCT
The DET
burden NOUN
of ADP
proof NOUN
is AUX
on ADP
the DET
one NOUN
making VERB
the DET
claim NOUN
. PUNCT
" PUNCT
  SPACE
One NUM
academic NOUN
in ADP
sci.psychology PROPN
said VERB
that SCONJ
it PRON
would AUX
be AUX
completely ADV
unscientific ADJ
for ADP
him PRON
to PART
test VERB
the DET
phobia PROPN
cure NOUN
since SCONJ
it PRON
has AUX
n't PART
been AUX
described VERB
in ADP
a DET
scientific ADJ
journal NOUN
. PUNCT
  SPACE
( PUNCT
It PRON
's AUX
described VERB
in ADP
a DET
number NOUN
of ADP
books NOUN
and CCONJ
I PRON
've AUX
posted VERB
articles NOUN
in ADP
sci.psychology PROPN
describing VERB
it PRON
in ADP
as ADV
much ADJ
detail NOUN
as SCONJ
I PRON
'm AUX
capable ADJ
of ADP
. PUNCT
) PUNCT
  SPACE
Actually ADV
, PUNCT
at ADV
least ADV
one NUM
fairly ADV
careful ADJ
academic ADJ
study NOUN
has AUX
been AUX
done VERB
( PUNCT
with ADP
favorable ADJ
results NOUN
) PUNCT
, PUNCT
but CCONJ
it PRON
's AUX
apparently ADV
not PART
acceptable ADJ
because SCONJ
it PRON
's AUX
adoctoral ADJ
dissertation NOUN
and CCONJ
not PART
published VERB
in ADP
a DET
refereed NOUN
journal NOUN
. PUNCT
To ADP
me PRON
, PUNCT
this DET
sort NOUN
of ADP
attitude NOUN
does AUX
not PART
advance VERB
science NOUN
but CCONJ
hinders VERB
it PRON
. PUNCT
  SPACE
This DET
is AUX
the DET
kind NOUN
of ADP
thing NOUN
I PRON
have AUX
in ADP
mind NOUN
when ADV
I PRON
talk VERB
about ADP
" PUNCT
doctrinnaire NOUN
" PUNCT
attitudes NOUN
about ADP
science NOUN
. PUNCT
  SPACE
Now ADV
maybe ADV
I PRON
have AUX
been AUX
unfair ADJ
in ADP
imputing VERB
such ADJ
attitudes NOUN
to ADP
you PRON
, PUNCT
Russell PROPN
. PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
I PRON
apologize VERB
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58911From NUM
: PUNCT
steveo@world.std.com NOUN
( PUNCT
Steven PROPN
W PROPN
Orr)Subject ADP
: PUNCT
Need VERB
to PART
find VERB
information NOUN
about ADP
current ADJ
trends NOUN
in ADP
diabetes NOUN
. PUNCT
I PRON
looked VERB
for ADP
diab PROPN
in ADP
my PRON
.newsrc NOUN
and CCONJ
came VERB
up ADP
with ADP
nuthin NOUN
. PUNCT
Anyone PRON
haveany ADJ
good ADJ
sources NOUN
for ADP
where ADV
I PRON
can AUX
read VERB
? PUNCT
In ADP
particular ADJ
, PUNCT
I PRON
'm AUX
interestedin PROPN
finding VERB
out ADP
more ADV
about ADP
intravenous ADJ
insulin NOUN
injection NOUN
for ADP
hepaticvein PROPN
liver NOUN
activation NOUN
. PUNCT
( PUNCT
Whew INTJ
! PUNCT
Wotta VERB
mouthful!)Anything VERB
that DET
smells VERB
like SCONJ
a DET
pointer NOUN
would AUX
be AUX
helpful ADJ
: PUNCT
newsgroup PROPN
, PUNCT
mailinglist NOUN
, PUNCT
etc X
.... PUNCT
Many ADJ
thanks.-- NUM
----------Time ADJ
flies NOUN
like SCONJ
the DET
wind NOUN
. PUNCT
Fruit NOUN
flies NOUN
like SCONJ
bananas.------------------Steven PROPN
W. PROPN
Orr PROPN
      SPACE
steveo@world.std.com PROPN
     SPACE
uunet!world!steveo----------Everybody NOUN
repeat NOUN
after ADP
me PRON
: PUNCT
" PUNCT
We PRON
are AUX
all DET
individuals NOUN
. PUNCT
"-----------------Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58912From NUM
: PUNCT
Mark PROPN
W. PROPN
DubinSubject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskrsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>Some ADJ
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
> X
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that DET
carcinogens VERB
> X
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
> X
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
> X
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
> X
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
I PRON
recall VERB
that SCONJ
the DET
issue NOUN
is AUX
that SCONJ
fat NOUN
on ADP
the DET
meat NOUN
liquifies NOUN
and CCONJ
thendrips NOUN
down ADP
onto ADP
the DET
hot ADJ
elements NOUN
-- PUNCT
whatever PRON
they PRON
are AUX
-- PUNCT
that SCONJ
the DET
extremeheat NOUN
then ADV
catalyzes VERB
something PRON
in ADP
the DET
fat NOUN
into ADP
one NUM
or CCONJ
morecarcinogens NOUN
which PRON
then ADV
are AUX
carried VERB
back ADP
up ADP
onto ADP
the DET
meat NOUN
in ADP
the DET
smoke.--the PROPN
ol' ADJ
professorNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58913From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskThis PROPN
reminds VERB
me PRON
of ADP
the DET
last ADJ
Graham PROPN
Kerr PROPN
cooking NOUN
show NOUN
I PRON
saw VERB
. PUNCT
  SPACE
Today NOUN
hesmoked VERB
meat NOUN
on ADP
the DET
stovetop NOUN
in ADP
a DET
big ADJ
pot NOUN
! PUNCT
  SPACE
He PRON
used VERB
a DET
strange ADJ
techniqueI'd PUNCT
never ADV
seen VERB
before ADV
. PUNCT
He PRON
took VERB
a DET
big ADJ
pot NOUN
with ADP
lid NOUN
, PUNCT
and CCONJ
placed VERB
a DET
tray NOUN
in ADP
it PRON
made VERB
from ADP
aluminum NOUN
foil NOUN
. PUNCT
The DET
tray NOUN
was AUX
about ADP
the DET
size NOUN
and CCONJ
shape NOUN
of ADP
a DET
typical ADJ
coffee NOUN
- PUNCT
table NOUN
ash NOUN
tray NOUN
, PUNCT
made VERB
by ADP
crumpling VERB
a DET
sheet NOUN
of ADP
foil NOUN
around ADP
the DET
edges NOUN
. PUNCT
In ADP
the DET
tray NOUN
, PUNCT
he PRON
placed VERB
a DET
couple NOUN
spoonfuls NOUN
of ADP
brown ADJ
sugar NOUN
, PUNCT
a DET
similarquantity NOUN
of ADP
brown ADJ
rice PROPN
( PUNCT
he PRON
said VERB
any DET
rice NOUN
will AUX
do AUX
) PUNCT
, PUNCT
the DET
contents NOUN
of ADP
twoteabags NOUN
of ADP
Earl PROPN
Grey PROPN
tea NOUN
, PUNCT
and CCONJ
a DET
few ADJ
cloves NOUN
. PUNCT
On ADP
top NOUN
of ADP
this DET
was AUX
placed VERB
an DET
ordinary ADJ
aluminum NOUN
basket NOUN
- PUNCT
type NOUN
steamer NOUN
, PUNCT
withtwo VERB
chicken NOUN
breasts NOUN
in ADP
it PRON
. PUNCT
  SPACE
The DET
lid NOUN
was AUX
put VERB
on ADP
, PUNCT
and CCONJ
the DET
whole ADJ
assemblywent NOUN
on ADP
the DET
stovetop NOUN
at ADP
high ADJ
heat NOUN
for ADP
10 NUM
or CCONJ
12 NUM
minutes NOUN
. PUNCT
Later ADV
, PUNCT
he PRON
removed VERB
what PRON
looked VERB
like SCONJ
smoked VERB
chicken NOUN
breasts NOUN
. PUNCT
  SPACE
What PRON
surprisesand NOUN
concerns VERB
me PRON
are:1 INTJ
) PUNCT
  SPACE
No DET
wood NOUN
chips NOUN
. PUNCT
  SPACE
Where ADV
does AUX
the DET
smoke NOUN
flavor NOUN
come VERB
from?2 PROPN
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
hearing VERB
that SCONJ
carmel PROPN
color NOUN
    SPACE
( PUNCT
obtained VERB
by ADP
caramelizing VERB
sugar NOUN
-- PUNCT
a DET
common ADJ
coloring NOUN
and CCONJ
flavoring VERB
    SPACE
agent NOUN
) PUNCT
had AUX
been AUX
found VERB
to PART
be AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
believe VERB
they PRON
injected VERB
    SPACE
it PRON
under ADP
the DET
skin NOUN
of ADP
rats NOUN
, PUNCT
or CCONJ
something PRON
. PUNCT
  SPACE
If SCONJ
the DET
results NOUN
were AUX
conclusive ADJ
, PUNCT
    SPACE
caramel NOUN
color NOUN
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
, PUNCT
yet CCONJ
it PRON
is AUX
still ADV
being AUX
    SPACE
used VERB
. PUNCT
  SPACE
Was AUX
the DET
initial ADJ
research NOUN
result NOUN
found VERB
to PART
be AUX
incorrect ADJ
, PUNCT
or CCONJ
what?3 PROPN
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
Earl PROPN
Grey PROPN
tea NOUN
being AUX
implicated VERB
    SPACE
as SCONJ
carcinogenic ADJ
, PUNCT
because SCONJ
it PRON
contains VERB
oil NOUN
of ADP
bergamot NOUN
( PUNCT
an DET
extract NOUN
    SPACE
from ADP
the DET
skin NOUN
of ADP
a DET
type NOUN
of ADP
citrus ADJ
fruit NOUN
) PUNCT
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
whatever PRON
    SPACE
happened VERB
with ADP
that DET
story NOUN
? PUNCT
  SPACE
If SCONJ
it PRON
were AUX
carcinogenic ADJ
, PUNCT
Earl PROPN
Grey PROPN
tea NOUN
    SPACE
could AUX
not PART
have AUX
it PRON
as SCONJ
an DET
additive ADJ
, PUNCT
yet CCONJ
it PRON
apparently ADV
continues VERB
to PART
do AUX
    SPACE
so ADV
. PUNCT
WRT PROPN
natural ADJ
wood NOUN
smoke NOUN
( PUNCT
I PRON
've AUX
smoking VERB
a DET
duck NOUN
right ADV
now ADV
, PUNCT
as SCONJ
it PRON
happens),I've VERB
noticed VERB
that SCONJ
a DET
heavily ADV
- PUNCT
smoked VERB
food NOUN
item NOUN
will AUX
have AUX
an DET
unpleasant ADJ
tangytaste NOUN
when ADV
eaten VERB
directly ADV
out SCONJ
of ADP
the DET
smoker NOUN
if SCONJ
the DET
smoke NOUN
has AUX
only ADV
recentlystopped VERB
flowing VERB
. PUNCT
  SPACE
I PRON
find VERB
the DET
best ADJ
taste NOUN
to PART
be AUX
had VERB
by ADP
using VERB
dry ADJ
wood NOUN
chips NOUN
, PUNCT
getting VERB
lots NOUN
of ADP
smoke NOUN
right ADV
up ADV
at ADP
the DET
beginning NOUN
of ADP
the DET
cooking NOUN
process NOUN
, PUNCT
then ADV
slowly ADV
barbequing VERB
for ADP
hours NOUN
and CCONJ
hours NOUN
without ADP
adding VERB
additional ADJ
wood NOUN
chips NOUN
. PUNCT
My PRON
theory NOUN
is AUX
that SCONJ
the DET
unpleasant ADJ
tangy ADJ
molecules NOUN
are AUX
low ADJ
- PUNCT
molecular ADJ
weightstuff PROPN
, PUNCT
like SCONJ
terpenes NOUN
, PUNCT
and CCONJ
that SCONJ
the DET
smoky ADJ
flavor NOUN
molecules NOUN
are AUX
some DET
sortof NOUN
larger ADJ
molecule VERB
more ADV
similar ADJ
to ADP
tar PROPN
. PUNCT
  SPACE
The DET
long ADJ
barbeque NOUN
time NOUN
afterthe PROPN
initial ADJ
intensive ADJ
smoke NOUN
drives VERB
off ADP
the DET
low ADJ
- PUNCT
molecular ADJ
weight NOUN
stuff NOUN
, PUNCT
just ADV
leaving VERB
the DET
flavor NOUN
behind ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
if SCONJ
my PRON
theory NOUN
is AUX
correct?I PROPN
also ADV
remember VERB
hearing VERB
that SCONJ
the DET
combustion NOUN
products NOUN
of ADP
fat NOUN
drippingon NOUN
the DET
charcoal NOUN
and CCONJ
burning NOUN
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
For ADP
that DET
reason NOUN
, PUNCT
and CCONJ
becauseit NOUN
covers VERB
the DET
product NOUN
with ADP
soot NOUN
and CCONJ
some DET
unpleasant ADJ
tanginess NOUN
, PUNCT
I PRON
only ADV
grillnon ADJ
- ADJ
drippy ADJ
meats NOUN
like SCONJ
prawns NOUN
directly ADV
over ADP
hot ADJ
coals NOUN
. PUNCT
  SPACE
I PRON
do AUX
stuff NOUN
like SCONJ
thisduck NOUN
by ADP
indirect ADJ
heat NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
long ADJ
rectangular ADJ
Weber PROPN
, PUNCT
and CCONJ
I PRON
put VERB
the DET
coalsat NOUN
one NUM
end NOUN
and CCONJ
the DET
meat NOUN
at ADP
the DET
other ADJ
end NOUN
. PUNCT
  SPACE
The DET
fat NOUN
drops VERB
directly ADV
on ADP
thefloor NOUN
below ADP
the DET
meat NOUN
, PUNCT
and CCONJ
next ADJ
time NOUN
I PRON
use VERB
the DET
barbeque NOUN
I PRON
make VERB
the DET
firein NOUN
that DET
end NOUN
to PART
burn VERB
off ADP
the DET
fat NOUN
and CCONJ
help VERB
ignite VERB
the DET
coals NOUN
. PUNCT
And CCONJ
yet ADV
another DET
reason NOUN
I PRON
've AUX
heard VERB
not PART
to PART
smoke VERB
or CCONJ
barbeque NOUN
meat NOUN
is AUX
thatsmoked VERB
cured VERB
meat NOUN
, PUNCT
like SCONJ
pork NOUN
sausage NOUN
and CCONJ
bacon NOUN
, PUNCT
containsnitrosamines NOUN
, PUNCT
which PRON
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
'm AUX
pretty ADV
sure ADJ
this DET
claim NOUN
actuallyhas VERB
some DET
standing NOUN
, PUNCT
do AUX
n't PART
know VERB
about ADP
the DET
others NOUN
. PUNCT
An DET
amusing ADJ
incident NOUN
I PRON
recall VERB
was AUX
the DET
Duncan PROPN
Hines PROPN
scandal NOUN
, PUNCT
when ADV
it PRON
wasdiscovered VERB
that SCONJ
the DET
people NOUN
who PRON
make VERB
Duncan PROPN
Hines PROPN
cake NOUN
mix NOUN
were AUX
puttinga PROPN
lot NOUN
of ADP
ethylene NOUN
dibromide NOUN
( PUNCT
EDB PROPN
) PUNCT
into ADP
the DET
cake NOUN
mix NOUN
to PART
suppress VERB
weevils NOUN
. PUNCT
This DET
is AUX
a DET
fumigant NOUN
which PRON
is AUX
known VERB
to PART
be AUX
carcinogenic ADJ
. PUNCT
The DET
guy NOUN
who PRON
represented VERB
the DET
company NOUN
in ADP
the DET
press NOUN
conference NOUN
defendedhimself PRON
by ADP
saying VERB
that SCONJ
the DET
risk NOUN
from ADP
eating VERB
Duncan PROPN
Hines PROPN
products NOUN
every DET
dayfor NOUN
a DET
year NOUN
would AUX
be AUX
equal ADJ
to ADP
the DET
cancer NOUN
risk NOUN
from ADP
eating VERB
two NUM
charcoal NOUN
- PUNCT
broiled VERB
steaks NOUN
. PUNCT
  SPACE
What PRON
a DET
great ADJ
analogy NOUN
! PUNCT
  SPACE
When ADV
I PRON
first ADV
heard VERB
that SCONJ
, PUNCT
myimmediate NOUN
reaction NOUN
was AUX
we PRON
should AUX
make VERB
that SCONJ
a DET
standard ADJ
unit NOUN
! PUNCT
  SPACE
One NUM
charcoalbroiled VERB
steak NOUN
would AUX
be AUX
equivalent ADJ
to ADP
0.5 NUM
Duncans!Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58914From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
Brain NOUN
abscess ADV
" PUNCT
definition NOUN
neededIn PROPN
article NOUN
< X
1993Apr8.123213.1@tardis.mdcorp.ksc.nasa.gov PROPN
> X
fresa@tardis.mdcorp.ksc.nasa.gov PROPN
writes:>Could AUX
someone PRON
please INTJ
define VERB
a DET
" PUNCT
brain NOUN
abscess NOUN
" PUNCT
for ADP
me PRON
? PUNCT
A DET
relative NOUN
has AUX
one NUM
near SCONJ
> X
his PRON
cerebellum NOUN
. PUNCT
A DET
brain NOUN
abscess ADV
is AUX
an DET
infection NOUN
deep ADJ
in ADP
the DET
brain NOUN
substance NOUN
. PUNCT
  SPACE
It PRON
ishard VERB
to PART
cure VERB
with ADP
antibiotics NOUN
, PUNCT
since SCONJ
it PRON
gets VERB
walled VERB
off ADP
, PUNCT
and CCONJ
usually ADV
, PUNCT
it PRON
needs VERB
surgical ADJ
drainage.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58915From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
HYPOGLYCEMIA PROPN
> X
From ADP
: PUNCT
anello@adcs00.fnal.gov PROPN
( PUNCT
Anthony PROPN
Anello)>Can PROPN
anyone PRON
tell VERB
me PRON
if SCONJ
a DET
bloodcount NOUN
of ADP
40 NUM
when ADV
diagnosed VERB
as SCONJ
hypoglycemic PROPN
is AUX
> PROPN
dangerous ADJ
, PUNCT
i.e. X
indicates VERB
a DET
possible ADJ
pancreatic ADJ
problem NOUN
? PUNCT
  SPACE
One NUM
Dr. PROPN
says VERB
no INTJ
, PUNCT
the DET
> X
other ADJ
( PUNCT
not PART
his PRON
specialty NOUN
) PUNCT
says VERB
the DET
first ADJ
is AUX
negligent ADJ
and CCONJ
that SCONJ
another DET
bloodBlood NOUN
glucose NOUN
levels NOUN
of ADP
40 NUM
or CCONJ
so ADV
are AUX
common ADJ
several ADJ
hours NOUN
after ADP
abig PROPN
meal PROPN
. PUNCT
  SPACE
This DET
level NOUN
will AUX
usually ADV
not PART
cause VERB
symptoms.>test ADJ
should AUX
be AUX
done VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
what PRON
is AUX
a DET
good ADJ
diet NOUN
( PUNCT
what PRON
has AUX
worked VERB
) PUNCT
for ADP
a DET
hypo->glycemic?If NOUN
you PRON
mean VERB
" PUNCT
reactive VERB
" PUNCT
hypoglycemia NOUN
, PUNCT
there PRON
are AUX
usually ADV
no DET
symptoms NOUN
, PUNCT
hence ADV
there PRON
is AUX
no DET
disease NOUN
, PUNCT
hence ADV
the DET
dietary ADJ
recommendations NOUN
are AUX
thesame ADJ
as SCONJ
for ADP
anyone PRON
else ADV
. PUNCT
  SPACE
If SCONJ
a DET
patient NOUN
complains VERB
of ADP
dizziness NOUN
, PUNCT
faintness NOUN
, PUNCT
sweating NOUN
, PUNCT
palpitations NOUN
, PUNCT
etc X
. PUNCT
reliably ADV
several ADJ
hours NOUN
aftera PROPN
big ADJ
meal PROPN
, PUNCT
the DET
recommendations NOUN
are AUX
obvious ADJ
- PUNCT
eat VERB
smaller ADJ
meals.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                                                             SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58916From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemML NOUN
> X
From ADP
: PUNCT
libman@hsc.usc.edu PROPN
( PUNCT
Marlena PROPN
Libman)ML NOUN
> X
I PRON
need VERB
advice NOUN
with ADP
a DET
situation NOUN
which PRON
occurred VERB
between ADP
me PRON
and CCONJ
a DET
physicanML PROPN
> X
which PRON
upset VERB
me PRON
. PUNCT
ML PROPN
> X
My PRON
questions NOUN
: PUNCT
( PUNCT
1 X
) PUNCT
Should AUX
I PRON
continue VERB
to PART
have AUX
this DET
doctor NOUN
manage VERB
my PRON
care?That PROPN
's PART
easy ADJ
: PUNCT
  SPACE
No INTJ
. PUNCT
  SPACE
You PRON
would AUX
n't PART
take VERB
your PRON
computer NOUN
into ADP
a DET
repairshop NOUN
where ADV
they PRON
were AUX
rude ADJ
to ADP
you PRON
, PUNCT
even ADV
if SCONJ
they PRON
were AUX
competent ADJ
intheir PROPN
business NOUN
. PUNCT
  SPACE
Why ADV
would AUX
you PRON
take VERB
your PRON
own ADJ
body NOUN
into ADP
a DET
" PUNCT
repairshop NOUN
" PUNCT
where ADV
the DET
" PUNCT
repairman NOUN
" PUNCT
has AUX
such DET
a DET
bad ADJ
attitude?--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                              SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58917From NUM
: PUNCT
slyx0@cc.usu.eduSubject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>>Between NOUN
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
you>>provide PROPN
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to ADP
articles>>disputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
> X
> X
You PRON
mean VERB
" PUNCT
asserting VERB
" PUNCT
. PUNCT
  SPACE
You PRON
're AUX
being AUX
intellectually ADV
dishonest ADJ
( PUNCT
or CCONJ
just ADV
> X
plain ADV
confused ADJ
) PUNCT
, PUNCT
because SCONJ
you PRON
're AUX
conflating VERB
reports NOUN
which PRON
do AUX
not PART
necessarily ADV
> X
have AUX
anything PRON
to PART
do AUX
with ADP
each DET
other ADJ
. PUNCT
  SPACE
Olney PROPN
's PART
reports NOUN
would AUX
argue VERB
a DET
potential ADJ
> X
for ADP
problems NOUN
in ADP
human ADJ
infants NOUN
, PUNCT
but CCONJ
that DET
's AUX
not PART
to PART
say VERB
that SCONJ
this DET
says VERB
anything PRON
> X
whatsoever ADV
about ADP
the DET
use NOUN
of ADP
MSG NOUN
in ADP
most ADJ
foods NOUN
, PUNCT
nor CCONJ
does AUX
he PRON
provide VERB
any DET
> NUM
studies NOUN
in ADP
humans NOUN
which PRON
indicate VERB
any DET
deleterious ADJ
effects NOUN
( PUNCT
for ADP
obvious ADJ
> X
reasons NOUN
. PUNCT
) PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
MSG PROPN
's PART
contribtion NOUN
to ADP
the DET
phenomenon NOUN
> X
of ADP
the DET
" PUNCT
Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
the DET
frequent ADJ
> X
inability NOUN
to PART
replicate VERB
anecdotal ADJ
reports NOUN
of ADP
MSG NOUN
sensitivity NOUN
in ADP
the DET
lab NOUN
. PUNCT
Okay INTJ
Mr. PROPN
Dyer PROPN
, PUNCT
we PRON
're AUX
properly ADV
impressed ADJ
with ADP
your PRON
philosophical ADJ
skills NOUN
andability NOUN
to PART
insult VERB
people NOUN
. PUNCT
You PRON
're AUX
a DET
wonderful ADJ
speaker NOUN
and CCONJ
an DET
adept ADJ
politician NOUN
. PUNCT
However ADV
, PUNCT
I PRON
believe VERB
that SCONJ
all DET
you PRON
were AUX
asked VERB
to PART
do AUX
, PUNCT
was AUX
simply ADV
provide VERB
scientificresearch NOUN
refuting VERB
the DET
work NOUN
of ADP
Olney PROPN
. PUNCT
I PRON
do AUX
n't PART
think VERB
the DET
original ADJ
poster NOUN
soughtto NOUN
start VERB
a DET
philisophical ADJ
debate NOUN
. PUNCT
she PRON
wanted VERB
some DET
information NOUN
. PUNCT
Given VERB
a DET
littleeffort NOUN
one PRON
could AUX
justify VERB
that SCONJ
shooting VERB
oneself PRON
with ADP
a DET
.45 NUM
before ADP
breakfast NOUN
is AUX
ahealthy ADJ
practice NOUN
. PUNCT
But CCONJ
we PRON
're AUX
not PART
particularily ADV
interested ADJ
in ADP
what PRON
you PRON
canverbally ADV
prove VERB
/ SYM
disprove VERB
or CCONJ
rationalize VERB
. PUNCT
Where ADV
's AUX
the DET
research NOUN
? PUNCT
Where ADV
are AUX
thestudies?I NOUN
appoligize VERB
if SCONJ
this DET
sounds VERB
flamish ADJ
. PUNCT
I PRON
simply ADV
would AUX
like VERB
to PART
see VERB
the DET
thread NOUN
getback VERB
on ADP
track NOUN
. PUNCT
Lone PROPN
Wolf PROPN
                                      SPACE
Happy PROPN
are AUX
they PRON
who PRON
dream VERB
dreams NOUN
, PUNCT
Ed PROPN
Philips PROPN
                            SPACE
And CCONJ
pay VERB
the DET
price NOUN
to PART
see VERB
them PRON
come VERB
true.slyx0@cc.usu.edu PROPN
                                                                                                            SPACE
-unknownNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58918From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
dubin.735083450@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
> X
dubin@spot.colorado.edu PROPN
writes:>>I NOUN
recall NOUN
that SCONJ
the DET
issue NOUN
is AUX
that SCONJ
fat NOUN
on ADP
the DET
meat NOUN
liquifies NOUN
and CCONJ
then ADV
> X
drips VERB
down ADP
onto ADP
the DET
hot ADJ
elements NOUN
-- PUNCT
whatever PRON
they PRON
are AUX
-- PUNCT
that SCONJ
the DET
extreme ADJ
> X
heat NOUN
then ADV
catalyzes VERB
something PRON
in ADP
the DET
fat NOUN
into ADP
one NUM
or CCONJ
more ADJ
> X
carcinogens NOUN
which PRON
then ADV
are AUX
carried VERB
back ADP
up ADP
onto ADP
the DET
meat NOUN
in ADP
the DET
smoke NOUN
. PUNCT
> X
Hmmm PROPN
. PUNCT
Care VERB
to PART
be AUX
more ADJ
vague?=======================================Howard NOUN
  SPACE
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58919From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sleeping VERB
Pill PROPN
ODIn NOUN
article NOUN
< X
1993Apr9.051039.715@scott.skidmore.edu NUM
> X
dfederma@scott.skidmore.edu PROPN
( PUNCT
daniel PROPN
federman PROPN
) PUNCT
writes:>>A PROPN
friend NOUN
of ADP
mine NOUN
took VERB
appoximately ADV
60 NUM
CVS PROPN
sleeping NOUN
pills NOUN
, PUNCT
each DET
> X
containing VERB
25 NUM
mg NOUN
of ADP
diphenhydramine PROPN
, PUNCT
I PRON
think VERB
. PUNCT
  SPACE
That DET
's AUX
1500 NUM
mg NOUN
, PUNCT
total ADJ
. PUNCT
> X
	 SPACE
I PRON
'm AUX
worried ADJ
, PUNCT
though ADV
, PUNCT
about ADP
the DET
long ADJ
- PUNCT
term NOUN
effects NOUN
. PUNCT
  SPACE
Since SCONJ
he PRON
> X
never ADV
had AUX
his PRON
stomach NOUN
pumped VERB
, PUNCT
will AUX
he PRON
have AUX
liver NOUN
or CCONJ
brain NOUN
damage NOUN
? PUNCT
  SPACE
Any DET
> ADJ
information NOUN
would AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
Shouldn't NOUN
have AUX
. PUNCT
  SPACE
But CCONJ
he PRON
may AUX
need VERB
to PART
see VERB
the DET
shrink NOUN
about ADP
why ADV
hewanted VERB
to PART
kill VERB
himself PRON
. PUNCT
  SPACE
Depressed ADJ
people NOUN
can AUX
be AUX
succesfully ADV
treatedusually.-- ADP
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58920From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
request NOUN
for ADP
information NOUN
on ADP
" PUNCT
essential ADJ
tremor NOUN
" PUNCT
and CCONJ
Indrol?In PUNCT
article NOUN
< X
1q1tbnINNnfn@life.ai.mit.edu NUM
> X
sundar@ai.mit.edu NUM
writes VERB
: PUNCT
Essential ADJ
tremor NOUN
is AUX
a DET
progressive ADJ
hereditary ADJ
tremor NOUN
that PRON
gets VERB
worsewhen PROPN
the DET
patient NOUN
tries VERB
to PART
use VERB
the DET
effected ADJ
member NOUN
. PUNCT
  SPACE
All DET
limbs NOUN
, PUNCT
vocalcords NOUN
, PUNCT
and CCONJ
head NOUN
can AUX
be AUX
involved VERB
. PUNCT
  SPACE
Inderal PROPN
is AUX
a DET
beta NOUN
- PUNCT
blocker NOUN
andis PROPN
usually ADV
effective ADJ
in ADP
diminishing VERB
the DET
tremor NOUN
. PUNCT
  SPACE
Alcohol PROPN
and CCONJ
mysolineare NOUN
also ADV
effective ADJ
, PUNCT
but CCONJ
alcohol NOUN
is AUX
too ADV
toxic ADJ
to PART
use VERB
as SCONJ
a DET
treatment.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58921From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)hbloom@moose.uvm.edu PUNCT
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>Nutrasweet NOUN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
than SCONJ
> X
sugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
> X
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
to ADP
> X
for ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
> X
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehyde NOUN
> X
produced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
to ADP
> VERB
living NOUN
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
> X
Phenylalanine PROPN
is AUX
> X
nothing PRON
for ADP
you PRON
to PART
worry VERB
about ADP
. PUNCT
  SPACE
It PRON
is AUX
an DET
amino ADJ
acid NOUN
, PUNCT
and CCONJ
everyone PRON
uses VERB
small ADJ
> X
quantities NOUN
of ADP
it PRON
for ADP
protein NOUN
synthesis NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
Some DET
people NOUN
have AUX
a DET
disease NOUN
> X
known VERB
as SCONJ
phenylketoneurea NOUN
, PUNCT
and CCONJ
they PRON
are AUX
missing VERB
the DET
enzyme NOUN
necessary ADJ
to PART
> X
degrade VERB
this DET
compound NOUN
and CCONJ
eliminate VERB
it PRON
from ADP
the DET
body NOUN
. PUNCT
  SPACE
For ADP
them PRON
, PUNCT
it PRON
will AUX
> X
accumulate VERB
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
in ADP
high ADJ
levels NOUN
this DET
is AUX
toxic ADJ
to ADP
growing VERB
nerve NOUN
> X
cells NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
it PRON
is AUX
Only ADV
a DET
major ADJ
problem NOUN
in ADP
young ADJ
children NOUN
( PUNCT
until ADP
around ADP
> X
age NOUN
10 NUM
or CCONJ
so ADV
) PUNCT
or CCONJ
women NOUN
who PRON
are AUX
pregnant ADJ
and CCONJ
have AUX
this DET
disorder NOUN
. PUNCT
  SPACE
It PRON
used VERB
to PART
> X
be AUX
a DET
leading VERB
cause NOUN
of ADP
brain NOUN
damage NOUN
in ADP
infants NOUN
, PUNCT
but CCONJ
now ADV
it PRON
can AUX
be AUX
easily ADV
> X
detected VERB
at ADP
birth NOUN
, PUNCT
and CCONJ
then ADV
one PRON
must AUX
simply ADV
avoid VERB
comsumption NOUN
of ADP
phenylalanine NOUN
> X
as SCONJ
a DET
child NOUN
, PUNCT
or CCONJ
when ADV
pregnant ADJ
. PUNCT
  SPACE
> X
-heatherIf PUNCT
I PRON
remember VERB
rightly ADV
PKU PROPN
syndrome NOUN
in ADP
infants NOUN
is AUX
about ADP
1/1200 NUM
? PUNCT
They PRON
lacktwo VERB
genes NOUN
. PUNCT
And CCONJ
people NOUN
who PRON
lack VERB
one NUM
gene NOUN
are AUX
supposed VERB
to PART
be AUX
1/56 NUM
persons?Those NOUN
with ADP
PKU PROPN
have AUX
to PART
avoid VERB
naturally ADV
occuring VERB
phenylalanine NOUN
. PUNCT
And CCONJ
thosewho ADP
only ADV
have AUX
one NUM
gene NOUN
and CCONJ
underproduce NOUN
whatever PRON
it PRON
is AUX
they PRON
are AUX
supposed VERB
tobe NOUN
producing VERB
are AUX
supposed VERB
to PART
be AUX
less ADV
tolerant ADJ
of ADP
aspartame NOUN
. PUNCT
The DET
methol NOUN
, PUNCT
formaldahyde NOUN
thing NOUN
was AUX
supposed VERB
to PART
occur VERB
with ADP
heating?I PROPN
do AUX
n't PART
drink VERB
it PRON
. PUNCT
I PRON
figure VERB
sugar NOUN
was AUX
made VERB
for ADP
a DET
reason NOUN
. PUNCT
To PART
quickly ADV
andeasily ADV
satiate VERB
hungry ADJ
people NOUN
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
need VERB
the DET
calories NOUN
it PRON
's AUX
just ADV
aseasy NOUN
to PART
drink VERB
water NOUN
. PUNCT
  SPACE
Used VERB
to PART
drink VERB
a DET
six NUM
pack NOUN
a DET
aday NOUN
of ADP
aspartame PROPN
soda NOUN
. PUNCT
Don'teven NUM
drink VERB
one NUM
coke NOUN
a DET
day NOUN
when ADV
sugared VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58922From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
NIH PROPN
offers VERB
" PUNCT
Exploratory PROPN
Grants PROPN
For ADP
Alternative PROPN
Medicine"In PROPN
article NOUN
< X
1993Apr9.172945.4578@island NUM
. PUNCT
COM NOUN
> X
green@island NOUN
. PUNCT
COM PROPN
( PUNCT
Robert PROPN
Greenstein PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19493@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>One NUM
problem NOUN
is AUX
very ADV
few ADJ
scientists NOUN
are AUX
interested ADJ
in ADP
alternative ADJ
medicine.>>So PROPN
Gordon PROPN
, PUNCT
why ADV
do AUX
you PRON
think VERB
this DET
is AUX
so?>-- PUNCT
Probably ADV
because SCONJ
most ADJ
of ADP
them PRON
come VERB
packaged VERB
with ADP
some DET
absurd ADJ
theorybehind NOUN
them PRON
. PUNCT
  SPACE
E.G. PROPN
homoeopathy NOUN
: PUNCT
like SCONJ
cures NOUN
like SCONJ
. PUNCT
  SPACE
The DET
more ADV
you PRON
dilutethings NOUN
, PUNCT
the DET
more ADV
powerful ADJ
they PRON
get VERB
, PUNCT
even ADV
if SCONJ
you PRON
dilute VERB
them PRON
so ADV
muchthere PROPN
is AUX
no DET
ingredient NOUN
but CCONJ
water NOUN
left VERB
. PUNCT
  SPACE
Chiropractic NOUN
: PUNCT
all DET
illnessstems NOUN
from ADP
compressions NOUN
of ADP
nerves NOUN
by ADP
misaligned PROPN
vertebrae PROPN
. PUNCT
  SPACE
Suchsystems NOUN
are AUX
so ADV
patently ADV
absurd ADJ
, PUNCT
that SCONJ
any DET
good ADJ
they PRON
do AUX
is AUX
accidentaland NOUN
not PART
related VERB
to ADP
the DET
theory NOUN
. PUNCT
  SPACE
The DET
only ADJ
exception NOUN
is AUX
probably ADV
herbalism ADJ
, PUNCT
because SCONJ
scientists NOUN
recognize VERB
the DET
potent ADJ
drugs NOUN
that PRON
derive VERB
from ADP
plantsand PROPN
are AUX
always ADV
interested ADJ
in ADP
seeing VERB
if SCONJ
they PRON
can AUX
find VERB
new ADJ
plantsthat PRON
have AUX
active ADJ
and CCONJ
useful ADJ
substances NOUN
. PUNCT
  SPACE
But CCONJ
that DET
is AUX
n't PART
what PRON
is AUX
meant VERB
by ADP
alternative ADJ
medicine NOUN
, PUNCT
usually ADV
. PUNCT
  SPACE
If SCONJ
you PRON
get VERB
into ADP
the DET
Qi PROPN
, PUNCT
accupuntunce NOUN
charts NOUN
, PUNCT
etc X
, PUNCT
you PRON
are AUX
now ADV
back ADV
to ADP
silly ADJ
theories NOUN
thatprobably ADV
have AUX
nothing PRON
to PART
do AUX
with ADP
why ADV
accupuncture NOUN
works VERB
in ADP
some DET
cases NOUN
. PUNCT
Perhaps ADV
another DET
reason NOUN
they PRON
are AUX
reluctant ADJ
is AUX
the DET
Rhine ADJ
experience NOUN
. PUNCT
Rhine NOUN
was AUX
a DET
scientist NOUN
who PRON
wanted VERB
to PART
investigate VERB
the DET
paranormaland NOUN
his PRON
lab NOUN
was AUX
filled VERB
with ADP
so ADV
much ADJ
chacanery NOUN
and CCONJ
fakery NOUN
that SCONJ
people NOUN
do AUX
n't PART
want VERB
to PART
be AUX
associated VERB
with ADP
that DET
sort NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58923From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Dislocated PROPN
ShoulderIn PROPN
article NOUN
< X
1993Apr9.181944.5353@e2big.mko.dec.com NUM
> X
steve@caboom.cbm.dec.com X
( PUNCT
Steve PROPN
Katz PROPN
) PUNCT
writes:>>Recently ADV
I PRON
managed VERB
to PART
dislocate VERB
my PRON
shoulder NOUN
while SCONJ
> X
sking NOUN
. PUNCT
  SPACE
The DET
injury NOUN
also ADV
seems VERB
to PART
have AUX
damaged VERB
the DET
nerves NOUN
> X
in ADP
my PRON
arm NOUN
. PUNCT
  SPACE
I PRON
was AUX
wondering VERB
if SCONJ
someone PRON
could AUX
point VERB
me PRON
towards ADP
> X
some DET
literature NOUN
that PRON
would AUX
give VERB
me PRON
some DET
background NOUN
into ADP
> X
these DET
types NOUN
of ADP
injuries NOUN
. PUNCT
  SPACE
Please INTJ
respond VERB
by ADP
EMAIL PROPN
if SCONJ
possible.>Your PROPN
medical ADJ
school NOUN
library NOUN
should AUX
have AUX
books NOUN
on ADP
peripheral ADJ
nerveinjuries NOUN
. PUNCT
  SPACE
Probably ADV
it PRON
was AUX
your PRON
brachial ADJ
plexus NOUN
, PUNCT
so ADV
look VERB
that SCONJ
up.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58924From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?In PUNCT
article NOUN
< X
1q6rie$mo2@access.digex.net NUM
> X
kfl@access.digex.com NOUN
( PUNCT
Keith PROPN
F. PROPN
Lynch PROPN
) PUNCT
writes:>So PROPN
, PUNCT
why ADV
are AUX
the DET
scans PROPN
so ADV
expensive ADJ
, PUNCT
and CCONJ
what PRON
can AUX
be AUX
done VERB
to PART
reduce VERB
the DET
> X
expense NOUN
? PUNCT
  SPACE
Is AUX
n't PART
it PRON
just ADV
a DET
box NOUN
with ADP
some DET
big ADJ
magnets NOUN
, PUNCT
a DET
radio NOUN
transmitter,>and CCONJ
an DET
attached ADJ
PC?The NOUN
magnets NOUN
are AUX
huge ADJ
! PUNCT
  SPACE
Good ADJ
MRI PROPN
sets VERB
with ADP
big ADJ
( PUNCT
> X
1.5 NUM
Tesla PROPN
) PUNCT
magnetscost NOUN
millions NOUN
of ADP
dollars NOUN
. PUNCT
  SPACE
Then ADV
, PUNCT
the DET
radiologist NOUN
wants VERB
$ SYM
400 NUM
forreading VERB
each DET
scan.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58925From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Helium NOUN
non ADJ
- ADJ
renewable ADJ
? PUNCT
? PUNCT
  SPACE
( PUNCT
was AUX
: PUNCT
Too ADV
many ADJ
MRIs?)In NOUN
article NOUN
< X
lsj1gdINNkor@saltillo.cs.utexas.edu X
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>-*---->How PRON
does AUX
the DET
helium NOUN
get AUX
consumed VERB
? PUNCT
  SPACE
I PRON
would AUX
have AUX
thought VERB
that DET
failure NOUN
> X
to PART
contain VERB
it PRON
perfectly ADV
would AUX
result VERB
in ADP
its PRON
evaporation NOUN
.. PUNCT
back ADV
into ADP
> X
the DET
atmosphere NOUN
. PUNCT
  SPACE
Sounds VERB
like SCONJ
a DET
cycle NOUN
to ADP
me PRON
. PUNCT
  SPACE
Obviously ADV
, PUNCT
it PRON
takes VERB
> X
energy NOUN
to PART
run VERB
the DET
cycle NOUN
, PUNCT
but CCONJ
I PRON
seriously ADV
doubt VERB
that SCONJ
helium NOUN
consumption NOUN
> X
is AUX
a DET
resource NOUN
issue.>It PROPN
's AUX
not PART
a DET
cycle NOUN
. PUNCT
  SPACE
Free ADJ
helium NOUN
will AUX
escape VERB
from ADP
the DET
atmosphere NOUN
due ADJ
toits ADJ
high ADJ
velocity NOUN
. PUNCT
  SPACE
It PRON
wo AUX
n't PART
be AUX
practical ADJ
to PART
recover VERB
it PRON
. PUNCT
  SPACE
It PRON
hasto VERB
be AUX
mined.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58926From NUM
: PUNCT
kaminski@netcom.com X
( PUNCT
Peter PROPN
Kaminski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
to PART
find VERB
information NOUN
about ADP
current ADJ
trends NOUN
in ADP
diabetes NOUN
. PUNCT
In ADP
< X
C5nF2r.KpJ@world.std.com NOUN
> X
steveo@world.std.com NOUN
( PUNCT
Steven PROPN
W PROPN
Orr PROPN
) PUNCT
writes:>I PROPN
looked VERB
for ADP
diab PROPN
in ADP
my PRON
.newsrc NOUN
and CCONJ
came VERB
up ADP
with ADP
nuthin NOUN
. PUNCT
Anyone PRON
have AUX
> X
any DET
good ADJ
sources NOUN
for ADP
where ADV
I PRON
can AUX
read?Check VERB
out ADP
the DET
DIABETIC PROPN
mailing NOUN
list NOUN
-- PUNCT
a DET
knowledgable ADJ
, PUNCT
helpful ADJ
, PUNCT
friendly ADJ
, PUNCT
voluminous ADJ
bunch NOUN
. PUNCT
  SPACE
Send VERB
email NOUN
to ADP
LISTSERV@PCCVM.BITNET NOUN
, PUNCT
with ADP
this DET
linein VERB
the DET
body NOUN
: PUNCT
SUBSCRIBE NOUN
DIABETIC PROPN
< X
your PRON
name NOUN
here ADV
> X
Also ADV
, PUNCT
the DET
vote NOUN
for ADP
misc.health.diabetes PROPN
, PUNCT
a DET
newsgroup NOUN
for ADP
general ADJ
discussionof PROPN
diabetes PROPN
, PUNCT
is AUX
currently ADV
underway ADJ
, PUNCT
and CCONJ
will AUX
close VERB
on ADP
29 NUM
April PROPN
. PUNCT
  SPACE
From ADP
the2nd PROPN
CFV PROPN
, PUNCT
posted VERB
to ADP
news.announce.newgroups PROPN
, PUNCT
news.groups NOUN
, PUNCT
and CCONJ
sci.med,message PROPN
< X
1q1jshINN4v1@rodan NUM
. PUNCT
UU.NET>:>To PROPN
place VERB
a DET
vote NOUN
FOR ADP
the DET
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
an DET
> X
email NOUN
message NOUN
to ADP
yes@sun6850.nrl.navy.mil>>To NOUN
place VERB
a DET
vote NOUN
AGAINST ADJ
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
an DET
> X
email NOUN
message NOUN
to ADP
no@sun6850.nrl.navy.mil>>The ADJ
contents NOUN
of ADP
the DET
message NOUN
should AUX
contain VERB
the DET
line NOUN
" PUNCT
I PRON
vote VERB
> X
for ADP
/ SYM
against ADP
misc.health.diabetes PROPN
as SCONJ
proposed VERB
" PUNCT
. PUNCT
  SPACE
Email NOUN
messages NOUN
sent VERB
to ADP
> X
the DET
above ADJ
addresses NOUN
must AUX
constitute VERB
unambiguous ADJ
and CCONJ
unconditional ADJ
> NUM
votes NOUN
for ADP
/ SYM
against ADP
newsgroup PROPN
creation NOUN
as SCONJ
proposed VERB
. PUNCT
  SPACE
Conditional ADJ
votes NOUN
> X
will AUX
not PART
be AUX
accepted VERB
. PUNCT
  SPACE
Only ADV
votes NOUN
emailed VERB
to ADP
the DET
above ADJ
addresses NOUN
will AUX
> X
be AUX
counted VERB
; PUNCT
mailed VERB
replies NOUN
to ADP
this DET
posting NOUN
will AUX
be AUX
returned VERB
. PUNCT
  SPACE
In ADP
the DET
> X
event NOUN
that SCONJ
more ADJ
than SCONJ
one NUM
vote NOUN
is AUX
placed VERB
by ADP
an DET
individual NOUN
, PUNCT
only ADV
the DET
> X
most ADV
recent ADJ
vote NOUN
will AUX
be AUX
counted VERB
. PUNCT
  SPACE
One NUM
additional ADJ
CFV PROPN
will AUX
be AUX
posted VERB
> X
during ADP
the DET
course NOUN
of ADP
the DET
vote NOUN
, PUNCT
along ADP
with ADP
an DET
acknowledgment NOUN
of ADP
those DET
> X
votes NOUN
received VERB
to ADP
date NOUN
. PUNCT
  SPACE
No DET
information NOUN
will AUX
be AUX
supplied VERB
as SCONJ
to ADP
how ADV
> X
people NOUN
are AUX
voting VERB
until ADP
the DET
final ADJ
acknowledgment NOUN
is AUX
made VERB
at ADP
the DET
end,>at PROPN
which PRON
time NOUN
the DET
full ADJ
vote NOUN
will AUX
be AUX
made VERB
public.>>Voting VERB
will AUX
continue VERB
until ADP
23:59 NUM
GMT PROPN
, PUNCT
29 NUM
Apr PROPN
93.>Votes PROPN
will AUX
not PART
be AUX
accepted VERB
after ADP
this DET
date.>>Any PROPN
administrative ADJ
inquiries NOUN
pertaining VERB
to ADP
this DET
CFV PROPN
may AUX
be AUX
made VERB
by ADP
> X
email NOUN
to ADP
swkirch@sun6850.nrl.navy.mil>>The ADP
proposed VERB
charter NOUN
appears VERB
below.>>-------------------------->>Charter PROPN
: PUNCT
  SPACE
> X
> X
misc.health.diabetes PROPN
                            SPACE
unmoderated>>1 PROPN
. PUNCT
   SPACE
The DET
purpose NOUN
of ADP
misc.health.diabetes PROPN
is AUX
to PART
provide VERB
a DET
forum NOUN
for ADP
the DET
> X
discussion NOUN
of ADP
issues NOUN
pertaining VERB
to ADP
diabetes NOUN
management NOUN
, PUNCT
i.e. X
: PUNCT
diet,>activities NOUN
, PUNCT
medicine NOUN
schedules NOUN
, PUNCT
blood NOUN
glucose NOUN
control NOUN
, PUNCT
exercise,>medical ADJ
breakthroughs NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
group NOUN
addresses VERB
the DET
issues NOUN
of ADP
> NUM
management NOUN
of ADP
both DET
Type NOUN
I PRON
( PUNCT
insulin NOUN
dependent ADJ
) PUNCT
and CCONJ
Type PROPN
II PROPN
( PUNCT
non ADJ
- ADJ
insulin ADJ
> X
dependent ADJ
) PUNCT
diabetes NOUN
. PUNCT
  SPACE
Both DET
technical ADJ
discussions NOUN
and CCONJ
general ADJ
support NOUN
> X
discussions NOUN
relevant ADJ
to PART
diabetes VERB
are AUX
welcome.>>2 VERB
. PUNCT
   SPACE
Postings NOUN
to ADP
misc.heath.diabetes NOUN
are AUX
intended VERB
to PART
be AUX
for ADP
discussion NOUN
> X
purposes NOUN
only ADV
, PUNCT
and CCONJ
are AUX
in ADP
no DET
way NOUN
to PART
be AUX
construed VERB
as SCONJ
medical ADJ
advice.>Diabetes PROPN
is AUX
a DET
serious ADJ
medical ADJ
condition NOUN
requiring VERB
direct ADJ
supervision NOUN
> X
by ADP
a DET
primary ADJ
health NOUN
care NOUN
physician NOUN
. PUNCT
  SPACE
> X
> X
-----(end PUNCT
of ADP
charter)-----Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58927From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Foreskin PROPN
TroublesWhat PROPN
can AUX
be AUX
done VERB
, PUNCT
short ADJ
of ADP
circumcision NOUN
, PUNCT
for ADP
an DET
adult NOUN
malewhose ADJ
foreskin NOUN
will AUX
not PART
retract?Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
58928From NUM
: PUNCT
joel@cs.mcgill.ca PROPN
( PUNCT
Joel PROPN
MALARD)Subject PROPN
: PUNCT
Bone NOUN
marrow NOUN
sclerosis NOUN
. PUNCT
I PRON
am AUX
looking VERB
for ADP
information NOUN
on ADP
possible ADJ
causes NOUN
and CCONJ
long ADJ
term NOUN
effectsof PROPN
bone NOUN
marrow NOUN
sclerosis NOUN
. PUNCT
I PRON
would AUX
also ADV
be AUX
thankful ADJ
if SCONJ
anyone PRON
readingthis ADP
newsgroup PROPN
could AUX
list VERB
some DET
recognized VERB
treatment NOUN
centers NOUN
if SCONJ
anythingelse ADV
than SCONJ
massive ADJ
blood NOUN
transfusion NOUN
can AUX
be AUX
effective ADJ
. PUNCT
If SCONJ
you PRON
plan VERB
ona VERB
" PUNCT
go VERB
to ADP
the DET
library"-style PROPN
reply NOUN
, PUNCT
please INTJ
be AUX
kind ADJ
enough ADV
to PART
add VERB
a DET
list NOUN
of ADP
suggested VERB
topics NOUN
or CCONJ
readings NOUN
: PUNCT
Medicine NOUN
is AUX
not PART
my PRON
field NOUN
. PUNCT
Regards NOUN
, PUNCT
Joel PROPN
Malard.joel@cs.mcgill.caNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58929From NUM
: PUNCT
< X
U19250@uicvm.uic.edu>Subject NOUN
: PUNCT
quality NOUN
control NOUN
in ADP
medicineDoes PROPN
anybody PRON
know VERB
of ADP
any DET
information NOUN
regarding VERB
the DET
implementaion NOUN
of ADP
total ADJ
quality NOUN
management NOUN
, PUNCT
quality NOUN
control NOUN
, PUNCT
quality NOUN
assurance NOUN
in ADP
the DET
delivery NOUN
of ADP
health NOUN
care NOUN
service NOUN
. PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
is AUX
enoughinterest ADJ
, PUNCT
I PRON
will AUX
post VERB
the DET
responses NOUN
. PUNCT
        SPACE
Thank VERB
You PRON
        SPACE
Abhin PROPN
Singla PROPN
MS PROPN
BioE PROPN
, PUNCT
MBA PROPN
, PUNCT
MD PROPN
        SPACE
President PROPN
AC PROPN
Medcomp PROPN
IncNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58930From NUM
: PUNCT
kilty@ucrengr NOUN
( PUNCT
kathleen PROPN
richards)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lyme PROPN
vaccineJeff PROPN
, PUNCT
If SCONJ
you PRON
have AUX
time NOUN
to PART
type VERB
it PRON
in ADP
I PRON
'd AUX
love VERB
to PART
have AUX
the DET
reference NOUN
for ADP
thatpaper PROPN
! PUNCT
  SPACE
thanks!--kathleen X
richards PROPN
   SPACE
email NOUN
: PUNCT
  SPACE
karicha@eis.calstate.edu PROPN
   SPACE
~Sometimes PUNCT
you PRON
're AUX
the DET
windshield NOUN
, PUNCT
sometimes ADV
you PRON
're AUX
the DET
bug!~ PROPN
                                                  SPACE
-dire PROPN
straitsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58931From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
quality NOUN
control NOUN
in ADP
medicineIn PROPN
article NOUN
< X
93108.003258U19250@uicvm.uic.edu NUM
> X
U19250@uicvm.uic.edu NUM
writes::Does PROPN
anybody PRON
know VERB
of ADP
any DET
information NOUN
regarding VERB
the DET
implementaion NOUN
of ADP
total ADJ
: PUNCT
quality NOUN
management NOUN
, PUNCT
quality NOUN
control NOUN
, PUNCT
quality NOUN
assurance NOUN
in ADP
the DET
delivery NOUN
of ADP
: PUNCT
health NOUN
care PROPN
service PROPN
. PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
is AUX
enough ADJ
: PUNCT
interest NOUN
, PUNCT
I PRON
will AUX
post VERB
the DET
responses NOUN
. PUNCT
This DET
is AUX
in ADP
fact NOUN
a DET
hot ADJ
topic NOUN
in ADP
medicine NOUN
these DET
days NOUN
, PUNCT
and CCONJ
much ADJ
of ADP
themedical ADJ
literature NOUN
is AUX
devoted ADJ
to ADP
this DET
. PUNCT
  SPACE
The DET
most ADV
heavily ADV
funded VERB
studiesthese ADJ
days NOUN
are AUX
for ADP
outcome NOUN
research NOUN
, PUNCT
and CCONJ
physicians PROPN
( PUNCT
and CCONJ
others NOUN
! PUNCT
) PUNCT
areconstantly ADV
questionning VERB
whether SCONJ
what PRON
we PRON
do AUX
it PRON
truly ADV
effective ADJ
in ADP
any DET
givensituation NOUN
. PUNCT
  SPACE
QA PROPN
activities NOUN
are AUX
a DET
routine ADJ
part NOUN
of ADP
every DET
hospital'sadministrative ADJ
function NOUN
and CCONJ
are AUX
required VERB
by ADP
accreditation NOUN
agencies NOUN
. PUNCT
  SPACE
Thereare PROPN
even ADV
entire ADJ
publications NOUN
devoted VERB
to ADP
QA PROPN
issues.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58932From NUM
: PUNCT
rgasch@nl.oracle.com X
( PUNCT
Robert PROPN
Gasch)Subject NUM
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?Gordon NOUN
Banks NOUN
( PUNCT
geb@cs.pitt.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
3794@nlsun1.oracle.nl NUM
> X
rgasch@nl.oracle.com NOUN
( PUNCT
Robert PROPN
Gasch PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
: PUNCT
> X
: PUNCT
From ADP
a DET
business NOUN
point NOUN
of ADP
view NOUN
, PUNCT
it PRON
might AUX
make VERB
sense NOUN
. PUNCT
  SPACE
It PRON
depends VERB
on ADP
: PUNCT
> X
: PUNCT
the DET
personality NOUN
of ADP
the DET
practitioner NOUN
. PUNCT
  SPACE
If SCONJ
he PRON
can AUX
charm VERB
the DET
patients NOUN
: PUNCT
> X
: PUNCT
into ADP
coming VERB
, PUNCT
homeopathy NOUN
can AUX
be AUX
very ADV
profitable ADJ
. PUNCT
  SPACE
It PRON
wo AUX
n't PART
be AUX
covered VERB
: PUNCT
> X
: PUNCT
by ADP
insurance NOUN
, PUNCT
however ADV
. PUNCT
  SPACE
Just ADV
keep VERB
that DET
in ADP
mind NOUN
. PUNCT
  SPACE
Myself PRON
, PUNCT
I PRON
'd AUX
have AUX
: PUNCT
> X
^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
: PUNCT
> X
: PUNCT
> X
In ADP
many ADJ
European ADJ
countries NOUN
Homepathy PROPN
is AUX
accepted VERB
as SCONJ
a DET
method NOUN
of ADP
curing VERB
: PUNCT
> X
( PUNCT
or CCONJ
at ADP
least ADJ
alleiating VERB
) PUNCT
many ADJ
conditions NOUN
to ADP
which PRON
modern ADJ
medicine NOUN
has AUX
: PUNCT
> X
no DET
answer NOUN
. PUNCT
In ADP
most ADJ
of ADP
these DET
countries NOUN
insurance NOUN
pays VERB
for ADP
the DET
: PUNCT
> X
treatments NOUN
. PUNCT
: PUNCT
> X
: PUNCT
Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
Not PART
by ADP
scientists NOUN
. PUNCT
  SPACE
There PRON
are AUX
people NOUN
: PUNCT
in ADP
every DET
country NOUN
who PRON
waste VERB
time NOUN
and CCONJ
money NOUN
on ADP
quackery NOUN
. PUNCT
: PUNCT
In ADP
Britain PROPN
and CCONJ
Scandanavia PROPN
, PUNCT
where ADV
I PRON
have AUX
worked VERB
, PUNCT
it PRON
was AUX
not PART
paid VERB
for ADP
. PUNCT
: PUNCT
What PRON
are AUX
" PUNCT
most ADJ
of ADP
these DET
countries NOUN
? PUNCT
" PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
you PRON
. PUNCT
In ADP
Holland PROPN
insurences NOUN
pay VERB
for ADP
Homeopathic ADJ
treatment NOUN
. PUNCT
In ADP
Germany PROPN
they PRON
doso VERB
as ADV
well ADV
. PUNCT
I PRON
Austria PROPN
they PRON
do AUX
if SCONJ
you PRON
have AUX
a DET
condition NOUN
which PRON
can AUX
not PART
be AUX
helped VERB
by ADP
" PUNCT
normal ADJ
" PUNCT
medicine NOUN
( PUNCT
happened VERB
to ADP
me PRON
) PUNCT
. PUNCT
Switzerland PROPN
seems VERB
to PART
be AUX
the DET
same ADJ
as SCONJ
Austria PROPN
( PUNCT
I PRON
have AUX
direct ADJ
experience NOUN
in ADP
the DET
Swiss ADJ
case).At NOUN
the DET
Univeristy PROPN
of ADP
Vienna PROPN
( PUNCT
I PRON
believe VERB
Innsbruck PROPN
as ADV
well ADV
) PUNCT
homeopathycan PROPN
be AUX
taken VERB
in ADP
Med PROPN
. PUNCT
school NOUN
. PUNCT
I PRON
found VERB
that SCONJ
in ADP
combination NOUN
with ADP
Acupuncture NOUN
it PRON
changed VERB
my PRON
life NOUN
fromliving VERB
hell NOUN
to ADP
a DET
condition NOUN
which PRON
enables VERB
me PRON
to PART
lead VERB
a DET
relatively ADV
normal ADJ
life NOUN
. PUNCT
I PRON
found VERB
that SCONJ
modern ADJ
medicine NOUN
was AUX
powerless ADJ
to PART
cure VERB
meof NOUN
a DET
* PUNCT
severe ADJ
* PUNCT
case NOUN
of ADP
Neurodermitis PROPN
( PUNCT
Note VERB
: PUNCT
I PRON
mean VERB
cure NOUN
, PUNCT
not PART
surpress VERB
the DET
symptoms NOUN
, PUNCT
which PRON
is AUX
what PRON
modern ADJ
medicine NOUN
attempts VERB
to PART
do AUX
in ADP
the DET
case NOUN
of ADP
Neurodermitis PROPN
) PUNCT
. PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
Homeopathy PROPN
is AUX
scientific ADJ
, PUNCT
but CCONJ
that SCONJ
it PRON
can AUX
offer VERB
help NOUN
in ADP
areas NOUN
in ADP
which PRON
modern ADJ
medicine NOUN
is AUX
absolutely ADV
helpless ADJ
. PUNCT
From ADP
reading VERB
your PRON
aritcle NOUN
it PRON
seems VERB
that SCONJ
your PRON
have AUX
some DET
deeply ADV
rootedbeliefs NOUN
about ADP
this DET
issue NOUN
( PUNCT
this DET
is AUX
not PART
intended VERB
to PART
be AUX
offensive ADJ
or CCONJ
sarcastic ADJ
- PUNCT
it PRON
just ADV
sounded VERB
like SCONJ
that DET
to ADP
me PRON
) PUNCT
which PRON
makes VERB
me PRON
doubt VERB
if SCONJ
you PRON
can AUX
read VERB
this DET
with ADP
an DET
open ADJ
mind NOUN
. PUNCT
If SCONJ
you PRON
do AUX
/ SYM
can AUX
, PUNCT
please INTJ
excusemy PROPN
last ADJ
comment.--- PROPN
> X
Robertrgasch@nl.oracle.comNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58933From NUM
: PUNCT
  SPACE
Gia PROPN
Kiria PROPN
< X
gkiria@kiria.kheta.georgia.su>Subject NOUN
: PUNCT
help VERB
  SPACE
HELP!Maybe X
anybody PRON
know VERB
names NOUN
of ADP
conferences NOUN
inPlease AUX
help VERB
Me PRON
find VERB
any DET
information NOUN
for ADP
next ADJ
keywords NOUN
: PUNCT
echocardiography NOUN
and CCONJ
cardiology+doplerI PROPN
hawe PROPN
no DET
informatins NOUN
on ADP
this DET
subjects NOUN
2 NUM
years NOUN
becouse VERB
i PRON
leave VERB
inTbilisy.sorry PROPN
for ADP
my PRON
bad ADJ
english!MY PROPN
adress NOUN
: PUNCT
irina@kiria.kheta.georgia.suNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58934From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
HYPOGLYCEMIA PROPN
     SPACE
anello@adcs00.fnal.gov X
( PUNCT
Anthony PROPN
Anello PROPN
) PUNCT
writes VERB
: PUNCT
A NOUN
( PUNCT
> X
  SPACE
Can AUX
anyone PRON
tell VERB
me PRON
if SCONJ
a DET
bloodcount NOUN
of ADP
40 NUM
when ADV
diagnosed VERB
as SCONJ
hypoglycemic ADJ
isA NOUN
( PUNCT
> X
  SPACE
dangerous ADJ
, PUNCT
i.e. X
indicates VERB
a DET
possible ADJ
pancreatic ADJ
problem NOUN
? PUNCT
  SPACE
One NUM
Dr. PROPN
says VERB
no INTJ
, PUNCT
theA PROPN
( PUNCT
> X
  SPACE
other ADJ
( PUNCT
not PART
his PRON
specialty NOUN
) PUNCT
says VERB
the DET
first ADJ
is AUX
negligent ADJ
and CCONJ
that SCONJ
another DET
bloodA PROPN
( PUNCT
> X
  SPACE
test NOUN
should AUX
be AUX
done VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
what PRON
is AUX
a DET
good ADJ
diet NOUN
( PUNCT
what PRON
has AUX
worked VERB
) PUNCT
for ADP
a DET
hypo ADJ
- PUNCT
A NOUN
( PUNCT
> X
  SPACE
glycemic PROPN
? PUNCT
  SPACE
TIA.A NOUN
( PUNCT
> X
  SPACE
A NOUN
( PUNCT
> X
  SPACE
A NOUN
( PUNCT
> X
  SPACE
Anthony PROPN
AnelloA PROPN
( PUNCT
> X
  SPACE
FermilabA PROPN
( PUNCT
> X
  SPACE
Batavia PROPN
, PUNCT
Illinois PROPN
   SPACE
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED ADV
through ADP
the DET
proper ADJ
    SPACE
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
ther NOUN
following VERB
: PUNCT
   SPACE
1 NUM
) PUNCT
Chelated VERB
Manganese PROPN
   SPACE
25 NUM
- PUNCT
50mg NOUN
/ SYM
day NOUN
. PUNCT
   SPACE
2 NUM
) PUNCT
Chelated VERB
Chromium PROPN
    SPACE
400 NUM
- PUNCT
600mcg NUM
/ SYM
day NOUN
. PUNCT
   SPACE
3 X
) PUNCT
Increase VERB
protein NOUN
through ADP
foods NOUN
or CCONJ
supplements NOUN
. PUNCT
   SPACE
4 NUM
) PUNCT
Avoid VERB
supplements NOUN
/ SYM
foods NOUN
high ADV
in ADP
Potassium PROPN
, PUNCT
Calcium PROPN
, PUNCT
Zinc PROPN
. PUNCT
   SPACE
5 NUM
) PUNCT
Avoid VERB
Vit PROPN
C PROPN
supplements NOUN
in ADP
excess NOUN
of ADP
100 NUM
mg PROPN
. PROPN
   SPACE
6 NUM
) PUNCT
Avoid VERB
honey NOUN
and CCONJ
foods NOUN
high ADV
in ADP
simple ADJ
sugars NOUN
. PUNCT
   SPACE
7 NUM
) PUNCT
Enjoy VERB
breads NOUN
, PUNCT
cereals NOUN
, PUNCT
grains NOUN
... PUNCT
   SPACE
Discuss VERB
the DET
above ADJ
with ADP
your PRON
health NOUN
practitioner NOUN
for ADP
compatibility NOUN
   SPACE
with ADP
your PRON
body NOUN
chemistry NOUN
and CCONJ
safety NOUN
. PUNCT
   SPACE
--Ron----- PROPN
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
BEER NOUN
- PUNCT
It PRON
's AUX
not PART
just ADV
for ADP
breakfast NOUN
anymore ADV
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58935From NUM
: PUNCT
kfl@access.digex.com PROPN
( PUNCT
Keith PROPN
F. PROPN
Lynch)Subject PROPN
: PUNCT
GlutamateIn PROPN
article NOUN
< X
lso15qINNkpr@news.bbn.com PROPN
> X
sher@bbn.com X
( PUNCT
Lawrence PROPN
D. PROPN
Sher PROPN
) PUNCT
writes VERB
: PUNCT
> X
From ADP
the DET
N.E.J.Med PROPN
. PROPN
  SPACE
editorial NOUN
: PUNCT
  SPACE
" PUNCT
The DET
dicarboxylic ADJ
amino NOUN
acid PROPN
glutamate PROPN
> X
is AUX
not PART
only ADV
an DET
essential ADJ
amino NOUN
acid NOUN
... PUNCT
Glutamate PROPN
is AUX
not PART
an DET
essential ADJ
amino NOUN
acid NOUN
. PUNCT
  SPACE
People NOUN
can AUX
survive VERB
quite ADV
wellwithout NOUN
ever ADV
eating VERB
any.-- NUM
Keith PROPN
Lynch PROPN
, PUNCT
kfl@access.digex.comf PROPN
p=2,3:2 PROPN
s PROPN
q=1 NOUN
x NOUN
" PUNCT
f PROPN
f=3:2 PROPN
q PROPN
: PUNCT
f*f PROPN
> PROPN
p!'q PROPN
  SPACE
s PROPN
q PROPN
= SYM
p#f NOUN
" PUNCT
w PROPN
: PUNCT
q PROPN
p,?$x\8 PROPN
+ SYM
1 NUM
* PUNCT
8Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58936From NUM
: PUNCT
jeffp@vetmed.wsu.edu PROPN
( PUNCT
Jeff PROPN
Parke)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lyme NOUN
vaccinekathleen NOUN
richards NOUN
( PUNCT
kilty@ucrengr NOUN
) PUNCT
wrote VERB
: PUNCT
> X
If SCONJ
you PRON
have AUX
time NOUN
to PART
type VERB
it PRON
in ADP
I PRON
'd AUX
love VERB
to PART
have AUX
the DET
reference NOUN
for ADP
that DET
> X
paper NOUN
! PUNCT
  SPACE
thanks!Experimental PROPN
Lyme PROPN
Disease PROPN
in ADP
Dogs PROPN
Produces VERB
Arthritis PROPN
and CCONJ
Persistant PROPN
Infection PROPN
, PUNCT
The DET
Journal PROPN
of ADP
Infectious PROPN
Diseases PROPN
, PUNCT
March PROPN
1993 NUM
, PUNCT
167:651 NUM
- PUNCT
664 NUM
- PUNCT
-Jeff PROPN
Parke PROPN
< X
jeffp@pgavin1.vetmed.wsu.edu>also NOUN
: PUNCT
   SPACE
jeffp@WSUVM1.bitnet PUNCT
    SPACE
AOL PROPN
: PUNCT
JeffParkeWashington PROPN
State PROPN
University PROPN
College PROPN
of ADP
Veterinary PROPN
Medicine PROPN
class NOUN
of ADP
1994Pullman NUM
, PUNCT
WA PROPN
  SPACE
99164 NUM
- PUNCT
7012Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58937From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Selective ADJ
PlaceboIn NOUN
article NOUN
< X
1993Apr17.125545.22457@rose.com NUM
> X
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
   SPACE
OTOH PROPN
, PUNCT
who PRON
are AUX
we PRON
kidding VERB
, PUNCT
the DET
New PROPN
England PROPN
Medical PROPN
Journal PROPN
in ADP
1984 NUM
> X
   SPACE
ran VERB
the DET
heading NOUN
: PUNCT
" PUNCT
Ninety PROPN
Percent PROPN
of ADP
Diseases NOUN
are AUX
not PART
Treatable ADJ
by ADP
> X
   SPACE
Drugs PROPN
or CCONJ
Surgery PROPN
, PUNCT
" PUNCT
which PRON
has AUX
been AUX
echoed VERB
by ADP
several ADJ
other ADJ
reports NOUN
. PUNCT
> X
   SPACE
No DET
wonder NOUN
MDs NOUN
are AUX
not PART
amused VERB
with ADP
alternative ADJ
medicine NOUN
, PUNCT
since SCONJ
> X
   SPACE
the DET
20 NUM
% NOUN
magic NOUN
of ADP
the DET
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
would AUX
award VERB
alternative PROPN
> X
   SPACE
practitioners NOUN
twice DET
the DET
success NOUN
rate NOUN
of ADP
conventional ADJ
medicine NOUN
... PUNCT
1 NUM
: PUNCT
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
" PUNCT
is AUX
not PART
the DET
same ADJ
thing NOUN
as SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
patients NOUN
" PUNCT
. PUNCT
   SPACE
In ADP
a DET
world NOUN
with ADP
one NUM
curable ADJ
disease NOUN
that PRON
strikes VERB
100 NUM
people NOUN
, PUNCT
and CCONJ
nine NUM
   SPACE
incurable ADJ
diseases NOUN
which PRON
strikes VERB
one NUM
person NOUN
each DET
, PUNCT
medical ADJ
science NOUN
will AUX
cure VERB
   SPACE
91 NUM
% NOUN
of ADP
the DET
patients NOUN
and CCONJ
report VERB
that SCONJ
90 NUM
% NOUN
of ADP
diseases NOUN
have AUX
no DET
therapy.2 PROPN
: PUNCT
A DET
disease NOUN
would AUX
be AUX
counted VERB
among ADP
the DET
90 NUM
% NOUN
untreatable ADJ
if SCONJ
nothing PRON
better ADJ
than SCONJ
   SPACE
a DET
placebo NOUN
were AUX
known VERB
. PUNCT
  SPACE
Of ADV
course NOUN
MDs NOUN
are AUX
ethically ADV
bound VERB
to PART
not PART
knowingly ADV
   SPACE
dispense NOUN
placebos NOUN
... PUNCT
-dkNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58938From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
GlutamateIn PROPN
article NOUN
< X
1qrsr6$d59@access.digex.net NUM
> X
kfl@access.digex.com PROPN
( PUNCT
Keith PROPN
F. PROPN
Lynch PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
lso15qINNkpr@news.bbn.com PROPN
> X
sher@bbn.com X
( PUNCT
Lawrence PROPN
D. PROPN
Sher PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
From ADP
the DET
N.E.J.Med PROPN
. PROPN
  SPACE
editorial NOUN
: PUNCT
  SPACE
" PUNCT
The DET
dicarboxylic ADJ
amino NOUN
acid PROPN
glutamate PROPN
> X
> X
is AUX
not PART
only ADV
an DET
essential ADJ
amino NOUN
acid NOUN
... PUNCT
> X
> X
Glutamate PROPN
is AUX
not PART
an DET
essential ADJ
amino NOUN
acid NOUN
. PUNCT
  SPACE
People NOUN
can AUX
survive VERB
quite ADV
well ADV
> X
without ADP
ever ADV
eating VERB
any DET
. PUNCT
There PRON
is AUX
no DET
contradiction NOUN
here ADV
. PUNCT
It PRON
is AUX
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
yourbody PROPN
needs VERB
it PRON
. PUNCT
It PRON
is AUX
non ADJ
- ADJ
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
your PRON
body NOUN
canproduce NOUN
enough ADV
of ADP
it PRON
without ADP
supplement NOUN
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58939From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
GlutamateIn PROPN
article NOUN
< X
1993Apr18.163212.9577@walter.bellcore.com NUM
> X
, PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen PROPN
) PUNCT
writes:=There PUNCT
is AUX
no DET
contradiction NOUN
here ADV
. PUNCT
It PRON
is AUX
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
your PRON
= SYM
body NOUN
needs VERB
it PRON
. PUNCT
It PRON
is AUX
non ADJ
- ADJ
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
your PRON
body NOUN
can AUX
= PUNCT
produce VERB
enough ADJ
of ADP
it PRON
without ADP
supplement NOUN
. PUNCT
And CCONJ
when ADV
you PRON
're AUX
in ADP
a DET
technical ADJ
discussion NOUN
of ADP
amino ADJ
acids NOUN
, PUNCT
it PRON
's AUX
the DET
latterdefinition NOUN
that PRON
's AUX
used VERB
almost ADV
universally.--------------------------------------------------------------------------------Carl ADP
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58940From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5Mv3v.2o5@world.std.com NOUN
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>>Some ADP
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
> X
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that DET
carcinogens VERB
> X
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
> X
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
> X
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
> X
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
    SPACE
From ADP
THE DET
TUFTS PROPN
UNIVERSITY NOUN
GUIDE NOUN
TO ADP
TOTAL NOUN
NUTRITION NOUN
: PUNCT
Stanley PROPN
Gershoff PROPN
, PUNCT
    SPACE
Ph.D. NOUN
, PUNCT
Dean PROPN
of ADP
Tufts PROPN
University PROPN
School PROPN
of ADP
Nutrition PROPN
; PUNCT
HarperPerennial PROPN
, PUNCT
1991 NUM
   SPACE
( PUNCT
ISBN PROPN
# SYM
0 NUM
- SYM
06 NUM
- PUNCT
272007 NUM
- SYM
4 NUM
) PUNCT
: PUNCT
	 SPACE
" PUNCT
The DET
greatest ADJ
hazard NOUN
of ADP
barbecuing NOUN
is AUX
that SCONJ
the DET
cook NOUN
will AUX
not PART
use VERB
	  SPACE
enough ADJ
caution NOUN
and CCONJ
get AUX
burned VERB
. PUNCT
  SPACE
Some DET
people NOUN
suggest VERB
that SCONJ
the DET
	  SPACE
barbecuing NOUN
itself PRON
is AUX
dangerous ADJ
, PUNCT
because SCONJ
the DET
smoke NOUN
, PUNCT
which PRON
is AUX
	  SPACE
absorbed VERB
by ADP
the DET
meat NOUN
, PUNCT
contains VERB
benzopyrene PROPN
, PUNCT
which PRON
, PUNCT
in ADP
its PRON
pure ADJ
form NOUN
, PUNCT
	  SPACE
has AUX
been AUX
known VERB
to PART
cause VERB
cancer NOUN
in ADP
laboratory NOUN
animals NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
	  SPACE
in ADP
order NOUN
to PART
experience VERB
the DET
same ADJ
results NOUN
, PUNCT
people NOUN
would AUX
have AUX
to PART
	  SPACE
consume VERB
unrealistically ADV
large ADJ
quantities NOUN
of ADP
barbecued VERB
meat NOUN
at ADP
a DET
	  SPACE
time NOUN
. PUNCT
"-Rich PUNCT
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58941From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)In PROPN
article NOUN
< X
1993Apr17.181013.3743@uvm.edu NUM
> X
hbloom@moose.uvm.edu ADJ
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>Nutrasweet NOUN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
than SCONJ
> X
sugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
> X
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
to ADP
> X
for ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
> X
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehyde NOUN
> X
produced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
to ADP
> VERB
living NOUN
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
[ PUNCT
... PUNCT
] PUNCT
   SPACE
In ADP
the DET
September PROPN
1992 NUM
issue NOUN
of ADP
THE DET
TUFTS PROPN
UNIVERSITY NOUN
DIET NOUN
AND CCONJ
NUTRITION PROPN
   SPACE
LETTER PROPN
, PUNCT
there PRON
is AUX
a DET
three NUM
page NOUN
article NOUN
about ADP
artificial ADJ
sweeteners NOUN
. PUNCT
  SPACE
What PRON
   SPACE
follows VERB
are AUX
those DET
excerpts NOUN
which PRON
deal VERB
specifically ADV
with ADP
Nutrasweet PROPN
. PUNCT
   SPACE
[ PUNCT
Reproduced VERB
without ADP
permission NOUN
] PUNCT
	    SPACE
The DET
controversy NOUN
[ PUNCT
over ADP
aspartame PROPN
] PUNCT
began VERB
six NUM
years NOUN
ago ADV
in ADP
England PROPN
, PUNCT
	 SPACE
where ADV
a DET
group NOUN
of ADP
researchers NOUN
found VERB
that DET
aspartame PROPN
, PUNCT
marketed VERB
under ADP
	 SPACE
the DET
tradename NOUN
Nutrasweet PROPN
, PUNCT
appears VERB
to PART
stimulate VERB
appetite NOUN
and CCONJ
, PUNCT
	 SPACE
presumably ADV
, PUNCT
the DET
eating NOUN
of ADP
more ADJ
calories NOUN
in ADP
the DET
long ADJ
run NOUN
than SCONJ
if SCONJ
	 SPACE
a DET
person NOUN
simply ADV
consumed VERB
sugar NOUN
. PUNCT
  SPACE
When ADV
researchers NOUN
asked VERB
a DET
group NOUN
	 SPACE
of ADP
95 NUM
people NOUN
to PART
drink VERB
plain ADJ
water NOUN
, PUNCT
aspartame NOUN
- PUNCT
sweetened VERB
water NOUN
, PUNCT
and CCONJ
	 SPACE
sugared VERB
water NOUN
, PUNCT
they PRON
said VERB
that SCONJ
overall ADV
they PRON
felt VERB
hungriest ADJ
after ADP
	 SPACE
drinking VERB
the DET
artificially ADV
sweetened VERB
beverage NOUN
. PUNCT
	    SPACE
The DET
study NOUN
received VERB
widespread ADJ
media NOUN
attention NOUN
and CCONJ
stirred VERB
a DET
	 SPACE
good ADJ
deal NOUN
of ADP
concern NOUN
among ADP
the DET
artificial ADJ
- PUNCT
sweetener NOUN
- PUNCT
using VERB
public NOUN
. PUNCT
	 SPACE
However ADV
, PUNCT
its PRON
results NOUN
were AUX
questionable ADJ
at ADP
best ADJ
, PUNCT
since SCONJ
the DET
researchers NOUN
	 SPACE
did AUX
not PART
go VERB
on ADP
to PART
measure VERB
whether SCONJ
the DET
increase NOUN
in ADP
appetite PROPN
did AUX
	 SPACE
actually ADV
translate VERB
into ADP
an DET
increase NOUN
in ADP
eating VERB
. PUNCT
  SPACE
The DET
two NUM
do AUX
not PART
	 SPACE
necessarily ADV
go VERB
hand NOUN
in ADP
hand NOUN
. PUNCT
	    SPACE
In ADP
the DET
years NOUN
that PRON
followed VERB
, PUNCT
more ADJ
than SCONJ
a DET
dozen NOUN
studies NOUN
examining VERB
	 SPACE
the DET
effect NOUN
of ADP
aspartame NOUN
on ADP
appetite PROPN
-- PUNCT
and CCONJ
eating VERB
-- PUNCT
were AUX
conducted VERB
. PUNCT
	 SPACE
And CCONJ
after ADP
reviewing VERB
every DET
one NUM
of ADP
them PRON
, PUNCT
the DET
director NOUN
of ADP
the DET
	 SPACE
Laboratory NOUN
of ADP
the DET
Study PROPN
of ADP
Human PROPN
Ingestive PROPN
Behavior PROPN
at ADP
Johns PROPN
Hopkins PROPN
	 SPACE
University PROPN
, PUNCT
Barbara PROPN
Rolls PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
concluded VERB
that SCONJ
consuming VERB
aspartame- NOUN
	 SPACE
sweetened VERB
foods NOUN
and CCONJ
drinks NOUN
is AUX
not PART
associated VERB
with ADP
any DET
increase NOUN
in ADP
	 SPACE
the DET
amount NOUN
of ADP
food NOUN
eaten VERB
afterward ADV
. PUNCT
	    SPACE
One NUM
artificial ADJ
sweetener NOUN
that PRON
is AUX
not PART
typically ADV
accused VERB
of ADP
causing VERB
	 SPACE
cancer NOUN
is AUX
aspartame PROPN
. PUNCT
  SPACE
But CCONJ
it PRON
most ADV
certainly ADV
has AUX
been AUX
blamed VERB
for ADP
a DET
	 SPACE
host NOUN
of ADP
other ADJ
ills NOUN
. PUNCT
  SPACE
Since SCONJ
its PRON
introduction NOUN
in ADP
1981 NUM
, PUNCT
the DET
government NOUN
	 SPACE
has AUX
received VERB
thousands NOUN
of ADP
complaints NOUN
accusing VERB
it PRON
of ADP
causing VERB
	 SPACE
everything PRON
from ADP
headaches NOUN
to ADP
nausea NOUN
to ADP
mood NOUN
swings NOUN
to ADP
anxiety NOUN
. PUNCT
	 SPACE
Still ADV
, PUNCT
years NOUN
of ADP
careful ADJ
scientific ADJ
study NOUN
conducted VERB
both CCONJ
before ADV
and CCONJ
	 SPACE
after ADP
the DET
sweetener NOUN
's PART
entering VERB
the DET
market NOUN
have AUX
failed VERB
to PART
confirm VERB
	 SPACE
that SCONJ
it PRON
can AUX
bring VERB
about ADP
adverse ADJ
health NOUN
effects NOUN
. PUNCT
  SPACE
That DET
's AUX
why ADV
the DET
	 SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
( PUNCT
the DET
government NOUN
agency NOUN
charged VERB
with ADP
	 SPACE
monitoring VERB
public ADJ
health NOUN
) PUNCT
, PUNCT
the DET
American PROPN
Medical PROPN
Association PROPN
's PART
	 SPACE
Council PROPN
on ADP
Scientific PROPN
Affairs PROPN
, PUNCT
and CCONJ
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
	 SPACE
have AUX
given VERB
aspartame NOUN
, PUNCT
one NUM
of ADP
the DET
most ADV
studied ADJ
food NOUN
additives NOUN
, PUNCT
a DET
	 SPACE
clean ADJ
bill NOUN
of ADP
health PROPN
. PUNCT
	    SPACE
Granted PROPN
, PUNCT
the DET
FDA PROPN
has AUX
set VERB
forth ADP
an DET
" PUNCT
acceptable ADJ
daily ADJ
intake NOUN
" PUNCT
of ADP
	 SPACE
50 NUM
milligrams NOUN
of ADP
aspartame PROPN
per ADP
kilogram PROPN
of ADP
body NOUN
weight NOUN
. PUNCT
  SPACE
To PART
exceed VERB
	 SPACE
the DET
limit NOUN
, PUNCT
however ADV
, PUNCT
a DET
120-pound NUM
( PUNCT
55 NUM
kg NOUN
. PUNCT
) PUNCT
woman NOUN
would AUX
have AUX
to PART
take VERB
	 SPACE
in ADP
2,750 NUM
milligrams NOUN
of ADP
aspartame NOUN
-- PUNCT
the DET
amount NOUN
in ADP
15 NUM
cans NOUN
of ADP
	 SPACE
aspartame NOUN
- PUNCT
sweetened VERB
soda NOUN
pop NOUN
, PUNCT
14 NUM
cups NOUN
of ADP
gelatin PROPN
, PUNCT
22 NUM
cups NOUN
of ADP
yogurt PROPN
, PUNCT
	 SPACE
or CCONJ
55 NUM
six NUM
- PUNCT
ounce NOUN
servings NOUN
of ADP
aspartame NOUN
- PUNCT
containing VERB
hot ADJ
cocoa NOUN
, PUNCT
... PUNCT
	 SPACE
A DET
175-pound NUM
( PUNCT
80 NUM
kg NOUN
. PUNCT
) PUNCT
man NOUN
would AUX
have AUX
to PART
consume VERB
some DET
4,000 NUM
milligrams NOUN
	 SPACE
of ADP
the DET
sweetener NOUN
-- PUNCT
the DET
amount NOUN
in ADP
22 NUM
cans NOUN
of ADP
soda NOUN
pop NOUN
or CCONJ
32 NUM
cups NOUN
	 SPACE
of ADP
yogurt PROPN
-- PUNCT
to PART
go VERB
over ADP
the DET
limit NOUN
. PUNCT
  SPACE
[ PUNCT
chart VERB
with ADP
aspartame PROPN
content NOUN
	 SPACE
of ADP
selected VERB
foods NOUN
omitted VERB
] PUNCT
	    SPACE
Only ADV
one NUM
small ADJ
group NOUN
of ADP
people NOUN
must AUX
be AUX
certain ADJ
to PART
stay VERB
away ADV
	 SPACE
from ADP
aspartame PROPN
: PUNCT
those DET
born VERB
with ADP
a DET
rare ADJ
metabolic ADJ
disorder NOUN
called VERB
	 SPACE
phenylketonuria PROPN
, PUNCT
or CCONJ
PKU PROPN
. PUNCT
  SPACE
The DET
estimated VERB
one NUM
person NOUN
in ADP
every DET
12,000 NUM
	 SPACE
to ADP
15,000 NUM
who PRON
has AUX
it PRON
is AUX
unable ADJ
to PART
properly ADV
metabolize VERB
an DET
essential ADJ
	 SPACE
amino ADJ
acid NOUN
in ADP
aspartame PROPN
called VERB
phenylalanine NOUN
. PUNCT
  SPACE
Once ADV
a DET
child NOUN
	 SPACE
consumes VERB
it PRON
, PUNCT
it PRON
builds VERB
up ADP
in ADP
the DET
body NOUN
and CCONJ
can AUX
ultimately ADV
cause VERB
	 SPACE
such ADJ
severe ADJ
problems NOUN
as SCONJ
mental ADJ
retardation NOUN
. PUNCT
  SPACE
To PART
help VERB
people NOUN
with ADP
	 SPACE
PKU PROPN
avoid VERB
the DET
substance NOUN
, PUNCT
labels NOUN
on ADP
cans NOUN
of ADP
soda NOUN
pop NOUN
and CCONJ
other ADJ
	 SPACE
aspartame NOUN
- PUNCT
sweetened VERB
foods NOUN
must AUX
carry VERB
the DET
warning NOUN
" PUNCT
Phenylketonurics NOUN
: PUNCT
	 SPACE
Contains VERB
Phenylalanine PROPN
. PUNCT
"-Rich PUNCT
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58942From NUM
: PUNCT
Isabelle PROPN
. PUNCT
Rosso@Dartmouth.edu PROPN
( PUNCT
Isabelle PROPN
Rosso)Subject PROPN
: PUNCT
HunchbackI X
have AUX
a DET
friend NOUN
who PRON
has AUX
a DET
very ADV
pronounced ADJ
slouch NOUN
of ADP
his PRON
upper ADJ
back NOUN
. PUNCT
Healways NOUN
walks VERB
and CCONJ
sits VERB
this DET
way NOUN
so ADV
I PRON
have AUX
concluded VERB
that SCONJ
he PRON
ishunchback VERB
. PUNCT
Is AUX
this DET
a DET
genetic ADJ
disorder NOUN
, PUNCT
or CCONJ
is AUX
it PRON
something PRON
that PRON
people NOUN
can AUX
correct.i.e PUNCT
. PUNCT
is AUX
it PRON
just ADV
bad ADJ
posture NOUN
that PRON
can AUX
be AUX
changed VERB
with ADP
a DET
bit NOUN
of ADP
willpower?Isabelle NOUN
. PUNCT
Rosso@Dartmouth.edu PUNCT
               SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58943From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
KS PROPN
> X
From ADP
: PUNCT
keith@actrix.gen.nz PROPN
( PUNCT
Keith PROPN
Stewart)KS ADP
> X
My PRON
wife NOUN
has AUX
become VERB
interested ADJ
through ADP
an DET
acquaintance NOUN
in ADP
Post PROPN
- PROPN
Polio PROPN
SyndromeKS PROPN
> X
This DET
apparently ADV
is AUX
not PART
recognised VERB
in ADP
New PROPN
Zealand PROPN
and CCONJ
different ADJ
symptons NOUN
( PUNCT
egKS PROPN
> X
chest NOUN
complaints NOUN
) PUNCT
are AUX
treated VERB
separately ADV
. PUNCT
Does AUX
anone NOUN
have AUX
any DET
informationI'm ADP
not PART
sure ADJ
that SCONJ
this DET
condition NOUN
is AUX
" PUNCT
recognised VERB
" PUNCT
anywhere ADV
( PUNCT
in ADP
thesense NOUN
of ADP
a DET
disease NOUN
with ADP
diagnostic ADJ
criteria NOUN
, PUNCT
clear ADJ
boundariesbetween NOUN
it PRON
and CCONJ
other ADJ
diseases NOUN
, PUNCT
unique ADJ
pathologic NOUN
or CCONJ
physiologicfeatures NOUN
, PUNCT
etc X
) PUNCT
, PUNCT
but CCONJ
here ADV
goes VERB
with ADP
what PRON
many ADJ
neurologists NOUN
agree VERB
on ADP
. PUNCT
Post ADJ
- ADJ
polio PROPN
syndrome NOUN
patients NOUN
have AUX
evidence NOUN
of ADP
motor PROPN
neuron PROPN
diseaseby PROPN
clinical ADJ
examination NOUN
, PUNCT
EMG PROPN
, PUNCT
and CCONJ
muscle NOUN
biopsy NOUN
. PUNCT
  SPACE
The DET
abnormalitiesare PROPN
mostly ADV
chronic NOUN
( PUNCT
due ADP
to ADP
old ADJ
polio NOUN
) PUNCT
but CCONJ
there PRON
is AUX
evidence NOUN
ofongoing VERB
deterioration NOUN
. PUNCT
  SPACE
Clinically ADV
, PUNCT
the DET
patients NOUN
complain VERB
ofdeclining VERB
strength NOUN
and CCONJ
endurance NOUN
with ADP
everyday ADJ
motor NOUN
tasks NOUN
. PUNCT
Musculoskeletal ADJ
pain NOUN
is AUX
a DET
nearly ADV
universal ADJ
feature NOUN
that PRON
doubtlesscontributes VERB
to ADP
the DET
impaired ADJ
performance NOUN
. PUNCT
  SPACE
The DET
examination NOUN
showsmuscle NOUN
weakness NOUN
and CCONJ
atrophy PROPN
. PUNCT
  SPACE
The DET
EMG PROPN
shows VERB
evidence NOUN
of ADP
olddenervation NOUN
with ADP
reinnervation NOUN
( PUNCT
giant ADJ
and CCONJ
long ADJ
- PUNCT
duration NOUN
motor NOUN
unitaction NOUN
potentials NOUN
) PUNCT
* PUNCT
and CCONJ
* PUNCT
evidence NOUN
of ADP
active ADJ
denervation(fibrillation PROPN
potentials NOUN
) PUNCT
. PUNCT
  SPACE
The DET
biopsy NOUN
also ADV
shows VERB
old ADJ
denervationwith PROPN
reinnervation NOUN
( PUNCT
fiber NOUN
- PUNCT
type NOUN
grouping NOUN
) PUNCT
* PUNCT
and CCONJ
* PUNCT
evidence NOUN
of ADP
activedenervation NOUN
( PUNCT
small ADJ
, PUNCT
angulated VERB
fibers NOUN
with ADP
dense ADJ
oxidative ADJ
enzymestaining VERB
) PUNCT
- PUNCT
but CCONJ
curiously ADV
, PUNCT
little ADJ
or CCONJ
no DET
group NOUN
atrophy NOUN
. PUNCT
Post ADJ
- ADJ
polio NOUN
patients NOUN
do AUX
not PART
have AUX
ALS PROPN
. PUNCT
  SPACE
In ADP
ALS PROPN
, PUNCT
there PRON
is AUX
clinicallyevident ADJ
deterioration NOUN
from ADP
one NUM
month NOUN
to ADP
the DET
next ADJ
. PUNCT
  SPACE
In ADP
post ADJ
- NOUN
polio NOUN
, PUNCT
the DET
patients NOUN
are AUX
remarkably ADV
stable ADJ
in ADP
objective ADJ
findings NOUN
from ADP
oneyear NOUN
to ADP
the DET
next ADJ
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
there PRON
are AUX
patients NOUN
who PRON
had AUX
poliobefore VERB
who PRON
develop VERB
genuine ADJ
ALS PROPN
, PUNCT
but CCONJ
ALS PROPN
is AUX
no DET
more ADV
common ADJ
amongpolio NOUN
survivors NOUN
than SCONJ
among ADP
people NOUN
who PRON
never ADV
had AUX
polio NOUN
. PUNCT
The DET
cause NOUN
of ADP
post ADJ
- ADJ
polio ADJ
syndrome NOUN
is AUX
unknown ADJ
. PUNCT
  SPACE
There PRON
is AUX
littleevidence NOUN
that SCONJ
post ADJ
- ADJ
polio NOUN
patients NOUN
have AUX
active ADJ
polio NOUN
virus NOUN
ordestructive ADJ
immunologic ADJ
response NOUN
to ADP
virus NOUN
antigen NOUN
. PUNCT
There PRON
is AUX
no DET
solid ADJ
evidence NOUN
that SCONJ
patients NOUN
with ADP
post ADJ
- ADJ
polio ADJ
haveanything VERB
different ADJ
happening VERB
to ADP
the DET
motor NOUN
unit NOUN
( PUNCT
anterior PROPN
horn PROPN
cells NOUN
, PUNCT
motor NOUN
axons NOUN
, PUNCT
neuromuscular ADJ
junctions NOUN
, PUNCT
and CCONJ
muscle NOUN
fibers NOUN
) PUNCT
thanpatients NOUN
with ADP
old ADJ
polio NOUN
who PRON
are AUX
not PART
complaining VERB
of ADP
deterioration NOUN
. PUNCT
Both DET
groups NOUN
can AUX
have AUX
the DET
same ADJ
EMG NOUN
and CCONJ
biopsy NOUN
findings NOUN
. PUNCT
  SPACE
The DET
reasonfor NOUN
these DET
" PUNCT
acute ADJ
" PUNCT
changes NOUN
in ADP
a DET
" PUNCT
chronic ADJ
" PUNCT
disease NOUN
( PUNCT
old ADJ
polio NOUN
) PUNCT
isunknown PROPN
. PUNCT
  SPACE
Possibly ADV
spinal ADJ
motor NOUN
neurons NOUN
( PUNCT
that PRON
have AUX
reinnervated VERB
hugenumbers NOUN
of ADP
muscle NOUN
fibers NOUN
) PUNCT
start VERB
shedding VERB
the DET
load NOUN
after ADP
severalyears NOUN
. PUNCT
There PRON
are AUX
a DET
couple NOUN
of ADP
clinical ADJ
features NOUN
that PRON
distinguish VERB
post ADJ
- ADJ
poliosyndrome ADJ
patients NOUN
from ADP
patients NOUN
with ADP
old ADJ
polio NOUN
who PRON
denydeterioration VERB
. PUNCT
  SPACE
The DET
PPS PROPN
patients NOUN
are AUX
more ADV
likely ADJ
to PART
have AUX
had VERB
severepolio NOUN
. PUNCT
  SPACE
The DET
PPS PROPN
patients NOUN
are AUX
* PUNCT
much ADJ
* PUNCT
more ADV
likely ADJ
to PART
complain VERB
of ADP
pain NOUN
. PUNCT
They PRON
also ADV
tend VERB
to PART
score VERB
higher ADV
on ADP
depression NOUN
scales VERB
ofneuropsychologic ADJ
tests NOUN
. PUNCT
My PRON
take VERB
on ADP
this DET
( PUNCT
I PRON
'm AUX
sure ADJ
some DET
will AUX
disagree VERB
) PUNCT
: PUNCT
  SPACE
after ADP
recovery NOUN
fromsevere ADJ
polio NOUN
there PRON
can AUX
be AUX
abnormal ADJ
loading NOUN
on ADP
muscles NOUN
, PUNCT
tendons NOUN
, PUNCT
ligaments NOUN
, PUNCT
bones NOUN
, PUNCT
and CCONJ
joints NOUN
, PUNCT
that PRON
leads VERB
to ADP
inflammatory ADJ
and CCONJ
/ SYM
ordegenerative ADJ
conditions NOUN
affecting VERB
these DET
structures NOUN
. PUNCT
  SPACE
The DET
increasingpain NOUN
, PUNCT
superimposed VERB
on ADP
the DET
chronic NOUN
( PUNCT
but CCONJ
unchanging ADJ
) PUNCT
weakness NOUN
, PUNCT
leadsto PROPN
progressive PROPN
impairment NOUN
of ADP
motor NOUN
performance NOUN
and CCONJ
ADL PROPN
. PUNCT
  SPACE
I PRON
amperhaps NOUN
biased VERB
by ADP
personal ADJ
experience NOUN
of ADP
having VERB
never ADV
seen VERB
a DET
PPSpatient NOUN
who PRON
was AUX
not PART
limited VERB
in ADP
some DET
way NOUN
by ADP
pain NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believethat VERB
PPS PROPN
patients NOUN
have AUX
more ADJ
rapid ADJ
deterioration NOUN
of ADP
motor PROPN
units VERB
thannon PROPN
- PUNCT
PPS PROPN
patients NOUN
( PUNCT
i.e. X
, PUNCT
those DET
with ADP
old ADJ
polio NOUN
of ADP
similar ADJ
severity NOUN
butwithout NOUN
PPS PROPN
complaints).--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                            SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58944From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
DN NOUN
> X
From ADP
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)DN NOUN
> X
Briefly PROPN
, PUNCT
this DET
is AUX
a DET
condition NOUN
in ADP
which PRON
patients NOUN
who PRON
have AUX
significantDN PROPN
> X
residual ADJ
weakness NOUN
from ADP
childhood NOUN
polio NOUN
notice NOUN
progression NOUN
of ADP
theDN PROPN
> X
weakness NOUN
as SCONJ
they PRON
get VERB
older ADJ
. PUNCT
  SPACE
One NUM
theory NOUN
is AUX
that SCONJ
the DET
remaining VERB
motorDN PROPN
> X
neurons NOUN
have AUX
to PART
work VERB
harder ADV
and CCONJ
so ADV
die VERB
sooner ADV
. PUNCT
If SCONJ
this DET
theory NOUN
were AUX
true ADJ
, PUNCT
the DET
muscle NOUN
biopsy NOUN
would AUX
show VERB
group NOUN
atrophy(evidence NOUN
of ADP
acute ADJ
loss NOUN
of ADP
enlarged VERB
motor NOUN
units NOUN
) PUNCT
; PUNCT
it PRON
doesn't VERB
. PUNCT
Instead ADV
, PUNCT
the DET
biopsy NOUN
shows NOUN
scattered VERB
, PUNCT
angulated VERB
, PUNCT
atrophic ADJ
fibers NOUN
. PUNCT
This DET
is AUX
more ADV
consistent ADJ
with ADP
load NOUN
- PUNCT
shedding VERB
by ADP
chronically ADV
overworkedmotor NOUN
neurons NOUN
- PUNCT
the DET
neurons NOUN
survive VERB
, PUNCT
at ADP
the DET
expense NOUN
of ADP
increasinglydenervated VERB
muscle.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                                                            SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58945From NUM
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?Sharon NOUN
Paulson PROPN
( PUNCT
paulson@tab00.larc.nasa.gov PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
: PUNCT
Once ADV
again ADV
we PRON
are AUX
waiting VERB
. PUNCT
I PRON
have AUX
been AUX
thinking VERB
that SCONJ
it PRON
would AUX
be AUX
good ADJ
: PUNCT
to PART
get AUX
to ADP
as ADV
large ADJ
a DET
group NOUN
as SCONJ
possible ADJ
to PART
see VERB
if SCONJ
anyone PRON
has AUX
any DET
: PUNCT
experience NOUN
with ADP
this DET
kind NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
members NOUN
of ADP
the DET
medical ADJ
: PUNCT
community NOUN
are AUX
sometimes ADV
loathe VERB
to PART
admit VERB
the DET
importance NOUN
that PRON
diet NOUN
and CCONJ
: PUNCT
foods NOUN
play VERB
in ADP
our PRON
general ADJ
health NOUN
and CCONJ
well NOUN
- PUNCT
being NOUN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
as SCONJ
you PRON
can AUX
: PUNCT
guess VERB
, PUNCT
I PRON
am AUX
worried ADJ
sick ADJ
about ADP
this DET
, PUNCT
and CCONJ
would AUX
appreciate VERB
any DET
ideas NOUN
: PUNCT
anyone PRON
out ADV
there PRON
has AUX
. PUNCT
  SPACE
Sorry ADJ
to PART
be AUX
so ADV
wordy ADJ
but CCONJ
I PRON
wanted VERB
to PART
really ADV
get AUX
: PUNCT
across ADP
what PRON
is AUX
going VERB
on ADP
here ADV
. PUNCT
: PUNCT
: PUNCT
I PRON
do AUX
n't PART
know VERB
anything PRON
specifically ADV
, PUNCT
but CCONJ
I PRON
have AUX
one NUM
further ADJ
anecdote NOUN
. PUNCT
Acolleague NOUN
of ADP
mine NOUN
had AUX
a DET
child NOUN
with ADP
a DET
serious ADJ
congenital ADJ
disease NOUN
, PUNCT
tuberoussclerosis NOUN
. PUNCT
Along ADP
with ADP
mental ADJ
retardation NOUN
comes VERB
a DET
serious ADJ
seizure NOUN
disorder NOUN
. PUNCT
The DET
parents NOUN
noticed VERB
that SCONJ
one NUM
thing NOUN
that PRON
would AUX
precipitate VERB
a DET
seizure NOUN
wasa PROPN
meal NOUN
with ADP
corn NOUN
in ADP
it PRON
. PUNCT
I PRON
have AUX
always ADV
wondered VERB
about ADP
the DET
connection NOUN
, PUNCT
andfurther NOUN
about ADP
other ADJ
dietary ADJ
ingredients NOUN
that PRON
might AUX
precipitate VERB
seizures NOUN
. PUNCT
Other ADJ
experiences NOUN
would AUX
be AUX
interesting ADJ
to PART
hear VERB
about ADP
from ADP
netters.--David ADJ
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Healthdozonoff@med-itvax1.bu.edu PROPN
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C(617 PROPN
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58946From NUM
: PUNCT
ruegg@med.unc.edu PROPN
( PUNCT
Robert PROPN
G. PROPN
Ruegg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EugenicsSubject VERB
: PUNCT
Re ADP
: PUNCT
Eugenics(Gordon PROPN
Banks NOUN
) PUNCT
writes:/;Probably CCONJ
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
; PUNCT
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
will AUX
; PUNCT
then ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
genetic;engineering PROPN
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want.;No VERB
breeding VERB
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
should;we PROPN
? PUNCT
Two NUM
past ADJ
problems NOUN
with ADP
eugenics NOUN
have AUX
been AUX
1 NUM
) PUNCT
reducing VERB
the DET
gene NOUN
pool NOUN
and CCONJ
2 X
) PUNCT
defining VERB
the DET
status NOUN
of ADP
the DET
eugenized NOUN
. PUNCT
Inserting VERB
genes NOUN
would AUX
not PART
seem VERB
to PART
reduce VERB
the DET
gene NOUN
pool NOUN
unless SCONJ
the DET
insertedgenes NOUN
later ADV
became VERB
transmissible ADJ
to ADP
progeny NOUN
. PUNCT
Then ADV
they PRON
may AUX
be AUX
able ADJ
tocrowd NOUN
out ADP
" PUNCT
garbage NOUN
genes NOUN
. PUNCT
" PUNCT
This DET
may AUX
in ADP
the DET
future NOUN
become VERB
possible ADJ
. PUNCT
Even ADV
ifit NOUN
does AUX
, PUNCT
awareness NOUN
of ADP
the DET
need NOUN
to PART
maintain VERB
the DET
gene NOUN
pool NOUN
would AUX
hopefullymean VERB
provisions NOUN
will AUX
be AUX
made VERB
for ADP
saving VERB
genes NOUN
that PRON
may AUX
come VERB
in ADP
handylater NOUN
. PUNCT
Evidently ADV
the DET
genes NOUN
for ADP
sickle ADJ
cell NOUN
disease NOUN
in ADP
equatorial ADJ
Africaand PROPN
for ADP
diabetes NOUN
in ADP
the DET
Hopi PROPN
* PUNCT
promoted VERB
* PUNCT
survival NOUN
in ADP
some DET
conditions NOUN
. PUNCT
Wedon't NOUN
really ADV
know VERB
what PRON
the DET
future NOUN
may AUX
hold VERB
for ADP
our PRON
environment NOUN
. PUNCT
Thereduced ADJ
wilderness- NOUN
and CCONJ
disease NOUN
- PUNCT
survival NOUN
capacity NOUN
of ADP
our PRON
relatively ADV
inbreddomesticated ADJ
animals NOUN
comes VERB
to ADP
mind NOUN
. PUNCT
Vulcanism NOUN
, PUNCT
nuclear ADJ
winter NOUN
, PUNCT
ice NOUN
age NOUN
, PUNCT
meteor ADV
impact NOUN
, PUNCT
new ADJ
microbiological ADJ
threats NOUN
, PUNCT
famine NOUN
, PUNCT
global ADJ
warming NOUN
, PUNCT
etc X
. PUNCT
,etc X
. PROPN
, PUNCT
are AUX
all ADV
conceivable ADJ
. PUNCT
Therefore ADV
, PUNCT
having VERB
as ADV
many ADJ
genes NOUN
as SCONJ
possibleavailable ADJ
is AUX
a DET
good ADJ
strategy NOUN
for ADP
species PROPN
survival NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
status NOUN
of ADP
genetically ADV
altered VERB
individuals NOUN
would AUX
start VERB
outas NOUN
no ADV
different ADJ
than SCONJ
anyone PRON
else ADV
's PART
. PUNCT
But CCONJ
if SCONJ
we PRON
could AUX
make"philosopher NOUN
- PUNCT
kings NOUN
" PUNCT
with ADP
great ADJ
bodies NOUN
and CCONJ
long ADJ
lives NOUN
, PUNCT
would AUX
we PRON
( PUNCT
or CCONJ
they)want VERB
to PART
give VERB
them PRON
elevated ADJ
status NOUN
? PUNCT
We PRON
could AUX
. PUNCT
The DET
Romans PROPN
did AUX
it PRON
with ADP
theirkings NOUN
* PUNCT
without ADP
* PUNCT
the DET
benefits NOUN
of ADP
such ADJ
eugenics NOUN
. PUNCT
The DET
race NOUN
eventuallyrealized VERB
and CCONJ
dealt VERB
with ADP
the DET
problems NOUN
which PRON
that PRON
caused VERB
, PUNCT
but CCONJ
for ADP
a DET
while NOUN
, PUNCT
it PRON
was AUX
a DET
problem NOUN
. PUNCT
Orwell PROPN
introduced VERB
us PRON
to ADP
the DET
notion NOUN
of ADP
what PRON
might AUX
happento PROPN
persons NOUN
genetically ADV
altered VERB
for ADP
more ADJ
menial ADJ
tasks NOUN
. PUNCT
But CCONJ
there PRON
is AUX
nothingnew VERB
under ADP
the DET
sun NOUN
. PUNCT
We PRON
treated VERB
slaves NOUN
the DET
same ADJ
way NOUN
for ADP
millennia PROPN
before"1984 PROPN
. PUNCT
" PUNCT
    SPACE
I PRON
see VERB
no DET
inherent ADJ
problem NOUN
with ADP
gene NOUN
therapy NOUN
which PRON
avoids VERB
at ADP
least ADJ
these DET
2problems NUM
. PUNCT
Humans NOUN
have AUX
always ADV
had VERB
trouble NOUN
having VERB
the DET
virtue NOUN
and CCONJ
wisdom NOUN
touse NOUN
any DET
power NOUN
that PRON
falls VERB
into ADP
their PRON
hands NOUN
to ADP
good ADJ
ends NOUN
all DET
the DET
time NOUN
. PUNCT
Thathasn't PROPN
stopped VERB
the DET
race NOUN
as SCONJ
a DET
whole NOUN
yet ADV
. PUNCT
Many ADJ
are AUX
the DET
civilizations NOUN
whichhave NOUN
died VERB
from ADP
inability NOUN
to PART
adapt VERB
to ADP
environmental ADJ
change NOUN
. PUNCT
However ADV
, PUNCT
alsomany PRON
are AUX
the DET
civilizations NOUN
which PRON
have AUX
died VERB
from ADP
the DET
abuse NOUN
of ADP
their PRON
ownpower NOUN
. PUNCT
The DET
ones NOUN
which PRON
survived VERB
have AUX
hopefully ADV
learned VERB
a DET
lesson NOUN
from ADP
thefates NOUN
of ADP
others NOUN
, PUNCT
and CCONJ
have AUX
survived VERB
by ADP
making VERB
better ADJ
choices NOUN
when ADV
theirturns NOUN
came VERB
. PUNCT
Not PART
that SCONJ
I PRON
do AUX
n't PART
think VERB
that SCONJ
this DET
gene NOUN
altering VERB
power NOUN
could AUX
n't PART
wipe VERB
us PRON
offthe DET
face NOUN
of ADP
the DET
earth NOUN
or CCONJ
cause VERB
endless ADJ
suffering NOUN
. PUNCT
Nuclear ADJ
power NOUN
or CCONJ
globalwarming NOUN
or CCONJ
whatever PRON
could AUX
and CCONJ
may AUX
still ADV
do AUX
that DET
, PUNCT
too ADV
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
an DET
issue NOUN
of ADP
wisdom NOUN
and CCONJ
virtue NOUN
. PUNCT
I PRON
personally ADV
do AUX
n't PART
thinkman VERB
has AUX
enough ADJ
wisdom NOUN
and CCONJ
virtue NOUN
to PART
pull VERB
this DET
next ADJ
challenge NOUN
off ADP
anybetter NOUN
than SCONJ
he PRON
did AUX
the DET
for ADP
last ADJ
few ADJ
. PUNCT
We PRON
, PUNCT
as SCONJ
eugenists NOUN
, PUNCT
may AUX
make VERB
it PRON
, PUNCT
an DET
wemay NOUN
not PART
. PUNCT
If SCONJ
we PRON
do AUX
n't PART
, PUNCT
I PRON
hope VERB
there PRON
are AUX
reservoirs NOUN
of ADP
" PUNCT
garbage NOUN
" PUNCT
people NOUN
outin VERB
some DET
backwater NOUN
with ADP
otherwise ADV
long ADV
discarded VERB
" PUNCT
garbage NOUN
" PUNCT
genes NOUN
which PRON
willpull VERB
us PRON
through ADP
. PUNCT
  SPACE
I PRON
believe VERB
that SCONJ
the DET
real ADJ
problem NOUN
is AUX
and CCONJ
will AUX
probably ADV
always ADV
be AUX
the DET
same ADJ
. PUNCT
Man NOUN
needs VERB
to PART
accept VERB
input NOUN
from ADP
the DET
great ADJ
spirit NOUN
of ADP
God PROPN
to PART
overcome VERB
hislacks NOUN
in ADP
the DET
area NOUN
of ADP
knowing VERB
how ADV
to PART
use VERB
the DET
power NOUN
he PRON
has AUX
. PUNCT
Some DET
men NOUN
have AUX
, PUNCT
and CCONJ
I PRON
believe VERB
all DET
men NOUN
may AUX
, PUNCT
listen VERB
to ADP
and CCONJ
obey VERB
the DET
still ADV
small ADJ
voice NOUN
of ADP
Godin PROPN
their PRON
hearts NOUN
. PUNCT
This DET
is AUX
the DET
way NOUN
to PART
begin VERB
to PART
recieve VERB
the DET
wisdom NOUN
and CCONJ
virtueneeded VERB
to PART
escape VERB
the DET
problems NOUN
consequent ADJ
to ADP
poor ADJ
choices NOUN
. PUNCT
Peoples NOUN
havedied VERB
out ADP
for ADP
many ADJ
reasons NOUN
. PUNCT
The DET
societies NOUN
which PRON
failed VERB
to PART
accept VERB
enoughinput NOUN
from ADP
God PROPN
to PART
safely ADV
use VERB
the DET
power NOUN
they PRON
had AUX
developed VERB
have AUX
destroyedthemselves NOUN
, PUNCT
and CCONJ
often ADV
others NOUN
in ADP
the DET
process NOUN
. PUNCT
It PRON
is AUX
self NOUN
- PUNCT
evident ADJ
that PRON
theones NOUN
which PRON
survive VERB
today NOUN
have AUX
either CCONJ
accepted VERB
enough ADJ
input NOUN
from ADP
the DET
Spiritto PROPN
use VERB
their PRON
powers NOUN
wisely ADV
enough ADV
to PART
avoid VERB
or CCONJ
survive VERB
their PRON
own ADJ
mistakesthus NOUN
far ADV
, PUNCT
or CCONJ
else ADV
have AUX
n't PART
had VERB
enough ADJ
power NOUN
for ADP
long ADJ
enough ADV
. PUNCT
  SPACE
In ADP
summary NOUN
, PUNCT
I PRON
would AUX
say VERB
that SCONJ
the DET
question NOUN
of ADP
whether SCONJ
to PART
use VERB
this DET
newtechnology NOUN
is AUX
really ADV
an DET
ancient ADJ
one NOUN
. PUNCT
And CCONJ
the DET
answer NOUN
, PUNCT
in ADP
some DET
ways NOUN
hard ADV
, PUNCT
insome ADJ
ways NOUN
easy ADV
, PUNCT
is AUX
the DET
same ADJ
ancient ADJ
answer NOUN
. PUNCT
It PRON
is AUX
n't PART
the DET
power NOUN
, PUNCT
it PRON
is AUX
theSpirit PROPN
. PUNCT
Sorry ADJ
for ADP
the DET
long ADJ
post NOUN
. PUNCT
Got PROPN
carried VERB
away ADV
. PUNCT
Bob PROPN
( PUNCT
ruegg@med.unc.edu)Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58947From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
  SPACE
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
ls8lnvINNrtb@saltillo.cs.utexas.edu NOUN
> X
turpin@cs.utexas.edu PROPN
     SPACE
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes VERB
: PUNCT
> X
            SPACE
... PUNCT
> X
* PUNCT
not PART
* PUNCT
imply VERB
that SCONJ
all DET
their PRON
treatments NOUN
are AUX
ineffective ADJ
. PUNCT
  SPACE
It PRON
* PUNCT
does*>imply ADV
that SCONJ
those DET
who PRON
rely VERB
on ADP
faulty ADJ
methodology NOUN
and CCONJ
reasoning NOUN
are AUX
> X
incapable ADJ
of ADP
discovering VERB
* PUNCT
which PRON
* PUNCT
treatments NOUN
are AUX
effective ADJ
and CCONJ
> X
which PRON
are AUX
not.)To VERB
start VERB
with ADP
, PUNCT
no DET
methodology NOUN
or CCONJ
form NOUN
of ADP
reasoning NOUN
is AUX
infallible ADJ
. PUNCT
  SPACE
Sothere PROPN
's AUX
a DET
question NOUN
of ADP
how ADV
much ADJ
certainty NOUN
we PRON
are AUX
willing ADJ
to PART
pay VERB
for ADP
in ADP
agiven PROPN
context NOUN
. PUNCT
  SPACE
Insistence NOUN
on ADP
too ADV
much ADJ
rigor NOUN
bogs NOUN
science NOUN
down ADP
completelyand NOUN
makes VERB
progress NOUN
impossible ADJ
. PUNCT
  SPACE
( PUNCT
Expenditure NOUN
of ADP
sufficiently ADV
large ADJ
sumsof NOUN
money NOUN
and CCONJ
amounts NOUN
of ADP
time NOUN
can AUX
sometimes ADV
overcome VERB
this DET
. PUNCT
) PUNCT
  SPACE
On ADP
the DET
otherhand NOUN
, PUNCT
with ADP
too ADV
little ADJ
rigor NOUN
much ADV
is AUX
lost VERB
by ADP
basing VERB
work NOUN
on ADP
results NOUN
whicheventually ADV
turn VERB
out ADP
to PART
be AUX
false ADJ
. PUNCT
  SPACE
There PRON
is AUX
a DET
morass NOUN
of ADP
studiescontradicting VERB
other ADJ
studies NOUN
and CCONJ
outsiders NOUN
start VERB
saying VERB
  SPACE
" PUNCT
You PRON
people NOUN
callTHIS PUNCT
science NOUN
? PUNCT
" PUNCT
   SPACE
( PUNCT
My PRON
opinion NOUN
, PUNCT
for ADP
what PRON
it PRON
's AUX
worth ADJ
, PUNCT
is AUX
that SCONJ
one PRON
sees VERB
boththese ADJ
phenomena NOUN
happening VERB
simultaneously ADV
in ADP
some DET
parts NOUN
of ADP
psychology NOUN
. PUNCT
) PUNCT
  SPACE
Some DET
subjective ADJ
judgement NOUN
is AUX
required VERB
to PART
decide VERB
on ADP
the DET
level NOUN
of ADP
rigorappropriate NOUN
for ADP
a DET
particular ADJ
investigation NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
it PRON
is AUX
ever ADV
possible ADJ
to PART
banish VERB
subjective ADJ
judgement NOUN
from ADP
science NOUN
. PUNCT
  SPACE
My PRON
second ADJ
point NOUN
, PUNCT
though ADV
, PUNCT
is AUX
that DET
highly ADV
capable ADJ
people NOUN
can AUX
often ADV
makeextremely ADV
reliable ADJ
judgements NOUN
about ADP
scientific ADJ
validity NOUN
even ADV
when ADV
usingmethodology NOUN
considered VERB
inadequate ADJ
by ADP
the DET
usual ADJ
standards NOUN
. PUNCT
  SPACE
I PRON
think VERB
thisis NOUN
true ADJ
of ADP
many ADJ
scientists NOUN
and CCONJ
I PRON
think VERB
it PRON
is AUX
true ADJ
of ADP
many ADJ
who PRON
approachtheir VERB
discipline NOUN
in ADP
a DET
way NOUN
that PRON
is AUX
not PART
generally ADV
recognized VERB
as SCONJ
scientific ADJ
. PUNCT
Within ADP
mathematics NOUN
, PUNCT
I PRON
think VERB
there PRON
are AUX
several ADJ
examples NOUN
, PUNCT
especially ADV
beforethe PROPN
twentieth ADJ
century NOUN
. PUNCT
  SPACE
One NUM
conspicuous ADJ
case NOUN
is AUX
that DET
of ADP
Riemann PROPN
, PUNCT
who PRON
isfamous ADJ
for ADP
many ADJ
theorems NOUN
he PRON
stated VERB
but CCONJ
did AUX
not PART
prove VERB
. PUNCT
  SPACE
( PUNCT
Later ADV
mathematicians NOUN
did AUX
prove VERB
them PRON
, PUNCT
of ADP
course NOUN
. PUNCT
) PUNCT
  SPACE
I PRON
think VERB
that SCONJ
for ADP
a DET
good ADJ
scientist NOUN
, PUNCT
empirical ADJ
investigation NOUN
is AUX
often ADV
notso VERB
much ADV
a DET
matter NOUN
of ADP
determining VERB
what PRON
is AUX
true ADJ
and CCONJ
what PRON
's AUX
not PART
  SPACE
as SCONJ
it PRON
is AUX
a DET
matter NOUN
of ADP
convincing VERB
other ADJ
people NOUN
. PUNCT
  SPACE
( PUNCT
People NOUN
have AUX
proposed VERB
lots NOUN
of ADP
incompatible ADJ
definitions NOUN
of ADP
science NOUN
here ADV
, PUNCT
but CCONJ
I PRON
think VERB
the DET
ability NOUN
to PART
objectively ADV
convince VERB
others NOUN
of ADP
the DET
validity NOUN
of ADP
one NOUN
's PART
results NOUN
is AUX
anessential ADJ
element NOUN
. PUNCT
  SPACE
Not PART
that SCONJ
one PRON
can AUX
necessarily ADV
do AUX
that DET
at ADP
every DET
step NOUN
of ADP
the DET
scientific ADJ
process NOUN
, PUNCT
but CCONJ
I PRON
think VERB
that SCONJ
if SCONJ
one NUM
is AUX
not PART
moving VERB
toward ADP
that DET
goal NOUN
then ADV
one NUM
is AUX
not PART
doing VERB
science.)When PROPN
a DET
person NOUN
other ADJ
than SCONJ
a DET
scientist NOUN
is AUX
quite ADV
good ADJ
at ADP
what PRON
he PRON
does AUX
andseems NOUN
to PART
be AUX
very ADV
successful ADJ
at ADP
it PRON
, PUNCT
I PRON
think VERB
that SCONJ
his PRON
judgements NOUN
are AUX
alsoworthy ADJ
of ADP
respect NOUN
and CCONJ
that SCONJ
his PRON
assertions NOUN
are AUX
well ADV
worth ADJ
furtherinvestigation NOUN
. PUNCT
  SPACE
In ADP
article NOUN
< X
C53By5.HD@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
I PRON
wrote VERB
: PUNCT
> X
Namely ADV
, PUNCT
is AUX
there PRON
really ADV
justification NOUN
for ADP
the DET
belief NOUN
that SCONJ
> X
science PROPN
is AUX
a DET
superior ADJ
path NOUN
to ADP
truth NOUN
than SCONJ
non ADJ
- ADJ
scientific ADJ
approaches NOUN
? PUNCT
  SPACE
Admittedly ADV
, PUNCT
my PRON
question NOUN
was AUX
not PART
at ADV
all ADV
well ADV
posed VERB
. PUNCT
  SPACE
A DET
considerableamount NOUN
of ADP
effort NOUN
in ADP
a DET
" PUNCT
serious ADJ
scholarly ADJ
investigation NOUN
" PUNCT
such ADJ
as SCONJ
Isuggested PROPN
would AUX
be AUX
required VERB
simply ADV
to PART
formulate VERB
an DET
appropriately ADV
specific ADJ
question NOUN
to PART
try VERB
and CCONJ
answer VERB
. PUNCT
  SPACE
The DET
" PUNCT
science NOUN
" PUNCT
I PRON
was AUX
thinking VERB
of ADP
in ADP
my PRON
question NOUN
is AUX
the DET
actual ADJ
science NOUN
currently ADV
practiced VERB
now ADV
in ADP
the DET
last ADJ
decade NOUN
of ADP
the DET
twentieth ADJ
century NOUN
. PUNCT
  SPACE
I PRON
certainly ADV
was AUX
n't PART
thinking VERB
of ADP
some DET
idealized VERB
science NOUN
or CCONJ
the DET
mere ADJ
use NOUN
of ADP
" PUNCT
reason NOUN
and CCONJ
observation NOUN
. PUNCT
"One PUNCT
thing NOUN
I PRON
had AUX
in ADP
mind NOUN
in ADP
my PRON
suggestion NOUN
was AUX
the DET
question NOUN
as SCONJ
to PART
whetherin VERB
many ADJ
cases NOUN
the DET
subjective ADJ
judgements NOUN
of ADP
skilled ADJ
and CCONJ
experiencedpractitioners NOUN
might AUX
be AUX
more ADV
reliable ADJ
than SCONJ
statistical ADJ
studies NOUN
. PUNCT
  SPACE
Since SCONJ
Russell PROPN
Turpin PROPN
seems VERB
to PART
be AUX
much ADV
more ADV
familiar ADJ
than SCONJ
I PRON
am AUX
withthe DET
study NOUN
of ADP
scientific ADJ
methodology NOUN
, PUNCT
perhaps ADV
he PRON
can AUX
tell VERB
us PRON
if SCONJ
there PRON
is AUX
any DET
existing VERB
research NOUN
related VERB
to ADP
this DET
question NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58948From NUM
: PUNCT
ruegg@med.unc.edu NOUN
( PUNCT
Robert PROPN
G. PROPN
Ruegg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EugenicsThanks PROPN
to PART
Tarl PROPN
Neustaedter PROPN
of ADP
MA PROPN
for ADP
kindly ADV
letting VERB
me PRON
know VERB
that SCONJ
myreference NOUN
in ADP
prior ADJ
post NOUN
to ADP
Orwell NOUN
and CCONJ
" PUNCT
1984 NUM
" PUNCT
should AUX
probably ADV
have AUX
been AUX
toHuxley NOUN
and CCONJ
" PUNCT
Brave PROPN
New PROPN
World PROPN
. PUNCT
" PUNCT
Sorry INTJ
, PUNCT
Al PROPN
. PUNCT
Bob PROPN
( PUNCT
ruegg@med.unc.edu)Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58949From NUM
: PUNCT
marcbg@feenix.metronet.com X
( PUNCT
Marc PROPN
Grant)Subject NUM
: PUNCT
Adult PROPN
Chicken PROPN
PoxI PROPN
am AUX
35 NUM
and CCONJ
am AUX
recovering VERB
from ADP
a DET
case NOUN
of ADP
Chicken PROPN
Pox PROPN
which PRON
I PRON
contractedfrom VERB
my PRON
5 NUM
year NOUN
old ADJ
daughter NOUN
. PUNCT
  SPACE
I PRON
have AUX
quite ADV
a DET
few ADJ
of ADP
these DET
little ADJ
puppiesall NOUN
over ADP
my PRON
bod NOUN
. PUNCT
  SPACE
At ADP
what PRON
point NOUN
am AUX
I PRON
no ADV
longer ADV
infectious ADJ
? PUNCT
  SPACE
My PRON
physician'soffice NOUN
says VERB
when ADV
they PRON
are AUX
all DET
scabbed VERB
over ADV
. PUNCT
  SPACE
Is AUX
this DET
true?Is PROPN
there PRON
any DET
medications NOUN
which PRON
can AUX
promote VERB
healing NOUN
of ADP
the DET
pox NOUN
? PUNCT
  SPACE
Speed NOUN
uphealing VERB
? PUNCT
  SPACE
Please INTJ
e NOUN
- NOUN
mail NOUN
replies NOUN
, PUNCT
and CCONJ
thanks NOUN
in ADP
advance.-- PROPN
|Marc PROPN
Grant PROPN
          SPACE
| PROPN
Internet PROPN
: PUNCT
marcbg@feenix.metronet.com X
||POB PROPN
850472 NUM
          SPACE
| PROPN
Amateur PROPN
Radio PROPN
Station PROPN
N5MEI PROPN
          SPACE
||Richardson NOUN
, PUNCT
TX PROPN
75085| PROPN
Voice PROPN
/ SYM
Fax PROPN
: PUNCT
214 NUM
- SYM
231 NUM
- PUNCT
3998 NUM
              SPACE
| PROPN
    SPACE
- PUNCT
.... PUNCT
.- PUNCT
- PUNCT
... PUNCT
  SPACE
.- PUNCT
.- PUNCT
.. PUNCT
.- PUNCT
.. PUNCT
    SPACE
.. PUNCT
- PUNCT
. PUNCT
--- PUNCT
.- PUNCT
.. PUNCT
-.- PUNCT
... PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58950From NUM
: PUNCT
< X
U19250@uicvm.uic.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Foreskin PROPN
TroublesThis PROPN
is AUX
generally ADV
called VERB
phimosis NOUN
.. PUNCT
usually ADV
it PRON
is AUX
due ADJ
to ADP
an DET
inflammation NOUN
, PUNCT
and CCONJ
can AUX
be AUX
retracted VERB
in ADP
the DET
physician NOUN
's PART
offfice NOUN
rather ADV
eaaasily ADV
. PUNCT
  SPACE
One PRON
should AUX
see VERB
a DET
GP PROPN
, PUNCT
or CCONJ
in ADP
complicated ADJ
cases NOUN
, PUNCT
a DET
urologist NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58951From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
Re ADP
: PUNCT
Selective ADJ
Placebo PROPN
  SPACE
Ron PROPN
Roth PROPN
recommends VERB
: PUNCT
" PUNCT
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED ADV
through ADP
the DET
                         SPACE
proper ADJ
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
ther NOUN
following VERB
: PUNCT
... PUNCT
" PUNCT
                        SPACE
[ PUNCT
diet PROPN
omitted]1 PROPN
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
this DET
sounds VERB
suspiciouslylike ADP
a DET
blood NOUN
chemistry NOUN
... PUNCT
glucose NOUN
tolerance NOUN
and CCONJ
the DET
like ADJ
... PUNCT
suddenly ADV
chemistry NOUN
exists VERB
? PUNCT
You PRON
know VERB
perfectly ADV
well ADV
that SCONJ
this DET
person NOUN
can AUX
be AUX
saved VERB
needless ADJ
trouble NOUN
and CCONJ
expense NOUN
with ADP
simple ADJ
muscle NOUN
testing NOUN
and CCONJ
hair NOUN
analysis NOUN
to PART
diagnose VERB
... PUNCT
no"CONFIRM PUNCT
" PUNCT
any DET
aberrant ADJ
physiology NOUN
... PUNCT
but CCONJ
then ADV
again ADV
... PUNCT
maybe ADV
that DET
's AUX
what PRON
you PRON
meantby VERB
" PUNCT
proper ADJ
channels NOUN
. PUNCT
"2 PUNCT
) PUNCT
Were AUX
you PRON
able ADJ
to PART
understand VERB
Dick PROPN
King PROPN
's PART
post NOUN
that SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
is AUX
not PART
thesame ADJ
thing NOUN
as SCONJ
90 NUM
% NOUN
of ADP
patients NOUN
" PUNCT
which PRON
was AUX
a DET
reply NOUN
to ADP
your PRON
inability NOUN
to PART
criticallyevaluate VERB
the DET
statistic NOUN
you PRON
cited VERB
from ADP
the DET
New PROPN
England PROPN
Journal PROPN
of ADP
Medicine PROPN
. PUNCT
Couldyou NOUN
figure VERB
out ADP
what PRON
is AUX
implied VERB
by ADP
the DET
remark NOUN
" PUNCT
Of ADP
course NOUN
MDs NOUN
are AUX
ethically ADV
bound VERB
to PART
not PART
knowingly ADV
dispense NOUN
placebos NOUN
... PUNCT
"?3 PUNCT
) PUNCT
Ron PROPN
... PUNCT
have AUX
you PRON
ever ADV
thought VERB
about ADP
why ADV
you PRON
never ADV
post VERB
in ADP
misc.health.alterna-tive...and PROPN
insist VERB
instead ADV
upon SCONJ
insinuating VERB
your PRON
untrained ADJ
, PUNCT
non ADJ
- ADJ
medical ADJ
, PUNCT
often ADV
delusional ADJ
notions NOUN
of ADP
health NOUN
and CCONJ
disease NOUN
into ADP
this DET
forum NOUN
? PUNCT
I PRON
suspect VERB
from ADP
yourapparent NOUN
anger NOUN
toward ADP
MDs NOUN
and CCONJ
heteropathic ADJ
medicine NOUN
that SCONJ
there PRON
may AUX
be AUX
anunderlying VERB
' PUNCT
father NOUN
problem' NOUN
... PUNCT
of ADP
course NOUN
I PRON
can AUX
CONFIRM VERB
this DET
by ADP
surrogate ADJ
muscletesting VERB
one NUM
of ADP
my PRON
patients NOUN
while SCONJ
they PRON
ponder VERB
my PRON
theory NOUN
to PART
see VERB
if SCONJ
one NUM
of ADP
their PRON
  SPACE
previously ADV
weak ADJ
' PUNCT
indicator NOUN
' PUNCT
muscles NOUN
strengthens VERB
... PUNCT
or CCONJ
do AUX
you PRON
have AUX
reservationsabout NOUN
my PRON
unique ADJ
methods NOUN
of ADP
diagnosis NOUN
? PUNCT
Oh INTJ
.. PUNCT
I PRON
forgot VERB
what PRON
you PRON
said VERB
in ADP
an DET
earlierpost NOUN
.. PUNCT
"neither PRON
am AUX
I PRON
concerned ADJ
of ADP
whether SCONJ
or CCONJ
not PART
my PRON
study NOUN
designs NOUN
meet VERB
your PRON
oranyone NOUN
else ADV
's PART
criteria NOUN
of ADP
acceptance NOUN
. PUNCT
" PUNCT
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.edu PROPN
ideas NOUN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58952From NUM
: PUNCT
twong@civil.ubc.ca PROPN
( PUNCT
Thomas PROPN
Wong)Subject VERB
: PUNCT
Image NOUN
processing NOUN
software NOUN
for ADP
PCI PROPN
am AUX
posting VERB
the DET
following NOUN
for ADP
my PRON
brother NOUN
. PUNCT
Please INTJ
post VERB
your PRON
replies NOUN
orsend VERB
him PRON
email NOUN
to ADP
his PRON
address NOUN
at ADP
the DET
end NOUN
of ADP
his PRON
message NOUN
. PUNCT
Thank VERB
you.____________________________________________________________________My PROPN
supervisor NOUN
is AUX
looking VERB
for ADP
a DET
image NOUN
analysis NOUN
software NOUN
forMS PROPN
DOS PROPN
. PUNCT
We PRON
need VERB
something PRON
to PART
measure VERB
lengths NOUN
and CCONJ
areas NOUN
onmicrographs NOUN
. PUNCT
Sometime ADV
in ADP
the DET
future NOUN
, PUNCT
we PRON
may AUX
expand VERB
to PART
dosome VERB
densitometry NOUN
for ADP
gels NOUN
, PUNCT
etc X
. PUNCT
We PRON
've AUX
found VERB
lots NOUN
of ADP
ads NOUN
andinfo VERB
for ADP
the DET
Jandel PROPN
Scientific PROPN
products NOUN
: PUNCT
SigmaScan PROPN
and CCONJ
Java PROPN
. PUNCT
But CCONJ
we PRON
have AUX
not PART
been AUX
able ADJ
to PART
find VERB
any DET
competing VERB
products NOUN
. PUNCT
Wewould AUX
appreciate VERB
any DET
comments NOUN
on ADP
these DET
products NOUN
andsuggestions NOUN
/ SYM
comments NOUN
on ADP
other ADJ
products NOUN
we PRON
should AUX
consider VERB
. PUNCT
Thanks NOUN
. PUNCT
DonaldUserDONO@MTSG.UBC.CANewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58953From NUM
: PUNCT
robin@ntmtv.com X
( PUNCT
Robin PROPN
Coutellier)Subject NUM
: PUNCT
Critique NOUN
of ADP
Pressure PROPN
Point PROPN
MassagerAs PROPN
promised VERB
, PUNCT
below ADV
is AUX
a DET
personal ADJ
critique NOUN
of ADP
a DET
Pressure PROPN
Point PROPN
Massager PROPN
I PRON
recently ADV
bought VERB
from ADP
the DET
Self PROPN
Care PROPN
Catalog PROPN
. PUNCT
  SPACE
I PRON
am AUX
very ADV
pleased ADJ
with ADP
the DET
results NOUN
. PUNCT
  SPACE
The DET
catalog NOUN
description NOUN
is AUX
as SCONJ
follows VERB
: PUNCT
	 SPACE
The DET
Pressure PROPN
Point PROPN
Massager PROPN
is AUX
an DET
aggressive ADJ
physical ADJ
massager NOUN
	 SPACE
that PRON
actually ADV
kneads VERB
the DET
tension NOUN
out SCONJ
of ADP
muscles NOUN
... PUNCT
much ADV
like SCONJ
a DET
	 SPACE
professional ADJ
shiatsu PROPN
masseur NOUN
. PUNCT
  SPACE
The DET
powerful ADJ
motor NOUN
drives VERB
two NUM
	 SPACE
counter NOUN
- ADJ
rotating VERB
" PUNCT
thumbs NOUN
" PUNCT
that PRON
move VERB
in ADP
one NUM
- PUNCT
inch NOUN
orbits NOUN
-- PUNCT
	 SPACE
releasing VERB
tension NOUN
in ADP
the DET
neck NOUN
, PUNCT
back ADV
, PUNCT
legs NOUN
and CCONJ
arms NOUN
. PUNCT
	 SPACE
Pressure PROPN
Point PROPN
Massager PROPN
    SPACE
A2623 PROPN
   SPACE
$ SYM
109To NUM
order NOUN
or CCONJ
receive VERB
a DET
catalog NOUN
, PUNCT
call NOUN
( PUNCT
24 NUM
hours NOUN
, PUNCT
7 NUM
days NOUN
) PUNCT
1 NUM
- NUM
800 NUM
- PUNCT
345 NUM
- PUNCT
3371 NUM
orfax NOUN
at ADP
1 NUM
- SYM
800 NUM
- PUNCT
345 NUM
- PUNCT
4021.********NOTE PROPN
: PUNCT
When ADV
I PRON
ordered VERB
the DET
massager NOUN
, PUNCT
the DET
item NOUN
number NOUN
was AUX
different ADJ
, PUNCT
and CCONJ
the DET
pricewas ADJ
$ SYM
179 NUM
, PUNCT
not PART
$ SYM
109 NUM
. PUNCT
  SPACE
When ADV
I PRON
received VERB
it PRON
, PUNCT
I PRON
glanced VERB
thru ADP
the DET
newer NOUN
catalogenclosed VERB
with ADP
it PRON
to PART
see VERB
anything PRON
was AUX
different ADJ
from ADP
the DET
first ADJ
one NUM
. PUNCT
  SPACE
I PRON
was AUX
  SPACE
QUITE PROPN
annoyed VERB
to PART
see VERB
a DET
$ SYM
70 NUM
difference NOUN
in ADP
price NOUN
. PUNCT
  SPACE
I PRON
called VERB
them PRON
about ADP
it PRON
, PUNCT
and CCONJ
the DET
cust NOUN
rep PROPN
said VERB
that SCONJ
they PRON
had AUX
switched VERB
manufacturers NOUN
, PUNCT
although SCONJ
itlooks NOUN
and CCONJ
works VERB
exactly ADV
the DET
same ADJ
. PUNCT
  SPACE
He PRON
told VERB
me PRON
to PART
go VERB
ahead ADV
and CCONJ
return VERB
thefirst PROPN
one NUM
and CCONJ
order VERB
the DET
cheaper ADJ
one NOUN
, PUNCT
using VERB
the DET
price NOUN
difference NOUN
as SCONJ
areason PROPN
for ADP
return NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
since SCONJ
the DET
newer ADJ
ones NOUN
might AUX
take VERB
a DET
while NOUN
toship NOUN
from ADP
the DET
factory NOUN
( PUNCT
I PRON
received VERB
this DET
one NUM
in ADP
3 NUM
days NOUN
) PUNCT
, PUNCT
he PRON
told VERB
me PRON
I PRON
could AUX
use VERB
the DET
one NOUN
I PRON
already ADV
have AUX
until ADP
the DET
new ADJ
one NOUN
arrives VERB
, PUNCT
then ADV
return VERB
the DET
old ADJ
one NUM
. PUNCT
  SPACE
VERY ADV
reasonable ADJ
people.********I NOUN
have AUX
long ADJ
- PUNCT
term NOUN
neck NOUN
, PUNCT
shoulder VERB
and CCONJ
back ADJ
pain NOUN
( PUNCT
if SCONJ
I PRON
were AUX
a DET
building NOUN
, PUNCT
I PRON
would AUX
be AUX
described VERB
as SCONJ
" PUNCT
structurally ADV
unsound ADJ
:-) PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
have AUX
stretches NOUN
and CCONJ
exercises NOUN
to PART
do AUX
that DET
help NOUN
, PUNCT
but CCONJ
the DET
problem NOUN
never ADV
really ADV
goes VERB
away ADV
. PUNCT
  SPACE
If SCONJ
, PUNCT
for ADP
whatever PRON
reason NOUN
, PUNCT
I PRON
do AUX
not PART
exercise VERB
for ADP
a DET
while NOUN
( PUNCT
illness NOUN
, PUNCT
not PART
enoughtime NOUN
, PUNCT
lazy ADJ
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
the DET
muscles NOUN
become VERB
quite ADV
stiff ADJ
and CCONJ
painful ADJ
and CCONJ
, PUNCT
thus ADV
, PUNCT
more ADV
prone ADJ
to ADP
further ADJ
strain VERB
. PUNCT
  SPACE
Even ADV
with ADP
exercise NOUN
, PUNCT
I PRON
sometimes ADV
require VERB
physical ADJ
therapy NOUN
to PART
get AUX
back ADV
on ADP
track NOUN
, PUNCT
which PRON
1st NOUN
requires VERB
a DET
doctor NOUN
visit NOUN
to PART
get AUX
the DET
prescription NOUN
for ADP
p.t PROPN
. PROPN
  SPACE
The DET
tension NOUN
in ADP
my PRON
neck NOUN
, PUNCT
if SCONJ
not PART
released VERB
, PUNCT
eventually ADV
causes VERB
a DET
headache(sometimes PROPN
confused VERB
with ADP
a DET
sinus NOUN
headache NOUN
) PUNCT
over ADP
my PRON
left ADJ
eye NOUN
. PUNCT
  SPACE
When ADV
my PRON
physical ADJ
therapist NOUN
has AUX
massaged VERB
my PRON
neck NOUN
, PUNCT
and CCONJ
the DET
sub ADJ
- ADJ
occipital ADJ
muscles NOUN
in ADP
particular ADJ
( PUNCT
the DET
2 NUM
knobby PROPN
areas NOUN
near SCONJ
the DET
base NOUN
of ADP
the DET
skull PROPN
) PUNCT
, PUNCT
the DET
headache NOUN
usually ADV
eased VERB
within ADP
a DET
day NOUN
, PUNCT
although SCONJ
it PRON
hurts VERB
like SCONJ
hell PROPN
to PART
while SCONJ
it PRON
is AUX
being AUX
massaged VERB
. PUNCT
I PRON
ordered VERB
this DET
device NOUN
because SCONJ
it PRON
seemed VERB
to PART
be AUX
exactly ADV
what PRON
I PRON
was AUX
wishingsomeone NOUN
would AUX
invent VERB
--a PROPN
machine NOUN
that PRON
would AUX
massage VERB
, PUNCT
NOT PROPN
VIBRATE PROPN
, PUNCT
my PRON
neck NOUN
and CCONJ
sub ADJ
- ADJ
occipital ADJ
muscles NOUN
like SCONJ
my PRON
physical ADJ
therapist NOUN
has AUX
done VERB
in ADP
the DET
past NOUN
, PUNCT
that SCONJ
I PRON
could AUX
use VERB
by ADP
myself PRON
. PUNCT
  SPACE
No DET
doctor NOUN
visit NOUN
or CCONJ
inconvenient ADJ
p.t PROPN
. PROPN
appts PROPN
for ADP
a DET
week NOUN
later ADV
would AUX
be AUX
needed VERB
to PART
use VERB
it PRON
. PUNCT
  SPACE
I PRON
could AUX
get AUX
up ADP
in ADP
the DET
middle NOUN
of ADP
the DET
night NOUN
and CCONJ
use VERB
it PRON
, PUNCT
if SCONJ
necessary ADJ
. PUNCT
I PRON
have AUX
been AUX
using VERB
it PRON
for ADP
about ADV
a DET
week NOUN
or CCONJ
so ADV
now ADV
, PUNCT
and CCONJ
LOVE VERB
it PRON
. PUNCT
  SPACE
The DET
baseunit NOUN
is AUX
about ADP
a DET
14 NUM
" PUNCT
x SYM
9 NUM
" PUNCT
rectangle NOUN
, PUNCT
about ADV
3 NUM
- PUNCT
3/4 NUM
" PUNCT
high ADJ
, PUNCT
with ADP
handles NOUN
on ADP
eachside NOUN
, PUNCT
and CCONJ
it PRON
plugs VERB
into ADP
an DET
average ADJ
outlet NOUN
. PUNCT
  SPACE
The DET
two NUM
metal NOUN
" PUNCT
thumbs NOUN
" PUNCT
are AUX
about ADV
1 NUM
- PUNCT
1/2 NUM
" PUNCT
in ADP
diameter NOUN
and CCONJ
protrude NOUN
about ADV
2 NUM
- PUNCT
1/2 NUM
" PUNCT
above ADP
the DET
base NOUN
. PUNCT
  SPACE
The DET
thumbs NOUN
are AUX
covered VERB
with ADP
a DET
gray ADJ
cloth NOUN
that PRON
is AUX
non ADJ
- ADJ
removable ADJ
. PUNCT
  SPACE
They PRON
are AUX
located VERB
more ADV
toward ADP
one NUM
end NOUN
, PUNCT
rather ADV
than SCONJ
centered VERB
( PUNCT
see VERB
figure NOUN
below ADV
) PUNCT
. PUNCT
  SPACE
They PRON
move VERB
in ADP
either DET
clockwise NOUN
or CCONJ
counter ADJ
- ADJ
clockwise ADJ
directions NOUN
, PUNCT
depending VERB
on ADP
which PRON
side NOUN
of ADP
the DET
switch NOUN
is AUX
pushed VERB
, PUNCT
and CCONJ
are AUX
very ADV
quiet ADJ
. PUNCT
  SPACE
It PRON
can AUX
be AUX
used VERB
from ADP
eitherside NOUN
. PUNCT
  SPACE
For ADP
instance NOUN
, PUNCT
the DET
thumbs NOUN
can AUX
be AUX
positioned VERB
at ADP
the DET
base NOUN
of ADP
the DET
neckor NOUN
the DET
top NOUN
of ADP
the DET
neck NOUN
, PUNCT
depending VERB
on ADP
which PRON
direction NOUN
you PRON
approach VERB
it PRON
. PUNCT
                 SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
                SPACE
| PROPN
  SPACE
_ PROPN
_ PROPN
    SPACE
_ VERB
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
    SPACE
_ VERB
_ PROPN
  SPACE
| ADP
                SPACE
| PROPN
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
		 SPACE
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| ADP
  SPACE
| ADP
  SPACE
\^^/ NUM
   SPACE
\^^/ NUM
  SPACE
| ADP
  SPACE
| ADP
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
   SPACE
|| PROPN
     SPACE
|| SYM
   SPACE
| PROPN
  SPACE
| ADP
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
		 SPACE
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| NOUN
  SPACE
|_______________| PROPN
  SPACE
| NOUN
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
|__| PROPN
			    SPACE
|__| PROPN
| PROPN
                SPACE
|_______________________________|For PUNCT
the DET
neck NOUN
/ SYM
head NOUN
, PUNCT
the DET
user NOUN
varies VERB
the DET
amount NOUN
of ADP
pressure NOUN
used VERB
by ADP
( PUNCT
if SCONJ
laying VERB
down ADP
) PUNCT
allowing VERB
all DET
or CCONJ
part NOUN
of ADP
the DET
full ADJ
weight NOUN
of ADP
the DET
head NOUN
and/or CCONJ
neck NOUN
to PART
rest VERB
on ADP
the DET
thumbs NOUN
. PUNCT
  SPACE
The DET
handles NOUN
can AUX
also ADV
be AUX
used VERB
if SCONJ
sitting VERB
orstanding VERB
, PUNCT
applying VERB
pressure NOUN
with ADP
the DET
arms NOUN
/ SYM
wrists NOUN
. PUNCT
  SPACE
Since SCONJ
my PRON
wrists NOUN
arealso ADV
impaired VERB
( PUNCT
I PRON
'm AUX
typing VERB
this DET
over ADP
an DET
extended ADJ
period NOUN
of ADP
time NOUN
) PUNCT
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
have AUX
someone PRON
living VERB
with ADP
me PRON
who PRON
can AUX
apply VERB
it PRON
, PUNCT
laying VERB
down ADP
works NOUN
well ADV
for ADP
me PRON
. PUNCT
For ADP
my PRON
back NOUN
, PUNCT
I PRON
sit VERB
in ADP
a DET
high ADV
- PUNCT
backed VERB
kitchen NOUN
chair NOUN
, PUNCT
position VERB
the DET
massagerbehind NOUN
me PRON
at ADP
whatever PRON
point NOUN
I PRON
want VERB
massaged VERB
, PUNCT
and CCONJ
lean VERB
back ADV
lightly ADV
( PUNCT
ornot ADV
so ADV
lightly ADV
) PUNCT
against ADP
it PRON
. PUNCT
  SPACE
The DET
pressure NOUN
of ADP
leaning VERB
back ADV
holds VERB
it PRON
in ADP
place NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
want VERB
to PART
massage VERB
the DET
entire ADJ
spine NOUN
, PUNCT
I PRON
simply ADV
move VERB
it PRON
down ADP
a DET
few ADJ
inches NOUN
whenever ADV
I PRON
feel VERB
like SCONJ
it PRON
. PUNCT
  SPACE
For ADP
my PRON
back NOUN
, PUNCT
this DET
machine NOUN
is AUX
far ADV
superior ADJ
to PART
use VERB
than SCONJ
the DET
commonly ADV
used VERB
" PUNCT
home NOUN
- PUNCT
made VERB
" PUNCT
massager NOUN
of ADP
2 NUM
tennis NOUN
balls NOUN
taped VERB
together ADV
( PUNCT
with ADP
the DET
balls NOUN
, PUNCT
position NOUN
( PUNCT
against ADP
a DET
wall NOUN
or CCONJ
door NOUN
) PUNCT
them PRON
over ADP
the DET
spine NOUN
and CCONJ
move VERB
the DET
body NOUN
up ADV
and CCONJ
down ADV
against ADP
them PRON
) PUNCT
. PUNCT
  SPACE
The DET
tennis NOUN
balls NOUN
are AUX
better ADJ
than SCONJ
nothing PRON
, PUNCT
but CCONJ
difficult ADJ
to PART
use VERB
for ADP
very ADV
long ADJ
, PUNCT
especially ADV
if SCONJ
your PRON
quads NOUN
are AUX
not PART
in ADP
good ADJ
shape NOUN
, PUNCT
and CCONJ
my PRON
long ADJ
hair NOUN
gets VERB
( PUNCT
painfully ADV
) PUNCT
in ADP
the DET
way NOUN
if SCONJ
I PRON
do AUX
n't PART
pin VERB
it PRON
up ADP
first ADV
. PUNCT
  SPACE
As ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
the DET
easier ADJ
something PRON
like SCONJ
this DET
is AUX
to PART
use VERB
, PUNCT
the DET
more ADV
likely ADJ
I PRON
'll AUX
use VERB
/ SYM
do AUX
it PRON
. PUNCT
  SPACE
If SCONJ
there PRON
are AUX
multiple ADJ
considerations NOUN
/ SYM
hassles NOUN
, PUNCT
I PRON
'm AUX
more ADV
likely ADJ
to PART
not PART
bother VERB
with ADP
it PRON
. PUNCT
Not PART
only ADV
has AUX
this DET
machine NOUN
helped VERB
with ADP
my PRON
headaches NOUN
, PUNCT
but CCONJ
my PRON
range NOUN
of ADP
motion NOUN
for ADP
my PRON
neck NOUN
and CCONJ
back NOUN
are AUX
greatly ADV
increased VERB
. PUNCT
  SPACE
The DET
first ADJ
time NOUN
I PRON
used VERB
it PRON
on ADP
myneck NOUN
/ SYM
sub ADJ
- ADJ
occipital ADJ
muscles NOUN
, PUNCT
however ADV
, PUNCT
I PRON
overdid VERB
it PRON
and CCONJ
pressed VERB
too ADV
hardagainst ADJ
it PRON
, PUNCT
which PRON
resulted VERB
in ADP
a DET
very ADV
tender ADJ
, PUNCT
almost ADV
bruised VERB
area NOUN
for ADP
afew ADJ
days NOUN
. PUNCT
  SPACE
I PRON
laid VERB
off ADP
it PRON
for ADP
about ADV
3 NUM
days NOUN
and CCONJ
applied VERB
ice NOUN
, PUNCT
which PRON
helped VERB
. PUNCT
  SPACE
After ADP
that DET
, PUNCT
I PRON
was AUX
more ADV
gradual ADJ
about ADP
applying VERB
pressure NOUN
. PUNCT
  SPACE
At ADP
this DET
point NOUN
, PUNCT
the DET
pain NOUN
in ADP
the DET
sub ADJ
- ADJ
occipital ADJ
area NOUN
is AUX
now ADV
minimal ADJ
while SCONJ
being AUX
massaged VERB
. PUNCT
  SPACE
I PRON
also ADV
learned VERB
to PART
use VERB
VERY ADJ
LIGHT NOUN
pressure NOUN
on ADP
my PRON
lower ADJ
back ADV
, PUNCT
which PRON
is AUX
the DET
most ADV
vulnerable ADJ
point NOUN
for ADP
me PRON
. PUNCT
It PRON
also ADV
eased VERB
some DET
painful ADJ
knots NOUN
of ADP
tension NOUN
between ADP
my PRON
shoulder NOUN
blades NOUN
, PUNCT
although SCONJ
, PUNCT
again ADV
, PUNCT
it PRON
took VERB
a DET
few ADJ
days NOUN
of ADP
massaging VERB
( PUNCT
just ADV
a DET
few ADJ
minutes NOUN
ata NOUN
time NOUN
) PUNCT
to PART
really ADV
work VERB
it PRON
out ADP
. PUNCT
I PRON
highly ADV
recommend VERB
this DET
product NOUN
if SCONJ
you PRON
have AUX
similar ADJ
problems NOUN
, PUNCT
although SCONJ
Icannot PROPN
vouch ADJ
for ADP
its PRON
durability NOUN
( PUNCT
it PRON
seems VERB
pretty ADV
sturdy ADJ
) PUNCT
, PUNCT
since SCONJ
I PRON
've AUX
hadit NOUN
such DET
a DET
short ADJ
time NOUN
. PUNCT
  SPACE
I PRON
plan VERB
to PART
use VERB
it PRON
not PART
only ADV
to PART
ease VERB
tension NOUN
, PUNCT
but CCONJ
also ADV
to PART
loosen VERB
the DET
muscls NOUN
BEFORE ADP
exercising VERB
( PUNCT
and CCONJ
maybe ADV
after ADV
, PUNCT
too ADV
) PUNCT
. PUNCT
  SPACE
I PRON
havebeen VERB
ill ADV
recently ADV
and CCONJ
not PART
able ADJ
to PART
exercise VERB
much ADJ
for ADP
a DET
few ADJ
weeks NOUN
, PUNCT
so CCONJ
this DET
was AUX
very ADV
timely ADJ
  SPACE
for ADP
me PRON
. PUNCT
This DET
is AUX
the DET
1st ADJ
product NOUN
I PRON
've AUX
ordered VERB
from ADP
this DET
company NOUN
and CCONJ
only ADV
recentlybecame NOUN
aware ADJ
of ADP
it PRON
thru ADP
a DET
co NOUN
- NOUN
worker NOUN
. PUNCT
  SPACE
The DET
catalog NOUN
states NOUN
they PRON
have AUX
beenin NOUN
business NOUN
since SCONJ
1976 NUM
. PUNCT
  SPACE
It PRON
contains VERB
quite DET
a DET
few ADJ
health NOUN
care NOUN
products NOUN
and CCONJ
, PUNCT
while SCONJ
they PRON
appear VERB
to PART
be AUX
more ADV
expensive ADJ
than SCONJ
the DET
average ADJ
health NOUN
care NOUN
catalogproducts NOUN
, PUNCT
they PRON
also ADV
appear VERB
to PART
be AUX
of ADP
much ADV
higher ADJ
quality NOUN
with ADP
more ADJ
thoughtput NOUN
into ADP
what PRON
they PRON
actually ADV
do AUX
. PUNCT
  SPACE
Definitely ADV
a DET
step NOUN
above ADP
some DET
other ADJ
onesI've NOUN
seen VERB
such ADJ
as SCONJ
" PUNCT
Dr. PROPN
Leonards PROPN
Health PROPN
Care PROPN
Catalog PROPN
" PUNCT
or CCONJ
" PUNCT
Mature PROPN
Wisdom" PROPN
. PUNCT
I'm PRON
only ADV
37 NUM
, PUNCT
but CCONJ
have AUX
ended VERB
up ADP
on ADP
some DET
geriatric NOUN
- PUNCT
type NOUN
mailing NOUN
lists NOUN
( PUNCT
nobig PROPN
surprise VERB
here ADV
:-) PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
consider VERB
many ADJ
of ADP
those DET
products NOUN
to PART
be AUX
rip NOUN
- PUNCT
offs NOUN
, PUNCT
particularly ADV
targeted VERB
toward ADP
the DET
elderly ADJ
, PUNCT
with ADP
dubious ADJ
health NOUN
benefits NOUN
. PUNCT
I PRON
apologize VERB
for ADP
the DET
length NOUN
of ADP
this DET
, PUNCT
but CCONJ
it PRON
's AUX
the DET
kind NOUN
of ADP
info NOUN
_ VERB
I PRON
_ VERB
would AUX
like VERB
to PART
know VERB
before ADP
ordering VERB
something PRON
thru ADP
the DET
mail NOUN
. PUNCT
Robin PROPN
Coutellier PROPN
                   SPACE
Northern PROPN
Telecom PROPN
, PUNCT
Mountain PROPN
View PROPN
, PUNCT
CAINTERNET VERB
: PUNCT
robin@ntmtv.comUUCP:portal!ntmtv!robinNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58954From NUM
: PUNCT
cash@convex.com X
( PUNCT
Peter PROPN
Cash)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemIn NOUN
article NOUN
< X
C5L9qB.4y5@athena.cs.uga.edu NOUN
> X
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
writes:>Sounds VERB
as SCONJ
though SCONJ
his PRON
heart NOUN
's PART
in ADP
the DET
right ADJ
place NOUN
, PUNCT
but CCONJ
he PRON
is AUX
not PART
adept ADJ
at ADP
> X
expressing VERB
it PRON
. PUNCT
  SPACE
What PRON
you PRON
received VERB
was AUX
_ PROPN
meant VERB
_ PROPN
to PART
be AUX
a DET
profound ADJ
apology.>Apologies NOUN
delivered VERB
by ADP
overworked ADJ
shy ADJ
people NOUN
often ADV
come VERB
out ADP
like SCONJ
that DET
... PUNCT
His PRON
_ NOUN
heart NOUN
_ VERB
? PUNCT
This DET
jerk NOUN
does AUX
n't PART
have AUX
a DET
heart NOUN
, PUNCT
and CCONJ
it PRON
beats VERB
me PRON
why ADV
you'reapologizing VERB
for ADP
him PRON
. PUNCT
In ADP
my PRON
book NOUN
, PUNCT
behavior NOUN
like SCONJ
this DET
is AUX
unprofessional ADJ
, PUNCT
inexcusable ADJ
, PUNCT
and CCONJ
beyond ADP
the DET
pale NOUN
. PUNCT
If SCONJ
he PRON
's AUX
overworked VERB
, PUNCT
it PRON
's AUX
because SCONJ
he PRON
's AUX
toobusy VERB
raking VERB
in ADP
the DET
bucks NOUN
. PUNCT
More ADV
likely ADJ
, PUNCT
he PRON
just ADV
likes VERB
to PART
push VERB
women NOUN
around ADV
. PUNCT
I'd NOUN
fire VERB
the DET
s.o.b PROPN
. PROPN
, PUNCT
and CCONJ
get AUX
myself PRON
another DET
doctor.-- PROPN
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PUNCT
             SPACE
| PROPN
      SPACE
Die PROPN
Welt PROPN
ist NOUN
alles NOUN
, PUNCT
was AUX
Zerfall PROPN
ist NOUN
. PUNCT
     SPACE
|Peter PROPN
Cash NOUN
   SPACE
| PROPN
       SPACE
( PUNCT
apologies NOUN
to ADP
Ludwig PROPN
Wittgenstein PROPN
) PUNCT
      SPACE
|cash@convex.com~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58955From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Placebo PROPN
effectsI PROPN
know VERB
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
where ADV
a DET
patient NOUN
feels VERB
better ADV
or CCONJ
even ADV
gets VERB
better ADJ
because SCONJ
of ADP
his PRON
/ SYM
her PRON
belief NOUN
in ADP
the DET
medicine NOUN
and CCONJ
the DET
doctor NOUN
administering VERB
it PRON
. PUNCT
  SPACE
Is AUX
there PRON
also ADV
an DET
anti ADJ
- ADJ
placebo ADJ
effect NOUN
where ADV
the DET
patient NOUN
dislikes VERB
/ SYM
distrusts VERB
doctors NOUN
and CCONJ
medicine NOUN
and CCONJ
therefore ADV
does AUX
n't PART
get AUX
better ADJ
or CCONJ
feel VERB
better ADJ
in ADP
spite NOUN
of ADP
the DET
medicine?Is PROPN
there ADV
an DET
effect NOUN
where ADV
the DET
doctor NOUN
believes VERB
so ADV
strongly ADV
in ADP
a DET
medicine NOUN
that SCONJ
he PRON
/ SYM
she PRON
sees VERB
improvement NOUN
where ADV
the DET
is AUX
none NOUN
or CCONJ
sees VERB
more ADJ
improvement NOUN
than SCONJ
there PRON
is AUX
? PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
what PRON
is AUX
this DET
effect NOUN
called VERB
? PUNCT
  SPACE
Is AUX
there PRON
a DET
reverse NOUN
of ADP
the DET
above ADJ
effect NOUN
where ADV
the DET
doctor NOUN
does AUX
n't PART
believe VERB
in ADP
a DET
medicine NOUN
and CCONJ
then ADV
sees VERB
less ADJ
improvement NOUN
than SCONJ
there PRON
is AUX
? PUNCT
  SPACE
What PRON
would AUX
this DET
effect NOUN
be AUX
called VERB
? PUNCT
  SPACE
Have AUX
these DET
effects NOUN
ever ADV
been AUX
studied VERB
? PUNCT
  SPACE
How ADV
common ADJ
are AUX
these DET
effects NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
. PUNCT
... PUNCT
Information NOUN
is AUX
very ADV
valuable ADJ
but CCONJ
dis ADJ
- PUNCT
information NOUN
is AUX
MUCH ADV
more ADV
common ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58956From NUM
: PUNCT
GAnderson@Cmutual.com.au NOUN
  SPACE
( PUNCT
Gavin PROPN
Anderson)Subject NUM
: PUNCT
Help VERB
- PUNCT
Looking VERB
for ADP
a DET
Medical PROPN
Journal PROPN
Article PROPN
- PUNCT
Whiplash PROPN
/ SYM
Cervical PROPN
PainHi PROPN
, PUNCT
I PRON
am AUX
not PART
sure ADJ
where ADV
to PART
post VERB
this DET
message NOUN
, PUNCT
please INTJ
contact VERB
me PRON
if SCONJ
I PRON
'm AUX
way ADV
offthe NOUN
mark NOUN
. PUNCT
On ADP
19.3.93 PROPN
my PRON
wife NOUN
went VERB
to ADP
her PRON
General PROPN
Practitioner PROPN
( PUNCT
Doctor PROPN
) PUNCT
. PUNCT
He PRON
mentionedan NOUN
article NOUN
from ADP
a DET
medical ADJ
journal NOUN
that PRON
is AUX
of ADP
great ADJ
interest NOUN
to ADP
us PRON
. PUNCT
He PRON
hadread VERB
it PRON
in ADP
the DET
previous ADJ
three NUM
months NOUN
but CCONJ
has AUX
been AUX
unable ADJ
to PART
find VERB
it PRON
again ADV
. PUNCT
The DET
article NOUN
was AUX
about ADP
Whiplash PROPN
Injury PROPN
/ SYM
Cervical PROPN
Pain PROPN
. PUNCT
It PRON
mentions VERB
the DET
use NOUN
ofa NOUN
MRI PROPN
( PUNCT
Magnetic PROPN
Resonance PROPN
Imagery PROPN
) PUNCT
machine NOUN
as SCONJ
a DET
diagnostic ADJ
tool NOUN
and CCONJ
the DET
workof NOUN
a DET
neurosurgeon NOUN
who PRON
relived VERB
cervical ADJ
pain NOUN
. PUNCT
This DET
article NOUN
is AUX
most ADV
likely ADJ
in ADP
an DET
Australian ADJ
medical ADJ
journal NOUN
. PUNCT
I PRON
very ADV
muchwant ADJ
to PART
obtain VERB
the DET
name NOUN
of ADP
the DET
article NOUN
, PUNCT
journal NOUN
and CCONJ
author NOUN
because SCONJ
the DET
casematches NOUN
my PRON
wife NOUN
. PUNCT
We PRON
would AUX
very ADV
much ADV
appreciate VERB
anyone PRON
's PART
help NOUN
in ADP
this DET
mattervia NOUN
email NOUN
preferably.---------------------------------------------------------------------------Gavin PROPN
Anderson PROPN
                              SPACE
email NOUN
: PUNCT
GAnderson@cmutual.com.auAnalyst/Programmer PROPN
. PUNCT
                         SPACE
phone NOUN
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
607 NUM
- PUNCT
6299Colonial PROPN
Mutual PROPN
Life PROPN
Aust PROPN
. PUNCT
( PUNCT
ACN PROPN
004021809 NUM
) PUNCT
  SPACE
fax PROPN
  SPACE
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
283 NUM
- PUNCT
1095 NUM
- PUNCT
----------Some ADJ
people NOUN
never ADV
consciously ADV
discover VERB
their PRON
antipodes-------------------------------------------------------------------------------------Gavin PROPN
Anderson PROPN
                              SPACE
email NOUN
: PUNCT
GAnderson@cmutual.com.auAnalyst/Programmer PROPN
. PUNCT
                         SPACE
phone NOUN
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
607 NUM
- PUNCT
6299Colonial PROPN
Mutual PROPN
Life PROPN
Aust PROPN
. PUNCT
( PUNCT
ACN PROPN
004021809 NUM
) PUNCT
  SPACE
fax PROPN
  SPACE
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
283 NUM
- PUNCT
1095 NUM
- PUNCT
--------------------------------------------------------------------------Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58957From NUM
: PUNCT
dhartung@chinet.chi.il.us PROPN
( PUNCT
Dan PROPN
Hartung)Subject NUM
: PUNCT
_ PROPN
The DET
Andromeda PROPN
Strain_Just PROPN
had AUX
the DET
opportunity NOUN
to PART
watch VERB
this DET
flick NOUN
on ADP
A&E PROPN
-- PUNCT
some DET
15 NUM
yearssince NOUN
I PRON
saw VERB
it PRON
last ADJ
. PUNCT
  SPACE
I PRON
was AUX
very ADV
interested ADJ
in ADP
the DET
technology NOUN
demonstrated VERB
in ADP
this DET
filmfor NOUN
handling VERB
infectious ADJ
diseases NOUN
( PUNCT
and CCONJ
similar ADJ
toxic ADJ
substances).Clearly ADV
they PRON
" PUNCT
faked VERB
" PUNCT
a DET
lot NOUN
of ADP
the DET
computer NOUN
& CCONJ
robotic PROPN
technology;certainly PROPN
at ADP
the DET
time NOUN
it PRON
was AUX
made VERB
most ADJ
of ADP
that DET
was AUX
science NOUN
fictionitself NOUN
, PUNCT
let VERB
alone ADV
the DET
idea NOUN
of ADP
a DET
" PUNCT
space NOUN
germ NOUN
" PUNCT
. PUNCT
  SPACE
Quite ADJ
coincidentally ADV
[ PUNCT
actually ADV
this DET
is AUX
what PRON
got VERB
me PRON
wanted VERB
to PART
seethe VERB
movie NOUN
again ADV
] PUNCT
I PRON
watched VERB
a DET
segment NOUN
on ADP
the DET
otherwise ADV
awful ADJ
_ ADP
How'dThey PRON
Do AUX
That DET
? PUNCT
_ DET
dealing VERB
with ADP
a DET
disease NOUN
researcher NOUN
at ADP
the DET
CDC PROPN
's PART
toplab NOUN
. PUNCT
  SPACE
There PRON
was AUX
description NOUN
of ADP
the DET
elaborate ADJ
security NOUN
measures NOUN
takenso NOUN
that SCONJ
building NOUN
will AUX
never ADV
be AUX
" PUNCT
cracked VERB
" PUNCT
so ADV
to PART
speak VERB
by ADP
man NOUN
ornature PROPN
( PUNCT
short ADJ
of ADP
deliberate ADJ
bombing NOUN
from ADP
the DET
air NOUN
, PUNCT
perhaps ADV
) PUNCT
. PUNCT
  SPACE
Andthe DET
researchers NOUN
used VERB
" PUNCT
spacesuits NOUN
" PUNCT
similar ADJ
to ADP
that DET
in ADP
the DET
film NOUN
. PUNCT
I'm PRON
curious ADJ
what PRON
people NOUN
think VERB
about ADP
this DET
film NOUN
-- PUNCT
short ADJ
of ADP
" PUNCT
silly" NOUN
. PUNCT
Is AUX
such DET
a DET
facility NOUN
technically ADV
feasible ADJ
today NOUN
? PUNCT
  SPACE
As ADV
far ADV
as SCONJ
the DET
plot NOUN
, PUNCT
and CCONJ
the DET
crystalline ADJ
structure NOUN
that PRON
is AUX
not PART
LifeAs NOUN
We PRON
Know VERB
It PRON
, PUNCT
that DET
's AUX
a DET
whole ADJ
' PUNCT
nother NOUN
argument NOUN
for ADP
rec.arts.sf.techor PROPN
something.-- PROPN
  SPACE
| PROPN
Next PROPN
: PUNCT
a DET
Waco PROPN
update NOUN
... PUNCT
an DET
Ohio PROPN
prison NOUN
update NOUN
... PUNCT
a DET
Bosnia PROPN
update NOUN
... PUNCT
a DET
  SPACE
| X
| ADJ
Russian ADJ
update NOUN
... PUNCT
an DET
abortion NOUN
update NOUN
... PUNCT
and CCONJ
a DET
Congressional ADJ
update NOUN
... PUNCT
| INTJ
| PROPN
here ADV
on ADP
SNN PROPN
: PUNCT
The DET
Standoff PROPN
News PROPN
Network PROPN
. PUNCT
  SPACE
All DET
news NOUN
, PUNCT
all DET
standoff NOUN
, PUNCT
all DET
day NOUN
| PROPN
Daniel PROPN
A. PROPN
Hartung PROPN
  SPACE
-- PUNCT
  SPACE
dhartung@chinet.chinet.com X
  SPACE
-- PUNCT
  SPACE
Ask VERB
me PRON
about ADP
RotaractNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58958From NUM
: PUNCT
ls8139@albnyvms.bitnet PROPN
( PUNCT
larry PROPN
silverberg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
H NOUN
E NOUN
L NOUN
P NOUN
   SPACE
M NOUN
E NOUN
   SPACE
--- PUNCT
> X
desperate ADJ
with ADP
some DET
VD PROPN
> X
I PRON
can AUX
probably ADV
buy VERB
the DET
> X
tools NOUN
and CCONJ
this DET
solution NOUN
somewhere ADV
but CCONJ
I PRON
DON'T VERB
KNOW VERB
HOW ADV
TO PART
DO VERB
INJECTION NOUN
BY ADP
> X
MYSELFYou NOUN
may AUX
also ADV
want VERB
to PART
buy VERB
a DET
' PUNCT
self NOUN
injector NOUN
' PUNCT
or CCONJ
something PRON
like SCONJ
that DET
. PUNCT
My PRON
friend NOUN
is AUX
diabetic ADJ
. PUNCT
  SPACE
You PRON
load VERB
the DET
hyperdermic PROPN
, PUNCT
put VERB
it PRON
in ADP
a DET
plastic ADJ
caseand NOUN
set VERB
a DET
spring NOUN
to PART
automatically ADV
push VERB
the DET
needle NOUN
into ADP
the DET
skin NOUN
and CCONJ
depressthe NOUN
plunger.~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Live PROPN
From ADP
New PROPN
York PROPN
, PUNCT
It PRON
's AUX
SATURDAY PROPN
NIGHT PROPN
... PUNCT
Tonight NOUN
's PART
special ADJ
guest NOUN
: PUNCT
Lawrence PROPN
Silverberg PROPN
from ADP
The DET
State PROPN
University PROPN
of ADP
New PROPN
York PROPN
@ ADP
Albanyaka PROPN
: PUNCT
ls8139@gemini PROPN
. PUNCT
Albany.edu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58959From NUM
: PUNCT
markmc@halcyon.com X
( PUNCT
Mark PROPN
McWiggins)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskAlso NOUN
, PUNCT
do AUX
n't PART
forget VERB
that SCONJ
it PRON
's AUX
better ADJ
for ADP
your PRON
health NOUN
to PART
enjoy VERB
your PRON
steakthan NOUN
to PART
resent VERB
your PRON
sprouts NOUN
... PUNCT
-- PUNCT
Mark PROPN
McWiggins PROPN
        SPACE
Hermes PROPN
& CCONJ
Associates PROPN
		 SPACE
+1 PROPN
206 NUM
632 NUM
1905 NUM
( PUNCT
voice)markmc@halcyon.com PROPN
    SPACE
Box PROPN
31356 NUM
, PUNCT
Seattle PROPN
WA PROPN
98103 NUM
- SYM
1356 NUM
  SPACE
+1 PROPN
206 NUM
632 NUM
1738 NUM
( PUNCT
fax)Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58960From NUM
: PUNCT
sandy@nmr1.pt.cyanamid.COM PROPN
( PUNCT
Sandy PROPN
Silverman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskFrom PROPN
my PRON
reading NOUN
of ADP
the DET
popular ADJ
, PUNCT
and CCONJ
scientific ADJ
, PUNCT
literature NOUN
, PUNCT
  SPACE
I PRON
think VERB
that SCONJ
thebenzopyrene NOUN
- PUNCT
from ADP
- PUNCT
burned VERB
- PUNCT
fat NOUN
problem NOUN
is AUX
probably ADV
real ADJ
but CCONJ
very ADV
small ADJ
compared VERB
toother ADP
kinds NOUN
of ADP
risks NOUN
. PUNCT
  SPACE
( PUNCT
This DET
type NOUN
of ADP
problem NOUN
also ADV
occurs VERB
with ADP
stove NOUN
- PUNCT
top NOUN
pangrilling NOUN
. PUNCT
) PUNCT
  SPACE
One NUM
possible ADJ
remedy NOUN
I PRON
have AUX
read VERB
about ADP
is AUX
to PART
take VERB
some DET
vitamin NOUN
C NOUN
with ADP
your PRON
meal NOUN
of ADP
barbecue NOUN
( PUNCT
or CCONJ
bacon NOUN
, PUNCT
e.g. ADV
) PUNCT
. PUNCT
  SPACE
This DET
MAY AUX
make VERB
sense NOUN
because SCONJ
vit NOUN
. PUNCT
Cis PROPN
an DET
antioxidant NOUN
which PRON
could AUX
counteract VERB
the DET
adverse ADJ
affect NOUN
of ADP
some DET
of ADP
the DET
chemicals NOUN
in ADP
question NOUN
. PUNCT
  SPACE
Bon PROPN
Apetit PROPN
! PUNCT
     SPACE
--Sanford PUNCT
Silverman PROPN
                      SPACE
> X
Opinions NOUN
expressed VERB
here ADV
are AUX
my PRON
own ADJ
< PUNCT
American PROPN
Cyanamid PROPN
  SPACE
sandy@pt.cyanamid.com PROPN
, PUNCT
silvermans@pt.cyanamid.com PROPN
     SPACE
" PUNCT
Yeast NOUN
is AUX
Best"Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58961From NUM
: PUNCT
gmiller@worldbank.org X
( PUNCT
Gene PROPN
C. PROPN
Miller)Subject PROPN
: PUNCT
Immunotherapy PROPN
for ADP
Recurrent PROPN
Miscarriage PROPN
     SPACE
Following VERB
a DET
series NOUN
of ADP
miscarriages NOUN
, PUNCT
my PRON
wife NOUN
was AUX
given VERB
a DET
transfusion NOUN
ofmy PROPN
white ADJ
cells NOUN
. PUNCT
( PUNCT
The DET
theory NOUN
as SCONJ
I PRON
understand VERB
it PRON
is AUX
that SCONJ
there PRON
is AUX
some DET
kindof NOUN
immune NOUN
blocking VERB
that PRON
prevents VERB
the DET
body NOUN
from ADP
attacking VERB
the DET
pregnancy NOUN
asit NOUN
normally ADV
would AUX
a DET
" PUNCT
foreign ADJ
" PUNCT
body NOUN
. PUNCT
Where ADV
this DET
blocking NOUN
is AUX
deficient ADJ
, PUNCT
thebody NOUN
evicts VERB
the DET
" PUNCT
intruder NOUN
" PUNCT
, PUNCT
resulting VERB
in ADP
a DET
miscarriage NOUN
. PUNCT
The DET
white ADJ
cellsapparently ADV
enhance VERB
the DET
blocking VERB
capability NOUN
. PUNCT
) PUNCT
Following VERB
the DET
transfusion NOUN
, PUNCT
shesuccessfully ADV
carried VERB
the DET
next ADJ
pregnancy NOUN
to ADP
term NOUN
, PUNCT
and CCONJ
Jake PROPN
is AUX
now ADV
an DET
active9 NOUN
month NOUN
- PUNCT
old ADJ
who PRON
can AUX
not PART
wait VERB
to PART
walk VERB
. PUNCT
     SPACE
We PRON
're AUX
now ADV
thinking VERB
about ADP
having VERB
another DET
child NOUN
, PUNCT
but CCONJ
no DET
one NOUN
( PUNCT
includingthe X
OBGYN PROPN
who PRON
supervised VERB
the DET
first ADJ
transfusion NOUN
) PUNCT
really ADV
seems VERB
to ADP
knowwhether PROPN
or CCONJ
not PART
the DET
transfusion NOUN
process NOUN
needs VERB
to PART
be AUX
repeated VERB
for ADP
successivepregnancies NOUN
. PUNCT
     SPACE
Is AUX
there ADV
anyone PRON
in ADP
net ADJ
- PUNCT
land NOUN
who PRON
has AUX
experience NOUN
with ADP
this?Thanks NOUN
... PUNCT
Gene NOUN
( PUNCT
and CCONJ
Jane PROPN
and CCONJ
Jake)P.S. PROPN
I PRON
've AUX
also ADV
posted VERB
this DET
in ADP
misc.kids.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58962From NUM
: PUNCT
harvey@oasys.dt.navy.mil PROPN
( PUNCT
Betty PROPN
Harvey)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
rec.food.cooking NOUN
, PUNCT
packer@delphi.gsfc.nasa.gov NOUN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>Is ADP
there PRON
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>I PROPN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG PROPN
sensitivity NOUN
are AUX
> X
superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary?>I PROPN
know VERB
that SCONJ
there PRON
is AUX
MSG PROPN
sensitivity NOUN
. PUNCT
  SPACE
When ADV
I PRON
eat VERB
foods NOUN
with ADP
MSG PROPN
I PRON
getvery VERB
thirsty ADJ
and CCONJ
my PRON
hands NOUN
swell VERB
and CCONJ
get AUX
a DET
terrible ADJ
itchy ADJ
rash NOUN
. PUNCT
I PRON
firstexperienced VERB
this DET
problem NOUN
when ADV
I PRON
worked VERB
close ADV
to ADP
Chinatown PROPN
and CCONJ
ate VERB
Chinesefood PROPN
almost ADV
everyday ADV
for ADP
lunch NOUN
. PUNCT
  SPACE
Now ADV
I PRON
ca AUX
n't PART
tolerate VERB
MSG PROPN
at ADV
all ADV
. PUNCT
  SPACE
I PRON
cannotice VERB
immediately ADV
when ADV
I PRON
have AUX
eaten VERB
any DET
. PUNCT
  SPACE
I PRON
try VERB
to PART
avoid VERB
MSG PROPN
completely ADV
. PUNCT
Interesting ADJ
fact NOUN
though ADV
is AUX
that SCONJ
all DET
three NUM
of ADP
my PRON
children NOUN
started VERB
experiencingthe ADV
exact ADJ
same ADJ
rash NOUN
on ADP
their PRON
hands NOUN
. PUNCT
  SPACE
I PRON
could AUX
n't PART
understand VERB
why ADV
because SCONJ
Idon't PROPN
MSG PROPN
in ADP
cooking NOUN
and CCONJ
we PRON
ask VERB
for ADP
no DET
MSG NOUN
when ADV
we PRON
do AUX
eat VERB
Chinese PROPN
( PUNCT
I PRON
stilllove VERB
it PRON
) PUNCT
. PUNCT
  SPACE
After ADP
some DET
investigation NOUN
I PRON
knew VERB
that SCONJ
Oodles PROPN
of ADP
Noodles PROPN
whereone VERB
of ADP
their PRON
favorite ADJ
foods NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
main ADJ
ingredients NOUN
in ADP
the DET
flavorpackets NOUN
is AUX
MSG PROPN
. PUNCT
  SPACE
Now ADV
I PRON
look VERB
at ADP
all DET
labels NOUN
. PUNCT
  SPACE
You PRON
would AUX
be AUX
surprised ADJ
atplaces NOUN
you PRON
find VERB
MSG./\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/Betty PROPN
Harvey PROPN
  SPACE
< X
harvey@oasys.dt.navy.mil X
> X
     SPACE
| PROPN
David PROPN
Taylor PROPN
Model PROPN
BasinADP PROPN
, PUNCT
Networking PROPN
and CCONJ
Communication PROPN
Assessment PROPN
| PROPN
Carderock PROPN
Division PROPN
     SPACE
Branch PROPN
                                  SPACE
| PROPN
Naval PROPN
Surface PROPN
WarfareCode PROPN
1221 NUM
                                    SPACE
| PROPN
   SPACE
CenterBethesda PROPN
, PUNCT
Md. PROPN
  SPACE
20084 NUM
- SYM
5000 NUM
                    SPACE
| PROPN
DTMB PROPN
, PUNCT
CD PROPN
, PUNCT
NSWC PROPN
                                                SPACE
| ADJ
   SPACE
( PUNCT
301)227 NUM
- SYM
3379 NUM
   SPACE
FAX PROPN
( PUNCT
301)227 NUM
- SYM
3343 NUM
            SPACE
| PROPN
          SPACE
/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\\/\/Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58963From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr16.210916.6958@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> X
I PRON
'm AUX
not PART
familiar ADJ
with ADP
the DET
history NOUN
of ADP
this DET
experiment NOUN
, PUNCT
although SCONJ
, PUNCT
arguably,| PROPN
> X
I PRON
should AUX
be AUX
. PUNCT
For ADP
a DET
brief NOUN
, PUNCT
but CCONJ
pretty ADV
detailed ADJ
account NOUN
, PUNCT
try VERB
Hempel PROPN
's PART
_ DET
Philosophy PROPN
ofNatural PROPN
Science_.| PROPN
> X
I PRON
think VERB
that SCONJ
it PRON
is AUX
enough ADJ
if SCONJ
his PRON
contemporaries NOUN
found VERB
the DET
result NOUN
surprising.| PROPN
> X
That DET
's AUX
not PART
what PRON
I PRON
'd AUX
quibble VERB
about ADP
. PUNCT
  SPACE
What PRON
I PRON
'd AUX
like VERB
to PART
know VERB
are AUX
Toricelli's| PROPN
> X
reasons NOUN
for ADP
doing VERB
his PRON
experiment NOUN
; PUNCT
not PART
the DET
post X
hoc X
_ PROPN
constructed VERB
_ PROPN
reasons,| PROPN
> X
but CCONJ
the DET
thoughts NOUN
in ADP
his PRON
head NOUN
as SCONJ
he PRON
considered VERB
the DET
problem NOUN
. PUNCT
  SPACE
It PRON
may AUX
beThis VERB
smacks VERB
a DET
bit NOUN
of ADP
ideology NOUN
-- PUNCT
the DET
supposition NOUN
being AUX
that SCONJ
Toricelli'ssubsequent NUM
descriptions NOUN
of ADP
his PRON
reasoning NOUN
are AUX
not PART
veridical ADJ
. PUNCT
  SPACE
It PRON
gets VERB
dangerouslyclose NOUN
to ADP
an DET
unfalsifiable ADJ
view NOUN
of ADP
the DET
history NOUN
and CCONJ
methodology NOUN
of ADP
science NOUN
ifwe NOUN
deny VERB
that SCONJ
no DET
subsequent ADJ
reports NOUN
of ADP
experimenters NOUN
are AUX
reliable ADJ
descriptionsof ADJ
their PRON
" PUNCT
real ADJ
" PUNCT
reasons.| PROPN
> X
impossible ADJ
to PART
know VERB
much ADJ
about ADP
Toricelli PROPN
's PART
thoughts NOUN
; PUNCT
that DET
's AUX
too ADV
bad ADJ
if| PUNCT
> X
it PRON
is AUX
so ADV
. PUNCT
  SPACE
One NUM
of ADP
Root PROPN
- PUNCT
Bernstein PROPN
's PART
services NOUN
to ADP
science NOUN
is AUX
that SCONJ
he PRON
has AUX
gone| NOUN
> X
rooting VERB
about ADP
in ADP
Pasteur PROPN
's PART
and CCONJ
Fleming PROPN
's PART
( PUNCT
and CCONJ
other ADJ
people NOUN
's PART
) PUNCT
notes NOUN
, PUNCT
and CCONJ
has| PROPN
> PROPN
discovered VERB
some DET
surprising ADJ
clues NOUN
about ADP
their PRON
motivations NOUN
. PUNCT
  SPACE
Pasteur PROPN
never| PROPN
> X
publicly ADV
admitted VERB
his PRON
plan NOUN
to PART
create VERB
mirror NOUN
- PUNCT
image NOUN
life NOUN
, PUNCT
but CCONJ
the DET
dreams NOUN
are| PROPN
> X
right ADV
there ADV
in ADP
his PRON
notebooks NOUN
( PUNCT
finally ADV
public ADJ
after ADP
many ADJ
years NOUN
) PUNCT
, PUNCT
ready ADJ
for| NOUN
> X
anyone PRON
to PART
read VERB
. PUNCT
  SPACE
And CCONJ
I PRON
and CCONJ
my PRON
friends NOUN
often ADV
have AUX
the DET
most ADV
ridiculous| ADJ
> X
reasons NOUN
for ADP
pursuing VERB
results NOUN
; PUNCT
one NUM
of ADP
my PRON
best ADJ
came VERB
because SCONJ
I PRON
was AUX
mad ADJ
at| ADP
> X
a DET
colleague NOUN
for ADP
a DET
poorly ADV
- PUNCT
written VERB
claim NOUN
( PUNCT
I PRON
disproved VERB
the DET
claim).| NOUN
> X
| ADV
> X
Of ADV
course ADV
, PUNCT
Toricelli PROPN
's PART
case NOUN
may AUX
be AUX
an DET
example NOUN
of ADP
a DET
rarety NOUN
: PUNCT
where ADV
the| PROPN
> X
fantasy NOUN
not PART
only ADV
motivates VERB
the DET
experiment NOUN
, PUNCT
but CCONJ
turns VERB
out ADP
to PART
be AUX
right| NOUN
> X
in ADP
the DET
end NOUN
. PUNCT
But CCONJ
my PRON
point NOUN
is AUX
that SCONJ
this DET
type NOUN
of ADP
case NOUN
is AUX
* PUNCT
not PART
* PUNCT
a DET
rarity NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
I PRON
wasgoing VERB
to PART
point VERB
to ADP
Pasteur PROPN
as SCONJ
yet ADV
another DET
rather ADV
common ADJ
example NOUN
-- PUNCT
particularlythe VERB
studies NOUN
on ADP
spontaneous ADJ
generation NOUN
and CCONJ
fermentation NOUN
. PUNCT
  SPACE
I PRON
will AUX
readilyconcede VERB
that SCONJ
" PUNCT
ridiculous ADJ
reasons NOUN
" PUNCT
can AUX
play VERB
an DET
important ADJ
role NOUN
in ADP
howscientists NOUN
spend VERB
their PRON
time NOUN
. PUNCT
  SPACE
But CCONJ
one PRON
should AUX
not PART
confuse VERB
motivation NOUN
withmethodology NOUN
nor CCONJ
suppose VERB
that SCONJ
ridiculous ADJ
reasons NOUN
provide VERB
the DET
impetus NOUN
in ADP
themajority NOUN
of ADP
cases NOUN
based VERB
on ADP
relatively ADV
infrequent ADJ
anecdotal ADJ
evidence.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58964From NUM
: PUNCT
sbrenner@cbnewsb.cb.att.com X
( PUNCT
scott.d.brenner)Subject X
: PUNCT
What PRON
's AUX
the DET
Difference PROPN
Between ADP
an DET
M.D. PROPN
and CCONJ
a DET
D.O.?My PROPN
wife NOUN
and CCONJ
I PRON
are AUX
in ADP
the DET
process NOUN
of ADP
selecting VERB
a DET
pediatrician NOUN
for ADP
ourfirst ADJ
child NOUN
( PUNCT
due ADJ
June PROPN
15th NOUN
) PUNCT
. PUNCT
  SPACE
We PRON
interviewed VERB
a DET
young ADJ
doctor NOUN
last ADJ
weekand NOUN
were AUX
very ADV
impressed ADJ
with ADP
her PRON
. PUNCT
  SPACE
However ADV
, PUNCT
I PRON
discovered VERB
that SCONJ
she PRON
isactually ADV
not PART
an DET
Medical PROPN
Doctor PROPN
( PUNCT
M.D. PROPN
) PUNCT
but CCONJ
rather ADV
a DET
" PUNCT
Doctor PROPN
of ADP
Osteopathy PROPN
" PUNCT
( PUNCT
D.O. PROPN
) PUNCT
. PUNCT
  SPACE
What PRON
's AUX
the DET
difference NOUN
? PUNCT
  SPACE
I PRON
believe VERB
the DET
pediatrician*I NOUN
* PUNCT
went VERB
to ADP
for ADP
many ADJ
years NOUN
was AUX
a DET
D.O. PROPN
and CCONJ
he PRON
did AUX
n't PART
seem VERB
different ADJ
fromany NOUN
other ADJ
doctor NOUN
I PRON
've AUX
seen VERB
over ADP
the DET
years NOUN
. PUNCT
My PRON
dictionary NOUN
says VERB
that SCONJ
osteopathy PROPN
is AUX
" PUNCT
a DET
medical ADJ
therapy NOUN
that SCONJ
emphasizesmanipulative ADJ
techniques NOUN
for ADP
correcting VERB
somatic ADJ
abnormalities NOUN
thoughtto NOUN
cause VERB
disease NOUN
and CCONJ
inhibit VERB
recovery NOUN
. PUNCT
"Jeez PUNCT
, PUNCT
this DET
sounds VERB
like SCONJ
chiropractic ADJ
. PUNCT
  SPACE
I PRON
remember VERB
getting VERB
shots NOUN
andmedicine VERB
from ADP
* PUNCT
my PRON
* PUNCT
pediatrician NOUN
D.O. PROPN
, PUNCT
and CCONJ
do AUX
n't PART
remember VERB
any DET
" PUNCT
manipulative ADJ
techniques NOUN
" PUNCT
. PUNCT
  SPACE
Perhaps ADV
someone PRON
could AUX
enlighten VERB
me PRON
as SCONJ
tothe DET
real ADJ
, PUNCT
practical ADJ
difference NOUN
between ADP
an DET
M.D. PROPN
and CCONJ
a DET
D.O. PROPN
  SPACE
Also ADV
, PUNCT
I'minteresting PROPN
in ADP
hearing VERB
any DET
opinions NOUN
on ADP
choosing VERB
a DET
pediatrician ADJ
whofollows VERB
one NUM
or CCONJ
the DET
other ADJ
medical ADJ
philosophy NOUN
. PUNCT
Readers NOUN
of ADP
sci.med NOUN
: PUNCT
  SPACE
Please INTJ
respond VERB
directly ADV
to PART
sbrenner@attmail.com;I VERB
do AUX
not PART
read VERB
this DET
group NOUN
regularly ADV
and CCONJ
probably ADV
wo AUX
n't PART
see VERB
your PRON
responseif NOUN
you PRON
just ADV
post VERB
it PRON
here ADV
. PUNCT
  SPACE
Sorry ADJ
for ADP
the DET
cross ADJ
- ADJ
posting ADJ
, PUNCT
but CCONJ
I PRON
'm AUX
hopingthere ADJ
's AUX
some DET
expertise NOUN
here.a X
T NOUN
d NOUN
H NOUN
v NOUN
A NOUN
a NOUN
N PROPN
n NOUN
K PROPN
c PROPN
S PROPN
e~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Scott PROPN
D. PROPN
Brenner PROPN
                  SPACE
AT&T PROPN
Consumer PROPN
Communications PROPN
Servicessbrenner@attmail.com PROPN
                          SPACE
Basking PROPN
Ridge PROPN
, PUNCT
New PROPN
Jersey~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58965From NUM
: PUNCT
davallen@vms.macc.wisc.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
79738@cup.portal.com NUM
> X
, PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
... PUNCT
>This PRON
reminds VERB
me PRON
of ADP
the DET
last ADJ
Graham PROPN
Kerr PROPN
cooking NOUN
show NOUN
I PRON
saw VERB
. PUNCT
  SPACE
Today NOUN
he PRON
> X
smoked VERB
meat NOUN
on ADP
the DET
stovetop NOUN
in ADP
a DET
big ADJ
pot NOUN
! PUNCT
  SPACE
He PRON
used VERB
a DET
strange ADJ
technique NOUN
> X
I'd NOUN
never ADV
seen VERB
before ADV
. PUNCT
> X
> X
He PRON
took VERB
a DET
big ADJ
pot NOUN
with ADP
lid NOUN
, PUNCT
and CCONJ
placed VERB
a DET
tray NOUN
in ADP
it PRON
made VERB
from ADP
aluminum NOUN
foil.>The NOUN
tray NOUN
was AUX
about ADP
the DET
size NOUN
and CCONJ
shape NOUN
of ADP
a DET
typical ADJ
coffee NOUN
- PUNCT
table NOUN
ash NOUN
tray,>made NOUN
by ADP
crumpling VERB
a DET
sheet NOUN
of ADP
foil NOUN
around ADP
the DET
edges NOUN
. PUNCT
> X
> X
In ADP
the DET
tray NOUN
, PUNCT
he PRON
placed VERB
a DET
couple NOUN
spoonfuls NOUN
of ADP
brown ADJ
sugar NOUN
, PUNCT
a DET
similar ADJ
> X
quantity NOUN
of ADP
brown ADJ
rice NOUN
( PUNCT
he PRON
said VERB
any DET
rice NOUN
will AUX
do AUX
) PUNCT
, PUNCT
the DET
contents NOUN
of ADP
two NUM
> X
teabags NOUN
of ADP
Earl PROPN
Grey PROPN
tea NOUN
, PUNCT
and CCONJ
a DET
few ADJ
cloves NOUN
. PUNCT
> X
> X
On ADP
top NOUN
of ADP
this DET
was AUX
placed VERB
an DET
ordinary ADJ
aluminum NOUN
basket NOUN
- PUNCT
type NOUN
steamer NOUN
, PUNCT
with ADP
> X
two NUM
chicken NOUN
breasts NOUN
in ADP
it PRON
. PUNCT
  SPACE
The DET
lid NOUN
was AUX
put VERB
on ADP
, PUNCT
and CCONJ
the DET
whole ADJ
assembly NOUN
> X
went VERB
on ADP
the DET
stovetop NOUN
at ADP
high ADJ
heat NOUN
for ADP
10 NUM
or CCONJ
12 NUM
minutes NOUN
. PUNCT
> X
> X
Later ADV
, PUNCT
he PRON
removed VERB
what PRON
looked VERB
like SCONJ
smoked VERB
chicken NOUN
breasts NOUN
. PUNCT
  SPACE
What PRON
surprises VERB
> X
and CCONJ
concerns NOUN
me PRON
are AUX
: PUNCT
> X
> X
1 NUM
) PUNCT
  SPACE
No DET
wood NOUN
chips NOUN
. PUNCT
  SPACE
Where ADV
does AUX
the DET
smoke NOUN
flavor NOUN
come VERB
from ADP
? PUNCT
> X
> X
2 NUM
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
hearing VERB
that SCONJ
carmel PROPN
color NOUN
> X
    SPACE
( PUNCT
obtained VERB
by ADP
caramelizing VERB
sugar NOUN
-- PUNCT
a DET
common ADJ
coloring NOUN
and CCONJ
flavoring NOUN
> X
    SPACE
agent NOUN
) PUNCT
had AUX
been AUX
found VERB
to PART
be AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
believe VERB
they PRON
injected VERB
> X
    SPACE
it PRON
under ADP
the DET
skin NOUN
of ADP
rats NOUN
, PUNCT
or CCONJ
something PRON
. PUNCT
  SPACE
If SCONJ
the DET
results NOUN
were AUX
conclusive ADJ
, PUNCT
> X
    SPACE
caramel NOUN
color NOUN
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
, PUNCT
yet CCONJ
it PRON
is AUX
still ADV
being AUX
> X
    SPACE
used VERB
. PUNCT
  SPACE
Was AUX
the DET
initial ADJ
research NOUN
result NOUN
found VERB
to PART
be AUX
incorrect ADJ
, PUNCT
or CCONJ
what PRON
? PUNCT
> X
> X
3 NUM
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
Earl PROPN
Grey PROPN
tea NOUN
being AUX
implicated VERB
> NUM
    SPACE
as SCONJ
carcinogenic ADJ
, PUNCT
because SCONJ
it PRON
contains VERB
oil NOUN
of ADP
bergamot NOUN
( PUNCT
an DET
extract NOUN
> X
    SPACE
from ADP
the DET
skin NOUN
of ADP
a DET
type NOUN
of ADP
citrus ADJ
fruit NOUN
) PUNCT
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
whatever PRON
> X
    SPACE
happened VERB
with ADP
that DET
story NOUN
? PUNCT
  SPACE
If SCONJ
it PRON
were AUX
carcinogenic ADJ
, PUNCT
Earl PROPN
Grey PROPN
tea NOUN
> X
    SPACE
could AUX
not PART
have AUX
it PRON
as SCONJ
an DET
additive ADJ
, PUNCT
yet CCONJ
it PRON
apparently ADV
continues VERB
to PART
do AUX
> X
    SPACE
so ADV
. PUNCT
> X
> X
WRT PROPN
natural ADJ
wood NOUN
smoke NOUN
( PUNCT
I PRON
've AUX
smoking VERB
a DET
duck NOUN
right ADV
now ADV
, PUNCT
as SCONJ
it PRON
happens),>I've PROPN
noticed VERB
that SCONJ
a DET
heavily ADV
- PUNCT
smoked VERB
food NOUN
item NOUN
will AUX
have AUX
an DET
unpleasant ADJ
tangy NOUN
> X
taste NOUN
when ADV
eaten VERB
directly ADV
out SCONJ
of ADP
the DET
smoker NOUN
if SCONJ
the DET
smoke NOUN
has AUX
only ADV
recently ADV
> X
stopped VERB
flowing VERB
. PUNCT
  SPACE
I PRON
find VERB
the DET
best ADJ
taste NOUN
to PART
be AUX
had VERB
by ADP
using VERB
dry ADJ
wood NOUN
chips,>getting VERB
lots NOUN
of ADP
smoke NOUN
right ADV
up ADV
at ADP
the DET
beginning NOUN
of ADP
the DET
cooking NOUN
process,>then NOUN
slowly ADV
barbequing VERB
for ADP
hours NOUN
and CCONJ
hours NOUN
without ADP
adding VERB
additional ADJ
wood NOUN
chips NOUN
. PUNCT
> X
> X
My PRON
theory NOUN
is AUX
that SCONJ
the DET
unpleasant ADJ
tangy ADJ
molecules NOUN
are AUX
low ADJ
- PUNCT
molecular ADJ
weight NOUN
> X
stuff NOUN
, PUNCT
like SCONJ
terpenes NOUN
, PUNCT
and CCONJ
that SCONJ
the DET
smoky ADJ
flavor NOUN
molecules NOUN
are AUX
some DET
sort ADJ
> X
of ADP
larger ADJ
molecule VERB
more ADV
similar ADJ
to ADP
tar PROPN
. PUNCT
  SPACE
The DET
long ADJ
barbeque NOUN
time NOUN
after ADP
> X
the DET
initial ADJ
intensive ADJ
smoke NOUN
drives VERB
off ADP
the DET
low ADJ
- PUNCT
molecular ADJ
weight NOUN
stuff,>just PUNCT
leaving VERB
the DET
flavor NOUN
behind ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
if SCONJ
my PRON
theory NOUN
is AUX
correct ADJ
? PUNCT
> X
> X
I PRON
also ADV
remember VERB
hearing VERB
that SCONJ
the DET
combustion NOUN
products NOUN
of ADP
fat ADJ
dripping NOUN
> X
on ADP
the DET
charcoal NOUN
and CCONJ
burning NOUN
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
For ADP
that DET
reason NOUN
, PUNCT
and CCONJ
because SCONJ
> X
it PRON
covers VERB
the DET
product NOUN
with ADP
soot NOUN
and CCONJ
some DET
unpleasant ADJ
tanginess NOUN
, PUNCT
I PRON
only ADV
grill VERB
> X
non ADJ
- ADJ
drippy ADJ
meats NOUN
like SCONJ
prawns NOUN
directly ADV
over ADP
hot ADJ
coals NOUN
. PUNCT
  SPACE
I PRON
do AUX
stuff NOUN
like SCONJ
this DET
> ADJ
duck NOUN
by ADP
indirect ADJ
heat NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
long ADJ
rectangular ADJ
Weber PROPN
, PUNCT
and CCONJ
I PRON
put VERB
the DET
coals NOUN
> X
at ADP
one NUM
end NOUN
and CCONJ
the DET
meat NOUN
at ADP
the DET
other ADJ
end NOUN
. PUNCT
  SPACE
The DET
fat NOUN
drops VERB
directly ADV
on ADP
the DET
> X
floor NOUN
below ADP
the DET
meat NOUN
, PUNCT
and CCONJ
next ADJ
time NOUN
I PRON
use VERB
the DET
barbeque NOUN
I PRON
make VERB
the DET
fire NOUN
> X
in ADP
that DET
end NOUN
to PART
burn VERB
off ADP
the DET
fat NOUN
and CCONJ
help VERB
ignite VERB
the DET
coals NOUN
. PUNCT
> X
> X
And CCONJ
yet ADV
another DET
reason NOUN
I PRON
've AUX
heard VERB
not PART
to PART
smoke VERB
or CCONJ
barbeque NOUN
meat NOUN
is AUX
that SCONJ
> X
smoked VERB
cured VERB
meat NOUN
, PUNCT
like SCONJ
pork NOUN
sausage NOUN
and CCONJ
bacon NOUN
, PUNCT
contains VERB
> X
nitrosamines NOUN
, PUNCT
which PRON
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
'm AUX
pretty ADV
sure ADJ
this DET
claim NOUN
actually ADV
> X
has AUX
some DET
standing NOUN
, PUNCT
do AUX
n't PART
know VERB
about ADP
the DET
others NOUN
. PUNCT
> X
> X
An DET
amusing ADJ
incident NOUN
I PRON
recall VERB
was AUX
the DET
Duncan PROPN
Hines PROPN
scandal NOUN
, PUNCT
when ADV
it PRON
was AUX
> X
discovered VERB
that SCONJ
the DET
people NOUN
who PRON
make VERB
Duncan PROPN
Hines PROPN
cake NOUN
mix NOUN
were AUX
putting VERB
> X
a DET
lot NOUN
of ADP
ethylene NOUN
dibromide NOUN
( PUNCT
EDB PROPN
) PUNCT
into ADP
the DET
cake NOUN
mix NOUN
to PART
suppress VERB
weevils.>This PROPN
is AUX
a DET
fumigant NOUN
which PRON
is AUX
known VERB
to PART
be AUX
carcinogenic.>The PROPN
guy NOUN
who PRON
represented VERB
the DET
company NOUN
in ADP
the DET
press NOUN
conference NOUN
defended VERB
> X
himself PRON
by ADP
saying VERB
that SCONJ
the DET
risk NOUN
from ADP
eating VERB
Duncan PROPN
Hines PROPN
products NOUN
every DET
day NOUN
> X
for ADP
a DET
year NOUN
would AUX
be AUX
equal ADJ
to ADP
the DET
cancer NOUN
risk NOUN
from ADP
eating VERB
two NUM
charcoal->broiled ADJ
steaks NOUN
. PUNCT
  SPACE
What PRON
a DET
great ADJ
analogy NOUN
! PUNCT
  SPACE
When ADV
I PRON
first ADV
heard VERB
that DET
, PUNCT
my PRON
> X
immediate ADJ
reaction NOUN
was AUX
we PRON
should AUX
make VERB
that SCONJ
a DET
standard ADJ
unit NOUN
! PUNCT
  SPACE
One NUM
charcoal NOUN
> X
broiled VERB
steak NOUN
would AUX
be AUX
equivalent ADJ
to ADP
0.5 NUM
Duncans!I NOUN
do AUX
n't PART
understand VERB
the DET
assumption NOUN
that SCONJ
because SCONJ
something PRON
is AUX
found VERB
tobe NOUN
carcinogenic NOUN
that SCONJ
" PUNCT
it PRON
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
thatnaturally ADV
occuring VERB
substances NOUN
( PUNCT
excluding VERB
" PUNCT
controlled VERB
" PUNCT
substances NOUN
) PUNCT
arepretty ADV
much ADJ
unregulated ADJ
in ADP
terms NOUN
of ADP
their PRON
use NOUN
as SCONJ
food NOUN
, PUNCT
food NOUN
additivesor VERB
other ADJ
" PUNCT
consumption NOUN
" PUNCT
. PUNCT
  SPACE
It PRON
's AUX
only ADV
when ADV
the DET
chemists NOUN
concoct PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
aningredient NOUN
that SCONJ
it PRON
falls VERB
under ADP
FDA PROPN
regulations NOUN
. PUNCT
  SPACE
Otherwise ADV
, PUNCT
if SCONJ
they PRON
really ADV
looked VERB
closely ADV
they PRON
would AUX
find VERB
a DET
reason NOUN
to PART
ban VERB
almost ADV
everything PRON
. PUNCT
How ADV
in ADP
the DET
world NOUN
do AUX
you PRON
suppose VERB
it PRON
's AUX
legal ADJ
to PART
" PUNCT
consume VERB
" PUNCT
tobacco NOUN
products(which PROPN
probably ADV
SHOULD AUX
be AUX
banned VERB
) PUNCT
? PUNCT
	 SPACE
Dave PROPN
Allen PROPN
	 SPACE
Space PROPN
Science PROPN
& CCONJ
Engr PROPN
. PUNCT
Ctr PROPN
. PUNCT
	 SPACE
UW PROPN
- PUNCT
MadisonNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58966From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Placebo PROPN
effects-*-----In PROPN
article NOUN
< X
735157066.AA00449@calcom.socal.com X
> X
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince PROPN
) PUNCT
writes VERB
: PUNCT
> X
Is AUX
there PRON
an DET
effect NOUN
where ADV
the DET
doctor NOUN
believes VERB
so ADV
strongly ADV
in ADP
a DET
> X
medicine NOUN
that SCONJ
he PRON
/ SYM
she PRON
sees VERB
improvement NOUN
where ADV
the DET
is AUX
none NOUN
or CCONJ
sees VERB
> X
more ADJ
improvement NOUN
than SCONJ
there PRON
is AUX
? PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
what PRON
is AUX
this DET
effect NOUN
> X
called VERB
? PUNCT
  SPACE
Is AUX
there PRON
a DET
reverse NOUN
of ADP
the DET
above ADJ
effect NOUN
where ADV
the DET
doctor NOUN
> X
does AUX
n't PART
believe VERB
in ADP
a DET
medicine NOUN
and CCONJ
then ADV
sees VERB
less ADJ
improvement NOUN
than SCONJ
> X
there PRON
is AUX
? PUNCT
  SPACE
What PRON
would AUX
this DET
effect NOUN
be AUX
called VERB
? PUNCT
  SPACE
Have AUX
these DET
effects NOUN
> X
ever ADV
been AUX
studied VERB
? PUNCT
  SPACE
How ADV
common ADJ
are AUX
these DET
effects NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
> X
advance NOUN
for ADP
all DET
replies NOUN
. PUNCT
These DET
effects NOUN
are AUX
a DET
very ADV
real ADJ
concern NOUN
in ADP
conducting VERB
studies NOUN
of ADP
newtreatments NOUN
. PUNCT
  SPACE
Researchers NOUN
try VERB
to PART
limit VERB
this DET
kind NOUN
of ADP
effect NOUN
by ADP
performing VERB
studies NOUN
that PRON
are AUX
" PUNCT
blind ADJ
" PUNCT
in ADP
various ADJ
ways NOUN
. PUNCT
  SPACE
Some DET
of ADP
theseare NOUN
: PUNCT
  SPACE
o X
  SPACE
The DET
subjects NOUN
of ADP
the DET
study NOUN
do AUX
not PART
know VERB
whether SCONJ
they PRON
receive VERB
a DET
      SPACE
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
, PUNCT
i.e. X
, PUNCT
whether SCONJ
they PRON
are AUX
in ADP
the DET
     SPACE
control NOUN
group NOUN
or CCONJ
the DET
test NOUN
group NOUN
. PUNCT
  SPACE
o INTJ
  SPACE
Those DET
administering VERB
the DET
treatment NOUN
do AUX
not PART
know VERB
which PRON
subjects NOUN
      SPACE
receive VERB
a DET
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
. PUNCT
  SPACE
o INTJ
  SPACE
Those DET
evaluating VERB
individual ADJ
results NOUN
do AUX
not PART
know VERB
which PRON
subjects VERB
     SPACE
receive VERB
a DET
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
. PUNCT
Obviously ADV
, PUNCT
at ADP
the DET
point NOUN
at ADP
which PRON
the DET
data NOUN
is AUX
analyzed VERB
, PUNCT
one PRON
has AUX
to PART
differentiate VERB
the DET
test NOUN
group NOUN
from ADP
the DET
control NOUN
group NOUN
. PUNCT
  SPACE
But CCONJ
the DET
analysisis NOUN
quasi VERB
- ADJ
public ADJ
: PUNCT
the DET
researcher NOUN
describes VERB
it PRON
and CCONJ
presents VERB
the DET
data NOUN
onwhich NOUN
it PRON
is AUX
based VERB
so SCONJ
that SCONJ
others NOUN
can AUX
verify VERB
it PRON
. PUNCT
  SPACE
It PRON
is AUX
worth ADJ
noting VERB
that SCONJ
in ADP
biological ADJ
studies NOUN
where ADV
the DET
subjects NOUN
areanimals VERB
, PUNCT
such ADJ
as SCONJ
mice NOUN
, PUNCT
there PRON
were AUX
many ADJ
cases NOUN
of ADP
skewed ADJ
results NOUN
becausethose ADV
who PRON
performed VERB
the DET
study NOUN
did AUX
not PART
" PUNCT
blind ADJ
" PUNCT
themselves PRON
. PUNCT
  SPACE
It PRON
is AUX
notconsidered VERB
so ADV
important ADJ
to PART
make VERB
mice NOUN
more ADV
ignorant ADJ
than SCONJ
they PRON
alreadyare VERB
, PUNCT
though SCONJ
it PRON
is AUX
important ADJ
that SCONJ
in ADP
all DET
respects NOUN
except SCONJ
the DET
one NOUN
tested VERB
, PUNCT
the DET
control NOUN
and CCONJ
test NOUN
groups NOUN
are AUX
treated VERB
alike ADV
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58967From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>>Is PROPN
there ADV
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> PUNCT
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this?There PRON
is AUX
eye NOUN
dominance NOUN
same ADJ
as SCONJ
handedness NOUN
( PUNCT
and CCONJ
usually ADV
for ADP
thesame ADJ
side NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
refractive ADJ
error NOUN
, PUNCT
however.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58968From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Surgery NOUN
of ADP
damaged VERB
tendons NOUN
and CCONJ
median ADJ
nerveIn PROPN
article NOUN
< X
BHATT.93Apr12161425@wesley.src.honeywell.com PROPN
> X
bhatt@src.honeywell.com PROPN
writes:>I NUM
thought VERB
I PRON
will AUX
explore VERB
the DET
net ADJ
wisdom NOUN
with ADP
the DET
following VERB
questions NOUN
: PUNCT
> X
> X
  SPACE
Is AUX
there PRON
any DET
better ADJ
way NOUN
to PART
control VERB
the DET
pain NOUN
than SCONJ
what PRON
the DET
surgeon NOUN
suggested VERB
? PUNCT
> X
  SPACE
How ADV
long ADV
will AUX
such ADJ
pain NOUN
last ADJ
? PUNCT
  SPACE
Will AUX
the DET
pain NOUN
recur NOUN
in ADP
the DET
future?>No NOUN
one NOUN
can AUX
answer VERB
that DET
. PUNCT
  SPACE
If SCONJ
she PRON
gets VERB
reflex ADJ
sympathetic ADJ
dystrophy NOUN
, PUNCT
it PRON
could AUX
last VERB
forever ADV
. PUNCT
  SPACE
Just ADV
hope VERB
she PRON
does AUX
not PART
. PUNCT
  SPACE
Most ADJ
do AUX
n't PART
. PUNCT
> X
  SPACE
Do AUX
damaged VERB
( PUNCT
partially ADV
cut VERB
) PUNCT
tendons NOUN
heal VERB
completely ADV
and CCONJ
is AUX
all DET
of ADP
the DET
finger NOUN
> X
  SPACE
strength NOUN
regained VERB
? PUNCT
  SPACE
How ADV
long ADV
does AUX
it PRON
take VERB
for ADP
the DET
complete ADJ
healing NOUN
process?>Sometimes PUNCT
they PRON
do AUX
and CCONJ
sometimes ADV
they PRON
do AUX
n't PART
. PUNCT
  SPACE
You PRON
just ADV
have AUX
to PART
do AUX
thebest NOUN
job NOUN
you PRON
can AUX
reattaching VERB
and CCONJ
hope VERB
. PUNCT
  SPACE
You PRON
should AUX
know VERB
in ADP
a DET
fewmonths.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58969From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
1993Apr17.184305.18758@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Newsgroups PROPN
: PUNCT
sci.med VERB
   SPACE
Path PROPN
: PUNCT
news.larc.nasa.gov!saimiri.primate.wisc.edu!zaphod.mps.ohio-state.edu!uwm.edu!cs.utexas.edu!uunet!think.com!hsdndev!spdcc!dyer NUM
   SPACE
From ADP
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
   SPACE
Organization PROPN
: PUNCT
S.P. PROPN
Dyer PROPN
Computer PROPN
Consulting PROPN
, PUNCT
Cambridge PROPN
MA PROPN
   SPACE
References NOUN
: PUNCT
< X
20996.3049.uupcb@factory.com NUM
> X
< X
79727@cup.portal.com NUM
> X
   SPACE
Date NOUN
: PUNCT
Sat PROPN
, PUNCT
17 NUM
Apr PROPN
1993 NUM
18:43:05 NUM
GMT PROPN
   SPACE
Lines NOUN
: PUNCT
18 NUM
   SPACE
In ADP
article NOUN
< X
79727@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
I PRON
remember VERB
hearing VERB
a DET
few ADJ
years NOUN
back ADV
about ADP
a DET
new ADJ
therapy NOUN
for ADP
hyperactivity NOUN
   SPACE
> X
which PRON
involved VERB
aggressively ADV
eliminating VERB
artificial ADJ
coloring NOUN
and CCONJ
flavoring ADJ
   SPACE
> X
from ADP
the DET
diet NOUN
. PUNCT
  SPACE
The DET
theory NOUN
-- PUNCT
which PRON
was AUX
backed VERB
up ADP
by ADP
interesting ADJ
anecdotal ADJ
   SPACE
> X
results NOUN
-- PUNCT
is AUX
that SCONJ
certain ADJ
people NOUN
are AUX
just ADV
way ADV
more ADV
sensitive ADJ
to ADP
these DET
   SPACE
> X
chemicals NOUN
than SCONJ
other ADJ
people NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
any DET
connection NOUN
being AUX
made VERB
   SPACE
> X
with ADP
seizures NOUN
, PUNCT
but CCONJ
it PRON
certainly ADV
could AUX
n't PART
hurt VERB
to PART
try VERB
an DET
all ADV
- PUNCT
natural ADJ
diet NOUN
. PUNCT
   SPACE
Yeah INTJ
, PUNCT
the DET
" PUNCT
Feingold PROPN
Diet PROPN
" PUNCT
is AUX
a DET
load NOUN
of ADP
crap NOUN
. PUNCT
  SPACE
Children NOUN
diagnosed VERB
with ADP
ADD PROPN
   SPACE
who PRON
are AUX
placed VERB
on ADP
this DET
diet NOUN
show VERB
no DET
improvement NOUN
in ADP
their PRON
intellectual ADJ
and CCONJ
   SPACE
social ADJ
skills NOUN
, PUNCT
which PRON
in ADP
fact NOUN
continue VERB
to PART
decline VERB
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
parents NOUN
   SPACE
who PRON
are AUX
enthusiastic ADJ
about ADP
this DET
approach NOUN
lap VERB
it PRON
up ADP
at ADP
the DET
expense NOUN
of ADP
their PRON
   SPACE
children NOUN
's PART
development NOUN
. PUNCT
  SPACE
So ADV
much ADJ
for ADP
the DET
value NOUN
of ADP
" PUNCT
interesting ADJ
anecdotal ADJ
   SPACE
results NOUN
" PUNCT
. PUNCT
  SPACE
People NOUN
will AUX
believe VERB
anything PRON
if SCONJ
they PRON
want VERB
to PART
. PUNCT
   SPACE
-- PUNCT
    SPACE
Steve PROPN
Dyer PROPN
   SPACE
dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerThanks NOUN
for ADP
all DET
the DET
interest NOUN
in ADP
this DET
problem NOUN
of ADP
mine PRON
. PUNCT
I PRON
do AUX
n't PART
think VERB
itis NOUN
a DET
reaction NOUN
to ADP
sugar NOUN
or CCONJ
junk NOUN
food NOUN
per X
se X
since SCONJ
Kathryn PROPN
has AUX
never ADV
shownany VERB
signs NOUN
of ADP
hyperactivity NOUN
or CCONJ
changes NOUN
in ADP
behavior NOUN
in ADP
response NOUN
to ADP
food NOUN
. PUNCT
She PRON
has AUX
always ADV
been AUX
very ADV
calm ADJ
and CCONJ
dare VERB
I PRON
say VERB
, PUNCT
a DET
neat ADJ
, PUNCT
smart ADJ
kid NOUN
. PUNCT
The DET
fact NOUN
that SCONJ
this DET
happened VERB
while SCONJ
eating VERB
two NUM
sugar NOUN
coated VERB
cereals NOUN
madeby PROPN
Kellog PROPN
's PART
makes VERB
me PRON
think VERB
she PRON
might AUX
be AUX
having VERB
an DET
allergic ADJ
reaction NOUN
tosomething VERB
in ADP
the DET
coating NOUN
or CCONJ
the DET
cereals NOUN
. PUNCT
  SPACE
Of ADP
the DET
four NUM
of ADP
us PRON
in ADP
ourimmediate ADJ
family NOUN
, PUNCT
Kathryn PROPN
shows VERB
the DET
least ADJ
signs NOUN
of ADP
the DET
hay NOUN
fever NOUN
, PUNCT
runningnose VERB
, PUNCT
itchy ADJ
eyes NOUN
, PUNCT
etc X
. PUNCT
but CCONJ
we PRON
have AUX
a DET
lot NOUN
of ADP
allergies NOUN
in ADP
our PRON
family NOUN
historyincluding VERB
some DET
weird ADJ
food NOUN
allergies NOUN
- PUNCT
nuts NOUN
, PUNCT
mushrooms NOUN
. PUNCT
Anyway INTJ
, PUNCT
our PRON
next ADJ
trip NOUN
is AUX
to ADP
an DET
endocrinologist NOUN
to PART
check VERB
out ADP
the DET
bodychemistry NOUN
. PUNCT
  SPACE
But CCONJ
so ADV
far ADV
, PUNCT
no DET
more ADJ
sugar NOUN
coated VERB
cereals NOUN
and CCONJ
no DET
more ADJ
seizureseither NOUN
. PUNCT
  SPACE
Every DET
day NOUN
that PRON
goes VERB
by ADV
without ADP
one NOUN
makes VERB
me PRON
heave VERB
a DET
sigh ADJ
ofrelief NOUN
. PUNCT
  SPACE
Thanks INTJ
again.--Sharon ADP
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58970From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
ORGAN PROPN
DONATION NOUN
AND CCONJ
TRANSPLANTATION ADJ
FACT NOUN
SHEETIn NOUN
article NOUN
< X
1993Apr13.150018.641@lmpsbbs.comm.mot.com NUM
> X
dougb@ecs.comm.mot.com PROPN
writes:>My PROPN
wife NOUN
can AUX
not PART
donate VERB
blood NOUN
because SCONJ
she PRON
has AUX
been AUX
to ADP
a DET
malarial ADJ
region NOUN
> X
in ADP
the DET
past ADJ
three NUM
years NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
she PRON
tried VERB
to PART
have AUX
her PRON
bone NOUN
marrow NOUN
> X
typed VERB
and CCONJ
they PRON
would AUX
n't PART
even ADV
do AUX
that DET
! PUNCT
  SPACE
Why?>The PROPN
FDA PROPN
, PUNCT
I PRON
believe VERB
. PUNCT
  SPACE
Rules NOUN
say VERB
no DET
blood NOUN
or CCONJ
blood NOUN
products NOUN
donationsfrom ADP
anyone PRON
who PRON
has AUX
been AUX
in ADP
a DET
malarial ADJ
area NOUN
for ADP
3 NUM
years NOUN
. PUNCT
  SPACE
I PRON
was AUX
a DET
plateletdonor NOUN
until ADP
my PRON
Thailand PROPN
trip NOUN
and CCONJ
my PRON
blood NOUN
bank NOUN
was AUX
very ADV
disappointedto ADJ
find VERB
out ADP
they PRON
could AUX
n't PART
use VERB
me PRON
for ADP
3 NUM
years.>>When ADV
the DET
secretary PROPN
of ADP
state PROPN
asked VERB
me PRON
if SCONJ
I PRON
wanted VERB
to PART
donate VERB
my PRON
> X
organs NOUN
I PRON
said VERB
no INTJ
because SCONJ
I PRON
figured VERB
that SCONJ
no DET
one PRON
would AUX
want VERB
them PRON
> X
given VERB
my PRON
history NOUN
. PUNCT
  SPACE
Was AUX
I PRON
correct?>Not PRON
necessarily ADV
. PUNCT
  SPACE
The DET
same ADJ
rules NOUN
may AUX
not PART
apply VERB
to ADP
organ NOUN
donationas NOUN
to ADP
blood NOUN
donation NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
I PRON
'm AUX
sure ADJ
they PRON
don't.-- ADV
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58971From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Mississippi PROPN
River PROPN
water NOUN
and CCONJ
catfish NOUN
: PUNCT
safe?In PROPN
article NOUN
< X
1993Apr12.204033.126645@zeus.calpoly.edu NOUN
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>I've NOUN
been AUX
invited VERB
to PART
spend VERB
a DET
couple NOUN
weeks NOUN
this DET
summer NOUN
rafting VERB
down ADP
the DET
> X
Mississippi PROPN
. PUNCT
  SPACE
My PRON
journey NOUN
partners NOUN
want VERB
to PART
live VERB
off ADP
of ADP
river NOUN
water NOUN
and CCONJ
> X
catfish NOUN
along ADP
the DET
route NOUN
. PUNCT
  SPACE
Should AUX
I PRON
have AUX
any DET
concerns NOUN
about ADP
pollution NOUN
or CCONJ
> X
health NOUN
risks NOUN
in ADP
doing VERB
this?You'd PROPN
have AUX
to PART
purify VERB
the DET
river NOUN
water NOUN
first ADV
. PUNCT
  SPACE
I PRON
'm AUX
not PART
sure ADJ
how ADV
practicalthat ADJ
is AUX
with ADP
the DET
Mississippi PROPN
. PUNCT
  SPACE
You PRON
'd AUX
better ADV
check VERB
with ADP
health NOUN
agenciesalong PROPN
the DET
way NOUN
to PART
see VERB
if SCONJ
there PRON
are AUX
toxic ADJ
chemicals NOUN
in ADP
the DET
river NOUN
. PUNCT
  SPACE
Ifit PROPN
is AUX
just ADV
microorganisms NOUN
, PUNCT
those DET
can AUX
be AUX
filtered VERB
or CCONJ
killed VERB
, PUNCT
but CCONJ
youmay PROPN
need VERB
activated VERB
charcoal NOUN
or CCONJ
other ADJ
means NOUN
to PART
purify VERB
from ADP
chemicals NOUN
. PUNCT
Better ADV
be AUX
same ADJ
than SCONJ
sorry ADJ
. PUNCT
  SPACE
Obviously ADV
, PUNCT
drinking VERB
the DET
river NOUN
withoutprocessing VERB
it PRON
is AUX
likely ADJ
to PART
make VERB
you PRON
sick ADJ
from ADP
bacteria NOUN
and CCONJ
parasites.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58972From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residencyIn PROPN
article NOUN
< X
1993Apr12.231544.5990@cnsvax.uwec.edu ADJ
> X
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
I PRON
believe VERB
it PRON
is AUX
illegal ADJ
for ADP
a DET
residency NOUN
to PART
discriminate VERB
against ADP
FMGs PROPN
. PUNCT
  SPACE
IIs PROPN
that SCONJ
true ADJ
? PUNCT
  SPACE
I PRON
know VERB
some DET
that PRON
wo AUX
n't PART
even ADV
interview VERB
FMGs PROPN
. PUNCT
  SPACE
Most ADJ
programs NOUN
discriminate VERB
, PUNCT
in ADP
that DET
given VERB
an DET
FMG PROPN
equallyqualified VERB
as SCONJ
an DET
American ADJ
they PRON
will AUX
take VERB
the DET
American PROPN
. PUNCT
  SPACE
Whatrights NOUN
do AUX
they PRON
actually ADV
have AUX
? PUNCT
  SPACE
Does AUX
it PRON
matter VERB
if SCONJ
they PRON
areUS PROPN
citizens NOUN
( PUNCT
most ADJ
are AUX
not PART
) PUNCT
? PUNCT
  SPACE
We PRON
have AUX
had VERB
good ADJ
luck NOUN
with ADP
FMGsand NUM
bad ADJ
luck NOUN
. PUNCT
  SPACE
SOme DET
of ADP
our PRON
very ADV
best ADJ
residents NOUN
have AUX
been AUX
FMGs PROPN
. PUNCT
Also ADV
, PUNCT
our PRON
very ADV
worst ADJ
. PUNCT
  SPACE
As SCONJ
it PRON
turns VERB
out ADP
, PUNCT
the DET
worst ADJ
FMGs NOUN
are AUX
oftenUS VERB
citizens NOUN
that PRON
studied VERB
in ADP
off ADJ
- PUNCT
shore NOUN
medical ADJ
schools NOUN
. PUNCT
  SPACE
Of ADP
the5 PROPN
residents NOUN
fired VERB
for ADP
incompetence NOUN
in ADP
the DET
12 NUM
years NOUN
I PRON
've AUX
been AUX
here ADV
in ADP
my PRON
department NOUN
, PUNCT
all DET
have AUX
been AUX
FMGs PROPN
. PUNCT
  SPACE
3 NUM
were AUX
US PROPN
citizens NOUN
who PRON
studied VERB
in ADP
Guadalajara PROPN
, PUNCT
1 NUM
was AUX
a DET
US PROPN
citizen NOUN
but CCONJ
was AUX
trained VERB
in ADP
the DET
Soviet PROPN
Union PROPN
, PUNCT
and CCONJ
one NUM
was AUX
Philipina PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
all DET
are AUX
now ADV
practicing VERB
medicinesomewhere ADV
, PUNCT
3 NUM
of ADP
them PRON
in ADP
Neurology PROPN
after ADP
having VERB
been AUX
picked VERB
up ADP
by ADP
other ADJ
programs NOUN
, PUNCT
1 NUM
in ADP
psychiatry NOUN
, PUNCT
and CCONJ
the DET
other ADJ
in ADP
emergency NOUN
medicine.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
58973From NUM
: PUNCT
cash@convex.com X
( PUNCT
Peter PROPN
Cash)Subject PROPN
: PUNCT
" PUNCT
liver NOUN
" PUNCT
spotsWhat NOUN
causes VERB
those DET
little ADJ
brown ADJ
spots NOUN
on ADP
older ADJ
people NOUN
's PART
hands NOUN
? PUNCT
Are AUX
theycalled VERB
" PUNCT
liver ADJ
spots NOUN
" PUNCT
because SCONJ
they PRON
're AUX
sort ADV
of ADV
liver NOUN
- PUNCT
colored ADJ
, PUNCT
or CCONJ
do AUX
theyindicate VERB
some DET
actual ADJ
liver NOUN
dysfunction?-- PROPN
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PUNCT
             SPACE
| PROPN
      SPACE
Die PROPN
Welt PROPN
ist NOUN
alles NOUN
, PUNCT
was AUX
Zerfall PROPN
ist NOUN
. PUNCT
     SPACE
|Peter PROPN
Cash NOUN
   SPACE
| PROPN
       SPACE
( PUNCT
apologies NOUN
to ADP
Ludwig PROPN
Wittgenstein PROPN
) PUNCT
      SPACE
|cash@convex.com~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58974From NUM
: PUNCT
thomasd@tps X
. PUNCT
COM PROPN
( PUNCT
Thomas PROPN
W. PROPN
Day)Subject PROPN
: PUNCT
Re ADP
: PUNCT
_ PROPN
The DET
Andromeda PROPN
Strain_In PROPN
article NOUN
< X
C5pvp5.82L@chinet.chi.il.us PROPN
> X
dhartung@chinet.chi.il.us NOUN
( PUNCT
Dan PROPN
Hartung PROPN
) PUNCT
writes:>Just PROPN
had AUX
the DET
opportunity NOUN
to PART
watch VERB
this DET
flick NOUN
on ADP
A&E PROPN
-- PUNCT
some DET
15 NUM
years NOUN
> X
since SCONJ
I PRON
saw VERB
it PRON
last ADJ
. PUNCT
  SPACE
Wow INTJ
, PUNCT
the DET
WWII PROPN
channel NOUN
did AUX
something PRON
not PART
- PUNCT
WWII?>I PROPN
was AUX
very ADV
interested ADJ
in ADP
the DET
technology NOUN
demonstrated VERB
in ADP
this DET
film NOUN
> X
for ADP
handling VERB
infectious ADJ
diseases NOUN
( PUNCT
and CCONJ
similar ADJ
toxic ADJ
substances).>Clearly ADV
they PRON
" PUNCT
faked VERB
" PUNCT
a DET
lot NOUN
of ADP
the DET
computer NOUN
& CCONJ
robotic NOUN
technology;>certainly ADV
at ADP
the DET
time NOUN
it PRON
was AUX
made VERB
most ADJ
of ADP
that DET
was AUX
science NOUN
fiction NOUN
> X
itself PRON
, PUNCT
let VERB
alone ADV
the DET
idea NOUN
of ADP
a DET
" PUNCT
space NOUN
germ NOUN
" PUNCT
. PUNCT
  SPACE
The DET
graphics NOUN
capabilities NOUN
of ADP
the DET
computers NOUN
were AUX
very ADV
faked ADJ
for ADP
movie NOUN
audiences NOUN
who PRON
have AUX
not PART
ability NOUN
or CCONJ
patience NOUN
with ADP
numbers NOUN
. PUNCT
  SPACE
The DET
book NOUN
was AUX
more ADV
realistic ADJ
in ADP
that DET
respect NOUN
. PUNCT
  SPACE
In ADP
all DET
respects NOUN
, PUNCT
actually ADV
. PUNCT
  SPACE
The DET
robotics NOUN
are AUX
still ADV
out SCONJ
of ADP
range NOUN
, PUNCT
but CCONJ
not PART
impossible.>Quite PROPN
coincidentally ADV
[ PUNCT
actually ADV
this DET
is AUX
what PRON
got VERB
me PRON
wanted VERB
to PART
see VERB
> X
the DET
movie NOUN
again ADV
] PUNCT
I PRON
watched VERB
a DET
segment NOUN
on ADP
the DET
otherwise ADV
awful ADJ
_ PROPN
How'd NOUN
> X
They PRON
Do AUX
That DET
? PUNCT
_ DET
dealing VERB
with ADP
a DET
disease NOUN
researcher NOUN
at ADP
the DET
CDC PROPN
's PART
top ADJ
> X
lab NOUN
. PUNCT
  SPACE
There PRON
was AUX
description NOUN
of ADP
the DET
elaborate ADJ
security NOUN
measures NOUN
taken VERB
> X
so SCONJ
that DET
building NOUN
will AUX
never ADV
be AUX
" PUNCT
cracked VERB
" PUNCT
so ADV
to PART
speak VERB
by ADP
man NOUN
or CCONJ
> X
nature NOUN
( PUNCT
short ADJ
of ADP
deliberate ADJ
bombing NOUN
from ADP
the DET
air NOUN
, PUNCT
perhaps ADV
) PUNCT
. PUNCT
  SPACE
And CCONJ
> X
the DET
researchers NOUN
used VERB
" PUNCT
spacesuits NOUN
" PUNCT
similar ADJ
to ADP
that DET
in ADP
the DET
film NOUN
. PUNCT
SF PROPN
( PUNCT
and CCONJ
I"ve PROPN
always ADV
wondered VERB
how ADV
Crichton PROPN
escapes VERB
this DET
classification NOUN
) PUNCT
is AUX
usually ADV
ahead ADV
of ADP
science NOUN
in ADP
both CCONJ
prediction NOUN
and CCONJ
precaution NOUN
. PUNCT
  SPACE
NASA PROPN
's PART
decontaimination NOUN
processes NOUN
were AUX
supposedly ADV
taken VERB
to PART
prevent VERB
SF PROPN
story NOUN
disasters NOUN
. PUNCT
  SPACE
I PRON
mean VERB
, PUNCT
NASA PROPN
scientists NOUN
were AUX
often ADV
SF PROPN
readers NOUN
( PUNCT
and CCONJ
sometimes ADV
writers NOUN
) PUNCT
and CCONJ
felt VERB
pre ADJ
- VERB
warned VERB
by ADP
their PRON
reading.>I'm PROPN
curious ADJ
what PRON
people NOUN
think VERB
about ADP
this DET
film NOUN
-- PUNCT
short ADJ
of ADP
" PUNCT
silly".>Is PROPN
such DET
a DET
facility NOUN
technically ADV
feasible ADJ
today NOUN
? PUNCT
  SPACE
I PRON
think VERB
the DET
film NOUN
still ADV
holds VERB
up ADP
among ADP
the DET
best ADJ
of ADP
SF PROPN
films NOUN
, PUNCT
but CCONJ
that DET
is AUX
n't PART
saying VERB
a DET
whole ADJ
lot.>As PROPN
far ADV
as SCONJ
the DET
plot NOUN
, PUNCT
and CCONJ
the DET
crystalline ADJ
structure NOUN
that PRON
is AUX
not PART
Life NOUN
> X
As SCONJ
We PRON
Know VERB
It PRON
, PUNCT
that DET
's AUX
a DET
whole ADJ
' PUNCT
nother NOUN
argument NOUN
for ADP
rec.arts.sf.tech>or PROPN
something PRON
. PUNCT
Yep INTJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58975From NUM
: PUNCT
calzone@athena.mit.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics)>Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
it PRON
will AUX
be AUX
possible ADJ
to PART
disassemble VERB
and CCONJ
> X
re VERB
- VERB
assemble VERB
our PRON
bodies NOUN
at ADP
the DET
molecular ADJ
level NOUN
. PUNCT
  SPACE
Not PART
only ADV
will AUX
flawless VERB
> X
cosmetic ADJ
surgery NOUN
be AUX
possible ADJ
, PUNCT
but CCONJ
flawless ADJ
cosmetic ADJ
PSYCHOSURGERY.>>What NUM
will AUX
it PRON
be AUX
like SCONJ
to PART
store VERB
all DET
the DET
prices NOUN
of ADP
shelf NOUN
- PUNCT
priced VERB
bar NOUN
- PUNCT
coded VERB
> X
goods NOUN
in ADP
your PRON
head NOUN
, PUNCT
and CCONJ
catch VERB
all DET
the DET
errors NOUN
they PRON
make VERB
in ADP
the DET
store's NOUN
> X
favor NOUN
at ADP
SAFEWAY PROPN
? PUNCT
  SPACE
What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
mentally ADV
edit VERB
and CCONJ
spell->check PROPN
your PRON
responses NOUN
to ADP
the DET
questions NOUN
posed VERB
by ADP
a DET
phone NOUN
caller NOUN
selling NOUN
> X
VACATION PROPN
TIME PROPN
- PUNCT
SHARE NOUN
OPTIONS?You PUNCT
are AUX
absolutely ADV
daft ADJ
. PUNCT
  SPACE
No DET
flame NOUN
required VERB
. PUNCT
  SPACE
You PRON
lack VERB
a DET
brain NOUN
. PUNCT
> X
... PUNCT
[ PUNCT
sic] NOUN
... PUNCT
>Memes NOUN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
genes NOUN
> X
which PRON
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
Well INTJ
... PUNCT
at ADP
least ADJ
you PRON
're AUX
educated VERB
, PUNCT
it PRON
seems VERB
. PUNCT
  SPACE
But CCONJ
give VERB
creditwhere ADV
credit NOUN
is AUX
due ADJ
: PUNCT
to ADP
Richard PROPN
Dawkin(s PROPN
? PUNCT
) PUNCT
( PUNCT
the DET
meme NOUN
is AUX
a DET
meme NOUN
he PRON
invented)-zoneNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
58976From NUM
: PUNCT
sheffner@encore.com X
( PUNCT
Steve PROPN
Heffner)Subject PROPN
: PUNCT
HerniaA PROPN
bit NOUN
more ADJ
than SCONJ
a DET
year NOUN
ago ADV
, PUNCT
a DET
hernia NOUN
in ADP
my PRON
right ADJ
groin NOUN
wasdiscovered VERB
. PUNCT
  SPACE
It PRON
had AUX
produced VERB
a DET
dull ADJ
pain NOUN
in ADP
that DET
area NOUN
. PUNCT
  SPACE
The DET
herniawas NOUN
repaired VERB
using VERB
the DET
least ADV
intrusive ADJ
( PUNCT
orthoscopic PROPN
? PUNCT
) PUNCT
method NOUN
and CCONJ
a"plug PROPN
and CCONJ
patch" ADV
. PUNCT
The DET
doctor NOUN
considered VERB
the DET
procedure NOUN
a DET
success NOUN
. PUNCT
A DET
few ADJ
months NOUN
later ADV
the DET
same ADJ
pain NOUN
returned VERB
. PUNCT
  SPACE
The DET
doctor NOUN
said VERB
thathe DET
could AUX
find VERB
nothing PRON
wrong ADJ
in ADP
the DET
area NOUN
of ADP
the DET
hernia PROPN
repair NOUN
. PUNCT
Now ADV
the DET
pain NOUN
occurs VERB
more ADV
often ADV
. PUNCT
  SPACE
My PRON
GP PROPN
could AUX
n't PART
identify VERB
anyspecific ADJ
problem NOUN
. PUNCT
  SPACE
The DET
surgen NOUN
who PRON
performed VERB
the DET
original ADJ
procedurenow NOUN
says VERB
that SCONJ
yes INTJ
there PRON
is AUX
a DET
" PUNCT
new ADJ
" PUNCT
hernia NOUN
in ADP
the DET
same ADJ
area NOUN
and CCONJ
hesaid VERB
that SCONJ
he PRON
has AUX
to PART
cut VERB
into ADP
the DET
area NOUN
for ADP
the DET
repair NOUN
this DET
time NOUN
. PUNCT
My PRON
question NOUN
to ADP
the DET
net NOUN
: PUNCT
  SPACE
Is AUX
there PRON
a DET
nonintrusive ADJ
method NOUN
todetermine NOUN
if SCONJ
in ADP
fact NOUN
there PRON
is AUX
a DET
hernia NOUN
or CCONJ
if SCONJ
the DET
pain NOUN
is AUX
fromsomething VERB
else?Steve NOUN
HeffnerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58977From NUM
: PUNCT
davpa@ida.liu.se PROPN
( PUNCT
David PROPN
Partain)Subject PROPN
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?Someone NOUN
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
somethingto NOUN
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highlyallergic ADJ
to ADP
yeast NOUN
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADV
about ADP
it?Thanks.-- ADV
David PROPN
Partain PROPN
                   SPACE
| PROPN
  SPACE
davpa@ida.liu.seIDA PROPN
, PUNCT
University PROPN
of ADP
Link\"oping PROPN
  SPACE
| ADP
  SPACE
work NOUN
phone NOUN
: PUNCT
  SPACE
+46 PROPN
( PUNCT
013 NUM
) PUNCT
28 NUM
26 NUM
08S-581 NUM
83 NUM
Link\"oping NOUN
, PUNCT
Sweden PROPN
    SPACE
| CCONJ
  SPACE
telefax NOUN
: PUNCT
     SPACE
+46 NOUN
( PUNCT
013 NUM
) PUNCT
28 NUM
26 NUM
66Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58978From NUM
: PUNCT
jil@donuts0.uucp PROPN
( PUNCT
Jamie PROPN
Lubin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
19671@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>>>>Is PROPN
there ADV
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an>>overall DET
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most>>people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the>>other PROPN
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this?>>There NOUN
is AUX
eye NOUN
dominance NOUN
same ADJ
as SCONJ
handedness NOUN
( PUNCT
and CCONJ
usually ADV
for ADP
the DET
> X
same ADJ
side NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
refractive ADJ
error NOUN
, PUNCT
however ADV
. PUNCT
I PRON
recall VERB
reading VERB
/ PUNCT
seeing VERB
that SCONJ
former ADJ
baseball NOUN
star NOUN
Chris PROPN
Chambliss PROPN
' PART
hittingabilities NOUN
were AUX
( PUNCT
in ADP
part NOUN
) PUNCT
attributed VERB
to ADP
a DET
combination NOUN
of ADP
left ADJ
- PUNCT
handedness NOUN
& CCONJ
right ADJ
- PUNCT
eye NOUN
dominance NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58979From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
1993Apr18.175802.28548@clpd.kodak.com CCONJ
> X
Rich PROPN
Young,young@serum.kodak.com PROPN
writes VERB
: PUNCT
Stuff NOUN
deleted VERB
> X
	  SPACE
... PUNCT
have AUX
to PART
> X
	  SPACE
consume VERB
unrealistically ADV
large ADJ
quantities NOUN
of ADP
barbecued VERB
meat NOUN
at ADP
a DET
> X
	  SPACE
time NOUN
. PUNCT
"I NOUN
have AUX
to PART
confess VERB
that SCONJ
this DET
is AUX
one NUM
of ADP
my PRON
few ADJ
unfulfilled ADJ
ambitions NOUN
. PUNCT
No ADV
matter ADV
how ADV
much ADV
I PRON
eat VERB
, PUNCT
it PRON
still ADV
seems VERB
realistic ADJ
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58980From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
quality NOUN
control NOUN
in ADP
medicineIn PROPN
article NOUN
< X
9307@blue.cis.pitt.edu NUM
> X
Kenneth PROPN
Gilbert,kxgst1+@pitt.edu PROPN
writes:>situation PROPN
. PUNCT
  SPACE
QA PROPN
activities NOUN
are AUX
a DET
routine ADJ
part NOUN
of ADP
every DET
hospital's PROPN
> X
administrative ADJ
function NOUN
and CCONJ
are AUX
required VERB
by ADP
accreditation NOUN
agencies NOUN
. PUNCT
There ADV
> X
are AUX
even ADV
entire ADJ
publications NOUN
devoted VERB
to ADP
QA PROPN
issues NOUN
. PUNCT
Indeed ADV
. PUNCT
I PRON
spend VERB
about ADV
60 NUM
% NOUN
of ADP
my PRON
time NOUN
dealing VERB
with ADP
quality NOUN
stuff NOUN
. PUNCT
Itis VERB
a DET
hot ADJ
number NOUN
. PUNCT
Two NUM
journals NOUN
worth ADJ
looking VERB
at ADP
are:-Quality PROPN
Review PROPN
Bulletin PROPN
. PUNCT
Pub PROPN
: PUNCT
Joint PROPN
Commission PROPN
on ADP
Accreditation PROPN
ofHealthcare PROPN
Organizations PROPN
, PUNCT
one NUM
Renaissance PROPN
boulevard NOUN
, PUNCT
OakbrookTerrace PROPN
, PUNCT
IL PROPN
60181Quality PROPN
in ADP
Health PROPN
Care PROPN
. PUNCT
BMJ PROPN
Publishing PROPN
Group PROPN
, PUNCT
Box PROPN
No NOUN
. PUNCT
560B NUM
, PUNCT
Kennebunkport PROPN
, PUNCT
ME PROPN
04046Don NUM
Mackie NOUN
- PUNCT
his PRON
opinionsUM PROPN
Anesthesiology PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
58981From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)-*----I PUNCT
think VERB
that SCONJ
part NOUN
of ADP
the DET
problem NOUN
is AUX
that SCONJ
I PRON
have AUX
proposed VERB
adefinition NOUN
of ADP
science NOUN
that PRON
I PRON
intended VERB
to PART
be AUX
interpreted VERB
broadlyand NOUN
that PRON
Lee PROPN
Lady PROPN
has AUX
interpreted VERB
fairly ADV
narrowly ADV
. PUNCT
  SPACE
My PRON
definitionis NOUN
this DET
: PUNCT
Science NOUN
is AUX
the DET
investigation NOUN
of ADP
the DET
empirical NOUN
that PRON
avoidsmistakes VERB
in ADP
reasoning NOUN
and CCONJ
methodology NOUN
discovered VERB
from ADP
previouswork NOUN
. PUNCT
  SPACE
Lee PROPN
Lady PROPN
writes VERB
: PUNCT
> X
I PRON
do AUX
n't PART
think VERB
that SCONJ
science NOUN
should AUX
be AUX
defined VERB
in ADP
a DET
way NOUN
that PRON
some DET
> NOUN
of ADP
the DET
activities NOUN
that PRON
lead VERB
to ADP
really ADV
important ADJ
science NOUN
--- PUNCT
namely ADV
> X
thinking NOUN
and CCONJ
informal ADJ
exploration NOUN
--- PUNCT
are AUX
not PART
recognized VERB
as SCONJ
> X
scientific ADJ
work NOUN
. PUNCT
  SPACE
Unless SCONJ
one NUM
classifies VERB
" PUNCT
thinking VERB
and CCONJ
informal ADJ
exploration NOUN
" PUNCT
as SCONJ
amistake ADJ
, PUNCT
they PRON
fall VERB
under ADP
my PRON
definition NOUN
. PUNCT
  SPACE
I PRON
hope VERB
no DET
one NUM
wouldconsider NOUN
speculation NOUN
, PUNCT
thinking NOUN
, PUNCT
and CCONJ
informal ADJ
exploration NOUN
asunscientific NOUN
. PUNCT
  SPACE
In ADP
article NOUN
< X
C5nAsF.MH7@news NOUN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
Seriously ADV
, PUNCT
I PRON
'm AUX
not PART
sure ADJ
whether SCONJ
I PRON
misjudged VERB
you PRON
or CCONJ
not PART
, PUNCT
in ADP
one NUM
respect NOUN
. PUNCT
  SPACE
> X
I PRON
still ADV
have AUX
a DET
major ADJ
problem NOUN
, PUNCT
though ADV
, PUNCT
with ADP
your PRON
insistence NOUN
that SCONJ
science NOUN
> X
is AUX
mainly ADV
about ADP
avoiding VERB
mistakes NOUN
. PUNCT
... PUNCT
Here ADV
is AUX
where ADV
I PRON
think VERB
we PRON
are AUX
talking VERB
at ADP
cross NOUN
- NOUN
purposes NOUN
. PUNCT
  SPACE
It PRON
is AUX
notclear ADJ
to ADP
me PRON
that SCONJ
the DET
kind NOUN
of ADP
definition NOUN
I PRON
have AUX
proposed VERB
should AUX
betaken VERB
as SCONJ
describing VERB
what PRON
" PUNCT
science NOUN
is AUX
mainly ADV
about ADP
. PUNCT
" PUNCT
  SPACE
Consider VERB
, PUNCT
for ADP
example NOUN
, PUNCT
a DET
definition NOUN
of ADP
invertebrates NOUN
as SCONJ
all DET
animals NOUN
lackinga PROPN
backbone NOUN
. PUNCT
  SPACE
This DET
fairly ADV
tells VERB
what PRON
is AUX
an DET
invertebrate NOUN
andwhat NOUN
is AUX
not PART
an DET
invertebrate NOUN
, PUNCT
but CCONJ
it PRON
hardly ADV
tells VERB
you PRON
whatinvertebrates NOUN
are AUX
all ADV
about ADP
. PUNCT
  SPACE
One PRON
can AUX
read VERB
this DET
definition NOUN
andstill ADV
not PART
know VERB
that SCONJ
95 NUM
% NOUN
of ADP
all DET
animal NOUN
species NOUN
are AUX
invertebrates NOUN
, PUNCT
that PRON
invertebrates NOUN
possess VERB
a DET
remarkably ADV
broad ADJ
range NOUN
of ADP
form NOUN
, PUNCT
thatsome NOUN
invertebrate NOUN
groups NOUN
-- PUNCT
such ADJ
as SCONJ
insects NOUN
and CCONJ
nematodes NOUN
-- PUNCT
areubiquitous ADJ
in ADP
all DET
ecosystems NOUN
, PUNCT
etc X
. PUNCT
  SPACE
In ADP
short ADJ
, PUNCT
knowing VERB
thedefinition NOUN
of ADP
invertebrates NOUN
does AUX
* PUNCT
not PART
* PUNCT
tell VERB
one NUM
what PRON
they PRON
are"mainly ADV
about ADP
. PUNCT
"The PUNCT
misunderstanding NOUN
here ADV
is AUX
my PRON
fault NOUN
. PUNCT
  SPACE
I PRON
did AUX
not PART
give VERB
sufficientcontext VERB
for ADP
people NOUN
to PART
understand VERB
my PRON
proposed VERB
definition NOUN
. PUNCT
> X
Okay INTJ
, PUNCT
so ADV
let VERB
's PRON
see VERB
if SCONJ
we PRON
agree VERB
on ADP
this DET
: PUNCT
FIRST ADJ
of ADP
all DET
, PUNCT
there PRON
are AUX
degrees NOUN
> X
of ADP
certainty PROPN
. PUNCT
  SPACE
It PRON
might AUX
be AUX
appropriate ADJ
, PUNCT
for ADP
instance NOUN
, PUNCT
to PART
demand VERB
carefully ADV
> X
controlled VERB
trials NOUN
before ADP
we PRON
accept VERB
as SCONJ
absolute ADJ
scientific ADJ
truth NOUN
( PUNCT
to ADP
the DET
> X
extent NOUN
that SCONJ
there PRON
is AUX
any DET
such ADJ
thing NOUN
) PUNCT
the DET
effectiveness NOUN
of ADP
a DET
certain ADJ
> X
treatment NOUN
. PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
highly ADV
favorable ADJ
clinical ADJ
experience NOUN
, PUNCT
even ADV
> X
if SCONJ
uncontrolled ADJ
, PUNCT
can AUX
be AUX
adequate ADJ
to PART
justify VERB
a DET
* PUNCT
preliminary ADJ
* PUNCT
judgement NOUN
that SCONJ
> X
a DET
treatment NOUN
is AUX
useful ADJ
. PUNCT
... PUNCT
> X
> X
SECONDLY PROPN
, PUNCT
it PRON
makes VERB
sense NOUN
to PART
be AUX
more ADV
tolerant ADJ
in ADP
our PRON
standards NOUN
of ADP
> X
evidence NOUN
for ADP
a DET
pronounced ADJ
effect NOUN
than SCONJ
for ADP
one NUM
that PRON
is AUX
marginal ADJ
. PUNCT
  SPACE
I PRON
agree VERB
on ADP
both DET
counts NOUN
. PUNCT
  SPACE
As SCONJ
an DET
example NOUN
of ADP
the DET
second ADJ
, PUNCT
it PRON
would AUX
onlytake VERB
a DET
few ADJ
cases NOUN
of ADP
curing VERB
rabies NOUN
to PART
convince VERB
most ADV
veterinariansthat ADP
a DET
treatment NOUN
was AUX
effective ADJ
, PUNCT
despite SCONJ
a DET
lack NOUN
of ADP
controls NOUN
. PUNCT
  SPACE
As SCONJ
to ADP
the DET
first ADJ
, PUNCT
I PRON
do AUX
not PART
think VERB
it PRON
is AUX
useful ADJ
to PART
talk VERB
about"absolute ADJ
scientific ADJ
truth NOUN
. PUNCT
" PUNCT
  SPACE
I PRON
think VERB
it PRON
is AUX
more ADV
useful ADJ
to PART
talkabout VERB
the DET
kinds NOUN
of ADP
evidence NOUN
that SCONJ
various ADJ
claims NOUN
have AUX
and CCONJ
thekinds NOUN
of ADP
evidence NOUN
IN ADP
PARTICULAR NOUN
FIELDS PROPN
that SCONJ
in ADP
the DET
past ADJ
haveproven PROPN
faulty ADJ
or CCONJ
reliable ADJ
. PUNCT
  SPACE
The DET
latter ADJ
is AUX
obviously ADV
a DET
matter NOUN
ofdegree NOUN
, PUNCT
and CCONJ
in ADP
each DET
field NOUN
, PUNCT
practitioners NOUN
try VERB
to PART
discover VERB
therelevance NOUN
of ADP
different ADJ
kinds NOUN
of ADP
evidence NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
primary ADJ
mistakes NOUN
that PRON
marks VERB
the DET
advocacy NOUN
of ADP
an DET
idea NOUN
aspsuedo NOUN
- PUNCT
science PROPN
is AUX
that SCONJ
the DET
advocacy NOUN
lacks VERB
any DET
sense NOUN
of ADP
proportionregarding VERB
the DET
kinds NOUN
of ADP
evidence NOUN
related VERB
to ADP
the DET
proposed VERB
claim NOUN
, PUNCT
the DET
kinds NOUN
of ADP
evidence NOUN
that PRON
are AUX
actually ADV
relevant ADJ
to ADP
it PRON
, PUNCT
and CCONJ
thehistorical ADJ
reasons NOUN
in ADP
the DET
field NOUN
that SCONJ
certain ADJ
kinds NOUN
of ADP
evidenceare NOUN
given VERB
more ADJ
weight NOUN
than SCONJ
others NOUN
. PUNCT
  SPACE
It PRON
is AUX
perfectly ADV
alright ADJ
tospeculate NOUN
. PUNCT
  SPACE
I PRON
have AUX
read VERB
quite DET
a DET
few ADJ
refereed NOUN
papers NOUN
thatspeculated VERB
left ADJ
and CCONJ
right ADJ
. PUNCT
  SPACE
But CCONJ
the DET
authors NOUN
were AUX
careful ADJ
toidentify VERB
the DET
notions NOUN
as SCONJ
speculative ADJ
, PUNCT
to PART
list VERB
what PRON
little ADJ
evidencewas NOUN
presently ADV
available ADJ
for ADP
them PRON
, PUNCT
and CCONJ
to PART
describe VERB
how ADV
researchcould ADV
proceed VERB
to PART
either CCONJ
put VERB
the DET
notion NOUN
on ADP
more ADJ
firm ADJ
footing NOUN
or CCONJ
touncover VERB
its PRON
problems NOUN
. PUNCT
  SPACE
Often ADV
what PRON
distinguishes VERB
whether SCONJ
a DET
paperof NOUN
this DET
sort NOUN
passes VERB
muster NOUN
is AUX
the DET
thoughtfulness NOUN
with ADP
which PRON
theauthor NOUN
sets VERB
the DET
context NOUN
and CCONJ
paves VERB
the DET
way NOUN
for ADP
future ADJ
work NOUN
. PUNCT
  SPACE
( PUNCT
Itis NOUN
in ADP
this DET
area NOUN
that SCONJ
many ADJ
proponents NOUN
of ADP
speculative ADJ
ideas NOUN
fail VERB
. PUNCT
) PUNCT
> X
The DET
folks NOUN
over ADP
in ADP
sci.psychology PROPN
have AUX
a DET
hundred NUM
and CCONJ
one NOUN
excuses NOUN
not PART
to PART
> X
make VERB
this DET
simple ADJ
test NOUN
. PUNCT
  SPACE
They PRON
claim VERB
that SCONJ
only ADV
an DET
elaborate ADJ
outcome NOUN
study NOUN
> X
will AUX
be AUX
satisfactory ADJ
--- PUNCT
a DET
study NOUN
of ADP
the DET
sort NOUN
that PRON
NLP PROPN
practitioners NOUN
, PUNCT
> X
many ADJ
of ADP
whom PRON
make VERB
a DET
barely ADV
marginal ADJ
living NOUN
from ADP
their PRON
practice NOUN
, PUNCT
can AUX
ill VERB
> X
afford VERB
to PART
do AUX
. PUNCT
  SPACE
( PUNCT
Most ADJ
of ADP
them PRON
are AUX
also ADV
just ADV
plain ADJ
not PART
interested ADJ
, PUNCT
because SCONJ
> X
the DET
whole ADJ
idea NOUN
seems VERB
frivolous ADJ
. PUNCT
  SPACE
And CCONJ
since SCONJ
they PRON
're AUX
not PART
part NOUN
of ADP
the DET
> X
scientific ADJ
establishment NOUN
, PUNCT
they PRON
have AUX
no DET
tangible ADJ
rewards NOUN
to PART
gain VERB
> X
from ADP
scientific ADJ
acceptance NOUN
. PUNCT
) PUNCT
I PRON
think VERB
a DET
lot NOUN
of ADP
scientists NOUN
steer VERB
away ADV
from ADP
things NOUN
that PRON
--deserving PUNCT
or CCONJ
not PART
-- PUNCT
garner VERB
a DET
patina NOUN
of ADP
kookiness NOUN
. PUNCT
  SPACE
Whenproponents NOUN
of ADP
some DET
practice NOUN
see VERB
no DET
value NOUN
in ADP
more ADJ
carefulinvestigation NOUN
of ADP
that DET
practice NOUN
, PUNCT
that PRON
sets VERB
alarms NOUN
ringing VERB
in ADP
manyresearchers NOUN
' PART
minds NOUN
. PUNCT
  SPACE
This DET
is AUX
unfortunate ADJ
, PUNCT
because SCONJ
there PRON
is AUX
undoubtedly ADV
someintersection NOUN
between ADP
things NOUN
that PRON
are AUX
worth ADJ
investigating VERB
andthings NOUN
that PRON
are AUX
advocated VERB
by ADP
those DET
who PRON
seem VERB
careless ADV
orunreasonable ADJ
in ADP
their PRON
advocacy NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
I PRON
canunderstand VERB
why ADV
many ADJ
scientists NOUN
would AUX
just ADV
as ADV
soon ADV
select ADJ
otherdirections NOUN
for ADP
research NOUN
. PUNCT
  SPACE
As SCONJ
Gordon PROPN
Banks PROPN
has AUX
pointed VERB
out ADP
, PUNCT
no DET
onewants NOUN
to PART
become VERB
this DET
generation NOUN
's PART
Rhine PROPN
. PUNCT
> X
One NUM
academic NOUN
in ADP
sci.psychology PROPN
said VERB
that SCONJ
it PRON
would AUX
be AUX
completely ADV
> X
unscientific ADJ
for ADP
him PRON
to PART
test VERB
the DET
phobia PROPN
cure NOUN
since SCONJ
it PRON
has AUX
n't PART
> X
been AUX
described VERB
in ADP
a DET
scientific ADJ
journal NOUN
. PUNCT
... PUNCT
I PRON
think VERB
this DET
is AUX
absurd ADJ
. PUNCT
  SPACE
> X
Actually ADV
, PUNCT
at ADV
least ADV
one NUM
fairly ADV
careful ADJ
academic ADJ
study NOUN
has AUX
been AUX
done VERB
> X
( PUNCT
with ADP
favorable ADJ
results NOUN
) PUNCT
, PUNCT
but CCONJ
it PRON
's AUX
apparently ADV
not PART
acceptable ADJ
because SCONJ
> X
it PRON
's AUX
a DET
doctoral ADJ
dissertation NOUN
and CCONJ
not PART
published VERB
in ADP
a DET
refereed NOUN
journal NOUN
. PUNCT
I PRON
wonder VERB
why ADV
the DET
results NOUN
were AUX
not PART
published VERB
. PUNCT
  SPACE
In ADP
my PRON
field NOUN
, PUNCT
dissertation NOUN
results NOUN
are AUX
typically ADV
summarized VERB
in ADP
papers NOUN
that PRON
aresubmitted VERB
to ADP
journals NOUN
. PUNCT
  SPACE
Often ADV
the DET
papers NOUN
are AUX
accepted VERB
forpublication NOUN
before ADP
the DET
dissertation NOUN
is AUX
finished VERB
. PUNCT
  SPACE
( PUNCT
This DET
certainlyeases VERB
one PRON
's PART
defense.)Finally ADV
, PUNCT
I PRON
hope VERB
Lee PROPN
Lady PROPN
will AUX
forgive VERB
me PRON
from ADP
commenting VERB
eitheron PROPN
NLP PROPN
or CCONJ
the DET
discussion NOUN
of ADP
it PRON
in ADP
sci.psychology PROPN
. PUNCT
  SPACE
I PRON
know VERB
littleabout ADV
either ADV
and CCONJ
so ADV
have AUX
nothing PRON
to PART
offer VERB
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58982From NUM
: PUNCT
proberts@informix.com X
( PUNCT
Paul PROPN
Roberts)Subject VERB
: PUNCT
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?In PUNCT
article NOUN
< X
1993Apr12.165410.4206@kestrel.edu NUM
> X
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes:>>I VERB
recall NOUN
reading NOUN
somewhere ADV
, PUNCT
during ADP
my PRON
youth NOUN
, PUNCT
in ADP
some DET
science NOUN
popularization NOUN
> X
book NOUN
, PUNCT
that SCONJ
whyle NOUN
isotope NOUN
changes NOUN
do AUX
n't PART
normally ADV
affect VERB
chemistry NOUN
, PUNCT
a DET
consumption NOUN
> X
of ADP
only ADJ
heavy ADJ
water NOUN
would AUX
be AUX
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
seeds NOUN
watered VERB
only ADV
with ADP
heavy ADJ
> X
water NOUN
do AUX
not PART
sprout VERB
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
about ADP
this?>I PROPN
also ADV
heard VERB
this DET
. PUNCT
I PRON
always ADV
thought VERB
it PRON
might AUX
make VERB
a DET
good ADJ
eposide NOUN
of'Columbo NOUN
' PUNCT
for ADP
someone PRON
to PART
be AUX
poisoned VERB
with ADP
heavy ADJ
water NOUN
- PUNCT
it PRON
wouldn'tshow PUNCT
up ADP
in ADP
any DET
chemical NOUN
test NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58983From NUM
: PUNCT
kutuzova@venus.iteb.serpukhov.suSubject VERB
: PUNCT
THE DET
RESEACHING NOUN
OF ADP
STARVATION.I PROPN
am AUX
very ADV
interested ADJ
in ADP
investigations NOUN
of ADP
starvation NOUN
for ADP
improving VERB
health NOUN
. PUNCT
I PRON
am AUX
the DET
young ADJ
Russian ADJ
reseacher NOUN
  SPACE
and CCONJ
have AUX
highest ADJ
medical ADJ
education NOUN
and CCONJ
expierence NOUN
in ADP
reseach PROPN
work NOUN
in ADP
biological ADJ
field NOUN
and CCONJ
would AUX
like VERB
to PART
work VERB
on ADP
this DET
problem NOUN
. PUNCT
Can AUX
anybody PRON
send VERB
me PRON
the DET
adresses NOUN
of ADP
the DET
hospitals NOUN
or CCONJ
Medical PROPN
Centers PROPN
where ADV
  SPACE
scientific ADJ
problems NOUN
of ADP
human ADJ
starvation NOUN
for ADP
the DET
health NOUN
are AUX
investigated VERB
? PUNCT
  SPACE
Also ADV
I PRON
would AUX
like VERB
to PART
set VERB
scientific ADJ
contacts NOUN
with ADP
colleagues NOUN
whodeals VERB
with ADP
investigations NOUN
in ADP
this DET
field NOUN
. PUNCT
I PRON
would AUX
be AUX
very ADV
appreciated VERB
anyone PRON
reply VERB
me PRON
. PUNCT
Pls INTJ
, PUNCT
contact NOUN
by ADP
post NOUN
: PUNCT
142292 NUM
, PUNCT
Russia PROPN
, PUNCT
                         SPACE
Moscow PROPN
Region PROPN
, PUNCT
                        SPACE
Puschino PROPN
, PUNCT
                        SPACE
P.O. PROPN
box NOUN
46 NUM
, PUNCT
                         SPACE
for ADP
Kravchenko PROPN
N. PROPN
      SPACE
; PUNCT
       SPACE
or CCONJ
by ADP
e NOUN
- NOUN
mail NOUN
: PUNCT
kutuzova@venus.iteb.serpukhov.su PUNCT
                                                                                       SPACE
Thank VERB
you PRON
advance VERB
, PUNCT
                                                SPACE
Natalja PROPN
Kravchenko PROPN
. PUNCT
                   SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58984From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr17.202011.21443@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr17.184435.19725@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>There PROPN
has AUX
been AUX
NO DET
hard ADJ
info NOUN
provided VERB
about ADP
MSG PROPN
making VERB
people NOUN
ill.>That DET
's AUX
the DET
point NOUN
, PUNCT
after ADV
all ADV
. PUNCT
Why ADV
do AUX
n't PART
you PRON
just ADV
look VERB
it PRON
up ADP
in ADP
the DET
Merk PROPN
? PUNCT
Or CCONJ
check VERB
out ADP
the DET
medical ADJ
dictionarycite NOUN
which PRON
a DET
doctor NOUN
mentioned VERB
earlier ADV
in ADP
this DET
thread?>>That PRON
's AUX
because SCONJ
these DET
" PUNCT
peer NOUN
- PUNCT
reviewed VERB
" PUNCT
studies NOUN
are AUX
not PART
addressing VERB
> X
the DET
effects NOUN
of ADP
MSG NOUN
in ADP
people NOUN
, PUNCT
they PRON
're AUX
looking VERB
at ADP
animal NOUN
models.>You NOUN
ca AUX
n't PART
walk VERB
away ADV
from ADP
this DET
and CCONJ
start VERB
ranting VERB
about ADP
gloom NOUN
and CCONJ
> X
doom VERB
as SCONJ
if SCONJ
there PRON
were AUX
any DET
documented VERB
deleterious ADJ
health NOUN
effects NOUN
> X
demonstrated VERB
in ADP
humans NOUN
. PUNCT
  SPACE
Note VERB
that SCONJ
I PRON
would AUX
n't PART
have AUX
any DET
argument NOUN
> X
with ADP
a DET
statement NOUN
like SCONJ
" PUNCT
noting VERB
that SCONJ
animal NOUN
administration NOUN
has AUX
pro->duced VERB
the DET
following VERB
[ PUNCT
blah INTJ
, PUNCT
blah INTJ
] PUNCT
, PUNCT
we PRON
must AUX
be AUX
careful ADJ
about ADP
its PRON
> X
use NOUN
in ADP
humans NOUN
. PUNCT
" PUNCT
  SPACE
This DET
is AUX
precisely ADV
NOT ADV
what PRON
you PRON
said VERB
. PUNCT
Among ADP
others NOUN
, PUNCT
see VERB
Olney PROPN
's PART
  SPACE
" PUNCT
Excitotoxic PROPN
Food PROPN
Aditives PROPN
- PUNCT
Relevance PROPN
ofAnimal PROPN
Studies PROPN
to ADP
Human PROPN
Safety PROPN
" PUNCT
( PUNCT
1982 NUM
) PUNCT
Neurobehav PROPN
. PUNCT
Toxicol PROPN
. PUNCT
Teratol.vol PROPN
6 NUM
: PUNCT
455 NUM
- SYM
462.I'm NUM
sure ADJ
PETA PROPN
would AUX
love VERB
to PART
hear VERB
your PRON
arguments.>>Tests NOUN
have AUX
been AUX
done VERB
on ADP
Rhesus PROPN
monkeys NOUN
, PUNCT
as ADV
well ADV
. PUNCT
I PRON
have AUX
never ADV
seen VERB
a>>study ADJ
where ADV
the DET
mode NOUN
of ADP
administration NOUN
was AUX
intra ADJ
- ADJ
ventricular ADJ
. PUNCT
  SPACE
The DET
Glu>>and PROPN
Asp PROPN
were AUX
administered VERB
orally ADV
. PUNCT
Some DET
studies NOUN
used VERB
IV PROPN
and CCONJ
SC.>>Intra PROPN
- PUNCT
ventricular PROPN
is AUX
not PART
a DET
normal ADJ
admin NOUN
. PUNCT
method NOUN
for ADP
food NOUN
tox NOUN
. PUNCT
studies,>>for ADP
obvious ADJ
reasons NOUN
. PUNCT
You PRON
must AUX
not PART
have AUX
read VERB
the DET
peer NOUN
- PUNCT
reviewed VERB
works>>that ADP
I PRON
referred VERB
to ADP
or CCONJ
you PRON
would AUX
never ADV
have AUX
come VERB
up ADP
with ADP
this DET
brain>>injection NOUN
bunk.>>It NOUN
most ADV
certainly ADV
is AUX
for ADP
neurotoxicology PROPN
. PUNCT
  SPACE
You PRON
know VERB
, PUNCT
studies NOUN
of ADP
> PROPN
glutamate PROPN
involve VERB
more ADJ
than SCONJ
" PUNCT
food NOUN
science" NOUN
. PUNCT
Whose PRON
talking VERB
about ADP
" PUNCT
food NOUN
science NOUN
" PUNCT
? PUNCT
What PRON
is AUX
this DET
comment NOUN
supposed VERB
tomean ADV
? PUNCT
* PUNCT
Neurotoxicology PROPN
and CCONJ
Tratology PROPN
* PUNCT
, PUNCT
* PUNCT
Brain PROPN
Research PROPN
* PUNCT
, PUNCT
* PUNCT
Nature*,*Progress PROPN
in ADP
Brain PROPN
Research PROPN
* PUNCT
: PUNCT
all DET
fine ADJ
food NOUN
science NOUN
journals NOUN
. PUNCT
; PUNCT
-)>>Pardon PUNCT
me PRON
, PUNCT
but CCONJ
where ADV
are AUX
you PRON
getting VERB
this DET
from ADP
? PUNCT
Have AUX
you PRON
read VERB
the>>journals NOUN
? PUNCT
Have AUX
you PRON
done VERB
a DET
thorough ADJ
literature NOUN
search?>>So NOUN
, PUNCT
point VERB
us PRON
to ADP
the DET
studies NOUN
in ADP
humans NOUN
, PUNCT
please INTJ
. PUNCT
  SPACE
I PRON
'm AUX
familiar ADJ
with ADP
> X
the DET
literature NOUN
, PUNCT
and CCONJ
I PRON
've AUX
never ADV
seen VERB
any DET
which PRON
relate VERB
at ADV
all ADV
to ADP
> X
Olney PROPN
's PART
work NOUN
in ADP
animals NOUN
and CCONJ
the DET
effects NOUN
of ADP
glutamate NOUN
on ADP
neurons NOUN
. PUNCT
Then ADV
you PRON
would AUX
know VERB
that SCONJ
Olney PROPN
himself PRON
has AUX
casually ADV
  SPACE
referred VERB
to"Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
in ADP
a DET
few ADJ
articles NOUN
. PUNCT
Why ADV
do AUX
n't PART
* PUNCT
you PRON
* PUNCT
pointus NOUN
to ADP
some DET
studies NOUN
? PUNCT
Maybe ADV
then ADV
this DET
exchange NOUN
could AUX
be AUX
productive.>>The ADJ
point NOUN
is AUX
exceeding VERB
the DET
window NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
they PRON
're AUX
amino ADJ
acids.>>Note PROPN
that SCONJ
people NOUN
with ADP
PKU PROPN
can AUX
not PART
tolerate VERB
any DET
phenylalanine.>>Well PROPN
, PUNCT
actually ADV
, PUNCT
they PRON
HAVE VERB
to PART
tolerate VERB
some DET
phenylalanine NOUN
; PUNCT
it PRON
's AUX
a DET
> X
essential ADJ
amino NOUN
acid NOUN
. PUNCT
  SPACE
They PRON
just ADV
try VERB
to PART
get AUX
as ADV
little ADJ
as SCONJ
is AUX
healthy ADJ
> X
without ADP
producing VERB
dangerous ADJ
levels NOUN
of ADP
phenylalanine NOUN
and CCONJ
its PRON
metabolites NOUN
> X
in ADP
the DET
blood NOUN
. PUNCT
They're PROPN
unable ADJ
to PART
metabolise PROPN
it.>>Olney PROPN
's PART
research NOUN
compared VERB
infant NOUN
human ADJ
diets NOUN
. PUNCT
Specifically ADV
, PUNCT
the DET
amount>>of NOUN
freely ADV
available ADJ
Glu PROPN
in ADP
mother NOUN
's PART
milk NOUN
versus ADP
commercial ADJ
baby NOUN
foods,>>vs PROPN
. PUNCT
typical ADJ
lunch NOUN
items NOUN
from ADP
the DET
Standard PROPN
American PROPN
Diet PROPN
such ADJ
as SCONJ
packaged>>soup ADJ
mixes NOUN
. PUNCT
He PRON
found VERB
that SCONJ
one PRON
could AUX
exceed VERB
the DET
projected VERB
safety NOUN
margin>>for ADP
infant NOUN
humans NOUN
by ADP
at ADV
least ADV
four NUM
- ADV
fold NOUN
in ADP
a DET
single ADJ
meal NOUN
of ADP
processed>>foods NOUN
. PUNCT
Mother PROPN
's PART
milk NOUN
was AUX
well ADV
below ADP
the DET
effective ADJ
dose.>>Goodness NOUN
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
it PRON
's AUX
good ADJ
to PART
feed VERB
infants NOUN
a DET
lot NOUN
of ADP
> NUM
glutamate NOUN
- PUNCT
supplemented VERB
foods NOUN
. PUNCT
  SPACE
It PRON
's AUX
just ADV
that SCONJ
this DET
" PUNCT
projected VERB
safety NOUN
> X
margin NOUN
" PUNCT
is AUX
a DET
construct NOUN
derived VERB
from ADP
animal NOUN
models NOUN
and CCONJ
given VERB
that,>you NOUN
can AUX
" PUNCT
prove VERB
" PUNCT
anything PRON
you PRON
like VERB
. PUNCT
  SPACE
We PRON
're AUX
talking VERB
prudent ADJ
policy NOUN
in ADP
> X
infant NOUN
nutrition NOUN
here ADV
, PUNCT
yet CCONJ
you PRON
're AUX
misrepresenting VERB
it PRON
as SCONJ
received VERB
wisdom NOUN
. PUNCT
Who PRON
said VERB
anything PRON
about ADP
' PUNCT
received VERB
wisdom NOUN
' PUNCT
? PUNCT
There PRON
is AUX
no DET
question NOUN
thatorally ADV
administered VERB
doses NOUN
of ADP
MSG PROPN
are AUX
capable ADJ
of ADP
destroying VERB
nearly ADV
allneurons NOUN
in ADP
the DET
arcuate ADJ
nucleus NOUN
of ADP
the DET
hypothalamus NOUN
and CCONJ
the DET
medianeminence NOUN
. PUNCT
These DET
areas NOUN
are AUX
responsible ADJ
for ADP
the DET
production NOUN
ofhormones NOUN
critical ADJ
to ADP
normal ADJ
neuroendocrine NOUN
function NOUN
and CCONJ
the DET
normaldevelopment NOUN
of ADP
the DET
vertabrate NOUN
organism NOUN
. PUNCT
Humans NOUN
are AUX
vertebrates NOUN
. PUNCT
Nowwhat ADV
, PUNCT
pray INTJ
tell VERB
, PUNCT
do AUX
you PRON
think VERB
will AUX
happen VERB
when ADV
the DET
area NOUN
of ADP
the DET
brainnecessary ADJ
for ADP
the DET
normal ADJ
rhythm NOUN
of ADP
gonadotropin NOUN
release NOUN
is AUX
missing?Are PROPN
you PRON
trying VERB
to PART
say VERB
that SCONJ
humans NOUN
have AUX
no DET
need NOUN
of ADP
their PRON
pituitary NOUN
, PUNCT
ANH PROPN
, PUNCT
and CCONJ
ME PROPN
, PUNCT
of ADP
that DET
part NOUN
of ADP
the DET
brain NOUN
that PRON
is AUX
responsible ADJ
forcontrolling VERB
the DET
realease NOUN
( PUNCT
albeit SCONJ
indirectly ADV
) PUNCT
of ADP
estradiol NOUN
and CCONJ
testosterone NOUN
? PUNCT
How ADV
do AUX
you PRON
expect VERB
anyone PRON
to PART
do AUX
the DET
studies NOUN
on ADP
this DET
? PUNCT
It PRON
's AUX
unethical ADJ
to"sacrifice NUM
" PUNCT
humans NOUN
to PART
check VERB
out ADP
what PRON
effects NOUN
chronic ADJ
, PUNCT
acute ADJ
, PUNCT
etc X
dosesof NOUN
these DET
compounds NOUN
are AUX
having VERB
on ADP
the DET
brain NOUN
tissue NOUN
in ADP
humans NOUN
. PUNCT
  SPACE
The DET
foodindustry NOUN
knows VERB
this DET
. PUNCT
That DET
's AUX
why ADV
the DET
animal NOUN
model NOUN
is AUX
used VERB
in ADP
medicineand PROPN
psych PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
're AUX
talking VERB
about ADP
straight ADJ
sensitivity NOUN
, PUNCT
it PRON
would AUX
beuseful VERB
to PART
define VERB
the DET
term NOUN
. PUNCT
  SPACE
There PRON
are AUX
plenty NOUN
of ADP
studies NOUN
onpsychoneuroimmunology NOUN
showing VERB
the DET
link NOUN
between ADP
attitude NOUN
andphysiology NOUN
. PUNCT
I PRON
suspect VERB
we PRON
may AUX
be AUX
arguing VERB
about ADP
separate ADJ
things NOUN
; PUNCT
* PUNCT
only ADV
* PUNCT
adult NOUN
sensitivities(You PROPN
) PUNCT
, PUNCT
and CCONJ
late ADV
- PUNCT
occuring VERB
sequelae NOUN
of ADP
childhood NOUN
ingestion NOUN
and CCONJ
itsimplication NOUN
for ADP
adults NOUN
( PUNCT
me PRON
) PUNCT
. PUNCT
  SPACE
Certainlythe PROPN
doses NOUN
for ADP
excitotoxicity NOUN
in ADP
adults NOUN
are AUX
considerably ADV
larger ADJ
thanfor ADP
the DET
young ADJ
, PUNCT
but CCONJ
the DET
additivity NOUN
of ADP
Glu PROPN
and CCONJ
Asp PROPN
, PUNCT
and CCONJ
their PRON
copiousand NOUN
increased VERB
presence NOUN
in ADP
modern ADJ
processed VERB
foods NOUN
( PUNCT
jointly ADV
) PUNCT
, PUNCT
and CCONJ
theirhidden PROPN
presence NOUN
in ADP
HVP PROPN
, PUNCT
necessitates VERB
extreme ADJ
caution NOUN
. PUNCT
Why ADV
would AUX
anyonewant VERB
to PART
eat VERB
compounds NOUN
which PRON
have AUX
been AUX
shown VERB
to PART
markedly ADV
perturb VERB
theendocrine NOUN
system NOUN
in ADP
adults NOUN
? PUNCT
  SPACE
The DET
main ADJ
point NOUN
is AUX
* PUNCT
blood NOUN
levels*attained VERB
, PUNCT
and CCONJ
oral ADJ
doses NOUN
would AUX
likely ADV
have AUX
to PART
be AUX
greater ADJ
than SCONJ
SC PROPN
. PUNCT
> X
> X
Between ADP
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
you>>provide PROPN
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to ADP
articles>>disputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
> X
> X
You PRON
mean VERB
" PUNCT
asserting VERB
" PUNCT
. PUNCT
  SPACE
You PRON
're AUX
being AUX
intellectually ADV
dishonest ADJ
( PUNCT
or CCONJ
just ADV
> X
plain ADV
confused ADJ
) PUNCT
, PUNCT
because SCONJ
you PRON
're AUX
conflating VERB
reports NOUN
which PRON
do AUX
not PART
necessarily ADV
> X
have AUX
anything PRON
to PART
do AUX
with ADP
each DET
other ADJ
. PUNCT
  SPACE
Olney PROPN
's PART
reports NOUN
would AUX
argue VERB
a DET
potential ADJ
> X
for ADP
problems NOUN
in ADP
human ADJ
infants NOUN
, PUNCT
but CCONJ
that DET
's AUX
not PART
to PART
say VERB
that SCONJ
this DET
says VERB
anything PRON
> X
whatsoever ADV
about ADP
the DET
use NOUN
of ADP
MSG NOUN
in ADP
most ADJ
foods NOUN
, PUNCT
nor CCONJ
does AUX
he PRON
provide VERB
any DET
> NUM
studies NOUN
in ADP
humans NOUN
which PRON
indicate VERB
any DET
deleterious ADJ
effects NOUN
( PUNCT
for ADP
obvious ADJ
> X
reasons NOUN
. PUNCT
) PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
MSG PROPN
's PART
contribtion NOUN
to ADP
the DET
phenomenon NOUN
> X
of ADP
the DET
" PUNCT
Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
the DET
frequent ADJ
> X
inability NOUN
to PART
replicate VERB
anecdotal ADJ
reports NOUN
of ADP
MSG NOUN
sensitivity NOUN
in ADP
the DET
lab NOUN
. PUNCT
Olney PROPN
's PART
work NOUN
provides VERB
a DET
putative ADJ
causal NOUN
mechanism NOUN
for ADP
somesensitivities NOUN
. PUNCT
Terry PROPN
, PUNCT
Epelbaum PROPN
and CCONJ
Martin PROPN
have AUX
shown VERB
that SCONJ
orallyadministered VERB
MSG PROPN
causes NOUN
changes NOUN
in ADP
normal ADJ
gonadotropic ADJ
hormonefluctutations NOUN
in ADP
adults NOUN
. PUNCT
Glu PROPN
also ADV
was AUX
found VERB
to PART
induce VERB
immediate ADJ
and CCONJ
persistantsupression NOUN
of ADP
rhythmic ADJ
GH PROPN
secretion NOUN
, PUNCT
and CCONJ
to PART
induce VERB
rapid ADJ
and CCONJ
transientrelease PROPN
of ADP
prolactin PROPN
in ADP
adults NOUN
chronically ADV
exposed VERB
to ADP
MSG PROPN
. PUNCT
GH PROPN
isresponsible ADJ
not PART
only ADV
for ADP
control NOUN
of ADP
growth NOUN
during ADP
development NOUN
, PUNCT
butalso NOUN
converts NOUN
glycogen VERB
into ADP
glucose NOUN
. PUNCT
Could AUX
this DET
be AUX
the DET
cause NOUN
ofheadaches NOUN
? PUNCT
I PRON
do AUX
n't PART
know.>>>dyer@ursa-major.spdcc.com VERB
> X
> X
Hmm INTJ
. PUNCT
" PUNCT
.com PUNCT
" PUNCT
. PUNCT
Why ADV
am AUX
I PRON
not PART
surprised?>>- VERB
Dianne PROPN
Murray PROPN
   SPACE
wcsbeau@ccs.carleton.ca>>Probably PROPN
one NUM
of ADP
the DET
dumber ADJ
remarks NOUN
you PRON
've AUX
made VERB
. PUNCT
If SCONJ
you PRON
had AUX
read VERB
Olney PROPN
's PART
review NOUN
article NOUN
, PUNCT
especially ADV
the DET
remarks NOUN
Ialready PROPN
quoted VERB
in ADP
an DET
earlier ADJ
post NOUN
, PUNCT
you PRON
would AUX
know VERB
to ADP
what PRON
I PRON
wasalluding VERB
. PUNCT
May AUX
I PRON
ask VERB
exactly ADV
for ADP
whom PRON
you PRON
do AUX
computer NOUN
consulting NOUN
? PUNCT
: PUNCT
-)Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
58985From NUM
: PUNCT
bebmza@sru001.chvpkh.chevron.com PROPN
( PUNCT
Beverly PROPN
M. PROPN
Zalan)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Frequent ADJ
nosebleedsIn PROPN
article NOUN
< X
1993Apr17.195202.28921@freenet.carleton.ca ADJ
> X
, PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
I PRON
have AUX
between ADP
15 NUM
and CCONJ
25 NUM
nosebleeds NOUN
each DET
week NOUN
, PUNCT
as SCONJ
a DET
result NOUN
of ADP
a DET
genetic ADJ
> X
predisposition NOUN
to ADP
weak ADJ
capillary ADJ
walls NOUN
( PUNCT
Osler PROPN
- PUNCT
Weber PROPN
- PUNCT
Rendu PROPN
) PUNCT
. PUNCT
> X
Fortunately ADV
, PUNCT
each DET
nosebleed NOUN
is AUX
of ADP
short ADJ
duration NOUN
. PUNCT
> X
> X
Does AUX
anyone PRON
know VERB
of ADP
any DET
method NOUN
to PART
reduce VERB
this DET
frequency NOUN
? PUNCT
My PRON
younger ADJ
> PUNCT
brothers NOUN
each DET
tried VERB
a DET
skin NOUN
transplant NOUN
( PUNCT
thigh NOUN
to PART
nose NOUN
lining NOUN
) PUNCT
, PUNCT
but CCONJ
their PRON
> NOUN
nosebleeds NOUN
soon ADV
returned VERB
. PUNCT
I PRON
've AUX
seen VERB
a DET
reference NOUN
to ADP
an DET
herb NOUN
called VERB
Rutin PROPN
> X
that PRON
is AUX
supposed VERB
to PART
help VERB
, PUNCT
and CCONJ
I PRON
'd AUX
like VERB
to PART
hear VERB
of ADP
experiences NOUN
with ADP
it PRON
, PUNCT
> X
or CCONJ
other ADJ
techniques NOUN
. PUNCT
> X
-- PUNCT
My PRON
6 NUM
year NOUN
son NOUN
is AUX
so ADV
plagued ADJ
. PUNCT
  SPACE
Lots NOUN
of ADP
vaseline NOUN
up ADP
his PRON
nose NOUN
each DET
night NOUN
seems VERB
to PART
keep VERB
it PRON
under ADP
control NOUN
. PUNCT
  SPACE
But CCONJ
let VERB
him PRON
get AUX
bopped VERB
there ADV
, PUNCT
and CCONJ
he PRON
'll AUX
recur VERB
for ADP
days NOUN
! PUNCT
  SPACE
Also ADV
allergies VERB
, PUNCT
colds NOUN
, PUNCT
dry ADJ
air NOUN
all DET
seem VERB
to PART
contribute VERB
. PUNCT
  SPACE
But CCONJ
again ADV
, PUNCT
the DET
vaseline NOUN
, PUNCT
or CCONJ
A&D PROPN
ointment NOUN
, PUNCT
or CCONJ
neosporin VERB
all DET
seem VERB
to PART
keep VERB
them PRON
from ADP
recurring VERB
. PUNCT
Bev PROPN
ZalanNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58986From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboK PROPN
( PUNCT
> X
  SPACE
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes VERB
: PUNCT
K(>K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
wrote VERB
: PUNCT
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
OTOH PROPN
, PUNCT
who PRON
are AUX
we PRON
kidding VERB
, PUNCT
the DET
New PROPN
England PROPN
Medical PROPN
Journal PROPN
in ADP
1984 NUM
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
ran VERB
the DET
heading NOUN
: PUNCT
" PUNCT
Ninety PROPN
Percent PROPN
of ADP
Diseases NOUN
are AUX
not PART
Treatable ADJ
byK NOUN
( PUNCT
> X
RR PROPN
> X
  SPACE
Drugs NOUN
or CCONJ
Surgery PROPN
, PUNCT
" PUNCT
which PRON
has AUX
been AUX
echoed VERB
by ADP
several ADJ
other ADJ
reports NOUN
. PUNCT
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
No DET
wonder NOUN
MDs NOUN
are AUX
not PART
amused VERB
with ADP
alternative ADJ
medicine NOUN
, PUNCT
sinceK PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
the DET
20 NUM
% NOUN
magic NOUN
of ADP
the DET
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
would AUX
award VERB
alternative NOUN
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
practitioners NOUN
twice DET
the DET
success NOUN
rate NOUN
of ADP
conventional ADJ
medicine NOUN
... PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
  SPACE
1 NUM
: PUNCT
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
" PUNCT
is AUX
not PART
the DET
same ADJ
thing NOUN
as SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
patients" NOUN
. PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
     SPACE
In ADP
a DET
world NOUN
with ADP
one NUM
curable ADJ
disease NOUN
that PRON
strikes VERB
100 NUM
people NOUN
, PUNCT
and CCONJ
nineK PROPN
( PUNCT
> X
     SPACE
incurable ADJ
diseases NOUN
which PRON
strikes VERB
one NUM
person NOUN
each DET
, PUNCT
medical ADJ
science NOUN
will AUX
cureK PROPN
( PUNCT
> X
     SPACE
91 NUM
% NOUN
of ADP
the DET
patients NOUN
and CCONJ
report VERB
that SCONJ
90 NUM
% NOUN
of ADP
diseases NOUN
have AUX
no DET
therapy NOUN
. PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
  SPACE
2 NUM
: PUNCT
A DET
disease NOUN
would AUX
be AUX
counted VERB
among ADP
the DET
90 NUM
% NOUN
untreatable ADJ
if SCONJ
nothing PRON
better ADJ
thanK PROPN
( PUNCT
> X
     SPACE
a DET
placebo NOUN
were AUX
known VERB
. PUNCT
  SPACE
Of ADV
course NOUN
MDs NOUN
are AUX
ethically ADV
bound VERB
to PART
not PART
knowinglyK PROPN
( PUNCT
> X
     SPACE
dispense NOUN
placebos NOUN
... PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
     SPACE
-dk PUNCT
  SPACE
Hmmm PROPN
... PUNCT
even ADV
  SPACE
* PUNCT
without ADP
* PUNCT
  SPACE
the DET
  SPACE
;-) PROPN
  SPACE
at ADP
the DET
end NOUN
, PUNCT
I PRON
did AUX
n't PART
think VERB
anyone PRON
was AUX
going VERB
to PART
take VERB
the DET
mathematics NOUN
or CCONJ
statistics NOUN
of ADP
my PRON
post NOUN
seriously ADV
. PUNCT
  SPACE
I PRON
only ADV
hope VERB
that SCONJ
you PRON
had AUX
the DET
same ADJ
thing NOUN
in ADP
mind NOUN
with ADP
your PRON
post NOUN
, PUNCT
  SPACE
otherwise ADV
you PRON
would AUX
need VERB
at ADP
least ADJ
TWO NUM
  SPACE
;-) PROPN
's PART
  SPACE
at ADP
the DET
end NOUN
to PART
help VERB
  SPACE
anyone PRON
understand VERB
your PRON
calculations NOUN
above ADP
... PUNCT
  SPACE
--Ron----- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
  SPACE
This DET
mind NOUN
intentionally ADV
left VERB
blank ADJ
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58987From NUM
: PUNCT
rousseaua@immunex.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskWhile ADJ
in ADP
grad ADJ
school NOUN
, PUNCT
I PRON
remember VERB
a DET
biochemistry NOUN
friend NOUN
of ADP
mine NOUN
working VERB
with"heat NOUN
shock NOUN
proteins NOUN
" PUNCT
. PUNCT
Apparently ADV
, PUNCT
burning VERB
protein NOUN
will AUX
induce VERB
changes NOUN
in ADP
heDNA ADJ
. PUNCT
Whether SCONJ
these DET
changes NOUN
survive VERB
the DET
denaturing NOUN
that PRON
occurs VERB
during ADP
digestionI PROPN
do AUX
n't PART
know VERB
, PUNCT
but CCONJ
I PRON
never ADV
eat VERB
burnt VERB
food NOUN
because SCONJ
of ADP
this DET
. PUNCT
Also ADV
, PUNCT
many ADJ
woods NOUN
contain VERB
toxins NOUN
. PUNCT
As SCONJ
they PRON
are AUX
burnt VERB
, PUNCT
it PRON
would AUX
seem VERB
logical ADJ
thatsome NOUN
may AUX
volatilise VERB
, PUNCT
and CCONJ
get AUX
into ADP
the DET
BBQed PROPN
food NOUN
. PUNCT
Again ADV
, PUNCT
I PRON
do AUX
n't PART
know VERB
if SCONJ
thesetoxins NOUN
( PUNCT
antifungal ADJ
and CCONJ
anti ADJ
- ADJ
woodeater ADJ
compounds NOUN
) PUNCT
would AUX
survive VERB
the DET
rather ADJ
harshconditions NOUN
of ADP
the DET
stomach NOUN
and CCONJ
intestine NOUN
, PUNCT
and CCONJ
then ADV
would AUX
they PRON
be AUX
able ADJ
to PART
crossthe VERB
intestinal ADJ
mucosa?Maybe NOUN
someone PRON
with ADP
more ADJ
biochemical ADJ
background NOUN
than SCONJ
myself PRON
( PUNCT
which PRON
is AUX
almost*anyone NOUN
* PUNCT
... PUNCT
:)) PROPN
can AUX
shed VERB
some DET
light NOUN
on ADP
heat NOUN
shock NOUN
proteins NOUN
and CCONJ
the DET
toxins NOUN
thatmay AUX
be AUX
in ADP
the DET
wood NOUN
used VERB
to PART
make VERB
charcoal NOUN
and CCONJ
BBQ.Anne PROPN
- PUNCT
Marie PROPN
Rousseaue PROPN
- PUNCT
mail NOUN
: PUNCT
rousseaua@immunex.comWhat PRON
I PRON
say VERB
has AUX
nothing PRON
to PART
do AUX
with ADP
Immunex PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58988From NUM
: PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey)Subject NUM
: PUNCT
Krillean PROPN
PhotographyI PROPN
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allowdo VERB
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinkingthat DET
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus ADJ
forsale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatlyappreciated VERB
. PUNCT
	 SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
myknowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organicobject NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patternsor NOUN
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
typeof NOUN
object VERB
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One NUM
mightextrapolate NOUN
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
withinthe NOUN
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature.-- PROPN
_ PROPN
D_I_S_C_L_A_I_M_E_R_ PROPN
: PUNCT
I PRON
can AUX
neither CCONJ
confirm VERB
nor CCONJ
deny VERB
any DET
opinionsexpressed ADJ
in ADP
this DET
article NOUN
directly ADV
reflect VERB
my PRON
own ADJ
personal ADJ
orpolitical ADJ
views NOUN
and CCONJ
furthermore ADV
, PUNCT
if SCONJ
they PRON
did AUX
, PUNCT
I PRON
would AUX
not PART
be AUX
atliberty ADJ
to PART
yield VERB
such DET
an DET
explanation NOUN
of ADP
these DET
alleged ADJ
opinions NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58989From X
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?My PROPN
comments NOUN
about ADP
the DET
Feingold PROPN
Diet PROPN
have AUX
no DET
relevance NOUN
to ADP
yourdaughter PROPN
's PART
purported ADJ
FrostedFlakes PROPN
- PUNCT
related VERB
seizures NOUN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
imaginewhy ADV
you PRON
included VERB
it.-- ADP
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58990From NUM
: PUNCT
pchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominance NOUN
> X
In ADP
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
> X
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
> X
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
> X
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this?I NOUN
have AUX
a DET
long ADV
sighted ADJ
eye NOUN
and CCONJ
a DET
short ADJ
sighted ADJ
eye NOUN
. PUNCT
My PRON
right ADJ
eye NOUN
tendsto NOUN
cut VERB
out ADP
when ADV
I PRON
look VERB
at ADP
distant ADJ
things NOUN
, PUNCT
my PRON
left ADJ
eye NOUN
when ADV
I PRON
am AUX
closeup ADJ
. PUNCT
  SPACE
I PRON
had AUX
specs NOUN
to PART
balance VERB
things NOUN
up ADP
a DET
bit NOUN
but CCONJ
could AUX
do AUX
without ADP
them PRON
. PUNCT
I PRON
thought VERB
that SCONJ
, PUNCT
one NUM
way NOUN
or CCONJ
another DET
, PUNCT
I PRON
would AUX
always ADV
be AUX
able ADJ
to PART
seeclearly ADV
. PUNCT
  SPACE
Unfortunately ADV
middle ADJ
age NOUN
is AUX
rearing VERB
its PRON
ugly ADJ
head NOUN
and CCONJ
I PRON
canno VERB
longer ADV
see VERB
close ADV
up ADP
objects NOUN
clearly ADV
. PUNCT
  SPACE
Maybe ADV
it PRON
's AUX
just ADV
that SCONJ
my PRON
armsare NOUN
getting VERB
shorter ADJ
: PUNCT
-)-- PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
            SPACE
The DET
floggings NOUN
will AUX
continue VERB
until ADP
morale NOUN
improves VERB
                  SPACE
pchurch@swell.actrix.gen.nz PROPN
  SPACE
Pat PROPN
Churchill PROPN
, PUNCT
Wellington PROPN
New PROPN
Zealand PROPN
     SPACE
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58991From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Adult PROPN
Chicken PROPN
PoxIn PROPN
article NOUN
< X
C5pM3o.BDo@feenix.metronet.com PROPN
> X
marcbg@feenix.metronet.com X
( PUNCT
Marc PROPN
Grant PROPN
) PUNCT
writes:>all VERB
over ADP
my PRON
bod NOUN
. PUNCT
  SPACE
At ADP
what PRON
point NOUN
am AUX
I PRON
no ADV
longer ADV
infectious ADJ
? PUNCT
  SPACE
My PRON
physician's NOUN
> X
office NOUN
says VERB
when ADV
they PRON
are AUX
all DET
scabbed VERB
over ADV
. PUNCT
  SPACE
Is AUX
this DET
true?Yes.>Is ADP
there ADV
any DET
medications NOUN
which PRON
can AUX
promote VERB
healing NOUN
of ADP
the DET
pox NOUN
? PUNCT
  SPACE
Speed VERB
up ADP
> X
healing?Acyclovir PROPN
started VERB
in ADP
the DET
first ADJ
1 NUM
- SYM
2 NUM
days NOUN
probably ADV
speeds VERB
recovery NOUN
anddecreases VERB
the DET
formation NOUN
of ADP
new ADJ
pox.-- NUM
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58992From NUM
: PUNCT
wsun@jeeves.ucsd.edu NOUN
( PUNCT
Fiberman)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?I PROPN
have AUX
heard VERB
that SCONJ
epileptic ADJ
patients NOUN
go VERB
into ADP
seizures NOUN
if SCONJ
theyeat ADJ
anything PRON
with ADP
MSG PROPN
added VERB
. PUNCT
  SPACE
This DET
may AUX
have AUX
something PRON
to PART
do AUX
withthe NOUN
excitotoxicity NOUN
of ADP
neurons.-fmNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
58993From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominancenyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye PROPN
) PUNCT
writes:>[reply PROPN
to ADP
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
] PUNCT
> X
> X
> X
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
overall>>right NOUN
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
people NOUN
require VERB
less>>lens NOUN
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds VERB
of>>percentages PROPN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
  SPACE
Thanks INTJ
. PUNCT
> X
> X
There PRON
is AUX
an DET
" PUNCT
eyedness NOUN
" PUNCT
analogous ADJ
to ADP
handedness NOUN
but CCONJ
it PRON
has AUX
nothing PRON
to PART
do AUX
> X
with ADP
refractive ADJ
error NOUN
. PUNCT
  SPACE
To PART
see VERB
whether SCONJ
you PRON
are AUX
right ADJ
or CCONJ
left VERB
eyed ADJ
, PUNCT
roll VERB
> X
up ADV
a DET
sheet NOUN
of ADP
paper NOUN
into ADP
a DET
tube NOUN
and CCONJ
hold VERB
it PRON
up ADP
to ADP
either DET
eye NOUN
like SCONJ
a DET
> X
telescope NOUN
. PUNCT
  SPACE
The DET
eye NOUN
that PRON
you PRON
feel VERB
more ADV
comfortable ADJ
putting VERB
it PRON
up ADP
to ADP
is AUX
> X
your PRON
dominant ADJ
eye NOUN
. PUNCT
  SPACE
Refractive ADJ
error NOUN
is AUX
often ADV
different ADJ
in ADP
the DET
two NUM
eyes NOUN
> X
but CCONJ
has AUX
no DET
correlation NOUN
with ADP
handedness NOUN
. PUNCT
> X
> X
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WI PROPN
> X
This DET
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosopher NOUN
> X
must AUX
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellWhat PROPN
do AUX
you PRON
mean VERB
" PUNCT
more ADV
comfortable ADJ
putting VERB
it PRON
up ADP
to ADP
. PUNCT
" PUNCT
  SPACE
That DET
seems VERB
a DET
bithard NOUN
to PART
evaluate VERB
. PUNCT
  SPACE
At ADP
least ADJ
for ADP
me PRON
it PRON
is AUX
. PUNCT
  SPACE
Stare VERB
straight ADJ
Point NOUN
with ADP
both DET
hands NOUN
together ADV
and CCONJ
clasp VERB
so SCONJ
that SCONJ
only ADV
thepointer DET
fingers NOUN
are AUX
pointing VERB
straight ADV
forward ADV
to ADP
a DET
a DET
spot NOUN
on ADP
the DET
wall PROPN
abouteight PROPN
feet NOUN
away ADV
. PUNCT
  SPACE
First ADJ
stare NOUN
at ADP
the DET
spot NOUN
with ADP
both DET
eyes NOUN
open ADJ
. PUNCT
  SPACE
Nowclose PROPN
your PRON
left ADJ
eye NOUN
. PUNCT
  SPACE
Now ADV
open VERB
your PRON
left ADJ
eye NOUN
. PUNCT
  SPACE
Now ADV
close VERB
your PRON
right NOUN
eye.now INTJ
open VERB
your PRON
right ADJ
eye NOUN
. PUNCT
If SCONJ
the DET
image NOUN
jumped VERB
more ADJ
when ADV
you PRON
closed VERB
your PRON
right ADJ
eye NOUN
, PUNCT
you PRON
are AUX
righteye VERB
dominant ADJ
. PUNCT
If SCONJ
the DET
image NOUN
jumped VERB
more ADJ
when ADV
you PRON
closed VERB
your PRON
left ADJ
eye NOUN
, PUNCT
you PRON
are AUX
left VERB
eyedominant NOUN
. PUNCT
DeanthaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58994From NUM
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?As PUNCT
nobody PRON
in ADP
the DET
food NOUN
industry NOUN
has AUX
even ADV
bothered VERB
to PART
address VERB
my PRON
previousquestion NOUN
" PUNCT
WHY ADV
DO VERB
YOU PRON
NEED VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
ALMOST PROPN
EVERY DET
FOOD PROPN
? PUNCT
" PUNCT
I PRON
must AUX
assumethat VERB
my PRON
wife NOUN
's PART
answer NOUN
is AUX
closer ADJ
to ADP
the DET
truth NOUN
than SCONJ
I PRON
hoped VERB
it PRON
was AUX
. PUNCT
She PRON
believes VERB
that SCONJ
MSG PROPN
is AUX
added VERB
to ADP
food NOUN
to PART
cause VERB
people NOUN
to PART
eat VERB
more ADJ
of ADP
itand NOUN
not PART
quit VERB
when ADV
they PRON
shoud ADV
be AUX
sated ADJ
. PUNCT
  SPACE
To PART
put VERB
it PRON
a DET
different ADJ
way NOUN
, PUNCT
she PRON
believes VERB
that SCONJ
for ADP
some DET
people NOUN
MSG PROPN
causes VERB
them PRON
to PART
act VERB
toward ADP
food NOUN
like SCONJ
an DET
addict NOUN
. PUNCT
  SPACE
( PUNCT
Eat VERB
all DET
the DET
chips NOUN
, PUNCT
chow VERB
down ADP
on ADP
several ADJ
packages NOUN
of ADP
noodle PROPN
soup NOUN
.... PUNCT
you PRON
get VERB
theidea PROPN
! PUNCT
} PUNCT
  SPACE
IF ADP
she PRON
is AUX
right ADJ
, PUNCT
then ADV
the DET
moral ADJ
and CCONJ
ethical ADJ
standards NOUN
of ADP
the DET
food NOUN
, PUNCT
chemical NOUN
and CCONJ
regulatory ADJ
groups NOUN
need VERB
to PART
be AUX
addressed VERB
! PUNCT
! PUNCT
! PUNCT
  SPACE
Can AUX
MSGbe PROPN
considered VERB
a DET
conditioning NOUN
substance NOUN
( PUNCT
not PART
addictive ADJ
but CCONJ
sort ADV
of ADV
habitforming NOUN
) PUNCT
? PUNCT
This DET
brings VERB
up ADP
a DET
side NOUN
question NOUN
of ADP
mine PRON
. PUNCT
   SPACE
I PRON
have AUX
noticed VERB
that SCONJ
cats NOUN
( PUNCT
mychildren NOUN
's PART
and CCONJ
my PRON
parent NOUN
's PART
) PUNCT
seem VERB
to PART
fixate VERB
on ADP
a DET
particular ADJ
brand NOUN
of ADP
petfood NOUN
. PUNCT
The DET
cat NOUN
will AUX
eat VERB
any DET
product NOUN
within ADP
one NUM
brand NOUN
and CCONJ
not PART
any DET
otherbrand NOUN
. PUNCT
  SPACE
I PRON
have AUX
wondered VERB
if SCONJ
this DET
is AUX
not PART
a DET
case NOUN
of ADP
preference NOUN
, PUNCT
but CCONJ
, PUNCT
somesort NOUN
of ADP
chemical NOUN
training NOUN
or CCONJ
addiction NOUN
. PUNCT
My PRON
questions NOUN
, PUNCT
for ADP
the DET
net NOUN
, PUNCT
are AUX
: PUNCT
Does AUX
the DET
FDA PROPN
regulate VERB
the DET
contents NOUN
of ADP
pet ADJ
food NOUN
? PUNCT
  SPACE
Is AUX
it PRON
allowed VERB
for ADP
petfood NOUN
to PART
contain VERB
addictive ADJ
or CCONJ
conditioning NOUN
substances NOUN
? PUNCT
  SPACE
Is AUX
MSG PROPN
put VERB
in ADP
pet NOUN
food?-----------------------------------I NOUN
speak VERB
for ADP
myself PRON
and CCONJ
not PART
Motorola----------------------------------- PROPN
-- PUNCT
Walter PROPN
LundbyNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
58995From NUM
: PUNCT
tarl@sw.stratus.com PROPN
( PUNCT
Tarl PROPN
Neustaedter)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
, PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
The DET
proper ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
It PRON
was AUX
an DET
effect NOUN
discoverd NOUN
byS. NUM
Kirlian PROPN
, PUNCT
a DET
soviet ADJ
film NOUN
developer NOUN
in ADP
1939.As NUM
I PRON
recall VERB
, PUNCT
the DET
coronas PROPN
visible ADJ
are AUX
ascribed VERB
to ADP
static ADJ
dischargesand NOUN
chemical NOUN
reactions NOUN
between ADP
the DET
organic ADJ
material NOUN
and CCONJ
the DET
silverhalides NOUN
in ADP
the DET
films.-- PROPN
          SPACE
Tarl PROPN
Neustaedter PROPN
       SPACE
Stratus PROPN
Computer PROPN
      	  SPACE
tarl@sw.stratus.com PROPN
    SPACE
Marlboro PROPN
, PUNCT
Mass PROPN
. PROPN
Disclaimer PROPN
: PUNCT
My PRON
employer NOUN
is AUX
not PART
responsible ADJ
for ADP
my PRON
opinions NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58996From NUM
: PUNCT
leisner@wrc.xerox.com PROPN
( PUNCT
Marty PROPN
Leisner PROPN
71348 NUM
) PUNCT
Subject NOUN
: PUNCT
Intravenous PROPN
antibioticsI PROPN
recently ADV
had AUX
a DET
case NOUN
of ADP
shingles NOUN
and CCONJ
my PRON
doctors NOUN
wanted VERB
to PART
give VERB
meintravenous ADJ
Acyclovir PROPN
. PUNCT
It PRON
was AUX
a DET
pain NOUN
finding VERB
IV PROPN
sites NOUN
in ADP
my PRON
arms NOUN
... PUNCT
can AUX
I PRON
have AUX
some DET
facts NOUN
abouthow ADP
advantageous ADJ
it PRON
is AUX
to PART
give VERB
intravenous ADJ
antibiotics NOUN
rather ADV
than SCONJ
oral?martyNewsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
58997From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?Betty PROPN
Harvey PROPN
writes VERB
, PUNCT
> X
I PRON
am AUX
not PART
a DET
researcher NOUN
or CCONJ
a DET
medical ADJ
person NOUN
but CCONJ
it PRON
amazes VERB
me PRON
that SCONJ
> X
when ADV
they PRON
ca AUX
n't PART
find VERB
a DET
scientific ADJ
or CCONJ
a DET
known VERB
fact NOUN
they PRON
automatically ADV
> X
assume VERB
that SCONJ
the DET
reaction NOUN
is AUX
psychological ADJ
. PUNCT
  SPACE
It PRON
is AUX
mind NOUN
boggling VERB
. PUNCT
This DET
, PUNCT
simply ADV
stated VERB
, PUNCT
is AUX
a DET
result NOUN
of ADP
the DET
bankrupt ADJ
ethics NOUN
inthe PROPN
healthcare NOUN
and CCONJ
scientific ADJ
medicine NOUN
industries NOUN
. PUNCT
America PROPN
is AUX
fed VERB
up ADP
with ADP
the DET
massive ADJ
waste NOUN
and CCONJ
fraud NOUN
that PRON
is AUX
costingus PROPN
15 NUM
% NOUN
of ADP
our PRON
GNP NOUN
to PART
support VERB
these DET
industries NOUN
, PUNCT
while SCONJ
delivering VERB
marginal ADJ
health NOUN
care NOUN
to ADP
the DET
community NOUN
. PUNCT
Unfortunately ADV
, PUNCT
the DET
" PUNCT
Clinton PROPN
Plan PROPN
" PUNCT
, PUNCT
in ADP
whatever PRON
form NOUN
ittakes NOUN
, PUNCT
will AUX
probably ADV
cost VERB
us PRON
an DET
even ADV
greater ADJ
sum NOUN
. PUNCT
  SPACE
Bleah PROPN
. PUNCT
SteveNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58998From NUM
: PUNCT
evanh@sco X
. PUNCT
COM PROPN
( PUNCT
Evan PROPN
Hunt)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr19.215342.16930@sco.com NUM
> X
evanh@sco NUM
. PUNCT
COM PROPN
( PUNCT
Evan PROPN
Hunt PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr13.201942.26058@iscnvx.lmsc.lockheed.com NUM
> X
sharen@iscnvx.lmsc.lockheed.com NOUN
( PUNCT
Sharen PROPN
A. PROPN
Rund PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
restaurants PROPN
advertize VERB
" PUNCT
No DET
MSG PROPN
" PUNCT
) PUNCT
- PUNCT
many ADJ
restaurants NOUN
that PRON
feature NOUN
salad>>bars NOUN
use VERB
MSG NOUN
to PART
" PUNCT
keep VERB
" PUNCT
the DET
veggies NOUN
looking VERB
fresh ADJ
longer ADV
, PUNCT
also ADV
, PUNCT
a DET
number NOUN
> PUNCT
This DET
brings VERB
up ADP
an DET
important ADJ
question NOUN
for ADP
me PRON
- PUNCT
could AUX
pre VERB
- VERB
made VERB
salads NOUN
, PUNCT
the DET
> X
kind NOUN
sold VERB
in ADP
supermarkets NOUN
, PUNCT
have AUX
MSG PROPN
added VERB
without ADP
mentioning VERB
it PRON
? PUNCT
Legally,>I PROPN
mean NOUN
- PUNCT
anyone PRON
know VERB
what PRON
the DET
law NOUN
is AUX
in ADP
this DET
area?Steve PROPN
Dyer PROPN
points VERB
out ADP
that SCONJ
Sharen PROPN
was AUX
probably ADV
thinking VERB
of ADP
Sulfites PROPN
. PUNCT
Butthe PROPN
question NOUN
still ADV
stands.-- ADJ
Evan PROPN
Hunt PROPN
, PUNCT
Asst PROPN
. PUNCT
Editor NOUN
, PUNCT
THE DET
WEBFor ADJ
more ADJ
information NOUN
about ADP
THE DET
WEB NOUN
, PUNCT
e NOUN
- NOUN
mail NOUN
to ADP
evanh@sco NUM
. PUNCT
COM.Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
58999From NUM
: PUNCT
ski@wpi PROPN
. PUNCT
WPI.EDU PROPN
( PUNCT
Joseph PROPN
Mich PROPN
Krzeszewski)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyI PROPN
seem VERB
to PART
recall VERB
that SCONJ
there PRON
was AUX
an DET
article NOUN
in ADP
Radio PROPN
Electronics PROPN
about ADP
thissubject NOUN
. PUNCT
In ADP
fact NOUN
I PRON
have AUX
a DET
copy NOUN
of ADP
the DET
article NOUN
in ADP
front NOUN
of ADP
me PRON
, PUNCT
but CCONJ
I PRON
can'tfind VERB
anywhere ADV
in ADP
the DET
article NOUN
a DET
refrence NOUN
as SCONJ
to ADP
what PRON
month NOUN
it PRON
was AUX
in ADP
. PUNCT
The DET
systemthey NOUN
describe NOUN
uses VERB
an DET
automobile NOUN
ignition NOUN
coil NOUN
for ADP
the DET
high ADJ
voltage NOUN
. PUNCT
The DET
article NOUN
even ADV
includes VERB
some DET
information NOUN
on ADP
what PRON
kind NOUN
of ADP
film NOUN
to PART
use VERB
and CCONJ
where ADV
to PART
get AUX
it PRON
. PUNCT
Hope PROPN
this DET
helps VERB
. PUNCT
Joseph PROPN
M. PROPN
Krzeszewskiski@WPI.wpi.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59000From NUM
: PUNCT
klier@iscsvax.uni.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
How ADV
about ADP
a DET
crash NOUN
program NOUN
in ADP
basic ADJ
immunological ADJ
research?In PROPN
article NOUN
< X
221@ky3b X
. PUNCT
UUCP NOUN
> X
, PUNCT
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum PROPN
) PUNCT
writes VERB
: PUNCT
> X
As SCONJ
a DET
physician NOUN
, PUNCT
I PRON
almost ADV
never ADV
get VERB
sick ADJ
: PUNCT
usually ADV
, PUNCT
when ADV
something PRON
horrendous ADJ
> X
is AUX
going VERB
around ADP
, PUNCT
I PRON
either CCONJ
do AUX
n't PART
get AUX
it PRON
at ADV
all ADV
or CCONJ
get AUX
a DET
very ADV
mild ADJ
case NOUN
. PUNCT
> X
When ADV
I PRON
do AUX
get AUX
really ADV
sick ADJ
, PUNCT
it PRON
is AUX
always ADV
something PRON
unusual ADJ
. PUNCT
> X
> X
This DET
was AUX
not PART
the DET
situation NOUN
when ADV
I PRON
was AUX
in ADP
medical ADJ
school NOUN
, PUNCT
particularly ADV
on ADP
> NUM
pediatrics NOUN
.... PUNCT
Pediatrics NOUN
for ADP
me PRON
was AUX
three NUM
solid ADJ
> X
months NOUN
of ADP
illness NOUN
, PUNCT
and CCONJ
I PRON
had AUX
a DET
temp NOUN
of ADP
104 NUM
when ADV
I PRON
took VERB
the DET
final ADJ
exam NOUN
! PUNCT
> X
> X
I PRON
think VERB
what PRON
happens VERB
is AUX
that SCONJ
during ADP
training NOUN
, PUNCT
and CCONJ
beyond ADP
, PUNCT
we PRON
are AUX
constantly ADV
> X
exposed VERB
to ADP
new ADJ
things NOUN
, PUNCT
and CCONJ
we PRON
have AUX
the DET
usual ADJ
reactions NOUN
to ADP
them PRON
, PUNCT
so SCONJ
that SCONJ
later ADV
> X
on ADV
, PUNCT
when ADV
challenged VERB
with ADP
something PRON
, PUNCT
it PRON
is AUX
more ADV
likely ADJ
a DET
re NOUN
- NOUN
exposure NOUN
for ADP
us PRON
, PUNCT
> X
so ADV
we PRON
deal VERB
with ADP
it PRON
well INTJ
and CCONJ
get AUX
a DET
mild ADJ
illness NOUN
. PUNCT
This DET
is AUX
also ADV
commonly ADV
seen VERB
in ADP
new ADJ
teachers NOUN
. PUNCT
  SPACE
The DET
first ADJ
few ADJ
years NOUN
, PUNCT
they'resick ADV
a DET
lot NOUN
, PUNCT
but CCONJ
gradually ADV
seem VERB
to PART
build VERB
up ADP
immunities NOUN
to PART
almost ADV
everythingcommon PROPN
. PUNCT
  SPACE
Come VERB
to PART
think VERB
of ADP
it PRON
, PUNCT
I PRON
was AUX
about ADP
my PRON
healthiest NOUN
when ADV
I PRON
wasworking VERB
in ADP
a DET
pathogens NOUN
lab NOUN
, PUNCT
exposed VERB
to ADP
who PRON
- PUNCT
knows VERB
- PUNCT
what PRON
all DET
the DET
time NOUN
. PUNCT
  SPACE
Pre PROPN
- PROPN
OSHA PROPN
, PUNCT
of ADP
course NOUN
. PUNCT
Kay PROPN
Klier PROPN
  SPACE
Biology PROPN
Dept PROPN
  SPACE
UNI PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59001From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Intravenous PROPN
antibioticsIn PROPN
article NOUN
< X
1993Apr19.144358.28376@spectrum.xerox.com PROPN
> X
leisner@eso.mc.xerox.com PROPN
writes::I PROPN
recently ADV
had AUX
a DET
case NOUN
of ADP
shingles NOUN
and CCONJ
my PRON
doctors NOUN
wanted VERB
to PART
give VERB
me PRON
: PUNCT
intravenous ADJ
Acyclovir.::It PROPN
was AUX
a DET
pain NOUN
finding VERB
IV PROPN
sites NOUN
in ADP
my PRON
arms NOUN
... PUNCT
can AUX
I PRON
have AUX
some DET
facts NOUN
about ADP
: PUNCT
how ADV
advantageous ADJ
it PRON
is AUX
to PART
give VERB
intravenous ADJ
antibiotics NOUN
rather ADV
than SCONJ
oral?:I NUM
think VERB
some DET
essential ADJ
information NOUN
must AUX
be AUX
missing VERB
here ADV
, PUNCT
i.e. X
, PUNCT
you PRON
must AUX
besuffering VERB
from ADP
a DET
condition NOUN
which PRON
has AUX
caused VERB
immunosuppression NOUN
. PUNCT
  SPACE
There PRON
isno NOUN
indication NOUN
for ADP
IV PROPN
acyclovir PROPN
for ADP
shingles NOUN
in ADP
an DET
otherwise ADV
healthyperson NOUN
. PUNCT
  SPACE
The DET
oral ADJ
form NOUN
can AUX
help VERB
to PART
reduce VERB
the DET
length NOUN
of ADP
symptoms NOUN
, PUNCT
and CCONJ
mayeven PROPN
help NOUN
prevent VERB
the DET
development NOUN
of ADP
post ADJ
- ADJ
herpetic ADJ
neuralgia NOUN
, PUNCT
but CCONJ
Icertainly PROPN
would AUX
not PART
subject VERB
someone PRON
to ADP
IV PROPN
therapy NOUN
without ADP
a DET
good ADJ
reason NOUN
. PUNCT
To PART
address VERB
your PRON
more ADJ
general ADJ
question NOUN
, PUNCT
IV PROPN
therapy NOUN
does AUX
provide VERB
higher ADJ
andmore ADP
consistently ADV
high ADJ
plasma NOUN
and CCONJ
tissue NOUN
levels NOUN
of ADP
a DET
drug NOUN
. PUNCT
  SPACE
For ADP
treating VERB
aserious ADJ
infection NOUN
this DET
is AUX
the DET
only ADJ
way NOUN
to PART
be AUX
sure ADJ
that SCONJ
a DET
patient NOUN
isgetting VERB
adequate ADJ
drug NOUN
levels.-- ADP
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59002From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
risk NOUN
> X
I PRON
do AUX
n't PART
understand VERB
the DET
assumption NOUN
that SCONJ
because SCONJ
something PRON
is AUX
found VERB
to PART
> X
be AUX
carcinogenic ADJ
that SCONJ
" PUNCT
it PRON
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
> X
naturally ADV
occuring VERB
substances NOUN
( PUNCT
excluding VERB
" PUNCT
controlled VERB
" PUNCT
substances NOUN
) PUNCT
are AUX
> X
pretty ADV
much ADV
unregulated ADJ
in ADP
terms NOUN
of ADP
their PRON
use NOUN
as SCONJ
food NOUN
, PUNCT
food NOUN
additives NOUN
> X
or CCONJ
other ADJ
" PUNCT
consumption NOUN
" PUNCT
. PUNCT
  SPACE
It PRON
's AUX
only ADV
when ADV
the DET
chemists NOUN
concoct PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
an DET
> X
ingredient NOUN
that SCONJ
it PRON
falls VERB
under ADP
FDA PROPN
regulations NOUN
. PUNCT
  SPACE
Otherwise ADV
, PUNCT
if SCONJ
they PRON
> X
really ADV
looked VERB
closely ADV
they PRON
would AUX
find VERB
a DET
reason NOUN
to PART
ban VERB
almost ADV
everything PRON
. PUNCT
> X
How ADV
in ADP
the DET
world NOUN
do AUX
you PRON
suppose VERB
it PRON
's AUX
legal ADJ
to PART
" PUNCT
consume VERB
" PUNCT
tobacco NOUN
products NOUN
> X
( PUNCT
which PRON
probably ADV
SHOULD AUX
be AUX
banned)?No X
, PUNCT
there PRON
is AUX
something PRON
called VERB
the DET
" PUNCT
Delany PROPN
Amendment PROPN
" PUNCT
which PRON
makes VERB
carcinogenicfood NOUN
additives NOUN
illegal ADJ
in ADP
any DET
amount NOUN
. PUNCT
  SPACE
This DET
was AUX
passed VERB
by ADP
Congress PROPN
in ADP
the1950 NOUN
's PART
, PUNCT
before ADP
stuff NOUN
like SCONJ
mass NOUN
spectrometry NOUN
became VERB
available ADJ
, PUNCT
which PRON
increaseddetectable ADJ
levels NOUN
of ADP
substances NOUN
by ADP
a DET
couple NOUN
orders NOUN
of ADP
magnitude NOUN
. PUNCT
This DET
is AUX
why ADV
things NOUN
like SCONJ
cyclamates NOUN
and CCONJ
Red PROPN
# SYM
2 NUM
were AUX
banned VERB
. PUNCT
  SPACE
They PRON
are AUX
veryweakly ADV
carcinogenic ADJ
in ADP
huge ADJ
quantities NOUN
in ADP
rats NOUN
, PUNCT
so SCONJ
under ADP
the DET
Act PROPN
they PRON
arebanned VERB
. PUNCT
This DET
also ADV
applies VERB
to ADP
natural ADJ
carcinogens NOUN
. PUNCT
  SPACE
Some DET
of ADP
you PRON
might AUX
remember VERB
atime NOUN
back ADV
in ADP
the DET
1960 NUM
's PART
when ADV
root NOUN
beer NOUN
suddenly ADV
stopped VERB
tasting VERB
so ADV
good ADJ
, PUNCT
and CCONJ
never ADV
tasted VERB
so ADV
good ADJ
again ADV
. PUNCT
  SPACE
That DET
was AUX
the DET
time NOUN
when ADV
safrole NOUN
was AUX
banned VERB
. PUNCT
This DET
is AUX
the DET
active ADJ
flavoring ADJ
ingredient NOUN
in ADP
sassafras PROPN
leaves NOUN
. PUNCT
If SCONJ
it PRON
were AUX
possible ADJ
to PART
market VERB
a DET
root NOUN
beer NOUN
good ADJ
like SCONJ
the DET
old ADJ
days NOUN
, PUNCT
someonewould AUX
do AUX
it PRON
, PUNCT
in ADP
order NOUN
to PART
make VERB
money NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
no DET
one NOUN
does AUX
it PRON
indicatesthat VERB
enforcement NOUN
is AUX
still ADV
in ADP
effect NOUN
. PUNCT
An DET
odd ADJ
exception NOUN
to ADP
the DET
rule NOUN
seems VERB
to PART
be AUX
the DET
product NOUN
known VERB
as SCONJ
" PUNCT
gumbo PROPN
file'" NOUN
. PUNCT
This DET
is AUX
nothing PRON
more ADJ
than SCONJ
coarsely ADV
ground NOUN
dried VERB
sassafras PROPN
leaves NOUN
. PUNCT
  SPACE
Thisis NOUN
not PART
only ADV
a DET
natural ADJ
product NOUN
, PUNCT
but CCONJ
a DET
natural ADJ
product NOUN
still ADV
in ADP
its PRON
naturalform NOUN
, PUNCT
so ADV
maybe ADV
that DET
's AUX
how ADV
they PRON
evade VERB
Delany PROPN
. PUNCT
  SPACE
Or CCONJ
maybe ADV
a DET
special ADJ
exemptionwas NOUN
made VERB
, PUNCT
to PART
appease VERB
powerful ADJ
Louisiana PROPN
Democrats PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59003From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr19.204855.10818@rtsg.mot.com X
> X
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby PROPN
) PUNCT
writes:>As PUNCT
nobody PRON
in ADP
the DET
food NOUN
industry NOUN
has AUX
even ADV
bothered VERB
to PART
address VERB
my PRON
previous ADJ
> X
question NOUN
" PUNCT
WHY ADV
DO VERB
YOU PRON
NEED VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
ALMOST PROPN
EVERY DET
FOOD PROPN
? PUNCT
" PUNCT
I PRON
must AUX
assume VERB
> X
that SCONJ
my PRON
wife NOUN
's PART
answer NOUN
is AUX
closer ADJ
to ADP
the DET
truth NOUN
than SCONJ
I PRON
hoped VERB
it PRON
was AUX
. PUNCT
I PRON
do AUX
n't PART
mean VERB
to PART
be AUX
disrespectful ADJ
to ADP
your PRON
concerns NOUN
, PUNCT
but CCONJ
it PRON
seems VERB
to ADP
me PRON
that SCONJ
you PRON
're AUX
getting VERB
all DET
wound NOUN
up ADP
in ADP
a DET
non ADJ
- ADJ
issue NOUN
. PUNCT
  SPACE
As SCONJ
many ADJ
knowledgeable ADJ
people NOUN
have AUX
pointed VERB
out ADP
, PUNCT
msg PROPN
is AUX
a DET
naturally ADV
occurring VERB
substance NOUN
in ADP
a DET
lot NOUN
, PUNCT
if SCONJ
not PART
most ADJ
, PUNCT
foods NOUN
. PUNCT
  SPACE
When ADV
food NOUN
manufacturers NOUN
add VERB
it PRON
to ADP
a DET
preparation NOUN
, PUNCT
they PRON
do AUX
so ADV
because SCONJ
it PRON
's AUX
a DET
known VERB
flavor NOUN
enhancer NOUN
. PUNCT
Your PRON
wife NOUN
's PART
theory NOUN
, PUNCT
that SCONJ
MSG PROPN
is AUX
added VERB
to ADP
food NOUN
to PART
stimulate VERB
appetite PROPN
, PUNCT
may AUX
well ADV
be AUX
true ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
do AUX
n't PART
believe VERB
it PRON
's AUX
ALWAYS PROPN
the DET
reason NOUN
it PRON
's AUX
added VERB
. PUNCT
  SPACE
People NOUN
are AUX
( PUNCT
largely ADV
, PUNCT
for ADP
the DET
most ADJ
part NOUN
) PUNCT
in ADP
charge NOUN
of ADP
their PRON
own ADJ
appetites NOUN
. PUNCT
> X
children PROPN
's PART
and CCONJ
my PRON
parent NOUN
's PART
) PUNCT
seem VERB
to PART
fixate VERB
on ADP
a DET
particular ADJ
brand NOUN
of ADP
pet NOUN
> X
food NOUN
. PUNCT
The DET
cat NOUN
will AUX
eat VERB
any DET
product NOUN
within ADP
one NUM
brand NOUN
and CCONJ
not PART
any DET
other ADJ
> X
brand NOUN
. PUNCT
  SPACE
I PRON
have AUX
wondered VERB
if SCONJ
this DET
is AUX
not PART
a DET
case NOUN
of ADP
preference NOUN
, PUNCT
but CCONJ
, PUNCT
some DET
> X
sort NOUN
of ADP
chemical NOUN
training NOUN
or CCONJ
addiction NOUN
. PUNCT
My PRON
questions NOUN
, PUNCT
for ADP
the DET
net NOUN
, PUNCT
are:>Does VERB
the DET
FDA PROPN
regulate VERB
the DET
contents NOUN
of ADP
pet ADJ
food NOUN
? PUNCT
  SPACE
Is AUX
it PRON
allowed VERB
for ADP
pet NOUN
> X
food NOUN
to PART
contain VERB
addictive ADJ
or CCONJ
conditioning NOUN
substances NOUN
? PUNCT
  SPACE
Is AUX
MSG PROPN
put VERB
in ADP
> X
pet ADJ
food?>You PROPN
do AUX
n't PART
know VERB
much ADJ
about ADP
cats NOUN
, PUNCT
do AUX
you PRON
? PUNCT
Cats NOUN
will AUX
Take VERB
Advantage NOUN
of ADP
You PRON
. PUNCT
  SPACE
Resign VERB
yourself PRON
: PUNCT
  SPACE
you PRON
will AUX
never ADV
  SPACE
understand VERB
a DET
cat NOUN
. PUNCT
  SPACE
Their PRON
tastes NOUN
are AUX
whimsical ADJ
. PUNCT
  SPACE
I PRON
also ADV
suspect VERB
, PUNCT
though SCONJ
it PRON
's AUX
been AUX
a DET
while NOUN
since SCONJ
I PRON
've AUX
checked VERB
ingredients NOUN
on ADP
commercial ADJ
cat NOUN
food NOUN
, PUNCT
that SCONJ
there PRON
are AUX
much ADV
more ADV
stringent ADJ
requirements NOUN
on ADP
pet ADJ
food NOUN
additives NOUN
than SCONJ
human NOUN
. PUNCT
  SPACE
See VERB
, PUNCT
the DET
FDA PROPN
has AUX
this DET
stupid ADJ
idea NOUN
that SCONJ
human ADJ
beings NOUN
have AUX
the DET
intelligence NOUN
to PART
look VERB
out ADV
after ADP
their PRON
own ADJ
interests NOUN
. PUNCT
  SPACE
Barbara PROPN
, PUNCT
wondering VERB
how ADV
her PRON
cat NOUN
would AUX
take VERB
care NOUN
of ADP
* PUNCT
her*Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59004From NUM
: PUNCT
kaminski@netcom.com X
( PUNCT
Peter PROPN
Kaminski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography[Newsgroups NOUN
: PUNCT
m.h.a PROPN
added VERB
, PUNCT
followups NOUN
set VERB
to ADP
most ADV
appropriate ADJ
groups.]In NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M.Huey NOUN
) PUNCT
writes:>I NUM
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures.(It PROPN
's PART
" PUNCT
Kirlian PROPN
" PUNCT
. PUNCT
  SPACE
" PUNCT
Krillean PROPN
" PUNCT
pictures NOUN
are AUX
portraits NOUN
of ADP
tiny ADJ
shrimp NOUN
. PUNCT
: PUNCT
) PUNCT
[ PUNCT
... PUNCT
] PUNCT
> X
One PRON
might AUX
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
> X
within ADP
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
I PRON
think VERB
it PRON
's AUX
safe ADJ
to PART
say VERB
that SCONJ
anything PRON
that PRON
's AUX
not PART
at ADP
0 NUM
degrees NOUN
Kelvinwill PROPN
have AUX
its PRON
own ADJ
" PUNCT
energy NOUN
signature NOUN
" PUNCT
-- PUNCT
the DET
interesting ADJ
questions NOUN
arewhat PRON
kind NOUN
of ADP
energy NOUN
, PUNCT
and CCONJ
what PRON
it PRON
signifies VERB
. PUNCT
I'd NOUN
check VERB
places NOUN
like SCONJ
Edmund PROPN
Scientific PROPN
( PUNCT
are AUX
they PRON
still ADV
in ADP
business NOUN
? PUNCT
) PUNCT
--or PROPN
I PRON
wonder VERB
if SCONJ
you PRON
can AUX
find VERB
ex PROPN
- PROPN
Soviet PROPN
Union PROPN
equipment NOUN
for ADP
sale NOUN
somewherein PROPN
the DET
relcom PROPN
. PUNCT
* PUNCT
hierarchy NOUN
. PUNCT
Some DET
expansion NOUN
on ADP
Kirlian ADJ
photography NOUN
: PUNCT
From ADP
the DET
credulous ADJ
side NOUN
: PUNCT
[ PUNCT
Stanway PROPN
, PUNCT
Andrew PROPN
, PUNCT
_ PROPN
Alternative PROPN
Medicine PROPN
: PUNCT
A DET
GuideTo PROPN
Natural PROPN
Therapies PROPN
_ ADV
, PUNCT
ISBN PROPN
0 NUM
- PUNCT
14 NUM
- PUNCT
008561 NUM
- SYM
0 NUM
, PUNCT
New PROPN
York PROPN
: PUNCT
Viking PROPN
Penguin PROPN
, PUNCT
1986,p211 NUM
, PUNCT
p188 PROPN
. PUNCT
  SPACE
A DET
not PART
- PUNCT
overly ADV
critical ADJ
but CCONJ
still ADV
useful ADJ
overview NOUN
of ADP
32alternative NUM
health NOUN
therapies NOUN
. PUNCT
] PUNCT
  SPACE
... PUNCT
the DET
Russian ADJ
engineer NOUN
Semyon PROPN
Kirlian PROPN
and CCONJ
his PRON
wife NOUN
Valentina PROPN
during ADP
the DET
  SPACE
1950s NUM
. PUNCT
  SPACE
Using VERB
alternating VERB
currents NOUN
of ADP
high ADJ
frequency NOUN
to PART
' PUNCT
illuminate VERB
' PUNCT
  SPACE
their PRON
subjects NOUN
, PUNCT
they PRON
photographed VERB
them PRON
. PUNCT
  SPACE
They PRON
found VERB
that SCONJ
if SCONJ
an DET
object NOUN
  SPACE
was AUX
a DET
good ADJ
conductor NOUN
( PUNCT
such ADJ
as SCONJ
a DET
metal NOUN
) PUNCT
the DET
picture NOUN
showed VERB
only ADV
its PRON
  SPACE
surface NOUN
, PUNCT
while SCONJ
the DET
pictures NOUN
of ADP
poor ADJ
conductors NOUN
showed VERB
the DET
inner ADJ
  SPACE
structure NOUN
of ADP
the DET
object NOUN
even ADV
if SCONJ
it PRON
were AUX
optically ADV
opaque ADJ
. PUNCT
  SPACE
They PRON
found VERB
  SPACE
too ADV
that SCONJ
these DET
high ADJ
frequency NOUN
pictures NOUN
could AUX
distinguish VERB
between ADP
dead ADJ
  SPACE
and CCONJ
living NOUN
objects NOUN
. PUNCT
  SPACE
Dead ADJ
ones NOUN
had AUX
a DET
constant ADJ
outline NOUN
whilst SCONJ
living VERB
ones NOUN
  SPACE
were AUX
subject ADJ
to ADP
changes NOUN
. PUNCT
  SPACE
The DET
object NOUN
's PART
life NOUN
activity NOUN
was AUX
also ADV
visible ADJ
in ADP
  SPACE
highly ADV
variable ADJ
colour NOUN
patterns NOUN
. PUNCT
  SPACE
High ADJ
frequency NOUN
photography NOUN
has AUX
now ADV
been AUX
practised VERB
for ADP
twenty NUM
years NOUN
in ADP
  SPACE
the DET
Soviet PROPN
Union PROPN
but CCONJ
only ADV
a DET
few ADJ
people NOUN
in ADP
the DET
West PROPN
have AUX
taken VERB
it PRON
up ADP
  SPACE
seriously ADV
. PUNCT
  SPACE
Professor PROPN
Douglas PROPN
Dean PROPN
in ADP
New PROPN
York PROPN
and CCONJ
Professor PROPN
Philips PROPN
at ADP
  SPACE
Washington PROPN
University PROPN
in ADP
St PROPN
Louis PROPN
have AUX
produced VERB
Kirlian ADJ
photographs NOUN
and CCONJ
  SPACE
others NOUN
have AUX
been AUX
produced VERB
in ADP
Brazil PROPN
, PUNCT
Austria PROPN
and CCONJ
Germany PROPN
. PUNCT
  SPACE
Using VERB
Kirlian ADJ
photography NOUN
it PRON
is AUX
possible ADJ
to PART
show VERB
an DET
aura NOUN
around ADP
people NOUN
's PART
  SPACE
fingers NOUN
, PUNCT
notably ADV
around ADP
those DET
of ADP
healers NOUN
who PRON
are AUX
concentrating VERB
on ADP
  SPACE
healing VERB
someone PRON
. PUNCT
  SPACE
Normally ADV
, PUNCT
blue ADJ
and CCONJ
white ADJ
rays NOUN
emanate VERB
from ADP
the DET
fingers NOUN
  SPACE
but CCONJ
, PUNCT
when ADV
a DET
subject NOUN
becomes VERB
angry ADJ
or CCONJ
excited ADJ
, PUNCT
the DET
aura PROPN
turns VERB
red ADJ
and CCONJ
  SPACE
spotty ADJ
. PUNCT
  SPACE
The DET
Soviets PROPN
are AUX
now ADV
using VERB
Kirlian ADJ
photography NOUN
to PART
diagnose VERB
  SPACE
diseases NOUN
which PRON
can AUX
not PART
be AUX
diagnosed VERB
by ADP
any DET
other ADJ
method NOUN
. PUNCT
  SPACE
They PRON
argue VERB
that SCONJ
  SPACE
in ADP
most ADJ
illnesses NOUN
there PRON
is AUX
a DET
preclinical ADJ
stage NOUN
during ADP
which PRON
the DET
person NOUN
  SPACE
is AUX
n't PART
actually ADV
ill ADJ
but CCONJ
is AUX
about ADJ
to PART
be AUX
. PUNCT
  SPACE
They PRON
claim VERB
to PART
be AUX
able ADJ
to PART
  SPACE
foretell VERB
a DET
disease NOUN
by ADP
photographing VERB
its PRON
preclinical ADJ
phase NOUN
. PUNCT
  SPACE
But CCONJ
the DET
most ADV
exciting ADJ
phenomenon NOUN
illustrated VERB
by ADP
Kirlian ADJ
photography NOUN
is AUX
  SPACE
the DET
phantom ADJ
effect NOUN
. PUNCT
  SPACE
During ADP
high ADJ
frequency NOUN
photography NOUN
of ADP
a DET
leaf NOUN
from ADP
  SPACE
which PRON
a DET
part NOUN
had AUX
been AUX
cut VERB
, PUNCT
the DET
photograph NOUN
gave VERB
a DET
complete ADJ
picture NOUN
of ADP
the DET
  SPACE
leaf NOUN
with ADP
the DET
removed VERB
part NOUN
showing VERB
up ADP
faintly ADV
. PUNCT
  SPACE
This DET
is AUX
extremely ADV
  SPACE
important ADJ
because SCONJ
it PRON
backs VERB
up ADP
the DET
experiences NOUN
of ADP
psychics NOUN
who PRON
can AUX
' PUNCT
see VERB
' PUNCT
  SPACE
the DET
legs NOUN
of ADP
amputees NOUN
as SCONJ
if SCONJ
they PRON
were AUX
still ADV
there ADV
. PUNCT
  SPACE
The DET
important ADJ
thing NOUN
  SPACE
about ADP
the DET
Kirlian ADJ
phantoms NOUN
though ADV
is AUX
that SCONJ
the DET
electromagnetic ADJ
pattern NOUN
  SPACE
ca AUX
n't PART
possibly ADV
represent VERB
a DET
secondary ADJ
phenomenon NOUN
-- PUNCT
or CCONJ
the DET
field NOUN
would AUX
  SPACE
vanish VERB
when ADV
the DET
piece NOUN
of ADP
leaf NOUN
or CCONJ
leg NOUN
vanished VERB
. PUNCT
  SPACE
The DET
energy NOUN
grid NOUN
  SPACE
contained VERB
in ADP
a DET
living NOUN
object NOUN
must AUX
therefore ADV
be AUX
far ADV
more ADV
significant ADJ
than SCONJ
  SPACE
the DET
actual ADJ
object NOUN
itself PRON
. PUNCT
  SPACE
[ PUNCT
... PUNCT
] PUNCT
  SPACE
Kirlian ADJ
photography NOUN
has AUX
shown VERB
how ADV
water NOUN
mentally ADV
' PUNCT
charged VERB
' PUNCT
by ADP
a DET
healer NOUN
  SPACE
has AUX
a DET
much ADV
richer ADJ
energy NOUN
field NOUN
around ADP
it PRON
than SCONJ
ordinary ADJ
water NOUN
... PUNCT
From ADP
the DET
incredulous ADJ
side NOUN
: PUNCT
[ PUNCT
MacRobert PROPN
, PUNCT
Alan PROPN
, PUNCT
" PUNCT
Reality NOUN
shopping NOUN
; PUNCT
aconsumer PROPN
's PART
guide NOUN
to ADP
new ADJ
age NOUN
hokum PROPN
. PUNCT
" PUNCT
, PUNCT
_ PROPN
Whole PROPN
Earth PROPN
Review PROPN
_ PROPN
, PUNCT
Autumn PROPN
1986,vNON4 NOUN
p4(11 NOUN
) PUNCT
. PUNCT
  SPACE
An DET
excellent ADJ
article NOUN
providing VERB
common ADJ
- PUNCT
sense NOUN
guidelines NOUN
forevaluating VERB
paranormal ADJ
claims NOUN
, PUNCT
and CCONJ
some DET
of ADP
the DET
author NOUN
's PART
favorite ADJ
examplesof PROPN
hokum PROPN
. PUNCT
] PUNCT
  SPACE
The DET
crank NOUN
usually ADV
works VERB
in ADP
isolation NOUN
from ADP
everyone PRON
else ADV
in ADP
his PRON
field NOUN
of ADP
  SPACE
study NOUN
, PUNCT
making VERB
grand ADJ
discoveries NOUN
in ADP
his PRON
basement NOUN
. PUNCT
  SPACE
Many ADJ
paranormal ADJ
  SPACE
movements NOUN
can AUX
be AUX
traced VERB
back ADV
to ADP
such ADJ
people NOUN
-- PUNCT
Kirlian ADJ
photography NOUN
, PUNCT
for ADP
  SPACE
instance NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
pump VERB
high ADJ
- PUNCT
voltage NOUN
electricity NOUN
into ADP
anything PRON
it PRON
will AUX
  SPACE
emit ADV
glowing VERB
sparks NOUN
, PUNCT
common ADJ
knowledge NOUN
to ADP
electrical ADJ
workers NOUN
and CCONJ
  SPACE
hobbyists NOUN
for ADP
a DET
century NOUN
. PUNCT
  SPACE
It PRON
took VERB
a DET
lone ADJ
basement NOUN
crank VERB
to PART
declare VERB
that SCONJ
  SPACE
the DET
sparks NOUN
represent VERB
some DET
sort NOUN
of ADP
spiritual ADJ
aura NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
Kirlian PROPN
  SPACE
photography NOUN
was AUX
subjected VERB
to ADP
rigorous ADJ
testing NOUN
by ADP
physicists NOUN
John PROPN
O. PROPN
  SPACE
Pehek PROPN
, PUNCT
Harry PROPN
J. PROPN
Kyler PROPN
, PUNCT
and CCONJ
David PROPN
L. PROPN
Faust PROPN
, PUNCT
who PRON
reported VERB
their PRON
findings NOUN
  SPACE
in ADP
the DET
October PROPN
15 NUM
, PUNCT
1976 NUM
, PUNCT
issue NOUN
of ADP
Science PROPN
. PUNCT
  SPACE
Their PRON
conclusion NOUN
: PUNCT
The DET
  SPACE
variations NOUN
observed VERB
in ADP
Kirlian ADJ
photographs NOUN
are AUX
due ADJ
solely ADV
to PART
moisture VERB
on ADP
  SPACE
the DET
surface NOUN
of ADP
the DET
body NOUN
and CCONJ
not PART
to ADP
mysterious ADJ
" PUNCT
auras X
" PUNCT
or CCONJ
even ADV
  SPACE
necessarily ADV
to ADP
changes NOUN
in ADP
mood NOUN
or CCONJ
mental ADJ
state NOUN
. PUNCT
  SPACE
Nevertheless ADV
, PUNCT
  SPACE
television NOUN
shows NOUN
, PUNCT
magazines NOUN
, PUNCT
and CCONJ
books NOUN
( PUNCT
many ADJ
by ADP
famous ADJ
  SPACE
parapsychologists NOUN
) PUNCT
continue VERB
to PART
promote VERB
Kirlian ADJ
photography NOUN
as SCONJ
proof NOUN
of ADP
  SPACE
the DET
unknown.-- PROPN
Peter PROPN
Kaminskikaminski@netcom.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59006Subject NUM
: PUNCT
What PRON
are AUX
knots?From PROPN
: PUNCT
ng4@husc11.harvard.edu PROPN
( PUNCT
Ho PROPN
Leung PROPN
Ng PROPN
) PUNCT
    SPACE
What PRON
exactly ADV
are AUX
knots NOUN
, PUNCT
those DET
sore ADJ
, PUNCT
tight ADJ
spots NOUN
in ADP
your PRON
muscles?In PROPN
certain ADJ
kinds NOUN
of ADP
massage NOUN
, PUNCT
people NOUN
try VERB
and CCONJ
break VERB
up ADP
these DET
knots NOUN
; PUNCT
it PRON
thisreally ADV
helpful?Ho VERB
Leung PROPN
Ngng4@husc.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59007From NUM
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskMark PROPN
McWiggins PROPN
< X
markmc@halcyon.com X
> X
reminds VERB
us PRON
: PUNCT
MM PROPN
> X
Also ADV
, PUNCT
do AUX
n't PART
forget VERB
that SCONJ
it PRON
's AUX
better ADJ
for ADP
your PRON
health NOUN
MM PROPN
> X
to PART
enjoy VERB
your PRON
steak NOUN
than SCONJ
to PART
resent VERB
your PRON
sprouts NOUN
... PUNCT
YES!I PRON
call VERB
this DET
notion NOUN
" PUNCT
psychological ADJ
health NOUN
food NOUN
" PUNCT
and CCONJ
, PUNCT
in ADP
fact NOUN
, PUNCT
havedetermined VERB
that SCONJ
the DET
Four PROPN
Food PROPN
Groups PROPN
are AUX
Ice PROPN
Cream PROPN
, PUNCT
Pizza PROPN
, PUNCT
Barbecue PROPN
, PUNCT
andChocolate PROPN
. PUNCT
  SPACE
Ideally ADV
, PUNCT
every DET
meal NOUN
should AUX
contain VERB
something PRON
from ADP
at ADP
least ADJ
twoof NOUN
these DET
four NUM
groups NOUN
. PUNCT
  SPACE
Food NOUN
DOES VERB
serve VERB
functions NOUN
other ADJ
than SCONJ
nutrition NOUN
, PUNCT
andone ADJ
of ADP
them PRON
is AUX
keeping VERB
the DET
organism NOUN
happy ADJ
and CCONJ
thus ADV
aiding VERB
its PRON
immunesystem NOUN
. PUNCT
And CCONJ
I PRON
did AUX
n't PART
spend VERB
a DET
million NUM
bucks NOUN
commissioning VERB
a DET
study NOUN
that PRON
told VERB
me PRON
toredraw ADJ
my PRON
silly ADJ
little ADJ
pyramid NOUN
in ADP
different ADJ
colors NOUN
and CCONJ
with ADP
a DET
friendliertypeface NOUN
, PUNCT
either ADV
. PUNCT
  SPACE
( PUNCT
Ref PROPN
: PUNCT
Consumer PROPN
Reports PROPN
' PART
back ADJ
page NOUN
-- PUNCT
one NUM
of ADP
the DET
bestthings NOUN
ever ADV
to PART
turn VERB
up ADP
there.)Rich PUNCT
Young ADJ
< X
young@serum.kodak.com X
> X
writes NOUN
of ADP
one NUM
of ADP
six NUM
impossible ADJ
things NOUN
: PUNCT
RY PROPN
> X
to PART
consume VERB
unrealistically ADV
large ADJ
quantities NOUN
of ADP
barbecued VERB
meat NOUN
at ADP
a DET
time NOUN
. PUNCT
"Donald PUNCT
Mackie NOUN
< X
Donald_Mackie@med.umich.edu PROPN
> X
confesses VERB
: PUNCT
DM VERB
> X
I PRON
have AUX
to PART
confess VERB
that SCONJ
this DET
is AUX
one NUM
of ADP
my PRON
few ADJ
unfulfilled ADJ
ambitions NOUN
. PUNCT
DM VERB
> X
No ADV
matter ADV
how ADV
much ADV
I PRON
eat VERB
, PUNCT
it PRON
still ADV
seems VERB
realistic ADJ
. PUNCT
Yeah INTJ
, PUNCT
I PRON
want VERB
to PART
try VERB
one NUM
of ADP
those DET
42 NUM
oz PROPN
steaks NOUN
( PUNCT
cooked VERB
over ADP
applewood NOUN
) PUNCT
atWally PROPN
's PART
Wolf PROPN
Lodge PROPN
Inn PROPN
in ADP
Coeur PROPN
d'Alene PROPN
. PUNCT
  SPACE
That DET
seems VERB
quiteunrealistic ADJ
-- PUNCT
unrealistically ADV
SMALL ADJ
. PUNCT
  SPACE
And CCONJ
a DET
few ADJ
slabs NOUN
of ADP
ribs NOUN
from ADP
the DET
EastTexas PROPN
Smoker PROPN
( PUNCT
RIP PROPN
, PUNCT
again ADV
) PUNCT
in ADP
Louisville PROPN
is AUX
not PART
at ADV
all ADV
unrealistic ADJ
either ADV
. PUNCT
  SPACE
What PRON
say VERB
we PRON
have AUX
a DET
rec.food.cooking ADJ
dinner NOUN
at ADP
the DET
Moonlite PROPN
Bar PROPN
- PUNCT
B PROPN
- PUNCT
Que PROPN
Inn PROPN
inOwensboro PROPN
? PUNCT
( PUNCT
It PRON
's AUX
all DET
you PRON
can AUX
eat VERB
including VERB
lamb PROPN
ribs PROPN
& CCONJ
mutton NOUN
for ADP
about$10 PROPN
. PUNCT
) PUNCT
  SPACE
We PRON
could AUX
invite VERB
Julie PROPN
Kangas PROPN
as SCONJ
guest NOUN
of ADP
honor NOUN
and CCONJ
see VERB
if SCONJ
theMoonlite PROPN
's PART
Very ADV
Hot ADJ
Sauce PROPN
is AUX
too ADV
hot ADJ
for ADP
her PRON
. PUNCT
  SPACE
( PUNCT
It PRON
IS VERB
too ADV
hot ADJ
for ADP
me PRON
, PUNCT
and CCONJ
Idon't INTJ
say VERB
that DET
very ADV
often ADV
. PUNCT
) PUNCT
  SPACE
And CCONJ
she PRON
could AUX
bring VERB
ice NOUN
cream NOUN
with ADP
crusheddried ADJ
chiltepins NOUN
for ADP
dessert NOUN
. PUNCT
  SPACE
And CCONJ
we PRON
could AUX
see VERB
if SCONJ
there PRON
IS VERB
such DET
a DET
thing NOUN
as SCONJ
an DET
" PUNCT
unrealistically ADV
largequantity NOUN
" PUNCT
of ADP
barbecue NOUN
-- PUNCT
the DET
owner NOUN
of ADP
the DET
Moonlite PROPN
estimates VERB
that SCONJ
theOwensboro PROPN
restaurants NOUN
serve VERB
a DET
hundred NUM
thousand NUM
pounds NOUN
of ADP
meat NOUN
a DET
week NOUN
in ADP
thesummer NOUN
, PUNCT
and CCONJ
forty NUM
thousand NUM
in ADP
the DET
winter NOUN
-- PUNCT
in ADP
a DET
town NOUN
of ADP
50 NUM
000 NUM
or CCONJ
so ADV
. PUNCT
  SPACE
Twopounds NOUN
per ADP
person NOUN
per ADP
week NOUN
? PUNCT
   SPACE
Again ADV
, PUNCT
sure ADV
sounds VERB
unrealistic ADJ
to ADP
me PRON
-- PUNCT
thatsjust VERB
too ADV
meager ADJ
to PART
be AUX
healthy.~ PROPN
Kiran PROPN
( PUNCT
Now ADV
a DET
two NUM
- PUNCT
pound NOUN
slab NOUN
of ADP
ribs NOUN
a DET
day NOUN
, PUNCT
THAT PROPN
's PART
realistic.)-- NOUN
FUZZY NOUN
PINK VERB
NIVEN PROPN
'S PART
LAW NOUN
: PUNCT
  SPACE
Never ADV
Waste PROPN
Calories PROPN
. PUNCT
  SPACE
Potato NOUN
chips NOUN
, PUNCT
candy NOUN
, PUNCT
whipped VERB
cream NOUN
, PUNCT
or CCONJ
hot ADJ
fudge NOUN
sundae NOUN
consumption NOUN
may AUX
involve VERB
you PRON
, PUNCT
yourdietician PROPN
, PUNCT
your PRON
wardrobe NOUN
, PUNCT
and CCONJ
other ADJ
factors NOUN
. PUNCT
  SPACE
But CCONJ
Fuzzy PROPN
Pink PROPN
's PART
Law PROPN
implies VERB
: PUNCT
Don't NUM
eat VERB
soggy ADJ
potato NOUN
chips NOUN
, PUNCT
or CCONJ
cheap ADJ
candy NOUN
, PUNCT
or CCONJ
fake ADJ
whipped ADJ
cream NOUN
, PUNCT
or CCONJ
aninferior ADV
hot ADJ
fudge NOUN
sundae NOUN
. PUNCT
                SPACE
Larry PROPN
Niven PROPN
, PUNCT
NIVEN PROPN
'S PART
LAWS PROPN
, PUNCT
N PROPN
- PUNCT
SPACENewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59008From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Frequent ADJ
nosebleedsIn PROPN
article NOUN
< X
9304191126.AA21125@seastar.seashell NOUN
> X
bebmza@sru001.chvpkh.chevron.com NOUN
( PUNCT
Beverly PROPN
M. PROPN
Zalan PROPN
) PUNCT
writes:>>My PRON
6 NUM
year NOUN
son NOUN
is AUX
so ADV
plagued ADJ
. PUNCT
  SPACE
Lots NOUN
of ADP
vaseline NOUN
up ADP
his PRON
nose NOUN
each DET
night NOUN
seems VERB
> X
to PART
keep VERB
it PRON
under ADP
control NOUN
. PUNCT
  SPACE
But CCONJ
let VERB
him PRON
get AUX
bopped VERB
there ADV
, PUNCT
and CCONJ
he PRON
'll AUX
recur VERB
for ADP
> X
days NOUN
! PUNCT
  SPACE
Also ADV
allergies VERB
, PUNCT
colds NOUN
, PUNCT
dry ADJ
air NOUN
all DET
seem VERB
to PART
contribute VERB
. PUNCT
  SPACE
But CCONJ
again ADV
, PUNCT
the DET
> X
vaseline NOUN
, PUNCT
or CCONJ
A&D PROPN
ointment NOUN
, PUNCT
or CCONJ
neosporin VERB
all DET
seem VERB
to PART
keep VERB
them PRON
from ADP
recurring.>If PROPN
you PRON
can AUX
get AUX
it PRON
, PUNCT
you PRON
might AUX
want VERB
to PART
try VERB
a DET
Canadian PROPN
over ADP
- PUNCT
the DET
- PUNCT
counter NOUN
productcalled VERB
Secaris PROPN
, PUNCT
which PRON
is AUX
a DET
water NOUN
- PUNCT
soluble ADJ
gel NOUN
. PUNCT
  SPACE
Compared VERB
to ADP
Vaseline PROPN
or CCONJ
othergreasy ADJ
ointments NOUN
, PUNCT
Secaris PROPN
seems VERB
more ADV
compatible ADJ
with ADP
the DET
moisture NOUN
that'salready NOUN
there.-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59009From NUM
: PUNCT
myers@cs.scarolina.edu PROPN
( PUNCT
Daniel PROPN
Myers)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?Frequently ADV
of ADP
late ADV
, PUNCT
I PRON
have AUX
been AUX
reacting VERB
to ADP
something PRON
added VERB
torestaurant ADJ
foods NOUN
. PUNCT
  SPACE
What PRON
happens VERB
is AUX
that SCONJ
the DET
inside NOUN
of ADP
my PRON
throat NOUN
startsto PROPN
feel VERB
" PUNCT
puffy NOUN
" PUNCT
, PUNCT
like SCONJ
I PRON
have AUX
a DET
cold NOUN
, PUNCT
and CCONJ
also ADV
at ADP
times NOUN
the DET
inside NOUN
of ADP
mymouth NOUN
( PUNCT
especially ADV
the DET
tongue NOUN
) PUNCT
and CCONJ
lips NOUN
also ADV
feel VERB
puffy NOUN
. PUNCT
The DET
situations NOUN
around ADP
these DET
symptoms NOUN
almost ADV
always ADV
involve VERB
restaurants(usually ADV
chinese ADJ
) PUNCT
, PUNCT
the DET
most ADV
notable ADJ
cases NOUN
: PUNCT
  SPACE
a DET
cheap ADJ
chinese ADJ
fast ADJ
foodchain PROPN
, PUNCT
a DET
japanese ADJ
steak NOUN
house NOUN
( PUNCT
I PRON
had AUX
the DET
steak NOUN
) PUNCT
, PUNCT
and CCONJ
another DET
chinesefast ADJ
food NOUN
chain NOUN
where ADV
I PRON
SAW VERB
the DET
cook NOUN
put VERB
about ADP
a DET
tablespoon NOUN
or CCONJ
two NUM
ofwhat PRON
looked VERB
like SCONJ
sugar NOUN
or CCONJ
salt NOUN
into ADP
my PRON
fried ADJ
rice NOUN
. PUNCT
I PRON
am AUX
under ADP
the DET
impression NOUN
that SCONJ
MSG PROPN
" PUNCT
enhances VERB
" PUNCT
flavor NOUN
by ADP
causing VERB
thetaste NOUN
buds NOUN
to PART
swell VERB
. PUNCT
  SPACE
If SCONJ
this DET
is AUX
correct ADJ
, PUNCT
I PRON
do AUX
not PART
find VERB
it PRON
unreasonableto ADJ
assume VERB
that SCONJ
high ADJ
doses NOUN
of ADP
MSG PROPN
can AUX
cause VERB
other ADJ
mouth NOUN
tissues NOUN
to PART
swell VERB
. PUNCT
Also ADV
, PUNCT
as SCONJ
the DET
many ADJ
of ADP
the DET
occurances NOUN
( PUNCT
including VERB
two NUM
of ADP
the DET
above)involved PROPN
beef NOUN
, PUNCT
and CCONJ
as SCONJ
beef NOUN
is AUX
frequently ADV
tenderized VERB
with ADP
MSG PROPN
, PUNCT
this DET
iswhat ADP
I PRON
suspect VERB
as SCONJ
being AUX
the DET
cause NOUN
. PUNCT
I PRON
would AUX
n't PART
be AUX
at ADV
all ADV
surprised VERB
if SCONJ
toxicity NOUN
studies NOUN
of ADP
MSG PROPN
in ADP
animalsshowed VERB
it PRON
as SCONJ
being AUX
harmless ADJ
, PUNCT
as SCONJ
it PRON
would AUX
be AUX
very ADV
startling ADJ
to PART
hear VERB
a DET
labrat NOUN
or CCONJ
rhesus NOUN
monkey NOUN
complain VERB
about ADP
their PRON
throats NOUN
feeling VERB
funny ADJ
. PUNCT
Anyone PRON
who PRON
wishes VERB
to PART
explain VERB
how ADV
the DET
majority NOUN
of ADP
food NOUN
additives NOUN
aretotally ADV
harmless ADJ
is AUX
welcome ADJ
to ADP
e NOUN
- NOUN
mail VERB
me PRON
with ADP
the DET
results NOUN
of ADP
any DET
studiedthey NOUN
know NOUN
of ADP
. PUNCT
  SPACE
I PRON
will AUX
probably ADV
respond VERB
to ADP
them PRON
however ADV
with ADP
a DET
reminderof ADJ
how ADV
long ADV
it PRON
took VERB
to PART
prove VERB
that SCONJ
smoking NOUN
causes NOUN
cancer NOUN
( PUNCT
which PRON
thetobacco VERB
companies NOUN
still ADV
deny).- ADJ
DM(If PROPN
I PRON
sound VERB
grumpy ADJ
, PUNCT
it PRON
's AUX
because SCONJ
I PRON
had AUX
beef NOUN
with ADP
broccoli PROPN
for ADP
lunchtoday PROPN
, PUNCT
and CCONJ
now ADV
it PRON
hurts VERB
to ADP
swallow)--------------------------------------------------------------------------------Dan PROPN
Myers PROPN
( PUNCT
Madman PROPN
) PUNCT
		 SPACE
| PROPN
If SCONJ
the DET
creator NOUN
had AUX
intended VERB
us PRON
to PART
walk VERB
myers@usceast.cs.scarolina.edu NUM
	 SPACE
| ADP
upright NOUN
, PUNCT
he PRON
would AUX
n't PART
have AUX
given VERB
us PRON
knuckles------------------------------------------------------------------------------Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59010Subject NUM
: PUNCT
Origin PROPN
of ADP
MorphineFrom PROPN
: PUNCT
chinsz@eis.calstate.edu PROPN
( PUNCT
Christopher PROPN
Hinsz PROPN
) PUNCT
	 SPACE
I PRON
am AUX
sorry ADJ
to PART
once ADV
again ADV
bother VERB
those DET
of ADP
you PRON
on ADP
this DET
newsgroup NOUN
. PUNCT
If SCONJ
you PRON
have AUX
any DET
suggestions NOUN
as SCONJ
to ADP
where ADV
I PRON
might AUX
find VERB
out ADP
about ADP
the DET
subjectof NOUN
this DET
letter NOUN
( PUNCT
the DET
origin NOUN
of ADP
Morphine PROPN
, PUNCT
ie PROPN
. PUNCT
who PRON
first ADV
isolsted VERB
it PRON
, PUNCT
and CCONJ
whyhe PROPN
/ PUNCT
she PRON
attempted VERB
such DET
an DET
experiment NOUN
) PUNCT
. PUNCT
  SPACE
Once ADV
agian VERB
any DET
suggestion NOUN
would AUX
beappreciated VERB
. PUNCT
	 SPACE
CSHp.s NOUN
. PUNCT
My PRON
instructer NOUN
insists VERB
that SCONJ
I PRON
get VERB
4 NUM
rescources NOUN
from ADP
this DET
newsgroup NOUN
, PUNCT
soplease PROPN
send VERB
me PRON
and CCONJ
info NOUN
you PRON
think VERB
may AUX
be AUX
helpful ADJ
. PUNCT
  SPACE
Facts NOUN
that SCONJ
you PRON
know VERB
, PUNCT
but CCONJ
do AUX
n't PART
know VERB
what PRON
book NOUN
they PRON
're AUX
from ADP
are AUX
ok ADJ
. PUNCT
ATTENTION NOUN
: PUNCT
If SCONJ
you PRON
do AUX
NOT ADV
like VERB
seeing VERB
letters NOUN
such ADJ
as SCONJ
this DET
one NOUN
on ADP
yournewsgroup NOUN
direct ADJ
all DET
complaints NOUN
to ADP
my PRON
instructor NOUN
at ADP
< X
bshayler@eis X
. PUNCT
CalStat PROPN
. PUNCT
Edu>-- PROPN
" PUNCT
Kilimanjaro PROPN
is AUX
a DET
pretty ADV
tricky ADJ
climb NOUN
. PUNCT
Most ADJ
of ADP
it PRON
's AUX
up ADV
, PUNCT
until ADP
you PRON
reachthe VERB
very ADV
, PUNCT
very ADV
top ADJ
, PUNCT
and CCONJ
then ADV
it PRON
tends VERB
to PART
slope VERB
away ADV
rather ADV
sharply ADV
. PUNCT
" PUNCT
					 SPACE
Sir PROPN
George PROPN
Head PROPN
, PUNCT
OBE PROPN
( PUNCT
JC)------------------------------------------------------------------------------LOGIC PROPN
: PUNCT
" PUNCT
The DET
point NOUN
is AUX
frozen VERB
, PUNCT
the DET
beast NOUN
is AUX
dead ADJ
, PUNCT
what PRON
is AUX
the DET
difference NOUN
? PUNCT
" PUNCT
					 SPACE
Gavin PROPN
Millarrrrrrrrrr PROPN
( PUNCT
JC)Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59011From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residency[reply NOUN
to ADP
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
] PUNCT
> X
> X
I PRON
believe VERB
it PRON
is AUX
illegal ADJ
for ADP
a DET
residency NOUN
to PART
discriminate VERB
against ADP
FMGs PROPN
. PUNCT
> X
Is AUX
that DET
true ADJ
? PUNCT
  SPACE
I PRON
know VERB
some DET
that PRON
wo AUX
n't PART
even ADV
interview VERB
FMGs PROPN
. PUNCT
I PRON
think VERB
a DET
case NOUN
could AUX
be AUX
made VERB
that SCONJ
this DET
is AUX
discriminatory ADJ
, PUNCT
particularlyif VERB
an DET
applicant NOUN
had AUX
good ADJ
board NOUN
scores NOUN
and CCONJ
recommendations NOUN
but CCONJ
wasn'toffered VERB
an DET
interview NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
it PRON
has AUX
ever ADV
gone VERB
to ADP
court NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59012From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography[reply ADP
to ADP
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
] PUNCT
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
Kirilian PROPN
. PUNCT
> X
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
> X
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
> X
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
> X
proves VERB
that SCONJ
every DET
object NOUN
within ADP
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
> X
own ADJ
energy NOUN
signature NOUN
. PUNCT
There PRON
turned VERB
out ADP
to PART
be AUX
a DET
very ADV
simple ADJ
, PUNCT
conventional ADJ
explanation NOUN
for ADP
thephenomenon PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
recall VERB
the DET
details NOUN
, PUNCT
but CCONJ
I PRON
believe VERB
it PRON
had AUX
to PART
do AUX
withthe NOUN
object NOUN
between ADP
the DET
plates NOUN
altering VERB
the DET
field NOUN
because SCONJ
of ADP
purelymechanical ADJ
properties NOUN
like SCONJ
capacitance NOUN
. PUNCT
  SPACE
The DET
" PUNCT
aura NOUN
" PUNCT
was AUX
caused VERB
by ADP
directexposure NOUN
of ADP
the DET
film NOUN
from ADP
variations NOUN
in ADP
field NOUN
strength NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59013From NUM
: PUNCT
mstern@lindsay NOUN
. PUNCT
Princeton PROPN
. PUNCT
EDU PROPN
( PUNCT
Marlene PROPN
J. PROPN
Stern)Subject VERB
: PUNCT
Recurrent PROPN
Respiratory PROPN
PapillomatosisWe NOUN
will AUX
be AUX
holding VERB
a DET
bake NOUN
and CCONJ
craft NOUN
sale NOUN
at ADP
Communiversity PROPN
in ADP
Princeton PROPN
on ADP
  SPACE
Nassau PROPN
Street PROPN
, PUNCT
Saturday PROPN
April PROPN
24th NOUN
12 NUM
- SYM
4 NUM
p.m. NOUN
to PART
benefit VERB
the DET
Recurrent PROPN
  SPACE
Respiratory PROPN
Papillomatosis PROPN
Foundation PROPN
, PUNCT
a DET
nonprofit ADJ
foundation NOUN
established VERB
to PART
  SPACE
encourage VERB
research NOUN
toward ADP
a DET
cure NOUN
for ADP
Recurrent PROPN
Respiratory PROPN
Papillomatosis PROPN
. PUNCT
  SPACE
Our PRON
  SPACE
three NUM
year NOUN
old ADJ
daughter NOUN
suffers VERB
from ADP
this DET
disease NOUN
. PUNCT
  SPACE
Below ADV
is AUX
a DET
press NOUN
release NOUN
  SPACE
that PRON
appeared VERB
in ADP
local ADJ
newspapers NOUN
. PUNCT
  SPACE
Hope VERB
you PRON
can AUX
join VERB
us PRON
. PUNCT
On ADP
Saturday PROPN
, PUNCT
April PROPN
24 NUM
as SCONJ
part NOUN
of ADP
Communiversity PROPN
in ADP
Princeton PROPN
, PUNCT
a DET
local ADJ
family NOUN
  SPACE
will AUX
be AUX
having VERB
a DET
bake NOUN
and CCONJ
craft NOUN
sale NOUN
to PART
raise VERB
money NOUN
for ADP
and CCONJ
create VERB
public ADJ
  SPACE
awareness NOUN
about ADP
a DET
rare ADJ
disease NOUN
called VERB
Recurrent PROPN
Respiratory PROPN
Papillomatosis PROPN
. PUNCT
Bill PROPN
and CCONJ
Marlene PROPN
Stern PROPN
's PART
daughter NOUN
Lindsay PROPN
is AUX
afflicted VERB
with ADP
this DET
disease NOUN
  SPACE
characterized VERB
by ADP
tumors NOUN
attacking VERB
the DET
inside NOUN
of ADP
the DET
larynx ADJ
, PUNCT
vocal ADJ
cords NOUN
and CCONJ
  SPACE
trachea NOUN
. PUNCT
  SPACE
Caused VERB
by ADP
a DET
virus NOUN
, PUNCT
the DET
tumors NOUN
grow VERB
, PUNCT
block VERB
the DET
air NOUN
passages NOUN
and CCONJ
would AUX
  SPACE
lead VERB
to ADP
death NOUN
from ADP
suffocation NOUN
without ADP
continual ADJ
surgery NOUN
to PART
remove VERB
the DET
growths NOUN
. PUNCT
   SPACE
Three NUM
year NOUN
old ADJ
Lindsay PROPN
has AUX
undergone VERB
11 NUM
operations NOUN
thus ADV
far ADV
since SCONJ
her PRON
diagnosis NOUN
  SPACE
last ADJ
year NOUN
and CCONJ
faces VERB
the DET
prospect NOUN
of ADP
over ADP
a DET
hundred NUM
operations NOUN
throughout ADP
her PRON
  SPACE
lifetime NOUN
. PUNCT
  SPACE
Even ADV
though SCONJ
the DET
disease NOUN
is AUX
hardly ADV
a DET
household NOUN
word NOUN
, PUNCT
it PRON
has AUX
affected VERB
the DET
lives NOUN
  SPACE
of ADP
enough ADJ
people NOUN
to PART
inspire VERB
the DET
formation NOUN
of ADP
the DET
Recurrent PROPN
Respiratory PROPN
  SPACE
Papillomatosis PROPN
Foundation PROPN
, PUNCT
  SPACE
a DET
non ADJ
- ADJ
profit ADJ
foundation NOUN
whose PRON
goals NOUN
are AUX
to PART
provide VERB
  SPACE
support NOUN
for ADP
patients NOUN
and CCONJ
families NOUN
by ADP
networking VERB
patients NOUN
and CCONJ
publishing VERB
a DET
  SPACE
newsletter NOUN
, PUNCT
enhance NOUN
  SPACE
awareness NOUN
of ADP
RRP PROPN
at ADP
the DET
local ADJ
and CCONJ
national ADJ
level NOUN
, PUNCT
and CCONJ
aid VERB
  SPACE
in ADP
the DET
prevention NOUN
, PUNCT
cure NOUN
, PUNCT
and CCONJ
treatment NOUN
. PUNCT
Since SCONJ
medical ADJ
researchers NOUN
know VERB
that SCONJ
the DET
virus NOUN
causing VERB
the DET
disease NOUN
is AUX
similar ADJ
to ADP
  SPACE
those DET
viruses NOUN
causing VERB
warts NOUN
, PUNCT
they PRON
feel VERB
a DET
cure NOUN
would AUX
be AUX
within ADP
reach NOUN
if SCONJ
money NOUN
  SPACE
were AUX
available ADJ
for ADP
research NOUN
. PUNCT
  SPACE
Because SCONJ
RRP PROPN
is AUX
rare ADJ
, PUNCT
it PRON
not PART
only ADV
gets VERB
scant ADJ
  SPACE
attention NOUN
but CCONJ
also ADV
paltry VERB
funds NOUN
to PART
search VERB
for ADP
a DET
cure NOUN
. PUNCT
  SPACE
Part NOUN
of ADP
the DET
RRP PROPN
  SPACE
Foundation PROPN
's PART
mission NOUN
is AUX
to PART
change VERB
that DET
. PUNCT
Anyone PRON
interested ADJ
in ADP
contributing VERB
items NOUN
to ADP
the DET
bake NOUN
and CCONJ
craft NOUN
sale NOUN
, PUNCT
please INTJ
call VERB
  SPACE
Marlene PROPN
or CCONJ
Bill PROPN
at ADP
609 NUM
- PUNCT
890 NUM
- PUNCT
0502 NUM
. PUNCT
  SPACE
Monetary ADJ
donations NOUN
can AUX
be AUX
made VERB
at ADP
the DET
  SPACE
Foundation PROPN
's PART
booth NOUN
during ADP
Communiversity PROPN
, PUNCT
April PROPN
24th NOUN
, PUNCT
12 NUM
to ADP
4 NUM
p.m. NOUN
, PUNCT
in ADP
downtown NOUN
  SPACE
Princeton PROPN
, PUNCT
or CCONJ
sent VERB
directly ADV
to PART
: PUNCT
			 SPACE
The DET
Recurrent PROPN
Respiratory PROPN
Foundation PROPN
	                 SPACE
50 NUM
Wesleyan PROPN
Drive PROPN
	                 SPACE
Hamilton PROPN
Sq PROPN
. PROPN
, PUNCT
NJ PROPN
  SPACE
08690.Thanks PUNCT
   SPACE
mstern@lindsay.princeton.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59014From NUM
: PUNCT
med50003@nusunix1.nus.sg PROPN
( PUNCT
WANSAICHEONG ADJ
KHIN PROPN
- PUNCT
LIN)Subject NUM
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?It NOUN
would AUX
be AUX
nice ADJ
to PART
think VERB
that SCONJ
individuals NOUN
can AUX
somehow ADV
' PUNCT
beat VERB
the DET
system'and PROPN
like SCONJ
a DET
space NOUN
explorer NOUN
, PUNCT
boldly ADV
go VERB
where ADV
no DET
man NOUN
has AUX
gone VERB
before ADP
andreturn NOUN
with ADP
a DET
prize NOUN
cure NOUN
. PUNCT
Unfortunately ADV
, PUNCT
too ADV
often ADV
the DET
prize NOUN
is AUX
limitedand VERB
the DET
efficacy NOUN
of ADP
the DET
' PUNCT
cure NOUN
' PUNCT
questionable ADJ
when ADV
applied VERB
to ADP
allsufferers NOUN
. PUNCT
This DET
applies VERB
to ADP
both CCONJ
medical ADJ
researchers NOUN
and CCONJ
non ADJ
- ADJ
medical ADJ
individuals NOUN
. PUNCT
Just ADV
because SCONJ
it PRON
appears VERB
in ADP
an DET
obscure ADJ
journal NOUN
and CCONJ
may AUX
be AUX
of ADP
some DET
usedoes NOUN
not PART
make VERB
the DET
next ADJ
cure NOUN
- PUNCT
all DET
. PUNCT
What PRON
about ADP
the DET
dozens NOUN
of ADP
individualswho PROPN
have AUX
courageously ADV
participated VERB
in ADP
clinical ADJ
trials NOUN
? PUNCT
Did AUX
they PRON
have AUX
anyguarentee NOUN
of ADP
cures NOUN
? PUNCT
Are AUX
they PRON
any DET
less ADV
because SCONJ
they PRON
did AUX
n't PART
trumpet VERB
theirstory NOUN
all ADV
over ADP
the DET
world?As NOUN
a DET
parting NOUN
note NOUN
, PUNCT
was AUX
n't PART
there ADV
some DET
studies NOUN
done VERB
on ADP
Gingko PROPN
seeds NOUN
forMeniere PROPN
's PART
? PUNCT
( PUNCT
To ADP
the DET
original ADJ
poster NOUN
: PUNCT
what PRON
about ADP
trying VERB
for ADP
a DET
trial NOUN
ofthat ADP
? PUNCT
It PRON
's AUX
probably ADV
not PART
a DET
final ADJ
answer NOUN
but CCONJ
it PRON
certainly ADV
may AUX
alleviatesome VERB
of ADP
the DET
discomfort NOUN
. PUNCT
And CCONJ
you PRON
'd AUX
be AUX
helping VERB
answer VERB
the DET
question NOUN
forfuture NOUN
sufferers.)gervaisNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59015From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
HerniaIn PROPN
article NOUN
< X
C5qopx.5Mq@encore.com X
> X
sheffner@encore.com X
( PUNCT
Steve PROPN
Heffner PROPN
) PUNCT
writes:>A NUM
bit VERB
more ADJ
than SCONJ
a DET
year NOUN
ago ADV
, PUNCT
a DET
hernia NOUN
in ADP
my PRON
right ADJ
groin NOUN
was AUX
> X
discovered VERB
. PUNCT
  SPACE
It PRON
had AUX
produced VERB
a DET
dull ADJ
pain NOUN
in ADP
that DET
area NOUN
. PUNCT
  SPACE
The DET
hernia PROPN
> X
was AUX
repaired VERB
using VERB
the DET
least ADV
intrusive ADJ
( PUNCT
orthoscopic PROPN
? PUNCT
) PUNCT
method NOUN
and CCONJ
a>"plug PROPN
and CCONJ
patch" PROPN
. PUNCT
I PRON
suspect VERB
you PRON
mean VERB
laparoscopic PROPN
instead ADV
of ADP
orthoscopic.>Now DET
the DET
pain NOUN
occurs VERB
more ADV
often ADV
. PUNCT
  SPACE
My PRON
GP PROPN
could AUX
n't PART
identify VERB
any DET
> X
specific ADJ
problem NOUN
. PUNCT
  SPACE
The DET
surgen NOUN
who PRON
performed VERB
the DET
original ADJ
procedure NOUN
> X
now ADV
says VERB
that SCONJ
yes INTJ
there PRON
is AUX
a DET
" PUNCT
new ADJ
" PUNCT
hernia NOUN
in ADP
the DET
same ADJ
area NOUN
and CCONJ
he PRON
> X
said VERB
that SCONJ
he PRON
has AUX
to PART
cut VERB
into ADP
the DET
area NOUN
for ADP
the DET
repair NOUN
this DET
time.>>My NOUN
question NOUN
to ADP
the DET
net NOUN
: PUNCT
  SPACE
Is AUX
there PRON
a DET
nonintrusive ADJ
method NOUN
to PART
> X
determine VERB
if SCONJ
in ADP
fact NOUN
there PRON
is AUX
a DET
hernia NOUN
or CCONJ
if SCONJ
the DET
pain NOUN
is AUX
from ADP
> X
something PRON
else?By PROPN
far ADV
the DET
( PUNCT
still ADV
) PUNCT
best ADJ
method NOUN
to PART
diagnose VERB
a DET
hernia NOUN
is AUX
old ADJ
fashionedphysical ADJ
examination NOUN
. PUNCT
If SCONJ
you PRON
have AUX
an DET
obvious ADJ
hernia PROPN
sac NOUN
coming VERB
down ADP
into ADP
your PRON
scrotum NOUN
, PUNCT
or CCONJ
a DET
bulge NOUN
in ADP
your PRON
groin NOUN
that PRON
is AUX
brought VERB
about ADP
byincreasing VERB
intra ADJ
- ADJ
abdominal ADJ
pressure NOUN
.... PUNCT
Sometimes ADV
is AUX
not PART
that ADV
obvious ADJ
. PUNCT
The DET
hernia NOUN
is AUX
small ADJ
and CCONJ
you PRON
can AUX
only ADV
detect VERB
it PRON
by ADP
putting VERB
your PRON
finger NOUN
into ADP
the DET
inguinal ADJ
canal NOUN
. PUNCT
Whether SCONJ
you PRON
have AUX
a DET
recurrent NOUN
hernia NOUN
, PUNCT
or CCONJ
this DET
is AUX
related VERB
to ADP
the DET
previousoperation NOUN
, PUNCT
I PRON
ca AUX
n't PART
tell VERB
you PRON
. PUNCT
The DET
person NOUN
that PRON
examined VERB
you PRON
is AUX
in ADP
  SPACE
the DET
bestposition NOUN
to PART
make VERB
that DET
determination NOUN
. PUNCT
Are AUX
there PRON
non ADJ
- ADJ
invasive ADJ
ways NOUN
of ADP
diagnosing VERB
a DET
hernia NOUN
? PUNCT
Every DET
now ADV
and CCONJ
then ADV
folks NOUN
write VERB
about ADP
CT NOUN
scans NOUN
and CCONJ
ultrasounds VERB
for ADP
this DET
. PUNCT
But CCONJ
these DET
are AUX
fartoo ADV
expensive ADJ
, PUNCT
and CCONJ
unlikely ADJ
to PART
be AUX
better ADJ
than SCONJ
a DET
trained VERB
examining NOUN
finger.====================================Howard PROPN
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59016From NUM
: PUNCT
med50003@nusunix1.nus.sg PROPN
( PUNCT
WANSAICHEONG ADJ
KHIN PROPN
- PUNCT
LIN)Subject NUM
: PUNCT
Re ADP
: PUNCT
Lasers NOUN
for ADP
dermatologistsIt PROPN
is AUX
not PART
true ADJ
that SCONJ
dermatologists NOUN
gave VERB
not PART
reached VERB
the DET
laser NOUN
age NOUN
, PUNCT
infact ADJ
, PUNCT
lasers NOUN
in ADP
dermatological ADJ
surgery NOUN
is AUX
a DET
very ADV
new ADJ
and CCONJ
exciting ADJ
field NOUN
. PUNCT
It PRON
probably ADV
wo AUX
n't PART
be AUX
effective ADJ
in ADP
tinea NOUN
pedis PROPN
because SCONJ
the DET
laser NOUN
isusually ADV
a DET
superficial ADJ
burn NOUN
( PUNCT
to PART
avoid VERB
any DET
deeper ADJ
damage NOUN
) PUNCT
. PUNCT
Limited ADJ
tineapedis NOUN
can AUX
be AUX
cured VERB
albeit SCONJ
sometimes ADV
slowly ADV
by ADP
topical ADJ
antifungals NOUN
aswell NOUN
as SCONJ
systemic ADJ
medication NOUN
i.e. X
tablets NOUN
. PUNCT
Finally ADV
, PUNCT
a DET
self NOUN
- PUNCT
diagnosis NOUN
isnot NOUN
always ADV
reliable ADJ
, PUNCT
lichen PROPN
simplex PROPN
chronicus PROPN
can AUX
look VERB
like SCONJ
a DET
fungalinfection NOUN
and CCONJ
requires VERB
very ADV
different ADJ
treatment.gervaisNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59017From NUM
: PUNCT
jer@prefect.cc.bellcore.com PROPN
( PUNCT
rathmann PROPN
, PUNCT
janice PROPN
e)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
1993Apr19.171938.17930@porthos.cc.bellcore.com NUM
> X
, PUNCT
jil@donuts0.uucp PROPN
( PUNCT
Jamie PROPN
Lubin PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
19671@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
> X
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
> X
> X
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
> X
> X
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
> X
> X
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
> X
> X
> X
> X
There PRON
is AUX
eye NOUN
dominance NOUN
same ADJ
as SCONJ
handedness NOUN
( PUNCT
and CCONJ
usually ADV
for ADP
the DET
> X
> X
same ADJ
side NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
refractive ADJ
error NOUN
, PUNCT
however ADV
. PUNCT
> X
> X
I PRON
recall VERB
reading VERB
/ PUNCT
seeing VERB
that SCONJ
former ADJ
baseball NOUN
star NOUN
Chris PROPN
Chambliss PROPN
' PUNCT
hitting VERB
> X
abilities NOUN
were AUX
( PUNCT
in ADP
part NOUN
) PUNCT
attributed VERB
to ADP
a DET
combination NOUN
of ADP
left ADJ
- PUNCT
handedness NOUN
& CCONJ
> X
right ADJ
- PUNCT
eye NOUN
dominance NOUN
. PUNCT
I PRON
was AUX
part NOUN
of ADP
a DET
study NOUN
a DET
few ADJ
years NOUN
ago ADV
at ADP
the DET
University PROPN
of ADP
Arizona PROPN
tosee NOUN
whether SCONJ
cross ADJ
dominant ADJ
individuals NOUN
( PUNCT
those DET
with ADP
a DET
particular ADJ
handednessbut NOUN
who PRON
had AUX
dominance NOUN
in ADP
the DET
opposite ADJ
eye NOUN
) PUNCT
were AUX
better ADJ
hitters NOUN
thanthose ADJ
with ADP
same ADJ
side NOUN
dominance NOUN
of ADP
hand NOUN
and CCONJ
eye NOUN
. PUNCT
  SPACE
I PRON
was AUX
picked VERB
frommy ADJ
softball ADJ
class NOUN
because SCONJ
I PRON
was AUX
cross VERB
dominant ADJ
( PUNCT
right ADJ
hand NOUN
, PUNCT
left VERB
eye)which PROPN
put VERB
me PRON
in ADP
a DET
small ADJ
minority NOUN
( PUNCT
and CCONJ
the DET
grad ADJ
student NOUN
was AUX
trying VERB
to PART
getan PROPN
equal ADJ
number NOUN
of ADP
cross NOUN
dominant ADJ
and CCONJ
same ADJ
side NOUN
dominant ADJ
people NOUN
) PUNCT
. PUNCT
  SPACE
Tocontrol PROPN
the DET
study NOUN
, PUNCT
she PRON
used VERB
a DET
pitching VERB
machine NOUN
- PUNCT
fast ADJ
pitch NOUN
. PUNCT
  SPACE
SinceI PROPN
was AUX
used VERB
to PART
slow VERB
pitch NOUN
, PUNCT
I PRON
did AUX
n't PART
come VERB
close ADV
( PUNCT
actually ADV
I PRON
thinkI PROPN
foul ADV
tipped VERB
a DET
few ADJ
) PUNCT
to ADP
hitting VERB
the DET
ball NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
were AUX
a DET
lot NOUN
of ADP
peoplelike VERB
me PRON
in ADP
her PRON
study NOUN
( PUNCT
i.e. X
, PUNCT
those DET
who PRON
ca AUX
n't PART
hit VERB
fast ADJ
pitch NOUN
, PUNCT
or CCONJ
arenot NOUN
used VERB
to ADP
hitting VERB
off ADP
a DET
machine NOUN
) PUNCT
, PUNCT
  SPACE
I PRON
would AUX
seriously ADV
question VERB
theresults NOUN
of ADP
that DET
study NOUN
! PUNCT
! PUNCT
  SPACE
I PRON
think VERB
there PRON
have AUX
been AUX
some DET
studies NOUN
of ADP
majorleague NOUN
players NOUN
( PUNCT
across ADP
a DET
fairly ADV
large ADJ
cross NOUN
section NOUN
of ADP
players NOUN
) PUNCT
to PART
testwhether VERB
eye NOUN
dominance NOUN
being AUX
the DET
same ADJ
or CCONJ
opposite ADJ
side NOUN
was AUX
" PUNCT
better ADJ
" PUNCT
-but CCONJ
I PRON
do AUX
n't PART
know VERB
the DET
results NOUN
. PUNCT
  SPACE
( PUNCT
The DET
woman NOUN
who PRON
ran VERB
the DET
study NOUN
I PRON
was AUX
insaid VERB
that SCONJ
there PRON
was AUX
a DET
higher ADJ
incidence NOUN
of ADP
crossdominance NOUN
in ADP
majorleaguers NOUN
than SCONJ
across ADP
the DET
general ADJ
population NOUN
- PUNCT
but CCONJ
I PRON
'm AUX
not PART
surewhether ADJ
I PRON
'd AUX
believe VERB
her.)Janice PROPN
RathmannNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59018From NUM
: PUNCT
plebrun@minfminf.vub.ac.be PROPN
( PUNCT
Philippe PROPN
Lebrun)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Bursitis PROPN
and CCONJ
laser NOUN
treatmentIn NOUN
article NOUN
< X
1993Apr17.190104.14072@freenet.carleton.ca NUM
> X
, PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
My PRON
family NOUN
doctor NOUN
and CCONJ
the DET
physiotherapist NOUN
( PUNCT
PT PROPN
) PUNCT
she PRON
sent VERB
me PRON
to PART
agree VERB
that SCONJ
the| PROPN
> X
pain NOUN
in ADP
my PRON
left ADJ
shoulder NOUN
is AUX
bursitis NOUN
. PUNCT
I PRON
have AUX
an DET
appointment NOUN
with ADP
an DET
orthpod| NOUN
> X
( PUNCT
I PRON
love VERB
that DET
, PUNCT
it PRON
's AUX
short ADJ
for ADP
' PUNCT
orthopedic ADJ
surgeon NOUN
, PUNCT
apparently ADV
) PUNCT
but CCONJ
while SCONJ
I'm| NUM
> X
waiting VERB
the DET
PT PROPN
is AUX
treating VERB
me.| PROPN
> X
| INTJ
> X
She PRON
's AUX
using VERB
hot ADJ
packs NOUN
, PUNCT
ultrasound NOUN
, PUNCT
and CCONJ
lasers NOUN
, PUNCT
but CCONJ
there PRON
's AUX
no DET
improvement| NOUN
> X
yet ADV
. PUNCT
In ADP
fact NOUN
, PUNCT
I PRON
almost ADV
suspect VERB
it PRON
's AUX
getting VERB
worse.| PROPN
> X
| ADV
> X
My PRON
real ADJ
question NOUN
is AUX
about ADP
the DET
laser NOUN
treatment NOUN
. PUNCT
I PRON
ca AUX
n't PART
easily ADV
imagine VERB
what| NOUN
> X
the DET
physical ADJ
effect NOUN
that PRON
could AUX
have AUX
on ADP
a DET
deep ADJ
tissue NOUN
problem NOUN
. PUNCT
Can AUX
anyone| NOUN
> X
shed VERB
some DET
light NOUN
( PUNCT
so ADV
to PART
speak VERB
) PUNCT
on ADP
the DET
matter?If PROPN
it PRON
works VERB
it PRON
's AUX
only ADV
due ADP
to ADP
the DET
heat NOUN
produced VERB
by ADP
the DET
laser.-philippeNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59019From NUM
: PUNCT
francis@ircam.fr PROPN
( PUNCT
Joseph PROPN
Francis)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
Crullerian PROPN
. PUNCT
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
> PROPN
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
> X
appreciated VERB
. PUNCT
Crullerian ADJ
photography NOUN
is AUX
n't PART
educational ADJ
, PUNCT
except SCONJ
in ADP
a DET
purely ADV
satiricsense NOUN
. PUNCT
> X
	 SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
> X
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
> X
object NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
> X
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
> X
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
> VERB
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
> X
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
Crullerian ADJ
photography NOUN
involves VERB
putting VERB
donuts NOUN
between ADP
grease NOUN
- PUNCT
coveredhot NOUN
metal NOUN
plates NOUN
while SCONJ
illuminating VERB
them PRON
with ADP
a DET
Krypton PROPN
Stroboscope PROPN
. PUNCT
Through ADP
a DET
unique ADJ
iteration NOUN
involving VERB
the DET
4th ADJ
- PUNCT
dimensional ADJ
projection NOUN
ofa PROPN
torus PROPN
through ADP
the DET
semi ADJ
- ADJ
stochastic ADJ
interactions NOUN
of ADP
hot ADJ
monomolecularlipid ADJ
layers NOUN
covering VERB
the DET
metal NOUN
plates NOUN
( PUNCT
the DET
best ADJ
metal NOUN
is AUX
iron NOUN
sinceit NOUN
repels NOUN
Vampires PROPN
and CCONJ
Succubi PROPN
) PUNCT
the DET
donuts NOUN
start VERB
developing VERB
flutes NOUN
, PUNCT
and CCONJ
within ADP
moments NOUN
actually ADV
become VERB
poly NOUN
- PUNCT
crenellated VERB
hot ADJ
greasybreadtubes NOUN
. PUNCT
Some DET
people NOUN
believe VERB
that SCONJ
food NOUN
is AUX
the DET
way NOUN
to ADP
a DET
man NOUN
's PART
heart NOUN
, PUNCT
but CCONJ
most ADJ
psychics NOUN
agree VERB
that SCONJ
there PRON
is AUX
nothing PRON
like SCONJ
hot ADJ
Crullers NOUN
forbreakfast NOUN
; PUNCT
the DET
chemical ADJ
composition NOUN
of ADP
crullers NOUN
is AUX
a DET
mystery NOUN
, PUNCT
somethought ADJ
evidence NOUN
of ADP
Charles PROPN
Fort PROPN
's PART
channeling NOUN
in ADP
Stevie PROPN
Wonder'sproduction NUM
of ADP
" PUNCT
The DET
Secret ADJ
Life NOUN
of ADP
Plants PROPN
" PUNCT
when ADV
played VERB
backwards ADV
in ADP
thetheatre NOUN
of ADP
unnaturally ADV
fertile ADJ
Findhorn PROPN
Farms PROPN
has AUX
deduced VERB
that SCONJ
theyare PROPN
complex ADJ
carbohydrates VERB
ordinarily ADV
only ADV
found VERB
by ADP
spectoscopy NOUN
in ADP
theMagellenic PROPN
Clouds PROPN
. PUNCT
I PRON
called VERB
Devi PROPN
on ADP
my PRON
Orgone PROPN
Box PROPN
and CCONJ
asked VERB
her PRON
ifthis NOUN
was AUX
really ADV
the DET
case NOUN
, PUNCT
and CCONJ
she PRON
TM PROPN
levitated VERB
me PRON
a DET
letter NOUN
across ADP
theAtlantic PROPN
to PART
tell VERB
me PRON
it PRON
was AUX
indeed ADV
not PART
just ADV
another DET
case NOUN
ofmisunderstanding VERB
Tesla PROPN
, PUNCT
though SCONJ
the DET
Miskatonic PROPN
University PROPN
hasn'tconfirmed PUNCT
anything PRON
at ADV
all ADV
. PUNCT
At ADP
least ADJ
the DET
Crullers NOUN
taste VERB
good NOUN
; PUNCT
I PRON
got VERB
therecipe NOUN
from ADP
Kaspar PROPN
Hauser.-- PROPN
| PROPN
Le PROPN
Jojo PROPN
: PUNCT
Fresh PROPN
' CCONJ
n CCONJ
' PUNCT
Clean ADJ
, PUNCT
speaking VERB
out SCONJ
to ADP
the DET
way NOUN
you PRON
want VERB
to PART
live| VERB
today NOUN
; PUNCT
American PROPN
- PUNCT
All DET
American PROPN
; PUNCT
doing VERB
, PUNCT
a DET
bit NOUN
so ADV
, PUNCT
and CCONJ
even ADV
more ADV
so ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59020From NUM
: PUNCT
swkirch@sun6850.nrl.navy.mil PROPN
( PUNCT
Steve PROPN
Kirchoefer)Subject PROPN
: PUNCT
3rd ADJ
CFV PROPN
and CCONJ
VOTE PROPN
ACK PROPN
: PUNCT
misc.health.diabetesThis PRON
is AUX
the DET
third ADJ
and CCONJ
final ADJ
call NOUN
for ADP
votes NOUN
for ADP
the DET
creation NOUN
of ADP
thenewsgroup NOUN
misc.health.diabetes PROPN
. PUNCT
  SPACE
A DET
mass ADJ
acknowledgement NOUN
of ADP
valid PROPN
votesreceived VERB
as SCONJ
of ADP
April PROPN
19th NOUN
14:00 NUM
GMT PROPN
appears VERB
at ADP
the DET
end NOUN
of ADP
thisposting NOUN
. PUNCT
  SPACE
Please INTJ
check VERB
the DET
list NOUN
to PART
be AUX
sure ADJ
that SCONJ
your PRON
vote NOUN
has AUX
beenregistered VERB
. PUNCT
  SPACE
Read VERB
the DET
instructions NOUN
for ADP
voting VERB
carefully ADV
and CCONJ
followthem PRON
precisely ADV
to PART
be AUX
certain ADJ
that SCONJ
you PRON
place VERB
a DET
proper ADJ
vote NOUN
. PUNCT
Instructions NOUN
for ADP
voting NOUN
: PUNCT
To PART
place VERB
a DET
vote NOUN
FOR ADP
the DET
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
anemail NOUN
message NOUN
to ADP
yes@sun6850.nrl.navy.mil PRON
To PART
place VERB
a DET
vote NOUN
AGAINST ADJ
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
anemail NOUN
message NOUN
to ADP
no@sun6850.nrl.navy.mil PRON
The DET
contents NOUN
of ADP
the DET
message NOUN
should AUX
contain VERB
the DET
line NOUN
" PUNCT
I PRON
votefor VERB
/ SYM
against ADP
misc.health.diabetes PROPN
as SCONJ
proposed VERB
" PUNCT
. PUNCT
  SPACE
Email NOUN
messages NOUN
sent VERB
tothe ADV
above ADP
addresses NOUN
must AUX
constitute VERB
unambiguous ADJ
and CCONJ
unconditionalvotes NOUN
for ADP
/ SYM
against ADP
newsgroup PROPN
creation NOUN
as SCONJ
proposed VERB
. PUNCT
  SPACE
Conditional ADJ
voteswill NOUN
not PART
be AUX
accepted VERB
. PUNCT
  SPACE
Only ADV
votes NOUN
emailed VERB
to ADP
the DET
above ADJ
addresses NOUN
willbe PROPN
counted VERB
; PUNCT
mailed VERB
replies VERB
to ADP
this DET
posting NOUN
will AUX
be AUX
returned VERB
. PUNCT
  SPACE
In ADP
theevent NOUN
that SCONJ
more ADJ
than SCONJ
one NUM
vote NOUN
is AUX
placed VERB
by ADP
an DET
individual NOUN
, PUNCT
only ADV
themost ADJ
recent ADJ
vote NOUN
will AUX
be AUX
counted VERB
. PUNCT
Voting NOUN
will AUX
continue VERB
until ADP
23:59 NUM
GMT PROPN
, PUNCT
29 NUM
Apr PROPN
93.Votes NUM
will AUX
not PART
be AUX
accepted VERB
after ADP
this DET
date NOUN
. PUNCT
Any DET
administrative ADJ
inquiries NOUN
pertaining VERB
to ADP
this DET
CFV PROPN
may AUX
be AUX
made VERB
byemail ADJ
to ADP
swkirch@sun6850.nrl.navy.mil PROPN
The DET
proposed VERB
charter NOUN
appears VERB
below ADV
. PUNCT
-------------------------- PUNCT
Charter NOUN
: PUNCT
   SPACE
misc.health.diabetes PROPN
                            SPACE
unmoderated ADJ
1 NUM
. PUNCT
   SPACE
The DET
purpose NOUN
of ADP
misc.health.diabetes PROPN
is AUX
to PART
provide VERB
a DET
forum NOUN
for ADP
thediscussion NOUN
of ADP
issues NOUN
pertaining VERB
to ADP
diabetes NOUN
management NOUN
, PUNCT
i.e. X
: PUNCT
diet NOUN
, PUNCT
activities NOUN
, PUNCT
medicine NOUN
schedules NOUN
, PUNCT
blood NOUN
glucose NOUN
control NOUN
, PUNCT
exercise NOUN
, PUNCT
medical ADJ
breakthroughs NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
group NOUN
addresses VERB
the DET
issues NOUN
ofmanagement NOUN
of ADP
both DET
Type NOUN
I PRON
( PUNCT
insulin NOUN
dependent ADJ
) PUNCT
and CCONJ
Type PROPN
II PROPN
( PUNCT
non ADJ
- ADJ
insulindependent ADJ
) PUNCT
diabetes VERB
. PUNCT
  SPACE
Both DET
technical ADJ
discussions NOUN
and CCONJ
general ADJ
supportdiscussions NOUN
relevant ADJ
to ADP
diabetes NOUN
are AUX
welcome ADJ
. PUNCT
2 NUM
. PUNCT
   SPACE
Postings NOUN
to ADP
misc.heath.diabetes NOUN
are AUX
intended VERB
to PART
be AUX
for ADP
discussionpurposes NOUN
only ADV
, PUNCT
and CCONJ
are AUX
in ADP
no DET
way NOUN
to PART
be AUX
construed VERB
as SCONJ
medical ADJ
advice NOUN
. PUNCT
Diabetes NOUN
is AUX
a DET
serious ADJ
medical ADJ
condition NOUN
requiring VERB
direct ADJ
supervisionby PROPN
a DET
primary ADJ
health NOUN
care NOUN
physician NOUN
. PUNCT
   SPACE
-----(end NOUN
of ADP
charter)----- NUM
The DET
following VERB
individuals NOUN
have AUX
sent VERB
in ADP
valid ADJ
votes NOUN
: PUNCT
9781BMU@VMS.CSD.MU.EDU X
                  SPACE
Bill PROPN
Satterleea2wj@loki.cc.pdx.edu PROPN
                    SPACE
Jim PROPN
Williamsac534@freenet.carleton.ca PUNCT
               SPACE
Colin PROPN
Heneinad@cat.de ADV
                               SPACE
Axel PROPN
Dunkelal198723@academ07.mty.itesm.mx NUM
          SPACE
Jesus PROPN
Eugenio PROPN
S PROPN
nchez VERB
Pe PROPN
~ PUNCT
aanugula@badlands NOUN
. PUNCT
NoDak.edu NUM
              SPACE
RamaKrishna PROPN
Reddy PROPN
Anugulaapps@sneaks NOUN
. PUNCT
Kodak.com PROPN
                   SPACE
Robert PROPN
W. PROPN
Appsarperd00@mik.uky.edu PROPN
                    SPACE
alicia PROPN
r NOUN
perduebaind@gov.on.ca NUM
                         SPACE
Dave PROPN
Bainbalamut@morris.hac.com PROPN
                  SPACE
Morris PROPN
Balamutbch@Juliet.Caltech.EduBGAINES@ollamh.ucd.ie NOUN
                   SPACE
Brian PROPN
GainesBjorn.B.Larsen@delab.sintef.nobobw@hpsadwc.sad.hp.com X
                 SPACE
Bob PROPN
Waltenspielbruce@uxb.liverpool.ac.uk PROPN
               SPACE
brucebspencer@binkley.cs.mcgill.ca VERB
           SPACE
Brian PROPN
SPENCERcline@usceast.cs.scarolina.edu NOUN
          SPACE
Ernest PROPN
A. PROPN
Clinecoleman@twin.twinsun.com PROPN
                SPACE
Mike PROPN
Colemancompass-da.com!tomd@compass-da.com PROPN
      SPACE
Thomas PROPN
Donnellycsc@coast.ucsd.edu PROPN
                      SPACE
Charles PROPN
Coughrancurtech!sbs@unh.edu PROPN
                     SPACE
Stephanie PROPN
Bradley-Swiftdebrum#m#_brenda@msgate.corp.apple.com PROPN
  SPACE
DeBrum PROPN
, PUNCT
Brendadlb@fanny.wash.inmet.com PROPN
                SPACE
David PROPN
Bartondlg1@midway.uchicago.edu PROPN
                SPACE
deborah PROPN
lynn VERB
gillaspiedougb@comm.mot.com PROPN
                      SPACE
Douglas PROPN
Banked@titipu.resun.com X
                     SPACE
Edward PROPN
Reidedmoore@hpvclc.vcd.hp.com PROPN
               SPACE
Ed PROPN
Mooreejo@kaja.gi.alaska.edu PROPN
                  SPACE
Eric PROPN
J. PROPN
Olsonemcguire@intellection.com PROPN
               SPACE
Ed PROPN
McGuireewc@hplb.hpl.hp.com PROPN
                     SPACE
Enrico PROPN
Coierafeathr::bluejay@ampakz.enet.dec.comfranklig@GAS.uug.Arizona.EDU PROPN
            SPACE
Gregory PROPN
C PROPN
Franklin PROPN
FSSPR@acad3.alaska.edu PROPN
                  SPACE
Hardcore PROPN
Alaskangabe@angus.mi.org PROPN
                       SPACE
Gabe PROPN
Helougasp@medg.lcs.mit.edu NUM
                   SPACE
Isaac PROPN
Kohanegasp@medg.lcs.mit.edu PROPN
                   SPACE
Isaac PROPN
KohaneGeir PROPN
. PUNCT
Millstein@TF.tele.noggurman@cory X
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
               SPACE
Gail PROPN
Gurmanggw@wolves VERB
. PUNCT
Durham PROPN
. PUNCT
NC.US PROPN
                 SPACE
Gregory PROPN
G. PROPN
Woodburygreenlaw@oasys.dt.navy.mil PROPN
              SPACE
Leila PROPN
Thomasgrm+@andrew.cmu.edu PROPN
                     SPACE
Gretchen PROPN
Millerhalderc@cs.rpi.eduHANDELAP%DUVM.BITNET@pucc.Princeton.EDU PROPN
Phil PROPN
Handelhansenr@ohsu VERB
. PUNCT
EDUhc@Nyongwa.cam.org PROPN
                      SPACE
hcheddings@chrisco.nrl.navy.mil NUM
           SPACE
Hubert PROPN
Heddingsherbison@lassie.ucx.lkg.dec.com X
         SPACE
B.J.hmpetro@mosaic.uncc.edu ADJ
                 SPACE
Herbert PROPN
M PROPN
PetroHOSCH2263@iscsvax.uni.eduhrubin@pop.stat.purdue.edu PROPN
              SPACE
Herman PROPN
RubinHUDSOIB@AUDUCADM.DUC.AUBURN.EDU PROPN
         SPACE
Ingrid PROPN
B. PROPN
Hudsonhuff@MCCLB0.MED.NYU.EDU PROPN
                 SPACE
Edward PROPN
J. PROPN
Huffhuffman@ingres.com PROPN
                      SPACE
Gary PROPN
HuffmanHUYNH_1@ESTD.NRL.NAVY.MIL PROPN
               SPACE
Minh PROPN
Huynhishbeld@cix.compulink.co.uk PROPN
             SPACE
Ishbel PROPN
DonkinJames PROPN
. PUNCT
Langdell@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
              SPACE
James PROPN
Langdelljamyers@netcom.com PROPN
                      SPACE
John PROPN
A. PROPN
Myersjc@crosfield.co.uk PROPN
                      SPACE
jerry PROPN
cullingfordjesup@cbmvax.cbm.commodore.com X
          SPACE
Randell PROPN
Jesupjjmorris@gandalf.rutgers.edu PROPN
            SPACE
Joyce PROPN
Morrisjoep@dap.csiro.au PROPN
                       SPACE
Joe PROPN
PetranovicJohn.Burton@acenet.auburn.edu PROPN
           SPACE
John PROPN
E. PROPN
Burton PROPN
Jr.johncha@comm.mot.comJORGENSONKE@CC.UVCC.EDUjpsum00@mik.uky.edu PROPN
                     SPACE
joey PROPN
p PROPN
sumJTM@ucsfvm.ucsf.edu PROPN
                     SPACE
John PROPN
Maynardjulien@skcla.monsanto.comkaminski@netcom.com PROPN
                     SPACE
Peter PROPN
Kaminskikerry@citr.uq.oz.au PROPN
                     SPACE
Kerry PROPN
Raymondkieran@world.std.com PROPN
                    SPACE
Aaron PROPN
L PROPN
Dickeyknauer@cs.uiuc.edu PROPN
                      SPACE
Rob PROPN
Knauerhasekolar@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
                 SPACE
Jennifer PROPN
Lynn PROPN
Kolarkriguer@tcs.com PROPN
                         SPACE
Marc PROPN
Kriguerlau@ai.sri.com PROPN
                          SPACE
Stephen PROPN
Laulee@hal.com PROPN
                             SPACE
Lee PROPN
Boylanlmt6@po.cwru.edulunie@Lehigh.EDUlusgr@chili.CC.Lehigh.EDU PROPN
               SPACE
Stephen PROPN
G. PROPN
RosemanM.Beamish@ins.gu.edu.au PROPN
                 SPACE
Marilyn PROPN
BeamishM.Rich@ens.gu.edu.au PROPN
                    SPACE
Maurice PROPN
H. PROPN
Rich.maas@cdfsga.fnal.gov PROPN
                    SPACE
Peter PROPN
Maasmacridis_g@kosmos.wcc.govt.nz NOUN
           SPACE
Gerry PROPN
Macridismarkv@hpvcivm.vcd.hp.com PROPN
                SPACE
Mark PROPN
VanderfordMASCHLER@vms.huji.ac.ilmcb@net.bio.net PROPN
                         SPACE
Michael PROPN
C. PROPN
Berchmcday@ux1.cso.uiuc.edumcookson@flute.calpoly.edumfc@isr.harvard.edu PROPN
                     SPACE
Mauricio PROPN
F PROPN
Contrerasmg@wpi.edu PROPN
                              SPACE
Martha PROPN
Gunnarsonmhollowa@libserv1.ic.sunysb.edu NOUN
         SPACE
Michael PROPN
Hollowaymisha@abacus.concordia.ca PROPN
               SPACE
MISHA PROPN
GLOUBERMAN PROPN
mjb@cs.brown.edu PROPN
                        SPACE
Manish ADJ
ButteMOFLNGAN@vax1.tcd.iemuir@idiom.berkeley.ca.us PROPN
               SPACE
David PROPN
Muir PROPN
SharnoffNancy PROPN
. PUNCT
Block@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
                 SPACE
Nancy PROPN
Blockndallen@r-node.hub.org PROPN
                  SPACE
Nigel PROPN
Allennlr@B31.nei.nih.gov PROPN
                     SPACE
Rohrer PROPN
, PUNCT
Nathanowens@cookiemonster.cc.buffalo.edu PROPN
      SPACE
Bill PROPN
Owenspams@hpfcmp.fc.hp.com NUM
                   SPACE
Pam PROPN
Sullivanpapresco@undergrad.math.uwaterloo.ca NOUN
    SPACE
Paul PROPN
Prescodpaslowp@cs.rpi.edupillinc@gov.on.ca PROPN
                       SPACE
Christopher PROPN
Pillingpkane@cisco.com PROPN
                         SPACE
Peter PROPN
Kanepopelka@odysseus.uchicago.edu PROPN
           SPACE
Glenn PROPN
Popelkapulkka@cs.washington.edu PROPN
                SPACE
Aaron PROPN
Pulkkapwatkins@med.unc.edu NUM
                    SPACE
Pat NOUN
Watkinsrbnsn@mosaic.shearson.com X
               SPACE
Ken PROPN
Robinsonrick@crick.ssctr.bcm.tmc.edu PROPN
            SPACE
Richard PROPN
H. PROPN
Millerrobyn@media.mit.edu PROPN
                     SPACE
Robyn PROPN
Kozierokrolf@green.mathematik.uni-stuttgart.de PROPN
  SPACE
Rolf PROPN
Schreibersageman@cup.portal.comsasjcs@unx.sas.com X
                      SPACE
Joan PROPN
StoutSCOTTJOR@delphi.comscrl@hplb.hpl.hp.comscs@vectis.demon.co.uk PROPN
                  SPACE
Stuart PROPN
C. PROPN
Squibbshan@techops.cray.com X
                   SPACE
Sharan PROPN
Kalwanisharen@iscnvx.lmsc.lockheed.com PROPN
         SPACE
Sharen PROPN
A. PROPN
Rundshazam@unh.edu PROPN
                          SPACE
Matthew PROPN
T PROPN
Thompsonshipman@csab.larc.nasa.gov PROPN
              SPACE
Floyd PROPN
S. PROPN
Shipmanshoppa@ERIN.CALTECH.EDU NOUN
                 SPACE
Tim PROPN
Shoppaslillie@cs1.bradley.edu PROPN
                 SPACE
Susan PROPN
Lilliesteveo@world.std.com PROPN
                    SPACE
Steven PROPN
W PROPN
Orrsurendar@ivy PROPN
. PUNCT
WPI.EDU PROPN
                    SPACE
Surendar PROPN
Chandraswkirch@sun6850.nrl.navy.mil PROPN
            SPACE
Steven PROPN
KirchoeferS_FAGAN@twu.eduTARYN@ARIZVM1.ccit.arizona.edu PROPN
          SPACE
Taryn PROPN
L. PROPN
WestergaardThomas.E.Taylor@gagme.chi.il.us PROPN
         SPACE
Thomas PROPN
E PROPN
Taylortima@CFSMO.Honeywell NOUN
. PUNCT
COM PROPN
                SPACE
Timothy PROPN
D NOUN
Aanerudtsamuel%gollum@relay.nswc.navy.mil X
      SPACE
Tony PROPN
SamuelU45301@UICVM.UIC.EDU NOUN
                    SPACE
M. PROPN
Jacobs PROPN
  SPACE
vstern@gte.com X
                          SPACE
Vanessa PROPN
Sternwahlgren@haida.van.wti.com NUM
              SPACE
James PROPN
Wahlgrenwaterfal@pyrsea.sea.pyramid.com X
         SPACE
Douglas PROPN
Waterfallweineja1@teomail.jhuapl.eduwgrant@informix.com PROPN
                     SPACE
William PROPN
GrantYEAGER@mscf.med.upenn.eduyozzo@watson.ibm.com PROPN
                    SPACE
Ralph PROPN
E. PROPN
YozzoZ919016@beach.utmb.edu NOUN
                  SPACE
Molly PROPN
Hamilton-- PROPN
Steve PROPN
Kirchoefer PROPN
                                             SPACE
( PUNCT
202 NUM
) PUNCT
767 NUM
- SYM
2862Code NUM
6851 NUM
                                      SPACE
kirchoefer@estd.nrl.navy.milNaval PROPN
Research PROPN
Laboratory PROPN
                       SPACE
Microwave PROPN
Technology PROPN
BranchWashington PROPN
, PUNCT
DC PROPN
  SPACE
20375 NUM
- SYM
5000 NUM
              SPACE
Electronics PROPN
Sci PROPN
. PUNCT
and CCONJ
Tech PROPN
. PUNCT
DivisionNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59021From NUM
: PUNCT
bmdelane@midway.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
RESULT NOUN
: PUNCT
sci.life-extension NOUN
passes VERB
237:28The NUM
vote NOUN
to PART
create VERB
the DET
proposed VERB
group NOUN
, PUNCT
Sci.life NOUN
- PUNCT
extension NOUN
, PUNCT
wasaffirmative ADJ
. PUNCT
Yes INTJ
votes NOUN
: PUNCT
    SPACE
237.No NUM
votes NOUN
: PUNCT
      SPACE
28.What NUM
follows VERB
is AUX
a DET
list NOUN
of ADP
the DET
people NOUN
who PRON
voted VERB
, PUNCT
by ADP
vote NOUN
( PUNCT
" PUNCT
no INTJ
" PUNCT
or CCONJ
" PUNCT
yes").Here PROPN
are AUX
the DET
people NOUN
who PRON
voted VERB
NO:bailey@utpapa.ph.utexas.edu PROPN
               SPACE
( PUNCT
Ed PROPN
Bailey)barkdoll@lepomis.psych.upenn.edu X
          SPACE
( PUNCT
Edwin PROPN
Barkdoll)msb@sq.com PROPN
                                SPACE
( PUNCT
Mark PROPN
Brader)carr@acsu.buffalo.edu PROPN
                     SPACE
( PUNCT
Dave PROPN
Carr)desj@ccr-p.ida.org PROPN
                        SPACE
( PUNCT
David PROPN
desJardins)jbh@Anat PROPN
. PUNCT
UMSMed ADJ
. PUNCT
Edu PROPN
                       SPACE
( PUNCT
James PROPN
B. PROPN
Hutchins)rsk@gynko.circ.upenn.edu PROPN
                  SPACE
( PUNCT
Rich PROPN
Kulawiec)stu@valinor.mythical.com X
                  SPACE
( PUNCT
Stu PROPN
Labovitz)lau@ai.sri.com PROPN
                            SPACE
( PUNCT
Stephen PROPN
Lau)plebrun@minf8.vub.ac.be PROPN
                   SPACE
( PUNCT
Philippe PROPN
Lebrun)jmaynard@nyx.cs.du.edu PROPN
                    SPACE
( PUNCT
Jay PROPN
Maynard)emcguire@intellection.com PROPN
                 SPACE
( PUNCT
Ed PROPN
McGuire)rick@crick.ssctr.bcm.tmc.edu PROPN
              SPACE
( PUNCT
Richard PROPN
H. PROPN
Miller)smarry@zooid.guild.org PROPN
                    SPACE
( PUNCT
Marc PROPN
Moorcroft)dmosher@nyx.cs.du.edu PROPN
                     SPACE
( PUNCT
David PROPN
Mosher)ejo@kaja.gi.alaska.edu PROPN
                    SPACE
( PUNCT
Eric PROPN
J. PROPN
Olson)hmpetro@mosaic.uncc.edu PROPN
                   SPACE
( PUNCT
Herbert PROPN
M PROPN
Petro)smith PROPN
- PUNCT
una@YALE.EDU PROPN
                        SPACE
( PUNCT
Una PROPN
Smith)mmt@RedBrick PROPN
. PUNCT
COM NOUN
                          SPACE
( PUNCT
Maxime PROPN
Taksar PROPN
KC6ZPS)urlichs@smurf.sub.org PROPN
                     SPACE
( PUNCT
Matthias PROPN
Urlichs)ac999266@umbc.edu NOUN
                         SPACE
( PUNCT
a DET
Francis PROPN
Uy)werner@SOE.Berkeley PROPN
. PUNCT
Edu NOUN
                   SPACE
( PUNCT
John PROPN
Werner)wick@netcom.com X
                           SPACE
( PUNCT
Potter PROPN
Wickware)ggw@wolves NOUN
. PUNCT
Durham PROPN
. PUNCT
NC.US PROPN
                   SPACE
( PUNCT
Gregory PROPN
G. PROPN
Woodbury)D.W.Wright@bnr.co.uk PROPN
                      SPACE
( PUNCT
D. PROPN
Wright)yarvin PROPN
- PUNCT
norman@CS.YALE.EDU SYM
                 SPACE
( PUNCT
Norman PROPN
Yarvin)ask@cblph.att.comspm2d@opal.cs.virginia.eduHere PROPN
are AUX
the DET
people NOUN
who PRON
voted VERB
YES NOUN
: PUNCT
FSSPR@ACAD3.ALASKA.EDU SYM
                    SPACE
( PUNCT
Hardcore PROPN
Alaskan)kalex@eecs.umich.edu PROPN
                      SPACE
( PUNCT
Ken PROPN
Alexander)ph600fht@sdcc14.UCSD.EDU PROPN
                  SPACE
( PUNCT
Alex PROPN
Aumann)franklin.balluff@Syntex VERB
. PUNCT
Com NOUN
               SPACE
( PUNCT
Franklin PROPN
Balluff)barash@umbc.edu SYM
                           SPACE
( PUNCT
Mr. PROPN
Steven PROPN
Barash)build@alan.b30.ingr.com PROPN
               SPACE
( PUNCT
Alan PROPN
Barksdale PROPN
( PUNCT
build))lion@TheRat PROPN
. PUNCT
Kludge PROPN
. PUNCT
COM NOUN
                    SPACE
( PUNCT
John PROPN
H. PROPN
Barlow)pbarto@UCENG.UC.EDU PROPN
                       SPACE
( PUNCT
Paul PROPN
Barto)ryan.bayne@canrem.com NOUN
                     SPACE
( PUNCT
Ryan PROPN
Bayne)mignon@shannon PROPN
. PUNCT
Jpl PROPN
. PUNCT
Nasa PROPN
. PUNCT
Gov NOUN
               SPACE
( PUNCT
Mignon PROPN
Belongie)beaudot@tirf.grenet.fr PROPN
                    SPACE
( PUNCT
william PROPN
Beaudot)lavb@lise.unit.no PROPN
                         SPACE
( PUNCT
Olav PROPN
Benum)ross@bryson.demon.co.uk PROPN
                   SPACE
( PUNCT
Ross PROPN
Beresford)ben.best@canrem.com SYM
                       SPACE
( PUNCT
Ben PROPN
Best)levi@happy-man.com PROPN
                        SPACE
( PUNCT
Levi PROPN
Bitansky)jsb30@dagda NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun INTJ
. PUNCT
COM NOUN
                   SPACE
( PUNCT
James PROPN
Blomgren)gbloom@nyx.cs.du.edu PROPN
                      SPACE
( PUNCT
Gregory PROPN
Bloom)mbrader@netcom.com X
                        SPACE
( PUNCT
Mark PROPN
Brader)ebrandt@jarthur PROPN
. PUNCT
Claremont PROPN
. PUNCT
EDU PROPN
             SPACE
( PUNCT
Eli PROPN
Brandt)doom@leland.stanford.edu PROPN
                  SPACE
( PUNCT
Joseph PROPN
Brenner)rc@pos.apana.org.au NOUN
                       SPACE
( PUNCT
Robert PROPN
Cardwell)jeffjc@binkley.cs.mcgill.ca PROPN
               SPACE
( PUNCT
Jeffrey PROPN
CHANCE)sasha@cs.umb.edu PROPN
                          SPACE
( PUNCT
Alexander PROPN
Chislenko)mclark@world.std.com PROPN
                      SPACE
( PUNCT
Maynard PROPN
S PROPN
Clark)100042.2703@CompuServe PROPN
. PUNCT
COM NOUN
                SPACE
( PUNCT
" PUNCT
A.J. PROPN
Clifford")coleman@twinsun.com X
                       SPACE
( PUNCT
Mike PROPN
Coleman)steve@constellation.ecn.uoknor.edu PROPN
        SPACE
( PUNCT
Steve PROPN
Coltrin)collier@ivory.rtsg.mot.com PROPN
                SPACE
( PUNCT
John PROPN
T. PROPN
Collier)compton@plains PROPN
. PUNCT
NoDak.edu PROPN
                  SPACE
( PUNCT
Curtis PROPN
M. PROPN
Compton PROPN
) PUNCT
bobc@master.cna.tek.com X
                   SPACE
( PUNCT
Bob PROPN
Cook)cordell@shaman.nexagen.com PROPN
                SPACE
( PUNCT
Bruce PROPN
Cordell)cormierj@ERE.UMontreal NUM
. PUNCT
CA PROPN
                 SPACE
( PUNCT
Cormier PROPN
Jean-Marc)djcoyle@macc.wisc.edu PROPN
                     SPACE
( PUNCT
Douglas PROPN
J. PROPN
Coyle)dass0001@student.tc.umn.edu PROPN
               SPACE
( PUNCT
" PUNCT
John PROPN
R PROPN
Dassow-1")bdd@onion.eng.hou.compaq.com X
              SPACE
( PUNCT
Bruce PROPN
Davis)demonn@emunix.emich.edu PROPN
                   SPACE
( PUNCT
Kenneth PROPN
Jubal PROPN
DeMonn)desilets@sj.ate.slb.com PROPN
                   SPACE
( PUNCT
Mark PROPN
Desilets)markd@sco PROPN
. PUNCT
COM PROPN
                             SPACE
( PUNCT
Mark PROPN
Diekhans)kari@teracons.teracons.com PROPN
                SPACE
( PUNCT
Kari PROPN
Dubbelman)lhdsy1!cyberia.hou281.chevron.com!hwdub@uunet PROPN
. PUNCT
UU.NET NOUN
( PUNCT
Dub PROPN
Dublin)willdye@helios.unl.edu PROPN
                    SPACE
( PUNCT
Will AUX
Dye)155yegan%jove.dnet.measurex.com@juno.measurex.com NOUN
( PUNCT
TERRY PROPN
EGAN)eder@hsvaic.boeing.com NOUN
                    SPACE
( PUNCT
Dani PROPN
Eder)glenne@magenta PROPN
. PUNCT
HQ.Ileaf X
. PUNCT
COM PROPN
               SPACE
( PUNCT
Glenn PROPN
Ellingson)farrar@adaclabs.com PROPN
                       SPACE
( PUNCT
Richard PROPN
Farrar)ghsvax!hal@uunet PROPN
. PUNCT
UU.NET NOUN
                   SPACE
( PUNCT
Hal PROPN
Finney)lxfogel@srv PROPN
. PUNCT
PacBell PROPN
. PUNCT
COM NOUN
                   SPACE
( PUNCT
Lee PROPN
Fogel)afoxx@foxxjac.b17a.ingr.com X
               SPACE
( PUNCT
Foxx)i000702@disc.dla.mil NOUN
               SPACE
( PUNCT
sam PROPN
frajerman,sppb,x3026,)mpf@medg.lcs.mit.edu PROPN
                      SPACE
( PUNCT
Michael PROPN
P. PROPN
Frank)Martin PROPN
. PUNCT
Franklin@Corp NOUN
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
              SPACE
( PUNCT
Martin PROPN
Franklin)tiff@CS.UCLA.EDU PROPN
                          SPACE
( PUNCT
Tiffany PROPN
Frazier)Ailing_Zhu_Freeman@U.ERGO.CS.CMU.EDU NOUN
      SPACE
( PUNCT
Ailing PROPN
Freeman)Timothy_Freeman@U.ERGO.CS.CMU.EDU PROPN
         SPACE
( PUNCT
Tim PROPN
Freeman)gt0657c@prism.gatech.edu PROPN
                  SPACE
( PUNCT
geoff PROPN
george)mtvdjg@rivm.nl PROPN
                            SPACE
( PUNCT
Daniel PROPN
Gijsbers)exusag@exu.ericsson.se PROPN
                    SPACE
( PUNCT
Serena PROPN
Gilbert)rlglende@netcom.com X
                SPACE
( PUNCT
Robert PROPN
Lewis PROPN
Glendenning)goetz@cs NOUN
. PUNCT
Buffalo PROPN
. PUNCT
EDU PROPN
                      SPACE
( PUNCT
Phil PROPN
Goetz)goolsby@dg-rtp.dg.com NOUN
                     SPACE
( PUNCT
Chris PROPN
Goolsby)dgordon@crow.omni.co.jp NUM
                   SPACE
( PUNCT
David PROPN
Gordon)bgrahame@eris.demon.co.uk NUM
                 SPACE
( PUNCT
Robert PROPN
D PROPN
Grahame)sascsg@unx.sas.com PROPN
                        SPACE
( PUNCT
Cynthia PROPN
Grant)green@srilanka.island.COM PROPN
                 SPACE
( PUNCT
Robert PROPN
Greenstein)johng@oce.orst.edu PROPN
                        SPACE
( PUNCT
John PROPN
A. PROPN
Gregor)roger@netcom.com PROPN
                          SPACE
( PUNCT
roger PROPN
gregory)evans PROPN
- PUNCT
ron@CS.YALE.EDU NOUN
                     SPACE
( PUNCT
Ron PROPN
Hale-Evans)brent@vpnet.chi.il.us PROPN
                     SPACE
( PUNCT
Brent PROPN
Hansen)Ron.G.Hay@med.umich.edu NUM
                   SPACE
( PUNCT
Ron PROPN
G. PROPN
Hay)akh@empress.gvg.tek.com PROPN
                   SPACE
( PUNCT
Anna PROPN
K. PROPN
Haynes)claris!qm!Bob_Hearn@ames.arc.nasa.gov PROPN
     SPACE
( PUNCT
Robert PROPN
Hearn)fheyligh@vnet3.vub.ac.be PROPN
                  SPACE
( PUNCT
Francis PROPN
Heylighen)hin9@midway.uchicago.edu NUM
                  SPACE
( PUNCT
P. PROPN
Hindman)fishe@casbah.acns.nwu.edu NOUN
                 SPACE
( PUNCT
Carwil NOUN
James)janzen@mprgate.mpr.ca SYM
                     SPACE
( PUNCT
Martin PROPN
Janzen)karp@skcla.monsanto.com PROPN
                   SPACE
( PUNCT
Jeffery PROPN
M PROPN
Karp)rk2@elsegundoca.ncr.com PROPN
                   SPACE
( PUNCT
Richard PROPN
Kelly)merklin@gnu.ai.mit.edu PROPN
                    SPACE
( PUNCT
Ed PROPN
Kemo)kessner@rintintin PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
            SPACE
( PUNCT
KESSNER PROPN
ERIC PROPN
M)mapam@csv.warwick.ac.uk PROPN
                   SPACE
( PUNCT
Mr PROPN
R PROPN
A PROPN
Khwaja)koski@sunset.cs.utah.edu PROPN
                  SPACE
( PUNCT
Keith PROPN
Koski)kathi@bridge.com X
                          SPACE
( PUNCT
Kathi PROPN
Kramer)benkrug@jupiter.fnbc.com PROPN
                  SPACE
( PUNCT
Ben PROPN
Krug)farif@eskimo.com PROPN
                          SPACE
( PUNCT
David PROPN
Kunz)edsr!edsdrd!sel@uunet PROPN
. PUNCT
UU.NET PROPN
              SPACE
( PUNCT
Steve PROPN
Langs)pa_hcl@MECENG.COE.NORTHEASTERN.EDU PROPN
        SPACE
( PUNCT
Henry PROPN
Leong)S.Linton@pmms.cam.ac.uk ADV
                   SPACE
( PUNCT
Steve PROPN
Linton)alopez@cs.ep.utexas.EDU PROPN
                   SPACE
( PUNCT
Alejandro PROPN
Lopez PROPN
6330)kfl@access.digex.com NUM
                      SPACE
( PUNCT
" PUNCT
Keith PROPN
F. PROPN
Lynch")KAMCHAR@msu.edu NOUN
                           SPACE
( PUNCT
Charles PROPN
MacDonald)rob@vis.toronto.edu PROPN
                       SPACE
( PUNCT
Robert PROPN
C. PROPN
Majka)phil@starconn.com X
                         SPACE
( PUNCT
Phil PROPN
Marks)cam@jackatak.raider.net PROPN
                   SPACE
( PUNCT
Cameron PROPN
Marshall)mmay@mcd.intel.com PROPN
                        SPACE
( PUNCT
Mike PROPN
May AUX
~)drac@uumeme.chi.il.us PROPN
                     SPACE
( PUNCT
Bruce PROPN
Maynard)i001269@discg2.disc.dla.mil PROPN
               SPACE
( PUNCT
john PROPN
mccarrick)xyzzy@imagen.com PROPN
                          SPACE
( PUNCT
David PROPN
McIntyre)cuhes@csv.warwick.ac.uk PROPN
                   SPACE
( PUNCT
Malcolm PROPN
McMahon)mcpherso@macvax NOUN
. PUNCT
UCSD.EDU PROPN
                  SPACE
( PUNCT
John PROPN
Mcpherson)merkle@parc.xerox.com PROPN
                     SPACE
( PUNCT
Ralph PROPN
Merkle)eric@Synopsys NOUN
. PUNCT
COM NOUN
                         SPACE
( PUNCT
Eric PROPN
Messick)pmetzger@shearson.com X
                     SPACE
( PUNCT
Perry PROPN
E. PROPN
Metzger)gmichael@vmd.cso.uiuc.edu PROPN
                 SPACE
( PUNCT
Gary PROPN
R. PROPN
Michael)dat91mas@ludat.lth.se PROPN
                     SPACE
( PUNCT
Asker PROPN
Mikael)MILLERL@WILMA.WHARTON.UPENN.EDU PROPN
           SPACE
( PUNCT
" PUNCT
Loren PROPN
J. PROPN
Miller")minsky@media.mit.edu PROPN
                      SPACE
( PUNCT
Marvin PROPN
Minsky)pmorris@lamar PROPN
. PUNCT
ColoState PROPN
. PUNCT
EDU PROPN
               SPACE
( PUNCT
Paul PROPN
Morris)Mark_Muhlestein@Novell PROPN
. PUNCT
COM NOUN
                SPACE
( PUNCT
Mark PROPN
Muhlestein)david@staff.udc.upenn.edu PROPN
                 SPACE
( PUNCT
R. PROPN
David PROPN
Murray)gananney@mosaic.uncc.edu PROPN
                  SPACE
( PUNCT
Glenn PROPN
A PROPN
Nanney)anthony@meaddata.com SYM
                      SPACE
( PUNCT
Anthony PROPN
Napier)dniman@panther.win.net PROPN
                    SPACE
( PUNCT
Donald PROPN
E. PROPN
Niman)nistuk@unixg.ubc.ca PROPN
                       SPACE
( PUNCT
Richard PROPN
Nistuk)Jonathan@RMIT.EDU.AU PROPN
                      SPACE
( PUNCT
Jonathan PROPN
O'Donnell)martino@gomez PROPN
. PUNCT
Jpl PROPN
. PUNCT
Nasa PROPN
. PUNCT
Gov NOUN
                SPACE
( PUNCT
Martin PROPN
R. PROPN
Olah)cpatil@leland.stanford.edu PROPN
          SPACE
( PUNCT
Christopher PROPN
Kashina PROPN
Patil)crp5754@erfsys01.boeing.com PROPN
               SPACE
( PUNCT
Chris PROPN
Payne)sharon@acri.fr PROPN
                            SPACE
( PUNCT
Sharon PROPN
Peleg)php@rhi.hi.is PROPN
                             SPACE
( PUNCT
Petur PROPN
Henry PROPN
Petersen)chrisp@efi.com PUNCT
                            SPACE
( PUNCT
Chris PROPN
Phoenix)pierce@CS.UCLA.EDU PROPN
                        SPACE
( PUNCT
Brad PROPN
Pierce)julius@math.utah.edu PROPN
                      SPACE
( PUNCT
" PUNCT
Julius PROPN
Pierce")dplatt@cellar.org NOUN
                         SPACE
( PUNCT
Doug PROPN
Platt)Mitchell.Porter@lambada.oit.unc.edu PROPN
       SPACE
( PUNCT
Mitchell PROPN
Porter)cpresson@jido.b30.ingr.com PROPN
                SPACE
( PUNCT
Craig PROPN
Presson)price@price.demon.co.uk PROPN
                   SPACE
( PUNCT
Michael PROPN
Clive PROPN
Price)U39554@UICVM.BITNET PROPN
                       SPACE
( PUNCT
Edward PROPN
S. PROPN
Proctor)stevep@deckard PROPN
. PUNCT
Works.ti.com PROPN
               SPACE
( PUNCT
Steve PROPN
Pruitt)MJQUINN@PUCC.BITNET PROPN
                       SPACE
( PUNCT
Michael PROPN
Quinn)rauss@nvl.army.mil PROPN
                        SPACE
( PUNCT
Patrick PROPN
Rauss)remke@cs.tu-berlin.de PROPN
                     SPACE
( PUNCT
" PUNCT
Jan PROPN
K. PROPN
Remke")ag167@yfn.ysu.edu PROPN
                         SPACE
( PUNCT
Barry PROPN
H. PROPN
Rodin)ksackett@cs.uah.edu PROPN
                       SPACE
( PUNCT
Karl PROPN
R. PROPN
Sackett)rcs@cs.arizona.edu PROPN
                        SPACE
( PUNCT
Richard PROPN
Schroeppel)fschulz@pyramid.com PROPN
                       SPACE
( PUNCT
Frank PROPN
Schulz)kws@Thunder PROPN
- PUNCT
Island.kalamazoo PROPN
. PUNCT
MI.US PROPN
        SPACE
( PUNCT
Karel PROPN
W. PROPN
Sebek)bseewald@gozer.idbsu.edu PROPN
                  SPACE
( PUNCT
Brad PROPN
Seewald)shapard@manta.nosc.mil PROPN
                    SPACE
( PUNCT
Thomas PROPN
D. PROPN
Shapard)habs@Panix NOUN
. PUNCT
Com NOUN
                            SPACE
( PUNCT
Harry PROPN
Shapiro)muir@idiom.berkeley.ca.us PROPN
                 SPACE
( PUNCT
David PROPN
Muir PROPN
Sharnoff)dasher@well.sf.ca.us PROPN
                      SPACE
( PUNCT
D PROPN
Anton PROPN
Sherwood)zero@netcom.com X
                           SPACE
( PUNCT
Richard PROPN
Shiflett)AP201160@BROWNVM.BITNET PROPN
                   SPACE
( PUNCT
Elaine PROPN
Shiner)robsho@robsho PROPN
. PUNCT
Auto NOUN
- PUNCT
trol NOUN
. PUNCT
COM NOUN
               SPACE
( PUNCT
Robert PROPN
Shock)rshvern@gmuvax2.gmu.edu PROPN
                   SPACE
( PUNCT
Rob PROPN
Shvern)wesiegel@cie-2.uoregon.edu NOUN
                SPACE
( PUNCT
William PROPN
Siegel)ggyygg@mixcom.mixcom.com PROPN
                  SPACE
( PUNCT
Kenton PROPN
Sinner)bsmart@bsmart.tti.com PROPN
                     SPACE
( PUNCT
Bob PROPN
Smart)tonys@ariel.ucs.unimelb.EDU.AU PROPN
            SPACE
( PUNCT
Anthony PROPN
David PROPN
Smith)sgccsns@citecuc.citec.oz.au NUM
               SPACE
( PUNCT
Shayne PROPN
Noel PROPN
Smith)dsnider@beta.tricity.wsu.edu NOUN
              SPACE
( PUNCT
Daniel PROPN
L PROPN
Snider)snyderg@spot PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
                 SPACE
( PUNCT
SNYDER PROPN
GARY PROPN
EDWIN PROPN
JR)blupe@ruth.fullfeed.com PROPN
                   SPACE
( PUNCT
Brian PROPN
Arthur PROPN
Stewart)lhdsy1!usmi02.midland.chevron.com!tsfsi@uunet NOUN
. PUNCT
UU.NET PROPN
( PUNCT
SigridStewart)nat@netcom.com NOUN
                            SPACE
( PUNCT
Nathaniel PROPN
Stitt)tps@biosym.com X
                            SPACE
( PUNCT
Tom PROPN
Stockfisch)stodolsk@andromeda.rutgers.edu PROPN
            SPACE
( PUNCT
David PROPN
Stodolsky)gadget@dcs.warwick.ac.uk PROPN
                  SPACE
( PUNCT
Steve PROPN
Strong)carey@CS.UCLA.EDU PROPN
                         SPACE
( PUNCT
Carey PROPN
Sublette)jsuttor@netcom.com PROPN
                        SPACE
( PUNCT
Jeff PROPN
Suttor)swain@cernapo.cern.ch PROPN
                     SPACE
( PUNCT
John PROPN
Swain)szabo@techbook.com PROPN
                        SPACE
( PUNCT
Nick PROPN
Szabo)ptheriau@netcom.com PROPN
                       SPACE
( PUNCT
P. PROPN
Chris PROPN
Theriault)ak051@yfn.ysu.edu PROPN
                         SPACE
( PUNCT
Chris PROPN
Thompson)gunnar.thoresen@bio.uio.no NUM
                SPACE
( PUNCT
Gunnar PROPN
Thoresen)dreamer@uxa.cso.uiuc.edu NOUN
                  SPACE
( PUNCT
Andrew PROPN
Trapp)jerry@cse.lbl.gov PROPN
                         SPACE
( PUNCT
Jerry PROPN
Tunis)music@parcom.ernet.in PROPN
                     SPACE
( PUNCT
Rajeev PROPN
Upadhye)treon@u.washington.edu PROPN
                    SPACE
( PUNCT
Treon PROPN
Verdery)evore@magnus.acs.ohio-state.edu NOUN
           SPACE
( PUNCT
Eric PROPN
J PROPN
Vore)U13054@UICVM.BITNET PROPN
                       SPACE
( PUNCT
Howard PROPN
Wachtel)susan@wpi PROPN
. PUNCT
WPI.EDU PROPN
                         SPACE
( PUNCT
Susan PROPN
C PROPN
Wade)70023.3041@CompuServe PROPN
. PUNCT
COM NOUN
                 SPACE
( PUNCT
Paul PROPN
Wakfer)ewalker@it.berklee.edu PROPN
                    SPACE
( PUNCT
" PUNCT
Elaine NOUN
Walker")jew@rt.sunquest.com NOUN
                       SPACE
( PUNCT
James PROPN
Ward)jeremy@ai.mit.edu PROPN
                         SPACE
( PUNCT
Jeremy PROPN
M. PROPN
Wertheimer)bw@ws029.torreypinesca.NCR.COM PROPN
            SPACE
( PUNCT
Bruce PROPN
White PROPN
3807)weeds@strobe NUM
. PUNCT
ATC.Olivetti X
. PUNCT
Com NOUN
             SPACE
( PUNCT
Mark PROPN
Wiedman)wiesel PROPN
- PUNCT
elisha@CS.YALE.EDU SYM
                 SPACE
( PUNCT
Elisha PROPN
Wiesel)WILLINGP@gar.union.edu ADJ
                    SPACE
( PUNCT
WILLING PROPN
, PUNCT
PAUL)smw@alcor.concordia.ca PROPN
                    SPACE
( PUNCT
Steven PROPN
Winikoff)wright@hicomb.hi.com PROPN
                      SPACE
( PUNCT
David PROPN
Wright)ebusew@anah.ericsson.com PROPN
                  SPACE
( PUNCT
Stephen PROPN
Wright PROPN
66667)liquidx@cnexus.cts.com X
                    SPACE
( PUNCT
Liquid-X)xakellis@uivlsisl.csl.uiuc.edu PROPN
            SPACE
( PUNCT
Michael PROPN
G. PROPN
Xakellis)cs012113@cs.brown.edu PROPN
                     SPACE
( PUNCT
Ion PROPN
Yannopoulos)yazz@lccsd.sd.locus.com PROPN
                   SPACE
( PUNCT
Bob PROPN
Yazz)lnz@lucid.com PROPN
                             SPACE
( PUNCT
Leonard PROPN
N. PROPN
Zubkoff)62RSE@npd1.ufpe.bradwyer@mason1.gmu.eduART@EMBL-Hamburg.DEatfurman@cup.portal.combillw@attmail.att.comcarl@red-dragon.umbc.educarlf@ai.mit.educccbbs!chris.thompson@UCENG.UC.EDUCCGARCIA@MIZZOU1.BITNETclayb@cellar.orgdack@permanet.orgdaedalus@netcom.comdanielg@autodesk.comDave-M@cup.portal.comF_GRIFFITH@CCSVAX.SFASU.EDUgarcia@husc.harvard.edugav@houxa.att.comhammar@cs.unm.eduherbison@lassie.ucx.lkg.dec.comhhuang@Athena.MIT.EDUhkhenson@cup.portal.comirving@happy-man.comjeckel@amugw.aichi-med-u.ac.jpjgs@merit.edujmeritt@mental.mitre.orgJonas_Marten_Fjallstam@cup.portal.comkqb@whscad1.att.comLPOMEROY@velara.sim.es.comlubkin@apollo.hp.comkunert@wustlb.wustl.eduLINYARD_M@XENOS.a1.logica.co.ukM.Michelle.Wrightwatson@att.commoselecw@elec.canterbury.ac.nznaoursla@eos.ncsu.edung4@husc.harvard.edupase70!dchapman@uwm.edupocock@math.utah.eduRUDI@HSD.UVic.CASCOTTJOR@delphi.comstanton@ide.comsteveha@microsoft.comstu1016@DISCOVER.WRIGHT.EDUSYang.ES_AE@xerox.comtim.hruby@his.comTodd.Kaufmann@FUSSEN.MT.CS.CMU.EDUtom@genie.slhs.udel.eduUC482529@MIZZOU1.BITNETWMILLER@clust1.clemson.eduyost@mv.us.adobe.com(The PROPN
group NOUN
still ADV
passes VERB
if SCONJ
you PRON
do AUX
n't PART
count VERB
the DET
people NOUN
forwhom ADJ
I PRON
just ADV
have AUX
email NOUN
address.)-Brian PROPN
< X
bmdelane@midway.uchicago.edu>Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59022From NUM
: SYM
filipe@vxcrna.cern.ch PROPN
( PUNCT
VINCI)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr20.125920.15005@ircam.fr NUM
> X
, PUNCT
francis@ircam.fr PROPN
( PUNCT
Joseph PROPN
Francis PROPN
) PUNCT
writes VERB
... PUNCT
>In PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>>I AUX
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
> X
> X
Crullerian PROPN
. PUNCT
> X
  SPACE
How ADV
about ADP
Kirlian ADJ
imaging NOUN
? PUNCT
I PRON
believe VERB
the DET
FAQ PROPN
for ADP
sci.skeptics PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
has AUX
a DET
nice ADJ
write NOUN
- PUNCT
up NOUN
on ADP
this DET
. PUNCT
They PRON
would AUX
certainly ADV
be AUX
most ADV
supportive ADJ
on ADP
helping VERB
you PRON
to PART
build VERB
such DET
a DET
device NOUN
and CCONJ
connect NOUN
to ADP
a DET
120Kvolt NUM
supply NOUN
so SCONJ
that SCONJ
you PRON
can AUX
take VERB
a DET
serious ADJ
look NOUN
at ADP
your PRON
" PUNCT
aura PROPN
" PUNCT
... PUNCT
:-) PUNCT
Filipe PROPN
Santos PROPN
CERN VERB
- PUNCT
European PROPN
Laboratory PROPN
for ADP
Particle PROPN
Physics PROPN
SwitzerlandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59023From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?In PROPN
article NOUN
< X
1993Apr19.084258.1040@ida.liu.se NUM
> X
davpa@ida.liu.se X
( PUNCT
David PROPN
Partain PROPN
) PUNCT
writes:>Someone INTJ
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
> X
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
something PRON
> X
to PART
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highly ADV
> X
allergic ADJ
to ADP
yeast NOUN
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADJ
about ADP
it?Candida PROPN
albicans NOUN
can AUX
cause VERB
severe ADJ
life NOUN
- PUNCT
threatening VERB
infections NOUN
, PUNCT
usuallyin ADJ
people NOUN
who PRON
are AUX
otherwise ADV
quite ADV
ill ADJ
. PUNCT
  SPACE
This DET
is AUX
not PART
, PUNCT
however ADV
, PUNCT
the DET
sortof NOUN
illness NOUN
that SCONJ
you PRON
are AUX
probably ADV
discussing VERB
. PUNCT
"Systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
where ADV
the DET
body NOUN
is AUX
allergic ADJ
toyeast NOUN
is AUX
considered VERB
a DET
quack ADJ
diagnosis NOUN
by ADP
mainstream ADJ
medicine NOUN
. PUNCT
  SPACE
Thereis PROPN
a DET
book NOUN
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
which PRON
talks VERB
about ADP
this DET
" PUNCT
illness" NOUN
. PUNCT
There PRON
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59024From NUM
: PUNCT
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qk1taINNmr4@calamari.hi.com NUM
> X
rogers@calamari.hi.com PROPN
( PUNCT
Andrew PROPN
Rogers PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr15.153729.13738@walter.bellcore.com PROPN
> X
jchen@ctt.bellcore.com PROPN
writes:>>Chinese PROPN
, PUNCT
and CCONJ
many ADJ
other ADJ
Asians PROPN
( PUNCT
Japanese PROPN
, PUNCT
Koreans PROPN
, PUNCT
etc X
) PUNCT
have AUX
used>>MSG NOUN
as SCONJ
flavor NOUN
enhancer NOUN
for ADP
two NUM
thousand NUM
years NOUN
. PUNCT
Do AUX
you PRON
believe VERB
that>>they NOUN
knew VERB
how ADV
to PART
make VERB
MSG PROPN
from ADP
chemical NOUN
processes NOUN
? PUNCT
Not PART
. PUNCT
They PRON
just>>extracted VERB
it PRON
from ADP
natural ADJ
food NOUN
such ADJ
sea NOUN
food NOUN
and CCONJ
meat NOUN
broth.>>And NOUN
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
that SCONJ
> X
the DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
not PART
> X
cause VERB
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
->extracted NUM
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese ADJ
Restaurant NOUN
> X
Syndrome PROPN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it?I NOUN
was AUX
under ADP
the DET
( PUNCT
possibly ADV
incorrect VERB
) PUNCT
assumption NOUN
that SCONJ
most ADJ
of ADP
the DET
MSG PROPN
onour NOUN
foods NOUN
was AUX
made VERB
from ADP
processing VERB
sugar NOUN
beets NOUN
. PUNCT
Is AUX
this DET
not PART
true ADJ
? PUNCT
Are AUX
there PRON
other ADJ
sources NOUN
of ADP
MSG?I PROPN
am AUX
one NUM
of ADP
those DET
folx NOUN
who PRON
react VERB
, PUNCT
sometimes ADV
strongly ADV
, PUNCT
to ADP
MSG PROPN
. PUNCT
However ADV
, PUNCT
I PRON
also ADV
react VERB
strongly ADV
to ADP
sodium NOUN
chloride NOUN
( PUNCT
table NOUN
salt NOUN
) PUNCT
in ADP
excess NOUN
. PUNCT
Eachcauses VERB
different ADJ
symptoms NOUN
except SCONJ
for ADP
the DET
common ADJ
one NUM
of ADP
rapid ADJ
heartbeatand PROPN
an DET
uncomfortable ADJ
feeling NOUN
of ADP
pressure NOUN
in ADP
my PRON
chest NOUN
, PUNCT
upper ADJ
left VERB
quadrant.-- PROPN
Steve PROPN
Giammarco/5330 PROPN
Peterson PROPN
Lane PROPN
/ SYM
Dallas PROPN
TX PROPN
75240marco@sdf.lonestar.orgloveyameanit.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59025From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residencyIn PROPN
article NOUN
< X
1993Apr20.004158.6122@cnsvax.uwec.edu ADV
> X
David PROPN
Nye,nyeda@cnsvax.uwec.edu PROPN
writes VERB
: PUNCT
> X
> X
> X
> X
I PRON
believe VERB
it PRON
is AUX
illegal ADJ
for ADP
a DET
residency NOUN
to PART
discriminate VERB
againstFMGs PROPN
. PUNCT
> X
> X
> X
Is AUX
that DET
true ADJ
? PUNCT
  SPACE
I PRON
know VERB
some DET
that PRON
wo AUX
n't PART
even ADV
interview VERB
FMGs PROPN
. PUNCT
> X
> X
I PRON
think VERB
a DET
case NOUN
could AUX
be AUX
made VERB
that SCONJ
this DET
is AUX
discriminatory ADJ
, PUNCT
particularly ADV
> X
if SCONJ
an DET
applicant NOUN
had AUX
good ADJ
board NOUN
scores NOUN
and CCONJ
recommendations NOUN
but CCONJ
wasn't PROPN
> PROPN
offered VERB
an DET
interview NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
it PRON
has AUX
ever ADV
gone VERB
to ADP
court NOUN
. PUNCT
FMGs PROPN
who PRON
are AUX
not PART
citizens NOUN
are AUX
, PUNCT
like SCONJ
all DET
aliens NOUN
, PUNCT
in ADP
a DET
difficultsituation NOUN
. PUNCT
Only ADJ
citizens NOUN
get VERB
to PART
vote VERB
here ADV
, PUNCT
so ADV
non ADJ
- NOUN
citizens NOUN
are AUX
oflittle ADJ
or CCONJ
no DET
interest NOUN
to ADP
legislators NOUN
. PUNCT
Also ADV
, PUNCT
the DET
non ADJ
- ADJ
citizen NOUN
may AUX
wellbe VERB
in ADP
the DET
middle NOUN
of ADP
processing NOUN
for ADP
resident ADJ
alien ADJ
status NOUN
. PUNCT
There PRON
is AUX
astron NOUN
sense NOUN
that SCONJ
rocking VERB
the DET
boat NOUN
( PUNCT
eg INTJ
. PUNCT
suing VERB
a DET
residency NOUN
program)will NOUN
delay VERB
the DET
granting NOUN
of ADP
that DET
status NOUN
, PUNCT
perhaps ADV
for ADP
ever ADV
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59026From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
myers.735287742@peach.cs.scarolina.edu PROPN
> X
myers@cs.scarolina.edu PROPN
( PUNCT
Daniel PROPN
Myers PROPN
) PUNCT
writes:>I PROPN
am AUX
under ADP
the DET
impression NOUN
that SCONJ
MSG PROPN
" PUNCT
enhances VERB
" PUNCT
flavor NOUN
by ADP
causing VERB
the DET
> X
taste NOUN
buds NOUN
to PART
swell VERB
. PUNCT
No INTJ
, PUNCT
that DET
's AUX
not PART
how ADV
it PRON
works.>If AUX
this DET
is AUX
correct ADJ
, PUNCT
I PRON
do AUX
not PART
find VERB
it PRON
unreasonable ADJ
> X
to PART
assume VERB
that SCONJ
high ADJ
doses NOUN
of ADP
MSG PROPN
can AUX
cause VERB
other ADJ
mouth NOUN
tissues NOUN
to PART
swell VERB
. PUNCT
This DET
may AUX
be AUX
through ADP
a DET
different ADJ
mechanism.>Also NOUN
, PUNCT
as SCONJ
the DET
many ADJ
of ADP
the DET
occurances NOUN
( PUNCT
including VERB
two NUM
of ADP
the DET
above)>involved ADJ
beef NOUN
, PUNCT
and CCONJ
as SCONJ
beef NOUN
is AUX
frequently ADV
tenderized VERB
with ADP
MSG PROPN
, PUNCT
this DET
is AUX
> X
what PRON
I PRON
suspect VERB
as SCONJ
being AUX
the DET
cause NOUN
. PUNCT
Tenderizing VERB
beef NOUN
involves VERB
sprinking VERB
or CCONJ
marinading VERB
it PRON
in ADP
papain NOUN
, PUNCT
an DET
enzyme NOUN
. PUNCT
"Meat PUNCT
tenderizer PROPN
" PUNCT
packets NOUN
might AUX
contain VERB
papain NOUN
and CCONJ
MSG NOUN
and CCONJ
seasonings NOUN
, PUNCT
butMSG PROPN
does AUX
n't PART
act VERB
as SCONJ
a DET
tenderizer.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59027From NUM
: PUNCT
dstock@hpqmoca.sqf.hp.com PROPN
( PUNCT
David PROPN
Stockton)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyVINCI PROPN
( PUNCT
filipe@vxcrna.cern.ch PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
  SPACE
How ADV
about ADP
Kirlian ADJ
imaging NOUN
? PUNCT
I PRON
believe VERB
the DET
FAQ PROPN
for ADP
sci.skeptics PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
: PUNCT
  SPACE
has AUX
a DET
nice ADJ
write NOUN
- PUNCT
up NOUN
on ADP
this DET
. PUNCT
They PRON
would AUX
certainly ADV
be AUX
most ADV
supportive ADJ
: PUNCT
  SPACE
on ADP
helping VERB
you PRON
to PART
build VERB
such DET
a DET
device NOUN
and CCONJ
connect NOUN
to ADP
a DET
120Kvolt NUM
: SYM
  SPACE
supply NOUN
so SCONJ
that SCONJ
you PRON
can AUX
take VERB
a DET
serious ADJ
look NOUN
at ADP
your PRON
" PUNCT
aura PROPN
" PUNCT
... PUNCT
:-) PUNCT
: PUNCT
  SPACE
Filipe PROPN
Santos PROPN
: PUNCT
  SPACE
CERN PROPN
- PUNCT
European PROPN
Laboratory PROPN
for ADP
Particle PROPN
Physics PROPN
: PUNCT
  SPACE
Switzerland PROPN
    SPACE
This DET
has AUX
to PART
be AUX
THE DET
only ADJ
, PUNCT
generally ADV
accepted VERB
, PUNCT
method NOUN
of ADP
using VERB
common ADJ
physics NOUN
lab NOUN
equipment NOUN
to PART
find VERB
certain ADJ
answers NOUN
to ADP
all DET
the DET
questions NOUN
aboutafterlifes NOUN
, PUNCT
heavens PROPN
, PUNCT
hells PROPN
, PUNCT
purgatory NOUN
, PUNCT
gods NOUN
etc X
. PUNCT
Krillean PROPN
photographywill NOUN
probably ADV
be AUX
ignored VERB
as SCONJ
insignificant ADJ
compared VERB
to ADP
these DET
largereternal ADJ
verities NOUN
. PUNCT
Publishing VERB
your PRON
results NOUN
could AUX
be AUX
a DET
bit NOUN
of ADP
a DET
problem NOUN
, PUNCT
though ADV
. PUNCT
   SPACE
Cheers PROPN
             SPACE
DavidNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59028From NUM
: PUNCT
michael@iastate.edu X
( PUNCT
Michael PROPN
M. PROPN
Huang)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?MSG NOUN
is AUX
common ADJ
in ADP
many ADJ
food NOUN
we PRON
eat VERB
, PUNCT
including VERB
Chinese PROPN
( PUNCT
though SCONJ
some DET
orientalrestaurants NOUN
might AUX
put VERB
a DET
tad NOUN
too ADV
much ADJ
in ADP
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
when ADV
Igo NOUN
out ADP
and CCONJ
eat VERB
in ADP
most ADJ
of ADP
the DET
Chinese ADJ
food NOUN
restaurants NOUN
, PUNCT
I PRON
will AUX
usually ADV
geta VERB
slight ADJ
headache NOUN
and CCONJ
an DET
ununsual ADJ
thirst NOUN
afterwards ADV
. PUNCT
  SPACE
This DET
happens VERB
to PART
manyof PROPN
my PRON
friends NOUN
and CCONJ
relatives NOUN
too ADV
. PUNCT
  SPACE
And CCONJ
, PUNCT
heh INTJ
, PUNCT
we PRON
eat VERB
Chinese ADJ
food NOUN
all DET
thetime NOUN
at ADP
home NOUN
:) PUNCT
( PUNCT
but CCONJ
we PRON
do AUX
n't PART
use VERB
MSG PROPN
when ADV
we PRON
're AUX
cooking VERB
for ADP
ourselves)So PROPN
, PUNCT
when ADV
we PRON
put VERB
one NUM
and CCONJ
one NUM
together ADV
, PUNCT
it PRON
can AUX
be AUX
safely ADV
assumed VERB
thatMSG PROPN
may AUX
cause VERB
some DET
allergic ADJ
reactions NOUN
in ADP
some DET
people NOUN
. PUNCT
Stick VERB
with ADP
natural ADJ
things NOUN
. PUNCT
  SPACE
MSG PROPN
does AUX
n't PART
do AUX
body NOUN
any DET
good ADJ
( PUNCT
and CCONJ
possiblyharms NOUN
, PUNCT
for ADP
that DET
matter NOUN
) PUNCT
. PUNCT
  SPACE
So ADV
, PUNCT
why ADV
bother VERB
with ADP
it PRON
? PUNCT
  SPACE
Taste NOUN
food NOUN
as SCONJ
it PRON
shouldbe PROPN
tasted VERB
, PUNCT
and CCONJ
do AUX
n't PART
cloud VERB
the DET
flavor NOUN
with ADP
an DET
imaginary ADJ
cloak NOUN
of ADP
MSG.-michael-- PROPN
Michael PROPN
M. PROPN
Huang PROPN
               SPACE
| PROPN
Do AUX
n't PART
believe VERB
what PRON
your PRON
eyes NOUN
are AUX
  SPACE
telling VERB
you PRON
. PUNCT
ICEMT ADV
, PUNCT
Iowa PROPN
State PROPN
Univ PROPN
. PUNCT
        SPACE
| PROPN
All DET
they PRON
show VERB
is AUX
  SPACE
limitation NOUN
. PUNCT
   SPACE
Look VERB
with ADP
yourmichael@iastate.edu X
            SPACE
| ADP
understanding NOUN
, PUNCT
find VERB
out ADP
what PRON
you PRON
already ADV
know,#include PUNCT
< X
standard.disclaimer NOUN
> X
| INTJ
and CCONJ
you PRON
'll AUX
see VERB
the DET
way NOUN
to PART
fly VERB
. PUNCT
- PUNCT
J. PROPN
L. PROPN
Seagull PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59029From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
, PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:=I PUNCT
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
= PUNCT
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
= PUNCT
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
= PUNCT
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
= SYM
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
= SYM
appreciated.= ADP
	 SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
= SYM
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
= SYM
object VERB
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
= SYM
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
= NOUN
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One NUM
might AUX
= SYM
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
= NOUN
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
Go VERB
to ADP
the DET
library NOUN
and CCONJ
look VERB
up ADP
" PUNCT
corona ADJ
discharge NOUN
. PUNCT
"--------------------------------------------------------------------------------Carl PUNCT
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59030From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
OCDIn NOUN
article NOUN
< X
C5r3n6.FG4@news NOUN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
, PUNCT
sharynk@Hawaii PROPN
. PUNCT
Edu PROPN
( PUNCT
) PUNCT
writes VERB
... PUNCT
>I NUM
recently ADV
heard VERB
of ADP
a DET
mental ADJ
disorder NOUN
called VERB
Obsessive PROPN
Compulsive PROPN
> X
Disorder NOUN
. PUNCT
  SPACE
What PRON
is AUX
it PRON
? PUNCT
  SPACE
What PRON
causes VERB
it PRON
? PUNCT
  SPACE
Could AUX
it PRON
be AUX
caused VERB
by ADP
a DET
> X
nervous ADJ
breakdown NOUN
? PUNCT
> X
Obesssive PROPN
Compulsive PROPN
Disorder PROPN
( PUNCT
not PART
to PART
be AUX
confused VERB
with ADP
Obsessive PROPN
Compulsive_Personality PROPN
_ DET
Disorder PROPN
! PUNCT
) PUNCT
is AUX
an DET
acute ADJ
anxiety NOUN
disorder NOUN
characterized VERB
byeither NOUN
obsessions NOUN
( PUNCT
persistent ADJ
intrusive ADJ
thoughts NOUN
that PRON
cause VERB
anxiety NOUN
whennot PROPN
entertained PROPN
) PUNCT
, PUNCT
or CCONJ
compulsions NOUN
( PUNCT
repetitive ADJ
, PUNCT
ritualistic ADJ
actions NOUN
thatsimilarly ADV
cause VERB
intense ADJ
psychological ADJ
discomfort NOUN
when ADV
resisted VERB
) PUNCT
. PUNCT
  SPACE
OCD PROPN
is AUX
often ADV
associated VERB
with ADP
certain ADJ
forms NOUN
of ADP
depression NOUN
. PUNCT
  SPACE
Examples NOUN
of ADP
obsessive ADJ
thoughts NOUN
are AUX
repeated VERB
impulses NOUN
to PART
kill VERB
a DET
lovedone NOUN
( PUNCT
though SCONJ
not PART
accompanied VERB
by ADP
anger NOUN
) PUNCT
, PUNCT
or CCONJ
a DET
religious ADJ
person NOUN
having VERB
recurrent ADJ
blasphemous ADJ
thoughts NOUN
. PUNCT
  SPACE
Generally ADV
, PUNCT
the DET
individual ADJ
attempts NOUN
to ADP
ignoreor NOUN
suppress VERB
the DET
intrusive ADJ
thoughts NOUN
by ADP
engaging VERB
in ADP
other ADJ
activities NOUN
. PUNCT
  SPACE
The DET
individual NOUN
realizes VERB
that SCONJ
the DET
thoughts NOUN
originate VERB
from ADP
the DET
own ADJ
mind NOUN
, PUNCT
ratherthan NOUN
being AUX
from ADP
an DET
external ADJ
source NOUN
. PUNCT
Examples NOUN
of ADP
compulsive ADJ
actions NOUN
are AUX
constant ADJ
repetitive ADJ
hand NOUN
washing NOUN
, PUNCT
or CCONJ
other ADJ
activity NOUN
that PRON
is AUX
not PART
realistically ADV
related ADJ
to ADP
alleviating VERB
asource NOUN
of ADP
the DET
anxiety NOUN
. PUNCT
In ADP
OCD PROPN
, PUNCT
the DET
obsessions NOUN
or CCONJ
compulsions NOUN
are AUX
highly ADV
distressing ADJ
to ADP
theindividual ADJ
, PUNCT
take VERB
an DET
hour NOUN
or CCONJ
more ADJ
per ADP
day NOUN
, PUNCT
and CCONJ
significantly ADV
impair VERB
theirdaily ADV
routine ADJ
and CCONJ
social ADJ
relationships NOUN
. PUNCT
Treatments NOUN
include VERB
psychotherapy NOUN
, PUNCT
behavioral ADJ
methods NOUN
, PUNCT
and CCONJ
sometimescertain ADJ
anti NOUN
- NOUN
depressants NOUN
which PRON
have AUX
recently ADV
been AUX
found VERB
effective ADJ
in ADP
alleviatingobsessions NOUN
and CCONJ
compulsions NOUN
. PUNCT
The DET
standard ADJ
diagnostic ADJ
code NOUN
for ADP
OCD PROPN
, PUNCT
if SCONJ
you PRON
want VERB
to PART
look VERB
it PRON
up ADP
in ADP
theDSM PROPN
- PUNCT
III NUM
manual NOUN
of ADP
psychiatric ADJ
diagnosis NOUN
is AUX
300.30 NUM
. PUNCT
						 SPACE
kind PROPN
regards PROPN
, PUNCT
						 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
354 NUM
- SYM
1273 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Olliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
  SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59031From NUM
: PUNCT
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
michael.735318247@vislab.me.iastate.edu PROPN
> X
michael@iastate.edu INTJ
( PUNCT
Michael PROPN
M. PROPN
Huang PROPN
) PUNCT
writes:>MSG PROPN
is AUX
common ADJ
in ADP
many ADJ
food NOUN
we PRON
eat VERB
, PUNCT
including VERB
Chinese PROPN
( PUNCT
though SCONJ
some DET
oriental ADJ
> X
restaurants NOUN
might AUX
put VERB
a DET
tad NOUN
too ADV
much ADJ
in ADP
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
when ADV
I PRON
> X
go VERB
out ADP
and CCONJ
eat VERB
in ADP
most ADJ
of ADP
the DET
Chinese ADJ
food NOUN
restaurants NOUN
, PUNCT
I PRON
will AUX
usually ADV
get AUX
> X
a DET
slight ADJ
headache NOUN
and CCONJ
an DET
ununsual ADJ
thirst NOUN
afterwards ADV
. PUNCT
  SPACE
This DET
happens VERB
to ADP
many ADJ
> X
of ADP
my PRON
friends NOUN
and CCONJ
relatives NOUN
too ADV
. PUNCT
  SPACE
And CCONJ
, PUNCT
heh INTJ
, PUNCT
we PRON
eat VERB
Chinese ADJ
food NOUN
all DET
the DET
> X
time NOUN
at ADP
home NOUN
:) PUNCT
( PUNCT
but CCONJ
we PRON
do AUX
n't PART
use VERB
MSG PROPN
when ADV
we PRON
're AUX
cooking VERB
for ADP
ourselves)>>So NOUN
, PUNCT
when ADV
we PRON
put VERB
one NUM
and CCONJ
one NUM
together ADV
, PUNCT
it PRON
can AUX
be AUX
safely ADV
assumed VERB
that SCONJ
> X
MSG PROPN
may AUX
cause VERB
some DET
allergic ADJ
reactions NOUN
in ADP
some DET
people.>>Stick NOUN
with ADP
natural ADJ
things NOUN
. PUNCT
  SPACE
MSG PROPN
does AUX
n't PART
do AUX
body NOUN
any DET
good ADJ
( PUNCT
and CCONJ
possibly ADV
> X
harms NOUN
, PUNCT
for ADP
that DET
matter NOUN
) PUNCT
. PUNCT
  SPACE
So ADV
, PUNCT
why ADV
bother VERB
with ADP
it PRON
? PUNCT
  SPACE
Taste NOUN
food NOUN
as SCONJ
it PRON
should AUX
> X
be AUX
tasted VERB
, PUNCT
and CCONJ
do AUX
n't PART
cloud VERB
the DET
flavor NOUN
with ADP
an DET
imaginary ADJ
cloak NOUN
of ADP
MSG.As NOUN
I PRON
understood VERB
it PRON
, PUNCT
MSG PROPN
* PUNCT
is AUX
* PUNCT
natural ADJ
. PUNCT
  SPACE
Is AUX
n't PART
it PRON
found VERB
in ADP
tomatoes?Anyway NOUN
, PUNCT
lots NOUN
of ADP
people NOUN
are AUX
terribly ADV
allergic ADJ
to ADP
lots NOUN
of ADP
naturalthings NOUN
; PUNCT
peanuts NOUN
, PUNCT
onions NOUN
, PUNCT
tomatoes NOUN
, PUNCT
milk NOUN
, PUNCT
etc X
. PUNCT
  SPACE
Just ADV
because SCONJ
somethingis PROPN
' PUNCT
natural ADJ
' PUNCT
does AUX
n't PART
mean VERB
it PRON
wo AUX
n't PART
cause VERB
problems NOUN
with ADP
some DET
folks NOUN
. PUNCT
As SCONJ
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
likethe VERB
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
useit VERB
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighborhas NOUN
an DET
ulcer NOUN
. PUNCT
People NOUN
have AUX
long ADV
modified VERB
the DET
taste NOUN
of ADP
food NOUN
by ADP
additives NOUN
, PUNCT
whetherthey PRON
be AUX
chiles NOUN
, PUNCT
black ADJ
pepper NOUN
, PUNCT
salt NOUN
, PUNCT
cream NOUN
sauces NOUN
, PUNCT
etc X
. PUNCT
  SPACE
All DET
of ADP
thesethings NOUN
cloud VERB
the DET
flavor NOUN
of ADP
the DET
food NOUN
. PUNCT
  SPACE
Why ADV
do AUX
we PRON
bother VERB
with ADP
them?How PROPN
should AUX
food NOUN
be AUX
tasted VERB
? PUNCT
  SPACE
Is AUX
n't PART
it PRON
better ADV
left VERB
to ADP
the DET
diner?JulieDISCLAIMER NOUN
: PUNCT
  SPACE
All DET
opinions NOUN
here ADV
belong VERB
to ADP
my PRON
cat NOUN
and CCONJ
no DET
one NUM
elseNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59032From NUM
: PUNCT
jhoskins@magnus.acs.ohio-state.edu PROPN
( PUNCT
James PROPN
M PROPN
Hoskins)Subject PROPN
: PUNCT
Cost NOUN
of ADP
RoxonalDoes PROPN
anyone PRON
know VERB
the DET
approximate ADJ
prescription NOUN
costof VERB
a DET
250 NUM
ml ADJ
bottle NOUN
of ADP
Roxonal PROPN
( PUNCT
morphine)?Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59033From NUM
: PUNCT
dufault@lftfld.enet.dec.com NOUN
( PUNCT
MD)Subject NUM
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
	 SPACE
The DET
reason NOUN
I PRON
'm AUX
posting VERB
this DET
article NOUN
to ADP
this DET
newsgroup NOUN
is AUX
to:1 NOUN
. PUNCT
gather VERB
any DET
information NOUN
about ADP
this DET
disorder NOUN
from ADP
anyone PRON
who PRON
might AUX
   SPACE
have AUX
recently ADV
been AUX
* PUNCT
e*ffected VERB
by ADP
it PRON
( PUNCT
from ADP
being AUX
associated VERB
with ADP
   SPACE
it PRON
or CCONJ
actually ADV
having VERB
this DET
disorder NOUN
) PUNCT
and2 PROPN
. PUNCT
help VERB
me PRON
find VERB
out ADP
where ADV
I PRON
can AUX
access VERB
any DET
medical ADJ
literature NOUN
associated VERB
   SPACE
with ADP
seizures NOUN
over ADP
the DET
internet NOUN
. PUNCT
Recently ADV
, PUNCT
I PRON
had AUX
a DET
baby NOUN
boy NOUN
born VERB
with ADP
seizures NOUN
which PRON
occured VERB
12 NUM
- SYM
15 NUM
hoursafter NOUN
birth NOUN
. PUNCT
He PRON
was AUX
immediately ADV
transferred VERB
to ADP
a DET
major ADJ
hospital NOUN
in ADP
Bostonand PROPN
has AUX
since SCONJ
been AUX
undergoing VERB
extensive ADJ
drug NOUN
treatment NOUN
for ADP
his PRON
condition NOUN
. PUNCT
This DET
has AUX
been AUX
a DET
major ADJ
learning NOUN
experience NOUN
for ADP
me PRON
and CCONJ
my PRON
wife NOUN
not PART
only ADV
inlearning VERB
the DET
medical ADJ
problems NOUN
that PRON
faced VERB
our PRON
son NOUN
but CCONJ
also ADV
in ADP
dealing VERB
withhospitals NOUN
, PUNCT
procedures NOUN
... PUNCT
etc X
. PUNCT
I PRON
do AUX
n't PART
want VERB
to PART
go VERB
into ADP
a DET
lot NOUN
of ADP
detail NOUN
, PUNCT
but CCONJ
his PRON
condition NOUN
was AUX
termed VERB
quite ADV
severe ADJ
at ADP
first ADV
then ADV
slowly ADV
he PRON
began VERB
to PART
grow VERB
and CCONJ
put VERB
on ADP
weightas PROPN
a DET
normal ADJ
baby NOUN
would AUX
. PUNCT
He PRON
was AUX
put VERB
on ADP
the DET
standard ADJ
anti ADJ
- ADJ
convulsion ADJ
drugsand NOUN
that PRON
did AUX
not PART
seem VERB
to PART
help VERB
out ADP
. PUNCT
His PRON
MRI NOUN
, PUNCT
EKG PROPN
, PUNCT
cat NOUN
- PUNCT
scans PROPN
are AUX
all DET
normal ADJ
, PUNCT
but CCONJ
the DET
EEG PROPN
's PART
show NOUN
alot NOUN
of ADP
seizure NOUN
activity NOUN
. PUNCT
After ADP
many ADJ
metabolic ADJ
tests NOUN
, PUNCT
body NOUN
structure NOUN
tests NOUN
, PUNCT
and CCONJ
infection NOUN
/ SYM
virus NOUN
tests VERB
the DET
doctors NOUN
still ADV
do AUX
notknow VERB
quite ADV
what PRON
type NOUN
of ADP
siezures NOUN
he PRON
is AUX
having VERB
( PUNCT
although SCONJ
they PRON
do AUX
have AUX
alotof ADJ
evidence NOUN
that SCONJ
it PRON
is AUX
now ADV
pointing VERB
to ADP
infantile ADJ
spasms NOUN
) PUNCT
. PUNCT
This DET
is AUX
wherewe NOUN
stand VERB
right ADV
now ADV
.... PUNCT
If SCONJ
anyone PRON
knows VERB
of ADP
any DET
database NOUN
or CCONJ
newsgroup NOUN
or CCONJ
as SCONJ
I PRON
mentioned VERB
up ADP
above ADV
, PUNCT
any DET
information NOUN
relating VERB
to ADP
this DET
disorder NOUN
I PRON
would AUX
sure ADV
appreciate VERB
hearingfrom ADP
you PRON
. PUNCT
I PRON
am AUX
not PART
trying VERB
to PART
play VERB
doctor NOUN
here ADV
, PUNCT
but CCONJ
only ADV
trying VERB
to PART
gatherinformation VERB
about ADP
it PRON
. PUNCT
As SCONJ
I PRON
know VERB
now ADV
, PUNCT
these DET
particular ADJ
types NOUN
of ADP
disordersare NOUN
still ADV
not PART
really ADV
well ADV
understood VERB
by ADP
the DET
medical ADJ
community NOUN
, PUNCT
and CCONJ
so ADV
I'mgoing VERB
to PART
see VERB
now ADV
.... PUNCT
if SCONJ
somehow ADV
the DET
internet NOUN
can AUX
at ADV
least ADJ
give VERB
me PRON
alittleinsight NOUN
. PUNCT
Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59034From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>In X
article NOUN
davpa@ida.liu.se X
  SPACE
( PUNCT
David PROPN
Partain PROPN
) PUNCT
writes:>>Someone NOUN
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
> X
> X
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
something>>to VERB
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highly>>allergic PROPN
to PART
yeast VERB
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADJ
about ADP
it?>Candida PROPN
albicans NOUN
can AUX
cause VERB
severe ADJ
life NOUN
- PUNCT
threatening VERB
infections NOUN
, PUNCT
usually ADV
> X
in ADP
people NOUN
who PRON
are AUX
otherwise ADV
quite ADV
ill ADJ
. PUNCT
  SPACE
This DET
is AUX
not PART
, PUNCT
however ADV
, PUNCT
the DET
sort NOUN
> X
of ADP
illness NOUN
that PRON
you PRON
are AUX
probably ADV
discussing.>>"Systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
where ADV
the DET
body NOUN
is AUX
allergic ADJ
to ADP
> X
yeast NOUN
is AUX
considered VERB
a DET
quack ADJ
diagnosis NOUN
by ADP
mainstream ADJ
medicine NOUN
. PUNCT
  SPACE
There ADV
> X
is AUX
a DET
book NOUN
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
which PRON
talks VERB
about ADP
this DET
" PUNCT
illness".>>There NOUN
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists VERB
. PUNCT
There PRON
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
andpublished ADJ
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic NOUN
skepticswho PROPN
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used VERB
. PUNCT
For ADP
example NOUN
, PUNCT
Dr. PROPN
Ivker PROPN
, PUNCT
who PRON
wrote VERB
the DET
book NOUN
" PUNCT
Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
always ADV
gives VERB
, PUNCT
before ADP
any DET
other ADJ
treatment NOUN
, PUNCT
a DET
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
( PUNCT
such ADJ
as SCONJ
Nizoral PROPN
) PUNCT
to PART
hisnew VERB
patients NOUN
IF ADP
they PRON
've AUX
been AUX
on ADP
braod NOUN
- PUNCT
spectrum NOUN
anti ADJ
- ADJ
biotics ADJ
4 NUM
or CCONJ
more ADJ
timesin ADP
the DET
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
's AUX
kept VERB
a DET
record NOUN
of ADP
the DET
results NOUN
, PUNCT
and CCONJ
for ADP
over ADP
2000 NUM
patients NOUN
found VERB
that SCONJ
over ADP
90 NUM
% NOUN
of ADP
his PRON
patients NOUN
get VERB
significant ADJ
reliefof NOUN
allergic ADJ
/ SYM
sinus NOUN
symptoms NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
this DET
is AUX
only ADV
the DET
beginning NOUN
for ADP
hisprogram NOUN
. PUNCT
In ADP
my PRON
case NOUN
, PUNCT
as SCONJ
I PRON
reported VERB
a DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
I PRON
was AUX
developing VERB
the DET
classicsymptoms NOUN
outlined VERB
in ADP
' PUNCT
The DET
Yeast PROPN
Connection PROPN
' PUNCT
( PUNCT
I PRON
agree VERB
it PRON
is AUX
a DET
poorly ADV
written VERB
book NOUN
) PUNCT
: PUNCT
  SPACE
e.g. ADV
, PUNCT
extreme ADJ
sensitivity NOUN
to ADP
plastics NOUN
, PUNCT
vapors NOUN
, PUNCT
etc X
. PUNCT
whichI PROPN
never ADV
had AUX
before ADV
( PUNCT
started VERB
in ADP
November PROPN
) PUNCT
. PUNCT
  SPACE
Within ADP
one NUM
week NOUN
of ADP
full ADJ
dosageof NOUN
Sporanox PROPN
, PUNCT
the DET
sensitivity NOUN
to ADP
chemicals NOUN
has AUX
fully ADV
disappeared VERB
- PUNCT
I PRON
cannow ADV
sit VERB
on ADP
my PRON
couch NOUN
at ADP
home NOUN
without ADP
dying VERB
after ADP
two NUM
minutes NOUN
. PUNCT
  SPACE
I PRON
'm AUX
also*greatly ADV
* PUNCT
improved VERB
in ADP
other ADJ
areas NOUN
as ADV
well ADV
. PUNCT
Of ADV
course ADV
, PUNCT
I PRON
have AUX
allergy ADJ
symptoms NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
allergic ADJ
tomolds NOUN
, PUNCT
yeasts NOUN
, PUNCT
etc X
. PUNCT
  SPACE
It PRON
does AUX
n't PART
take VERB
a DET
rocket NOUN
scientist NOUN
to PART
figure VERB
out ADP
thatif NOUN
one NUM
has AUX
excessive ADJ
colonization NOUN
of ADP
yeast NOUN
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
you PRON
have AUX
anatural ADJ
allergy NOUN
to ADP
yeasts NOUN
, PUNCT
that SCONJ
a DET
threshold NOUN
would AUX
be AUX
reached VERB
where ADV
youwould AUX
have AUX
perceptible ADJ
symptoms NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
yeast NOUN
do AUX
produce VERB
toxins NOUN
of ADP
varioussorts NOUN
, PUNCT
and CCONJ
again ADV
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
to PART
realize VERB
thatsuch ADJ
toxins NOUN
can AUX
cause VERB
problems NOUN
in ADP
some DET
people NOUN
. PUNCT
  SPACE
In ADP
my PRON
case NOUN
it PRON
was AUX
sinussince NOUN
that DET
's AUX
the DET
center NOUN
of ADP
my PRON
allergic ADJ
response NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
$ SYM
60,000question NUM
is AUX
whether SCONJ
a DET
person NOUN
who PRON
is AUX
immune ADJ
compromised VERB
( PUNCT
as SCONJ
tests NOUN
showed VERB
I PRON
wasfrom VERB
over ADP
5 NUM
years NOUN
of ADP
antibiotics NOUN
, PUNCT
nutritionally ADV
- PUNCT
deficiencies NOUN
because SCONJ
of ADP
thestress NOUN
of ADP
infections NOUN
and CCONJ
allergies NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
can AUX
develop VERB
excessive ADJ
yeastcolonization NOUN
somewhere ADV
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
tough ADJ
question NOUN
to PART
answer VERB
sincetesting VERB
for ADP
excessive ADJ
yeast NOUN
colonization NOUN
is AUX
not PART
easy ADJ
. PUNCT
  SPACE
One NOUN
almost ADV
has AUX
totake VERB
an DET
empirical ADJ
approach NOUN
to PART
diagnosis NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
Sporanox PROPN
is AUX
relativelysafe ADJ
unlike ADP
past ADP
anti NOUN
- NOUN
fungals NOUN
( PUNCT
still ADV
have AUX
to PART
be AUX
careful ADJ
, PUNCT
however ADV
) PUNCT
so ADV
there'sno DET
reason NOUN
any ADV
longer ADV
to PART
withhold VERB
Sporanox PROPN
treatment NOUN
for ADP
empirical ADJ
reasons NOUN
. PUNCT
BTW ADV
, PUNCT
some DET
would AUX
say VERB
to PART
try VERB
Nystatin PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
yeast NOUN
grows VERB
hyphaetoo PROPN
deep ADJ
into ADP
tissue NOUN
for ADP
Nystatin PROPN
to PART
have AUX
any DET
permanent ADJ
affect NOUN
. PUNCT
  SPACE
You PRON
'll AUX
finda VERB
lot NOUN
of ADP
people NOUN
who PRON
are AUX
on ADP
Nystatin PROPN
all DET
the DET
time NOUN
. PUNCT
In ADP
summary NOUN
, PUNCT
I PRON
appreciate VERB
all DET
of ADP
the DET
attempts NOUN
by ADP
those DET
who PRON
desire VERB
to PART
keepmedicine VERB
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmlyto VERB
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enoughactually ADV
treating VERB
patients NOUN
. PUNCT
  SPACE
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to PART
myface VERB
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guaranteetheir VERB
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified ADJ
asfar ADV
as SCONJ
I PRON
am AUX
concerned ADJ
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59035From NUM
: PUNCT
RICK@ysub.ysu.edu PROPN
( PUNCT
Rick PROPN
Marsico)Subject PROPN
: PUNCT
Proventil PROPN
InhalerDoes PROPN
the DET
Proventil PROPN
inhaler NOUN
for ADP
asthma NOUN
relief NOUN
fall NOUN
into ADP
the DET
steroidor PROPN
nonsteroid PROPN
category NOUN
? PUNCT
  SPACE
Looking VERB
at ADP
the DET
product NOUN
literature NOUN
it'snot ADV
clear ADJ
. PUNCT
rick@ysu.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59036From NUM
: PUNCT
SFEGUS@ubvm.cc.buffalo.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
79857@cup.portal.com>mmm@cup.portal.com NUM
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
I PRON
do AUX
n't PART
understand VERB
the DET
assumption NOUN
that SCONJ
because SCONJ
something PRON
is AUX
found VERB
to ADP
> X
> X
be AUX
carcinogenic ADJ
that SCONJ
" PUNCT
it PRON
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
that>>No PROPN
, PUNCT
there PRON
is AUX
something PRON
called VERB
the DET
" PUNCT
Delany PROPN
Amendment PROPN
" PUNCT
which PRON
makes VERB
carcinogenic ADJ
> NUM
food NOUN
additives NOUN
illegal ADJ
in ADP
any DET
amount NOUN
. PUNCT
  SPACE
This DET
was AUX
passed VERB
by ADP
Congress PROPN
in ADP
the>1950 PROPN
's PART
, PUNCT
before ADP
stuff NOUN
like SCONJ
mass NOUN
spectrometry NOUN
became VERB
available ADJ
, PUNCT
which PRON
increased VERB
> X
detectable ADJ
levels NOUN
of ADP
substances NOUN
by ADP
a DET
couple NOUN
orders NOUN
of ADP
magnitude.>>This PROPN
is AUX
why ADV
things NOUN
like SCONJ
cyclamates NOUN
and CCONJ
Red PROPN
# SYM
2 NUM
were AUX
banned VERB
. PUNCT
  SPACE
They PRON
are AUX
very ADV
> X
weakly ADV
carcinogenic ADJ
in ADP
huge ADJ
quantities NOUN
in ADP
rats NOUN
, PUNCT
so SCONJ
under ADP
the DET
Act PROPN
they PRON
are AUX
> X
banned.>>This PROPN
also ADV
applies VERB
to ADP
natural ADJ
carcinogens NOUN
. PUNCT
  SPACE
Some DET
of ADP
you PRON
might AUX
remember VERB
a DET
> X
time NOUN
back ADV
in ADP
the DET
1960 NUM
's PART
when ADV
root NOUN
beer NOUN
suddenly ADV
stopped VERB
tasting VERB
so ADV
good,>and PROPN
never ADV
tasted VERB
so ADV
good ADJ
again ADV
. PUNCT
  SPACE
That DET
was AUX
the DET
time NOUN
when ADV
safrole NOUN
was AUX
banned.>This PROPN
is AUX
the DET
active ADJ
flavoring ADJ
ingredient NOUN
in ADP
sassafras PROPN
leaves.>>If VERB
it PRON
were AUX
possible ADJ
to PART
market VERB
a DET
root NOUN
beer NOUN
good ADJ
like SCONJ
the DET
old ADJ
days NOUN
, PUNCT
someone PRON
> X
would AUX
do AUX
it PRON
, PUNCT
in ADP
order NOUN
to PART
make VERB
money NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
no DET
one NOUN
does AUX
it PRON
indicates VERB
> X
that SCONJ
enforcement NOUN
is AUX
still ADV
in ADP
effect.>>An PROPN
odd ADJ
exception NOUN
to ADP
the DET
rule NOUN
seems VERB
to PART
be AUX
the DET
product NOUN
known VERB
as SCONJ
" PUNCT
gumbo PROPN
file'".>This PUNCT
is AUX
nothing PRON
more ADJ
than SCONJ
coarsely ADV
ground NOUN
dried VERB
sassafras PROPN
leaves NOUN
. PUNCT
  SPACE
This DET
> X
is AUX
not PART
only ADV
a DET
natural ADJ
product NOUN
, PUNCT
but CCONJ
a DET
natural ADJ
product NOUN
still ADV
in ADP
its PRON
natural ADJ
> X
form NOUN
, PUNCT
so ADV
maybe ADV
that DET
's AUX
how ADV
they PRON
evade VERB
Delany PROPN
. PUNCT
  SPACE
Or CCONJ
maybe ADV
a DET
special ADJ
exemption NOUN
> X
was AUX
made VERB
, PUNCT
to PART
appease VERB
powerful ADJ
Louisiana PROPN
Democrats PROPN
. PUNCT
I PRON
think VERB
what PRON
we PRON
have AUX
to PART
keep VERB
in ADP
mind NOUN
is AUX
that SCONJ
even ADV
though SCONJ
it PRON
may AUX
be AUX
illegal ADJ
tocommercially ADV
produce VERB
/ SYM
sell VERB
food NOUN
with ADP
carcinogenic ADJ
substances NOUN
, PUNCT
it PRON
is AUX
not PART
illegalfor ADP
people NOUN
to PART
do AUX
such ADJ
to ADP
their PRON
own ADJ
food NOUN
( PUNCT
smoking NOUN
, PUNCT
etc X
) PUNCT
. PUNCT
  SPACE
Is AUX
this DET
true ADJ
? PUNCT
    SPACE
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59037From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr13.093300.29529@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>"Weight AUX
rebound VERB
" PUNCT
is AUX
a DET
term NOUN
used VERB
in ADP
the DET
medical ADJ
literature NOUN
on ADP
> X
obesity NOUN
to PART
denote VERB
weight NOUN
regain NOUN
beyond ADP
what PRON
was AUX
lost VERB
in ADP
a DET
diet NOUN
> X
cycle NOUN
. PUNCT
  SPACE
There PRON
are AUX
any DET
number NOUN
of ADP
terms NOUN
which PRON
mean VERB
one NUM
thing NOUN
toCan NOUN
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
backthe NOUN
lost VERB
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
itexceeds NOUN
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
thatis NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59038From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyIn PROPN
article NOUN
< X
1993Apr12.201056.20753@ns1.cc.lehigh.edu NUM
> X
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel PROPN
) PUNCT
writes:>Now PROPN
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
culturing NOUN
is AUX
the DET
best ADJ
way NOUN
to PART
diagnose VERB
; PUNCT
it PRON
's AUX
very ADV
> X
hard ADJ
to PART
culture VERB
Bb PROPN
in ADP
most ADJ
cases NOUN
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
Dr. PROPN
N PROPN
has AUX
developed VERB
a>"feel PUNCT
" PUNCT
for ADP
what PRON
is AUX
and CCONJ
what PRON
is AUX
n't PART
LD NOUN
. PUNCT
  SPACE
This DET
comes VERB
from ADP
years NOUN
of ADP
experience.>No NUM
serology NOUN
can AUX
match VERB
that DET
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
some DET
would AUX
call VERB
Dr. PROPN
N PROPN
a DET
" PUNCT
quack">and PROPN
accuse VERB
him PRON
of ADP
trying VERB
to PART
make VERB
a DET
quick ADJ
buck.>Why NOUN
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures NOUN
. PUNCT
They PRON
poo VERB
- PUNCT
poo NOUN
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I'veseen PROPN
it PRON
many ADJ
times NOUN
. PUNCT
  SPACE
The DET
lab NOUN
tests NOUN
are AUX
n't PART
accurate ADJ
. PUNCT
  SPACE
We PRON
'll AUX
treat VERB
itnow NOUN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
is AUX
Dr. PROPN
N PROPN
's PART
practice NOUN
almost ADV
exclusively ADV
devoted ADJ
to ADP
treatingLyme NOUN
patients NOUN
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
* PUNCT
any DET
* PUNCT
orthopedic ADJ
surgeons NOUN
who PRON
fit VERB
thispattern NOUN
. PUNCT
  SPACE
They PRON
are AUX
usually ADV
GPs.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59039From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Could AUX
this DET
be AUX
a DET
migraine?In PROPN
article NOUN
< X
20773.3049.uupcb@factory.com PUNCT
> X
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
writes:>Headaches VERB
that PRON
seriously ADV
interfere VERB
with ADP
activities NOUN
of ADP
daily ADJ
living NOUN
> X
affect VERB
about ADP
15 NUM
% NOUN
of ADP
the DET
population NOUN
. PUNCT
  SPACE
Does AUX
n't PART
that DET
sound VERB
like SCONJ
> X
something PRON
a DET
" PUNCT
primary ADJ
care NOUN
" PUNCT
physician NOUN
should AUX
know VERB
something PRON
about ADP
? PUNCT
  SPACE
I PRON
> X
tend VERB
to PART
agree VERB
with ADP
HMO PROPN
administrators NOUN
- PUNCT
family NOUN
physicians NOUN
should AUX
> X
learn VERB
the DET
basics NOUN
of ADP
headache PROPN
management.>Absolutely ADV
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
of ADP
them PRON
have AUX
had VERB
3 NUM
weeks NOUN
of ADP
neurologyin PROPN
medical PROPN
school PROPN
and CCONJ
1 NUM
month NOUN
( PUNCT
maybe ADV
) PUNCT
in ADP
their PRON
residency NOUN
. PUNCT
  SPACE
Mostof PROPN
that PRON
is AUX
done VERB
in ADP
the DET
hospital NOUN
where ADV
migraines NOUN
rarely ADV
are AUX
seen VERB
. PUNCT
Where ADV
are AUX
they PRON
supposed VERB
to PART
learn VERB
? PUNCT
  SPACE
Those DET
who PRON
are AUX
diligent ADJ
andread NOUN
do AUX
learn VERB
, PUNCT
but CCONJ
most ADJ
do AUX
n't PART
, PUNCT
unfortunately.>Sometimes PROPN
I PRON
wonder VERB
what PRON
tension NOUN
- PUNCT
type NOUN
headaches NOUN
have AUX
to PART
do AUX
with ADP
> X
neurology PROPN
anyway ADV
. PUNCT
We PRON
are AUX
the DET
only ADJ
ones NOUN
, PUNCT
sometimes ADV
, PUNCT
who PRON
have AUX
enough ADJ
interest NOUN
in ADP
headachesto PROPN
spend VERB
the DET
time NOUN
to PART
get AUX
enough ADJ
history NOUN
to PART
diagnose VERB
them PRON
. PUNCT
  SPACE
Too ADV
often ADV
, PUNCT
the DET
primary ADJ
care NOUN
physician NOUN
hears VERB
" PUNCT
headache NOUN
" PUNCT
and CCONJ
loses VERB
interest NOUN
inanything VERB
but CCONJ
giving VERB
the DET
patient ADJ
analgesics NOUN
and CCONJ
getting VERB
them PRON
out ADP
ofthe DET
office NOUN
so SCONJ
they PRON
can AUX
get AUX
on ADP
to ADP
something PRON
more ADJ
interesting.>(I ADJ
am AUX
excepting VERB
migraine NOUN
, PUNCT
which PRON
is AUX
arguably ADV
neurologic ADJ
) PUNCT
. PUNCT
  SPACE
HeadachesI NUM
hope NOUN
you PRON
meant VERB
" PUNCT
inarguably".-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59040From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Cause NOUN
of ADP
mental ADJ
retardation?In PROPN
article NOUN
< X
1993Apr13.111834.1@cc.uvcc.edu NUM
> X
harrisji@cc.uvcc.edu PROPN
writes:>>Chromosome PROPN
studies NOUN
have AUX
shown VERB
no DET
abnormalities NOUN
. PUNCT
  SPACE
Enzyme PROPN
studies NOUN
and CCONJ
> X
urine NOUN
analyses NOUN
have AUX
not PART
turned VERB
up ADP
anything PRON
out SCONJ
of ADP
the DET
ordinary ADJ
. PUNCT
> X
MRI PROPN
images NOUN
of ADP
the DET
brain NOUN
show VERB
scar PROPN
tissue NOUN
in ADP
the DET
white ADJ
matter NOUN
. PUNCT
> X
Subsequent PROPN
MRI PROPN
analysis NOUN
has AUX
shown VERB
that SCONJ
the DET
deterioration NOUN
of ADP
the DET
> X
white PROPN
matter PROPN
is AUX
progressive.>>Because PROPN
neither DET
family NOUN
has AUX
a DET
history NOUN
of ADP
anything PRON
like SCONJ
this DET
, PUNCT
and CCONJ
> X
because SCONJ
two NUM
of ADP
our PRON
four NUM
children NOUN
are AUX
afflicted VERB
with ADP
the DET
disorder,>we PROPN
believe VERB
that SCONJ
it PRON
is AUX
an DET
autosomal ADJ
recessive ADJ
metabolic ADJ
disorder NOUN
of ADP
> X
some DET
kind NOUN
. PUNCT
  SPACE
Naturally ADV
, PUNCT
we PRON
would AUX
like VERB
to PART
know VERB
exactly ADV
what PRON
the DET
> X
disease NOUN
is AUX
so SCONJ
that SCONJ
we PRON
may AUX
gain VERB
some DET
insight NOUN
into ADP
how ADV
we PRON
can AUX
expect VERB
> X
the DET
disorder NOUN
to PART
progress VERB
in ADP
the DET
future NOUN
. PUNCT
  SPACE
We PRON
would AUX
also ADV
like VERB
to PART
be AUX
> X
able ADJ
to PART
provide VERB
our PRON
normal ADJ
children NOUN
with ADP
some DET
information NOUN
about ADP
> X
what PRON
they PRON
can AUX
expect VERB
in ADP
their PRON
own ADJ
children.>It PROPN
could AUX
be AUX
one NUM
of ADP
the DET
leukodystrophies NOUN
( PUNCT
not PART
adrenal ADJ
, PUNCT
onlyboys NOUN
get VERB
that DET
) PUNCT
. PUNCT
  SPACE
Surely ADV
you PRON
've AUX
been AUX
to ADP
a DET
university NOUN
pediatricneurology NOUN
department NOUN
. PUNCT
  SPACE
If SCONJ
not PART
that DET
is AUX
the DET
next ADJ
step NOUN
. PUNCT
  SPACE
Biopsiesmight PROPN
help NOUN
, PUNCT
especially ADV
if SCONJ
peripheral ADJ
nerves NOUN
are AUX
also ADV
affected VERB
. PUNCT
There PRON
are AUX
so ADV
many ADJ
of ADP
these DET
diseases NOUN
that PRON
would AUX
fit VERB
the DET
symptomsyou NOUN
gave VERB
that SCONJ
more ADJ
ca AUX
n't PART
be AUX
said VERB
at ADP
this DET
time NOUN
. PUNCT
I PRON
agree VERB
with ADP
your PRON
surmise NOUN
that SCONJ
it PRON
is AUX
an DET
autosomal ADJ
recessive NOUN
. PUNCT
If SCONJ
so ADV
, PUNCT
your PRON
normal ADJ
children NOUN
wo AUX
n't PART
have AUX
to PART
worry VERB
too ADV
much ADJ
unlessthey ADJ
marry VERB
near SCONJ
relatives NOUN
. PUNCT
  SPACE
Most ADV
recessive ADJ
genes NOUN
are AUX
rareexcept VERB
in ADP
inbred VERB
communities NOUN
( PUNCT
e.g. ADV
Lithuanian ADJ
Jews).-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59041From NUM
: SYM
880506s@dragon.acadiau.ca NUM
( PUNCT
James PROPN
R. PROPN
Skinner)Subject NUM
: PUNCT
Re ADP
: PUNCT
Paxil PROPN
( PUNCT
request)880506s@dragon.acadiau.ca NOUN
( PUNCT
James PROPN
R. PROPN
Skinner PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
> X
	 SPACE
I PRON
have AUX
seen VERB
a DET
couple NOUN
of ADP
postings NOUN
refering VERB
to ADP
an DET
SRI PROPN
called VERB
paxil NOUN
. PUNCT
  SPACE
I PRON
> X
have AUX
been AUX
on ADP
Prozac PROPN
for ADP
a DET
number NOUN
of ADP
years NOUN
and CCONJ
recently ADV
switched VERB
to ADP
Zolf PROPN
. PUNCT
  SPACE
I PRON
> X
have AUX
seen VERB
a DET
bit NOUN
of ADP
comparsion NOUN
of ADP
Prozac PROPN
to ADP
Paxil PROPN
but CCONJ
none NOUN
on ADP
Zolft PROPN
to ADP
Prozac PROPN
> X
Can AUX
some DET
one NOUN
enlight VERB
me PRON
on ADP
the DET
differences/ NOUN
side NOUN
effect NOUN
profile/ NOUN
etc X
... PUNCT
does AUX
anyone PRON
know?-- PROPN
-----------------------------------+-------------------------------------------- NUM
        SPACE
James PROPN
Robie PROPN
Skinner PROPN
        SPACE
| PROPN
     SPACE
Jodrey PROPN
School PROPN
of ADP
Computer PROPN
Science PROPN
        SPACE
James.Skinner@dragon.acadiau.ca VERB
  SPACE
| X
  SPACE
Acadia PROPN
University PROPN
, PUNCT
Wolfville PROPN
, PUNCT
NS PROPN
, PUNCT
Canada-----------------------------------+--------------------------------------------Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59042From NUM
: PUNCT
sandy@nmr1.pt.cyanamid.COM PROPN
( PUNCT
Sandy PROPN
Silverman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskHeat NOUN
shock NOUN
proteins NOUN
are AUX
those DET
whose PRON
expression NOUN
is AUX
induced VERB
in ADP
response NOUN
toelevated VERB
temperature NOUN
. PUNCT
  SPACE
Some DET
are AUX
also ADV
made VERB
when ADV
organisms NOUN
are AUX
subjected VERB
toother ADP
stress NOUN
conditions NOUN
, PUNCT
e.g. DET
high ADJ
salt NOUN
. PUNCT
  SPACE
They PRON
have AUX
no DET
obvious ADJ
connectionto NOUN
what PRON
happens VERB
when ADV
you PRON
burn VERB
proteins.--Sanford NUM
Silverman PROPN
                      SPACE
> X
Opinions NOUN
expressed VERB
here ADV
are AUX
my PRON
own ADJ
< PUNCT
American PROPN
Cyanamid PROPN
  SPACE
sandy@pt.cyanamid.com PROPN
, PUNCT
silvermans@pt.cyanamid.com PROPN
     SPACE
" PUNCT
Yeast NOUN
is AUX
Best"Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59043From NUM
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)Subject NOUN
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?My PROPN
wife NOUN
's PART
ob PROPN
- PUNCT
gyn PROPN
has AUX
an DET
ultrasound ADJ
machine NOUN
in ADP
her PRON
office NOUN
. PUNCT
  SPACE
Whenthe DET
doctor NOUN
could AUX
n't PART
hear VERB
a DET
fetal ADJ
heartbeat NOUN
( PUNCT
13 NUM
weeks NOUN
) PUNCT
she PRON
usedthe VERB
ultrasound NOUN
to PART
see VERB
if SCONJ
everything PRON
was AUX
ok ADJ
. PUNCT
  SPACE
( PUNCT
it PRON
was)On VERB
her PRON
next ADJ
visit NOUN
, PUNCT
my PRON
wife NOUN
asked VERB
another DET
doctor NOUN
in ADP
the DET
office NOUN
ifthey NOUN
read VERB
the DET
ultrasounds VERB
themselves PRON
or CCONJ
if SCONJ
they PRON
had AUX
a DET
radiologistread NOUN
the DET
pictures NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
very ADV
vehemently ADV
insisted VERB
that SCONJ
theywere NOUN
qualified VERB
to PART
read VERB
the DET
ultrasound NOUN
and CCONJ
radiologists NOUN
were AUX
NOT!My PROPN
wife NOUN
is AUX
concerned ADJ
about ADP
this DET
. PUNCT
  SPACE
She PRON
saw VERB
a DET
TV NOUN
show VERB
a DET
couple NOUN
monthsback NOUN
( PUNCT
something PRON
like SCONJ
20/20 NUM
or CCONJ
Dateline PROPN
NBC PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
where ADV
an DET
experton ADJ
fetal NOUN
ultrasounds VERB
( PUNCT
a DET
radiologist NOUN
) PUNCT
was AUX
showing VERB
all DET
the DET
differentdeffects NOUN
that PRON
could AUX
be AUX
detected VERB
using VERB
the DET
ultrasound NOUN
. PUNCT
Should AUX
my PRON
wife NOUN
be AUX
concerned VERB
? PUNCT
  SPACE
Should AUX
we PRON
take VERB
the DET
pictures NOUN
to ADP
a DET
radiologist NOUN
for ADP
a DET
second ADJ
opinion NOUN
? PUNCT
( PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
where ADV
would AUX
we PRON
findsuch ADV
an DET
expert NOUN
in ADP
Chicago PROPN
? PUNCT
) PUNCT
  SPACE
We PRON
do AUX
n't PART
really ADV
have AUX
any DET
special ADJ
medicalreason NOUN
to PART
be AUX
concerned VERB
, PUNCT
but CCONJ
if SCONJ
a DET
radiologist NOUN
will AUX
be AUX
able ADJ
to PART
seethings NOUN
the DET
ob PROPN
- PUNCT
gyn PROPN
ca AUX
n't PART
, PUNCT
then ADV
I PRON
do AUX
n't PART
see VERB
why ADV
we PRON
should AUX
n't PART
use VERB
one NUM
. PUNCT
Any DET
thoughts?-- NOUN
Doug PROPN
Bank PROPN
                       SPACE
Private PROPN
Systems PROPN
Divisiondougb@ecs.comm.mot.com X
          SPACE
Motorola PROPN
Communications PROPN
Sectordougb@nwu.edu PROPN
                   SPACE
Schaumburg PROPN
, PUNCT
Illinoisdougb@casbah.acns.nwu.edu NOUN
       SPACE
708 NUM
- PUNCT
576 NUM
- SYM
8207 NUM
                    SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59044From NUM
: PUNCT
ls8139@albnyvms.bitnet PROPN
( PUNCT
larry PROPN
silverberg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
, PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>In X
article NOUN
davpa@ida.liu.se X
  SPACE
( PUNCT
David PROPN
Partain PROPN
) PUNCT
writes:>>>>Someone PROPN
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
> X
> X
> X
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
something>>>to NOUN
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highly>>>allergic PROPN
to ADP
yeast NOUN
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADV
about ADP
it?I ADJ
have AUX
a DET
lot NOUN
of ADP
info NOUN
about ADP
this DET
disease NOUN
. PUNCT
  SPACE
I PRON
am AUX
posting VERB
a DET
small ADJ
amount NOUN
ofit NOUN
that PRON
I PRON
extracted VERB
. PUNCT
  SPACE
If SCONJ
more ADV
is AUX
required VERB
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
@ls8139@gemini.albany.edu PROPN
. PUNCT
  SPACE
Please INTJ
, PUNCT
it PRON
takes VERB
me PRON
some DET
time NOUN
to PART
upload VERB
it PRON
, PUNCT
sobe PROPN
advised VERB
, PUNCT
only ADV
request VERB
it PRON
if SCONJ
you PRON
* PUNCT
really ADV
* PUNCT
want VERB
it.here PRON
is AUX
some DET
info NOUN
from ADP
InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
CenterAlso PROPN
, PUNCT
check VERB
you PRON
local ADJ
of ADP
univeristy ADJ
library NOUN
. PUNCT
  SPACE
They PRON
most ADV
likely ADV
have AUX
theInfoTrac PROPN
cd NOUN
- PUNCT
rom NOUN
this DET
info NOUN
was AUX
taken VERB
from ADP
...... PUNCT
====================================InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PUNCT
92 NUM
Heading NOUN
: PUNCT
   SPACE
CANDIDA PROPN
ALBICANS PROPN
             SPACE
! PUNCT
Dictionary PROPN
Definition PROPN
    SPACE
1 NUM
. PUNCT
    SPACE
Mosby PROPN
's PART
Medical PROPN
and CCONJ
Nursing PROPN
Dictionary PROPN
, PUNCT
2nd ADJ
edition NOUN
               SPACE
COPYRIGHT NOUN
1986 NUM
The DET
C.V. PROPN
Mosby PROPN
Company PROPN
                                                                            SPACE
Candida PROPN
albicans NOUN
                                             SPACE
------------------------------------------------------- PUNCT
      SPACE
A DET
common ADJ
, PUNCT
budding VERB
, PUNCT
  SPACE
yeastlike INTJ
, PUNCT
microscopic PROPN
fungal PROPN
            SPACE
organism NOUN
normally ADV
present ADJ
in ADP
the DET
mucous ADJ
membranes NOUN
of ADP
         SPACE
the DET
mouth NOUN
, PUNCT
intestinal ADJ
tract NOUN
, PUNCT
and CCONJ
vagina PROPN
and CCONJ
on ADP
the DET
skin NOUN
      SPACE
of ADP
healthy ADJ
people NOUN
. PUNCT
Under ADP
certain ADJ
circumstances NOUN
, PUNCT
it PRON
may AUX
       SPACE
cause VERB
superficial ADJ
infections NOUN
of ADP
the DET
mouth NOUN
or CCONJ
vagina PROPN
          SPACE
and CCONJ
, PUNCT
less ADV
commonly ADV
, PUNCT
serious ADJ
invasive ADJ
systemic ADJ
infection NOUN
      SPACE
and CCONJ
toxic ADJ
reaction NOUN
. PUNCT
See VERB
also ADV
candidiasis.==============================InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
  SPACE
THE DET
MATERIAL NOUN
CONTAINED PROPN
IN ADP
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
IS VERB
PROVIDED VERB
  SPACE
ONLY ADV
FOR ADP
INFORMATIONAL ADJ
PURPOSES NOUN
AND CCONJ
SHOULD AUX
NOT ADV
BE VERB
CONSTRUED X
AS ADP
  SPACE
MEDICAL PROPN
ADVICE PROPN
OR CCONJ
INSTRUCTION PROPN
. PUNCT
  SPACE
CONSULT VERB
YOUR PRON
HEALTH NOUN
PROFESSIONAL NOUN
  SPACE
FOR ADP
ADVICE PROPN
RELATING NOUN
TO ADP
A DET
MEDICAL ADJ
PROBLEM NOUN
OR CCONJ
CONDITION PROPN
. PUNCT
Heading VERB
: PUNCT
   SPACE
CANDIDA PROPN
ALBICANS PROPN
    SPACE
1 NUM
. PUNCT
     SPACE
Yogurt PROPN
cure NOUN
for ADP
Candida PROPN
. PUNCT
( PUNCT
acidophilus PROPN
) PUNCT
il PROPN
v22 PROPN
East PROPN
       SPACE
West PROPN
Natural PROPN
Health PROPN
July PROPN
- PUNCT
August PROPN
' PART
92 NUM
p17(1 NOUN
) PUNCT
                       SPACE
TEXT NOUN
AVAILABLE PROPN
TEXT PROPN
COPYRIGHT PROPN
East PROPN
West PROPN
Partners PROPN
1992 NUM
                                         SPACE
Another DET
folk NOUN
remedy NOUN
receives VERB
the DET
blessing NOUN
of ADP
medical ADJ
study NOUN
. PUNCT
           SPACE
Researchers PROPN
have AUX
found VERB
that SCONJ
eating VERB
a DET
cup NOUN
of ADP
yogurt PROPN
a DET
day NOUN
drastically ADV
    SPACE
reduces VERB
a DET
woman NOUN
's PART
chances NOUN
of ADP
getting VERB
vaginal ADJ
candida PROPN
, PUNCT
a DET
yeast NOUN
infection NOUN
. PUNCT
  SPACE
For ADP
the DET
year NOUN
- PUNCT
long ADJ
study NOUN
, PUNCT
researchers NOUN
at ADP
Long PROPN
Island PROPN
Jewish PROPN
Medical PROPN
    SPACE
Center PROPN
in ADP
New PROPN
Hyde PROPN
Park PROPN
, PUNCT
New PROPN
York PROPN
, PUNCT
recruited VERB
13 NUM
women NOUN
who PRON
suffered VERB
from ADP
chronic ADJ
yeast NOUN
infections NOUN
. PUNCT
For ADP
the DET
first ADJ
6 NUM
months NOUN
, PUNCT
the DET
women NOUN
each DET
day NOUN
ate8 NOUN
ounces NOUN
of ADP
yogurt NOUN
containing VERB
Lactobacillus PROPN
acidophilus NOUN
. PUNCT
For ADP
the DET
second ADJ
6 NUM
months NOUN
, PUNCT
the DET
women NOUN
did AUX
not PART
eat VERB
yogurt PROPN
. PUNCT
The DET
researchers NOUN
examined VERB
the DET
    SPACE
women NOUN
each DET
month NOUN
and CCONJ
found VERB
that SCONJ
incidents NOUN
of ADP
colonization NOUN
and CCONJ
infection NOUN
were AUX
significantly ADV
lower ADJ
during ADP
the DET
period NOUN
when ADV
the DET
women NOUN
ate VERB
yogurt PROPN
. PUNCT
     SPACE
The DET
fungus ADJ
Candida PROPN
albicans NOUN
can AUX
live VERB
in ADP
the DET
body NOUN
without ADP
doing VERB
harm NOUN
. PUNCT
  SPACE
It PRON
is AUX
an DET
overproliferation NOUN
of ADP
the DET
fungus NOUN
that PRON
leads VERB
to ADP
infection NOUN
. PUNCT
The DET
   SPACE
researchers NOUN
concluded VERB
that SCONJ
the DET
L. PROPN
acidophilus NOUN
bacteria NOUN
found VERB
in ADP
some DET
    SPACE
brands NOUN
of ADP
yogurt PROPN
retard VERB
overgrowth NOUN
of ADP
the DET
fungus NOUN
. PUNCT
Streptococcus PROPN
         SPACE
thermophilus PROPN
and CCONJ
L. PROPN
bulgaricus PROPN
are AUX
the DET
two NUM
bacteria NOUN
most ADV
commonly ADV
used VERB
  SPACE
in ADP
commercial ADJ
yogurt NOUN
production NOUN
. PUNCT
Neither DET
one PRON
appears VERB
to PART
exert VERB
a DET
         SPACE
protective ADJ
effect NOUN
against ADP
Candida PROPN
albicans NOUN
, PUNCT
however ADV
. PUNCT
Women NOUN
who PRON
want VERB
to PART
  SPACE
try VERB
yogurt PROPN
as SCONJ
a DET
preventive ADJ
measure NOUN
should AUX
choose VERB
a DET
brand NOUN
that PRON
lists VERB
     SPACE
acidophilus NOUN
in ADP
its PRON
contents NOUN
. PUNCT
                                            SPACE
--- PUNCT
end NOUN
--- PUNCT
                                            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
  SPACE
THE DET
MATERIAL NOUN
CONTAINED PROPN
IN ADP
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
IS VERB
PROVIDED VERB
  SPACE
ONLY ADV
FOR ADP
INFORMATIONAL ADJ
PURPOSES NOUN
AND CCONJ
SHOULD AUX
NOT ADV
BE VERB
CONSTRUED X
AS ADP
  SPACE
MEDICAL PROPN
ADVICE PROPN
OR CCONJ
INSTRUCTION PROPN
. PUNCT
  SPACE
CONSULT VERB
YOUR PRON
HEALTH NOUN
PROFESSIONAL NOUN
  SPACE
FOR ADP
ADVICE PROPN
RELATING NOUN
TO ADP
A DET
MEDICAL ADJ
PROBLEM NOUN
OR CCONJ
CONDITION PROPN
. PUNCT
Heading VERB
: PUNCT
   SPACE
CANDIDA PROPN
ALBICANS PROPN
    SPACE
1 NUM
. PUNCT
     SPACE
Candida PROPN
( PUNCT
Monilia PROPN
) PUNCT
. PUNCT
( PUNCT
Infections NOUN
Caused VERB
by ADP
Fungi PROPN
) PUNCT
          SPACE
( PUNCT
Infectious ADJ
Diseases NOUN
) PUNCT
by ADP
Harold PROPN
C. PROPN
Neu PROPN
The DET
Columbia PROPN
          SPACE
Univ PROPN
. PUNCT
Coll PROPN
. PUNCT
of ADP
Physicians PROPN
& CCONJ
Surgeons PROPN
Complete PROPN
Home PROPN
           SPACE
Medical PROPN
Guide PROPN
Edition PROPN
2 NUM
' NUM
89 NUM
p472(1 PROPN
) PUNCT
                              SPACE
TEXT PROPN
AVAILABLE PROPN
TEXT NOUN
COPYRIGHT NOUN
Crown PROPN
Publishers PROPN
Inc. PROPN
1989 NUM
                                      SPACE
Candida PROPN
( PUNCT
Monilia PROPN
) PUNCT
                                                       SPACE
This DET
disease NOUN
is AUX
usually ADV
caused VERB
by ADP
Candida PROPN
albicans PROPN
, PUNCT
a DET
fungus NOUN
that SCONJ
we PRON
  SPACE
all DET
carry VERB
at ADP
one NUM
time NOUN
or CCONJ
another DET
. PUNCT
In ADP
some DET
circumstances NOUN
, PUNCT
though ADV
, PUNCT
the DET
    SPACE
organisms NOUN
proliferate VERB
, PUNCT
producing VERB
symptomatic ADJ
infection NOUN
of ADP
the DET
mouth NOUN
, PUNCT
    SPACE
intestines NOUN
, PUNCT
vagina PROPN
, PUNCT
or CCONJ
skin NOUN
. PUNCT
When ADV
the DET
mouth NOUN
or CCONJ
vagina PROPN
are AUX
infected VERB
, PUNCT
the DET
disease NOUN
is AUX
commonly ADV
called VERB
thrush PROPN
. PUNCT
                                        SPACE
Vaginitis PROPN
caused VERB
by ADP
Candida PROPN
often ADV
afflicts VERB
women NOUN
on ADP
birth NOUN
control NOUN
     SPACE
pills NOUN
or CCONJ
antibiotics NOUN
. PUNCT
There PRON
is AUX
itching VERB
and CCONJ
a DET
white ADJ
, PUNCT
cheesy PROPN
discharge NOUN
. PUNCT
   SPACE
Among ADP
narcotic ADJ
addicts NOUN
, PUNCT
Candida PROPN
infections NOUN
can AUX
lead VERB
to ADP
heart NOUN
valve NOUN
      SPACE
inflammation NOUN
. PUNCT
                                                             SPACE
Diagnosis PROPN
of ADP
Candida PROPN
infections NOUN
is AUX
confirmed VERB
by ADP
cultures NOUN
and CCONJ
blood NOUN
    SPACE
tests NOUN
. PUNCT
Treatment NOUN
can AUX
be AUX
with ADP
amphotericin PROPN
B PROPN
or CCONJ
orally ADV
with ADP
ketoconazole PROPN
. PUNCT
There PRON
is AUX
no DET
evidence NOUN
that SCONJ
Candida PROPN
in ADP
the DET
intestine NOUN
of ADP
normal ADJ
individualsleads NOUN
to PART
disease VERB
. PUNCT
All DET
people NOUN
at ADP
one NUM
time NOUN
or CCONJ
another DET
have AUX
Candida PROPN
in ADP
     SPACE
their PRON
intestines NOUN
. PUNCT
Claims NOUN
for ADP
any DET
benefit NOUN
from ADP
special ADJ
diets NOUN
or CCONJ
chronic NOUN
  SPACE
antifungal ADJ
agents NOUN
is AUX
not PART
based VERB
on ADP
any DET
solid ADJ
evidence NOUN
. PUNCT
                   SPACE
--- PUNCT
end NOUN
---==========================I X
hope VERB
this DET
is AUX
informative ADJ
. PUNCT
Larry~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Live PROPN
From ADP
New PROPN
York PROPN
, PUNCT
It PRON
's AUX
SATURDAY PROPN
NIGHT PROPN
... PUNCT
Tonight NOUN
's PART
special ADJ
guest NOUN
: PUNCT
Lawrence PROPN
Silverberg PROPN
from ADP
The DET
State PROPN
University PROPN
of ADP
New PROPN
York PROPN
@ ADP
Albanyaka PROPN
: PUNCT
ls8139@gemini PROPN
. PUNCT
Albany.edu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59045From NUM
: PUNCT
yozzo@watson.ibm.com PROPN
( PUNCT
Ralph PROPN
Yozzo)Subject PROPN
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyIn PROPN
article NOUN
< X
19688@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>In X
article NOUN
< X
1993Apr12.201056.20753@ns1.cc.lehigh.edu NUM
> X
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel PROPN
) PUNCT
writes:>>>Now INTJ
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
culturing NOUN
is AUX
the DET
best ADJ
way NOUN
to PART
diagnose VERB
; PUNCT
it PRON
's AUX
very>>hard ADJ
to PART
culture VERB
Bb PROPN
in ADP
most ADJ
cases NOUN
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
Dr. PROPN
N PROPN
has AUX
developed VERB
a>>"feel NOUN
" PUNCT
for ADP
what PRON
is AUX
and CCONJ
what PRON
is AUX
n't PART
LD NOUN
. PUNCT
  SPACE
This DET
comes VERB
from ADP
years NOUN
of ADP
experience.>>No PROPN
serology NOUN
can AUX
match VERB
that DET
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
some DET
would AUX
call VERB
Dr. PROPN
N PROPN
a DET
" PUNCT
quack">>and NOUN
accuse VERB
him PRON
of ADP
trying VERB
to PART
make VERB
a DET
quick ADJ
buck.>>>Why NOUN
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures.>They PROPN
poo VERB
- PUNCT
poo VERB
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I've ADJ
> X
seen VERB
it PRON
many ADJ
times NOUN
. PUNCT
  SPACE
The DET
lab NOUN
tests NOUN
are AUX
n't PART
accurate ADJ
. PUNCT
  SPACE
We PRON
'll AUX
treat VERB
it PRON
> X
now ADV
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
is AUX
Dr. PROPN
N PROPN
's PART
practice NOUN
almost ADV
exclusively ADV
devoted ADJ
to ADP
treating VERB
> X
Lyme PROPN
patients NOUN
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
* PUNCT
any DET
* PUNCT
orthopedic ADJ
surgeons NOUN
who PRON
fit VERB
this DET
> X
pattern NOUN
. PUNCT
  SPACE
They PRON
are AUX
usually ADV
GPs.>-- ADJ
  SPACE
Are AUX
you PRON
arguing VERB
that SCONJ
the DET
Lyme PROPN
lab NOUN
test NOUN
is AUX
accurate?The ADJ
books NOUN
that PRON
I PRON
've AUX
read VERB
say VERB
that SCONJ
in ADP
general ADJ
the DET
testshave NOUN
a DET
50 NUM
- SYM
50 NUM
chance NOUN
of ADP
being AUX
correct ADJ
. PUNCT
  SPACE
( PUNCT
The DET
testsresult NOUN
in ADP
a DET
large ADJ
number NOUN
of ADP
both CCONJ
false ADJ
positives NOUN
andfalse NOUN
negatives NOUN
. PUNCT
  SPACE
I PRON
am AUX
in ADP
the DET
latter ADJ
case.)We PROPN
could AUX
get AUX
those DET
same ADJ
odds NOUN
by ADP
" PUNCT
rolling VERB
the DET
dice".-- NOUN
  SPACE
Ralph PROPN
Yozzo PROPN
( PUNCT
yozzo@watson.ibm.com PROPN
) PUNCT
   SPACE
From ADP
the DET
beautiful ADJ
and CCONJ
historic ADJ
New PROPN
York PROPN
State PROPN
Mid PROPN
- PUNCT
Hudson PROPN
Valley PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59046From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5sqv8.EDB@acsu.buffalo.edu PROPN
> X
SFEGUS@ubvm.cc.buffalo.edu PROPN
writes:>In PROPN
article NOUN
< X
79857@cup.portal.com>>mmm@cup.portal.com NUM
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
No INTJ
, PUNCT
there PRON
is AUX
something PRON
called VERB
the DET
" PUNCT
Delany PROPN
Amendment PROPN
" PUNCT
which PRON
makes VERB
carcinogenic>>food NOUN
additives NOUN
illegal ADJ
in ADP
any DET
amount NOUN
. PUNCT
  SPACE
This DET
was AUX
passed VERB
by ADP
Congress PROPN
in ADP
the DET
> X
> X
I PRON
think VERB
what PRON
we PRON
have AUX
to PART
keep VERB
in ADP
mind NOUN
is AUX
that SCONJ
even ADV
though SCONJ
it PRON
may AUX
be AUX
illegal ADJ
to ADP
> X
commercially ADV
produce VERB
/ SYM
sell VERB
food NOUN
with ADP
carcinogenic ADJ
substances NOUN
, PUNCT
it PRON
is AUX
not PART
illegal ADJ
> X
for ADP
people NOUN
to PART
do AUX
such ADJ
to ADP
their PRON
own ADJ
food NOUN
( PUNCT
smoking NOUN
, PUNCT
etc X
) PUNCT
. PUNCT
  SPACE
Is AUX
this DET
true ADJ
? PUNCT
> X
Whoa INTJ
. PUNCT
What PRON
did AUX
you PRON
say VERB
your PRON
name NOUN
was AUX
? PUNCT
Address NOUN
, PUNCT
SSN PROPN
? PUNCT
Smoking NOUN
foods NOUN
, PUNCT
eh?I NOUN
think VERB
the DET
gov't NOUN
would AUX
like VERB
to PART
know VERB
about ADP
this DET
... PUNCT
Brian:- PROPN
) PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59047From NUM
: PUNCT
draper@gnd1.wtp.gtefsd.com X
( PUNCT
PAM PROPN
DRAPER)Subject PROPN
: PUNCT
Any DET
info NOUN
. PUNCT
on ADP
Vasomotor PROPN
RhinitisI PROPN
recently ADV
attended VERB
an DET
allery NOUN
seminar NOUN
. PUNCT
  SPACE
Steroid PROPN
Nasal PROPN
sprays NOUN
were AUX
discussed VERB
. PUNCT
  SPACE
Afterward ADV
on ADP
a DET
one NUM
- PUNCT
on ADP
- PUNCT
one NUM
basis NOUN
, PUNCT
I PRON
asked VERB
the DET
speaker NOUN
what PRON
if SCONJ
none NOUN
of ADP
the DET
Vancanese PROPN
, PUNCT
Beconase PROPN
, PUNCT
Nasalide PROPN
, PUNCT
Nasalcort PROPN
, PUNCT
or CCONJ
Nasalchrom PROPN
work NOUN
nor CCONJ
do AUX
any DET
oral ADJ
decongestants NOUN
work VERB
. PUNCT
  SPACE
She PRON
replied VERB
that SCONJ
she PRON
saw VERB
an DET
article NOUN
on ADP
Vasomotor PROPN
Rhinitis PROPN
. PUNCT
  SPACE
That SCONJ
this DET
is AUX
not PART
an DET
allergic ADJ
reaction NOUN
and CCONJ
that SCONJ
nothing PRON
other ADJ
than SCONJ
the DET
Afrin PROPN
's PART
and CCONJ
such ADJ
would AUX
work VERB
. PUNCT
  SPACE
( PUNCT
Which PRON
in ADP
my PRON
case NOUN
is AUX
true).I NUM
want VERB
to PART
find VERB
out ADP
as ADV
much ADV
as SCONJ
possible ADJ
about ADP
this DET
, PUNCT
since SCONJ
I PRON
am AUX
going VERB
to PART
see VERB
my PRON
allergist NOUN
in ADP
May PROPN
and CCONJ
want VERB
to PART
be AUX
armed VERB
to ADP
the DET
hilt NOUN
with ADP
information NOUN
; PUNCT
since SCONJ
nothing PRON
he PRON
has AUX
done VERB
with ADP
me PRON
has AUX
helped VERB
me PRON
at ADV
all ADV
and CCONJ
I PRON
have AUX
had VERB
no DET
relief NOUN
for ADP
14 NUM
months NOUN
. PUNCT
Please INTJ
respond VERB
if SCONJ
you PRON
know VERB
anything PRON
about ADP
this DET
and/or CCONJ
please INTJ
let VERB
me PRON
know VERB
what PRON
articles NOUN
might AUX
be AUX
helpful ADJ
that SCONJ
I PRON
could AUX
look VERB
up ADP
in ADP
the DET
library NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59048From NUM
: PUNCT
liny@sun13.scri.fsu.edu NUM
( PUNCT
Nemo)Subject NUM
: PUNCT
Bates PROPN
Method PROPN
for ADP
MyopiaDoes PROPN
the DET
Bates PROPN
method NOUN
work NOUN
? PUNCT
  SPACE
I PRON
first ADV
heard VERB
about ADP
it PRON
in ADP
this DET
newsgroup NOUN
several ADJ
years NOUN
ago ADV
, PUNCT
and CCONJ
I PRON
have AUX
just ADV
got VERB
hold NOUN
of ADP
a DET
book NOUN
, PUNCT
" PUNCT
How ADV
to PART
improve VERB
yoursight NOUN
- PUNCT
simple ADJ
daily ADJ
drills NOUN
in ADP
relaxation NOUN
" PUNCT
, PUNCT
by ADP
Margaret PROPN
D. PROPN
Corbett PROPN
, PUNCT
( PUNCT
' PUNCT
Authorized ADJ
instructor NOUN
of ADP
the DET
Bates PROPN
method NOUN
) PUNCT
, PUNCT
published VERB
in ADP
1953 NUM
. PUNCT
  SPACE
It PRON
talks VERB
about ADP
vision NOUN
improvement NOUN
by ADP
relaxation NOUN
and CCONJ
exercise NOUN
. PUNCT
  SPACE
Has AUX
there PRON
beenany NOUN
study NOUN
on ADP
whether SCONJ
this DET
method NOUN
actually ADV
works VERB
? PUNCT
  SPACE
If SCONJ
it PRON
works VERB
, PUNCT
is AUX
it PRON
by ADP
actually ADV
shortening VERB
the DET
previously ADV
elongated VERB
eyeball NOUN
, PUNCT
or CCONJ
by ADP
increasing VERB
the DET
lens NOUN
's PART
ability NOUN
to PART
flatten VERB
itself PRON
in ADP
order NOUN
to PART
compensate VERB
for ADP
the DET
too ADV
- PUNCT
long ADJ
eyeball?Since NOUN
myopia NOUN
is AUX
the DET
result NOUN
of ADP
eyeball NOUN
elongation NOUN
, PUNCT
seems VERB
to ADP
me PRON
the DET
mostlogical ADJ
approach NOUN
for ADP
correction NOUN
is AUX
to PART
find VERB
a DET
way NOUN
to PART
reverse VERB
the DET
process NOUN
, PUNCT
i.e PROPN
. PROPN
, PUNCT
shorten VERB
it PRON
somehow ADV
( PUNCT
preferably ADV
non ADJ
- ADJ
surgically ADJ
) PUNCT
. PUNCT
  SPACE
Has AUX
there ADV
beenany NOUN
recent ADJ
studies NOUN
on ADP
this DET
? PUNCT
  SPACE
Where ADV
can AUX
I PRON
find VERB
them PRON
? PUNCT
  SPACE
I PRON
know VERB
RK PROPN
works VERB
by ADP
changing VERB
the DET
curvature NOUN
of ADP
the DET
cornea NOUN
to PART
compensate VERB
for ADP
the DET
shape NOUN
of ADP
eyeball NOUN
, PUNCT
but CCONJ
if SCONJ
there PRON
is AUX
a DET
way NOUN
to PART
train VERB
the DET
muscles NOUN
to PART
shorten VERB
the DET
eyeball NOUN
back ADV
to ADP
its PRON
correct ADJ
length NOUN
that PRON
would AUX
be AUX
even ADV
better ADJ
( PUNCT
Bates PROPN
's PART
idea NOUN
, PUNCT
right?)Thanks NOUN
for ADP
any DET
information NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59049From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>There PROPN
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.>There PROPN
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
and CCONJ
> X
published VERB
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic ADJ
skeptics NOUN
> X
who PRON
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used VERB
. PUNCT
Snort PROPN
. PUNCT
  SPACE
Ah INTJ
, PUNCT
there PRON
go VERB
my PRON
sinuses NOUN
again.>For NOUN
example NOUN
, PUNCT
Dr. PROPN
Ivker PROPN
, PUNCT
who PRON
wrote VERB
the DET
book NOUN
" PUNCT
Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
always ADV
gives VERB
, PUNCT
Oh INTJ
, PUNCT
wow INTJ
. PUNCT
  SPACE
A DET
classic ADJ
textbook NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
laughed VERB
at ADP
Einstein PROPN
, PUNCT
too!>before PUNCT
any DET
other ADJ
treatment NOUN
, PUNCT
a DET
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
( PUNCT
such ADJ
as SCONJ
Nizoral PROPN
) PUNCT
to ADP
his PRON
> X
new ADJ
patients NOUN
IF ADP
they PRON
've AUX
been AUX
on ADP
braod NOUN
- PUNCT
spectrum NOUN
anti ADJ
- ADJ
biotics ADJ
4 NUM
or CCONJ
more ADJ
times NOUN
> X
in ADP
the DET
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
's AUX
kept VERB
a DET
record NOUN
of ADP
the DET
results NOUN
, PUNCT
and CCONJ
for ADP
over ADP
> X
2000 NUM
patients NOUN
found VERB
that SCONJ
over ADP
90 NUM
% NOUN
of ADP
his PRON
patients NOUN
get VERB
significant ADJ
relief NOUN
> X
of ADP
allergic PROPN
/ SYM
sinus NOUN
symptoms NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
this DET
is AUX
only ADV
the DET
beginning NOUN
for ADP
his PRON
> X
program NOUN
. PUNCT
Yeah INTJ
, PUNCT
I PRON
'll AUX
bet VERB
. PUNCT
  SPACE
Tomorrow PROPN
, PUNCT
the DET
world NOUN
. PUNCT
Listen VERB
, PUNCT
uncontrolled ADJ
studies NOUN
like SCONJ
this DET
are AUX
worthless.>In PUNCT
my PRON
case NOUN
, PUNCT
as SCONJ
I PRON
reported VERB
a DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
I PRON
was AUX
developing VERB
the DET
classic ADJ
> X
symptoms NOUN
outlined VERB
in ADP
' PUNCT
The DET
Yeast PROPN
Connection PROPN
' PUNCT
( PUNCT
I PRON
agree VERB
it PRON
is AUX
a DET
poorly ADV
> X
written VERB
book NOUN
) PUNCT
: PUNCT
  SPACE
e.g. ADV
, PUNCT
extreme ADJ
sensitivity NOUN
to ADP
plastics NOUN
, PUNCT
vapors NOUN
, PUNCT
etc X
. PUNCT
which PRON
> X
I PRON
never ADV
had AUX
before ADV
( PUNCT
started VERB
in ADP
November PROPN
) PUNCT
. PUNCT
  SPACE
Within ADP
one NUM
week NOUN
of ADP
full ADJ
dosage NOUN
> X
of ADP
Sporanox PROPN
, PUNCT
the DET
sensitivity NOUN
to ADP
chemicals NOUN
has AUX
fully ADV
disappeared VERB
- PUNCT
I PRON
can AUX
> X
now ADV
sit VERB
on ADP
my PRON
couch NOUN
at ADP
home NOUN
without ADP
dying VERB
after ADP
two NUM
minutes NOUN
. PUNCT
  SPACE
I PRON
'm AUX
also>*greatly ADV
* PUNCT
improved VERB
in ADP
other ADJ
areas NOUN
as ADV
well ADV
. PUNCT
I'm PRON
sure ADJ
you PRON
are AUX
. PUNCT
  SPACE
You PRON
sound VERB
like SCONJ
the DET
typical ADJ
hysteric PROPN
/ SYM
hypochondriac ADJ
whoresponds NOUN
to PART
" PUNCT
miracle NOUN
cures NOUN
. PUNCT
">Of PUNCT
course ADV
, PUNCT
I PRON
have AUX
allergy ADJ
symptoms NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
allergic ADJ
to ADP
> X
molds NOUN
, PUNCT
yeasts NOUN
, PUNCT
etc X
. PUNCT
  SPACE
It PRON
does AUX
n't PART
take VERB
a DET
rocket NOUN
scientist NOUN
to PART
figure VERB
out ADP
that SCONJ
> X
if SCONJ
one PRON
has AUX
excessive ADJ
colonization NOUN
of ADP
yeast NOUN
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
you PRON
have AUX
a DET
> X
natural ADJ
allergy NOUN
to ADP
yeasts NOUN
, PUNCT
that SCONJ
a DET
threshold NOUN
would AUX
be AUX
reached VERB
where ADV
you PRON
> X
would AUX
have AUX
perceptible ADJ
symptoms NOUN
. PUNCT
Yeah INTJ
, PUNCT
" PUNCT
it PRON
makes VERB
sense NOUN
to ADP
me PRON
" PUNCT
, PUNCT
so ADV
of ADP
course NOUN
it PRON
should AUX
be AUX
taken VERB
seriously ADV
. PUNCT
Snort.>Also PROPN
, PUNCT
yeast NOUN
do AUX
produce VERB
toxins NOUN
of ADP
various ADJ
> NOUN
sorts NOUN
, PUNCT
and CCONJ
again ADV
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
to PART
realize VERB
that SCONJ
> X
such ADJ
toxins NOUN
can AUX
cause VERB
problems NOUN
in ADP
some DET
people NOUN
. PUNCT
Yeah INTJ
, PUNCT
" PUNCT
it PRON
sounds VERB
reasonable ADJ
to ADP
me".>Of PROPN
course NOUN
, PUNCT
the DET
$ SYM
60,000 NUM
> X
question NOUN
is AUX
whether SCONJ
a DET
person NOUN
who PRON
is AUX
immune ADJ
compromised VERB
( PUNCT
as SCONJ
tests NOUN
showed VERB
I PRON
was AUX
> X
from ADP
over ADP
5 NUM
years NOUN
of ADP
antibiotics NOUN
, PUNCT
nutritionally ADV
- PUNCT
deficiencies NOUN
because SCONJ
of ADP
the DET
> X
stress NOUN
of ADP
infections NOUN
and CCONJ
allergies NOUN
, PUNCT
etc.),Oh PROPN
, PUNCT
really ADV
? PUNCT
  SPACE
_ VERB
What PRON
_ PROPN
tests NOUN
? PUNCT
  SPACE
Immune PROPN
- PUNCT
compromised VERB
, PUNCT
my PRON
ass NOUN
. PUNCT
More ADV
like SCONJ
credulous ADJ
malingerer NOUN
. PUNCT
  SPACE
This DET
is AUX
a DET
psychiatric ADJ
syndrome.>can AUX
develop VERB
excessive ADJ
yeast NOUN
> X
colonization NOUN
somewhere ADV
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
tough ADJ
question NOUN
to PART
answer VERB
since SCONJ
> X
testing NOUN
for ADP
excessive ADJ
yeast NOUN
colonization NOUN
is AUX
not PART
easy ADJ
. PUNCT
  SPACE
One NOUN
almost ADV
has AUX
to PART
> X
take VERB
an DET
empirical ADJ
approach NOUN
to PART
diagnosis NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
Sporanox PROPN
is AUX
relatively ADV
> X
safe ADJ
unlike ADP
past ADJ
anti NOUN
- NOUN
fungals NOUN
( PUNCT
still ADV
have AUX
to PART
be AUX
careful ADJ
, PUNCT
however ADV
) PUNCT
so ADV
there's PROPN
> X
no DET
reason NOUN
any ADV
longer ADV
to PART
withhold VERB
Sporanox PROPN
treatment NOUN
for ADP
empirical ADJ
reasons NOUN
. PUNCT
You PRON
know VERB
, PUNCT
it PRON
's AUX
a DET
shame NOUN
that PRON
a DET
drug NOUN
like SCONJ
itraconazole NOUN
is AUX
being AUX
misusedin PROPN
this DET
way NOUN
. PUNCT
  SPACE
It PRON
's AUX
ridiculously ADV
expensive ADJ
, PUNCT
and CCONJ
potentially ADV
toxic ADJ
. PUNCT
The DET
trouble NOUN
is AUX
that SCONJ
it PRON
is AUX
n't PART
toxic ADJ
enough ADV
, PUNCT
so CCONJ
it PRON
gets VERB
abused VERB
by ADP
quacks.>BTW PROPN
, PUNCT
some DET
would AUX
say VERB
to PART
try VERB
Nystatin PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
yeast NOUN
grows VERB
hyphae ADJ
> X
too ADV
deep ADJ
into ADP
tissue NOUN
for ADP
Nystatin PROPN
to PART
have AUX
any DET
permanent ADJ
affect NOUN
. PUNCT
  SPACE
You PRON
'll AUX
find VERB
> X
a DET
lot NOUN
of ADP
people NOUN
who PRON
are AUX
on ADP
Nystatin PROPN
all DET
the DET
time NOUN
. PUNCT
The DET
only ADJ
good ADJ
thing NOUN
about ADP
nystatin PROPN
is AUX
that SCONJ
it PRON
's AUX
( PUNCT
relatively ADV
) PUNCT
cheapand PROPN
when ADV
taken VERB
orally ADV
, PUNCT
non ADJ
- ADJ
toxic ADJ
. PUNCT
  SPACE
But CCONJ
oral PROPN
nystatin PROPN
is AUX
without ADP
anysystemic ADJ
effect NOUN
, PUNCT
so CCONJ
unless SCONJ
it PRON
were AUX
given VERB
IV PROPN
, PUNCT
it PRON
would AUX
be AUX
withoutany NOUN
effect NOUN
on ADP
your PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
wish VERB
these DET
quacks NOUN
would AUX
first VERB
useIV PROPN
nystatin NOUN
or CCONJ
amphotericin PROPN
B PROPN
on ADP
people NOUN
like SCONJ
you PRON
. PUNCT
  SPACE
That DET
would AUX
solvethe VERB
" PUNCT
yeast NOUN
" PUNCT
problem NOUN
once ADV
and CCONJ
for ADP
all.>In PROPN
summary NOUN
, PUNCT
I PRON
appreciate VERB
all DET
of ADP
the DET
attempts NOUN
by ADP
those DET
who PRON
desire VERB
to PART
keep VERB
> X
medicine NOUN
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmly ADV
> X
to ADP
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough ADV
> X
actually ADV
treating VERB
patients NOUN
. PUNCT
  SPACE
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
> X
face NOUN
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
> X
their PRON
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as SCONJ
> X
far ADV
as SCONJ
I PRON
am AUX
concerned ADJ
. PUNCT
Perhaps ADV
a DET
little ADJ
Haldol PROPN
would AUX
go VERB
a DET
long ADJ
way NOUN
towards ADP
amelioratingyour ADJ
symptoms NOUN
. PUNCT
Are AUX
you PRON
paying VERB
for ADP
this DET
treatment NOUN
out SCONJ
of ADP
your PRON
own ADJ
pocket NOUN
? PUNCT
  SPACE
I PRON
'd AUX
hateto ADV
think VERB
my PRON
insurance NOUN
premiums NOUN
are AUX
going VERB
towards ADP
this.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59050Subject NUM
: PUNCT
" PUNCT
STAR PROPN
GARTDS PROPN
" PUNCT
< X
sp PROPN
? PUNCT
> X
Info PROPN
wantedFrom PROPN
: PUNCT
kmcvay@oneb.almanac.bc.ca PROPN
( PUNCT
Ken PROPN
Mcvay)A ADJ
friend NOUN
's PART
daughter NOUN
has AUX
been AUX
diagnosed VERB
with ADP
an DET
eye NOUN
disease NOUN
called VERB
" PUNCT
StarGartds PROPN
" PUNCT
( PUNCT
or CCONJ
something PRON
close ADJ
) PUNCT
- PUNCT
it PRON
is AUX
apparently ADV
genetic ADJ
, PUNCT
according VERB
to ADP
her PRON
, PUNCT
and CCONJ
affects VERB
every DET
fourth ADJ
generation NOUN
. PUNCT
She PRON
would AUX
appreciate VERB
any DET
information NOUN
about ADP
this DET
condition NOUN
. PUNCT
If SCONJ
anything PRON
isavailable ADJ
via ADP
ftp PROPN
, PUNCT
please INTJ
point VERB
me PRON
in ADP
the DET
right ADJ
direction NOUN
.. PUNCT
-- PUNCT
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
- PUNCT
A PROPN
Salute PROPN
to ADP
That DET
Old PROPN
Frog PROPN
Hisse'f PROPN
, PUNCT
Ryugen PROPN
Fisher PROPN
      SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
SCO PROPN
XENIX PROPN
2.3.2 NUM
GT PROPN
   SPACE
Ladysmith PROPN
, PUNCT
British PROPN
Columbia PROPN
, PUNCT
CANADA PROPN
. PUNCT
Serving VERB
Central PROPN
Vancouver PROPN
Island PROPN
  SPACE
with ADP
public ADJ
access NOUN
UseNet PROPN
and CCONJ
Internet PROPN
Mail PROPN
- PUNCT
home NOUN
to ADP
the DET
Holocaust PROPN
AlmanacNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59051From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
[ PUNCT
reply NOUN
to ADP
dufault@lftfld.enet.dec.com PROPN
( PUNCT
MD PROPN
) PUNCT
] PUNCT
> X
After ADP
many ADJ
metabolic ADJ
tests NOUN
, PUNCT
body NOUN
structure NOUN
tests NOUN
, PUNCT
and CCONJ
infection NOUN
/ SYM
virus NOUN
> X
tests VERB
the DET
doctors NOUN
still ADV
do AUX
not PART
know VERB
quite ADV
what PRON
type NOUN
of ADP
siezures NOUN
he PRON
is AUX
> X
having VERB
( PUNCT
although SCONJ
they PRON
do AUX
have AUX
alot NOUN
of ADP
evidence NOUN
that SCONJ
it PRON
is AUX
now ADV
pointing VERB
> X
to ADP
infantile ADJ
spasms NOUN
) PUNCT
. PUNCT
  SPACE
This DET
is AUX
where ADV
we PRON
stand VERB
right ADV
now ADV
.... PUNCT
As SCONJ
I PRON
know VERB
> X
now ADV
, PUNCT
these DET
particular ADJ
types NOUN
of ADP
disorders NOUN
are AUX
still ADV
not PART
really ADV
well ADV
> X
understood VERB
by ADP
the DET
medical ADJ
community NOUN
. PUNCT
Infantile ADJ
spasms NOUN
have AUX
been AUX
well ADV
understood VERB
for ADP
quite DET
some DET
time NOUN
now ADV
. PUNCT
  SPACE
Youare NOUN
seeing VERB
a DET
pediatric ADJ
neurologist NOUN
, PUNCT
are AUX
n't PART
you PRON
? PUNCT
  SPACE
If SCONJ
not PART
, PUNCT
I PRON
stronglyrecommend VERB
it PRON
. PUNCT
  SPACE
There PRON
is AUX
a DET
new ADJ
anticonvulsant NOUN
about ADP
to PART
be AUX
released VERB
calledfelbamate NOUN
which PRON
may AUX
be AUX
particularly ADV
helpful ADJ
for ADP
infantile ADJ
spasms NOUN
. PUNCT
  SPACE
Asfor ADP
learning VERB
more ADJ
about ADP
seizures NOUN
, PUNCT
ask VERB
your PRON
doctor NOUN
or CCONJ
his PRON
nurse NOUN
about ADP
alocal ADJ
support NOUN
group NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59052From NUM
: PUNCT
aliceb@tea4two NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Alice PROPN
Taylor)Subject NUM
: PUNCT
accupuncture NOUN
and CCONJ
AIDSA PROPN
friend NOUN
of ADP
mine NOUN
is AUX
seeing VERB
an DET
acupuncturist ADJ
andwants NOUN
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
danger NOUN
of ADP
gettingAIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
Thanks NOUN
, PUNCT
	 SPACE
-aliceNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59053From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Any DET
info NOUN
. PUNCT
on ADP
Vasomotor PROPN
Rhinitis(Disclaimer PROPN
: PUNCT
I PRON
'm AUX
a DET
sufferer NOUN
, PUNCT
not PART
a DET
doctor.)I'm PROPN
not PART
sure ADJ
there PRON
's AUX
a DET
really ADV
sharp ADJ
distinction NOUN
between ADP
allergic ADJ
andvasomotor NOUN
rhinitis PROPN
. PUNCT
  SPACE
Basically ADV
, PUNCT
vasomotor NOUN
rhinitis PROPN
means VERB
your PRON
nose NOUN
isstuffy NOUN
when ADV
it PRON
has AUX
no DET
reason NOUN
to PART
be AUX
( PUNCT
not PART
even ADV
an DET
identifiable ADJ
allergy).Decongestants NOUN
and CCONJ
steroid NOUN
sprays NOUN
work NOUN
for ADP
vasomotor NOUN
rhinitis PROPN
. PUNCT
  SPACE
Also ADV
, PUNCT
I PRON
can AUX
get AUX
surprising ADJ
relief NOUN
from ADP
purely ADV
superficial ADJ
measures NOUN
such ADJ
assaline ADJ
moisturizing NOUN
spray NOUN
and CCONJ
moisturizing NOUN
gel.-- NUM
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59054Subject VERB
: PUNCT
Ovarian ADJ
cancer NOUN
treatment NOUN
centersFrom PROPN
: PUNCT
< X
RBPRMA@rohvm1.rohmhaas.com>A ADJ
relative NOUN
of ADP
mine NOUN
has AUX
recently ADV
been AUX
diagnosed VERB
with ADP
" PUNCT
stage NOUN
3 NUM
papillary ADJ
cellovarian ADJ
cancer NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
are AUX
urgently ADV
seeking VERB
the DET
best ADJ
place NOUN
in ADP
the DET
country NOUN
fortreatment NOUN
for ADP
this DET
. PUNCT
Does AUX
anyone PRON
have AUX
any DET
suggestions?As NOUN
you PRON
might AUX
suspect VERB
, PUNCT
time NOUN
is AUX
of ADP
the DET
essence NOUN
. PUNCT
Thanks NOUN
for ADP
your PRON
help NOUN
. PUNCT
                                      SPACE
BobNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59055Subject NUM
: PUNCT
Broken VERB
ribFrom PROPN
: PUNCT
jc@oneb.almanac.bc.caHello PROPN
, PUNCT
  SPACE
I PRON
am AUX
not PART
sure ADJ
if SCONJ
this DET
is AUX
the DET
right ADJ
conference NOUN
to PART
ask VERB
thisquestion NOUN
, PUNCT
however ADV
, PUNCT
Here ADV
I PRON
go VERB
.. PUNCT
  SPACE
I PRON
am AUX
a DET
commercial ADJ
fisherman NOUN
and CCONJ
I PRON
fell VERB
about ADV
3 NUM
weeks NOUN
ago ADV
down ADV
into ADP
the DET
hold NOUN
of ADP
the DET
boat NOUN
and CCONJ
broke VERB
orcracked VERB
a DET
rib NOUN
and CCONJ
wrenched VERB
and CCONJ
bruised VERB
my PRON
back NOUN
and CCONJ
left VERB
arm NOUN
. PUNCT
  SPACE
My PRON
question NOUN
, PUNCT
  SPACE
I PRON
have AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
was AUX
told VERB
that SCONJ
it PRON
was AUX
best ADJ
to PART
do AUX
nothing PRON
and CCONJ
it PRON
would AUX
heal VERB
up ADP
with ADP
no DET
long ADJ
term NOUN
effect NOUN
, PUNCT
and CCONJ
indeed ADV
I PRON
am AUX
about ADV
60 NUM
% NOUN
better ADJ
, PUNCT
however ADV
, PUNCT
the DET
work NOUN
I PRON
do AUX
is AUX
very ADV
hard ADJ
and CCONJ
I PRON
am AUX
still ADV
not PART
able ADJ
to PART
go VERB
back ADV
to ADP
work NOUN
. PUNCT
  SPACE
The DET
thing NOUN
that PRON
worries VERB
meis PROPN
the DET
movement NOUN
or CCONJ
" PUNCT
clunking VERB
" PUNCT
I PRON
feel VERB
and CCONJ
hear VERB
back ADV
there ADV
when ADV
I PRON
move VERB
certain ADJ
ways NOUN
... PUNCT
  SPACE
I PRON
heard VERB
some DET
one NOUN
talking VERB
about ADP
the DET
rib NOUN
they PRON
broke VERB
years NOUN
ago ADV
and CCONJ
that SCONJ
it PRON
still ADV
bothers VERB
them PRON
.. PUNCT
  SPACE
any DET
opinions?thanx NOUN
and CCONJ
cheers NOUN
           SPACE
jc@oneb.almanac.bc.ca X
( PUNCT
John PROPN
Cross PROPN
) PUNCT
     SPACE
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
  SPACE
( PUNCT
Home PROPN
of ADP
The DET
Almanac PROPN
UNIX PROPN
Users PROPN
Group PROPN
) PUNCT
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
    SPACE
< X
Public PROPN
Access PROPN
UseNet PROPN
> X
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
        SPACE
Vancouver PROPN
Island PROPN
, PUNCT
British PROPN
Columbia PROPN
    SPACE
Waffle PROPN
XENIX PROPN
1.64 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59056From NUM
: PUNCT
euclid@mrcnext.cso.uiuc.edu PROPN
( PUNCT
Euclid PROPN
K.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
accupuncture NOUN
and CCONJ
AIDSaliceb@tea4two NUM
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Alice PROPN
Taylor PROPN
) PUNCT
writes:>A PROPN
friend NOUN
of ADP
mine NOUN
is AUX
seeing VERB
an DET
acupuncturist NOUN
and CCONJ
> X
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
danger NOUN
of ADP
getting VERB
> X
AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
	 SPACE
Ask VERB
the DET
practitioner NOUN
whether SCONJ
he PRON
uses VERB
the DET
pre ADJ
- ADJ
sterilized VERB
disposableneedles NOUN
, PUNCT
or CCONJ
if SCONJ
he PRON
reuses VERB
needles NOUN
, PUNCT
sterilizing VERB
them PRON
between ADP
use NOUN
. PUNCT
  SPACE
In ADP
theformer NOUN
case NOUN
there PRON
's AUX
no DET
conceivable ADJ
way NOUN
to PART
get AUX
AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
  SPACE
Inthe DET
latter ADJ
case NOUN
it PRON
's AUX
highly ADV
unlikely ADJ
( PUNCT
though SCONJ
many ADJ
practitioners NOUN
use VERB
thedisposable ADJ
variety NOUN
anyway).euclid NOUN
-- PUNCT
Euclid PROPN
K. PROPN
       SPACE
standard ADJ
disclaimers NOUN
apply"It PROPN
is AUX
a DET
bit NOUN
ironic ADJ
that SCONJ
we PRON
need VERB
the DET
wave NOUN
model NOUN
[ PUNCT
of ADP
light NOUN
] PUNCT
to PART
understand VERB
thepropagation NOUN
of ADP
light NOUN
only ADV
through ADP
that DET
part NOUN
of ADP
the DET
system NOUN
where ADV
it PRON
leaves VERB
notrace NOUN
. PUNCT
" PUNCT
  SPACE
--Hudson PROPN
& CCONJ
Nelson PROPN
( PUNCT
_ PROPN
University_Physics_)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59057From NUM
: PUNCT
kjiv@lrc.eduSubject NOUN
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsCan PROPN
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to PART
prevent VERB
asthma NOUN
) PUNCT
; PUNCT
Vancenase PROPN
. PUNCT
Also ADV
: PUNCT
You PRON
may AUX
have AUX
guessed VERB
, PUNCT
I PRON
'm AUX
an DET
allergy NOUN
sufferer NOUN
-- PUNCT
but CCONJ
I PRON
'm AUX
beginning VERB
to PART
suspect VERB
I PRON
'm AUX
also ADV
the DET
victim NOUN
of ADP
a DET
Dr. PROPN
toliberal ADJ
with ADP
the DET
prescription NOUN
p. NOUN
The DET
allergist NOUN
I PRON
went VERB
to ADP
last ADJ
Oct. PROPN
simply ADV
inquired VERB
about ADP
my PRON
symptons NOUN
( PUNCT
I PRON
was AUX
suffering VERB
chronic ADJ
asthma NOUN
attacks NOUN
) PUNCT
, PUNCT
gave VERB
me PRON
a DET
battery NOUN
of ADP
allergy NOUN
tests NOUN
, PUNCT
and CCONJ
went VERB
down ADP
a DET
checklist NOUN
of ADP
drugs NOUN
( PUNCT
a DET
photocopied VERB
sheet NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
gained VERB
out ADP
30 NUM
lbs NOUN
. PUNCT
since SCONJ
then ADV
though SCONJ
I PRON
have AUX
n't PART
eaten VERB
more ADV
or CCONJ
much ADV
differently ADV
than SCONJ
before ADV
; PUNCT
I'vsuffered ADJ
depression NOUN
; PUNCT
, PUNCT
fatigue NOUN
; PUNCT
and CCONJ
I PRON
've AUX
experienced VERB
a DET
foul ADJ
smell NOUN
and CCONJ
sense NOUN
of ADP
taste NOUN
for ADP
about ADV
the DET
last ADJ
two NUM
months NOUN
. PUNCT
  SPACE
I PRON
mentioned VERB
the DET
lack NOUN
of ADP
smell NOUN
and CCONJ
taste NOUN
to ADP
this DET
Dr. PROPN
in ADP
Feb. PROPN
and CCONJ
he PRON
said VERB
my PRON
sinuses NOUN
did AUX
look VERB
a DET
bit NOUN
swollen ADJ
( PUNCT
he PRON
just ADV
looked VERB
up ADP
my PRON
nose NOUN
with ADP
his PRON
little ADJ
light NOUN
-- PUNCT
the DET
same ADJ
one NOUN
used VERB
for ADP
ears NOUN
) PUNCT
, PUNCT
and CCONJ
prescribed VERB
Prednisone PROPN
and CCONJ
Sulfatrim PROPN
DS PROPN
( PUNCT
severe ADJ
headaches NOUN
and CCONJ
a DET
rash NOUN
resulted VERB
, PUNCT
particularly ADV
after ADP
my PRON
week NOUN
's PART
worth NOUN
of ADP
Prednisone PROPN
ran VERB
out ADP
) PUNCT
. PUNCT
  SPACE
Now ADV
he PRON
wants VERB
to PART
do AUX
a DET
rhinoscopy NOUN
to PART
see VERB
if SCONJ
I PRON
have AUX
a DET
bleeding VERB
ulcer NOUN
or CCONJ
polyps NOUN
in ADP
my PRON
sinus NOUN
cavities NOUN
. PUNCT
  SPACE
I PRON
'm AUX
considering VERB
seeing VERB
another DET
doctor NOUN
. PUNCT
  SPACE
Any DET
suggestions NOUN
/ SYM
advice NOUN
? PUNCT
  SPACE
I PRON
'd AUX
really ADV
appreciate VERB
it!Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59058From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EndometriosisIn PROPN
article NOUN
< X
1993Apr16.032251.6606@rock.concert.net NUM
> X
naomi@rock.concert.net PROPN
( PUNCT
Naomi PROPN
T PROPN
Courter PROPN
) PUNCT
writes:>>can X
anyone PRON
give VERB
me PRON
more ADJ
information NOUN
regarding VERB
endometriosis NOUN
? PUNCT
   SPACE
i PRON
heard VERB
> X
it PRON
's AUX
a DET
very ADV
common ADJ
disease NOUN
among ADP
women NOUN
and CCONJ
if SCONJ
anyone PRON
can AUX
provide VERB
names NOUN
> X
of ADP
a DET
specialist NOUN
/ SYM
surgeon NOUN
in ADP
  SPACE
the DET
north PROPN
carolina PROPN
research NOUN
triangle PROPN
  SPACE
park PROPN
> X
area NOUN
( PUNCT
raleigh PROPN
/ SYM
durham PROPN
/ SYM
chapel PROPN
  SPACE
hill PROPN
) PUNCT
who PRON
is AUX
familiar ADJ
with ADP
the DET
condition,>i NOUN
would AUX
really ADV
appreciate VERB
it.>thanks NOUN
. PUNCT
> X
--NaomiNaomi PUNCT
, PUNCT
your PRON
best ADJ
bet NOUN
is AUX
to PART
look VERB
in ADP
the DET
Yellow PROPN
Pages PROPN
and CCONJ
find VERB
a DET
listingfor ADJ
OBGyn PROPN
doc NOUN
in ADP
the DET
area NOUN
you PRON
wish VERB
. PUNCT
  SPACE
Any DET
OBGyn PROPN
doc NOUN
is AUX
familiar ADJ
withendometriosis NOUN
and CCONJ
its PRON
treatments NOUN
. PUNCT
Shalom NOUN
                                    SPACE
Len PROPN
Howard PROPN
MDNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59059From NUM
: PUNCT
eliezer@physics.llnl.gov PROPN
( PUNCT
David PROPN
A PROPN
Eliezer)Subject PROPN
: PUNCT
Questions NOUN
about ADP
SPECT PROPN
imagingI PROPN
have AUX
become VERB
involved VERB
in ADP
a DET
project NOUN
to PART
further ADV
develop VERB
and CCONJ
improve VERB
the DET
performance NOUN
of ADP
SPECT PROPN
( PUNCT
Single PROPN
Photon PROPN
EmissionComputerized PROPN
Tomography PROPN
) PUNCT
imaging VERB
. PUNCT
  SPACE
We PRON
will AUX
eventually ADV
haveto VERB
peddle VERB
this DET
stuff NOUN
somewhere ADV
, PUNCT
and CCONJ
so ADV
as SCONJ
I PRON
move VERB
this DET
thingalong NOUN
, PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
--What PRON
is AUX
the DET
current ADJ
resolution NOUN
of ADP
SPECT PROPN
imaging VERB
? PUNCT
  SPACE
What PRON
kindsof NOUN
jobs NOUN
is AUX
SPECT ADV
used VERB
for ADP
, PUNCT
specifically ADV
? PUNCT
  SPACE
What PRON
kind NOUN
of ADP
specific ADJ
jobscould PROPN
I PRON
hopethat PRON
SPECT PROPN
could AUX
be AUX
used VERB
for ADP
, PUNCT
if SCONJ
its PRON
resolution NOUN
improved VERB
, PUNCT
say VERB
, PUNCT
to PART
close VERB
to ADP
that DET
of ADP
PET PROPN
( PUNCT
Positron PROPN
Emission PROPN
Tomography)?And PROPN
how ADV
much ADJ
does AUX
a DET
SPECT PROPN
machine NOUN
cost NOUN
? PUNCT
  SPACE
How ADV
much ADJ
does AUX
a DET
singleSPECT PROPN
image NOUN
cost NOUN
? PUNCT
  SPACE
If SCONJ
anyone PRON
knows VERB
the DET
answer NOUN
to ADP
any DET
or CCONJ
all DET
of ADP
these DET
questions NOUN
, PUNCT
ORwhere ADV
I PRON
could AUX
find VERB
that DET
answer NOUN
, PUNCT
I PRON
would AUX
be AUX
very ADV
grateful ADJ
, PUNCT
indeed ADV
. PUNCT
  SPACE
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
replies NOUN
					 SPACE
Dave PROPN
Eliezer PROPN
					 SPACE
eliezer@physics.llnl.govNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59060From NUM
: PUNCT
homer@tripos.com X
( PUNCT
Webster PROPN
Homer)Subject VERB
: PUNCT
Mind NOUN
Machines?I PROPN
recently ADV
learned VERB
about ADP
these DET
devices NOUN
that PRON
supposedly ADV
induce VERB
specific ADJ
brain NOUN
wave NOUN
frequencies NOUN
in ADP
their PRON
users NOUN
simply ADV
by ADP
wearing VERB
them PRON
. PUNCT
Mind NOUN
machinesconsist NOUN
of ADP
LED NOUN
gogles NOUN
, PUNCT
head NOUN
phones NOUN
, PUNCT
and CCONJ
a DET
microprocessor NOUN
that PRON
controls VERB
them PRON
. PUNCT
They PRON
strobe VERB
the DET
( PUNCT
closed ADJ
) PUNCT
eye NOUN
and CCONJ
send VERB
sound ADJ
pulses NOUN
in ADP
sync NOUN
with ADP
the DET
flashingLEDs PROPN
. PUNCT
I PRON
understand VERB
that SCONJ
these DET
devices NOUN
are AUX
experimental ADJ
, PUNCT
but CCONJ
they PRON
are AUX
available ADJ
. PUNCT
I've ADJ
heard VERB
claims NOUN
that SCONJ
they PRON
can AUX
induce VERB
sleep NOUN
, PUNCT
and CCONJ
light ADJ
trance NOUN
states NOUN
forrelaxation NOUN
. PUNCT
Essentially ADV
they PRON
are AUX
supposed VERB
to PART
work VERB
without ADP
aid NOUN
of ADP
drugs NOUN
etc X
... PUNCT
I PRON
would AUX
think VERB
that SCONJ
if SCONJ
they PRON
work VERB
as SCONJ
reported VERB
they PRON
would AUX
be AUX
incredibly ADV
useful ADJ
, PUNCT
The DET
few ADJ
sources NOUN
I PRON
've AUX
seen VERB
are AUX
biased VERB
( PUNCT
they PRON
are AUX
selling VERB
the DET
things NOUN
, PUNCT
and CCONJ
afriend PROPN
who PRON
has AUX
tried VERB
them PRON
claims VERB
that SCONJ
" PUNCT
every DET
home NOUN
should AUX
have AUX
one NUM
" PUNCT
) PUNCT
. PUNCT
So ADV
do AUX
these DET
mind NOUN
machines NOUN
( PUNCT
aka ADV
Light ADJ
and CCONJ
Sound PROPN
machines NOUN
) PUNCT
work NOUN
? PUNCT
can AUX
they PRON
inducealpha VERB
, PUNCT
theta NOUN
, PUNCT
and/or CCONJ
delta PROPN
waves VERB
in ADP
a DET
person NOUN
wearing VERB
them PRON
? PUNCT
What PRON
research NOUN
ifany NOUN
has AUX
been AUX
done VERB
on ADP
them PRON
? PUNCT
Could AUX
they PRON
be AUX
used VERB
in ADP
lieu NOUN
of ADP
a DET
tranquilizer?Or PROPN
are AUX
they PRON
just ADV
another DET
bit NOUN
of ADP
quackery?Web PROPN
Homerhomer@tripos.com PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59061From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Paxil PROPN
( PUNCT
request)I NOUN
do AUX
n't PART
know VERB
much ADJ
and CCONJ
in ADP
fact NOUN
, PUNCT
have AUX
asked VERB
questions NOUN
heremyself PRON
. PUNCT
My PRON
doctor NOUN
told VERB
me PRON
that SCONJ
Paxil PROPN
is AUX
a DET
" PUNCT
cleaner ADJ
" PUNCT
SRI PROPN
in ADP
thatit PROPN
produces VERB
fewer ADJ
side NOUN
effects NOUN
. PUNCT
As SCONJ
to ADP
a DET
comparison NOUN
betweenZoloft NOUN
and CCONJ
Prozac PROPN
, PUNCT
I PRON
'm AUX
not PART
able ADJ
to PART
remember VERB
what PRON
he PRON
said VERB
aboutthe NOUN
differences NOUN
between ADP
those DET
two NUM
drugs NOUN
. PUNCT
SorryNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59062Subject NUM
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"From PROPN
: PUNCT
jschwimmer@wccnet.wcc.wesleyan.edu PROPN
( PUNCT
Josh PROPN
Schwimmer)I've PROPN
recently ADV
listened VERB
to ADP
a DET
tape NOUN
by ADP
Dr. PROPN
Stanislaw PROPN
Burzynski PROPN
, PUNCT
in ADP
which PRON
he PRON
claims VERB
to PART
have AUX
discovered VERB
a DET
series NOUN
naturally ADV
occuring VERB
peptides NOUN
with ADP
anti ADJ
- ADJ
cancer ADJ
properties NOUN
that PRON
he PRON
names VERB
antineoplastons NOUN
. PUNCT
  SPACE
Burzynski PROPN
says VERB
that SCONJ
his PRON
work NOUN
has AUX
met VERB
with ADP
hostility NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
despite SCONJ
the DET
favorable ADJ
responses NOUN
of ADP
his PRON
subjects NOUN
during ADP
clinical ADJ
trials NOUN
. PUNCT
What PRON
is AUX
the DET
generally ADV
accepted VERB
opinion NOUN
of ADP
Dr. PROPN
Burzynski PROPN
's PART
research NOUN
? PUNCT
  SPACE
He PRON
paints VERB
himself PRON
as SCONJ
a DET
lone ADJ
researcher NOUN
with ADP
a DET
new ADJ
breakthrough NOUN
battling VERB
an DET
intolerant ADJ
medical ADJ
establishment NOUN
, PUNCT
but CCONJ
I PRON
have AUX
no DET
basis NOUN
from ADP
which PRON
to PART
judge VERB
his PRON
claims NOUN
. PUNCT
  SPACE
Two NUM
weeks NOUN
ago ADV
, PUNCT
however ADV
, PUNCT
I PRON
read VERB
that SCONJ
the DET
NIH PROPN
's PART
Department PROPN
of ADP
Alternative PROPN
Medicine PROPN
has AUX
decided VERB
to PART
focus VERB
their PRON
attention NOUN
on ADP
Burzynski PROPN
's PART
work NOUN
. PUNCT
  SPACE
Their PRON
budget NOUN
is AUX
so ADV
small ADJ
that SCONJ
I PRON
imagine VERB
they PRON
would AUX
n't PART
investigate VERB
a DET
treatment NOUN
that PRON
did AUX
n't PART
seem VERB
promising ADJ
. PUNCT
Any DET
opinions NOUN
on ADP
Burzynski PROPN
's PART
antineoplastons NOUN
or CCONJ
information NOUN
about ADP
the DET
current ADJ
status NOUN
of ADP
his PRON
research NOUN
would AUX
be AUX
appreciated.--Joshua PROPN
Schwimmerjschwimmer@eagle.wesleyan.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59063From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?In PROPN
article NOUN
< X
1993Apr20.180835.24033@lmpsbbs.comm.mot.com NUM
> X
dougb@ecs.comm.mot.com PROPN
writes::My ADP
wife NOUN
's PART
ob PROPN
- PUNCT
gyn PROPN
has AUX
an DET
ultrasound ADJ
machine NOUN
in ADP
her PRON
office NOUN
. PUNCT
  SPACE
When ADV
: PUNCT
the DET
doctor NOUN
could AUX
n't PART
hear VERB
a DET
fetal ADJ
heartbeat NOUN
( PUNCT
13 NUM
weeks NOUN
) PUNCT
she PRON
used VERB
: PUNCT
the DET
ultrasound NOUN
to PART
see VERB
if SCONJ
everything PRON
was AUX
ok ADJ
. PUNCT
  SPACE
( PUNCT
it PRON
was)::On ADP
her PRON
next ADJ
visit NOUN
, PUNCT
my PRON
wife NOUN
asked VERB
another DET
doctor NOUN
in ADP
the DET
office NOUN
if SCONJ
: PUNCT
they PRON
read VERB
the DET
ultrasounds VERB
themselves PRON
or CCONJ
if SCONJ
they PRON
had AUX
a DET
radiologist NOUN
: PUNCT
read VERB
the DET
pictures NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
very ADV
vehemently ADV
insisted VERB
that SCONJ
they PRON
: PUNCT
were AUX
qualified ADJ
to PART
read VERB
the DET
ultrasound NOUN
and CCONJ
radiologists NOUN
were AUX
NOT!::[stuff PROPN
deleted]This PROPN
is AUX
one NUM
of ADP
those DET
sticky ADJ
areas NOUN
of ADP
medicine NOUN
where ADV
battles NOUN
frequentlyrage VERB
. PUNCT
  SPACE
With ADP
respect NOUN
to ADP
your PRON
OB NOUN
, PUNCT
I PRON
suspect VERB
that SCONJ
she PRON
has AUX
been AUX
certified VERB
inultrasound ADJ
diagnostics NOUN
, PUNCT
and CCONJ
is AUX
thus ADV
allowed VERB
to PART
use VERB
it PRON
and CCONJ
bill NOUN
for ADP
itsuse NOUN
. PUNCT
  SPACE
Many ADJ
cardiologists NOUN
also ADV
use VERB
ultrasound NOUN
( PUNCT
echocardiography NOUN
) PUNCT
, PUNCT
and CCONJ
arein ADJ
fact NOUN
considered VERB
by ADP
many ADJ
to PART
be AUX
the DET
' PUNCT
experts NOUN
' PUNCT
. PUNCT
  SPACE
I PRON
am AUX
not PART
sure ADJ
where ADV
OBsstand NOUN
in ADP
this DET
regard NOUN
, PUNCT
but CCONJ
I PRON
suspect VERB
that SCONJ
they PRON
are AUX
at ADP
least ADJ
as ADV
good ADJ
as SCONJ
theradioligists NOUN
( PUNCT
flame ADJ
- PUNCT
retardant NOUN
suit NOUN
ready ADJ
) PUNCT
. PUNCT
                SPACE
-- PUNCT
= X
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59064From NUM
: PUNCT
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas)Subject NOUN
: PUNCT
Altitude PROPN
adjustmentI PROPN
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
citiesquite NOUN
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000feet NUM
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
Often ADV
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
andmy VERB
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
verydry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keepaway NOUN
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol NOUN
. PUNCT
Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there(no PROPN
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?Is PROPN
there PRON
something PRON
else ADV
that PRON
I PRON
could AUX
do?A VERB
long ADJ
time NOUN
ago ADV
( PUNCT
possibly ADV
two NUM
years NOUN
ago ADV
) PUNCT
there PRON
was AUX
a DET
discussion NOUN
here ADV
aboutaltitude VERB
adjustment NOUN
. PUNCT
  SPACE
Has AUX
anyone PRON
saved VERB
the DET
messages?Many PROPN
thanks NOUN
, PUNCT
Vida PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59065From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Any DET
info NOUN
. PUNCT
on ADP
Vasomotor PROPN
RhinitisIn PROPN
article NOUN
< X
1r1t1a$njq@europa.eng.gtefsd.com X
> X
draper@gnd1.wtp.gtefsd.com PROPN
writes::I PROPN
recently ADV
attended VERB
an DET
allery NOUN
seminar NOUN
. PUNCT
  SPACE
Steroid PROPN
Nasal PROPN
sprays NOUN
were AUX
: PUNCT
discussed VERB
. PUNCT
  SPACE
Afterward ADV
on ADP
a DET
one NUM
- PUNCT
on ADP
- PUNCT
one NUM
basis NOUN
, PUNCT
I PRON
asked VERB
the DET
speaker NOUN
what PRON
if SCONJ
: PUNCT
none NOUN
of ADP
the DET
Vancanese PROPN
, PUNCT
Beconase PROPN
, PUNCT
Nasalide PROPN
, PUNCT
Nasalcort PROPN
, PUNCT
or CCONJ
Nasalchrom PROPN
work NOUN
: PUNCT
nor CCONJ
do AUX
any DET
oral ADJ
decongestants NOUN
work VERB
. PUNCT
  SPACE
She PRON
replied VERB
that SCONJ
she PRON
saw VERB
an DET
article NOUN
on ADP
: PUNCT
Vasomotor PROPN
Rhinitis PROPN
. PUNCT
  SPACE
That SCONJ
this DET
is AUX
not PART
an DET
allergic ADJ
reaction NOUN
and CCONJ
that SCONJ
nothing PRON
: PUNCT
other ADJ
than SCONJ
the DET
Afrin PROPN
's PART
and CCONJ
such ADJ
would AUX
work VERB
. PUNCT
  SPACE
( PUNCT
Which PRON
in ADP
my PRON
case NOUN
is AUX
true).There ADJ
has AUX
been AUX
some DET
recent ADJ
research NOUN
on ADP
vasomotor NOUN
rhinitis PROPN
that PRON
shows VERB
thatipratroprium NOUN
bromide NOUN
( PUNCT
Atrovent PROPN
) PUNCT
inhaled VERB
nasally ADV
is AUX
an DET
effective ADJ
treatmentfor NOUN
many ADJ
sufferers NOUN
. PUNCT
  SPACE
It PRON
has AUX
been AUX
approved VERB
for ADP
this DET
use NOUN
and CCONJ
is AUX
availablewith PROPN
a DET
nasal ADJ
adaptor NOUN
in ADP
Canada PROPN
. PUNCT
  SPACE
In ADP
the DET
US PROPN
the DET
FDA PROPN
has AUX
yet ADV
to PART
approve VERB
thisuse NOUN
of ADP
the DET
drug NOUN
, PUNCT
but CCONJ
it PRON
is AUX
available ADJ
as SCONJ
an DET
oral ADJ
inhaler NOUN
( PUNCT
for ADP
COPD PROPN
) PUNCT
, PUNCT
andthese DET
can AUX
be AUX
adapted VERB
for ADP
intranasal ADJ
use.-- NUM
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59066From NUM
: PUNCT
vgwlu@dunsell.calgary.chevron.com PROPN
( PUNCT
greg PROPN
w. PROPN
luft)Subject PROPN
: PUNCT
Relief NOUN
of ADP
Pain PROPN
Caused VERB
by ADP
Cancer NOUN
I PRON
am AUX
not PART
sure ADJ
if SCONJ
this DET
is AUX
the DET
proper ADJ
group NOUN
to PART
post VERB
this DET
to ADP
but CCONJ
here ADV
goes VERB
anyway ADV
. PUNCT
About ADV
five NUM
years NOUN
ago ADV
my PRON
mother NOUN
was AUX
diagnosed VERB
with ADP
having VERB
cancer NOUN
in ADP
the DET
lymph NOUN
nodes PROPN
under ADP
one NUM
of ADP
her PRON
arms NOUN
. PUNCT
After ADP
the DET
doctors NOUN
removed VERB
the DET
cancerous ADJ
area NOUN
she PRON
had AUX
full ADJ
movement NOUN
of ADP
her PRON
arm NOUN
with ADP
only ADJ
slight ADJ
aching NOUN
under ADP
her PRON
arm NOUN
when ADV
she PRON
moved VERB
it PRON
. PUNCT
Over ADP
the DET
course NOUN
of ADP
the DET
next ADJ
two NUM
years NOUN
the DET
aching NOUN
got VERB
more ADV
severe ADJ
and CCONJ
her PRON
complaining VERB
to ADP
the DET
doctors NOUN
produced VERB
the DET
explanation NOUN
that SCONJ
it PRON
was AUX
scar PROPN
tissue NOUN
causing VERB
the DET
pain NOUN
. PUNCT
At ADP
this DET
time NOUN
her PRON
doctor NOUN
  SPACE
suggested VERB
that SCONJ
some DET
physiotherapy NOUN
should AUX
be AUX
employed VERB
to PART
break VERB
up ADP
the DET
scar NOUN
tissue NOUN
. PUNCT
While SCONJ
attending VERB
one NUM
of ADP
her PRON
therapy NOUN
sessions NOUN
, PUNCT
while SCONJ
her PRON
arm NOUN
was AUX
being AUX
  SPACE
manipulated VERB
, PUNCT
some DET
damage NOUN
occured VERB
( PUNCT
nerve NOUN
? PUNCT
) PUNCT
which PRON
caused VERB
the DET
level NOUN
of ADP
pain NOUN
to PART
permanently ADV
increase VERB
severly ADV
( PUNCT
controlled VERB
by ADP
Tylenol PROPN
3s PROPN
) PUNCT
and CCONJ
some DET
loss NOUN
of ADP
use NOUN
of ADP
the DET
arm NOUN
( PUNCT
palsied VERB
wrist NOUN
and CCONJ
almost ADV
no DET
outward ADJ
lateral ADJ
movement NOUN
) PUNCT
. PUNCT
With ADP
great ADJ
persistence NOUN
on ADP
her PRON
part NOUN
the DET
doctors NOUN
looked VERB
further ADV
into ADP
the DET
issue NOUN
and CCONJ
discovered VERB
that SCONJ
not PART
all DET
of ADP
the DET
cancer NOUN
had AUX
been AUX
removed VERB
and CCONJ
another DET
tumor NOUN
had AUX
grown VERB
under ADP
the DET
arm NOUN
. PUNCT
This DET
was AUX
removed VERB
also ADV
but CCONJ
the DET
pain NOUN
in ADP
the DET
arm NOUN
has AUX
not PART
decreased VERB
. PUNCT
The DET
doctors NOUN
are AUX
not PART
sure ADJ
exactly ADV
why ADV
the DET
pain NOUN
is AUX
  SPACE
persisting VERB
but CCONJ
feel VERB
some DET
sort NOUN
of ADP
nerve NOUN
damage NOUN
has AUX
occured VERB
and CCONJ
they PRON
have AUX
employed VERB
Tylenol PROPN
3 NUM
and CCONJ
soon ADV
Morphine PROPN
to PART
relieve VERB
the DET
pain NOUN
. PUNCT
She PRON
has AUX
tried VERB
acupuncture NOUN
by ADP
this DET
only ADV
provides VERB
minor ADJ
reductions NOUN
in ADP
pain NOUN
and CCONJ
is AUX
only ADV
short ADJ
term NOUN
. PUNCT
   SPACE
My PRON
questions NOUN
are AUX
: PUNCT
      SPACE
Has AUX
anyone PRON
has AUX
heard VERB
of ADP
similar ADJ
cases NOUN
and CCONJ
what PRON
, PUNCT
if SCONJ
anything PRON
, PUNCT
was AUX
done VERB
to PART
reduce VERB
the DET
     SPACE
levels NOUN
of ADP
pain NOUN
? PUNCT
     SPACE
Are AUX
their PRON
methods NOUN
to PART
block VERB
nerves NOUN
so SCONJ
that SCONJ
the DET
pain NOUN
can AUX
be AUX
reduced VERB
? PUNCT
     SPACE
Are AUX
their PRON
methods NOUN
to PART
restore VERB
nerves NOUN
so SCONJ
that DET
loss NOUN
of ADP
arm NOUN
function NOUN
can AUX
be AUX
restored VERB
? PUNCT
  SPACE
Any DET
general ADJ
suggestions NOUN
on ADP
pain NOUN
reduction NOUN
would AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
      SPACE
Please INTJ
respond VERB
by ADP
email NOUN
because SCONJ
I PRON
do AUX
not PART
always ADV
get AUX
chance NOUN
to PART
read VERB
this DET
group NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
knows VERB
of ADP
some DET
literature NOUN
that PRON
may AUX
be AUX
useful ADJ
to ADP
this DET
case NOUN
or CCONJ
another DET
newsgroup NOUN
  SPACE
that SCONJ
I PRON
should AUX
be AUX
posting VERB
this DET
to ADP
it PRON
would AUX
also ADV
be AUX
appreciated VERB
. PUNCT
        SPACE
-- PUNCT
Gregory PROPN
W. PROPN
Luft PROPN
                              SPACE
Internet NOUN
: PUNCT
vgwlu@calgary.chevron.comChevron PROPN
Petroleum PROPN
Techonology PROPN
Company PROPN
             SPACE
Tel PROPN
: PUNCT
( PUNCT
403 NUM
) PUNCT
234 NUM
- PUNCT
6238500 NUM
, PUNCT
Fifth PROPN
Ave PROPN
. PUNCT
S.W. PROPN
                              SPACE
Fax PROPN
: PUNCT
( PUNCT
403 NUM
) PUNCT
234 NUM
- PUNCT
5215Calgary PROPN
, PUNCT
Alberta PROPN
, PUNCT
Canada PROPN
   SPACE
T2P PROPN
0L7Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59067From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject PROPN
: PUNCT
Acutane PROPN
, PUNCT
Fibromyalgia PROPN
Syndrome PROPN
and CCONJ
CFS PROPN
To PART
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)There PROPN
is AUX
a DET
person NOUN
on ADP
the DET
FIDO PROPN
CFS PROPN
echo NOUN
who PRON
claims VERB
that SCONJ
he PRON
was AUX
cured VERB
of ADP
CFS PROPN
by ADP
taking VERB
accutane PROPN
. PUNCT
  SPACE
He PRON
also ADV
claims VERB
that SCONJ
you PRON
are AUX
using VERB
it PRON
in ADP
the DET
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
. PUNCT
  SPACE
Are AUX
you PRON
using VERB
accutane NOUN
in ADP
the DET
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
? PUNCT
  SPACE
Have AUX
you PRON
used VERB
it PRON
for ADP
CFS PROPN
? PUNCT
  SPACE
Have AUX
you PRON
gotten VERB
good ADJ
results NOUN
with ADP
it PRON
? PUNCT
  SPACE
Are AUX
you PRON
aware ADJ
of ADP
any DET
double ADJ
blind ADJ
studies NOUN
on ADP
the DET
use NOUN
of ADP
accutane NOUN
in ADP
these DET
conditions NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
.... PUNCT
I PRON
think VERB
they PRON
should AUX
rename VERB
Waco PROPN
TX PROPN
to ADP
Wacko PROPN
TX!Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59068From NUM
: PUNCT
berryh@huey.udel.edu PROPN
( PUNCT
John PROPN
Berryhill PROPN
, PUNCT
Ph PROPN
. PROPN
D.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyI PROPN
think VERB
he PRON
means VERB
Girlie PROPN
Photography PROPN
. PUNCT
  SPACE
A DET
good ADJ
place NOUN
to PART
find VERB
it PRON
is AUX
innon PROPN
- PUNCT
descript ADJ
little ADJ
places NOUN
that PRON
usually ADV
just ADV
say VERB
" PUNCT
Books NOUN
" PUNCT
on ADP
theoutside NOUN
of ADP
the DET
building NOUN
in ADP
black ADJ
and CCONJ
white.-- ADV
                                               SPACE
John PROPN
BerryhillNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59069From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>>There CCONJ
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.>>There NOUN
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
and>>published VERB
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic NOUN
skeptics>>who PROPN
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used.>Snort PROPN
. PUNCT
  SPACE
Ah INTJ
, PUNCT
there PRON
go VERB
my PRON
sinuses NOUN
again.>>For ADJ
example NOUN
, PUNCT
Dr. PROPN
Ivker PROPN
, PUNCT
who PRON
wrote VERB
the DET
book NOUN
" PUNCT
Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
always ADV
gives,>Oh PUNCT
, PUNCT
wow INTJ
. PUNCT
  SPACE
A DET
classic ADJ
textbook NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
laughed VERB
at ADP
Einstein PROPN
, PUNCT
too!>>before PUNCT
any DET
other ADJ
treatment NOUN
, PUNCT
a DET
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
( PUNCT
such ADJ
as SCONJ
Nizoral PROPN
) PUNCT
to PART
his>>new VERB
patients NOUN
IF ADP
they PRON
've AUX
been AUX
on ADP
braod NOUN
- PUNCT
spectrum NOUN
anti ADJ
- ADJ
biotics ADJ
4 NUM
or CCONJ
more ADJ
times>>in VERB
the DET
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
's AUX
kept VERB
a DET
record NOUN
of ADP
the DET
results NOUN
, PUNCT
and CCONJ
for ADP
over ADP
> X
> X
2000 NUM
patients NOUN
found VERB
that SCONJ
over ADP
90 NUM
% NOUN
of ADP
his PRON
patients NOUN
get VERB
significant ADJ
relief>>of NOUN
allergic ADJ
/ SYM
sinus NOUN
symptoms NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
this DET
is AUX
only ADV
the DET
beginning NOUN
for ADP
his>>program.>Yeah NOUN
, PUNCT
I PRON
'll AUX
bet VERB
. PUNCT
  SPACE
Tomorrow PROPN
, PUNCT
the DET
world.>Listen PROPN
, PUNCT
uncontrolled ADJ
studies NOUN
like SCONJ
this DET
are AUX
worthless.>>In PROPN
my PRON
case NOUN
, PUNCT
as SCONJ
I PRON
reported VERB
a DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
I PRON
was AUX
developing VERB
the DET
classic>>symptoms NOUN
outlined VERB
in ADP
' PUNCT
The DET
Yeast PROPN
Connection PROPN
' PUNCT
( PUNCT
I PRON
agree VERB
it PRON
is AUX
a DET
poorly ADV
> X
> X
written VERB
book PROPN
) PUNCT
: PUNCT
  SPACE
e.g. ADV
, PUNCT
extreme ADJ
sensitivity NOUN
to ADP
plastics NOUN
, PUNCT
vapors NOUN
, PUNCT
etc X
. PUNCT
which>>I NOUN
never ADV
had AUX
before ADV
( PUNCT
started VERB
in ADP
November PROPN
) PUNCT
. PUNCT
  SPACE
Within ADP
one NUM
week NOUN
of ADP
full ADJ
dosage>>of NOUN
Sporanox PROPN
, PUNCT
the DET
sensitivity NOUN
to ADP
chemicals NOUN
has AUX
fully ADV
disappeared VERB
- PUNCT
I PRON
can>>now NOUN
sit VERB
on ADP
my PRON
couch NOUN
at ADP
home NOUN
without ADP
dying VERB
after ADP
two NUM
minutes NOUN
. PUNCT
  SPACE
I PRON
'm AUX
also>>*greatly ADV
* PUNCT
improved VERB
in ADP
other ADJ
areas NOUN
as SCONJ
well.>I'm PROPN
sure INTJ
you PRON
are AUX
. PUNCT
  SPACE
You PRON
sound VERB
like SCONJ
the DET
typical ADJ
hysteric PROPN
/ SYM
hypochondriac PROPN
who PRON
> X
responds VERB
to ADP
" PUNCT
miracle NOUN
cures NOUN
. PUNCT
">>Of PUNCT
course ADV
, PUNCT
I PRON
have AUX
allergy ADJ
symptoms NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
allergic ADJ
to>>molds NOUN
, PUNCT
yeasts NOUN
, PUNCT
etc X
. PUNCT
  SPACE
It PRON
does AUX
n't PART
take VERB
a DET
rocket NOUN
scientist NOUN
to PART
figure VERB
out ADP
that>>if PROPN
one NUM
has AUX
excessive ADJ
colonization NOUN
of ADP
yeast NOUN
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
you PRON
have AUX
a>>natural ADJ
allergy NOUN
to ADP
yeasts NOUN
, PUNCT
that SCONJ
a DET
threshold NOUN
would AUX
be AUX
reached VERB
where ADV
you>>would PRON
have AUX
perceptible ADJ
symptoms.>Yeah PROPN
, PUNCT
" PUNCT
it PRON
makes VERB
sense NOUN
to ADP
me PRON
" PUNCT
, PUNCT
so ADV
of ADP
course NOUN
it PRON
should AUX
be AUX
taken VERB
seriously.>Snort.>>Also PROPN
, PUNCT
yeast NOUN
do AUX
produce VERB
toxins NOUN
of ADP
various>>sorts NOUN
, PUNCT
and CCONJ
again ADV
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
to PART
realize VERB
that>>such ADJ
toxins NOUN
can AUX
cause VERB
problems NOUN
in ADP
some DET
people.>Yeah NOUN
, PUNCT
" PUNCT
it PRON
sounds VERB
reasonable ADJ
to ADP
me".>>Of NUM
course NOUN
, PUNCT
the DET
$ SYM
60,000>>question NUM
is AUX
whether SCONJ
a DET
person NOUN
who PRON
is AUX
immune ADJ
compromised VERB
( PUNCT
as SCONJ
tests NOUN
showed VERB
I PRON
was>>from ADP
over ADP
5 NUM
years NOUN
of ADP
antibiotics NOUN
, PUNCT
nutritionally ADV
- PUNCT
deficiencies NOUN
because SCONJ
of ADP
the>>stress PROPN
of ADP
infections NOUN
and CCONJ
allergies NOUN
, PUNCT
etc.),>Oh PROPN
, PUNCT
really ADV
? PUNCT
  SPACE
_ VERB
What PRON
_ PROPN
tests NOUN
? PUNCT
  SPACE
Immune PROPN
- PUNCT
compromised VERB
, PUNCT
my PRON
ass.>More NOUN
like SCONJ
credulous ADJ
malingerer NOUN
. PUNCT
  SPACE
This DET
is AUX
a DET
psychiatric ADJ
syndrome.>>can PROPN
develop VERB
excessive ADJ
yeast>>colonization NOUN
somewhere ADV
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
tough ADJ
question NOUN
to PART
answer VERB
since>>testing VERB
for ADP
excessive ADJ
yeast NOUN
colonization NOUN
is AUX
not PART
easy ADJ
. PUNCT
  SPACE
One NOUN
almost ADV
has AUX
to>>take NOUN
an DET
empirical ADJ
approach NOUN
to PART
diagnosis NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
Sporanox PROPN
is AUX
relatively>>safe ADJ
unlike ADP
past ADP
anti NOUN
- NOUN
fungals NOUN
( PUNCT
still ADV
have AUX
to PART
be AUX
careful ADJ
, PUNCT
however ADV
) PUNCT
so ADV
there's>>no NUM
reason NOUN
any ADV
longer ADV
to PART
withhold VERB
Sporanox PROPN
treatment NOUN
for ADP
empirical ADJ
reasons.>You NOUN
know VERB
, PUNCT
it PRON
's AUX
a DET
shame NOUN
that PRON
a DET
drug NOUN
like SCONJ
itraconazole NOUN
is AUX
being AUX
misused VERB
> X
in ADP
this DET
way NOUN
. PUNCT
  SPACE
It PRON
's AUX
ridiculously ADV
expensive ADJ
, PUNCT
and CCONJ
potentially ADV
toxic.>The DET
trouble NOUN
is AUX
that SCONJ
it PRON
is AUX
n't PART
toxic ADJ
enough ADV
, PUNCT
so CCONJ
it PRON
gets VERB
abused VERB
by ADP
quacks.>>BTW PROPN
, PUNCT
some DET
would AUX
say VERB
to PART
try VERB
Nystatin PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
yeast NOUN
grows VERB
hyphae>>too PRON
deep ADV
into ADP
tissue NOUN
for ADP
Nystatin PROPN
to PART
have AUX
any DET
permanent ADJ
affect NOUN
. PUNCT
  SPACE
You PRON
'll AUX
find>>a PUNCT
lot NOUN
of ADP
people NOUN
who PRON
are AUX
on ADP
Nystatin PROPN
all DET
the DET
time.>The NOUN
only ADV
good ADJ
thing NOUN
about ADP
nystatin PROPN
is AUX
that SCONJ
it PRON
's AUX
( PUNCT
relatively ADV
) PUNCT
cheap ADJ
> X
and CCONJ
when ADV
taken VERB
orally ADV
, PUNCT
non ADJ
- ADJ
toxic ADJ
. PUNCT
  SPACE
But CCONJ
oral PROPN
nystatin PROPN
is AUX
without ADP
any DET
> X
systemic ADJ
effect NOUN
, PUNCT
so CCONJ
unless SCONJ
it PRON
were AUX
given VERB
IV PROPN
, PUNCT
it PRON
would AUX
be AUX
without ADP
> X
any DET
effect NOUN
on ADP
your PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
wish VERB
these DET
quacks NOUN
would AUX
first ADV
use VERB
> X
IV PROPN
nystatin PROPN
or CCONJ
amphotericin PROPN
B PROPN
on ADP
people NOUN
like SCONJ
you PRON
. PUNCT
  SPACE
That DET
would AUX
solve VERB
> X
the DET
" PUNCT
yeast NOUN
" PUNCT
problem NOUN
once ADV
and CCONJ
for ADP
all.>>In PROPN
summary NOUN
, PUNCT
I PRON
appreciate VERB
all DET
of ADP
the DET
attempts NOUN
by ADP
those DET
who PRON
desire VERB
to PART
keep>>medicine VERB
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmly>>to ADP
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough>>actually PUNCT
treating VERB
patients NOUN
. PUNCT
  SPACE
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to PART
my>>face VERB
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee>>their VERB
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as>>far ADV
as SCONJ
I PRON
am AUX
concerned.>Perhaps PROPN
a DET
little ADJ
Haldol PROPN
would AUX
go VERB
a DET
long ADJ
way NOUN
towards ADP
ameliorating VERB
> X
your PRON
symptoms.>Are NOUN
you PRON
paying VERB
for ADP
this DET
treatment NOUN
out SCONJ
of ADP
your PRON
own ADJ
pocket NOUN
? PUNCT
  SPACE
I PRON
'd AUX
hate VERB
> X
to PART
think VERB
my PRON
insurance NOUN
premiums NOUN
are AUX
going VERB
towards ADP
this.>Steve PROPN
DyerDyer PROPN
, PUNCT
you PRON
're AUX
rude ADJ
. PUNCT
Medicine NOUN
is AUX
not PART
a DET
totallly ADV
scientific ADJ
endevour NOUN
. PUNCT
It'soften PROPN
practiced VERB
in ADP
a DET
disorganized ADJ
manner NOUN
. PUNCT
Most ADV
early ADJ
treatment NOUN
ofnon ADJ
- PUNCT
life NOUN
threatening VERB
illness NOUN
is AUX
done VERB
on ADP
a DET
guess NOUN
, PUNCT
hazarded VERB
after ADP
anecdotalevidence NOUN
given VERB
by ADP
the DET
patient NOUN
. PUNCT
It PRON
's AUX
an DET
educated ADJ
guess NOUN
, PUNCT
by ADP
a DET
trained VERB
person NOUN
, PUNCT
but CCONJ
it PRON
's AUX
still ADV
no ADV
more ADJ
than SCONJ
a DET
guess NOUN
. PUNCT
It PRON
's AUX
cheaper ADJ
and CCONJ
simpler ADJ
to PART
medicate VERB
first ADJ
and CCONJ
only ADV
deal VERB
further ADV
with ADP
thosepeople NOUN
who PRON
do AUX
n't PART
respond VERB
. PUNCT
There PRON
are AUX
diseases NOUN
that PRON
have AUX
n't PART
been AUX
described VERB
yet ADV
and CCONJ
the DET
root NOUN
cause NOUN
of ADP
manydiseases NOUN
now ADV
described VERB
are AUX
n't PART
known VERB
. PUNCT
( PUNCT
Read VERB
a DET
book NOUN
on ADP
gastroenterologysometime NOUN
if SCONJ
you PRON
want VERB
to PART
see VERB
a DET
lot NOUN
of ADP
them PRON
. PUNCT
) PUNCT
After ADP
scientific ADJ
methods NOUN
haverun VERB
out ADV
then ADV
it PRON
's AUX
the DET
patient NOUN
's PART
freedom NOUN
of ADP
choice NOUN
to PART
try VERB
any DET
experimentalmethod VERB
they PRON
choose VERB
. PUNCT
And CCONJ
it PRON
's AUX
well ADV
recognized VERB
by ADP
many ADJ
doctors NOUN
that PRON
medicinedoesn't VERB
have AUX
all DET
the DET
answers NOUN
. PUNCT
This DET
person NOUN
said VERB
that SCONJ
they PRON
had AUX
relief NOUN
by ADP
taking VERB
the DET
medicine NOUN
. PUNCT
Maybe ADV
it PRON
's AUX
amiracle ADJ
cure NOUN
, PUNCT
maybe ADV
it PRON
's AUX
valid ADJ
. PUNCT
How ADV
do AUX
you PRON
know VERB
? PUNCT
  SPACE
You PRON
might AUX
argue VERB
with ADP
the DET
reasoning NOUN
, PUNCT
the DET
conclusions NOUN
. PUNCT
But CCONJ
your PRON
disparagingattack NOUN
is AUX
unwarranted ADJ
. PUNCT
Why ADV
do AUX
n't PART
you PRON
present VERB
an DET
convincing ADJ
argument NOUN
for ADP
your PRON
beliefs NOUN
, PUNCT
instead ADV
of ADP
wasting VERB
our PRON
time NOUN
in ADP
an DET
ad NOUN
hominem NOUN
attack.-Jackie- VERB
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59070From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr20.212706.820@lrc.edu NUM
> NUM
kjiv@lrc.edu PUNCT
writes:>Can PROPN
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
> X
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
> X
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to ADP
> X
prevent PROPN
asthma PROPN
) PUNCT
; PUNCT
Vancenase PROPN
. PUNCT
Hismanal PROPN
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to ADP
weight NOUN
gain NOUN
. PUNCT
It PRON
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect NOUN
, PUNCT
and CCONJ
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedlydoesn't VERB
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to ADP
causedrowsiness.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59071From NUM
: SYM
wcsbeau@superior.carleton.ca PROPN
( PUNCT
OPIRG)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.190711.22190@walter.bellcore.com NOUN
> X
jchen@ctt.bellcore.com X
writes:>The ADJ
funny ADJ
thing NOUN
is AUX
the DET
personaly ADJ
stories NOUN
about ADP
reactions NOUN
to ADP
MSG PROPN
vary VERB
so ADV
> X
greatly ADV
. PUNCT
Some DET
said VERB
that SCONJ
their PRON
heart NOUN
beat VERB
speeded VERB
up ADP
with ADP
flush ADJ
face NOUN
. PUNCT
Some DET
> PUNCT
claim VERB
their PRON
heart NOUN
" PUNCT
skipped VERB
" PUNCT
beats NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Both DET
of ADP
these DET
symptoms NOUN
are AUX
related VERB
- PUNCT
tachycardia NOUN
. PUNCT
Getting VERB
a DET
flushedface NOUN
is AUX
due ADJ
to ADP
the DET
heart NOUN
pumping VERB
the DET
blood NOUN
faster ADV
than SCONJ
a DET
regularpulse NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
this DET
is AUX
related VERB
to ADP
an DET
increase NOUN
in ADP
sodium NOUN
levels NOUN
inthe DET
blood NOUN
, PUNCT
since SCONJ
note NOUN
* PUNCT
sodium NOUN
chloride NOUN
* PUNCT
monosodium PROPN
glutamate PROPN
. PUNCT
Both DET
aresodium NOUN
compounds NOUN
. PUNCT
Our PRON
bodies NOUN
require VERB
sodium NOUN
, PUNCT
but CCONJ
like SCONJ
everything PRON
else ADV
, PUNCT
one PRON
can AUX
get AUX
too ADV
much ADJ
of ADP
a DET
good ADJ
thing.>Some PROPN
reacted VERB
with ADP
headache NOUN
, PUNCT
Again ADV
, PUNCT
this DET
could AUX
be AUX
related VERB
to ADP
increased VERB
blood NOUN
flow NOUN
from ADP
increasedheart NOUN
rate NOUN
, PUNCT
from ADP
the DET
sodium NOUN
in ADP
the DET
MSG NOUN
. PUNCT
Distended VERB
crainial ADJ
arteries NOUN
, PUNCT
essentially ADV
. PUNCT
One NUM
of ADP
many ADJ
causes NOUN
of ADP
headaches NOUN
. PUNCT
There PRON
is AUX
no DET
discrepencyher NOUN
, PUNCT
necessarily.>some ADJ
stomach NOUN
ache PROPN
. PUNCT
Well INTJ
stomache PROPN
ache PROPN
and CCONJ
vomiting NOUN
tend VERB
to PART
be AUX
related VERB
. PUNCT
Again ADV
, PUNCT
notnecessarily ADV
a DET
discrepency NOUN
. PUNCT
More ADV
likely ADV
a DET
related VERB
reaction NOUN
. PUNCT
Vomitingoccurs NOUN
as SCONJ
a DET
response NOUN
to PART
get AUX
rid VERB
of ADP
a DET
noxious ADJ
compound NOUN
an DET
organism NOUN
haseaten NOUN
. PUNCT
If SCONJ
a DET
person NOUN
ca AUX
n't PART
digest VERB
the DET
stuff NOUN
( PUNCT
entirely ADV
possible ADJ
- PUNCT
thelist NOUN
of ADP
stuff NOUN
people NOUN
are AUX
allergic ADJ
to PART
is AUX
quite ADV
long ADJ
) PUNCT
, PUNCT
and CCONJ
lacks VERB
anenzyme NOUN
to PART
break VERB
it PRON
down ADP
, PUNCT
gastrointestinal ADJ
distress NOUN
( PUNCT
stomach NOUN
or CCONJ
bellyache NOUN
) PUNCT
would AUX
be AUX
expected VERB
. PUNCT
> X
Some DET
had AUX
watery ADJ
eyes NOUN
or CCONJ
running VERB
nose NOUN
, PUNCT
These DET
are AUX
respiratory ADJ
reactions NOUN
, PUNCT
and CCONJ
are AUX
now ADV
considered VERB
to PART
be AUX
similarto ADJ
vomitting NOUN
. PUNCT
They PRON
are AUX
a DET
way NOUN
for ADP
the DET
body NOUN
to PART
dispose VERB
of ADP
noxiouscompounds NOUN
. PUNCT
They PRON
are AUX
adaptiove ADP
responses NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
it PRON
is AUX
possiblesome VERB
other ADJ
food NOUN
or CCONJ
environmental ADJ
compound NOUN
could AUX
be AUX
responsible ADJ
for ADP
thesymptoms NOUN
. PUNCT
But CCONJ
it PRON
's AUX
important ADJ
to PART
remember VERB
that SCONJ
a DET
lot NOUN
opf ADP
these DET
effetscan NOUN
be AUX
additive ADJ
, PUNCT
synergystic ADJ
, PUNCT
subtractive ADJ
, PUNCT
etc X
, PUNCT
etc X
. PUNCT
It PRON
would AUX
benecessary VERB
to PART
know VERB
exactly ADV
what PRON
was AUX
in ADP
a DET
dish NOUN
, PUNCT
and CCONJ
what PRON
else ADV
the DET
personwas NOUN
exposed VERB
to ADP
. PUNCT
Respiratory PROPN
does AUX
sound VERB
suspicious ADJ
BUT CCONJ
  SPACE
resopirationand VERB
heart NOUN
rate NOUN
are AUX
connected VERB
. PUNCT
  SPACE
Things NOUN
in ADP
the DET
body NOUN
are AUX
far ADV
fromsimple ADJ
... PUNCT
very ADV
inetractive ADJ
place NOUN
, PUNCT
the DET
vertebrate NOUN
body NOUN
. PUNCT
> X
some DET
> X
had AUX
itchy ADJ
skin NOUN
or CCONJ
rashes NOUN
. PUNCT
People NOUN
respond VERB
in ADP
a DET
myriad NOUN
of ADP
ways NOUN
to ADP
the DET
same ADJ
compound NOUN
. PUNCT
It PRON
dependsupon VERB
what PRON
it PRON
is AUX
about ADP
the DET
compound NOUN
that PRON
" PUNCT
pisses VERB
off ADP
" PUNCT
their PRON
body NOUN
. PUNCT
Pollen PROPN
, PUNCT
for ADP
example NOUN
, PUNCT
of ADP
some DET
plants NOUN
aggrivates VERB
breathing VERB
in ADP
manypeople NOUN
, PUNCT
because SCONJ
, PUNCT
when ADV
inhaled VERB
, PUNCT
it PRON
sets VERB
of ADP
the DET
immune ADJ
system NOUN
, PUNCT
and CCONJ
anhistamine NOUN
attack NOUN
is AUX
launched VERB
. PUNCT
The DET
immune ADJ
system NOUN
goes VERB
overboard ADV
, PUNCT
causing VERB
the DET
allergic ADJ
person NOUN
a DET
lot NOUN
of ADP
misery NOUN
. PUNCT
And CCONJ
someone PRON
with ADP
anallergy NOUN
to ADP
some DET
pollens NOUN
will AUX
have AUX
trouble NOUN
with ADP
some DET
herb NOUN
teas NOUN
thatcontain VERB
pollens NOUN
( PUNCT
Chamomile PROPN
, PUNCT
linden PROPN
, PUNCT
etc X
) PUNCT
. PUNCT
Drinking VERB
the DET
substance NOUN
canperturb NOUN
that DET
person NOUN
's PART
system NOUN
as ADV
much ADV
as SCONJ
inhaling VERB
it PRON
. PUNCT
> X
More ADV
serious ADJ
accusations NOUN
include VERB
respiration NOUN
> X
difficulty NOUN
See VERB
above ADV
. PUNCT
And CCONJ
do AUX
n't PART
think VERB
that SCONJ
heart NOUN
rate NOUN
changes NOUN
, PUNCT
and CCONJ
circulatoryproblems NOUN
are AUX
not PART
serious ADJ
. PUNCT
They PRON
can AUX
be AUX
deadly.and PUNCT
brain NOUN
damage NOUN
. PUNCT
The DET
area NOUN
of ADP
the DET
brain NOUN
effected VERB
is AUX
the DET
neuroendocrine NOUN
systemcontrolling VERB
the DET
release NOUN
of ADP
gonadotropin NOUN
, PUNCT
the DET
supra NOUN
- PUNCT
hormone NOUN
controllingthe NOUN
cyclical ADJ
release NOUN
of ADP
testosterone NOUN
and CCONJ
estradiol NOUN
, PUNCT
as ADV
well ADV
as SCONJ
somatostatin NOUN
, PUNCT
and CCONJ
other ADJ
steroids NOUN
. PUNCT
Testing VERB
for ADP
effective ADJ
dose NOUN
would AUX
be AUX
, PUNCT
uh INTJ
, PUNCT
a DET
wee NOUN
bit NOUN
unethical.>Now NOUN
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one NUM
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
foodpoisoning ADJ
. PUNCT
Absolutely ADV
. PUNCT
But CCONJ
it PRON
could AUX
also ADV
be AUX
some DET
synergystic ADJ
mess NOUN
from ADP
eating VERB
, PUNCT
say INTJ
, PUNCT
undetected ADJ
shrimp NOUN
or CCONJ
mushrooms NOUN
( PUNCT
to PART
which PRON
many ADJ
are AUX
allergic ADJ
) PUNCT
, PUNCT
plustoo ADV
much ADJ
alcohol NOUN
, PUNCT
and CCONJ
inhaling VERB
too ADV
much ADJ
diesel NOUN
fumes NOUN
biking VERB
home ADV
, PUNCT
plus CCONJ
, PUNCT
let VERB
's PRON
say VERB
, PUNCT
having VERB
contracted VERB
flu NOUN
from ADP
one PRON
's PART
sig NOUN
. PUNCT
other ADJ
3 NUM
daysbefore NOUN
from ADP
drinking VERB
out SCONJ
of ADP
the DET
same ADJ
glass NOUN
. PUNCT
Could AUX
be AUX
all DET
sorts NOUN
ofthings NOUN
. PUNCT
But CCONJ
it PRON
might AUX
be AUX
the DET
MSG PROPN
. PUNCT
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it PRON
. PUNCT
If SCONJ
noone NOUN
else ADV
got VERB
sick ADJ
, PUNCT
its PRON
likely ADJ
not PART
food NOUN
poisoning NOUN
. PUNCT
Probablystomach PROPN
flu NOUN
or CCONJ
an DET
undetected ADJ
thing NOUN
the DET
guy NOUN
's PART
allergic NOUN
to ADP
. PUNCT
Anyway INTJ
, PUNCT
the DET
human ADJ
body NOUN
's AUX
not PART
a DET
machine NOUN
; PUNCT
people NOUN
vary VERB
widely ADV
in ADP
theirresponses NOUN
, PUNCT
and CCONJ
a DET
lot NOUN
of ADP
reactions NOUN
are AUX
due ADJ
to ADP
combinations NOUN
of ADP
things NOUN
. PUNCT
          SPACE
Dianne PROPN
Murray PROPN
  SPACE
wcsbeau@ccs.carleton.caNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59072From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics)A ADJ
person NOUN
posted VERB
certain ADJ
stuff NOUN
to ADP
this DET
newsgroup NOUN
, PUNCT
which PRON
were AUX
highlyselected VERB
quotes NOUN
stripped VERB
of ADP
their PRON
context NOUN
. PUNCT
  SPACE
Here ADV
is AUX
the DET
completeposting NOUN
which PRON
was AUX
quoted VERB
( PUNCT
lacking VERB
the DET
context NOUN
of ADP
other ADJ
postings NOUN
in ADP
which PRON
it PRON
was AUX
made VERB
) PUNCT
: PUNCT
> X
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
> X
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
will AUX
> X
then ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
genetic ADJ
> X
engineering NOUN
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want VERB
. PUNCT
> X
No DET
breeding NOUN
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
should AUX
> X
we PRON
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADV
- PUNCT
lived VERB
, PUNCT
> X
Arnold PROPN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can AUX
. PUNCT
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
it PRON
will AUX
be AUX
possible ADJ
to PART
disassemble VERB
andre NOUN
- PUNCT
assemble VERB
our PRON
bodies NOUN
at ADP
the DET
molecular ADJ
level NOUN
. PUNCT
  SPACE
Not PART
only ADV
will AUX
flawlesscosmetic ADJ
surgery NOUN
be AUX
possible ADJ
, PUNCT
but CCONJ
flawless ADJ
cosmetic NOUN
PSYCHOSURGERY.What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
store VERB
all DET
the DET
prices NOUN
of ADP
shelf NOUN
- PUNCT
priced VERB
bar NOUN
- PUNCT
codedgoods NOUN
in ADP
your PRON
head NOUN
, PUNCT
and CCONJ
catch VERB
all DET
the DET
errors NOUN
they PRON
make VERB
in ADP
the DET
store'sfavor NOUN
at ADP
SAFEWAY PROPN
? PUNCT
  SPACE
What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
mentally ADV
edit VERB
and CCONJ
spell NOUN
- PUNCT
check VERB
your PRON
responses NOUN
to ADP
the DET
questions NOUN
posed VERB
by ADP
a DET
phone NOUN
caller NOUN
sellingVACATION PUNCT
TIME PROPN
- PUNCT
SHARE PROPN
OPTIONS?Indeed X
, PUNCT
we PRON
are AUX
today NOUN
a DET
nation NOUN
at ADP
risk NOUN
! PUNCT
  SPACE
The DET
threat NOUN
is AUX
not PART
from ADP
bad ADJ
genes NOUN
, PUNCT
but CCONJ
bad ADJ
memes NOUN
! PUNCT
  SPACE
Memes PROPN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
geneswhich PROPN
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
We PRON
stand VERB
on ADP
the DET
brink NOUN
of ADP
new ADJ
meme ADJ
- PUNCT
amplification NOUN
technologies NOUN
! PUNCT
  SPACE
Harmfulmemes NOUN
which PRON
formerly ADV
were AUX
restricted VERB
in ADP
their PRON
destructive ADJ
power NOUN
willrun NOUN
rampant ADJ
over ADP
the DET
countryside NOUN
, PUNCT
laying VERB
waste NOUN
to ADP
the DET
real ADJ
benefits NOUN
thatfuture NOUN
technology NOUN
has AUX
to PART
offer VERB
. PUNCT
For ADP
example NOUN
, PUNCT
Jeremy PROPN
Rifkin PROPN
has AUX
been AUX
busy ADJ
trying VERB
to PART
whip VERB
up ADP
emotionsagainst ADP
the DET
new ADJ
genetically ADV
engineered VERB
tomatoes NOUN
under ADP
development NOUN
atCALGENE NOUN
. PUNCT
  SPACE
This DET
guy NOUN
is AUX
inventing VERB
harmful ADJ
memes NOUN
, PUNCT
a DET
virtual ADJ
memetic ADJ
TyphoidMary PROPN
. PUNCT
We PRON
must AUX
expand VERB
the DET
public ADJ
- PUNCT
health NOUN
laws NOUN
to PART
include VERB
quarantine NOUN
of ADP
peoplewith PROPN
harmful PROPN
memes NOUN
. PUNCT
  SPACE
They PRON
should AUX
not PART
be AUX
allowed VERB
to PART
infect VERB
other ADJ
peoplewith NOUN
their PRON
memes NOUN
against ADP
genetically ADV
- PUNCT
engineered VERB
food NOUN
, PUNCT
electromagneticfields PROPN
, PUNCT
and CCONJ
the DET
Space PROPN
Shuttle PROPN
solid ADJ
rocket NOUN
boosters NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59073From NUM
: PUNCT
brian@quake.sylmar.ca.us PROPN
( PUNCT
Brian PROPN
K. PROPN
Yoder)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?Have VERB
you PRON
ever ADV
met VERB
a DET
chemist NOUN
? PUNCT
  SPACE
A DET
food NOUN
industry NOUN
businessman NOUN
? PUNCT
  SPACE
You PRON
mustpersonally ADV
know VERB
a DET
lot NOUN
of ADP
them PRON
for ADP
you PRON
to PART
be AUX
able ADJ
to PART
be AUX
so ADV
certain ADJ
that SCONJ
theyare ADJ
evil ADJ
mosters NOUN
whose PRON
only ADJ
goal NOUN
is AUX
to PART
inflict VERB
as SCONJ
much ADJ
pain NOUN
and CCONJ
diseaseas NOUN
possible ADJ
into ADP
the DET
general ADJ
public NOUN
. PUNCT
  SPACE
Gimme PROPN
a DET
break NOUN
. PUNCT
In ADP
article NOUN
< X
1993Apr15.215826.3401@rtsg.mot.com X
> X
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby PROPN
) PUNCT
writes:>>>>Is PROPN
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>>Superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
person NOUN
who PRON
is AUX
very ADV
sensitive ADJ
to ADP
msg NOUN
and CCONJ
whose PRON
wife NOUN
and CCONJ
kids NOUN
are AUX
> X
too ADV
, PUNCT
I PRON
WANT VERB
TO PART
KNOW VERB
WHY ADV
THE DET
FOOD NOUN
INDUSTRY NOUN
WANTS VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
FOOD PROPN
! PUNCT
! PUNCT
! PUNCT
Because SCONJ
it PRON
makes VERB
the DET
food NOUN
TASTE VERB
BETTER ADJ
! PUNCT
  SPACE
Why ADV
does AUX
it PRON
put VERB
salt NOUN
in ADP
food?Same PROPN
reason.>I PROPN
REALLY PROPN
DON'T VERB
UNDERSTAND!!!Obviously PROPN
. PUNCT
> X
Somebody PRON
in ADP
the DET
industry NOUN
GIVE VERB
ME PROPN
SOME DET
REASONS NOUN
WHY!>IS VERB
IT PRON
AN DET
INDUSTRIAL PROPN
BYPRODUCT NOUN
THAT ADP
NEEDS NOUN
GETTING NOUN
GET VERB
RID VERB
OF ADP
? PUNCT
Of ADV
course ADV
not PART
! PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
would AUX
think VERB
that SCONJ
a DET
person NOUN
like SCONJ
you PRON
would AUX
be AUX
abig NOUN
fan NOUN
of ADP
such ADJ
recycling NOUN
if SCONJ
that DET
were AUX
the DET
case).>IS ADJ
IT NOUN
TO PART
COVER VERB
UP ADP
THE DET
FACT NOUN
THAT PRON
THE DET
RECIPES NOUN
ARE VERB
NOT ADV
VERY ADV
GOOD ADJ
OR CCONJ
THE DET
> X
FOOD NOUN
IS VERB
POOR ADJ
QUALITY VERB
? PUNCT
On ADP
occasion NOUN
that DET
's AUX
probably ADV
the DET
case NOUN
, PUNCT
but CCONJ
in ADP
general ADJ
the DET
idea NOUN
is AUX
that SCONJ
MSGimproves VERB
the DET
flavor NOUN
of ADP
certain ADJ
foods NOUN
. PUNCT
> X
DO VERB
SOME DET
OF ADP
YOU PRON
GET VERB
A DET
SADISTIC NOUN
PLEASURE VERB
OUT ADP
OF ADP
MAKING VERB
SOME DET
OF ADP
US PROPN
SICK VERB
? PUNCT
No INTJ
. PUNCT
> X
DO VERB
THE DET
TASTE NOUN
TESTERS NOUN
HAVE VERB
SOME DET
DEFECT NOUN
IN ADP
THEIR PRON
FLAVOR NOUN
SENSORS PROPN
( PUNCT
MOUTH PROPN
etc X
... PUNCT
) PUNCT
> X
  SPACE
THAT ADP
MSG PROPN
CORRECTS NOUN
? PUNCT
No INTJ
. PUNCT
> X
I PRON
REALLY VERB
DON'T VERB
UNDERSTAND PROPN
! PUNCT
! PUNCT
! PUNCT
Obviously ADV
. PUNCT
> X
ALSO ADV
... PUNCT
Nitrosiamines PROPN
( PUNCT
sp NOUN
) PUNCT
As SCONJ
I PRON
recall VERB
, PUNCT
these DET
are AUX
natural ADJ
by ADP
- PUNCT
products NOUN
of ADP
heating VERB
up ADP
certain ADJ
foods NOUN
. PUNCT
They PRON
do AUX
n't PART
" PUNCT
put VERB
it PRON
in ADV
there ADV
" PUNCT
. PUNCT
  SPACE
have AUX
a DET
number NOUN
of ADP
criteria NOUN
in ADP
choosing VERB
how ADV
to PART
process VERB
food NOUN
. PUNCT
  SPACE
They PRON
want VERB
tomake VERB
it PRON
taste VERB
good ADJ
, PUNCT
look VERB
good ADJ
, PUNCT
sell VERB
for ADP
a DET
good ADJ
price NOUN
, PUNCT
etc X
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
theyuse VERB
it PRON
tells VERB
me PRON
that SCONJ
THEY PRON
think VERB
that SCONJ
it PRON
contributes VERB
to ADP
those DET
goals NOUN
they PRON
areinterested VERB
in ADP
. PUNCT
  SPACE
One NUM
of ADP
those DET
goals NOUN
is AUX
NOT ADV
" PUNCT
making VERB
people NOUN
sick ADJ
" PUNCT
. PUNCT
  SPACE
Such DET
a DET
goalwoud NOUN
quickly ADV
drive VERB
them PRON
out SCONJ
of ADP
business NOUN
and CCONJ
for ADP
no DET
benefit NOUN
. PUNCT
> X
I PRON
think>1 VERB
) PUNCT
outlaw VERB
the DET
use NOUN
of ADP
these DET
substances NOUN
without ADP
warning VERB
labels NOUN
as SCONJ
> X
large ADJ
as SCONJ
those DET
on ADP
cig PROPN
. PUNCT
packages NOUN
. PUNCT
Warning VERB
of ADP
what PRON
? PUNCT
  SPACE
In ADP
California PROPN
there PRON
is AUX
a DET
law NOUN
requiring VERB
that SCONJ
ANYTHING NOUN
whichcontains VERB
a DET
carcinogen NOUN
be AUX
labeled VERB
. PUNCT
  SPACE
That DET
includes VERB
every DET
gasline ADJ
pump NOUN
, PUNCT
mostfoods NOUN
, PUNCT
and CCONJ
even ADV
money NOUN
cleaning VERB
machines NOUN
( PUNCT
because SCONJ
Nickel PROPN
is AUX
a DET
mild ADJ
carcinogen).The PROPN
result NOUN
is AUX
that SCONJ
now ADV
nobody PRON
pays VERB
any DET
attention NOUN
to ADP
ANY DET
of ADP
the DET
warnings NOUN
. PUNCT
> X
2 X
) PUNCT
Require VERB
30 NUM
% NOUN
of ADP
comparable ADJ
products NOUN
on ADP
the DET
market NOUN
to PART
be AUX
free ADJ
of ADP
these DET
> X
substances NOUN
and CCONJ
state NOUN
that SCONJ
they PRON
are AUX
free ADJ
of ADP
MSG PROPN
, PUNCT
DYES PROPN
, PUNCT
NITROSIAMINES PROPN
and CCONJ
> X
SULFITES NOUN
on ADP
the DET
package NOUN
. PUNCT
Why ADV
? PUNCT
  SPACE
What PRON
if SCONJ
not PART
30 NUM
% NOUN
of ADP
people NOUN
wanted VERB
to PART
buy VERB
this DET
ugly ADJ
, PUNCT
rotten ADJ
, PUNCT
not PART
- PUNCT
as SCONJ
- PUNCT
tastyfood NOUN
? PUNCT
  SPACE
I PRON
guess VERB
it PRON
will AUX
just ADV
be AUX
wasted VERB
, PUNCT
huh INTJ
? PUNCT
  SPACE
How ADV
terribly ADV
efficient ADJ
. PUNCT
> X
3 X
) PUNCT
While SCONJ
at ADP
it PRON
outlaw VERB
yellow ADJ
dye NOUN
# PROPN
5 NUM
. PUNCT
  SPACE
For ADP
that DET
matter NOUN
why ADV
dye NOUN
food NOUN
? PUNCT
Because SCONJ
it PRON
makes VERB
food NOUN
look VERB
better ADJ
. PUNCT
  SPACE
I PRON
LIKE VERB
food NOUN
that PRON
looks VERB
good ADJ
. PUNCT
If SCONJ
vitamin NOUN
companies NOUN
want VERB
to PART
do AUX
that SCONJ
it PRON
is AUX
fine ADJ
, PUNCT
but CCONJ
who PRON
are AUX
you PRON
totell ADJ
THEM PRON
how ADV
to PART
make VERB
vitamins NOUN
? PUNCT
  SPACE
Who PRON
are AUX
you PRON
to PART
tell VERB
ME PROPN
whether SCONJ
I PRON
shouldbuy VERB
flavored VERB
vitamins NOUN
for ADP
my PRON
kids NOUN
( PUNCT
who PRON
ca AUX
n't PART
swallow VERB
the DET
conventional ADJ
oneswhole NOUN
) PUNCT
. PUNCT
> X
KEEP VERB
FOOD PROPN
FOOD PROPN
! PUNCT
  SPACE
QUIT VERB
PUTTING NOUN
IN ADP
JUNK NOUN
! PUNCT
How ADV
do AUX
you PRON
define VERB
" PUNCT
junk NOUN
" PUNCT
? PUNCT
  SPACE
Is AUX
putting VERB
" PUNCT
salt NOUN
" PUNCT
in ADP
food NOUN
bad ADJ
? PUNCT
  SPACE
What PRON
aboutPepper NOUN
? PUNCT
  SPACE
What PRON
about ADP
alcohol NOUN
as SCONJ
a DET
preservative NOUN
? PUNCT
  SPACE
What PRON
about ADP
sealing VERB
jarswith PROPN
wax PROPN
? PUNCT
  SPACE
What PRON
about ADP
vinegar NOUN
? PUNCT
  SPACE
You PRON
seem VERB
to PART
think VERB
that SCONJ
" PUNCT
chemicals NOUN
" PUNCT
aresomehow NOUN
different ADJ
than SCONJ
" PUNCT
food NOUN
" PUNCT
. PUNCT
  SPACE
The DET
fact NOUN
is AUX
that SCONJ
all DET
foods NOUN
are AUX
100 NUM
% NOUN
chemicals NOUN
. PUNCT
You PRON
are AUX
just ADV
expressing VERB
an DET
irrational ADJ
prejudice NOUN
against ADP
food NOUN
processing NOUN
. PUNCT
--BrianNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59074From NUM
: PUNCT
bls101@keating.anu.edu.au NOUN
( PUNCT
The DET
New PROPN
, PUNCT
Improved ADJ
Brian PROPN
Scearce)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
- PUNCT
reply NOUN
- PUNCT
to PART
: PUNCT
todamhyp@charles.unlv.edu's NOUN
message NOUN
of ADP
Mon PROPN
, PUNCT
19 NUM
Apr PROPN
93 NUM
20:56:15 NUM
GMTNewsgroups NOUN
: PUNCT
sci.energy,sci.image.processing,sci.anthropology,alt.sci.physics.new-theories,sci.skeptic,sci.med,alt.alien.visitorsSubject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyReferences NOUN
: PUNCT
< X
1993Apr19.205615.1013@unlv.edu>Distribution NUM
: PUNCT
--text PUNCT
follows VERB
this DET
line--todamhyp@charles.unlv.edu NOUN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
	    SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
   SPACE
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
   SPACE
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
   SPACE
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
   SPACE
appreciated VERB
. PUNCT
	    SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
   SPACE
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
   SPACE
object NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
   SPACE
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
   SPACE
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
   SPACE
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
   SPACE
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
There PRON
have AUX
been AUX
a DET
number NOUN
of ADP
scientific ADJ
papers NOUN
( PUNCT
in ADP
peer NOUN
- PUNCT
reviewed VERB
journals)published PROPN
about ADP
Kirlian ADJ
photography NOUN
in ADP
the DET
early ADJ
1970s NOUN
. PUNCT
  SPACE
Sorry INTJ
I PRON
ca AUX
n't PART
bemore VERB
specific ADJ
but CCONJ
it PRON
is AUX
a DET
long ADJ
time NOUN
since SCONJ
I PRON
read VERB
them PRON
. PUNCT
  SPACE
They PRON
would AUX
describewhat VERB
is AUX
needed VERB
and CCONJ
how ADV
to PART
set VERB
up ADP
the DET
apparatus NOUN
. PUNCT
  SPACE
These DET
papers NOUN
demonstrate VERB
that SCONJ
the DET
auras PROPN
obtained VERB
by ADP
Kirlian ADJ
photography NOUN
canbe NOUN
completely ADV
explained VERB
by ADP
the DET
effect NOUN
of ADP
the DET
electric ADJ
currents NOUN
used VERB
on ADP
themoisture NOUN
in ADP
the DET
object NOUN
being AUX
photographed VERB
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
the"energy NOUN
signature NOUN
" PUNCT
of ADP
organic ADJ
objects NOUN
. PUNCT
I PRON
did AUX
a DET
science NOUN
project NOUN
on ADP
Kirlian ADJ
photography NOUN
when ADV
I PRON
was AUX
in ADP
high ADJ
school NOUN
. PUNCT
I PRON
was AUX
able ADJ
to PART
obtain VERB
wonderful ADJ
auras NOUN
from ADP
rocks NOUN
and CCONJ
pebbles NOUN
and CCONJ
the DET
like ADJ
byfirst NOUN
dunking VERB
them PRON
in ADP
water.Barbara----bls101@syseng.anu.edu.au"I PROPN
generally ADV
avoid VERB
temptation NOUN
unless SCONJ
I PRON
ca AUX
n't PART
resist VERB
it PRON
. PUNCT
" PUNCT
                 SPACE
- PUNCT
Mae PROPN
West PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59075From NUM
: PUNCT
bj368@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Mike PROPN
E. PROPN
Romano)Subject PROPN
: PUNCT
Home PROPN
Medical PROPN
TestsI PROPN
am AUX
looking VERB
for ADP
current ADJ
sources NOUN
for ADP
lists NOUN
of ADP
all DET
the DET
homemedical ADJ
tests NOUN
currently ADV
legally ADV
available ADJ
. PUNCT
I PRON
believe VERB
this DET
trend NOUN
of ADP
allowing VERB
tests NOUN
at ADP
home NOUN
wherefeasible ADJ
, PUNCT
decreased VERB
medical ADJ
costs NOUN
by ADP
a DET
factor NOUN
of ADP
10 NUM
ormore NOUN
and CCONJ
allows VERB
the DET
patient NOUN
some DET
time NOUN
and CCONJ
privacy NOUN
toconsider VERB
the DET
best ADJ
action NOUN
from ADP
the DET
results NOUN
of ADP
such ADJ
tests NOUN
. PUNCT
In ADP
fact NOUN
I PRON
believe VERB
home NOUN
medical ADJ
tests NOUN
and CCONJ
certain ADJ
basictests NOUN
for ADP
serious ADJ
diseases NOUN
such ADJ
as SCONJ
cancer NOUN
, PUNCT
heart NOUN
disease NOUN
, PUNCT
should AUX
be AUX
offered VERB
free ADJ
to ADP
the DET
American ADJ
public NOUN
. PUNCT
This DET
could AUX
actually ADV
help VERB
to PART
reduce VERB
national ADJ
medical ADJ
costssince NOUN
many ADJ
would AUX
have AUX
an DET
earlier ADJ
opportunity NOUN
to PART
knowabout VERB
and CCONJ
work VERB
toward ADP
recuperation NOUN
or CCONJ
cure NOUN
. PUNCT
Mike PROPN
Romano-- PROPN
Sir PROPN
, PUNCT
I PRON
admit VERB
your PRON
gen'ral NOUN
ruleThat PROPN
every DET
poet NOUN
is AUX
a DET
fool;But PROPN
you PRON
yourself PRON
may AUX
serve VERB
to PART
show VERB
it PRON
, PUNCT
That SCONJ
every DET
fool NOUN
is AUX
not PART
a DET
poet NOUN
. PUNCT
    SPACE
A. NOUN
PopeNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59076From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboJB NOUN
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
JB PROPN
> X
  SPACE
JB PROPN
> X
    SPACE
Ron PROPN
Roth PROPN
recommends VERB
: PUNCT
" PUNCT
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED ADV
through ADP
theJB PROPN
> X
                          SPACE
proper ADJ
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
the DET
following: NOUN
... PUNCT
"JB PUNCT
> X
                          SPACE
[ PUNCT
diet PROPN
omitted]JB PROPN
> X
  SPACE
JB PROPN
> X
  SPACE
1 NUM
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
this DET
sounds VERB
suspiciously ADV
  SPACE
I PRON
'm AUX
glad ADJ
it PRON
caught VERB
your PRON
eye NOUN
. PUNCT
That DET
's AUX
the DET
purpose NOUN
of ADP
this DET
forum NOUN
to PART
educate VERB
those DET
, PUNCT
eager ADJ
to PART
learn VERB
, PUNCT
about ADP
the DET
facts NOUN
of ADP
life NOUN
. PUNCT
That DET
phrase NOUN
is AUX
used VERB
to PART
bridle VERB
the DET
frenzy NOUN
of ADP
all DET
the DET
would AUX
- PUNCT
be AUX
respondents NOUN
, PUNCT
who PRON
otherwise ADV
would AUX
feel VERB
being AUX
left VERB
out ADP
as SCONJ
the DET
proper ADJ
authorities NOUN
to PART
be AUX
consulted VERB
on ADP
that DET
topic NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
means VERB
absolutely ADV
nothing PRON
. PUNCT
JB PROPN
> X
  SPACE
like SCONJ
a DET
blood NOUN
chemistry NOUN
... PUNCT
glucose NOUN
tolerance NOUN
and CCONJ
the DET
like ADJ
... PUNCT
suddenly ADV
chemistryJB NOUN
> X
  SPACE
exists VERB
? PUNCT
You PRON
know VERB
perfectly ADV
well ADV
that SCONJ
this DET
person NOUN
can AUX
be AUX
saved VERB
needless ADJ
troubleJB PROPN
> X
  SPACE
and CCONJ
expense NOUN
with ADP
simple ADJ
muscle NOUN
testing NOUN
and CCONJ
hair NOUN
analysis NOUN
to PART
diagnose VERB
... PUNCT
noJB ADV
> X
  SPACE
" PUNCT
CONFIRM PROPN
" PUNCT
any DET
aberrant ADJ
physiology NOUN
... PUNCT
but CCONJ
then ADV
again ADV
... PUNCT
maybe ADV
that DET
's AUX
what PRON
you PRON
mean VERB
" PUNCT
Muscle NOUN
testing NOUN
and CCONJ
hair NOUN
analysis NOUN
, PUNCT
eh INTJ
? PUNCT
  SPACE
So ADV
what PRON
other ADJ
fascinating ADJ
  SPACE
space NOUN
- PUNCT
age NOUN
medical ADJ
techniques NOUN
do AUX
you PRON
use VERB
? PUNCT
  SPACE
Do AUX
you PRON
sit VERB
under ADP
a DET
pyramid NOUN
over ADP
night NOUN
as ADV
well ADV
to PART
shrink VERB
your PRON
brain NOUN
back ADV
to ADP
normal ADJ
after ADP
a DET
mind- NOUN
expanding VERB
day NOUN
at ADP
your PRON
' PUNCT
Save VERB
the DET
Earth PROPN
' PART
clinic?JB NOUN
> X
  SPACE
2 X
) PUNCT
Were AUX
you PRON
able ADJ
to PART
understand VERB
Dick PROPN
King PROPN
's PART
post NOUN
that SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
is AUX
not PART
thyJB PROPN
> X
  SPACE
evaluate VERB
the DET
statistic NOUN
you PRON
cited VERB
from ADP
the DET
New PROPN
England PROPN
Journal PROPN
of ADP
Medicine PROPN
. PUNCT
Coul PROPN
? PUNCT
Once ADV
I PRON
figure VERB
out ADP
what PRON
* PUNCT
you PRON
* PUNCT
are AUX
trying VERB
to PART
say VERB
, PUNCT
I PRON
'll AUX
still ADV
have AUX
  SPACE
to PART
wrestle VERB
with ADP
the DET
possibility NOUN
of ADP
you PRON
conceivably ADV
not PART
being AUX
able ADJ
to PART
understand VERB
my PRON
answer NOUN
to ADP
your PRON
question?!JB PROPN
> X
  SPACE
3 X
) PUNCT
Ron PROPN
... PUNCT
have AUX
you PRON
ever ADV
thought VERB
about ADP
why ADV
you PRON
never ADV
post VERB
in ADP
misc.health.alterna-JB PROPN
> X
  SPACE
tive PROPN
... PUNCT
and CCONJ
insist VERB
instead ADV
upon SCONJ
insinuating VERB
your PRON
untrained ADJ
, PUNCT
non ADJ
- ADJ
medical ADJ
, PUNCT
oftenJB X
> X
  SPACE
delusional ADJ
notions NOUN
of ADP
health NOUN
and CCONJ
disease NOUN
into ADP
this DET
forum NOUN
? PUNCT
I PRON
suspect VERB
from ADP
yourJB PROPN
> X
  SPACE
apparent ADJ
anger NOUN
toward ADP
MDs NOUN
and CCONJ
heteropathic ADJ
medicine NOUN
that SCONJ
there PRON
may AUX
be AUX
an DET
              SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
  SPACE
You PRON
little ADJ
psychoanalytical ADJ
rascal ADJ
you PRON
! PUNCT
  SPACE
Got VERB
me PRON
all DET
figured VERB
out ADP
, PUNCT
ja PROPN
? PUNCT
  SPACE
JB PROPN
> X
  SPACE
underlying PROPN
' PART
father NOUN
problem' NOUN
... PUNCT
of ADP
course NOUN
I PRON
can AUX
CONFIRM VERB
this DET
by ADP
surrogate ADJ
muscleJB PROPN
> X
  SPACE
testing VERB
one NUM
of ADP
my PRON
patients NOUN
while SCONJ
they PRON
ponder VERB
my PRON
theory NOUN
to PART
see VERB
if SCONJ
one NUM
of ADP
theirJB PROPN
> X
  SPACE
previously ADV
weak ADJ
' PUNCT
indicator NOUN
' PUNCT
muscles NOUN
strengthens VERB
... PUNCT
or CCONJ
do AUX
you PRON
have AUX
reservationsJB PROPN
> X
  SPACE
about ADP
my PRON
unique ADJ
methods NOUN
of ADP
diagnosis NOUN
? PUNCT
[ PUNCT
...... PUNCT
] PUNCT
JB PROPN
> X
  SPACE
JB PROPN
> X
  SPACE
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAJB PROPN
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
Oh PROPN
man NOUN
, PUNCT
when ADV
are AUX
you PRON
going VERB
to PART
start VERB
teaching VERB
all DET
this DET
stuff NOUN
? PUNCT
  SPACE
I PRON
'll AUX
bet VERB
everyone PRON
on ADP
this DET
net NOUN
must AUX
be AUX
absolutely ADV
dying VERB
to PART
learn VERB
more ADJ
about ADP
  SPACE
going VERB
beyond ADP
spinal ADJ
adjustments NOUN
and CCONJ
head NOUN
straight ADV
for ADP
the DET
mind NOUN
for ADP
some DET
Freudian ADJ
subluxation NOUN
. PUNCT
  SPACE
--Ron----- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
In ADP
the DET
next ADJ
world NOUN
, PUNCT
you PRON
're AUX
on ADP
your PRON
own ADJ
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59077From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
19687@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>In X
article NOUN
< X
1993Apr13.093300.29529@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>>>"Weight NOUN
rebound NOUN
" PUNCT
is AUX
a DET
term NOUN
used VERB
in ADP
the DET
medical ADJ
literature NOUN
on>>obesity NOUN
to PART
denote VERB
weight NOUN
regain NOUN
beyond ADP
what PRON
was AUX
lost VERB
in ADP
a DET
diet>>cycle NOUN
. PUNCT
  SPACE
There PRON
are AUX
any DET
number NOUN
of ADP
terms NOUN
which PRON
mean VERB
one NUM
thing NOUN
to>>Can PRON
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back ADV
> X
the DET
lost ADJ
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it PRON
> X
exceeds VERB
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that PRON
> X
is AUX
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?Not VERB
one NUM
, PUNCT
but CCONJ
two NUM
: PUNCT
Obesity NOUN
in ADP
Europe PROPN
88,proceedings NUM
of ADP
the DET
1st ADJ
European ADJ
Congress PROPN
on ADP
ObesityAnnals PROPN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>-- NUM
> X
---------------------------------------------------------------------------->Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
------------------------------------------------------------------------------ PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59078From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Broken VERB
ribIn PROPN
article NOUN
< X
D0ZB3B1w164w@oneb.almanac.bc.ca NOUN
> X
jc@oneb.almanac.bc.ca X
writes:>>fell PROPN
about ADV
3 NUM
weeks NOUN
ago ADV
down ADV
into ADP
the DET
hold NOUN
of ADP
the DET
boat NOUN
and CCONJ
broke VERB
or CCONJ
> X
cracked VERB
a DET
rib NOUN
and CCONJ
wrenched VERB
and CCONJ
bruised VERB
my PRON
back NOUN
and CCONJ
left VERB
arm NOUN
. PUNCT
> X
  SPACE
My PRON
question NOUN
, PUNCT
  SPACE
I PRON
have AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
was AUX
told VERB
that SCONJ
it PRON
was AUX
> X
best ADJ
to PART
do AUX
nothing PRON
and CCONJ
it PRON
would AUX
heal VERB
up ADP
with ADP
no DET
long ADJ
term NOUN
effect NOUN
, PUNCT
and CCONJ
> X
indeed ADV
I PRON
am AUX
about ADV
60 NUM
% NOUN
better ADJ
, PUNCT
however ADV
, PUNCT
the DET
work NOUN
I PRON
do AUX
is AUX
very ADV
> X
hard ADV
and CCONJ
I PRON
am AUX
still ADV
not PART
able ADJ
to PART
go VERB
back ADV
to ADP
work NOUN
. PUNCT
  SPACE
The DET
thing NOUN
that PRON
worries VERB
me PRON
> X
is AUX
the DET
movement NOUN
or CCONJ
" PUNCT
clunking VERB
" PUNCT
I PRON
feel VERB
and CCONJ
hear VERB
back ADV
there ADV
when ADV
I PRON
move VERB
> X
certain ADJ
ways NOUN
... PUNCT
  SPACE
I PRON
heard VERB
some DET
one NOUN
talking VERB
about ADP
the DET
rib NOUN
they PRON
broke VERB
> X
years NOUN
ago ADV
and CCONJ
that SCONJ
it PRON
still ADV
bothers VERB
them PRON
.. PUNCT
  SPACE
any DET
opinions?Your PROPN
doctor NOUN
is AUX
right ADJ
. PUNCT
It PRON
is AUX
best ADJ
to PART
do AUX
nothing PRON
, PUNCT
besides SCONJ
taking VERB
some DET
painmedication NOUN
initially ADV
. PUNCT
Some DET
patients NOUN
do AUX
n't PART
like VERB
this DET
and CCONJ
expect VERB
, PUNCT
or CCONJ
demand NOUN
, PUNCT
to PART
have AUX
something PRON
done VERB
. PUNCT
In ADP
these DET
cases NOUN
some DET
physicians NOUN
will AUX
" PUNCT
tape VERB
" PUNCT
the DET
patient NOUN
( PUNCT
put VERB
a DET
lot NOUN
of ADP
heavy ADJ
adhesive ADJ
tape NOUN
around ADP
the DET
chest NOUN
) PUNCT
, PUNCT
or CCONJ
prescribean VERB
elastic ADJ
binder NOUN
. PUNCT
All DET
this DET
does AUX
is AUX
make VERB
it PRON
harder ADJ
to ADP
breath NOUN
, PUNCT
but CCONJ
thepatient ADJ
does AUX
n't PART
feel VERB
cheated VERB
, PUNCT
because SCONJ
soemthing NOUN
is AUX
being AUX
done VERB
about ADP
theproblem PROPN
. PUNCT
Either DET
way NOUN
, PUNCT
the DET
end NOUN
results NOUN
are AUX
the DET
same.==================================Howard ADJ
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59079From NUM
: PUNCT
balick@nynexst.com X
( PUNCT
Daphne ADJ
Balick)Subject NUM
: PUNCT
Re ADP
: PUNCT
Altitude NOUN
adjustmentIn PROPN
article NOUN
< X
4159@mdavcr.mda.ca NUM
> X
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
writes:>I PRON
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
cities NOUN
> X
quite ADV
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000 NUM
> X
feet NOUN
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
Mexico PROPN
City PROPN
, PUNCT
Bogota PROPN
, PUNCT
La PROPN
Paz?>>Often PROPN
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
and CCONJ
> X
my PRON
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
very ADV
> X
dry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keep VERB
> X
away ADV
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol.>>Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there>(no X
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?>Is NOUN
there ADV
something PRON
else ADV
that PRON
I PRON
could AUX
do?---An VERB
unconventional ADJ
remedy NOUN
that PRON
you PRON
might AUX
try VERB
for ADP
altitude ADJ
sickness NOUN
in ADP
the DET
Andes PROPN
ischewing VERB
coca NOUN
leaves NOUN
or CCONJ
taking VERB
teas NOUN
made VERB
from ADP
coca NOUN
leaves NOUN
. PUNCT
You PRON
might AUX
notice VERB
thatmany NOUN
of ADP
the DET
natives NOUN
have AUX
wads NOUN
in ADP
their PRON
mouths NOUN
... PUNCT
the DET
tea NOUN
can AUX
be AUX
obtained VERB
in ADP
S.American ADJ
pharmacies NOUN
. PUNCT
This DET
remedy NOUN
alleviates VERB
some DET
of ADP
the DET
lightheadedness NOUN
anddizziness NOUN
- PUNCT
but CCONJ
do AUX
n't PART
try VERB
to PART
jog VERB
with ADP
it PRON
. PUNCT
I PRON
've AUX
tried VERB
this DET
when ADV
travelling VERB
andhiking VERB
in ADP
Peru PROPN
and CCONJ
Ecuador PROPN
. PUNCT
The DET
amount NOUN
of ADP
cocaine NOUN
you PRON
would AUX
ingest VERB
are AUX
too ADV
minuteto ADJ
cause VERB
any DET
highs NOUN
... PUNCT
Also ADV
it PRON
is AUX
a DET
good ADJ
idea NOUN
to PART
eat VERB
lightly ADV
and CCONJ
dress VERB
warm ADJ
while SCONJ
adjusting VERB
to ADP
high ADJ
altitudes NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59080From NUM
: PUNCT
pk115050@wvnvms.wvnet.eduSubject NOUN
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
My PRON
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
nomedical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed VERB
. PUNCT
My PRON
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigatetheir ADJ
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
etc X
... PUNCT
)Thank PUNCT
you PRON
, PUNCT
Dave PROPN
Carvellpk115050@wvnvms.wvnet.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59081Subject NOUN
: PUNCT
STARGARDTS PROPN
DISEASEFrom NOUN
: PUNCT
kmcvay@oneb.almanac.bc.ca PROPN
( PUNCT
Ken PROPN
Mcvay)Thanks PROPN
to ADP
aldridge@netcom.com X
, PUNCT
I PRON
now ADV
know VERB
a DET
bit NOUN
more ADV
about ADP
Stargardt'sdisease NOUN
, PUNCT
aka ADV
juvenile ADJ
macular ADJ
distrophy NOUN
, PUNCT
but CCONJ
I PRON
would AUX
like VERB
to PART
learn VERB
more ADJ
. PUNCT
First ADV
, PUNCT
what PRON
is AUX
the DET
general ADJ
prognosis NOUN
- PUNCT
is AUX
blindness NOUN
the DET
result?Second NOUN
, PUNCT
what PRON
treatments VERB
, PUNCT
if SCONJ
any DET
, PUNCT
are AUX
available?-- PROPN
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
- PUNCT
A PROPN
Salute PROPN
to ADP
That DET
Old PROPN
Frog PROPN
Hisse'f PROPN
, PUNCT
Ryugen PROPN
Fisher PROPN
      SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
SCO PROPN
XENIX PROPN
2.3.2 NUM
GT PROPN
   SPACE
Ladysmith PROPN
, PUNCT
British PROPN
Columbia PROPN
, PUNCT
CANADA PROPN
. PUNCT
Serving VERB
Central PROPN
Vancouver PROPN
Island PROPN
  SPACE
with ADP
public ADJ
access NOUN
UseNet PROPN
and CCONJ
Internet PROPN
Mail PROPN
- PUNCT
home NOUN
to ADP
the DET
Holocaust PROPN
AlmanacNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59082From NUM
: PUNCT
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Selective ADJ
Placeboron.roth@rose.com NOUN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
writes:|JB VERB
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes:|JB VERB
> X
  SPACE
|JB NOUN
> X
    SPACE
Ron PROPN
Roth PROPN
recommends VERB
: PUNCT
" PUNCT
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED VERB
through ADP
the|JB NOUN
> X
                          SPACE
proper ADJ
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
the DET
following: NOUN
... PUNCT
"|JB PUNCT
> X
                          SPACE
[ PUNCT
diet PROPN
omitted]|JB PROPN
> X
  SPACE
|JB NOUN
> PROPN
  SPACE
1 NUM
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
this DET
sounds VERB
suspiciously| PROPN
  SPACE
I PRON
'm AUX
glad ADJ
it PRON
caught VERB
your PRON
eye NOUN
. PUNCT
That DET
's AUX
the DET
purpose NOUN
of ADP
this DET
forum NOUN
to| PRON
educate NOUN
those DET
, PUNCT
eager ADJ
to PART
learn VERB
, PUNCT
about ADP
the DET
facts NOUN
of ADP
life NOUN
. PUNCT
That DET
phrase| PROPN
is AUX
used VERB
to PART
bridle VERB
the DET
frenzy NOUN
of ADP
all DET
the DET
would AUX
- PUNCT
be AUX
respondents NOUN
, PUNCT
who| NOUN
otherwise ADV
would AUX
feel VERB
being AUX
left VERB
out ADP
as SCONJ
the DET
proper ADJ
authorities NOUN
to PART
be| VERB
consulted VERB
on ADP
that DET
topic NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
means VERB
absolutely ADV
nothing PRON
. PUNCT
An DET
apt ADJ
description NOUN
of ADP
the DET
content NOUN
of ADP
just ADV
about ADP
all DET
ronroth NOUN
's PART
posts NOUN
todate ADJ
. PUNCT
  SPACE
At ADV
least ADV
there PRON
's AUX
entertainment NOUN
value NOUN
( PUNCT
though SCONJ
it PRON
isdiminishing).Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59083From NUM
: PUNCT
molnar@Bisco PROPN
. PUNCT
CAnet PROPN
. PUNCT
CA PROPN
( PUNCT
Tom PROPN
Molnar)Subject PROPN
: PUNCT
sudden ADJ
numbness NOUN
in ADP
armI PROPN
experienced VERB
a DET
sudden ADJ
numbness NOUN
in ADP
my PRON
left ADJ
arm NOUN
this DET
morning NOUN
. PUNCT
  SPACE
Just ADV
afterI PROPN
completed VERB
my PRON
4th ADJ
set NOUN
of ADP
deep ADJ
squats NOUN
. PUNCT
  SPACE
Today NOUN
was AUX
my PRON
weight NOUN
trainingday NOUN
and CCONJ
I PRON
was AUX
just ADV
beginning VERB
my PRON
routine NOUN
. PUNCT
  SPACE
All DET
of ADP
a ADV
sudden ADJ
at ADP
the DET
end NOUN
ofthe PROPN
4th NOUN
set VERB
my PRON
arm NOUN
felt VERB
like SCONJ
it PRON
had AUX
gone VERB
to PART
sleep VERB
. PUNCT
  SPACE
It PRON
was AUX
cold ADJ
, PUNCT
turned VERB
pale ADJ
, PUNCT
and CCONJ
lost VERB
60 NUM
% NOUN
of ADP
its PRON
strength NOUN
. PUNCT
  SPACE
The DET
weight NOUN
I PRON
used VERB
for ADP
squats NOUN
was AUX
n't PART
thatheavy NOUN
, PUNCT
I PRON
was AUX
working VERB
hard ADV
but CCONJ
not PART
at ADP
100 NUM
% NOUN
effort NOUN
. PUNCT
  SPACE
I PRON
waited VERB
for ADP
a DET
few ADJ
minutes NOUN
, PUNCT
trying VERB
to PART
shake VERB
the DET
arm NOUN
back ADV
to ADP
life NOUN
and CCONJ
then ADV
continued VERB
withchest ADJ
exercises NOUN
( PUNCT
flyes PROPN
) PUNCT
with ADP
lighter ADJ
dumbells NOUN
than SCONJ
I PRON
normally ADV
use VERB
. PUNCT
  SPACE
ButI PROPN
dropped VERB
the DET
left ADJ
dumbell NOUN
during ADP
the DET
first ADJ
set NOUN
, PUNCT
and CCONJ
experienced VERB
continuedarm ADJ
weakness NOUN
into ADP
the DET
second ADJ
. PUNCT
  SPACE
So ADV
I PRON
quit VERB
training VERB
and CCONJ
decided VERB
not PART
to PART
do AUX
myusual ADJ
hour NOUN
on ADP
the DET
ski NOUN
machine NOUN
either ADV
. PUNCT
  SPACE
I PRON
'll AUX
take VERB
it PRON
easy ADJ
for ADP
the DET
rest NOUN
ofthe ADJ
day NOUN
. PUNCT
My PRON
arm NOUN
is AUX
* PUNCT
still ADV
* PUNCT
somewhat ADV
numb ADJ
and CCONJ
significantly ADV
weaker ADJ
than SCONJ
normal ADJ
--my PROPN
hand NOUN
still ADV
tingles VERB
a DET
bit NOUN
down ADV
to ADP
the DET
thumb NOUN
. PUNCT
Color NOUN
has AUX
returned VERB
to ADP
normaland NOUN
it PRON
is AUX
no DET
longer ADV
cold ADJ
. PUNCT
Horrid ADJ
thoughts NOUN
of ADP
chunks NOUN
of ADP
plaque NOUN
blocking VERB
a DET
major ADJ
artery NOUN
course NOUN
throughmy VERB
brain NOUN
. PUNCT
  SPACE
I PRON
'm AUX
34 NUM
, PUNCT
vegetarian PROPN
, PUNCT
and CCONJ
pretty ADV
fit ADJ
from ADP
my PRON
daily ADJ
exerciseregimen NOUN
. PUNCT
  SPACE
So SCONJ
that DET
ca AUX
n't PART
be AUX
it PRON
. PUNCT
  SPACE
Could AUX
a DET
pinched ADJ
nerve NOUN
from ADP
the DET
barcause NOUN
these DET
symptoms NOUN
( PUNCT
I PRON
hope)?Has PROPN
this DET
happened VERB
to ADP
anyone PRON
else?Nothing VERB
like SCONJ
this DET
has AUX
ever ADV
happened VERB
to ADP
me PRON
before ADV
. PUNCT
  SPACE
Does AUX
it PRON
come VERB
with ADP
age?Thanks NOUN
, PUNCT
Tom-- PROPN
Tom PROPN
MolnarUnix PROPN
Systems PROPN
Group PROPN
, PUNCT
University PROPN
of ADP
Toronto PROPN
Computing PROPN
& CCONJ
Communications PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59084From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it PRON
? PUNCT
) PUNCT
   SPACE
> X
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
face NOUN
that SCONJ
there PRON
is AUX
no DET
   SPACE
> X
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
their PRON
safety NOUN
. PUNCT
   SPACE
> X
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as ADV
far ADV
as SCONJ
   SPACE
> X
I PRON
am AUX
concerned ADJ
. PUNCT
This DET
does AUX
n't PART
sound VERB
like SCONJ
Candida PROPN
Albicans PROPN
to ADP
me PRON
. PUNCT
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59085From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
Good ADJ
grief NOUN
again ADV
. PUNCT
Why ADV
the DET
anger NOUN
? PUNCT
  SPACE
I PRON
must AUX
have AUX
really ADV
touched VERB
a DET
raw ADJ
nerve NOUN
. PUNCT
Let VERB
's PRON
see VERB
: PUNCT
  SPACE
I PRON
had AUX
symptoms NOUN
that PRON
resisted VERB
all DET
other ADJ
treatments NOUN
. PUNCT
  SPACE
Sporanoxtotally ADV
alleviated VERB
them PRON
within ADP
one NUM
week NOUN
. PUNCT
  SPACE
Hmmm PROPN
, PUNCT
I PRON
must AUX
be AUX
psychotic ADJ
. PUNCT
  SPACE
Yesss!That PROPN
's PART
it PRON
- PUNCT
my PRON
illness NOUN
was AUX
all DET
in ADP
my PRON
mind NOUN
. PUNCT
  SPACE
Thanks INTJ
Steve PROPN
for ADP
your PRON
correctdiagnosis NOUN
- PUNCT
you PRON
must AUX
have AUX
a DET
lot NOUN
of ADP
experience NOUN
being AUX
out ADV
there ADV
in ADP
trenches NOUN
, PUNCT
treating VERB
hundreds NOUN
of ADP
patients NOUN
a DET
week NOUN
. PUNCT
  SPACE
Thank VERB
you PRON
. PUNCT
  SPACE
I PRON
'm AUX
forever ADV
in ADP
yourdebt NOUN
. PUNCT
Jon(oops PROPN
, PUNCT
got VERB
ta PART
run VERB
, PUNCT
the DET
men NOUN
in ADP
white ADJ
coats NOUN
are AUX
ready ADJ
to PART
take VERB
me PRON
away ADV
, PUNCT
haha INTJ
, PUNCT
to ADP
the DET
happy ADJ
home NOUN
, PUNCT
where ADV
I PRON
can AUX
go VERB
twiddle ADP
my PRON
thumbs NOUN
, PUNCT
basket NOUN
weave NOUN
, PUNCT
andmoan ADV
about ADP
my PRON
sinuses.)-- PROPN
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59086From NUM
: PUNCT
lunger@helix.enet.dec.com PROPN
( PUNCT
Dave PROPN
Lunger)Subject PROPN
: PUNCT
Modified VERB
sense NOUN
of ADP
taste NOUN
in ADP
Cancer NOUN
pt?What PRON
does AUX
a DET
lack NOUN
of ADP
taste NOUN
of ADP
foods NOUN
, PUNCT
or CCONJ
a DET
sense NOUN
of ADP
taste NOUN
that PRON
seems VERB
" PUNCT
off"when ADV
eating VERB
foods NOUN
in ADP
someone PRON
who PRON
has AUX
cancer NOUN
mean VERB
? PUNCT
What PRON
are AUX
the DET
possiblecauses NOUN
of ADP
this DET
? PUNCT
Why ADV
does AUX
it PRON
happen?Pt PROPN
has AUX
Stage NOUN
II PROPN
breast NOUN
cancer NOUN
, PUNCT
and CCONJ
is AUX
taking VERB
tamoxifin NOUN
. PUNCT
Also ADV
has AUX
Stage NOUN
IVlung PROPN
cancer NOUN
with ADP
known VERB
CNA NOUN
metastasis NOUN
, PUNCT
and CCONJ
is AUX
taking VERB
klonopin NOUN
( PUNCT
also ADV
hadcranial ADJ
radiation NOUN
treatments).Thanks![not ADP
a DET
doctor NOUN
, PUNCT
but CCONJ
trying VERB
to PART
understand VERB
family NOUN
member NOUN
's PART
illness]Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59087From NUM
: PUNCT
mryan@stsci.eduSubject NUM
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?Am NOUN
I PRON
justified VERB
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor?Last PROPN
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife NOUN
. PUNCT
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
clinic NOUN
was AUX
open ADJ
till SCONJ
6:00 NUM
pm NOUN
. PUNCT
  SPACE
The DET
receptionist NOUN
went VERB
to ADP
the DET
back NOUN
and CCONJ
told VERB
the DET
doctor NOUN
that SCONJ
we PRON
were AUX
there ADV
, PUNCT
and CCONJ
came VERB
back ADV
and CCONJ
told VERB
us PRON
the DET
doctor NOUN
would AUX
not PART
see VERB
us PRON
because SCONJ
she PRON
had AUX
someplace NOUN
to PART
go VERB
at ADP
6:00 NUM
and CCONJ
did AUX
not PART
want VERB
to PART
be AUX
delayed VERB
here ADV
. PUNCT
  SPACE
During ADP
the DET
next ADJ
few ADJ
minutes NOUN
, PUNCT
in ADP
response NOUN
to ADP
my PRON
questions NOUN
, PUNCT
with ADP
several ADJ
trips NOUN
to ADP
the DET
back NOUN
room NOUN
, PUNCT
the DET
receptionist NOUN
told VERB
me PRON
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
was AUX
doing VERB
paperwork NOUN
in ADP
the DET
back NOUN
, PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
look VERB
at ADP
his PRON
finger NOUN
to PART
advise VERB
us PRON
on ADP
going VERB
	   SPACE
to ADP
the DET
emergency NOUN
room NOUN
; PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
speak VERB
to ADP
me PRON
; PUNCT
	 SPACE
- PUNCT
she PRON
would AUX
not PART
tell VERB
me PRON
the DET
doctor NOUN
's PART
name NOUN
, PUNCT
or CCONJ
her PRON
own ADJ
name NOUN
; PUNCT
	 SPACE
- PUNCT
when ADV
asked VERB
who PRON
is AUX
in ADP
charge NOUN
of ADP
the DET
clinic NOUN
, PUNCT
she PRON
said VERB
" PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
"I NOUN
realize VERB
that SCONJ
a DET
private ADJ
clinic NOUN
is AUX
not PART
the DET
same ADJ
as SCONJ
an DET
emergency NOUN
room NOUN
, PUNCT
butI PROPN
was AUX
quite ADV
angry ADJ
at ADP
being AUX
turned VERB
away ADV
because SCONJ
the DET
doctor NOUN
did AUX
not PART
want VERB
tobe NOUN
bothered VERB
. PUNCT
  SPACE
My PRON
son NOUN
did AUX
get AUX
three NUM
stitches NOUN
at ADP
the DET
emergency NOUN
room NOUN
. PUNCT
  SPACE
I PRON
'm AUX
still ADV
trying VERB
to PART
find VERB
out ADP
who PRON
is AUX
in ADP
charge NOUN
of ADP
that DET
clinic NOUN
so SCONJ
I PRON
can AUX
write VERB
them PRON
a DET
letter NOUN
. PUNCT
   SPACE
We PRON
will AUX
certainly ADV
never ADV
set VERB
foot NOUN
in ADP
that DET
clinic NOUN
again.-------------------------------------------------------------------------Mary NOUN
Ryan PROPN
				 SPACE
mryan@stsci.eduSpace PROPN
Telescope PROPN
Science PROPN
InstituteBaltimore PROPN
, PUNCT
MarylandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59088From NUM
: PUNCT
billc@col.hp.com X
( PUNCT
Bill PROPN
Claussen)Subject NUM
: PUNCT
RE ADP
: PUNCT
  SPACE
alt.psychoactivesFYI...I PROPN
just ADV
posted VERB
this DET
on ADP
alt.psychoactives PROPN
as SCONJ
a DET
response NOUN
towhat ADP
the DET
group NOUN
is AUX
for ADP
...... PUNCT
A DET
note NOUN
to ADP
the DET
users NOUN
of ADP
alt.psychoactives....This DET
group NOUN
was AUX
originally ADV
a DET
takeoff NOUN
from ADP
sci.med VERB
. PUNCT
  SPACE
The DET
reason NOUN
forthe NOUN
formation NOUN
of ADP
this DET
group NOUN
was AUX
to PART
discuss VERB
prescription NOUN
psychoactivedrugs NOUN
.... PUNCT
such ADJ
as SCONJ
antidepressents(tri NOUN
- PUNCT
cyclics NOUN
, PUNCT
Prozac PROPN
, PUNCT
Lithium PROPN
, PUNCT
etc),antipsychotics(Melleral(sp X
? PUNCT
) PUNCT
, PUNCT
etc X
) PUNCT
, PUNCT
OCD PROPN
drugs(Anafranil NOUN
, PUNCT
etc X
) PUNCT
, PUNCT
andso NOUN
on ADP
and CCONJ
so ADV
forth ADV
. PUNCT
  SPACE
It PRON
did AUX
n't PART
take VERB
long ADV
for ADP
this DET
group NOUN
to ADP
degenerateinto PROPN
a DET
psudo NOUN
alt.drugs PROPN
atmosphere NOUN
. PUNCT
  SPACE
That DET
's AUX
to ADP
bad ADJ
, PUNCT
for ADP
most ADJ
of ADP
theserious ADJ
folks NOUN
that PRON
wanted VERB
to PART
start VERB
this DET
group NOUN
in ADP
the DET
first ADJ
place NOUN
haveleft VERB
and CCONJ
gone VERB
back ADV
to ADP
sci.med VERB
, PUNCT
where ADV
you PRON
have AUX
to PART
cypher VERB
throughhundreds NOUN
of ADP
unrelated ADJ
articles NOUN
to PART
find VERB
psychoactive ADJ
data NOUN
. PUNCT
It PRON
was AUX
also ADV
to PART
discuss VERB
real ADJ
- PUNCT
life NOUN
experiences NOUN
and CCONJ
side NOUN
effects NOUN
ofthe VERB
above ADV
mentioned VERB
. PUNCT
Oh INTJ
well INTJ
, PUNCT
I PRON
had AUX
unsubscribed VERB
to ADP
this DET
group NOUN
for ADP
some DET
time NOUN
, PUNCT
and CCONJ
I PRON
decidedto VERB
check VERB
it PRON
today NOUN
to PART
see VERB
if SCONJ
anything PRON
had AUX
changed VERB
.... PUNCT
nope INTJ
.... PUNCT
same ADJ
oldnine NOUN
or CCONJ
ten NUM
crap ADJ
articles NOUN
that SCONJ
this DET
group NOUN
was AUX
never ADV
intended VERB
for ADP
. PUNCT
I PRON
think VERB
it PRON
is AUX
very ADV
hard ADJ
to PART
have AUX
a DET
meaningfull ADJ
group NOUN
without ADP
itbeing VERB
moderated VERB
... PUNCT
too ADV
bad ADJ
. PUNCT
Oh INTJ
well INTJ
, PUNCT
obviously ADV
, PUNCT
no DET
one NOUN
really ADV
cares VERB
. PUNCT
Bill PROPN
ClaussenWould PROPN
anyone PRON
be AUX
interested ADJ
in ADP
starting VERB
a DET
similar ADJ
moderated VERB
group?Bill PROPN
ClaussenNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59089From NUM
: PUNCT
billc@col.hp.com X
( PUNCT
Bill PROPN
Claussen)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?Report NOUN
them PRON
to ADP
your PRON
local ADJ
BBB PROPN
( PUNCT
Better PROPN
Business PROPN
Bureau).Bill PROPN
ClaussenNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59090From NUM
: PUNCT
ray@engr PROPN
. PUNCT
LaTech.edu PROPN
( PUNCT
Bill PROPN
Ray)Subject VERB
: PUNCT
Re ADP
: PUNCT
Acutane PROPN
, PUNCT
Fibromyalgia PROPN
Syndrome PROPN
and CCONJ
CFSDaniel PROPN
Prince PROPN
( PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
... PUNCT
I PRON
think VERB
they PRON
should AUX
rename VERB
Waco PROPN
TX PROPN
to ADP
Wacko PROPN
TX!I PROPN
know VERB
it PRON
is AUX
just ADV
a DET
joke NOUN
, PUNCT
but CCONJ
please INTJ
remember VERB
: PUNCT
the DET
people NOUN
of ADP
Wacodid PROPN
not PART
ask VERB
David PROPN
Koresh PROPN
to PART
be AUX
a DET
lunatic NOUN
there ADV
, PUNCT
he PRON
just ADV
happened VERB
. PUNCT
Waco NOUN
is AUX
a DET
lovely ADJ
town NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
someone PRON
living VERB
in ADP
the DET
homeof NOUN
flakes NOUN
and CCONJ
nut NOUN
would AUX
be AUX
more ADV
sensitive ADJ
: PUNCT
-)Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59091From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
> X
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
face NOUN
that SCONJ
there PRON
is AUX
no DET
> X
   SPACE
> X
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
their PRON
safety NOUN
. PUNCT
> X
   SPACE
> X
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as ADV
far ADV
as SCONJ
> X
   SPACE
> X
I PRON
am AUX
concerned.>>This PROPN
does AUX
n't PART
sound VERB
like SCONJ
Candida PROPN
Albicans PROPN
to ADP
me PRON
. PUNCT
No INTJ
, PUNCT
just ADV
a DET
little ADJ
anger NOUN
. PUNCT
  SPACE
Normally ADV
I PRON
do AUX
n't PART
rip VERB
people NOUN
's PART
lips NOUN
off ADP
, PUNCT
exceptwhen ADV
my PRON
candida PROPN
has AUX
overcolonized VERB
and CCONJ
I PRON
become VERB
: PUNCT
  SPACE
" PUNCT
Fungus PROPN
Man PROPN
" PUNCT
! PUNCT
  SPACE
: PUNCT
^)Jon-- PUNCT
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59092From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Thrush PROPN
( PUNCT
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)))In NOUN
article NOUN
< X
21APR199308571323@ucsvax.sdsu.edu X
> X
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M. PROPN
) PUNCT
writes:>Dyer PROPN
is AUX
beyond ADP
rude ADJ
. PUNCT
Yeah INTJ
, PUNCT
yeah INTJ
, PUNCT
yeah INTJ
. PUNCT
  SPACE
I PRON
did AUX
n't PART
threaten VERB
to PART
rip VERB
your PRON
lips NOUN
off ADP
, PUNCT
did AUX
I?Snort.>There PROPN
have AUX
been AUX
and CCONJ
always ADV
will AUX
be AUX
people NOUN
who PRON
are AUX
blinded VERB
by ADP
their PRON
own ADJ
> X
knowledge NOUN
and CCONJ
unopen NOUN
to ADP
anything PRON
that PRON
is AUX
n't PART
already ADV
established VERB
. PUNCT
Given VERB
what PRON
> X
the DET
medical ADJ
community NOUN
does AUX
n't PART
know VERB
, PUNCT
I PRON
'm AUX
surprised ADJ
that SCONJ
he PRON
has AUX
this DET
outlook NOUN
. PUNCT
Duh.>For VERB
the DET
record NOUN
, PUNCT
I PRON
have AUX
had VERB
several ADJ
outbreaks NOUN
of ADP
thrush NOUN
during ADP
the DET
several ADJ
> X
past ADP
few ADJ
years NOUN
, PUNCT
with ADP
no DET
indication NOUN
of ADP
immunosuppression NOUN
or CCONJ
nutritional ADJ
> NOUN
deficiencies NOUN
. PUNCT
I PRON
had AUX
not PART
taken VERB
any DET
antobiotics NOUN
. PUNCT
Listen VERB
: PUNCT
thrush PROPN
is AUX
a DET
recognized VERB
clinical ADJ
syndrome NOUN
with ADP
definitecharacteristics NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
thrush ADJ
, PUNCT
you PRON
have AUX
thrush ADJ
, PUNCT
because SCONJ
you PRON
cansee VERB
the DET
lesions NOUN
and CCONJ
do AUX
a DET
culture NOUN
and CCONJ
when ADV
you PRON
treat VERB
it PRON
, PUNCT
it PRON
generallyresponds VERB
well ADV
, PUNCT
if SCONJ
you PRON
're AUX
not PART
otherwise ADV
immunocompromised VERB
. PUNCT
  SPACE
Noring'sanal ADJ
- PUNCT
retentive ADJ
idee NOUN
fixe NOUN
on ADP
having VERB
a DET
fungal ADJ
infection NOUN
in ADP
his PRON
sinusesis NOUN
not PART
even ADV
in ADP
the DET
same ADJ
category NOUN
here ADV
, PUNCT
nor CCONJ
are AUX
these DET
walking VERB
neurasthenicswho PROPN
are AUX
convinced ADJ
they PRON
have AUX
" PUNCT
candida PROPN
" PUNCT
from ADP
reading VERB
a DET
quack NOUN
book.>My PUNCT
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous:>After PROPN
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased.>When ADV
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
> X
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then ADV
. PUNCT
So?-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59093From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Need PROPN
Reference NOUN
: PUNCT
  SPACE
Multiple PROPN
Personalities PROPN
Disorders NOUN
and CCONJ
AllergiesI PUNCT
heard VERB
third ADJ
- PUNCT
hand NOUN
( PUNCT
not PART
the DET
best ADJ
form NOUN
of ADP
information NOUN
) PUNCT
that SCONJ
there PRON
was AUX
recentlypublished VERB
results NOUN
of ADP
a DET
study NOUN
on ADP
Multiple PROPN
- PUNCT
Personality PROPN
- PUNCT
Disorder PROPN
Syndromepatients NOUN
revealing VERB
some DET
interesting ADJ
clues NOUN
that PRON
the DET
root NOUN
cause NOUN
of ADP
allergy NOUN
mayhave NOUN
a DET
psychological ADJ
trigger NOUN
or CCONJ
basis NOUN
. PUNCT
  SPACE
What PRON
I PRON
heard VERB
about ADP
this DET
study NOUN
was AUX
thatin NOUN
one NUM
' PUNCT
personality NOUN
' PUNCT
, PUNCT
a DET
MPDS PROPN
patient NOUN
exhibited VERB
no DET
observable ADJ
or CCONJ
clinical ADJ
signsof ADJ
inhalant ADJ
allergy NOUN
( PUNCT
scratch NOUN
tests NOUN
were AUX
used VERB
, PUNCT
according VERB
to ADP
what PRON
I PRON
heard),while VERB
in ADP
other ADJ
personalities NOUN
they PRON
showed VERB
obvious ADJ
allergy NOUN
symptoms NOUN
, PUNCT
includingtesting VERB
a DET
full ADJ
+ SYM
+ SYM
+ CCONJ
+ CCONJ
on ADP
scratch NOUN
tests NOUN
for ADP
particular ADJ
inhalants NOUN
. PUNCT
If SCONJ
this DET
is AUX
true ADJ
, PUNCT
it PRON
is AUX
truly ADV
fascinating ADJ
. PUNCT
But CCONJ
, PUNCT
I PRON
'd AUX
like VERB
to PART
know VERB
if SCONJ
this DET
study NOUN
was AUX
ever ADV
done VERB
, PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
what PRON
the DET
studyreally ADV
showed VERB
, PUNCT
and CCONJ
where ADV
the DET
study NOUN
is AUX
published VERB
. PUNCT
  SPACE
Any DET
help NOUN
out ADP
there?Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59094From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr21.091844.4035@omen NOUN
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19687@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>>>Can AUX
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>the DET
lost ADJ
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>exceeds PROPN
the DET
starting NOUN
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>is ADV
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>Not NOUN
one NUM
, PUNCT
but CCONJ
two:>>Obesity NUM
in ADP
Europe PROPN
88,>proceedings NUM
of ADP
the DET
1st ADJ
European ADJ
Congress PROPN
on ADP
Obesity>>Annals NOUN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987 NUM
> X
Hmmm PROPN
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressivebehavior NOUN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)BrianNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59095From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes:>>Many NUM
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the DET
> X
literature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains VERB
> X
tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might AUX
> X
potentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it.>Check PRON
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested ADJ
. PUNCT
Years NOUN
ago ADV
when ADV
I PRON
was AUX
an DET
intern NOUN
, PUNCT
an DET
obese ADJ
young ADJ
woman NOUN
was AUX
brought VERB
intothe NOUN
ER PROPN
comatose NOUN
after ADP
having VERB
been AUX
reported VERB
to PART
have AUX
grand PROPN
mal PROPN
seizureswhy ADV
attending VERB
a DET
" PUNCT
corn NOUN
festival NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
pumped VERB
her PRON
stomach NOUN
and CCONJ
obtainedwhat NOUN
seemed VERB
like SCONJ
a DET
couple NOUN
of ADP
liters NOUN
of ADP
corn NOUN
, PUNCT
much ADJ
of ADP
it PRON
intact ADJ
kernals NOUN
. PUNCT
  SPACE
After ADP
a DET
few ADJ
hours NOUN
she PRON
woke VERB
up ADP
and CCONJ
was AUX
fine ADJ
. PUNCT
  SPACE
I PRON
was AUX
tempted VERB
to PART
sign VERB
her PRON
out ADP
as"acute PUNCT
corn NOUN
intoxication NOUN
. PUNCT
"-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59096From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
1993Apr21.143910.5826@wvnvms.wvnet.edu NUM
> X
pk115050@wvnvms.wvnet.edu ADJ
writes:>My PROPN
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
no DET
> X
medical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed.>>My NUM
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigate VERB
> X
their PRON
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
Morphine PROPN
or CCONJ
demerol NOUN
is AUX
about ADP
the DET
only ADJ
effective ADJ
way NOUN
of ADP
stopping VERB
painthat ADV
severe ADJ
. PUNCT
  SPACE
Obviously ADV
, PUNCT
she PRON
'll AUX
need VERB
a DET
prescription NOUN
to PART
get AUX
such ADJ
drugs NOUN
. PUNCT
Can't ADV
she PRON
go VERB
to ADP
the DET
county NOUN
hospital NOUN
or CCONJ
something?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59097From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
GETTING VERB
AIDS PROPN
FROM ADP
ACUPUNCTURE PROPN
NEEDLES PROPN
   SPACE
someone PRON
wrote VERB
in ADP
expressing VERB
concern NOUN
about ADP
getting VERB
AIDS PROPN
from ADP
acupuncture NOUN
   SPACE
needles NOUN
..... PUNCT
Unless SCONJ
your PRON
friend NOUN
is AUX
sharing VERB
fluids NOUN
with ADP
their PRON
acupuncturist NOUN
who PRON
               SPACE
themselves PRON
has AUX
AIDS PROPN
.. PUNCT
it PRON
is AUX
unlikely ADJ
( PUNCT
not PART
impossible ADJ
) PUNCT
they PRON
will AUX
get AUX
AIDS PROPN
         SPACE
from ADP
acupuncture NOUN
needles NOUN
. PUNCT
Generally ADV
, PUNCT
even ADV
if SCONJ
accidently ADV
inoculated VERB
, PUNCT
the DET
normalimmune ADJ
response NOUN
should AUX
be AUX
enough ADJ
to PART
effectively ADV
handle VERB
the DET
minimal ADJ
contaminant NOUN
involved VERB
with ADP
acupuncture NOUN
needle NOUN
insertion NOUN
. PUNCT
Most ADJ
acupuncturists NOUN
use VERB
disposable ADJ
needles NOUN
... PUNCT
use VERB
once ADV
and CCONJ
throw VERB
away ADV
. PUNCT
They PRON
      SPACE
do AUX
this DET
because SCONJ
you PRON
are AUX
not PART
the DET
only ADJ
one NUM
concerned VERB
about ADP
transmission NOUN
of ADP
diseases NOUN
via ADP
this DET
route NOUN
... PUNCT
so ADV
it PRON
's AUX
good ADJ
business NOUN
to PART
advertise VERB
" PUNCT
disposable ADJ
needlesused ADJ
here ADV
. PUNCT
" PUNCT
These DET
needles NOUN
tend VERB
to PART
be AUX
of ADP
a DET
lower ADJ
quality NOUN
however ADV
, PUNCT
being AUX
poorly ADV
manufactured VERB
and CCONJ
too ADV
" PUNCT
sharp ADJ
" PUNCT
in ADP
my PRON
opinion NOUN
. PUNCT
They PRON
tend VERB
to PART
snag VERB
bloodvessels NOUN
on ADP
insertion NOUN
compared VERB
to ADP
higher ADJ
quality NOUN
needles NOUN
. PUNCT
                                                                        SPACE
If SCONJ
I PRON
choose VERB
to PART
use VERB
acupuncture NOUN
for ADP
a DET
given VERB
complaint NOUN
, PUNCT
that DET
patient NOUN
will AUX
get AUX
their PRON
own ADJ
set NOUN
of ADP
new ADJ
needles NOUN
which PRON
are AUX
sterilized VERB
between ADP
treatments NOUN
. PUNCT
      SPACE
The DET
risk NOUN
here ADV
for ADP
hepatitis PROPN
, PUNCT
HIV PROPN
, PUNCT
etc X
. PUNCT
transmission NOUN
is AUX
that SCONJ
I PRON
could AUX
mistakenly ADV
use VERB
an DET
infected ADJ
persons NOUN
needles NOUN
accidently ADV
on ADP
the DET
wrong ADJ
              SPACE
patient NOUN
... PUNCT
but CCONJ
clear ADJ
labelling NOUN
and CCONJ
paying VERB
attention NOUN
all DET
but CCONJ
eliminates VERB
this DET
risk NOUN
. PUNCT
Better ADJ
quality NOUN
needles NOUN
tend VERB
to PART
" PUNCT
slide VERB
" PUNCT
past ADJ
vessels NOUN
and CCONJ
            SPACE
nerves NOUN
avoiding VERB
unpleasant ADJ
painful ADJ
snags NOUN
.. PUNCT
and CCONJ
hematomas NOUN
... PUNCT
so CCONJ
I PRON
use VERB
them PRON
. PUNCT
                        SPACE
Acupuncture PROPN
needles NOUN
come VERB
in ADP
many ADJ
lengths NOUN
and CCONJ
thicknesses NOUN
... PUNCT
but CCONJ
they PRON
are AUX
all DET
solid ADJ
when ADV
compared VERB
to ADP
their PRON
injection NOUN
- PUNCT
style NOUN
cousins NOUN
. PUNCT
In ADP
China PROPN
, PUNCT
herbal ADJ
solutionsand NOUN
western ADJ
pharmaceuticals NOUN
are AUX
occasionally ADV
injected VERB
into ADP
meridian ADJ
points NOUN
purported VERB
to PART
have AUX
TCM PROPN
physiologic ADJ
effects NOUN
and CCONJ
so ADV
require VERB
the DET
same ADJ
hollow ADJ
needles NOUN
used VERB
for ADP
injecting VERB
fluid ADJ
medicine NOUN
. PUNCT
This DET
means VERB
... PUNCT
thinkingtiny PROPN
... PUNCT
that SCONJ
a DET
samll NOUN
amount NOUN
of ADP
tissue NOUN
, PUNCT
the DET
diameter NOUN
of ADP
the DET
needle NOUN
bore NOUN
, PUNCT
will AUX
be AUX
injected VERB
into ADP
the DET
body NOUN
as SCONJ
it PRON
would AUX
  SPACE
be AUX
in ADP
a DET
typical ADJ
" PUNCT
shot NOUN
. PUNCT
" PUNCT
when ADV
the DET
skin NOUN
is AUX
puntured VERB
. PUNCT
On ADP
the DET
other ADJ
hand NOUN
when ADV
the DET
solid ADJ
acupuncture NOUN
needle NOUN
is AUX
inserted VERB
, PUNCT
the DET
skin NOUN
tends VERB
to PART
" PUNCT
squeeze VERB
" PUNCT
the DET
needle NOUN
from ADP
the DET
tip NOUN
to ADP
the DET
level NOUN
of ADP
insertion NOUN
such ADJ
that SCONJ
any DET
' PUNCT
cooties NOUN
' PUNCT
that PRON
have AUX
n't PART
been AUX
schmeared VERB
away ADP
with ADP
alcohol NOUN
before ADP
insertion NOUN
, PUNCT
tend VERB
to PART
remain VERB
on ADP
the DET
surface NOUN
of ADP
the DET
skin NOUN
minimizing VERB
invasion NOUN
from ADP
the DET
exterior NOUN
. PUNCT
Of ADV
course ADV
in ADP
TCM PROPN
... PUNCT
the DET
body NOUN
's PART
exterior NOUN
is AUX
protected VERB
by ADP
the DET
Wei PROPN
( PUNCT
Protective PROPN
) PUNCT
Qi INTJ
.. PUNCT
so ADV
infection NOUN
is AUX
unlikely ADJ
.... PUNCT
or CCONJ
in ADP
other ADJ
words NOUN
... PUNCT
there PRON
is AUX
a DET
normal ADJ
inflammatory ADJ
and CCONJ
immune ADJ
response NOUN
that SCONJ
accompanies VERB
tissue NOUN
damage NOUN
incurred VERB
at ADP
the DET
puncture NOUN
site NOUN
. PUNCT
While SCONJ
I PRON
'm AUX
fairly ADV
certain ADJ
your PRON
friend NOUN
will AUX
not PART
have AUX
a DET
transferable ADJ
disease NOUN
transmitted VERB
to ADP
them PRON
via ADP
acupuncture NOUN
needle NOUN
insertion NOUN
, PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
for ADP
what PRON
complaint NOUN
they PRON
have AUX
consulted VERB
the DET
acupuncturist NOUN
... PUNCT
not PART
to PART
know VERB
  SPACE
if SCONJ
it PRON
would AUX
be AUX
harmful ADJ
.. PUNCT
but CCONJ
to PART
know VERB
if SCONJ
it PRON
would AUX
be AUX
helpful ADJ
. PUNCT
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.edu PROPN
                                                                                                      SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59098From NUM
: PUNCT
E.J. PROPN
Draper PROPN
< X
draper@odin.mda.uth.tmc.edu>Subject X
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?In PROPN
article NOUN
< X
9551@blue.cis.pitt.edu NUM
> X
Kenneth PROPN
Gilbert PROPN
, PUNCT
kxgst1+@pitt.eduwrites:>This PROPN
is AUX
one NUM
of ADP
those DET
sticky ADJ
areas NOUN
of ADP
medicine NOUN
where ADV
battles NOUN
frequently ADV
> X
rage NOUN
. PUNCT
  SPACE
With ADP
respect NOUN
to ADP
your PRON
OB NOUN
, PUNCT
I PRON
suspect VERB
that SCONJ
she PRON
has AUX
been AUX
certified VERB
in ADP
> NUM
ultrasound ADJ
diagnostics NOUN
, PUNCT
and CCONJ
is AUX
thus ADV
allowed VERB
to PART
use VERB
it PRON
and CCONJ
bill NOUN
for ADP
its PRON
> X
use NOUN
. PUNCT
  SPACE
Many ADJ
cardiologists NOUN
also ADV
use VERB
ultrasound NOUN
( PUNCT
echocardiography NOUN
) PUNCT
, PUNCT
and CCONJ
are AUX
> X
in ADP
fact NOUN
considered VERB
by ADP
many ADJ
to PART
be AUX
the DET
' PUNCT
experts NOUN
' PUNCT
. PUNCT
  SPACE
I PRON
am AUX
not PART
sure ADJ
where ADV
OBs NOUN
> X
stand VERB
in ADP
this DET
regard NOUN
, PUNCT
but CCONJ
I PRON
suspect VERB
that SCONJ
they PRON
are AUX
at ADP
least ADJ
as ADV
good ADJ
as SCONJ
the DET
> NOUN
radioligists NOUN
( PUNCT
flame ADJ
- PUNCT
retardant NOUN
suit NOUN
ready).If NOUN
it PRON
were AUX
my PRON
wife NOUN
, PUNCT
I PRON
would AUX
insist VERB
that SCONJ
a DET
radiologist NOUN
be AUX
involved VERB
in ADP
theprocess NOUN
. PUNCT
  SPACE
Radiologist NOUN
are AUX
intensively ADV
trained VERB
in ADP
the DET
process NOUN
ofinterpreting VERB
diagnostic ADJ
imaging NOUN
data NOUN
and CCONJ
are AUX
aware ADJ
of ADP
many ADJ
things NOUN
thatother ADP
physicians NOUN
are AUX
n't PART
aware ADJ
of ADP
. PUNCT
  SPACE
Would AUX
you PRON
want VERB
a DET
radiologist NOUN
todeliver VERB
your PRON
baby NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
would AUX
n't PART
, PUNCT
then ADV
why ADV
would AUX
you PRON
want VERB
a DET
OB PROPN
/ SYM
GYN PROPN
toread VERB
your PRON
ultrasound NOUN
study?In PROPN
my PRON
opinion NOUN
the DET
process NOUN
should AUX
involve VERB
a DET
OB PROPN
/ SYM
GYN PROPN
and CCONJ
a DET
radiologist NOUN
. PUNCT
      SPACE
|E|J- PUNCT
  SPACE
ED PROPN
DRAPER PROPN
rEpar|D|<- PROPN
  SPACE
Radiologic PROPN
/ SYM
Pathologic PROPN
Institute PROPN
             SPACE
The DET
University PROPN
of ADP
Texas PROPN
M.D. PROPN
Anderson PROPN
Cancer PROPN
Center PROPN
             SPACE
draper@odin.mda.uth.tmc.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59099From NUM
: PUNCT
mrl@pfc.mit.edu PROPN
( PUNCT
Mark PROPN
London)Subject PROPN
: PUNCT
Corneal ADJ
erosion NOUN
/ SYM
abrasions NOUN
. PUNCT
For ADP
several ADJ
years NOUN
I PRON
have AUX
been AUX
dealing VERB
with ADP
reccurring VERB
corneal ADJ
  SPACE
erosion NOUN
. PUNCT
    SPACE
Theredoes NOUN
  SPACE
not PART
  SPACE
seem VERB
  SPACE
to PART
be AUX
much ADV
known VERB
about ADP
the DET
cause NOUN
of ADP
such DET
a DET
problem NOUN
. PUNCT
  SPACE
My PRON
currentepisode NOUN
is AUX
pretty ADV
bad ADJ
since SCONJ
it PRON
is AUX
located VERB
in ADP
the DET
middle NOUN
of ADP
the DET
cornea NOUN
. PUNCT
  SPACE
If SCONJ
  SPACE
it'sbad X
  SPACE
enough ADV
, PUNCT
the DET
usual ADJ
treatment NOUN
for ADP
it PRON
is AUX
puncture NOUN
therapy NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
my PRON
doctorthis ADJ
time NOUN
is AUX
trying VERB
to PART
let VERB
it PRON
heal VERB
by ADP
  SPACE
itself PRON
  SPACE
by ADP
  SPACE
putting VERB
  SPACE
a DET
  SPACE
contact NOUN
  SPACE
lens PROPN
  SPACE
toprotect VERB
the DET
area NOUN
. PUNCT
  SPACE
Apparently ADV
the DET
problem NOUN
is AUX
not PART
that ADV
common ADJ
, PUNCT
but CCONJ
I PRON
'd AUX
be AUX
curiousif ADP
anyone PRON
else ADV
out ADV
there ADV
has AUX
a DET
similar ADJ
problem NOUN
, PUNCT
perhaps ADV
to PART
see VERB
if SCONJ
a DET
cause NOUN
can AUX
befound VERB
. PUNCT
Mark PROPN
LondonMRL@NERUS.PFC.MIT.EDUNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59100From NUM
: PUNCT
russ@pmafire.inel.gov PROPN
( PUNCT
Russ PROPN
Brown)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Altitude NOUN
adjustmentIn PROPN
article NOUN
< X
4159@mdavcr.mda.ca NUM
> X
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
writes:>I PRON
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
cities NOUN
> X
quite ADV
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000 NUM
> X
feet NOUN
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
Mexico PROPN
City PROPN
, PUNCT
Bogota PROPN
, PUNCT
La PROPN
Paz?>>Often PROPN
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
and CCONJ
> X
my PRON
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
very ADV
> X
dry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keep VERB
> X
away ADV
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol.>>Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there>(no X
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?>Is NOUN
there ADV
something PRON
else ADV
that PRON
I PRON
could AUX
do?Go SYM
three NUM
days NOUN
early ADV
. PUNCT
  SPACE
Preliminary ADJ
acclimatization NOUN
takes VERB
3 NUM
- SYM
4 NUM
days NOUN
. PUNCT
  SPACE
Ittakes ADJ
weeks NOUN
or CCONJ
months NOUN
for ADP
full ADJ
acclimatization NOUN
. PUNCT
  SPACE
Could AUX
you PRON
beexperiencing VERB
some DET
jet NOUN
lag NOUN
, PUNCT
too?Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59101From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>There PROPN
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.>There PROPN
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
and CCONJ
> X
published VERB
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic ADJ
skeptics NOUN
> X
who PRON
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used VERB
. PUNCT
No INTJ
, PUNCT
there PRON
's AUX
no DET
evidence NOUN
that PRON
would AUX
convince VERB
any DET
but SCONJ
the DET
most ADV
credulous ADJ
. PUNCT
The DET
" PUNCT
evidence NOUN
" PUNCT
is AUX
identical ADJ
to ADP
the DET
sort NOUN
of ADP
evidence NOUN
that PRON
has AUX
beenused VERB
to PART
justify VERB
all DET
sorts NOUN
of ADP
quack NOUN
treatments NOUN
for ADP
quack PROPN
diseasesin PROPN
the DET
past.>medicine NOUN
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmly ADV
> X
to ADP
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough ADV
> X
actually ADV
treating VERB
patients NOUN
. PUNCT
I PRON
like VERB
the DET
implication NOUN
here ADV
. PUNCT
  SPACE
It PRON
must AUX
not PART
be AUX
that SCONJ
the DET
quacks NOUN
makingmillions NOUN
off ADP
such ADJ
" PUNCT
diseases NOUN
" PUNCT
are AUX
biased VERB
-- PUNCT
rather ADV
that SCONJ
those DET
whodoubt VERB
their PRON
existence NOUN
do AUX
n't PART
understand VERB
the DET
real ADJ
world NOUN
. PUNCT
  SPACE
It PRON
seemseasy VERB
to PART
picture VERB
a DET
19th ADJ
centure NOUN
snake NOUN
oil NOUN
salesman NOUN
saying VERB
the DET
samething NOUN
. PUNCT
However ADV
, PUNCT
I PRON
have AUX
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough ADV
to PART
have AUX
seen VERB
multiplequack NOUN
diseases NOUN
rise VERB
and CCONJ
fall VERB
in ADP
popularity NOUN
. PUNCT
  SPACE
" PUNCT
Systemic ADJ
yeast NOUN
syndome"seems NOUN
to PART
be AUX
making VERB
a DET
resurgence NOUN
( PUNCT
it PRON
had AUX
fallen VERB
off ADP
a DET
few ADJ
years NOUN
ago).There ADV
will AUX
be AUX
new ADJ
such ADJ
" PUNCT
diseases NOUN
" PUNCT
I PRON
'm AUX
sure ADJ
with ADP
best ADV
- PUNCT
selling VERB
booksand NOUN
expensive ADJ
therapies.>If PROPN
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
> X
face NOUN
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
> X
their PRON
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as SCONJ
> X
far ADV
as SCONJ
I PRON
am AUX
concerned ADJ
. PUNCT
Well INTJ
this DET
, PUNCT
of ADP
course NOUN
, PUNCT
is AUX
convincing VERB
. PUNCT
  SPACE
I PRON
guess VERB
I PRON
'd AUX
better ADV
start VERB
diagnosingany ADJ
illnesses NOUN
that SCONJ
people NOUN
want VERB
so SCONJ
that SCONJ
I PRON
can AUX
keep VERB
my PRON
lips.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59102From NUM
: PUNCT
< X
ICGLN@ASUACAD.BITNET VERB
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"A PROPN
good ADJ
source NOUN
of ADP
information NOUN
on ADP
Burzynski PROPN
's PART
method NOUN
is AUX
in ADP
* PUNCT
The DET
Cancer PROPN
Industry*by PROPN
pulitzer NOUN
- PUNCT
prize NOUN
nominee NOUN
Ralph PROPN
Moss PROPN
. PUNCT
Also ADV
, PUNCT
a DET
non ADJ
- ADJ
profit ADJ
organization NOUN
called"People NOUN
Against ADP
Cancer PROPN
, PUNCT
" PUNCT
which PRON
was AUX
formed VERB
for ADP
the DET
purpose NOUN
of ADP
allowing VERB
cancerpatients NOUN
to PART
access VERB
information NOUN
regarding VERB
cancer NOUN
therapies NOUN
not PART
endorsed VERB
by ADP
thecancer NOUN
industry NOUN
, PUNCT
but CCONJ
which PRON
have AUX
shown VERB
highly ADV
promising ADJ
results NOUN
( PUNCT
all DET
of ADP
whichare ADJ
non ADJ
- ADJ
toxic ADJ
) PUNCT
. PUNCT
Anyone PRON
interested ADJ
in ADP
cancer NOUN
therapy NOUN
should AUX
contact VERB
this DET
organi PROPN
- PUNCT
zation PROPN
ASAP PROPN
: PUNCT
              SPACE
People NOUN
Against ADP
Cancer PROPN
                          SPACE
PO PROPN
Box PROPN
10 NUM
                          SPACE
Otho PROPN
IA PROPN
50569 NUM
- PUNCT
0010(515)972 NOUN
- PUNCT
4444FAX PROPN
( PUNCT
515)972 NUM
- PUNCT
4415peacegreg NUM
nighNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59103From NUM
: PUNCT
gmark@cbnewse.cb.att.com X
( PUNCT
gilbert.m.stewart)Subject NOUN
: PUNCT
oxaprozin?Anyone NOUN
have AUX
any DET
information NOUN
on ADP
the DET
effects NOUN
/ SYM
origin NOUN
of ADP
oxaprozin?It PROPN
's PART
marketed VERB
under ADP
the DET
name NOUN
" PUNCT
DAYpro PROPN
" PUNCT
, PUNCT
and CCONJ
appears VERB
to PART
be AUX
ananti ADJ
- PUNCT
inflammatory ADJ
. PUNCT
  SPACE
Is AUX
it PRON
similar ADJ
to ADP
naproxin PROPN
? PUNCT
  SPACE
Stronger?TIAGMSNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59104From NUM
: PUNCT
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M.)Subject PROPN
: PUNCT
Thrush PROPN
( PUNCT
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)))In NOUN
article NOUN
< X
aldridgeC5tH63.7yA@netcom.com X
> X
, PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldri PROPN
writes...>dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
etc X
. PUNCT
... PUNCT
> X
> X
Dyer PROPN
, PUNCT
you PRON
're AUX
rude ADJ
. PUNCT
Medicine NOUN
is AUX
not PART
a DET
totallly ADV
scientific ADJ
endevour NOUN
. PUNCT
It's PROPN
> X
often ADV
practiced VERB
in ADP
a DET
disorganized ADJ
manner NOUN
. PUNCT
Most ADV
early ADJ
treatment NOUN
of ADP
> X
non ADJ
- ADJ
life ADJ
threatening VERB
illness NOUN
is AUX
done VERB
on ADP
a DET
guess NOUN
, PUNCT
hazarded VERB
after ADP
anecdotal ADJ
> X
evidence NOUN
given VERB
by ADP
the DET
patient NOUN
. PUNCT
It PRON
's AUX
an DET
educated ADJ
guess NOUN
, PUNCT
by ADP
a DET
trained VERB
person,>but NOUN
it PRON
's AUX
still ADV
no ADV
more ADJ
than SCONJ
a DET
guess.>It PROPN
's PART
cheaper ADJ
and CCONJ
simpler ADJ
to PART
medicate VERB
first ADJ
and CCONJ
only ADV
deal VERB
further ADV
with ADP
those DET
> X
people NOUN
who PRON
do AUX
n't PART
respond VERB
. PUNCT
> X
Dyer PROPN
is AUX
beyond ADP
rude ADJ
. PUNCT
There PRON
have AUX
been AUX
and CCONJ
always ADV
will AUX
be AUX
people NOUN
who PRON
are AUX
blinded VERB
by ADP
their PRON
own ADJ
knowledge NOUN
and CCONJ
unopen NOUN
to ADP
anything PRON
that PRON
is AUX
n't PART
already ADV
established VERB
. PUNCT
Given VERB
what PRON
the DET
medical ADJ
community NOUN
does AUX
n't PART
know VERB
, PUNCT
I PRON
'm AUX
surprised ADJ
that SCONJ
he PRON
has AUX
this DET
outlook NOUN
. PUNCT
For ADP
the DET
record NOUN
, PUNCT
I PRON
have AUX
had VERB
several ADJ
outbreaks NOUN
of ADP
thrush NOUN
during ADP
the DET
several ADJ
past ADJ
few ADJ
years NOUN
, PUNCT
with ADP
no DET
indication NOUN
of ADP
immunosuppression NOUN
or CCONJ
nutritional ADJ
deficiencies NOUN
. PUNCT
I PRON
had AUX
not PART
taken VERB
any DET
antobiotics NOUN
. PUNCT
My PRON
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous ADJ
: PUNCT
After ADP
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased VERB
. PUNCT
When ADV
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then ADV
. PUNCT
* PUNCT
Mike PROPN
McCurdy PROPN
                       SPACE
* PUNCT
University PROPN
Computing PROPN
Services PROPN
     SPACE
Disclaimer NOUN
: PUNCT
* PUNCT
San PROPN
Diego PROPN
State PROPN
University PROPN
* PUNCT
mccurdy@ucsvax.sdsu.edu PROPN
            SPACE
" PUNCT
Everything PRON
I PRON
say VERB
may AUX
be AUX
wrong"Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59105From NUM
: PUNCT
jason@ab20.larc.nasa.gov PROPN
( PUNCT
Jason PROPN
Austin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5Mv3v.2o5@world.std.com NOUN
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:- PROPN
> X
- PUNCT
> X
Some DET
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
- PUNCT
> X
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that SCONJ
carcinogens VERB
- PUNCT
> X
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
- PUNCT
> X
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
- PUNCT
> X
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
- PUNCT
> X
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
	 SPACE
I PRON
've AUX
read VERB
mixed ADJ
opinions NOUN
on ADP
this DET
. PUNCT
  SPACE
Singed VERB
meat NOUN
can AUX
containcarcinogens PROPN
, PUNCT
but CCONJ
unless SCONJ
you PRON
eat VERB
barbecued VERB
meat NOUN
every DET
meal NOUN
, PUNCT
you'reprobably ADV
not PART
at ADP
much ADJ
risk NOUN
. PUNCT
  SPACE
I PRON
think VERB
I PRON
will AUX
live VERB
life NOUN
on ADP
the DET
edge NOUN
andgrill NOUN
my PRON
food NOUN
. PUNCT
	 SPACE
I PRON
've AUX
also ADV
read VERB
that SCONJ
using VERB
petroleum NOUN
based VERB
charcoal NOUN
starter NOUN
canput VERB
some DET
unwanted ADJ
toxins NOUN
in ADP
your PRON
food NOUN
, PUNCT
or CCONJ
at ADP
least ADJ
unwanted ADJ
odor NOUN
. PUNCT
I've ADJ
been AUX
using VERB
egg PROPN
carton PROPN
cups NOUN
dipped VERB
in ADP
paraffin PROPN
for ADP
fire NOUN
starters NOUN
, PUNCT
and CCONJ
it PRON
actually ADV
lights VERB
faster ADV
and CCONJ
easier ADJ
than SCONJ
lighter ADJ
fluid NOUN
. PUNCT
  SPACE
Severalpeople PROPN
have AUX
told VERB
me PRON
that SCONJ
they PRON
have AUX
excellent ADJ
results NOUN
with ADP
a DET
chimney NOUN
, PUNCT
basically ADV
a DET
steel NOUN
cylinder NOUN
with ADP
wholes NOUN
punched VERB
in ADP
the DET
side NOUN
. PUNCT
  SPACE
I PRON
've AUX
beenmeaning VERB
to PART
get AUX
one NUM
of ADP
these DET
, PUNCT
but CCONJ
one NOUN
has AUX
n't PART
presented VERB
itself PRON
whileI've NOUN
been AUX
out ADV
shopping VERB
. PUNCT
  SPACE
You PRON
can AUX
make VERB
one NUM
from ADP
a DET
coffee NOUN
can AUX
, PUNCT
but CCONJ
I PRON
buymy VERB
coffee NOUN
as SCONJ
whole ADJ
beans NOUN
in ADP
a DET
bag NOUN
, PUNCT
so ADV
I PRON
have AUX
n't PART
had VERB
a DET
big ADJ
enough ADJ
canlaying NOUN
around.--Jason X
C. PROPN
Austinj.c.austin@larc.nasa.govNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59106From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
In ADP
article NOUN
< X
1993Apr20.184034.13779@dbased.nuo.dec.com NUM
> X
dufault@lftfld.enet.dec.com PROPN
( PUNCT
MD PROPN
) PUNCT
writes:>>If PROPN
anyone PRON
knows VERB
of ADP
any DET
database NOUN
or CCONJ
newsgroup NOUN
or CCONJ
as SCONJ
I PRON
mentioned VERB
up ADP
above,>any CCONJ
information NOUN
relating VERB
to ADP
this DET
disorder NOUN
I PRON
would AUX
sure ADV
appreciate VERB
hearing VERB
> X
from ADP
you PRON
. PUNCT
I PRON
am AUX
not PART
trying VERB
to PART
play VERB
doctor NOUN
here ADV
, PUNCT
but CCONJ
only ADV
trying VERB
to PART
gather VERB
> X
information NOUN
about ADP
it PRON
. PUNCT
As SCONJ
I PRON
know VERB
now ADV
, PUNCT
these DET
particular ADJ
types NOUN
of ADP
disorders NOUN
> X
are AUX
still ADV
not PART
really ADV
well ADV
understood VERB
by ADP
the DET
medical ADJ
community NOUN
, PUNCT
and CCONJ
so ADV
I'm NOUN
> X
going VERB
to PART
see VERB
now ADV
.... PUNCT
if SCONJ
somehow ADV
the DET
internet NOUN
can AUX
at ADV
least ADJ
give VERB
me PRON
alittle NOUN
> X
insight NOUN
. PUNCT
Thanks NOUN
. PUNCT
There PRON
is AUX
no DET
database NOUN
for ADP
infantile ADJ
spasms NOUN
, PUNCT
nor CCONJ
a DET
newsgroup NOUN
, PUNCT
that SCONJ
Iknow PROPN
of ADP
. PUNCT
  SPACE
The DET
medical ADJ
library NOUN
will AUX
be AUX
the DET
best ADJ
source NOUN
of ADP
informationfor ADJ
you.-- NUM
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59107From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyIn PROPN
article NOUN
< X
C5sy24.LF4@watson.ibm.com PROPN
> X
yozzo@watson.ibm.com PROPN
( PUNCT
Ralph PROPN
Yozzo PROPN
) PUNCT
writes:>>Why PUNCT
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures.>>They PROPN
poo NOUN
- PUNCT
poo NOUN
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I PRON
've AUX
> X
> X
Are AUX
you PRON
arguing VERB
that SCONJ
the DET
Lyme PROPN
lab NOUN
test NOUN
is AUX
accurate?If PROPN
you PRON
culture VERB
out ADP
the DET
spirochete NOUN
, PUNCT
it PRON
is AUX
virtually ADV
100 NUM
% NOUN
certainthe ADJ
patient NOUN
has AUX
Lyme PROPN
. PUNCT
  SPACE
I PRON
suppose VERB
you PRON
could AUX
have AUX
contaminationin NOUN
an DET
exceptionally ADV
sloppy ADJ
lab NOUN
, PUNCT
but CCONJ
normally ADV
not PART
. PUNCT
  SPACE
There PRON
are AUX
nofalse ADJ
positives.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59108From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residencyIn PROPN
article NOUN
< X
1r12bv$55e@terminator.rs.itd.umich.edu NUM
> X
Donald_Mackie@med.umich.edu NOUN
( PUNCT
Donald PROPN
Mackie PROPN
) PUNCT
writes:>>FMGs PROPN
who PRON
are AUX
not PART
citizens NOUN
are AUX
, PUNCT
like SCONJ
all DET
aliens NOUN
, PUNCT
in ADP
a DET
difficult ADJ
> NOUN
situation NOUN
. PUNCT
Only ADJ
citizens NOUN
get VERB
to PART
vote VERB
here ADV
, PUNCT
so ADV
non ADJ
- NOUN
citizens NOUN
are AUX
of ADP
> X
little ADJ
or CCONJ
no DET
interest NOUN
to ADP
legislators NOUN
. PUNCT
Also ADV
, PUNCT
the DET
non ADJ
- ADJ
citizen NOUN
may AUX
well ADV
> X
be AUX
in ADP
the DET
middle NOUN
of ADP
processing NOUN
for ADP
resident ADJ
alien ADJ
status NOUN
. PUNCT
There PRON
is AUX
a DET
> X
stron ADJ
sense NOUN
that SCONJ
rocking VERB
the DET
boat NOUN
( PUNCT
eg INTJ
. PUNCT
suing VERB
a DET
residency NOUN
program)>will PUNCT
delay VERB
the DET
granting NOUN
of ADP
that DET
status NOUN
, PUNCT
perhaps ADV
for ADP
ever.>One PROPN
should AUX
be AUX
aware ADJ
that SCONJ
foreign ADJ
doctors NOUN
admitted VERB
for ADP
trainingare NOUN
ineligible ADJ
to PART
apply VERB
for ADP
resident ADJ
alien ADJ
status NOUN
. PUNCT
  SPACE
In ADP
orderto ADJ
get AUX
the DET
green ADJ
card NOUN
they PRON
have AUX
to PART
return VERB
to ADP
their PRON
country NOUN
andapply ADV
at ADP
the DET
embassy NOUN
there ADV
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
many ADJ
somehow ADV
get VERB
aroundthis DET
problem NOUN
. PUNCT
  SPACE
Often ADV
it PRON
is AUX
by ADP
agreeing VERB
to PART
practice VERB
in ADP
a DET
townwith NOUN
a DET
need NOUN
and CCONJ
then ADV
the DET
congressman NOUN
from ADP
that DET
district PROPN
tacksa PROPN
rider NOUN
onto ADP
a DET
bill NOUN
saying VERB
" PUNCT
Dr. PROPN
X PROPN
will AUX
be AUX
allowed VERB
to PART
have AUX
permanentresidency NOUN
in ADP
the DET
US PROPN
. PUNCT
" PUNCT
  SPACE
A DET
lot NOUN
of ADP
bills NOUN
in ADP
congress PROPN
have AUX
such ADJ
ridersattached VERB
to ADP
them PRON
. PUNCT
  SPACE
Marrying VERB
a DET
US PROPN
citizen NOUN
is AUX
the DET
most ADV
common ADJ
, PUNCT
althoughnow INTJ
they PRON
are AUX
even ADV
cracking VERB
down ADP
on ADP
that DET
and CCONJ
trying VERB
to PART
tell VERB
UScitizens PROPN
they PRON
must AUX
follow VERB
their PRON
spouse NOUN
back ADV
to ADP
the DET
Phillipines PROPN
, PUNCT
orwhereever.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59109From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
liver NOUN
" PUNCT
spotsIn PROPN
article NOUN
< X
1993Apr19.162502.29802@news.eng.convex.com PROPN
> X
cash@convex.com X
( PUNCT
Peter PROPN
Cash PROPN
) PUNCT
writes:>What DET
causes VERB
those DET
little ADJ
brown ADJ
spots NOUN
on ADP
older ADJ
people NOUN
's PART
hands NOUN
? PUNCT
Are AUX
they PRON
> X
called VERB
" PUNCT
liver NOUN
spots NOUN
" PUNCT
because SCONJ
they PRON
're AUX
sort ADV
of ADV
liver NOUN
- PUNCT
colored ADJ
, PUNCT
or CCONJ
do AUX
they PRON
> X
indicate VERB
some DET
actual ADJ
liver NOUN
dysfunction?Senile NOUN
keratoses NOUN
. PUNCT
  SPACE
Have AUX
nothing PRON
to PART
do AUX
with ADP
the DET
liver.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59110From NUM
: PUNCT
karl@anasazi.com X
( PUNCT
Karl PROPN
Dussik)Subject NUM
: PUNCT
Re ADP
: PUNCT
Dana PROPN
- PUNCT
Faber PROPN
Cancer PROPN
Institute PROPN
In ADP
article NOUN
< X
1993Apr14.090306.3352@etek.chalmers.se NOUN
> X
e2salim@etek.chalmers.se PUNCT
( PUNCT
Salim PROPN
Chagan PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Can AUX
anyone PRON
send VERB
me PRON
the DET
adress NOUN
to ADP
> X
	 SPACE
Dana PROPN
- PUNCT
Faber PROPN
Cancer PROPN
Institute PROPN
in ADP
Boston PROPN
, PUNCT
USA PROPN
. PUNCT
              SPACE
^^ NUM
missing VERB
" PUNCT
r"Dana PROPN
- PUNCT
Farber PROPN
Cancer PROPN
Institute44 PROPN
Binney PROPN
StreetBoston PROPN
, PUNCT
MA PROPN
  SPACE
02115(617)732 PROPN
- PUNCT
3000Karl NUM
Dussik("Alumnus PROPN
" PUNCT
- PUNCT
Department PROPN
of ADP
Biostatistics PROPN
and CCONJ
Epidemiology PROPN
, PUNCT
1983 NUM
- SYM
1986)Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59111From NUM
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?Sharon NOUN
Paulson PROPN
( PUNCT
paulson@tab00.larc.nasa.gov PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
{ PUNCT
much ADV
deleted VERB
] PUNCT
: PUNCT
: PUNCT
: PUNCT
The DET
fact NOUN
that SCONJ
this DET
happened VERB
while SCONJ
eating VERB
two NUM
sugar NOUN
coated VERB
cereals NOUN
made VERB
: PUNCT
by ADP
Kellog PROPN
's PART
makes VERB
me PRON
think VERB
she PRON
might AUX
be AUX
having VERB
an DET
allergic ADJ
reaction NOUN
to ADP
: PUNCT
something PRON
in ADP
the DET
coating NOUN
or CCONJ
the DET
cereals NOUN
. PUNCT
  SPACE
Of ADP
the DET
four NUM
of ADP
us PRON
in ADP
our PRON
: PUNCT
immediate ADJ
family NOUN
, PUNCT
Kathryn PROPN
shows VERB
the DET
least ADJ
signs NOUN
of ADP
the DET
hay NOUN
fever NOUN
, PUNCT
running VERB
: PUNCT
nose NOUN
, PUNCT
itchy ADJ
eyes NOUN
, PUNCT
etc X
. PUNCT
but CCONJ
we PRON
have AUX
a DET
lot NOUN
of ADP
allergies NOUN
in ADP
our PRON
family NOUN
history NOUN
: PUNCT
including VERB
some DET
weird ADJ
food NOUN
allergies NOUN
- PUNCT
nuts NOUN
, PUNCT
mushrooms NOUN
. PUNCT
: PUNCT
Many ADJ
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
theliterature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
containstryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
mightpotentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it PRON
. PUNCT
Check VERB
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested.--David ADP
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Healthdozonoff@med-itvax1.bu.edu PROPN
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C(617 PROPN
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59112From NUM
: PUNCT
Lauger@ssdgwy.mdc.com PROPN
( PUNCT
John PROPN
Lauger)Subject PROPN
: PUNCT
Imitrex PROPN
and CCONJ
heart NOUN
attacks?My NOUN
girlfriend NOUN
just ADV
started VERB
taking VERB
Imitrex PROPN
for ADP
her PRON
migraine ADJ
headaches NOUN
. PUNCT
  SPACE
Herneurologist PROPN
diagnosed VERB
her PRON
as SCONJ
having VERB
depression NOUN
and CCONJ
suffering NOUN
from ADP
reboundheadaches NOUN
due ADJ
to ADP
daily ADJ
doses NOUN
of ADP
analgesics NOUN
. PUNCT
  SPACE
She PRON
stopped VERB
taking VERB
allanalgesics NOUN
and CCONJ
caffine NOUN
as SCONJ
of ADP
last ADJ
Thursday PROPN
( PUNCT
4/15 NUM
) PUNCT
. PUNCT
  SPACE
The DET
weekend NOUN
was AUX
prettybad ADJ
, PUNCT
but CCONJ
she PRON
made VERB
it PRON
through ADP
with ADP
the DET
help NOUN
of ADP
Imitrex PROPN
about ADP
every DET
18 NUM
hours NOUN
. PUNCT
Her PRON
third ADJ
injection NOUN
of ADP
Imitrex PROPN
, PUNCT
during ADP
the DET
worst ADJ
of ADP
the DET
withdrawl NOUN
onFriday PROPN
and CCONJ
six NUM
hours NOUN
after ADP
the DET
first ADJ
of ADP
the DET
day NOUN
, PUNCT
left VERB
her PRON
very ADV
sick ADJ
. PUNCT
  SPACE
Skinwas PROPN
flushed VERB
, PUNCT
sweating NOUN
, PUNCT
vomiting NOUN
and CCONJ
had AUX
severe ADJ
headache NOUN
pain NOUN
. PUNCT
  SPACE
It PRON
subsidedin VERB
an DET
hour NOUN
or CCONJ
so ADV
. PUNCT
  SPACE
Since SCONJ
then ADV
, PUNCT
she PRON
has AUX
been AUX
taking VERB
Imitrex PROPN
as SCONJ
needed VERB
tocontrol NOUN
the DET
pain NOUN
. PUNCT
  SPACE
Immediately ADV
after ADP
taking VERB
it PRON
, PUNCT
she PRON
has AUX
increased VERB
head NOUN
painfor ADV
ten NUM
minutes NOUN
, PUNCT
dizziness NOUN
and CCONJ
mild ADJ
nausea NOUN
and CCONJ
mild ADJ
chest NOUN
pains NOUN
. PUNCT
  SPACE
A DET
friendof NOUN
hers PRON
mentioned VERB
that SCONJ
her PRON
doctor NOUN
was AUX
wary ADJ
of ADP
Imitrex PROPN
because SCONJ
it PRON
had AUX
causedheart NOUN
attacks NOUN
in ADP
several ADJ
people NOUN
. PUNCT
  SPACE
Apparently ADV
the DET
mild ADJ
chest NOUN
pains NOUN
werecommon NOUN
in ADP
these DET
other ADJ
people NOUN
prior ADV
to ADP
there PRON
attacks NOUN
. PUNCT
  SPACE
Is AUX
this DET
just ADJ
rumor NOUN
? PUNCT
Has AUX
anyone PRON
else ADV
heard VERB
of ADP
these DET
symptoms NOUN
? PUNCT
  SPACE
My PRON
girlfriend NOUN
also ADV
has AUX
MitralValve PROPN
Prolapse PROPN
. PUNCT
Opinions NOUN
are AUX
mine PRON
or CCONJ
others NOUN
but CCONJ
definately ADV
not PART
MDA's!Lauger@ssdgwy.mdc.comMcDonnell PROPN
Douglas PROPN
Aerospace PROPN
, PUNCT
Huntington PROPN
Beach PROPN
, PUNCT
California PROPN
, PUNCT
USANewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59113From NUM
: PUNCT
nash@biologysx.lan.nrc.ca PROPN
( PUNCT
John PROPN
Nash)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
dougb@comm.mot.com PROPN
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:>From ADP
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)>Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?>Date NOUN
: PUNCT
Thu PROPN
, PUNCT
15 NUM
Apr PROPN
1993 NUM
13:59:41 NUM
GMT PROPN
> X
In ADP
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com NUM
> X
, PUNCT
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:[lots PROPN
of ADP
editing VERB
out SCONJ
of ADP
previuos PROPN
posts]>Here PROPN
is AUX
another DET
anecdotal ADJ
story NOUN
. PUNCT
  SPACE
I PRON
am AUX
a DET
picky ADJ
eater NOUN
and CCONJ
never ADV
wanted VERB
to PART
> X
try VERB
chinese ADJ
food NOUN
, PUNCT
however ADV
, PUNCT
I PRON
finally ADV
tried VERB
some DET
in ADP
order NOUN
to PART
please VERB
a DET
> X
girl NOUN
I PRON
was AUX
seeing VERB
at ADP
the DET
time NOUN
. PUNCT
  SPACE
I PRON
had AUX
never ADV
heard VERB
of ADP
Chinese ADJ
restaurant NOUN
> X
syndrome NOUN
. PUNCT
  SPACE
A DET
group NOUN
of ADP
us PRON
went VERB
to ADP
the DET
restaurant NOUN
and CCONJ
all DET
shared VERB
6 NUM
different ADJ
> X
dishes NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
taste VERB
great ADJ
, PUNCT
but CCONJ
I PRON
decided VERB
it PRON
was AUX
n't PART
so ADV
bad ADJ
. PUNCT
  SPACE
We PRON
went VERB
> X
home ADV
and CCONJ
went VERB
to ADP
bed NOUN
early ADV
. PUNCT
  SPACE
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs.>I ADV
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in ADP
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'm PROPN
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
> X
Suffice PROPN
to PART
say VERB
that SCONJ
I PRON
wo AUX
nt PART
go VERB
into ADP
a DET
chinese ADJ
restaurant NOUN
unless SCONJ
I PRON
am AUX
> X
physically ADV
threatened VERB
. PUNCT
  SPACE
The DET
smell NOUN
of ADP
the DET
food NOUN
makes VERB
me PRON
ill ADJ
( PUNCT
and CCONJ
that DET
* PUNCT
is*>a PROPN
psycholgical ADJ
reaction NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
I PRON
have AUX
been AUX
dragged VERB
in ADP
to PART
suffer VERB
> X
through ADP
beef NOUN
and CCONJ
broccoli NOUN
without ADP
any DET
sauces NOUN
, PUNCT
I PRON
insist VERB
on ADP
no DET
MSG NOUN
. PUNCT
  SPACE
> X
I PRON
have AUX
n't PART
gotten VERB
sick ADJ
yet ADV
. PUNCT
Funny ADJ
about ADP
that DET
... PUNCT
my PRON
wife NOUN
( PUNCT
my PRON
girlfriend NOUN
at ADP
the DET
time NOUN
) PUNCT
used VERB
to PART
get AUX
sick ADJ
after ADP
eating VERB
certain ADJ
foods NOUN
at ADP
various ADJ
Asian ADJ
restaurants NOUN
, PUNCT
and CCONJ
never ADV
knew VERB
why ADV
. PUNCT
  SPACE
She PRON
'd AUX
go VERB
pale ADJ
, PUNCT
and CCONJ
sweaty NOUN
and CCONJ
then ADV
vomit VERB
copiously ADV
. PUNCT
  SPACE
A DET
couple NOUN
of ADP
us PRON
ventured VERB
a DET
connection NOUN
with ADP
MSG PROPN
, PUNCT
and CCONJ
her PRON
response NOUN
was AUX
: PUNCT
" PUNCT
MSG PROPN
? PUNCT
  SPACE
What PRON
's AUX
that DET
? PUNCT
" PUNCT
. PUNCT
  SPACE
It PRON
also ADV
happened VERB
when ADV
she PRON
pigged VERB
out ADP
on ADP
some DET
brands NOUN
of ADP
savoury ADJ
crackers NOUN
and CCONJ
chips NOUN
... PUNCT
which PRON
I PRON
noticed VERB
( PUNCT
later ADV
) PUNCT
had AUX
MSG PROPN
on ADP
the DET
label NOUN
. PUNCT
  SPACE
Do AUX
n't PART
know VERB
about ADP
double ADJ
blinds NOUN
, PUNCT
but CCONJ
avoiding VERB
MSG PROPN
has AUX
stopped VERB
her PRON
being AUX
sick ADJ
at ADP
restaurants.cheers NOUN
, PUNCT
JohnJohn PROPN
Nash PROPN
                           SPACE
| PROPN
Email NOUN
: PUNCT
Nash@biologysx.lan.nrc.ca.Institute PROPN
for ADP
Biological PROPN
Sciences PROPN
, PUNCT
  SPACE
| PROPN
National PROPN
Research PROPN
Council PROPN
of ADP
Canada PROPN
, PUNCT
Cell PROPN
Physiology PROPN
Group PROPN
. PUNCT
              SPACE
| PROPN
Ottawa PROPN
, PUNCT
Ontario PROPN
, PUNCT
Canada PROPN
. PUNCT
             SPACE
* PUNCT
* PUNCT
* PUNCT
Disclaimer NOUN
: PUNCT
  SPACE
All DET
opinions NOUN
are AUX
mine ADJ
, PUNCT
not PART
NRC PROPN
's PART
! PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59114From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
How ADV
to PART
interview VERB
a DET
doctorMy PROPN
insurance NOUN
company NOUN
encourages VERB
annual ADJ
physicals NOUN
, PUNCT
and CCONJ
at ADP
my PRON
age NOUN
[ PUNCT
42 NUM
] PUNCT
i'mthinking X
that SCONJ
BIannual ADJ
physicals NOUN
, PUNCT
at ADP
least ADJ
, PUNCT
might AUX
be AUX
a DET
good ADJ
idea NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
i'm VERB
shopping VERB
for ADP
a DET
GP PROPN
. PUNCT
  SPACE
Might PROPN
as ADV
well ADV
get AUX
a DET
good ADJ
one NOUN
. PUNCT
Could AUX
the DET
Assembled VERB
Net PROPN
Wisdom PROPN
suggest VERB
things NOUN
i PRON
should AUX
look VERB
for ADP
, PUNCT
or CCONJ
point VERB
me PRON
tothe DET
FAQ PROPN
archive ADJ
if SCONJ
on ADP
this DET
topic NOUN
if SCONJ
there PRON
is AUX
one NUM
? PUNCT
  SPACE
Please INTJ
EMail NOUN
; PUNCT
i PRON
suspect VERB
that SCONJ
this DET
topic NOUN
is AUX
real ADJ
Net PROPN
Clutter PROPN
bait.-dkNewsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59115From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
sudden ADJ
numbness NOUN
in ADP
armIn NOUN
article NOUN
< X
C5u5LG.C3G@gpu.utcc.utoronto.ca PROPN
> X
molnar@Bisco NOUN
. PUNCT
CAnet PROPN
. PUNCT
CA PROPN
( PUNCT
Tom PROPN
Molnar PROPN
) PUNCT
writes:>I PROPN
experienced VERB
a DET
sudden ADJ
numbness NOUN
in ADP
my PRON
left ADJ
arm NOUN
this DET
morning NOUN
. PUNCT
  SPACE
Just ADV
after ADP
> X
I PRON
completed VERB
my PRON
4th ADJ
set NOUN
of ADP
deep ADJ
squats NOUN
. PUNCT
  SPACE
Today NOUN
was AUX
my PRON
weight NOUN
training NOUN
> X
day NOUN
and CCONJ
I PRON
was AUX
just ADV
beginning VERB
my PRON
routine NOUN
. PUNCT
  SPACE
All DET
of ADP
a ADV
sudden ADJ
at ADP
the DET
end NOUN
of ADP
> X
the DET
4th ADJ
set VERB
my PRON
arm NOUN
felt VERB
like SCONJ
it PRON
had AUX
gone VERB
to PART
sleep VERB
. PUNCT
  SPACE
It PRON
was AUX
cold ADJ
, PUNCT
turned VERB
pale,>and PROPN
lost VERB
60 NUM
% NOUN
of ADP
its PRON
strength NOUN
. PUNCT
  SPACE
The DET
weight NOUN
I PRON
used VERB
for ADP
squats NOUN
was AUX
n't PART
that DET
> X
heavy ADJ
, PUNCT
I PRON
was AUX
working VERB
hard ADV
but CCONJ
not PART
at ADP
100 NUM
% NOUN
effort NOUN
. PUNCT
  SPACE
I PRON
waited VERB
for ADP
a DET
few ADJ
> X
minutes NOUN
, PUNCT
trying VERB
to PART
shake VERB
the DET
arm NOUN
back ADV
to ADP
life NOUN
and CCONJ
then ADV
continued VERB
with ADP
> PROPN
chest PROPN
exercises NOUN
( PUNCT
flyes PROPN
) PUNCT
with ADP
lighter ADJ
dumbells NOUN
than SCONJ
I PRON
normally ADV
use VERB
. PUNCT
  SPACE
But CCONJ
> X
I PRON
dropped VERB
the DET
left ADJ
dumbell NOUN
during ADP
the DET
first ADJ
set NOUN
, PUNCT
and CCONJ
experienced VERB
continued VERB
> X
arm NOUN
weakness NOUN
into ADP
the DET
second ADJ
. PUNCT
  SPACE
So ADV
I PRON
quit VERB
training VERB
and CCONJ
decided VERB
not PART
to PART
do AUX
my PRON
> X
usual ADJ
hour NOUN
on ADP
the DET
ski NOUN
machine NOUN
either ADV
. PUNCT
  SPACE
I PRON
'll AUX
take VERB
it PRON
easy ADJ
for ADP
the DET
rest NOUN
of ADP
> X
the DET
day.>>My PROPN
arm NOUN
is AUX
* PUNCT
still ADV
* PUNCT
somewhat ADV
numb ADJ
and CCONJ
significantly ADV
weaker ADJ
than SCONJ
normal ADJ
-->my ADJ
hand NOUN
still ADV
tingles VERB
a DET
bit NOUN
down ADV
to ADP
the DET
thumb NOUN
. PUNCT
Color NOUN
has AUX
returned VERB
to ADP
normal ADJ
> X
and CCONJ
it PRON
is AUX
no DET
longer ADV
cold ADJ
. PUNCT
> X
> X
Horrid PROPN
thoughts NOUN
of ADP
chunks NOUN
of ADP
plaque NOUN
blocking VERB
a DET
major ADJ
artery NOUN
course NOUN
through ADP
> X
my PRON
brain NOUN
. PUNCT
  SPACE
I PRON
'm AUX
34 NUM
, PUNCT
vegetarian PROPN
, PUNCT
and CCONJ
pretty ADV
fit ADJ
from ADP
my PRON
daily ADJ
exercise NOUN
> X
regimen PROPN
. PUNCT
  SPACE
So SCONJ
that DET
ca AUX
n't PART
be AUX
it PRON
. PUNCT
  SPACE
Could AUX
a DET
pinched ADJ
nerve NOUN
from ADP
the DET
bar NOUN
> X
cause VERB
these DET
symptoms NOUN
( PUNCT
I NOUN
hope)?It X
likely ADV
has AUX
nothing PRON
to PART
do AUX
with ADP
" PUNCT
chunks NOUN
of ADP
plaque NOUN
" PUNCT
but CCONJ
it PRON
sounds VERB
likeyou NOUN
may AUX
have AUX
a DET
neurovascular ADJ
compromise NOUN
to ADP
your PRON
arm NOUN
and CCONJ
you PRON
need VERB
medicalattention NOUN
* PUNCT
before ADP
* PUNCT
doing VERB
any DET
more ADJ
weight NOUN
lifting NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59116From NUM
: PUNCT
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field))Subject PROPN
: PUNCT
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?In PUNCT
article NOUN
< X
1993Apr19.043654.13068@informix.com NUM
> X
proberts@informix.com X
( PUNCT
Paul PROPN
Roberts PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr12.165410.4206@kestrel.edu NUM
> X
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes:>>>>I ADJ
recall NOUN
reading VERB
somewhere ADV
, PUNCT
during ADP
my PRON
youth NOUN
, PUNCT
in ADP
some DET
science NOUN
popularization>>book NOUN
, PUNCT
that SCONJ
whyle NOUN
isotope NOUN
changes NOUN
do AUX
n't PART
normally ADV
affect VERB
chemistry NOUN
, PUNCT
a DET
consumption>>of NOUN
only ADV
heavy ADJ
water NOUN
would AUX
be AUX
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
seeds NOUN
watered VERB
only ADV
with ADP
heavy>>water NOUN
do AUX
not PART
sprout VERB
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
about ADP
this?>>>>I NOUN
also ADV
heard VERB
this DET
. PUNCT
I PRON
always ADV
thought VERB
it PRON
might AUX
make VERB
a DET
good ADJ
eposide NOUN
of>'Columbo NUM
' PUNCT
for ADP
someone PRON
to PART
be AUX
poisoned VERB
with ADP
heavy ADJ
water NOUN
- PUNCT
it PRON
wouldn't PROPN
> X
show VERB
up ADP
in ADP
any DET
chemical ADJ
test NOUN
. PUNCT
That DET
would AUX
be AUX
a DET
very ADV
expensive ADJ
toxin NOUN
indeed!-- PROPN
| PROPN
Daniel PROPN
R. PROPN
Field PROPN
, PUNCT
AKA PROPN
InfoSpunj PROPN
| PROPN
Joe PROPN
: PUNCT
" PUNCT
Are AUX
you PRON
late ADJ
? PUNCT
" PUNCT
                SPACE
|| PROPN
dfield@oboe.calpoly.edu PROPN
        SPACE
| PROPN
Dan PROPN
: PUNCT
" PUNCT
No INTJ
, PUNCT
but CCONJ
I PRON
'm AUX
working VERB
on ADP
it PRON
! PUNCT
" PUNCT
   SPACE
|| PROPN
Biochemistry PROPN
, PUNCT
Biotechnology PROPN
    SPACE
| CCONJ
                                     SPACE
|| PROPN
California PROPN
Polytechnic PROPN
State PROPN
U PROPN
| PROPN
                                     SPACE
| PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59117From NUM
: PUNCT
ghica@fig.citib.com PROPN
( PUNCT
Renato PROPN
Ghica)Subject NUM
: PUNCT
seek VERB
sedative ADJ
informationhas NOUN
any DET
one NUM
heard VERB
of ADP
a DET
sedative ADJ
called VERB
" PUNCT
Rhoepnol PROPN
" PUNCT
? PUNCT
Made VERB
by ADP
LaRouche PROPN
, PUNCT
I PRON
believe VERB
. PUNCT
Any DET
info NOUN
as SCONJ
to PART
side VERB
effects NOUN
or CCONJ
equivalent ADJ
tranquillizers?thanks NOUN
.... PUNCT
-- PUNCT
" PUNCT
This DET
will AUX
just ADV
take VERB
a DET
minute NOUN
. PUNCT
""I'm ADV
90 NUM
% NOUN
done VERB
. PUNCT
""It PUNCT
worked VERB
on ADP
my PRON
machine NOUN
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59118From NUM
: PUNCT
jnielsen@magnus.acs.ohio-state.edu PROPN
( PUNCT
John PROPN
F PROPN
Nielsen)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5u638.Bvy@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>>In X
article NOUN
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>Good X
grief NOUN
again.>>Why PROPN
the DET
anger NOUN
? PUNCT
  SPACE
I PRON
must AUX
have AUX
really ADV
touched VERB
a DET
raw ADJ
nerve.>>Let NOUN
's PART
see NOUN
: PUNCT
  SPACE
I PRON
had AUX
symptoms NOUN
that PRON
resisted VERB
all DET
other ADJ
treatments NOUN
. PUNCT
  SPACE
Sporanox PROPN
> X
totally ADV
alleviated VERB
them PRON
within ADP
one NUM
week NOUN
. PUNCT
  SPACE
Hmmm PROPN
, PUNCT
I PRON
must AUX
be AUX
psychotic ADJ
. PUNCT
  SPACE
Yesss!>That PROPN
's AUX
it PRON
- PUNCT
my PRON
illness NOUN
was AUX
all DET
in ADP
my PRON
mind NOUN
. PUNCT
  SPACE
Thanks INTJ
Steve PROPN
for ADP
your PRON
correct ADJ
> X
diagnosis NOUN
- PUNCT
you PRON
must AUX
have AUX
a DET
lot NOUN
of ADP
experience NOUN
being AUX
out ADV
there ADV
in ADP
trenches,>treating VERB
hundreds NOUN
of ADP
patients NOUN
a DET
week NOUN
. PUNCT
  SPACE
Thank VERB
you PRON
. PUNCT
  SPACE
I PRON
'm AUX
forever ADV
in ADP
your PRON
> X
debt.>>Jon>>(oops NOUN
, PUNCT
got VERB
ta PART
run VERB
, PUNCT
the DET
men NOUN
in ADP
white ADJ
coats NOUN
are AUX
ready ADJ
to PART
take VERB
me PRON
away ADV
, PUNCT
haha,>to PROPN
the DET
happy ADJ
home NOUN
, PUNCT
where ADV
I PRON
can AUX
go VERB
twiddle ADP
my PRON
thumbs NOUN
, PUNCT
basket NOUN
weave NOUN
, PUNCT
and CCONJ
> X
moan VERB
about ADP
my PRON
sinuses.)Ever PROPN
heard VERB
of ADP
something PRON
called VERB
the DET
placebo NOUN
effect NOUN
? PUNCT
I PRON
think VERB
Dyer PROPN
isreacting VERB
because SCONJ
it PRON
looks VERB
to PART
be AUX
yet ADV
another DET
case NOUN
of ADP
the DET
same ADJ
oldquackery NOUN
over ADV
and CCONJ
over ADV
again ADV
. PUNCT
It PRON
true ADJ
that SCONJ
current ADJ
medical ADJ
knowledge NOUN
is AUX
limited ADJ
, PUNCT
but CCONJ
do AUX
you PRON
realizejust VERB
HOW ADV
MANY ADJ
quacks NOUN
exist VERB
eager ADJ
to PART
suck VERB
your PRON
$ SYM
$ SYM
$ SYM
$ SYM
. PUNCT
It PRON
's AUX
playing VERB
thelottery NOUN
at ADP
best ADV
. PUNCT
If SCONJ
the DET
results NOUN
you PRON
got VERB
were AUX
so ADV
clear ADJ
and CCONJ
obvious ADJ
, PUNCT
would AUX
you PRON
mindtrying VERB
a DET
little ADJ
experiment NOUN
to PART
see VERB
if SCONJ
it PRON
is AUX
true ADJ
? PUNCT
It PRON
would AUX
be AUX
quitesimple ADJ
. PUNCT
Have AUX
sugar NOUN
pills NOUN
and CCONJ
have AUX
real ADJ
pills NOUN
. PUNCT
  SPACE
Take VERB
one NUM
set NOUN
for ADP
oneweek NOUN
and CCONJ
the DET
other ADJ
set NOUN
for ADP
another DET
week NOUN
without ADP
knowing VERB
which PRON
ones NOUN
arethe VERB
real ADJ
pills NOUN
. PUNCT
Then ADV
at ADP
the DET
end NOUN
of ADP
the DET
2 NUM
weeks NOUN
compare VERB
the DET
results NOUN
. PUNCT
Let VERB
's PRON
say VERB
you PRON
're AUX
wife NOUN
would AUX
know VERB
which PRON
are AUX
the DET
real ADJ
ones NOUN
. PUNCT
If SCONJ
what PRON
youare NOUN
experiencing VERB
is AUX
true ADJ
there PRON
should AUX
be AUX
a DET
marked ADJ
difference NOUN
betweeneach NOUN
week NOUN
. PUNCT
  SPACE
john-- PROPN
John PROPN
Nielsen PROPN
   SPACE
MAGNUS PROPN
Consultant NOUN
            SPACE
_ VERB
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
   SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
   SPACE
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
	 SPACE
" PUNCT
To ADP
you PRON
Baldrick PROPN
, PUNCT
the DET
Renaissance PROPN
was AUX
just ADV
/\ PUNCT
  SPACE
_ VERB
_ PROPN
\ PROPN
/\ X
  SPACE
_ PROPN
_ PROPN
_ PROPN
\ PROPN
/\ PUNCT
\/\ PROPN
\something PUNCT
that PRON
happened VERB
to ADP
other ADJ
people NOUN
, PUNCT
   SPACE
\ PROPN
\ PROPN
\/\ PROPN
\\ PROPN
\ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
\\ PROPN
\ PROPN
\_\ NUM
\wasn't VERB
it PRON
? PUNCT
" PUNCT
- PUNCT
The DET
Black PROPN
Adder PROPN
               SPACE
\ VERB
\_____\\/\_____\\ PROPN
\_____\Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59119Subject NUM
: PUNCT
Re ADP
: PUNCT
Bates PROPN
Method PROPN
for ADP
MyopiaFrom PROPN
: PUNCT
jc@oneb.almanac.bc.caDr PROPN
. PUNCT
willian ADJ
Horatio PROPN
Bates PROPN
born VERB
1860 NUM
and CCONJ
graduated VERB
from ADP
med PROPN
school1885 PROPN
. PUNCT
  SPACE
Medical ADJ
career NOUN
hampered VERB
by ADP
spells NOUN
of ADP
total ADJ
amnesia PROPN
. PUNCT
  SPACE
Published VERB
in1920 PROPN
, PUNCT
his PRON
great ADJ
work NOUN
" PUNCT
The DET
Cure PROPN
of ADP
Imperfect PROPN
Eyesight PROPN
by ADP
Treatment PROPN
With ADP
- PUNCT
out ADP
Glasses NOUN
" PUNCT
, PUNCT
He PRON
made VERB
claims NOUN
about ADP
how ADV
the DET
eye NOUN
actually ADV
works VERB
that SCONJ
aresimply ADV
NOT ADV
TRUE PROPN
. PUNCT
  SPACE
Aldous PROPN
Huxley PROPN
was AUX
one NUM
of ADP
the DET
more ADV
" PUNCT
high ADJ
profile"beleivers NOUN
in ADP
his PRON
system NOUN
. PUNCT
  SPACE
Mr. PROPN
Huxley PROPN
while SCONJ
giving VERB
a DET
lecture NOUN
on ADP
Bates PROPN
systemforgot VERB
the DET
lecture NOUN
that SCONJ
he PRON
was AUX
supposedely ADV
reading VERB
and CCONJ
had AUX
to PART
put VERB
thepaper NOUN
right ADV
up ADP
to ADP
his PRON
eyes NOUN
and CCONJ
then ADV
resorted VERB
to ADP
a DET
magnifying NOUN
glass NOUN
fromhis PRON
pocket NOUN
. PUNCT
  SPACE
book PROPN
have AUX
been AUX
written VERB
debunking VERB
this DET
technique NOUN
, PUNCT
howeverthey PRON
remain VERB
less ADV
read ADJ
than SCONJ
the DET
original ADJ
fraud NOUN
. PUNCT
  SPACE
cheers NOUN
           SPACE
jc@oneb.almanac.bc.ca PROPN
( PUNCT
John PROPN
Cross PROPN
) PUNCT
     SPACE
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
  SPACE
( PUNCT
Home PROPN
of ADP
The DET
Almanac PROPN
UNIX PROPN
Users PROPN
Group PROPN
) PUNCT
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
    SPACE
< X
Public PROPN
Access PROPN
UseNet PROPN
> X
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
        SPACE
Vancouver PROPN
Island PROPN
, PUNCT
British PROPN
Columbia PROPN
    SPACE
Waffle PROPN
XENIX PROPN
1.64 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59120From NUM
: PUNCT
kelley@vet.vet.purdue.edu PROPN
( PUNCT
Stephen PROPN
Kelley)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?In PROPN
article NOUN
< X
1993Apr21.155714.1@stsci.edu NUM
> X
mryan@stsci.edu INTJ
writes:- PROPN
Am AUX
I PRON
justified ADJ
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor?- NUM
- PUNCT
Last ADJ
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife.- PROPN
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
	 SPACE
[ PUNCT
story NOUN
deleted]- NOUN
be AUX
bothered VERB
. PUNCT
  SPACE
My PRON
son NOUN
did AUX
get AUX
three NUM
stitches NOUN
at ADP
the DET
emergency NOUN
room NOUN
. PUNCT
  SPACE
I PRON
'm AUX
still ADV
- PUNCT
trying VERB
to PART
find VERB
out ADP
who PRON
is AUX
in ADP
charge NOUN
of ADP
that DET
clinic NOUN
so SCONJ
I PRON
can AUX
write VERB
them PRON
a DET
- PUNCT
letter NOUN
. PUNCT
   SPACE
We PRON
will AUX
certainly ADV
never ADV
set VERB
foot NOUN
in ADP
that DET
clinic NOUN
again.- VERB
The DET
people NOUN
in ADP
charge NOUN
already ADV
know VERB
what PRON
kind NOUN
of ADP
' PUNCT
care NOUN
' PUNCT
they PRON
are AUX
providing VERB
, PUNCT
and CCONJ
they PRON
do AUX
n't PART
give VERB
a DET
rat NOUN
's PART
ass NOUN
about ADP
your PRON
repeat NOUN
business NOUN
. PUNCT
You PRON
are AUX
much ADV
more ADV
likely ADJ
to PART
do AUX
some DET
good ADJ
writing NOUN
to ADP
local ADJ
newspapers NOUN
, PUNCT
and CCONJ
broadcast VERB
news NOUN
shows NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
, PUNCT
keep VERB
the DET
letter NOUN
short ADJ
and CCONJ
to ADP
the DET
pointso NOUN
they PRON
do AUX
n't PART
discard VERB
it PRON
out SCONJ
of ADP
hand NOUN
, PUNCT
and CCONJ
emphasize VERB
exactly ADV
what PRON
youare NOUN
upset VERB
about ADP
. PUNCT
It PRON
's AUX
possible ADJ
that SCONJ
the DET
local ADJ
health NOUN
department NOUN
can AUX
help VERB
you PRON
complain VERB
to ADP
someone PRON
official NOUN
, PUNCT
but CCONJ
really ADV
, PUNCT
that SCONJ
' PUNCT
clinic NOUN
' PUNCT
exists VERB
for ADP
the DET
sole ADJ
purpose NOUN
of ADP
generating VERB
walk VERB
- PUNCT
in ADP
income NOUN
through ADP
advertising NOUN
, PUNCT
and CCONJ
* PUNCT
nothing PRON
* PUNCT
you PRON
can AUX
do AUX
will AUX
change VERB
them PRON
-- PUNCT
all DET
you PRON
can AUX
hope VERB
for ADP
is AUX
to PART
help VERB
someone PRON
else ADV
avoid VERB
them PRON
. PUNCT
I'm PRON
glad VERB
it PRON
sounds VERB
like SCONJ
your PRON
son NOUN
did AUX
ok INTJ
, PUNCT
anyway ADV
. PUNCT
My PRON
opinion NOUN
only ADV
, PUNCT
of ADP
course NOUN
, PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59121From NUM
: PUNCT
sbrun@oregon.uoregon.edu PROPN
( PUNCT
Sarah PROPN
Anne PROPN
Brundage)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography PROPN
> X
I PRON
did AUX
a DET
science NOUN
project NOUN
on ADP
Kirlian ADJ
photography NOUN
when ADV
I PRON
was AUX
in ADP
high ADJ
school.>I NOUN
was AUX
able ADJ
to PART
obtain VERB
wonderful ADJ
auras NOUN
from ADP
rocks NOUN
and CCONJ
pebbles NOUN
and CCONJ
the DET
like ADJ
by ADP
> X
first ADV
dunking VERB
them PRON
in ADP
water NOUN
. PUNCT
> X
  SPACE
I PRON
know VERB
this DET
is AUX
a DET
little ADJ
weird ADJ
, PUNCT
but CCONJ
I PRON
know VERB
that SCONJ
World PROPN
magazine NOUN
( PUNCT
you PRON
know VERB
, PUNCT
National PROPN
Geo PROPN
. PUNCT
for ADP
children NOUN
) PUNCT
did AUX
a DET
very ADV
simple ADJ
and CCONJ
concise ADJ
article NOUN
on ADP
Kirlianphotography PROPN
. PUNCT
  SPACE
They PRON
had AUX
some DET
neat ADJ
pictures NOUN
, PUNCT
too ADV
. PUNCT
  SPACE
A DET
friend NOUN
of ADP
mine NOUN
's PART
mother NOUN
hada PROPN
book NOUN
on ADP
Kirlian ADJ
photography NOUN
, PUNCT
only ADV
it PRON
's AUX
photographs NOUN
took VERB
a DET
radiologist NOUN
to PART
interpret VERB
. PUNCT
  SPACE
They PRON
( PUNCT
World PROPN
magazine NOUN
) PUNCT
warned VERB
us PRON
all DET
that PRON
it PRON
was AUX
very ADV
dangerous ADJ
, PUNCT
probably ADV
to PART
stop VERB
curious ADJ
children NOUN
from ADP
experimenting VERB
with ADP
it PRON
. PUNCT
  SPACE
Mind VERB
you PRON
, PUNCT
thiswas VERB
10 NUM
years NOUN
ago ADV
, PUNCT
at ADP
least ADJ
. PUNCT
  SPACE
( PUNCT
And CCONJ
boy NOUN
, PUNCT
does AUX
that DET
say VERB
something PRON
about ADP
my PRON
age)Sarah PROPN
Brundagesbrun@oregon.uoregon.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59122From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 X
Medical PROPN
Newsletter PROPN
, PUNCT
Part PROPN
2/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
13Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                       SPACE
Gonorrhea PROPN
-- PUNCT
Colorado PROPN
, PUNCT
1985 NUM
- SYM
1992 NUM
                       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
The DET
number NOUN
of ADP
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
in ADP
Colorado PROPN
increased VERB
19.9 NUM
% NOUN
from ADP
1991 NUM
to ADP
1992 NUM
after ADP
declining VERB
steadily ADV
during ADP
the DET
1980s NOUN
. PUNCT
In ADP
comparison NOUN
, PUNCT
in ADP
the DET
United PROPN
States PROPN
, PUNCT
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
in ADP
1992 NUM
continued VERB
an DET
overall ADJ
decreasing VERB
trend NOUN
( PUNCT
1 NUM
) PUNCT
. PUNCT
This DET
report NOUN
summarizes VERB
an DET
analysis NOUN
of ADP
the DET
increase NOUN
in ADP
gonorrhea NOUN
in ADP
Colorado PROPN
in ADP
1992 NUM
and CCONJ
characterizes VERB
trends NOUN
in ADP
the DET
occurrence NOUN
of ADP
this DET
disease NOUN
from ADP
1985 NUM
through ADP
1992 NUM
. PUNCT
      SPACE
In ADP
1992 NUM
, PUNCT
4679 NUM
cases NOUN
of ADP
gonorrhea PROPN
were AUX
reported VERB
to ADP
the DET
Colorado PROPN
Department PROPN
of ADP
Health PROPN
( PUNCT
CDH PROPN
) PUNCT
compared VERB
with ADP
3901 NUM
cases NOUN
reported VERB
in ADP
1991 NUM
. PUNCT
During ADP
1992 NUM
, PUNCT
reported VERB
cases NOUN
increased VERB
22.7 NUM
% NOUN
and CCONJ
17.5 NUM
% NOUN
among ADP
females NOUN
and CCONJ
males NOUN
, PUNCT
respectively ADV
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
Similar ADJ
increases NOUN
occurred VERB
among ADP
blacks NOUN
, PUNCT
whites NOUN
, PUNCT
and CCONJ
Hispanics PROPN
( PUNCT
15.6 NUM
% NOUN
, PUNCT
15.1 NUM
% NOUN
, PUNCT
and CCONJ
15.9 NUM
% NOUN
, PUNCT
respectively ADV
) PUNCT
; PUNCT
however ADV
, PUNCT
the DET
number NOUN
of ADP
reported VERB
cases NOUN
with ADP
race NOUN
not PART
specified VERB
increased VERB
88 NUM
% NOUN
from ADP
1991 NUM
to ADP
1992 NUM
and CCONJ
constituted VERB
9.7 NUM
% NOUN
of ADP
all DET
reported VERB
cases NOUN
in ADP
1992 NUM
. PUNCT
Although SCONJ
the DET
largest ADJ
proportional ADJ
increases NOUN
by ADP
age NOUN
groups NOUN
occurred VERB
among ADP
persons NOUN
aged VERB
35 NUM
- SYM
44 NUM
years NOUN
( PUNCT
80.4 NUM
% NOUN
) PUNCT
and CCONJ
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
45 NUM
years NOUN
( PUNCT
87.7 NUM
% NOUN
) PUNCT
, PUNCT
these DET
age NOUN
groups NOUN
accounted VERB
for ADP
only ADV
11.0 NUM
% NOUN
of ADP
all DET
reported VERB
cases NOUN
in ADP
1992 NUM
. PUNCT
Persons NOUN
in ADP
the DET
15 NUM
- SYM
19-year NUM
age NOUN
group NOUN
accounted VERB
for ADP
the DET
largest ADJ
number NOUN
of ADP
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
during ADP
1992 NUM
and CCONJ
the DET
highest ADJ
age NOUN
group NOUN
- PUNCT
specific ADJ
rate NOUN
( PUNCT
639 NUM
per ADP
100,000 NUM
) PUNCT
. PUNCT
      SPACE
Reported VERB
cases NOUN
of ADP
gonorrhea NOUN
increased VERB
32.9 NUM
% NOUN
in ADP
the DET
five NUM
- PUNCT
county NOUN
Denver PROPN
metropolitan ADJ
area NOUN
( PUNCT
1990 NUM
population NOUN
: PUNCT
1,629,466 X
) PUNCT
but CCONJ
decreased VERB
elsewhere ADV
in ADP
the DET
state NOUN
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
Half DET
the DET
cases NOUN
of ADP
gonorrhea NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
occurred VERB
in ADP
8.4 NUM
% NOUN
( PUNCT
34 NUM
) PUNCT
of ADP
the DET
census NOUN
tracts VERB
; PUNCT
these DET
represent VERB
neighborhoods NOUN
considered VERB
by ADP
sexually ADV
transmitted VERB
diseases NOUN
( PUNCT
STDs)/acquired VERB
immunodeficiency NOUN
syndrome NOUN
( PUNCT
AIDS PROPN
) PUNCT
field NOUN
staff NOUN
to PART
be AUX
the DET
focus NOUN
of ADP
gang NOUN
and CCONJ
drug NOUN
activity NOUN
. PUNCT
      SPACE
When ADV
compared VERB
with ADP
1991 NUM
, PUNCT
the DET
number NOUN
of ADP
gonorrhea ADJ
cases NOUN
diagnosed VERB
among ADP
men NOUN
in ADP
the DET
Denver PROPN
Metro PROPN
Health PROPN
Clinic PROPN
( PUNCT
DMHC PROPN
, PUNCT
the DET
primary ADJ
public ADJ
STD PROPN
clinic NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
) PUNCT
increased VERB
33 NUM
% NOUN
in ADP
1992 NUM
, PUNCT
and CCONJ
the DET
number NOUN
of ADP
visits NOUN
by ADP
males NOUN
to ADP
the DET
clinic NOUN
increased VERB
2.4 NUM
% NOUN
. PUNCT
Concurrently ADV
, PUNCT
the DET
number NOUN
of ADP
cases NOUN
diagnosed VERB
among ADP
women NOUN
increased VERB
by ADP
1 NUM
% NOUN
. PUNCT
Among ADP
self NOUN
- PUNCT
identified VERB
heterosexual ADJ
men NOUN
, PUNCT
the DET
number NOUN
of ADP
gonorrhea ADJ
cases NOUN
diagnosed VERB
at ADP
DMHC PROPN
increased VERB
33 NUM
% NOUN
and CCONJ
comprised VERB
94 NUM
% NOUN
of ADP
all DET
cases NOUN
diagnosed VERB
in ADP
males NOUN
, PUNCT
while SCONJ
the DET
number NOUN
of ADP
cases NOUN
diagnosed VERB
among ADP
self NOUN
- PUNCT
identified VERB
homosexual ADJ
men NOUN
remained VERB
low ADJ
( PUNCT
71 NUM
and CCONJ
74 NUM
in ADP
1991 NUM
and CCONJ
1992 NUM
, PUNCT
respectively ADV
) PUNCT
. PUNCT
      SPACE
Four NUM
selected VERB
laboratories NOUN
in ADP
the DET
metropolitan ADJ
Denver PROPN
area NOUN
( PUNCT
i.e. X
, PUNCT
HMO PROPN
, PUNCT
university NOUN
hospital NOUN
, PUNCT
nonprofit ADJ
family NOUN
planning NOUN
, PUNCT
and CCONJ
commercial NOUN
) PUNCT
were AUX
contacted VERB
to PART
determine VERB
whether SCONJ
gonorrhea ADJ
culture NOUN
- PUNCT
positivity NOUN
rates NOUN
increased VERB
. PUNCT
Gonorrhea ADJ
culture NOUN
- PUNCT
positivity NOUN
rates NOUN
in ADP
three NUM
of ADP
four NUM
laboratories NOUN
contacted VERB
increased VERB
23%-33 NUM
% NOUN
from ADP
1991 NUM
to ADP
1992 NUM
, PUNCT
while SCONJ
the DET
rate NOUN
was AUX
virtually ADV
unchanged ADJ
in ADP
the DET
fourth ADJ
( PUNCT
i.e. X
, PUNCT
nonprofit ADJ
family NOUN
planning NOUN
) PUNCT
. PUNCT
      SPACE
From ADP
1985 NUM
through ADP
1991 NUM
, PUNCT
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
among ADP
whites NOUN
and CCONJ
Hispanics PROPN
in ADP
Colorado PROPN
decreased VERB
; PUNCT
in ADP
comparison NOUN
, PUNCT
reported VERB
cases NOUN
among ADP
blacks NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
14Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993increased VERB
since SCONJ
1988 NUM
( PUNCT
Figure NOUN
1 NUM
) PUNCT
. PUNCT
During ADP
1988 NUM
- SYM
1992 NUM
, PUNCT
the DET
population NOUN
in ADP
Colorado PROPN
increased VERB
9.9 NUM
% NOUN
for ADP
blacks NOUN
, PUNCT
9.8 NUM
% NOUN
for ADP
Hispanics PROPN
, PUNCT
and CCONJ
4.5 NUM
% NOUN
for ADP
whites NOUN
. PUNCT
In ADP
1992 NUM
, PUNCT
the DET
gonorrhea ADJ
rate NOUN
for ADP
blacks NOUN
( PUNCT
1935 NUM
per ADP
100,000 NUM
persons NOUN
) PUNCT
was AUX
57 NUM
times NOUN
that SCONJ
for ADP
whites NOUN
( PUNCT
34 NUM
per ADP
100,000 NUM
) PUNCT
and CCONJ
12 NUM
times NOUN
that SCONJ
for ADP
Hispanics PROPN
( PUNCT
156 NUM
per ADP
100,000 NUM
) PUNCT
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
Among ADP
black ADJ
females NOUN
, PUNCT
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
increased VERB
from ADP
1988 NUM
through ADP
1992 NUM
in ADP
the DET
15 NUM
- SYM
19-year NUM
age NOUN
group NOUN
; PUNCT
among ADP
black ADJ
males NOUN
, PUNCT
cases NOUN
increased VERB
from ADP
1989 NUM
through ADP
1992 NUM
in ADP
both CCONJ
the DET
15 NUM
- SYM
19-and NUM
20 NUM
- PUNCT
24-year NUM
age NOUN
groups NOUN
. PUNCT
Reported VERB
by ADP
: PUNCT
KA PROPN
Gershman PROPN
, PUNCT
MD PROPN
, PUNCT
JM PROPN
Finn PROPN
, PUNCT
NE PROPN
Spencer PROPN
, PUNCT
MSPH PROPN
, PUNCT
STD PROPN
/ SYM
AIDS PROPN
Program PROPN
; PUNCT
RE PROPN
Hoffman PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Colorado PROPN
Dept PROPN
of ADP
Health PROPN
. PUNCT
JM PROPN
Douglas PROPN
, PUNCT
MD PROPN
, PUNCT
Denver PROPN
Dept PROPN
of ADP
Health PROPN
and CCONJ
Hospitals PROPN
. PUNCT
Surveillance NOUN
and CCONJ
Information PROPN
Systems PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Sexually ADV
Transmitted VERB
Diseases PROPN
and CCONJ
HIV PROPN
Prevention PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Prevention PROPN
Svcs PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
increase NOUN
in ADP
reported VERB
gonorrhea ADJ
cases NOUN
in ADP
Colorado PROPN
in ADP
1992 NUM
may AUX
represent VERB
an DET
overall ADJ
increase NOUN
in ADP
the DET
occurrence NOUN
of ADP
this DET
disease NOUN
or CCONJ
more ADV
complete ADJ
reporting NOUN
stimulated VERB
by ADP
visitations NOUN
to ADP
laboratories NOUN
by ADP
CDH PROPN
surveillance NOUN
staff NOUN
during ADP
1991 NUM
- SYM
1992 NUM
. PUNCT
The DET
increases NOUN
in ADP
confirmed VERB
gonorrhea ADJ
cases NOUN
at ADP
DMHC PROPN
and CCONJ
in ADP
culture NOUN
- PUNCT
positivity NOUN
rates NOUN
in ADP
three NUM
of ADP
four NUM
laboratories NOUN
suggest VERB
a DET
real ADJ
increase NOUN
in ADP
gonorrhea NOUN
rather ADV
than SCONJ
a DET
reporting NOUN
artifact NOUN
. PUNCT
However ADV
, PUNCT
the DET
stable ADJ
culture NOUN
- PUNCT
positivity NOUN
rate NOUN
in ADP
the DET
nonprofit ADJ
family NOUN
planning VERB
laboratory NOUN
( PUNCT
which PRON
serves VERB
a DET
network NOUN
of ADP
clinics NOUN
statewide ADV
) PUNCT
indicates VERB
that SCONJ
the DET
gonorrhea PROPN
increase NOUN
did AUX
not PART
uniformly ADV
affect VERB
all DET
segments NOUN
of ADP
the DET
population NOUN
. PUNCT
      SPACE
One NUM
possible ADJ
explanation NOUN
for ADP
the DET
increased ADJ
occurrence NOUN
of ADP
gonorrhea NOUN
in ADP
Colorado PROPN
may AUX
be AUX
gang- ADJ
and CCONJ
drug NOUN
- PUNCT
related VERB
sexual ADJ
behavior NOUN
, PUNCT
as SCONJ
implicated VERB
in ADP
a DET
recent ADJ
outbreak NOUN
of ADP
drug NOUN
- PUNCT
resistant ADJ
gonorrhea NOUN
and CCONJ
other ADJ
STDs NOUN
in ADP
Colorado PROPN
Springs PROPN
( PUNCT
2 NUM
) PUNCT
. PUNCT
Although SCONJ
the DET
high ADJ
morbidity NOUN
census NOUN
tracts NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
coincide NOUN
with ADP
areas NOUN
of ADP
gang NOUN
and CCONJ
drug NOUN
activity NOUN
, PUNCT
this DET
hypothesis NOUN
requires VERB
further ADJ
assessment NOUN
. PUNCT
To PART
examine VERB
the DET
possible ADJ
role NOUN
of ADP
drug NOUN
use NOUN
-- PUNCT
implicated VERB
previously ADV
as SCONJ
a DET
factor NOUN
contributing VERB
to ADP
the DET
national ADJ
increase NOUN
in ADP
syphilis NOUN
( PUNCT
3 NUM
- SYM
6 NUM
) PUNCT
-- PUNCT
the DET
CDH PROPN
STD PROPN
/ SYM
AIDS PROPN
program NOUN
is AUX
collecting VERB
information NOUN
from ADP
all DET
persons NOUN
in ADP
whom PRON
gonorrhea PROPN
is AUX
diagnosed VERB
regarding VERB
drug NOUN
use NOUN
, PUNCT
exchange NOUN
of ADP
sex NOUN
for ADP
money NOUN
or CCONJ
drugs NOUN
, PUNCT
and CCONJ
gang NOUN
affiliation NOUN
. PUNCT
      SPACE
The DET
gonorrhea ADJ
rate NOUN
for ADP
blacks NOUN
in ADP
Colorado PROPN
substantially ADV
exceeds VERB
the DET
national ADJ
health NOUN
objective NOUN
for ADP
the DET
year NOUN
2000 NUM
( PUNCT
1300 NUM
per ADP
100,000 NUM
) PUNCT
( PUNCT
objective ADJ
19.1a NUM
) PUNCT
( PUNCT
7 NUM
) PUNCT
. PUNCT
Race NOUN
is AUX
likely ADV
a DET
risk NOUN
marker NOUN
rather ADV
than SCONJ
a DET
risk NOUN
factor NOUN
for ADP
gonorrhea NOUN
and CCONJ
other ADJ
STDs NOUN
. PUNCT
Risk NOUN
markers NOUN
may AUX
be AUX
useful ADJ
for ADP
identifying VERB
groups NOUN
at ADP
greatest ADJ
risk NOUN
for ADP
STDs NOUN
and CCONJ
for ADP
targeting VERB
prevention NOUN
efforts NOUN
. PUNCT
Moreover ADV
, PUNCT
race NOUN
- PUNCT
specific ADJ
variation NOUN
in ADP
STD PROPN
rates NOUN
may AUX
reflect VERB
differences NOUN
in ADP
factors NOUN
such ADJ
as SCONJ
socioeconomic ADJ
status NOUN
, PUNCT
access NOUN
to ADP
medical ADJ
care NOUN
, PUNCT
and CCONJ
high ADJ
- PUNCT
risk NOUN
behaviors NOUN
. PUNCT
      SPACE
In ADP
response NOUN
to ADP
the DET
increased VERB
occurrence NOUN
of ADP
gonorrhea NOUN
in ADP
Colorado PROPN
, PUNCT
interventions NOUN
initiated VERB
by ADP
the DET
CDH PROPN
STD PROPN
/ SYM
AIDS PROPN
program NOUN
include VERB
1 NUM
) PUNCT
targeting VERB
partner NOUN
notification NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
to ADP
persons NOUN
in ADP
groups NOUN
at ADP
increased VERB
risk NOUN
( PUNCT
e.g. ADV
, PUNCT
15 NUM
- PUNCT
19-year NUM
- PUNCT
old ADJ
black ADJ
females NOUN
and CCONJ
20 NUM
- PUNCT
24-year NUM
- PUNCT
old ADJ
black ADJ
males NOUN
) PUNCT
; PUNCT
2 X
) PUNCT
implementing VERB
a DET
media NOUN
campaign NOUN
( PUNCT
e.g. ADV
, PUNCT
public ADJ
service NOUN
radio NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
15Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993announcements PROPN
, PUNCT
signs NOUN
on ADP
city NOUN
buses NOUN
, PUNCT
newspaper NOUN
advertisements NOUN
, PUNCT
and CCONJ
posters NOUN
in ADP
schools NOUN
and CCONJ
clinics NOUN
) PUNCT
to PART
promote VERB
awareness NOUN
of ADP
STD PROPN
risk NOUN
and CCONJ
prevention NOUN
targeted VERB
primarily ADV
at ADP
high ADJ
- PUNCT
risk NOUN
groups NOUN
, PUNCT
and CCONJ
3 X
) PUNCT
developing VERB
teams NOUN
of ADP
peer NOUN
educators NOUN
to PART
perform VERB
educational ADJ
outreach NOUN
in ADP
high ADJ
- PUNCT
risk NOUN
neighborhoods NOUN
. PUNCT
The DET
educational ADJ
interventions NOUN
are AUX
being AUX
developed VERB
and CCONJ
implemented VERB
with ADP
the DET
assistance NOUN
of ADP
members NOUN
of ADP
the DET
target NOUN
groups NOUN
and CCONJ
with ADP
input NOUN
from ADP
a DET
forum NOUN
of ADP
community NOUN
leaders NOUN
and CCONJ
health NOUN
- PUNCT
care NOUN
providers NOUN
. PUNCT
References1 ADJ
. PUNCT
CDC PROPN
. PUNCT
Table NOUN
II PROPN
. PUNCT
Cases NOUN
of ADP
selected VERB
notifiable ADJ
diseases NOUN
, PUNCT
United PROPN
States PROPN
, PUNCT
weeks NOUN
ending VERB
December PROPN
26 NUM
, PUNCT
1992 NUM
, PUNCT
and CCONJ
December PROPN
28 NUM
, PUNCT
1991 NUM
( PUNCT
52nd ADJ
week NOUN
) PUNCT
. PUNCT
MMWR PROPN
1993;41:975 PROPN
. PUNCT
2 X
. PUNCT
CDC PROPN
. PUNCT
Gang PROPN
- PUNCT
related VERB
outbreak NOUN
of ADP
penicillinase NOUN
- PUNCT
producing VERB
Neisseria PROPN
gonorrhoeae NOUN
and CCONJ
other ADJ
sexually ADV
transmitted VERB
diseases NOUN
-- PUNCT
Colorado PROPN
Springs PROPN
, PUNCT
Colorado PROPN
, PUNCT
1989 NUM
- SYM
1991 NUM
. PUNCT
MMWR PROPN
1993;42:25 PROPN
- SYM
8 NUM
. PUNCT
3 NUM
. PUNCT
CDC PROPN
. PUNCT
Relationship NOUN
of ADP
syphilis NOUN
to ADP
drug NOUN
use NOUN
and CCONJ
prostitution NOUN
-- PUNCT
Connecticut PROPN
and CCONJ
Philadelphia PROPN
, PUNCT
Pennsylvania PROPN
. PUNCT
MMWR PROPN
1988;37:755 PROPN
- PUNCT
8 NUM
, PUNCT
764 NUM
. NOUN
4 NUM
. PUNCT
Rolfs PROPN
RT PROPN
, PUNCT
Goldberg PROPN
M PROPN
, PUNCT
Sharrar PROPN
RG PROPN
. PUNCT
Risk NOUN
factors NOUN
for ADP
syphilis NOUN
: PUNCT
cocaine NOUN
use NOUN
and CCONJ
prostitution NOUN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1990;80:853 PROPN
- SYM
7 NUM
. NOUN
5 NUM
. PUNCT
Andrus PROPN
JK PROPN
, PUNCT
Fleming PROPN
DW PROPN
, PUNCT
Harger PROPN
DR PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Partner NOUN
notification NOUN
: PUNCT
can AUX
it PRON
control VERB
epidemic ADJ
syphilis NOUN
? PUNCT
Ann PROPN
Intern PROPN
Med PROPN
1990;112:539 NUM
- SYM
43 NUM
. PUNCT
6 NUM
. PUNCT
Gershman PROPN
KA PROPN
, PUNCT
Rolfs PROPN
RT PROPN
. PUNCT
Diverging VERB
gonorrhea NOUN
and CCONJ
syphilis NOUN
trends NOUN
in ADP
the DET
1980s NOUN
: PUNCT
are AUX
they PRON
real ADJ
? PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1991;81:1263 NUM
- SYM
7 NUM
. PUNCT
7 NUM
. PUNCT
Public PROPN
Health PROPN
Service PROPN
. PUNCT
Healthy ADJ
people NOUN
2000 NUM
: PUNCT
national PROPN
health PROPN
promotion PROPN
and CCONJ
disease NOUN
prevention PROPN
objectives NOUN
-- PUNCT
full ADJ
report NOUN
, PUNCT
with ADP
commentary NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1991 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
PHS)91 PROPN
- PUNCT
50212 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
16Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                SPACE
Effectiveness PROPN
in ADP
Disease PROPN
and CCONJ
Injury PROPN
Prevention PROPN
            SPACE
Impact PROPN
of ADP
Adult PROPN
Safety PROPN
- PUNCT
Belt PROPN
Use PROPN
on ADP
Restraint PROPN
Use PROPN
Among ADP
            SPACE
Children NOUN
less ADJ
than SCONJ
11 NUM
Years NOUN
of ADP
Age NOUN
-- PUNCT
Selected PROPN
States PROPN
, PUNCT
                                 SPACE
1988 NUM
and CCONJ
1989 NUM
            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
Motor PROPN
- PUNCT
vehicle NOUN
crashes NOUN
are AUX
the DET
leading VERB
cause NOUN
of ADP
death NOUN
among ADP
children NOUN
and CCONJ
young ADJ
adults NOUN
in ADP
the DET
United PROPN
States PROPN
and CCONJ
account VERB
for ADP
more ADJ
than SCONJ
1 NUM
million NUM
years NOUN
of ADP
potential ADJ
life NOUN
lost VERB
before ADP
age NOUN
65 NUM
annually ADV
( PUNCT
1 NUM
) PUNCT
. PUNCT
Child NOUN
safety NOUN
seats NOUN
and CCONJ
safety NOUN
belts NOUN
can AUX
substantially ADV
reduce VERB
this DET
loss NOUN
( PUNCT
2 NUM
) PUNCT
. PUNCT
From ADP
1977 NUM
through ADP
1985 NUM
, PUNCT
all DET
50 NUM
states NOUN
passed VERB
legislation NOUN
requiring VERB
the DET
use NOUN
of ADP
child NOUN
safety NOUN
seats NOUN
or CCONJ
safety NOUN
belts NOUN
for ADP
children NOUN
. PUNCT
Although SCONJ
these DET
laws NOUN
reduce VERB
injuries NOUN
to ADP
young ADJ
children NOUN
by ADP
an DET
estimated VERB
8%-59 NUM
% NOUN
( PUNCT
3,4 NUM
) PUNCT
, PUNCT
motor NOUN
- PUNCT
vehicle NOUN
crash NOUN
- PUNCT
related VERB
injuries NOUN
remain VERB
a DET
major ADJ
cause NOUN
of ADP
disability NOUN
and CCONJ
death NOUN
among ADP
U.S. PROPN
children NOUN
( PUNCT
1 NUM
) PUNCT
, PUNCT
while SCONJ
the DET
use NOUN
of ADP
occupant ADJ
restraints NOUN
among ADP
children NOUN
decreases VERB
inversely ADV
with ADP
age NOUN
( PUNCT
84 NUM
% NOUN
usage NOUN
for ADP
those DET
aged ADJ
0 NUM
- SYM
4 NUM
years NOUN
; PUNCT
57 NUM
% NOUN
, PUNCT
aged ADJ
5 NUM
- SYM
11 NUM
years NOUN
; PUNCT
and CCONJ
29 NUM
% NOUN
, PUNCT
aged ADJ
12 NUM
- SYM
18 NUM
years NOUN
) PUNCT
( PUNCT
5 NUM
) PUNCT
. PUNCT
In ADP
addition NOUN
, PUNCT
parents NOUN
who PRON
do AUX
not PART
use VERB
safety NOUN
belts NOUN
themselves PRON
are AUX
less ADV
likely ADJ
to PART
use VERB
restraints NOUN
for ADP
their PRON
children NOUN
( PUNCT
6 NUM
) PUNCT
. PUNCT
To PART
characterize VERB
the DET
association NOUN
between ADP
adult PROPN
safety NOUN
- PUNCT
belt NOUN
use NOUN
and CCONJ
adult NOUN
- PUNCT
reported VERB
consistent ADJ
use NOUN
of ADP
occupant ADJ
restraints NOUN
for ADP
the DET
youngest ADJ
child NOUN
aged VERB
less ADJ
than SCONJ
11 NUM
years NOUN
within ADP
a DET
household NOUN
, PUNCT
CDC PROPN
analyzed VERB
data NOUN
obtained VERB
from ADP
the DET
Behavioral PROPN
Risk PROPN
Factor PROPN
Surveillance PROPN
System PROPN
( PUNCT
BRFSS PROPN
) PUNCT
during ADP
1988 NUM
and CCONJ
1989 NUM
. PUNCT
This DET
report NOUN
summarizes VERB
the DET
findings NOUN
from ADP
this DET
study NOUN
. PUNCT
      SPACE
Data PROPN
were AUX
available ADJ
for ADP
20,905 NUM
respondents NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
18 NUM
years NOUN
in ADP
11 NUM
states NOUN
* PUNCT
that PRON
participated VERB
in ADP
BRFSS PROPN
-- PUNCT
a DET
population NOUN
- PUNCT
based VERB
, PUNCT
random ADJ
- PUNCT
digit NOUN
- PUNCT
dialed VERB
telephone NOUN
survey NOUN
-- PUNCT
and CCONJ
administered VERB
a DET
standard ADJ
Injury PROPN
Control PROPN
and CCONJ
Child PROPN
Safety PROPN
Module PROPN
developed VERB
by ADP
CDC PROPN
. PUNCT
Of ADP
these DET
respondents NOUN
, PUNCT
5499 NUM
( PUNCT
26 NUM
% NOUN
) PUNCT
had AUX
a DET
child NOUN
aged VERB
less ADJ
than SCONJ
11 NUM
years NOUN
in ADP
their PRON
household NOUN
. PUNCT
Each DET
respondent NOUN
was AUX
asked VERB
to PART
specify VERB
the DET
child NOUN
's PART
age NOUN
and CCONJ
the DET
frequency NOUN
of ADP
restraint NOUN
use NOUN
for ADP
that DET
child NOUN
. PUNCT
The DET
two NUM
categories NOUN
of ADP
child NOUN
restraint NOUN
and CCONJ
adult NOUN
safety NOUN
- PUNCT
belt NOUN
use NOUN
in ADP
this DET
analysis NOUN
were AUX
1 NUM
) PUNCT
consistent ADJ
use NOUN
( PUNCT
i.e. X
, PUNCT
always ADV
buckle VERB
up ADP
) PUNCT
and CCONJ
2 X
) PUNCT
less ADJ
than SCONJ
consistent ADJ
use NOUN
( PUNCT
i.e. X
, PUNCT
almost ADV
always ADV
, PUNCT
sometimes ADV
, PUNCT
rarely ADV
, PUNCT
or CCONJ
never ADV
buckle VERB
up ADP
) PUNCT
. PUNCT
Data NOUN
were AUX
weighted VERB
to PART
provide VERB
estimates NOUN
representative ADJ
of ADP
each DET
state NOUN
. PUNCT
Software NOUN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
( PUNCT
7 NUM
) PUNCT
was AUX
used VERB
to PART
calculate VERB
point NOUN
estimates NOUN
and CCONJ
confidence NOUN
intervals NOUN
. PUNCT
Statistically ADV
significant ADJ
differences NOUN
were AUX
defined VERB
by ADP
p NOUN
values NOUN
of ADP
less ADJ
than SCONJ
0.05 NUM
. PUNCT
      SPACE
Each DET
of ADP
the DET
11 NUM
states NOUN
had AUX
some DET
type NOUN
of ADP
child NOUN
restraint NOUN
law NOUN
. PUNCT
Of ADP
these DET
, PUNCT
six NUM
( PUNCT
Arizona PROPN
, PUNCT
Kentucky PROPN
, PUNCT
Maine PROPN
, PUNCT
Nebraska PROPN
, PUNCT
Rhode PROPN
Island PROPN
, PUNCT
and CCONJ
West PROPN
Virginia PROPN
) PUNCT
had AUX
no DET
law NOUN
requiring VERB
adults NOUN
to PART
use VERB
safety NOUN
belts NOUN
; PUNCT
four NUM
( PUNCT
Idaho PROPN
, PUNCT
Maryland PROPN
, PUNCT
Pennsylvania PROPN
, PUNCT
and CCONJ
Washington PROPN
) PUNCT
had AUX
a DET
secondary ADJ
enforcement NOUN
mandatory ADJ
safety NOUN
- PUNCT
belt NOUN
law NOUN
( PUNCT
i.e. X
, PUNCT
a DET
vehicle NOUN
had AUX
to PART
be AUX
stopped VERB
for ADP
a DET
traffic NOUN
violation NOUN
before ADP
a DET
citation NOUN
for ADP
nonuse NOUN
of ADP
safety NOUN
belts NOUN
could AUX
be AUX
issued VERB
) PUNCT
; PUNCT
and CCONJ
one NUM
state NOUN
( PUNCT
New PROPN
York PROPN
) PUNCT
had AUX
a DET
primary ADJ
enforcement NOUN
mandatory ADJ
safety NOUN
- PUNCT
belt NOUN
law NOUN
( PUNCT
i.e. X
, PUNCT
vehicles NOUN
could AUX
be AUX
stopped VERB
for ADP
a DET
safety NOUN
- PUNCT
belt NOUN
law NOUN
violation NOUN
alone ADV
) PUNCT
. PUNCT
In ADP
nine NUM
states NOUN
, PUNCT
child NOUN
- PUNCT
passenger NOUN
protection NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
17Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993laws PROPN
included VERB
all DET
children NOUN
aged VERB
less ADJ
than SCONJ
5 NUM
years NOUN
, PUNCT
but CCONJ
the DET
other ADJ
two NUM
states NOUN
used VERB
both DET
age NOUN
and CCONJ
size NOUN
of ADP
the DET
child NOUN
as SCONJ
criteria NOUN
for ADP
mandatory ADJ
restraint NOUN
use NOUN
. PUNCT
The DET
analysis NOUN
in ADP
this DET
report NOUN
subgrouped VERB
states NOUN
into ADP
1 NUM
) PUNCT
those DET
having VERB
a DET
law NOUN
requiring VERB
adult NOUN
safety NOUN
- PUNCT
belt NOUN
use NOUN
( PUNCT
law NOUN
states NOUN
) PUNCT
, PUNCT
and CCONJ
2 X
) PUNCT
those DET
without ADP
such DET
a DET
law NOUN
( PUNCT
no DET
- PUNCT
law NOUN
states NOUN
) PUNCT
. PUNCT
      SPACE
Overall PROPN
, PUNCT
21 NUM
% NOUN
of ADP
children NOUN
aged VERB
less ADJ
than SCONJ
11 NUM
years NOUN
reportedly ADV
were AUX
not PART
consistently ADV
restrained VERB
during ADP
automobile NOUN
travel NOUN
. PUNCT
Both DET
child NOUN
restraint NOUN
use NOUN
and CCONJ
adult NOUN
restraint NOUN
use NOUN
were AUX
significantly ADV
higher ADJ
( PUNCT
p NOUN
less ADJ
than SCONJ
0.05 NUM
, PUNCT
chi PROPN
- PUNCT
square ADJ
test NOUN
) PUNCT
in ADP
law NOUN
states NOUN
than SCONJ
in ADP
no DET
- PUNCT
law NOUN
states NOUN
( PUNCT
81.1 NUM
% NOUN
versus ADP
74.3 NUM
% NOUN
and CCONJ
58.7 NUM
% NOUN
versus ADP
43.2 NUM
% NOUN
, PUNCT
respectively ADV
) PUNCT
. PUNCT
      SPACE
High ADJ
rates NOUN
of ADP
restraint NOUN
use NOUN
for ADP
children NOUN
aged VERB
less ADV
than SCONJ
or CCONJ
equal ADJ
to ADP
1 NUM
year NOUN
were AUX
reported VERB
by ADP
both DET
adults NOUN
indicating VERB
consistent ADJ
and CCONJ
less ADJ
than SCONJ
consistent ADJ
safety NOUN
- PUNCT
belt NOUN
use NOUN
( PUNCT
Figure NOUN
1 NUM
) PUNCT
. PUNCT
Adults NOUN
with ADP
consistent ADJ
use NOUN
reported VERB
high ADJ
rates NOUN
of ADP
child NOUN
- PUNCT
occupant NOUN
restraint NOUN
use NOUN
regardless ADV
of ADP
the DET
child NOUN
's PART
age NOUN
( PUNCT
range NOUN
: PUNCT
95.5 NUM
% NOUN
for ADP
1-year NUM
- PUNCT
olds NOUN
to ADP
84.7 NUM
% NOUN
for ADP
10-year NUM
- PUNCT
olds NOUN
) PUNCT
. PUNCT
In ADP
comparison NOUN
, PUNCT
for ADP
adults NOUN
reporting VERB
less ADJ
than SCONJ
consistent ADJ
safety NOUN
- PUNCT
belt NOUN
use NOUN
, PUNCT
the DET
rate NOUN
of ADP
child NOUN
- PUNCT
occupant NOUN
restraint NOUN
use NOUN
declined VERB
sharply ADV
by ADP
the DET
age NOUN
of ADP
the DET
child NOUN
( PUNCT
range NOUN
: PUNCT
93.1 NUM
% NOUN
for ADP
1-year NUM
- PUNCT
olds NOUN
to ADP
28.8 NUM
% NOUN
for ADP
10-year NUM
- PUNCT
olds NOUN
) PUNCT
. PUNCT
When ADV
comparing VERB
children NOUN
of ADP
consistent ADJ
adult NOUN
safety NOUN
- PUNCT
belt NOUN
users NOUN
with ADP
children NOUN
of ADP
less ADJ
than SCONJ
consistent ADJ
adult NOUN
safety NOUN
- PUNCT
belt NOUN
users NOUN
, PUNCT
95 NUM
% NOUN
confidence NOUN
intervals NOUN
overlap VERB
for ADP
the DET
two NUM
youngest ADJ
age NOUN
groups NOUN
( PUNCT
i.e. X
, PUNCT
aged VERB
less ADJ
than SCONJ
1 NUM
and CCONJ
1 NUM
year NOUN
) PUNCT
. PUNCT
      SPACE
Reported VERB
child NOUN
- PUNCT
occupant NOUN
restraint NOUN
use NOUN
in ADP
law NOUN
states NOUN
generally ADV
exceeded VERB
that SCONJ
in ADP
no DET
- PUNCT
law NOUN
states NOUN
, PUNCT
regardless ADV
of ADP
age NOUN
of ADP
child NOUN
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
In ADP
addition NOUN
, PUNCT
higher ADJ
adult NOUN
educational ADJ
attainment NOUN
was AUX
significantly ADV
associated VERB
with ADP
increased VERB
restraint NOUN
use NOUN
for ADP
children NOUN
, PUNCT
a DET
factor NOUN
that PRON
has AUX
also ADV
been AUX
associated VERB
with ADP
increased VERB
adult NOUN
safety NOUN
- PUNCT
belt NOUN
use NOUN
( PUNCT
8) NUM
. PUNCT
Reported VERB
by ADP
: PUNCT
National PROPN
Center PROPN
for ADP
Injury PROPN
Prevention PROPN
and CCONJ
Control PROPN
; PUNCT
National PROPN
Center PROPN
for ADP
Chronic PROPN
Disease PROPN
Prevention PROPN
and CCONJ
Health PROPN
Promotion PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
findings NOUN
in ADP
this DET
report NOUN
are AUX
consistent ADJ
with ADP
others NOUN
indicating VERB
that SCONJ
adults NOUN
who PRON
do AUX
not PART
use VERB
safety NOUN
belts NOUN
themselves PRON
are AUX
less ADV
likely ADJ
to PART
employ VERB
occupant ADJ
restraints NOUN
for ADP
their PRON
children NOUN
( PUNCT
6,9 NUM
) PUNCT
. PUNCT
Because SCONJ
these DET
nonbelted VERB
adults NOUN
are AUX
at ADP
increased VERB
risk NOUN
of ADP
crashing VERB
and CCONJ
more ADV
likely ADJ
to PART
exhibit VERB
other ADJ
risk NOUN
- PUNCT
taking VERB
behaviors NOUN
, PUNCT
children NOUN
traveling VERB
with ADP
them PRON
may AUX
be AUX
at ADP
greater ADJ
risk NOUN
for ADP
motor NOUN
- PUNCT
vehicle NOUN
injury NOUN
( PUNCT
10 NUM
) PUNCT
. PUNCT
      SPACE
Educational PROPN
attainment NOUN
of ADP
adult NOUN
respondents NOUN
was AUX
inversely ADV
associated VERB
with ADP
child NOUN
restraint NOUN
use NOUN
in ADP
this DET
report NOUN
. PUNCT
Accordingly ADV
, PUNCT
occupant NOUN
- PUNCT
protection NOUN
programs NOUN
should AUX
be AUX
promoted VERB
among ADP
parents NOUN
with ADP
low ADJ
educational ADJ
attainment NOUN
. PUNCT
Because SCONJ
low ADJ
educational ADJ
attainment NOUN
is AUX
often ADV
associated VERB
with ADP
low ADJ
socioeconomic ADJ
status NOUN
, PUNCT
such ADJ
programs NOUN
should AUX
be AUX
offered VERB
to ADP
adults NOUN
through ADP
health NOUN
- PUNCT
care NOUN
facilities NOUN
that PRON
serve VERB
low ADJ
- PUNCT
income NOUN
communities NOUN
or CCONJ
through ADP
federal ADJ
programs NOUN
( PUNCT
i.e. X
, PUNCT
Head PROPN
Start PROPN
) PUNCT
that PRON
are AUX
directed VERB
at ADP
parents NOUN
with ADP
young ADJ
children NOUN
. PUNCT
      SPACE
Injury PROPN
- PUNCT
prevention NOUN
programs NOUN
emphasize VERB
restraining VERB
young ADJ
children NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
however ADV
, PUNCT
efforts NOUN
must AUX
be AUX
intensified VERB
to PART
protect VERB
child NOUN
occupants NOUN
as SCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
18Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993they NUM
become VERB
older ADJ
. PUNCT
Parents NOUN
, PUNCT
especially ADV
those DET
with ADP
low ADJ
educational ADJ
attainment NOUN
, PUNCT
those DET
who PRON
do AUX
not PART
consistently ADV
wear VERB
safety NOUN
belts NOUN
, PUNCT
and CCONJ
those DET
from ADP
states NOUN
that PRON
do AUX
not PART
have AUX
mandatory ADJ
safety NOUN
- PUNCT
belt NOUN
use NOUN
laws NOUN
, PUNCT
should AUX
be AUX
encouraged VERB
to PART
wear VERB
safety NOUN
belts NOUN
and CCONJ
to PART
protect VERB
their PRON
children NOUN
by ADP
using VERB
approved VERB
child NOUN
safety NOUN
seats NOUN
and CCONJ
safety NOUN
belts NOUN
. PUNCT
Finally ADV
, PUNCT
the DET
increased VERB
use NOUN
of ADP
restraints NOUN
among ADP
children NOUN
may AUX
increase VERB
their PRON
likelihood NOUN
of ADP
using VERB
safety NOUN
belts NOUN
when ADV
they PRON
become VERB
teenagers NOUN
-- PUNCT
the DET
age NOUN
group NOUN
characterized VERB
by ADP
the DET
lowest ADJ
rate NOUN
of ADP
safety NOUN
- PUNCT
belt NOUN
use NOUN
and CCONJ
the DET
highest ADJ
rate NOUN
of ADP
fatal ADJ
crashes NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
References1 PROPN
. PUNCT
CDC PROPN
. PUNCT
Childhood NOUN
injuries NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Am AUX
J PROPN
Dis PROPN
Child PROPN
1990;144:627 NUM
- SYM
46 NUM
. PUNCT
2 NUM
. PUNCT
Partyka PROPN
SC PROPN
. PUNCT
Papers NOUN
on ADP
child NOUN
restraints NOUN
: PUNCT
effectiveness NOUN
and CCONJ
use NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Transportation PROPN
, PUNCT
National PROPN
Highway PROPN
Traffic PROPN
Safety PROPN
Administration PROPN
, PUNCT
1988 NUM
; PUNCT
report VERB
no INTJ
. PUNCT
DOT PROPN
- PUNCT
HS-807 PROPN
- PUNCT
286 NUM
. NOUN
3 NUM
. PUNCT
Guerin ADJ
D NOUN
, PUNCT
MacKinnon PROPN
D. PROPN
An DET
assessment NOUN
of ADP
the DET
California PROPN
child NOUN
passenger NOUN
restraint NOUN
requirement NOUN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1985;75:142 PROPN
- SYM
4 NUM
. PUNCT
4 NUM
. PUNCT
Hall PROPN
W PROPN
, PUNCT
Orr PROPN
B PROPN
, PUNCT
Suttles PROPN
D PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Progress NOUN
report NOUN
on ADP
increasing VERB
child NOUN
restraint NOUN
usage NOUN
through ADP
local ADJ
education NOUN
and CCONJ
distribution NOUN
programs NOUN
. PUNCT
Chapel PROPN
Hill PROPN
, PUNCT
North PROPN
Carolina PROPN
: PUNCT
University PROPN
of ADP
North PROPN
Carolina PROPN
at ADP
Chapel PROPN
Hill PROPN
, PUNCT
Highway PROPN
Safety PROPN
Research PROPN
Center PROPN
, PUNCT
1983 NUM
. NOUN
5 NUM
. PUNCT
National PROPN
Highway PROPN
Traffic PROPN
Safety PROPN
Administration PROPN
. PUNCT
Occupant ADJ
protection NOUN
trends VERB
in ADP
19 NUM
cities NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Transportation PROPN
, PUNCT
National PROPN
Highway PROPN
Traffic PROPN
Safety PROPN
Administration PROPN
, PUNCT
1991 NUM
. PUNCT
6 NUM
. PUNCT
Wagenaar PROPN
AC PROPN
, PUNCT
Molnar PROPN
LJ PROPN
, PUNCT
Margolis PROPN
LH PROPN
. PUNCT
Characteristics NOUN
of ADP
child NOUN
safety NOUN
seat NOUN
users NOUN
. PUNCT
Accid PROPN
Anal PROPN
Prev PROPN
1988;20:311 PROPN
- PUNCT
22 NUM
. PUNCT
7 NUM
. PUNCT
Shah PROPN
BV PROPN
, PUNCT
Barnwell PROPN
BG PROPN
, PUNCT
Hunt PROPN
PN PROPN
, PUNCT
LaVange PROPN
LM PROPN
. PUNCT
Software NOUN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
version NOUN
5.50 NUM
Software PROPN
documentation NOUN
. PUNCT
Research PROPN
Triangle PROPN
Park PROPN
, PUNCT
North PROPN
Carolina PROPN
: PUNCT
Research PROPN
Triangle PROPN
Institute PROPN
, PUNCT
1991 NUM
. PUNCT
8 NUM
. PUNCT
Lund NOUN
AK PROPN
. PUNCT
Voluntary ADJ
seat NOUN
belt NOUN
use NOUN
among ADP
U.S. PROPN
drivers NOUN
: PUNCT
geographic ADJ
, PUNCT
socioeconomic ADJ
and CCONJ
demographic ADJ
variation NOUN
. PUNCT
Accid PROPN
Anal PROPN
Prev PROPN
1986;18:43 NUM
- SYM
50 NUM
. PUNCT
9 NUM
. PUNCT
Margolis PROPN
LH PROPN
, PUNCT
Wagenaar PROPN
AC PROPN
, PUNCT
Molnar PROPN
LJ PROPN
. PUNCT
Use NOUN
and CCONJ
misuse NOUN
of ADP
automobile NOUN
child NOUN
restraint NOUN
devices NOUN
. PUNCT
Am AUX
J PROPN
Dis PROPN
Child PROPN
1992;146:361 NUM
- SYM
6 NUM
. PUNCT
10 NUM
. PUNCT
Hunter PROPN
WW PROPN
, PUNCT
Stutts PROPN
JC PROPN
, PUNCT
Stewart PROPN
JR PROPN
, PUNCT
Rodgman PROPN
EA PROPN
. PUNCT
Characteristics NOUN
of ADP
seatbelt NOUN
users NOUN
and CCONJ
non NOUN
- NOUN
users NOUN
in ADP
a DET
state NOUN
with ADP
a DET
mandatory ADJ
use NOUN
law NOUN
. PUNCT
Health PROPN
Education PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
19Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Research PROPN
1990;5:161 NUM
- SYM
73 NUM
. PUNCT
* PUNCT
Arizona PROPN
, PUNCT
Idaho PROPN
, PUNCT
Kentucky PROPN
, PUNCT
Maine PROPN
, PUNCT
Maryland PROPN
, PUNCT
Nebraska PROPN
, PUNCT
New PROPN
York PROPN
, PUNCT
Pennsylvania PROPN
, PUNCT
Rhode PROPN
Island PROPN
, PUNCT
Washington PROPN
, PUNCT
and CCONJ
West PROPN
Virginia PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
20Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                   SPACE
Publication PROPN
of ADP
CDC PROPN
Surveillance PROPN
Summaries PROPN
                   SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
Since SCONJ
1983 NUM
, PUNCT
CDC PROPN
has AUX
published VERB
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
under ADP
separate ADJ
cover NOUN
as SCONJ
part NOUN
of ADP
the DET
MMWR PROPN
series NOUN
. PUNCT
Each DET
report NOUN
published VERB
in ADP
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
focuses VERB
on ADP
public ADJ
health NOUN
surveillance NOUN
; PUNCT
surveillance NOUN
findings NOUN
are AUX
reported VERB
for ADP
a DET
broad ADJ
range NOUN
of ADP
risk NOUN
factors NOUN
and CCONJ
health NOUN
conditions NOUN
. PUNCT
      SPACE
Summaries PROPN
for ADP
each DET
of ADP
the DET
reports NOUN
published VERB
in ADP
the DET
most ADV
recent ADJ
( PUNCT
March PROPN
19 NUM
, PUNCT
1993 NUM
) PUNCT
issue NOUN
of ADP
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
( PUNCT
1 NUM
) PUNCT
are AUX
provided VERB
below ADV
. PUNCT
All DET
subscribers NOUN
to ADP
MMWR PROPN
receive VERB
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
, PUNCT
as ADV
well ADV
as SCONJ
the DET
MMWR PROPN
Recommendations PROPN
and CCONJ
Reports PROPN
, PUNCT
as SCONJ
part NOUN
of ADP
their PRON
subscriptions NOUN
. PUNCT
SURVEILLANCE PROPN
FOR ADP
AND CCONJ
COMPARISON NOUN
OF ADP
BIRTH PROPN
DEFECT PROPN
PREVALENCES NOUN
                               SPACE
IN ADP
TWO NUM
GEOGRAPHIC PROPN
                         SPACE
AREAS NOUN
-- PUNCT
UNITED PROPN
STATES PROPN
, PUNCT
1983 NUM
- SYM
88 NUM
      SPACE
Problem PROPN
/ SYM
Condition PROPN
: PUNCT
CDC PROPN
and CCONJ
some DET
states NOUN
have AUX
developed VERB
surveillance NOUN
systems NOUN
to PART
monitor VERB
the DET
birth NOUN
prevalence NOUN
of ADP
major ADJ
defects NOUN
. PUNCT
      SPACE
Reporting PROPN
Period PROPN
Covered PROPN
: PUNCT
This DET
report NOUN
covers VERB
birth NOUN
defects VERB
surveillance NOUN
in ADP
metropolitan ADJ
Atlanta PROPN
, PUNCT
Georgia PROPN
, PUNCT
and CCONJ
selected VERB
jurisdictions NOUN
in ADP
California PROPN
for ADP
the DET
years NOUN
1983 NUM
- SYM
1988 NUM
. PUNCT
      SPACE
Description PROPN
of ADP
System PROPN
: PUNCT
The DET
California PROPN
Birth PROPN
Defects VERB
Monitoring PROPN
Program PROPN
and CCONJ
the DET
Metropolitan PROPN
Atlanta PROPN
Congenital PROPN
Defects PROPN
Program PROPN
are AUX
two NUM
population NOUN
- PUNCT
based VERB
surveillance NOUN
systems NOUN
that PRON
employ VERB
similar ADJ
data NOUN
collection NOUN
methods NOUN
. PUNCT
The DET
prevalence NOUN
estimates VERB
for ADP
44 NUM
diagnostic ADJ
categories NOUN
were AUX
based VERB
on ADP
data NOUN
for ADP
1983 NUM
- SYM
1988 NUM
for ADP
639,837 NUM
births NOUN
in ADP
California PROPN
and CCONJ
152,970 NUM
births NOUN
in ADP
metropolitan ADJ
Atlanta PROPN
. PUNCT
The DET
prevalences NOUN
in ADP
the DET
two NUM
areas NOUN
were AUX
compared VERB
, PUNCT
adjusting VERB
for ADP
race NOUN
, PUNCT
sex NOUN
, PUNCT
and CCONJ
maternal ADJ
age NOUN
by ADP
using VERB
Poisson PROPN
regression NOUN
. PUNCT
      SPACE
Results VERB
: PUNCT
Regional ADJ
differences NOUN
in ADP
the DET
prevalence NOUN
of ADP
aortic ADJ
stenosis NOUN
, PUNCT
fetal ADJ
alcohol NOUN
syndrome NOUN
, PUNCT
hip NOUN
dislocation NOUN
/ SYM
dysplasia PROPN
, PUNCT
microcephalus PROPN
, PUNCT
obstruction NOUN
of ADP
the DET
kidney NOUN
/ SYM
ureter NOUN
, PUNCT
and CCONJ
scoliosis NOUN
/ SYM
lordosis NOUN
may AUX
be AUX
attributable ADJ
to ADP
general ADJ
diagnostic ADJ
variability NOUN
. PUNCT
However ADV
, PUNCT
differences NOUN
in ADP
the DET
prevalences NOUN
of ADP
arm NOUN
/ SYM
hand NOUN
limb NOUN
reduction NOUN
, PUNCT
encephalocele PROPN
, PUNCT
spina PROPN
bifida PROPN
, PUNCT
or CCONJ
trisomy NOUN
21 NUM
( PUNCT
Down ADP
syndrome NOUN
) PUNCT
are AUX
probably ADV
not PART
attributable ADJ
to ADP
differences NOUN
in ADP
ascertainment NOUN
, PUNCT
because SCONJ
these DET
defects NOUN
are AUX
relatively ADV
easy ADJ
to PART
diagnose VERB
. PUNCT
      SPACE
Interpretation PROPN
: PUNCT
Regional ADJ
differences NOUN
in ADP
prenatal ADJ
diagnosis NOUN
and CCONJ
pregnancy NOUN
termination NOUN
may AUX
affect VERB
prevalences NOUN
of ADP
trisomy NOUN
21 NUM
and CCONJ
spina ADJ
bifida NOUN
. PUNCT
However ADV
, PUNCT
the DET
reason NOUN
for ADP
differences NOUN
in ADP
arm NOUN
/ SYM
hand NOUN
reduction NOUN
is AUX
unknown ADJ
, PUNCT
but CCONJ
may AUX
be AUX
related VERB
to ADP
variability NOUN
in ADP
environmental ADJ
exposure NOUN
, PUNCT
heterogeneity NOUN
in ADP
the DET
gene NOUN
pool NOUN
, PUNCT
or CCONJ
random ADJ
variation NOUN
. PUNCT
      SPACE
Actions PROPN
Taken PROPN
: PUNCT
Because SCONJ
of ADP
the DET
similarities NOUN
of ADP
these DET
data NOUN
bases NOUN
, PUNCT
several ADJ
collaborative ADJ
studies NOUN
are AUX
being AUX
implemented VERB
. PUNCT
In ADP
particular ADJ
, PUNCT
the DET
differences NOUN
in ADP
the DET
birth NOUN
prevalence NOUN
of ADP
spina NOUN
bifida PROPN
and CCONJ
Down PROPN
syndrome NOUN
will AUX
focus VERB
attention NOUN
on ADP
the DET
impact NOUN
of ADP
prenatal ADJ
diagnosis NOUN
. PUNCT
Authors NOUN
: PUNCT
Jane PROPN
Schulman PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Nancy PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
21Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Jensvold NUM
, PUNCT
M.P.H PROPN
, PUNCT
Gary PROPN
M. PROPN
Shaw PROPN
, PUNCT
Dr PROPN
. PUNCT
P.H. PROPN
, PUNCT
California PROPN
Birth PROPN
Defects VERB
Monitoring PROPN
Program PROPN
, PUNCT
March PROPN
of ADP
Dimes PROPN
Birth PROPN
Defects PROPN
Foundation PROPN
. PUNCT
Larry PROPN
D. PROPN
Edmonds PROPN
, PUNCT
M.S.P.H. PROPN
, PUNCT
Anne PROPN
B. PROPN
McClearn PROPN
, PUNCT
Division PROPN
of ADP
Birth PROPN
Defects PROPN
and CCONJ
Developmental PROPN
Disabilities PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Environmental PROPN
Health PROPN
, PUNCT
CDC PROPN
. PUNCT
                       SPACE
INFLUENZA PROPN
-- PUNCT
UNITED PROPN
STATES PROPN
, PUNCT
1988 NUM
- SYM
89 NUM
     SPACE
Problem PROPN
/ SYM
Condition PROPN
: PUNCT
CDC PROPN
monitors VERB
the DET
emergence NOUN
and CCONJ
spread NOUN
of ADP
new ADJ
influenza NOUN
virus NOUN
variants NOUN
and CCONJ
the DET
impact NOUN
of ADP
influenza NOUN
on ADP
morbidity NOUN
and CCONJ
mortality NOUN
annually ADV
from ADP
October PROPN
through ADP
May. PROPN
      SPACE
Reporting PROPN
Period PROPN
Covered VERB
: PUNCT
This DET
report NOUN
covers VERB
U.S. PROPN
influenza NOUN
surveillance NOUN
conducted VERB
from ADP
October PROPN
1988 NUM
through ADP
May PROPN
1989 NUM
. PUNCT
      SPACE
Description PROPN
of ADP
System PROPN
: PUNCT
Weekly PROPN
reports VERB
from ADP
the DET
vital ADJ
statistics NOUN
offices NOUN
of ADP
121 NUM
cities NOUN
provided VERB
an DET
index NOUN
of ADP
influenza PROPN
's PART
impact NOUN
on ADP
mortality NOUN
; PUNCT
58 NUM
WHO PRON
collaborating VERB
laboratories NOUN
reported VERB
weekly ADJ
identification NOUN
of ADP
influenza NOUN
viruses NOUN
; PUNCT
weekly ADJ
morbidity NOUN
reports NOUN
were AUX
received VERB
both DET
from ADP
the DET
state NOUN
and CCONJ
territorial ADJ
epidemiologists NOUN
and CCONJ
from ADP
153 NUM
sentinel NOUN
family NOUN
practice NOUN
physicians NOUN
. PUNCT
Nonsystematic ADJ
reports NOUN
of ADP
outbreaks NOUN
and CCONJ
unusual ADJ
illnesses NOUN
were AUX
received VERB
throughout ADP
the DET
year NOUN
. PUNCT
      SPACE
Results VERB
: PUNCT
During ADP
the DET
1988 NUM
- SYM
89 NUM
influenza NOUN
season NOUN
, PUNCT
influenza PROPN
A(H1N1 PROPN
) PUNCT
and CCONJ
B NOUN
viruses NOUN
were AUX
identified VERB
in ADP
the DET
United PROPN
States PROPN
with ADP
essentially ADV
equal ADJ
frequency NOUN
overall ADV
, PUNCT
although SCONJ
both CCONJ
regional ADJ
and CCONJ
temporal ADJ
patterns NOUN
of ADP
predominance NOUN
shifted VERB
over ADP
the DET
course NOUN
of ADP
the DET
season NOUN
. PUNCT
Throughout ADP
the DET
season NOUN
increases NOUN
in ADP
the DET
indices NOUN
of ADP
influenza NOUN
morbidity NOUN
in ADP
regions NOUN
where ADV
influenza NOUN
A(H1N1 PROPN
) PUNCT
predominated VERB
were AUX
similar ADJ
to ADP
increases NOUN
in ADP
regions NOUN
where ADV
influenza NOUN
B PROPN
predominated VERB
. PUNCT
Only ADV
7 NUM
% NOUN
of ADP
identified VERB
viruses NOUN
were AUX
influenza NOUN
A(H3N2 PROPN
) PUNCT
, PUNCT
but CCONJ
isolations NOUN
of ADP
this DET
subtype NOUN
increased VERB
as SCONJ
the DET
season NOUN
waned VERB
, PUNCT
and CCONJ
it PRON
subsequently ADV
predominated VERB
during ADP
the DET
1989 NUM
- SYM
90 NUM
season NOUN
. PUNCT
During ADP
the DET
1988 NUM
- SYM
89 NUM
season NOUN
outbreaks NOUN
in ADP
nursing NOUN
homes NOUN
were AUX
reported VERB
in ADP
association NOUN
with ADP
influenza PROPN
B PROPN
and CCONJ
A(H3N2 PROPN
) PUNCT
but CCONJ
not PART
influenza NOUN
A(H1N1 PUNCT
) PUNCT
. PUNCT
      SPACE
Interpretation PROPN
: PUNCT
The DET
alternating VERB
temporal ADJ
and CCONJ
geographic ADJ
predominance NOUN
of ADP
influenza NOUN
strains VERB
A(H1N1 PROPN
) PUNCT
and CCONJ
B NOUN
during ADP
the DET
1988 NUM
- SYM
89 NUM
season NOUN
emphasizes VERB
the DET
importance NOUN
of ADP
continual ADJ
attention NOUN
to ADP
regional ADJ
viral ADJ
strain NOUN
surveillance NOUN
, PUNCT
since SCONJ
amantadine NOUN
is AUX
effective ADJ
only ADV
for ADP
treatment NOUN
and CCONJ
prophylaxis PROPN
of ADP
influenza PROPN
A. PROPN
      SPACE
Actions PROPN
Taken VERB
: PUNCT
Weekly ADJ
interim ADJ
analyses NOUN
of ADP
surveillance NOUN
data NOUN
produced VERB
throughout ADP
the DET
season NOUN
allow VERB
physicians NOUN
and CCONJ
public ADJ
health NOUN
officials NOUN
to PART
make VERB
informed ADJ
choices NOUN
regarding VERB
appropriate ADJ
use NOUN
of ADP
amantadine NOUN
. PUNCT
CDC PROPN
's PART
annual ADJ
surveillance NOUN
allows VERB
the DET
observed ADJ
viral ADJ
variants NOUN
to PART
be AUX
assessed VERB
as SCONJ
candidates NOUN
for ADP
inclusion NOUN
as SCONJ
components NOUN
in ADP
vaccines NOUN
used VERB
in ADP
subsequent ADJ
influenza NOUN
seasons NOUN
. PUNCT
Authors NOUN
: PUNCT
Louisa PROPN
E. PROPN
Chapman PROPN
, PUNCT
M.D. PROPN
, PUNCT
M.S.P.H. PROPN
, PUNCT
Epidemiology PROPN
Activity PROPN
, PUNCT
Office PROPN
of ADP
the DET
Director PROPN
, PUNCT
Division PROPN
of ADP
Viral PROPN
and CCONJ
Rickettsial PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
; PUNCT
Margaret PROPN
A. PROPN
Tipple PROPN
, PUNCT
M.D. PROPN
, PUNCT
Division PROPN
of ADP
Quarantine PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Prevention PROPN
Services PROPN
, PUNCT
CDC PROPN
. PUNCT
Suzanne PROPN
Gaventa PROPN
Folger PROPN
, PUNCT
M.P.H. PROPN
, PUNCT
Health PROPN
Investigations PROPN
Branch PROPN
, PUNCT
Division PROPN
of ADP
Health PROPN
Studies PROPN
, PUNCT
Agency PROPN
for ADP
Toxic PROPN
Substances PROPN
and CCONJ
Disease PROPN
Registry PROPN
. PUNCT
Maurice PROPN
Harmon PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Connaught PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
22Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Laboratories NOUN
, PUNCT
Pasteur PROPN
- PUNCT
Mirieux PROPN
Company PROPN
, PUNCT
Swiftwater PROPN
, PUNCT
Pennsylvania PROPN
. PUNCT
Alan PROPN
P. PROPN
Kendal PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
European PROPN
Regional PROPN
Office PROPN
, PUNCT
World PROPN
Health PROPN
Organization PROPN
, PUNCT
Copenhagen PROPN
, PUNCT
Denmark PROPN
. PUNCT
Nancy PROPN
J. PROPN
Cox PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Influenza PROPN
Branch PROPN
, PUNCT
Division PROPN
of ADP
Viral PROPN
and CCONJ
Rickettsial PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
; PUNCT
Lawrence PROPN
B. PROPN
Schonberger PROPN
, PUNCT
M.D. PROPN
, PUNCT
M.P.H. PROPN
, PUNCT
Epidemiology PROPN
Activity PROPN
, PUNCT
Office PROPN
of ADP
the DET
Director PROPN
, PUNCT
Division PROPN
of ADP
Viral PROPN
and CCONJ
Rickettsial PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
Reference1 NOUN
. PUNCT
CDC PROPN
. PUNCT
CDC PROPN
surveillance NOUN
summaries NOUN
( PUNCT
March PROPN
19 NUM
) PUNCT
. PUNCT
MMWR PROPN
1993;42(no NUM
. PUNCT
SS-1).HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
23Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                            SPACE
Clinical PROPN
Research PROPN
News PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                          SPACE
Clinical PROPN
Research PROPN
News PROPN
for ADP
                              SPACE
Arizona PROPN
Physicians PROPN
                 SPACE
Vol PROPN
. PROPN
4 NUM
, PUNCT
No NOUN
. NOUN
4 NUM
, PUNCT
April PROPN
1993 NUM
     SPACE
Tucson PROPN
, PUNCT
ArizonaPublished PROPN
monthly ADV
by ADP
the DET
Office PROPN
of ADP
Public PROPN
Affairs PROPN
at ADP
The DET
University PROPN
of ADP
Arizona PROPN
                            SPACE
Health PROPN
Sciences PROPN
Center PROPN
. PUNCT
                      SPACE
Copyright PROPN
1993 NUM
, PUNCT
The DET
University PROPN
of ADP
Arizona PROPN
                 SPACE
High PROPN
Tech PROPN
Assisted PROPN
Reproductive PROPN
TechnologiesFollowing PROPN
the DET
birth NOUN
of ADP
the DET
first ADJ
in ADP
vitro X
fertilization NOUN
- PUNCT
embryo NOUN
transfer NOUN
( PUNCT
IVF PROPN
- PUNCT
ET PROPN
) PUNCT
baby NOUN
in ADP
1978 NUM
, PUNCT
a DET
host NOUN
of ADP
assisted VERB
reproductive ADJ
technologies NOUN
have AUX
been AUX
developed VERB
that PRON
include VERB
IVF PROPN
- PUNCT
ET PROPN
, PUNCT
gamete ADJ
intrafallopian ADJ
tube NOUN
transfer NOUN
( PUNCT
GIFT PROPN
) PUNCT
, PUNCT
embryo NOUN
cryopreservation NOUN
( PUNCT
freezing NOUN
) PUNCT
and CCONJ
gamete ADJ
micromanipulation NOUN
. PUNCT
Together ADV
, PUNCT
these DET
technologies NOUN
are AUX
referred VERB
to ADP
as SCONJ
the DET
high ADJ
- PUNCT
tech NOUN
assisted VERB
reproductive ADJ
technology NOUN
( PUNCT
ART NOUN
) PUNCT
procedures NOUN
. PUNCT
Ovulation NOUN
induction NOUN
, PUNCT
sperm NOUN
insemination NOUN
and CCONJ
surgery NOUN
for ADP
tubal ADJ
disease NOUN
and/or CCONJ
pathology NOUN
still ADV
are AUX
the DET
mainstays NOUN
of ADP
the DET
therapies NOUN
available ADJ
for ADP
infertility NOUN
management NOUN
. PUNCT
However ADV
, PUNCT
when ADV
these DET
fail VERB
, PUNCT
it PRON
almost ADV
always ADV
is AUX
appropriate ADJ
to PART
proceed VERB
with ADP
one NUM
of ADP
the DET
ART NOUN
procedures NOUN
. PUNCT
Therefore ADV
, PUNCT
in ADP
addition NOUN
to ADP
a DET
comprehensive ADJ
basic ADJ
and CCONJ
general ADJ
infertility NOUN
service NOUN
at ADP
The DET
University PROPN
of ADP
Arizona PROPN
Center PROPN
for ADP
Reproductive PROPN
Endocrinology PROPN
and CCONJ
Infertility PROPN
, PUNCT
there PRON
is AUX
a DET
program NOUN
of ADP
Assisted PROPN
Reproduction PROPN
that PRON
specializes VERB
in ADP
ART NOUN
procedures NOUN
. PUNCT
This DET
program NOUN
serves VERB
as SCONJ
a DET
tertiary ADJ
provider NOUN
for ADP
those DET
patients NOUN
in ADP
the DET
state NOUN
of ADP
Arizona PROPN
whose PRON
infertility NOUN
problems NOUN
can AUX
not PART
be AUX
resolved VERB
by ADP
the DET
traditional ADJ
therapies NOUN
. PUNCT
The DET
following ADJ
article NOUN
( PUNCT
on ADP
back ADV
) PUNCT
describes VERB
the DET
ART NOUN
procedures NOUN
available ADJ
in ADP
our PRON
Center PROPN
, PUNCT
clarifies NOUN
appropriate ADJ
applications NOUN
for ADP
each DET
, PUNCT
and CCONJ
considers VERB
the DET
realistic ADJ
expectations NOUN
for ADP
their PRON
success NOUN
. PUNCT
Procedures NOUN
included VERB
are AUX
: PUNCT
o INTJ
in ADP
vitro X
o PROPN
fertilization NOUN
- PUNCT
embryo NOUN
transfer NOUN
( PUNCT
IVF PROPN
- PUNCT
ET PROPN
) PUNCT
, PUNCT
  SPACE
gamete PROPN
intrafallopian PROPN
tube PROPN
   SPACE
transfer NOUN
o X
( PUNCT
GIFT PROPN
) PUNCT
, PUNCT
  SPACE
cryopreservation NOUN
of ADP
human ADJ
embryos NOUN
and CCONJ
  SPACE
gamete PROPN
micromanipulation NOUN
. PUNCT
This DET
article NOUN
also ADV
considers VERB
ongoing ADJ
research NOUN
in ADP
our PRON
program NOUN
that PRON
is AUX
directed VERB
towards ADP
improved ADJ
success NOUN
of ADP
these DET
technologies NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
24Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                           SPACE
Future PROPN
Areas PROPN
of ADP
ResearchIn PROPN
addition NOUN
to ADP
ongoing ADJ
research NOUN
that PRON
is AUX
directed VERB
exclusively ADV
toward ADP
the DET
management NOUN
of ADP
infertile ADJ
couples NOUN
, PUNCT
we PRON
are AUX
developing VERB
the DET
technology NOUN
to PART
assist VERB
couples NOUN
who PRON
are AUX
at ADP
risk NOUN
for ADP
producing VERB
embryos NOUN
with ADP
a DET
serious ADJ
hereditary ADJ
disease NOUN
. PUNCT
This DET
technology NOUN
involves VERB
biopsying VERB
the DET
preimplantation NOUN
human ADJ
embryo NOUN
and CCONJ
then ADV
subjecting VERB
the DET
biopsied VERB
cells NOUN
to ADP
genetic ADJ
analysis NOUN
using VERB
either CCONJ
DNA NOUN
amplification NOUN
or CCONJ
fluorescent NOUN
in ADP
situ NOUN
hybridization NOUN
. PUNCT
There PRON
are AUX
recent ADJ
reports NOUN
of ADP
the DET
successful ADJ
application NOUN
of ADP
DNA NOUN
amplification NOUN
by ADP
other ADJ
centers NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
for ADP
diagnosis NOUN
of ADP
the DET
genes NOUN
for ADP
cystic ADJ
fibrosis NOUN
and CCONJ
hemophilia NOUN
. PUNCT
We PRON
hope VERB
to PART
apply VERB
and CCONJ
further ADJ
focus VERB
fluorescent NOUN
in ADP
situ NOUN
hybridization NOUN
technology NOUN
for ADP
probing VERB
the DET
X NOUN
chromosome NOUN
, PUNCT
the DET
identification NOUN
of ADP
which PRON
will AUX
provide VERB
a DET
scientific ADJ
basis NOUN
for ADP
counselling NOUN
patients NOUN
who PRON
exhibit VERB
sex NOUN
- PUNCT
linked VERB
disorders NOUN
. PUNCT
The DET
considerable ADJ
clinical ADJ
application NOUN
of ADP
such ADJ
technology NOUN
lies VERB
in ADP
the DET
fact NOUN
that SCONJ
it PRON
circumvents VERB
the DET
need NOUN
for ADP
prenatal ADJ
diagnosis NOUN
, PUNCT
in ADP
addition NOUN
to ADP
the DET
possibility NOUN
of ADP
a DET
subsequent ADJ
termination NOUN
of ADP
affected VERB
fetuses NOUN
, PUNCT
in ADP
order NOUN
to PART
avoid VERB
the DET
birth NOUN
of ADP
affected VERB
children NOUN
. PUNCT
Catherine PROPN
Racowsky PROPN
, PUNCT
Ph PROPN
. PROPN
D.Associate ADJ
Professor PROPN
and CCONJ
Director PROPN
of ADP
ResearchDepartment PROPN
of ADP
Obstetrics PROPN
and CCONJ
GynecologyCollege PROPN
of ADP
Medicine PROPN
University PROPN
of ADP
ArizonaTucson PROPN
, PUNCT
Arizona PROPN
               SPACE
Applications PROPN
, PUNCT
Success PROPN
Rates PROPN
and CCONJ
Advances PROPN
for ADP
the DET
                           SPACE
Management PROPN
of ADP
InfertilityThe PROPN
following VERB
are AUX
the DET
ART NOUN
procedures NOUN
available ADJ
at ADP
The DET
University PROPN
of ADP
Arizona PROPN
Center PROPN
for ADP
Reproductive PROPN
Endocrinology PROPN
and CCONJ
Infertility PROPN
. PUNCT
      SPACE
In ADP
Vitro PROPN
Fertilization PROPN
- PUNCT
Embryo PROPN
Transfer PROPN
is AUX
the DET
core ADJ
ART NOUN
procedure NOUN
of ADP
our PRON
Assisted PROPN
Reproduction PROPN
Program PROPN
. PUNCT
  SPACE
This DET
procedure NOUN
involves VERB
retrieval NOUN
of ADP
unfertilized ADJ
eggs NOUN
from ADP
the DET
ovary ADJ
, PUNCT
their PRON
insemination NOUN
in ADP
vitro X
in ADP
a DET
dish NOUN
, PUNCT
and CCONJ
the DET
culture NOUN
of ADP
resultant ADJ
embryos NOUN
for ADP
1 NUM
or CCONJ
2 NUM
days NOUN
, PUNCT
before ADP
they PRON
are AUX
transferred VERB
to ADP
the DET
patient NOUN
's PART
uterus NOUN
. PUNCT
All DET
cultures NOUN
are AUX
maintained VERB
in ADP
an DET
incubator NOUN
under ADP
strictly ADV
controlled VERB
atmospheric ADJ
and CCONJ
temperature NOUN
conditions NOUN
. PUNCT
Before ADP
being AUX
processed VERB
for ADP
use NOUN
in ADP
insemination NOUN
, PUNCT
semen ADJ
samples NOUN
are AUX
evaluated VERB
in ADP
our PRON
andrology NOUN
laboratory NOUN
using VERB
both CCONJ
subjective ADJ
light ADJ
microscopy NOUN
and CCONJ
computer NOUN
- PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
25Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993assisted NUM
semen ADJ
analyses NOUN
. PUNCT
To PART
ensure VERB
an DET
adequate ADJ
number NOUN
of ADP
eggs NOUN
with ADP
which PRON
to PART
perform VERB
IVF PROPN
- PUNCT
ET PROPN
, PUNCT
or CCONJ
indeed ADV
, PUNCT
GIFT PROPN
, PUNCT
follicular ADJ
development NOUN
is AUX
typically ADV
stimulated VERB
, PUNCT
with ADP
gonadotropins NOUN
( PUNCT
perganol NOUN
, PUNCT
metrodin PROPN
) PUNCT
, PUNCT
gonadotropin NOUN
releasing VERB
hormone NOUN
( PUNCT
GnRH PROPN
, PUNCT
Factrel PROPN
, PUNCT
lutrepulse NOUN
) PUNCT
and/or CCONJ
GnRH PROPN
analogues NOUN
( PUNCT
lupron PROPN
, PUNCT
Depo PROPN
lupron PROPN
, PUNCT
synarel NOUN
) PUNCT
. PUNCT
Occasionally ADV
, PUNCT
however ADV
, PUNCT
IVF PROPN
- PUNCT
ET PROPN
is AUX
accomplished VERB
with ADP
eggs NOUN
obtained VERB
in ADP
non ADJ
- ADJ
stimulated VERB
cycles NOUN
. PUNCT
While SCONJ
some DET
programs NOUN
utilize VERB
laparoscopic PROPN
egg NOUN
retrieval NOUN
in ADP
the DET
operating NOUN
room NOUN
with ADP
the DET
patient NOUN
under ADP
general ADJ
anesthesia PROPN
, PUNCT
we PRON
undertake VERB
the DET
less ADV
costly ADJ
approach NOUN
of ADP
ultrasound NOUN
- PUNCT
guided VERB
retrieval NOUN
in ADP
our PRON
Infertility PROPN
Unit PROPN
, PUNCT
with ADP
the DET
patient NOUN
sedated VERB
. PUNCT
       SPACE
Couples PROPN
who PRON
resort VERB
to ADP
IVF PROPN
- PUNCT
ET PROPN
exhibit NOUN
such ADJ
pathologies NOUN
as SCONJ
tubal ADJ
deficiencies NOUN
, PUNCT
ovulatory ADJ
dysfunction NOUN
, PUNCT
endometriosis NOUN
, PUNCT
and/or CCONJ
mild ADJ
forms NOUN
of ADP
male ADJ
factor NOUN
infertility NOUN
. PUNCT
  SPACE
According VERB
to ADP
the DET
United PROPN
States PROPN
IVF PROPN
Registry PROPN
, PUNCT
the DET
overall ADJ
success NOUN
rate NOUN
for ADP
IVF PROPN
- PUNCT
ET PROPN
nationwide ADV
has AUX
stabilized VERB
at ADP
about ADV
14 NUM
percent NOUN
per ADP
cycle NOUN
. PUNCT
Results NOUN
from ADP
our PRON
program NOUN
, PUNCT
involving VERB
86 NUM
patients NOUN
who PRON
have AUX
undergone VERB
173 NUM
IVF PROPN
- PUNCT
ET PROPN
cycles NOUN
, PUNCT
reflect VERB
a DET
comparable ADJ
success NOUN
rate NOUN
. PUNCT
      SPACE
Nevertheless ADV
, PUNCT
the DET
overall ADJ
incidence NOUN
of ADP
success NOUN
with ADP
this DET
procedure NOUN
is AUX
disconcertingly ADV
low ADJ
and CCONJ
emphasizes VERB
the DET
need NOUN
to PART
address VERB
those DET
physiological ADJ
factors NOUN
that PRON
limit VERB
achievement NOUN
of ADP
a DET
higher ADJ
percentage NOUN
of ADP
pregnancies NOUN
. PUNCT
  SPACE
Well INTJ
recognized VERB
predictors NOUN
of ADP
outcome NOUN
include VERB
patient ADJ
age NOUN
, PUNCT
response NOUN
to ADP
exogenous ADJ
ovarian ADJ
stimulation NOUN
, PUNCT
quality NOUN
of ADP
sperm NOUN
and CCONJ
number NOUN
of ADP
repeated VERB
IVF PROPN
- PUNCT
ET NOUN
cycle NOUN
attempts NOUN
. PUNCT
However ADV
, PUNCT
among ADP
these DET
, PUNCT
age NOUN
is AUX
the DET
single ADJ
most ADV
significant ADJ
determinant NOUN
of ADP
conception NOUN
. PUNCT
Therefore ADV
, PUNCT
it PRON
is AUX
critical ADJ
that SCONJ
such ADJ
patients NOUN
are AUX
referred VERB
to ADP
an DET
Assisted PROPN
Reproduction PROPN
Program PROPN
at ADP
the DET
earliest ADJ
opportunity NOUN
following VERB
failure NOUN
of ADP
traditional ADJ
therapies NOUN
. PUNCT
      SPACE
The DET
underlying VERB
basis NOUN
for ADP
the DET
negative ADJ
effect NOUN
of ADP
age NOUN
on ADP
fertility NOUN
has AUX
not PART
been AUX
clearly ADV
delineated VERB
beyond ADP
recognition NOUN
that SCONJ
: PUNCT
1 X
) PUNCT
the DET
number NOUN
of ADP
eggs NOUN
available ADJ
for ADP
retrieval NOUN
declines NOUN
markedly ADV
with ADP
age NOUN
; PUNCT
2 X
) PUNCT
fertilization NOUN
rates NOUN
significantly ADV
decrease VERB
in ADP
eggs NOUN
retrieved VERB
from ADP
patients NOUN
who PRON
are AUX
over ADP
40 NUM
years NOUN
; PUNCT
and CCONJ
3 X
) PUNCT
provided VERB
the DET
appropriate ADJ
hormonal ADJ
background NOUN
is AUX
present ADJ
, PUNCT
age NOUN
is AUX
unrelated ADJ
to PART
uterine ADJ
competency NOUN
to PART
sustain VERB
pregnancy NOUN
. PUNCT
Ongoing ADJ
research NOUN
in ADP
our PRON
Center PROPN
, PUNCT
therefore ADV
, PUNCT
is AUX
investigating VERB
physiological ADJ
changes NOUN
in ADP
the DET
egg NOUN
that PRON
may AUX
be AUX
impacted VERB
by ADP
age NOUN
. PUNCT
We PRON
have AUX
determined VERB
that SCONJ
more ADJ
than SCONJ
50 NUM
percent NOUN
of ADP
eggs NOUN
that PRON
fail VERB
to PART
fertilize VERB
in ADP
vitro X
are AUX
chromosomally ADV
abnormal ADJ
, PUNCT
and CCONJ
that SCONJ
a DET
significant ADJ
proportion NOUN
of ADP
these DET
abnormalities NOUN
are AUX
accountable ADJ
to PART
patient ADJ
age NOUN
. PUNCT
Currently ADV
, PUNCT
the DET
only ADJ
recourse NOUN
for ADP
such ADJ
patients NOUN
is AUX
to PART
use VERB
eggs NOUN
obtained VERB
from ADP
a DET
donor NOUN
. PUNCT
Our PRON
program NOUN
has AUX
initiated VERB
recruitment NOUN
of ADP
volunteer NOUN
egg NOUN
donors NOUN
to PART
satisfy VERB
the DET
needs NOUN
of ADP
a DET
list NOUN
of ADP
recipients NOUN
interested ADJ
in ADP
this DET
form NOUN
of ADP
therapy NOUN
. PUNCT
      SPACE
GIFT PROPN
- PUNCT
This DET
high ADJ
- PUNCT
tech NOUN
ART NOUN
procedure NOUN
is AUX
performed VERB
in ADP
the DET
operating NOUN
room NOUN
, PUNCT
usually ADV
with ADP
the DET
use NOUN
of ADP
a DET
laparoscope NOUN
and CCONJ
, PUNCT
in ADP
contrast NOUN
to ADP
IVF PROPN
- PUNCT
ET PROPN
, PUNCT
involves VERB
introducing VERB
sperm NOUN
and CCONJ
freshly ADV
retrieved VERB
eggs NOUN
into ADP
the DET
lumen NOUN
of ADP
the DET
Fallopian ADJ
tube NOUN
( PUNCT
an DET
average NOUN
of ADP
3 NUM
eggs NOUN
/ SYM
tube NOUN
) PUNCT
. PUNCT
Under ADP
these DET
circumstances NOUN
, PUNCT
fertilization NOUN
occurs VERB
in ADP
vivo NOUN
and CCONJ
, PUNCT
if SCONJ
excess ADJ
eggs NOUN
are AUX
retrieved VERB
, PUNCT
the DET
remainder NOUN
undergo NOUN
IVF PROPN
, PUNCT
with ADP
subsequent ADJ
options NOUN
for ADP
embryo NOUN
transfer NOUN
in ADP
that DET
cycle NOUN
, PUNCT
or CCONJ
freezing VERB
for ADP
transfer NOUN
in ADP
a DET
subsequent ADJ
cycle NOUN
. PUNCT
This DET
ART NOUN
procedure NOUN
is AUX
applied VERB
to ADP
cases NOUN
in ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
26Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993which NUM
there PRON
is AUX
at ADV
least ADV
one NUM
patent NOUN
Fallopian ADJ
tube NOUN
but CCONJ
the DET
couple NOUN
has AUX
such ADJ
pathologies NOUN
as SCONJ
ovulatory ADJ
dysfunction NOUN
, PUNCT
endometriosis NOUN
, PUNCT
male ADJ
factor NOUN
infertility NOUN
and/or CCONJ
idiopathic ADJ
infertility NOUN
. PUNCT
         SPACE
The DET
data NOUN
reported VERB
in ADP
the DET
United PROPN
States PROPN
IVF PROPN
Registry PROPN
for ADP
1985 NUM
through ADP
1990 NUM
indicate VERB
that SCONJ
the DET
overall ADJ
success NOUN
rate NOUN
with ADP
GIFT PROPN
is AUX
higher ADJ
than SCONJ
that DET
obtained VERB
with ADP
the DET
IVF PROPN
- PUNCT
ET PROPN
technique NOUN
( PUNCT
range NOUN
of ADP
clinical ADJ
pregnancies NOUN
for ADP
GIFT PROPN
is AUX
24 NUM
to PART
36 NUM
percent NOUN
and CCONJ
for ADP
IVF PROPN
- PUNCT
ET PROPN
14 NUM
to PART
18 NUM
percent NOUN
) PUNCT
. PUNCT
In ADP
view NOUN
of ADP
this DET
fact NOUN
, PUNCT
one PRON
might AUX
expect VERB
more ADJ
patients NOUN
to PART
be AUX
treated VERB
with ADP
GIFT NOUN
than SCONJ
IVF PROPN
- PUNCT
ET PROPN
. PUNCT
However ADV
, PUNCT
in ADP
our PRON
program NOUN
we PRON
have AUX
taken VERB
into ADP
account NOUN
three NUM
basic ADJ
concerns NOUN
which PRON
, PUNCT
while SCONJ
substantially ADV
reducing VERB
the DET
number NOUN
of ADP
GIFT PROPN
cycles NOUN
performed VERB
, PUNCT
benefit VERB
the DET
patient NOUN
. PUNCT
These DET
concerns NOUN
are AUX
: PUNCT
1 X
) PUNCT
the DET
increased VERB
costs NOUN
associated VERB
with ADP
performing VERB
a DET
procedure NOUN
in ADP
the DET
operating NOUN
room NOUN
; PUNCT
2 X
) PUNCT
the DET
risks NOUN
, PUNCT
albeit SCONJ
minimal ADJ
, PUNCT
of ADP
undergoing VERB
general ADJ
anesthesia PROPN
; PUNCT
and CCONJ
3 X
) PUNCT
the DET
considerable ADJ
benefits NOUN
to PART
be AUX
accrued VERB
from ADP
obtaining VERB
direct ADJ
information NOUN
on ADP
the DET
quality NOUN
and CCONJ
fertilizability NOUN
of ADP
the DET
eggs NOUN
, PUNCT
and CCONJ
the DET
developmental ADJ
competency NOUN
of ADP
resultant ADJ
embryos NOUN
. PUNCT
      SPACE
The DET
increased VERB
success NOUN
with ADP
GIFT PROPN
undoubtedly ADV
reflects VERB
the DET
artificial ADJ
environment NOUN
provided VERB
by ADP
the DET
laboratory NOUN
in ADP
the DET
IVF PROPN
- PUNCT
ET PROPN
procedure NOUN
. PUNCT
Between ADP
January PROPN
1 NUM
, PUNCT
1991 NUM
, PUNCT
and CCONJ
December PROPN
31 NUM
, PUNCT
1992 NUM
, PUNCT
we PRON
have AUX
performed VERB
a DET
total NOUN
of ADP
12 NUM
GIFT PROPN
cycles NOUN
, PUNCT
with ADP
an DET
overall ADJ
success NOUN
rate NOUN
of ADP
20 NUM
percent NOUN
. PUNCT
      SPACE
Embryo PROPN
cryopreservation NOUN
, PUNCT
or CCONJ
freezing NOUN
, PUNCT
is AUX
applied VERB
in ADP
our PRON
program NOUN
when ADV
embryos NOUN
result VERB
from ADP
residual ADJ
GIFT NOUN
eggs NOUN
or CCONJ
from ADP
non ADJ
- ADJ
transferred VERB
IVF ADJ
embryos NOUN
. PUNCT
This DET
procedure NOUN
not PART
only ADV
provides VERB
patients NOUN
with ADP
a DET
subsequent ADJ
opportunity NOUN
for ADP
success NOUN
at ADP
much ADJ
reduced VERB
costs NOUN
, PUNCT
but CCONJ
also ADV
circumvents VERB
the DET
legal ADJ
and CCONJ
ethical ADJ
issues NOUN
relating VERB
to ADP
disposal NOUN
of ADP
supernumerary ADJ
embryos NOUN
. PUNCT
Therefore ADV
, PUNCT
as SCONJ
stipulated VERB
by ADP
the DET
American PROPN
Fertility PROPN
Society PROPN
ethical ADJ
guidelines NOUN
for ADP
ART NOUN
programs NOUN
, PUNCT
from ADP
both CCONJ
a DET
practical ADJ
and CCONJ
an DET
ethical ADJ
standpoint NOUN
, PUNCT
all DET
Assisted PROPN
Reproduction PROPN
programs NOUN
should AUX
have AUX
the DET
capability NOUN
of ADP
cryopreserving VERB
human ADJ
embrys NOUN
. PUNCT
      SPACE
Gamete PROPN
Micromanipulation PROPN
- PUNCT
This DET
ART NOUN
procedure NOUN
, PUNCT
which PRON
is AUX
still ADV
very ADV
new ADJ
, PUNCT
is AUX
applied VERB
to ADP
couples NOUN
who PRON
are AUX
unaccepting VERB
of ADP
insemination NOUN
with ADP
donor NOUN
semen NOUN
but CCONJ
who PRON
have AUX
severe ADJ
male ADJ
factor NOUN
infertility NOUN
( PUNCT
less ADJ
than SCONJ
10 NUM
million NUM
sperm NOUN
/ SYM
ml NOUN
in ADP
combination NOUN
with ADP
fewer ADJ
than SCONJ
20 NUM
perccent NOUN
motile NOUN
sperm NOUN
, PUNCT
and/or CCONJ
less ADJ
than SCONJ
10 NUM
percent NOUN
sperm NOUN
with ADP
normal ADJ
morphology NOUN
) PUNCT
. PUNCT
We PRON
are AUX
currently ADV
developing VERB
the DET
procedure NOUN
of ADP
sub ADJ
- ADJ
zonal ADJ
insertion NOUN
( PUNCT
SZI PROPN
) PUNCT
, PUNCT
which PRON
entails VERB
injecting NOUN
sperm NOUN
under ADP
the DET
coating NOUN
around ADP
the DET
egg NOUN
, PUNCT
the DET
barrier NOUN
normally ADV
penetrated VERB
by ADP
the DET
sperm NOUN
through ADP
enzymatic ADJ
digestion NOUN
. PUNCT
      SPACE
Available PROPN
data NOUN
from ADP
SZI PROPN
programs NOUN
world NOUN
- PUNCT
wide ADV
indicate VERB
that SCONJ
only ADV
5 NUM
to PART
10 NUM
percent NOUN
of ADP
SZI PROPN
cycles NOUN
result VERB
in ADP
a DET
pregnancy NOUN
. PUNCT
This DET
statistic NOUN
undoubtedly ADV
relates VERB
to ADP
limitations NOUN
imposed VERB
by ADP
abnormalities NOUN
inherent ADJ
in ADP
the DET
sperm NOUN
. PUNCT
Therefore ADV
, PUNCT
we PRON
are AUX
currently ADV
focusing VERB
on ADP
the DET
development NOUN
of ADP
improved ADJ
techniques NOUN
for ADP
the DET
recognition NOUN
and CCONJ
selection NOUN
of ADP
sperm NOUN
chosen VERB
for ADP
manipulation NOUN
. PUNCT
Such ADJ
efforts NOUN
are AUX
unquestionably ADV
worthwhile ADJ
in ADP
view NOUN
of ADP
the DET
fact NOUN
that SCONJ
this DET
technology NOUN
offers VERB
the DET
only ADJ
realistic ADJ
opportunity NOUN
for ADP
severe ADJ
male ADJ
factor NOUN
patients NOUN
to PART
establish VERB
conception NOUN
. PUNCT
Catherine PROPN
Racowsky PROPN
, PUNCT
Ph PROPN
. PROPN
D.HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
27Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Associate NUM
Professor PROPN
and CCONJ
Director PROPN
of ADP
ResearchDepartment PROPN
of ADP
Obstetrics PROPN
and CCONJ
GynecologyCollege PROPN
of ADP
Medicine PROPN
--------- PUNCT
end NOUN
of ADP
part NOUN
2 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59123From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 NUM
Medical PROPN
News PROPN
Part PROPN
4/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------limits PROPN
of ADP
AZT PROPN
's PART
efficacy NOUN
and CCONJ
now ADV
suggest VERB
using VERB
the DET
drug NOUN
  SPACE
either CCONJ
sequentially ADV
with ADP
other ADJ
drugs NOUN
or CCONJ
in ADP
a DET
kind NOUN
of ADP
AIDS PROPN
  SPACE
treatment NOUN
" PUNCT
cocktail NOUN
" PUNCT
combining VERB
a DET
number NOUN
of ADP
drugs NOUN
to PART
fight VERB
the DET
  SPACE
virus NOUN
all ADV
at ADP
once ADV
. PUNCT
  SPACE
" PUNCT
Treating VERB
people NOUN
with ADP
AZT PROPN
alone ADV
does AUX
n't PART
  SPACE
happen VERB
in ADP
the DET
real ADJ
world NOUN
anymore ADV
, PUNCT
" PUNCT
said VERB
Dr. PROPN
Mark PROPN
Jacobson PROPN
of ADP
the DET
  SPACE
University PROPN
of ADP
California PROPN
-- PUNCT
San PROPN
Francisco PROPN
. PUNCT
  SPACE
Also ADV
, PUNCT
with ADP
recent ADJ
  SPACE
findings NOUN
indicating VERB
that SCONJ
HIV PROPN
replicates VERB
rapidly ADV
in ADP
the DET
lymph PROPN
  SPACE
nodes PROPN
after ADP
infection NOUN
, PUNCT
physicians NOUN
may AUX
begin VERB
pushing VERB
even ADV
harder ADJ
  SPACE
for ADP
early ADJ
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
patients.================================================================== PROPN
    SPACE
" PUNCT
New PROPN
Infectious ADJ
Disease PROPN
Push PROPN
" PUNCT
American PROPN
Medical PROPN
News PROPN
( PUNCT
04/05/93 PROPN
) PUNCT
Vol PROPN
. PROPN
36 NUM
, PUNCT
No NOUN
. PROPN
13 NUM
, PUNCT
P. PROPN
2 NUM
      SPACE
The DET
Center PROPN
for ADP
Disease PROPN
Control PROPN
will AUX
launch VERB
a DET
worldwide ADJ
network NOUN
to PART
track VERB
the DET
spread NOUN
of ADP
infectious ADJ
diseases NOUN
and CCONJ
detect VERB
drug NOUN
- PUNCT
resistant ADJ
or CCONJ
new ADJ
strains NOUN
in ADP
time NOUN
to PART
help VERB
prevent VERB
their PRON
spread NOUN
. PUNCT
  SPACE
The DET
network NOUN
is AUX
expected VERB
to PART
cost VERB
between ADP
$ SYM
75 NUM
million NUM
and CCONJ
$ SYM
125 NUM
million NUM
but CCONJ
is AUX
  SPACE
an DET
essential ADJ
part NOUN
of ADP
the DET
Clinton PROPN
administration NOUN
's PART
health NOUN
reform NOUN
  SPACE
plan NOUN
, PUNCT
according VERB
to ADP
the DET
CDC PROPN
and CCONJ
outside ADJ
experts NOUN
. PUNCT
  SPACE
The DET
plan NOUN
will AUX
  SPACE
require VERB
the DET
CDC PROPN
to PART
enhance VERB
surveillance NOUN
of ADP
disease NOUN
in ADP
the DET
United PROPN
  SPACE
States PROPN
and CCONJ
establish VERB
about ADV
15 NUM
facilities NOUN
across ADP
the DET
world NOUN
to PART
  SPACE
track VERB
disease NOUN
. PUNCT
      SPACE
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                  SPACE
April PROPN
13 NUM
, PUNCT
1993 NUM
      SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
  SPACE
" PUNCT
NIH PROPN
Plans VERB
to PART
Begin VERB
AIDS PROPN
Drug PROPN
Trials PROPN
at ADP
Earlier ADJ
Stage PROPN
" PUNCT
Nature NOUN
( PUNCT
04/01/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
362 NUM
, PUNCT
No NOUN
. NOUN
6419 NUM
, PUNCT
P. PROPN
382 NUM
  SPACE
( PUNCT
Macilwain PROPN
, PUNCT
Colin PROPN
) PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
42Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
     SPACE
The DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
has AUX
announced VERB
it PRON
will AUX
start VERB
  SPACE
treating VERB
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
as ADV
soon ADV
as SCONJ
possible ADJ
after ADP
  SPACE
seroconversion NOUN
, PUNCT
resulting VERB
from ADP
recent ADJ
findings NOUN
that PRON
show VERB
HIV PROPN
is AUX
  SPACE
active ADJ
in ADP
the DET
body NOUN
in ADP
large ADJ
numbers NOUN
much ADV
earlier ADV
than SCONJ
was AUX
  SPACE
previously ADV
believed VERB
. PUNCT
  SPACE
Anthony PROPN
Fauci PROPN
, PUNCT
director NOUN
of ADP
the DET
U.S. PROPN
  SPACE
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases PROPN
( PUNCT
NIAID PROPN
) PUNCT
, PUNCT
  SPACE
said VERB
, PUNCT
" PUNCT
We PRON
must AUX
address VERB
the DET
question NOUN
of ADP
how ADV
to PART
treat VERB
people NOUN
as SCONJ
  SPACE
early ADV
as SCONJ
we PRON
possibly ADV
can AUX
with ADP
drugs NOUN
that PRON
are AUX
safe ADJ
enough ADV
to PART
give VERB
  SPACE
people NOUN
for ADP
years NOUN
and CCONJ
that DET
will AUX
get AUX
around ADP
microbial ADJ
resistance NOUN
. PUNCT
" PUNCT
  SPACE
He PRON
said VERB
any DET
delay NOUN
would AUX
signify VERB
questions NOUN
over ADP
safety NOUN
and CCONJ
  SPACE
resistance NOUN
rather ADV
than SCONJ
a DET
lack NOUN
of ADP
funds NOUN
. PUNCT
  SPACE
Fauci PROPN
, PUNCT
who PRON
co VERB
- VERB
authored VERB
  SPACE
one NUM
of ADP
the DET
two NUM
papers NOUN
published VERB
last ADJ
week NOUN
in ADP
Nature PROPN
, PUNCT
rejects VERB
the DET
  SPACE
argument NOUN
by ADP
one NUM
of ADP
his PRON
co NOUN
- NOUN
authors NOUN
, PUNCT
Cecil PROPN
Fox PROPN
, PUNCT
that SCONJ
the DET
new ADJ
  SPACE
discovery NOUN
indicates VERB
that SCONJ
" PUNCT
$ SYM
1 NUM
billion NUM
spent VERB
on ADP
vaccine NOUN
trials NOUN
" PUNCT
has AUX
been AUX
" PUNCT
a DET
waste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
" PUNCT
because SCONJ
the DET
trials NOUN
were AUX
started VERB
  SPACE
too ADV
long ADV
after ADP
the DET
patients NOUN
were AUX
infected VERB
and CCONJ
were AUX
ended VERB
too ADV
  SPACE
quickly ADV
. PUNCT
  SPACE
John PROPN
Tew PROPN
of ADP
the DET
Medical PROPN
College PROPN
of ADP
Virginia PROPN
in ADP
Richmond PROPN
claims VERB
that SCONJ
the DET
new ADJ
evidence NOUN
strongly ADV
backs VERB
the DET
argument NOUN
for ADP
  SPACE
early ADJ
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
patients NOUN
. PUNCT
  SPACE
AIDS PROPN
activists NOUN
  SPACE
welcomed VERB
the DET
new ADJ
information NOUN
but CCONJ
said VERB
the DET
scientific ADJ
community NOUN
  SPACE
has AUX
been AUX
slow ADJ
to PART
understand VERB
the DET
significance NOUN
of ADP
infection NOUN
of ADP
the DET
  SPACE
lymph PROPN
tissue NOUN
. PUNCT
  SPACE
" PUNCT
We PRON
've AUX
known VERB
about ADP
this DET
for ADP
five NUM
years NOUN
, PUNCT
but CCONJ
we PRON
're AUX
  SPACE
glad ADJ
it PRON
is AUX
now ADV
in ADP
the DET
public ADJ
domain NOUN
, PUNCT
" PUNCT
said VERB
Jesse PROPN
Dobson PROPN
of ADP
the DET
  SPACE
California PROPN
- PUNCT
based VERB
Project PROPN
Inform PROPN
. PUNCT
  SPACE
But CCONJ
Peter PROPN
Duesberg PROPN
, PUNCT
who PRON
  SPACE
believes VERB
that SCONJ
AIDS PROPN
is AUX
independent ADJ
of ADP
HIV PROPN
and CCONJ
is AUX
a DET
result NOUN
of ADP
drug NOUN
  SPACE
abuse NOUN
in ADP
the DET
West PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
We PRON
are AUX
several ADJ
paradoxes NOUN
away ADV
from ADP
an DET
  SPACE
explanation NOUN
of ADP
AIDS PROPN
-- PUNCT
even ADV
if SCONJ
these DET
papers NOUN
are AUX
right ADJ
. PUNCT
" PUNCT
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
14 NUM
, PUNCT
1993 NUM
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Risk NOUN
of ADP
AIDS PROPN
Virus PROPN
From ADP
Doctors NOUN
Found VERB
to PART
Be AUX
Minimal PROPN
" PUNCT
Washington PROPN
Post PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
, PUNCT
P. PROPN
A9 PROPN
      SPACE
The DET
risk NOUN
of ADP
HIV PROPN
being AUX
transmitted VERB
from ADP
infected ADJ
health NOUN
- PUNCT
care NOUN
  SPACE
professionals NOUN
to ADP
patients NOUN
is AUX
minimal ADJ
, PUNCT
according VERB
to ADP
new ADJ
research NOUN
  SPACE
published VERB
in ADP
today NOUN
's PART
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
  SPACE
( PUNCT
JAMA PROPN
) PUNCT
. PUNCT
  SPACE
This DET
finding NOUN
supports VERB
previous ADJ
conclusions NOUN
by ADP
health NOUN
  SPACE
experts NOUN
that SCONJ
the DET
chance NOUN
of ADP
contracting VERB
HIV PROPN
from ADP
a DET
health NOUN
care NOUN
  SPACE
worker NOUN
is AUX
remote ADJ
. PUNCT
  SPACE
Three NUM
studies NOUN
in ADP
the DET
JAMA PROPN
demonstrate VERB
that SCONJ
  SPACE
thousands NOUN
of ADP
patients NOUN
were AUX
treated VERB
by ADP
two NUM
HIV PROPN
- PUNCT
positive ADJ
surgeons NOUN
  SPACE
and CCONJ
dentists NOUN
without ADP
becoming VERB
infected VERB
with ADP
the DET
virus NOUN
. PUNCT
  SPACE
The DET
  SPACE
studies NOUN
were AUX
conducted VERB
by ADP
separate ADJ
research NOUN
teams NOUN
in ADP
New PROPN
  SPACE
Hampshire PROPN
, PUNCT
Maryland PROPN
, PUNCT
and CCONJ
Florida PROPN
. PUNCT
  SPACE
Each DET
study NOUN
started VERB
with ADP
an DET
  SPACE
HIV PROPN
- PUNCT
positive ADJ
doctor NOUN
or CCONJ
dentist NOUN
and CCONJ
tested VERB
all DET
patients NOUN
willing ADJ
to PART
participate VERB
. PUNCT
  SPACE
The DET
New PROPN
Hampshire PROPN
study NOUN
found VERB
that SCONJ
none NOUN
of ADP
the DET
  SPACE
1,174 NUM
patients NOUN
who PRON
had AUX
undergone VERB
invasive ADJ
procedures NOUN
by ADP
an DET
  SPACE
HIV PROPN
- PUNCT
positive ADJ
orthopedic ADJ
surgeon NOUN
contracted VERB
HIV PROPN
. PUNCT
  SPACE
In ADP
Maryland PROPN
, PUNCT
413 NUM
of ADP
1,131 NUM
patients NOUN
operated VERB
on ADP
by ADP
a DET
breast NOUN
surgery NOUN
specialist NOUN
at ADP
  SPACE
Johns PROPN
Hopkins PROPN
Hospital PROPN
were AUX
found VERB
to PART
be AUX
HIV PROPN
- PUNCT
negative ADJ
. PUNCT
  SPACE
Similarly ADV
  SPACE
in ADP
Florida PROPN
, PUNCT
900 NUM
of ADP
1,192 NUM
dental NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
43Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993patients NUM
, PUNCT
who PRON
all DET
had AUX
been AUX
  SPACE
treated VERB
by ADP
an DET
HIV PROPN
- PUNCT
positive ADJ
general ADJ
dentist NOUN
, PUNCT
were AUX
tested VERB
and CCONJ
found VERB
to PART
be AUX
negative ADJ
for ADP
HIV PROPN
. PUNCT
  SPACE
The DET
Florida PROPN
researchers NOUN
, PUNCT
led VERB
by ADP
Gordon PROPN
  SPACE
M. PROPN
Dickinson PROPN
of ADP
the DET
University PROPN
of ADP
Miami PROPN
School PROPN
of ADP
Medicine PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
This DET
study NOUN
indicates VERB
that SCONJ
the DET
risk NOUN
for ADP
transmission NOUN
of ADP
HIV PROPN
from ADP
  SPACE
a DET
general ADJ
dentist NOUN
to ADP
his PRON
patients NOUN
is AUX
minimal ADJ
in ADP
a DET
setting NOUN
in ADP
  SPACE
which PRON
universal ADJ
precautions NOUN
are AUX
strictly ADV
observed VERB
. PUNCT
" PUNCT
   SPACE
Related PROPN
Story PROPN
: PUNCT
Philadelphia PROPN
Inquirer PROPN
( PUNCT
04/14 NUM
) PUNCT
P. NOUN
A6 NOUN
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Alternative PROPN
Medicine PROPN
Advocates PROPN
Divided VERB
Over ADP
New PROPN
NIH PROPN
Research PROPN
  SPACE
Program PROPN
" PUNCT
AIDS PROPN
Treatment PROPN
News PROPN
( PUNCT
04/02/93 PUNCT
) PUNCT
No NOUN
. NOUN
172 NUM
, PUNCT
P. PROPN
6 NUM
  SPACE
( PUNCT
Gilden PROPN
, PUNCT
Dave PROPN
) PUNCT
      SPACE
The DET
new ADJ
Office PROPN
of ADP
Alternative PROPN
Medicine PROPN
at ADP
the DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
has AUX
raised VERB
questions NOUN
about ADP
the DET
NIH PROPN
's PART
commitment NOUN
to ADP
an DET
  SPACE
effort NOUN
that PRON
uses VERB
unorthodox ADJ
or CCONJ
holistic ADJ
therapeutic ADJ
methods NOUN
. PUNCT
  SPACE
The DET
OAM PROPN
is AUX
a DET
small ADJ
division NOUN
of ADP
the DET
NIH PROPN
, PUNCT
with ADP
its PRON
budget NOUN
only ADV
at ADP
$ SYM
2 NUM
  SPACE
million NUM
dollars NOUN
compared VERB
to ADP
more ADJ
than SCONJ
$ SYM
10 NUM
billion NUM
for ADP
the DET
NIH PROPN
as SCONJ
  SPACE
a DET
whole NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
money NOUN
for ADP
available ADJ
research NOUN
grants NOUN
is AUX
even ADV
smaller ADJ
. PUNCT
  SPACE
About ADV
$ SYM
500,000 NUM
to PART
$ SYM
600,000 NUM
total NOUN
will AUX
be AUX
available ADJ
this DET
year NOUN
for ADP
10 NUM
or CCONJ
20 NUM
grants NOUN
. PUNCT
  SPACE
Kaiya PROPN
Montaocean PROPN
, PUNCT
of ADP
the DET
Center PROPN
  SPACE
for ADP
Natural ADJ
and CCONJ
Traditional ADJ
Medicine PROPN
in ADP
Washington PROPN
, PUNCT
D.C. PROPN
, PUNCT
says VERB
  SPACE
the DET
OAM PROPN
is AUX
afraid ADJ
to PART
become VERB
involved ADJ
in ADP
AIDS PROPN
. PUNCT
  SPACE
" PUNCT
They PRON
have AUX
to PART
look VERB
successful ADJ
and CCONJ
there PRON
is AUX
no DET
easy ADJ
answer NOUN
in ADP
AIDS PROPN
, PUNCT
" PUNCT
she PRON
said VERB
. PUNCT
    SPACE
There PRON
is AUX
also ADV
a DET
common ADJ
perception NOUN
that SCONJ
the DET
OAM PROPN
will AUX
focus VERB
on ADP
  SPACE
fields VERB
the DET
NIH PROPN
establishment NOUN
will AUX
find VERB
non ADJ
- ADJ
threatening ADJ
, PUNCT
such ADJ
as SCONJ
  SPACE
relaxation NOUN
techniques NOUN
and CCONJ
acupuncture NOUN
. PUNCT
  SPACE
When ADV
the DET
OAM PROPN
called VERB
for ADP
  SPACE
an DET
advisory ADJ
committee NOUN
conference NOUN
of ADP
about ADV
120 NUM
people NOUN
last ADJ
year NOUN
, PUNCT
  SPACE
the DET
AIDS PROPN
community NOUN
was AUX
largely ADV
missing ADJ
from ADP
the DET
meeting NOUN
. PUNCT
  SPACE
In ADP
  SPACE
addition NOUN
, PUNCT
activists NOUN
' PART
general ADJ
lack NOUN
of ADP
contact NOUN
with ADP
the DET
Office PROPN
has AUX
  SPACE
added VERB
suspicion NOUN
that SCONJ
the DET
epidemic NOUN
will AUX
be AUX
ignored VERB
. PUNCT
  SPACE
Jon PROPN
  SPACE
Greenberg PROPN
, PUNCT
of ADP
ACT PROPN
- PUNCT
UP PROPN
/ SYM
New PROPN
York PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
The DET
OAM PROPN
advisory NOUN
panel NOUN
is AUX
  SPACE
composed VERB
of ADP
practitioners NOUN
without ADP
real ADJ
research NOUN
experience NOUN
. PUNCT
  SPACE
It PRON
  SPACE
will AUX
take VERB
them PRON
several ADJ
years NOUN
to PART
accept VERB
the DET
nature NOUN
of ADP
research NOUN
. PUNCT
" PUNCT
   SPACE
Nevertheless ADV
, PUNCT
  SPACE
Dr. PROPN
Leanna PROPN
Standish PROPN
, PUNCT
research NOUN
director NOUN
and CCONJ
AIDS PROPN
  SPACE
investigator NOUN
at ADP
the DET
Bastyr PROPN
College PROPN
of ADP
Naturopathic PROPN
Medicine PROPN
in ADP
  SPACE
Seattle PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
Here ADV
is AUX
a DET
wonderful ADJ
opportunity NOUN
to PART
fund VERB
AIDS PROPN
  SPACE
research NOUN
. PUNCT
  SPACE
It PRON
's AUX
only ADV
fair ADJ
to PART
give VERB
the DET
Office PROPN
time NOUN
to ADP
gel NOUN
, PUNCT
but CCONJ
  SPACE
it PRON
's AUX
up ADP
to ADP
the DET
public NOUN
to PART
insist VERB
that SCONJ
it PRON
's AUX
much ADJ
, PUNCT
much ADV
more ADJ
[ PUNCT
than SCONJ
  SPACE
public ADJ
relations NOUN
] PUNCT
. PUNCT
" PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Herpesvirus PROPN
Decimates PROPN
Immune NOUN
- PUNCT
cell NOUN
Soldiers NOUN
" PUNCT
Science PROPN
News PROPN
( PUNCT
04/03/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
143 NUM
, PUNCT
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
215 NUM
   SPACE
( PUNCT
Fackelmann PROPN
, PUNCT
Kathy PROPN
A. PROPN
) PUNCT
      SPACE
Scientists PROPN
conducting VERB
test NOUN
tube NOUN
experiments NOUN
have AUX
found VERB
that SCONJ
  SPACE
herpesvirus-6 PROPN
can AUX
attack VERB
the DET
human ADJ
immune ADJ
system NOUN
's PART
natural ADJ
killer NOUN
cells NOUN
. PUNCT
  SPACE
This DET
attack NOUN
causes VERB
the DET
killer NOUN
cells NOUN
to ADP
malfunction NOUN
, PUNCT
  SPACE
diminishing VERB
an DET
important ADJ
component NOUN
in ADP
the DET
immune ADJ
system NOUN
's PART
fight NOUN
  SPACE
against ADP
diseases NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
the DET
herpesvirus-6 PROPN
may AUX
be AUX
a DET
factor NOUN
in ADP
  SPACE
immune ADJ
diseases NOUN
, PUNCT
such ADJ
as SCONJ
AIDS PROPN
. PUNCT
  SPACE
In ADP
1989 NUM
, PUNCT
Paolo PROPN
Lusso PROPN
's PART
research NOUN
  SPACE
found VERB
that SCONJ
herpesvirus-6 PROPN
attacks VERB
another DET
white ADJ
cell NOUN
, PUNCT
the DET
CD4 PROPN
  SPACE
T PROPN
- PUNCT
lymphocyte NOUN
, PUNCT
which PRON
is AUX
the DET
primary ADJ
target NOUN
of ADP
HIV PROPN
. PUNCT
  SPACE
Lusso PROPN
also ADV
  SPACE
found VERB
that SCONJ
herpesvirus-6 PROPN
can AUX
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
44Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993kill NUM
natural ADJ
killer NOUN
cells NOUN
. PUNCT
   SPACE
Scientists NOUN
previously ADV
knew VERB
that SCONJ
the DET
natural ADJ
killer NOUN
cells NOUN
of ADP
  SPACE
patients NOUN
infected VERB
with ADP
HIV PROPN
do AUX
not PART
work VERB
correctly ADV
. PUNCT
  SPACE
Lusso PROPN
's PART
  SPACE
research NOUN
represents VERB
the DET
first ADJ
time NOUN
scientists NOUN
have AUX
indicated VERB
that SCONJ
natural ADJ
killer NOUN
cells NOUN
are AUX
vulnerable ADJ
to ADP
any DET
kind NOUN
of ADP
viral ADJ
attack NOUN
, PUNCT
  SPACE
according VERB
to ADP
Anthony PROPN
L. PROPN
Komaroff PROPN
, PUNCT
a DET
researcher NOUN
with ADP
Harvard PROPN
  SPACE
Medical PROPN
School PROPN
. PUNCT
  SPACE
Despite SCONJ
the DET
test NOUN
- PUNCT
tube NOUN
findings NOUN
, PUNCT
scientists NOUN
are AUX
  SPACE
uncertain ADJ
whether SCONJ
the DET
same ADJ
result NOUN
occurs VERB
in ADP
the DET
body NOUN
. PUNCT
  SPACE
Lusso PROPN
's PART
  SPACE
team NOUN
also ADV
found VERB
that SCONJ
herpesvirus-6 PROPN
produces VERB
the DET
CD4 PROPN
receptor NOUN
  SPACE
molecule NOUN
that PRON
provides VERB
access NOUN
for ADP
HIV PROPN
. PUNCT
  SPACE
CD4 PROPN
T PROPN
- PUNCT
lymphocytes NOUN
express VERB
this DET
surface NOUN
receptor NOUN
, PUNCT
making VERB
them PRON
vulnerable ADJ
to ADP
HIV PROPN
's PART
attack NOUN
. PUNCT
   SPACE
Researchers PROPN
concluded VERB
that SCONJ
herpesvirus-6 PROPN
cells NOUN
can AUX
exacerbate VERB
the DET
affects NOUN
of ADP
HIV PROPN
. PUNCT
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
15 NUM
, PUNCT
1993 NUM
      SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
AIDS PROPN
and CCONJ
Priorities PROPN
in ADP
the DET
Global PROPN
Village PROPN
: PUNCT
To ADP
the DET
Editor PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/07/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
13 NUM
, PUNCT
P. PROPN
1636 NUM
  SPACE
( PUNCT
Gellert PROPN
, PUNCT
George PROPN
and CCONJ
Nordenberg PROPN
, PUNCT
Dale PROPN
F. PROPN
) PUNCT
      SPACE
All DET
health NOUN
- PUNCT
care NOUN
workers NOUN
are AUX
obligated ADJ
and CCONJ
responsible ADJ
for ADP
not PART
  SPACE
only ADV
ensuring VERB
that SCONJ
politicians NOUN
understand VERB
the DET
dimensions NOUN
of ADP
  SPACE
certain ADJ
health NOUN
problems NOUN
, PUNCT
but CCONJ
also ADV
to PART
be AUX
committed VERB
to ADP
related ADJ
  SPACE
policies NOUN
, PUNCT
write VERB
George PROPN
Gellert PROPN
and CCONJ
Dale PROPN
F. PROPN
Nordenberg PROPN
of ADP
the DET
  SPACE
Orange PROPN
County PROPN
Health PROPN
Care PROPN
Agency PROPN
, PUNCT
Santa PROPN
Ana PROPN
, PUNCT
Calif. PROPN
, PUNCT
and CCONJ
the DET
  SPACE
Emory PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Health PROPN
in ADP
Atlanta PROPN
, PUNCT
Ga. PROPN
, PUNCT
  SPACE
respectively ADV
. PUNCT
  SPACE
Dr. PROPN
Berkley PROPN
's PART
editorial NOUN
on ADP
why ADV
American ADJ
doctors NOUN
  SPACE
should AUX
care VERB
about ADP
the DET
AIDS PROPN
epidemic NOUN
beyond ADP
the DET
United PROPN
States PROPN
  SPACE
details NOUN
several ADJ
reasons NOUN
for ADP
the DET
concerted ADJ
interest NOUN
that SCONJ
all DET
  SPACE
countries NOUN
share VERB
in ADP
combating VERB
AIDS PROPN
. PUNCT
  SPACE
It PRON
should AUX
be AUX
noted VERB
that SCONJ
while SCONJ
AIDS PROPN
leads VERB
in ADP
hastening VERB
global ADJ
health NOUN
interdependence NOUN
, PUNCT
it PRON
is AUX
not PART
  SPACE
the DET
only ADJ
illness NOUN
doing VERB
so ADV
. PUNCT
  SPACE
Diseases NOUN
such ADJ
as SCONJ
malaria NOUN
and CCONJ
many ADJ
  SPACE
respiratory ADJ
and CCONJ
intestinal ADJ
pathogens NOUN
have AUX
similarly ADV
inhibited VERB
the DET
economic ADJ
development NOUN
of ADP
most ADJ
of ADP
humanity NOUN
and CCONJ
acted VERB
to PART
marginalize VERB
large ADJ
populations NOUN
. PUNCT
  SPACE
Berkley PROPN
mentions VERB
the DET
enormous ADJ
social ADJ
and CCONJ
  SPACE
economic ADJ
impact NOUN
that PRON
AIDS PROPN
will AUX
have AUX
on ADP
many ADJ
developing VERB
countries NOUN
, PUNCT
and CCONJ
the DET
increased VERB
need NOUN
for ADP
international ADJ
assistance NOUN
that PRON
will AUX
  SPACE
result VERB
. PUNCT
  SPACE
Berkley PROPN
also ADV
cites VERB
the DET
lack NOUN
of ADP
political ADJ
aggressiveness NOUN
  SPACE
toward ADP
the DET
AIDS PROPN
epidemic NOUN
in ADP
its PRON
first ADJ
decade NOUN
. PUNCT
  SPACE
But CCONJ
now ADV
there PRON
is AUX
a DET
new ADJ
administration NOUN
with ADP
a DET
promise NOUN
of ADP
substantial ADJ
differences NOUN
in ADP
  SPACE
approach NOUN
to ADP
international ADJ
health NOUN
and CCONJ
development NOUN
in ADP
general ADJ
, PUNCT
and CCONJ
  SPACE
HIV PROPN
/ SYM
AIDS PROPN
in ADP
particular ADJ
. PUNCT
  SPACE
Vice PROPN
President PROPN
Al PROPN
Gore PROPN
proposes VERB
in ADP
his PRON
  SPACE
book NOUN
" PUNCT
Earth NOUN
in ADP
the DET
Balance NOUN
" PUNCT
a DET
major ADJ
environmental ADJ
initiative NOUN
that PRON
includes VERB
sustainable ADJ
international ADJ
development NOUN
, PUNCT
with ADP
programs NOUN
to ADP
  SPACE
promote VERB
literacy NOUN
, PUNCT
improve VERB
child NOUN
survival NOUN
, PUNCT
and CCONJ
disseminate VERB
  SPACE
contraceptive ADJ
technology NOUN
and CCONJ
access NOUN
throughout ADP
the DET
developing VERB
  SPACE
world NOUN
. PUNCT
  SPACE
If SCONJ
enacted VERB
, PUNCT
this DET
change NOUN
in ADP
policy NOUN
could AUX
drastically ADV
  SPACE
change VERB
the DET
future NOUN
of ADP
worldwide ADJ
health NOUN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
AIDS PROPN
and CCONJ
Priorities PROPN
in ADP
the DET
Global PROPN
Village PROPN
: PUNCT
In ADP
Reply PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
45Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Medical NUM
Association PROPN
( PUNCT
04/07/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
13 NUM
, PUNCT
P. PROPN
1636 NUM
  SPACE
( PUNCT
Berkley PROPN
, PUNCT
Seth PROPN
) PUNCT
      SPACE
Every DET
nation NOUN
should AUX
tackle VERB
HIV PROPN
as ADV
early ADV
and CCONJ
aggressively ADV
as SCONJ
    SPACE
possible ADJ
before ADP
the DET
disease NOUN
reaches VERB
an DET
endemic ADJ
state NOUN
, PUNCT
even ADV
at ADP
a DET
  SPACE
cost NOUN
of ADP
diverting VERB
less ADJ
attention NOUN
to ADP
some DET
other ADJ
illnesses NOUN
, PUNCT
writes VERB
  SPACE
Seth PROPN
Berkley PROPN
of ADP
the DET
Rockefeller PROPN
Foundation PROPN
in ADP
New PROPN
York PROPN
, PUNCT
N.Y. PROPN
, PUNCT
in ADP
  SPACE
reply NOUN
to ADP
a DET
letter NOUN
by ADP
Drs PROPN
. PUNCT
Gellert PROPN
and CCONJ
Nordenberg PROPN
. PUNCT
  SPACE
Although SCONJ
it PRON
is AUX
true ADJ
that SCONJ
diseases NOUN
other ADJ
than SCONJ
AIDS PROPN
, PUNCT
such ADJ
as SCONJ
malaria PROPN
and CCONJ
  SPACE
respiratory ADJ
and CCONJ
intestinal ADJ
illnesses NOUN
, PUNCT
have AUX
similarly ADV
inhibited VERB
  SPACE
economic ADJ
development NOUN
in ADP
developing VERB
countries NOUN
and CCONJ
deserve VERB
much ADJ
  SPACE
more ADJ
attention NOUN
than SCONJ
they PRON
are AUX
getting VERB
, PUNCT
Berkley PROPN
disagrees VERB
with ADP
the DET
  SPACE
contention NOUN
that SCONJ
AIDS PROPN
is AUX
receiving VERB
too ADV
much ADJ
attention NOUN
. PUNCT
  SPACE
HIV PROPN
  SPACE
differs VERB
from ADP
other ADJ
diseases NOUN
, PUNCT
in ADP
most ADJ
developing VERB
countries NOUN
because SCONJ
it PRON
is AUX
continuing VERB
to PART
spread VERB
. PUNCT
  SPACE
For ADP
most ADJ
endemic ADJ
diseases NOUN
, PUNCT
the DET
  SPACE
outcome NOUN
of ADP
neglecting VERB
interventions NOUN
for ADP
one NUM
year NOUN
is AUX
another DET
year NOUN
  SPACE
of ADP
about ADP
the DET
same ADJ
level NOUN
of ADP
needless ADJ
disease NOUN
and CCONJ
death NOUN
. PUNCT
  SPACE
But CCONJ
with ADP
  SPACE
AIDS PROPN
and CCONJ
its PRON
increasing VERB
spread NOUN
, PUNCT
the DET
cost NOUN
of ADP
neglect NOUN
, PUNCT
not PART
only ADV
in ADP
  SPACE
disease PROPN
burden PROPN
but CCONJ
financially ADV
, PUNCT
is AUX
much ADV
greater ADJ
. PUNCT
  SPACE
Interventions NOUN
  SPACE
in ADP
the DET
early ADJ
part NOUN
of ADP
a DET
rampantly ADV
spreading VERB
epidemic NOUN
like SCONJ
HIV PROPN
are AUX
  SPACE
highly ADV
cost NOUN
- PUNCT
effective ADJ
because SCONJ
each DET
individual ADJ
infection NOUN
prevented VERB
significantly ADV
interrupts NOUN
transmission NOUN
. PUNCT
  SPACE
Berkley PROPN
says VERB
he PRON
agrees VERB
  SPACE
with ADP
Gellert PROPN
and CCONJ
Nordenberg PROPN
about ADP
the DET
gigantic ADJ
social ADJ
and CCONJ
  SPACE
economic ADJ
effects NOUN
of ADP
AIDS PROPN
and CCONJ
about ADP
the DET
need NOUN
for ADP
political ADJ
  SPACE
leadership NOUN
. PUNCT
  SPACE
But CCONJ
he PRON
concludes VERB
that SCONJ
not PART
only ADV
is AUX
assertive ADJ
  SPACE
political ADJ
leadership NOUN
needed VERB
in ADP
the DET
United PROPN
States PROPN
for ADP
the DET
AIDS PROPN
  SPACE
epidemic NOUN
, PUNCT
but CCONJ
even ADV
more ADV
so ADV
in ADP
developing VERB
countries NOUN
with ADP
high ADJ
  SPACE
rates NOUN
of ADP
HIV PROPN
infection NOUN
and CCONJ
where ADV
complacency NOUN
about ADP
the DET
epidemic NOUN
  SPACE
has AUX
been AUX
the DET
rule NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
46Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                               SPACE
AIDS PROPN
/ SYM
HIV PROPN
Articles PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
            SPACE
First PROPN
HIV PROPN
Vaccine PROPN
Trial PROPN
Begins VERB
in ADP
HIV PROPN
- PUNCT
Infected VERB
Children PROPN
                                SPACE
H PROPN
H PROPN
S PROPN
   SPACE
N NOUN
E NOUN
W PROPN
S PROPN
     SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                 SPACE
U.S. PROPN
DEPARTMENT PROPN
OF ADP
HEALTH PROPN
AND CCONJ
HUMAN PROPN
SERVICES PROPN
                                SPACE
March PROPN
29 NUM
, PUNCT
1993 NUM
        SPACE
First PROPN
HIV PROPN
Vaccine PROPN
Therapy PROPN
Trial NOUN
Begins VERB
In ADP
HIV PROPN
- PUNCT
Infected VERB
ChildrenThe PROPN
National PROPN
Institutes PROPN
of ADP
Health PROPN
has AUX
opened VERB
the DET
first ADJ
trial NOUN
of ADP
experimental ADJ
HIV PROPN
vaccines NOUN
in ADP
children NOUN
who PRON
are AUX
infected VERB
with ADP
the DET
human ADJ
immunodeficiency NOUN
virus NOUN
( PUNCT
HIV PROPN
) PUNCT
, PUNCT
the DET
virus NOUN
that PRON
causes VERB
AIDS PROPN
. PUNCT
The DET
trial NOUN
will AUX
compare VERB
the DET
safety NOUN
of ADP
three NUM
HIV PROPN
experimental ADJ
vaccines NOUN
in ADP
90 NUM
children NOUN
recruited VERB
from ADP
at ADV
least ADV
12 NUM
sites NOUN
nationwide ADJ
. PUNCT
Volunteers NOUN
must AUX
be AUX
HIV PROPN
- PUNCT
infected VERB
but CCONJ
have AUX
no DET
symptoms NOUN
of ADP
HIV PROPN
disease NOUN
. PUNCT
HHS PROPN
Secretary PROPN
Donna PROPN
E. PROPN
Shalala PROPN
said VERB
this DET
initial ADJ
study NOUN
can AUX
be AUX
seen VERB
as SCONJ
" PUNCT
a DET
hopeful ADJ
milestone NOUN
in ADP
our PRON
efforts NOUN
to PART
ameliorate VERB
the DET
tragedy NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
children NOUN
who PRON
now ADV
face VERB
the DET
certainty NOUN
they PRON
will AUX
develop VERB
AIDS PROPN
. PUNCT
" PUNCT
Anthony PROPN
S. PROPN
Fauci PROPN
, PUNCT
M.D. PROPN
, PUNCT
director NOUN
of ADP
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases PROPN
and CCONJ
of ADP
the DET
NIH PROPN
Office PROPN
of ADP
AIDS PROPN
Research PROPN
, PUNCT
said VERB
the DET
trial NOUN
" PUNCT
is AUX
the DET
first ADJ
step NOUN
in ADP
finding VERB
out ADP
whether SCONJ
vaccines NOUN
can AUX
help VERB
prevent VERB
or CCONJ
delay VERB
disease NOUN
progression NOUN
in ADP
children NOUN
with ADP
HIV PROPN
who PRON
are AUX
not PART
yet ADV
sick ADJ
. PUNCT
" PUNCT
  SPACE
If SCONJ
these DET
vaccines NOUN
prove VERB
to PART
be AUX
safe ADJ
, PUNCT
more ADV
sophisticated ADJ
questions NOUN
about ADP
their PRON
therapeutic ADJ
potential NOUN
will AUX
be AUX
assessed VERB
in ADP
Phase PROPN
II PROPN
trials NOUN
. PUNCT
The DET
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
estimates VERB
10,000 NUM
children NOUN
in ADP
the DET
United PROPN
States PROPN
have AUX
HIV PROPN
. PUNCT
  SPACE
By ADP
the DET
end NOUN
of ADP
the DET
decade NOUN
, PUNCT
the DET
World PROPN
Health PROPN
Organization PROPN
projects VERB
10 NUM
million NUM
children NOUN
will AUX
be AUX
infected VERB
worldwide ADV
. PUNCT
The DET
study NOUN
will AUX
enroll VERB
children NOUN
ages NOUN
1 NUM
month NOUN
to ADP
12 NUM
years NOUN
old ADJ
. PUNCT
  SPACE
NIAID PROPN
, PUNCT
which PRON
funds VERB
the DET
AIDS PROPN
Clinical PROPN
Trials PROPN
Group PROPN
network NOUN
, PUNCT
anticipates VERB
conducting VERB
the DET
trial NOUN
at ADP
nine NUM
ACTG PROPN
sites NOUN
around ADP
  SPACE
the DET
country NOUN
and CCONJ
three NUM
sites NOUN
participating VERB
in ADP
the DET
ACTG NOUN
but CCONJ
funded VERB
by ADP
the DET
National PROPN
Institute PROPN
of ADP
Child PROPN
Health PROPN
and CCONJ
Human PROPN
Development PROPN
. PUNCT
Preliminary ADJ
evidence NOUN
from ADP
similar ADJ
studies NOUN
under ADP
way NOUN
in ADP
infected ADJ
adults NOUN
shows NOUN
that SCONJ
certain ADJ
vaccines NOUN
can AUX
boost VERB
existing VERB
HIV PROPN
- PUNCT
specific ADJ
immune ADJ
responses NOUN
and CCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
47Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993stimulate NUM
new ADJ
ones NOUN
. PUNCT
  SPACE
It PRON
will AUX
be AUX
several ADJ
years NOUN
, PUNCT
however ADV
, PUNCT
before ADP
researchers NOUN
know VERB
how ADV
these DET
responses NOUN
affect VERB
the DET
clinical ADJ
course NOUN
of ADP
the DET
disease NOUN
. PUNCT
The DET
results NOUN
from ADP
the DET
pediatric ADJ
trial NOUN
, PUNCT
known VERB
as SCONJ
ACTG PROPN
218 NUM
, PUNCT
will AUX
be AUX
examined VERB
closely ADV
for ADP
other ADJ
reasons NOUN
as ADV
well ADV
. PUNCT
  SPACE
" PUNCT
This DET
trial NOUN
will AUX
provide VERB
the DET
first ADJ
insight NOUN
into ADP
how ADV
the DET
immature ADJ
immune ADJ
system NOUN
responds VERB
to PART
candidate VERB
HIV PROPN
vaccines NOUN
, PUNCT
" PUNCT
said VERB
Daniel PROPN
Hoth PROPN
, PUNCT
M.D. PROPN
, PUNCT
director NOUN
of ADP
NIAID PROPN
's PART
division NOUN
of ADP
AIDS PROPN
. PUNCT
  SPACE
" PUNCT
We PRON
need VERB
this DET
information NOUN
to PART
design VERB
trials NOUN
to PART
test VERB
whether SCONJ
experimental ADJ
vaccines NOUN
can AUX
prevent VERB
HIV PROPN
infection NOUN
in ADP
children NOUN
. PUNCT
" PUNCT
In ADP
the DET
United PROPN
States PROPN
, PUNCT
most ADJ
HIV PROPN
- PUNCT
infected VERB
children NOUN
live VERB
in ADP
poor ADJ
inner ADJ
- PUNCT
city NOUN
areas NOUN
, PUNCT
and CCONJ
more ADJ
than SCONJ
80 NUM
percent NOUN
are AUX
minorities NOUN
, PUNCT
mainly ADV
black ADJ
or CCONJ
Hispanic ADJ
. PUNCT
Nearly ADV
all DET
HIV PROPN
- PUNCT
infected VERB
children NOUN
acquire VERB
the DET
virus NOUN
from ADP
their PRON
mothers NOUN
during ADP
pregnancy NOUN
  SPACE
or CCONJ
at ADP
birth NOUN
. PUNCT
  SPACE
An DET
infected ADJ
mother NOUN
in ADP
the DET
United PROPN
States PROPN
has AUX
more ADJ
than SCONJ
a DET
one NUM
in ADP
four NUM
chance NOUN
of ADP
transmitting VERB
the DET
virus NOUN
to ADP
her PRON
baby NOUN
. PUNCT
  SPACE
As SCONJ
growing VERB
numbers NOUN
of ADP
women NOUN
of ADP
childbearing VERB
age NOUN
become VERB
exposed VERB
to ADP
HIV PROPN
through ADP
injection NOUN
drug NOUN
use NOUN
or CCONJ
infected VERB
sexual ADJ
partners NOUN
, PUNCT
researchers NOUN
expect VERB
a DET
corresponding ADJ
increase NOUN
in ADP
the DET
numbers NOUN
of ADP
infected ADJ
children NOUN
. PUNCT
HIV PROPN
disease NOUN
progresses VERB
more ADV
rapidly ADV
in ADP
infants NOUN
and CCONJ
children NOUN
than SCONJ
in ADP
adults NOUN
. PUNCT
  SPACE
The DET
most ADV
recent ADJ
information NOUN
suggests VERB
that SCONJ
50 NUM
percent NOUN
of ADP
infants NOUN
born VERB
with ADP
HIV PROPN
develop VERB
a DET
serious ADJ
AIDS PROPN
- PUNCT
related VERB
infection NOUN
by ADP
3 NUM
to PART
6 NUM
years NOUN
of ADP
age NOUN
. PUNCT
  SPACE
These DET
infections NOUN
include VERB
severe ADJ
or CCONJ
frequent ADJ
bouts NOUN
of ADP
common ADJ
bacterial ADJ
illnesses NOUN
of ADP
childhood NOUN
that PRON
can AUX
result VERB
in ADP
seizures NOUN
, PUNCT
pneumonia NOUN
, PUNCT
diarrhea NOUN
and CCONJ
other ADJ
symptoms NOUN
leading VERB
to ADP
nutritional ADJ
problems NOUN
and CCONJ
long ADJ
hospital NOUN
stays NOUN
. PUNCT
At ADP
least ADJ
half NOUN
of ADP
the DET
children NOUN
in ADP
the DET
trial NOUN
will AUX
be AUX
2 NUM
years NOUN
of ADP
age NOUN
or CCONJ
younger ADJ
to PART
enable VERB
comparison NOUN
of ADP
the DET
immune ADJ
responses NOUN
of ADP
the DET
younger ADJ
and CCONJ
older ADJ
participants NOUN
. PUNCT
  SPACE
All DET
volunteers NOUN
must AUX
have AUX
well ADV
- PUNCT
documented VERB
HIV PROPN
infection NOUN
but CCONJ
no DET
symptoms NOUN
of ADP
HIV PROPN
disease NOUN
other ADJ
than SCONJ
swollen ADJ
lymph NOUN
glands NOUN
or CCONJ
a DET
mildly ADV
swollen ADJ
liver NOUN
or CCONJ
spleen NOUN
. PUNCT
  SPACE
They PRON
can AUX
not PART
have AUX
received VERB
any DET
anti ADJ
- ADJ
retroviral ADJ
or CCONJ
immune ADJ
- PUNCT
regulating VERB
drugs NOUN
within ADP
one NUM
month NOUN
prior ADV
to ADP
their PRON
entry NOUN
into ADP
the DET
study NOUN
. PUNCT
Study NOUN
chair NOUN
John PROPN
S. PROPN
Lambert PROPN
, PUNCT
M.D. PROPN
, PUNCT
of ADP
the DET
University PROPN
of ADP
Rochester PROPN
Medical PROPN
School PROPN
, PUNCT
and CCONJ
co- NOUN
chair NOUN
Samuel PROPN
Katz PROPN
, PUNCT
M.D. PROPN
, PUNCT
of ADP
Duke PROPN
University PROPN
School PROPN
of ADP
Medicine PROPN
, PUNCT
will AUX
coordinate VERB
the DET
trial NOUN
assisted VERB
by ADP
James PROPN
McNamara PROPN
, PUNCT
M.D. PROPN
, PUNCT
medical ADJ
officer NOUN
in ADP
the DET
pediatric ADJ
medicine NOUN
branch NOUN
of ADP
NIAID PROPN
's PART
division NOUN
of ADP
AIDS PROPN
. PUNCT
" PUNCT
We PRON
will AUX
compare VERB
the DET
safety NOUN
of ADP
the DET
vaccines NOUN
by ADP
closely ADV
monitoring VERB
the DET
children NOUN
for ADP
any DET
side NOUN
effects NOUN
, PUNCT
to PART
see VERB
if SCONJ
one NUM
vaccine NOUN
produces VERB
more ADJ
swollen ADJ
arms NOUN
or CCONJ
fevers NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
than SCONJ
another DET
, PUNCT
" PUNCT
said VERB
Dr. PROPN
McNamara PROPN
. PUNCT
  SPACE
" PUNCT
We PRON
'll AUX
also ADV
look VERB
at ADP
whether SCONJ
low ADJ
or CCONJ
high ADJ
doses NOUN
of ADP
the DET
vaccines NOUN
stimulate VERB
immune ADJ
responses NOUN
or CCONJ
other ADJ
significant ADJ
laboratory NOUN
or CCONJ
clinical ADJ
effects NOUN
. PUNCT
" PUNCT
   SPACE
He PRON
emphasized VERB
that SCONJ
the DET
small ADJ
study NOUN
size NOUN
precludes NOUN
comparing VERB
these DET
responses NOUN
or CCONJ
effects NOUN
among ADP
the DET
three NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
48Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993products NUM
. PUNCT
The DET
trial NOUN
will AUX
test VERB
two NUM
doses NOUN
each DET
of ADP
three NUM
experimental ADJ
vaccines NOUN
made VERB
from ADP
recombinant ADJ
HIV PROPN
proteins NOUN
. PUNCT
  SPACE
These DET
so ADV
- PUNCT
called VERB
subunit NOUN
vaccines NOUN
, PUNCT
each DET
genetically ADV
engineered VERB
to PART
contain VERB
only ADV
a DET
piece NOUN
of ADP
the DET
virus NOUN
, PUNCT
have AUX
so ADV
far ADV
proved VERB
well ADV
- PUNCT
tolerated VERB
in ADP
ongoing ADJ
trials NOUN
in ADP
HIV PROPN
- PUNCT
infected VERB
adults NOUN
. PUNCT
One NUM
vaccine NOUN
made VERB
by ADP
MicroGeneSys PROPN
Inc. PROPN
of ADP
Meriden PROPN
, PUNCT
Conn. PROPN
, PUNCT
contains VERB
gp160 PROPN
- PUNCT
-a PROPN
protein NOUN
  SPACE
that PRON
gives VERB
rise NOUN
to ADP
HIV PROPN
's PART
surface NOUN
proteins NOUN
-- PUNCT
plus CCONJ
alum PROPN
adjuvant NOUN
. PUNCT
  SPACE
Adjuvants NOUN
boost VERB
specific ADJ
immune ADJ
responses NOUN
to ADP
a DET
vaccine NOUN
. PUNCT
  SPACE
Presently ADV
, PUNCT
alum PROPN
is AUX
the DET
only ADJ
adjuvant ADJ
used VERB
in ADP
human ADJ
vaccines NOUN
licensed VERB
by ADP
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
. PUNCT
Both DET
of ADP
the DET
other ADJ
vaccines NOUN
-- PUNCT
one NUM
made VERB
by ADP
Genentech PROPN
Inc. PROPN
of ADP
South PROPN
San PROPN
Francisco PROPN
and CCONJ
the DET
other ADJ
by ADP
Biocine PROPN
, PUNCT
a DET
joint ADJ
venture NOUN
of ADP
Chiron PROPN
and CCONJ
CIBA PROPN
- PUNCT
Geigy PROPN
, PUNCT
in ADP
Emeryville PROPN
, PUNCT
Calif.--contain VERB
the DET
major ADJ
HIV PROPN
surface NOUN
protein NOUN
, PUNCT
gp120 PROPN
, PUNCT
plus CCONJ
adjuvant NOUN
. PUNCT
  SPACE
The DET
Genentech PROPN
vaccine NOUN
contains VERB
alum PROPN
, PUNCT
while SCONJ
the DET
Biocine PROPN
vaccine NOUN
contains VERB
MF59 PROPN
, PUNCT
an DET
experimental ADJ
adjuvant NOUN
that PRON
has AUX
proved VERB
safe ADJ
and CCONJ
effective ADJ
in ADP
other ADJ
Phase NOUN
I PRON
vaccine VERB
trials NOUN
in ADP
adults NOUN
. PUNCT
A DET
low ADJ
dose NOUN
of ADP
each DET
product NOUN
will AUX
be AUX
tested VERB
first ADV
against ADP
a DET
placebo NOUN
in ADP
15 NUM
children NOUN
. PUNCT
  SPACE
Twelve NUM
children NOUN
will AUX
be AUX
assigned VERB
at ADP
random ADJ
to PART
be AUX
immunized VERB
with ADP
the DET
experimental ADJ
vaccine NOUN
, PUNCT
and CCONJ
three NUM
children NOUN
will AUX
be AUX
given VERB
adjuvant ADJ
alone ADV
, PUNCT
considered VERB
the DET
placebo NOUN
. PUNCT
  SPACE
Neither CCONJ
the DET
health NOUN
care NOUN
workers NOUN
nor CCONJ
the DET
children NOUN
will AUX
be AUX
told VERB
what PRON
they PRON
receive VERB
. PUNCT
If SCONJ
the DET
low ADJ
dose NOUN
is AUX
well ADV
- PUNCT
tolerated VERB
, PUNCT
controlled VERB
testing NOUN
of ADP
a DET
higher ADJ
dose NOUN
of ADP
the DET
experimental ADJ
vaccine NOUN
and CCONJ
adjuvant ADJ
placebo NOUN
in ADP
another DET
group NOUN
of ADP
15 NUM
children NOUN
will AUX
begin VERB
. PUNCT
Each DET
child NOUN
will AUX
receive VERB
six NUM
immunizations NOUN
-- PUNCT
one NUM
every DET
four NUM
weeks NOUN
for ADP
six NUM
months NOUN
-- PUNCT
and CCONJ
be AUX
followed VERB
- PUNCT
up ADP
for ADP
24 NUM
weeks NOUN
after ADP
the DET
last ADJ
immunization NOUN
. PUNCT
  SPACE
For ADP
more ADJ
information NOUN
about ADP
the DET
trial NOUN
sites NOUN
or CCONJ
eligibility NOUN
for ADP
enrollment NOUN
, PUNCT
call VERB
the DET
AIDS PROPN
Clinical PROPN
Trials PROPN
Information PROPN
Service PROPN
, PUNCT
1 NUM
- PUNCT
800-TRIALS NUM
- PUNCT
A NOUN
, PUNCT
from ADP
9 NUM
a.m. NOUN
to ADP
7 NUM
p.m. NOUN
, PUNCT
EST PROPN
weekdays NOUN
. PUNCT
  SPACE
The DET
service NOUN
has AUX
Spanish PROPN
- PUNCT
speaking VERB
information NOUN
specialists NOUN
available ADJ
. PUNCT
  SPACE
Information NOUN
on ADP
NIAID PROPN
's PART
pediatric ADJ
HIV PROPN
/ SYM
AIDS PROPN
research NOUN
is AUX
available ADJ
from ADP
the DET
Office PROPN
of ADP
Communications PROPN
at ADP
( PUNCT
301 NUM
) PUNCT
496- NUM
5717 NUM
. PUNCT
  SPACE
NIH PROPN
, PUNCT
CDC PROPN
and CCONJ
FDA PROPN
are AUX
agencies NOUN
of ADP
the DET
U.S. PROPN
Public PROPN
Health PROPN
Service PROPN
in ADP
HHS PROPN
. PUNCT
For ADP
press NOUN
inquiries NOUN
only ADV
, PUNCT
please INTJ
call VERB
Laurie PROPN
K. PROPN
Doepel PROPN
at ADP
( PUNCT
301 NUM
) PUNCT
402 NUM
- PUNCT
1663.HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
49Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
           SPACE
NEW ADJ
EVIDENCE PROPN
THAT ADP
THE DET
HIV PROPN
CAN AUX
CAUSE VERB
DISEASE NOUN
INDEPENDENTLY NOUN
              SPACE
News PROPN
from ADP
the DET
National PROPN
Institute PROPN
of ADP
Dental PROPN
ResearchThere PROPN
is AUX
new ADJ
evidence NOUN
that SCONJ
the DET
human ADJ
immunodeficiency NOUN
virus NOUN
can AUX
cause VERB
disease NOUN
independently ADV
of ADP
its PRON
ability NOUN
to PART
suppress VERB
the DET
immune ADJ
system NOUN
, PUNCT
say VERB
scientists NOUN
at ADP
the DET
National PROPN
Institues PROPN
of ADP
Health PROPN
. PUNCT
They PRON
report VERB
that SCONJ
HIV PROPN
itself PRON
, PUNCT
not PART
an DET
opportunistic ADJ
infection NOUN
, PUNCT
caused VERB
scaling VERB
skin NOUN
conditions NOUN
to PART
develop VERB
in ADP
mice NOUN
carrying VERB
the DET
genes NOUN
for ADP
HIV PROPN
. PUNCT
  SPACE
Although SCONJ
the DET
HIV PROPN
genes NOUN
were AUX
active ADJ
in ADP
the DET
mice NOUN
, PUNCT
they PRON
did AUX
not PART
compromise VERB
the DET
animals NOUN
' PART
immunity NOUN
, PUNCT
the DET
researchers NOUN
found VERB
. PUNCT
  SPACE
This DET
led VERB
them PRON
to PART
conclude VERB
that SCONJ
the DET
HIV PROPN
itself PRON
caused VERB
the DET
skin NOUN
disease NOUN
. PUNCT
Our PRON
findings NOUN
support VERB
a DET
growing VERB
body NOUN
of ADP
evidence NOUN
that SCONJ
HIV PROPN
can AUX
cause VERB
disease NOUN
without ADP
affecting VERB
the DET
immune ADJ
system NOUN
, PUNCT
said VERB
lead NOUN
author NOUN
Dr. PROPN
Jeffrey PROPN
Kopp PROPN
of ADP
the DET
National PROPN
Institute PROPN
of ADP
Dental PROPN
Research PROPN
( PUNCT
NIDR PROPN
) PUNCT
. PUNCT
  SPACE
Dr. PROPN
Kopp PROPN
and CCONJ
his PRON
colleagues NOUN
described VERB
their PRON
study NOUN
in ADP
the DET
March PROPN
issue NOUN
of ADP
AIDS PROPN
Research PROPN
and CCONJ
Human PROPN
Retroviruses PROPN
. PUNCT
Developing VERB
animal NOUN
models NOUN
of ADP
HIV PROPN
infection NOUN
has AUX
been AUX
difficult ADJ
, PUNCT
since SCONJ
most ADJ
animals NOUN
, PUNCT
including VERB
mice NOUN
, PUNCT
can AUX
not PART
be AUX
infected VERB
by ADP
the DET
virus NOUN
. PUNCT
  SPACE
To PART
bypass VERB
this DET
problem NOUN
, PUNCT
scientists NOUN
have AUX
developed VERB
HIV PROPN
- PUNCT
transgenic NOUN
mice NOUN
, PUNCT
which PRON
carry VERB
genes NOUN
for ADP
HIV PROPN
as ADV
well ADV
as SCONJ
their PRON
own ADJ
genetic ADJ
material NOUN
. PUNCT
NIDR PROPN
scientists NOUN
created VERB
the DET
transgenic ADJ
mice NOUN
by ADP
injecting VERB
HIV PROPN
genes NOUN
into ADP
mouse NOUN
eggs NOUN
and CCONJ
then ADV
implanting VERB
the DET
eggs NOUN
into ADP
female ADJ
mice NOUN
. PUNCT
  SPACE
The DET
resulting VERB
litters NOUN
contained VERB
both DET
normal ADJ
and CCONJ
transgenic ADJ
animals NOUN
. PUNCT
Institute PROPN
scientists NOUN
had AUX
created VERB
mice NOUN
that PRON
carried VERB
a DET
complete ADJ
copy NOUN
of ADP
HIV PROPN
genetic ADJ
material NOUN
in ADP
l988 PROPN
. PUNCT
  SPACE
Those DET
mice NOUN
, PUNCT
however ADV
, PUNCT
became VERB
sick ADJ
and CCONJ
died VERB
too ADV
soon ADV
after ADP
birth NOUN
to PART
study VERB
in ADP
depth NOUN
. PUNCT
  SPACE
In ADP
the DET
present ADJ
study NOUN
, PUNCT
the DET
scientists NOUN
used VERB
an DET
incomplete ADJ
copy NOUN
of ADP
HIV PROPN
, PUNCT
which PRON
allowed VERB
the DET
animals NOUN
to PART
live VERB
longer ADV
. PUNCT
Some DET
of ADP
the DET
transgenic ADJ
animals NOUN
developed VERB
scaling VERB
, PUNCT
wart NOUN
- PUNCT
like ADJ
tumors NOUN
on ADP
their PRON
necks NOUN
and CCONJ
backs NOUN
. PUNCT
  SPACE
Other ADJ
transgenic ADJ
mice NOUN
developed VERB
thickened VERB
, PUNCT
crusting VERB
skin NOUN
lesions NOUN
that PRON
covered VERB
most ADJ
of ADP
their PRON
bodies NOUN
, PUNCT
resembling VERB
psoriasis NOUN
in ADP
humans NOUN
. PUNCT
  SPACE
No DET
skin NOUN
lesions NOUN
developed VERB
in ADP
their PRON
normal ADJ
, PUNCT
non ADJ
- ADJ
transgenic ADJ
littermates NOUN
. PUNCT
Studies NOUN
of ADP
tissue NOUN
taken VERB
from ADP
the DET
wart NOUN
- PUNCT
like ADJ
skin NOUN
tumors NOUN
showed VERB
that SCONJ
they PRON
were AUX
a DET
type NOUN
of ADP
noncancerous ADJ
tumor NOUN
called VERB
papilloma NOUN
. PUNCT
Although SCONJ
the DET
papillomavirus NOUN
can AUX
cause VERB
these DET
skin NOUN
lesions NOUN
, PUNCT
laboratory NOUN
tests NOUN
showed VERB
no DET
sign NOUN
of ADP
that DET
virus NOUN
in ADP
the DET
animals NOUN
. PUNCT
Tissue NOUN
samples NOUN
taken VERB
from ADP
the DET
sick ADJ
mice NOUN
throughout ADP
the DET
study NOUN
revealed VERB
the DET
presence NOUN
of ADP
a DET
protein NOUN
- PUNCT
producing VERB
molecule NOUN
made VERB
by ADP
the DET
HIV PROPN
genetic ADJ
material NOUN
. PUNCT
  SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
50Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Evidence NUM
of ADP
HIV PROPN
protein NOUN
production NOUN
proved VERB
that SCONJ
the DET
viral ADJ
genes NOUN
were AUX
" PUNCT
turned VERB
on ADP
, PUNCT
" PUNCT
or CCONJ
active ADJ
, PUNCT
said VERB
Dr. PROPN
Kopp PROPN
. PUNCT
The DET
scientists NOUN
found VERB
no DET
evidence NOUN
, PUNCT
however ADV
, PUNCT
of ADP
compromised VERB
immunity NOUN
in ADP
the DET
mice NOUN
: PUNCT
  SPACE
no DET
increase NOUN
in ADP
their PRON
white ADJ
blood NOUN
cell NOUN
count NOUN
and CCONJ
no DET
signs NOUN
of ADP
common ADJ
infections NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
HIV PROPN
genes NOUN
were AUX
active ADJ
but CCONJ
the DET
animals NOUN
' PART
immune ADJ
systems NOUN
were AUX
not PART
suppressed VERB
confirms NOUN
that SCONJ
the DET
virus NOUN
itself PRON
was AUX
causing VERB
the DET
skin NOUN
lesions NOUN
, PUNCT
Dr. PROPN
Kopp PROPN
said VERB
. PUNCT
Further ADJ
proof NOUN
of ADP
HIV PROPN
gene NOUN
involvement NOUN
came VERB
from ADP
a DET
test NOUN
in ADP
which PRON
the DET
scientists NOUN
exposed VERB
the DET
transgenic ADJ
animals NOUN
to PART
ultraviolet VERB
light NOUN
. PUNCT
  SPACE
The DET
light NOUN
increased VERB
HIV PROPN
genetic ADJ
activity NOUN
causing VERB
papillomas PROPN
to PART
develop VERB
on ADP
formerly ADV
healthy ADJ
skin NOUN
. PUNCT
  SPACE
Papilloma PROPN
formation NOUN
in ADP
response NOUN
to ADP
increased VERB
HIV PROPN
genetic ADJ
activity NOUN
proved VERB
the DET
genes NOUN
were AUX
responsible ADJ
for ADP
the DET
skin NOUN
condition NOUN
, PUNCT
the DET
scientists NOUN
said VERB
. PUNCT
  SPACE
No DET
lesions NOUN
appeared VERB
on ADP
normal ADJ
mice NOUN
exposed VERB
to ADP
the DET
UV NOUN
light NOUN
. PUNCT
The DET
transgenic ADJ
mice NOUN
used VERB
in ADP
this DET
study NOUN
were AUX
developed VERB
at ADP
NIDR PROPN
by ADP
Dr. PROPN
Peter PROPN
Dickie PROPN
, PUNCT
who PRON
is AUX
now ADV
with ADP
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious ADJ
Diseases NOUN
. PUNCT
Collaborating VERB
on ADP
the DET
study NOUN
with ADP
Dr. PROPN
Kopp PROPN
were AUX
Mr. PROPN
Charles PROPN
Wohlenberg PROPN
, PUNCT
Drs PROPN
. PUNCT
Nickolas PROPN
Dorfman PROPN
, PUNCT
Joseph PROPN
Bryant PROPN
, PUNCT
Abner PROPN
Notkins PROPN
, PUNCT
and CCONJ
Paul PROPN
Klotman PROPN
, PUNCT
all DET
of ADP
NIDR PROPN
; PUNCT
Dr. PROPN
Stephen PROPN
Katz PROPN
of ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
; PUNCT
and CCONJ
Dr. PROPN
James PROPN
Rooney PROPN
, PUNCT
formerly ADV
with ADP
NIDR PROPN
and CCONJ
now ADV
with ADP
Burroughs PROPN
Wellcome PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
51Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
               SPACE
Clinical PROPN
Consultation PROPN
Telephone PROPN
Service PROPN
for ADP
AIDS PROPN
                                SPACE
H PROPN
H PROPN
S PROPN
   SPACE
N NOUN
E NOUN
W PROPN
S PROPN
                 SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                 SPACE
U.S. PROPN
DEPARTMENT PROPN
OF ADP
HEALTH PROPN
AND CCONJ
HUMAN PROPN
SERVICES NOUN
                                 SPACE
March PROPN
4 NUM
, PUNCT
1993 NUM
     SPACE
HHS PROPN
Secretary PROPN
Donna PROPN
E. PROPN
Shalala PROPN
today NOUN
announced VERB
the DET
first ADJ
nationwide ADJ
clinical ADJ
consultation NOUN
telephone NOUN
service NOUN
for ADP
doctors NOUN
and CCONJ
other ADJ
health NOUN
care NOUN
professionals NOUN
who PRON
have AUX
questions NOUN
about ADP
providing VERB
care NOUN
to ADP
people NOUN
with ADP
HIV PROPN
infection NOUN
or CCONJ
AIDS PROPN
. PUNCT
      SPACE
The DET
toll NOUN
- PUNCT
free ADJ
National PROPN
HIV PROPN
Telephone PROPN
Consulting PROPN
Service PROPN
is AUX
staffed VERB
by ADP
a DET
physician NOUN
, PUNCT
a DET
nurse NOUN
practitioner NOUN
and CCONJ
a DET
pharmacist NOUN
. PUNCT
It PRON
provides VERB
information NOUN
on ADP
drugs NOUN
, PUNCT
clinical ADJ
trials NOUN
and CCONJ
the DET
latest ADJ
treatment NOUN
methods NOUN
. PUNCT
  SPACE
The DET
service NOUN
is AUX
funded VERB
by ADP
the DET
Health PROPN
Resources PROPN
and CCONJ
Services PROPN
Administration PROPN
and CCONJ
operates VERB
out SCONJ
of ADP
San PROPN
Francisco PROPN
General PROPN
Hospital PROPN
. PUNCT
      SPACE
Secretary PROPN
Shalala PROPN
said VERB
, PUNCT
" PUNCT
One NUM
goal NOUN
of ADP
this DET
project NOUN
is AUX
to PART
share VERB
expertise NOUN
so SCONJ
patients NOUN
get VERB
the DET
best ADJ
care NOUN
. PUNCT
  SPACE
A DET
second ADJ
goal NOUN
is AUX
to PART
get AUX
more ADJ
primary ADJ
health NOUN
care NOUN
providers NOUN
involved VERB
in ADP
care NOUN
for ADP
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
, PUNCT
which PRON
reduces VERB
treatment NOUN
cost NOUN
by ADP
allowing VERB
patients NOUN
to PART
remain VERB
with ADP
their PRON
medical ADJ
providers NOUN
and CCONJ
community NOUN
social ADJ
support NOUN
networks NOUN
. PUNCT
  SPACE
Currently ADV
, PUNCT
many ADJ
providers NOUN
refer VERB
patients NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
to ADP
specialists NOUN
or CCONJ
other ADJ
providers NOUN
who PRON
have AUX
more ADJ
experience NOUN
. PUNCT
" PUNCT
      SPACE
Secretary PROPN
Shalala PROPN
said VERB
, PUNCT
" PUNCT
This DET
clinical ADJ
expertise NOUN
should AUX
be AUX
especially ADV
helpful ADJ
for ADP
physicians NOUN
and CCONJ
providers NOUN
who PRON
treat VERB
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
in ADP
communities NOUN
and CCONJ
clinical ADJ
sites NOUN
where ADV
HIV PROPN
expertise NOUN
is AUX
not PART
readily ADV
available ADJ
. PUNCT
" PUNCT
      SPACE
The DET
telephone NOUN
number NOUN
for ADP
health NOUN
care NOUN
professionals NOUN
is AUX
1 NUM
- SYM
800 NUM
- PUNCT
933 NUM
- PUNCT
3413 NUM
, PUNCT
and CCONJ
it PRON
is AUX
accessible ADJ
from ADP
10:30 NUM
a.m. NOUN
to ADP
8 NUM
p.m. NOUN
EST PROPN
( PUNCT
7:30 NUM
a.m. NOUN
to ADP
5 NUM
p.m. NOUN
PST PROPN
) PUNCT
Monday PROPN
through ADP
Friday PROPN
. PUNCT
  SPACE
During ADP
these DET
times NOUN
, PUNCT
consultants NOUN
will AUX
try VERB
to PART
answer VERB
questions NOUN
immediately ADV
, PUNCT
or CCONJ
within ADP
an DET
hour NOUN
. PUNCT
  SPACE
At ADP
other ADJ
times NOUN
, PUNCT
physicians NOUN
and CCONJ
health NOUN
care NOUN
providers NOUN
can AUX
leave VERB
an DET
electronic ADJ
message NOUN
, PUNCT
and CCONJ
questions NOUN
will AUX
be AUX
answered VERB
as ADV
quickly ADV
as SCONJ
possible ADJ
. PUNCT
      SPACE
Health PROPN
care NOUN
professionals NOUN
may AUX
call VERB
the DET
service NOUN
to PART
ask VERB
any DET
question NOUN
related VERB
to ADP
providing VERB
HIV PROPN
care NOUN
, PUNCT
including VERB
the DET
latest ADJ
HIV PROPN
/ SYM
AIDS PROPN
drug NOUN
treatment NOUN
information NOUN
, PUNCT
clinical ADJ
trials NOUN
information NOUN
, PUNCT
subspecialty NOUN
case NOUN
referral NOUN
, PUNCT
literature NOUN
searches NOUN
and CCONJ
other ADJ
information NOUN
. PUNCT
  SPACE
The DET
service NOUN
is AUX
designed VERB
for ADP
health NOUN
care NOUN
professionals NOUN
rather ADV
than SCONJ
patients NOUN
, PUNCT
families NOUN
or CCONJ
others NOUN
who PRON
have AUX
alternate ADJ
sources NOUN
of ADP
information NOUN
or CCONJ
materials NOUN
. PUNCT
      SPACE
When ADV
a DET
health NOUN
care NOUN
professional NOUN
calls VERB
the DET
new ADJ
service NOUN
, PUNCT
the DET
call NOUN
is AUX
taken VERB
by ADP
either CCONJ
a DET
clinical ADJ
pharmacist NOUN
, PUNCT
primary ADJ
care NOUN
physician NOUN
or CCONJ
family NOUN
nurse NOUN
practitioner NOUN
. PUNCT
  SPACE
All DET
staff NOUN
members NOUN
have AUX
extensive ADJ
experience NOUN
in ADP
outpatient NOUN
and CCONJ
inpatient ADJ
primary ADJ
care NOUN
for ADP
people NOUN
with ADP
HIV PROPN
- PUNCT
related VERB
diseases NOUN
. PUNCT
  SPACE
The DET
consultant NOUN
asks VERB
for ADP
patient NOUN
- PUNCT
specific ADJ
information NOUN
, PUNCT
including VERB
CD4 PROPN
cell NOUN
count NOUN
, PUNCT
current ADJ
medications NOUN
, PUNCT
sex NOUN
, PUNCT
age NOUN
and CCONJ
the DET
patient NOUN
's PART
HIV PROPN
history NOUN
. PUNCT
      SPACE
This DET
national ADJ
service NOUN
has AUX
grown VERB
out SCONJ
of ADP
a DET
16-month NUM
local ADJ
effort NOUN
that PRON
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
52Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993responded NUM
to ADP
nearly ADV
1,000 NUM
calls NOUN
from ADP
health NOUN
care NOUN
providers NOUN
in ADP
northern ADJ
California PROPN
. PUNCT
  SPACE
The DET
initial ADJ
project NOUN
was AUX
funded VERB
by ADP
HRSA PROPN
's PART
Bureau PROPN
of ADP
Health PROPN
Professions PROPN
, PUNCT
through ADP
its PRON
Community PROPN
Provider PROPN
AIDS PROPN
Training NOUN
( PUNCT
CPAT PROPN
) PUNCT
project NOUN
, PUNCT
and CCONJ
by ADP
the DET
American PROPN
Academy PROPN
of ADP
Family PROPN
Physicians PROPN
. PUNCT
      SPACE
" PUNCT
When ADV
providers NOUN
expand VERB
their PRON
knowledge NOUN
, PUNCT
they PRON
also ADV
improve VERB
the DET
quality NOUN
of ADP
care NOUN
they PRON
are AUX
able ADJ
to PART
provide VERB
to ADP
their PRON
patients NOUN
, PUNCT
" PUNCT
said VERB
HRSA PROPN
Administrator PROPN
Robert PROPN
G. PROPN
Harmon PROPN
. PUNCT
M.D. PROPN
, PUNCT
M.P.H. PROPN
  SPACE
" PUNCT
This DET
project NOUN
will AUX
be AUX
a DET
great ADJ
resource NOUN
for ADP
health NOUN
care NOUN
professionals NOUN
and CCONJ
the DET
HIV PROPN
/ SYM
AIDS PROPN
patients NOUN
they PRON
serve VERB
. PUNCT
" PUNCT
      SPACE
" PUNCT
This DET
service NOUN
has AUX
opened VERB
a DET
new ADJ
means NOUN
of ADP
communication NOUN
between ADP
health NOUN
care NOUN
professionals NOUN
and CCONJ
experts NOUN
on ADP
HIV PROPN
care NOUN
management NOUN
, PUNCT
" PUNCT
said VERB
HRSA PROPN
's PART
associate ADJ
administrator NOUN
for ADP
AIDS PROPN
and CCONJ
director NOUN
of ADP
the DET
Bureau PROPN
of ADP
Health PROPN
Resources PROPN
Development PROPN
, PUNCT
G. PROPN
Stephen PROPN
Bowen PROPN
, PUNCT
M.D. PROPN
, PUNCT
M.P.H. PROPN
  SPACE
" PUNCT
Providers NOUN
who PRON
treat VERB
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
have AUX
access NOUN
to ADP
the DET
latest ADJ
information NOUN
on ADP
new ADJ
drugs NOUN
, PUNCT
treatment NOUN
methods NOUN
and CCONJ
therapies NOUN
for ADP
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
. PUNCT
" PUNCT
      SPACE
HRSA PROPN
is AUX
one NUM
of ADP
eight NUM
U.S. PROPN
Public PROPN
Health PROPN
Service PROPN
agencies NOUN
within ADP
HHS PROPN
. PUNCT
                        SPACE
AIDS PROPN
Hotline PROPN
Numbers PROPN
for ADP
Consumers NOUN
                  SPACE
CDC PROPN
National PROPN
AIDS PROPN
Hotline PROPN
-- PUNCT
1 NUM
- PUNCT
800 NUM
- SYM
342-AIDS NUM
                  SPACE
for ADP
information NOUN
in ADP
Spanish PROPN
- PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
344-SIDA NUM
          SPACE
AIDS PROPN
Clinical PROPN
Trials PROPN
( PUNCT
English PROPN
& CCONJ
Spanish PROPN
) PUNCT
-- PUNCT
1 NUM
- PUNCT
800-TRIALS NUM
- PUNCT
AHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
53 NUM
 SPACE
------------- PUNCT
cut VERB
here ADV
------------------- PUNCT
This DET
is AUX
the DET
last ADJ
part NOUN
------------------ PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59124From NUM
: PUNCT
sbishop@desire.wright.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr21.024103.29880@spdcc.com NUM
> X
, PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr20.212706.820@lrc.edu NUM
> X
kjiv@lrc.edu NUM
writes:>>Can ADP
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
> X
> X
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
> X
> X
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to ADP
> X
> X
prevent PROPN
asthma PROPN
) PUNCT
; PUNCT
Vancenase PROPN
. PUNCT
> X
> X
Hismanal PROPN
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to ADP
weight NOUN
gain NOUN
. PUNCT
> X
It PRON
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect NOUN
, PUNCT
> X
and CCONJ
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedly ADV
> X
does AUX
n't PART
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to PART
cause VERB
> X
drowsiness NOUN
. PUNCT
It PRON
also ADV
gave VERB
me PRON
lots NOUN
of ADP
problems NOUN
with ADP
joint ADJ
and CCONJ
muscle NOUN
pain NOUN
. PUNCT
  SPACE
Seemed VERB
totrigger NOUN
arthritis NOUN
- PUNCT
like ADJ
problems NOUN
. PUNCT
Sue PROPN
> X
> X
-- PUNCT
> X
Steve PROPN
Dyer PROPN
> X
dyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59125From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 X
Medical PROPN
Newsletter PROPN
Part PROPN
1/4 NUM
- SYM
------------ PUNCT
cut NOUN
here ADV
-----------------Volume NOUN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
              SPACE
+ CCONJ
------------------------------------------------+ PUNCT
              SPACE
! PUNCT
                                                SPACE
! PUNCT
              SPACE
! PUNCT
              SPACE
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
           SPACE
! PUNCT
              SPACE
! PUNCT
                SPACE
Medical PROPN
Newsletter PROPN
              SPACE
! PUNCT
              SPACE
+ X
------------------------------------------------+ PUNCT
                         SPACE
Editor NOUN
: PUNCT
David PROPN
Dodell PROPN
, PUNCT
D.M.D. PROPN
    SPACE
10250 NUM
North PROPN
92nd NOUN
Street PROPN
, PUNCT
Suite PROPN
210 NUM
, PUNCT
Scottsdale PROPN
, PUNCT
Arizona PROPN
85258 NUM
- SYM
4599 NUM
USA PROPN
                          SPACE
Telephone PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
860 NUM
- SYM
1121 NUM
                              SPACE
FAX PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
451 NUM
- PUNCT
1165Compilation NUM
Copyright PROPN
1993 NUM
by ADP
David PROPN
Dodell PROPN
, PUNCT
  SPACE
D.M.D. PROPN
  SPACE
All DET
  SPACE
rights NOUN
  SPACE
Reserved VERB
. PUNCT
  SPACE
License NOUN
  SPACE
is AUX
  SPACE
hereby PROPN
  SPACE
granted VERB
  SPACE
to PART
republish VERB
on ADP
electronic ADJ
media NOUN
for ADP
which PRON
no DET
fees NOUN
are AUX
charged VERB
, PUNCT
  SPACE
so ADV
long ADV
as SCONJ
the DET
text NOUN
of ADP
this DET
copyright NOUN
notice NOUN
and CCONJ
license NOUN
are AUX
attached VERB
intact ADJ
to ADP
any DET
and CCONJ
all DET
republished VERB
portion NOUN
or CCONJ
portions NOUN
. PUNCT
  SPACE
The DET
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
Newsletter PROPN
is AUX
  SPACE
distributed VERB
  SPACE
biweekly ADV
. PUNCT
  SPACE
Articles NOUN
on ADP
  SPACE
a DET
medical ADJ
nature NOUN
are AUX
welcomed VERB
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
an DET
article NOUN
, PUNCT
  SPACE
please INTJ
contact VERB
the DET
editor NOUN
for ADP
information NOUN
on ADP
how ADV
to PART
submit VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
  SPACE
interested ADJ
  SPACE
in ADP
joining VERB
the DET
automated VERB
distribution NOUN
system NOUN
, PUNCT
please INTJ
contact VERB
the DET
editor NOUN
. PUNCT
  SPACE
E PROPN
- PROPN
Mail PROPN
Address NOUN
: PUNCT
                                    SPACE
Editor NOUN
: PUNCT
                            SPACE
Internet NOUN
: PUNCT
david@stat.com X
                              SPACE
FidoNet PROPN
= SYM
1:114/15 NUM
                           SPACE
Bitnet NOUN
= SYM
ATW1H@ASUACAD VERB
LISTSERV PROPN
= SYM
MEDNEWS@ASUACAD.BITNET NOUN
( PUNCT
or CCONJ
internet NOUN
: PUNCT
mednews@asuvm.inre.asu.edu PROPN
) PUNCT
                          SPACE
anonymous ADJ
ftp NOUN
= X
vm1.nodak.edu PROPN
               SPACE
Notification PROPN
List PROPN
= SYM
hicn-notify-request@stat.com X
                 SPACE
FAX PROPN
Delivery NOUN
= SYM
Contact PROPN
Editor PROPN
for ADP
information NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                       SPACE
T NOUN
A PROPN
B NOUN
L NOUN
E NOUN
   SPACE
O INTJ
F NOUN
   SPACE
C NOUN
O NOUN
N NOUN
T NOUN
E NOUN
N NOUN
T NOUN
S1 PROPN
. PUNCT
  SPACE
Comments PROPN
& CCONJ
News PROPN
from ADP
the DET
Editor PROPN
     SPACE
OCR PROPN
/ SYM
Scanner PROPN
News PROPN
................................................... PUNCT
  SPACE
12 NUM
. PUNCT
  SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
     SPACE
[ PUNCT
16 NUM
April PROPN
1993 NUM
] PUNCT
Emerging VERB
Infectious PROPN
Diseases NOUN
......................... PUNCT
  SPACE
3 NUM
     SPACE
Outbreak PROPN
of ADP
E. PROPN
coli NOUN
Infections PROPN
from ADP
Hamburgers NOUN
....................... PUNCT
  SPACE
5 NUM
     SPACE
Use NOUN
of ADP
Smokeless PROPN
Tobacoo PROPN
Among ADP
Adults NOUN
................................ PUNCT
10 NUM
     SPACE
Gonorrhea PROPN
............................................................ PUNCT
14 NUM
     SPACE
Impact PROPN
of ADP
Adult PROPN
Safety PROPN
- PUNCT
Belt PROPN
Use PROPN
on ADP
Children NOUN
less ADJ
than SCONJ
11 NUM
years NOUN
Age NOUN
... PUNCT
17 NUM
     SPACE
Publication PROPN
of ADP
CDC PROPN
Surveillance PROPN
Summaries PROPN
............................ PUNCT
213 NUM
. PUNCT
  SPACE
Clinical PROPN
Research PROPN
News PROPN
     SPACE
High PROPN
Tech PROPN
Assisted PROPN
Reproductive PROPN
Technologies PROPN
......................... PUNCT
244 NUM
. PUNCT
  SPACE
Articles NOUN
     SPACE
Low PROPN
Levels PROPN
Airborne PROPN
Particles PROPN
Linked VERB
to ADP
Serious PROPN
Asthma PROPN
Attacks PROPN
....... PUNCT
29 NUM
     SPACE
NIH PROPN
Consensus PROPN
Development PROPN
Conference PROPN
on ADP
Melanoma PROPN
..................... PUNCT
31 NUM
     SPACE
National PROPN
Cancer PROPN
Insitute PROPN
Designated VERB
Cancer PROPN
Centers PROPN
................... PUNCT
325 NUM
. PUNCT
  SPACE
General PROPN
Announcments PROPN
     SPACE
UCI PROPN
Medical PROPN
Education PROPN
Software PROPN
Repository PROPN
............................ PUNCT
406 NUM
. PUNCT
  SPACE
AIDS PROPN
News PROPN
Summaries PROPN
     SPACE
AIDS PROPN
Daily PROPN
Summary PROPN
April PROPN
12 NUM
to ADP
April PROPN
15 NUM
, PUNCT
1993 NUM
........................ PUNCT
417 NUM
. PUNCT
  SPACE
AIDS PROPN
/ SYM
HIV PROPN
Articles PROPN
     SPACE
First PROPN
HIV PROPN
Vaccine PROPN
Trial PROPN
Begins VERB
in ADP
HIV PROPN
- PUNCT
Infected VERB
Children NOUN
.............. PUNCT
47 NUM
     SPACE
New PROPN
Evidence PROPN
that SCONJ
the DET
HIV PROPN
Can AUX
Cause VERB
Disease PROPN
Independently ADV
............ PUNCT
50 NUM
     SPACE
Clinical PROPN
Consultation PROPN
Telephone PROPN
Service PROPN
for ADP
AIDS PROPN
..................... PUNCT
52HICNet NUM
Medical PROPN
Newsletter PROPN
                                            SPACE
Page PROPN
    SPACE
iVolume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                        SPACE
Comments PROPN
& CCONJ
News PROPN
from ADP
the DET
Editor::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::I NOUN
would AUX
like VERB
to PART
continue VERB
to PART
thank VERB
everyone PRON
who PRON
has AUX
sent VERB
in ADP
a DET
donation NOUN
for ADP
the DET
Mednews PROPN
OCR PROPN
/ SYM
Scanner PROPN
Fund PROPN
. PUNCT
  SPACE
We PRON
have AUX
reached VERB
our PRON
goal NOUN
! PUNCT
  SPACE
A DET
Hewlett PROPN
PackardScanjet PROPN
IIp PROPN
was AUX
purchased VERB
this DET
week NOUN
. PUNCT
Thank VERB
you PRON
to ADP
the DET
following VERB
individuals NOUN
whose PRON
contributions NOUN
I PRON
just ADV
received VERB
: PUNCT
John PROPN
SorensonCarol PROPN
SigelmanCarla PROPN
MooreBarbara PROPN
MooseJudith PROPN
SchrierAgain PROPN
, PUNCT
thank VERB
you PRON
to ADP
all DET
who PRON
gave!I ADV
have AUX
been AUX
using VERB
Wordscan PROPN
Plus CCONJ
for ADP
the DET
past ADJ
couple NOUN
of ADP
weeks NOUN
and CCONJ
would AUX
like VERB
to PART
review VERB
the DET
product NOUN
. PUNCT
  SPACE
Wordscan PROPN
Plus CCONJ
is AUX
a DET
product NOUN
of ADP
Calera PROPN
Recognition PROPN
Systems PROPN
. PUNCT
  SPACE
It PRON
runs VERB
under ADP
Windows PROPN
3.1 NUM
and CCONJ
supports VERB
that SCONJ
Accufont PROPN
Technology PROPN
of ADP
the DET
Hewlett PROPN
Packard PROPN
Scanners PROPN
. PUNCT
  SPACE
When ADV
initially ADV
bringing VERB
up ADP
the DET
software NOUN
, PUNCT
it PRON
lets VERB
you PRON
select VERB
several ADJ
options NOUN
; PUNCT
( PUNCT
1 X
) PUNCT
text NOUN
/ SYM
graphics NOUN
( PUNCT
2 X
) PUNCT
input NOUN
source NOUN
ie PROPN
scanner PROPN
, PUNCT
fax NOUN
file NOUN
, PUNCT
disk NOUN
file NOUN
( PUNCT
3 X
) PUNCT
automatic ADJ
versus ADP
manual ADJ
decomposition NOUN
of ADP
the DET
scanned VERB
image NOUN
. PUNCT
I PRON
like VERB
manual ADJ
decomposition NOUN
since SCONJ
the DET
software NOUN
then ADV
lets VERB
me PRON
select VERB
which PRON
parts NOUN
of ADP
the DET
document NOUN
I PRON
would AUX
like VERB
scanned VERB
, PUNCT
and CCONJ
in ADP
what PRON
order NOUN
. PUNCT
Once ADV
an DET
image NOUN
is AUX
scanned VERB
, PUNCT
you PRON
can AUX
bring VERB
up ADP
the DET
Pop NOUN
- PUNCT
Up ADP
image NOUN
verification NOUN
. PUNCT
  SPACE
The DET
software NOUN
gives VERB
you PRON
two NUM
" PUNCT
errors NOUN
" PUNCT
at ADP
this DET
point NOUN
. PUNCT
  SPACE
Blue PROPN
which PRON
are AUX
words NOUN
that PRON
were AUX
converted VERB
reliability NOUN
, PUNCT
but CCONJ
do AUX
not PART
match VERB
anything PRON
in ADP
the DET
built VERB
- PUNCT
in ADP
dictionary PROPN
. PUNCT
  SPACE
Yellow PROPN
shade NOUN
, PUNCT
which PRON
are AUX
words NOUN
that PRON
Wordscan PROPN
Plus CCONJ
does AUX
n't PART
think VERB
it PRON
converted VERB
correctly ADV
at ADV
all ADV
. PUNCT
  SPACE
I PRON
have AUX
found VERB
that SCONJ
the DET
software NOUN
should AUX
give VERB
itself PRON
more ADJ
credit NOUN
. PUNCT
  SPACE
It PRON
is AUX
usually ADV
correct ADJ
, PUNCT
instead ADV
of ADP
wrong NOUN
. PUNCT
  SPACE
If SCONJ
a DET
word NOUN
is AUX
shaded VERB
blue ADJ
, PUNCT
you PRON
can AUX
add VERB
it PRON
to ADP
your PRON
personal ADJ
dictionary NOUN
. PUNCT
  SPACE
The DET
only ADJ
problem NOUN
is AUX
the DET
personal ADJ
dictionary NOUN
will AUX
only ADV
handle VERB
about ADV
200 NUM
words NOUN
. PUNCT
  SPACE
I PRON
find VERB
this DET
to PART
be AUX
very ADV
limited ADJ
, PUNCT
considering VERB
how ADV
many ADJ
medical ADJ
terms NOUN
are AUX
not PART
in ADP
a DET
normal ADJ
dictionary NOUN
. PUNCT
After ADP
a DET
document NOUN
is AUX
converted VERB
, PUNCT
you PRON
can AUX
save VERB
it PRON
in ADP
a DET
multitude NOUN
of ADP
word NOUN
processor NOUN
formats NOUN
. PUNCT
  SPACE
Also ADV
any DET
images NOUN
that PRON
were AUX
captured VERB
can AUX
be AUX
stored VERB
in ADP
a DET
seperate ADJ
TIFF PROPN
or CCONJ
PCX PROPN
file NOUN
format NOUN
. PUNCT
I PRON
was AUX
extremely ADV
impressed ADJ
on ADP
the DET
percent NOUN
accuracy NOUN
for ADP
fax NOUN
files NOUN
. PUNCT
  SPACE
I PRON
use VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
1Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993an NUM
Intel PROPN
Satisfaxtion PROPN
card NOUN
, PUNCT
which PRON
stores VERB
incoming ADJ
faxs NOUN
in ADP
a DET
PCX PROPN
/ SYM
DCX PROPN
format NOUN
. PUNCT
  SPACE
While SCONJ
most ADJ
of ADP
my PRON
faxes NOUN
were AUX
received VERB
in ADP
" PUNCT
standard ADJ
" PUNCT
mode NOUN
( PUNCT
200x100 PROPN
dpi PROPN
) PUNCT
, PUNCT
the DET
accuracy NOUN
of ADP
Wordscan PROPN
Plus CCONJ
was AUX
excellent ADJ
. PUNCT
Overall ADV
, PUNCT
a DET
very ADV
impressive ADJ
product NOUN
. PUNCT
  SPACE
The DET
only ADJ
fault NOUN
I PRON
could AUX
find VERB
is AUX
the DET
limitations NOUN
of ADP
the DET
size NOUN
of ADP
the DET
user NOUN
dictionary PROPN
. PUNCT
  SPACE
200 NUM
specialized ADJ
words NOUN
is AUX
just ADV
too ADV
small ADJ
. PUNCT
If SCONJ
anyone PRON
has AUX
any DET
specific ADJ
questions NOUN
, PUNCT
please INTJ
do AUX
not PART
hesitate VERB
to PART
send VERB
me PRON
email NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
2Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                         SPACE
Emerging VERB
Infectious ADJ
Diseases NOUN
                         SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
                                 SPACE
Introduction NOUN
     SPACE
Despite SCONJ
predictions NOUN
earlier ADV
this DET
century NOUN
that PRON
infectious ADJ
diseases NOUN
would AUX
soon ADV
be AUX
eliminated VERB
as SCONJ
a DET
public ADJ
health NOUN
problem NOUN
( PUNCT
1 NUM
) PUNCT
, PUNCT
infectious ADJ
diseases NOUN
remain VERB
the DET
major ADJ
cause NOUN
of ADP
death NOUN
worldwide ADV
and CCONJ
a DET
leading VERB
cause NOUN
of ADP
illness NOUN
and CCONJ
death NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Since SCONJ
the DET
early ADJ
1970s NOUN
, PUNCT
the DET
U.S. PROPN
public ADJ
health NOUN
system NOUN
has AUX
been AUX
challenged VERB
by ADP
a DET
myriad NOUN
of ADP
newly ADV
identified VERB
pathogens NOUN
and CCONJ
syndromes NOUN
( PUNCT
e.g. ADV
, PUNCT
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
, PUNCT
hepatitis NOUN
C PROPN
virus NOUN
, PUNCT
human ADJ
immunodeficiency NOUN
virus NOUN
, PUNCT
Legionnaires PROPN
disease NOUN
, PUNCT
Lyme PROPN
disease NOUN
, PUNCT
and CCONJ
toxic ADJ
shock NOUN
syndrome NOUN
) PUNCT
. PUNCT
The DET
incidences NOUN
of ADP
many ADJ
diseases NOUN
widely ADV
presumed VERB
to PART
be AUX
under ADP
control NOUN
, PUNCT
such ADJ
as SCONJ
cholera PROPN
, PUNCT
malaria PROPN
, PUNCT
and CCONJ
tuberculosis NOUN
( PUNCT
TB PROPN
) PUNCT
, PUNCT
have AUX
increased VERB
in ADP
many ADJ
areas NOUN
. PUNCT
Furthermore ADV
, PUNCT
control NOUN
and CCONJ
prevention NOUN
of ADP
infectious ADJ
diseases NOUN
are AUX
undermined VERB
by ADP
drug NOUN
resistance NOUN
in ADP
conditions NOUN
such ADJ
as SCONJ
gonorrhea PROPN
, PUNCT
malaria PROPN
, PUNCT
pneumococcal ADJ
disease NOUN
, PUNCT
salmonellosis NOUN
, PUNCT
shigellosis NOUN
, PUNCT
TB PROPN
, PUNCT
and CCONJ
staphylococcal ADJ
infections NOUN
( PUNCT
2 NUM
) PUNCT
. PUNCT
Emerging VERB
infections NOUN
place VERB
a DET
disproportionate ADJ
burden NOUN
on ADP
immunocompromised VERB
persons NOUN
, PUNCT
those DET
in ADP
institutional ADJ
settings NOUN
( PUNCT
e.g. ADV
, PUNCT
hospitals NOUN
and CCONJ
child NOUN
day NOUN
care NOUN
centers NOUN
) PUNCT
, PUNCT
and CCONJ
minority NOUN
and CCONJ
underserved ADJ
populations NOUN
. PUNCT
The DET
substantial ADJ
economic ADJ
burden NOUN
of ADP
emerging VERB
infections NOUN
on ADP
the DET
U.S. PROPN
health NOUN
- PUNCT
care NOUN
system NOUN
could AUX
be AUX
reduced VERB
by ADP
more ADJ
effective ADJ
surveillance NOUN
systems NOUN
and CCONJ
targeted VERB
control NOUN
and CCONJ
prevention NOUN
programs NOUN
( PUNCT
3 NUM
) PUNCT
. PUNCT
      SPACE
This DET
issue NOUN
of ADP
MMWR PROPN
introduces VERB
a DET
new ADJ
series NOUN
, PUNCT
" PUNCT
Emerging VERB
Infectious ADJ
Diseases NOUN
. PUNCT
" PUNCT
Future ADJ
articles NOUN
will AUX
address VERB
these DET
diseases NOUN
, PUNCT
as ADV
well ADV
as SCONJ
surveillance NOUN
, PUNCT
control NOUN
, PUNCT
and CCONJ
prevention NOUN
efforts NOUN
by ADP
health NOUN
- PUNCT
care NOUN
providers NOUN
and CCONJ
public ADJ
health NOUN
officials NOUN
. PUNCT
This DET
first ADJ
article NOUN
updates VERB
the DET
ongoing ADJ
investigation NOUN
of ADP
an DET
outbreak NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
in ADP
the DET
western ADJ
United PROPN
States PROPN
( PUNCT
4 NUM
) PUNCT
. PUNCT
References1 ADJ
. PUNCT
Burnet PROPN
M. PROPN
Natural PROPN
history NOUN
of ADP
infectious ADJ
disease NOUN
. PUNCT
Cambridge PROPN
, PUNCT
England PROPN
: PUNCT
Cambridge PROPN
University PROPN
Press PROPN
, PUNCT
1963 NUM
. NOUN
2 NUM
. PUNCT
Kunin PROPN
CM PROPN
. PUNCT
Resistance NOUN
to ADP
antimicrobial ADJ
drugs NOUN
-- PUNCT
a DET
worldwide ADJ
calamity NOUN
. PUNCT
Ann PROPN
Intern PROPN
Med PROPN
1993;118:557 NUM
- SYM
61 NUM
. PUNCT
3 NUM
. PUNCT
Lederberg PROPN
J PROPN
, PUNCT
Shope PROPN
RE PROPN
, PUNCT
Oaks PROPN
SC PROPN
Jr PROPN
, PUNCT
eds NOUN
. PUNCT
Emerging VERB
infections NOUN
: PUNCT
microbial ADJ
threats NOUN
to ADP
health VERB
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
National PROPN
Academy PROPN
Press PROPN
, PUNCT
1992 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
3Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
19934 NUM
. PUNCT
CDC PROPN
. PUNCT
Preliminary ADJ
report NOUN
: PUNCT
foodborne ADJ
outbreak NOUN
of ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
infections NOUN
from ADP
hamburgers NOUN
--western PUNCT
United PROPN
States PROPN
, PUNCT
1993 NUM
. PUNCT
MMWR PROPN
1993;42:85 NUM
- PUNCT
6.HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
4Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
            SPACE
Update NOUN
: PUNCT
Multistate PROPN
Outbreak PROPN
of ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
             SPACE
Infections NOUN
from ADP
Hamburgers NOUN
-- PUNCT
Western PROPN
United PROPN
States PROPN
, PUNCT
                                   SPACE
1992 NUM
- SYM
1993 NUM
            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
From ADP
November PROPN
15 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
February PROPN
28 NUM
, PUNCT
1993 NUM
, PUNCT
more ADJ
than SCONJ
500 NUM
laboratory NOUN
- PUNCT
confirmed VERB
infections NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
and CCONJ
four NUM
associated VERB
deaths NOUN
occurred VERB
in ADP
four NUM
states NOUN
-- PUNCT
Washington PROPN
, PUNCT
Idaho PROPN
, PUNCT
California PROPN
, PUNCT
and CCONJ
Nevada PROPN
. PUNCT
This DET
report NOUN
summarizes VERB
the DET
findings NOUN
from ADP
an DET
ongoing ADJ
investigation NOUN
( PUNCT
1 X
) PUNCT
that PRON
identified VERB
a DET
multistate NOUN
outbreak NOUN
resulting VERB
from ADP
consumption NOUN
of ADP
hamburgers NOUN
from ADP
one NUM
restaurant NOUN
chain NOUN
. PUNCT
Washington PROPN
      SPACE
On ADP
January PROPN
13 NUM
, PUNCT
1993 NUM
, PUNCT
a DET
physician NOUN
reported VERB
to ADP
the DET
Washington PROPN
Department PROPN
of ADP
Health PROPN
a DET
cluster NOUN
of ADP
children NOUN
with ADP
hemolytic ADJ
uremic ADJ
syndrome NOUN
( PUNCT
HUS PROPN
) PUNCT
and CCONJ
an DET
increase NOUN
in ADP
emergency NOUN
room NOUN
visits NOUN
for ADP
bloody ADJ
diarrhea NOUN
. PUNCT
During ADP
January PROPN
16 NUM
- SYM
17 NUM
, PUNCT
a DET
case NOUN
- PUNCT
control NOUN
study NOUN
comparing VERB
16 NUM
of ADP
the DET
first ADJ
cases NOUN
of ADP
bloody ADJ
diarrhea NOUN
or CCONJ
postdiarrheal VERB
HUS PRON
identified VERB
with ADP
age- CCONJ
and CCONJ
neighborhood NOUN
- PUNCT
matched VERB
controls NOUN
implicated VERB
eating VERB
at ADP
chain NOUN
A DET
restaurants NOUN
during ADP
the DET
week NOUN
before ADP
symptom NOUN
onset NOUN
( PUNCT
matched VERB
odds NOUN
ratio NOUN
OR CCONJ
= SYM
undefined ADJ
; PUNCT
lower ADJ
confidence NOUN
limit=3.5 NOUN
) PUNCT
. PUNCT
On ADP
January PROPN
18 NUM
, PUNCT
a DET
multistate ADJ
recall NOUN
of ADP
unused ADJ
hamburger NOUN
patties NOUN
from ADP
chain NOUN
A DET
restaurants NOUN
was AUX
initiated VERB
. PUNCT
      SPACE
As SCONJ
a DET
result NOUN
of ADP
publicity NOUN
and CCONJ
case NOUN
- PUNCT
finding VERB
efforts NOUN
, PUNCT
during ADP
January PROPN
- PUNCT
February PROPN
1993 NUM
, PUNCT
602 NUM
patients NOUN
with ADP
bloody ADJ
diarrhea NOUN
or CCONJ
HUS PRON
were AUX
reported VERB
to ADP
the DET
state PROPN
health NOUN
department NOUN
. PUNCT
A DET
total NOUN
of ADP
477 NUM
persons NOUN
had AUX
illnesses NOUN
meeting VERB
the DET
case NOUN
definition NOUN
of ADP
culture NOUN
- PUNCT
confirmed VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
or CCONJ
postdiarrheal ADJ
HUS PROPN
( PUNCT
Figure NOUN
1 NUM
) PUNCT
. PUNCT
Of ADP
the DET
477 NUM
persons NOUN
, PUNCT
52 NUM
( PUNCT
11 NUM
% NOUN
) PUNCT
had AUX
close ADJ
contact NOUN
with ADP
a DET
person NOUN
with ADP
confirmed VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
during ADP
the DET
week NOUN
preceding VERB
onset NOUN
of ADP
symptoms NOUN
. PUNCT
Of ADP
the DET
remaining VERB
425 NUM
persons NOUN
, PUNCT
372 NUM
( PUNCT
88 NUM
% NOUN
) PUNCT
reported VERB
eating VERB
in ADP
a DET
chain NOUN
A DET
restaurant NOUN
during ADP
the DET
9 NUM
days NOUN
preceding VERB
onset NOUN
of ADP
symptoms NOUN
. PUNCT
Of ADP
the DET
338 NUM
patients NOUN
who PRON
recalled VERB
what PRON
they PRON
ate VERB
in ADP
a DET
chain NOUN
A DET
restaurant NOUN
, PUNCT
312 NUM
( PUNCT
92 NUM
% NOUN
) PUNCT
reported VERB
eating VERB
a DET
regular ADJ
- PUNCT
sized ADJ
hamburger NOUN
patty NOUN
. PUNCT
Onsets NOUN
of ADP
illness NOUN
peaked VERB
from ADP
January PROPN
17 NUM
through ADP
January PROPN
20 NUM
. PUNCT
Of ADP
the DET
477 NUM
casepatients NOUN
, PUNCT
144 NUM
( PUNCT
30 NUM
% NOUN
) PUNCT
were AUX
hospitalized VERB
; PUNCT
30 NUM
developed VERB
HUS PROPN
, PUNCT
and CCONJ
three NUM
died VERB
. PUNCT
The DET
median ADJ
age NOUN
of ADP
patients NOUN
was AUX
7.5 NUM
years NOUN
( PUNCT
range NOUN
: PUNCT
0 NUM
- SYM
74 NUM
years NOUN
) PUNCT
. PUNCT
Idaho PROPN
      SPACE
Following VERB
the DET
outbreak NOUN
report NOUN
from ADP
Washington PROPN
, PUNCT
the DET
Division PROPN
of ADP
Health PROPN
, PUNCT
Idaho PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Welfare PROPN
, PUNCT
identified VERB
14 NUM
persons NOUN
with ADP
culture NOUN
- PUNCT
confirmed VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
, PUNCT
with ADP
illness NOUN
onset NOUN
dates NOUN
from ADP
December PROPN
11 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
February PROPN
16 NUM
, PUNCT
1993 NUM
( PUNCT
Figure NOUN
2A PROPN
) PUNCT
. PUNCT
Four NUM
persons NOUN
were AUX
hospitalized VERB
; PUNCT
one NUM
developed VERB
HUS PROPN
. PUNCT
During ADP
the DET
week NOUN
preceding VERB
illness NOUN
onset NOUN
, PUNCT
13 NUM
( PUNCT
93 NUM
% NOUN
) PUNCT
had AUX
eaten VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
. PUNCT
California PROPN
      SPACE
In ADP
late ADJ
December PROPN
, PUNCT
the DET
San PROPN
Diego PROPN
County PROPN
Department PROPN
of ADP
Health PROPN
Services PROPN
was AUX
notified VERB
of ADP
a DET
child NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
who PRON
subsequently ADV
died VERB
. PUNCT
Active ADJ
surveillance NOUN
and CCONJ
record NOUN
review NOUN
then ADV
identified VERB
eight NUM
other ADJ
persons NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infections NOUN
or CCONJ
HUS PROPN
from ADP
mid PROPN
- PROPN
November PROPN
through ADP
mid ADJ
- PROPN
January PROPN
1993 NUM
. PUNCT
Four NUM
of ADP
the DET
nine NUM
reportedly ADV
had AUX
recently ADV
eaten VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
and CCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
5Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993four NUM
at ADP
a DET
chain NOUN
B NOUN
restaurant NOUN
in ADP
San PROPN
Diego PROPN
. PUNCT
After ADP
the DET
Washington PROPN
outbreak NOUN
was AUX
reported VERB
, PUNCT
reviews NOUN
of ADP
medical ADJ
records NOUN
at ADP
five NUM
hospitals NOUN
revealed VERB
an DET
overall ADJ
27 NUM
% NOUN
increase NOUN
in ADP
visits NOUN
or CCONJ
admissions NOUN
for ADP
diarrhea NOUN
during ADP
December PROPN
1992 NUM
and CCONJ
January PROPN
1993 NUM
compared VERB
with ADP
the DET
same ADJ
period NOUN
1 NUM
year NOUN
earlier ADV
. PUNCT
A DET
case NOUN
was AUX
defined VERB
as SCONJ
postdiarrheal ADJ
HUS PROPN
, PUNCT
bloody ADJ
diarrhea NOUN
that PRON
was AUX
culture NOUN
negative ADJ
or CCONJ
not PART
cultured ADJ
, PUNCT
or CCONJ
any DET
diarrheal ADJ
illness NOUN
in ADP
which PRON
stool NOUN
culture NOUN
yielded VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
, PUNCT
with ADP
onset NOUN
from ADP
November PROPN
15 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
January PROPN
31 NUM
, PUNCT
1993 NUM
. PUNCT
      SPACE
Illnesses PROPN
of ADP
34 NUM
patients NOUN
met VERB
the DET
case NOUN
definition NOUN
( PUNCT
Figure NOUN
2B PROPN
) PUNCT
. PUNCT
The DET
outbreak NOUN
strain NOUN
was AUX
identified VERB
in ADP
stool NOUN
specimens NOUN
of ADP
six NUM
patients NOUN
. PUNCT
Fourteen NUM
persons NOUN
were AUX
hospitalized VERB
, PUNCT
seven NUM
developed VERB
HUS PROPN
, PUNCT
and CCONJ
one NUM
child NOUN
died VERB
. PUNCT
The DET
median ADJ
age NOUN
of ADP
case NOUN
- PUNCT
patients NOUN
was AUX
10 NUM
years NOUN
( PUNCT
range NOUN
: PUNCT
1 NUM
- SYM
58 NUM
years NOUN
) PUNCT
. PUNCT
A DET
case NOUN
- PUNCT
control NOUN
study NOUN
of ADP
the DET
first ADJ
25 NUM
case NOUN
- PUNCT
patients NOUN
identified VERB
and CCONJ
age- ADP
and CCONJ
sex NOUN
- PUNCT
matched VERB
community NOUN
controls NOUN
implicated VERB
eating VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
in ADP
San PROPN
Diego PROPN
( PUNCT
matched VERB
OR=13 PROPN
; PUNCT
95 NUM
% NOUN
confidence NOUN
interval NOUN
CI=1.7 PROPN
- SYM
99 NUM
) PUNCT
. PUNCT
A DET
study NOUN
comparing VERB
case NOUN
- PUNCT
patients NOUN
who PRON
ate VERB
at ADP
chain NOUN
A DET
restaurants NOUN
with ADP
well ADJ
meal NOUN
companions NOUN
implicated VERB
regular ADJ
- PUNCT
sized ADJ
hamburger NOUN
patties NOUN
( PUNCT
matched VERB
OR CCONJ
= SYM
undefined ADJ
; PUNCT
lower ADJ
confidence NOUN
limit=1.3 NOUN
) PUNCT
. PUNCT
Chain NOUN
B PROPN
was AUX
not PART
statistically ADV
associated VERB
with ADP
illness NOUN
. PUNCT
Nevada PROPN
      SPACE
On ADP
January PROPN
22 NUM
, PUNCT
after ADP
receiving VERB
a DET
report NOUN
of ADP
a DET
child NOUN
with ADP
HUS PRON
who PRON
had AUX
eaten VERB
at ADP
a DET
local ADJ
chain NOUN
A DET
restaurant NOUN
, PUNCT
the DET
Clark PROPN
County PROPN
( PUNCT
Las PROPN
Vegas PROPN
) PUNCT
Health PROPN
District PROPN
issued VERB
a DET
press NOUN
release NOUN
requesting VERB
that SCONJ
persons NOUN
with ADP
recent ADJ
bloody ADJ
diarrhea NOUN
contact VERB
the DET
health NOUN
department NOUN
. PUNCT
A DET
case NOUN
was AUX
defined VERB
as SCONJ
postdiarrheal ADJ
HUS PROPN
, PUNCT
bloody ADJ
diarrhea NOUN
that PRON
was AUX
culture NOUN
negative ADJ
or CCONJ
not PART
cultured ADJ
, PUNCT
or CCONJ
any DET
diarrheal ADJ
illness NOUN
with ADP
a DET
stool NOUN
culture NOUN
yielding VERB
the DET
Washington PROPN
strain NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
, PUNCT
with ADP
onset NOUN
from ADP
December PROPN
1 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
February PROPN
7 NUM
, PUNCT
1993 NUM
. PUNCT
Because SCONJ
local ADJ
laboratories NOUN
were AUX
not PART
using VERB
sorbitol VERB
MacConkey PROPN
( PUNCT
SMAC PROPN
) PUNCT
medium NOUN
to ADP
screen NOUN
stools NOUN
for ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
, PUNCT
this DET
organism NOUN
was AUX
not PART
identified VERB
in ADP
any DET
patient NOUN
. PUNCT
After ADP
SMAC PROPN
medium NOUN
was AUX
distributed VERB
, PUNCT
the DET
outbreak NOUN
strain NOUN
was AUX
detected VERB
in ADP
the DET
stool NOUN
of ADP
one NUM
patient ADJ
38 NUM
days NOUN
after ADP
illness NOUN
onset NOUN
. PUNCT
      SPACE
Of ADP
58 NUM
persons NOUN
whose PRON
illnesses NOUN
met VERB
the DET
case NOUN
definition NOUN
( PUNCT
Figure NOUN
2C PROPN
) PUNCT
, PUNCT
nine NUM
were AUX
hospitalized VERB
; PUNCT
three NUM
developed VERB
HUS PROPN
. PUNCT
The DET
median ADJ
age NOUN
was AUX
30.5 NUM
years NOUN
( PUNCT
range NOUN
: PUNCT
0 NUM
- SYM
83 NUM
years NOUN
) PUNCT
. PUNCT
Analysis NOUN
of ADP
the DET
first ADJ
21 NUM
patients NOUN
identified VERB
and CCONJ
age- ADP
and CCONJ
sex NOUN
- PUNCT
matched VERB
community NOUN
controls NOUN
implicated VERB
eating VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
during ADP
the DET
week NOUN
preceding VERB
illness NOUN
onset NOUN
( PUNCT
matched VERB
OR CCONJ
= SYM
undefined ADJ
; PUNCT
lower ADJ
confidence NOUN
limit=4.9 NOUN
) PUNCT
. PUNCT
A DET
case NOUN
- PUNCT
control NOUN
study NOUN
using VERB
well ADJ
meal NOUN
companions NOUN
of ADP
case NOUN
- PUNCT
patients NOUN
also ADV
implicated VERB
eating VERB
hamburgers NOUN
at ADP
chain NOUN
A DET
( PUNCT
matched VERB
OR=6.0 PROPN
; PUNCT
95 NUM
% NOUN
CI=0.7 PROPN
- PUNCT
49.8 NUM
) PUNCT
. PUNCT
Other ADJ
Investigation PROPN
Findings PROPN
      SPACE
During ADP
the DET
outbreak NOUN
, PUNCT
chain VERB
A DET
restaurants NOUN
in ADP
Washington PROPN
linked VERB
with ADP
cases NOUN
primarily ADV
were AUX
serving VERB
regular ADJ
- PUNCT
sized ADJ
hamburger NOUN
patties NOUN
produced VERB
on ADP
November PROPN
19 NUM
, PUNCT
1992 NUM
; PUNCT
some DET
of ADP
the DET
same ADJ
meat NOUN
was AUX
used VERB
in ADP
" PUNCT
jumbo ADJ
" PUNCT
patties NOUN
produced VERB
on ADP
November PROPN
20 NUM
, PUNCT
1992 NUM
. PUNCT
The DET
outbreak ADJ
strain NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
was AUX
isolated VERB
from ADP
11 NUM
lots NOUN
of ADP
patties NOUN
produced VERB
on ADP
those DET
two NUM
dates NOUN
; PUNCT
these DET
lots NOUN
had AUX
been AUX
distributed VERB
to ADP
restaurants NOUN
in ADP
all DET
states NOUN
where ADV
illness NOUN
occurred VERB
. PUNCT
Approximately ADV
272,672 NUM
( PUNCT
20 NUM
% NOUN
) PUNCT
of ADP
the DET
implicated VERB
patties NOUN
were AUX
recovered VERB
by ADP
the DET
recall NOUN
. PUNCT
      SPACE
A DET
meat NOUN
traceback NOUN
by ADP
a DET
CDC PROPN
team NOUN
identified VERB
five NUM
slaughter NOUN
plants NOUN
in ADP
the DET
United PROPN
States PROPN
and CCONJ
one NUM
in ADP
Canada PROPN
as SCONJ
the DET
likely ADJ
sources NOUN
of ADP
carcasses NOUN
used VERB
in ADP
the DET
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
6Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993contaminated ADJ
lots NOUN
of ADP
meat NOUN
and CCONJ
identified VERB
potential ADJ
control NOUN
points NOUN
for ADP
reducing VERB
the DET
likelihood NOUN
of ADP
contamination NOUN
. PUNCT
The DET
animals NOUN
slaughtered VERB
in ADP
domestic ADJ
slaughter NOUN
plants NOUN
were AUX
traced VERB
to ADP
farms NOUN
and CCONJ
auctions NOUN
in ADP
six NUM
western ADJ
states NOUN
. PUNCT
No DET
one NOUN
slaughter NOUN
plant NOUN
or CCONJ
farm NOUN
was AUX
identified VERB
as SCONJ
the DET
source NOUN
. PUNCT
      SPACE
Further PROPN
investigation NOUN
of ADP
cases NOUN
related VERB
to ADP
secondary ADJ
transmission NOUN
in ADP
families NOUN
and CCONJ
child NOUN
day NOUN
care NOUN
settings NOUN
is AUX
ongoing ADJ
. PUNCT
Reported VERB
by ADP
: PUNCT
M PROPN
Davis PROPN
, PUNCT
DVM PROPN
, PUNCT
C PROPN
Osaki PROPN
, PUNCT
MSPH PROPN
, PUNCT
Seattle PROPN
- PUNCT
King PROPN
County PROPN
Dept PROPN
of ADP
Public PROPN
Health PROPN
; PUNCT
D PROPN
Gordon PROPN
, PUNCT
MS PROPN
, PUNCT
MW PROPN
Hinds PROPN
, PUNCT
MD PROPN
, PUNCT
Snohomish PROPN
Health PROPN
District PROPN
, PUNCT
Everett PROPN
; PUNCT
K PROPN
Mottram PROPN
, PUNCT
C PROPN
Winegar PROPN
, PUNCT
MPH PROPN
, PUNCT
Tacoma PROPN
- PUNCT
Pierce PROPN
County PROPN
Health PROPN
Dept PROPN
; PUNCT
ED PROPN
Avner PROPN
, PUNCT
MD PROPN
, PUNCT
PI PROPN
Tarr PROPN
, PUNCT
MD PROPN
, PUNCT
Dept PROPN
of ADP
Pediatrics PROPN
, PUNCT
D PROPN
Jardine PROPN
, PUNCT
MD PROPN
, PUNCT
Depts PROPN
of ADP
Anesthesiology PROPN
and CCONJ
Pediatrics PROPN
, PUNCT
Univ PROPN
of ADP
Washington PROPN
School PROPN
of ADP
Medicine PROPN
and CCONJ
Children PROPN
's PART
Hospital PROPN
and CCONJ
Medical PROPN
Center PROPN
, PUNCT
Seattle PROPN
; PUNCT
M PROPN
Goldoft PROPN
, PUNCT
MD PROPN
, PUNCT
B PROPN
Bartleson PROPN
, PUNCT
MPH PROPN
; PUNCT
J PROPN
Lewis PROPN
, PUNCT
JM PROPN
Kobayashi PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Washington PROPN
Dept PROPN
of ADP
Health PROPN
. PUNCT
G PROPN
Billman PROPN
, PUNCT
MD PROPN
, PUNCT
J PROPN
Bradley PROPN
, PUNCT
MD PROPN
, PUNCT
Children PROPN
's PART
Hospital PROPN
, PUNCT
San PROPN
Diego PROPN
; PUNCT
S PROPN
Hunt PROPN
, PUNCT
P PROPN
Tanner PROPN
, PUNCT
RES PROPN
, PUNCT
M PROPN
Ginsberg PROPN
, PUNCT
MD PROPN
, PUNCT
San PROPN
Diego PROPN
County PROPN
Dept PROPN
of ADP
Health PROPN
Svcs PROPN
; PUNCT
L PROPN
Barrett PROPN
, PUNCT
DVM PROPN
, PUNCT
SB PROPN
Werner PROPN
, PUNCT
MD PROPN
, PUNCT
GW PROPN
Rutherford PROPN
, PUNCT
III PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
California PROPN
Dept PROPN
of ADP
Health PROPN
Svcs PROPN
. PUNCT
RW PROPN
Jue PROPN
, PUNCT
Central PROPN
District PROPN
Health PROPN
Dept PROPN
, PUNCT
Boise PROPN
; PUNCT
H PROPN
Root PROPN
, PUNCT
Southwest PROPN
District PROPN
Health PROPN
Dept PROPN
, PUNCT
Caldwell PROPN
; PUNCT
D PROPN
Brothers PROPN
, PUNCT
MA PROPN
, PUNCT
RL PROPN
Chehey PROPN
, PUNCT
MS PROPN
, PUNCT
RH PROPN
Hudson PROPN
, PUNCT
PhD NOUN
, PUNCT
Div PROPN
of ADP
Health PROPN
, PUNCT
Idaho PROPN
State PROPN
Public PROPN
Health PROPN
Laboratory PROPN
, PUNCT
FR PROPN
Dixon PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Div PROPN
of ADP
Health PROPN
, PUNCT
Idaho PROPN
Dept PROPN
of ADP
Health PROPN
and CCONJ
Welfare PROPN
. PUNCT
DJ PROPN
Maxson PROPN
, PUNCT
Environmental PROPN
Epidemiology PROPN
Program PROPN
, PUNCT
L PROPN
Empey PROPN
, PUNCT
PA PROPN
, PUNCT
O INTJ
Ravenholt PROPN
, PUNCT
MD PROPN
, PUNCT
VH PROPN
Ueckart PROPN
, PUNCT
DVM PROPN
, PUNCT
Clark PROPN
County PROPN
Health PROPN
District PROPN
, PUNCT
Las PROPN
Vegas PROPN
; PUNCT
A DET
DiSalvo PROPN
, PUNCT
MD PROPN
, PUNCT
Nevada PROPN
State PROPN
Public PROPN
Health PROPN
Laboratory PROPN
; PUNCT
DS PROPN
Kwalick PROPN
, PUNCT
MD PROPN
, PUNCT
R PROPN
Salcido PROPN
, PUNCT
MPH PROPN
, PUNCT
D PROPN
Brus PROPN
, PUNCT
DVM PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Div PROPN
of ADP
Health PROPN
, PUNCT
Nevada PROPN
State PROPN
Dept PROPN
of ADP
Human PROPN
Resources PROPN
. PUNCT
Center NOUN
for ADP
Food PROPN
Safety PROPN
and CCONJ
Applied PROPN
Nutrition PROPN
, PUNCT
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
. PUNCT
Food PROPN
Safety PROPN
Inspection PROPN
Svc PROPN
, PUNCT
Animal PROPN
and CCONJ
Plant PROPN
Health PROPN
Inspection PROPN
Svc PROPN
, PUNCT
US PROPN
Dept PROPN
of ADP
Agriculture PROPN
. PUNCT
Div PROPN
of ADP
Field PROPN
Epidemiology PROPN
, PUNCT
Epidemiology PROPN
Program PROPN
Office PROPN
; PUNCT
Enteric PROPN
Diseases PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Bacterial PROPN
and CCONJ
Mycotic PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
is AUX
a DET
pathogenic ADJ
gram NOUN
- PUNCT
negative ADJ
bacterium NOUN
first ADV
identified VERB
as SCONJ
a DET
cause NOUN
of ADP
illness NOUN
in ADP
1982 NUM
during ADP
an DET
outbreak NOUN
of ADP
severe ADJ
bloody ADJ
diarrhea NOUN
traced VERB
to ADP
contaminated VERB
hamburgers NOUN
( PUNCT
2 X
) PUNCT
. PUNCT
This DET
pathogen NOUN
has AUX
since SCONJ
emerged VERB
as SCONJ
an DET
important ADJ
cause NOUN
of ADP
both DET
bloody ADJ
diarrhea NOUN
and CCONJ
HUS PROPN
, PUNCT
the DET
most ADV
common ADJ
cause NOUN
of ADP
acute ADJ
renal ADJ
failure NOUN
in ADP
children NOUN
. PUNCT
Outbreak NOUN
investigations NOUN
have AUX
linked VERB
most ADJ
cases NOUN
with ADP
the DET
consumption NOUN
of ADP
undercooked ADJ
ground NOUN
beef NOUN
, PUNCT
although SCONJ
other ADJ
food NOUN
vehicles NOUN
, PUNCT
including VERB
roast NOUN
beef NOUN
, PUNCT
raw ADJ
milk NOUN
, PUNCT
and CCONJ
apple NOUN
cider NOUN
, PUNCT
also ADV
have AUX
been AUX
implicated VERB
( PUNCT
3 NUM
) PUNCT
. PUNCT
Preliminary ADJ
data NOUN
from ADP
a DET
CDC PROPN
2-year NUM
, PUNCT
nationwide ADJ
, PUNCT
multicenter NOUN
study NOUN
revealed VERB
that SCONJ
when ADV
stools NOUN
were AUX
routinely ADV
cultured VERB
for ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
that SCONJ
organism NOUN
was AUX
isolated VERB
more ADV
frequently ADV
than SCONJ
Shigella PROPN
in ADP
four NUM
of ADP
10 NUM
participating VERB
hospitals NOUN
and CCONJ
was AUX
isolated VERB
from ADP
7.8 NUM
% NOUN
of ADP
all DET
bloody ADJ
stools NOUN
, PUNCT
a DET
higher ADJ
rate NOUN
than SCONJ
for ADP
any DET
other ADJ
pathogen NOUN
. PUNCT
      SPACE
Infection PROPN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
often ADV
is AUX
not PART
recognized VERB
because SCONJ
most ADJ
clinical ADJ
laboratories NOUN
do AUX
not PART
routinely ADV
culture NOUN
stools NOUN
for ADP
this DET
organism NOUN
on ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
7Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993SMAC NUM
medium NOUN
, PUNCT
and CCONJ
many ADJ
clinicians NOUN
are AUX
unaware ADJ
of ADP
the DET
spectrum NOUN
of ADP
illnesses NOUN
associated VERB
with ADP
infection NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
The DET
usual ADJ
clinical ADJ
manifestations NOUN
are AUX
diarrhea NOUN
( PUNCT
often ADV
bloody ADJ
) PUNCT
and CCONJ
abdominal ADJ
cramps NOUN
; PUNCT
fever NOUN
is AUX
infrequent ADJ
. PUNCT
Younger ADJ
age NOUN
groups NOUN
and CCONJ
the DET
elderly ADJ
are AUX
at ADP
highest ADJ
risk NOUN
for ADP
clinical ADJ
manifestations NOUN
and CCONJ
complications NOUN
. PUNCT
Illness NOUN
usually ADV
resolves VERB
after ADP
6 NUM
- SYM
8 NUM
days NOUN
, PUNCT
but CCONJ
2%-7 NUM
% NOUN
of ADP
patients NOUN
develop VERB
HUS PRON
, PUNCT
which PRON
is AUX
characterized VERB
by ADP
hemolytic ADJ
anemia PROPN
, PUNCT
thrombocytopenia PROPN
, PUNCT
renal ADJ
failure NOUN
, PUNCT
and CCONJ
a DET
death NOUN
rate NOUN
of ADP
3%-5 NUM
% NOUN
. PUNCT
      SPACE
This DET
report NOUN
illustrates VERB
the DET
difficulties NOUN
in ADP
recognizing VERB
community NOUN
outbreaks NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
in ADP
the DET
absence NOUN
of ADP
routine ADJ
surveillance NOUN
. PUNCT
Despite SCONJ
the DET
magnitude NOUN
of ADP
this DET
outbreak NOUN
, PUNCT
the DET
problem NOUN
may AUX
not PART
have AUX
been AUX
recognized VERB
in ADP
three NUM
states NOUN
if SCONJ
the DET
epidemiologic ADJ
link NOUN
had AUX
not PART
been AUX
established VERB
in ADP
Washington PROPN
( PUNCT
1 NUM
) PUNCT
. PUNCT
Clinical ADJ
laboratories NOUN
should AUX
routinely ADV
culture NOUN
stool NOUN
specimens NOUN
from ADP
persons NOUN
with ADP
bloody ADJ
diarrhea NOUN
or CCONJ
HUS PROPN
for ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
using VERB
SMAC PROPN
agar NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
When ADV
infections NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
are AUX
identified VERB
, PUNCT
they PRON
should AUX
be AUX
reported VERB
to ADP
local ADJ
health NOUN
departments NOUN
for ADP
further ADJ
evaluation NOUN
and CCONJ
, PUNCT
if SCONJ
necessary ADJ
, PUNCT
public ADJ
health NOUN
action NOUN
to PART
prevent VERB
further ADJ
cases NOUN
. PUNCT
      SPACE
E. PROPN
coli PROPN
O157 PROPN
: PUNCT
H7 NOUN
lives VERB
in ADP
the DET
intestines NOUN
of ADP
healthy ADJ
cattle NOUN
, PUNCT
and CCONJ
can AUX
contaminate VERB
meat NOUN
during ADP
slaughter NOUN
. PUNCT
CDC PROPN
is AUX
collaborating VERB
with ADP
the DET
U.S. PROPN
Department PROPN
of ADP
Agriculture PROPN
's PART
Food PROPN
Safety PROPN
Inspection PROPN
Service PROPN
to PART
identify VERB
critical ADJ
control NOUN
points NOUN
in ADP
processing NOUN
as SCONJ
a DET
component NOUN
of ADP
a DET
program NOUN
to PART
reduce VERB
the DET
likelihood NOUN
of ADP
pathogens NOUN
such ADJ
as SCONJ
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
entering VERB
the DET
meat NOUN
supply NOUN
. PUNCT
Because SCONJ
slaughtering VERB
practices NOUN
can AUX
result VERB
in ADP
contamination NOUN
of ADP
raw ADJ
meat NOUN
with ADP
pathogens NOUN
, PUNCT
and CCONJ
because SCONJ
the DET
process NOUN
of ADP
grinding VERB
beef NOUN
may AUX
transfer VERB
pathogens NOUN
from ADP
the DET
surface NOUN
of ADP
the DET
meat NOUN
to ADP
the DET
interior ADJ
, PUNCT
ground NOUN
beef NOUN
is AUX
likely ADJ
to PART
be AUX
internally ADV
contaminated VERB
. PUNCT
The DET
optimal ADJ
food NOUN
protection NOUN
practice NOUN
is AUX
to PART
cook VERB
ground NOUN
beef NOUN
thoroughly ADV
until ADP
the DET
interior NOUN
is AUX
no ADV
longer ADV
pink ADJ
, PUNCT
and CCONJ
the DET
juices NOUN
are AUX
clear ADJ
. PUNCT
In ADP
this DET
outbreak NOUN
, PUNCT
undercooking VERB
of ADP
hamburger NOUN
patties NOUN
likely ADV
played VERB
an DET
important ADJ
role NOUN
. PUNCT
The DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
( PUNCT
FDA PROPN
) PUNCT
has AUX
issued VERB
interim ADJ
recommendations NOUN
to PART
increase VERB
the DET
internal ADJ
temperature NOUN
for ADP
cooked ADJ
hamburgers NOUN
to ADP
155 NUM
F PROPN
( PUNCT
86.1 NUM
C PROPN
) PUNCT
( PUNCT
FDA PROPN
, PUNCT
personal ADJ
communication NOUN
, PUNCT
1993 NUM
) PUNCT
. PUNCT
      SPACE
Regulatory ADJ
actions NOUN
stimulated VERB
by ADP
the DET
outbreak NOUN
described VERB
in ADP
this DET
report NOUN
and CCONJ
the DET
recovery NOUN
of ADP
thousands NOUN
of ADP
contaminated VERB
patties NOUN
before ADP
they PRON
could AUX
be AUX
consumed VERB
emphasize VERB
the DET
value NOUN
of ADP
rapid ADJ
public ADJ
health NOUN
investigations NOUN
of ADP
outbreaks NOUN
. PUNCT
The DET
public ADJ
health NOUN
impact NOUN
and CCONJ
increasing VERB
frequency NOUN
of ADP
isolation NOUN
of ADP
this DET
pathogen NOUN
underscore VERB
the DET
need NOUN
for ADP
improved ADJ
surveillance NOUN
for ADP
infections NOUN
caused VERB
by ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
and CCONJ
for ADP
HUS PRON
to PART
better ADV
define VERB
the DET
epidemiology NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
. PUNCT
References1 ADJ
. PUNCT
CDC PROPN
. PUNCT
Preliminary ADJ
report NOUN
: PUNCT
foodborne ADJ
outbreak NOUN
of ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
infections NOUN
from ADP
hamburgers NOUN
--western PUNCT
United PROPN
States PROPN
, PUNCT
1993 NUM
. PUNCT
MMWR PROPN
1993;42:85 NUM
- SYM
6 NUM
. PUNCT
2 NUM
. PUNCT
Riley PROPN
LW PROPN
, PUNCT
Remis PROPN
RS PROPN
, PUNCT
Helgerson PROPN
SD PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Hemorrhagic PROPN
colitis NOUN
associated VERB
with ADP
a DET
rare ADJ
Escherichia PROPN
coli NOUN
serotype NOUN
. PUNCT
N PROPN
Engl PROPN
J PROPN
Med PROPN
1983;308:681 NUM
- PUNCT
5 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
8Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
19933 NUM
. PUNCT
Griffin PROPN
PM PROPN
, PUNCT
Tauxe PROPN
RV PROPN
. PUNCT
The DET
epidemiology NOUN
of ADP
infections NOUN
caused VERB
by ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
, PUNCT
other ADJ
enterohemorrhagic ADJ
E. PROPN
coli NOUN
, PUNCT
and CCONJ
the DET
associated PROPN
hemolytic PROPN
uremic ADJ
syndrome NOUN
. PUNCT
Epidemiol PROPN
Rev PROPN
1991;13:60 PROPN
- SYM
98 NUM
. PUNCT
4 NUM
. PUNCT
Griffin PROPN
PM PROPN
, PUNCT
Ostroff PROPN
SM PROPN
, PUNCT
Tauxe PROPN
RV PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Illnesses NOUN
associated VERB
with ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
infections NOUN
: PUNCT
a DET
broad ADJ
clinical ADJ
spectrum NOUN
. PUNCT
Ann PROPN
Intern PROPN
Med PROPN
1988;109:705 NUM
- PUNCT
12 NUM
. PUNCT
5 NUM
. PUNCT
March PROPN
SB PROPN
, PUNCT
Ratnam PROPN
S. PROPN
Latex PROPN
agglutination NOUN
testHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
9Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
            SPACE
Use PROPN
of ADP
Smokeless PROPN
Tobacco PROPN
Among ADP
Adults NOUN
-- PUNCT
United PROPN
States PROPN
, PUNCT
                                     SPACE
1991 NUM
            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
Consumption PROPN
of ADP
moist NOUN
snuff NOUN
and CCONJ
other ADJ
smokeless ADJ
tobacco NOUN
products NOUN
in ADP
the DET
United PROPN
States PROPN
almost ADV
tripled VERB
from ADP
1972 NUM
through ADP
1991 NUM
( PUNCT
1 NUM
) PUNCT
. PUNCT
Long ADJ
- PUNCT
term NOUN
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
is AUX
associated VERB
with ADP
nicotine ADJ
addiction NOUN
and CCONJ
increased VERB
risk NOUN
of ADP
oral ADJ
cancer NOUN
( PUNCT
2 X
) PUNCT
-- PUNCT
the DET
incidence NOUN
of ADP
which PRON
could AUX
increase VERB
if SCONJ
young ADJ
persons NOUN
who PRON
currently ADV
use VERB
smokeless NOUN
tobacco NOUN
continue VERB
to PART
use VERB
these DET
products NOUN
frequently ADV
( PUNCT
1 NUM
) PUNCT
. PUNCT
To PART
monitor VERB
trends NOUN
in ADP
the DET
prevalence NOUN
of ADP
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
products NOUN
, PUNCT
CDC PROPN
's PART
1991 NUM
National PROPN
Health PROPN
Interview PROPN
Survey PROPN
- PUNCT
Health PROPN
Promotion PROPN
and CCONJ
Disease PROPN
Prevention PROPN
supplement NOUN
( PUNCT
NHIS PROPN
- PUNCT
HPDP PROPN
) PUNCT
collected VERB
information NOUN
on ADP
snuff PROPN
and CCONJ
chewing VERB
tobacco NOUN
use NOUN
and CCONJ
smoking NOUN
from ADP
a DET
representative ADJ
sample NOUN
of ADP
the DET
U.S. PROPN
civilian NOUN
, PUNCT
noninstitutionalized VERB
population NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
18 NUM
years NOUN
. PUNCT
This DET
report NOUN
summarizes VERB
findings NOUN
from ADP
this DET
survey NOUN
. PUNCT
      SPACE
The DET
1991 NUM
NHIS PROPN
- PUNCT
HPDP PROPN
supplement NOUN
asked VERB
" PUNCT
Have AUX
you PRON
used VERB
snuff PROPN
at ADV
least ADV
20 NUM
times NOUN
in ADP
your PRON
entire ADJ
life NOUN
? PUNCT
" PUNCT
and CCONJ
" PUNCT
Do AUX
you PRON
use VERB
snuff NOUN
now ADV
? PUNCT
" PUNCT
Similar ADJ
questions NOUN
were AUX
asked VERB
about ADP
chewing VERB
tobacco NOUN
use NOUN
and CCONJ
cigarette NOUN
smoking NOUN
. PUNCT
Current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
were AUX
defined VERB
as SCONJ
those DET
who PRON
reported VERB
snuff PROPN
or CCONJ
chewing VERB
tobacco NOUN
use NOUN
at ADP
least ADV
20 NUM
times NOUN
and CCONJ
who PRON
reported VERB
using VERB
snuff PROPN
or CCONJ
chewing VERB
tobacco NOUN
at ADP
the DET
time NOUN
of ADP
the DET
interview NOUN
; PUNCT
former ADJ
users NOUN
were AUX
defined VERB
as SCONJ
those DET
who PRON
reported VERB
having VERB
used VERB
snuff NOUN
or CCONJ
chewing VERB
tobacco NOUN
at ADV
least ADV
20 NUM
times NOUN
and CCONJ
not PART
using VERB
either CCONJ
at ADP
the DET
time NOUN
of ADP
the DET
interview NOUN
. PUNCT
Ever ADV
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
included VERB
current ADJ
and CCONJ
former ADJ
users NOUN
. PUNCT
Current ADJ
smokers NOUN
were AUX
defined VERB
as SCONJ
those DET
who PRON
reported VERB
smoking VERB
at ADV
least ADV
100 NUM
cigarettes NOUN
and CCONJ
who PRON
were AUX
currently ADV
smoking VERB
and CCONJ
former ADJ
smokers NOUN
as SCONJ
those DET
who PRON
reported VERB
having VERB
smoked VERB
at ADP
least ADJ
100 NUM
cigarettes NOUN
and CCONJ
who PRON
were AUX
not PART
smoking VERB
now ADV
. PUNCT
Ever ADV
smokers NOUN
included VERB
current ADJ
and CCONJ
former ADJ
smokers NOUN
. PUNCT
Data NOUN
on ADP
smokeless ADJ
tobacco NOUN
use NOUN
were AUX
available ADJ
for ADP
43,732 NUM
persons NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
18 NUM
years NOUN
and CCONJ
were AUX
adjusted VERB
for ADP
nonresponse PROPN
and CCONJ
weighted VERB
to PART
provide VERB
national ADJ
estimates NOUN
. PUNCT
Confidence NOUN
intervals NOUN
( PUNCT
CIs NOUN
) PUNCT
were AUX
calculated VERB
by ADP
using VERB
standard ADJ
errors NOUN
generated VERB
by ADP
the DET
Software PROPN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
( PUNCT
3 X
) PUNCT
. PUNCT
      SPACE
In ADP
1991 NUM
, PUNCT
an DET
estimated VERB
5.3 NUM
million NUM
( PUNCT
2.9 NUM
% NOUN
) PUNCT
U.S. PROPN
adults NOUN
were AUX
current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
, PUNCT
including VERB
4.8 NUM
million NUM
( PUNCT
5.6 NUM
% NOUN
) PUNCT
men NOUN
and CCONJ
533,000 NUM
( PUNCT
0.6 NUM
% NOUN
) PUNCT
women NOUN
. PUNCT
For ADP
all DET
categories NOUN
of ADP
comparison NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
was AUX
substantially ADV
higher ADJ
among ADP
men NOUN
. PUNCT
For ADP
men NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
use NOUN
was AUX
highest ADJ
among ADP
those DET
aged VERB
18 NUM
- SYM
24 NUM
years NOUN
( PUNCT
Table NOUN
1 NUM
) PUNCT
; PUNCT
for ADP
women NOUN
, PUNCT
the DET
prevalence NOUN
was AUX
highest ADJ
among ADP
those DET
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
75 NUM
years NOUN
. PUNCT
The DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
among ADP
men NOUN
was AUX
highest ADJ
among ADP
American PROPN
Indians PROPN
/ SYM
Alaskan PROPN
Natives PROPN
and CCONJ
whites NOUN
; PUNCT
the DET
prevalence NOUN
among ADP
women NOUN
was AUX
highest ADJ
among ADP
American PROPN
Indians PROPN
/ SYM
Alaskan PROPN
Natives NOUN
and CCONJ
blacks NOUN
. PUNCT
Among ADP
both DET
men NOUN
and CCONJ
women NOUN
, PUNCT
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
declined VERB
with ADP
increasing VERB
education NOUN
. PUNCT
Prevalence NOUN
was AUX
substantially ADV
higher ADJ
among ADP
residents NOUN
of ADP
the DET
southern ADJ
United PROPN
States PROPN
and CCONJ
in ADP
rural ADJ
areas NOUN
. PUNCT
Although SCONJ
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
was AUX
higher ADJ
among ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
10Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993men NUM
and CCONJ
women NOUN
below ADP
the DET
poverty NOUN
level NOUN
, PUNCT
* PUNCT
this DET
difference NOUN
was AUX
significant ADJ
only ADV
for ADP
women NOUN
( PUNCT
p NOUN
less ADJ
than SCONJ
0.05 NUM
) PUNCT
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
      SPACE
Among ADP
men NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
current ADJ
use NOUN
of ADP
snuff PROPN
was AUX
highest ADJ
among ADP
those DET
aged VERB
18 NUM
- SYM
44 NUM
years NOUN
but CCONJ
varied ADJ
considerably ADV
by ADP
age NOUN
; PUNCT
the DET
prevalence NOUN
of ADP
use NOUN
of ADP
chewing VERB
tobacco NOUN
was AUX
more ADV
evenly ADV
distributed VERB
by ADP
age NOUN
group NOUN
( PUNCT
Table NOUN
2 NUM
) PUNCT
. PUNCT
Although SCONJ
women NOUN
rarely ADV
used VERB
smokeless NOUN
tobacco NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
snuff PROPN
use NOUN
was AUX
highest ADJ
among ADP
those DET
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
75 NUM
years NOUN
. PUNCT
      SPACE
An DET
estimated VERB
7.9 NUM
million NUM
( PUNCT
4.4 NUM
% NOUN
95 NUM
% NOUN
CI=4.1 PROPN
- SYM
4.6 NUM
) PUNCT
adults NOUN
reported VERB
being AUX
former ADJ
smokeless ADJ
tobacco NOUN
users NOUN
. PUNCT
Among ADP
ever ADV
users NOUN
, PUNCT
the DET
proportion NOUN
who PRON
were AUX
former ADJ
smokeless ADJ
tobacco NOUN
users NOUN
was AUX
59.9 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=57.7 PROPN
- SYM
62.1 NUM
) PUNCT
. PUNCT
Among ADP
persons NOUN
aged VERB
18 NUM
- SYM
24 NUM
years NOUN
, PUNCT
the DET
proportion NOUN
of ADP
former ADJ
users NOUN
was AUX
lower ADJ
among ADP
snuff ADJ
users NOUN
( PUNCT
56.2 NUM
% NOUN
95 NUM
% NOUN
CI=49.4 PROPN
- PUNCT
63.0 NUM
) PUNCT
than SCONJ
among ADP
chewing VERB
tobacco NOUN
users NOUN
( PUNCT
70.4 NUM
% NOUN
95 NUM
% NOUN
CI=64.2 NOUN
- PUNCT
76.6 NUM
) PUNCT
. PUNCT
Among ADP
persons NOUN
aged VERB
45 NUM
- PUNCT
64 NUM
years NOUN
, PUNCT
the DET
proportion NOUN
of ADP
former ADJ
users NOUN
was AUX
similar ADJ
for ADP
snuff PROPN
( PUNCT
68.9 NUM
% NOUN
95 NUM
% NOUN
CI=63.1 PROPN
- PUNCT
74.7 NUM
) PUNCT
and CCONJ
chewing VERB
tobacco NOUN
( PUNCT
73.5 NUM
% NOUN
95 NUM
% NOUN
CI=68.9 PROPN
- PUNCT
78.1 NUM
) PUNCT
. PUNCT
      SPACE
Among ADP
current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
, PUNCT
22.9 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=19.9 PROPN
- PUNCT
26.0 PROPN
) PUNCT
currently ADV
smoked VERB
, PUNCT
33.3 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=30.0 PROPN
- PUNCT
36.5 NUM
) PUNCT
formerly ADV
smoked VERB
, PUNCT
and CCONJ
43.8 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=39.9 PROPN
- PUNCT
47.7 NUM
) PUNCT
never ADV
smoked VERB
. PUNCT
In ADP
comparison NOUN
, PUNCT
among ADP
current ADJ
smokers NOUN
, PUNCT
2.6 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=2.3 PROPN
- SYM
3.0 NUM
) PUNCT
were AUX
current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
. PUNCT
      SPACE
Daily PROPN
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
was AUX
more ADV
common ADJ
among ADP
snuff ADJ
users NOUN
( PUNCT
67.3 NUM
% NOUN
95 NUM
% NOUN
CI=63.2 PROPN
- PUNCT
71.4 NUM
) PUNCT
than SCONJ
among ADP
chewing VERB
tobacco NOUN
users NOUN
( PUNCT
45.1 NUM
% NOUN
95 NUM
% NOUN
CI=40.6 PROPN
- PUNCT
49.6 NUM
) PUNCT
. PUNCT
Reported VERB
by ADP
: PUNCT
Office NOUN
on ADP
Smoking PROPN
and CCONJ
Health PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Chronic PROPN
Disease PROPN
Prevention PROPN
and CCONJ
Health PROPN
Promotion PROPN
; PUNCT
Div PROPN
of ADP
Health PROPN
Interview PROPN
Statistics PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Health PROPN
Statistics PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
findings NOUN
in ADP
this DET
report NOUN
indicate VERB
that SCONJ
the DET
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
was AUX
highest ADJ
among ADP
young ADJ
males NOUN
. PUNCT
Adolescent ADJ
and CCONJ
young ADJ
adult NOUN
males NOUN
, PUNCT
in ADP
particular ADJ
, PUNCT
are AUX
the DET
target NOUN
of ADP
marketing NOUN
strategies NOUN
by ADP
tobacco NOUN
companies NOUN
that PRON
link VERB
smokeless NOUN
tobacco NOUN
with ADP
athletic ADJ
performance NOUN
and CCONJ
virility NOUN
. PUNCT
Use NOUN
of ADP
oral ADJ
snuff NOUN
has AUX
risen VERB
markedly ADV
among ADP
professional ADJ
baseball NOUN
players NOUN
, PUNCT
encouraging VERB
this DET
behavior NOUN
among ADP
adolescent ADJ
and CCONJ
young ADJ
adult NOUN
males NOUN
and CCONJ
increasing VERB
their PRON
risk NOUN
for ADP
nicotine ADJ
addiction NOUN
, PUNCT
oral ADJ
cancer NOUN
, PUNCT
and CCONJ
other ADJ
mouth NOUN
disorders NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
      SPACE
Differences PROPN
in ADP
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
among ADP
racial ADJ
/ SYM
ethnic ADJ
groups NOUN
may AUX
be AUX
influenced VERB
by ADP
differences NOUN
in ADP
educational ADJ
levels NOUN
and CCONJ
socioeconomic ADJ
status NOUN
as ADV
well ADV
as SCONJ
social ADJ
and CCONJ
cultural ADJ
phenomena NOUN
that PRON
require VERB
further ADJ
explanation NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
targeted VERB
marketing NOUN
practices NOUN
may AUX
play VERB
a DET
role NOUN
in ADP
maintaining VERB
or CCONJ
increasing VERB
prevalence NOUN
among ADP
some DET
groups NOUN
, PUNCT
and CCONJ
affecting VERB
the DET
differential ADJ
initiation NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
by ADP
young ADJ
persons NOUN
( PUNCT
5,6 NUM
) PUNCT
. PUNCT
      SPACE
In ADP
this DET
report NOUN
, PUNCT
one NUM
concern NOUN
is AUX
that SCONJ
nearly ADV
one NUM
fourth NOUN
of ADP
current ADJ
smokeless ADJ
tobacco NOUN
users NOUN
also ADV
smoke VERB
cigarettes NOUN
. PUNCT
In ADP
the DET
1991 NUM
NHIS PROPN
- PUNCT
HPDP PROPN
, PUNCT
the DET
prevalence NOUN
of ADP
cigarette NOUN
smoking NOUN
was AUX
higher ADJ
among ADP
former ADJ
smokeless ADJ
tobacco NOUN
users NOUN
than SCONJ
among ADP
current ADJ
and CCONJ
never ADV
smokeless VERB
tobacco NOUN
users NOUN
. PUNCT
In ADP
a DET
previous ADJ
study NOUN
among ADP
college NOUN
students NOUN
, PUNCT
18 NUM
% NOUN
of ADP
current ADJ
smokeless ADJ
tobacco NOUN
users NOUN
smoked VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
11Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993occasionally NUM
( PUNCT
7 NUM
) PUNCT
. PUNCT
In ADP
addition NOUN
, PUNCT
approximately ADV
7 NUM
% NOUN
of ADP
adults NOUN
who PRON
formerly ADV
smoked VERB
reported VERB
substituting VERB
other ADJ
tobacco NOUN
products NOUN
for ADP
cigarettes NOUN
in ADP
an DET
effort NOUN
to PART
stop VERB
smoking VERB
( PUNCT
8) NUM
. PUNCT
Health NOUN
- PUNCT
care NOUN
providers NOUN
should AUX
recognize VERB
the DET
potential ADJ
health NOUN
implications NOUN
of ADP
concurrent ADJ
smokeless NOUN
tobacco NOUN
and CCONJ
cigarette NOUN
use NOUN
. PUNCT
      SPACE
The DET
national ADJ
health NOUN
objectives NOUN
for ADP
the DET
year NOUN
2000 NUM
have AUX
established VERB
special ADJ
population NOUN
target NOUN
groups NOUN
for ADP
the DET
reduction NOUN
of ADP
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
, PUNCT
including VERB
males NOUN
aged VERB
12 NUM
- SYM
24 NUM
years NOUN
( PUNCT
to ADP
no DET
more ADJ
than SCONJ
4 NUM
% NOUN
by ADP
the DET
year NOUN
2000 NUM
objective ADJ
3.9 NUM
) PUNCT
and CCONJ
American ADJ
Indian PROPN
/ SYM
Alaskan ADJ
Native ADJ
youth NOUN
( PUNCT
to ADP
no DET
more ADJ
than SCONJ
10 NUM
% NOUN
by ADP
the DET
year NOUN
2000 NUM
objective ADJ
3.9a PROPN
) PUNCT
( PUNCT
9 NUM
) PUNCT
. PUNCT
Strategies NOUN
to PART
lower VERB
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
include VERB
continued VERB
monitoring NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
, PUNCT
integrating VERB
smoking NOUN
and CCONJ
smokeless ADJ
tobacco NOUN
- PUNCT
control NOUN
efforts NOUN
, PUNCT
enforcing VERB
laws NOUN
that PRON
restrict VERB
minors NOUN
' PART
access NOUN
to ADP
tobacco NOUN
, PUNCT
making VERB
excise NOUN
taxes NOUN
commensurate ADJ
with ADP
those DET
on ADP
cigarettes NOUN
, PUNCT
encouraging VERB
health NOUN
- PUNCT
care NOUN
providers NOUN
to PART
routinely ADV
provide VERB
cessation NOUN
advice NOUN
and CCONJ
follow NOUN
- PUNCT
up ADP
, PUNCT
providing VERB
school NOUN
- PUNCT
based VERB
prevention NOUN
and CCONJ
cessation NOUN
interventions NOUN
, PUNCT
and CCONJ
adopting VERB
policies NOUN
that PRON
prohibit VERB
tobacco NOUN
use NOUN
on ADP
school NOUN
property NOUN
and CCONJ
at ADP
school NOUN
- PUNCT
sponsored VERB
events NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
References1 ADJ
. PUNCT
Office NOUN
of ADP
Evaluations PROPN
and CCONJ
Inspections PROPN
. PUNCT
Spit ADJ
tobacco NOUN
and CCONJ
youth NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Office PROPN
of ADP
the DET
Inspector PROPN
General PROPN
, PUNCT
1992 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
OEI-06)92 NUM
- PUNCT
00500 NUM
. PUNCT
2 NUM
. PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
. PUNCT
The DET
health NOUN
consequences NOUN
of ADP
using VERB
smokeless ADJ
tobacco NOUN
: PUNCT
a DET
report NOUN
of ADP
the DET
Advisory PROPN
Committee PROPN
to ADP
the DET
Surgeon PROPN
General PROPN
. PUNCT
Bethesda PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1986 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
NIH)86 PROPN
- PUNCT
2874 NUM
. PUNCT
3 X
. PUNCT
Shah PROPN
BV PROPN
. PUNCT
Software NOUN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
version NOUN
5.30 NUM
Software PROPN
documentation NOUN
. PUNCT
Research PROPN
Triangle PROPN
Park PROPN
, PUNCT
North PROPN
Carolina PROPN
: PUNCT
Research PROPN
Triangle PROPN
Institute PROPN
, PUNCT
1989 NUM
. PUNCT
4 X
. PUNCT
Connolly PROPN
GN PROPN
, PUNCT
Orleans PROPN
CT PROPN
, PUNCT
Blum PROPN
A. PROPN
Snuffing VERB
tobacco NOUN
out SCONJ
of ADP
sport NOUN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1992;82:351 PROPN
- SYM
3 NUM
. PUNCT
5 NUM
. PUNCT
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
Smokeless ADJ
tobacco NOUN
or CCONJ
health NOUN
: PUNCT
an DET
international ADJ
perspective NOUN
. PUNCT
Bethesda PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
1992 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
NIH)92 NOUN
- PUNCT
3461 NUM
. PUNCT
6 NUM
. PUNCT
Foreyt PROPN
JP PROPN
, PUNCT
Jackson PROPN
AS PROPN
, PUNCT
Squires PROPN
WG PROPN
, PUNCT
Hartung PROPN
GH PROPN
, PUNCT
Murray PROPN
TD PROPN
, PUNCT
Gotto PROPN
AM NOUN
. PUNCT
Psychological ADJ
profile NOUN
of ADP
college NOUN
students NOUN
who PRON
use VERB
smokeless NOUN
tobacco NOUN
. PUNCT
Addict PROPN
Behav PROPN
1993;18:107 NUM
- PUNCT
16 NUM
. PUNCT
7 NUM
. PUNCT
Glover PROPN
ED PROPN
, PUNCT
Laflin PROPN
M PROPN
, PUNCT
Edwards PROPN
SW PROPN
. PUNCT
Age NOUN
of ADP
initiation NOUN
and CCONJ
switching VERB
patterns NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
12Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993between NUM
smokeless NOUN
tobacco NOUN
and CCONJ
cigarettes NOUN
among ADP
college NOUN
students NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1989;79:207 PROPN
- SYM
8 NUM
. PUNCT
8 NUM
. PUNCT
CDC PROPN
. PUNCT
Tobacco NOUN
use NOUN
in ADP
1986 NUM
: PUNCT
methods NOUN
and CCONJ
tabulations NOUN
from ADP
Adult PROPN
Use PROPN
of ADP
Tobacco PROPN
Survey PROPN
. PUNCT
Rockville PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
CDC PROPN
, PUNCT
1990 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
OM)90 PROPN
- PUNCT
2004 NUM
. PUNCT
9 NUM
. PUNCT
Public PROPN
Health PROPN
Service PROPN
. PUNCT
Healthy ADJ
people NOUN
2000 NUM
: PUNCT
national PROPN
health PROPN
promotion PROPN
and CCONJ
disease NOUN
prevention NOUN
objectives NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1991 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
PHS)91 PROPN
- PUNCT
50213.--------- NUM
end NOUN
of ADP
part NOUN
1 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59126From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 NUM
Medical PROPN
News PROPN
Part PROPN
3/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------University PROPN
of ADP
ArizonaTucson PROPN
, PUNCT
Arizona PROPN
                               SPACE
Suggested VERB
ReadingTan PROPN
SL PROPN
, PUNCT
Royston PROPN
P NOUN
, PUNCT
Campbell PROPN
S PROPN
, PUNCT
Jacobs PROPN
HS PROPN
, PUNCT
Betts PROPN
J PROPN
, PUNCT
Mason PROPN
B PROPN
, PUNCT
Edwards PROPN
RG PROPN
( PUNCT
1992 NUM
) PUNCT
. PUNCT
  SPACE
Cumulative ADJ
conception NOUN
and CCONJ
Livebirth PROPN
rates NOUN
after ADP
in ADP
- PUNCT
vitro X
fertilization NOUN
. PUNCT
Lancet PROPN
339:1390 NUM
- PUNCT
1394 NUM
. PUNCT
For ADP
further ADJ
information NOUN
, PUNCT
call NOUN
: PUNCT
                        SPACE
Physicians PROPN
' PART
Resource PROPN
Line PROPN
                             SPACE
1 NUM
- SYM
800 NUM
- PUNCT
328 NUM
- PUNCT
5868 NUM
                               SPACE
in ADP
Tucson PROPN
: PUNCT
                                SPACE
694 NUM
- PUNCT
5868HICNet VERB
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
28Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                   SPACE
Articles NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                    SPACE
LOW ADJ
LEVELS NOUN
OF ADP
AIRBORNE PROPN
PARTICLES NOUN
LINKED NOUN
                           SPACE
TO ADP
SERIOUS PROPN
ASTHMA PROPN
ATTACKS PROPN
                           SPACE
American PROPN
Lung PROPN
Association PROPN
      SPACE
A DET
new ADJ
study NOUN
published VERB
by ADP
the DET
American PROPN
Lung PROPN
Association PROPN
has AUX
shown VERB
that SCONJ
surprisingly ADV
low ADJ
concentrations NOUN
of ADP
airborne ADJ
particles NOUN
can AUX
send VERB
people NOUN
with ADP
asthma NOUN
rushing VERB
to ADP
emergency NOUN
rooms NOUN
for ADP
treatment NOUN
. PUNCT
       SPACE
The DET
Seattle PROPN
- PUNCT
based VERB
study NOUN
showed VERB
that SCONJ
roughly ADV
one NUM
in ADP
eight NUM
emergency NOUN
visits NOUN
for ADP
asthma NOUN
in ADP
that DET
city NOUN
was AUX
linked VERB
to ADP
exposure NOUN
to PART
particulate VERB
air NOUN
pollution NOUN
. PUNCT
  SPACE
The DET
actual ADJ
exposure NOUN
levels NOUN
recorded VERB
in ADP
the DET
study NOUN
were AUX
far ADV
below ADP
those DET
deemed VERB
unsafe ADJ
under ADP
federal ADJ
air NOUN
quality NOUN
laws NOUN
. PUNCT
       SPACE
" PUNCT
People NOUN
with ADP
asthma NOUN
have AUX
inflamed VERB
airways PROPN
, PUNCT
and CCONJ
airborne ADJ
particles NOUN
tend VERB
to PART
exacerbate VERB
that DET
inflammation NOUN
, PUNCT
" PUNCT
said VERB
Joel PROPN
Schwartz PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
of ADP
the DET
Environmental PROPN
Protection PROPN
Agency PROPN
, PUNCT
who PRON
was AUX
the DET
lead ADJ
author NOUN
of ADP
the DET
study NOUN
. PUNCT
  SPACE
" PUNCT
When ADV
people NOUN
are AUX
on ADP
the DET
threshold NOUN
of ADP
having VERB
, PUNCT
a DET
serious ADJ
asthma NOUN
attack NOUN
, PUNCT
particles NOUN
can AUX
push VERB
them PRON
over ADP
the DET
edge NOUN
. PUNCT
" PUNCT
      SPACE
The DET
Seattle PROPN
Study PROPN
correlated VERB
13 NUM
months NOUN
of ADP
asthma NOUN
emergency NOUN
room NOUN
visits VERB
with ADP
daily ADJ
levels NOUN
of ADP
PM NOUN
, PUNCT
, PUNCT
, PUNCT
. PUNCT
or CCONJ
particulate VERB
matter NOUN
with ADP
an DET
aerodynamic ADJ
diameter NOUN
of ADP
10 NUM
microns NOUN
or CCONJ
less ADJ
. PUNCT
  SPACE
These DET
finer NOUN
particles NOUN
are AUX
considered VERB
hazardous ADJ
because SCONJ
they PRON
are AUX
small ADJ
enough ADJ
penetrate NOUN
into ADP
the DET
lung NOUN
. PUNCT
  SPACE
Cities NOUN
are AUX
considered VERB
out SCONJ
of ADP
compliance NOUN
with ADP
clean ADJ
air NOUN
laws NOUN
if SCONJ
the DET
24-hour NUM
average ADJ
concentration NOUN
of ADP
PM10 PROPN
exceeds VERB
150 NUM
micrograms NOUN
per ADP
cubic ADJ
millimeter NOUN
of ADP
air NOUN
. PUNCT
       SPACE
In ADP
Seattle PROPN
however ADV
, PUNCT
a DET
link NOUN
between ADP
fine ADJ
particles NOUN
and CCONJ
asthma NOUN
was AUX
found VERB
at ADP
levels NOUN
as ADV
low ADJ
as SCONJ
30 NUM
micrograms NOUN
. PUNCT
  SPACE
The DET
authors NOUN
concluded VERB
that SCONJ
for ADP
every DET
30 NUM
microgram NOUN
increase NOUN
in ADP
the DET
four NUM
- PUNCT
day NOUN
average NOUN
of ADP
PM10 PROPN
, PUNCT
the DET
odds NOUN
of ADP
someone PRON
with ADP
asthma NOUN
needing VERB
emergency NOUN
treatment NOUN
increased VERB
by ADP
12 NUM
percent NOUN
. PUNCT
       SPACE
The DET
findings NOUN
were AUX
published VERB
in ADP
the DET
April PROPN
American PROPN
Review PROPN
of ADP
Respiratory PROPN
Disease PROPN
, PUNCT
an DET
official ADJ
journal NOUN
of ADP
the DET
American PROPN
Thoracic PROPN
Society PROPN
, PUNCT
the DET
Lung PROPN
Association PROPN
's PART
medical ADJ
section NOUN
. PUNCT
       SPACE
The DET
study NOUN
is AUX
the DET
latest ADJ
in ADP
a DET
series NOUN
of ADP
recent ADJ
reports NOUN
to PART
suggest VERB
that SCONJ
particulate NOUN
matter NOUN
is AUX
a DET
greatly ADV
under ADP
appreciated VERB
health NOUN
threat NOUN
. PUNCT
  SPACE
A DET
1992 NUM
study NOUN
by ADP
Dr. PROPN
Schwartz PROPN
and CCONJ
Douglas PROPN
Dockery PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
of ADP
Harvard PROPN
found VERB
that SCONJ
particles NOUN
may AUX
be AUX
causing VERB
roughly ADV
60,000 NUM
premature ADJ
deaths NOUN
each DET
year NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
Other ADJ
studies NOUN
have AUX
linked VERB
particulate NOUN
matter NOUN
to ADP
increased VERB
respiratory ADJ
symptoms NOUN
and CCONJ
bronchitis NOUN
in ADP
children NOUN
. PUNCT
       SPACE
" PUNCT
Government NOUN
officials NOUN
and CCONJ
the DET
media NOUN
are AUX
still ADV
very ADV
focused ADJ
on ADP
ozone NOUN
, PUNCT
" PUNCT
says VERB
Dr. PROPN
Schwartz PROPN
. PUNCT
  SPACE
" PUNCT
But CCONJ
more ADJ
and CCONJ
more ADJ
research NOUN
is AUX
showing VERB
that SCONJ
particles NOUN
are AUX
bad ADJ
actors NOUN
as ADV
well ADV
. PUNCT
" PUNCT
      SPACE
One NUM
problem NOUN
in ADP
setting NOUN
, PUNCT
standards NOUN
for ADP
particulate NOUN
air NOUN
pollution NOUN
is AUX
that SCONJ
PMIO PROPN
is AUX
difficult ADJ
to PART
study VERB
. PUNCT
  SPACE
Unlike ADP
other ADJ
regulated ADJ
pollutants NOUN
such ADJ
as SCONJ
ozone NOUN
and CCONJ
carbon NOUN
monoxide NOUN
, PUNCT
particulate NOUN
matter NOUN
is AUX
a DET
complex NOUN
and CCONJ
varying VERB
mixture NOUN
of ADP
substances NOUN
, PUNCT
including VERB
carbon NOUN
, PUNCT
hydrocarbons NOUN
, PUNCT
dust NOUN
, PUNCT
and CCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
29Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993acid NUM
aerosols NOUN
. PUNCT
       SPACE
" PUNCT
Researchers NOUN
ca AUX
n't PART
Put VERB
people NOUN
in ADP
exposure NOUN
chambers NOUN
to PART
study VERB
the DET
effects NOUN
of ADP
particulate NOUN
air NOUN
pollution NOUN
, PUNCT
" PUNCT
says VERB
Dr. PROPN
Schwartz PROPN
. PUNCT
  SPACE
" PUNCT
We PRON
have AUX
no DET
way NOUN
of ADP
duplicating VERB
the DET
typical ADJ
urban ADJ
mix NOUN
of ADP
particles NOUN
. PUNCT
  SPACE
" PUNCT
Consequently ADV
, PUNCT
most ADJ
of ADP
what PRON
is AUX
known VERB
about ADP
particulates NOUN
has AUX
been AUX
learned VERB
through ADP
population NOUN
- PUNCT
based VERB
research NOUN
like SCONJ
the DET
Seattle PROPN
study NOUN
. PUNCT
       SPACE
Given VERB
that SCONJ
the DET
EPA PROPN
's PART
current ADJ
priority NOUN
is AUX
to PART
review VERB
the DET
ozone NOUN
and CCONJ
sulfur NOUN
dioxide NOUN
standards NOUN
, PUNCT
the DET
agency NOUN
is AUX
unlikely ADJ
to PART
reexamine VERB
the DET
PM10 PROPN
standard NOUN
any DET
time NOUN
soon ADV
. PUNCT
  SPACE
Until ADP
changes NOUN
are AUX
made VERB
, PUNCT
there PRON
appears VERB
to PART
be AUX
little ADJ
people NOUN
with ADP
asthma NOUN
can AUX
do AUX
to PART
protect VERB
themselves PRON
from ADP
airborne ADJ
particles NOUN
. PUNCT
     SPACE
" PUNCT
In ADP
some DET
areas NOUN
, PUNCT
you PRON
can AUX
get AUX
reports NOUN
on ADP
air NOUN
quality NOUN
, PUNCT
but CCONJ
the DET
reports NOUN
only ADV
cover VERB
the DET
pollutant NOUN
that PRON
is AUX
closest ADJ
to ADP
violating VERB
its PRON
standard NOUN
, PUNCT
and CCONJ
that DET
's AUX
rarely ADV
particulate ADJ
matter NOUN
, PUNCT
" PUNCT
says VERB
Dr. PROPN
  SPACE
Schwartz PROPN
. PUNCT
  SPACE
" PUNCT
However ADV
, PUNCT
PM10 PROPN
does AUX
n't PART
have AUX
to PART
be AUX
near SCONJ
its PRON
violation NOUN
range NOUN
to PART
be AUX
unhealthy ADJ
. PUNCT
"HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
30Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
               SPACE
NIH PROPN
Consensus PROPN
Development PROPN
Conference PROPN
on ADP
MelanomaThe PROPN
National PROPN
Institutes PROPN
of ADP
Health PROPN
Consensus PROPN
Development PROPN
Conference PROPN
on ADP
Diagnosis PROPN
and CCONJ
Treatment PROPN
of ADP
Early PROPN
Melanoma PROPN
brought VERB
together ADP
experts NOUN
in ADP
dermatology NOUN
, PUNCT
pathology NOUN
, PUNCT
epidemiology NOUN
, PUNCT
public ADJ
education NOUN
, PUNCT
surveillance NOUN
techniques NOUN
, PUNCT
and CCONJ
potential ADJ
new ADJ
technologies NOUN
as ADV
well ADV
as SCONJ
other ADJ
health NOUN
care NOUN
professionals NOUN
and CCONJ
the DET
public NOUN
to PART
address VERB
( PUNCT
1 NUM
) PUNCT
the DET
clinical ADJ
and CCONJ
histological ADJ
characteristics NOUN
of ADP
early ADJ
melanoma NOUN
; PUNCT
( PUNCT
2 X
) PUNCT
the DET
appropriate ADJ
diagnosis NOUN
, PUNCT
management NOUN
, PUNCT
and CCONJ
followup NOUN
of ADP
patients NOUN
with ADP
early ADJ
melanoma NOUN
; PUNCT
( PUNCT
3 X
) PUNCT
the DET
role NOUN
of ADP
dysplastic PROPN
nevi PROPN
and CCONJ
their PRON
significance NOUN
; PUNCT
and CCONJ
( PUNCT
4 X
) PUNCT
the DET
role NOUN
of ADP
education NOUN
and CCONJ
screening VERB
in ADP
preventing VERB
melanoma ADJ
morbidity NOUN
and CCONJ
mortality NOUN
. PUNCT
  SPACE
Following VERB
2 NUM
days NOUN
of ADP
presentations NOUN
by ADP
experts NOUN
and CCONJ
discussion NOUN
by ADP
the DET
audience NOUN
, PUNCT
a DET
consensus NOUN
panel NOUN
weighed VERB
the DET
scientific ADJ
evidence NOUN
and CCONJ
prepared VERB
their PRON
consensus NOUN
statement NOUN
. PUNCT
  SPACE
Among ADP
their PRON
findings NOUN
, PUNCT
the DET
panel NOUN
recommended VERB
that SCONJ
( PUNCT
1 X
) PUNCT
melanoma PROPN
in ADP
situ NOUN
is AUX
a DET
distinct ADJ
entity NOUN
effectively ADV
treated VERB
surgically ADV
with ADP
0.5 NUM
centimeter NOUN
margins NOUN
; PUNCT
( PUNCT
2 X
) PUNCT
thin ADJ
invasive ADJ
melanoma NOUN
, PUNCT
less ADJ
than SCONJ
1 NUM
millimeter NOUN
thick ADJ
, PUNCT
has AUX
the DET
potential NOUN
for ADP
long ADJ
- PUNCT
term NOUN
survival NOUN
in ADP
more ADJ
than SCONJ
90 NUM
percent NOUN
of ADP
patients NOUN
after ADP
surgical ADJ
excision NOUN
with ADP
a DET
1 NUM
centimeter NOUN
margin NOUN
; PUNCT
( PUNCT
3 X
) PUNCT
elective ADJ
lymph NOUN
node VERB
dissections NOUN
and CCONJ
extensive ADJ
staging VERB
evaluations NOUN
are AUX
not PART
recommended VERB
in ADP
early ADJ
melanoma NOUN
; PUNCT
( PUNCT
4 X
) PUNCT
patients NOUN
with ADP
early ADJ
melanoma NOUN
are AUX
at ADP
low ADJ
risk NOUN
for ADP
relapse NOUN
but CCONJ
may AUX
be AUX
at ADP
high ADJ
risk NOUN
for ADP
development NOUN
of ADP
subsequent ADJ
melanomas NOUN
and CCONJ
should AUX
be AUX
followed VERB
closely ADV
; PUNCT
( PUNCT
5 X
) PUNCT
some DET
family NOUN
members NOUN
of ADP
patients NOUN
with ADP
melanoma PROPN
are AUX
at ADP
increased VERB
risk NOUN
for ADP
melanoma NOUN
and CCONJ
should AUX
be AUX
enrolled VERB
in ADP
surveillance NOUN
programs NOUN
; PUNCT
and CCONJ
( PUNCT
6 NUM
) PUNCT
education NOUN
and CCONJ
screening NOUN
programs NOUN
have AUX
the DET
potential NOUN
to PART
decrease VERB
morbidity NOUN
and CCONJ
mortality NOUN
from ADP
melanoma PROPN
. PUNCT
  SPACE
A DET
copy NOUN
of ADP
the DET
full ADJ
text NOUN
of ADP
the DET
consensus NOUN
panel NOUN
's PART
statement NOUN
is AUX
available ADJ
by ADP
calling VERB
the DET
NIH PROPN
Office PROPN
of ADP
Medical PROPN
Applications PROPN
of ADP
Research PROPN
at ADP
( PUNCT
301 NUM
) PUNCT
496 NUM
- SYM
1143 NUM
or CCONJ
by ADP
writing VERB
to PART
: PUNCT
  SPACE
Office PROPN
of ADP
Medical PROPN
Applications PROPN
of ADP
Research PROPN
, PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
Federal PROPN
Building PROPN
, PUNCT
Room PROPN
618 NUM
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
20892.HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
31Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                         SPACE
NCI PROPN
- PUNCT
Designated VERB
Cancer NOUN
CentersThe PROPN
Cancer PROPN
Centers PROPN
Program PROPN
is AUX
comprised VERB
of ADP
55 NUM
NCI PROPN
- PUNCT
designated VERB
Cancer PROPN
Centers PROPN
actively ADV
engaged VERB
in ADP
multidisciplinary ADJ
research NOUN
efforts NOUN
to PART
reduce VERB
cancer NOUN
incidence NOUN
, PUNCT
morbidity NOUN
, PUNCT
and CCONJ
mortality NOUN
. PUNCT
  SPACE
Within ADP
the DET
program NOUN
, PUNCT
there PRON
are AUX
four NUM
types NOUN
of ADP
cancer NOUN
centers NOUN
: PUNCT
  SPACE
basic ADJ
science NOUN
cancer NOUN
centers NOUN
( PUNCT
14 NUM
) PUNCT
, PUNCT
which PRON
engage VERB
primarily ADV
in ADP
basic ADJ
cancer NOUN
research NOUN
; PUNCT
clinical ADJ
cancer NOUN
centers NOUN
( PUNCT
12 NUM
) PUNCT
, PUNCT
which PRON
focus VERB
on ADP
clinical ADJ
research NOUN
; PUNCT
" PUNCT
comprehensive ADJ
" PUNCT
cancer NOUN
centers NOUN
( PUNCT
28 NUM
) PUNCT
, PUNCT
which PRON
emphasize VERB
a DET
multidisciplinary ADJ
approach NOUN
to ADP
cancer NOUN
research NOUN
, PUNCT
patient ADJ
care NOUN
, PUNCT
and CCONJ
community NOUN
outreach NOUN
; PUNCT
and CCONJ
consortium NOUN
cancer NOUN
centers NOUN
( PUNCT
1 NUM
) PUNCT
, PUNCT
which PRON
specialize VERB
in ADP
cancer NOUN
prevention NOUN
and CCONJ
control NOUN
research NOUN
. PUNCT
  SPACE
Although SCONJ
some DET
cancer NOUN
centers NOUN
existed VERB
in ADP
the DET
late ADJ
1960s NOUN
and CCONJ
the DET
1970s NOUN
, PUNCT
it PRON
was AUX
the DET
National PROPN
Cancer PROPN
Act PROPN
of ADP
1971 NUM
that PRON
authorized VERB
the DET
establishment NOUN
of ADP
15 NUM
new ADJ
cancer NOUN
centers NOUN
, PUNCT
as ADV
well ADV
as SCONJ
continuing VERB
support NOUN
for ADP
existing VERB
ones NOUN
. PUNCT
  SPACE
The DET
passage NOUN
of ADP
the DET
act NOUN
also ADV
dramatically ADV
transformed VERB
the DET
centers NOUN
' PART
structure NOUN
and CCONJ
broadened VERB
the DET
scope NOUN
of ADP
their PRON
mission NOUN
to PART
include VERB
all DET
aspects NOUN
of ADP
basic ADJ
, PUNCT
clinical ADJ
, PUNCT
and CCONJ
cancer NOUN
control NOUN
research NOUN
. PUNCT
  SPACE
Over ADP
the DET
next ADJ
two NUM
decades NOUN
, PUNCT
the DET
centers NOUN
' PART
program NOUN
grew VERB
progressively ADV
. PUNCT
  SPACE
In ADP
1990 NUM
, PUNCT
there PRON
were AUX
19 NUM
comprehensive ADJ
cancer NOUN
centers NOUN
in ADP
the DET
nation NOUN
. PUNCT
Today NOUN
, PUNCT
there PRON
are AUX
28 NUM
of ADP
these DET
institutions NOUN
, PUNCT
all DET
of ADP
which PRON
meet VERB
specific ADJ
NCI PROPN
criteria NOUN
for ADP
comprehensive ADJ
status NOUN
. PUNCT
  SPACE
To PART
attain VERB
recognition NOUN
from ADP
the DET
NCI PROPN
as SCONJ
a DET
comprehensive ADJ
cancer NOUN
center NOUN
, PUNCT
an DET
institution NOUN
must AUX
pass VERB
rigorous ADJ
peer NOUN
review NOUN
. PUNCT
  SPACE
Under ADP
guidelines NOUN
newly ADV
established VERB
in ADP
1990 NUM
, PUNCT
the DET
eight NUM
criteria NOUN
for ADP
" PUNCT
comprehensiveness NOUN
" PUNCT
include VERB
the DET
requirement NOUN
that SCONJ
a DET
center NOUN
have AUX
a DET
strong ADJ
core NOUN
of ADP
basic ADJ
laboratory NOUN
research NOUN
in ADP
several ADJ
scientific ADJ
fields NOUN
, PUNCT
such ADJ
as SCONJ
biology NOUN
and CCONJ
molecular ADJ
genetics NOUN
, PUNCT
a DET
strong ADJ
program NOUN
of ADP
clinical ADJ
research NOUN
, PUNCT
and CCONJ
an DET
ability NOUN
to PART
transfer VERB
research NOUN
findings NOUN
into ADP
clinical ADJ
practice NOUN
. PUNCT
  SPACE
Moreover ADV
, PUNCT
five NUM
of ADP
the DET
criteria NOUN
for ADP
comprehensive ADJ
status NOUN
go VERB
significantly ADV
beyond ADP
that DET
required VERB
for ADP
attaining VERB
a DET
Cancer PROPN
Center PROPN
Support PROPN
Grant PROPN
( PUNCT
also ADV
referred VERB
to ADP
as SCONJ
a DET
P30 NOUN
or CCONJ
core NOUN
grant NOUN
) PUNCT
, PUNCT
the DET
mechanism NOUN
of ADP
choice NOUN
for ADP
supporting VERB
the DET
infrastructure NOUN
of ADP
a DET
cancer NOUN
center NOUN
's PART
operations NOUN
. PUNCT
  SPACE
These DET
criteria NOUN
encompass VERB
strong ADJ
participation NOUN
in ADP
NCI PROPN
- PUNCT
designated VERB
high ADJ
- PUNCT
priority NOUN
clinical ADJ
trials NOUN
, PUNCT
significant ADJ
levels NOUN
of ADP
cancer NOUN
prevention NOUN
and CCONJ
control NOUN
research NOUN
, PUNCT
and CCONJ
important ADJ
outreach NOUN
and CCONJ
educational ADJ
activities NOUN
-- PUNCT
all DET
of ADP
which PRON
are AUX
funded VERB
by ADP
a DET
variety NOUN
of ADP
sources NOUN
. PUNCT
  SPACE
The DET
other ADJ
types NOUN
of ADP
cancer NOUN
centers NOUN
also ADV
have AUX
special ADJ
characteristics NOUN
and CCONJ
capabilities NOUN
for ADP
organizing VERB
new ADJ
programs NOUN
of ADP
research NOUN
that PRON
can AUX
exploit VERB
important ADJ
new ADJ
findings NOUN
or CCONJ
address NOUN
timely ADJ
research NOUN
questions NOUN
. PUNCT
  SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
32Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Of NUM
the DET
55 NUM
NCI PROPN
- PUNCT
designated VERB
Cancer PROPN
Centers PROPN
, PUNCT
14 NUM
are AUX
of ADP
the DET
basic ADJ
science NOUN
type NOUN
. PUNCT
  SPACE
These DET
centers NOUN
engage VERB
almost ADV
entirely ADV
in ADP
basic ADJ
research NOUN
, PUNCT
although SCONJ
some DET
centers NOUN
engage VERB
in ADP
collaborative ADJ
research NOUN
with ADP
outside ADJ
clinical ADJ
research NOUN
investigators NOUN
and CCONJ
in ADP
cooperative ADJ
projects NOUN
with ADP
industry NOUN
to PART
generate VERB
medical ADJ
applications NOUN
from ADP
new ADJ
discoveries NOUN
in ADP
the DET
laboratory NOUN
. PUNCT
  SPACE
Clinical ADJ
cancer NOUN
centers NOUN
, PUNCT
in ADP
contrast NOUN
, PUNCT
focus VERB
on ADP
both CCONJ
basic ADJ
research NOUN
and CCONJ
clinical ADJ
research NOUN
within ADP
the DET
same ADJ
institutional ADJ
framework NOUN
, PUNCT
and CCONJ
frequently ADV
incorporate VERB
nearby ADV
affiliated VERB
clinical ADJ
research NOUN
institutions NOUN
into ADP
their PRON
overall ADJ
research NOUN
programs NOUN
. PUNCT
  SPACE
There PRON
are AUX
12 NUM
such ADJ
centers NOUN
today NOUN
. PUNCT
  SPACE
Finally ADV
, PUNCT
consortium NOUN
cancer NOUN
centers NOUN
, PUNCT
of ADP
which PRON
there PRON
is AUX
one NUM
, PUNCT
are AUX
uniquely ADV
structured VERB
and CCONJ
concentrate VERB
on ADP
clinical ADJ
research NOUN
and CCONJ
cancer NOUN
prevention NOUN
and CCONJ
control NOUN
research NOUN
. PUNCT
  SPACE
These DET
centers NOUN
interface VERB
with ADP
state NOUN
and CCONJ
local ADJ
public ADJ
health NOUN
departments NOUN
for ADP
the DET
purpose NOUN
of ADP
achieving VERB
the DET
transfer NOUN
of ADP
effective ADJ
prevention NOUN
and CCONJ
control NOUN
techniques NOUN
from ADP
their PRON
research NOUN
findings NOUN
to ADP
those DET
institutions NOUN
responsible ADJ
for ADP
implementing VERB
population NOUN
- PUNCT
wide ADJ
public ADJ
health NOUN
programs NOUN
. PUNCT
  SPACE
Consortium PROPN
centers NOUN
also ADV
are AUX
heavily ADV
engaged VERB
in ADP
collaborations NOUN
with ADP
institutions NOUN
that PRON
conduct VERB
clinical ADJ
trial NOUN
research NOUN
and CCONJ
coordinate VERB
community NOUN
hospitals NOUN
within ADP
a DET
network NOUN
of ADP
cooperating VERB
institutions NOUN
in ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Together ADV
, PUNCT
the DET
55 NUM
NCI PROPN
- PUNCT
Designated VERB
Cancer PROPN
Centers PROPN
continue VERB
to PART
work VERB
toward ADP
creating VERB
new ADJ
and CCONJ
innovative ADJ
approaches NOUN
to ADP
cancer NOUN
research NOUN
, PUNCT
and CCONJ
through ADP
interdisciplinary ADJ
efforts NOUN
, PUNCT
to PART
effectively ADV
move VERB
this DET
research NOUN
from ADP
the DET
laboratory NOUN
into ADP
clinical ADJ
trials NOUN
and CCONJ
into ADP
clinical ADJ
practice NOUN
. PUNCT
  SPACE
Comprehensive PROPN
Cancer PROPN
Centers PROPN
( PUNCT
Internet NOUN
addresses NOUN
are AUX
given VERB
where ADV
available ADJ
) PUNCT
  SPACE
University PROPN
of ADP
Alabama PROPN
at ADP
Birmingham PROPN
Comprehensive PROPN
Cancer PROPN
CenterBasic PROPN
Health PROPN
Sciences PROPN
Building PROPN
, PUNCT
Room PROPN
1081918 NUM
University PROPN
BoulevardBirmingham PROPN
, PUNCT
Alabama PROPN
35294(205 PROPN
) PUNCT
934 NUM
- SYM
6612 NUM
University PROPN
of ADP
Arizona PROPN
Cancer PROPN
Center1501 PROPN
North PROPN
Campbell PROPN
AvenueTucson PROPN
, PUNCT
Arizona PROPN
85724(602 NOUN
) PUNCT
626 NUM
- PUNCT
6372Internet PROPN
: PUNCT
  SPACE
syd@azcc.arizona.edu DET
Jonsson PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
California PROPN
at ADP
Los PROPN
Angeles200 PROPN
Medical PROPN
PlazaLos PROPN
Angeles PROPN
, PUNCT
California PROPN
90027(213 NOUN
) PUNCT
206 NUM
- PUNCT
0278HICNet ADJ
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
33Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Internet NUM
: PUNCT
  SPACE
rick@jccc.medsch.ucla.edu VERB
Kenneth PROPN
T. PROPN
Norris PROPN
Jr. PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Southern PROPN
California1441 PROPN
Eastlake PROPN
AvenueLos PROPN
Angeles PROPN
, PUNCT
California PROPN
  SPACE
90033 NUM
- SYM
0804(213 PROPN
) PUNCT
226 NUM
- PUNCT
2370 NUM
Yale PROPN
University PROPN
Comprehensive PROPN
Cancer PROPN
Center333 PROPN
Cedar PROPN
StreetNew PROPN
Haven PROPN
, PUNCT
Connecticut PROPN
06510(203 NOUN
) PUNCT
785 NUM
- PUNCT
6338 NUM
Lombardi PROPN
Cancer PROPN
Research PROPN
CenterGeorgetown PROPN
University PROPN
Medical PROPN
Center3800 PROPN
Reservoir PROPN
Road PROPN
, PUNCT
N.W.Washington PROPN
, PUNCT
D.C. PROPN
20007(202 NUM
) PUNCT
687 NUM
- SYM
2192 NUM
Sylvester PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Miami PROPN
Medical PROPN
School1475 PROPN
Northwest PROPN
12th NOUN
AvenueMiami PROPN
, PUNCT
Florida PROPN
33136(305 NOUN
) PUNCT
548 NUM
- PUNCT
4800Internet NUM
: PUNCT
  SPACE
hlam@mednet.med.miami.edu PROPN
Johns PROPN
Hopkins PROPN
Oncology PROPN
Center600 PROPN
North PROPN
Wolfe PROPN
StreetBaltimore PROPN
, PUNCT
Maryland PROPN
21205(410 NUM
) PUNCT
955 NUM
- PUNCT
8638 NUM
Dana PROPN
- PUNCT
Farber PROPN
Cancer PROPN
Institute44 PROPN
Binney PROPN
StreetBoston PROPN
, PUNCT
Massachusetts PROPN
02115(617 NOUN
) PUNCT
732 NUM
- PUNCT
3214Internet PROPN
: PUNCT
  SPACE
Kristie_Stevenson@macmailgw.dfci.harvard.edu PROPN
Meyer PROPN
L. PROPN
Prentis PROPN
Comprehensive PROPN
Cancer PROPN
Center PROPN
of ADP
MetropolitanDetroit110 PROPN
East PROPN
Warren PROPN
AvenueDetroit PROPN
, PUNCT
Michigan PROPN
48201(313 NOUN
) PUNCT
745 NUM
- PUNCT
4329Internet NUM
: PUNCT
  SPACE
cummings%oncvx1.dnet@rocdec.roc.wayne.edu PROPN
University PROPN
of ADP
Michigan PROPN
Cancer PROPN
CenterHICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
34Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993101 NUM
Simpson PROPN
DriveAnn PROPN
Arbor PROPN
, PUNCT
Michigan PROPN
48109 NUM
- PUNCT
0752(313 NOUN
) PUNCT
936 NUM
- PUNCT
9583BITNET NUM
: PUNCT
  SPACE
kallie.bila.michels@um.cc.umich.edu PROPN
Mayo PROPN
Comprehensive PROPN
Cancer PROPN
Center200 PROPN
First PROPN
Street PROPN
SouthwestRochester PROPN
, PUNCT
Minnesota PROPN
55905(507 NUM
) PUNCT
284 NUM
- PUNCT
3413 NUM
Norris PROPN
Cotton PROPN
Cancer PROPN
CenterDartmouth PROPN
- PUNCT
Hitchcock PROPN
Medical PROPN
CenterOne PROPN
Medical PROPN
Center PROPN
DriveLebanon PROPN
, PUNCT
New PROPN
Hampshire PROPN
03756(603 NOUN
) PUNCT
646 NUM
- PUNCT
5505BITNET NOUN
: PUNCT
  SPACE
edward.bresnick@dartmouth.edu PROPN
Roswell PROPN
Park PROPN
Cancer PROPN
InstituteElm PROPN
and CCONJ
Carlton PROPN
StreetsBuffalo PROPN
, PUNCT
New PROPN
York PROPN
14263(716 NOUN
) PUNCT
845 NUM
- PUNCT
4400 NUM
Columbia PROPN
University PROPN
Comprehensive PROPN
Cancer PROPN
CenterCollege PROPN
of ADP
Physicians PROPN
and CCONJ
Surgeons630 PROPN
West PROPN
168th ADP
StreetNew PROPN
York PROPN
, PUNCT
New PROPN
York PROPN
10032(212 NUM
) PUNCT
305 NUM
- PUNCT
6905Internet NOUN
: PUNCT
  SPACE
janie@cuccfa.ccc.columbia.edu PROPN
Memorial PROPN
Sloan PROPN
- PUNCT
Kettering PROPN
Cancer PROPN
Center1275 PROPN
York PROPN
AvenueNew PROPN
York PROPN
, PUNCT
New PROPN
York PROPN
10021(800 NOUN
) PUNCT
525 NUM
- PUNCT
2225 NUM
Kaplan PROPN
Cancer PROPN
CenterNew PROPN
York PROPN
University PROPN
Medical PROPN
Center462 PROPN
First PROPN
AvenueNew PROPN
York PROPN
, PUNCT
New PROPN
York PROPN
10016 NUM
- PUNCT
9103(212 PROPN
) PUNCT
263 NUM
- PUNCT
6485 NUM
UNC PROPN
Lineberger PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
North PROPN
Carolina PROPN
School PROPN
of ADP
MedicineChapel PROPN
Hill PROPN
, PUNCT
North PROPN
Carolina PROPN
27599(919 NUM
) PUNCT
966 NUM
- SYM
4431 NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
35Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Duke NUM
Comprehensive PROPN
Cancer PROPN
CenterP.O. PROPN
Box PROPN
3814Durham PROPN
, PUNCT
North PROPN
Carolina PROPN
27710(919 NOUN
) PUNCT
286 NUM
- PUNCT
5515 NUM
Cancer PROPN
Center PROPN
of ADP
Wake PROPN
Forest PROPN
University PROPN
at ADP
the DET
Bowman PROPN
Gray PROPN
Schoolof PROPN
Medicine300 PROPN
South PROPN
Hawthorne PROPN
RoadWinston PROPN
- PUNCT
Salem PROPN
, PUNCT
North PROPN
Carolina PROPN
27103(919 NUM
) PUNCT
748 NUM
- PUNCT
4354Internet NUM
: PUNCT
  SPACE
ccwfumail@phs.bgsm.wfu.edu PROPN
Ohio PROPN
State PROPN
University PROPN
Comprehensive PROPN
Cancer PROPN
Center300 PROPN
West PROPN
10th ADJ
AvenueColumbus PROPN
, PUNCT
Ohio PROPN
43210(614 NUM
) PUNCT
293 NUM
- PUNCT
5485Internet NOUN
: PUNCT
  SPACE
dyoung@magnus.acs.ohio-state.edu VERB
Fox PROPN
Chase PROPN
Cancer PROPN
Center7701 PROPN
Burholme PROPN
AvenuePhiladelphia PROPN
, PUNCT
Pennsylvania PROPN
19111(215 NUM
) PUNCT
728 NUM
- PUNCT
2570Internet NUM
: PUNCT
  SPACE
s_davis@fccc.edu PROPN
University PROPN
of ADP
Pennsylvania PROPN
Cancer PROPN
Center3400 PROPN
Spruce PROPN
StreetPhiladelphia PROPN
, PUNCT
Pennsylvania PROPN
19104(215 NUM
) PUNCT
662 NUM
- SYM
6364 NUM
Pittsburgh PROPN
Cancer PROPN
Institute200 PROPN
Meyran PROPN
AvenuePittsburgh PROPN
, PUNCT
Pennsylvania PROPN
15213 NUM
- PUNCT
2592(800 NUM
) PUNCT
537 NUM
- SYM
4063 NUM
The DET
University PROPN
of ADP
Texas PROPN
M.D. PROPN
Anderson PROPN
Cancer PROPN
Center1515 PROPN
Holcombe PROPN
BoulevardHouston PROPN
, PUNCT
Texas PROPN
77030(713 PROPN
) PUNCT
792 NUM
- PUNCT
3245 NUM
Vermont PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Vermont1 NOUN
South PROPN
Prospect PROPN
StreetBurlington PROPN
, PUNCT
Vermont PROPN
05401(802 PROPN
) PUNCT
656 NUM
- SYM
4580 NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
36Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Fred NUM
Hutchinson PROPN
Cancer PROPN
Research PROPN
Center1124 PROPN
Columbia PROPN
StreetSeattle PROPN
, PUNCT
Washington PROPN
98104(206 NOUN
) PUNCT
667 NUM
- PUNCT
4675Internet NUM
: PUNCT
  SPACE
sedmonds@cclink.fhcrc.org PROPN
University PROPN
of ADP
Wisconsin PROPN
Comprehensive PROPN
Cancer PROPN
Center600 PROPN
Highland PROPN
AvenueMadison PROPN
, PUNCT
Wisconsin PROPN
53792(608 NUM
) PUNCT
263 NUM
- PUNCT
8600BITNET NUM
: PUNCT
  SPACE
carbone@uwccc.biostat.wisc.edu NOUN
   SPACE
Clinical PROPN
Cancer PROPN
Centers PROPN
  SPACE
University PROPN
of ADP
California PROPN
at ADP
San PROPN
Diego PROPN
Cancer PROPN
Center225 PROPN
Dickinson PROPN
StreetSan PROPN
Diego PROPN
, PUNCT
California PROPN
92103(619 NOUN
) PUNCT
543 NUM
- PUNCT
6178Internet NOUN
: PUNCT
  SPACE
dedavis@ucsd.edu X
City PROPN
of ADP
Hope PROPN
National PROPN
Medical PROPN
CenterBeckman PROPN
Research PROPN
Institute1500 PROPN
East PROPN
Duarte PROPN
RoadDuarte PROPN
, PUNCT
California PROPN
91010(818 NOUN
) PUNCT
359 NUM
- SYM
8111 NUM
ext NOUN
. PUNCT
2292 NUM
University PROPN
of ADP
Colorado PROPN
Cancer PROPN
Center4200 PROPN
East PROPN
9th NOUN
Avenue PROPN
, PUNCT
Box PROPN
B188Denver PROPN
, PUNCT
Colorado PROPN
80262(303 NOUN
) PUNCT
270 NUM
- PUNCT
7235 NUM
University PROPN
of ADP
Chicago PROPN
Cancer PROPN
Research PROPN
Center5841 PROPN
South PROPN
Maryland PROPN
Avenue PROPN
, PUNCT
Box PROPN
444Chicago NUM
, PUNCT
Illinois PROPN
60637(312 PROPN
) PUNCT
702 NUM
- PUNCT
6180Internet PROPN
: PUNCT
  SPACE
judith@delphi.bsd.uchicago.edu PROPN
Albert PROPN
Einstein PROPN
College PROPN
of ADP
Medicine1300 PROPN
Morris PROPN
Park PROPN
AvenueBronx PROPN
, PUNCT
New PROPN
York PROPN
10461(212 NUM
) PUNCT
920 NUM
- SYM
4826 NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
37Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993University NUM
of ADP
Rochester PROPN
Cancer PROPN
Center601 PROPN
Elmwood PROPN
Avenue PROPN
, PUNCT
Box PROPN
704Rochester PROPN
, PUNCT
New PROPN
York PROPN
14642(716 NUM
) PUNCT
275 NUM
- SYM
4911Internet NUM
: PUNCT
  SPACE
rickb@wotan.medicine.rochester.edu NOUN
Ireland PROPN
Cancer PROPN
Center PROPN
Case PROPN
Western PROPN
Reserve PROPN
UniversityUniversity PROPN
Hospitals PROPN
of ADP
Cleveland2074 PROPN
Abington PROPN
RoadCleveland PROPN
, PUNCT
Ohio PROPN
44106(216 NUM
) PUNCT
844 NUM
- SYM
5432 NUM
Roger PROPN
Williams PROPN
Cancer PROPN
CenterBrown PROPN
University825 PROPN
Chalkstone PROPN
AvenueProvidence PROPN
, PUNCT
Rhode PROPN
Island PROPN
02908(401 NUM
) PUNCT
456 NUM
- SYM
2071 NUM
St. PROPN
Jude PROPN
Children PROPN
's PART
Research PROPN
Hospital332 PROPN
North PROPN
Lauderdale PROPN
StreetMemphis PROPN
, PUNCT
Tennessee PROPN
38101 NUM
- PUNCT
0318(901 NOUN
) PUNCT
522 NUM
- PUNCT
0306Internet NOUN
: PUNCT
  SPACE
meyer@mbcf.stjude.org PROPN
Institute PROPN
for ADP
Cancer PROPN
Research PROPN
and CCONJ
Care4450 NOUN
Medical PROPN
DriveSan PROPN
Antonio PROPN
, PUNCT
Texas PROPN
78229(512 NUM
) PUNCT
616 NUM
- SYM
5580 NUM
Utah PROPN
Regional PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Utah PROPN
Health PROPN
Sciences PROPN
Center50 PROPN
North PROPN
Medical PROPN
Drive PROPN
, PUNCT
Room PROPN
2C110Salt NOUN
Lake PROPN
City PROPN
, PUNCT
Utah PROPN
84132(801 NUM
) PUNCT
581 NUM
- PUNCT
4048BITNET NUM
: PUNCT
  SPACE
hogan@cc.utah.edu PROPN
Massey PROPN
Cancer PROPN
CenterMedical PROPN
College PROPN
of ADP
VirginiaVirginia PROPN
Commonwealth PROPN
University1200 PROPN
East PROPN
Broad PROPN
StreetRichmond PROPN
, PUNCT
Virginia PROPN
23298(804 NUM
) PUNCT
786 NUM
- PUNCT
9641 NUM
  SPACE
ConsortiaHICNet VERB
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
38Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
Drew PROPN
- PUNCT
Meharry PROPN
- PUNCT
Morehouse PROPN
Consortium PROPN
Cancer PROPN
Center1005 PROPN
D.B. PROPN
Todd PROPN
BoulevardNashville PROPN
, PUNCT
Tennessee PROPN
37208(615 PROPN
) PUNCT
327 NUM
- PUNCT
6927HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
39Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                             SPACE
General PROPN
Announcments PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                 SPACE
THE DET
UCI PROPN
MEDICAL PROPN
EDUCATION PROPN
SOFTWARE NOUN
REPOSITORY PROPN
This DET
is AUX
to PART
announce VERB
the DET
establishment NOUN
of ADP
an DET
FTP PROPN
site NOUN
at ADP
the DET
University PROPN
of ADP
California PROPN
, PUNCT
for ADP
the DET
collection NOUN
of ADP
shareware PROPN
, PUNCT
public ADJ
- PUNCT
domain NOUN
software NOUN
and CCONJ
other ADJ
information NOUN
relating VERB
to ADP
Medical PROPN
Education PROPN
. PUNCT
  SPACE
Specifically ADV
, PUNCT
we PRON
are AUX
interested ADJ
in ADP
establishing VERB
this DET
site NOUN
as SCONJ
a DET
clearinghouse NOUN
for ADP
personally ADV
developed VERB
software NOUN
that PRON
has AUX
been AUX
developed VERB
for ADP
local ADJ
medical ADJ
education NOUN
programs NOUN
. PUNCT
  SPACE
We PRON
welcome VERB
all DET
contributions NOUN
that PRON
may AUX
be AUX
shared VERB
with ADP
other ADJ
users NOUN
. PUNCT
  SPACE
To PART
connect VERB
to ADP
the DET
UCI PROPN
Medical PROPN
Education PROPN
Software PROPN
Repository PROPN
, PUNCT
ftp PROPN
to PART
: PUNCT
                      SPACE
FTP.UCI.EDUThe PROPN
Repository PROPN
currently ADV
offers VERB
both CCONJ
MSDOS PROPN
and CCONJ
Macintosh PROPN
software NOUN
, PUNCT
and CCONJ
we PRON
hope VERB
to PART
support VERB
other ADJ
operating NOUN
systems NOUN
( PUNCT
UNIX PROPN
, PUNCT
MUMPS PROPN
, PUNCT
AMIGA PROPN
? PUNCT
) PUNCT
. PUNCT
  SPACE
Uploads NOUN
are AUX
welcome ADJ
. PUNCT
  SPACE
We PRON
actively ADV
solicit VERB
information NOUN
and CCONJ
software NOUN
which PRON
you PRON
have AUX
personaly NOUN
developed VERB
or CCONJ
have AUX
found VERB
useful ADJ
in ADP
your PRON
local ADJ
medical ADJ
education NOUN
efforts NOUN
, PUNCT
either CCONJ
as SCONJ
an DET
instructor NOUN
or CCONJ
student NOUN
. PUNCT
  SPACE
Once SCONJ
you PRON
have AUX
connected VERB
to ADP
the DET
site NOUN
via ADP
FTP PROPN
, PUNCT
cd PROPN
( PUNCT
change PROPN
directory PROPN
) PUNCT
to ADP
either CCONJ
the DET
med PROPN
- PUNCT
ed PROPN
/ SYM
mac PROPN
/ SYM
incoming ADJ
or CCONJ
the DET
med PROPN
- PUNCT
ed PROPN
/ SYM
msdos NOUN
/ SYM
incoming ADJ
directories NOUN
, PUNCT
change VERB
the DET
mode NOUN
to ADP
binary VERB
and CCONJ
" PUNCT
send VERB
" PUNCT
or CCONJ
" PUNCT
put VERB
" PUNCT
your PRON
files NOUN
. PUNCT
  SPACE
Note VERB
that SCONJ
you PRON
wo AUX
n't PART
be AUX
able ADJ
to PART
see VERB
the DET
files NOUN
with ADP
the DET
" PUNCT
ls NOUN
" PUNCT
or CCONJ
" PUNCT
dir NOUN
" PUNCT
commands NOUN
. PUNCT
  SPACE
Please INTJ
compress VERB
your PRON
files NOUN
as ADV
appropriate ADJ
to ADP
the DET
operating NOUN
system NOUN
( PUNCT
ZIP PROPN
for ADP
MSDOS NOUN
; PUNCT
Compactor NOUN
or CCONJ
something PRON
similar ADJ
for ADP
Macintosh PROPN
) PUNCT
to PART
save VERB
disk NOUN
space NOUN
. PUNCT
  SPACE
After ADP
uploading VERB
, PUNCT
please INTJ
send VERB
email NOUN
to ADP
Steve PROPN
Clancy PROPN
( PUNCT
slclancy@uci.edu NUM
) PUNCT
( PUNCT
for ADP
MSDOS PROPN
) PUNCT
or CCONJ
Albert PROPN
Saisho PROPN
( PUNCT
saisho@uci.edu NOUN
) PUNCT
( PUNCT
for ADP
MAC PROPN
) PUNCT
describing VERB
the DET
file(s PROPN
) PUNCT
you PRON
have AUX
uploaded VERB
and CCONJ
any DET
other ADJ
information NOUN
we PRON
might AUX
need VERB
to PART
describe VERB
it PRON
. PUNCT
Note VERB
that SCONJ
we PRON
can AUX
only ADV
accept VERB
software NOUN
or CCONJ
information NOUN
that PRON
has AUX
been AUX
designated VERB
as SCONJ
shareware ADJ
, PUNCT
public ADJ
- PUNCT
domain NOUN
or CCONJ
that PRON
may AUX
otherwise ADV
be AUX
distributed VERB
freely ADV
. PUNCT
  SPACE
Please INTJ
do AUX
not PART
upload VERB
commercial ADJ
software NOUN
! PUNCT
  SPACE
Doing VERB
so ADV
may AUX
jeopardize VERB
the DET
existence NOUN
of ADP
this DET
FTP PROPN
site NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
wish VERB
to PART
upload VERB
software NOUN
for ADP
other ADJ
operating NOUN
systems NOUN
, PUNCT
please INTJ
contact VERB
either DET
Steve PROPN
Clancy PROPN
, PUNCT
M.L.S. PROPN
or CCONJ
Albert PROPN
Saisho PROPN
, PUNCT
M.D. PROPN
at ADP
the DET
addresses NOUN
above ADV
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
40Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                              SPACE
AIDS PROPN
News PROPN
Summaries PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                              SPACE
AIDS PROPN
Daily PROPN
SummaryThe PROPN
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
( PUNCT
CDC PROPN
) PUNCT
National PROPN
AIDS PROPN
  SPACE
Clearinghouse PROPN
makes VERB
available ADJ
the DET
following VERB
information NOUN
as SCONJ
a DET
public ADJ
  SPACE
service NOUN
only ADV
. PUNCT
Providing VERB
this DET
information NOUN
does AUX
not PART
constitute VERB
endorsement NOUN
  SPACE
by ADP
the DET
CDC PROPN
, PUNCT
the DET
CDC PROPN
Clearinghouse PROPN
, PUNCT
or CCONJ
any DET
other ADJ
organization NOUN
. PUNCT
Reproduction NOUN
  SPACE
of ADP
this DET
text NOUN
is AUX
encouraged VERB
; PUNCT
however ADV
, PUNCT
copies NOUN
may AUX
not PART
be AUX
sold VERB
. PUNCT
  SPACE
Copyright NOUN
1993 NUM
, PUNCT
Information PROPN
, PUNCT
Inc. PROPN
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                    SPACE
April PROPN
12 NUM
, PUNCT
1993 NUM
       SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
NIH PROPN
Set VERB
to PART
Test VERB
Multiple ADJ
AIDS PROPN
Vaccines PROPN
" PUNCT
Reuters PROPN
( PUNCT
04/08/93 PUNCT
) PUNCT
  SPACE
( PUNCT
Frank PROPN
, PUNCT
Jacqueline PROPN
) PUNCT
      SPACE
Washington PROPN
-- PUNCT
The DET
Clinton PROPN
administration NOUN
will AUX
permit VERB
the DET
National PROPN
  SPACE
Institutes PROPN
of ADP
Health PROPN
to PART
test VERB
multiple ADJ
AIDS PROPN
vaccines NOUN
instead ADV
of ADP
  SPACE
only ADV
allowing VERB
the DET
Army PROPN
to PART
test VERB
a DET
single ADJ
vaccine NOUN
, PUNCT
administration NOUN
  SPACE
sources NOUN
said VERB
Thursday PROPN
. PUNCT
  SPACE
The DET
decision NOUN
ends VERB
the DET
controversy NOUN
between ADP
Army PROPN
AIDS PROPN
researchers NOUN
who PRON
had AUX
hoped VERB
to PART
test VERB
a DET
vaccine NOUN
made VERB
by ADP
  SPACE
MicroGeneSys PROPN
Inc. PROPN
and CCONJ
the DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
which PRON
  SPACE
contended VERB
that SCONJ
multiple ADJ
vaccines NOUN
should AUX
be AUX
tested VERB
. PUNCT
  SPACE
Health PROPN
and CCONJ
  SPACE
Human PROPN
Services PROPN
Secretary PROPN
Donna PROPN
Shalala PROPN
said VERB
a DET
final ADJ
announcement NOUN
  SPACE
on ADP
the DET
therapeutic ADJ
vaccine NOUN
trials NOUN
was AUX
expected VERB
to PART
be AUX
made VERB
last ADJ
  SPACE
Friday PROPN
. PUNCT
  SPACE
Companies NOUN
including VERB
Genentech PROPN
Inc. PROPN
, PUNCT
Chiron PROPN
Corp. PROPN
, PUNCT
and CCONJ
  SPACE
Immuno PROPN
AG PROPN
have AUX
already ADV
told VERB
NIH PROPN
that SCONJ
they PRON
are AUX
prepared ADJ
to PART
  SPACE
participate VERB
in ADP
the DET
vaccine NOUN
tests NOUN
. PUNCT
  SPACE
The DET
testing NOUN
is AUX
intended VERB
to PART
  SPACE
demonstrate VERB
whether SCONJ
AIDS PROPN
vaccines NOUN
are AUX
effective ADJ
in ADP
thwarting VERB
the DET
  SPACE
replication NOUN
of ADP
HIV PROPN
in ADP
patients NOUN
already ADV
infected VERB
. PUNCT
  SPACE
Shalala PROPN
refuted VERB
last ADJ
week NOUN
's PART
reports NOUN
that SCONJ
the DET
Clinton PROPN
administration NOUN
had AUX
decided VERB
  SPACE
the DET
Army PROPN
's PART
test NOUN
of ADP
the DET
MicroGeneSys PROPN
VaxSyn PROPN
should AUX
proceed VERB
without ADP
tests NOUN
of ADP
others NOUN
at ADP
the DET
same ADJ
time NOUN
. PUNCT
  SPACE
" PUNCT
The DET
report NOUN
was AUX
inaccurate ADJ
, PUNCT
  SPACE
and CCONJ
I PRON
expect VERB
there ADV
to PART
be AUX
some DET
announcement NOUN
in ADP
the DET
next ADJ
24 NUM
hours NOUN
  SPACE
about ADP
that DET
particular ADJ
AIDS PROPN
research NOUN
project NOUN
, PUNCT
" PUNCT
said VERB
Shalala PROPN
. PUNCT
   SPACE
Administration PROPN
sources NOUN
subsequently ADV
confirmed VERB
that SCONJ
NIH PROPN
director NOUN
  SPACE
Dr. PROPN
Bernadine PROPN
Healy PROPN
and CCONJ
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
Commissioner PROPN
David PROPN
Kessler PROPN
had AUX
convinced VERB
the DET
White PROPN
House PROPN
that SCONJ
multiple ADJ
  SPACE
vaccines NOUN
should AUX
be AUX
tested VERB
simultaneously ADV
. PUNCT
  SPACE
But CCONJ
MicroGeneSys PROPN
  SPACE
president NOUN
Frank PROPN
Volvovitz PROPN
said VERB
a DET
test NOUN
of ADP
multiple ADJ
vaccines NOUN
could AUX
  SPACE
triple VERB
the DET
cost NOUN
of ADP
the DET
trial NOUN
and CCONJ
delay VERB
it PRON
by ADP
two NUM
years.================================================================== NOUN
    SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
41Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993"The NUM
Limits NOUN
of ADP
AZT PROPN
's PART
Impact PROPN
on ADP
HIV PROPN
" PUNCT
U.S. PROPN
News PROPN
& CCONJ
World PROPN
Report PROPN
( PUNCT
04/12/93 PROPN
) PUNCT
Vol PROPN
. PROPN
114 NUM
, PUNCT
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
18 NUM
      SPACE
AZT PROPN
has AUX
become VERB
the DET
most ADV
widely ADV
used VERB
drug NOUN
to PART
fight VERB
AIDS PROPN
since SCONJ
it PRON
  SPACE
was AUX
approved VERB
by ADP
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
in ADP
1987 NUM
. PUNCT
   SPACE
Burroughs PROPN
Wellcome PROPN
, PUNCT
the DET
manufacturer NOUN
of ADP
AZT PROPN
, PUNCT
made VERB
$ SYM
338 NUM
million NUM
  SPACE
last ADJ
year NOUN
alone ADV
from ADP
sales NOUN
of ADP
the DET
drug NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
a DET
team NOUN
of ADP
  SPACE
European ADJ
researchers NOUN
recently ADV
reported VERB
that SCONJ
although SCONJ
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
taking VERB
AZT PROPN
demonstrated VERB
a DET
slightly ADV
lower ADJ
risk NOUN
of ADP
  SPACE
developing VERB
AIDS PROPN
within ADP
the DET
first ADJ
year NOUN
of ADP
treatment NOUN
, PUNCT
that DET
benefit NOUN
  SPACE
disappeared VERB
two NUM
years NOUN
later ADV
. PUNCT
  SPACE
The DET
Lancet PROPN
published VERB
preliminary ADJ
  SPACE
findings NOUN
of ADP
the DET
three NUM
- PUNCT
year NOUN
study NOUN
, PUNCT
which PRON
could AUX
give VERB
more ADJ
reason NOUN
  SPACE
for ADP
critics NOUN
to PART
argue VERB
the DET
drug NOUN
's PART
cost NOUN
, PUNCT
side NOUN
effects NOUN
, PUNCT
and CCONJ
general ADJ
  SPACE
efficacy NOUN
. PUNCT
  SPACE
Even ADV
though SCONJ
U.S. PROPN
researchers NOUN
concede VERB
the DET
study NOUN
was AUX
  SPACE
more ADV
comprehensive ADJ
than SCONJ
American ADJ
trials NOUN
, PUNCT
many ADJ
argue VERB
the DET
European ADJ
  SPACE
researchers NOUN
' PART
suggestion NOUN
that SCONJ
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
experience VERB
  SPACE
little ADJ
improvement NOUN
in ADP
their PRON
illness NOUN
before ADP
the DET
development NOUN
of ADP
  SPACE
AIDS PROPN
symptoms NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
researchers NOUN
have AUX
long ADV
been AUX
familiar ADJ
  SPACE
with ADP
the DET
--------- PUNCT
end NOUN
of ADP
part NOUN
3 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59127From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1r3ks8INNica@lynx.unm.edu NUM
> X
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
writes:>In X
article NOUN
< X
1993Apr21.091844.4035@omen NOUN
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
19687@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>>>>>Can VERB
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>>the NOUN
lost VERB
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>>exceeds VERB
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>>is NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>>>Not PROPN
one NUM
, PUNCT
but CCONJ
two:>>>>Obesity NUM
in ADP
Europe PROPN
88,>>proceedings PROPN
of ADP
the DET
1st ADJ
European ADJ
Congress PROPN
on ADP
Obesity>>>>Annals NUM
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>>>Hmmm NUM
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressive ADJ
> X
behavior NOUN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)>>BrianI PRON
purposefully ADV
left VERB
off ADP
the DET
page NOUN
numbers NOUN
to PART
encourage VERB
the DET
reader NOUN
tostudy VERB
the DET
volumes NOUN
mentioned VERB
, PUNCT
and CCONJ
benefit VERB
therefrom.-- PROPN
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59128From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Could AUX
this DET
be AUX
a DET
migraine?GB ADJ
> X
From ADP
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)GB PROPN
> X
> X
( PUNCT
I PRON
am AUX
excepting VERB
migraine NOUN
, PUNCT
which PRON
is AUX
arguably ADV
neurologic).GB NOUN
> X
I PRON
hope VERB
you PRON
meant VERB
" PUNCT
inarguably" PROPN
. PUNCT
Given VERB
the DET
choice NOUN
, PUNCT
I PRON
would AUX
rather ADV
argue VERB
< X
g>.No PROPN
arguments NOUN
about ADP
migranous ADJ
aura NOUN
; PUNCT
in ADP
fact NOUN
, PUNCT
current ADJ
best ADJ
evidence NOUN
isthat ADP
aura PROPN
is AUX
intrinsicially ADV
neuronal ADJ
( PUNCT
a X
la ADJ
spreading VERB
depression NOUN
ofLeao NOUN
) PUNCT
rather ADV
than SCONJ
vascular ADJ
( PUNCT
something PRON
causing VERB
vasoconstriction NOUN
andsecondary ADJ
neuronal ADJ
ischemia).Migraine NOUN
without ADP
aura PROPN
, PUNCT
however ADV
, PUNCT
is AUX
a DET
fuzzier ADJ
issue NOUN
. PUNCT
  SPACE
There PRON
do AUX
notseem VERB
to PART
be AUX
objectively ADV
measurable ADJ
changes NOUN
in ADP
brain NOUN
function NOUN
. PUNCT
  SPACE
TheCopenhagen PROPN
mafia NOUN
( PUNCT
Lauritzen PROPN
, PUNCT
Olesen PROPN
, PUNCT
et PROPN
al PROPN
) PUNCT
have AUX
done VERB
local ADJ
CBFstudies NOUN
on ADP
migraine NOUN
without ADP
aura PROPN
, PUNCT
and CCONJ
( PUNCT
unlike ADP
migraine NOUN
with ADP
aura PROPN
, PUNCT
but CCONJ
like SCONJ
tension NOUN
- PUNCT
type NOUN
) PUNCT
they PRON
found VERB
no DET
changes NOUN
in ADP
LCBF.From PROPN
one NUM
( PUNCT
absurd ADJ
) PUNCT
perspective NOUN
, PUNCT
* PUNCT
all DET
* PUNCT
pain NOUN
is AUX
neurologic ADJ
, PUNCT
because SCONJ
inthe DET
absence NOUN
of ADP
a DET
nervous ADJ
system NOUN
, PUNCT
there PRON
would AUX
not PART
be AUX
pain NOUN
. PUNCT
  SPACE
Fromanother PROPN
( PUNCT
tautologic PROPN
) PUNCT
perspective NOUN
, PUNCT
any DET
disease NOUN
is AUX
in ADP
the DET
domain NOUN
ofthe NOUN
specialty NOUN
that PRON
treats VERB
it PRON
. PUNCT
  SPACE
Neurologists NOUN
treat VERB
headache NOUN
, PUNCT
therefore ADV
( PUNCT
at ADP
least ADJ
in ADP
the DET
USA PROPN
) PUNCT
headache NOUN
is AUX
neurologic ADJ
. PUNCT
Whether SCONJ
neurologic ADJ
or CCONJ
not PART
, PUNCT
nobody PRON
would AUX
disagree VERB
that SCONJ
disablingheadaches NOUN
are AUX
common ADJ
. PUNCT
  SPACE
Perhaps ADV
my PRON
fee NOUN
- PUNCT
for ADP
- PUNCT
service NOUN
neurologiccolleagues NOUN
, PUNCT
scrounging VERB
for ADP
cases NOUN
, PUNCT
want VERB
all DET
the DET
headache NOUN
patientsthey NOUN
can AUX
get AUX
. PUNCT
  SPACE
Working VERB
on ADP
a DET
salary NOUN
, PUNCT
however ADV
, PUNCT
I PRON
would AUX
rather ADV
not PART
fillmy VERB
office NOUN
with ADP
patients NOUN
holding VERB
their PRON
heads NOUN
in ADP
pain.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                       SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59129From NUM
: PUNCT
thom@morgan.ucs.mun.ca X
( PUNCT
Thomas PROPN
Clancy)Subject NUM
: PUNCT
Re ADP
: PUNCT
Thrush PROPN
( PUNCT
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)))dyer@spdcc.com PROPN
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
21APR199308571323@ucsvax.sdsu.edu X
> X
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M. PROPN
) PUNCT
writes:>>Dyer PROPN
is AUX
beyond ADP
rude ADJ
. PUNCT
I PRON
'll AUX
drink VERB
to ADP
that.>Yeah PROPN
, PUNCT
yeah INTJ
, PUNCT
yeah INTJ
. PUNCT
  SPACE
I PRON
did AUX
n't PART
threaten VERB
to PART
rip VERB
your PRON
lips NOUN
off ADP
, PUNCT
did AUX
I?>Snort.>>There PROPN
have AUX
been AUX
and CCONJ
always ADV
will AUX
be AUX
people NOUN
who PRON
are AUX
blinded VERB
by ADP
their PRON
own ADJ
> X
> X
knowledge NOUN
and CCONJ
unopen NOUN
to ADP
anything PRON
that PRON
is AUX
n't PART
already ADV
established VERB
. PUNCT
Given VERB
what PRON
> X
> X
the DET
medical ADJ
community NOUN
does AUX
n't PART
know VERB
, PUNCT
I PRON
'm AUX
surprised ADJ
that SCONJ
he PRON
has AUX
this DET
outlook.>Duh NOUN
. PUNCT
Nice ADJ
to PART
see VERB
Steve PROPN
still ADV
has AUX
his PRON
high ADJ
and CCONJ
almighty ADJ
intellectual ADJ
prowess NOUN
in ADP
tact.>>For NOUN
the DET
record NOUN
, PUNCT
I PRON
have AUX
had VERB
several ADJ
outbreaks NOUN
of ADP
thrush NOUN
during ADP
the DET
several ADJ
> X
> X
past ADP
few ADJ
years NOUN
, PUNCT
with ADP
no DET
indication NOUN
of ADP
immunosuppression NOUN
or CCONJ
nutritional ADJ
> X
> X
deficiencies NOUN
. PUNCT
I PRON
had AUX
not PART
taken VERB
any DET
antobiotics NOUN
. PUNCT
> X
Listen VERB
: PUNCT
thrush PROPN
is AUX
a DET
recognized VERB
clinical ADJ
syndrome NOUN
with ADP
definite ADJ
> X
characteristics NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
thrush ADJ
, PUNCT
you PRON
have AUX
thrush ADJ
, PUNCT
because SCONJ
you PRON
can AUX
> X
see VERB
the DET
lesions NOUN
and CCONJ
do AUX
a DET
culture NOUN
and CCONJ
when ADV
you PRON
treat VERB
it PRON
, PUNCT
it PRON
generally ADV
> X
responds VERB
well ADV
, PUNCT
if SCONJ
you PRON
're AUX
not PART
otherwise ADV
immunocompromised VERB
. PUNCT
  SPACE
Noring's PROPN
> X
anal ADJ
- PUNCT
retentive ADJ
idee NOUN
fixe NOUN
on ADP
having VERB
a DET
fungal ADJ
infection NOUN
in ADP
his PRON
sinuses NOUN
> X
is AUX
not PART
even ADV
in ADP
the DET
same ADJ
category NOUN
here ADV
, PUNCT
nor CCONJ
are AUX
these DET
walking VERB
neurasthenics NOUN
> X
who PRON
are AUX
convinced ADJ
they PRON
have AUX
" PUNCT
candida PROPN
" PUNCT
from ADP
reading VERB
a DET
quack NOUN
book NOUN
. PUNCT
Yawn NOUN
... PUNCT
>>My X
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous:>>After PROPN
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased.>>When PROPN
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
> X
> X
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then.>So?Exactly ADV
my PRON
question NOUN
to ADP
you PRON
, PUNCT
Steve PROPN
. PUNCT
What PRON
's AUX
your PRON
point NOUN
? PUNCT
This DET
person NOUN
hadone ADJ
, PUNCT
you PRON
didn't>-- VERB
> X
Steve PROPN
DyerNice PROPN
to PART
see VERB
that SCONJ
some DET
things NOUN
never ADV
change VERB
, PUNCT
Steve PROPN
, PUNCT
if SCONJ
you PRON
are AUX
n't PART
beingignorant ADJ
in ADP
one NUM
group NOUN
[ PUNCT
* PUNCT
.alternative PUNCT
] PUNCT
you PRON
're AUX
into ADP
another DET
. PUNCT
One NUM
positivething NOUN
came VERB
out SCONJ
of ADP
it PRON
, PUNCT
you PRON
are AUX
no ADV
longer ADV
bothering VERB
the DET
folks NOUN
in ADP
* PUNCT
.alternative PUNCT
, PUNCT
it PRON
's AUX
just ADV
a DET
shame NOUN
that PRON
these DET
people NOUN
have AUX
to PART
suffer VERB
sothat ADJ
others NOUN
may AUX
breath VERB
freely ADV
. PUNCT
  SPACE
Sorry ADJ
for ADP
wasting VERB
bandwidth ADJ
folks NOUN
. PUNCT
Do AUX
n't PART
forget VERB
to PART
bow VERB
down ADP
onceevery NOUN
second ADJ
day NOUN
, PUNCT
and CCONJ
to PART
offer VERB
your PRON
first ADJ
born VERB
to ADP
the DET
almight ADV
omniscient NOUN
, PUNCT
omnipotent NOUN
, PUNCT
Mr. PROPN
Steve PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59130From NUM
: PUNCT
dsc@gemini.gsfc.nasa.gov PROPN
( PUNCT
Doug PROPN
S. PROPN
Caprette)Subject NUM
: PUNCT
CS PROPN
chemical NOUN
agentCan PROPN
anyone PRON
provide VERB
information NOUN
on ADP
CS PROPN
chemical NOUN
agent NOUN
-- PUNCT
the DET
tear ADJ
gas NOUN
used VERB
recentlyin NOUN
WACO NOUN
. PUNCT
  SPACE
Just ADV
what PRON
is AUX
it PRON
chemically ADV
, PUNCT
and CCONJ
what PRON
are AUX
its PRON
effects NOUN
on ADP
the DET
body?dsc@gemini.gsfc.nasa.gov PROPN
   SPACE
| PROPN
  SPACE
Regards PROPN
, PUNCT
         SPACE
| PROPN
   SPACE
Hughes PROPN
STX PROPN
                SPACE
| PROPN
    SPACE
Code PROPN
926.9 NUM
GSFC PROPN
        SPACE
| PROPN
| PROPN
  SPACE
Doug PROPN
Caprette PROPN
    SPACE
| CCONJ
   SPACE
Lanham PROPN
, PUNCT
Maryland PROPN
          SPACE
| PROPN
    SPACE
Greenbelt PROPN
, PUNCT
MD PROPN
  SPACE
20771 NUM
   SPACE
| PROPN
-------------------------------------------------------------------------------"A PROPN
path NOUN
is AUX
laid VERB
one NUM
stone NOUN
at ADP
a DET
time NOUN
" PUNCT
-- PUNCT
The DET
GiantNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59131From NUM
: PUNCT
annick@cortex.physiol.su.oz.au NOUN
( PUNCT
Annick PROPN
Ansselin)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?In PROPN
< X
C5nFDG.8En@sdf.lonestar.org PROPN
> X
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco PROPN
) PUNCT
writes:>>>>And VERB
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
that>>the DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
not>>cause PROPN
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
->>extracted PUNCT
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese PROPN
Restaurant>>Syndrome PROPN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it?MSG NUM
is AUX
mono PROPN
sodium PROPN
glutamate PROPN
, PUNCT
a DET
fairly ADV
straight ADJ
forward ADJ
compound NOUN
. PUNCT
If SCONJ
it PRON
ispure VERB
, PUNCT
the DET
source NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
. PUNCT
Your PRON
comment NOUN
suggests VERB
that SCONJ
impurities NOUN
may AUX
be AUX
the DET
cause NOUN
. PUNCT
My PRON
experience NOUN
of ADP
MSG PROPN
effects NOUN
( PUNCT
as SCONJ
part NOUN
of ADP
a DET
double ADJ
blind ADJ
study NOUN
) PUNCT
was AUX
that DET
thepure NOUN
stuff NOUN
caused VERB
me PRON
some DET
rather ADV
severe ADJ
effects.>I NOUN
was AUX
under ADP
the DET
( PUNCT
possibly ADV
incorrect VERB
) PUNCT
assumption NOUN
that SCONJ
most ADJ
of ADP
the DET
MSG NOUN
on ADP
> X
our PRON
foods NOUN
was AUX
made VERB
from ADP
processing VERB
sugar NOUN
beets NOUN
. PUNCT
Is AUX
this DET
not PART
true ADJ
? PUNCT
Are AUX
> X
there ADV
other ADJ
sources NOUN
of ADP
MSG?Soya PROPN
bean NOUN
, PUNCT
fermented VERB
cheeses NOUN
, PUNCT
mushrooms NOUN
all DET
contain VERB
MSG PROPN
. PUNCT
> X
I PRON
am AUX
one NUM
of ADP
those DET
folx NOUN
who PRON
react VERB
, PUNCT
sometimes ADV
strongly ADV
, PUNCT
to ADP
MSG PROPN
. PUNCT
However,>I PROPN
also ADV
react VERB
strongly ADV
to ADP
sodium NOUN
chloride NOUN
( PUNCT
table NOUN
salt NOUN
) PUNCT
in ADP
excess NOUN
. PUNCT
Each DET
> X
causes VERB
different ADJ
symptoms NOUN
except SCONJ
for ADP
the DET
common ADJ
one NUM
of ADP
rapid PROPN
heartbeat PROPN
> X
and CCONJ
an DET
uncomfortable ADJ
feeling NOUN
of ADP
pressure NOUN
in ADP
my PRON
chest NOUN
, PUNCT
upper ADJ
left VERB
quadrant NOUN
. PUNCT
The DET
symptoms NOUN
I PRON
had AUX
were AUX
numbness NOUN
of ADP
jaw NOUN
muscles NOUN
in ADP
the DET
first ADJ
instancefollowed VERB
by ADP
the DET
arms NOUN
then ADV
the DET
legs NOUN
, PUNCT
headache NOUN
, PUNCT
lethargy NOUN
and CCONJ
unable ADJ
to PART
keepawake VERB
. PUNCT
I PRON
think VERB
it PRON
may AUX
well ADV
affect VERB
people NOUN
differently ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59132From NUM
: PUNCT
lmegna@titan.ucs.umass.edu PROPN
( PUNCT
Lisa PROPN
Megna)Subject PROPN
: PUNCT
NeurofibromatosisHello INTJ
, PUNCT
I PRON
am AUX
writing VERB
a DET
grant NOUN
proposal NOUN
for ADP
a DET
Developmental PROPN
Genetics PROPN
class NOUN
and CCONJ
Ihave PROPN
chose VERB
to PART
look VERB
at ADP
the DET
Neurofibromatosis PROPN
1 NUM
gene NOUN
and CCONJ
its PRON
variableexpressivity NOUN
. PUNCT
  SPACE
I PRON
am AUX
curious ADJ
what PRON
has AUX
already ADV
been AUX
done VERB
on ADP
this DET
subject NOUN
, PUNCT
especially ADV
the DET
relationship NOUN
between ADP
specific ADJ
mutations NOUN
and CCONJ
the DET
resultingphenotype NOUN
. PUNCT
  SPACE
My PRON
literature NOUN
search NOUN
has AUX
produce VERB
many ADJ
references NOUN
, PUNCT
but CCONJ
I PRON
want VERB
tomake NOUN
sure ADJ
I PRON
am AUX
proposing VERB
new ADJ
research NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
knows VERB
aything NOUN
that PRON
has AUX
beenrecently ADV
or CCONJ
key ADJ
peopl NOUN
doing VERB
research NOUN
to PART
search VERB
for ADP
using VERB
MEDLINE PROPN
, PUNCT
I PRON
wouldapprciate VERB
being AUX
informed VERB
. PUNCT
Thank VERB
you PRON
. PUNCT
Lisa PROPN
Megnalmegna@titan.ucc.umass.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59133From NUM
: PUNCT
x92lee22@gw.wmich.eduSubject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
annick.735440726@cortex.physiol.su.oz.au NUM
> X
, PUNCT
annick@cortex.physiol.su.oz.au NOUN
( PUNCT
Annick PROPN
Ansselin PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
< X
C5nFDG.8En@sdf.lonestar.org PROPN
> X
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
> X
> X
And CCONJ
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
that>>>the DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
not>>>cause ADP
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
->>>extracted PUNCT
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese ADJ
Restaurant>>>Syndrome NOUN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it PRON
? PUNCT
> X
> X
MSG PROPN
is AUX
mono PROPN
sodium PROPN
glutamate PROPN
, PUNCT
a DET
fairly ADV
straight ADJ
forward ADJ
compound NOUN
. PUNCT
If SCONJ
it PRON
is AUX
> X
pure ADJ
, PUNCT
the DET
source NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
. PUNCT
Your PRON
comment NOUN
suggests VERB
that SCONJ
> PUNCT
impurities NOUN
may AUX
be AUX
the DET
cause NOUN
. PUNCT
> X
My PRON
experience NOUN
of ADP
MSG NOUN
effects NOUN
( PUNCT
as SCONJ
part NOUN
of ADP
a DET
double ADJ
blind ADJ
study NOUN
) PUNCT
was AUX
that SCONJ
the DET
> X
pure ADJ
stuff NOUN
caused VERB
me PRON
some DET
rather ADV
severe ADJ
effects NOUN
. PUNCT
> X
> X
> X
I PRON
was AUX
under ADP
the DET
( PUNCT
possibly ADV
incorrect VERB
) PUNCT
assumption NOUN
that SCONJ
most ADJ
of ADP
the DET
MSG PROPN
on>>our PROPN
foods NOUN
was AUX
made VERB
from ADP
processing VERB
sugar NOUN
beets NOUN
. PUNCT
Is AUX
this DET
not PART
true ADJ
? PUNCT
Are AUX
> X
> X
there ADV
other ADJ
sources NOUN
of ADP
MSG PROPN
? PUNCT
> X
> X
Soya PROPN
bean NOUN
, PUNCT
fermented VERB
cheeses NOUN
, PUNCT
mushrooms NOUN
all DET
contain VERB
MSG PROPN
. PUNCT
> X
> X
> X
I PRON
am AUX
one NUM
of ADP
those DET
folx NOUN
who PRON
react VERB
, PUNCT
sometimes ADV
strongly ADV
, PUNCT
to ADP
MSG PROPN
. PUNCT
However,>>I NOUN
also ADV
react VERB
strongly ADV
to ADP
sodium NOUN
chloride NOUN
( PUNCT
table NOUN
salt NOUN
) PUNCT
in ADP
excess NOUN
. PUNCT
Each>>causes NOUN
different ADJ
symptoms NOUN
except SCONJ
for ADP
the DET
common ADJ
one NUM
of ADP
rapid PROPN
heartbeat>>and PROPN
an DET
uncomfortable ADJ
feeling NOUN
of ADP
pressure NOUN
in ADP
my PRON
chest NOUN
, PUNCT
upper ADJ
left VERB
quadrant PROPN
. PUNCT
> X
> X
The DET
symptoms NOUN
I PRON
had AUX
were AUX
numbness NOUN
of ADP
jaw NOUN
muscles NOUN
in ADP
the DET
first ADJ
instance NOUN
> X
followed VERB
by ADP
the DET
arms NOUN
then ADV
the DET
legs NOUN
, PUNCT
headache NOUN
, PUNCT
lethargy NOUN
and CCONJ
unable ADJ
to PART
keep VERB
> X
awake ADJ
. PUNCT
I PRON
think VERB
it PRON
may AUX
well ADV
affect VERB
people NOUN
differently ADV
. PUNCT
Well INTJ
, PUNCT
I PRON
think VERB
msg NOUN
is AUX
made VERB
from ADP
a DET
kind NOUN
of ADP
plant NOUN
call NOUN
" PUNCT
tapioca ADJ
" PUNCT
and CCONJ
not PART
thosestaff VERB
you PRON
mentiond ADV
above ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59134Subject VERB
: PUNCT
Re ADP
: PUNCT
Broken VERB
ribFrom NOUN
: PUNCT
jc@oneb.almanac.bc.caHello PROPN
, PUNCT
I PRON
think VERB
you PRON
are AUX
probaly ADJ
right NOUN
, PUNCT
in ADP
spite NOUN
of ADP
the DET
movementit NOUN
is AUX
getting VERB
better ADJ
each DET
day NOUN
. PUNCT
  SPACE
cheers NOUN
           SPACE
jc@oneb.almanac.bc.ca PROPN
( PUNCT
John PROPN
Cross PROPN
) PUNCT
     SPACE
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
  SPACE
( PUNCT
Home PROPN
of ADP
The DET
Almanac PROPN
UNIX PROPN
Users PROPN
Group PROPN
) PUNCT
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
    SPACE
< X
Public PROPN
Access PROPN
UseNet PROPN
> X
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
        SPACE
Vancouver PROPN
Island PROPN
, PUNCT
British PROPN
Columbia PROPN
    SPACE
Waffle PROPN
XENIX PROPN
1.64 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59135From NUM
: PUNCT
u96_averba@vaxc.stevens-tech.eduSubject ADJ
: PUNCT
ArythmiaI PROPN
do AUX
n't PART
know VERB
if SCONJ
anyone PRON
knows VERB
about ADP
this DET
topic NOUN
: PUNCT
electrical ADJ
heart NOUN
failure NOUN
. PUNCT
One NUM
of ADP
my PRON
friends NOUN
has AUX
had VERB
to PART
go VERB
to ADP
the DET
doctor NOUN
becausehe PROPN
had AUX
chest NOUN
pains NOUN
. PUNCT
The DET
Doc PROPN
said VERB
it PRON
was AUX
Arythmia PROPN
. PUNCT
So ADV
he PRON
had AUX
togo PROPN
to ADP
a DET
new PROPN
york PROPN
hospital NOUN
for ADP
a DET
lot NOUN
of ADP
money NOUN
to PART
get AUX
treated VERB
. PUNCT
Hisdoctors NOUN
said VERB
that SCONJ
he PRON
could AUX
die VERB
from ADP
it PRON
, PUNCT
and CCONJ
the DET
medication NOUN
causedcancer NOUN
( PUNCT
that SCONJ
he PRON
was AUX
taking VERB
) PUNCT
. PUNCT
Well INTJ
, PUNCT
I PRON
suggested VERB
that SCONJ
he PRON
run VERB
, PUNCT
excersizeand PROPN
eat VERB
more ADJ
, PUNCT
( PUNCT
he PRON
is AUX
very ADV
skinny ADJ
) PUNCT
but CCONJ
he PRON
says VERB
that DET
has AUX
nothingto NOUN
do AUX
with ADP
it PRON
. PUNCT
Does AUX
anyone PRON
know VERB
what PRON
causes VERB
arythmia NOUN
and CCONJ
how ADV
it PRON
can AUX
be AUX
treated VERB
? PUNCT
			 SPACE
Thanks NOUN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59136From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Acutane PROPN
, PUNCT
Fibromyalgia PROPN
Syndrome PROPN
and CCONJ
CFS[reply PROPN
to ADP
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince PROPN
] PUNCT
> X
There PRON
is AUX
a DET
person NOUN
on ADP
the DET
FIDO PROPN
CFS PROPN
echo NOUN
who PRON
claims VERB
that SCONJ
he PRON
was AUX
cured VERB
of ADP
> X
CFS PROPN
by ADP
taking VERB
accutane PROPN
. PUNCT
  SPACE
He PRON
also ADV
claims VERB
that SCONJ
you PRON
are AUX
using VERB
it PRON
in ADP
the DET
> X
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
. PUNCT
  SPACE
Are AUX
you PRON
using VERB
accutane NOUN
in ADP
the DET
> X
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
? PUNCT
Yes INTJ
. PUNCT
> X
Have AUX
you PRON
used VERB
it PRON
for ADP
CFS PROPN
? PUNCT
It PRON
seems VERB
to PART
work VERB
equally ADV
well ADV
for ADP
CFS PROPN
, PUNCT
another DET
hint NOUN
that SCONJ
these DET
may AUX
bedifferent VERB
facets NOUN
of ADP
the DET
same ADJ
underlying ADJ
process NOUN
. PUNCT
> X
Have AUX
you PRON
gotten VERB
good ADJ
results NOUN
with ADP
it PRON
? PUNCT
Yes INTJ
. PUNCT
  SPACE
The DET
benefit NOUN
is AUX
usually ADV
evident ADJ
within ADP
a DET
few ADJ
days NOUN
of ADP
starting VERB
it PRON
. PUNCT
Most ADJ
of ADP
the DET
patients NOUN
for ADP
whom PRON
it PRON
has AUX
worked VERB
well ADV
continued VERB
low ADJ
- PUNCT
doseamitriptyline NOUN
, PUNCT
daily ADJ
aerobic ADJ
excersise NOUN
, PUNCT
and CCONJ
a DET
regular ADJ
sleep NOUN
schedule(current NOUN
standard ADJ
therapy NOUN
) PUNCT
. PUNCT
  SPACE
Because SCONJ
of ADP
the DET
cost NOUN
( PUNCT
usually ADV
> X
$ SYM
150 NUM
/ SYM
mo PROPN
. PROPN
,depending VERB
on ADP
dose PROPN
) PUNCT
and CCONJ
potential NOUN
for ADP
significant ADJ
side NOUN
effects NOUN
likecorneal VERB
injury NOUN
and CCONJ
birth NOUN
defects NOUN
, PUNCT
I PRON
currently ADV
reserve VERB
it PRON
for ADP
those DET
whofail NOUN
conventional ADJ
treatment NOUN
. PUNCT
  SPACE
It PRON
is AUX
important ADJ
that SCONJ
the DET
personprescribing NOUN
it PRON
have AUX
some DET
experience NOUN
with ADP
it PRON
and CCONJ
follow VERB
the DET
patientclosely NOUN
. PUNCT
> X
Are AUX
you PRON
aware ADJ
of ADP
any DET
double ADJ
blind ADJ
studies NOUN
on ADP
the DET
use NOUN
of ADP
accutane NOUN
in ADP
> X
these DET
conditions NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
. PUNCT
As ADV
far ADV
as SCONJ
I PRON
know VERB
, PUNCT
I PRON
am AUX
the DET
only ADJ
person NOUN
looking VERB
at ADP
it PRON
currently ADV
. PUNCT
  SPACE
Ishould PROPN
get AUX
off ADP
my PRON
duff NOUN
and CCONJ
finish VERB
writing VERB
up ADP
some DET
case NOUN
reports VERB
. PUNCT
  SPACE
I PRON
'm AUX
notan PROPN
academic ADJ
physician NOUN
, PUNCT
so CCONJ
I PRON
do AUX
n't PART
feel VERB
the DET
pressure NOUN
to PART
publish VERB
or CCONJ
perishand VERB
I PRON
do AUX
n't PART
have AUX
the DET
time NOUN
during ADP
the DET
work NOUN
day NOUN
for ADP
such ADJ
things NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59137From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)[reply NOUN
to ADP
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge PROPN
) PUNCT
] PUNCT
> X
Medicine PROPN
is AUX
not PART
a DET
totally ADV
scientific ADJ
endevour NOUN
. PUNCT
The DET
acquisition NOUN
of ADP
scientific ADJ
knowledge NOUN
is AUX
completely ADV
scientific ADJ
. PUNCT
  SPACE
Theapplication PROPN
of ADP
that DET
knowledge NOUN
in ADP
individual ADJ
cases NOUN
may AUX
be AUX
more ADJ
art NOUN
thanscience NOUN
. PUNCT
> X
There PRON
are AUX
diseases NOUN
that PRON
have AUX
n't PART
been AUX
described VERB
yet ADV
and CCONJ
the DET
root NOUN
cause SCONJ
> X
of ADP
many ADJ
diseases NOUN
now ADV
described VERB
are AUX
n't PART
known VERB
. PUNCT
( PUNCT
Read VERB
a DET
book NOUN
on ADP
> X
gastroenterology PROPN
sometime ADV
if SCONJ
you PRON
want VERB
to PART
see VERB
a DET
lot NOUN
of ADP
them PRON
. PUNCT
) PUNCT
After ADP
> X
scientific ADJ
methods NOUN
have AUX
run VERB
out ADV
then ADV
it PRON
's AUX
the DET
patient NOUN
's PART
freedom NOUN
of ADP
> PROPN
choice NOUN
to PART
try VERB
any DET
experimental ADJ
method NOUN
they PRON
choose VERB
. PUNCT
And CCONJ
it PRON
's AUX
well ADV
> X
recognized VERB
by ADP
many ADJ
doctors NOUN
that PRON
medicine NOUN
does AUX
n't PART
have AUX
all DET
the DET
answers NOUN
. PUNCT
Certainly ADV
we PRON
do AUX
n't PART
have AUX
all DET
the DET
answers NOUN
. PUNCT
  SPACE
The DET
question NOUN
is AUX
, PUNCT
what PRON
is AUX
themost ADJ
reliable ADJ
means NOUN
of ADP
acquiring VERB
further ADJ
medical ADJ
knowledge NOUN
? PUNCT
  SPACE
Thescientific PROPN
method NOUN
has AUX
proven VERB
itself PRON
to PART
be AUX
reliable ADJ
. PUNCT
  SPACE
The DET
* PUNCT
only ADV
* PUNCT
reasonalternative ADJ
therapies NOUN
are AUX
shunned VERB
by ADP
physicians NOUN
is AUX
that SCONJ
theirpractitioners NOUN
refuse VERB
to PART
submit VERB
their PRON
theories NOUN
to ADP
rigorous ADJ
scientificscrutiny NOUN
, PUNCT
insisting VERB
that SCONJ
" PUNCT
tradition NOUN
" PUNCT
or CCONJ
anecdotal ADJ
evidence NOUN
aresufficient NOUN
. PUNCT
  SPACE
These DET
have AUX
been AUX
shown VERB
many ADJ
times NOUN
in ADP
the DET
past NOUN
to PART
be AUX
veryunreliable ADJ
ways NOUN
of ADP
acquiring VERB
reliable ADJ
knowledge NOUN
. PUNCT
  SPACE
Crook PROPN
's PART
ideas NOUN
havenever NOUN
been AUX
backed VERB
up ADP
by ADP
scientific ADJ
evidence NOUN
. PUNCT
  SPACE
His PRON
unwillingness NOUN
to ADP
dogood NOUN
science NOUN
makes VERB
the DET
rest NOUN
of ADP
us PRON
doubt VERB
the DET
veracity NOUN
of ADP
his PRON
contentions NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59138From NUM
: PUNCT
des@helix.nih.gov PROPN
( PUNCT
David PROPN
E. PROPN
Scheim)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"In NOUN
article NOUN
< X
jschwimmer.123.735362184@wccnet.wcc.wesleyan.edu PROPN
> X
jschwimmer@wccnet.wcc.wesleyan.edu NOUN
( PUNCT
Josh PROPN
Schwimmer PROPN
) PUNCT
writes:>I've NOUN
recently ADV
listened VERB
to ADP
a DET
tape NOUN
by ADP
Dr. PROPN
Stanislaw PROPN
Burzynski PROPN
, PUNCT
in ADP
which PRON
he PRON
> X
claims VERB
to PART
have AUX
discovered VERB
a DET
series NOUN
naturally ADV
occuring VERB
peptides NOUN
with ADP
anti->cancer PROPN
properties NOUN
that SCONJ
he PRON
names VERB
antineoplastons NOUN
. PUNCT
  SPACE
Burzynski PROPN
says VERB
that SCONJ
his PRON
> X
work NOUN
has AUX
met VERB
with ADP
hostility NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
despite SCONJ
the DET
favorable ADJ
> X
responses NOUN
of ADP
his PRON
subjects NOUN
during ADP
clinical ADJ
trials.>What PROPN
is AUX
the DET
generally ADV
accepted VERB
opinion NOUN
of ADP
Dr. PROPN
Burzynski PROPN
's PART
research NOUN
? PUNCT
  SPACE
He PRON
> X
paints VERB
himself PRON
as SCONJ
a DET
lone ADJ
researcher NOUN
with ADP
a DET
new ADJ
breakthrough NOUN
battling VERB
an DET
> X
intolerant ADJ
medical ADJ
establishment NOUN
, PUNCT
but CCONJ
I PRON
have AUX
no DET
basis NOUN
from ADP
which PRON
to PART
judge VERB
> X
his PRON
claims NOUN
. PUNCT
  SPACE
Two NUM
weeks NOUN
ago ADV
, PUNCT
however ADV
, PUNCT
I PRON
read VERB
that SCONJ
the DET
NIH PROPN
's PART
Department PROPN
of ADP
> PROPN
Alternative PROPN
Medicine PROPN
has AUX
decided VERB
to PART
focus VERB
their PRON
attention NOUN
on ADP
Burzynski PROPN
's PART
> X
work NOUN
. PUNCT
  SPACE
Their PRON
budget NOUN
is AUX
so ADV
small ADJ
that SCONJ
I PRON
imagine VERB
they PRON
would AUX
n't PART
investigate VERB
a DET
> X
treatment NOUN
that PRON
did AUX
n't PART
seem VERB
promising.>Any NOUN
opinions NOUN
on ADP
Burzynski PROPN
's PART
antineoplastons NOUN
or CCONJ
information NOUN
about ADP
the DET
current ADJ
> X
status NOUN
of ADP
his PRON
research NOUN
would AUX
be AUX
appreciated.>-->Joshua PROPN
Schwimmer>jschwimmer@eagle.wesleyan.eduThere's PROPN
been AUX
extensive ADJ
discussion NOUN
on ADP
the DET
CompuServe PROPN
Cancer PROPN
Forum PROPN
about ADP
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
as SCONJ
a DET
result NOUN
of ADP
the DET
decision NOUN
of ADP
a DET
forum NOUN
member NOUN
's PART
father NOUN
to PART
undertake VERB
his PRON
treatment NOUN
for ADP
brain NOUN
glioblastoma PROPN
. PUNCT
  SPACE
This DET
disease NOUN
is AUX
universally ADV
and CCONJ
usually ADV
rapidly ADV
fatal ADJ
. PUNCT
  SPACE
After ADP
diagnosis NOUN
in ADP
June PROPN
1992 NUM
, PUNCT
the DET
tumor NOUN
was AUX
growing VERB
rapidly ADV
despite SCONJ
radiation NOUN
and CCONJ
chemotherapy NOUN
. PUNCT
  SPACE
The DET
forum NOUN
member NOUN
checked VERB
extensively ADV
on ADP
Dr. PROPN
Burzynki PROPN
's PART
track NOUN
record NOUN
for ADP
this DET
disease NOUN
. PUNCT
  SPACE
He PRON
spoke VERB
to ADP
a DET
few ADJ
patients NOUN
in ADP
complete ADJ
remission NOUN
for ADP
a DET
few ADJ
years NOUN
from ADP
glioblastoma PROPN
following VERB
this DET
treatment NOUN
and CCONJ
to ADP
an DET
NCI PROPN
oncologist NOUN
who PRON
had AUX
audited VERB
other ADJ
such ADJ
case NOUN
histories NOUN
and CCONJ
found VERB
them PRON
valid ADJ
and CCONJ
impressive ADJ
. PUNCT
  SPACE
After ADP
the DET
forum NOUN
member NOUN
's PART
father NOUN
began VERB
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
in ADP
September PROPN
, PUNCT
all DET
subsequent ADJ
scans NOUN
performed VERB
under ADP
the DET
auspices NOUN
of ADP
his PRON
oncologist NOUN
in ADP
Chicago PROPN
have AUX
shown VERB
no DET
tumor NOUN
growth NOUN
with ADP
possible ADJ
signs NOUN
of ADP
shrinkage NOUN
or CCONJ
necrosis NOUN
. PUNCT
The DET
patient NOUN
's PART
oncologist NOUN
, PUNCT
although SCONJ
telling VERB
him PRON
he PRON
would AUX
probably ADV
not PART
live VERB
past ADP
December PROPN
1992 NUM
, PUNCT
was AUX
vehemently ADV
opposed VERB
to ADP
his PRON
trying VERB
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
. PUNCT
  SPACE
Since SCONJ
the DET
tumor NOUN
stopped VERB
its PRON
rapid ADJ
growth NOUN
under ADP
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
, PUNCT
she PRON
's AUX
since SCONJ
changed VERB
her PRON
attitude NOUN
toward ADP
continuing VERB
these DET
treatments NOUN
, PUNCT
saying VERB
" PUNCT
if SCONJ
it PRON
ai VERB
n't PART
broke VERB
, PUNCT
do AUX
n't PART
fix VERB
it PRON
. PUNCT
"Dr PUNCT
. PUNCT
Burzynski PROPN
is AUX
an DET
M.D. PROPN
, PUNCT
Ph.D. NOUN
with ADP
a DET
research NOUN
background NOUN
who PRON
found VERB
a DET
protein NOUN
that PRON
is AUX
at ADP
very ADV
low ADJ
serum ADJ
levels NOUN
in ADP
cancer NOUN
patients NOUN
, PUNCT
synthesized VERB
it PRON
, PUNCT
and CCONJ
administers VERB
it PRON
to ADP
patients NOUN
with ADP
certain ADJ
cancer NOUN
types NOUN
. PUNCT
  SPACE
There PRON
is AUX
little ADJ
understanding NOUN
of ADP
the DET
actual ADJ
mechanism NOUN
of ADP
activity./*********************************************************************// PROPN
* PUNCT
                      SPACE
--- PUNCT
David PROPN
E. PROPN
Scheim PROPN
--- PUNCT
                      SPACE
* PUNCT
// SYM
* PUNCT
BITNET NOUN
: PUNCT
none NOUN
                                                      SPACE
* PUNCT
// SYM
* PUNCT
INTERNET NOUN
: PUNCT
desl@helix.nih.gov VERB
          SPACE
PHONE NOUN
: PUNCT
301 NUM
496 NUM
- SYM
2194 NUM
         SPACE
* PUNCT
// SYM
* PUNCT
CompuServe NOUN
: PUNCT
73750,3305 NUM
                  SPACE
FAX PROPN
: PUNCT
301 NUM
402 NUM
- SYM
1065 NUM
         SPACE
* PUNCT
// SYM
* PUNCT
                                                                   SPACE
* PUNCT
// SYM
* PUNCT
DISCLAIMER NOUN
: PUNCT
These DET
comments NOUN
are AUX
offered VERB
to PART
share VERB
knowledge NOUN
based VERB
   SPACE
* PUNCT
// SYM
* PUNCT
   SPACE
upon SCONJ
my PRON
personal ADJ
views NOUN
. PUNCT
  SPACE
They PRON
do AUX
not PART
represent VERB
the DET
positions NOUN
    SPACE
* PUNCT
// SYM
* PUNCT
   SPACE
of ADP
my PRON
employer NOUN
. PUNCT
                                                 SPACE
* PUNCT
//*********************************************************************/Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59139From NUM
: PUNCT
cerulean@access.digex.com X
( PUNCT
Bill PROPN
Christens PROPN
- PUNCT
Barry)Subject PROPN
: PUNCT
cytoskeleton PROPN
dynamicsI'm PROPN
looking VERB
for ADP
good ADJ
background NOUN
and CCONJ
review VERB
paper NOUN
references NOUN
that PRON
can AUX
help VERB
meunderstand VERB
the DET
dynamics NOUN
of ADP
cytoskeleton PROPN
in ADP
normal ADJ
and CCONJ
transformed VERB
cells NOUN
. PUNCT
  SPACE
Inparticular PROPN
, PUNCT
I PRON
'm AUX
not PART
interested ADJ
in ADP
translational ADJ
behavior NOUN
and CCONJ
cell NOUN
motility NOUN
, PUNCT
but CCONJ
rather ADV
in ADP
the DET
internal ADJ
motions NOUN
of ADP
the DET
cytoskeleton NOUN
and CCONJ
its PRON
componentsunder NOUN
normal ADJ
and CCONJ
transformed VERB
circumstances NOUN
. PUNCT
Also ADV
, PUNCT
I PRON
'd AUX
appreciate VERB
any DET
data NOUN
on ADP
force NOUN
constants NOUN
, PUNCT
mechanical ADJ
, PUNCT
and CCONJ
elasticproperties NOUN
of ADP
microtubules NOUN
, PUNCT
and CCONJ
viscous ADJ
properties NOUN
of ADP
cytoplasm NOUN
. PUNCT
  SPACE
Any DET
otherinfo NOUN
relevant ADJ
to ADP
the DET
vibrational ADJ
or CCONJ
acoustical ADJ
properties NOUN
of ADP
these DET
wouldbe NOUN
useful ADJ
to ADP
me PRON
. PUNCT
Thanks NOUN
... PUNCT
Bill PROPN
Christens-Barrycerulean@access.digex.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59140From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboL PROPN
( PUNCT
> X
  SPACE
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin PROPN
) PUNCT
writes VERB
: PUNCT
L NOUN
( PUNCT
> X
  SPACE
John PROPN
Badanes PROPN
wrote VERB
: PUNCT
L NOUN
( PUNCT
> X
  SPACE
|JB NOUN
> PROPN
  SPACE
1 NUM
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
L NOUN
( PUNCT
> X
  SPACE
L PROPN
( PUNCT
> X
  SPACE
| ADP
  SPACE
I PRON
'm AUX
glad ADJ
it PRON
caught VERB
your PRON
eye NOUN
. PUNCT
That DET
's AUX
the DET
purpose NOUN
of ADP
this DET
forum NOUN
toL NOUN
( PUNCT
> X
  SPACE
| ADV
educate VERB
those DET
, PUNCT
eager ADJ
to PART
learn VERB
, PUNCT
about ADP
the DET
facts NOUN
of ADP
life NOUN
. PUNCT
That DET
phraseL PROPN
( PUNCT
> X
  SPACE
| PROPN
is AUX
used VERB
to PART
bridle VERB
the DET
frenzy NOUN
of ADP
all DET
the DET
would AUX
- PUNCT
be AUX
respondents NOUN
, PUNCT
whoL PROPN
( PUNCT
> X
  SPACE
| ADV
otherwise ADV
would AUX
feel VERB
being AUX
left VERB
out ADP
as SCONJ
the DET
proper ADJ
authorities NOUN
to PART
beL VERB
( PUNCT
> X
  SPACE
| PROPN
consulted VERB
on ADP
that DET
topic NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
means VERB
absolutely ADV
nothing PRON
. PUNCT
L NOUN
( PUNCT
> X
  SPACE
L PROPN
( PUNCT
> X
  SPACE
An DET
apt ADJ
description NOUN
of ADP
the DET
content NOUN
of ADP
just ADV
about ADP
all DET
Ron PROPN
Roth PROPN
's PART
L PROPN
( PUNCT
> X
  SPACE
posts NOUN
to ADP
date NOUN
. PUNCT
  SPACE
At ADP
least ADV
there PRON
's AUX
entertainment NOUN
value NOUN
( PUNCT
though SCONJ
it PRON
L PROPN
( PUNCT
> X
  SPACE
is AUX
diminishing VERB
) PUNCT
. PUNCT
     SPACE
Well INTJ
, PUNCT
that DET
's AUX
easy ADJ
for ADP
* PUNCT
YOU PRON
* PUNCT
to PART
say VERB
. PUNCT
  SPACE
All DET
* PUNCT
YOU PRON
* PUNCT
have AUX
to PART
do AUX
is AUX
sit VERB
      SPACE
back ADV
, PUNCT
soak VERB
it PRON
all DET
in ADV
, PUNCT
try VERB
it PRON
out ADP
on ADP
your PRON
patients NOUN
, PUNCT
and CCONJ
then ADV
brag VERB
     SPACE
to ADP
all DET
your PRON
colleagues NOUN
about ADP
that DET
incredibly ADV
success ADJ
rate NOUN
you PRON
're AUX
     SPACE
having VERB
all DET
of ADV
a ADV
sudden ADJ
... PUNCT
     SPACE
--Ron----- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
For ADP
real ADJ
sponge NOUN
cake NOUN
, PUNCT
borrow VERB
all DET
ingredients NOUN
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59141From NUM
: PUNCT
sheryl@seas.gwu.edu PROPN
( PUNCT
Sheryl PROPN
Coppenger)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr21.024103.29880@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr20.212706.820@lrc.edu NUM
> X
kjiv@lrc.edu NUM
writes:>>Can ADP
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
> X
> X
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
> X
> X
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to ADP
> X
> X
prevent PROPN
asthma PROPN
) PUNCT
; PUNCT
Vancenase.>>Hismanal PROPN
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to ADP
weight NOUN
gain.>It PROPN
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect,>and PROPN
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedly ADV
> X
doesn't ADV
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to PART
cause VERB
> X
drowsiness.>So NUM
antihistamines NOUN
can AUX
cause VERB
weight NOUN
gain NOUN
. PUNCT
  SPACE
NOW ADV
they PRON
tell VERB
me PRON
. PUNCT
: PUNCT
-)Is PUNCT
there PRON
any DET
way NOUN
to PART
find VERB
out ADP
which PRON
do AUX
& CCONJ
which PRON
do AUX
n't PART
? PUNCT
  SPACE
My PRON
doctorobviously ADV
is AUX
asleep ADJ
at ADP
the DET
wheel NOUN
. PUNCT
The DET
original ADJ
poster NOUN
mentioned VERB
fatigue NOUN
. PUNCT
  SPACE
I PRON
had AUX
that DET
too ADV
, PUNCT
but CCONJ
it PRON
wasmostly ADV
due ADP
to ADP
the DET
really ADV
bizarre ADJ
dreams NOUN
I PRON
was AUX
having VERB
-- PUNCT
I PRON
was AUX
n't PART
gettingany ADJ
rest NOUN
. PUNCT
  SPACE
My PRON
doctor NOUN
said VERB
that DET
was AUX
a DET
common ADJ
reaction NOUN
. PUNCT
  SPACE
If SCONJ
astemizoledoesn't PROPN
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
, PUNCT
how ADV
does AUX
it PRON
cause VERB
that DET
sideeffect NOUN
? PUNCT
  SPACE
Any DET
ideas?-- PROPN
Sheryl PROPN
Coppenger PROPN
    SPACE
SEAS VERB
Computing PROPN
Facility PROPN
Staff PROPN
	 SPACE
sheryl@seas.gwu.edu PROPN
		     SPACE
The DET
George PROPN
Washington PROPN
University PROPN
	 SPACE
( PUNCT
202 NUM
) PUNCT
994 NUM
- SYM
6853 NUM
          SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59142From NUM
: PUNCT
bruce@Data PROPN
- PUNCT
IO.COM PROPN
( PUNCT
Bruce PROPN
Reynolds)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?smjeff@lerc05.lerc.nasa.gov PROPN
( PUNCT
Jeff PROPN
Miller PROPN
) PUNCT
writes:>Even VERB
properly ADV
controlled VERB
studies NOUN
( PUNCT
e.g. ADV
double ADJ
blind ADJ
studies NOUN
) PUNCT
are AUX
almost ADV
> X
useless ADJ
if SCONJ
you PRON
are AUX
trying VERB
to PART
prove VERB
that SCONJ
something PRON
does AUX
not PART
affect VERB
anyone.-- ADP
and CCONJ
-->In X
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>The PROPN
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of ADP
> X
a DET
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving VERB
> X
the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the DET
> X
most ADV
likely ADJ
explanation NOUN
for ADP
events.>Good PROPN
grief NOUN
; PUNCT
has AUX
no DET
one NOUN
ever ADV
heard VERB
of ADP
Biostatistics NOUN
? PUNCT
? PUNCT
  SPACE
The DET
University PROPN
ofWashington PROPN
( PUNCT
plus CCONJ
3 NUM
or CCONJ
4 NUM
others NOUN
[ PUNCT
Harvard PROPN
, PUNCT
UNC PROPN
] PUNCT
) PUNCT
has AUX
a DET
department NOUN
andadvanced VERB
degree NOUN
program NOUN
in ADP
Biostatistics NOUN
. PUNCT
  SPACE
My PRON
wife NOUN
has AUX
an DET
MS PROPN
Biostat PROPN
, PUNCT
andthere NOUN
are AUX
plenty ADJ
of ADP
MDs NOUN
, PUNCT
PhDs PROPN
, PUNCT
and CCONJ
postdocs ADV
doing VERB
Biostatistical ADJ
work NOUN
. PUNCT
People NOUN
do AUX
this DET
for ADP
a DET
living NOUN
. PUNCT
  SPACE
Really ADV
bright ADJ
people NOUN
study VERB
for ADP
decades NOUN
to ADP
dothis DET
sort NOUN
of ADP
study NOUN
well ADV
. PUNCT
Anecedotal ADJ
evidence NOUN
is AUX
worthless ADJ
. PUNCT
  SPACE
Even ADV
doctors NOUN
who PRON
have AUX
been AUX
using VERB
a DET
drugor NOUN
treatment NOUN
for ADP
years NOUN
, PUNCT
and CCONJ
who PRON
swear VERB
it PRON
is AUX
effective ADJ
, PUNCT
are AUX
often ADV
suprisedat ADJ
the DET
results NOUN
of ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
MSG PROPN
causes NOUN
describable ADJ
, PUNCT
reportable ADJ
, PUNCT
documentable ADJ
symptoms NOUN
should AUX
be AUX
pretty ADV
simple ADJ
to PART
discover VERB
. PUNCT
  SPACE
The DET
last ADJ
study NOUN
on ADP
which PRON
my PRON
wife NOUN
worked VERB
employed VERB
200 NUM
nurses NOUN
, PUNCT
100 NUM
doctors NOUN
, PUNCT
and CCONJ
a DET
dozen NOUN
Ph PROPN
. PUNCT
Ds PROPN
at ADP
one NUM
University PROPN
and CCONJ
at ADP
70 NUM
hospitals NOUN
in ADP
five NUM
nations NOUN
. PUNCT
  SPACE
Iwould AUX
think VERB
the DET
MSG PROPN
question NOUN
could AUX
be AUX
settled VERB
by ADP
one NUM
lowly ADJ
Biostat PROPN
MSstudent PROPN
in ADP
a DET
thesis.--bruceNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59143From NUM
: PUNCT
stgprao@st.unocal.COM PROPN
( PUNCT
Richard PROPN
Ottolini)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyLiving PROPN
things NOUN
maintain VERB
small ADJ
electric ADJ
fields NOUN
to ADP
( PUNCT
1 X
) PUNCT
enhance VERB
certainchemical ADJ
reactions NOUN
, PUNCT
( PUNCT
2 X
) PUNCT
promote VERB
communication NOUN
of ADP
states NOUN
with ADP
in ADP
a DET
cell,(3 NOUN
) PUNCT
communicate NOUN
between ADP
cells NOUN
( PUNCT
of ADP
which PRON
the DET
nervous ADJ
system NOUN
is AUX
a DET
specializedexample NOUN
) PUNCT
, PUNCT
and CCONJ
perhaps ADV
other ADJ
uses NOUN
. PUNCT
  SPACE
These DET
electric ADJ
fields NOUN
change VERB
with ADP
locationand NOUN
time NOUN
in ADP
a DET
large ADJ
organism NOUN
. PUNCT
  SPACE
Special ADJ
photographic ADJ
techniques NOUN
such ADJ
as SCONJ
applyingexternal ADJ
fields NOUN
in ADP
Kirillian ADJ
photography NOUN
interact VERB
with ADP
these DET
fields NOUN
or CCONJ
the DET
resistancescaused VERB
by ADP
these DET
fields NOUN
to PART
make VERB
interesting ADJ
pictures NOUN
. PUNCT
Perhaps ADV
such ADJ
pictures NOUN
willbe PROPN
diagonistic PROPN
of ADP
disease NOUN
problems NOUN
in ADP
organisms NOUN
when ADV
better ADV
understood VERB
. PUNCT
Perhaps ADV
not PART
. PUNCT
Studying VERB
the DET
overall ADJ
electric ADJ
activity NOUN
of ADP
biological ADJ
systems NOUN
is AUX
several ADJ
hundredyears NOUN
old ADJ
, PUNCT
but CCONJ
not PART
a DET
popular ADJ
activity NOUN
. PUNCT
  SPACE
Perhaps ADV
, PUNCT
except SCONJ
in ADP
the DET
case NOUN
of ADP
a DET
fewtissues NOUN
like SCONJ
nerves NOUN
and CCONJ
the DET
electric ADJ
senses NOUN
of ADP
fishes NOUN
, PUNCT
it PRON
is AUX
hard ADJ
to PART
reduce VERB
theinvestigation NOUN
into ADP
small ADJ
pieces NOUN
that PRON
can AUX
be AUX
clearly ADV
analyzed VERB
. PUNCT
  SPACE
There PRON
are AUX
somehints NOUN
that SCONJ
manipulating VERB
electric ADJ
fields NOUN
is AUX
a DET
useful ADJ
therapy NOUN
such ADJ
as SCONJ
speedingthe NOUN
healing NOUN
of ADP
broken VERB
bones NOUN
, PUNCT
but CCONJ
not PART
understood VERB
why ADV
. PUNCT
Bioelectricity NOUN
has AUX
a DET
long ADJ
association NOUN
with ADP
mysticism NOUN
. PUNCT
Ideas NOUN
such ADJ
as SCONJ
Frankensteinreanimation PROPN
go VERB
back ADV
to ADP
the DET
most ADV
early ADJ
electrical ADJ
experiments NOUN
on ADP
tissue NOUN
such ADJ
aswhen NOUN
Volta PROPN
invented VERB
the DET
battery NOUN
. PUNCT
  SPACE
I PRON
personally ADV
do AUX
n't PART
care VERB
to PART
revert VERB
to PART
supernaturalcause VERB
to PART
explain VERB
things NOUN
we PRON
do AUX
n't PART
yet ADV
understand VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59144From NUM
: PUNCT
Tammy.Vandenboom@launchpad.unc.edu NUM
( PUNCT
Tammy PROPN
Vandenboom)Subject NOUN
: PUNCT
sore ADJ
spot NOUN
on ADP
testiclesMy PROPN
husband NOUN
woke VERB
up ADP
three NUM
days NOUN
ago ADV
with ADP
a DET
small ADJ
sore ADJ
spot(a PROPN
spot NOUN
about ADP
the DET
size NOUN
of ADP
a DET
nickel NOUN
) PUNCT
on ADP
one NUM
of ADP
his PRON
testicles NOUN
. PUNCT
Bottom ADJ
side NOUN
, PUNCT
no DET
knots NOUN
or CCONJ
lumps NOUN
, PUNCT
just ADV
a DET
little ADJ
sore ADJ
spot NOUN
. PUNCT
  SPACE
He PRON
says VERB
it PRON
reminds VERB
him PRON
of ADP
how ADV
a DET
bruise NOUN
feels VERB
. PUNCT
  SPACE
He PRON
has AUX
no DET
recollection NOUN
of ADP
hitting VERB
it PRON
or CCONJ
anything PRON
likethat PRON
that PRON
would AUX
cause VERB
a DET
bruise NOUN
. PUNCT
( PUNCT
He PRON
asssures VERB
me PRON
he PRON
'd AUX
remember VERB
somethinglike NOUN
that SCONJ
:-) PUNCT
Any DET
clues NOUN
as SCONJ
to ADP
what PRON
it PRON
might AUX
be AUX
? PUNCT
  SPACE
He PRON
's AUX
somewhat ADV
of ADP
a DET
hypochondriac NOUN
( PUNCT
sp?)so NOUN
he PRON
's AUX
sure ADJ
he PRON
's AUX
gon VERB
na PART
die VERB
. PUNCT
. PUNCT
.Thanks!!-- PUNCT
   SPACE
The DET
opinions NOUN
expressed VERB
are AUX
not PART
necessarily ADV
those DET
of ADP
the DET
University PROPN
of ADP
     SPACE
North PROPN
Carolina PROPN
at ADP
Chapel PROPN
Hill PROPN
, PUNCT
the DET
Campus PROPN
Office PROPN
for ADP
Information PROPN
        SPACE
Technology PROPN
, PUNCT
or CCONJ
the DET
Experimental PROPN
Bulletin PROPN
Board PROPN
Service PROPN
. PUNCT
           SPACE
internet NOUN
: PUNCT
  SPACE
laUNChpad.unc.edu PROPN
or CCONJ
152.2.22.80Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59145From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Thrush PROPN
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
21APR199308571323@ucsvax.sdsu.edu X
> X
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M. PROPN
) PUNCT
writes:>My PROPN
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous:>After PROPN
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased.>When ADV
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
> X
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then ADV
. PUNCT
This DET
is AUX
the DET
second ADJ
post NOUN
which PRON
seems VERB
to PART
be AUX
blurring VERB
the DET
distinctionbetween PROPN
real ADJ
disease NOUN
caused VERB
by ADP
Candida PROPN
albicans NOUN
and CCONJ
the DET
" PUNCT
disease"that PRON
was AUX
being AUX
asked VERB
about ADP
, PUNCT
systemic ADJ
yeast NOUN
syndrome NOUN
. PUNCT
There PRON
is AUX
no DET
question NOUN
that SCONJ
Candida PROPN
albicans PROPN
causes VERB
thrush ADJ
. PUNCT
  SPACE
It PRON
alsoseems VERB
to PART
be AUX
the DET
case NOUN
that SCONJ
active ADJ
yogurt PROPN
cultures NOUN
with ADP
acidophilousmay ADJ
reduce VERB
recurrences NOUN
of ADP
thrush NOUN
at ADP
least ADJ
for ADP
vaginal ADJ
thrush NOUN
-- PUNCT
I PRON
've AUX
never ADV
heard VERB
of ADP
anyone PRON
taking VERB
it PRON
for ADP
oral ADJ
thrush NOUN
before ADV
( PUNCT
though SCONJ
presumably ADV
it PRON
would AUX
work VERB
by ADP
the DET
same ADJ
mechanism).Candida PROPN
is AUX
clearly ADV
a DET
common ADJ
minor ADJ
pathogen NOUN
and CCONJ
a DET
less ADV
common ADJ
majorpathogen NOUN
. PUNCT
  SPACE
That DET
does AUX
not PART
mean VERB
that SCONJ
there PRON
is AUX
evidence NOUN
that SCONJ
it PRON
causesthe VERB
" PUNCT
systemic ADJ
yeast NOUN
syndrome".-- PUNCT
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59146From NUM
: PUNCT
jacquier@gsbux1.uchicago.edu PROPN
( PUNCT
Eric PROPN
Jacquier PROPN
) PUNCT
Subject NOUN
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?Hello NOUN
, PUNCT
I PRON
am AUX
interested ADJ
in ADP
trying VERB
this DET
" PUNCT
desensitization NOUN
" PUNCT
( PUNCT
? PUNCT
) PUNCT
methodagainst ADP
hay PROPN
fever NOUN
. PUNCT
What PRON
is AUX
the DET
state NOUN
of ADP
affairs NOUN
about ADP
this DET
. PUNCT
I PRON
went VERB
to ADP
a DET
doctor NOUN
andpaid VERB
$ SYM
85 NUM
for ADP
a DET
10 NUM
minute NOUN
interview NOUN
+ CCONJ
3 NUM
scratches NOUN
, PUNCT
leading VERB
to ADP
thediagnostic ADJ
that SCONJ
I PRON
am AUX
allergic ADJ
to ADP
( PUNCT
June PROPN
and CCONJ
Timothy PROPN
) PUNCT
grass NOUN
. PUNCT
I PRON
believe VERB
this DET
. PUNCT
From ADP
now ADV
on ADP
it PRON
looks VERB
like SCONJ
2 NUM
shots NOUN
per ADP
week NOUN
for6 NOUN
months NOUN
followed VERB
by ADP
1 NUM
shot NOUN
per ADP
month NOUN
or CCONJ
so ADV
. PUNCT
Each DET
shot NOUN
costs$20 NOUN
. PUNCT
Talking VERB
about ADP
soaring VERB
costs NOUN
and CCONJ
the DET
Health PROPN
care NOUN
system NOUN
, PUNCT
I PRON
wouldcall VERB
that SCONJ
a DET
racket NOUN
. PUNCT
We PRON
are AUX
not PART
talking VERB
about ADP
rare ADJ
Amazonian PROPN
grasseshere NOUN
, PUNCT
but CCONJ
the DET
garbage NOUN
which PRON
grows VERB
behind ADP
the DET
doctor NOUN
's PART
office NOUN
. PUNCT
Apart ADV
from ADP
this DET
issue NOUN
, PUNCT
I PRON
was AUX
somewhat ADV
disappointed ADJ
to PART
find VERB
outthat ADP
you PRON
have AUX
to PART
keep VERB
getting VERB
the DET
shots NOUN
forever ADV
. PUNCT
Is AUX
that SCONJ
right?Thanks NOUN
for ADP
information NOUN
. PUNCT
Ej INTJ
   SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59147From NUM
: PUNCT
williamt@athena NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
William PROPN
Turnbow)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Discussions NOUN
on ADP
alt.psychoactivesIn PROPN
article NOUN
< X
1r4bhsINNhaf@hp-col.col.hp.com NUM
> X
billc@col.hp.com X
( PUNCT
Bill PROPN
Claussen PROPN
) PUNCT
writes:>>This DET
group NOUN
was AUX
originally ADV
a DET
takeoff NOUN
from ADP
sci.med VERB
. PUNCT
  SPACE
The DET
reason NOUN
for ADP
> X
the DET
formation NOUN
of ADP
this DET
group NOUN
was AUX
to PART
discuss VERB
prescription NOUN
psychoactive ADJ
> X
drugs NOUN
.... PUNCT
such ADJ
as SCONJ
... PUNCT
> X
> X
Oh INTJ
well INTJ
, PUNCT
obviously ADV
, PUNCT
no DET
one NOUN
really ADV
cares.--- VERB
	 SPACE
Then ADV
let VERB
me PRON
ask VERB
you PRON
for ADP
a DET
" PUNCT
workable ADJ
" PUNCT
solution NOUN
. PUNCT
  SPACE
We PRON
have AUX
a DET
namehere NOUN
that PRON
implies VERB
certain ADJ
things NOUN
to ADP
many ADJ
people NOUN
. PUNCT
  SPACE
Rather ADV
than SCONJ
tryingto NOUN
educate VERB
each DET
and CCONJ
every DET
person NOUN
that PRON
comes VERB
to ADP
the DET
group NOUN
-- PUNCT
is AUX
theresome ADJ
" PUNCT
name NOUN
" PUNCT
that PRON
would AUX
imply VERB
what PRON
this DET
group NOUN
was AUX
originallyintended VERB
for ADP
? PUNCT
 	 SPACE
My PRON
dad NOUN
was AUX
a DET
lawyer NOUN
-- PUNCT
as SCONJ
such ADJ
I PRON
grew VERB
up ADP
with ADP
being AUX
a DET
sticklerfor NOUN
" PUNCT
meaning NOUN
" PUNCT
. PUNCT
  SPACE
In ADP
my PRON
" PUNCT
reality NOUN
" PUNCT
, PUNCT
psychoactives NOUN
* PUNCT
technically ADV
* PUNCT
could AUX
range VERB
from ADP
caffeine NOUN
to ADP
datura NOUN
to ADP
the DET
drugs NOUN
you PRON
mention VERB
to ADP
morestandard VERB
recreational ADJ
drugs NOUN
. PUNCT
  SPACE
In ADP
practice NOUN
I PRON
had AUX
hoped VERB
to PART
see VERB
itlimited VERB
to ADP
those DET
that PRON
were AUX
above ADP
some DET
psychoactive ADJ
level NOUN
-- PUNCT
likesome NOUN
of ADP
the DET
drugs NOUN
you PRON
mention VERB
, PUNCT
but CCONJ
also ADV
possibly ADV
including VERB
* PUNCT
some*recreational ADJ
drugs NOUN
-- PUNCT
but CCONJ
with ADP
conversation NOUN
limited VERB
to ADP
their PRON
psychoactive ADJ
effects NOUN
-- PUNCT
the DET
recent ADJ
query NOUN
about ADP
" PUNCT
bong PROPN
water NOUN
" PUNCT
, PUNCT
I PRON
thought VERB
was AUX
a DET
bitoff ADJ
topic NOUN
-- PUNCT
so ADV
I PRON
just ADV
hit VERB
" PUNCT
k NOUN
" PUNCT
. PUNCT
	 SPACE
But CCONJ
back ADV
to ADP
the DET
original ADJ
question NOUN
-- PUNCT
what PRON
is AUX
a DET
workable ADJ
solution NOUN
--what VERB
is AUX
a DET
workable ADJ
name NOUN
that PRON
would AUX
imply VERB
the DET
topic NOUN
you PRON
with ADP
todiscuss PROPN
? PUNCT
  SPACE
It PRON
sounds VERB
like SCONJ
there PRON
should AUX
be AUX
a DET
alt.smartdrugs PROPN
, PUNCT
or CCONJ
somethingsimilar NOUN
-- PUNCT
I PRON
do AUX
n't PART
feel VERB
psychoactives NOUN
would AUX
generally ADV
be AUX
used VERB
todescribe PROPN
alot NOUN
of ADP
those DET
drugs NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
big ADJ
difference NOUN
between ADP
adrug PROPN
that SCONJ
if SCONJ
taken VERB
in ADP
" PUNCT
certain ADJ
doses NOUN
, PUNCT
over ADP
a DET
period NOUN
of ADP
days NOUN
may AUX
havea VERB
psychoactive ADJ
effect NOUN
in ADP
some DET
people NOUN
" PUNCT
, PUNCT
vs. ADP
many ADJ
of ADP
the DET
drugs NOUN
inPIHKAH PROPN
which PRON
* PUNCT
are AUX
* PUNCT
psychoactive.wm-- NOUN
: PUNCT
: PUNCT
If SCONJ
pro ADJ
- ADJ
choice ADJ
means VERB
choice NOUN
after ADP
conception NOUN
, PUNCT
does AUX
this DET
apply VERB
to ADP
men NOUN
too ADV
? PUNCT
: PUNCT
: PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59148From NUM
: PUNCT
matthews@Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews)Subject PROPN
: PUNCT
Re ADP
: PUNCT
GETTING VERB
AIDS PROPN
FROM ADP
ACUPUNCTURE NOUN
NEEDLESIn NOUN
article NOUN
< X
1r4f8b$euu@agate.berkeley.edu NUM
> X
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
> X
> X
   SPACE
someone PRON
wrote VERB
in ADP
expressing VERB
concern NOUN
about ADP
getting VERB
AIDS PROPN
from ADP
acupuncture NOUN
> X
   SPACE
needles NOUN
..... PUNCT
>>Unless NOUN
your PRON
friend NOUN
is AUX
sharing VERB
fluids NOUN
with ADP
their PRON
acupuncturist NOUN
who PRON
   SPACE
> X
themselves PRON
has AUX
AIDS PROPN
.. PUNCT
it PRON
is AUX
unlikely ADJ
( PUNCT
not PART
impossible ADJ
) PUNCT
they PRON
will AUX
get AUX
AIDS PROPN
        SPACE
> X
from ADP
acupuncture NOUN
needles NOUN
. PUNCT
Generally ADV
, PUNCT
even ADV
if SCONJ
accidently ADV
inoculated VERB
, PUNCT
the DET
normal ADJ
> NUM
immune ADJ
response NOUN
should AUX
be AUX
enough ADJ
to PART
effectively ADV
handle VERB
the DET
minimal ADJ
contaminant NOUN
> NOUN
involved VERB
with ADP
acupuncture NOUN
needle PROPN
insertion NOUN
. PUNCT
> X
Is AUX
n't PART
this DET
what PRON
HIV PROPN
is AUX
about ADP
- PUNCT
the DET
" PUNCT
normal ADJ
immune ADJ
response NOUN
" PUNCT
to ADP
an DET
exposure?>Most NOUN
acupuncturists NOUN
use VERB
disposable ADJ
needles NOUN
... PUNCT
use VERB
once ADV
and CCONJ
throw VERB
away ADV
. PUNCT
I PRON
had AUX
electrical ADJ
pulse NOUN
nerve NOUN
testing NOUN
done VERB
a DET
while NOUN
back ADV
. PUNCT
  SPACE
The DET
needles NOUN
were AUX
takenfrom ADP
a DET
dirty ADJ
drawer NOUN
in ADP
an DET
instrument NOUN
cart NOUN
and CCONJ
were AUX
most ADV
certainly ADV
NOTsterile ADV
or CCONJ
even ADV
clean ADJ
for ADP
that DET
matter NOUN
. PUNCT
  SPACE
More ADV
than SCONJ
likely ADJ
they PRON
were AUX
freshfrom PROPN
the DET
previous ADJ
patient NOUN
. PUNCT
  SPACE
I PRON
WAS VERB
concerned VERB
, PUNCT
but CCONJ
I PRON
kept VERB
my PRON
mouth NOUN
shut NOUN
. PUNCT
  SPACE
Iprobably ADV
should AUX
have AUX
raised VERB
hell!Any NOUN
comments NOUN
? PUNCT
  SPACE
No DET
excuses NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59149From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Path NOUN
: PUNCT
news.larc.nasa.gov!darwin.sura.net!zaphod.mps.ohio-state.edu!uwm.edu!linac!att!bu.edu!dozonoff PROPN
   SPACE
From ADP
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
   SPACE
Newsgroups PROPN
: PUNCT
sci.med VERB
   SPACE
Date NOUN
: PUNCT
21 NUM
Apr PROPN
93 NUM
16:18:19 NUM
GMT PROPN
   SPACE
References NOUN
: PUNCT
< X
PAULSON.93Apr19081647@cmb00.larc.nasa.gov NUM
> X
   SPACE
Sender PROPN
: PUNCT
news@bu.edu X
   SPACE
Lines NOUN
: PUNCT
22 NUM
   SPACE
X PROPN
- NOUN
Newsreader NOUN
: PUNCT
Tin NOUN
1.1 NUM
PL5 PROPN
   SPACE
Sharon PROPN
Paulson PROPN
( PUNCT
paulson@tab00.larc.nasa.gov PROPN
) PUNCT
wrote VERB
: PUNCT
   SPACE
: PUNCT
    SPACE
{ PUNCT
much ADV
deleted VERB
] PUNCT
   SPACE
: PUNCT
    SPACE
: PUNCT
    SPACE
: PUNCT
The DET
fact NOUN
that SCONJ
this DET
happened VERB
while SCONJ
eating VERB
two NUM
sugar NOUN
coated VERB
cereals NOUN
made VERB
   SPACE
: PUNCT
by ADP
Kellog PROPN
's PART
makes VERB
me PRON
think VERB
she PRON
might AUX
be AUX
having VERB
an DET
allergic ADJ
reaction NOUN
to ADP
   SPACE
: PUNCT
something PRON
in ADP
the DET
coating NOUN
or CCONJ
the DET
cereals NOUN
. PUNCT
  SPACE
Of ADP
the DET
four NUM
of ADP
us PRON
in ADP
our PRON
   SPACE
: PUNCT
immediate ADJ
family NOUN
, PUNCT
Kathryn PROPN
shows VERB
the DET
least ADJ
signs NOUN
of ADP
the DET
hay NOUN
fever NOUN
, PUNCT
running VERB
   SPACE
: PUNCT
nose NOUN
, PUNCT
itchy ADJ
eyes NOUN
, PUNCT
etc X
. PUNCT
but CCONJ
we PRON
have AUX
a DET
lot NOUN
of ADP
allergies NOUN
in ADP
our PRON
family NOUN
history NOUN
   SPACE
: PUNCT
including VERB
some DET
weird ADJ
food NOUN
allergies NOUN
- PUNCT
nuts NOUN
, PUNCT
mushrooms NOUN
. PUNCT
    SPACE
: PUNCT
    SPACE
Many ADJ
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the DET
   SPACE
literature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains VERB
   SPACE
tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might AUX
   SPACE
potentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it PRON
. PUNCT
   SPACE
Check VERB
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested ADJ
. PUNCT
   SPACE
-- PUNCT
   SPACE
David PROPN
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Health PROPN
   SPACE
dozonoff@med-itvax1.bu.edu X
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C PROPN
   SPACE
( PUNCT
617 NUM
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
A DET
couple NOUN
of ADP
folks NOUN
have AUX
suggested VERB
the DET
" PUNCT
corn NOUN
connection NOUN
" PUNCT
. PUNCT
  SPACE
In ADP
the DET
five NUM
monthperiod NOUN
between ADP
the DET
two NUM
seizures NOUN
, PUNCT
my PRON
daughter NOUN
had AUX
eaten VERB
a DET
fair ADJ
amount NOUN
ofKix NOUN
and CCONJ
Berry PROPN
Berry PROPN
Kix PROPN
in ADP
the DET
mornings NOUN
and CCONJ
never ADV
had AUX
a DET
problem NOUN
. PUNCT
  SPACE
I PRON
checkedthe VERB
labels NOUN
and CCONJ
the DET
first ADJ
ingredient NOUN
is AUX
corn NOUN
. PUNCT
  SPACE
She PRON
has AUX
also ADV
never ADV
had VERB
a DET
problemeating VERB
corn NOUN
or CCONJ
corn NOUN
on ADP
the DET
cob NOUN
but CCONJ
of ADP
course NOUN
, PUNCT
that DET
is AUX
usually ADV
later ADV
in ADP
the DET
daywith NOUN
a DET
full ADJ
stomach NOUN
so SCONJ
the DET
absorption NOUN
would AUX
not PART
be AUX
so ADV
high ADJ
. PUNCT
  SPACE
I PRON
do AUX
believe VERB
thatFrost NOUN
Flakes NOUN
have AUX
corn NOUN
in ADP
them PRON
but CCONJ
I PRON
will AUX
have AUX
to PART
check VERB
the DET
Fruit PROPN
Loops PROPN
. PUNCT
  SPACE
Butthe PROPN
fact NOUN
that SCONJ
she PRON
has AUX
eaten VERB
this DET
other ADJ
corny NOUN
cereal NOUN
in ADP
the DET
morning NOUN
makes VERB
mewonder NOUN
. PUNCT
Thanks NOUN
for ADP
checking VERB
into ADP
this DET
. PUNCT
  SPACE
All DET
information NOUN
at ADP
this DET
point NOUN
is AUX
valuable ADJ
to ADP
me PRON
. PUNCT
Sharon PROPN
-- PUNCT
Sharon PROPN
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59150From NUM
: PUNCT
Andrew PROPN
T. PROPN
Robinson PROPN
< X
ANDY@MAINE.MAINE.EDU ADJ
> X
Subject NOUN
: PUNCT
Reasons NOUN
for ADP
hospitals NOUN
to PART
join VERB
Internet?What PRON
resources NOUN
and CCONJ
services NOUN
are AUX
available ADJ
on ADP
Internet NOUN
/ SYM
BITNET NOUN
whichwould AUX
be AUX
of ADP
interest NOUN
to ADP
hospitals NOUN
and CCONJ
other ADJ
medical ADJ
care NOUN
providers?I'm PROPN
interested ADJ
in ADP
anything PRON
relelvant ADJ
, PUNCT
including VERB
institutions NOUN
andbusinesses NOUN
of ADP
interest NOUN
to ADP
the DET
medical ADJ
profession NOUN
on ADP
Internet NOUN
, PUNCT
special ADJ
services NOUN
such ADJ
as SCONJ
online ADJ
access NOUN
to ADP
libraries NOUN
or CCONJ
diagnosticinformation NOUN
, PUNCT
etc X
. PUNCT
etc X
. PUNCT
Please INTJ
reply VERB
directly ADV
to ADP
ANDY@MAINE.EDUNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59151From NUM
: PUNCT
roos@Operoni PROPN
. PUNCT
Helsinki PROPN
. PUNCT
FI PROPN
( PUNCT
Christophe PROPN
Roos)Subject NUM
: PUNCT
Wanted VERB
: PUNCT
Rat NOUN
cell NOUN
line NOUN
( PUNCT
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
c.)I NOUN
am AUX
looking VERB
for ADP
a DET
rat ADJ
cell NOUN
line NOUN
of ADP
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
cell NOUN
  SPACE
-type PROPN
. PUNCT
I PRON
have AUX
been AUX
looking VERB
at ADP
ATCC PROPN
without ADP
success NOUN
and CCONJ
would AUX
very ADV
much ADV
appreciate VERB
any DET
help NOUN
. PUNCT
Thank VERB
you PRON
for ADP
reading VERB
this DET
. PUNCT
Christophe NOUN
Roos-------------------------------------------------------------------------Institute NOUN
of ADP
Biotechnology PROPN
          SPACE
Fax PROPN
: PUNCT
                   SPACE
+358 PROPN
0 NUM
4346028POBox NUM
45 NUM
, PUNCT
Valimotie PROPN
7 NUM
               SPACE
E NOUN
- NOUN
mail NOUN
: PUNCT
   SPACE
Christophe PROPN
. PUNCT
Roos@Helsinki X
. PUNCT
FiUniversity PROPN
of ADP
Helsinki PROPN
              SPACE
X-400 PROPN
: PUNCT
           SPACE
/G PUNCT
= PUNCT
Christophe PROPN
/ SYM
S PROPN
= SYM
RoosSF-00014 PROPN
Finland PROPN
                                SPACE
/O PUNCT
= PUNCT
Helsinki PROPN
/ SYM
A PROPN
= SYM
fumail NOUN
/ SYM
C NOUN
= SYM
Fi-------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59152From NUM
: PUNCT
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyGordon NOUN
Banks NOUN
( PUNCT
geb@cs.pitt.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
1993Apr12.201056.20753@ns1.cc.lehigh.edu NUM
> X
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
Now ADV
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
culturing NOUN
is AUX
the DET
best ADJ
way NOUN
to PART
diagnose VERB
; PUNCT
it PRON
's AUX
very ADV
: PUNCT
> X
hard ADV
to PART
culture VERB
Bb PROPN
in ADP
most ADJ
cases NOUN
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
Dr. PROPN
N PROPN
has AUX
developed VERB
a DET
: PUNCT
> X
" PUNCT
feel VERB
" PUNCT
for ADP
what PRON
is AUX
and CCONJ
what PRON
is AUX
n't PART
LD NOUN
. PUNCT
  SPACE
This DET
comes VERB
from ADP
years NOUN
of ADP
experience NOUN
. PUNCT
: PUNCT
> X
No DET
serology NOUN
can AUX
match VERB
that DET
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
some DET
would AUX
call VERB
Dr. PROPN
N PROPN
a DET
" PUNCT
quack NOUN
" PUNCT
: PUNCT
> X
and CCONJ
accuse VERB
him PRON
of ADP
trying VERB
to PART
make VERB
a DET
quick ADJ
buck NOUN
. PUNCT
: PUNCT
> X
: PUNCT
Why ADV
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures NOUN
. PUNCT
: PUNCT
They PRON
poo VERB
- PUNCT
poo NOUN
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I PRON
've AUX
: PUNCT
seen VERB
it PRON
many ADJ
times NOUN
. PUNCT
  SPACE
The DET
lab NOUN
tests NOUN
are AUX
n't PART
accurate ADJ
. PUNCT
  SPACE
We PRON
'll AUX
treat VERB
it PRON
: PUNCT
now ADV
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
is AUX
Dr. PROPN
N PROPN
's PART
practice NOUN
almost ADV
exclusively ADV
devoted ADJ
to ADP
treating VERB
: PUNCT
Lyme PROPN
patients NOUN
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
* PUNCT
any DET
* PUNCT
orthopedic ADJ
surgeons NOUN
who PRON
fit VERB
this DET
: PUNCT
pattern NOUN
. PUNCT
  SPACE
They PRON
are AUX
usually ADV
GPs NOUN
. PUNCT
No INTJ
, PUNCT
he PRON
does AUX
not PART
exclusively ADV
treat VERB
LD NOUN
patients NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
in ADP
some DET
parts NOUN
of ADP
thecountry NOUN
, PUNCT
you PRON
do AUX
n't PART
need VERB
to PART
be AUX
known VERB
as SCONJ
an DET
LD PROPN
" PUNCT
specialist NOUN
" PUNCT
to PART
see VERB
a DET
largenumber NOUN
of ADP
LD NOUN
patients NOUN
walk VERB
through ADP
your PRON
office NOUN
. PUNCT
  SPACE
Given VERB
the DET
huge ADJ
problem NOUN
ofunderdiagnosis NOUN
, PUNCT
orthopedists VERB
encounter PROPN
late ADJ
manifestations NOUN
of ADP
the DET
disease NOUN
justabout PROPN
every DET
day NOUN
in ADP
their PRON
regular ADJ
practices NOUN
. PUNCT
  SPACE
Dr. PROPN
N. PROPN
told VERB
me PRON
that DET
last ADJ
year NOUN
, PUNCT
he PRON
sent VERB
between ADP
2 NUM
and CCONJ
5 NUM
patients NOUN
a DET
week NOUN
to ADP
the DET
LD PROPN
specialists NOUN
... PUNCT
and CCONJ
he PRON
is AUX
notthe ADJ
only ADJ
orthopedists NOUN
in ADP
the DET
town NOUN
. PUNCT
Let VERB
's PRON
say VERB
that SCONJ
only ADV
2 NUM
people NOUN
per ADP
week NOUN
actually ADV
have AUX
LD PROPN
. PUNCT
  SPACE
That DET
means VERB
at ADP
the*very NUM
minimum NOUN
* PUNCT
104 NUM
people NOUN
in ADP
our PRON
town NOUN
( PUNCT
and CCONJ
immediate ADJ
area NOUN
) PUNCT
develop VERB
late ADJ
stagemanifestations NOUN
of ADP
LD NOUN
* PUNCT
every DET
year NOUN
* PUNCT
. PUNCT
  SPACE
Add VERB
in ADP
the DET
folks NOUN
who PRON
were AUX
diagnosed VERB
byneurologists NOUN
, PUNCT
rheumatologists NOUN
, PUNCT
GPs NOUN
, PUNCT
etc X
, PUNCT
and CCONJ
you PRON
can AUX
see VERB
what PRON
kind NOUN
of ADP
problemwe NOUN
have AUX
. PUNCT
  SPACE
No DET
wonder NOUN
just ADV
about ADP
everybody PRON
in ADP
town NOUN
personally ADV
knows VERB
an DET
LDpatient NOUN
. PUNCT
He PRON
refers VERB
most ADJ
patients NOUN
to ADP
LD NOUN
specialists NOUN
, PUNCT
but CCONJ
in ADP
extreme ADJ
cases NOUN
he PRON
puts VERB
thepatient ADJ
on ADP
medication NOUN
immediately ADV
to PART
minimize VERB
the DET
damage NOUN
( PUNCT
in ADP
most ADJ
cases NOUN
, PUNCT
tothe PROPN
knees).Gordon PROPN
is AUX
correct ADJ
when ADV
he PRON
states VERB
that SCONJ
most ADJ
LD NOUN
specialists NOUN
are AUX
GPs.-Marc.-- ADJ
----------------------------------------------------------------------- PUNCT
              SPACE
Marc PROPN
C. PROPN
Gabriel PROPN
        SPACE
- PUNCT
  SPACE
U.C. PROPN
Box PROPN
545 NUM
  SPACE
- PUNCT
              SPACE
( PUNCT
215 NUM
) PUNCT
882 NUM
- SYM
0138 NUM
         SPACE
Lehigh PROPN
UniversityNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59153From NUM
: PUNCT
debbie@csd4.csd.uwm.edu PROPN
( PUNCT
Debbie PROPN
Forest)Subject NUM
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr21.231301.3050@seas.gwu.edu NUM
> X
sheryl@seas.gwu.edu ADJ
( PUNCT
Sheryl PROPN
Coppenger PROPN
) PUNCT
writes:<In ADJ
article NOUN
< X
1993Apr21.024103.29880@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:<>Hismanal ADJ
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to PART
weight NOUN
gain.<>It PROPN
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect,<>and X
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedly<>doesn't PROPN
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to ADP
cause<>drowsiness.<<The NUM
original ADJ
poster NOUN
mentioned VERB
fatigue NOUN
. PUNCT
  SPACE
I PRON
had AUX
that DET
too ADV
, PUNCT
but CCONJ
it PRON
was AUX
< X
mostly ADV
due ADP
to ADP
the DET
really ADV
bizarre ADJ
dreams NOUN
I PRON
was AUX
having VERB
-- PUNCT
I PRON
was AUX
n't PART
getting VERB
< X
any DET
rest NOUN
. PUNCT
  SPACE
My PRON
doctor NOUN
said VERB
that DET
was AUX
a DET
common ADJ
reaction NOUN
. PUNCT
  SPACE
If SCONJ
astemizole NOUN
< X
doesn't ADV
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
, PUNCT
how ADV
does AUX
it PRON
cause VERB
that DET
side NOUN
< X
effect NOUN
? PUNCT
  SPACE
Any DET
ideas?It VERB
made VERB
me PRON
really ADV
BITCHY PROPN
for ADP
the DET
first ADJ
few ADJ
weeks NOUN
. PUNCT
  SPACE
Now ADV
that SCONJ
I PRON
think VERB
aboutit NOUN
I PRON
was AUX
having VERB
some DET
bizarre ADJ
dreams NOUN
too ADV
. PUNCT
  SPACE
My PRON
doctor NOUN
said VERB
it PRON
made VERB
him PRON
feellike VERB
he PRON
had AUX
to PART
be AUX
DOING VERB
something PRON
all DET
the DET
time NOUN
. PUNCT
  SPACE
But CCONJ
if SCONJ
you PRON
keep VERB
taking VERB
it PRON
, PUNCT
after ADP
a DET
few ADJ
weeks NOUN
these DET
symptoms NOUN
seem VERB
to PART
go VERB
away ADV
, PUNCT
he PRON
said VERB
hang VERB
in ADV
there ADV
. PUNCT
  SPACE
I PRON
did AUX
and CCONJ
they PRON
did AUX
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59154From NUM
: PUNCT
shavlik@cs.wisc.edu PROPN
( PUNCT
Jude PROPN
Shavlik)Subject PROPN
: PUNCT
Program PROPN
& CCONJ
Reg PROPN
Forms PROPN
: PUNCT
1st NOUN
Int PROPN
Conf PROPN
on ADP
Intell PROPN
Sys PROPN
for ADP
Molecular PROPN
Biology[For CCONJ
those DET
attending VERB
the DET
AAAI PROPN
conf NOUN
this DET
summer NOUN
, PUNCT
note VERB
thatthis DET
conference NOUN
is AUX
immediately ADV
preceding VERB
it PRON
. PUNCT
] PUNCT
         SPACE
PRELIMINARY PROPN
PROGRAM NOUN
AND CCONJ
REGISTRATION NOUN
MATERIALS NOUN
              SPACE
First PROPN
International PROPN
Conference PROPN
on ADP
          SPACE
Intelligent PROPN
Systems PROPN
for ADP
Molecular PROPN
Biology PROPN
                       SPACE
Washington PROPN
, PUNCT
D.C. PROPN
                        SPACE
July PROPN
6 NUM
- SYM
9 NUM
, PUNCT
1993Sponsored VERB
by ADP
: PUNCT
  SPACE
The DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
      SPACE
National PROPN
Library PROPN
of ADP
Medicine PROPN
  SPACE
The DET
Department PROPN
of ADP
Energy PROPN
, PUNCT
      SPACE
Office PROPN
of ADP
Health PROPN
and CCONJ
Environmental PROPN
Research PROPN
  SPACE
The DET
Biomatrix PROPN
Society PROPN
  SPACE
The DET
American PROPN
Association PROPN
for ADP
Artificial PROPN
Intelligence PROPN
( PUNCT
AAAI)Poster PROPN
Session PROPN
and CCONJ
Tutorials PROPN
: PUNCT
    SPACE
Bethesda PROPN
Ramada PROPN
HotelTechnical PROPN
Sessions PROPN
: PUNCT
  SPACE
Lister PROPN
Hill PROPN
Center PROPN
Auditorium PROPN
, PUNCT
National PROPN
Library PROPN
of ADP
MedicineFor PROPN
more ADJ
information NOUN
contact NOUN
ISMB@nlm.nih.gov PROPN
or CCONJ
FAX PROPN
( PUNCT
608)262 NUM
- PUNCT
9777 NUM
                           SPACE
PURPOSEThis PUNCT
, PUNCT
the DET
First PROPN
International PROPN
Conference PROPN
on ADP
Intelligent PROPN
Systems PROPN
for ADP
Molecular PROPN
Biology PROPN
, PUNCT
is AUX
the DET
inaugural ADJ
meeting NOUN
in ADP
a DET
series NOUN
intended VERB
to PART
bring VERB
together ADV
scientists NOUN
who PRON
are AUX
applying VERB
the DET
technologies NOUN
of ADP
artificial ADJ
intelligence NOUN
, PUNCT
robotics NOUN
, PUNCT
machine NOUN
learning NOUN
, PUNCT
massively ADV
parallel ADJ
computing NOUN
, PUNCT
advanced ADJ
data NOUN
modelling NOUN
, PUNCT
and CCONJ
related VERB
methods NOUN
to ADP
problems NOUN
in ADP
molecular ADJ
biology NOUN
. PUNCT
  SPACE
The DET
scope NOUN
extends VERB
to ADP
any DET
computational ADJ
or CCONJ
robotic ADJ
system NOUN
supporting VERB
a DET
biological ADJ
task NOUN
that PRON
is AUX
cognitively ADV
challenging ADJ
, PUNCT
involves VERB
a DET
synthesis NOUN
of ADP
information NOUN
from ADP
multiple ADJ
sources NOUN
at ADP
multiple ADJ
levels NOUN
, PUNCT
or CCONJ
in ADP
some DET
other ADJ
way NOUN
exhibits VERB
the DET
abstraction NOUN
and CCONJ
emergent ADJ
properties NOUN
of ADP
an DET
" PUNCT
intelligent ADJ
system NOUN
. PUNCT
" PUNCT
                            SPACE
FACILITIESThe ADJ
conference NOUN
will AUX
be AUX
held VERB
at ADP
   SPACE
Lister PROPN
Hill PROPN
Center PROPN
    SPACE
National PROPN
Library PROPN
of ADP
Medicine PROPN
   SPACE
8600 NUM
Rockville PROPN
Pike PROPN
   SPACE
NIH PROPN
, PUNCT
Building PROPN
38A NUM
   SPACE
Bethesda PROPN
MD PROPN
20894Seating NUM
in ADP
the DET
conference NOUN
center NOUN
is AUX
strictly ADV
limited ADJ
, PUNCT
so SCONJ
registrations NOUN
will AUX
be AUX
accepted VERB
on ADP
a DET
first ADJ
- PUNCT
come VERB
, PUNCT
first ADJ
- PUNCT
serve NOUN
basis NOUN
. PUNCT
Accomodations NOUN
, PUNCT
as ADV
well ADV
as SCONJ
a DET
reception NOUN
and CCONJ
poster NOUN
session NOUN
, PUNCT
will AUX
be AUX
at ADP
the DET
   SPACE
Bethesda PROPN
Ramada PROPN
Hotel PROPN
    SPACE
8400 NUM
Wisconsin PROPN
Avenue PROPN
   SPACE
Bethesda PROPN
MD PROPN
20814A PROPN
special ADJ
room NOUN
rate NOUN
has AUX
been AUX
negotiated VERB
with ADP
the DET
hotel NOUN
, PUNCT
of ADP
$ SYM
92 NUM
/ SYM
day NOUN
( PUNCT
expires VERB
6/21 NUM
) PUNCT
. PUNCT
  SPACE
Attendees NOUN
must AUX
make VERB
their PRON
own ADJ
reservations NOUN
, PUNCT
by ADP
writing VERB
the DET
hotel NOUN
or CCONJ
calling VERB
( PUNCT
800)331 NUM
- PUNCT
5252 NUM
and CCONJ
mentioning VERB
the DET
ISMB PROPN
conference NOUN
. PUNCT
  SPACE
To PART
participate VERB
in ADP
a DET
roommate NOUN
- PUNCT
matching VERB
service NOUN
, PUNCT
e NOUN
- NOUN
mail NOUN
opitz@cs.wisc.edu PROPN
. PUNCT
                         SPACE
TRANSPORTATIONThe ADJ
two NUM
facilities NOUN
are AUX
within ADP
easy ADJ
walking NOUN
distance NOUN
, PUNCT
convenient ADJ
to ADP
the DET
subway NOUN
( PUNCT
Metro PROPN
Red PROPN
Line PROPN
, PUNCT
Medical PROPN
Center PROPN
stop NOUN
) PUNCT
, PUNCT
and CCONJ
from ADP
there ADV
to ADP
the DET
Amtrak PROPN
station NOUN
. PUNCT
  SPACE
Nearby ADJ
airports NOUN
include VERB
Dulles PROPN
, PUNCT
National PROPN
, PUNCT
and CCONJ
Baltimore PROPN
- PUNCT
Washington PROPN
International PROPN
. PUNCT
                            SPACE
PROCEEDINGSFull NOUN
- PUNCT
length NOUN
papers NOUN
from ADP
both DET
talks NOUN
and CCONJ
posters NOUN
will AUX
be AUX
published VERB
inarchival ADJ
proceedings NOUN
. PUNCT
  SPACE
The DET
citation NOUN
is AUX
: PUNCT
   SPACE
Proceedings NOUN
of ADP
the DET
First PROPN
International PROPN
   SPACE
Conference NOUN
on ADP
Intelligent PROPN
Systems PROPN
for ADP
   SPACE
Molecular PROPN
Biology PROPN
( PUNCT
eds NOUN
. PUNCT
L. PROPN
Hunter PROPN
, PUNCT
   SPACE
D. PROPN
Searls PROPN
, PUNCT
and CCONJ
J. PROPN
Shavlik PROPN
) PUNCT
AAAI PROPN
/ SYM
MIT PROPN
  SPACE
Press PROPN
, PUNCT
Menlo PROPN
Park PROPN
CA PROPN
, PUNCT
1993 NUM
. PUNCT
  SPACE
Copies NOUN
will AUX
be AUX
distributed VERB
at ADP
the DET
conference NOUN
to ADP
registered ADJ
attendees NOUN
, PUNCT
and CCONJ
will AUX
be AUX
available ADJ
for ADP
purchase NOUN
from ADP
the DET
publisher NOUN
afterwards ADV
. PUNCT
                             SPACE
TALKSWednesday PROPN
, PUNCT
July PROPN
7 NUM
, PUNCT
1993 NUM
- PUNCT
----------------------------------------------------------------8:00 NOUN
- PUNCT
9:00am NUM
     SPACE
Continental PROPN
Breakfast9:00 PROPN
- PUNCT
9:15am NUM
     SPACE
Opening PROPN
Remarks9:15 PROPN
- PUNCT
10:30am PROPN
    SPACE
Invited VERB
Talk PROPN
" PUNCT
Statistics PROPN
, PUNCT
Protein PROPN
Cores PROPN
, PUNCT
and CCONJ
Predicted PROPN
Structures PROPN
" PUNCT
Prof. PROPN
Temple PROPN
Smith PROPN
( PUNCT
Boston PROPN
University)10:30 NOUN
- PUNCT
11:00am NOUN
	 SPACE
Break11:00am PROPN
	 SPACE
" PUNCT
Constructive ADJ
Induction PROPN
and CCONJ
Protein PROPN
Structure PROPN
Prediction PROPN
" PUNCT
T.R. PROPN
Ioerger PROPN
, PUNCT
L. PROPN
Rendell PROPN
, PUNCT
& CCONJ
S. PROPN
Surbramaniam11:30am PROPN
	 SPACE
" PUNCT
Protein PROPN
Secondary PROPN
- PUNCT
Structure NOUN
Modeling PROPN
with ADP
Probabilistic ADJ
  SPACE
Networks NOUN
" PUNCT
  SPACE
A.L. PROPN
Delcher PROPN
, PUNCT
S. PROPN
Kasif PROPN
, PUNCT
H.R. PROPN
Goldberg PROPN
, PUNCT
& CCONJ
W. PROPN
Hsu12:00 PROPN
- PUNCT
1:30pm PROPN
	 SPACE
Lunch1:30pm PROPN
	 SPACE
" PUNCT
Protein PROPN
Secondary PROPN
Structure PROPN
using VERB
Two NUM
- PUNCT
Level PROPN
Case PROPN
- PUNCT
Based VERB
  SPACE
Reasoning VERB
" PUNCT
  SPACE
B. PROPN
Leng PROPN
, PUNCT
B.G. PROPN
Buchanan PROPN
, PUNCT
& CCONJ
H.B. PROPN
Nicholas2:00pm PROPN
	 SPACE
" PUNCT
Automatic ADJ
Derivation NOUN
of ADP
Substructures NOUN
Yields NOUN
Novel PROPN
  SPACE
Structural PROPN
Building PROPN
Blocks PROPN
in ADP
Globular PROPN
Proteins PROPN
" PUNCT
  SPACE
X. PROPN
Zhang PROPN
, PUNCT
J.S. PROPN
Fetrow PROPN
, PUNCT
W.A. PROPN
Rennie PROPN
, PUNCT
D.L. PROPN
Waltz PROPN
, PUNCT
& CCONJ
G. PROPN
Berg2:30pm PROPN
	 SPACE
" PUNCT
Using VERB
Dirichlet NOUN
Mixture PROPN
Priors NOUN
to PART
Derive VERB
Hidden PROPN
Markov PROPN
  SPACE
Models NOUN
for ADP
Protein PROPN
Families PROPN
" PUNCT
M. PROPN
Brown PROPN
, PUNCT
R. PROPN
Hughey PROPN
, PUNCT
A. PROPN
Krogh PROPN
, PUNCT
  SPACE
I.S. PROPN
Mian PROPN
, PUNCT
K. PROPN
Sjolander PROPN
, PUNCT
& CCONJ
D. PROPN
Haussler3:00 PROPN
- PUNCT
3:30pm PROPN
	 SPACE
Break3:30pm PROPN
	 SPACE
" PUNCT
Protein PROPN
Classification PROPN
using VERB
Neural PROPN
Networks PROPN
" PUNCT
  SPACE
E.A. PROPN
Ferran PROPN
, PUNCT
B. PROPN
Pflugfelder PROPN
, PUNCT
& CCONJ
P. PROPN
Ferrara4:00pm PROPN
	 SPACE
" PUNCT
Neural PROPN
Networks PROPN
for ADP
Molecular PROPN
Sequence PROPN
Classification PROPN
" PUNCT
C. PROPN
Wu PROPN
, PUNCT
M. PROPN
Berry PROPN
, PUNCT
Y PROPN
- PUNCT
S. PROPN
Fung PROPN
, PUNCT
& CCONJ
J. PROPN
McLarty4:30pm PROPN
	 SPACE
" PUNCT
Computationally PROPN
Efficient PROPN
Cluster PROPN
Representation NOUN
in ADP
  SPACE
Molecular PROPN
Sequence PROPN
Megaclassification PROPN
" PUNCT
  SPACE
D.J. PROPN
States PROPN
, PUNCT
N. PROPN
Harris PROPN
, PUNCT
  SPACE
& CCONJ
L. PROPN
Hunter7:00 PROPN
- PUNCT
7:30pm NUM
     SPACE
Poster NOUN
Setup7:30 PROPN
- PUNCT
10:00pm PROPN
    SPACE
Reception PROPN
& CCONJ
Poster PROPN
Session PROPN
Thursday PROPN
, PUNCT
July PROPN
8 NUM
, PUNCT
1993 NUM
- PUNCT
----------------------------------------------------------------8:00 NOUN
- PUNCT
9:00am NUM
     SPACE
Continental PROPN
Breakfast9:00 PROPN
- PUNCT
10:15am NUM
    SPACE
Invited VERB
Talk PROPN
" PUNCT
Large ADJ
- PUNCT
Scale NOUN
DNA NOUN
Sequencing NOUN
: PUNCT
  SPACE
A DET
Tale PROPN
of ADP
Mice PROPN
and CCONJ
Men PROPN
" PUNCT
Prof. PROPN
Leroy PROPN
Hood PROPN
( PUNCT
University PROPN
of ADP
Washington)10:15 PROPN
- PUNCT
10:45am PROPN
	 SPACE
Break10:45am NOUN
	 SPACE
" PUNCT
Pattern PROPN
Recognition PROPN
for ADP
Automated ADJ
DNA PROPN
Sequencing PROPN
: PUNCT
  SPACE
I. PROPN
On ADP
- PUNCT
Line NOUN
Signal PROPN
Conditioning PROPN
and CCONJ
Feature PROPN
Extraction PROPN
for ADP
  SPACE
Basecalling VERB
" PUNCT
  SPACE
J.B. PROPN
Bolden PROPN
III PROPN
, PUNCT
D. PROPN
Torgersen PROPN
, PUNCT
& CCONJ
C. PROPN
Tibbetts11:15am PROPN
	 SPACE
" PUNCT
Genetic ADJ
Algorithms PROPN
for ADP
Sequence PROPN
Assembly PROPN
" PUNCT
  SPACE
R. PROPN
Parsons PROPN
, PUNCT
S. PROPN
Forrest PROPN
, PUNCT
& CCONJ
C. PROPN
Burks11:45am PROPN
	 SPACE
" PUNCT
A DET
Partial PROPN
Digest PROPN
Approach PROPN
to ADP
Restriction PROPN
Site PROPN
Mapping PROPN
" PUNCT
S.S. PROPN
Skiena PROPN
& CCONJ
G. PROPN
Sundaram12:15 PROPN
- PUNCT
2:00pm PROPN
	 SPACE
Lunch2:00pm PROPN
	 SPACE
" PUNCT
Integrating VERB
Order NOUN
and CCONJ
Distance PROPN
Relationships PROPN
from ADP
  SPACE
Heterogeneous PROPN
Maps PROPN
" PUNCT
  SPACE
M. PROPN
Graves PROPN
2:30pm NUM
	 SPACE
" PUNCT
Discovering VERB
Sequence PROPN
Similarity PROPN
by ADP
the DET
Algorithmic ADJ
  SPACE
Significance PROPN
Method PROPN
" PUNCT
  SPACE
A. NOUN
Milosavljevic3:00pm PROPN
	 SPACE
" PUNCT
Identification PROPN
of ADP
Human PROPN
Gene PROPN
Functional PROPN
Regions PROPN
Based VERB
on ADP
  SPACE
Oligonucleotide PROPN
Composition PROPN
" PUNCT
  SPACE
V.V. PROPN
Solovyev PROPN
& CCONJ
C.B. PROPN
Lawrence3:30pm PROPN
	 SPACE
" PUNCT
Knowledge PROPN
Discovery PROPN
in ADP
GENBANK PROPN
" PUNCT
J.S. PROPN
Aaronson PROPN
, PUNCT
J. PROPN
Haas PROPN
, PUNCT
& CCONJ
G.C. PROPN
Overton4:00 PROPN
- PUNCT
4:30pm PROPN
	 SPACE
Break4:30pm PROPN
	 SPACE
" PUNCT
An DET
Expert PROPN
System NOUN
to PART
Generate PROPN
Machine PROPN
Learning VERB
  SPACE
Experiments NOUN
: PUNCT
Learning VERB
with ADP
DNA PROPN
Crystallography PROPN
Data PROPN
" PUNCT
D. PROPN
Cohen PROPN
, PUNCT
C. PROPN
Kulikowski PROPN
, PUNCT
& CCONJ
H. PROPN
Berman PROPN
5:00pm NUM
	 SPACE
" PUNCT
Detection PROPN
of ADP
Correlations PROPN
in ADP
tRNA PROPN
Sequences NOUN
with ADP
  SPACE
Structural PROPN
Implications PROPN
" PUNCT
  SPACE
T.M. PROPN
Klingler PROPN
& CCONJ
D. PROPN
Brutlag5:30pm PROPN
	 SPACE
" PUNCT
Probabilistic ADJ
Structure NOUN
Calculations NOUN
: PUNCT
A DET
Three- NOUN
Dimensional ADJ
tRNA NOUN
Structure NOUN
from ADP
Sequence PROPN
Correlation PROPN
Data PROPN
" PUNCT
  SPACE
R.B. PROPN
AltmanFriday PROPN
, PUNCT
July PROPN
9 NUM
, PUNCT
1993 NUM
- PUNCT
----------------------------------------------------------------8:00 NOUN
- PUNCT
9:00am NUM
     SPACE
Continental PROPN
Breakfast9:00 PROPN
- PUNCT
10:15am NUM
    SPACE
Invited VERB
Talk PROPN
" PUNCT
Artificial PROPN
Intelligence PROPN
and CCONJ
a DET
Grand PROPN
Unified PROPN
Theory PROPN
of ADP
  SPACE
Biochemistry PROPN
" PUNCT
Prof. PROPN
Harold PROPN
Morowitz PROPN
( PUNCT
George PROPN
Mason PROPN
University)10:15 PROPN
- PUNCT
10:45am PROPN
	 SPACE
Break10:45am NOUN
	 SPACE
" PUNCT
Testing PROPN
HIV PROPN
Molecular PROPN
Biology PROPN
in ADP
in ADP
silico PROPN
Physiologies PROPN
" PUNCT
  SPACE
H.B. PROPN
Sieburg PROPN
& CCONJ
C. PROPN
Baray11:15am PROPN
	 SPACE
" PUNCT
Identification PROPN
of ADP
Localized PROPN
and CCONJ
Distributed PROPN
Bottlenecks NOUN
  SPACE
in ADP
Metabolic PROPN
Pathways PROPN
" PUNCT
  SPACE
M.L. PROPN
Mavrovouniotis11:45am PROPN
	 SPACE
" PUNCT
Fine PROPN
- PUNCT
Grain PROPN
Databases PROPN
for ADP
Pattern PROPN
Discovery PROPN
in ADP
Gene PROPN
  SPACE
Regulation PROPN
" PUNCT
  SPACE
S.M. PROPN
Veretnik PROPN
& CCONJ
B.R. PROPN
Schatz12:15 PROPN
- PUNCT
2:00pm PROPN
	 SPACE
Lunch2:00pm PROPN
	 SPACE
" PUNCT
Representation NOUN
for ADP
Discovery PROPN
of ADP
Protein PROPN
Motifs PROPN
" PUNCT
D. PROPN
Conklin PROPN
, PUNCT
S. PROPN
Fortier PROPN
, PUNCT
& CCONJ
J. PROPN
Glasgow2:30pm PROPN
	 SPACE
" PUNCT
Finding PROPN
Relevant PROPN
Biomolecular PROPN
Features PROPN
" PUNCT
   SPACE
L. PROPN
Hunter PROPN
& CCONJ
T. PROPN
Klein3:00pm PROPN
	 SPACE
" PUNCT
Database PROPN
Techniques PROPN
for ADP
Biological PROPN
Materials PROPN
and CCONJ
  SPACE
Methods NOUN
" PUNCT
  SPACE
K. PROPN
Baclawski PROPN
, PUNCT
R. PROPN
Futrelle PROPN
, PUNCT
N. PROPN
Fridman PROPN
, PUNCT
  SPACE
& CCONJ
M.J. PROPN
Pescitelli3:30pm PROPN
	 SPACE
" PUNCT
A DET
Multi ADJ
- ADJ
Level PROPN
Description PROPN
Scheme PROPN
of ADP
Protein PROPN
  SPACE
Conformation PROPN
" PUNCT
  SPACE
K. PROPN
Onizuka PROPN
, PUNCT
K. PROPN
Asai PROPN
, PUNCT
M. PROPN
Ishikawa PROPN
, PUNCT
& CCONJ
S.T.C. PROPN
Wong4:00 PROPN
- PUNCT
4:30pm PROPN
	 SPACE
Break4:30pm PROPN
	 SPACE
" PUNCT
Protein PROPN
Topology PROPN
Prediction PROPN
through ADP
Parallel PROPN
Constraint PROPN
  SPACE
Logic PROPN
Programming PROPN
" PUNCT
  SPACE
D.A. PROPN
Clark PROPN
, PUNCT
C.J. PROPN
Rawlings PROPN
, PUNCT
J. PROPN
Shirazi PROPN
, PUNCT
  SPACE
A. PROPN
Veron PROPN
, PUNCT
& CCONJ
M. PROPN
Reeve5:30pm PROPN
	 SPACE
" PUNCT
A DET
Constraint PROPN
Reasoning NOUN
System NOUN
for ADP
Automating PROPN
Sequence- PROPN
Specific PROPN
Resonance PROPN
Assignments PROPN
in ADP
Multidimensional PROPN
Protein PROPN
NMR PROPN
Spectra PROPN
" PUNCT
  SPACE
D. PROPN
Zimmerman PROPN
, PUNCT
C. PROPN
Kulikowski PROPN
, PUNCT
& CCONJ
G.T. PROPN
Montelione5:30 PROPN
- PUNCT
5:45pm NUM
	 SPACE
Closing NOUN
Remarks PROPN
                         SPACE
POSTER NOUN
SESSIONThe ADJ
following VERB
posters NOUN
will AUX
be AUX
on ADP
display NOUN
at ADP
the DET
Bethesda PROPN
Ramada PROPN
Hotel PROPN
from ADP
7:30 NUM
- PUNCT
10:00pm NOUN
, PUNCT
Wednesday PROPN
, PUNCT
July PROPN
7.[1 NOUN
] PUNCT
" PUNCT
The DET
Induction NOUN
of ADP
Rules PROPN
for ADP
Predicting PROPN
Chemical PROPN
Carcinogenesis PROPN
in ADP
Rodents PROPN
" PUNCT
  SPACE
D. PROPN
Bahler PROPN
& CCONJ
D. PROPN
Bristol[2 PROPN
] PUNCT
" PUNCT
SENEX NOUN
: PUNCT
A DET
CLOS PROPN
/ SYM
CLIM PROPN
Application PROPN
for ADP
Molecular PROPN
Pathology PROPN
" PUNCT
   SPACE
S.S. PROPN
Ball PROPN
& CCONJ
V.H. PROPN
Mah[3 PROPN
] PUNCT
" PUNCT
FLASH NOUN
: PUNCT
A DET
Fast ADJ
Look NOUN
- PUNCT
Up ADP
Algorithm PROPN
for ADP
String PROPN
Homology PROPN
" PUNCT
A. PROPN
Califano PROPN
& CCONJ
I. PROPN
Rigoutsos[4 PROPN
] PUNCT
" PUNCT
Toward ADP
Multi PROPN
- PUNCT
Strategy PROPN
Parallel PROPN
Learning VERB
in ADP
Sequence NOUN
  SPACE
Analysis NOUN
" PUNCT
  SPACE
P.K. PROPN
Chan PROPN
& CCONJ
S.J. PROPN
Stolfo[5 PROPN
] PUNCT
" PUNCT
Protein PROPN
Structure PROPN
Prediction PROPN
: PUNCT
Selecting VERB
Salient NOUN
Features VERB
  SPACE
from ADP
Large PROPN
Candidate PROPN
Pools PROPN
" PUNCT
  SPACE
K.J. PROPN
Cherkauer PROPN
& CCONJ
J.W. PROPN
Shavlik[6 PROPN
] PUNCT
" PUNCT
Comparison PROPN
of ADP
Two NUM
Approaches NOUN
to ADP
the DET
Prediction PROPN
of ADP
Protein PROPN
  SPACE
Folding PROPN
Patterns PROPN
" PUNCT
  SPACE
I. PROPN
Dubchak PROPN
, PUNCT
S.R. PROPN
Holbrook PROPN
, PUNCT
& CCONJ
S.-H. PROPN
Kim[7 PROPN
] PUNCT
" PUNCT
A DET
Modular PROPN
Learning PROPN
Environment PROPN
for ADP
Protein NOUN
Modeling PROPN
" PUNCT
J. PROPN
Gracy PROPN
, PUNCT
L. PROPN
Chiche PROPN
& CCONJ
J. PROPN
Sallantin[8 PROPN
] PUNCT
" PUNCT
Inference NOUN
of ADP
Order NOUN
in ADP
Genetic PROPN
Systems PROPN
" PUNCT
  SPACE
J.N. PROPN
Guidi PROPN
& CCONJ
T.H. PROPN
Roderick[9 PROPN
] PUNCT
" PUNCT
PALM NOUN
- PUNCT
A NOUN
Pattern PROPN
Language PROPN
for ADP
Molecular PROPN
Biology PROPN
" PUNCT
C. PROPN
Helgesen PROPN
& CCONJ
P.R. PROPN
Sibbald[10 PROPN
] PUNCT
" PUNCT
Grammatical PROPN
Formalization PROPN
of ADP
Metabolic PROPN
Processes PROPN
" PUNCT
   SPACE
R. PROPN
Hofestedt[11 PROPN
] PUNCT
" PUNCT
Representations PROPN
of ADP
Metabolic PROPN
Knowledge PROPN
" PUNCT
   SPACE
P.D. PROPN
Karp PROPN
& CCONJ
M. PROPN
Riley[12 PROPN
] PUNCT
" PUNCT
Protein PROPN
Sequencing PROPN
Experiment PROPN
Planning NOUN
Using VERB
Analogy PROPN
" PUNCT
B. PROPN
Kettler PROPN
& CCONJ
L. PROPN
Darden[13 PROPN
] PUNCT
" PUNCT
Design NOUN
of ADP
an DET
Object PROPN
- PUNCT
Oriented VERB
Database PROPN
for ADP
Reverse PROPN
Genetics PROPN
" PUNCT
   SPACE
K.J. PROPN
Kochut PROPN
, PUNCT
J. PROPN
Arnold PROPN
, PUNCT
J.A. PROPN
Miller PROPN
, PUNCT
& CCONJ
W.D. PROPN
Potter[14 PROPN
] PUNCT
" PUNCT
A DET
Small PROPN
Automaton PROPN
for ADP
Word PROPN
Recognition PROPN
in ADP
DNA PROPN
Sequences PROPN
" PUNCT
C. PROPN
Lefevre PROPN
& CCONJ
J.-E PROPN
Ikeda[15 PROPN
] PUNCT
" PUNCT
MultiMap NOUN
: PUNCT
  SPACE
An DET
Expert PROPN
System PROPN
for ADP
Automated PROPN
Genetic PROPN
Linkage PROPN
  SPACE
Mapping NOUN
" PUNCT
  SPACE
T.C. PROPN
Matise PROPN
, PUNCT
M. PROPN
Perlin PROPN
& CCONJ
A. PROPN
Chakravarti[16 PROPN
] PUNCT
" PUNCT
Constructing VERB
a DET
Distributed VERB
Object PROPN
- PUNCT
Oriented VERB
System PROPN
with ADP
Logical ADJ
Constraints PROPN
for ADP
Fluorescence PROPN
- PUNCT
Activated VERB
Cell PROPN
Sorting NOUN
" PUNCT
T. PROPN
Matsushima[17 NOUN
] PUNCT
" PUNCT
Prediction NOUN
of ADP
Primate PROPN
Splice PROPN
Junction PROPN
Gene PROPN
Sequences PROPN
with ADP
  SPACE
a DET
Cooperative PROPN
Knowledge PROPN
Acquisition PROPN
System PROPN
" PUNCT
E.M. PROPN
Nguifo PROPN
& CCONJ
J. PROPN
Sallantin[18 PROPN
] PUNCT
" PUNCT
Object PROPN
- PUNCT
Oriented VERB
Knowledge PROPN
Bases PROPN
for ADP
the DET
Analysis NOUN
of ADP
  SPACE
Prokaryotic ADJ
and CCONJ
Eukaryotic PROPN
Genomes PROPN
" PUNCT
  SPACE
G. PROPN
Perriere PROPN
, PUNCT
F. PROPN
Dorkeld PROPN
, PUNCT
F. PROPN
Rechenmann PROPN
, PUNCT
& CCONJ
C. PROPN
Gautier[19 PROPN
] PUNCT
" PUNCT
Petri PROPN
Net PROPN
Representations PROPN
in ADP
Metabolic PROPN
Pathways PROPN
" PUNCT
V.N. PROPN
Reddy PROPN
, PUNCT
M.L. PROPN
Mavrovouniotis PROPN
, PUNCT
& CCONJ
M.L. PROPN
Liebman[20 PROPN
] PUNCT
" PUNCT
Minimizing VERB
Complexity NOUN
in ADP
Cellular PROPN
Automata PROPN
Models PROPN
of ADP
  SPACE
Self PROPN
- PUNCT
Replication PROPN
" PUNCT
  SPACE
J.A. PROPN
Reggia PROPN
, PUNCT
H.-H. PROPN
Chou PROPN
, PUNCT
S.L. PROPN
Armentrout PROPN
, PUNCT
  SPACE
& CCONJ
Y. PROPN
Peng[21 VERB
] PUNCT
" PUNCT
Building VERB
Large ADJ
Knowledge NOUN
Bases NOUN
in ADP
Molecular PROPN
Biology PROPN
" PUNCT
O. PROPN
Schmeltzer PROPN
, PUNCT
C. PROPN
Medigue PROPN
, PUNCT
P. PROPN
Uvietta PROPN
, PUNCT
F. PROPN
Rechenmann PROPN
, PUNCT
  SPACE
F. PROPN
Dorkeld PROPN
, PUNCT
G. PROPN
Perriere PROPN
, PUNCT
& CCONJ
C. PROPN
Gautier[22 PROPN
] PUNCT
" PUNCT
A DET
Service PROPN
- PUNCT
Oriented VERB
Information PROPN
Sources PROPN
Database PROPN
for ADP
the DET
  SPACE
Biological PROPN
Sciences PROPN
" PUNCT
  SPACE
G.K. PROPN
Springer PROPN
& CCONJ
T.B. PROPN
Patrick[23 PROPN
] PUNCT
" PUNCT
Hidden PROPN
Markov PROPN
Models PROPN
and CCONJ
Iterative ADJ
Aligners NOUN
: PUNCT
Study VERB
of ADP
their PRON
  SPACE
Equivalence PROPN
and CCONJ
Possibilities PROPN
" PUNCT
H. PROPN
Tanaka PROPN
, PUNCT
K. PROPN
Asai PROPN
, PUNCT
M. PROPN
Ishikawa PROPN
, PUNCT
& CCONJ
A. PROPN
Konagaya[24 PROPN
] PUNCT
" PUNCT
Protein PROPN
Structure PROPN
Prediction PROPN
System PROPN
Based VERB
on ADP
Artificial PROPN
  SPACE
Neural PROPN
Networks PROPN
" PUNCT
  SPACE
J. PROPN
Vanhala PROPN
& CCONJ
K. PROPN
Kaski[25 PROPN
] PUNCT
" PUNCT
Transmembrane PROPN
Segment PROPN
Prediction PROPN
from ADP
Protein PROPN
Sequence PROPN
  SPACE
Data PROPN
" PUNCT
  SPACE
S.M. PROPN
Weiss PROPN
, PUNCT
D.M. PROPN
Cohen PROPN
& CCONJ
N. PROPN
Indurkhya PROPN
                      SPACE
TUTORIAL NOUN
PROGRAMTutorials NOUN
will AUX
be AUX
conducted VERB
at ADP
the DET
Bethesda PROPN
Ramada PROPN
Hotel PROPN
on ADP
Tuesday PROPN
, PUNCT
July PROPN
6.12:00 NUM
- PUNCT
2:45pm NUM
" PUNCT
Introduction NOUN
to ADP
Molecular PROPN
Biology PROPN
for ADP
Computer PROPN
  SPACE
Scientists NOUN
" PUNCT
  SPACE
Prof. PROPN
Mick PROPN
Noordewier PROPN
( PUNCT
Rutgers NOUN
University)This ADP
overview NOUN
of ADP
the DET
essential ADJ
facts NOUN
of ADP
molecular ADJ
biology NOUN
is AUX
intended VERB
as SCONJ
an DET
introduction NOUN
to ADP
the DET
field NOUN
for ADP
computer NOUN
scientists NOUN
who PRON
wish VERB
to PART
apply VERB
their PRON
tools NOUN
to ADP
this DET
rich ADJ
and CCONJ
complex ADJ
domain NOUN
. PUNCT
  SPACE
Material PROPN
covered VERB
will AUX
include VERB
structural ADJ
and CCONJ
informational ADJ
molecules NOUN
, PUNCT
the DET
basic ADJ
organization NOUN
of ADP
the DET
cell NOUN
and CCONJ
of ADP
genetic ADJ
material NOUN
, PUNCT
the DET
" PUNCT
central ADJ
dogma NOUN
" PUNCT
of ADP
gene NOUN
expression NOUN
, PUNCT
and CCONJ
selected VERB
other ADJ
topics NOUN
in ADP
the DET
area NOUN
of ADP
structure NOUN
, PUNCT
function NOUN
, PUNCT
and CCONJ
regulation NOUN
as SCONJ
relates VERB
to ADP
current ADJ
computational ADJ
approaches NOUN
. PUNCT
  SPACE
Dr. PROPN
Noordewier PROPN
has AUX
appointments NOUN
in ADP
both DET
Computer PROPN
Science PROPN
and CCONJ
Biology NOUN
at ADP
Rutgers PROPN
, PUNCT
and CCONJ
has AUX
extensive ADJ
experience NOUN
in ADP
basic ADJ
biological ADJ
research NOUN
in ADP
addition NOUN
to ADP
his PRON
current ADJ
work NOUN
in ADP
computational ADJ
biology.12:00 NOUN
- PUNCT
2:45pm NUM
" PUNCT
Introduction NOUN
to ADP
Artificial PROPN
Intelligence PROPN
for ADP
  SPACE
Biologists NOUN
" PUNCT
  SPACE
Dr. PROPN
Richard PROPN
Lathrop PROPN
( PUNCT
MIT PROPN
& CCONJ
Arris PROPN
Corp.)An VERB
overview NOUN
of ADP
the DET
field NOUN
of ADP
artificial ADJ
intelligence NOUN
will AUX
be AUX
presented VERB
, PUNCT
as SCONJ
it PRON
relates VERB
to ADP
actual ADJ
and CCONJ
potential ADJ
biological ADJ
applications NOUN
. PUNCT
  SPACE
Fundamental ADJ
techniques NOUN
, PUNCT
symbolic ADJ
programming NOUN
languages NOUN
, PUNCT
and CCONJ
notions NOUN
of ADP
search NOUN
will AUX
be AUX
discussed VERB
, PUNCT
as ADV
well ADV
as SCONJ
selected VERB
topics NOUN
in ADP
somewhat ADV
greater ADJ
detail NOUN
, PUNCT
such ADJ
as SCONJ
knowledge NOUN
representation NOUN
, PUNCT
inference NOUN
, PUNCT
and CCONJ
machine NOUN
learning NOUN
. PUNCT
  SPACE
The DET
intended VERB
audience NOUN
includes VERB
biologists NOUN
with ADP
some DET
computational ADJ
background NOUN
, PUNCT
but CCONJ
no DET
extensive ADJ
exposure NOUN
to ADP
artificial ADJ
intelligence NOUN
. PUNCT
  SPACE
Dr. PROPN
Lathrop PROPN
, PUNCT
co NOUN
- NOUN
developer NOUN
of ADP
ARIADNE PROPN
and CCONJ
related VERB
technologies NOUN
, PUNCT
has AUX
worked VERB
in ADP
the DET
area NOUN
of ADP
artificial ADJ
intelligence NOUN
applied VERB
to ADP
biological ADJ
problems NOUN
in ADP
both CCONJ
academia NOUN
and CCONJ
industry.3:00 PROPN
- PUNCT
5:45pm NUM
" PUNCT
Neural PROPN
Networks PROPN
, PUNCT
Statistics PROPN
, PUNCT
and CCONJ
Information PROPN
Theory PROPN
  SPACE
in ADP
Biological PROPN
Sequence PROPN
Analysis PROPN
" PUNCT
Dr. PROPN
Alan PROPN
Lapedes PROPN
( PUNCT
Los PROPN
Alamos PROPN
  SPACE
National PROPN
Laboratory PROPN
) PUNCT
This DET
tutorial NOUN
will AUX
cover VERB
the DET
most ADV
rapidly ADV
- PUNCT
expanding VERB
facet NOUN
of ADP
intelligent ADJ
systems NOUN
for ADP
molecular ADJ
biology NOUN
, PUNCT
that DET
of ADP
machine NOUN
learning NOUN
techniques NOUN
applied VERB
to ADP
sequence NOUN
analysis NOUN
. PUNCT
  SPACE
Closely ADV
interrelated VERB
topics NOUN
to PART
be AUX
addressed VERB
include VERB
the DET
use NOUN
of ADP
artifical ADJ
neural ADJ
networks NOUN
to ADP
elicit ADJ
both DET
specific ADJ
signals NOUN
and CCONJ
general ADJ
characteristics NOUN
of ADP
sequences NOUN
, PUNCT
and CCONJ
the DET
relationship NOUN
of ADP
such ADJ
approaches NOUN
to ADP
statistical ADJ
techniques NOUN
and CCONJ
information NOUN
- PUNCT
theoretic NOUN
views NOUN
of ADP
sequence NOUN
data NOUN
. PUNCT
  SPACE
Dr. PROPN
Lapedes PROPN
, PUNCT
of ADP
the DET
Theoretical PROPN
Division PROPN
at ADP
Los PROPN
Alamos PROPN
, PUNCT
has AUX
long ADV
been AUX
a DET
leader NOUN
in ADP
the DET
use NOUN
of ADP
such ADJ
techniques NOUN
in ADP
this DET
domain.3:00 PROPN
- PUNCT
5:45pm NUM
" PUNCT
Genetic ADJ
Algorithms PROPN
and CCONJ
Genetic PROPN
Programming PROPN
" PUNCT
  SPACE
Prof. PROPN
John PROPN
Koza PROPN
( PUNCT
Stanford PROPN
University)The PROPN
genetic ADJ
algorithm NOUN
, PUNCT
an DET
increasingly ADV
popular ADJ
approach NOUN
to ADP
highly ADV
non ADJ
- ADJ
linear ADJ
multi ADJ
- ADJ
dimensional ADJ
optimization NOUN
problems NOUN
, PUNCT
was AUX
originally ADV
inspired VERB
by ADP
a DET
biological ADJ
metaphor NOUN
. PUNCT
  SPACE
This DET
tutorial NOUN
will AUX
cover VERB
both DET
the DET
biological ADJ
motivations NOUN
, PUNCT
and CCONJ
the DET
actual ADJ
implementation NOUN
and CCONJ
characteristics NOUN
of ADP
the DET
algorithm NOUN
. PUNCT
  SPACE
Genetic PROPN
Programming PROPN
, PUNCT
an DET
extension NOUN
well ADV
- PUNCT
suited VERB
to ADP
problems NOUN
where ADV
the DET
discovery NOUN
of ADP
the DET
size NOUN
and CCONJ
shape NOUN
of ADP
the DET
solution NOUN
is AUX
a DET
major ADJ
part NOUN
of ADP
the DET
problem NOUN
, PUNCT
will AUX
also ADV
be AUX
addressed VERB
. PUNCT
  SPACE
Particular ADJ
attention NOUN
will AUX
be AUX
paid VERB
to ADP
biological ADJ
applications NOUN
, PUNCT
and CCONJ
to ADP
identifying VERB
resources NOUN
and CCONJ
software NOUN
that PRON
will AUX
permit VERB
attendees NOUN
to PART
begin VERB
using VERB
the DET
methods NOUN
. PUNCT
  SPACE
Dr. PROPN
Koza PROPN
, PUNCT
a DET
Consulting PROPN
Professor PROPN
of ADP
Computer PROPN
Science PROPN
at ADP
Stanford PROPN
, PUNCT
has AUX
taught VERB
this DET
subject NOUN
since SCONJ
1988 NUM
and CCONJ
is AUX
the DET
author NOUN
of ADP
a DET
standard ADJ
text NOUN
in ADP
the DET
field.3:00 PROPN
- PUNCT
5:45pm NUM
" PUNCT
Linguistic ADJ
Methods NOUN
in ADP
Sequence PROPN
Analysis NOUN
" PUNCT
  SPACE
Prof. PROPN
David PROPN
Searls PROPN
( PUNCT
University PROPN
of ADP
Pennsylvania PROPN
) PUNCT
  SPACE
& CCONJ
Shmuel PROPN
Pietrokovski PROPN
( PUNCT
Weizmann PROPN
Institute)Approaches NOUN
to PART
sequence VERB
analysis NOUN
based VERB
on ADP
linguistic ADJ
methodologies NOUN
are AUX
increasingly ADV
in ADP
evidence NOUN
. PUNCT
  SPACE
These DET
involve VERB
the DET
adaptation NOUN
of ADP
tools NOUN
and CCONJ
techniques NOUN
from ADP
computational ADJ
linguistics NOUN
for ADP
syntactic ADJ
pattern NOUN
recognition NOUN
and CCONJ
gene NOUN
prediction NOUN
, PUNCT
the DET
classification NOUN
of ADP
genetic ADJ
structures NOUN
and CCONJ
phenomena NOUN
using VERB
formal ADJ
language NOUN
theory NOUN
, PUNCT
the DET
identification NOUN
of ADP
significant ADJ
vocabularies NOUN
and CCONJ
overlapping VERB
codes NOUN
in ADP
sequence NOUN
data NOUN
, PUNCT
and CCONJ
sequence NOUN
comparison NOUN
reflecting VERB
taxonomic ADJ
and CCONJ
functional ADJ
relatedness NOUN
. PUNCT
  SPACE
Dr. PROPN
Searls PROPN
, PUNCT
who PRON
holds VERB
research NOUN
faculty NOUN
appointments NOUN
in ADP
both DET
Genetics PROPN
and CCONJ
Computer PROPN
Science PROPN
at ADP
Penn PROPN
, PUNCT
represents VERB
the DET
branch NOUN
of ADP
this DET
field NOUN
that PRON
considers VERB
higher ADJ
- PUNCT
order NOUN
syntactic ADJ
approaches NOUN
to PART
sequence VERB
data NOUN
, PUNCT
while SCONJ
Shmuel PROPN
Pietrokovski PROPN
has AUX
studied VERB
and CCONJ
published VERB
with ADP
Prof. PROPN
Edward PROPN
Trifinov PROPN
in ADP
the DET
area NOUN
of ADP
word NOUN
- PUNCT
based VERB
analyses NOUN
. PUNCT
                      SPACE
REGISTRATION PROPN
FORMMail NOUN
, PUNCT
with ADP
check NOUN
made VERB
out ADP
to ADP
" PUNCT
ISMB-93 PROPN
" PUNCT
, PUNCT
to PART
: PUNCT
               SPACE
ISMB PROPN
Conference PROPN
, PUNCT
c PROPN
/ SYM
o X
J. PROPN
Shavlik PROPN
               SPACE
Computer PROPN
Sciences PROPN
Department PROPN
               SPACE
University PROPN
of ADP
Wisconsin PROPN
               SPACE
1210 NUM
West PROPN
Dayton PROPN
Street PROPN
               SPACE
Madison PROPN
, PUNCT
WI PROPN
53706 NUM
  SPACE
USA PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
Name NOUN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
	         SPACE
Affiliation PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
	         SPACE
Address PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
Phone PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
FAX PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
Electronic PROPN
Mail PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
	         SPACE
Registration PROPN
Status PROPN
: PUNCT
_ PROPN
_ PROPN
_ PROPN
_ PROPN
Regular ADJ
   SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
Student PROPN
        SPACE
Presenting PROPN
? PUNCT
          SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
Talk PROPN
      SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
Poster NOUN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
TUTORIAL NOUN
REGISTRATION NOUN
         SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
" PUNCT
Molecular PROPN
Biology PROPN
for ADP
Computer PROPN
Scientists PROPN
" PUNCT
         SPACE
or CCONJ
        SPACE
_ NOUN
_ PROPN
_ PROPN
_ DET
" PUNCT
Artificial PROPN
Intelligence PROPN
for ADP
Biologists PROPN
" PUNCT
         SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
         SPACE
_ PROPN
_ PROPN
_ PROPN
_ DET
" PUNCT
Neural PROPN
Networks PROPN
, PUNCT
Statistics PROPN
, PUNCT
and CCONJ
          SPACE
or CCONJ
     SPACE
Information PROPN
Theory PROPN
in ADP
Sequence PROPN
Analysis PROPN
" PUNCT
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ DET
" PUNCT
Genetic PROPN
Algorithms PROPN
and CCONJ
Genetic PROPN
Programming PROPN
" PUNCT
         SPACE
or CCONJ
         SPACE
_ PROPN
_ PROPN
_ PROPN
_ DET
" PUNCT
Linguistic ADJ
Methods NOUN
in ADP
Sequence PROPN
Analysis NOUN
" PUNCT
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
PAYMENT NOUN
       SPACE
( PUNCT
Early PROPN
Registration PROPN
Before ADP
June PROPN
1 NUM
) PUNCT
        SPACE
Registration NOUN
: PUNCT
  SPACE
Early ADJ
   SPACE
Late PROPN
	     SPACE
$ SYM
_ NOUN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
              SPACE
Regular PROPN
  SPACE
$ SYM
100 NUM
    SPACE
$ SYM
125 NUM
	               SPACE
Student PROPN
  SPACE
$ SYM
75 NUM
     SPACE
$ SYM
100 NUM
	         SPACE
Tutorials NOUN
: PUNCT
     SPACE
One NUM
      SPACE
Two NUM
         SPACE
$ SYM
_ NOUN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
              SPACE
Regular PROPN
  SPACE
$ SYM
50 NUM
      SPACE
$ SYM
65 NUM
	               SPACE
Student PROPN
  SPACE
$ SYM
25 NUM
      SPACE
$ SYM
35 NUM
	         SPACE
Total NOUN
: PUNCT
                              SPACE
$ SYM
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
Registration NOUN
fees NOUN
include VERB
conference NOUN
proceedings NOUN
, PUNCT
         SPACE
refreshments NOUN
, PUNCT
and CCONJ
general ADJ
program NOUN
expenses NOUN
. PUNCT
                       SPACE
ORGANIZING NOUN
COMMITTEE PROPN
        SPACE
Lawrence PROPN
Hunter PROPN
                              SPACE
NLM PROPN
         SPACE
David PROPN
Searls PROPN
                  SPACE
U. PROPN
of ADP
Pennsylvania PROPN
        SPACE
Jude PROPN
Shavlik PROPN
                     SPACE
U. PROPN
of ADP
Wisconsin PROPN
                        SPACE
PROGRAM PROPN
COMMITTEE PROPN
        SPACE
Douglas PROPN
Brutlag PROPN
                      SPACE
Stanford PROPN
U. PROPN
        SPACE
Bruce PROPN
Buchanan PROPN
                  SPACE
U. PROPN
of ADP
Pittsburgh PROPN
        SPACE
Christian PROPN
Burks PROPN
          SPACE
Los PROPN
Alamos PROPN
National PROPN
Lab PROPN
        SPACE
Fred PROPN
Cohen PROPN
                    SPACE
U.C.-San NUM
Francisco PROPN
        SPACE
Chris PROPN
Fields PROPN
           SPACE
Inst PROPN
. PUNCT
for ADP
Genome PROPN
Research PROPN
        SPACE
Michael PROPN
Gribskov PROPN
                  SPACE
U.C.-San ADP
Diego PROPN
        SPACE
Peter PROPN
Karp PROPN
                     SPACE
SRI PROPN
International PROPN
        SPACE
Toni PROPN
Kazic PROPN
                         SPACE
Washington PROPN
U. PROPN
        SPACE
Alan PROPN
Lapedes PROPN
             SPACE
Los PROPN
Alamos PROPN
National PROPN
Lab PROPN
        SPACE
Richard PROPN
Lathrop PROPN
                SPACE
MIT PROPN
& CCONJ
Arris PROPN
Corp. PROPN
        SPACE
Charles PROPN
Lawrence PROPN
                          SPACE
Baylor PROPN
         SPACE
Michael PROPN
Mavrovouniotis PROPN
            SPACE
U. PROPN
of ADP
Maryland PROPN
        SPACE
George PROPN
Michaels PROPN
                              SPACE
NIH PROPN
        SPACE
Harold PROPN
Morowitz PROPN
                  SPACE
George PROPN
Mason PROPN
U. PROPN
        SPACE
Katsumi PROPN
Nitta PROPN
                               SPACE
ICOT PROPN
        SPACE
Mick PROPN
Noordewier PROPN
                       SPACE
Rutgers PROPN
U. PROPN
        SPACE
Ross PROPN
Overbeek PROPN
               SPACE
Argonne PROPN
National PROPN
Lab PROPN
        SPACE
Chris PROPN
Rawlings PROPN
                              SPACE
ICRF PROPN
        SPACE
Derek PROPN
Sleeman PROPN
                     SPACE
U. PROPN
of ADP
Aberdeen PROPN
        SPACE
David PROPN
States PROPN
                       SPACE
Washington PROPN
U. PROPN
        SPACE
Gary PROPN
Stormo PROPN
                       SPACE
U. PROPN
of ADP
Colorado PROPN
        SPACE
Ed PROPN
Uberbacher PROPN
             SPACE
Oak PROPN
Ridge PROPN
National PROPN
Lab PROPN
        SPACE
David PROPN
Waltz PROPN
              SPACE
Thinking PROPN
Machines PROPN
Corp PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59155From NUM
: PUNCT
green@island NOUN
. PUNCT
COM PROPN
( PUNCT
Robert PROPN
Greenstein)Subject NUM
: PUNCT
Re ADP
: PUNCT
accupuncture NOUN
and CCONJ
AIDSIn NOUN
article NOUN
< X
C5t76D.2x6@news.cso.uiuc.edu NOUN
> X
euclid@mrcnext.cso.uiuc.edu NOUN
( PUNCT
Euclid PROPN
K. PROPN
) PUNCT
writes:>aliceb@tea4two PUNCT
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Alice PROPN
Taylor PROPN
) PUNCT
writes:>>>A DET
friend NOUN
of ADP
mine NOUN
is AUX
seeing VERB
an DET
acupuncturist NOUN
and>>wants NOUN
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
danger NOUN
of ADP
getting>>AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
> X
> X
	 SPACE
Ask VERB
the DET
practitioner NOUN
whether SCONJ
he PRON
uses VERB
the DET
pre ADJ
- ADJ
sterilized VERB
disposable ADJ
> X
needles NOUN
, PUNCT
or CCONJ
if SCONJ
he PRON
reuses VERB
needles NOUN
, PUNCT
sterilizing VERB
them PRON
between ADP
use NOUN
. PUNCT
  SPACE
In ADP
the DET
> X
former ADJ
case NOUN
there PRON
's AUX
no DET
conceivable ADJ
way NOUN
to PART
get AUX
AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
  SPACE
In ADP
> X
the DET
latter ADJ
case NOUN
it PRON
's AUX
highly ADV
unlikely ADJ
( PUNCT
though SCONJ
many ADJ
practitioners NOUN
use VERB
the DET
> X
disposable ADJ
variety NOUN
anyway).It ADV
is AUX
illegal ADJ
to PART
perform VERB
acupuncture NOUN
with ADP
unsterilized ADJ
needles NOUN
. PUNCT
No DET
licensedpractitioner NOUN
would AUX
dare VERB
do AUX
this DET
. PUNCT
Also ADV
there PRON
is AUX
not PART
a DET
single ADJ
documented VERB
caseof NOUN
transmission NOUN
of ADP
AIDS PROPN
via ADP
acupuncture NOUN
needles NOUN
. PUNCT
I PRON
would AUX
n't PART
worry VERB
about ADP
it.-- NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Robert PROPN
Greenstein PROPN
           SPACE
What PRON
the DET
fool NOUN
can AUX
not PART
learn VERB
he PRON
laughs VERB
at ADP
, PUNCT
thinkinggreen@srilanka.island.com X
   SPACE
that SCONJ
by ADP
his PRON
laughter NOUN
he PRON
shows VERB
superiority NOUN
instead ADV
                            SPACE
of ADP
latent NOUN
idiocy PROPN
- PUNCT
M. PROPN
CorelliNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59156From NUM
: PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)Subject PROPN
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)A PROPN
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn'sdisease PROPN
. PUNCT
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
without ADP
discomfort NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
theproblems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric).Thanks NOUN
in ADP
advance NOUN
, PUNCT
John PROPN
Eylesjge@cs.unc.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59157From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject PROPN
: PUNCT
NeurastheniaIn ADV
article NOUN
< X
1993Apr21.174553.812@spdcc.com PROPN
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>responds VERB
well ADV
, PUNCT
if SCONJ
you PRON
're AUX
not PART
otherwise ADV
immunocompromised VERB
. PUNCT
  SPACE
Noring's PROPN
> X
anal ADJ
- PUNCT
retentive ADJ
idee NOUN
fixe NOUN
on ADP
having VERB
a DET
fungal ADJ
infection NOUN
in ADP
his PRON
sinuses NOUN
> X
is AUX
not PART
even ADV
in ADP
the DET
same ADJ
category NOUN
here ADV
, PUNCT
nor CCONJ
are AUX
these DET
walking VERB
neurasthenics NOUN
> X
who PRON
are AUX
convinced ADJ
they PRON
have AUX
" PUNCT
candida PROPN
" PUNCT
from ADP
reading VERB
a DET
quack NOUN
book NOUN
. PUNCT
Speaking VERB
of ADP
which PRON
, PUNCT
has AUX
anyone PRON
else ADV
been AUX
impressed ADJ
with ADP
how ADV
much ADJ
the DET
descriptions NOUN
of ADP
neurasthenia PROPN
published VERB
a DET
century NOUN
ago ADV
sound NOUN
like SCONJ
CFS?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59158From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr22.001642.9186@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>>>Can AUX
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>>>the ADP
lost ADJ
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>>>exceeds PROPN
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>>>is NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>>>>>Annals PROPN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>>>>>Hmmm NUM
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressive>>behavior PROPN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)>>I NUM
purposefully ADV
left VERB
off ADP
the DET
page NOUN
numbers NOUN
to PART
encourage VERB
the DET
reader NOUN
to ADP
> X
study VERB
the DET
volumes NOUN
mentioned VERB
, PUNCT
and CCONJ
benefit VERB
therefrom.>Good NOUN
story NOUN
, PUNCT
Chuck PROPN
, PUNCT
but CCONJ
it PRON
wo AUX
n't PART
wash VERB
. PUNCT
  SPACE
I PRON
have AUX
read VERB
the DET
NY PROPN
Acad PROPN
Scione PROPN
( PUNCT
and CCONJ
have AUX
it PRON
) PUNCT
. PUNCT
  SPACE
This DET
AM NOUN
I PRON
could AUX
n't PART
find VERB
any DET
reference NOUN
to"weight CCONJ
rebound NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
it PRON
is AUX
n't PART
there ADV
, PUNCT
but CCONJ
since SCONJ
youcited VERB
it PRON
, PUNCT
it PRON
is AUX
your PRON
responsibility NOUN
to PART
show VERB
me PRON
where ADV
it PRON
is AUX
in ADV
there ADV
. PUNCT
There PRON
is AUX
no DET
index NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
you PRON
overstepped VERB
your PRON
knowledge NOUN
base NOUN
, PUNCT
as SCONJ
usual.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59159Subject NUM
: PUNCT
good ADJ
bookFrom PROPN
: PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg)Having PROPN
been AUX
gone VERB
for ADP
10 NUM
days NOUN
, PUNCT
I PRON
'm AUX
way ADV
behind ADV
on ADP
my PRON
News PROPN
reading NOUN
, PUNCT
so SCONJ
manypardons NOUN
if SCONJ
I PRON
am AUX
repeating VERB
something PRON
that PRON
has AUX
been AUX
said VERB
already ADV
. PUNCT
I PRON
read VERB
a DET
good ADJ
book NOUN
while SCONJ
I PRON
was AUX
away ADV
, PUNCT
THE DET
ANTIBIOTIC PROPN
PARADOX NOUN
: PUNCT
HOW ADV
MIRACLE NOUN
DRUGSARE NOUN
DESTROYING VERB
THE DET
MIRACLE NOUN
, PUNCT
Stuart PROPN
B. PROPN
Levy PROPN
, PUNCT
M.D. PROPN
, PUNCT
1992 NUM
, PUNCT
Plenum PROPN
Press PROPN
, PUNCT
ISBN:0 PROPN
- PUNCT
306 NUM
- PUNCT
44331 NUM
- PUNCT
7.It PROPN
is AUX
about ADP
drug NOUN
resistant ADJ
microorganisms NOUN
& CCONJ
the DET
history NOUN
of ADP
antibiotics NOUN
. PUNCT
  SPACE
Itis PROPN
interesting ADJ
& CCONJ
written VERB
at ADP
a DET
level NOUN
which PRON
I PRON
think VERB
many ADJ
sci.med PUNCT
readers NOUN
wouldappreciate VERB
-- PUNCT
which PRON
is AUX
: PUNCT
  SPACE
it PRON
assumes VERB
an DET
intelligent ADJ
reader NOUN
who PRON
is AUX
capable ADJ
ofunderstanding VERB
scientific ADJ
concepts NOUN
, PUNCT
but CCONJ
who PRON
may AUX
not PART
yet ADV
have AUX
been AUX
exposed VERB
tothis DET
particular ADJ
information NOUN
. PUNCT
I.e. PROPN
, PUNCT
it PRON
assumes VERB
you PRON
are AUX
smart ADJ
enough ADJ
tounderstand NOUN
it PRON
, PUNCT
but CCONJ
it PRON
does AUX
not PART
assume VERB
that SCONJ
you PRON
already ADV
have AUX
a DET
degree NOUN
inmicrobiology NOUN
or CCONJ
medicine NOUN
. PUNCT
Table NOUN
of ADP
contents NOUN
: PUNCT
Chapter NOUN
1 NUM
	 SPACE
From ADP
Tragedy PROPN
the DET
Antibiotic PROPN
Age PROPN
is AUX
BornChapter PROPN
2 NUM
	 SPACE
The DET
Disease PROPN
and CCONJ
the DET
Cure NOUN
: PUNCT
  SPACE
The DET
Microscopic PROPN
World PROPN
of ADP
Bacteria PROPN
and CCONJ
	 SPACE
AntibioticsChapter PROPN
3 NUM
	 SPACE
Reliance PROPN
on ADP
Medicine PROPN
and CCONJ
Self PROPN
- PUNCT
Medication PROPN
: PUNCT
The DET
Seeds PROPN
of ADP
Antibiotic PROPN
	 SPACE
MisuseChapter PROPN
4 NUM
	 SPACE
Antibiotic PROPN
Resistance NOUN
: PUNCT
  SPACE
Microbial PROPN
Adaptation PROPN
and CCONJ
EvolutionChapter PROPN
5 NUM
	 SPACE
The DET
Antibiotic PROPN
MythChapter PROPN
6 NUM
	 SPACE
Antibiotics NOUN
, PUNCT
Animals PROPN
and CCONJ
the DET
Resistance PROPN
Gene PROPN
PoolChapter PROPN
7 NUM
	 SPACE
Further PROPN
Ecological PROPN
Considerations PROPN
: PUNCT
  SPACE
Antibiotic PROPN
Use PROPN
in ADP
Agriculture PROPN
, PUNCT
	 SPACE
Aquaculture PROPN
, PUNCT
Pets PROPN
, PUNCT
and CCONJ
Minor PROPN
Animal PROPN
SpeciesChapter PROPN
8 NUM
	 SPACE
Future PROPN
Prospects NOUN
: PUNCT
  SPACE
New PROPN
Advances NOUN
Against ADP
Potential PROPN
DisasterChapter PROPN
9 NUM
	 SPACE
The DET
Individual PROPN
and CCONJ
Antibiotic PROPN
ResistanceChapter PROPN
10 NUM
	 SPACE
Antibiotic PROPN
Resistance PROPN
: PUNCT
A DET
Societal ADJ
Issue NOUN
at ADP
Local PROPN
, PUNCT
National PROPN
, PUNCT
and CCONJ
	 SPACE
International PROPN
Levels PROPN
. PUNCT
Includes VERB
bibliography NOUN
and CCONJ
index NOUN
. PUNCT
I PRON
personally ADV
found VERB
that SCONJ
it PRON
made VERB
very ADV
good ADJ
Airplane PROPN
- PUNCT
Reading.-rg------------------------Ruth PROPN
Ginzberg PROPN
< X
rginzberg@eagle.wesleyan.edu>Philosophy NOUN
Department;Wesleyan PROPN
University;USANewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59160From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>>In NOUN
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>>The NUM
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of>>a NOUN
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving>>the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the>>most PROPN
likely ADJ
explanation NOUN
for ADP
events NOUN
. PUNCT
   SPACE
The DET
following VERB
is AUX
from ADP
a DET
critique NOUN
of ADP
a DET
" PUNCT
60 NUM
Minutes PROPN
" PUNCT
presentation NOUN
on ADP
MSG PROPN
   SPACE
which PRON
was AUX
aired VERB
on ADP
November PROPN
3rd NOUN
, PUNCT
1991 NUM
. PUNCT
  SPACE
The DET
critique NOUN
comes VERB
from ADP
THE DET
TUFTS PROPN
   SPACE
DIET PROPN
AND CCONJ
NUTRITION PROPN
LETTER PROPN
, PUNCT
February PROPN
1992 NUM
. PUNCT
  SPACE
[ PUNCT
... PUNCT
edited VERB
for ADP
brevity NOUN
... PUNCT
] PUNCT
	 SPACE
" PUNCT
Chances NOUN
are AUX
good ADJ
that SCONJ
if SCONJ
you PRON
watched VERB
' PUNCT
60 NUM
Minutes PROPN
' PART
last ADJ
November PROPN
	 SPACE
3rd ADJ
[ PUNCT
1991 NUM
] PUNCT
, PUNCT
you PRON
came VERB
away ADV
feeling VERB
MSG PROPN
is AUX
bad ADJ
for ADP
you PRON
. PUNCT
[ PUNCT
... PUNCT
] PUNCT
In ADP
	 SPACE
the DET
segment NOUN
entitled VERB
' PUNCT
No DET
MSG NOUN
, PUNCT
' PUNCT
for ADP
instance NOUN
, PUNCT
show NOUN
host NOUN
Ed PROPN
Bradley PROPN
	 SPACE
makes VERB
alarming ADJ
statements NOUN
without ADP
adequately ADV
substantiating VERB
them PRON
	 SPACE
( PUNCT
' PUNCT
millions NOUN
are AUX
suffering VERB
a DET
host NOUN
of ADP
symptoms NOUN
, PUNCT
and CCONJ
some DET
get VERB
violently ADV
	 SPACE
sick ADJ
' PUNCT
) PUNCT
; PUNCT
peppers VERB
his PRON
report NOUN
with ADP
sensational ADJ
but CCONJ
clinically ADV
unproven ADJ
	 SPACE
personal ADJ
testimony NOUN
... PUNCT
; PUNCT
and CCONJ
speaks VERB
of ADP
studies NOUN
on ADP
MSG PROPN
that PRON
make VERB
the DET
	 SPACE
substance NOUN
seem VERB
harmful ADJ
without ADP
explaining VERB
just ADV
how ADV
inconclusive ADJ
	 SPACE
those DET
studies NOUN
are AUX
. PUNCT
	 SPACE
Consider VERB
his PRON
making VERB
reference NOUN
at ADP
the DET
beginning NOUN
of ADP
the DET
program NOUN
to PART
	 SPACE
a DET
study NOUN
conducted VERB
at ADP
the DET
Eastern PROPN
Virginia PROPN
Medical PROPN
School PROPN
in ADP
order NOUN
	 SPACE
to PART
back VERB
up ADP
his PRON
comment NOUN
that SCONJ
there PRON
is AUX
' PUNCT
a DET
lot NOUN
of ADP
evidence NOUN
' PUNCT
that SCONJ
MSG PROPN
, PUNCT
	 SPACE
a DET
flavor NOUN
enhancer NOUN
in ADP
Chinese ADJ
and CCONJ
other ADJ
Asian ADJ
cuisines NOUN
as ADV
well ADV
as SCONJ
	 SPACE
in ADP
many ADJ
supermarket NOUN
items NOUN
, PUNCT
causes VERB
headaches NOUN
. PUNCT
  SPACE
What PRON
he PRON
does AUX
NOT ADV
	 SPACE
make VERB
reference NOUN
to ADP
is AUX
the DET
fact NOUN
that SCONJ
the DET
study NOUN
was AUX
performed VERB
not PART
on ADP
	 SPACE
humans NOUN
but CCONJ
on ADP
rabbits NOUN
. PUNCT
	 SPACE
One NUM
of ADP
the DET
researchers NOUN
who PRON
conducted VERB
the DET
study NOUN
, PUNCT
pharmacologist NOUN
	 SPACE
Patricia PROPN
Williams PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
says VERB
it PRON
certainly ADV
is AUX
conceivable ADJ
that PRON
	 SPACE
a DET
small ADJ
minority NOUN
of ADP
people NOUN
are AUX
sensitive ADJ
enough ADV
to ADP
MSG PROPN
to PART
get AUX
	 SPACE
headaches NOUN
from ADP
it PRON
. PUNCT
  SPACE
' PUNCT
But CCONJ
, PUNCT
' PUNCT
she PRON
explains VERB
, PUNCT
' PUNCT
the DET
show NOUN
probably ADV
	 SPACE
overemphasized VERB
the DET
extent NOUN
of ADP
the DET
problem NOUN
. PUNCT
' PUNCT
	 SPACE
A DET
second ADJ
lapse NOUN
comes VERB
with ADP
mention NOUN
of ADP
Dr. PROPN
John PROPN
Olney PROPN
, PUNCT
a DET
professor NOUN
	 SPACE
at ADP
the DET
Washington PROPN
University PROPN
School PROPN
of ADP
Medicine PROPN
who PRON
, PUNCT
Mr. PROPN
Bradley PROPN
	 SPACE
remarks NOUN
, PUNCT
' PUNCT
says VERB
that SCONJ
his PRON
20 NUM
years NOUN
of ADP
research NOUN
with ADP
laboratory NOUN
	 SPACE
animals NOUN
shows VERB
MSG PROPN
is AUX
a DET
hazard NOUN
for ADP
developing VERB
youngsters NOUN
' PUNCT
because SCONJ
	 SPACE
it PRON
poses VERB
a DET
threat NOUN
of ADP
irreversible ADJ
brain NOUN
damage NOUN
. PUNCT
  SPACE
Dr. PROPN
Olney PROPN
's PART
	 SPACE
research NOUN
with ADP
lab NOUN
animals NOUN
does AUX
not PART
' PUNCT
show VERB
' PUNCT
anything PRON
about ADP
human NOUN
	 SPACE
youngsters NOUN
. PUNCT
	 SPACE
In ADP
fact NOUN
, PUNCT
only ADV
under ADP
extreme ADJ
circumsrtances NOUN
did AUX
Dr. PROPN
Olney PROPN
's PART
	 SPACE
experiments NOUN
ever ADV
bring VERB
about ADP
any DET
brain NOUN
damage NOUN
: PUNCT
when ADV
he PRON
injected VERB
	 SPACE
extremely ADV
high ADJ
doses NOUN
of ADP
MSG PROPN
into ADP
rodents NOUN
, PUNCT
completely ADV
bypassing VERB
	 SPACE
their PRON
digestive ADJ
tracts NOUN
and CCONJ
entering VERB
their PRON
bloodstreams NOUN
more ADV
directly ADV
, PUNCT
	 SPACE
and CCONJ
when ADV
he PRON
used VERB
tubes NOUN
to ADP
force NOUN
- PUNCT
feed VERB
huge ADJ
amounts NOUN
of ADP
the DET
substance NOUN
	 SPACE
to ADP
very ADV
young ADJ
animals NOUN
on ADP
an DET
empty ADJ
stomach NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
neither CCONJ
	 SPACE
of ADP
those DET
procedures NOUN
occurs VERB
with ADP
humans NOUN
; PUNCT
they PRON
simply ADV
take VERB
in ADP
MSG PROPN
	 SPACE
with ADP
food NOUN
. PUNCT
  SPACE
And CCONJ
most ADJ
of ADP
what PRON
they PRON
take VERB
in ADP
is AUX
broken VERB
down ADP
by ADP
	 SPACE
enzymes NOUN
in ADP
the DET
wall NOUN
of ADP
the DET
small ADJ
intestine NOUN
, PUNCT
so SCONJ
that SCONJ
very ADV
little ADJ
	 SPACE
reaches VERB
the DET
bloodstream NOUN
-- PUNCT
much ADV
to ADP
little ADJ
, PUNCT
in ADP
fact NOUN
, PUNCT
for ADP
human NOUN
	 SPACE
blood NOUN
levels NOUN
of ADP
MSG PROPN
to PART
come VERB
anywhere ADV
near SCONJ
the DET
high ADJ
concentrations NOUN
	 SPACE
found VERB
in ADP
Dr. PROPN
Olney PROPN
's PART
lab NOUN
animals NOUN
..... PUNCT
	 SPACE
The DET
World PROPN
Health PROPN
Organization PROPN
appears VERB
to PART
be AUX
very ADV
much ADV
aware ADJ
of ADP
	 SPACE
that DET
fact NOUN
. PUNCT
  SPACE
And CCONJ
so ADV
does AUX
the DET
European PROPN
Communities PROPN
' PART
Scientific PROPN
	 SPACE
Committee PROPN
for ADP
Food PROPN
.... PUNCT
Both DET
, PUNCT
after ADP
examining VERB
numerous ADJ
studies NOUN
, PUNCT
	 SPACE
have AUX
concluded VERB
that SCONJ
MSG PROPN
is AUX
safe ADJ
. PUNCT
	 SPACE
Their PRON
determination NOUN
makes VERB
sense NOUN
, PUNCT
considering VERB
that SCONJ
MSG PROPN
has AUX
never ADV
	 SPACE
been AUX
proven VERB
to PART
cause VERB
all DET
the DET
symptoms NOUN
that PRON
have AUX
been AUX
attributed VERB
	 SPACE
to ADP
it PRON
-- PUNCT
headaches NOUN
, PUNCT
swelling VERB
, PUNCT
a DET
tightness NOUN
in ADP
the DET
chest NOUN
, PUNCT
and CCONJ
a DET
	 SPACE
burning VERB
sensation NOUN
, PUNCT
among ADP
others NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
the DET
most ADV
fail ADJ
- PUNCT
safe ADJ
	 SPACE
of ADP
clinical ADJ
studies NOUN
, PUNCT
the DET
double ADJ
- PUNCT
blind ADJ
study NOUN
... PUNCT
, PUNCT
has AUX
consistently ADV
	 SPACE
exonerated VERB
the DET
much ADV
- PUNCT
maligned VERB
substance NOUN
. PUNCT
	 SPACE
That DET
's AUX
quite ADV
fortunate ADJ
since SCONJ
the DET
alleged ADJ
hazardous ADJ
component NOUN
of ADP
	 SPACE
monosodium PROPN
glutamate PROPN
, PUNCT
glutamate PROPN
, PUNCT
enters VERB
our PRON
systems NOUN
whenever ADV
	 SPACE
we PRON
eat VERB
any DET
food NOUN
that PRON
contains VERB
protein NOUN
. PUNCT
  SPACE
The DET
reason NOUN
is AUX
that SCONJ
one NUM
	 SPACE
of ADP
the DET
amino ADJ
acids NOUN
that PRON
make VERB
up ADP
protein NOUN
, PUNCT
glutamic PROPN
acid NOUN
, PUNCT
is AUX
broken VERB
	 SPACE
down ADV
into ADP
glutamate NOUN
during ADP
digestion NOUN
. PUNCT
	 SPACE
It PRON
's AUX
a DET
breakdown NOUN
that PRON
occurs VERB
frequently ADV
. PUNCT
  SPACE
Glutamic PROPN
acid NOUN
is AUX
the DET
	 SPACE
most ADV
abundant ADJ
of ADP
the DET
20 NUM
or CCONJ
so ADV
amino ADJ
acids NOUN
in ADP
the DET
diet NOUN
. PUNCT
  SPACE
It PRON
makes VERB
	 SPACE
up ADV
about ADV
15 NUM
percent NOUN
of ADP
the DET
protein NOUN
in ADP
flesh NOUN
foods NOUN
, PUNCT
20 NUM
percent NOUN
in ADP
	 SPACE
milk NOUN
, PUNCT
25 NUM
percent NOUN
in ADP
corn NOUN
, PUNCT
and CCONJ
29 NUM
percent NOUN
in ADP
whole ADJ
wheat NOUN
. PUNCT
	 SPACE
That DET
does AUX
n't PART
mean VERB
it PRON
's AUX
entirely ADV
unimaginable ADJ
that SCONJ
a DET
small ADJ
number NOUN
	 SPACE
of ADP
people NOUN
have AUX
trouble NOUN
metabolizing VERB
MSG PROPN
properly ADV
and CCONJ
are AUX
therefore ADV
	 SPACE
sensitive ADJ
to ADP
it PRON
... PUNCT
The DET
consensus NOUN
reached VERB
by ADP
large ADJ
, PUNCT
international ADJ
	 SPACE
professional ADJ
organizations NOUN
[ PUNCT
is AUX
that SCONJ
MSG PROPN
is AUX
safe ADJ
] PUNCT
, PUNCT
the DET
same ADJ
consensus NOUN
	 SPACE
reached VERB
by ADP
the DET
FDA PROPN
and CCONJ
the DET
biomedical ADJ
community NOUN
at ADP
large ADJ
. PUNCT
"-Rich PUNCT
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59161From NUM
: PUNCT
neal@cmptrc.lonestar.org PROPN
( PUNCT
Neal PROPN
Howard)Subject NUM
: PUNCT
Re ADP
: PUNCT
seek VERB
sedative ADJ
informationIn PROPN
article NOUN
< X
C5uBrn.F0u@fig.citib.com X
> X
ghica@fig.citib.com PROPN
( PUNCT
Renato PROPN
Ghica PROPN
) PUNCT
writes:>>has PUNCT
any DET
one NUM
heard VERB
of ADP
a DET
sedative ADJ
called VERB
" PUNCT
Rhoepnol PROPN
" PUNCT
? PUNCT
Made VERB
by ADP
LaRouche,>I PROPN
believe VERB
. PUNCT
Any DET
info NOUN
as SCONJ
to PART
side VERB
effects NOUN
or CCONJ
equivalent ADJ
tranquillizers?You PROPN
probably ADV
mean VERB
" PUNCT
RoHypnol PROPN
" PUNCT
, PUNCT
a DET
member NOUN
of ADP
the DET
benzodiazepine PROPN
family NOUN
, PUNCT
chemical NOUN
name NOUN
is AUX
flunitrazepam NOUN
. PUNCT
It PRON
is AUX
such DET
a DET
strong ADJ
tranquilizer NOUN
that PRON
it PRON
isprobably ADV
best ADV
refered VERB
to ADP
as SCONJ
a DET
hypnotic ADJ
, PUNCT
rather ADV
than SCONJ
a DET
tranquilizer NOUN
. PUNCT
Just ADV
onepill ADV
will AUX
knock VERB
you PRON
on ADP
your PRON
ass NOUN
. PUNCT
Side NOUN
effects NOUN
may AUX
be AUX
similar ADJ
to ADP
valium PROPN
, PUNCT
xanax PROPN
, PUNCT
serax PROPN
, PUNCT
librium NOUN
and CCONJ
other ADJ
benzodiazepines NOUN
. PUNCT
-- PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
Neal PROPN
Howard PROPN
   SPACE
' PART
91 NUM
XLH-1200 PROPN
      SPACE
DoD PROPN
# SYM
686 NUM
      SPACE
CompuTrac PROPN
, PUNCT
Inc PROPN
( PUNCT
Richardson PROPN
, PUNCT
TX PROPN
) PUNCT
	       SPACE
doh VERB
# SYM
0000001200 NUM
   SPACE
|355o33| PROPN
      SPACE
neal@cmptrc.lonestar.org PROPN
	       SPACE
Std PROPN
disclaimer NOUN
: PUNCT
My PRON
opinions NOUN
are AUX
mine ADJ
, PUNCT
not PART
CompuTrac PROPN
's PART
. PUNCT
         SPACE
" PUNCT
Let VERB
us PRON
learn VERB
to PART
dream VERB
, PUNCT
gentlemen NOUN
, PUNCT
and CCONJ
then ADV
perhaps ADV
          SPACE
we PRON
shall AUX
learn VERB
the DET
truth NOUN
. PUNCT
" PUNCT
-- PUNCT
August PROPN
Kekule PROPN
' PUNCT
( PUNCT
1890)=============================================================================Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59162From NUM
: SYM
brandon@caldonia.nlm.nih.gov NUM
( PUNCT
Brandon PROPN
Brylawski)Subject NUM
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?mryan@stsci.edu PROPN
writes VERB
: PUNCT
: PUNCT
Am AUX
I PRON
justified ADJ
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor NOUN
? PUNCT
: PUNCT
: PUNCT
Last ADJ
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife NOUN
. PUNCT
: PUNCT
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
: PUNCT
clinic NOUN
was AUX
open ADJ
till SCONJ
6:00 NUM
pm NOUN
. PUNCT
  SPACE
The DET
receptionist NOUN
went VERB
to ADP
the DET
back NOUN
and CCONJ
told VERB
the DET
: PUNCT
doctor NOUN
that SCONJ
we PRON
were AUX
there ADV
, PUNCT
and CCONJ
came VERB
back ADV
and CCONJ
told VERB
us PRON
the DET
doctor NOUN
would AUX
not PART
: PUNCT
see VERB
us PRON
because SCONJ
she PRON
had AUX
someplace NOUN
to PART
go VERB
at ADP
6:00 NUM
and CCONJ
did AUX
not PART
want VERB
to PART
be AUX
delayed VERB
: PUNCT
here ADV
. PUNCT
  SPACE
During ADP
the DET
next ADJ
few ADJ
minutes NOUN
, PUNCT
in ADP
response NOUN
to ADP
my PRON
questions NOUN
, PUNCT
with ADP
several ADJ
: PUNCT
trips NOUN
to ADP
the DET
back NOUN
room NOUN
, PUNCT
the DET
receptionist NOUN
told VERB
me PRON
: PUNCT
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
was AUX
doing VERB
paperwork NOUN
in ADP
the DET
back NOUN
, PUNCT
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
look VERB
at ADP
his PRON
finger NOUN
to PART
advise VERB
us PRON
on ADP
going VERB
: PUNCT
	   SPACE
to ADP
the DET
emergency NOUN
room NOUN
; PUNCT
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
speak VERB
to ADP
me PRON
; PUNCT
: PUNCT
	 SPACE
- PUNCT
she PRON
would AUX
not PART
tell VERB
me PRON
the DET
doctor NOUN
's PART
name NOUN
, PUNCT
or CCONJ
her PRON
own ADJ
name NOUN
; PUNCT
: PUNCT
	 SPACE
- PUNCT
when ADV
asked VERB
who PRON
is AUX
in ADP
charge NOUN
of ADP
the DET
clinic NOUN
, PUNCT
she PRON
said VERB
" PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
" PUNCT
: PUNCT
: PUNCT
I PRON
realize VERB
that SCONJ
a DET
private ADJ
clinic NOUN
is AUX
not PART
the DET
same ADJ
as SCONJ
an DET
emergency NOUN
room NOUN
, PUNCT
but CCONJ
: PUNCT
I PRON
was AUX
quite ADV
angry ADJ
at ADP
being AUX
turned VERB
away ADV
because SCONJ
the DET
doctor NOUN
did AUX
not PART
want VERB
to PART
: PUNCT
be AUX
bothered VERB
. PUNCT
  SPACE
My PRON
son NOUN
did AUX
get AUX
three NUM
stitches NOUN
at ADP
the DET
emergency NOUN
room NOUN
. PUNCT
  SPACE
Speaking VERB
as SCONJ
a DET
physician NOUN
who PRON
works VERB
in ADP
an DET
urgent ADJ
care NOUN
center NOUN
, PUNCT
the DET
abovebehavior NOUN
is AUX
completely ADV
inappropriate ADJ
. PUNCT
If SCONJ
a DET
patient NOUN
who PRON
requires VERB
extensivecare NOUN
shows NOUN
up ADP
at ADP
the DET
last ADJ
minute NOUN
, PUNCT
we PRON
always ADV
see VERB
them PRON
and CCONJ
give VERB
them PRON
appropriatecare NOUN
. PUNCT
It PRON
is AUX
reasonable ADJ
for ADP
a DET
clinic NOUN
to PART
refuse VERB
to PART
see VERB
patients NOUN
outside ADP
of ADP
itsposted VERB
hours NOUN
, PUNCT
but CCONJ
what PRON
you PRON
describe VERB
is AUX
misbehavior ADJ
. PUNCT
Ask VERB
to PART
speak VERB
to ADP
theclinic ADJ
director NOUN
, PUNCT
and CCONJ
complain VERB
. PUNCT
Whatever PRON
their PRON
attitude NOUN
, PUNCT
they PRON
have AUX
nothing PRON
togain ADJ
from ADP
angering VERB
patients NOUN
. PUNCT
Brandon PROPN
BrylawskiNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59163From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In PROPN
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)wrote PROPN
: PUNCT
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
disease NOUN
. PUNCT
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
without ADP
discomfort NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
John PROPN
Eyles PROPN
> X
jge@cs.unc.eduIf NOUN
she PRON
is AUX
having VERB
problems NOUN
with ADP
fresh ADJ
vegetables NOUN
, PUNCT
the DET
guess NOUN
is AUX
that SCONJ
thereis NOUN
some DET
obstruction NOUN
of ADP
the DET
intestine NOUN
. PUNCT
  SPACE
Without ADP
knowing VERB
more ADV
it PRON
is AUX
notpossible ADJ
to PART
say VERB
whether SCONJ
the DET
obstruction NOUN
is AUX
permanent ADJ
due ADP
to ADP
scarring NOUN
, PUNCT
or CCONJ
temporary ADJ
due ADP
to ADP
swelling NOUN
of ADP
inflammed VERB
intestine NOUN
. PUNCT
  SPACE
In ADP
general ADJ
, PUNCT
there ADV
areno PROPN
dietary ADJ
limitations NOUN
in ADP
patients NOUN
with ADP
Crohn PROPN
's PART
except SCONJ
as SCONJ
they PRON
relateto VERB
obstruction NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
evidence NOUN
that SCONJ
any DET
foods NOUN
will AUX
bring VERB
on ADP
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
  SPACE
It PRON
is AUX
important ADJ
to PART
distinguish VERB
recurrence NOUN
fromrecurrent ADJ
symptoms NOUN
. PUNCT
  SPACE
A DET
physician NOUN
would AUX
think VERB
of ADP
new ADJ
inflammation NOUN
as SCONJ
recurrence NOUN
, PUNCT
while SCONJ
pains NOUN
from ADP
raw ADJ
veggies NOUN
just ADV
imply VERB
a DET
narrowing NOUN
of ADP
theintestine NOUN
. PUNCT
  SPACE
Your PRON
friend NOUN
should AUX
look VERB
into ADP
membership NOUN
in ADP
the DET
Crohn PROPN
's PART
and CCONJ
Colitis PROPN
Foundation PROPN
of ADP
America PROPN
. PUNCT
   SPACE
1 NUM
- PUNCT
800 NUM
- PUNCT
932 NUM
- PUNCT
2423Good NUM
luck NOUN
to ADP
your PRON
friend NOUN
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59164From NUM
: PUNCT
HOLFELTZ@LSTC2VM.stortek.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu>todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
, PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
>>The PUNCT
proper ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
It PRON
was AUX
an DET
effect NOUN
discoverd NOUN
by ADP
> X
S. PROPN
Kirlian PROPN
, PUNCT
a DET
soviet ADJ
film NOUN
developer NOUN
in ADP
1939.>>As NUM
I PRON
recall VERB
, PUNCT
the DET
coronas PROPN
visible ADJ
are AUX
ascribed VERB
to ADP
static ADJ
discharges NOUN
> X
and CCONJ
chemical NOUN
reactions NOUN
between ADP
the DET
organic ADJ
material NOUN
and CCONJ
the DET
silver NOUN
> X
halides NOUN
in ADP
the DET
films.>>-- NOUN
> X
         SPACE
Tarl PROPN
Neustaedter PROPN
       SPACE
Stratus PROPN
Computer PROPN
> X
         SPACE
tarl@sw.stratus.com PROPN
    SPACE
Marlboro PROPN
, PUNCT
Mass.>Disclaimer PROPN
: PUNCT
My PRON
employer NOUN
is AUX
not PART
responsible ADJ
for ADP
my PRON
opinions.>>I PROPN
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
> X
        SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
> PROPN
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
> X
appreciated VERB
. PUNCT
> X
        SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
> X
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
> X
object NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
> X
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
> X
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
> VERB
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
> X
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature.>>To NOUN
construct VERB
a DET
Kirlian ADJ
device NOUN
find VERB
a DET
copy NOUN
of ADP
_ PROPN
Handbook PROPN
of ADP
PsychicDiscoveries PROPN
_ ADV
by ADP
Sheila PROPN
Ostrander PROPN
and CCONJ
Lynn PROPN
Schroeder PROPN
1975 NUM
Library PROPN
ofCongress PROPN
73 NUM
- SYM
88532 NUM
. PUNCT
  SPACE
It PRON
describes VERB
the DET
necessary ADJ
equipment NOUN
and CCONJ
suppliers NOUN
for ADP
the DET
Tesla PROPN
coil NOUN
or CCONJ
alternatives NOUN
, PUNCT
the DET
copper NOUN
plate NOUN
andsetup VERB
. PUNCT
I PRON
used VERB
a DET
pack NOUN
of ADP
SX-70 PROPN
film NOUN
and CCONJ
removed VERB
a DET
single ADJ
pack NOUN
in ADP
adark PROPN
room NOUN
, PUNCT
then ADV
made VERB
the DET
exposure NOUN
, PUNCT
put VERB
it PRON
back ADV
in ADP
the DET
film NOUN
pack NOUN
andran VERB
it PRON
out ADP
through ADP
the DET
rollers NOUN
of ADP
the DET
camera PROPN
forinstant PROPN
developingand PROPN
very ADV
high ADJ
quality NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
good ADJ
way NOUN
to PART
experience VERB
what PRON
KirlianPhotography PROPN
is AUX
really ADV
and CCONJ
what PRON
it PRON
is AUX
not PART
. PUNCT
  SPACE
As SCONJ
you PRON
know VERB
all ADV
ready ADJ
, PUNCT
it PRON
is AUX
the DET
pattern NOUN
in ADP
the DET
bioplasmic PROPN
energy NOUN
fieldthat PROPN
is AUX
significant ADJ
. PUNCT
Variations NOUN
caused VERB
by ADP
exposure NOUN
time NOUN
, PUNCT
distance NOUN
from ADP
the DET
plate NOUN
, PUNCT
orpressure ADJ
on ADP
the DET
plate NOUN
, PUNCT
or CCONJ
variations NOUN
in ADP
the DET
photo NOUN
materials NOUN
are AUX
notimportant ADJ
. PUNCT
Hard ADJ
copy NOUN
mail NOUN
; PUNCT
Mark PROPN
C. PROPN
High PROPN
                SPACE
P NOUN
O PROPN
Box PROPN
  SPACE
882 NUM
                SPACE
Parowan PROPN
, PUNCT
  SPACE
UT PROPN
                       SPACE
84761 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59165From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject PROPN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionI PROPN
can AUX
not PART
believe VERB
the DET
way NOUN
this DET
thread NOUN
on ADP
candida(yeast NOUN
) PUNCT
has AUX
progressed VERB
. PUNCT
Steve PROPN
Dyer PROPN
and CCONJ
I PRON
have AUX
been AUX
exchanging VERB
words NOUN
over ADP
the DET
same ADJ
topic NOUN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
when ADV
he PRON
displayed VERB
his PRON
typical ADJ
reserve NOUN
and CCONJ
attacked VERB
a DET
women NOUN
poster NOUN
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
Let VERB
me PRON
tell VERB
you PRON
who PRON
the DET
quacks NOUN
really ADV
are AUX
, PUNCT
these DET
are AUX
the DET
physicans NOUN
who PRON
have AUX
no DET
idea NOUN
how ADV
the DET
human ADJ
body NOUN
interacts VERB
with ADP
it PRON
's AUX
environment NOUN
and CCONJ
how ADV
that DET
balance NOUN
can AUX
be AUX
altered VERB
by ADP
diet NOUN
and CCONJ
antibiotics NOUN
. PUNCT
  SPACE
These DET
are AUX
the DET
physicians NOUN
who PRON
dismiss VERB
their PRON
patients NOUN
with ADP
difficult ADJ
symptomatology NOUN
and CCONJ
make VERB
them PRON
go VERB
from ADP
doctor NOUN
to ADP
doctor NOUN
to PART
find VERB
relief(like PROPN
Elaine PROPN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
) PUNCT
and CCONJ
then ADV
when ADV
they PRON
find VERB
one NOUN
that PRON
solves VERB
their PRON
problem NOUN
, PUNCT
the DET
rest NOUN
start NOUN
yelling VERB
quack NOUN
. PUNCT
  SPACE
Could AUX
it PRON
just ADV
be AUX
professional ADJ
jealousy NOUN
? PUNCT
  SPACE
I PRON
could AUX
n't PART
help VERB
Elaine PROPN
or CCONJ
Jonbut PROPN
somebody PRON
else ADV
did AUX
. PUNCT
  SPACE
Could AUX
they PRON
know VERB
more ADJ
than SCONJ
Me PRON
? PUNCT
  SPACE
No DET
way NOUN
, PUNCT
they PRON
must AUX
be AUX
a DET
quack NOUN
. PUNCT
  SPACE
I PRON
've AUX
been AUX
teaching VERB
a DET
human ADJ
nutrition NOUN
course NOUN
for ADP
Medical ADJ
students NOUN
for ADP
over ADP
ten NUM
years NOUN
now ADV
and CCONJ
guess VERB
who PRON
the DET
most ADV
receptive ADJ
students NOUN
are AUX
? PUNCT
  SPACE
Those DET
that PRON
were AUX
raised VERB
on ADP
farms NOUN
and CCONJ
saw VERB
first ADJ
- PUNCT
hand NOUN
the DET
effect NOUN
of ADP
diet NOUN
on ADP
the DET
health NOUN
of ADP
their PRON
farm NOUN
animals NOUN
and CCONJ
those DET
students NOUN
who PRON
had AUX
made VERB
a DET
dramatic ADJ
diet NOUN
change NOUN
prior ADV
to ADP
entering VERB
medical PROPN
school(switched PROPN
to ADP
the DET
vegan ADJ
diet NOUN
) PUNCT
. PUNCT
  SPACE
Typically ADV
, PUNCT
this DET
is AUX
about ADV
1/3 NUM
of ADP
my PRON
class NOUN
of ADP
90 NUM
students NOUN
. PUNCT
  SPACE
Those DET
not PART
interested ADJ
in ADP
nutrition NOUN
either CCONJ
tune VERB
me PRON
out ADP
or CCONJ
just ADV
stop VERB
coming VERB
to ADP
class NOUN
. PUNCT
  SPACE
That DET
's AUX
okay ADJ
because SCONJ
I PRON
know VERB
that SCONJ
some DET
of ADP
what PRON
I PRON
'm AUX
teaching VERB
is AUX
going VERB
to PART
stick VERB
and CCONJ
there PRON
will AUX
be AUX
at ADP
least ADJ
a DET
few ADJ
" PUNCT
enlightened VERB
" PUNCT
physicians NOUN
practicing VERB
in ADP
the DET
U.S. PROPN
  SPACE
It PRON
's AUX
really ADV
too ADV
bad ADJ
that SCONJ
most ADJ
U.S. PROPN
medical ADJ
schools NOUN
do AUX
n't PART
cover VERB
nutrition NOUN
because SCONJ
if SCONJ
they PRON
did AUX
, PUNCT
candida PROPN
would AUX
not PART
be AUX
viewed VERB
as SCONJ
a DET
non ADJ
- ADJ
disease NOUN
by ADP
so ADV
many ADJ
in ADP
the DET
medical ADJ
profession NOUN
. PUNCT
In ADP
animal NOUN
husbandry NOUN
, PUNCT
an DET
animal NOUN
is AUX
reinnoculated VERB
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
after ADP
antibiotics NOUN
are AUX
stopped VERB
. PUNCT
  SPACE
Medicine PROPN
has AUX
decided VERB
that SCONJ
since SCONJ
humans NOUN
do AUX
not PART
have AUX
a DET
ruminant ADJ
stomach NOUN
, PUNCT
no DET
such ADJ
reinnoculation NOUN
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
is AUX
needed VERB
after ADP
coming VERB
off ADP
a DET
braod NOUN
spectrum NOUN
antibiotic ADJ
. PUNCT
  SPACE
Humans NOUN
have AUX
all DET
kinds NOUN
of ADP
different ADJ
organisms NOUN
living VERB
in ADP
the DET
GI PROPN
system(mouth PROPN
, PUNCT
stomach NOUN
, PUNCT
small ADJ
and CCONJ
large ADJ
intestine NOUN
) PUNCT
, PUNCT
sinuses NOUN
, PUNCT
vagina PROPN
and CCONJ
on ADP
the DET
skin NOUN
. PUNCT
  SPACE
These DET
are AUX
nonpathogenic ADJ
because SCONJ
they PRON
do AUX
not PART
cause VERB
disease NOUN
in ADP
people NOUN
unless SCONJ
the DET
immune ADJ
system NOUN
is AUX
compromised VERB
. PUNCT
  SPACE
They PRON
are AUX
also ADV
called VERB
nonpathogens NOUN
because SCONJ
unlike ADP
the DET
pathogenic ADJ
organisms NOUN
that PRON
cause VERB
human ADJ
disease NOUN
, PUNCT
they PRON
do AUX
not PART
produce VERB
toxins NOUN
as SCONJ
they PRON
live VERB
out ADP
their PRON
merry NOUN
existence NOUN
in ADP
and CCONJ
on ADP
our PRON
body NOUN
. PUNCT
  SPACE
But CCONJ
any DET
of ADP
these DET
organisms NOUN
will AUX
be AUX
considered VERB
pathogenic ADJ
if SCONJ
it PRON
manages VERB
to PART
take VERB
up ADP
residence NOUN
within ADP
the DET
body NOUN
. PUNCT
  SPACE
A DET
poor ADJ
mucus ADJ
membrane NOUN
barrier PROPN
can AUX
let VERB
this DET
happen VERB
and CCONJ
vitamin NOUN
A NOUN
is AUX
mainly ADV
responsible ADJ
for ADP
setting VERB
up ADP
this DET
barrier NOUN
. PUNCT
Steve PROPN
got VERB
real ADV
upset ADJ
with ADP
Elaine PROPN
's PART
doctor NOUN
because SCONJ
he PRON
was AUX
using VERB
anti NOUN
- ADJ
fungals NOUN
and CCONJ
vitamin NOUN
A NOUN
for ADP
her PRON
GI PROPN
problems NOUN
. PUNCT
  SPACE
If SCONJ
Steve PROPN
really ADV
understoood VERB
what PRON
vitamin NOUN
A NOUN
does AUX
in ADP
the DET
body NOUN
, PUNCT
he PRON
would AUX
not(or VERB
at ADP
least ADJ
should AUX
not PART
) PUNCT
be AUX
calling VERB
Elaine PROPN
's PART
doctor NOUN
a DET
quack NOUN
. PUNCT
Here ADV
is AUX
a DET
brief ADJ
primer NOUN
on ADP
yeast NOUN
. PUNCT
  SPACE
Yeast NOUN
infections NOUN
, PUNCT
as SCONJ
they PRON
are AUX
commonly ADV
called VERB
, PUNCT
are AUX
not PART
truely ADV
caused VERB
by ADP
yeasts NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
organism NOUN
responsiblefor VERB
this DET
type NOUN
of ADP
infection NOUN
is AUX
Candida PROPN
albicans NOUN
or CCONJ
Monilia PROPN
which PRON
is AUX
actually ADV
a DET
yeast NOUN
- PUNCT
like ADJ
fungus NOUN
. PUNCT
  SPACE
An DET
infection NOUN
caused VERB
by ADP
this DET
organism NOUN
is AUX
called VERB
candidiasis NOUN
. PUNCT
Candidiasis PROPN
is AUX
a DET
very ADV
rare ADJ
occurance NOUN
because SCONJ
, PUNCT
like SCONJ
an DET
E. PROPN
Coli PROPN
infection NOUN
, PUNCT
it PRON
requires VERB
that SCONJ
the DET
host NOUN
immune ADJ
system NOUN
be AUX
severly ADV
depressed ADJ
. PUNCT
  SPACE
Candida PROPN
is AUX
frequently ADV
found VERB
on ADP
the DET
skin NOUN
and CCONJ
all DET
of ADP
the DET
mucous ADJ
membranes NOUN
of ADP
normal ADJ
healthy ADJ
people NOUN
and CCONJ
it PRON
rarely ADV
becomes VERB
a DET
problem NOUN
unless SCONJ
some DET
predisposingfactor NOUN
is AUX
present ADJ
such ADJ
as SCONJ
a DET
high ADJ
blood NOUN
glucose NOUN
level(diabetes PROPN
) PUNCT
or CCONJ
an DET
oral ADJ
course NOUN
of ADP
antibiotics NOUN
has AUX
been AUX
used VERB
. PUNCT
  SPACE
In ADP
diabetics NOUN
, PUNCT
their PRON
secretions NOUN
contain VERB
much ADV
higher ADJ
amounts NOUN
of ADP
glucose NOUN
. PUNCT
  SPACE
Candida PROPN
, PUNCT
unlike ADP
bacteria NOUN
, PUNCT
is AUX
very ADV
limited ADJ
in ADP
it PRON
's AUX
food(fuel PROPN
) PUNCT
selection NOUN
. PUNCT
  SPACE
Without ADP
glucose NOUN
, PUNCT
it PRON
can AUX
not PART
grow VERB
, PUNCT
it PRON
just ADV
barely ADV
survives VERB
. PUNCT
  SPACE
If SCONJ
it PRON
gets VERB
access NOUN
to ADP
a DET
lot NOUN
of ADP
glucose NOUN
, PUNCT
it PRON
blooms VERB
and CCONJ
over ADP
rides NOUN
the DET
other ADJ
organisms NOUN
living VERB
with ADP
it PRON
in ADP
the DET
sinuses NOUN
, PUNCT
GI PROPN
tract NOUN
or CCONJ
vagina PROPN
. PUNCT
  SPACE
In ADP
diabetics NOUN
, PUNCT
skin NOUN
lesions NOUN
can AUX
also ADV
foster VERB
a DET
good ADJ
bloom NOUN
site NOUN
for ADP
these DET
little ADJ
buggers NOUN
. PUNCT
  SPACE
The DET
bloom NOUN
is AUX
usually ADV
just ADV
a DET
minor ADJ
irritant NOUN
in ADP
most ADJ
people NOUN
but CCONJ
some DET
people NOUN
do AUX
really ADV
develop VERB
a DET
bad ADJ
inflammatory ADJ
process NOUN
at ADP
the DET
mucus PROPN
membrane NOUN
or CCONJ
skin NOUN
bloom NOUN
site NOUN
. PUNCT
  SPACE
Whether SCONJ
this DET
is AUX
an DET
allergic ADJ
like SCONJ
reaction NOUN
to ADP
the DET
candida PROPN
or CCONJ
not PART
is AUX
n't PART
certain ADJ
. PUNCT
  SPACE
When ADV
the DET
bloom NOUN
is AUX
in ADP
the DET
vagina PROPN
or CCONJ
on ADP
the DET
skin NOUN
, PUNCT
it PRON
can AUX
be AUX
easliy ADJ
seen VERB
and CCONJ
some DET
doctors NOUN
do AUX
then ADV
try VERB
to PART
" PUNCT
treat VERB
" PUNCT
it PRON
. PUNCT
If SCONJ
it PRON
's AUX
internal ADJ
, PUNCT
only ADV
symptoms NOUN
can AUX
be AUX
used VERB
and CCONJ
these DET
symptoms NOUN
are AUX
pretty ADV
nondiscript ADJ
. PUNCT
  SPACE
Candida PROPN
is AUX
kept VERB
in ADP
check NOUN
in ADP
most ADJ
people NOUN
by ADP
the DET
normal ADJ
bacterial ADJ
flora NOUN
in ADP
the DET
sinuses NOUN
, PUNCT
the DET
GI PROPN
tract(mouth PROPN
, PUNCT
stomach NOUN
and CCONJ
intestines NOUN
) PUNCT
and CCONJ
in ADP
the DET
vaginal ADJ
tract NOUN
which PRON
compete VERB
with ADP
it PRON
for ADP
food NOUN
. PUNCT
  SPACE
The DET
human ADJ
immune ADJ
system NOUN
ususally ADV
does AUX
not PART
bother VERB
itself PRON
with ADP
these(nonpathogenic PROPN
organisms NOUN
) PUNCT
unless SCONJ
they PRON
broach VERB
the DET
mucus PROPN
membrane NOUN
" PUNCT
barrier NOUN
" PUNCT
. PUNCT
  SPACE
If SCONJ
they PRON
do AUX
, PUNCT
an DET
inflammatory ADJ
response NOUN
will AUX
be AUX
set VERB
up ADP
. PUNCT
  SPACE
Most ADJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
vitamin NOUN
A NOUN
from ADP
their PRON
diets NOUN
. PUNCT
  SPACE
About ADV
30 NUM
% NOUN
of ADP
all DET
American PROPN
's PART
die NOUN
with ADP
less ADJ
Vitamin PROPN
A PROPN
than SCONJ
they PRON
were AUX
born VERB
with(U.S. PROPN
autopsy ADJ
studies NOUN
) PUNCT
. PUNCT
  SPACE
While SCONJ
this DET
low ADJ
level NOUN
of ADP
vitamin NOUN
A NOUN
does AUX
not PART
cause VERB
pathology(blindness NOUN
) PUNCT
it PRON
does AUX
impair VERB
the DET
mucus PROPN
membrane PROPN
barrier PROPN
system NOUN
. PUNCT
  SPACE
This DET
would AUX
then ADV
be AUX
a DET
predisposing VERB
factor NOUN
for ADP
a DET
strong ADJ
inflammatory ADJ
response NOUN
after ADP
a DET
candida PROPN
bloom NOUN
. PUNCT
  SPACE
While SCONJ
diabetics NOUN
can AUX
suffer VERB
from ADP
a DET
candida PROPN
" PUNCT
bloom NOUN
" PUNCT
the DET
  SPACE
most ADV
common ADJ
cause NOUN
of ADP
this DET
type NOUN
of ADP
bloom NOUN
is AUX
the DET
use NOUN
of ADP
broad ADJ
spectrum NOUN
antibiotics NOUN
which PRON
knock VERB
down ADP
many ADJ
different ADJ
kinds NOUN
of ADP
bacteria NOUN
in ADP
the DET
body NOUN
and CCONJ
remove VERB
the DET
main ADJ
competition NOUN
for ADP
candida PROPN
as ADV
far ADV
as SCONJ
food NOUN
is AUX
concerned VERB
. PUNCT
  SPACE
While SCONJ
drugs NOUN
are AUX
available ADJ
to PART
handle VERB
candida PROPN
, PUNCT
many ADJ
patients NOUN
find VERB
that SCONJ
their PRON
doctor NOUN
will AUX
not PART
use VERB
them PRON
unless SCONJ
there PRON
is AUX
evidence NOUN
of ADP
a DET
systemic ADJ
infection NOUN
. PUNCT
  SPACE
The DET
toxicity NOUN
of ADP
the DET
anti ADJ
- ADJ
fungal ADJ
drugs NOUN
does AUX
warrant VERB
some DET
caution NOUN
. PUNCT
  SPACE
But CCONJ
if SCONJ
the DET
GI PROPN
or CCONJ
sinus NOUN
inflammation NOUN
is AUX
suspected VERB
to PART
be AUX
candida(and PROPN
recent ADJ
use NOUN
of ADP
a DET
broad ADJ
spectrum NOUN
antibiotic NOUN
is AUX
the DET
smoking NOUN
gun NOUN
) PUNCT
, PUNCT
then ADV
anti ADJ
- ADJ
fungal ADJ
use NOUN
should AUX
be AUX
approrpriate ADJ
just ADV
as SCONJ
the DET
anti ADJ
- ADJ
fungal ADJ
creams NOUN
are AUX
an DET
appropriate ADJ
treatment NOUN
for ADP
recurring VERB
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
in ADP
spite NOUN
of ADP
what PRON
Mr. PROPN
Steve PROPN
Dyer PROPN
says VERB
. PUNCT
But CCONJ
even ADV
in ADP
patients NOUN
being AUX
given VERB
the DET
anti NOUN
- NOUN
fungals NOUN
, PUNCT
the DET
irritation NOUN
caused VERB
by ADP
the DET
excessive ADJ
candida PROPN
bloom PROPN
in ADP
the DET
sinus NOUN
, PUNCT
GI PROPN
tract NOUN
or CCONJ
the DET
vagina PROPN
tends VERB
to PART
return VERB
after ADP
drug NOUN
treatment NOUN
is AUX
discontinued VERB
unless SCONJ
the DET
underlying ADJ
cause NOUN
of ADP
the DET
problem NOUN
is AUX
addressed(lack PROPN
of ADP
a DET
" PUNCT
good ADJ
" PUNCT
bacterial ADJ
flora NOUN
in ADP
the DET
body NOUN
and/or CCONJ
poor ADJ
mucus PROPN
membrane PROPN
barrier PROPN
) PUNCT
. PUNCT
  SPACE
Lactobacillus PROPN
acidophilus NOUN
is AUX
the DET
most ADV
effective ADJ
therapy NOUN
for ADP
candida PROPN
overgrowth NOUN
. PUNCT
  SPACE
From ADP
it PRON
's AUX
name NOUN
, PUNCT
it PRON
is AUX
an DET
acid NOUN
loving VERB
organism NOUN
and CCONJ
it PRON
sets VERB
up ADP
an DET
acidic ADJ
condition NOUN
were AUX
it PRON
grows VERB
. PUNCT
  SPACE
Candida PROPN
can AUX
not PART
grow VERB
very ADV
well ADV
in ADP
an DET
acidic ADJ
environment NOUN
. PUNCT
  SPACE
In ADP
the DET
vagina PROPN
, PUNCT
L. PROPN
acidophilius NOUN
is AUX
the DET
predominate NOUN
bacteria(unless NOUN
you PRON
are AUX
hit VERB
with ADP
broad ADJ
spectrum NOUN
antibiotics NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
the DET
GI PROPN
system NOUN
, PUNCT
the DET
ano NOUN
- PUNCT
rectal ADJ
region NOUN
seems VERB
to PART
be AUX
a DET
particularly ADV
good ADJ
reservoir NOUN
for ADP
candida PROPN
and CCONJ
the DET
use NOUN
of ADP
pantyhose NOUN
by ADP
many ADJ
women NOUN
creates VERB
a DET
very ADV
favorable ADJ
environment NOUN
around ADP
the DET
rectum NOUN
for ADP
transfer(through DET
moisture NOUN
and CCONJ
humidity NOUN
) PUNCT
of ADP
candida PROPN
to ADP
the DET
vaginal ADJ
tract NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
most ADV
effctive ADJ
ways NOUN
to PART
minimmize VERB
this DET
transfer NOUN
is AUX
to PART
wear VERB
undyed ADJ
cotton NOUN
underwear NOUN
. PUNCT
  SPACE
If SCONJ
the DET
bloom NOUN
occurs VERB
in ADP
the DET
anal ADJ
area NOUN
, PUNCT
the DET
burning NOUN
, PUNCT
swelling VERB
, PUNCT
pain NOUN
and CCONJ
even ADV
blood NOUN
discharge NOUN
make VERB
many ADJ
patients NOUN
think VERB
that SCONJ
they PRON
have AUX
hemorroids NOUN
. PUNCT
  SPACE
If SCONJ
the DET
bloom NOUN
manages VERB
to PART
move VERB
further ADV
up ADP
the DET
GI PROPN
tract NOUN
, PUNCT
very ADV
diffuse NOUN
symptomatology NOUN
occurs(abdominal ADJ
discomfort NOUN
and CCONJ
blood NOUN
in ADP
the DET
stool NOUN
) PUNCT
. PUNCT
  SPACE
This DET
positive ADJ
stool NOUN
for ADP
occult ADJ
blood NOUN
is AUX
what PRON
sent VERB
Elaine PROPN
to ADP
her PRON
family NOUN
doctor NOUN
in ADP
the DET
first ADJ
place NOUN
. PUNCT
  SPACE
After ADP
extensive ADJ
testing NOUN
, PUNCT
he PRON
told VERB
her PRON
that SCONJ
there PRON
was AUX
nothing PRON
wrong ADJ
but CCONJ
her PRON
gut NOUN
still ADV
hurt VERB
. PUNCT
  SPACE
On ADP
to ADP
another DET
doctor NOUN
, PUNCT
and CCONJ
so ADV
on ADV
. PUNCT
  SPACE
Richard PROPN
Kaplan PROPN
has AUX
told VERB
me PRON
throiugh NOUN
e NOUN
- NOUN
mail NOUN
that PRON
he PRON
considers VERB
occult ADJ
blood NOUN
tests NOUN
in ADP
stool NOUN
specimens NOUN
to PART
be AUX
a DET
waste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
because SCONJ
of ADP
the DET
very ADV
large ADJ
number NOUN
of ADP
false ADJ
positives(candida PROPN
blooms NOUN
guys NOUN
? PUNCT
) PUNCT
. PUNCT
  SPACE
If SCONJ
my PRON
gut NOUN
hurt VERB
me PRON
on ADP
a DET
constant ADJ
basis NOUN
, PUNCT
I PRON
would AUX
want VERB
it PRON
fixed VERB
. PUNCT
  SPACE
Yes INTJ
it PRON
's AUX
nice ADJ
to PART
know VERB
that SCONJ
I PRON
do AUX
n't PART
have AUX
colon NOUN
cancer NOUN
but CCONJ
what PRON
then ADV
is AUX
causing VERB
my PRON
distress NOUN
? PUNCT
  SPACE
When ADV
I PRON
finally ADV
find VERB
a DET
doctor NOUN
who PRON
treats VERB
me PRON
and CCONJ
gets VERB
me PRON
90 NUM
% NOUN
better ADJ
, PUNCT
Steve PROPN
Dyer PROPN
calls VERB
him PRON
a DET
quack NOUN
. PUNCT
Candida PROPN
prefers VERB
a DET
slightly ADV
alkaline ADJ
environment NOUN
while SCONJ
bacteria NOUN
tend VERB
to PART
prefer VERB
a DET
slightly ADV
acidic ADJ
environment NOUN
. PUNCT
  SPACE
The DET
vagina PROPN
becomes VERB
alkaline NOUN
during ADP
a DET
woman NOUN
's PART
period NOUN
and CCONJ
this DET
is AUX
often ADV
when ADV
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
. PUNCT
Vinegar NOUN
and CCONJ
water NOUN
douches NOUN
are AUX
the DET
best ADJ
way NOUN
of ADP
dealing VERB
with ADP
vaginal ADJ
problems NOUN
. PUNCT
  SPACE
Many ADJ
women NOUN
have AUX
also ADV
gotten VERB
relief NOUN
from ADP
the DET
introduction NOUN
of ADP
Lactobacillus PROPN
directly ADV
into ADP
the DET
vaginal ADJ
tract(I NOUN
would AUX
want VERB
to PART
be AUX
sure ADJ
of ADP
the DET
purity NOUN
of ADP
the DET
product NOUN
before ADP
trying VERB
this DET
) PUNCT
. PUNCT
  SPACE
My PRON
wife NOUN
had AUX
this DET
vagina PROPN
problem NOUN
after ADP
going VERB
on ADP
birth NOUN
control NOUN
pills NOUN
and CCONJ
searched VERB
for ADP
over ADP
a DET
year NOUN
until ADP
she PRON
found VERB
a DET
gynocologist NOUN
who PRON
solved VERB
the DET
problem NOUN
rather ADV
than SCONJ
just ADV
writting VERB
scripts NOUN
for ADP
anti ADJ
- ADJ
fungal ADJ
creams NOUN
. PUNCT
  SPACE
This DET
was AUX
a DET
woman NOUN
gynocologist NOUN
who PRON
had AUX
had VERB
the DET
same ADJ
problem(recurring PROPN
vaginal ADJ
yeast NOUN
infections NOUN
) PUNCT
. PUNCT
  SPACE
This DET
M.D. PROPN
did AUX
some DET
digging NOUN
and CCONJ
came VERB
up ADP
with ADP
an DET
acetic ADJ
acid NOUN
and CCONJ
L. PROPN
Acidophilis PROPN
douche PROPN
which PRON
she PRON
used VERB
in ADP
your PRON
office NOUN
to PART
keep VERB
it PRON
sterile ADJ
. PUNCT
  SPACE
After ADP
three NUM
treatments NOUN
, PUNCT
sex NOUN
returned VERB
to ADP
our PRON
marraige NOUN
. PUNCT
  SPACE
I PRON
have AUX
often ADV
wondered VERB
what PRON
an DET
M.D. PROPN
with ADP
chronic ADJ
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
would AUX
do AUX
about ADP
the DET
problem NOUN
that PRON
he PRON
tells VERB
his PRON
patients NOUN
is AUX
a DET
non ADJ
- ADJ
existent ADJ
syndrome NOUN
. PUNCT
The DET
nonpathogenic ADJ
bacteria NOUN
L. PROPN
acidophilus NOUN
is AUX
an DET
acid ADJ
producing VERB
bacteria NOUN
which PRON
is AUX
the DET
most ADV
common ADJ
bacteria NOUN
found VERB
in ADP
the DET
vaginal ADJ
tract NOUN
of ADP
healthy ADJ
women NOUN
. PUNCT
  SPACE
If SCONJ
taken VERB
orally ADV
, PUNCT
it PRON
can AUX
also ADV
become VERB
a DET
major ADJ
bacteria NOUN
in ADP
the DET
gut NOUN
. PUNCT
  SPACE
Through ADP
aresol ADJ
sprays NOUN
, PUNCT
it PRON
has AUX
also ADV
been AUX
used VERB
to PART
innoculate VERB
the DET
sinus NOUN
membranes NOUN
. PUNCT
But CCONJ
before ADP
this DET
innoculation NOUN
occurs VERB
, PUNCT
the DET
mucus PROPN
membrane PROPN
barrier NOUN
system NOUN
needs VERB
to PART
be AUX
strengthened VERB
. PUNCT
  SPACE
This DET
is AUX
accomplished VERB
by ADP
vitamin NOUN
A NOUN
, PUNCT
vitamin NOUN
C NOUN
and CCONJ
some DET
of ADP
the DET
B NOUN
- PUNCT
complex ADJ
vitamins NOUN
. PUNCT
  SPACE
Diet PROPN
surveys NOUN
repeatedly ADV
show VERB
that SCONJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
B6 PROPN
and CCONJ
folate NOUN
. PUNCT
  SPACE
These DET
are AUX
probably ADV
the DET
segement NOUN
of ADP
the DET
population NOUN
that PRON
will AUX
have AUX
the DET
greatest ADJ
problem NOUN
with ADP
this DET
non ADJ
- ADJ
existent ADJ
disorder(candida PROPN
blooms NOUN
after ADP
antibiotic ADJ
therapy NOUN
) PUNCT
. PUNCT
Some DET
of ADP
the DET
above ADJ
material NOUN
was AUX
obtained VERB
from ADP
" PUNCT
Natural PROPN
Healing NOUN
" PUNCT
by ADP
Mark PROPN
Bricklin PROPN
, PUNCT
Published VERB
by ADP
Rodale PROPN
press NOUN
, PUNCT
as ADV
well ADV
as SCONJ
notes NOUN
from ADP
my PRON
human ADJ
nutrition NOUN
course NOUN
. PUNCT
  SPACE
I PRON
will AUX
be AUX
posting VERB
a DET
discussion NOUN
of ADP
vitamin NOUN
A NOUN
  SPACE
sometime ADV
in ADP
the DET
future NOUN
, PUNCT
along ADP
with ADP
reference NOUN
citings NOUN
to PART
point VERB
out ADP
the DET
extremely ADV
important ADJ
role NOUN
that DET
vitamin NOUN
A DET
plays VERB
in ADP
the DET
mucus PROPN
membrane PROPN
defense NOUN
system NOUN
in ADP
the DET
body NOUN
and CCONJ
why ADV
vitamin NOUN
A NOUN
should AUX
be AUX
effective ADJ
in ADP
dealing VERB
with ADP
candida PROPN
blooms NOUN
. PUNCT
  SPACE
Another DET
effective ADJ
dietary ADJ
treatment NOUN
is AUX
to PART
restrict VERB
carbohydrate NOUN
intake NOUN
during ADP
the DET
treatment NOUN
phase NOUN
, PUNCT
this DET
is AUX
especially ADV
important ADJ
if SCONJ
the DET
GI PROPN
system NOUN
is AUX
involved VERB
. PUNCT
  SPACE
If SCONJ
candida PROPN
can AUX
not PART
get AUX
glucose NOUN
, PUNCT
it PRON
's AUX
not PART
going VERB
to PART
out ADV
grow VERB
the DET
bacteria NOUN
and CCONJ
you PRON
then ADV
give VERB
bacteria NOUN
, PUNCT
which PRON
can AUX
use VERB
amino ADJ
acids NOUN
and CCONJ
fatty ADJ
acids NOUN
for ADP
energy NOUN
, PUNCT
a DET
chance NOUN
to PART
take VERB
over ADP
and CCONJ
keep VERB
the DET
candida PROPN
in ADP
check PROPN
once SCONJ
carbohydrate NOUN
is AUX
returned VERB
to ADP
the DET
gut NOUN
. PUNCT
If SCONJ
Steve PROPN
and CCONJ
some DET
of ADP
the DET
other ADJ
nay NOUN
- PUNCT
sayers NOUN
want VERB
to PART
jump VERB
all ADV
over ADP
this DET
post NOUN
, PUNCT
fine ADJ
. PUNCT
  SPACE
I PRON
jumped VERB
all ADV
over ADP
Steve PROPN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
because SCONJ
he PRON
verbably ADV
accosted VERB
a DET
poster NOUN
who PRON
was AUX
seeking VERB
advice NOUN
about ADP
her PRON
doctor NOUN
's PART
use NOUN
of ADP
vitamin NOUN
A NOUN
and CCONJ
anti ADJ
- NOUN
fungals NOUN
for ADP
a DET
candida PROPN
bloom NOUN
in ADP
her PRON
gut NOUN
. PUNCT
  SPACE
People NOUN
seeking VERB
advice NOUN
from ADP
newsnet PROPN
should AUX
not PART
be AUX
treated VERB
this DET
way NOUN
. PUNCT
  SPACE
Those DET
of ADP
us PRON
giving NOUN
of ADP
our PRON
time NOUN
and CCONJ
knowledge NOUN
can AUX
slug VERB
it PRON
out ADP
to ADP
our PRON
heart NOUN
's PART
content NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
saved VERB
your PRON
venom NOUN
for ADP
me PRON
Steve PROPN
and CCONJ
left VERB
the DET
helpless ADJ
posters NOUN
who PRON
are AUX
timidly ADV
seeking VERB
help NOUN
alone ADV
, PUNCT
I PRON
would AUX
n't PART
have AUX
a DET
problem NOUN
with ADP
your PRON
behavior NOUN
. PUNCT
  SPACE
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine1111 PROPN
West PROPN
17th ADJ
St PROPN
. PUNCT
Tulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107"Without NUM
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance" NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59166From NUM
: PUNCT
egb7390@ucs.usl.edu NOUN
( PUNCT
Boutte PROPN
Erika PROPN
G)Subject NOUN
: PUNCT
M. PROPN
contagiosemI PROPN
was AUX
wondering VERB
if SCONJ
anyone PRON
had AUX
any DET
information NOUN
about ADP
Molluscous ADJ
contagiosem NOUN
. PUNCT
I PRON
acquired VERB
it PRON
, PUNCT
and CCONJ
fortunately ADV
got VERB
rid VERB
of ADP
it PRON
, PUNCT
but CCONJ
the DET
question NOUN
still ADV
lingersin VERB
my PRON
mind NOUN
: PUNCT
Where ADV
did AUX
it PRON
come VERB
from ADP
? PUNCT
  SPACE
The DET
little ADJ
bit NOUN
of ADP
info NOUN
that PRON
I PRON
have AUX
received VERB
about ADP
it PRON
in ADP
the DET
past ADJ
states NOUN
that SCONJ
it PRON
can AUX
be AUX
transmitted VERB
sexually ADV
, PUNCT
butalso ADV
occurs VERB
in ADP
small ADJ
children NOUN
on ADP
the DET
hands NOUN
, PUNCT
feet NOUN
and CCONJ
genitalia NOUN
. PUNCT
Any DET
information NOUN
will AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
"I NOUN
grow VERB
old ADJ
, PUNCT
I PRON
grow VERB
old;I ADJ
shall AUX
wear VERB
my PRON
trousers NOUN
rolled VERB
. PUNCT
" PUNCT
               SPACE
-T. NOUN
S. PROPN
EliotNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59167From NUM
: PUNCT
sdr@llnl.gov PROPN
( PUNCT
Dakota)Subject ADJ
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
1993Apr21.143910.5826@wvnvms.wvnet.edu NUM
> X
pk115050@wvnvms.wvnet.edu NOUN
writes VERB
: PUNCT
> X
My PRON
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
no DET
> X
medical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed VERB
. PUNCT
> X
> X
My PRON
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigate VERB
> X
their PRON
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
> X
etc X
... PUNCT
) PUNCT
> X
> X
Thank VERB
you PRON
, PUNCT
> X
> X
Dave PROPN
Carvell PROPN
> X
pk115050@wvnvms.wvnet.eduFirst NOUN
, PUNCT
let VERB
me PRON
offer VERB
you PRON
my PRON
condolences NOUN
. PUNCT
  SPACE
I PRON
've AUX
had VERB
kidney NOUN
stones NOUN
4 NUM
times NOUN
and CCONJ
I PRON
know VERB
the DET
pain NOUN
she PRON
is AUX
going VERB
through ADP
. PUNCT
  SPACE
First ADV
, PUNCT
it PRON
is AUX
best ADJ
that SCONJ
she PRON
see VERB
a DET
doctor NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
every DET
time NOUN
I PRON
had AUX
kidney NOUN
stones NOUN
, PUNCT
I PRON
saw VERB
my PRON
doctor NOUN
and CCONJ
theonly ADJ
thing NOUN
they PRON
did AUX
was AUX
to PART
prescribe VERB
some DET
pain NOUN
killers NOUN
and CCONJ
medication NOUN
for ADP
aurinary ADJ
tract NOUN
infection NOUN
. PUNCT
  SPACE
The DET
pain NOUN
killers NOUN
did AUX
nothing PRON
for ADP
me PRON
... PUNCT
kidney PROPN
stonesare PROPN
extremely ADV
painful ADJ
. PUNCT
  SPACE
My PRON
stones NOUN
were AUX
judged VERB
passable ADJ
, PUNCT
so ADV
we PRON
just ADV
waited VERB
itout ADV
. PUNCT
  SPACE
However ADV
the DET
last ADJ
one NOUN
took VERB
10 NUM
days NOUN
to PART
pass VERB
... PUNCT
not PART
fun ADJ
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
if SCONJ
sheabsolutely ADV
wo AUX
n't PART
see VERB
a DET
doctor NOUN
, PUNCT
I PRON
suggest VERB
drinking VERB
lots NOUN
of ADP
fluids NOUN
and CCONJ
perhapsan ADJ
over ADP
the DET
counter NOUN
sleeping NOUN
pill NOUN
. PUNCT
  SPACE
But CCONJ
, PUNCT
I PRON
do AUX
highly ADV
suggest VERB
seeing VERB
a DET
doctor NOUN
. PUNCT
Kidney NOUN
stones NOUN
are AUX
not PART
something PRON
to PART
fool VERB
around ADV
with ADP
. PUNCT
  SPACE
She PRON
should AUX
be AUX
x NOUN
- PUNCT
rayed VERB
to PART
make VERB
sure ADJ
there PRON
is AUX
not PART
a DET
serious ADJ
problem NOUN
. PUNCT
SteveNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59168From NUM
: PUNCT
spenser@fudd.jsc.nasa.gov PROPN
( PUNCT
S. PROPN
Spenser PROPN
Aden)Subject NUM
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
uabdpo.dpo.uab.edu-220493145727@spam.dom.uab.edu NOUN
> X
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)>wrote PROPN
: PUNCT
> X
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
> X
disease PROPN
. PUNCT
> X
> X
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
> X
without ADP
discomfort PROPN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
If SCONJ
she PRON
is AUX
having VERB
problems NOUN
with ADP
fresh ADJ
vegetables NOUN
, PUNCT
the DET
guess NOUN
is AUX
that SCONJ
there ADV
> X
is AUX
some DET
obstruction NOUN
of ADP
the DET
intestine NOUN
. PUNCT
  SPACE
Without ADP
knowing VERB
more ADJ
it PRON
is AUX
not PART
> X
possible ADJ
to PART
say VERB
whether SCONJ
the DET
obstruction NOUN
is AUX
permanent ADJ
due ADP
to ADP
scarring,>or X
temporary ADJ
due ADP
to ADP
swelling NOUN
of ADP
inflammed VERB
intestine NOUN
. PUNCT
  SPACE
In ADP
general ADJ
, PUNCT
there PRON
are AUX
> X
no DET
dietary ADJ
limitations NOUN
in ADP
patients NOUN
with ADP
Crohn PROPN
's PART
except SCONJ
as SCONJ
they PRON
relate VERB
> X
to ADP
obstruction NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
evidence NOUN
that SCONJ
any DET
foods NOUN
will AUX
bring VERB
on ADP
> X
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
Interesting ADJ
statements NOUN
, PUNCT
simply ADV
because SCONJ
I PRON
have AUX
been AUX
told VERB
otherwise ADV
. PUNCT
  SPACE
I'mcertainly ADV
not PART
questioning VERB
Steve PROPN
's PART
claims NOUN
, PUNCT
as SCONJ
for ADP
one NUM
I PRON
am AUX
not PART
a DET
doctor NOUN
, PUNCT
and CCONJ
Iagree PROPN
that PRON
foods NOUN
do AUX
n't PART
bring VERB
on ADP
the DET
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
  SPACE
But CCONJ
inflammationcan PROPN
be AUX
either CCONJ
mildly ADV
or CCONJ
DRASTICALLY NOUN
enhanced VERB
due ADP
to ADP
food NOUN
. PUNCT
Having VERB
had AUX
one NUM
major ADJ
obstruction NOUN
resulting VERB
in ADP
resection NOUN
( PUNCT
is AUX
that SCONJ
a DET
good ADJ
enoughcaveat NOUN
:-) PUNCT
, PUNCT
I PRON
was AUX
told VERB
that SCONJ
a DET
* PUNCT
LOW ADJ
RESIDUE PROPN
* PUNCT
diet NOUN
is AUX
called VERB
for ADP
. PUNCT
  SPACE
Basically ADV
, PUNCT
the DET
idea NOUN
is AUX
that SCONJ
if SCONJ
there PRON
is AUX
inflammation NOUN
of ADP
the DET
gut NOUN
( PUNCT
which PRON
may AUX
not PART
berealized VERB
by ADP
the DET
patient NOUN
) PUNCT
, PUNCT
any DET
residue NOUN
in ADP
the DET
system NOUN
can AUX
be AUX
caught VERB
in ADP
the DET
foldsof ADJ
inflammation NOUN
and CCONJ
constantly ADV
irritate ADJ
, PUNCT
thus ADV
exacerbating VERB
the DET
problem NOUN
. PUNCT
Therefore ADV
, PUNCT
anything PRON
that PRON
does AUX
n't PART
digest VERB
completely ADV
by ADP
the DET
point NOUN
of ADP
commoninflammation NOUN
should AUX
be AUX
avoided VERB
. PUNCT
  SPACE
With ADP
what PRON
I PRON
've AUX
been AUX
told VERB
is AUX
typical ADJ
Crohn's PROPN
, PUNCT
of ADP
the DET
terminal PROPN
ileum NOUN
, PUNCT
my PRON
diet NOUN
should AUX
be AUX
low ADJ
residue ADJ
, PUNCT
consisting VERB
of ADP
: PUNCT
Completely ADV
out ADV
- PUNCT
never ADV
again ADV
- PUNCT
items NOUN
: PUNCT
	 SPACE
o INTJ
corn NOUN
( PUNCT
kernel NOUN
husk NOUN
does AUX
n't PART
digest VERB
... PUNCT
most ADJ
of ADP
us PRON
know VERB
this DET
:-) PUNCT
	 SPACE
o INTJ
popcorn ADJ
( PUNCT
same ADJ
) PUNCT
	 SPACE
o INTJ
dried VERB
( PUNCT
dehydrated VERB
) PUNCT
fruit NOUN
and CCONJ
fruit NOUN
skins NOUN
	 SPACE
o INTJ
nuts NOUN
( PUNCT
Very ADV
tough ADJ
when ADV
it PRON
comes VERB
to ADP
giving VERB
up ADP
some DET
fudge NOUN
: PUNCT
-)Discouraged ADV
greatly ADV
: PUNCT
	 SPACE
o INTJ
raw ADJ
vegetables NOUN
( PUNCT
too ADV
fibrous ADJ
) PUNCT
	 SPACE
o INTJ
wheat NOUN
and CCONJ
raw ADJ
grain NOUN
breads NOUN
	 SPACE
o INTJ
exotic ADJ
lettuce NOUN
( PUNCT
iceberg PROPN
is AUX
ok ADJ
since SCONJ
it PRON
's AUX
apparently ADV
mostly ADV
water NOUN
) PUNCT
	 SPACE
o INTJ
greens PROPN
( PUNCT
turnip NOUN
, PUNCT
mustard NOUN
, PUNCT
kale PROPN
, PUNCT
etc X
... PUNCT
) PUNCT
	 SPACE
o INTJ
little ADJ
seeds NOUN
, PUNCT
like SCONJ
sesame NOUN
( PUNCT
try VERB
getting VERB
an DET
Arby PROPN
's PART
without ADP
it PRON
! PUNCT
) PUNCT
	 SPACE
o DET
long ADJ
grain NOUN
and CCONJ
wild ADJ
rice NOUN
( PUNCT
husky PROPN
) PUNCT
	 SPACE
o INTJ
beans NOUN
( PUNCT
you PRON
'll AUX
generate VERB
enough ADJ
gas NOUN
alone ADV
without ADP
them PRON
! PUNCT
) PUNCT
	 SPACE
o X
BASICALLY PROPN
anything PRON
that PRON
requires VERB
heavy ADJ
digestive ADJ
processingI PROPN
was AUX
told VERB
that SCONJ
the DET
more ADV
processed VERB
the DET
food NOUN
the DET
better ADJ
! PUNCT
( PUNCT
rather ADV
ironic ADJ
in ADP
thisday NOUN
and CCONJ
age NOUN
) PUNCT
. PUNCT
  SPACE
The DET
whole ADJ
point NOUN
is AUX
PREVENTATIVE ADJ
... PUNCT
you PRON
want VERB
to PART
give VERB
yoursystem NOUN
as SCONJ
little ADJ
chance NOUN
to PART
inflame VERB
as SCONJ
possible ADJ
. PUNCT
  SPACE
I PRON
was AUX
told VERB
that DET
among ADP
theNUMEROUS ADJ
things NOUN
that PRON
were AUX
heavily ADV
discouraged VERB
( PUNCT
I PRON
only ADV
listed VERB
a DET
few ADJ
) PUNCT
, PUNCT
to ADP
trythe VERB
ones NOUN
I PRON
wanted VERB
and CCONJ
see VERB
how ADV
I PRON
felt VERB
. PUNCT
  SPACE
If SCONJ
it PRON
's AUX
bad ADJ
, PUNCT
do AUX
n't PART
do AUX
it PRON
again!Remember VERB
though SCONJ
that SCONJ
this DET
was AUX
while SCONJ
I PRON
was AUX
in ADP
remission NOUN
. PUNCT
  SPACE
For ADP
Veggies NOUN
: PUNCT
cook VERB
thedaylights NOUN
out SCONJ
of ADP
them PRON
. PUNCT
  SPACE
I PRON
prefer VERB
steaming VERB
... PUNCT
I PRON
think VERB
it PRON
's AUX
cooks NOUN
morethoroughly ADV
- PUNCT
you PRON
're AUX
mileage NOUN
may AUX
vary VERB
. PUNCT
As SCONJ
with ADP
anything PRON
else ADV
, PUNCT
CHECK VERB
WITH ADP
YOUR PRON
DOCTOR NOUN
. PUNCT
  SPACE
Do AUX
n't PART
just ADV
take VERB
my PRON
word NOUN
. PUNCT
  SPACE
Butthis PROPN
is AUX
the DET
info NOUN
I PRON
've AUX
been AUX
given VERB
, PUNCT
and CCONJ
it PRON
may AUX
be AUX
a DET
starting VERB
point NOUN
fordiscussion NOUN
. PUNCT
  SPACE
Good PROPN
luck!-Spenser-- PROPN
S. PROPN
Spenser PROPN
Aden PROPN
--- PUNCT
Lockheed PROPN
Engineering PROPN
and CCONJ
Sciences PROPN
Co. PROPN
--- PUNCT
( PUNCT
713 NUM
) PUNCT
483 NUM
- PUNCT
2028NASA NUM
--- PUNCT
Flight PROPN
Data PROPN
and CCONJ
Evaluation PROPN
Office PROPN
--- PUNCT
Johnson PROPN
Space PROPN
Center PROPN
, PUNCT
Houstonspenser@fudd.jsc.nasa.gov NUM
    SPACE
( PUNCT
Internet NOUN
) PUNCT
--- PUNCT
  SPACE
Opinions PROPN
herein PROPN
are AUX
mine PRON
alone.aden@vf.jsc.nasa.gov PROPN
( PUNCT
if SCONJ
above ADP
bounces NOUN
) PUNCT
--- PUNCT
  SPACE
" PUNCT
Eschew PROPN
obfuscation NOUN
. PUNCT
" PUNCT
- PUNCT
unknownNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59169From NUM
: PUNCT
SASTLS@MVS.sas.com X
( PUNCT
Tamara PROPN
Shaffer)Subject NUM
: PUNCT
Re ADP
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
In ADP
article NOUN
< X
1993Apr20.184034.13779@dbased.nuo.dec.com>,dufault@lftfld.enet.dec.com NUM
( PUNCT
MD PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
        SPACE
The DET
reason NOUN
I PRON
'm AUX
posting VERB
this DET
article NOUN
to ADP
this DET
newsgroup NOUN
is AUX
to:>1 PROPN
. PUNCT
gather VERB
any DET
information NOUN
about ADP
this DET
disorder NOUN
from ADP
anyone PRON
who PRON
might AUX
> X
   SPACE
have AUX
recently ADV
been AUX
* PUNCT
e*ffected VERB
by ADP
it PRON
( PUNCT
from ADP
being AUX
associated VERB
with ADP
> X
   SPACE
it PRON
or CCONJ
actually ADV
having VERB
this DET
disorder NOUN
) PUNCT
and>2 PROPN
. PUNCT
help VERB
me PRON
find VERB
out ADP
where ADV
I PRON
can AUX
access VERB
any DET
medical ADJ
literature NOUN
associated VERB
> X
   SPACE
with ADP
seizures NOUN
over ADP
the DET
internet NOUN
. PUNCT
I PRON
tried VERB
to ADP
e NOUN
- NOUN
mail VERB
you PRON
but CCONJ
it PRON
bounced VERB
back ADV
. PUNCT
  SPACE
Please INTJ
e NOUN
- NOUN
mail VERB
me PRON
andI VERB
will AUX
give VERB
you PRON
someone PRON
's PART
name NOUN
who PRON
might AUX
be AUX
very ADV
helpful ADJ
. PUNCT
  SPACE
You PRON
mightalso ADV
post VERB
your PRON
message NOUN
to ADP
misc.kids.TAMARAsastls@mvs.sas.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59170From NUM
: PUNCT
euclid@mrcnext.cso.uiuc.edu PROPN
( PUNCT
Euclid PROPN
K.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
GETTING VERB
AIDS PROPN
FROM ADP
ACUPUNCTURE NOUN
NEEDLESmatthews@Oswego NOUN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews PROPN
) PUNCT
writes:>I PROPN
had AUX
electrical ADJ
pulse NOUN
nerve NOUN
testing NOUN
done VERB
a DET
while NOUN
back ADV
. PUNCT
  SPACE
The DET
needles NOUN
were AUX
taken VERB
> X
from ADP
a DET
dirty ADJ
drawer NOUN
in ADP
an DET
instrument NOUN
cart NOUN
and CCONJ
were AUX
most ADV
certainly ADV
NOT ADV
> X
sterile ADJ
or CCONJ
even ADV
clean ADJ
for ADP
that DET
matter NOUN
. PUNCT
  SPACE
More ADV
than SCONJ
likely ADJ
they PRON
were AUX
fresh ADJ
> X
from ADP
the DET
previous ADJ
patient NOUN
. PUNCT
  SPACE
I PRON
WAS VERB
concerned VERB
, PUNCT
but CCONJ
I PRON
kept VERB
my PRON
mouth NOUN
shut NOUN
. PUNCT
  SPACE
I PRON
> X
probably ADV
should AUX
have AUX
raised VERB
hell NOUN
! PUNCT
	 SPACE
Could AUX
you PRON
describe VERB
in ADP
more ADJ
detail NOUN
the DET
above ADJ
procedure NOUN
? PUNCT
  SPACE
I PRON
've AUX
neverheard VERB
about ADP
it PRON
. PUNCT
	 SPACE
And CCONJ
yes INTJ
, PUNCT
if SCONJ
they PRON
pierced VERB
you PRON
with ADP
the DET
needles NOUN
you PRON
probably ADV
should AUX
haveprotested VERB
. PUNCT
euclid PROPN
--Euclid PUNCT
K. PROPN
       SPACE
standard ADJ
disclaimers NOUN
apply"It PROPN
is AUX
a DET
bit NOUN
ironic ADJ
that SCONJ
we PRON
need VERB
the DET
wave NOUN
model NOUN
[ PUNCT
of ADP
light NOUN
] PUNCT
to PART
understand VERB
thepropagation NOUN
of ADP
light NOUN
only ADV
through ADP
that DET
part NOUN
of ADP
the DET
system NOUN
where ADV
it PRON
leaves VERB
notrace NOUN
. PUNCT
" PUNCT
  SPACE
--Hudson PROPN
& CCONJ
Nelson PROPN
( PUNCT
_ PROPN
University_Physics_)Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59171From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Foreskin PROPN
TroublesIn NOUN
article NOUN
< X
1993Apr18.042100.2720@radford.vak12ed.edu NUM
> X
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich PROPN
) PUNCT
writes:>What DET
can AUX
be AUX
done VERB
, PUNCT
short ADJ
of ADP
circumcision NOUN
, PUNCT
for ADP
an DET
adult NOUN
male NOUN
> X
whose PRON
foreskin NOUN
will AUX
not PART
retract?>Melissa VERB
, PUNCT
there PRON
is AUX
a DET
simpler ADJ
procedure NOUN
called VERB
a DET
" PUNCT
Dorsal PROPN
slit NOUN
" PUNCT
that SCONJ
isreally ADV
the DET
first ADJ
step NOUN
of ADP
the DET
usual ADJ
circumcision NOUN
. PUNCT
  SPACE
It PRON
is AUX
simpler ADJ
andquicker NOUN
, PUNCT
but CCONJ
the DET
pain NOUN
is AUX
about ADP
the DET
same ADJ
as SCONJ
circumcision NOUN
after ADP
theanesthetic ADJ
wears NOUN
off ADP
and CCONJ
the DET
aesthetic ADJ
result NOUN
post PROPN
healing NOUN
is AUX
not PART
asgood NOUN
. PUNCT
  SPACE
See VERB
your PRON
friendly ADJ
urologist NOUN
for ADP
more ADJ
details NOUN
. PUNCT
                                                SPACE
Len PROPN
Howard PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59172From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
quality NOUN
control NOUN
in ADP
medicineIn PROPN
article NOUN
< X
93108.003258U19250@uicvm.uic.edu NUM
> X
< X
U19250@uicvm.uic.edu NUM
> X
writes:>Does VERB
anybody PRON
know VERB
of ADP
any DET
information NOUN
regarding VERB
the DET
implementaion NOUN
of ADP
total ADJ
> X
quality NOUN
management NOUN
, PUNCT
quality NOUN
control NOUN
, PUNCT
quality NOUN
assurance NOUN
in ADP
the DET
delivery NOUN
of ADP
> PROPN
health PROPN
care PROPN
service PROPN
. PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
is AUX
enough ADJ
> NOUN
interest NOUN
, PUNCT
I PRON
will AUX
post VERB
the DET
responses NOUN
. PUNCT
> X
        SPACE
Thank VERB
You PRON
> X
        SPACE
Abhin PROPN
Singla PROPN
MS PROPN
BioE PROPN
, PUNCT
MBA PROPN
, PUNCT
MD PROPN
> X
        SPACE
President PROPN
AC PROPN
Medcomp PROPN
IncDr NOUN
Singla PROPN
, PUNCT
you PRON
might AUX
contact VERB
Kaiser PROPN
Health PROPN
Plan PROPN
either CCONJ
in ADP
the DET
areaclosest NOUN
to ADP
you PRON
or CCONJ
at ADP
the DET
central ADJ
office NOUN
in ADP
Oakland PROPN
CA PROPN
. PUNCT
  SPACE
We PRON
have AUX
beendoing VERB
QA PROPN
, PUNCT
QoS NOUN
, PUNCT
concurrent ADJ
UR PROPN
, PUNCT
and CCONJ
TQM PROPN
for ADP
some DET
time NOUN
now ADV
in ADP
the DET
HawaiiRegion PROPN
, PUNCT
and CCONJ
I PRON
suspect VERB
it PRON
is AUX
nationwide ADJ
in ADP
the DET
system NOUN
. PUNCT
Len PROPN
Howard PROPN
MDNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59173From NUM
: SYM
tron@fafnir.la.locus.com X
( PUNCT
Michael PROPN
Trofimoff)Subject PROPN
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceHi PROPN
All DET
, PUNCT
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
anauthentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
thatis NOUN
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki?Thanks,-= PROPN
< X
tron PROPN
> X
= SYM
-e ADJ
- PUNCT
mail NOUN
: PUNCT
tron@locus.com X
		 SPACE
* PUNCT
Vidi PROPN
, PUNCT
vici PROPN
, PUNCT
veni*Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59174From NUM
: PUNCT
akins@cbnewsd.cb.att.com X
( PUNCT
kay.a.akins)Subject NOUN
: PUNCT
Seizure NOUN
information NOUN
- PUNCT
infantHere PROPN
is AUX
the DET
tollfree ADJ
hotline NOUN
for ADP
the DET
Epilepsy PROPN
Foundationof PROPN
America PROPN
- PUNCT
1 NUM
- SYM
800-EFA-1000 NUM
. PUNCT
  SPACE
They PRON
will AUX
be AUX
able ADJ
to PART
answeryour VERB
questions NOUN
and CCONJ
send VERB
you PRON
information NOUN
and CCONJ
references NOUN
onseizure NOUN
types NOUN
, PUNCT
medication NOUN
, PUNCT
etc X
. PUNCT
  SPACE
They PRON
can AUX
also ADV
give VERB
you PRON
referencesfor NOUN
a DET
pediatric ADJ
neorologist NOUN
in ADP
your PRON
area NOUN
. PUNCT
  SPACE
Also ADV
ask VERB
for ADP
the DET
number NOUN
of ADP
your PRON
local ADJ
Foundation PROPN
who PRON
can AUX
put VERB
you PRON
in ADP
touch NOUN
witha NOUN
Parent PROPN
Support PROPN
Group PROPN
and CCONJ
social ADJ
workers NOUN
. PUNCT
Good ADJ
Luck PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59175From NUM
: PUNCT
koreth@spud VERB
. PUNCT
Hyperion NOUN
. PUNCT
COM PROPN
( PUNCT
Steven PROPN
Grimm)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?I PROPN
had AUX
allergy ADJ
shots NOUN
for ADP
about ADV
four NUM
years NOUN
starting VERB
as SCONJ
a DET
sophomore NOUN
in ADP
highschool PROPN
. PUNCT
  SPACE
Before ADP
that DET
, PUNCT
I PRON
used VERB
to PART
get AUX
bloody ADJ
noses NOUN
, PUNCT
nighttime PROPN
asthma PROPN
attacks NOUN
, PUNCT
and CCONJ
eyes NOUN
so ADV
itchy ADJ
I PRON
could AUX
n't PART
get AUX
to ADP
sleep NOUN
. PUNCT
  SPACE
After ADP
about ADV
6 NUM
months NOUN
on ADP
theshots NOUN
, PUNCT
most ADJ
of ADP
those DET
symptoms NOUN
were AUX
gone VERB
, PUNCT
and CCONJ
they PRON
have AUX
n't PART
come VERB
back ADV
. PUNCT
  SPACE
Istopped PROPN
getting VERB
the DET
shots NOUN
( PUNCT
due ADP
more ADJ
to ADP
laziness NOUN
than SCONJ
planning VERB
) PUNCT
in ADP
college NOUN
. PUNCT
My PRON
allergies NOUN
got VERB
a DET
little ADV
worse ADJ
after ADP
that DET
, PUNCT
but CCONJ
are AUX
still ADV
nowhere ADV
near SCONJ
asbad NOUN
as SCONJ
they PRON
used VERB
to PART
be AUX
. PUNCT
  SPACE
So ADV
yes INTJ
, PUNCT
the DET
shots NOUN
do AUX
work NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59176Subject NUM
: PUNCT
Re ADP
: PUNCT
ArythmiaFrom PROPN
: PUNCT
perry1@husc10.harvard.edu PROPN
( PUNCT
Alexis PROPN
Perry)In PROPN
article NOUN
< X
1993Apr22.031423.1@vaxc.stevens-tech.edu NUM
> X
u96_averba@vaxc.stevens-tech.edu ADJ
writes:>doctors NOUN
said VERB
that SCONJ
he PRON
could AUX
die VERB
from ADP
it PRON
, PUNCT
and CCONJ
the DET
medication NOUN
caused VERB
> X
	 SPACE
Is AUX
it PRON
that ADV
serious ADJ
? PUNCT
  SPACE
My PRON
EKG PROPN
often ADV
comes VERB
back ADV
with ADP
a DET
few ADJ
irregularbeats NOUN
. PUNCT
  SPACE
Another DET
question NOUN
: PUNCT
  SPACE
Is AUX
a DET
low ADJ
blood NOUN
potassium NOUN
level NOUN
very ADV
bad ADJ
? PUNCT
  SPACE
Mydoctor NOUN
seems VERB
concerned ADJ
, PUNCT
but CCONJ
she PRON
tends VERB
to PART
worry VERB
too ADV
much ADV
in ADP
general.___________________________________________________________________________Alexis PUNCT
Perry PROPN
				 SPACE
" PUNCT
The DET
less ADJ
I PRON
want VERB
the DET
more ADJ
I PRON
getperry1@husc.harvard.edu VERB
			  SPACE
Make VERB
me PRON
chaste VERB
, PUNCT
but CCONJ
not PART
just ADV
yet.eliot PROPN
house NOUN
box NOUN
413 NUM
			  SPACE
It PRON
's AUX
a DET
promise NOUN
or CCONJ
a DET
lie(617 PROPN
) PUNCT
493 NUM
- SYM
6300 NUM
				  SPACE
I PRON
'll AUX
repent VERB
before ADP
I PRON
die VERB
. PUNCT
""Work PUNCT
? PUNCT
Have AUX
you PRON
lost VERB
your PRON
mind NOUN
? PUNCT
! PUNCT
" PUNCT
			 SPACE
-Ren PROPN
				 SPACE
-Sting PROPN
   SPACE
Nobody PRON
really ADV
admits VERB
to PART
sharing VERB
my PRON
opinions NOUN
- PUNCT
last ADJ
of ADP
all DET
Harvard PROPN
CollegeNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59178From NUM
: PUNCT
melewitt@cs.sandia.gov PROPN
( PUNCT
Martin PROPN
E. PROPN
Lewitt)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Altitude NOUN
adjustmentIn PROPN
article NOUN
< X
4159@mdavcr.mda.ca NUM
> X
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
writes:>I PRON
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
cities NOUN
> X
quite ADV
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000 NUM
> X
feet NOUN
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
>>Often X
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
and CCONJ
> X
my PRON
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
very ADV
> X
dry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keep VERB
> X
away ADV
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol.>>Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there>(no X
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?>Is NOUN
there ADV
something PRON
else ADV
that PRON
I PRON
could AUX
do?I NOUN
saw VERB
a DET
Lifetime PROPN
Medical PROPN
Television PROPN
show VERB
a DET
few ADJ
months NOUN
back ADV
on ADP
travelmedicine NOUN
. PUNCT
  SPACE
It PRON
briefly ADV
mentioned VERB
some DET
drugs NOUN
which PRON
when ADV
started VERB
two NUM
orthree ADJ
days NOUN
before ADP
getting VERB
to ADP
altitude NOUN
could AUX
assist VERB
in ADP
acclimitazation NOUN
. PUNCT
Unfortunately ADV
all DET
that PRON
I PRON
can AUX
recall VERB
is AUX
that SCONJ
the DET
drug NOUN
stimulatedbreathing NOUN
at ADP
night NOUN
? PUNCT
? PUNCT
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
that DET
makes VERB
sense NOUN
, PUNCT
it PRON
seemsto VERB
me PRON
that SCONJ
the DET
new ADJ
drug NOUN
which PRON
stimulates VERB
red ADJ
blood NOUN
cell NOUN
productionwould AUX
be AUX
a DET
more ADV
logical ADJ
approach NOUN
, PUNCT
erythropoiten NOUN
( PUNCT
sp?).Alas PROPN
, PUNCT
I PRON
did AUX
n't PART
record VERB
the DET
program NOUN
, PUNCT
but CCONJ
wish VERB
I PRON
had AUX
, PUNCT
since SCONJ
I PRON
liveat VERB
over ADP
7000 NUM
ft NOUN
. PROPN
and CCONJ
my PRON
mother NOUN
gets VERB
sick ADJ
when ADV
visiting VERB
. PUNCT
Please INTJ
let VERB
me PRON
know VERB
if SCONJ
you PRON
get VERB
more ADV
informative ADJ
responses.--Phone NOUN
: PUNCT
  SPACE
( PUNCT
505 NUM
) PUNCT
845 NUM
- NUM
7561 NUM
           SPACE
Martin PROPN
E. PROPN
Lewitt PROPN
             SPACE
My PRON
opinions NOUN
areDomain ADV
: PUNCT
lewitt@ncube PROPN
. PUNCT
COM NOUN
         SPACE
P.O. PROPN
Box PROPN
513 NUM
                 SPACE
my PRON
own ADJ
, PUNCT
not PART
mySandia PROPN
: PUNCT
melewitt@cs.sandia.GOV PROPN
   SPACE
Sandia PROPN
Park PROPN
, PUNCT
NM PROPN
87047 NUM
- SYM
0513 NUM
   SPACE
employer NOUN
's PART
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59179From NUM
: PUNCT
robg@citr.uq.oz.au PROPN
( PUNCT
Rob NOUN
Geraghty)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>Snort PROPN
. PUNCT
  SPACE
Ah INTJ
, PUNCT
there PRON
go VERB
my PRON
sinuses NOUN
again.>Oh NUM
, PUNCT
wow INTJ
. PUNCT
  SPACE
A DET
classic ADJ
textbook NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
laughed VERB
at ADP
Einstein PROPN
, PUNCT
too!>Yeah PROPN
, PUNCT
I PRON
'll AUX
bet VERB
. PUNCT
  SPACE
Tomorrow PROPN
, PUNCT
the DET
world.>Listen PROPN
, PUNCT
uncontrolled ADJ
studies NOUN
like SCONJ
this DET
are AUX
worthless.>I'm PROPN
sure ADJ
you PRON
are AUX
. PUNCT
  SPACE
You PRON
sound VERB
like SCONJ
the DET
typical ADJ
hysteric PROPN
/ SYM
hypochondriac PROPN
who PRON
> X
responds VERB
to ADP
" PUNCT
miracle NOUN
cures NOUN
. PUNCT
">Yeah PUNCT
, PUNCT
" PUNCT
it PRON
makes VERB
sense NOUN
to ADP
me PRON
" PUNCT
, PUNCT
so ADV
of ADP
course NOUN
it PRON
should AUX
be AUX
taken VERB
seriously.>Snort.>Yeah INTJ
, PUNCT
" PUNCT
it PRON
sounds VERB
reasonable ADJ
to ADP
me".>Oh PROPN
, PUNCT
really ADV
? PUNCT
  SPACE
_ VERB
What PRON
_ PROPN
tests NOUN
? PUNCT
  SPACE
Immune PROPN
- PUNCT
compromised VERB
, PUNCT
my PRON
ass.>More NOUN
like SCONJ
credulous ADJ
malingerer NOUN
. PUNCT
  SPACE
This DET
is AUX
a DET
psychiatric ADJ
syndrome.>You NOUN
know VERB
, PUNCT
it PRON
's AUX
a DET
shame NOUN
that PRON
a DET
drug NOUN
like SCONJ
itraconazole NOUN
is AUX
being AUX
misused VERB
> X
in ADP
this DET
way NOUN
. PUNCT
  SPACE
It PRON
's AUX
ridiculously ADV
expensive ADJ
, PUNCT
and CCONJ
potentially ADV
toxic.>The DET
trouble NOUN
is AUX
that SCONJ
it PRON
is AUX
n't PART
toxic ADJ
enough ADV
, PUNCT
so CCONJ
it PRON
gets VERB
abused VERB
by ADP
quacks.>The PROPN
only ADV
good ADJ
thing NOUN
about ADP
nystatin PROPN
is AUX
that SCONJ
it PRON
's AUX
( PUNCT
relatively ADV
) PUNCT
cheap ADJ
> X
and CCONJ
when ADV
taken VERB
orally ADV
, PUNCT
non ADJ
- ADJ
toxic ADJ
. PUNCT
  SPACE
But CCONJ
oral PROPN
nystatin PROPN
is AUX
without ADP
any DET
> X
systemic ADJ
effect NOUN
, PUNCT
so CCONJ
unless SCONJ
it PRON
were AUX
given VERB
IV PROPN
, PUNCT
it PRON
would AUX
be AUX
without ADP
> X
any DET
effect NOUN
on ADP
your PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
wish VERB
these DET
quacks NOUN
would AUX
first ADV
use VERB
> X
IV PROPN
nystatin PROPN
or CCONJ
amphotericin PROPN
B PROPN
on ADP
people NOUN
like SCONJ
you PRON
. PUNCT
  SPACE
That DET
would AUX
solve VERB
> X
the DET
" PUNCT
yeast NOUN
" PUNCT
problem NOUN
once ADV
and CCONJ
for ADP
all.>Perhaps DET
a DET
little ADJ
Haldol PROPN
would AUX
go VERB
a DET
long ADJ
way NOUN
towards ADP
ameliorating VERB
> X
your PRON
symptoms.>Are NOUN
you PRON
paying VERB
for ADP
this DET
treatment NOUN
out SCONJ
of ADP
your PRON
own ADJ
pocket NOUN
? PUNCT
  SPACE
I PRON
'd AUX
hate VERB
> X
to PART
think VERB
my PRON
insurance NOUN
premiums NOUN
are AUX
going VERB
towards ADP
this DET
. PUNCT
Steve PROPN
, PUNCT
take VERB
a DET
look NOUN
at ADP
what PRON
you PRON
are AUX
saying VERB
. PUNCT
  SPACE
I PRON
do AUX
n't PART
see VERB
one NUM
construvtiveword PROPN
here ADV
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
have AUX
anything PRON
constructive ADJ
to PART
add VERB
, PUNCT
why ADV
wastethe DET
bandwidth PROPN
- PUNCT
yeah INTJ
, PUNCT
sure INTJ
, PUNCT
flame VERB
me PRON
for ADP
doing VERB
it PRON
myself PRON
. PUNCT
  SPACE
Is AUX
thissci.med VERB
or CCONJ
alt.flame ADJ
? PUNCT
  SPACE
Like SCONJ
it PRON
or CCONJ
not PART
, PUNCT
medical ADJ
science NOUN
does AUX
* PUNCT
not PART
* PUNCT
knowcategorically ADV
everything PRON
about ADP
everything PRON
. PUNCT
  SPACE
I PRON
'm AUX
not PART
flaming VERB
yourknowledge NOUN
, PUNCT
just ADV
asking VERB
you PRON
to PART
sit VERB
back ADV
and CCONJ
ask VERB
yourself PRON
" PUNCT
what PRON
if?""Minds VERB
are AUX
like SCONJ
parachutes NOUN
- PUNCT
they PRON
only ADV
function VERB
when ADV
they PRON
are AUX
open ADJ
. PUNCT
"Oh PUNCT
- PUNCT
and CCONJ
if SCONJ
you PRON
* PUNCT
do AUX
* PUNCT
want VERB
to PART
flame VERB
me PRON
or CCONJ
anyone PRON
else ADV
, PUNCT
how ADV
about ADV
usingemail?RobWho ADJ
does AUX
n't PART
claim VERB
any DET
relevant ADJ
qualifications NOUN
, PUNCT
just ADV
interest--------------------------------------------------------------------------Rob PUNCT
Geraghty PROPN
               SPACE
| PROPN
3 NUM
things NOUN
are AUX
important ADJ
to ADP
me PRON
robg@citr.uq.oz.au PROPN
         SPACE
| PROPN
The DET
gift NOUN
of ADP
love NOUN
, PUNCT
the DET
joy NOUN
of ADP
lifeCITR PROPN
                       SPACE
| PROPN
And CCONJ
the DET
making NOUN
of ADP
music NOUN
in ADP
all DET
its PRON
formsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59180From NUM
: PUNCT
pete@smtl.demon.co.uk PROPN
( PUNCT
Pete PROPN
Phillips)Subject NUM
: PUNCT
Nebulisers NOUN
and CCONJ
particle NOUN
SizeHi PROPN
, PUNCT
we PRON
are AUX
just ADV
completing VERB
a DET
project NOUN
on ADP
nebuliser NOUN
performance NOUN
, PUNCT
and CCONJ
have AUX
awealth NOUN
of ADP
data NOUN
on ADP
particle NOUN
size NOUN
and CCONJ
output NOUN
which PRON
we PRON
are AUX
going VERB
to PART
useto VERB
adjudicate VERB
a DET
contract NOUN
next ADJ
week NOUN
. PUNCT
Although SCONJ
the DET
output NOUN
data NOUN
is AUX
easy ADJ
for ADP
us PRON
to PART
present VERB
, PUNCT
there PRON
seems VERB
to PART
belittle VERB
concensus NOUN
on ADP
the DET
optimum ADJ
diameter NOUN
of ADP
the DET
nebulised VERB
droplets NOUN
forstraightforward ADP
inhalation NOUN
therapy NOUN
( PUNCT
eg PROPN
: PUNCT
for ADP
asthmatics).Some PROPN
say VERB
that SCONJ
the DET
droplets NOUN
must AUX
be AUX
smaller ADJ
than SCONJ
5 NUM
microns NOUN
, PUNCT
whilstothers NOUN
say VERB
that SCONJ
if SCONJ
they PRON
are AUX
too ADV
small ADJ
they PRON
will AUX
not PART
be AUX
effective ADJ
. PUNCT
Anyone PRON
up ADP
on ADP
this DET
topic NOUN
who PRON
could AUX
summarise VERB
the DET
current ADJ
status NOUN
? PUNCT
Cheers NOUN
, PUNCT
Pete-- ADJ
Pete PROPN
Phillips PROPN
, PUNCT
Deputy PROPN
Director PROPN
, PUNCT
Surgical PROPN
Materials PROPN
Testing PROPN
Lab PROPN
, PUNCT
Bridgend PROPN
General PROPN
Hospital PROPN
, PUNCT
S. PROPN
Wales PROPN
. PUNCT
0656 NUM
- SYM
652166 NUM
pete@smtl.demon.co.uk PROPN
   SPACE
--"The PUNCT
Four NUM
Horse PROPN
Oppressors PROPN
of ADP
the DET
Apocalypse PROPN
were AUX
NutritionalDeprivation PROPN
, PUNCT
State PROPN
of ADP
Belligerency PROPN
, PUNCT
Widespread PROPN
Transmittable PROPN
Conditionand PROPN
Terminal PROPN
Inconvenience PROPN
" PUNCT
- PUNCT
Official PROPN
Politically PROPN
Correct PROPN
DictionaryNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59181From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In PROPN
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
disease NOUN
. PUNCT
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
without ADP
discomfort NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
John PROPN
EylesAll PROPN
your PRON
friend NOUN
really ADV
has AUX
to PART
do AUX
is AUX
find VERB
a DET
Registered ADJ
Dietician(RD PROPN
) PUNCT
. PUNCT
  SPACE
While SCONJ
most ADJ
work NOUN
in ADP
hospitals NOUN
and CCONJ
clinics NOUN
, PUNCT
many ADJ
major ADJ
cities NOUN
will AUX
have AUX
RD PROPN
's PART
who PRON
are AUX
in ADP
" PUNCT
private ADJ
practice NOUN
" PUNCT
so ADV
to PART
speak VERB
. PUNCT
  SPACE
Many ADJ
physicans NOUN
will AUX
refer VERB
their PRON
patients NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
to ADP
RD PROPN
's PART
for ADP
dietary ADJ
help NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
your PRON
friend NOUN
's PART
physician NOUN
to PART
make VERB
a DET
referral ADJ
, PUNCT
medical ADJ
insurance NOUN
should AUX
pay VERB
for ADP
the DET
RD PROPN
's PART
services NOUN
just ADV
like SCONJ
the DET
services NOUN
of ADP
a DET
physical ADJ
therapist NOUN
. PUNCT
  SPACE
The DET
better ADJ
medical ADJ
insurance NOUN
plans NOUN
will AUX
cover VERB
this DET
but CCONJ
even ADV
if SCONJ
your PRON
friend NOUN
's PART
plan NOUN
does AUX
n't PART
, PUNCT
it PRON
would AUX
be AUX
well ADV
worth ADJ
the DET
cost NOUN
to PART
get AUX
on ADP
a DET
good ADJ
diet NOUN
to PART
control VERB
the DET
intestinal ADJ
discomfort NOUN
and CCONJ
help VERB
the DET
intestinal ADJ
lining NOUN
heal NOUN
. PUNCT
Crohn PROPN
's PART
disease NOUN
is AUX
an DET
inflammatory ADJ
disease NOUN
of ADP
the DET
intestinal ADJ
lining NOUN
and CCONJ
lipoxygenase NOUN
inhibitors NOUN
may AUX
help VERB
by ADP
decreasing VERB
leukotriene ADJ
formation NOUN
but CCONJ
I PRON
'm AUX
not PART
aware ADJ
of ADP
tea NOUN
or CCONJ
turmeric ADJ
containing VERB
lipoxygenase NOUN
inhibitors NOUN
. PUNCT
  SPACE
For ADP
bad ADJ
inflammation NOUN
, PUNCT
steroids NOUN
are AUX
used VERB
but CCONJ
for ADP
a DET
mild ADJ
case NOUN
, PUNCT
the DET
side NOUN
effects NOUN
are AUX
not PART
worth ADJ
the DET
small ADJ
benefit NOUN
gained VERB
by ADP
steroid NOUN
use NOUN
. PUNCT
  SPACE
Upjohn PROPN
is AUX
developing VERB
a DET
new ADJ
lipoxygenase NOUN
inhibitor NOUN
that PRON
should AUX
greatly ADV
help VERB
deal VERB
with ADP
inflammatory ADJ
diseases NOUN
but CCONJ
it PRON
's AUX
not PART
available ADJ
yet ADV
. PUNCT
Marty PROPN
B. PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59182From NUM
: PUNCT
krishnas@vax.oxford.ac.ukSubject ADP
: PUNCT
RE NOUN
: PUNCT
HELP PROPN
ME PROPN
INJECT PROPN
... PUNCT
The DET
best ADJ
way NOUN
of ADP
self NOUN
injection NOUN
is AUX
to PART
use VERB
the DET
right ADJ
size NOUN
needleand NOUN
choose VERB
the DET
correct ADJ
spot NOUN
. PUNCT
For ADP
Streptomycin PROPN
, PUNCT
usually ADV
given VERB
intramuscularly ADV
, PUNCT
use VERB
a DET
thin ADJ
needle NOUN
( PUNCT
23/24 NUM
guage NOUN
) PUNCT
and CCONJ
select VERB
a DET
spot NOUN
onthe DET
upper ADJ
, PUNCT
outer ADJ
thigh NOUN
( PUNCT
no DET
major ADJ
nerves NOUN
or CCONJ
blood NOUN
vessels NOUN
there ADV
) PUNCT
. PUNCT
Clean VERB
the DET
area NOUN
with ADP
antiseptic ADJ
before ADP
injection NOUN
, PUNCT
and CCONJ
after ADV
. PUNCT
Makesure NOUN
to PART
inject VERB
deeply ADV
( PUNCT
a DET
different ADJ
kind NOUN
of ADP
pain NOUN
is AUX
felt VERB
when ADV
theneedle NOUN
enters VERB
the DET
muscle NOUN
- PUNCT
contrasted VERB
to ADP
the DET
' PUNCT
prick NOUN
' PUNCT
when ADV
it PRON
pierces VERB
the DET
skin).PS NOUN
: PUNCT
Try VERB
to PART
go VERB
to ADP
a DET
doctor NOUN
. PUNCT
Self NOUN
- PUNCT
treatment NOUN
and CCONJ
self NOUN
- PUNCT
injection NOUN
shouldbe NOUN
avoided VERB
as ADV
far ADV
as SCONJ
possible ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59183From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)GREAT PROPN
post NOUN
Martin PROPN
. PUNCT
  SPACE
Very ADV
informative ADJ
, PUNCT
well ADV
- PUNCT
balanced VERB
, PUNCT
and CCONJ
humanitarianwithout NOUN
neglecting VERB
the DET
need NOUN
for ADP
scientific ADJ
rigor.(Cross PROPN
- PUNCT
posted VERB
to ADP
alt.psychology.personality NOUN
since SCONJ
some DET
personality NOUN
typingwill NOUN
be AUX
discussed VERB
at ADP
the DET
beginning NOUN
- PUNCT
Note NOUN
: PUNCT
I PRON
've AUX
set VERB
all DET
followups NOUN
to ADP
sci.medsince PROPN
most ADJ
of ADP
my PRON
comments NOUN
are AUX
more ADV
sci.med VERB
oriented VERB
and CCONJ
I PRON
'm AUX
sure ADJ
most ADJ
of ADP
thereplies NOUN
, PUNCT
if SCONJ
any DET
, PUNCT
will AUX
be AUX
med VERB
- PUNCT
related.)In NOUN
article NOUN
banschbach@vms.ocom.okstate.edu PROPN
writes:>I NOUN
can AUX
not PART
believe VERB
the DET
way NOUN
this DET
thread NOUN
on ADP
candida(yeast NOUN
) PUNCT
has AUX
progressed.>Steve PROPN
Dyer PROPN
and CCONJ
I PRON
have AUX
been AUX
exchanging VERB
words NOUN
over ADP
the DET
same ADJ
topic NOUN
in ADP
Sci PROPN
. PUNCT
> X
Med PROPN
. PUNCT
Nutrition NOUN
when ADV
he PRON
displayed VERB
his PRON
typical ADJ
reserve NOUN
and CCONJ
attacked VERB
a DET
woman NOUN
> X
poster NOUN
for ADP
being AUX
treated VERB
by ADP
a DET
licenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
, PUNCT
Steve PROPN
, PUNCT
and CCONJ
I PRON
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
They PRON
are AUX
just ADV
responding VERB
in ADP
their PRON
natural ADJ
way NOUN
: PUNCT
  SPACE
Hyper PROPN
- PUNCT
Choleric PROPN
Syndrome PROPN
( PUNCT
HCS).Oops NOUN
, PUNCT
that DET
is AUX
not PART
a DET
recognized VERB
" PUNCT
illness NOUN
" PUNCT
in ADP
the DET
psychological ADJ
community NOUN
, PUNCT
better ADV
not PART
say VERB
that SCONJ
since SCONJ
it PRON
therefore ADV
must AUX
not PART
, PUNCT
and CCONJ
never ADV
will AUX
, PUNCT
exist VERB
. PUNCT
  SPACE
: PUNCT
^)Actually PUNCT
, PUNCT
it PRON
is AUX
fascinating ADJ
that SCONJ
a DET
disproportionate ADJ
number NOUN
of ADP
physicianswill NOUN
type NOUN
out ADP
as SCONJ
NT PROPN
( PUNCT
for ADP
those DET
not PART
familiar ADJ
with ADP
the DET
Myers PROPN
- PUNCT
Briggs PROPN
system NOUN
, PUNCT
just ADV
e NOUN
- NOUN
mail VERB
me PRON
and CCONJ
I PRON
'll AUX
send VERB
a DET
summary NOUN
file NOUN
to ADP
you PRON
) PUNCT
. PUNCT
  SPACE
In ADP
the DET
generalpopulation NOUN
, PUNCT
NT PROPN
's PART
comprise NOUN
only ADV
about ADV
12 NUM
% NOUN
of ADP
the DET
population NOUN
, PUNCT
but CCONJ
amongphysicians VERB
it PRON
is AUX
much ADV
much ADV
higher ADJ
( PUNCT
I PRON
do AUX
n't PART
know VERB
the DET
exact ADJ
percentage NOUN
-any PUNCT
help NOUN
here ADV
a.p.p.er's?)One ADP
driving VERB
characteristic NOUN
of ADP
an DET
NT PROPN
, PUNCT
especially ADV
an DET
NTJ PROPN
, PUNCT
is AUX
their PRON
obviouscholeric ADJ
behavior NOUN
( PUNCT
driver NOUN
, PUNCT
type NOUN
A NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
- PUNCT
the DET
extreme ADJ
emotional ADJ
need NOUN
tocontrol NOUN
, PUNCT
to PART
lead VERB
, PUNCT
and/or CCONJ
to PART
be AUX
the DET
best ADJ
or CCONJ
the DET
most ADV
competent ADJ
. PUNCT
  SPACE
If SCONJ
they PRON
arealso ADV
extroverted VERB
, PUNCT
they PRON
are AUX
best ADV
described VERB
as SCONJ
" PUNCT
Field PROPN
Marshalls PROPN
" PUNCT
. PUNCT
  SPACE
This DET
traitis NOUN
very ADV
valuable ADJ
and CCONJ
essential ADJ
in ADP
our PRON
society NOUN
- PUNCT
we PRON
need VERB
people NOUN
who PRON
want VERB
tolead NOUN
, PUNCT
to PART
strive VERB
to PART
overcome VERB
the DET
elements NOUN
, PUNCT
to PART
seek VERB
and CCONJ
thirst VERB
for ADP
knowledge NOUN
, PUNCT
to PART
raise VERB
the DET
level NOUN
of ADP
competency NOUN
, PUNCT
etc X
. PUNCT
  SPACE
The DET
great ADJ
successes NOUN
in ADP
science NOUN
andtechnology NOUN
are AUX
in ADP
large ADJ
part NOUN
due ADP
to ADP
the DET
vision NOUN
( PUNCT
an DET
N PROPN
trait NOUN
) PUNCT
and CCONJ
scientifically ADV
- PUNCT
minded ADJ
approach NOUN
( PUNCT
T PROPN
trait NOUN
) PUNCT
of ADP
the DET
NT PROPN
personality NOUN
( PUNCT
of ADP
course NOUN
, PUNCT
the DET
other ADJ
typesand NOUN
temperaments NOUN
have AUX
their PRON
own ADJ
positive ADJ
contributions NOUN
as ADV
well ADV
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
when ADV
the DET
NT PROPN
person NOUN
has AUX
self NOUN
- PUNCT
image NOUN
challenges NOUN
, PUNCT
the DET
" PUNCT
dark ADJ
- PUNCT
side NOUN
" PUNCT
of ADP
thispersonality NOUN
type NOUN
usually ADV
comes VERB
out ADP
, PUNCT
which PRON
should AUX
be AUX
obvious ADJ
to ADP
all DET
. PUNCT
A DET
physician NOUN
who PRON
is AUX
a DET
strong ADJ
NT PROPN
and CCONJ
who PRON
has AUX
not PART
learned VERB
to ADP
temper NOUN
theirtemperament NOUN
will AUX
be AUX
extremely ADV
business NOUN
- PUNCT
like ADJ
( PUNCT
lack NOUN
of ADP
empathy NOUN
or CCONJ
feeling),and PROPN
is AUX
very ADV
compelled VERB
to PART
have AUX
total ADJ
control NOUN
over ADP
their PRON
patient NOUN
( PUNCT
the DET
patientmust NOUN
be AUX
obedient ADJ
to ADP
their PRON
diagnosis NOUN
and CCONJ
prescription NOUN
without ADP
question NOUN
) PUNCT
. PUNCT
  SPACE
I'veknown PROPN
many ADJ
M.D. PROPN
's PART
of ADP
this DET
temperament NOUN
and CCONJ
suffice NOUN
to PART
say VERB
I PRON
do AUX
n't PART
oblige VERB
themwith NOUN
a DET
followup ADJ
visit NOUN
, PUNCT
no ADV
matter ADV
how ADV
competent ADJ
I PRON
think VERB
they PRON
are AUX
( PUNCT
and CCONJ
theyusually ADV
are AUX
very ADV
competent ADJ
from ADP
a DET
knowledge NOUN
viewpoint NOUN
since SCONJ
that DET
is AUX
anextreme NOUN
drive NOUN
of ADP
theirs NOUN
- PUNCT
to PART
know VERB
the DET
most ADJ
, PUNCT
to PART
know VERB
it PRON
all).Maybe ADV
we PRON
need VERB
more ADJ
NF PROPN
doctor NOUN
's PART
. PUNCT
  SPACE
: PUNCT
^)Enough PUNCT
on ADP
this DET
subject NOUN
- PUNCT
let VERB
's PRON
move VERB
on ADP
to ADP
candida PROPN
bloom.>Let ADP
me PRON
tell VERB
you PRON
who PRON
the DET
quacks NOUN
really ADV
are AUX
, PUNCT
these DET
are AUX
the DET
physicans NOUN
who PRON
have AUX
> X
no DET
idea NOUN
how ADV
the DET
human ADJ
body NOUN
interacts VERB
with ADP
it PRON
's AUX
environment NOUN
and CCONJ
how ADV
that DET
> X
balance NOUN
can AUX
be AUX
altered VERB
by ADP
diet NOUN
and CCONJ
antibiotics NOUN
... PUNCT
  SPACE
Could AUX
it PRON
just ADV
be AUX
> X
professional ADJ
jealousy NOUN
? PUNCT
  SPACE
I PRON
could AUX
n't PART
help VERB
Elaine PROPN
or CCONJ
Jon PROPN
but CCONJ
somebody PRON
else ADV
did AUX
. PUNCT
You've PROPN
helped VERB
me PRON
already ADV
by ADP
your PRON
post NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
I PRON
believe VERB
that SCONJ
I PRON
havebeen VERB
misdiagnosed VERB
on ADP
the DET
net NOUN
as SCONJ
suffering VERB
from ADP
' PUNCT
anal ADJ
retentivitis NOUN
' PUNCT
, PUNCT
but CCONJ
beingthe NOUN
phlegmatic ADJ
I PRON
am AUX
, PUNCT
maybe ADV
I PRON
was AUX
just ADV
a DET
little ADJ
too ADV
harsh ADJ
on ADP
a DET
few ADJ
peoplemyself NOUN
in ADP
past ADJ
posts NOUN
. PUNCT
  SPACE
Let VERB
's PRON
all DET
try VERB
to PART
raise VERB
the DET
level NOUN
of ADP
this DET
discussionabove NOUN
the DET
level NOUN
of ADP
anal ADJ
effluent.> NOUN
... PUNCT
Humans NOUN
have AUX
all DET
> X
kinds NOUN
of ADP
different ADJ
organisms NOUN
living VERB
in ADP
the DET
GI PROPN
system NOUN
( PUNCT
mouth NOUN
, PUNCT
stomach NOUN
, PUNCT
small ADJ
> X
and CCONJ
large ADJ
intestine NOUN
) PUNCT
, PUNCT
sinuses NOUN
, PUNCT
vagina PROPN
and CCONJ
on ADP
the DET
skin NOUN
. PUNCT
  SPACE
These DET
are AUX
> X
nonpathogenic ADJ
because SCONJ
they PRON
do AUX
not PART
cause VERB
disease NOUN
in ADP
people NOUN
unless SCONJ
the DET
immune ADJ
> X
system NOUN
is AUX
compromised VERB
. PUNCT
  SPACE
They PRON
are AUX
also ADV
called VERB
nonpathogens NOUN
because SCONJ
unlike ADP
> X
the DET
pathogenic ADJ
organisms NOUN
that PRON
cause VERB
human ADJ
disease NOUN
, PUNCT
they PRON
do AUX
not PART
produce VERB
> X
toxins NOUN
as SCONJ
they PRON
live VERB
out ADP
their PRON
merry NOUN
existence NOUN
in ADP
and CCONJ
on ADP
our PRON
body NOUN
. PUNCT
  SPACE
But CCONJ
any DET
of ADP
> X
these DET
organisms NOUN
will AUX
be AUX
considered VERB
pathogenic ADJ
if SCONJ
it PRON
manages VERB
to PART
take VERB
up ADP
> X
residence NOUN
within ADP
the DET
body NOUN
. PUNCT
  SPACE
A DET
poor ADJ
mucus ADJ
membrane NOUN
barrier PROPN
can AUX
let VERB
this DET
> X
happen VERB
and CCONJ
vitamin NOUN
A NOUN
is AUX
mainly ADV
responsible ADJ
for ADP
setting VERB
up ADP
this DET
barrier NOUN
. PUNCT
In ADP
my PRON
well ADV
- PUNCT
described VERB
situation NOUN
( PUNCT
in ADP
prior ADJ
posts NOUN
) PUNCT
, PUNCT
I PRON
definitely ADV
was AUX
immunestressed VERB
. PUNCT
  SPACE
Blood NOUN
tests NOUN
showed VERB
my PRON
vitamin NOUN
A DET
levels NOUN
were AUX
very ADV
low ADJ
. PUNCT
  SPACE
My PRON
sinuseswere NOUN
a DET
mess NOUN
- PUNCT
no ADV
doubt NOUN
the DET
mucosal ADJ
lining NOUN
and CCONJ
the DET
cilia NOUN
were AUX
heavily ADV
damaged VERB
. PUNCT
I PRON
also ADV
was AUX
on ADP
antibiotics NOUN
15 NUM
times NOUN
in ADP
4 NUM
years NOUN
! PUNCT
  SPACE
In ADP
the DET
end NOUN
, PUNCT
even ADV
two NUM
weeksof ADJ
Ceftin PROPN
did AUX
not PART
work VERB
and CCONJ
I PRON
had AUX
confirmed VERB
diagnoses NOUN
of ADP
a DET
chronic ADJ
bacterialinfection NOUN
of ADP
the DET
sinuses NOUN
via ADP
cat NOUN
- PUNCT
scans PROPN
, PUNCT
mucus ADJ
color NOUN
( PUNCT
wo AUX
n't PART
get AUX
into ADP
thedetails NOUN
) PUNCT
, PUNCT
and CCONJ
other ADJ
symptoms NOUN
. PUNCT
  SPACE
Three NUM
very ADV
traditional ADJ
ENT PROPN
's PART
made VERB
thisdiagnosis NOUN
( PUNCT
I PRON
did AUX
not PART
have AUX
any DET
cultures NOUN
done VERB
, PUNCT
however ADV
, PUNCT
because SCONJ
of ADP
thedifficulty NOUN
of ADP
doing VERB
this DET
right NOUN
and CCONJ
because SCONJ
my PRON
other ADJ
symptoms NOUN
clearly ADV
showeda VERB
bacterial ADJ
infection NOUN
) PUNCT
. PUNCT
  SPACE
Enough ADV
of ADP
this DET
background NOUN
( PUNCT
provided VERB
to PART
help VERB
youunderstand VERB
where ADV
I PRON
was AUX
when ADV
I PRON
make VERB
comments NOUN
about ADP
my PRON
Sporanox PROPN
anti ADJ
- ADJ
fungaltherapy ADJ
below).The ADJ
first ADJ
question NOUN
I PRON
have AUX
is AUX
this DET
. PUNCT
  SPACE
Can AUX
fungus VERB
penetrate VERB
a DET
little ADJ
way NOUN
into ADP
poormucus NOUN
membrane NOUN
tissue NOUN
, PUNCT
maybe ADV
via ADP
hyphae NOUN
, PUNCT
thus ADV
causing VERB
symptoms NOUN
, PUNCT
without ADP
beingconsidered VERB
' PUNCT
systemic ADJ
' PUNCT
in ADP
the DET
classic ADJ
sense NOUN
? PUNCT
  SPACE
It PRON
is AUX
sort ADV
of ADV
an DET
inbetweeninfection.>Steve PROPN
got VERB
real ADV
upset ADJ
with ADP
Elaine PROPN
's PART
doctor NOUN
because SCONJ
he PRON
was AUX
using VERB
anti NOUN
- NOUN
fungals NOUN
> X
and CCONJ
vitamin NOUN
A NOUN
for ADP
her PRON
GI PROPN
problems NOUN
. PUNCT
  SPACE
If SCONJ
Steve PROPN
really ADV
understoood VERB
what PRON
> X
vitamin NOUN
A NOUN
does AUX
in ADP
the DET
body NOUN
, PUNCT
he PRON
would AUX
not(or VERB
at ADP
least ADJ
should AUX
not PART
) PUNCT
be AUX
calling VERB
> X
Elaine PROPN
's PART
doctor NOUN
a DET
quack NOUN
. PUNCT
I PRON
was AUX
concerned VERB
, PUNCT
too ADV
, PUNCT
because SCONJ
of ADP
the DET
toxicity NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
My PRON
doctor NOUN
, PUNCT
aftermy PROPN
blood NOUN
tests NOUN
, PUNCT
put VERB
me PRON
on ADP
75,000 NUM
IU NOUN
of ADP
vitamin NOUN
A NOUN
for ADP
one NUM
week NOUN
only ADV
, PUNCT
thendropped VERB
it PRON
down ADP
to ADP
25,000 NUM
IU PROPN
for ADP
the DET
next ADJ
couple NOUN
of ADP
weeks NOUN
. PUNCT
  SPACE
I PRON
also ADV
receivedzinc VERB
and CCONJ
other ADJ
supplementation NOUN
, PUNCT
since SCONJ
all DET
of ADP
these DET
interrelate VERB
in ADP
fairlycomplex ADJ
ways NOUN
as SCONJ
my PRON
doctor NOUN
explained VERB
( PUNCT
he PRON
's AUX
one NUM
of ADP
those DET
' PUNCT
evil ADJ
' PUNCT
orthomolecularspecialists NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
had AUX
a DET
blood NOUN
test NOUN
three NUM
weeks NOUN
later ADV
and CCONJ
vitamin NOUN
A PROPN
was AUX
normal ADJ
, PUNCT
he PRON
then ADV
stopped VERB
me PRON
on ADP
all DET
vitamin NOUN
A NOUN
( PUNCT
except SCONJ
for ADP
some DET
in ADP
a DET
multi ADJ
- ADJ
vitamin)supplement ADJ
) PUNCT
, PUNCT
and CCONJ
made VERB
sure ADJ
that SCONJ
I PRON
maintain VERB
a DET
50,000 NUM
IU PROPN
/ SYM
day NOUN
of ADP
beta NOUN
carotene NOUN
. PUNCT
Call VERB
me PRON
carrot NOUN
face NOUN
. PUNCT
  SPACE
: PUNCT
^)Hopefully PUNCT
, PUNCT
Elaine PROPN
's PART
doctor NOUN
will AUX
take VERB
a DET
similar ADJ
, PUNCT
careful ADJ
approach NOUN
and CCONJ
toall PROPN
supplements NOUN
. PUNCT
  SPACE
I PRON
'm AUX
even ADV
reevaluating VERB
some DET
supplements NOUN
I PRON
'm AUX
taking VERB
, PUNCT
forexample NOUN
, PUNCT
niacin PROPN
in ADP
fairly ADV
large ADJ
dosages NOUN
, PUNCT
1 NUM
gram NOUN
/ SYM
day NOUN
, PUNCT
which PRON
Steve PROPN
Dyer PROPN
hadgood NOUN
information NOUN
about ADP
on ADP
sci.med.nutrition PROPN
. PUNCT
  SPACE
If SCONJ
niacin PROPN
only ADV
has AUX
second ADV
- PUNCT
orderimprovement ADJ
in ADP
symptomatic ADJ
relief NOUN
of ADP
my PRON
sinus NOUN
allergies NOUN
, PUNCT
then ADV
it PRON
probably ADV
isnot VERB
worth ADJ
taking VERB
such DET
a DET
large ADJ
dose ADJ
long ADJ
- PUNCT
term NOUN
and CCONJ
risking VERB
liver NOUN
damage.>survives NOUN
. PUNCT
  SPACE
If SCONJ
it PRON
gets VERB
access NOUN
to ADP
a DET
lot NOUN
of ADP
glucose NOUN
, PUNCT
it PRON
blooms VERB
and CCONJ
over ADP
rides NOUN
> X
the DET
other ADJ
organisms NOUN
living VERB
with ADP
it PRON
in ADP
the DET
sinuses NOUN
, PUNCT
GI PROPN
tract NOUN
or CCONJ
vagina PROPN
. PUNCT
  SPACE
In ADP
Though PROPN
I PRON
do AUX
now ADV
believe VERB
, PUNCT
based VERB
on ADP
my PRON
successful ADJ
therapy NOUN
with ADP
Sporanox PROPN
, PUNCT
thatI PROPN
definitely ADV
had AUX
some DET
excessive ADJ
growth NOUN
of ADP
fungus NOUN
( PUNCT
unknown ADJ
species NOUN
) PUNCT
in ADP
mysinuses NOUN
, PUNCT
I PRON
still ADV
want VERB
to PART
ask VERB
the DET
question NOUN
: PUNCT
  SPACE
have AUX
there PRON
been AUX
any DET
studies NOUN
thatdemonstrate PROPN
candida PROPN
" PUNCT
blooms NOUN
" PUNCT
in ADP
the DET
sinuses NOUN
with ADP
associated PROPN
sinus PROPN
irritation(sinusitis PROPN
/ SYM
rhinitis PROPN
) PUNCT
? PUNCT
  SPACE
( PUNCT
My PRON
sinus NOUN
irritation NOUN
reduced VERB
significantly ADV
after ADP
oneweek NOUN
of ADP
Sporanox PROPN
and CCONJ
no DET
other ADJ
new ADJ
treatments NOUN
were AUX
implemented VERB
during ADP
thistime NOUN
- PUNCT
I PRON
did AUX
not PART
have AUX
any DET
noticeable ADJ
GI PROPN
track NOUN
problems NOUN
before ADP
starting VERB
onSporanox PROPN
, PUNCT
but CCONJ
some DET
for ADP
a DET
few ADJ
days NOUN
after ADP
which PRON
then ADV
went VERB
away ADV
- PUNCT
considerednormal).BTW PROPN
, PUNCT
my PRON
doctor NOUN
dug VERB
out ADP
one NUM
of ADP
his PRON
medical ADJ
reference NOUN
books NOUN
( PUNCT
sorry INTJ
, PUNCT
can'tremember PROPN
which PRON
one NOUN
) PUNCT
, PUNCT
and CCONJ
found VERB
an DET
obscure ADJ
comment NOUN
dating VERB
back ADV
into ADP
the DET
1950'swhich NUM
stated VERB
that SCONJ
people NOUN
can AUX
develop VERB
contained VERB
( PUNCT
non ADJ
- ADJ
lethal ADJ
or CCONJ
non ADJ
- ADJ
serious)aspergillis ADJ
infestations NOUN
( PUNCT
aspergiliosis NOUN
) PUNCT
of ADP
the DET
sinuses NOUN
leading VERB
to ADP
sinusinflammation NOUN
symptoms NOUN
. PUNCT
  SPACE
I PRON
'll AUX
have AUX
to PART
dig VERB
out ADP
that DET
reference NOUN
again ADV
since SCONJ
itis NOUN
relevant ADJ
to ADP
this DET
discussion.>some ADJ
people NOUN
do AUX
really ADV
develop VERB
a DET
bad ADJ
inflammatory ADJ
process NOUN
at ADP
the DET
mucus PROPN
> PROPN
membrane NOUN
or CCONJ
skin NOUN
bloom NOUN
site NOUN
. PUNCT
  SPACE
Whether SCONJ
this DET
is AUX
an DET
allergic ADJ
like SCONJ
reaction NOUN
to ADP
> X
the DET
candida PROPN
or CCONJ
not PART
is AUX
n't PART
certain ADJ
. PUNCT
My PRON
doctor NOUN
tested VERB
me PRON
( PUNCT
I PRON
believe VERB
a DET
RAST PROPN
or CCONJ
RAST PROPN
similar ADJ
test NOUN
) PUNCT
for ADP
allergicresponse NOUN
to ADP
specificially ADV
Candida PROPN
albicans NOUN
, PUNCT
and CCONJ
I PRON
showed VERB
a DET
strong ADJ
positive NOUN
. PUNCT
Another DET
question NOUN
, PUNCT
would AUX
everybody PRON
show VERB
the DET
same ADJ
strong ADJ
positive ADJ
so SCONJ
this DET
testis NOUN
essentially ADV
useless ADJ
? PUNCT
  SPACE
And CCONJ
, PUNCT
assuming VERB
it PRON
is AUX
true ADJ
that SCONJ
Candida PROPN
can AUX
growpart VERB
- PUNCT
way NOUN
into ADP
the DET
mucus PROPN
membrane PROPN
tissue NOUN
, PUNCT
and CCONJ
the DET
concentration NOUN
exceeds VERB
a DET
threshold NOUN
amount NOUN
, PUNCT
could AUX
not PART
a DET
person NOUN
who PRON
tests VERB
as SCONJ
having VERB
an DET
allergy NOUN
toCandida PROPN
definitely ADV
develop VERB
allergic ADJ
symptoms NOUN
, PUNCT
such ADJ
as SCONJ
mucus PROPN
membraneirritation PROPN
due ADP
to ADP
the DET
body NOUN
's PART
allergic ADJ
response NOUN
? PUNCT
  SPACE
As SCONJ
I PRON
said VERB
in ADP
an DET
earlier ADJ
post NOUN
, PUNCT
one NOUN
does AUX
not PART
need VERB
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
, PUNCT
or CCONJ
have AUX
a DET
M.D. PROPN
degree NOUN
or CCONJ
a DET
Ph.D. NOUN
in ADP
biochemistry NOUN
to PART
see VERB
the DET
plausibility NOUN
of ADP
this DET
hypothesis NOUN
. PUNCT
BTW ADV
, PUNCT
and CCONJ
I PRON
'll AUX
repost VERB
this DET
again ADV
. PUNCT
  SPACE
Dr. PROPN
Ivker PROPN
, PUNCT
in ADP
his PRON
book NOUN
, PUNCT
" PUNCT
Sinus NOUN
Survival",has NOUN
routinely ADV
given VERB
, PUNCT
before ADP
anything PRON
else ADV
, PUNCT
Nizoral PROPN
( PUNCT
a DET
pre ADJ
- ADJ
Sporanox ADJ
systemicanti ADJ
- ADJ
fungal ADJ
, PUNCT
not PART
as ADV
safe ADJ
and CCONJ
not PART
as ADV
good ADJ
as SCONJ
Sporanox PROPN
) PUNCT
to ADP
his PRON
new ADJ
chronicsinusitis NOUN
patients NOUN
IF ADP
they PRON
have AUX
been AUX
on ADP
antibiotics NOUN
four NUM
or CCONJ
more ADJ
times NOUN
inthe ADV
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
claims VERB
that SCONJ
out SCONJ
of ADP
2000 NUM
or CCONJ
so ADV
patients NOUN
, PUNCT
well INTJ
over90 PROPN
% NOUN
notice NOUN
some DET
relief NOUN
of ADP
sinus NOUN
inflammation NOUN
and CCONJ
other ADJ
symptoms NOUN
, PUNCT
but CCONJ
itdoesn't PROPN
cure VERB
it PRON
by ADP
any DET
means NOUN
, PUNCT
implying VERB
the DET
so ADV
- PUNCT
called VERB
yeast NOUN
/ SYM
fungus PROPN
infectionis NOUN
not PART
the DET
primary ADJ
cause NOUN
, PUNCT
but CCONJ
a DET
later ADJ
complication NOUN
. PUNCT
  SPACE
He PRON
's AUX
also ADV
found VERB
thatnystatin NOUN
, PUNCT
whether SCONJ
taken VERB
internally ADV
, PUNCT
or CCONJ
put VERB
into ADP
a DET
sinus NOUN
spray NOUN
, PUNCT
does AUX
not PART
help VERB
. PUNCT
This DET
implies VERB
( PUNCT
of ADP
course NOUN
assuming VERB
that SCONJ
excessive ADJ
yeast NOUN
/ SYM
fungus NOUN
bloom NOUN
isaggravating VERB
the DET
sinus NOUN
inflammation NOUN
) PUNCT
that SCONJ
the DET
yeast NOUN
/ SYM
fungus PROPN
has AUX
grown VERB
partwayinto PROPN
the DET
tissue NOUN
since SCONJ
nystatin PROPN
will AUX
not PART
kill VERB
yeast NOUN
/ SYM
fungus NOUN
other ADJ
than SCONJ
bydirect ADJ
contact NOUN
- PUNCT
it PRON
is AUX
not PART
absorbed VERB
into ADP
the DET
blood NOUN
stream NOUN
. PUNCT
  SPACE
Again ADV
, PUNCT
I PRON
admit VERB
, PUNCT
lots NOUN
of ADP
' PUNCT
ifs PROPN
' PUNCT
, PUNCT
and CCONJ
' PUNCT
implies VERB
' PUNCT
, PUNCT
which PRON
does AUX
n't PART
please VERB
the DET
hard ADJ
- PUNCT
core NOUN
NT PROPN
whohas VERB
to PART
have AUX
the DET
double ADJ
- PUNCT
blind ADJ
study NOUN
or CCONJ
it PRON
's AUX
a DET
non ADJ
- ADJ
issue NOUN
, PUNCT
but CCONJ
one PRON
has AUX
to PART
startwith VERB
some DET
plausible ADJ
hypothesis NOUN
/ SYM
explanation NOUN
, PUNCT
a DET
strawman NOUN
, PUNCT
if SCONJ
you PRON
will.>If VERB
it PRON
's AUX
internal ADJ
, PUNCT
only ADV
symptoms NOUN
can AUX
be AUX
used VERB
and CCONJ
these DET
symptoms NOUN
are AUX
pretty ADV
> X
nondescript ADJ
. PUNCT
  SPACE
This DET
brings VERB
up ADP
an DET
interesting ADJ
observation NOUN
used VERB
by ADP
those DET
who PRON
will AUX
denyand ADV
reject VERB
any DET
and CCONJ
all DET
aspects NOUN
of ADP
the DET
' PUNCT
yeast NOUN
hypothesis NOUN
' PUNCT
until ADP
theappropriate NOUN
studies NOUN
are AUX
done VERB
. PUNCT
  SPACE
And CCONJ
that DET
is AUX
if SCONJ
you PRON
ca AUX
n't PART
observe VERB
or CCONJ
culturethe VERB
yeast ADJ
" PUNCT
bloom NOUN
" PUNCT
in ADP
the DET
gut NOUN
or CCONJ
sinus NOUN
, PUNCT
then ADV
there PRON
's AUX
no DET
way NOUN
to PART
diagnose VERB
oreven VERB
recognize VERB
the DET
disease NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
they PRON
realize VERB
that SCONJ
it PRON
is AUX
virtuallyimpossible ADJ
to PART
test VERB
for ADP
candida PROPN
overbloom PROPN
in ADP
any DET
part NOUN
of ADP
the DET
body NOUN
that PRON
cannotbe VERB
easily ADV
observed VERB
since SCONJ
candida PROPN
is AUX
everywhere ADV
in ADP
the DET
body NOUN
. PUNCT
It PRON
's AUX
a DET
real ADJ
Catch-22.Another PROPN
Catch-22 PROPN
: PUNCT
  SPACE
Those DET
who PRON
totally ADV
reject VERB
the DET
' PUNCT
yeast NOUN
hypothesis NOUN
' PUNCT
say VERB
thatno PROPN
studies NOUN
have AUX
been AUX
done VERB
( PUNCT
actually ADV
studies NOUN
have AUX
been AUX
done VERB
, PUNCT
but CCONJ
if SCONJ
it PRON
's AUX
notup PROPN
to ADP
a DET
certain ADJ
standard NOUN
then ADV
it PRON
is AUX
, PUNCT
from ADP
their PRON
perspective NOUN
, PUNCT
a DET
non ADJ
- ADJ
study ADJ
whichshould AUX
not PART
even ADV
be AUX
considered VERB
) PUNCT
. PUNCT
  SPACE
I PRON
agree VERB
that SCONJ
the DET
appropriate ADJ
studies NOUN
shouldbe PROPN
done VERB
, PUNCT
and CCONJ
that DET
will AUX
take VERB
big ADJ
$ ADV
to PART
do AUX
it PRON
right ADJ
. PUNCT
  SPACE
However ADV
, PUNCT
in ADP
order NOUN
toconvince VERB
the DET
funding NOUN
agencies NOUN
in ADP
these DET
austere ADJ
times NOUN
to PART
open VERB
their PRON
wallets NOUN
, PUNCT
you PRON
literally ADV
have AUX
to PART
give VERB
them PRON
evidence NOUN
, PUNCT
and CCONJ
the DET
only ADJ
acceptable ADJ
evidence NOUN
tocompete NOUN
with ADP
other ADJ
proposals NOUN
is AUX
paradoxically ADV
to PART
do AUX
almost ADV
the DET
exact ADV
studyneeded ADJ
funding NOUN
. PUNCT
  SPACE
That ADV
is ADV
, PUNCT
you PRON
have AUX
to PART
do AUX
90 NUM
% NOUN
of ADP
the DET
study NOUN
before ADP
you PRON
even ADV
getfunding VERB
( PUNCT
as SCONJ
a DET
scientist NOUN
at ADP
a DET
National PROPN
Lab PROPN
, PUNCT
I PRON
'm AUX
very ADV
aware ADJ
of ADP
this DET
for ADP
thesmaller NOUN
funded VERB
projects NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
afraid ADJ
that SCONJ
even ADV
if SCONJ
Dr. PROPN
Ivker PROPN
and CCONJ
100 NUM
otherdoctors NOUN
got VERB
together ADV
, PUNCT
pooled VERB
their PRON
practice NOUN
's PART
case NOUN
histories NOUN
and CCONJ
anecdotesinto ADP
a DET
compelling ADJ
picture NOUN
, PUNCT
and CCONJ
approach VERB
the DET
funding NOUN
agencies NOUN
, PUNCT
they PRON
would AUX
getnowhere VERB
, PUNCT
even ADV
if SCONJ
they PRON
were AUX
able ADJ
to PART
publish VERB
their PRON
statistical ADJ
results NOUN
. PUNCT
It PRON
is AUX
obvious ADJ
from ADP
the DET
comments NOUN
by ADP
some DET
of ADP
the DET
doctors NOUN
here ADV
is AUX
that SCONJ
they PRON
have*decided VERB
* PUNCT
excessive ADJ
yeast NOUN
colonization NOUN
in ADP
the DET
gut NOUN
or CCONJ
sinuses NOUN
leading VERB
tonoticeable ADJ
non ADJ
- ADJ
lethal ADJ
symptoms NOUN
does AUX
not PART
exist VERB
, PUNCT
and CCONJ
is AUX
not PART
even ADV
a DET
tenablehypothesis NOUN
, PUNCT
so SCONJ
any DET
amount NOUN
of ADP
case NOUN
histories NOUN
or CCONJ
compiled VERB
anecdotal ADJ
evidenceto NOUN
the DET
contrary NOUN
will AUX
never ADV
change VERB
their PRON
mind NOUN
, PUNCT
and CCONJ
not PART
only ADV
that DET
, PUNCT
they PRON
wouldalso ADV
oppose VERB
the DET
needed VERB
studies NOUN
because SCONJ
in ADP
their PRON
minds NOUN
it PRON
's AUX
a DET
done VERB
issue NOUN
- PUNCT
excessive ADJ
yeast NOUN
growth NOUN
leading VERB
to PART
diffuse VERB
allergic ADJ
symptoms NOUN
does AUX
not PART
, PUNCT
willnot NOUN
, PUNCT
and CCONJ
can AUX
not PART
exist VERB
. PUNCT
  SPACE
Period PROPN
. PUNCT
  SPACE
Kind ADV
of ADV
tough ADJ
to PART
dialog VERB
with ADP
those DET
who PRON
holdsuch VERB
a DET
viewpoint NOUN
. PUNCT
  SPACE
Kind ADV
of ADV
reminds VERB
me PRON
of ADP
Lister PROPN
... PUNCT
>Candida PROPN
is AUX
kept VERB
in ADP
check NOUN
in ADP
most ADJ
people NOUN
by ADP
the DET
normal ADJ
bacterial ADJ
flora NOUN
in ADP
> X
the DET
sinuses NOUN
, PUNCT
the DET
GI PROPN
tract(mouth PROPN
, PUNCT
stomach NOUN
and CCONJ
intestines NOUN
) PUNCT
and CCONJ
in ADP
the DET
> X
vaginal ADJ
tract NOUN
which PRON
compete VERB
with ADP
it PRON
for ADP
food NOUN
. PUNCT
  SPACE
The DET
human ADJ
immune ADJ
system NOUN
> X
ususally ADV
does AUX
not PART
bother VERB
itself PRON
with ADP
these(nonpathogenic PROPN
organisms NOUN
) PUNCT
unless SCONJ
> X
they PRON
broach VERB
the DET
mucus PROPN
membrane NOUN
" PUNCT
barrier NOUN
" PUNCT
. PUNCT
  SPACE
If SCONJ
they PRON
do AUX
, PUNCT
an DET
inflammatory ADJ
> ADJ
response NOUN
will AUX
be AUX
set VERB
up ADP
. PUNCT
  SPACE
Most ADJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
vitamin NOUN
A NOUN
> X
from ADP
their PRON
diets NOUN
. PUNCT
  SPACE
About ADV
30 NUM
% NOUN
of ADP
all DET
American PROPN
's PART
die NOUN
with ADP
less ADJ
Vitamin PROPN
A PROPN
than SCONJ
> X
they PRON
were AUX
born VERB
with(U.S. PROPN
autopsy ADJ
studies NOUN
) PUNCT
. PUNCT
  SPACE
While SCONJ
this DET
low ADJ
level NOUN
of ADP
vitamin NOUN
> X
A NOUN
does AUX
not PART
cause VERB
pathology(blindness NOUN
) PUNCT
it PRON
does AUX
impair VERB
the DET
mucus PROPN
membrane PROPN
> X
barrier PROPN
system NOUN
. PUNCT
  SPACE
This DET
would AUX
then ADV
be AUX
a DET
predisposing VERB
factor NOUN
for ADP
a DET
strong ADJ
> X
inflammatory ADJ
response NOUN
after ADP
a DET
candida PROPN
bloom NOUN
. PUNCT
  SPACE
Are AUX
n't PART
there ADV
also ADV
other ADJ
nutrients NOUN
necessary ADJ
to ADP
the DET
proper ADJ
working NOUN
of ADP
thesinus PROPN
mucus PROPN
membranes NOUN
and CCONJ
cilia?>While PUNCT
diabetics NOUN
can AUX
suffer VERB
from ADP
a DET
candida PROPN
" PUNCT
bloom NOUN
" PUNCT
the DET
  SPACE
most ADV
common ADJ
cause NOUN
of ADP
> X
this DET
type NOUN
of ADP
bloom NOUN
is AUX
the DET
use NOUN
of ADP
broad ADJ
spectrum NOUN
antibiotics NOUN
which PRON
> X
knock VERB
down ADP
many ADJ
different ADJ
kinds NOUN
of ADP
bacteria NOUN
in ADP
the DET
body NOUN
and CCONJ
remove VERB
the DET
main ADJ
> X
competition NOUN
for ADP
candida PROPN
as ADV
far ADV
as SCONJ
food NOUN
is AUX
concerned VERB
. PUNCT
  SPACE
While SCONJ
drugs NOUN
are AUX
> X
available ADJ
to PART
handle VERB
candida PROPN
, PUNCT
many ADJ
patients NOUN
find VERB
that SCONJ
their PRON
doctor NOUN
will AUX
not PART
> VERB
use VERB
them PRON
unless SCONJ
there PRON
is AUX
evidence NOUN
of ADP
a DET
systemic ADJ
infection NOUN
. PUNCT
  SPACE
The DET
toxicity NOUN
of ADP
> X
the DET
anti ADJ
- ADJ
fungal ADJ
drugs NOUN
does AUX
warrant VERB
some DET
caution NOUN
. PUNCT
  SPACE
But CCONJ
if SCONJ
the DET
GI PROPN
or CCONJ
sinus NOUN
> X
inflammation NOUN
is AUX
suspected VERB
to PART
be AUX
candida(and PROPN
recent ADJ
use NOUN
of ADP
a DET
broad ADJ
spectrum NOUN
> X
antibiotic NOUN
is AUX
the DET
smoking NOUN
gun NOUN
) PUNCT
, PUNCT
then ADV
anti ADJ
- ADJ
fungal ADJ
use NOUN
should AUX
be AUX
approrpriate VERB
> X
just ADV
as SCONJ
the DET
anti ADJ
- ADJ
fungal ADJ
creams NOUN
are AUX
an DET
appropriate ADJ
treatment NOUN
for ADP
recurring VERB
> X
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
in ADP
spite NOUN
of ADP
what PRON
Mr. PROPN
Steve PROPN
Dyer PROPN
says VERB
. PUNCT
Again ADV
, PUNCT
the DET
evidence NOUN
from ADP
mycological ADJ
studies NOUN
indicate VERB
that SCONJ
many ADJ
yeast NOUN
/ SYM
fungusspecies NOUN
can AUX
grow VERB
hyphae ADJ
( PUNCT
" PUNCT
roots NOUN
" PUNCT
) PUNCT
into ADP
deep ADJ
tissue NOUN
, PUNCT
similar ADJ
to ADP
mold NOUN
growingin ADJ
bread NOUN
. PUNCT
  SPACE
You PRON
can AUX
continue VERB
to PART
kill VERB
the DET
surface NOUN
, PUNCT
such ADJ
as SCONJ
nystatin PROPN
does AUX
, PUNCT
butyou NOUN
ca AUX
n't PART
kill VERB
that SCONJ
which PRON
is AUX
deeper ADJ
in ADP
the DET
tissue NOUN
without ADP
using VERB
a DET
systemicanti ADJ
- ADJ
fungal ADJ
such ADJ
as SCONJ
itraconazole NOUN
( PUNCT
Sporanox PROPN
) PUNCT
or CCONJ
some DET
of ADP
the DET
older ADJ
ones NOUN
suchas VERB
Nizoral ADJ
which PRON
are AUX
more ADV
toxic ADJ
and CCONJ
not PART
as ADV
effective ADJ
. PUNCT
  SPACE
This DET
is AUX
why ADV
, PUNCT
as SCONJ
hasbeen PROPN
pointed VERB
out ADP
by ADP
recent ADJ
studies NOUN
( PUNCT
sent VERB
to ADP
me PRON
by ADP
a DET
doctor NOUN
I PRON
've AUX
been AUX
ine NOUN
- PUNCT
mail NOUN
contact NOUN
with ADP
- PUNCT
thanks NOUN
) PUNCT
, PUNCT
that SCONJ
nystatin PROPN
is AUX
not PART
effective ADJ
in ADP
the DET
long ADJ
- PUNCT
term NOUN
treatment NOUN
of ADP
GI PROPN
tract NOUN
" PUNCT
candidiasis NOUN
" PUNCT
. PUNCT
  SPACE
It PRON
's AUX
like SCONJ
trying VERB
to PART
weed VERB
a DET
gardenby PROPN
cutting VERB
off ADP
what PRON
's AUX
above ADP
the DET
ground NOUN
but CCONJ
leaving VERB
the DET
roots NOUN
ready ADJ
to PART
comeout VERB
again ADV
once SCONJ
you PRON
walk VERB
away ADV
. PUNCT
The DET
$ SYM
60000 NUM
question NOUN
is AUX
whether SCONJ
a DET
contained VERB
candida PROPN
" PUNCT
bloom NOUN
" PUNCT
can AUX
partiallygrow VERB
into ADP
tissue NOUN
through ADP
the DET
mucus PROPN
membranes NOUN
, PUNCT
causing VERB
some DET
types NOUN
of ADP
symptomsin ADJ
susceptible ADJ
people NOUN
( PUNCT
e.g. ADV
, PUNCT
allergy NOUN
) PUNCT
, PUNCT
without ADP
becoming VERB
" PUNCT
systemic ADJ
" PUNCT
in ADP
theclassical ADJ
sense NOUN
of ADP
the DET
word NOUN
- PUNCT
something PRON
in ADP
between ADP
strictly ADV
an DET
excessivebloom NOUN
not PART
causing VERB
any DET
problems NOUN
and CCONJ
the DET
full ADV
- PUNCT
blown VERB
systemic ADJ
infection NOUN
thatis NOUN
potentially ADV
lethal.>In X
the DET
GI PROPN
system NOUN
, PUNCT
the DET
ano NOUN
- PUNCT
rectal ADJ
region NOUN
seems VERB
to PART
be AUX
a DET
particularly ADV
good ADJ
> X
reservoir PROPN
for ADP
candida PROPN
and CCONJ
the DET
use NOUN
of ADP
pantyhose NOUN
by ADP
many ADJ
women NOUN
creates VERB
a DET
very ADV
> X
favorable ADJ
environment NOUN
around ADP
the DET
rectum NOUN
for ADP
transfer(through DET
moisture NOUN
and CCONJ
> X
humidity NOUN
) PUNCT
of ADP
candida PROPN
to ADP
the DET
vaginal ADJ
tract NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
most ADV
effctive ADJ
ways NOUN
to PART
> X
minimmize VERB
this DET
transfer NOUN
is AUX
to PART
wear VERB
undyed ADJ
cotton NOUN
underwear NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
if SCONJ
one PRON
is AUX
an DET
' PUNCT
anal ADJ
retentive NOUN
' PUNCT
, PUNCT
like SCONJ
I PRON
've AUX
been AUX
diagnosed VERB
in ADP
a DET
priorpost NOUN
, PUNCT
that PRON
can AUX
also ADV
provide VERB
more ADJ
sites NOUN
for ADP
excessive ADJ
candida PROPN
growth NOUN
. PUNCT
  SPACE
; PUNCT
^)>If PROPN
the DET
bloom NOUN
occurs VERB
in ADP
the DET
anal ADJ
area NOUN
, PUNCT
the DET
burning NOUN
, PUNCT
swelling VERB
, PUNCT
pain NOUN
and CCONJ
even ADV
> X
blood NOUN
discharge NOUN
make VERB
many ADJ
patients NOUN
think VERB
that SCONJ
they PRON
have AUX
hemorroids NOUN
. PUNCT
  SPACE
If SCONJ
the DET
> X
bloom NOUN
manages VERB
to PART
move VERB
further ADV
up ADP
the DET
GI PROPN
tract NOUN
, PUNCT
very ADV
diffuse NOUN
symptomatology NOUN
> X
occurs(abdominal ADJ
discomfort NOUN
and CCONJ
blood NOUN
in ADP
the DET
stool NOUN
) PUNCT
. PUNCT
  SPACE
This DET
positive ADJ
stool NOUN
> X
for ADP
occult ADJ
blood NOUN
is AUX
what PRON
sent VERB
Elaine PROPN
to ADP
her PRON
family NOUN
doctor NOUN
in ADP
the DET
first ADJ
> X
place NOUN
. PUNCT
  SPACE
After ADP
extensive ADJ
testing NOUN
, PUNCT
he PRON
told VERB
her PRON
that SCONJ
there PRON
was AUX
nothing PRON
wrong ADJ
> PUNCT
but CCONJ
her PRON
gut NOUN
still ADV
hurt VERB
. PUNCT
  SPACE
On ADP
to ADP
another DET
doctor NOUN
, PUNCT
and CCONJ
so ADV
on ADV
. PUNCT
  SPACE
Richard PROPN
Kaplan PROPN
> X
has AUX
told VERB
me PRON
throiugh NOUN
e NOUN
- NOUN
mail NOUN
that PRON
he PRON
considers VERB
occult ADJ
blood NOUN
tests NOUN
in ADP
stool NOUN
> X
specimens NOUN
to PART
be AUX
a DET
waste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
because SCONJ
of ADP
the DET
very ADV
large ADJ
number NOUN
of ADP
> X
false ADJ
positives(candida PROPN
blooms NOUN
guys NOUN
? PUNCT
) PUNCT
. PUNCT
  SPACE
If SCONJ
my PRON
gut NOUN
hurt VERB
me PRON
on ADP
a DET
constant ADJ
> X
basis NOUN
, PUNCT
I PRON
would AUX
want VERB
it PRON
fixed VERB
. PUNCT
  SPACE
Yes INTJ
it PRON
's AUX
nice ADJ
to PART
know VERB
that SCONJ
I PRON
do AUX
n't PART
have AUX
> X
colon NOUN
cancer NOUN
but CCONJ
what PRON
then ADV
is AUX
causing VERB
my PRON
distress NOUN
? PUNCT
  SPACE
When ADV
I PRON
finally ADV
find VERB
a DET
> X
doctor NOUN
who PRON
treats VERB
me PRON
and CCONJ
gets VERB
me PRON
90 NUM
% NOUN
better ADJ
, PUNCT
Steve PROPN
Dyer PROPN
calls VERB
him PRON
a DET
quack NOUN
. PUNCT
As SCONJ
I PRON
've AUX
said VERB
in ADP
private ADJ
e NOUN
- NOUN
mail NOUN
, PUNCT
there PRON
are AUX
flaws NOUN
in ADP
our PRON
current ADJ
medical ADJ
systemthat NOUN
make VERB
it PRON
difficult ADJ
or CCONJ
even ADV
impossible ADJ
for ADP
a DET
physician NOUN
to ADP
attemptalternative ADJ
therapies NOUN
AFTER ADP
the DET
approved VERB
/ PUNCT
proven VERB
/ SYM
accepted VERB
therapies NOUN
do AUX
n't PART
work VERB
. PUNCT
For ADP
example NOUN
, PUNCT
I PRON
went VERB
to ADP
three NUM
ENT PROPN
's PART
, PUNCT
who PRON
all DET
said VERB
that SCONJ
I PRON
will AUX
just ADV
have AUX
to PART
livewith VERB
my PRON
acute ADJ
/ SYM
chronic ADJ
sinusitis NOUN
after ADP
the DET
ab NOUN
's PART
failed ADJ
( PUNCT
they PRON
did AUX
mentionsurgery NOUN
to PART
open VERB
up ADP
the DET
ostia NOUN
, PUNCT
but CCONJ
my PRON
ostia NOUN
were AUX
n't PART
plugged VERB
and CCONJ
it PRON
would AUX
notget VERB
to ADP
the DET
root NOUN
cause NOUN
of ADP
my PRON
condition NOUN
) PUNCT
. PUNCT
  SPACE
After ADP
three NUM
months NOUN
of ADP
aggressive ADJ
andfairly ADJ
non ADJ
- ADJ
standard ADJ
therapy NOUN
( PUNCT
Sporanox PROPN
, PUNCT
body NOUN
nutrient ADJ
level NOUN
monitoring VERB
andequalization NOUN
, PUNCT
vitamin NOUN
C NOUN
, PUNCT
lentinen NOUN
, PUNCT
echinacea NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
my PRON
health NOUN
has AUX
vastlyimproved VERB
to ADP
where ADV
I PRON
was AUX
two NUM
years NOUN
ago ADV
, PUNCT
before ADP
my PRON
health NOUN
greatly ADV
deteriorated VERB
. PUNCT
Of ADV
course ADV
, PUNCT
skeptics NOUN
would AUX
say VERB
that SCONJ
maybe ADV
if SCONJ
I PRON
did AUX
nothing PRON
I PRON
would AUX
haveimproved VERB
anyway ADV
, PUNCT
but CCONJ
that DET
view NOUN
is AUX
stretching VERB
things NOUN
quite ADV
far ADV
because SCONJ
of ADP
theexperience NOUN
of ADP
the DET
three NUM
ENT PROPN
's PART
I PRON
saw VERB
who PRON
said VERB
that SCONJ
I PRON
'd AUX
just ADV
have AUX
to PART
" PUNCT
live VERB
withit NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
confident ADJ
I PRON
will AUX
reach VERB
what PRON
one PRON
could AUX
call VERB
a DET
total ADJ
" PUNCT
cure NOUN
" PUNCT
. PUNCT
  SPACE
Theanti PROPN
- PUNCT
fungal ADJ
program NOUN
I PRON
undertook VERB
was AUX
one NUM
necessary ADJ
step NOUN
in ADP
that DET
directionbecause NOUN
of ADP
my PRON
overuse NOUN
of ADP
ab PROPN
's PART
for ADP
the DET
last ADJ
four NUM
years NOUN
. PUNCT
  SPACE
( PUNCT
Note VERB
: PUNCT
  SPACE
for ADP
thosehaving VERB
sinus NOUN
problems NOUN
, PUNCT
may AUX
I PRON
suggest VERB
the DET
book NOUN
by ADP
Dr. PROPN
Ivker PROPN
I PRON
mention VERB
above ADV
. PUNCT
Be AUX
sure ADJ
to PART
get AUX
the DET
revised VERB
edition.)> PUNCT
... PUNCT
I PRON
have AUX
often ADV
wondered VERB
what PRON
an DET
M.D. PROPN
with ADP
chronic NOUN
> X
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
would AUX
do AUX
about ADP
the DET
problem NOUN
that PRON
he PRON
tells VERB
his PRON
> X
patients NOUN
is AUX
a DET
non ADJ
- ADJ
existent ADJ
syndrome NOUN
. PUNCT
Dr PROPN
. PUNCT
Ivker PROPN
started VERB
off ADP
having VERB
chronic ADJ
and CCONJ
severe ADJ
sinus NOUN
problems NOUN
, PUNCT
and CCONJ
hisvisits NOUN
to ADP
several ADJ
ENT PROPN
's PART
totally ADV
floored VERB
him PRON
when ADV
they PRON
said VERB
" PUNCT
you PRON
'll AUX
just ADV
haveto VERB
live VERB
with ADP
it PRON
" PUNCT
. PUNCT
  SPACE
He PRON
spent VERB
several ADJ
years NOUN
trying VERB
everything PRON
- PUNCT
standard ADJ
andnon NOUN
- PUNCT
standard ADJ
, PUNCT
until ADP
he PRON
was AUX
essentially ADV
cured VERB
of ADP
chronic ADJ
sinusitis NOUN
. PUNCT
  SPACE
He PRON
nowshares VERB
his PRON
approach NOUN
in ADP
his PRON
book NOUN
and CCONJ
I PRON
can AUX
honestly ADV
say VERB
that SCONJ
I PRON
am AUX
on ADP
the DET
roadto PROPN
recovery NOUN
following VERB
some DET
parts NOUN
of ADP
it PRON
. PUNCT
  SPACE
His PRON
one NUM
recommendation NOUN
to PART
take VERB
asystemic ADJ
anti ADJ
- ADJ
fungal ADJ
at ADP
the DET
beginning NOUN
of ADP
treatment NOUN
IF ADP
you PRON
have AUX
a DET
history NOUN
ofanti ADJ
- PUNCT
biotic ADJ
overuse NOUN
has AUX
been AUX
proven VERB
to ADP
him PRON
time NOUN
and CCONJ
time NOUN
again ADV
in ADP
his PRON
ownpractice NOUN
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
if SCONJ
I PRON
commented VERB
to ADP
him PRON
of ADP
the DET
hard ADJ
- PUNCT
core NOUN
beliefs NOUN
of ADP
the DET
anti-"yeast NOUN
hypothesis NOUN
" PUNCT
posters NOUN
that SCONJ
he PRON
would AUX
have AUX
definite ADJ
things NOUN
to PART
say VERB
, PUNCT
such ADJ
as,"it PRON
's PART
worked VERB
wonders NOUN
for ADP
me PRON
in ADP
almost ADV
two NUM
thousand NUM
cases NOUN
" PUNCT
, PUNCT
to PART
put VERB
it PRON
mildly ADV
. PUNCT
I PRON
also ADV
would AUX
not PART
be AUX
surprised ADJ
if SCONJ
he PRON
would AUX
say VERB
that SCONJ
they PRON
are AUX
the DET
ones NOUN
violatingtheir NOUN
moral ADJ
obligations NOUN
to PART
help VERB
the DET
patient NOUN
. PUNCT
Maybe ADV
those DET
doctors NOUN
who PRON
are AUX
reading VERB
this DET
who PRON
have AUX
a DET
practice NOUN
and CCONJ
areconfronted VERB
by ADP
a DET
patient NOUN
having VERB
symptoms NOUN
that PRON
could AUX
be AUX
due ADJ
to ADP
the DET
" PUNCT
hypotheticalyeast NOUN
overgrowth NOUN
" PUNCT
( PUNCT
e.g. ADV
, PUNCT
they PRON
fit VERB
some DET
of ADP
the DET
profiles NOUN
the DET
pro ADJ
- ADJ
yeast ADJ
peoplehave NOUN
identified VERB
) PUNCT
, PUNCT
should AUX
consider VERB
anti ADJ
- ADJ
fungal ADJ
therapy NOUN
IF ADP
all DET
other ADJ
avenueshave VERB
been AUX
exhausted VERB
. PUNCT
  SPACE
Remember VERB
, PUNCT
theory NOUN
and CCONJ
practice NOUN
are AUX
two NUM
different ADJ
things NOUN
-you PRON
can AUX
not PART
have AUX
one NUM
without ADP
the DET
other ADJ
, PUNCT
they PRON
are AUX
synergistic ADJ
. PUNCT
  SPACE
If SCONJ
a DET
doctor NOUN
doessomething VERB
non ADJ
- ADJ
standard ADJ
yet ADV
produces VERB
noticeable ADJ
symptomatic ADJ
relief NOUN
in ADP
over ADP
athousand DET
of ADP
his PRON
patients NOUN
, PUNCT
should AUX
n't PART
you PRON
at ADP
least ADJ
sit VERB
up ADP
and CCONJ
take VERB
notice?Maybe NOUN
you PRON
ought AUX
to PART
trust VERB
what PRON
he PRON
says VERB
and CCONJ
begin VERB
hypothesizing VERB
why ADV
it PRON
worksinstead VERB
of ADP
why ADV
it PRON
should AUX
n't PART
work VERB
. PUNCT
  SPACE
I PRON
'm AUX
afraid ADJ
a DET
lot NOUN
of ADP
doctors NOUN
have AUX
becomeso NOUN
enamored VERB
with ADP
" PUNCT
scientific ADJ
correctness NOUN
" PUNCT
that SCONJ
they PRON
are AUX
ignoring VERB
the DET
patientsthey NOUN
have AUX
sworn VERB
to PART
help VERB
. PUNCT
  SPACE
You PRON
have AUX
to PART
do AUX
both DET
; PUNCT
  SPACE
both DET
have AUX
to PART
be AUX
balanced VERB
, PUNCT
whichwe PROPN
do AUX
n't PART
see VERB
from ADP
some DET
of ADP
the DET
posters NOUN
to ADP
this DET
group NOUN
. PUNCT
  SPACE
There PRON
comes VERB
a DET
point NOUN
whenyou NOUN
just ADV
have AUX
to PART
use VERB
a DET
little ADJ
common ADJ
sense NOUN
, PUNCT
and CCONJ
maybe ADV
an DET
empirical ADJ
approach(such PROPN
as SCONJ
trying VERB
a DET
good ADJ
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
such ADJ
as SCONJ
Sporanox PROPN
) PUNCT
after ADP
havingexhausted VERB
all DET
the DET
other ADJ
avenues NOUN
. PUNCT
  SPACE
I PRON
was AUX
one NUM
of ADP
those DET
who PRON
the DET
traditionalmedical ADJ
establishment NOUN
was AUX
not PART
able ADJ
to PART
help VERB
, PUNCT
so ADV
I PRON
did AUX
the DET
natural ADJ
thing NOUN
: PUNCT
  SPACE
Iwent PROPN
to ADP
a DET
couple NOUN
of ADP
doctor NOUN
's PART
who PRON
are AUX
( PUNCT
somewhat ADV
) PUNCT
outside ADP
this DET
establishment NOUN
, PUNCT
and CCONJ
as SCONJ
a DET
result NOUN
I PRON
have AUX
found VERB
significant ADJ
relief NOUN
. PUNCT
Would AUX
it PRON
not PART
be AUX
better ADJ
if SCONJ
the DET
traditional ADJ
medical ADJ
establishment NOUN
can AUX
set VERB
upsome ADJ
kind NOUN
of ADP
mechanism NOUN
where ADV
any DET
doctor NOUN
, PUNCT
without ADP
fear NOUN
of ADP
being AUX
sued VERB
or CCONJ
havinghis ADJ
license NOUN
pulled VERB
, PUNCT
can AUX
try VERB
experimental ADJ
and CCONJ
unproven ADJ
( PUNCT
beyond ADP
a DET
doubt)therapies NOUN
for ADP
his PRON
/ SYM
her PRON
patients NOUN
that PRON
finally ADV
reach VERB
the DET
point NOUN
where ADV
all DET
theaccepted VERB
therapies NOUN
are AUX
ineffective ADJ
? PUNCT
  SPACE
I PRON
'd AUX
like VERB
to PART
hear VERB
a DET
doctor NOUN
tell VERB
me:"well PROPN
, PUNCT
I PRON
've AUX
tried VERB
all DET
the DET
therapies NOUN
that PRON
are AUX
approved VERB
and CCONJ
accepted VERB
in ADP
thiscountry NOUN
, PUNCT
and CCONJ
since SCONJ
they PRON
clearly ADV
do AUX
n't PART
work VERB
for ADP
you PRON
, PUNCT
I PRON
now ADV
have AUX
the DET
authorityto NOUN
use NOUN
experimental ADJ
, PUNCT
unproven ADJ
techniques NOUN
that PRON
seem VERB
to PART
have AUX
helped VERB
others NOUN
. PUNCT
  SPACE
Ican't PROPN
promise VERB
anything PRON
, PUNCT
and CCONJ
there PRON
are AUX
some DET
risks NOUN
. PUNCT
  SPACE
You PRON
will AUX
have AUX
to PART
signsomething VERB
saying VERB
you PRON
understand VERB
the DET
experimental ADJ
and CCONJ
possibly ADV
risky ADJ
nature NOUN
ofthese ADJ
unproven ADJ
therapies NOUN
, PUNCT
and CCONJ
I PRON
'll AUX
have AUX
to PART
register VERB
your PRON
case NOUN
at ADP
the DET
StateBoard PROPN
. PUNCT
" PUNCT
  SPACE
Anyway INTJ
, PUNCT
if SCONJ
my PRON
ENT PROPN
had AUX
suggested VERB
this DET
to ADP
me PRON
, PUNCT
I PRON
would AUX
've AUX
jumped VERB
on ADP
thispronto PROPN
instead ADV
of ADP
going VERB
to ADP
one NUM
of ADP
those DET
doctors NOUN
who PRON
, PUNCT
for ADP
either DET
altruisticreasons NOUN
, PUNCT
or CCONJ
for ADP
greed NOUN
, PUNCT
is AUX
practicing VERB
these DET
alternative ADJ
therapies NOUN
with ADP
muchrisk PROPN
to ADP
him PRON
/ SYM
her PRON
( PUNCT
risk NOUN
meaning NOUN
losing VERB
their PRON
license NOUN
) PUNCT
and CCONJ
possibly ADV
to ADP
thepatient VERB
. PUNCT
  SPACE
Such DET
a DET
mechanism NOUN
would AUX
keep VERB
control NOUN
in ADP
the DET
more ADV
mainstream ADJ
medicine NOUN
, PUNCT
and CCONJ
also ADV
provide VERB
valuable ADJ
data NOUN
that PRON
would AUX
essentially ADV
be AUX
free ADJ
. PUNCT
  SPACE
It PRON
also ADV
wouldbe VERB
morally ADV
and CCONJ
ethically ADV
better ADJ
than SCONJ
the DET
current ADJ
system NOUN
by ADP
showing VERB
thecompassion NOUN
of ADP
the DET
medical ADJ
community NOUN
to ADP
the DET
patient NOUN
- PUNCT
that SCONJ
it PRON
's AUX
doing VERB
everythingit NOUN
can AUX
within ADP
reason NOUN
to PART
help VERB
the DET
patient NOUN
. PUNCT
  SPACE
It PRON
is AUX
the DET
lack NOUN
of ADP
such DET
a DET
mechanismthat NOUN
is AUX
leading VERB
large ADJ
numbers NOUN
of ADP
people NOUN
to PART
try VERB
alternative ADJ
therapies NOUN
, PUNCT
some DET
ofwhich NOUN
seem VERB
to PART
work VERB
( PUNCT
like SCONJ
my PRON
case NOUN
) PUNCT
, PUNCT
and CCONJ
others NOUN
of ADP
which PRON
will AUX
never ADV
work VERB
at ADP
all(true ADJ
quackery).I X
better ADJ
get AUX
off ADP
my PRON
soapbox NOUN
before ADP
this DET
post NOUN
reaches VERB
500 NUM
K NOUN
in ADP
size.>If NUM
taken VERB
orally ADV
, PUNCT
it PRON
can AUX
also ADV
become VERB
a DET
major ADJ
bacteria NOUN
in ADP
the DET
gut NOUN
. PUNCT
  SPACE
Through ADP
> X
aresol ADJ
sprays NOUN
, PUNCT
it PRON
has AUX
also ADV
been AUX
used VERB
to PART
innoculate VERB
the DET
sinus NOUN
membranes.>But PROPN
before ADP
this DET
innoculation NOUN
occurs VERB
, PUNCT
the DET
mucus PROPN
membrane PROPN
barrier PROPN
system PROPN
> X
needs VERB
to PART
be AUX
strengthened VERB
. PUNCT
  SPACE
This DET
is AUX
accomplished VERB
by ADP
vitamin NOUN
A NOUN
, PUNCT
vitamin NOUN
C NOUN
and CCONJ
> X
some DET
of ADP
the DET
B NOUN
- PUNCT
complex ADJ
vitamins NOUN
. PUNCT
  SPACE
Diet PROPN
surveys NOUN
repeatedly ADV
show VERB
that SCONJ
Americans PROPN
> X
are AUX
not PART
getting VERB
enough ADJ
B6 PROPN
and CCONJ
folate NOUN
. PUNCT
  SPACE
These DET
are AUX
probably ADV
the DET
segement NOUN
of ADP
> X
the DET
population NOUN
that PRON
will AUX
have AUX
the DET
greatest ADJ
problem NOUN
with ADP
this DET
non ADJ
- ADJ
existent ADJ
> X
disorder(candida NOUN
blooms NOUN
after ADP
antibiotic ADJ
therapy).What DET
dosage NOUN
of ADP
B6 PROPN
appears VERB
to PART
be AUX
necessary ADJ
to PART
promote VERB
the DET
healing NOUN
and CCONJ
properworking NOUN
of ADP
the DET
mucos PROPN
memebranes?>Some PROPN
of ADP
the DET
above ADJ
material NOUN
was AUX
obtained VERB
from ADP
" PUNCT
Natural PROPN
Healing NOUN
" PUNCT
by ADP
Mark PROPN
> X
Bricklin PROPN
, PUNCT
Published VERB
by ADP
Rodale PROPN
press NOUN
, PUNCT
as ADV
well ADV
as SCONJ
notes NOUN
from ADP
my PRON
human ADJ
> X
nutrition NOUN
course NOUN
. PUNCT
  SPACE
I PRON
will AUX
be AUX
posting VERB
a DET
discussion NOUN
of ADP
vitamin NOUN
A NOUN
  SPACE
sometime ADV
in ADP
> X
the DET
future NOUN
, PUNCT
along ADP
with ADP
reference NOUN
citings NOUN
to PART
point VERB
out ADP
the DET
extremely ADV
> X
important ADJ
role NOUN
that DET
vitamin NOUN
A DET
plays VERB
in ADP
the DET
mucus PROPN
membrane PROPN
defense NOUN
system NOUN
in ADP
> X
the DET
body NOUN
and CCONJ
why ADV
vitamin NOUN
A NOUN
should AUX
be AUX
effective ADJ
in ADP
dealing VERB
with ADP
candida PROPN
> X
blooms NOUN
. PUNCT
  SPACE
Another DET
effective ADJ
dietary ADJ
treatment NOUN
is AUX
to PART
restrict VERB
carbohydrate NOUN
> X
intake VERB
during ADP
the DET
treatment NOUN
phase NOUN
, PUNCT
this DET
is AUX
especially ADV
important ADJ
if SCONJ
the DET
GI PROPN
> NOUN
system NOUN
is AUX
involved VERB
. PUNCT
  SPACE
If SCONJ
candida PROPN
can AUX
not PART
get AUX
glucose NOUN
, PUNCT
it PRON
's AUX
not PART
going VERB
to PART
out ADP
> X
grow VERB
the DET
bacteria NOUN
and CCONJ
you PRON
then ADV
give VERB
bacteria NOUN
, PUNCT
which PRON
can AUX
use VERB
amino ADJ
acids NOUN
and CCONJ
> X
fatty ADJ
acids NOUN
for ADP
energy NOUN
, PUNCT
a DET
chance NOUN
to PART
take VERB
over ADP
and CCONJ
keep VERB
the DET
candida PROPN
in ADP
check PROPN
> X
once SCONJ
carbohydrate NOUN
is AUX
returned VERB
to ADP
the DET
gut NOUN
. PUNCT
I'd NOUN
like VERB
to PART
see VERB
the DET
role NOUN
of ADP
complex ADJ
carbohydrates NOUN
, PUNCT
such ADJ
as SCONJ
starch.>If PROPN
Steve PROPN
and CCONJ
some DET
of ADP
the DET
other ADJ
nay NOUN
- PUNCT
sayers NOUN
want VERB
to PART
jump VERB
all ADV
over ADP
this DET
post NOUN
, PUNCT
> X
fine NOUN
. PUNCT
  SPACE
I PRON
jumped VERB
all ADV
over ADP
Steve PROPN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
because SCONJ
he PRON
verbably ADV
> X
accosted VERB
a DET
poster NOUN
who PRON
was AUX
seeking VERB
advice NOUN
about ADP
her PRON
doctor NOUN
's PART
use NOUN
of ADP
vitamin NOUN
> X
A NOUN
and CCONJ
anti NOUN
- NOUN
fungals NOUN
for ADP
a DET
candida PROPN
bloom NOUN
in ADP
her PRON
gut NOUN
. PUNCT
  SPACE
People NOUN
seeking VERB
advice NOUN
> X
from ADP
newsnet PROPN
should AUX
not PART
be AUX
treated VERB
this DET
way NOUN
. PUNCT
  SPACE
Those DET
of ADP
us PRON
giving NOUN
of ADP
our PRON
> X
time NOUN
and CCONJ
knowledge NOUN
can AUX
slug VERB
it PRON
out ADP
to ADP
our PRON
heart NOUN
's PART
content NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
saved VERB
> X
your PRON
venom NOUN
for ADP
me PRON
Steve PROPN
and CCONJ
left VERB
the DET
helpless ADJ
posters NOUN
who PRON
are AUX
timidly ADV
> X
seeking VERB
help NOUN
alone ADV
, PUNCT
I PRON
would AUX
n't PART
have AUX
a DET
problem NOUN
with ADP
your PRON
behavior NOUN
. PUNCT
Brave ADJ
soul NOUN
you PRON
are AUX
. PUNCT
  SPACE
The DET
venom NOUN
on ADP
Usenet PROPN
can AUX
be AUX
quite ADV
toxic ADJ
unless SCONJ
onedevelops NOUN
an DET
immunity NOUN
to ADP
it PRON
. PUNCT
  SPACE
One NUM
year NOUN
ago ADV
, PUNCT
my PRON
phlegmatic ADJ
self NOUN
would AUX
havebacked VERB
down ADP
right ADV
away ADV
from ADP
an DET
attack NOUN
of ADP
cholericitis NOUN
. PUNCT
  SPACE
But CCONJ
my PRON
immunesystem NOUN
, PUNCT
and CCONJ
my PRON
computer NOUN
system NOUN
, PUNCT
have AUX
been AUX
hardened VERB
from ADP
gradualdesensitization NOUN
. PUNCT
  SPACE
I PRON
now ADV
kind ADV
of ADV
like VERB
being AUX
called VERB
" PUNCT
anal ADJ
retentive ADJ
" PUNCT
- PUNCT
it PRON
hasa VERB
nice ADJ
ring NOUN
to ADP
it PRON
. PUNCT
  SPACE
I PRON
also ADV
was AUX
very ADV
impressed ADJ
by ADP
how ADV
it PRON
just ADV
flowed VERB
into ADP
thepost NOUN
- PUNCT
truly ADV
classic ADJ
, PUNCT
worthy ADJ
of ADP
a DET
blue NOUN
( PUNCT
or CCONJ
maybe ADV
brown ADJ
) PUNCT
ribbon NOUN
. PUNCT
  SPACE
I PRON
mighteven ADJ
cross VERB
- ADJ
post VERB
it PRON
to ADP
alt.best.of.internet PROPN
. PUNCT
  SPACE
Hmmm PROPN
... PUNCT
>Martin NOUN
Banschbach PROPN
, PUNCT
Ph PROPN
. PUNCT
D.>Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
Chairman PROPN
> X
Department PROPN
of ADP
Biochemistry PROPN
and CCONJ
Microbiology PROPN
> X
OSU PROPN
College PROPN
of ADP
Osteopathic PROPN
MedicineThanks PROPN
again ADV
for ADP
a DET
great ADJ
and CCONJ
informative ADJ
post NOUN
. PUNCT
  SPACE
I PRON
hope VERB
others NOUN
who PRON
haveresearched VERB
this DET
area NOUN
and CCONJ
are AUX
lurking VERB
in ADP
the DET
background NOUN
will AUX
post VERB
theirthoughts NOUN
as ADV
well ADV
, PUNCT
no ADV
matter ADV
their PRON
views NOUN
on ADP
this DET
subject NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59184From NUM
: PUNCT
dpc47852@uxa.cso.uiuc.edu PROPN
( PUNCT
Daniel PROPN
Paul PROPN
Checkman)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?bruce@Data NOUN
- PUNCT
IO.COM PROPN
( PUNCT
Bruce PROPN
Reynolds PROPN
) PUNCT
writes:>Anecedotal ADJ
evidence NOUN
is AUX
worthless ADJ
. PUNCT
  SPACE
Even ADV
doctors NOUN
who PRON
have AUX
been AUX
using VERB
a DET
drug NOUN
> X
or CCONJ
treatment NOUN
for ADP
years NOUN
, PUNCT
and CCONJ
who PRON
swear VERB
it PRON
is AUX
effective ADJ
, PUNCT
are AUX
often ADV
suprised VERB
> X
at ADP
the DET
results NOUN
of ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
MSG NOUN
causes NOUN
describable,>reportable ADJ
, PUNCT
documentable ADJ
symptoms NOUN
should AUX
be AUX
pretty ADV
simple ADJ
to PART
discover VERB
. PUNCT
  SPACE
I PRON
tend VERB
to PART
disagree- VERB
I PRON
think VERB
anecdotal ADJ
evidence NOUN
, PUNCT
provided VERB
there PRON
is AUX
a DET
lot NOUN
of ADP
it PRON
, PUNCT
and CCONJ
it PRON
is AUX
fairly ADV
consistent ADJ
, PUNCT
will AUX
is AUX
very ADV
important ADJ
. PUNCT
  SPACE
First ADV
, PUNCT
it PRON
points VERB
to ADP
thenecessity NOUN
of ADP
doing VERB
a DET
study NOUN
, PUNCT
and CCONJ
second ADV
, PUNCT
it PRON
at ADP
least ADJ
says VERB
that SCONJ
the DET
effects NOUN
areall VERB
psychological ADJ
( PUNCT
or CCONJ
possibly ADV
allergy VERB
in ADP
this DET
case NOUN
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
've AUX
pointed VERB
out ADP
before ADP
, PUNCT
pyschological ADJ
effects NOUN
are AUX
no ADV
less ADV
real ADJ
than SCONJ
other ADJ
effects NOUN
. PUNCT
  SPACE
One NUM
       SPACE
person NOUN
's PART
" PUNCT
make NOUN
- PUNCT
believe VERB
" PUNCT
can AUX
easily ADV
be AUX
another DET
person NOUN
's PART
reality NOUN
. PUNCT
  SPACE
Using VERB
psychadelic ADJ
drugs NOUN
in ADP
a DET
bizarre ADJ
and CCONJ
twisted ADJ
example NOUN
, PUNCT
the DET
hallucinations NOUN
oneperson NOUN
experiences NOUN
on ADP
an DET
acid NOUN
trip NOUN
can AUX
not PART
be AUX
guaranteed VERB
to ADP
another DET
person NOUN
onan PROPN
acid NOUN
trip- NOUN
there PRON
is AUX
no DET
clinical ADJ
evidence NOUN
that SCONJ
those DET
effects NOUN
are AUX
always ADV
goingto PROPN
happen VERB
. PUNCT
  SPACE
Anyhow ADV
, PUNCT
that DET
was AUX
a DET
pretty ADV
lame ADJ
example NOUN
, PUNCT
but CCONJ
hopefully ADV
I PRON
made VERB
mypoint- ADJ
it PRON
's AUX
all DET
a DET
matter NOUN
of ADP
perception NOUN
, PUNCT
and CCONJ
as ADV
long ADV
as SCONJ
someone PRON
ingesting VERB
MSGperceives PROPN
it PRON
as SCONJ
causing VERB
bad ADJ
effects NOUN
, PUNCT
then ADV
s VERB
/ PUNCT
he PRON
can AUX
definitely ADV
experience VERB
thoseaffects NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
it PRON
could AUX
just ADV
be AUX
an DET
allergy NOUN
to ADP
the DET
food NOUN
it PRON
's AUX
in ADV
, PUNCT
   SPACE
or CCONJ
something PRON
. PUNCT
  SPACE
Still ADV
, PUNCT
anecdotal ADJ
evidence NOUN
is AUX
not PART
worthless- VERB
it PRON
's AUX
the DET
stuff NOUN
thatleads VERB
to ADP
the DET
study NOUN
being AUX
done.-DanNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59185From NUM
: PUNCT
eulenbrg@carson.u.washington.edu ADJ
( PUNCT
Julia PROPN
Eulenberg)Subject NUM
: PUNCT
Re ADP
: PUNCT
ArythmiaAlexis PROPN
Perry PROPN
asked VERB
if SCONJ
low ADJ
blood NOUN
potassium NOUN
could AUX
be AUX
dangerous ADJ
. PUNCT
  SPACE
Yes INTJ
. PUNCT
ZZNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59186From NUM
: PUNCT
hahn@csd4.csd.uwm.edu PROPN
( PUNCT
David PROPN
James PROPN
Hahn)Subject PROPN
: PUNCT
Re ADP
: PUNCT
RE NOUN
: PUNCT
HELP PROPN
ME PROPN
INJECT PROPN
... PUNCT
From ADP
article NOUN
< X
1993Apr22.233001.13436@vax.oxford.ac.uk PROPN
> X
, PUNCT
by ADP
krishnas@vax.oxford.ac.uk NUM
: PUNCT
> X
The DET
best ADJ
way NOUN
of ADP
self NOUN
injection NOUN
is AUX
to PART
use VERB
the DET
right ADJ
size NOUN
needle NOUN
> X
and CCONJ
choose VERB
the DET
correct ADJ
spot NOUN
. PUNCT
For ADP
Streptomycin PROPN
, PUNCT
usually ADV
given VERB
intra PROPN
> X
muscularly ADV
, PUNCT
use VERB
a DET
thin ADJ
needle NOUN
( PUNCT
23/24 NUM
guage NOUN
) PUNCT
and CCONJ
select VERB
a DET
spot NOUN
on ADP
> X
the DET
upper ADJ
, PUNCT
outer ADJ
thigh NOUN
( PUNCT
no DET
major ADJ
nerves NOUN
or CCONJ
blood NOUN
vessels NOUN
there ADV
) PUNCT
. PUNCT
> X
Clean VERB
the DET
area NOUN
with ADP
antiseptic ADJ
before ADP
injection NOUN
, PUNCT
and CCONJ
after ADV
. PUNCT
Make VERB
> X
sure ADJ
to PART
inject VERB
deeply ADV
( PUNCT
a DET
different ADJ
kind NOUN
of ADP
pain NOUN
is AUX
felt VERB
when ADV
the DET
> X
needle NOUN
enters VERB
the DET
muscle NOUN
- PUNCT
contrasted VERB
to ADP
the DET
' PUNCT
prick NOUN
' PUNCT
when ADV
it PRON
> X
pierces VERB
the DET
skin NOUN
) PUNCT
. PUNCT
> X
> X
PS PROPN
: PUNCT
Try VERB
to PART
go VERB
to ADP
a DET
doctor NOUN
. PUNCT
Self NOUN
- PUNCT
treatment NOUN
and CCONJ
self NOUN
- PUNCT
injection NOUN
should AUX
> X
be AUX
avoided VERB
as ADV
far ADV
as SCONJ
possible ADJ
. PUNCT
> X
  SPACE
The DET
areas NOUN
that PRON
are AUX
least ADV
likely ADJ
to PART
hurt VERB
are AUX
where ADV
you PRON
have AUX
a DET
little ADJ
fat ADJ
. PUNCT
  SPACE
I PRON
inject VERB
on ADP
my PRON
legs NOUN
and CCONJ
gut NOUN
, PUNCT
and CCONJ
prefer VERB
the DET
gut NOUN
. PUNCT
  SPACE
I PRON
can AUX
stickit VERB
in ADP
at ADP
a DET
90 NUM
degree NOUN
angle NOUN
, PUNCT
and CCONJ
barely ADV
feel VERB
it PRON
. PUNCT
  SPACE
I PRON
'm AUX
not PART
fat ADJ
, PUNCT
justhave VERB
a DET
little ADJ
gut NOUN
. PUNCT
  SPACE
My PRON
legs NOUN
however ADV
, PUNCT
are AUX
muscular ADJ
, PUNCT
and CCONJ
I PRON
have AUX
to PART
pinchto VERB
get AUX
anything PRON
, PUNCT
and CCONJ
then ADV
I PRON
inject VERB
at ADP
about ADV
a DET
45 NUM
degree NOUN
angle NOUN
, PUNCT
and CCONJ
itstill NOUN
hurts VERB
. PUNCT
  SPACE
The DET
rate NOUN
of ADP
absorbtion NOUN
differs NOUN
for ADP
subcutaneous ADJ
and CCONJ
  SPACE
muscular ADJ
injections NOUN
however ADV
-- PUNCT
so ADV
if SCONJ
it PRON
's AUX
a DET
daily ADJ
thing NOUN
it PRON
would AUX
bebest VERB
not PART
to PART
switch VERB
places NOUN
every DET
day NOUN
to PART
keep VERB
consistencey ADJ
. PUNCT
  SPACE
Althoughsome PROPN
suggest VERB
switch NOUN
legs NOUN
or CCONJ
sides NOUN
of ADP
the DET
stomach NOUN
for ADP
each DET
shot NOUN
, PUNCT
to PART
prevent VERB
irritation NOUN
. PUNCT
  SPACE
When ADV
you PRON
clean VERB
the DET
spot NOUN
off ADP
with ADP
an DET
alcohol NOUN
prep NOUN
, PUNCT
wait VERB
for ADP
it PRON
to PART
dry VERB
somewhat ADV
, PUNCT
or CCONJ
you PRON
may AUX
get AUX
the DET
alcohol NOUN
in ADP
thepuncture NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
, PUNCT
that DET
does AUX
n't PART
feel VERB
good ADJ
. PUNCT
  SPACE
A DET
way NOUN
to ADP
preventirratation NOUN
is AUX
to PART
mark VERB
the DET
spot NOUN
that PRON
you PRON
injected VERB
. PUNCT
  SPACE
A DET
good ADJ
way NOUN
todo NOUN
this DET
is AUX
use VERB
a DET
little ADJ
round ADJ
bandage NOUN
and CCONJ
put VERB
it PRON
over ADP
the DET
spot NOUN
. PUNCT
  SPACE
This DET
helps VERB
prevent VERB
you PRON
from ADP
injecting VERB
in ADP
the DET
same ADJ
spot NOUN
, PUNCT
and CCONJ
spacing VERB
the DET
sites NOUN
out ADP
accuartely ADV
( PUNCT
about ADV
1 NUM
1/2 NUM
" PUNCT
apart.)This DET
is AUX
from ADP
experience NOUN
, PUNCT
so CCONJ
I PRON
hope VERB
it PRON
'll AUX
help VERB
you PRON
. PUNCT
  SPACE
( PUNCT
I PRON
havediabetes VERB
and CCONJ
have AUX
to PART
take VERB
an DET
injection NOUN
every DET
morning NOUN
. PUNCT
) PUNCT
			 SPACE
Later ADV
, PUNCT
				 SPACE
David-- PROPN
David PROPN
HahnUniversity PROPN
of ADP
Wisconsin PROPN
: PUNCT
Milwaukee PROPN
hahn@csd4.csd.uwm.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59187From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
C5uq9B.LrJ@toads.pgh.pa.us PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes:>>>>Many NOUN
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the>>literature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains>>tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might>>potentiate NOUN
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it.>>Check NOUN
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested.>>Years NOUN
ago ADV
when ADV
I PRON
was AUX
an DET
intern NOUN
, PUNCT
an DET
obese ADJ
young ADJ
woman NOUN
was AUX
brought VERB
into ADP
> X
the DET
ER PROPN
comatose NOUN
after ADP
having VERB
been AUX
reported VERB
to PART
have AUX
grand ADJ
mal PROPN
seizures NOUN
> X
why ADV
attending VERB
a DET
" PUNCT
corn NOUN
festival NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
pumped VERB
her PRON
stomach NOUN
and CCONJ
obtained VERB
> X
what PRON
seemed VERB
like SCONJ
a DET
couple NOUN
of ADP
liters NOUN
of ADP
corn NOUN
, PUNCT
much ADJ
of ADP
it PRON
intact ADJ
kernals NOUN
. PUNCT
  SPACE
> X
After ADP
a DET
few ADJ
hours NOUN
she PRON
woke VERB
up ADP
and CCONJ
was AUX
fine ADJ
. PUNCT
  SPACE
I PRON
was AUX
tempted VERB
to PART
sign VERB
her PRON
out ADP
as>"acute PUNCT
corn NOUN
intoxication NOUN
. PUNCT
">---------------------------------------------------------------------------->Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andHow NOUN
about ADP
contaminants NOUN
on ADP
the DET
corn NOUN
, PUNCT
e.g. DET
aflatoxin???-- NOUN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59188From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
C5wC7G.4EG@toads.pgh.pa.us PROPN
> X
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
1993Apr22.001642.9186@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>>>>>Can VERB
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>>>>the NOUN
lost VERB
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>>>>exceeds PROPN
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>>>>is NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>>>>>>>Annals NOUN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>>>>>>>Hmmm NUM
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressive>>>behavior PROPN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)>>>>I ADV
purposefully ADV
left VERB
off ADP
the DET
page NOUN
numbers NOUN
to PART
encourage VERB
the DET
reader NOUN
to>>study NOUN
the DET
volumes NOUN
mentioned VERB
, PUNCT
and CCONJ
benefit VERB
therefrom.>>>>Good NOUN
story NOUN
, PUNCT
Chuck PROPN
, PUNCT
but CCONJ
it PRON
wo AUX
n't PART
wash VERB
. PUNCT
  SPACE
I PRON
have AUX
read VERB
the DET
NY PROPN
Acad PROPN
Sci PROPN
> X
one NUM
( PUNCT
and CCONJ
have AUX
it PRON
) PUNCT
. PUNCT
  SPACE
This DET
AM NOUN
I PRON
could AUX
n't PART
find VERB
any DET
reference NOUN
to>"weight INTJ
rebound VERB
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
it PRON
is AUX
n't PART
there ADV
, PUNCT
but CCONJ
since SCONJ
you PRON
> X
cited VERB
it PRON
, PUNCT
it PRON
is AUX
your PRON
responsibility NOUN
to PART
show VERB
me PRON
where ADV
it PRON
is AUX
in ADP
there.>There PROPN
is AUX
no DET
index NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
you PRON
overstepped VERB
your PRON
knowledge NOUN
base,>as NOUN
usual.>---------------------------------------------------------------------------->Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------It PROPN
's PART
on ADP
page NOUN
315 NUM
, PUNCT
about ADV
2 NUM
1/2 NUM
inches NOUN
up ADP
from ADP
the DET
bottom NOUN
and CCONJ
an DET
inch NOUN
infrom ADP
the DET
right NOUN
. PUNCT
At ADP
least ADJ
we PRON
know VERB
what PRON
some DET
people NOUN
* PUNCT
have AUX
n't PART
* PUNCT
read VERB
and CCONJ
remembered.-- PROPN
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59189From NUM
: PUNCT
heart@access.digex.com X
( PUNCT
G)Subject PROPN
: PUNCT
cholistasis(sp?)/fat NOUN
- PUNCT
free ADJ
diet NOUN
/ SYM
pregnancy!!Hi PROPN
, PUNCT
I've PROPN
just ADV
returned VERB
from ADP
a DET
visit NOUN
with ADP
my PRON
OB PROPN
/ SYM
GYN PROPN
and CCONJ
I PRON
have AUX
a DET
few ADJ
concerns NOUN
that SCONJ
maybe ADV
y' PRON
all DET
can AUX
help VERB
me PRON
with ADP
. PUNCT
  SPACE
I PRON
've AUX
been AUX
seeing VERB
her PRON
every DET
4 NUM
weeks NOUN
for ADP
the DET
past ADJ
few ADJ
months NOUN
( PUNCT
I PRON
'm AUX
at ADP
week NOUN
28 NUM
) PUNCT
and CCONJ
during ADP
the DET
last ADJ
2 NUM
visits NOUN
I PRON
've AUX
gained VERB
9 NUM
to ADP
9 NUM
1/2 NUM
pounds NOUN
every DET
4 NUM
weeks NOUN
. PUNCT
  SPACE
She PRON
said VERB
this DET
was AUX
unacceptable ADJ
over ADP
any DET
4 NUM
week NOUN
period NOUN
. PUNCT
As SCONJ
it PRON
stands VERB
I PRON
've AUX
thus ADV
far ADV
gained VERB
26 NUM
pounds NOUN
. PUNCT
  SPACE
Also ADV
she PRON
says VERB
that SCONJ
though SCONJ
I PRON
'm AUX
at ADP
28 NUM
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
is AUX
27 NUM
weeks NOUN
, PUNCT
I PRON
think VERB
she PRON
mentioned VERB
27 NUM
inches NOUN
for ADP
the DET
top NOUN
of ADP
the DET
fundus NOUN
. PUNCT
  SPACE
When ADV
I PRON
was AUX
13 NUM
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
was AUX
14 NUM
weeks NOUN
. PUNCT
  SPACE
I PRON
must AUX
also ADV
add VERB
, PUNCT
that SCONJ
I PRON
had AUX
an DET
operation NOUN
a DET
few ADJ
years NOUN
ago ADV
for ADP
endometriosis NOUN
and CCONJ
I PRON
've AUX
had VERB
no DET
problems NOUN
with ADP
endometriosis NOUN
but CCONJ
apparently ADV
it PRON
is AUX
causing VERB
me PRON
pain NOUN
in ADP
my PRON
pelvic ADJ
region NOUN
during ADP
the DET
pregnancy NOUN
, PUNCT
and CCONJ
I PRON
have AUX
a DET
very ADV
difficult ADJ
time NOUN
moving VERB
, PUNCT
and CCONJ
the DET
doc NOUN
has AUX
recommended VERB
I PRON
not PART
walk VERB
or CCONJ
move VERB
unless SCONJ
I PRON
have AUX
to PART
. PUNCT
( PUNCT
I PRON
have AUX
a DET
little ADJ
handicapped ADJ
sticker NOUN
for ADP
when ADV
I PRON
do AUX
need VERB
to PART
go VERB
out ADP
. PUNCT
) PUNCT
Anyway INTJ
that DET
's AUX
1/2 NUM
of ADP
the DET
situation NOUN
the DET
other ADJ
is AUX
that SCONJ
almost ADV
from ADP
the DET
beginning NOUN
of ADP
pregnancy NOUN
I PRON
was AUX
getting VERB
sick ADJ
( PUNCT
throwing VERB
up ADP
) PUNCT
about ADV
2 NUM
- SYM
3 NUM
times NOUN
a DET
day NOUN
and CCONJ
mostly ADV
it PRON
was AUX
bile ADJ
that PRON
was AUX
being AUX
eliminated VERB
. PUNCT
  SPACE
( PUNCT
I PRON
told VERB
her PRON
about ADP
this DET
) PUNCT
. PUNCT
  SPACE
I PRON
know VERB
this DET
because SCONJ
I PRON
was AUX
n't PART
eating VERB
very ADV
much ADV
due ADP
to ADP
the DET
nausea NOUN
and CCONJ
could AUX
see VERB
the DET
' PUNCT
results NOUN
' PUNCT
. PUNCT
  SPACE
Well INTJ
now ADV
I PRON
only ADV
get VERB
sick ADJ
about ADP
once ADV
every DET
1 NUM
- SYM
2 NUM
weeks NOUN
, PUNCT
and CCONJ
it PRON
is AUX
still ADV
bile ADJ
related VERB
. PUNCT
  SPACE
But CCONJ
in ADP
addition NOUN
I PRON
had AUX
begun VERB
to PART
feel VERB
movement NOUN
near SCONJ
my PRON
upper ADJ
right ADJ
abdomen NOUN
, PUNCT
just ADV
below ADP
the DET
right ADJ
breast NOUN
, PUNCT
usually ADV
when ADV
I PRON
was AUX
lying VERB
on ADP
my PRON
right ADJ
side NOUN
. PUNCT
  SPACE
It PRON
began VERB
to PART
get AUX
worse ADJ
though ADV
because SCONJ
it PRON
started VERB
to PART
hurt VERB
when ADV
I PRON
lay VERB
on ADP
my PRON
right ADJ
side NOUN
, PUNCT
and CCONJ
then ADV
it PRON
hurt VERB
  SPACE
no ADV
matter ADV
what PRON
position NOUN
I PRON
was AUX
in ADV
. PUNCT
  SPACE
Next ADV
, PUNCT
I PRON
noticed VERB
that SCONJ
when ADV
I PRON
ate VERB
greasy NOUN
or CCONJ
fatty NOUN
foods NOUN
I PRON
felt VERB
like SCONJ
my PRON
entire ADJ
abdomen NOUN
had AUX
turned VERB
to ADP
stone NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
in ADP
the DET
area NOUN
got VERB
worse ADJ
. PUNCT
  SPACE
However ADV
if SCONJ
I PRON
ate VERB
sauerkraut NOUN
or CCONJ
vinegar NOUN
or CCONJ
something PRON
to PART
' PUNCT
cut VERB
' PUNCT
the DET
fat NOUN
it PRON
was AUX
n't PART
as ADV
much ADJ
of ADP
a DET
problem NOUN
. PUNCT
So ADV
the DET
doctor NOUN
says VERB
I PRON
have AUX
cholistatis NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
should AUX
avoid VERB
fatty ADJ
foods NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
, PUNCT
and CCONJ
because SCONJ
I PRON
was AUX
already ADV
aware ADJ
of ADP
what PRON
seemed VERB
to ADP
me PRON
this DET
cause NOUN
and CCONJ
effect NOUN
relationship NOUN
I PRON
have AUX
been AUX
avoiding VERB
these DET
foods NOUN
on ADP
my PRON
own ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
still ADV
able ADJ
to PART
eat VERB
foods NOUN
with ADP
Ricotta PROPN
cheese NOUN
for ADP
instance NOUN
and CCONJ
other ADJ
low ADJ
fat ADJ
foods NOUN
. PUNCT
  SPACE
But CCONJ
doc PROPN
wants VERB
me PRON
to PART
be AUX
on ADP
a DET
non ADJ
- ADJ
fat ADJ
diet NOUN
. PUNCT
  SPACE
This DET
means VERB
no DET
meat NOUN
except SCONJ
fish NOUN
and CCONJ
chicken NOUN
w/o ADP
skin NOUN
( PUNCT
I PRON
do AUX
this DET
anyway ADV
) PUNCT
. PUNCT
  SPACE
No DET
nuts NOUN
, PUNCT
fried ADJ
food NOUN
, PUNCT
cheese NOUN
etc X
. PUNCT
  SPACE
I PRON
am AUX
allowed VERB
skim PROPN
milk NOUN
. PUNCT
  SPACE
She PRON
said VERB
I PRON
should AUX
avoid VERB
anything PRON
sweet ADJ
( PUNCT
e.g. ADV
bananas PROPN
) PUNCT
. PUNCT
  SPACE
Also ADV
I PRON
must AUX
only ADV
have AUX
one NUM
serving VERB
of ADP
something PRON
high ADJ
in ADP
carbohydrates NOUN
a DET
day NOUN
( PUNCT
potatoes NOUN
, PUNCT
pasta NOUN
, PUNCT
rice NOUN
) PUNCT
! PUNCT
  SPACE
She PRON
said VERB
I PRON
ca AUX
n't PART
even ADV
cook VERB
vegetables NOUN
in ADP
a DET
little ADJ
bit NOUN
of ADP
oil NOUN
and CCONJ
that SCONJ
I PRON
should AUX
eat VERB
vegetables NOUN
raw ADJ
or CCONJ
steamed ADJ
. PUNCT
  SPACE
I PRON
'm AUX
concerned ADJ
because SCONJ
I PRON
understand VERB
you PRON
need VERB
to PART
have AUX
some DET
fat NOUN
in ADP
your PRON
diet NOUN
to PART
help VERB
in ADP
the DET
digestive ADJ
process NOUN
. PUNCT
  SPACE
And CCONJ
if SCONJ
I PRON
'm AUX
not PART
taking VERB
in ADP
fat NOUN
, PUNCT
is AUX
she PRON
expecting VERB
the DET
baby NOUN
will AUX
take VERB
it PRON
from ADP
my PRON
stores NOUN
? PUNCT
  SPACE
And CCONJ
why ADV
this DET
restriction NOUN
on ADP
carbohydrates NOUN
if SCONJ
she PRON
's AUX
concerned ADJ
about ADP
fat NOUN
? PUNCT
  SPACE
I PRON
'm AUX
not PART
clear ADJ
how ADV
much ADJ
of ADP
her PRON
recommendation NOUN
is AUX
based VERB
on ADP
my PRON
weight NOUN
gain NOUN
and CCONJ
how ADV
much ADJ
on ADP
cholistatis NOUN
, PUNCT
which PRON
I PRON
ca AUX
n't PART
seem VERB
to PART
find VERB
any DET
information NOUN
on ADP
. PUNCT
  SPACE
She PRON
originally ADV
said VERB
that SCONJ
I PRON
should AUX
only ADV
gain VERB
20 NUM
pounds NOUN
during ADP
the DET
entire ADJ
pregnancy NOUN
since SCONJ
I PRON
was AUX
about ADV
20 NUM
lbs NOUN
overweight NOUN
when ADV
I PRON
started VERB
. PUNCT
  SPACE
But CCONJ
my PRON
sister NOUN
gained VERB
60 NUM
lbs NOUN
during ADP
her PRON
pregnancy NOUN
and CCONJ
she PRON
's AUX
taken VERB
it PRON
all DET
off ADP
and CCONJ
has AUX
n't PART
had VERB
any DET
problems NOUN
. PUNCT
  SPACE
She PRON
also ADV
asked VERB
if SCONJ
any DET
members NOUN
of ADP
my PRON
family NOUN
were AUX
obese ADJ
, PUNCT
which PRON
none NOUN
of ADP
them PRON
are AUX
. PUNCT
  SPACE
Anyway INTJ
I PRON
think VERB
she PRON
is AUX
overly ADV
concerned ADJ
about ADP
weight NOUN
gain NOUN
, PUNCT
and CCONJ
feel VERB
like SCONJ
I PRON
'm AUX
being AUX
' PUNCT
punished VERB
' PUNCT
by ADP
a DET
severe ADJ
diet NOUN
. PUNCT
  SPACE
She PRON
did AUX
want VERB
to PART
see VERB
me PRON
again ADV
in ADP
one NUM
week NOUN
so ADV
I PRON
think VERB
she PRON
the DET
diet NOUN
may AUX
be AUX
temporary ADJ
for ADP
that DET
one NUM
week NOUN
. PUNCT
What PRON
I PRON
want VERB
to PART
know VERB
is AUX
how ADV
reasonable ADJ
is AUX
this DET
non ADJ
- ADJ
fat ADJ
diet NOUN
? PUNCT
  SPACE
I PRON
would AUX
understand VERB
if SCONJ
she PRON
had AUX
said VERB
low ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
since SCONJ
I PRON
'm AUX
trying VERB
that DET
anyway ADV
, PUNCT
even ADV
if SCONJ
she PRON
said VERB
really ADV
low ADJ
- PUNCT
fat NOUN
diet NOUN
. PUNCT
  SPACE
I PRON
think VERB
she PRON
assumes VERB
I PRON
must AUX
be AUX
eating VERB
a DET
high ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
but CCONJ
really ADV
it PRON
is AUX
that DET
because SCONJ
of ADP
the DET
endometriosis NOUN
and CCONJ
the DET
operation NOUN
I PRON
'm AUX
not PART
able ADJ
to PART
use VERB
the DET
energy NOUN
from ADP
the DET
food NOUN
I PRON
do AUX
eat VERB
. PUNCT
Any DET
opinions NOUN
, PUNCT
info NOUN
and CCONJ
experiences NOUN
will AUX
be AUX
appreciated VERB
. PUNCT
  SPACE
I PRON
'm AUX
truly ADV
going VERB
stark ADJ
raving VERB
mad ADJ
trying VERB
to PART
meet VERB
this DET
new ADJ
strict ADJ
diet NOUN
because SCONJ
fruits NOUN
and CCONJ
vegetables NOUN
go VERB
through ADP
my PRON
system NOUN
in ADP
a DET
few ADJ
minutes NOUN
and CCONJ
I PRON
'll AUX
end VERB
up ADP
having VERB
to PART
eat VERB
constantly ADV
. PUNCT
  SPACE
Thus ADV
far ADV
I PRON
do AUX
n't PART
find VERB
any DET
foods NOUN
satisfying NOUN
. PUNCT
Thanks NOUN
GNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59190From NUM
: PUNCT
bbenowit@telesciences.com X
( PUNCT
Barry PROPN
D PROPN
Benowitz)Subject PROPN
: PUNCT
PRK PROPN
( PUNCT
Photo PROPN
Refractive PROPN
Keratostomy)For PROPN
those DET
of ADP
you PRON
interested ADJ
in ADP
the DET
above ADJ
Procedure PROPN
, PUNCT
I PRON
am AUX
able ADJ
to PART
add VERB
thefollowing VERB
facts:1 NUM
) PUNCT
This DET
Procedure NOUN
is AUX
not PART
done VERB
in ADP
Philadelphia.2 PROPN
) PUNCT
It PRON
is AUX
performed VERB
in ADP
Maryland PROPN
at ADP
Johns PROPN
Hopkins PROPN
for ADP
corrections NOUN
between ADP
   SPACE
0 NUM
and CCONJ
-5 X
and CCONJ
from ADP
-10 X
to ADP
-20 X
( PUNCT
diopters NOUN
, PUNCT
I PRON
think VERB
are AUX
the DET
units).3 ADJ
) PUNCT
It PRON
is AUX
performed VERB
in ADP
New PROPN
York PROPN
City PROPN
at ADP
Manhattan PROPN
Eye PROPN
and CCONJ
Ear PROPN
for ADP
corrections NOUN
   SPACE
between ADP
0 NUM
and CCONJ
-6.The ADJ
magic ADJ
words NOUN
to PART
use VERB
when ADV
requesting VERB
information NOUN
on ADP
this DET
is AUX
not PART
PRK PROPN
( PUNCT
theythink VERB
you PRON
mean VERB
RK PROPN
) PUNCT
but CCONJ
the DET
excimer PROPN
laser PROPN
study NOUN
( PUNCT
or CCONJ
protocol NOUN
) PUNCT
. PUNCT
This DET
will AUX
get AUX
you PRON
to ADP
the DET
proper ADJ
people.-- PROPN
Barry PROPN
D. PROPN
BenowitzEMail PROPN
: PUNCT
	 SPACE
bbenowit@telesciences.com X
( PUNCT
... PUNCT
! PUNCT
pyrnj!telesci!bbenowit)Phone NOUN
: PUNCT
	 SPACE
+1 PROPN
609 NUM
866 NUM
1000 NUM
x354Snail NUM
: PUNCT
	 SPACE
Telesciences PROPN
CO PROPN
Systems PROPN
, PUNCT
351 NUM
New PROPN
Albany PROPN
Rd PROPN
, PUNCT
Moorestown PROPN
, PUNCT
NJ PROPN
, PUNCT
08057 NUM
- SYM
1177Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59191From NUM
: PUNCT
etxmow@garbo.ericsson.se PROPN
( PUNCT
Mats NOUN
Winberg)Subject VERB
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
   SPACE
Is AUX
n't PART
there PRON
a DET
relatively ADV
new ADJ
treatment NOUN
for ADP
kidney NOUN
stones NOUN
involving VERB
   SPACE
a DET
non ADJ
- ADJ
invasive ADJ
use NOUN
of ADP
ultra ADJ
- ADJ
sound ADJ
where ADV
the DET
patient NOUN
is AUX
lowered VERB
   SPACE
into ADP
some DET
sort NOUN
of ADP
liquid NOUN
when ADV
he PRON
/ SYM
she PRON
undergoes VERB
treatment NOUN
? PUNCT
I PRON
'm AUX
sure ADJ
   SPACE
I PRON
've AUX
read VERB
about ADP
it PRON
somewhere ADV
. PUNCT
If SCONJ
I PRON
remember VERB
it PRON
correctly ADV
it PRON
is AUX
a DET
   SPACE
painless ADJ
and CCONJ
effective ADJ
treatment NOUN
. PUNCT
   SPACE
A DET
couple NOUN
of ADP
weeks NOUN
ago ADV
I PRON
visited VERB
a DET
hospital NOUN
here ADV
in ADP
Stockholm PROPN
and CCONJ
   SPACE
saw VERB
big ADJ
signs NOUN
showing VERB
the DET
way NOUN
to ADP
the DET
" PUNCT
Kidney PROPN
stone NOUN
chrusher NOUN
" PUNCT
... PUNCT
   SPACE
Mats PROPN
Winberg PROPN
   SPACE
Stockholm PROPN
, PUNCT
Sweden PROPN
	      SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59192From NUM
: PUNCT
ske@pkmab.se PROPN
( PUNCT
Kristoffer PROPN
Eriksson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1quqlgINN83q@im4u.cs.utexas.edu NUM
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes VERB
: PUNCT
> X
My PRON
definition NOUN
is AUX
this DET
: PUNCT
Science NOUN
is AUX
the DET
investigation NOUN
of ADP
the DET
empirical ADJ
> X
that PRON
avoids VERB
mistakes NOUN
in ADP
reasoning NOUN
and CCONJ
methodology NOUN
discovered VERB
from ADP
previous ADJ
> X
work NOUN
. PUNCT
Reading VERB
this DET
definition NOUN
, PUNCT
I PRON
wonder VERB
: PUNCT
when ADV
should AUX
you PRON
recognize VERB
somethingas PROPN
being AUX
a DET
" PUNCT
mistake NOUN
" PUNCT
? PUNCT
It PRON
seems VERB
to ADP
me PRON
, PUNCT
that SCONJ
proponents NOUN
of ADP
pseudo NOUN
- PUNCT
sciencesmight VERB
have AUX
their PRON
own ADJ
ideas NOUN
of ADP
what PRON
constitutes VERB
a DET
" PUNCT
mistake NOUN
" PUNCT
and CCONJ
whichdiscoveries NOUN
of ADP
such ADJ
previous ADJ
mistakes NOUN
they PRON
accept.-- ADP
Kristoffer PROPN
Eriksson PROPN
, PUNCT
Peridot PROPN
Konsult PROPN
AB PROPN
, PUNCT
Stallgatan PROPN
2 NUM
, PUNCT
S-702 PROPN
26 NUM
Oerebro PROPN
, PUNCT
SwedenPhone PROPN
: PUNCT
+46 PROPN
19 NUM
- SYM
33 NUM
13 NUM
00 NUM
  SPACE
! PUNCT
  SPACE
e NOUN
- NOUN
mail NOUN
: PUNCT
ske@pkmab.seFax NOUN
: PUNCT
   SPACE
+46 PROPN
19 NUM
- SYM
33 NUM
13 NUM
30 NUM
  SPACE
! PUNCT
  SPACE
or CCONJ
... PUNCT
! PUNCT
mail.swip.net!kullmar!pkmab!skeNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59193From NUM
: PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographytodamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
> PROPN
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
> X
appreciated VERB
. PUNCT
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps ADV
. PUNCT
Bill PROPN
from ADP
ozNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59194From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn PROPN
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff,tron@fafnir.la.locus.com PROPN
writes:>Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
> X
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
> X
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki?I'm PROPN
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
ofthe NOUN
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-)Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsUM PROPN
Anesthesiology PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59195From NUM
: PUNCT
sjha+@cs.cmu.edu PROPN
( PUNCT
Somesh PROPN
Jha)Subject X
: PUNCT
What PRON
is AUX
" PUNCT
intersection NOUN
syndrome NOUN
" PUNCT
near SCONJ
the DET
forearm NOUN
/ SYM
wrist?Hi PROPN
: PUNCT
I PRON
went VERB
to ADP
the DET
orthopedist NOUN
on ADP
Tuesday PROPN
. PUNCT
He PRON
diagnosed VERB
me PRON
as SCONJ
having"intersection NOUN
syndrome NOUN
" PUNCT
. PUNCT
He PRON
prescribed VERB
Feldene PROPN
for ADP
me PRON
. PUNCT
I PRON
wantto NOUN
know VERB
more ADJ
about ADP
the DET
disease NOUN
and CCONJ
the DET
drug NOUN
. PUNCT
ThanksSomeshNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59196From NUM
: PUNCT
choueiry@liasun1.epfl.ch X
( PUNCT
Berthe PROPN
Y. PROPN
Choueiry)Subject PROPN
: PUNCT
French ADJ
to ADP
English ADJ
translation NOUN
of ADP
medical ADJ
termsDear PROPN
Netters PROPN
, PUNCT
I PRON
am AUX
not PART
sure ADJ
whether SCONJ
this DET
is AUX
the DET
right ADJ
place NOUN
to PART
post VERB
my PRON
query NOUN
, PUNCT
but CCONJ
Ithought PROPN
there PRON
may AUX
be AUX
some DET
bilingual ADJ
physicians NOUN
in ADP
this DET
newsgroup NOUN
thatcould AUX
help VERB
. PUNCT
Please INTJ
, PUNCT
excuse VERB
me PRON
for ADP
overloading VERB
the DET
bandwidth NOUN
. PUNCT
I PRON
am AUX
trying VERB
to PART
build VERB
a DET
resource NOUN
allocation NOUN
program NOUN
for ADP
managing VERB
asurgical ADJ
operating NOUN
unit NOUN
in ADP
a DET
hospital NOUN
. PUNCT
The DET
user NOUN
interface NOUN
is AUX
inEnglish PROPN
, PUNCT
however ADV
the DET
terms NOUN
of ADP
medical ADJ
specialties NOUN
I PRON
was AUX
given VERB
are AUX
inFrench PROPN
:-( PUNCT
I PRON
have AUX
no DET
medical ADJ
dictionary PROPN
handy ADJ
, PUNCT
mine NOUN
is AUX
a DET
technicaluniversity NOUN
: PUNCT
-((I PUNCT
need VERB
to PART
get AUX
the DET
translation NOUN
into ADP
English PROPN
( PUNCT
when ADV
there PRON
is AUX
one NUM
) PUNCT
of ADP
thefollowing VERB
words NOUN
. PUNCT
They PRON
refer VERB
to ADP
medical ADJ
categories NOUN
of ADP
operating VERB
rooms(theaters PROPN
) PUNCT
. PUNCT
I PRON
admit VERB
they PRON
may AUX
not PART
be AUX
universally ADV
" PUNCT
used".1- ADJ
sceptique2- PROPN
orl3- NUM
brulure NOUN
/ PUNCT
brule'4- PROPN
ne'onatal5- PROPN
pre'natal6- PROPN
pre'mature'7- PROPN
neurochirurgie PROPN
( PUNCT
neuro PROPN
- PUNCT
surgery??)8- PROPN
chirurgie PROPN
ge'ne'rale9- PROPN
chirurgie PROPN
plastique10- NUM
urologie NOUN
( PUNCT
urology??)Thank PUNCT
you PRON
for ADP
you PRON
help VERB
. PUNCT
Cheers,---------Berthe INTJ
Y. PROPN
Choueirychoueiry@lia.di.epfl.chLIA-DI PROPN
, PUNCT
Ecole PROPN
Polytechnique PROPN
Federale PROPN
de ADP
Lausanne PROPN
, PUNCT
EcublensCH-1015 PROPN
Lausanne PROPN
, PUNCT
SwitzerlandVoice PROPN
: PUNCT
+41 NUM
- PUNCT
21 NUM
- SYM
693.52.77 NUM
and CCONJ
+41 PROPN
- PUNCT
21 NUM
- SYM
693.66.78 NUM
	 SPACE
Fax NOUN
: PUNCT
+41 NUM
- PUNCT
21 NUM
- PUNCT
693.52.25 NUM
- PUNCT
-------ps NOUN
: PUNCT
please INTJ
reply VERB
by ADP
e NOUN
- NOUN
mail NOUN
if SCONJ
possible ADJ
since SCONJ
I PRON
scan AUX
too ADV
quicklythrough VERB
the DET
messages NOUN
of ADP
this DET
newsgroup NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59197From NUM
: PUNCT
jgd@dixie.com PROPN
( PUNCT
John PROPN
De PROPN
Armond)Subject NUM
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?E.J. PROPN
Draper PROPN
< X
draper@odin.mda.uth.tmc.edu NOUN
> X
writes:>If PROPN
it PRON
were AUX
my PRON
wife NOUN
, PUNCT
I PRON
would AUX
insist VERB
that SCONJ
a DET
radiologist NOUN
be AUX
involved VERB
in ADP
the DET
> X
process NOUN
. PUNCT
  SPACE
Radiologist NOUN
are AUX
intensively ADV
trained VERB
in ADP
the DET
process NOUN
of ADP
> X
interpreting VERB
diagnostic ADJ
imaging NOUN
data NOUN
and CCONJ
are AUX
aware ADJ
of ADP
many ADJ
things NOUN
that PRON
> X
other ADJ
physicians NOUN
are AUX
n't PART
aware ADJ
of ADP
. PUNCT
  SPACE
Maybe ADV
, PUNCT
maybe ADV
not PART
. PUNCT
  SPACE
A DET
new ADJ
graduate NOUN
would AUX
obviously ADV
be AUX
well ADV
trained VERB
( PUNCT
butperhaps NOUN
without ADP
sufficient ADJ
experience NOUN
) PUNCT
. PUNCT
A DET
radiologist NOUN
trained VERB
10 NUM
or15 PROPN
years NOUN
ago ADV
who PRON
has AUX
not PART
kept VERB
his PRON
continuing VERB
education NOUN
current NOUN
is AUX
a DET
whole ADJ
' PUNCT
nuther ADV
matter NOUN
. PUNCT
  SPACE
A DET
OB NOUN
who PRON
HAS VERB
trained VERB
in ADP
modern ADJ
radiology NOUN
technologyis PROPN
certainly ADV
more ADV
qualified ADJ
than SCONJ
the DET
latter ADJ
and CCONJ
at ADP
least ADJ
equal ADJ
to ADP
the DET
former.>Would NOUN
you PRON
want VERB
a DET
radiologist NOUN
to PART
> X
deliver VERB
your PRON
baby NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
would AUX
n't PART
, PUNCT
then ADV
why ADV
would AUX
you PRON
want VERB
a DET
OB PROPN
/ SYM
GYN PROPN
to PART
> X
read VERB
your PRON
ultrasound NOUN
study?If NOUN
the DET
radiologist NOUN
is AUX
also ADV
trained VERB
in ADP
OB PROPN
/ SYM
GYN PROPN
, PUNCT
why ADV
not?John-- PROPN
John PROPN
De PROPN
Armond PROPN
, PUNCT
WD4OQC NOUN
               SPACE
|Interested NOUN
in ADP
high ADJ
performance NOUN
mobility NOUN
? PUNCT
  SPACE
Performance NOUN
Engineering PROPN
Magazine(TM PROPN
) PUNCT
| PROPN
Interested PROPN
in ADP
high ADJ
tech NOUN
and CCONJ
computers NOUN
? PUNCT
Marietta PROPN
, PUNCT
Ga PROPN
                         SPACE
| PROPN
Send VERB
ur PROPN
snail ADJ
- PUNCT
mail NOUN
address NOUN
to ADP
jgd@dixie.com PROPN
                        SPACE
| PROPN
perform@dixie.com X
for ADP
a DET
free ADJ
sample NOUN
magLee NOUN
Harvey PROPN
Oswald PROPN
: PUNCT
Where ADV
are AUX
ya PRON
when ADV
we PRON
need VERB
ya?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59198From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
ME PROPN
INJECT PROPN
... PUNCT
According VERB
to ADP
a DET
previous ADJ
poster NOUN
, PUNCT
one PRON
should AUX
seek VERB
a DET
doctor'sassistance NOUN
for ADP
injections NOUN
. PUNCT
But CCONJ
what PRON
about ADP
Sumatriptin PROPN
[ PUNCT
sp?]?Doesn't PUNCT
one PRON
have AUX
to PART
inject VERB
oneself PRON
immediately ADV
upon SCONJ
the DET
onsetof NOUN
a DET
migraine?Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59199From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In PROPN
article NOUN
< X
1993Apr22.202051.1@vms.ocom.okstate.edu PROPN
> X
, PUNCT
banschbach@vms.ocom.okstate.edu PROPN
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
> X
disease PROPN
. PUNCT
> X
> X
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
> X
without ADP
discomfort PROPN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
> X
John PROPN
Eyles PROPN
> X
> X
All DET
your PRON
friend NOUN
really ADV
has AUX
to PART
do AUX
is AUX
find VERB
a DET
Registered ADJ
Dietician(RD PROPN
) PUNCT
. PUNCT
  SPACE
While SCONJ
> X
most ADJ
work NOUN
in ADP
hospitals NOUN
and CCONJ
clinics NOUN
, PUNCT
many ADJ
major ADJ
cities NOUN
will AUX
have AUX
RD PROPN
's PART
who PRON
> X
are AUX
in ADP
" PUNCT
private ADJ
practice NOUN
" PUNCT
so ADV
to PART
speak VERB
. PUNCT
  SPACE
Many ADJ
physicans NOUN
will AUX
refer VERB
their PRON
> NOUN
patients NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
to ADP
RD PROPN
's PART
for ADP
dietary ADJ
help NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
> X
your PRON
friend NOUN
's PART
physician NOUN
to PART
make VERB
a DET
referral ADJ
, PUNCT
medical ADJ
insurance NOUN
should AUX
pay VERB
for ADP
> X
the DET
RD PROPN
's PART
services NOUN
just ADV
like SCONJ
the DET
services NOUN
of ADP
a DET
physical ADJ
therapist NOUN
. PUNCT
  SPACE
The DET
> X
better ADJ
medical ADJ
insurance NOUN
plans NOUN
will AUX
cover VERB
this DET
but CCONJ
even ADV
if SCONJ
your PRON
friend NOUN
's PART
> X
plan NOUN
does AUX
n't PART
, PUNCT
it PRON
would AUX
be AUX
well ADV
worth ADJ
the DET
cost NOUN
to PART
get AUX
on ADP
a DET
good ADJ
diet NOUN
to ADP
> X
control VERB
the DET
intestinal ADJ
discomfort NOUN
and CCONJ
help VERB
the DET
intestinal ADJ
lining NOUN
heal NOUN
. PUNCT
> X
Crohn PROPN
's PART
disease NOUN
is AUX
an DET
inflammatory ADJ
disease NOUN
of ADP
the DET
intestinal ADJ
lining NOUN
and CCONJ
> X
lipoxygenase NOUN
inhibitors NOUN
may AUX
help VERB
by ADP
decreasing VERB
leukotriene ADJ
formation NOUN
but CCONJ
> X
I PRON
'm AUX
not PART
aware ADJ
of ADP
tea NOUN
or CCONJ
turmeric ADJ
containing VERB
lipoxygenase NOUN
inhibitors NOUN
. PUNCT
  SPACE
ForIf PROPN
you PRON
do AUX
a DET
MEDLINE PROPN
search NOUN
on ADP
" PUNCT
turmeric ADJ
" PUNCT
you PRON
'll AUX
see VERB
that SCONJ
it PRON
is AUX
a DET
potentlipoxygenase NOUN
inhibitor NOUN
which PRON
is AUX
being AUX
investigated VERB
in ADP
a DET
number NOUN
of ADP
areas NOUN
. PUNCT
I'm NOUN
in ADP
cardiology NOUN
and CCONJ
about ADV
4 NUM
years NOUN
ago ADV
the DET
cardiothoracic NOUN
surgery NOUN
lab NOUN
at ADP
myhospital PROPN
compared VERB
the DET
effect NOUN
of ADP
a DET
teaspoon NOUN
of ADP
dissolved VERB
turmeric NOUN
vs. ADP
a DET
$ SYM
2000bolus NUM
of ADP
tPA PROPN
in ADP
preventing VERB
myocardial ADJ
reperfusion NOUN
injury NOUN
in ADP
a DET
perfusedLangendorff ADJ
sheep NOUN
heart NOUN
. PUNCT
The DET
turmeric NOUN
was AUX
more ADV
effective ADJ
: PUNCT
-)A ADJ
colleague NOUN
of ADP
mine NOUN
in ADP
the DET
School PROPN
of ADP
Pharmacy PROPN
( PUNCT
Dr. PROPN
Ron PROPN
Kohen PROPN
) PUNCT
has AUX
a DET
paper NOUN
" PUNCT
inpress NOUN
" PUNCT
on ADP
the DET
free ADJ
radical ADJ
scavenging ADJ
activity NOUN
and CCONJ
antioxidant ADJ
activity NOUN
of ADP
tea NOUN
. PUNCT
Joshbackon@VMS.HUJI.AC.IL X
> X
bad ADJ
inflammation NOUN
, PUNCT
steroids NOUN
are AUX
used VERB
but CCONJ
for ADP
a DET
mild ADJ
case NOUN
, PUNCT
the DET
side NOUN
effects NOUN
> X
are AUX
not PART
worth ADJ
the DET
small ADJ
benefit NOUN
gained VERB
by ADP
steroid NOUN
use NOUN
. PUNCT
  SPACE
Upjohn PROPN
is AUX
developing VERB
> X
a DET
new ADJ
lipoxygenase NOUN
inhibitor NOUN
that PRON
should AUX
greatly ADV
help VERB
deal VERB
with ADP
> X
inflammatory ADJ
diseases NOUN
but CCONJ
it PRON
's AUX
not PART
available ADJ
yet ADV
. PUNCT
> X
> X
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59200From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Wanted VERB
: PUNCT
Rat NOUN
cell NOUN
line NOUN
( PUNCT
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
c.)In PROPN
article NOUN
< X
roos.49@Operoni PROPN
. PUNCT
Helsinki PROPN
. PUNCT
FI PROPN
> X
roos@Operoni PROPN
. PUNCT
Helsinki PROPN
. PUNCT
FI PROPN
( PUNCT
Christophe PROPN
Roos PROPN
) PUNCT
writes:>I PRON
am AUX
looking VERB
for ADP
a DET
rat ADJ
cell NOUN
line NOUN
of ADP
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
cell NOUN
  SPACE
-type PROPN
. PUNCT
I PRON
> X
have AUX
been AUX
looking VERB
at ADP
ATCC PROPN
without ADP
success NOUN
and CCONJ
would AUX
very ADV
much ADV
appreciate VERB
any DET
> X
help NOUN
. PUNCT
I PRON
shot VERB
off ADP
a DET
response NOUN
to ADP
this DET
last ADJ
night NOUN
that PRON
I PRON
've AUX
tried VERB
to PART
cancel VERB
. PUNCT
  SPACE
It PRON
was AUX
only ADV
a DET
few ADJ
minutes NOUN
later ADV
while SCONJ
driving VERB
home ADV
that PRON
I PRON
remembered VERB
that SCONJ
your PRON
message NOUN
does AUX
specifically ADV
say VERB
cortical ADJ
. PUNCT
  SPACE
My PRON
first ADJ
reaction NOUN
had AUX
been AUX
to PART
suggestthe VERB
PC12 PROPN
pheochromocytoma NOUN
line NOUN
. PUNCT
  SPACE
That DET
may AUX
still ADV
be AUX
a DET
good ADJ
compromise NOUN
, PUNCT
dependingon VERB
what PRON
you PRON
're AUX
doing VERB
. PUNCT
  SPACE
Have AUX
you PRON
concidered VERB
using VERB
a DET
mouse NOUN
cell NOUN
line NOUN
from ADP
one NUM
of ADP
the DET
SV40 PROPN
T PROPN
antigen NOUN
transgenic ADJ
lines NOUN
? PUNCT
  SPACE
Another DET
alternative NOUN
might AUX
be AUX
primarycells NOUN
from ADP
bovine ADJ
adrenal ADJ
cortex NOUN
. PUNCT
  SPACE
MikeNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59201From NUM
: PUNCT
jkjec@westminster.ac.uk PUNCT
( PUNCT
Shazad NOUN
Barlas)Subject NOUN
: PUNCT
NEED VERB
HELP NOUN
ON ADP
SCARING NOUN
PLEASEHi NOUN
... PUNCT
I PRON
need VERB
information NOUN
on ADP
scaring NOUN
. PUNCT
Particularly ADV
as SCONJ
a DET
result NOUN
of ADP
grazing VERB
the DET
skinI PROPN
really ADV
wanted VERB
to PART
know VERB
of ADP
	 SPACE
1 NUM
. PUNCT
would AUX
a DET
scar PROPN
occur VERB
as SCONJ
a DET
result NOUN
of ADP
grazing NOUN
	 SPACE
2 NUM
. PUNCT
if SCONJ
yes INTJ
, PUNCT
then ADV
would AUX
it PRON
disappear VERB
? PUNCT
	 SPACE
3 NUM
. PUNCT
how ADV
long ADV
does AUX
a DET
graze NOUN
take VERB
to PART
heal VERB
? PUNCT
	 SPACE
4 NUM
. PUNCT
will AUX
hair NOUN
grow VERB
on ADP
it PRON
once SCONJ
it PRON
has AUX
healed VERB
? PUNCT
	 SPACE
5 NUM
. PUNCT
what PRON
is AUX
' PUNCT
scar PROPN
tissue NOUN
' PUNCT
? PUNCT
	 SPACE
6 NUM
. PUNCT
should AUX
antiseptic ADJ
cream NOUN
be AUX
applied VERB
to ADP
it PRON
regularly ADV
? PUNCT
	 SPACE
7 NUM
. PUNCT
is AUX
it PRON
better ADJ
to PART
keep VERB
it PRON
exposed VERB
and CCONJ
let VERB
fresh ADJ
air NOUN
at ADP
it?Please PROPN
help NOUN
- PUNCT
any DET
info NOUN
- PUNCT
no ADV
matter ADV
how ADV
small ADJ
will AUX
be AUX
appreciated VERB
greatly ADV
. PUNCT
BUT CCONJ
PLEASE PROPN
E ADJ
- ADJ
MAIL ADJ
ME NOUN
DIRECTLY NOUN
because SCONJ
I PRON
do AUX
nt PART
read VERB
this DET
newsgroup NOUN
often ADV
( PUNCT
thisis VERB
my PRON
first ADJ
time NOUN
) PUNCT
. PUNCT
   						 SPACE
.... PUNCT
Shaz PROPN
.... PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59202From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)Summary NUM
of ADP
thread NOUN
: PUNCT
A DET
person NOUN
has AUX
Crohns PROPN
, PUNCT
raw ADJ
vegetables NOUN
cause VERB
problems NOUN
( PUNCT
unspecified)Steve PROPN
Holland PROPN
replies VERB
: PUNCT
  SPACE
patient NOUN
may AUX
have AUX
mild ADJ
obstruction NOUN
. PUNCT
  SPACE
Avoid VERB
thingsthat PRON
would AUX
plug VERB
her PRON
up ADP
. PUNCT
  SPACE
Crohn PROPN
's PART
has AUX
no DET
dietary ADJ
restriction NOUN
in ADP
general ADJ
. PUNCT
In ADP
article NOUN
< X
1993Apr22.210631.13300@aio.jsc.nasa.gov>,spenser@fudd.jsc.nasa.gov PROPN
( PUNCT
S. PROPN
Spenser PROPN
Aden PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
Interesting ADJ
statements NOUN
, PUNCT
simply ADV
because SCONJ
I PRON
have AUX
been AUX
told VERB
otherwise ADV
. PUNCT
  SPACE
I PRON
'm AUX
> X
certainly ADV
not PART
questioning VERB
Steve PROPN
's PART
claims NOUN
, PUNCT
as SCONJ
for ADP
one NUM
I PRON
am AUX
not PART
a DET
doctor NOUN
, PUNCT
and CCONJ
I PRON
> X
agree VERB
that SCONJ
foods NOUN
do AUX
n't PART
bring VERB
on ADP
the DET
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
  SPACE
But CCONJ
inflammation NOUN
> X
can AUX
be AUX
either CCONJ
mildly ADV
or CCONJ
DRASTICALLY NOUN
enhanced VERB
due ADP
to ADP
food NOUN
. PUNCT
The DET
feeling NOUN
obout ADP
this DET
has AUX
changed VERB
in ADP
the DET
GI PROPN
community NOUN
. PUNCT
  SPACE
The DET
currentfeelingis NOUN
that SCONJ
inflammation NOUN
is AUX
not PART
induced VERB
by ADP
food NOUN
. PUNCT
  SPACE
There PRON
is AUX
even ADV
evidence NOUN
thatpatients NOUN
deprived VERB
of ADP
food NOUN
have AUX
mucosal ADJ
atrophy NOUN
due ADJ
to ADP
lack NOUN
of ADP
stimulationofintestinal ADJ
growth NOUN
factors NOUN
. PUNCT
  SPACE
There PRON
is AUX
now ADV
interest NOUN
in ADP
providing VERB
smallamountsof ADJ
nasogastric ADJ
feeding NOUN
to ADP
patients NOUN
on ADP
IV PROPN
nutrition NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
digress VERB
. PUNCT
  SPACE
Symptoms NOUN
can AUX
be AUX
drastically ADV
enhanced VERB
by ADP
food NOUN
, PUNCT
but CCONJ
not PART
inflammation NOUN
. PUNCT
> X
Having VERB
had AUX
one NUM
major ADJ
obstruction NOUN
resulting VERB
in ADP
resection NOUN
( PUNCT
is AUX
that SCONJ
a DET
good ADJ
enough ADJ
> X
caveat NOUN
:-) PUNCT
, PUNCT
I PRON
was AUX
told VERB
that SCONJ
a DET
* PUNCT
LOW ADJ
RESIDUE PROPN
* PUNCT
diet NOUN
is AUX
called VERB
for ADP
. PUNCT
  SPACE
Basically ADV
, PUNCT
> X
the DET
idea NOUN
is AUX
that SCONJ
if SCONJ
there PRON
is AUX
inflammation NOUN
of ADP
the DET
gut NOUN
( PUNCT
which PRON
may AUX
not PART
be AUX
> X
realized VERB
by ADP
the DET
patient NOUN
) PUNCT
, PUNCT
any DET
residue NOUN
in ADP
the DET
system NOUN
can AUX
be AUX
caught VERB
in ADP
the DET
folds NOUN
> X
of ADP
inflammation NOUN
and CCONJ
constantly ADV
irritate ADJ
, PUNCT
thus ADV
exacerbating VERB
the DET
problem NOUN
. PUNCT
> X
Therefore ADV
, PUNCT
anything PRON
that PRON
does AUX
n't PART
digest VERB
completely ADV
by ADP
the DET
point NOUN
of ADP
common ADJ
> X
inflammation NOUN
should AUX
be AUX
avoided VERB
. PUNCT
  SPACE
With ADP
what PRON
I PRON
've AUX
been AUX
told VERB
is AUX
typical ADJ
Crohn PROPN
's PART
, PUNCT
> X
of ADP
the DET
terminal PROPN
ileum NOUN
, PUNCT
my PRON
diet NOUN
should AUX
be AUX
low ADJ
residue ADJ
, PUNCT
consisting VERB
of ADP
: PUNCT
> X
> X
Completely ADV
out ADV
- PUNCT
never ADV
again ADV
- PUNCT
items NOUN
: PUNCT
> X
	 SPACE
o INTJ
corn NOUN
( PUNCT
kernel NOUN
husk NOUN
does AUX
n't PART
digest VERB
... PUNCT
most ADJ
of ADP
us PRON
know VERB
this DET
:-) PUNCT
> X
	 SPACE
o INTJ
popcorn ADJ
( PUNCT
same ADJ
) PUNCT
> X
	 SPACE
o INTJ
dried VERB
( PUNCT
dehydrated VERB
) PUNCT
fruit NOUN
and CCONJ
fruit NOUN
skins NOUN
> X
	 SPACE
o INTJ
nuts NOUN
( PUNCT
Very ADV
tough ADJ
when ADV
it PRON
comes VERB
to ADP
giving VERB
up ADP
some DET
fudge NOUN
: PUNCT
-)The ADJ
low ADJ
residue ADJ
diet NOUN
is AUX
appropriate ADJ
for ADP
you PRON
if SCONJ
you PRON
still ADV
have AUX
obstructions NOUN
. PUNCT
Again ADV
, PUNCT
it PRON
is AUX
not PART
felt VERB
that SCONJ
food NOUN
causes VERB
inflammation NOUN
. PUNCT
  SPACE
These DET
foods NOUN
areavoided VERB
because SCONJ
they PRON
may AUX
get AUX
stuck ADJ
. PUNCT
  SPACE
I PRON
'd AUX
go VERB
ahead ADV
and CCONJ
have AUX
thefudge NOUN
, PUNCT
though SCONJ
;-) NOUN
  SPACE
. PUNCT
> X
Discouraged VERB
greatly ADV
: PUNCT
> X
	 SPACE
o INTJ
raw ADJ
vegetables NOUN
( PUNCT
too ADV
fibrous ADJ
) PUNCT
> X
	 SPACE
o INTJ
wheat NOUN
and CCONJ
raw ADJ
grain NOUN
breads VERB
> X
	 SPACE
o INTJ
exotic ADJ
lettuce NOUN
( PUNCT
iceberg PROPN
is AUX
ok ADJ
since SCONJ
it PRON
's AUX
apparently ADV
mostly ADV
water NOUN
) PUNCT
> X
	 SPACE
o INTJ
greens PROPN
( PUNCT
turnip NOUN
, PUNCT
mustard NOUN
, PUNCT
kale PROPN
, PUNCT
etc X
... PUNCT
) PUNCT
> X
	 SPACE
o INTJ
little ADJ
seeds NOUN
, PUNCT
like SCONJ
sesame NOUN
( PUNCT
try VERB
getting VERB
an DET
Arby PROPN
's PART
without ADP
it PRON
! PUNCT
) PUNCT
> X
	 SPACE
o INTJ
long ADJ
grain NOUN
and CCONJ
wild ADJ
rice NOUN
( PUNCT
husky PROPN
) PUNCT
> X
	 SPACE
o INTJ
beans NOUN
( PUNCT
you PRON
'll AUX
generate VERB
enough ADJ
gas NOUN
alone ADV
without ADP
them PRON
! PUNCT
) PUNCT
> X
	 SPACE
o INTJ
BASICALLY PROPN
anything PRON
that PRON
requires VERB
heavy ADJ
digestive ADJ
processing NOUN
> X
> X
I PRON
was AUX
told VERB
that SCONJ
the DET
more ADV
processed VERB
the DET
food NOUN
the DET
better ADJ
! PUNCT
( PUNCT
rather ADV
ironic ADJ
in ADP
this DET
> X
day NOUN
and CCONJ
age NOUN
) PUNCT
. PUNCT
  SPACE
The DET
whole ADJ
point NOUN
is AUX
PREVENTATIVE ADJ
... PUNCT
you PRON
want VERB
to PART
give VERB
your PRON
> X
system NOUN
as SCONJ
little ADJ
chance NOUN
to PART
inflame VERB
as SCONJ
possible ADJ
. PUNCT
  SPACE
I PRON
was AUX
told VERB
that SCONJ
among ADP
the DET
> X
NUMEROUS ADJ
things NOUN
that PRON
were AUX
heavily ADV
discouraged VERB
( PUNCT
I PRON
only ADV
listed VERB
a DET
few ADJ
) PUNCT
, PUNCT
to PART
try VERB
> X
the DET
ones NOUN
I PRON
wanted VERB
and CCONJ
see VERB
how ADV
I PRON
felt VERB
. PUNCT
  SPACE
If SCONJ
it PRON
's AUX
bad ADJ
, PUNCT
do AUX
n't PART
do AUX
it PRON
again ADV
! PUNCT
> X
Remember VERB
though SCONJ
that SCONJ
this DET
was AUX
while SCONJ
I PRON
was AUX
in ADP
remission NOUN
. PUNCT
  SPACE
For ADP
Veggies NOUN
: PUNCT
cook VERB
the DET
> X
daylights NOUN
out SCONJ
of ADP
them PRON
. PUNCT
  SPACE
I PRON
prefer VERB
steaming VERB
... PUNCT
I PRON
think VERB
it PRON
's AUX
cooks NOUN
more ADJ
> X
thoroughly ADV
- PUNCT
you PRON
're AUX
mileage NOUN
may AUX
vary VERB
. PUNCT
> X
> X
As SCONJ
with ADP
anything PRON
else ADV
, PUNCT
CHECK VERB
WITH ADP
YOUR PRON
DOCTOR NOUN
. PUNCT
  SPACE
Do AUX
n't PART
just ADV
take VERB
my PRON
word NOUN
. PUNCT
  SPACE
But CCONJ
> X
this DET
is AUX
the DET
info NOUN
I PRON
've AUX
been AUX
given VERB
, PUNCT
and CCONJ
it PRON
may AUX
be AUX
a DET
starting NOUN
point NOUN
for ADP
> NUM
discussion NOUN
. PUNCT
  SPACE
Good ADJ
luck NOUN
! PUNCT
> X
Spencer PROPN
makes VERB
an DET
especially ADV
good ADJ
point NOUN
in ADP
having VERB
an DET
observant ADJ
andinformed ADV
patient ADJ
. PUNCT
  SPACE
Would AUX
that SCONJ
many ADJ
patients NOUN
be AUX
able ADJ
to PART
tell VERB
whatcauses NOUN
them PRON
problems NOUN
. PUNCT
  SPACE
The DET
digestive ADJ
processing NOUN
idea NOUN
is AUX
changing VERB
, PUNCT
butif ADP
a DET
food NOUN
causes VERB
problems NOUN
, PUNCT
avoid VERB
them PRON
. PUNCT
  SPACE
Be AUX
sure ADJ
that SCONJ
the DET
foods NOUN
are AUX
tested VERB
a DET
second ADJ
time NOUN
to PART
be AUX
sure ADJ
the DET
food NOUN
is AUX
a DET
real ADJ
cause NOUN
. PUNCT
  SPACE
Crohn'scommonly ADV
causes VERB
intermittent ADJ
symptoms NOUN
and CCONJ
some DET
patients NOUN
end VERB
up ADP
withseverly ADV
restricted ADJ
diets NOUN
that PRON
take VERB
months NOUN
to PART
renormalize VERB
. PUNCT
There PRON
was AUX
a DET
good ADJ
article NOUN
in ADP
the DET
CCFA PROPN
newsletter NOUN
recently ADV
that SCONJ
discussedthe DET
issue NOUN
of ADP
dietary ADJ
restriction NOUN
of ADP
fiber NOUN
. PUNCT
  SPACE
It PRON
would AUX
be AUX
worth ADJ
readingto NOUN
anyone PRON
with ADP
an DET
interest NOUN
in ADP
Crohn's PROPN
. PUNCT
And CCONJ
, PUNCT
as SCONJ
I PRON
always ADV
say VERB
when ADV
dealing VERB
with ADP
Crohn PROPN
's PART
, PUNCT
as SCONJ
does AUX
Spencer PROPN
, PUNCT
Good PROPN
Luck!Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59203From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
1993Apr22.202051.1@vms.ocom.okstate.edu>,banschbach@vms.ocom.okstate.edu NUM
wrote VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
> X
disease PROPN
. PUNCT
> X
> X
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
> X
without ADP
discomfort PROPN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
> X
John PROPN
Eyles PROPN
> X
> X
All DET
your PRON
friend NOUN
really ADV
has AUX
to PART
do AUX
is AUX
find VERB
a DET
Registered ADJ
Dietician(RD PROPN
) PUNCT
. PUNCT
  SPACE
While SCONJ
> X
most ADJ
work NOUN
in ADP
hospitals NOUN
and CCONJ
clinics NOUN
, PUNCT
many ADJ
major ADJ
cities NOUN
will AUX
have AUX
RD PROPN
's PART
who PRON
> X
are AUX
in ADP
" PUNCT
private ADJ
practice NOUN
" PUNCT
so ADV
to PART
speak VERB
. PUNCT
  SPACE
Many ADJ
physicans NOUN
will AUX
refer VERB
their PRON
> NOUN
patients NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
to ADP
RD PROPN
's PART
for ADP
dietary ADJ
help NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
> X
your PRON
friend NOUN
's PART
physician NOUN
to PART
make VERB
a DET
referral ADJ
, PUNCT
medical ADJ
insurance NOUN
should AUX
pay VERB
for ADP
> X
the DET
RD PROPN
's PART
services NOUN
just ADV
like SCONJ
the DET
services NOUN
of ADP
a DET
physical ADJ
therapist NOUN
. PUNCT
  SPACE
The DET
> X
better ADJ
medical ADJ
insurance NOUN
plans NOUN
will AUX
cover VERB
this DET
but CCONJ
even ADV
if SCONJ
your PRON
friend NOUN
's PART
> X
plan NOUN
does AUX
n't PART
, PUNCT
it PRON
would AUX
be AUX
well ADV
worth ADJ
the DET
cost NOUN
to PART
get AUX
on ADP
a DET
good ADJ
diet NOUN
to ADP
> X
control VERB
the DET
intestinal ADJ
discomfort NOUN
and CCONJ
help VERB
the DET
intestinal ADJ
lining NOUN
heal NOUN
. PUNCT
> X
Crohn PROPN
's PART
disease NOUN
is AUX
an DET
inflammatory ADJ
disease NOUN
of ADP
the DET
intestinal ADJ
lining NOUN
and CCONJ
> X
lipoxygenase NOUN
inhibitors NOUN
may AUX
help VERB
by ADP
decreasing VERB
leukotriene ADJ
formation NOUN
but CCONJ
> X
I PRON
'm AUX
not PART
aware ADJ
of ADP
tea NOUN
or CCONJ
turmeric ADJ
containing VERB
lipoxygenase NOUN
inhibitors NOUN
. PUNCT
  SPACE
For ADP
> X
bad ADJ
inflammation NOUN
, PUNCT
steroids NOUN
are AUX
used VERB
but CCONJ
for ADP
a DET
mild ADJ
case NOUN
, PUNCT
the DET
side NOUN
effects NOUN
> X
are AUX
not PART
worth ADJ
the DET
small ADJ
benefit NOUN
gained VERB
by ADP
steroid NOUN
use NOUN
. PUNCT
  SPACE
Upjohn PROPN
is AUX
developing VERB
> X
a DET
new ADJ
lipoxygenase NOUN
inhibitor NOUN
that PRON
should AUX
greatly ADV
help VERB
deal VERB
with ADP
> X
inflammatory ADJ
diseases NOUN
but CCONJ
it PRON
's AUX
not PART
available ADJ
yet ADV
. PUNCT
> X
> X
Marty PROPN
B. PROPN
Be AUX
sure ADJ
a DET
dietician NOUN
is AUX
up ADP
to ADP
date NOUN
on ADP
Crohn PROPN
's PART
and CCONJ
Ulcerative PROPN
Colitis PROPN
. PUNCT
  SPACE
Previously ADV
, PUNCT
low ADJ
residue ADJ
diets NOUN
were AUX
recommended VERB
, PUNCT
but CCONJ
this DET
advice NOUN
hasnow NOUN
changed VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
there PRON
will AUX
be AUX
differences NOUN
in ADP
advice NOUN
in ADP
patients NOUN
withand VERB
without ADP
obstructuon NOUN
remaining VERB
, PUNCT
so CCONJ
input NOUN
by ADP
the DET
physician NOUN
will AUX
be AUX
important ADJ
. PUNCT
  SPACE
I PRON
find VERB
the DET
dietician ADJ
very ADV
important ADJ
in ADP
my PRON
practice NOUN
, PUNCT
and CCONJ
I PRON
send VERB
most ADJ
of ADP
my PRON
patients NOUN
to ADP
a DET
dietician NOUN
in ADP
the DET
course NOUN
of ADP
seeingthem NOUN
, PUNCT
since SCONJ
dieticians NOUN
know VERB
so ADV
much ADV
better ADJ
how ADV
to PART
get AUX
diet NOUN
historiesand NOUN
evaluate VERB
the DET
contents NOUN
of ADP
a DET
diet NOUN
than SCONJ
I PRON
do AUX
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59204From NUM
: PUNCT
jag@ampex.com PROPN
( PUNCT
Rayaz PROPN
Jagani)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
19609@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
3794@nlsun1.oracle.nl NUM
> X
rgasch@nl.oracle.com NOUN
( PUNCT
Robert PROPN
Gasch PROPN
) PUNCT
writes:>>>>In SYM
many ADJ
European ADJ
countries NOUN
Homepathy PROPN
is AUX
accepted VERB
as SCONJ
a DET
method NOUN
of ADP
curing>>(or PROPN
at ADP
least ADJ
alleiating VERB
) PUNCT
many ADJ
conditions NOUN
to ADP
which PRON
modern ADJ
medicine NOUN
has AUX
> X
> X
no DET
answer NOUN
. PUNCT
In ADP
most ADJ
of ADP
these DET
countries NOUN
insurance NOUN
pays VERB
for ADP
the DET
> X
> X
treatments.>>>>Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
Not PART
by ADP
scientists NOUN
. PUNCT
  SPACE
There PRON
are AUX
people NOUN
> X
in ADP
every DET
country NOUN
who PRON
waste VERB
time NOUN
and CCONJ
money NOUN
on ADP
quackery.>In PROPN
Britain PROPN
and CCONJ
Scandanavia PROPN
, PUNCT
where ADV
I PRON
have AUX
worked VERB
, PUNCT
it PRON
was AUX
not PART
paid VERB
for.>What PUNCT
are AUX
" PUNCT
most ADJ
of ADP
these DET
countries NOUN
? PUNCT
" PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
you.>>When INTJ
were AUX
you PRON
in ADP
Britain PROPN
? PUNCT
, PUNCT
my PRON
information NOUN
is AUX
different ADJ
. PUNCT
From ADP
Miranda PROPN
Castro PROPN
, PUNCT
_ PROPN
The DET
Complete PROPN
Homeopathy PROPN
Handbook_,ISBN PROPN
0 NUM
- SYM
312 NUM
- PUNCT
06320 NUM
- PUNCT
2 NUM
, PUNCT
oringinally ADV
published VERB
in ADP
Britain PROPN
in ADP
1990.From NUM
Page NOUN
10 NUM
, PUNCT
.. PUNCT
and CCONJ
in ADP
1946 NUM
, PUNCT
when ADV
the DET
National PROPN
Health PROPN
Service PROPN
was AUX
established VERB
, PUNCT
homeopathy NOUN
was AUX
included VERB
as SCONJ
an DET
officially ADV
approved VERB
methodof ADJ
treatment NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59205From NUM
: PUNCT
tony@nexus.yorku.ca PROPN
( PUNCT
Anthony PROPN
Wallis)Subject PROPN
: PUNCT
" PUNCT
Choleric PROPN
" PUNCT
and CCONJ
The DET
Great PROPN
NT PROPN
/ SYM
NF PROPN
Semantic PROPN
War.[Cross NOUN
- PUNCT
posted VERB
from ADP
alt.psychology.personality NOUN
since SCONJ
it PRON
talks VERB
about ADP
physician NOUN
's PART
personalities NOUN
. PUNCT
  SPACE
Apologies PROPN
to ADP
sci.med VERB
readers NOUN
not PART
familiar ADJ
with ADP
the DET
Myers PROPN
- PUNCT
Briggs PROPN
" PUNCT
NT PROPN
/ SYM
NF PROPN
" PUNCT
personality NOUN
terms NOUN
. PUNCT
  SPACE
But CCONJ
, PUNCT
in ADP
a DET
word NOUN
or CCONJ
two NUM
, PUNCT
the DET
NTs NOUN
( PUNCT
iNtuitive->Thinkers NOUN
) PUNCT
are AUX
approximately ADV
your PRON
philosophy NOUN
/ SYM
science NOUN
/ SYM
tech NOUN
pragmatic ADJ
types NOUN
, PUNCT
and CCONJ
the DET
NFs PROPN
( PUNCT
iNtuitive PROPN
- PUNCT
Feelers NOUN
) PUNCT
are AUX
your PRON
humanities NOUN
/ SYM
social-"science"/theology NOUN
idealistic ADJ
types NOUN
. PUNCT
  SPACE
They PRON
hate VERB
each DET
others NOUN
' PART
guts NOUN
( PUNCT
:-)) PUNCT
but CCONJ
tend VERB
to PART
inter VERB
- VERB
marry VERB
. PUNCT
The DET
letter NOUN
" PUNCT
J PROPN
" PUNCT
is AUX
a DET
reference NOUN
to ADP
conscienciousness NOUN
/ SYM
decisiveness.]Jon PROPN
Noring PROPN
emits VERB
typical ADJ
NF NOUN
- PUNCT
type NOUN
stuff NOUN
> PUNCT
[ PUNCT
Physicians PROPN
] PUNCT
are AUX
just ADV
responding VERB
in ADP
their PRON
natural ADJ
way NOUN
: PUNCT
> X
Hyper PROPN
- PUNCT
Choleric PROPN
Syndrome PROPN
( PUNCT
HCS PROPN
) PUNCT
. PUNCT
  SPACE
.. PUNCT
> X
.. PUNCT
it PRON
is AUX
fascinating ADJ
that SCONJ
a DET
disproportionate ADJ
number NOUN
of ADP
> X
physicians NOUN
will AUX
type VERB
out ADP
as SCONJ
NT PROPN
.. PUNCT
> X
One NUM
driving VERB
characteristic NOUN
of ADP
an DET
NT PROPN
, PUNCT
especially ADV
an DET
NTJ PROPN
, PUNCT
is AUX
their PRON
obvious ADJ
> X
choleric ADJ
behavior NOUN
( PUNCT
driver NOUN
, PUNCT
type NOUN
A NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
- PUNCT
the DET
extreme ADJ
emotional ADJ
need NOUN
to PART
> X
control NOUN
, PUNCT
to PART
lead VERB
, PUNCT
and/or CCONJ
to PART
be AUX
the DET
best ADJ
or CCONJ
the DET
most ADV
competent ADJ
. PUNCT
.. PUNCT
Please INTJ
get AUX
it PRON
right ADJ
, PUNCT
Jon.(This PROPN
NTJ PROPN
has AUX
a DET
strong ADJ
desire NOUN
to PART
correct VERB
semantic ADJ
mistakes NOUN
, PUNCT
because SCONJ
the DET
NFs NOUN
of ADP
this DET
world NOUN
are AUX
fouling VERB
the DET
once ADV
- PUNCT
pristine ADJ
NT PROPN
intellectual ADJ
nest NOUN
with ADP
their PRON
verbal ADJ
poop.)The ADJ
dominant ADJ
correlation NOUN
is AUX
NT PROPN
< X
- PUNCT
> X
Phlegmatic PROPN
( PUNCT
and CCONJ
_ AUX
not PART
_ VERB
NT PROPN
< X
- PUNCT
> X
Choleric).One PUNCT
of ADP
the DET
semantic ADJ
roots NOUN
of ADP
" PUNCT
choleric ADJ
" PUNCT
is AUX
the DET
idea NOUN
of ADP
" PUNCT
hot ADJ
" PUNCT
( PUNCT
emotional)and X
one NUM
of ADP
the DET
semantic ADJ
roots NOUN
of ADP
" PUNCT
phlegmatic ADJ
" PUNCT
is AUX
" PUNCT
cold ADJ
" PUNCT
( PUNCT
unemotional).Here NOUN
is AUX
a DET
thumbnail NOUN
sketch NOUN
( PUNCT
taken VERB
from ADP
Hans PROPN
Eysenck PROPN
, PUNCT
refering VERB
to ADP
Wundt)relating VERB
the DET
Ancient ADJ
Greek ADJ
quadratic ADJ
typology NOUN
with ADP
modern ADJ
terms:------------------------------------------------------------------------------ PROPN
                                 SPACE
Emotional PROPN
                                        SPACE
^ PROPN
     SPACE
( PUNCT
" PUNCT
Melancholic PROPN
" PUNCT
) PUNCT
                 SPACE
| PROPN
                     SPACE
( PUNCT
" PUNCT
Choleric PROPN
" PUNCT
) PUNCT
                                     SPACE
| ADP
                         SPACE
Thoughtful PROPN
Suspicious PROPN
     SPACE
| PROPN
    SPACE
Quickly ADV
- PUNCT
aroused VERB
Hotheaded PROPN
                  SPACE
Unhappy PROPN
Worried PROPN
    SPACE
| CCONJ
   SPACE
Egocentric PROPN
Histrionic PROPN
                           SPACE
Anxious ADJ
   SPACE
| PROPN
  SPACE
Exhibitonist PROPN
                              SPACE
Serious PROPN
| PROPN
Active PROPN
            SPACE
Unchangeable ADJ
< X
------------------------------------------------ PUNCT
> X
Changeable PROPN
                                SPACE
Calm PROPN
| PROPN
Playful PROPN
                                   SPACE
Reasonable PROPN
  SPACE
| ADP
  SPACE
Carefree PROPN
              SPACE
Steadfast PROPN
Persistent PROPN
   SPACE
| ADP
   SPACE
Hopeful ADJ
Sociable ADJ
     SPACE
Highly ADV
- PUNCT
principled VERB
Controlled VERB
    SPACE
| CCONJ
    SPACE
Controlled VERB
Easy PROPN
- PUNCT
going VERB
                                     SPACE
| PROPN
                  SPACE
( PUNCT
" PUNCT
Phlegmatic PROPN
" PUNCT
) PUNCT
                   SPACE
| PROPN
                     SPACE
( PUNCT
" PUNCT
Sanguine PROPN
" PUNCT
) PUNCT
                                     SPACE
| PROPN
                                     SPACE
v ADP
                               SPACE
Non PROPN
- ADJ
emotional------------------------------------------------------------------------------I ADJ
suspect NOUN
that SCONJ
your PRON
characterisation NOUN
of ADP
NTs NOUN
as SCONJ
" PUNCT
choleric ADJ
" PUNCT
is AUX
whatyou PROPN
psych NOUN
- PUNCT
types NOUN
call VERB
a DET
" PUNCT
projection NOUN
" PUNCT
of ADP
your PRON
own ADJ
NF NOUN
- PUNCT
ness NOUN
onto ADP
us PRON
. PUNCT
> X
Maybe ADV
we PRON
need VERB
more ADJ
NF PROPN
doctor NOUN
's PART
. PUNCT
  SPACE
: PUNCT
^)Perhaps PUNCT
in ADP
serious ADJ
pediatics NOUN
and CCONJ
" PUNCT
my PRON
little ADJ
boy NOUN
's AUX
got VERB
a DET
runnynose ADJ
, PUNCT
doctor NOUN
" PUNCT
general ADJ
practice NOUN
, PUNCT
but CCONJ
, PUNCT
please INTJ
God PROPN
, PUNCT
not PART
in ADP
neurology NOUN
, PUNCT
opthamology PROPN
, PUNCT
urology NOUN
, PUNCT
etc X
. PUNCT
etc X
. PUNCT
  SPACE
And CCONJ
NF PROPN
- PUNCT
psychiatry NOUN
should AUX
seperatefrom VERB
NT-(i.e ADJ
. PUNCT
real ADJ
) PUNCT
psychiatry NOUN
and CCONJ
be AUX
given VERB
a DET
new ADJ
name NOUN
.. PUNCT
something PRON
like SCONJ
" PUNCT
channeling VERB
" PUNCT
  SPACE
: PUNCT
-).--tony@nexus.yorku.ca CCONJ
= PUNCT
Tony PROPN
Wallis PROPN
, PUNCT
York PROPN
University PROPN
, PUNCT
Toronto PROPN
, PUNCT
CanadaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59206From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
dpc47852@uxa.cso.uiuc.edu PROPN
( PUNCT
Daniel PROPN
Paul PROPN
Checkman PROPN
) PUNCT
writes:>bruce@Data PROPN
- PUNCT
IO.COM PROPN
( PUNCT
Bruce PROPN
Reynolds PROPN
) PUNCT
writes:>>>Anecedotal ADJ
evidence NOUN
is AUX
worthless ADJ
. PUNCT
  SPACE
Even ADV
doctors NOUN
who PRON
have AUX
been AUX
using VERB
a DET
drug>>or NOUN
treatment NOUN
for ADP
years NOUN
, PUNCT
and CCONJ
who PRON
swear VERB
it PRON
is AUX
effective ADJ
, PUNCT
are AUX
often ADV
suprised>>at VERB
the DET
results NOUN
of ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
MSG PROPN
causes NOUN
describable,>>reportable ADJ
, PUNCT
documentable ADJ
symptoms NOUN
should AUX
be AUX
pretty ADV
simple ADJ
to PART
discover VERB
. PUNCT
  SPACE
But CCONJ
it PRON
is AUX
quite DET
a DET
leap NOUN
in ADP
logic NOUN
to PART
observe VERB
one NUM
situation NOUN
where ADV
anecdotalevidence NOUN
led VERB
nowhere ADV
and CCONJ
therefore ADV
conclude VERB
that SCONJ
anecdotal ADJ
evidence NOUN
willNEVER PUNCT
lead NOUN
anywhere ADV
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
somebody PRON
here ADV
can AUX
provide VERB
an DET
example NOUN
whereanecdotal ADJ
evidence NOUN
( PUNCT
and CCONJ
the DET
interpretation NOUN
of ADP
it PRON
) PUNCT
was AUX
upheld VERB
/ SYM
verified VERB
byfollow NOUN
- PUNCT
on ADP
rigorous ADJ
clinical ADJ
trials.>I NOUN
tend VERB
to PART
disagree- VERB
I PRON
think VERB
anecdotal ADJ
evidence NOUN
, PUNCT
provided VERB
there PRON
is AUX
a DET
lot NOUN
of ADP
it,>and NOUN
it PRON
is AUX
fairly ADV
consistent ADJ
, PUNCT
will AUX
is AUX
very ADV
important ADJ
. PUNCT
  SPACE
First ADV
, PUNCT
it PRON
points VERB
to ADP
the DET
> X
necessity NOUN
of ADP
doing VERB
a DET
study NOUN
, PUNCT
and CCONJ
second ADV
, PUNCT
it PRON
at ADP
least ADJ
says VERB
that SCONJ
the DET
effects NOUN
are AUX
> X
all DET
psychological ADJ
( PUNCT
or CCONJ
possibly ADV
allergy VERB
in ADP
this DET
case NOUN
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
've AUX
pointed VERB
out ADP
> X
person NOUN
's PART
" PUNCT
make NOUN
- PUNCT
believe VERB
" PUNCT
can AUX
easily ADV
be AUX
another DET
person NOUN
's PART
reality NOUN
... PUNCT
Good ADJ
point NOUN
. PUNCT
  SPACE
There PRON
has AUX
been AUX
a DET
tendency NOUN
by ADP
some DET
on ADP
this DET
newsgroup NOUN
to ADP
" PUNCT
circlethe NOUN
wagons NOUN
" PUNCT
to ADP
the DET
viewpoint NOUN
that SCONJ
anecdotal ADJ
medical ADJ
evidence NOUN
is AUX
worthless(maybe ADJ
to PART
counter VERB
the DET
claims NOUN
of ADP
those DET
who PRON
are AUX
presenting VERB
anecdotal ADJ
evidenceto ADJ
support VERB
controversial ADJ
subjects NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
hypothesis NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Butevidence PROPN
is AUX
evidence NOUN
- PUNCT
it PRON
requires VERB
a DET
" PUNCT
jury NOUN
" PUNCT
or CCONJ
a DET
process NOUN
to PART
sort VERB
it PRON
out ADP
anddetermine VERB
the DET
truth NOUN
from ADP
the DET
junk NOUN
. PUNCT
  SPACE
Medicine PROPN
must AUX
continue VERB
to PART
strive VERB
to PART
betterunderstand VERB
the DET
workings NOUN
of ADP
the DET
body NOUN
/ SYM
mind NOUN
for ADP
the DET
purpose NOUN
of ADP
alleviatingillness ADJ
- PUNCT
anecdotal ADJ
evidence NOUN
is AUX
just ADV
one NUM
piece NOUN
of ADP
the DET
puzzle NOUN
; PUNCT
  SPACE
it PRON
is AUX
notworthless NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
it PRON
can AUX
help VERB
focus VERB
limited ADJ
resources NOUN
in ADP
the DET
right ADJ
direction NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59207From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject X
: PUNCT
How ADV
To PART
Prevent VERB
Kidney PROPN
Stone PROPN
FormationI PROPN
got VERB
asked VERB
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
about ADP
vitamin NOUN
C NOUN
and CCONJ
oxalate VERB
production(toxic PROPN
, PUNCT
kidney NOUN
stone NOUN
formation NOUN
? PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
decided VERB
to PART
post VERB
my PRON
answer NOUN
here ADV
as ADV
well ADV
because SCONJ
of ADP
the DET
recent ADJ
question NOUN
about ADP
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Not PART
long ADV
after ADP
I PRON
got VERB
into ADP
Sci PROPN
. PUNCT
Med INTJ
. PUNCT
I PRON
got VERB
flamed VERB
by ADP
a DET
medical ADJ
fellow NOUN
for ADP
stating VERB
that SCONJ
magnesium NOUN
would AUX
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
. PUNCT
  SPACE
I PRON
'm AUX
going VERB
to PART
state VERB
it PRON
again ADV
here ADV
. PUNCT
But CCONJ
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
from ADP
forming VERB
is AUX
to PART
take VERB
B6 PROPN
supplements NOUN
. PUNCT
  SPACE
Read VERB
on ADP
to PART
find VERB
out ADP
why(I PROPN
have AUX
my PRON
asbestos NOUN
suit NOUN
on ADP
now ADV
guys).Vitamin PROPN
C PROPN
will AUX
form VERB
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
But CCONJ
large ADJ
doses NOUN
are AUX
needed VERB
( PUNCT
above ADP
6 NUM
grams NOUN
per ADP
day NOUN
) PUNCT
. PUNCT
	 SPACE
1 NUM
. PUNCT
Review NOUN
Article PROPN
" PUNCT
Nutritional ADJ
factors NOUN
in ADP
calcium NOUN
containing VERB
kidney NOUN
	    SPACE
stones NOUN
with ADP
particular ADJ
emphasis NOUN
on ADP
Vitamin PROPN
C PROPN
" PUNCT
Int PROPN
. PUNCT
Clin PROPN
. PUNCT
Nutr PROPN
. PUNCT
Rev. PROPN
	    SPACE
5(3):110 NUM
- SYM
129(1985).But NUM
glycine NOUN
also ADV
forms VERB
oxalic ADJ
acid(D PROPN
- PUNCT
amino NOUN
acid NOUN
oxidases NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
both CCONJ
glycine ADJ
and CCONJ
vitamin NOUN
C NOUN
, PUNCT
one NUM
of ADP
the DET
best ADJ
ways NOUN
to PART
drastically ADV
reduce VERB
this DET
production NOUN
is AUX
not PART
to PART
cut VERB
back ADP
on ADP
dietary ADJ
intake NOUN
of ADP
vitamin NOUN
C NOUN
or CCONJ
glycine NOUN
, PUNCT
but CCONJ
to PART
increase VERB
your PRON
intake NOUN
of ADP
vitamin NOUN
B6 NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
" PUNCT
Control NOUN
of ADP
hyperoxaluria NOUN
with ADP
large ADJ
doses NOUN
of ADP
pyridoxine NOUN
in ADP
	     SPACE
patients NOUN
with ADP
kidney NOUN
stones NOUN
" PUNCT
Int PROPN
. PUNCT
Urol PROPN
. PUNCT
Nephrol PROPN
. PUNCT
20(4):353 NUM
- PUNCT
59(1988 PROPN
) PUNCT
	     SPACE
200 NUM
to PART
500 NUM
mg NOUN
of ADP
B6 PROPN
each DET
day NOUN
significasntly ADV
decreased VERB
the DET
urinary PROPN
	     SPACE
excretion NOUN
of ADP
oxalate NOUN
over ADP
the DET
18 NUM
month NOUN
treatment NOUN
program NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
The DET
action NOUN
of ADP
pyridoxine NOUN
in ADP
primary ADJ
hyperoxaluria NOUN
" PUNCT
Clin PROPN
. PUNCT
Sci PROPN
. PROPN
38 NUM
	    SPACE
: PUNCT
277 NUM
- PUNCT
86(1970 PROPN
) PUNCT
. PUNCT
  SPACE
Patients NOUN
receiving VERB
at ADP
least ADJ
150 NUM
mg NOUN
B6 PROPN
each DET
day NOUN
	    SPACE
showed VERB
a DET
significant ADJ
reduction NOUN
in ADP
urinary ADJ
oxalate NOUN
levels NOUN
. PUNCT
For ADP
gylcine NOUN
, PUNCT
this DET
effect NOUN
is AUX
due ADJ
to ADP
increased VERB
transaminase NOUN
activity(B6 NOUN
is AUX
required VERB
for ADP
transaminase NOUN
activity NOUN
) PUNCT
which PRON
makes VERB
less ADJ
glycine ADJ
available ADJ
for ADP
oxidative ADJ
deamination(D NOUN
- ADJ
amino ADJ
acid NOUN
oxidases NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
vitamin NOUN
C NOUN
, PUNCT
the DET
effect NOUN
is AUX
quite ADV
different ADJ
. PUNCT
  SPACE
There PRON
are AUX
different ADJ
pathways NOUN
for ADP
vitamin NOUN
C NOUN
catabolism NOUN
. PUNCT
  SPACE
The DET
pathway NOUN
that PRON
leads VERB
to ADP
oxalic ADJ
acid NOUN
formation NOUN
will AUX
usually ADV
have AUX
17 NUM
to PART
40 NUM
% NOUN
of ADP
the DET
ingested ADJ
dose NOUN
going VERB
into ADP
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
But CCONJ
this DET
is AUX
highly ADV
variable ADJ
and CCONJ
the DET
vitamin NOUN
C NOUN
review NOUN
article NOUN
pointed VERB
out ADP
that SCONJ
unless SCONJ
the DET
dose NOUN
gets VERB
upto ADJ
6 NUM
grams NOUN
per ADP
day NOUN
, PUNCT
not PART
too ADV
much ADJ
vitamin NOUN
C NOUN
gets VERB
catabolized VERB
to PART
form VERB
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
At ADP
very ADV
high ADJ
doses NOUN
of ADP
vitamin NOUN
C(above NOUN
10 NUM
grams NOUN
per ADP
day NOUN
) PUNCT
, PUNCT
more ADJ
of ADP
the DET
extra ADJ
vitamin NOUN
C NOUN
( PUNCT
more ADJ
than SCONJ
40 NUM
% NOUN
conversion NOUN
) PUNCT
can AUX
end VERB
up ADP
as SCONJ
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
In ADP
a DET
very ADV
early ADJ
study NOUN
on ADP
vitamin NOUN
C NOUN
and CCONJ
oxalic NOUN
production(Proc PROPN
. PUNCT
Soc VERB
. PUNCT
Exp PROPN
. PUNCT
Biol PROPN
. PUNCT
Med PROPN
. PUNCT
85:190 NUM
- PUNCT
92(1954 PROPN
) PUNCT
, PUNCT
intakes NOUN
of ADP
2 NUM
grams NOUN
per ADP
day NOUN
up ADP
to ADP
9 NUM
grams NOUN
per ADP
day NOUN
increased VERB
the DET
average ADJ
oxalic ADJ
acid NOUN
excretion NOUN
from ADP
38 NUM
mg NOUN
per ADP
day NOUN
up ADP
to ADP
178 NUM
mg NOUN
per ADP
day NOUN
. PUNCT
  SPACE
Until ADP
8 NUM
grams NOUN
per ADP
day NOUN
was AUX
reached VERB
, PUNCT
the DET
average ADJ
excreted PROPN
was AUX
increased VERB
by ADP
only ADV
3 NUM
to PART
12 NUM
mg NOUN
per ADP
day(2 PROPN
gram PROPN
dose PROPN
, PUNCT
4 NUM
gram PROPN
dose PROPN
, PUNCT
8 NUM
gram NOUN
dose PROPN
and CCONJ
9gram PROPN
dose PROPN
) PUNCT
. PUNCT
8 NUM
grams NOUN
jumped VERB
it PRON
to ADP
45 NUM
mg NOUN
over ADP
the DET
average ADJ
excretion NOUN
before ADP
supplementation NOUN
and CCONJ
9 NUM
grams NOUN
jumped VERB
it PRON
to ADP
150 NUM
mg NOUN
over ADP
the DET
average NOUN
before ADP
supplementation NOUN
. PUNCT
B6 PROPN
is AUX
required VERB
by ADP
more ADJ
enzymes NOUN
than SCONJ
any DET
other ADJ
vitamin NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
There PRON
are AUX
probably ADV
some DET
enzymes NOUN
that PRON
require VERB
vitamin NOUN
B6 NOUN
that PRON
we PRON
do AUX
n't PART
know VERB
about ADP
yet ADV
. PUNCT
  SPACE
Vitamin NOUN
C NOUN
catabolism NOUN
is AUX
still ADV
not PART
completely ADV
understood VERB
but CCONJ
the DET
speculation NOUN
is AUX
that SCONJ
this DET
other ADJ
pathway NOUN
that PRON
does AUX
not PART
form VERB
oxalic ADJ
acid NOUN
must AUX
have AUX
an DET
enzyme NOUN
in ADP
it PRON
that PRON
requires VERB
B6 PROPN
. PUNCT
  SPACE
Differences NOUN
in ADP
B6 PROPN
levels NOUN
could AUX
then ADV
explain VERB
the DET
very ADV
variable ADJ
production NOUN
of ADP
oxalic ADJ
acid NOUN
from ADP
a DET
vitamin NOUN
C NOUN
challenge(this PROPN
is AUX
not PART
the DET
preferred ADJ
route NOUN
of ADP
catabolism NOUN
) PUNCT
. PUNCT
  SPACE
Increasing VERB
your PRON
intake NOUN
of ADP
B6 PROPN
would AUX
then ADV
result VERB
in ADP
less ADJ
oxalic ADJ
acid NOUN
being AUX
formmed VERB
if SCONJ
you PRON
take VERB
vitamin NOUN
C NOUN
supplements NOUN
. PUNCT
  SPACE
Since SCONJ
the DET
typical ADJ
American ADJ
diet NOUN
is AUX
deficient ADJ
in ADP
B6 PROPN
, PUNCT
some DET
researchers NOUN
believe VERB
that SCONJ
the DET
main ADJ
cause NOUN
of ADP
calcium NOUN
- PUNCT
oxalate NOUN
kidney NOUN
stones NOUN
is AUX
B6 PROPN
deficiency(especially ADV
since SCONJ
so ADV
little ADJ
oxalic ADJ
acid NOUN
gets VERB
absorbed VERB
from ADP
the DET
gut NOUN
) PUNCT
. PUNCT
  SPACE
Diets NOUN
providing VERB
0 NUM
to ADP
130 NUM
mg NOUN
of ADP
oxalic ADJ
acid NOUN
per ADP
day NOUN
showed VERB
absolutely ADV
no DET
change NOUN
in ADP
urinary ADJ
excretion NOUN
of ADP
oxalate(Urol PROPN
Int.35:309 NUM
- PUNCT
15,1980 NUM
) PUNCT
. PUNCT
  SPACE
If SCONJ
400 NUM
mg NOUN
was AUX
present ADJ
each DET
day NOUN
, PUNCT
there PRON
was AUX
a DET
significant ADJ
increase NOUN
in ADP
urinary ADJ
oxalate PROPN
excretion NOUN
. PUNCT
	 SPACE
Here ADV
are AUX
the DET
high ADJ
oxalate NOUN
foods NOUN
: PUNCT
	 SPACE
1 NUM
. PUNCT
Beans NOUN
, PUNCT
coca NOUN
, PUNCT
instant ADJ
coffee NOUN
, PUNCT
parsley NOUN
, PUNCT
rhubarb NOUN
, PUNCT
spinach NOUN
and CCONJ
tea NOUN
. PUNCT
	    SPACE
Contain PROPN
at ADP
least ADJ
25mg/100grams NUM
	 SPACE
2 NUM
. PUNCT
Beet NOUN
tops NOUN
, PUNCT
carrots NOUN
, PUNCT
celery NOUN
, PUNCT
chocolate NOUN
, PUNCT
cumber PROPN
, PUNCT
grapefruit NOUN
, PUNCT
kale PROPN
, PUNCT
	    SPACE
peanuts NOUN
, PUNCT
pepper NOUN
, PUNCT
sweet PROPN
potatoe NOUN
. PUNCT
	    SPACE
Contain PROPN
10 NUM
to PART
25 NUM
mg/100grams NUM
. PUNCT
If SCONJ
the DET
threshold NOUN
is AUX
130 NUM
mg NOUN
per ADP
day NOUN
, PUNCT
you PRON
can AUX
see VERB
that SCONJ
you PRON
really ADV
have AUX
a DET
lot NOUN
of ADP
latitude NOUN
in ADP
food NOUN
selection NOUN
. PUNCT
  SPACE
A DET
recent ADJ
N.Eng PROPN
. PUNCT
J. PROPN
Med PROPN
. PUNCT
article NOUN
also ADV
points VERB
out ADP
that SCONJ
one NUM
good ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
is AUX
to PART
increase VERB
your PRON
intake NOUN
of ADP
calcium NOUN
which PRON
will AUX
prevent VERB
most ADJ
of ADP
the DET
dietary ADJ
oxalate NOUN
from ADP
being AUX
absorbed VERB
at ADV
all ADV
. PUNCT
  SPACE
If SCONJ
you PRON
also ADV
increase VERB
your PRON
intake NOUN
of ADP
B6 PROPN
, PUNCT
you PRON
should AUX
n't PART
have AUX
to PART
worry VERB
about ADP
kidney NOUN
stones NOUN
at ADV
all ADV
. PUNCT
The DET
RDA PROPN
for ADP
B6 PROPN
is AUX
2 NUM
mg NOUN
per ADP
day NOUN
for ADP
males NOUN
and CCONJ
1.6 NUM
mg NOUN
per ADP
day NOUN
for ADP
females(directly ADV
related VERB
to ADP
protein NOUN
intake).B6 NOUN
can AUX
be AUX
toxic(nerve VERB
damage NOUN
) PUNCT
if SCONJ
it PRON
is AUX
consumed VERB
in ADP
doses NOUN
of ADP
500 NUM
mg NOUN
or CCONJ
more ADJ
per ADP
day NOUN
for ADP
an DET
extended ADJ
peroid(weeks NOUN
to ADP
months NOUN
) PUNCT
. PUNCT
  SPACE
The DET
USDA PROPN
food NOUN
survey NOUN
done VERB
in ADP
1986 NUM
had AUX
an DET
average ADJ
intake NOUN
of ADP
1.87 NUM
mg NOUN
per ADP
day NOUN
for ADP
males NOUN
and CCONJ
1.16 NUM
mg NOUN
per ADP
day NOUN
for ADP
females NOUN
living VERB
in ADP
the DET
U.S. PROPN
  SPACE
Coupled VERB
with ADP
this DET
low ADJ
intake NOUN
was AUX
a DET
high ADJ
protein NOUN
diet(which PROPN
greatly ADV
increases VERB
the DET
B6 PROPN
requirement NOUN
) PUNCT
, PUNCT
as ADV
well ADV
as SCONJ
the DET
presence NOUN
of ADP
some DET
of ADP
the DET
40 NUM
different ADJ
drugs NOUN
that PRON
either CCONJ
block VERB
B6 PROPN
absorption NOUN
, PUNCT
are AUX
metabolic ADJ
antagonists NOUN
of ADP
B6 PROPN
, PUNCT
or CCONJ
promote VERB
B6 PROPN
excretion NOUN
in ADP
the DET
urine NOUN
. PUNCT
  SPACE
Common ADJ
ones NOUN
are AUX
: PUNCT
birth NOUN
control NOUN
pills NOUN
, PUNCT
alcohol NOUN
, PUNCT
isoniazid PROPN
, PUNCT
penicillamine PROPN
, PUNCT
and CCONJ
corticosteroids NOUN
. PUNCT
  SPACE
I PRON
tell VERB
my PRON
students NOUN
to PART
supplement VERB
all DET
their PRON
patients NOUN
that PRON
are AUX
going VERB
to PART
get AUX
any DET
of ADP
the DET
drugs NOUN
that PRON
increase VERB
the DET
B6 PROPN
requirement NOUN
. PUNCT
  SPACE
The DET
dose NOUN
recommended VERB
for ADP
patients NOUN
taking VERB
birth NOUN
control NOUN
pills NOUN
is AUX
10 NUM
- SYM
15 NUM
mg NOUN
per ADP
day NOUN
and CCONJ
this DET
should AUX
work VERB
for ADP
most ADJ
of ADP
the DET
other ADJ
drugs NOUN
that PRON
increase VERB
the DET
B6 PROPN
requirement(this PROPN
would AUX
be AUX
on ADP
top NOUN
of ADP
your PRON
dietary ADJ
intake NOUN
of ADP
B6 PROPN
) PUNCT
. PUNCT
  SPACE
Any DET
patient NOUN
that PRON
has AUX
a DET
history NOUN
of ADP
kidney NOUN
stone NOUN
formation NOUN
should AUX
be AUX
given VERB
B6 PROPN
supplements NOUN
. PUNCT
One NUM
other ADJ
good ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
is AUX
to PART
make VERB
sure ADJ
your PRON
Ca NOUN
/ SYM
Mg PROPN
dietary ADJ
ratio NOUN
is AUX
2/1 NUM
. PUNCT
  SPACE
Magnesium PROPN
- PUNCT
oxalate PROPN
is AUX
much ADV
more ADV
soluble ADJ
than SCONJ
is AUX
calcium NOUN
- PUNCT
oxalate NOUN
. PUNCT
	 SPACE
4 NUM
. PUNCT
" PUNCT
The DET
magnesium NOUN
: PUNCT
calcium NOUN
ratio NOUN
in ADP
the DET
concentrated ADJ
urines NOUN
of ADP
patients NOUN
with ADP
calcium NOUN
oxalate NOUN
calculi"Invest NOUN
. PUNCT
Urol PROPN
10:147(1972 PROPN
) PUNCT
	 SPACE
5 NUM
. PUNCT
" PUNCT
Effect NOUN
of ADP
magnesium NOUN
citrate NOUN
and CCONJ
magnesium ADJ
oxide NOUN
on ADP
the DET
crystallization NOUN
of ADP
calcium NOUN
in ADP
urine NOUN
: PUNCT
changes NOUN
producted VERB
by ADP
food NOUN
- PUNCT
magnesium NOUN
interaction"J. PROPN
Urol PROPN
. PUNCT
143(2):248 PROPN
- PUNCT
51(1990 PROPN
) PUNCT
. PUNCT
	 SPACE
6.Review NUM
Article NOUN
, PUNCT
" PUNCT
Magnesium PROPN
in ADP
the DET
physiopathology NOUN
and CCONJ
treatment NOUN
of ADP
renal ADJ
calcium NOUN
stones NOUN
" PUNCT
J. PROPN
Presse PROPN
Med PROPN
. PUNCT
161(1):25 NUM
- SYM
27(1987).There PROPN
are AUX
actually ADV
about ADV
three NUM
times NOUN
as SCONJ
many ADJ
articles NOUN
published VERB
in ADP
the DET
medical ADJ
literature NOUN
on ADP
the DET
role NOUN
of ADP
magnesium NOUN
in ADP
preventing VERB
kidney NOUN
stone NOUN
formation NOUN
than SCONJ
there PRON
are AUX
for ADP
B6 PROPN
. PUNCT
  SPACE
I PRON
thought VERB
that SCONJ
I PRON
was AUX
being AUX
pretty ADV
safe ADJ
in ADP
stating VERB
that SCONJ
magnesium NOUN
would AUX
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
in ADP
an DET
earlier ADJ
post NOUN
in ADP
this DET
news NOUN
group NOUN
but CCONJ
good ADJ
old ADJ
John PROPN
A. PROPN
in ADP
Mass. PROPN
jumped VERB
all ADV
over ADP
me PRON
. PUNCT
I PRON
guess VERB
that SCONJ
he PRON
does AUX
n't PART
read VERB
the DET
medical ADJ
literature NOUN
. PUNCT
  SPACE
Oh INTJ
well INTJ
, PUNCT
since SCONJ
kidney NOUN
stones NOUN
can AUX
be AUX
a DET
real ADJ
pain NOUN
and CCONJ
a DET
lot NOUN
of ADP
people NOUN
suffer VERB
from ADP
them PRON
, PUNCT
I PRON
thought VERB
I PRON
'd AUX
tell VERB
you PRON
how ADV
you PRON
can AUX
avoid VERB
the DET
pain NOUN
and CCONJ
stay VERB
out SCONJ
of ADP
the DET
doctor NOUN
's PART
office NOUN
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine1111 PROPN
W. PROPN
17th NOUN
StreetTulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107"Without NUM
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance NOUN
" PUNCT
. PUNCT
  SPACE
From ADP
a DET
wise ADJ
man NOUN
who PRON
lived VERB
in ADP
China PROPN
, PUNCT
many ADJ
, PUNCT
many ADJ
years NOUN
ago ADV
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
it PRON
still ADV
has AUX
meaning NOUN
in ADP
today NOUN
's PART
world NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59208From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn NOUN
article NOUN
< X
1r8pcn$rm1@terminator.rs.itd.umich.edu NUM
> X
Donald_Mackie@med.umich.edu PROPN
( PUNCT
Donald PROPN
Mackie PROPN
) PUNCT
writes::In PROPN
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff,:tron@fafnir.la.locus.com PROPN
writes::>Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an:>authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that:>is NOUN
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki?::I'm ADJ
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
of ADP
: PUNCT
the DET
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-):The PROPN
only ADV
recipies NOUN
I PRON
've AUX
ever ADV
seen VERB
for ADP
this DET
include VERB
plain ADJ
yogurt PROPN
, PUNCT
finelychopped VERB
cucumber NOUN
and CCONJ
a DET
couple NOUN
of ADP
crushed VERB
cloves NOUN
of ADP
garlic NOUN
-- PUNCT
yummy.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59209From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)In PROPN
article NOUN
< X
noringC5wzM4.41n@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
Hate VERB
to PART
wreck VERB
your PRON
elaborate ADJ
theory NOUN
, PUNCT
but CCONJ
Steve PROPN
Dyer PROPN
is AUX
not PART
an DET
MD.So NUM
professional ADJ
jealosy NOUN
over ADP
doctors NOUN
who PRON
help VERB
their PRON
patients NOUN
withNystatin NOUN
, PUNCT
etc X
. PROPN
, PUNCT
ca AUX
n't PART
very ADV
well ADV
come VERB
into ADP
the DET
picture NOUN
. PUNCT
  SPACE
Stevedoesn't PROPN
have AUX
any DET
patients.>response NOUN
to PART
specificially ADV
Candida PROPN
albicans NOUN
, PUNCT
and CCONJ
I PRON
showed VERB
a DET
strong ADJ
positive.>Another NOUN
question NOUN
, PUNCT
would AUX
everybody PRON
show VERB
the DET
same ADJ
strong ADJ
positive ADJ
so SCONJ
this DET
test NOUN
> X
is AUX
essentially ADV
useless ADJ
? PUNCT
  SPACE
And CCONJ
, PUNCT
assuming VERB
it PRON
is AUX
true ADJ
that SCONJ
Candida PROPN
can AUX
growYes VERB
, PUNCT
everyone PRON
who PRON
is AUX
normal ADJ
does AUX
that DET
. PUNCT
  SPACE
We PRON
use VERB
candida PROPN
on ADP
the DET
other ADJ
armwhen NOUN
we PRON
put VERB
a DET
tuberculin ADJ
test NOUN
on ADP
. PUNCT
  SPACE
If SCONJ
people NOUN
do AUX
n't PART
react VERB
to ADP
candida PROPN
, PUNCT
we PRON
assume VERB
the DET
TB PROPN
test NOUN
was AUX
not PART
conclusive ADJ
since SCONJ
such ADJ
people NOUN
may AUX
notreact VERB
to ADP
anything PRON
. PUNCT
  SPACE
All DET
normal ADJ
people NOUN
have AUX
antibodies NOUN
to ADP
candida PROPN
. PUNCT
If SCONJ
not PART
, PUNCT
you PRON
would AUX
quickly ADV
turn VERB
into ADP
a DET
fungus X
ball.>This INTJ
brings VERB
up ADP
an DET
interesting ADJ
observation NOUN
used VERB
by ADP
those DET
who PRON
will AUX
deny VERB
> X
and CCONJ
reject VERB
any DET
and CCONJ
all DET
aspects NOUN
of ADP
the DET
' PUNCT
yeast NOUN
hypothesis NOUN
' PUNCT
until ADP
the DET
> X
appropriate ADJ
studies NOUN
are AUX
done VERB
. PUNCT
  SPACE
And CCONJ
that DET
is AUX
if SCONJ
you PRON
ca AUX
n't PART
observe VERB
or CCONJ
culture VERB
> X
the DET
yeast NOUN
" PUNCT
bloom NOUN
" PUNCT
in ADP
the DET
gut NOUN
or CCONJ
sinus NOUN
, PUNCT
then ADV
there PRON
's AUX
no DET
way NOUN
to PART
diagnose VERB
or CCONJ
> X
even ADV
recognize VERB
the DET
disease NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
they PRON
realize VERB
that SCONJ
it PRON
is AUX
virtually ADV
> X
impossible ADJ
to PART
test VERB
for ADP
candida PROPN
overbloom PROPN
in ADP
any DET
part NOUN
of ADP
the DET
body NOUN
that PRON
cannot VERB
> X
be AUX
easily ADV
observed VERB
since SCONJ
candida PROPN
is AUX
everywhere ADV
in ADP
the DET
body.>>It NOUN
's AUX
a DET
real ADJ
Catch-22.>You've NOUN
just ADV
discovered VERB
one NUM
of ADP
the DET
requirements NOUN
for ADP
a DET
good ADJ
quack NOUN
theory NOUN
. PUNCT
Find VERB
something PRON
that PRON
no DET
one NOUN
can AUX
* PUNCT
disprove VERB
* PUNCT
and CCONJ
then ADV
write VERB
a DET
book NOUN
sayingit NOUN
is AUX
the DET
cause NOUN
of ADP
whatever PRON
. PUNCT
  SPACE
Since SCONJ
no DET
one NOUN
can AUX
disprove VERB
it PRON
, PUNCT
you PRON
canrake VERB
in ADP
the DET
bucks NOUN
for ADP
quite DET
some DET
time NOUN
. PUNCT
  SPACE
> X
> X
... PUNCT
I PRON
have AUX
often ADV
wondered VERB
what PRON
an DET
M.D. PROPN
with ADP
chronic NOUN
> X
> X
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
would AUX
do AUX
about ADP
the DET
problem NOUN
that PRON
he PRON
tells VERB
his PRON
> X
> X
patients NOUN
is AUX
a DET
non ADJ
- ADJ
existent ADJ
syndrome.>That PROPN
is AUX
odd ADJ
, PUNCT
is AUX
n't PART
it PRON
? PUNCT
  SPACE
Why ADV
do AUX
you PRON
suppose VERB
it PRON
is AUX
that SCONJ
MDs NOUN
with ADP
thesecommon ADJ
problems NOUN
do AUX
n't PART
go VERB
for ADP
these DET
crazy ADJ
ideas NOUN
? PUNCT
  SPACE
Does AUX
the DET
" PUNCT
professionaljealosy NOUN
" PUNCT
extend VERB
to ADP
suffering VERB
in ADP
silence NOUN
, PUNCT
even ADV
though SCONJ
they PRON
know VERB
theycould AUX
be AUX
cured VERB
if SCONJ
they PRON
just ADV
followed VERB
this DET
quack NOUN
book?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59210From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
C5qMJJ.yB@ampex.com PROPN
> X
jag@ampex.com NOUN
( PUNCT
Rayaz PROPN
Jagani PROPN
) PUNCT
writes:>>From PROPN
Miranda PROPN
Castro PROPN
, PUNCT
_ PROPN
The DET
Complete PROPN
Homeopathy PROPN
Handbook_,>ISBN NUM
0 NUM
- SYM
312 NUM
- PUNCT
06320 NUM
- PUNCT
2 NUM
, PUNCT
oringinally ADV
published VERB
in ADP
Britain PROPN
in ADP
1990.>>From PROPN
Page PROPN
10 NUM
, PUNCT
> X
.. PUNCT
and CCONJ
in ADP
1946 NUM
, PUNCT
when ADV
the DET
National PROPN
Health PROPN
Service PROPN
was AUX
established,>homeopathy PROPN
was AUX
included VERB
as SCONJ
an DET
officially ADV
approved VERB
method NOUN
> ADP
of ADP
treatment NOUN
. PUNCT
I PRON
was AUX
there ADV
in ADP
1976 NUM
. PUNCT
  SPACE
I PRON
suppose VERB
it PRON
must AUX
have AUX
died VERB
out ADP
since SCONJ
1946,then NUM
. PUNCT
  SPACE
Certainly ADV
I PRON
never ADV
heard VERB
of ADP
any DET
homeopaths NOUN
or CCONJ
herbalists NOUN
inthe DET
employ NOUN
of ADP
the DET
NHS PROPN
. PUNCT
  SPACE
Perhaps ADV
the DET
law NOUN
codified VERB
it PRON
but CCONJ
the DET
authoritiesrefused VERB
to PART
hire VERB
any DET
homeopaths NOUN
. PUNCT
  SPACE
A DET
similar ADJ
law NOUN
in ADP
the DET
US PROPN
allowschiropractors NOUN
to PART
practice VERB
in ADP
VA PROPN
hospitals NOUN
but CCONJ
I PRON
've AUX
never ADV
seen VERB
onethere ADV
and CCONJ
I PRON
do AUX
n't PART
know VERB
of ADP
a DET
single ADJ
VA PROPN
that PRON
has AUX
hired VERB
a DET
chiropractor NOUN
. PUNCT
There PRON
are AUX
a DET
lot NOUN
of ADP
Britons NOUN
on ADP
the DET
net NOUN
, PUNCT
so SCONJ
someone PRON
should AUX
be AUX
able ADJ
totell NOUN
us PRON
if SCONJ
the DET
NHS PROPN
provides VERB
homeopaths NOUN
for ADP
you.-- NUM
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59211From NUM
: PUNCT
jcherney@envy.reed.edu PROPN
( PUNCT
Joel PROPN
Alexander PROPN
Cherney)Subject PROPN
: PUNCT
Epstein PROPN
- PUNCT
Barr PROPN
Syndrome PROPN
questionsOkay PROPN
, PUNCT
this DET
is AUX
a DET
long ADJ
shot NOUN
. PUNCT
My PRON
friend NOUN
Robin PROPN
has AUX
recurring VERB
bouts NOUN
of ADP
mononucleosis NOUN
- PUNCT
type NOUN
symptoms NOUN
, PUNCT
very ADV
  SPACE
regularly ADV
. PUNCT
  SPACE
This DET
has AUX
been AUX
going VERB
on ADP
for ADP
a DET
number NOUN
of ADP
years NOUN
. PUNCT
  SPACE
She PRON
's AUX
seen VERB
a DET
  SPACE
number NOUN
of ADP
doctors NOUN
; PUNCT
six NUM
was AUX
the DET
last ADJ
count NOUN
, PUNCT
I PRON
think VERB
. PUNCT
  SPACE
Most ADJ
of ADP
them PRON
have AUX
  SPACE
said VERB
either CCONJ
" PUNCT
You PRON
have AUX
mono NOUN
" PUNCT
or CCONJ
" PUNCT
You PRON
're AUX
full ADJ
of ADP
it PRON
; PUNCT
there PRON
's AUX
nothing PRON
wrong ADJ
  SPACE
with ADP
you PRON
. PUNCT
" PUNCT
  SPACE
One NUM
has AUX
admitted VERB
to ADP
having VERB
no DET
idea NOUN
what PRON
was AUX
wrong ADJ
with ADP
her PRON
, PUNCT
  SPACE
and CCONJ
one NUM
has AUX
claimed VERB
that SCONJ
it PRON
is AUX
Epstein PROPN
- PUNCT
Barr PROPN
syndrome NOUN
. PUNCT
Now ADV
, PUNCT
what PRON
she PRON
told VERB
me PRON
about ADP
EBS PROPN
is AUX
that SCONJ
very ADV
few ADJ
doctors NOUN
even ADV
believe VERB
that SCONJ
  SPACE
it PRON
exists VERB
. PUNCT
  SPACE
( PUNCT
Obviously ADV
, PUNCT
this DET
has AUX
been AUX
her PRON
experience NOUN
. PUNCT
) PUNCT
  SPACE
So ADV
, PUNCT
what PRON
's AUX
the DET
  SPACE
story NOUN
? PUNCT
  SPACE
Is AUX
it PRON
real ADJ
? PUNCT
  SPACE
Does AUX
the DET
medical ADJ
profession NOUN
believe VERB
it PRON
to PART
be AUX
real?Has PROPN
anyone PRON
had AUX
success NOUN
is AUX
treating VERB
EBS PROPN
? PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
just ADV
something PRON
to PART
live VERB
  SPACE
with ADP
? PUNCT
  SPACE
Thanks NOUN
for ADP
your PRON
assistance NOUN
. PUNCT
Joel PROPN
" PUNCT
The DET
Ogre PROPN
" PUNCT
Cherneyjcherney@reed.eduOf PROPN
the DET
HordeNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59212From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
C5x3L0.3r8@athena.cs.uga.edu PROPN
> X
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Newsgroups PROPN
: PUNCT
sci.med VERB
   SPACE
Path PROPN
: PUNCT
news.larc.nasa.gov!saimiri.primate.wisc.edu!sdd.hp.com!elroy.jpl.nasa.gov!swrinde!zaphod.mps.ohio-state.edu!howland.reston.ans.net!europa.eng.gtefsd.com!emory!athena!aisun3.ai.uga.edu!mcovingt DET
   SPACE
From ADP
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
   SPACE
Sender NOUN
: PUNCT
usenet@athena.cs.uga.edu ADJ
   SPACE
Nntp PROPN
- PUNCT
Posting PROPN
- PUNCT
Host NOUN
: PUNCT
aisun3.ai.uga.edu PROPN
   SPACE
Organization PROPN
: PUNCT
AI PROPN
Programs PROPN
, PUNCT
University PROPN
of ADP
Georgia PROPN
, PUNCT
Athens PROPN
   SPACE
References NOUN
: PUNCT
< X
PAULSON.93Apr19081647@cmb00.larc.nasa.gov NUM
> X
< X
116305@bu.edu NUM
> X
< X
C5uq9B.LrJ@toads.pgh.pa.us PROPN
> X
   SPACE
Date NOUN
: PUNCT
Fri PROPN
, PUNCT
23 NUM
Apr PROPN
1993 NUM
03:41:24 NUM
GMT PROPN
   SPACE
Lines NOUN
: PUNCT
27 NUM
   SPACE
In ADP
article NOUN
< X
C5uq9B.LrJ@toads.pgh.pa.us PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
In ADP
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
> X
   SPACE
> X
> X
Many ADJ
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the DET
   SPACE
> X
> X
literature PROPN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains VERB
   SPACE
> X
> X
tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might AUX
   SPACE
> X
> X
potentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it PRON
. PUNCT
   SPACE
> X
> X
Check VERB
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested ADJ
. PUNCT
   SPACE
> X
   SPACE
> X
Years NOUN
ago ADV
when ADV
I PRON
was AUX
an DET
intern NOUN
, PUNCT
an DET
obese ADJ
young ADJ
woman NOUN
was AUX
brought VERB
into ADP
   SPACE
> X
the DET
ER PROPN
comatose NOUN
after ADP
having VERB
been AUX
reported VERB
to PART
have AUX
grand ADJ
mal PROPN
seizures NOUN
   SPACE
> X
why ADV
attending VERB
a DET
" PUNCT
corn NOUN
festival NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
pumped VERB
her PRON
stomach NOUN
and CCONJ
obtained VERB
   SPACE
> X
what PRON
seemed VERB
like SCONJ
a DET
couple NOUN
of ADP
liters NOUN
of ADP
corn NOUN
, PUNCT
much ADJ
of ADP
it PRON
intact ADJ
kernals NOUN
. PUNCT
     SPACE
> X
After ADP
a DET
few ADJ
hours NOUN
she PRON
woke VERB
up ADP
and CCONJ
was AUX
fine ADJ
. PUNCT
  SPACE
I PRON
was AUX
tempted VERB
to PART
sign VERB
her PRON
out ADP
as SCONJ
   SPACE
> X
" PUNCT
acute ADJ
corn NOUN
intoxication NOUN
. PUNCT
" PUNCT
   SPACE
> X
---------------------------------------------------------------------------- PUNCT
   SPACE
> X
Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and CCONJ
   SPACE
How ADV
about ADP
contaminants NOUN
on ADP
the DET
corn NOUN
, PUNCT
e.g. ADV
aflatoxin NOUN
? PUNCT
? PUNCT
? PUNCT
   SPACE
-- PUNCT
    SPACE
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
   SPACE
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
What PRON
is AUX
aflatoxin?Sharon NOUN
-- PUNCT
Sharon PROPN
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59213From NUM
: PUNCT
ffujita@s.psych.uiuc.edu NOUN
( PUNCT
Frank PROPN
Fujita)Subject PROPN
: PUNCT
Re ADP
: PUNCT
" PUNCT
Choleric PROPN
" PUNCT
and CCONJ
The DET
Great PROPN
NT PROPN
/ SYM
NF PROPN
Semantic PROPN
War PROPN
. PUNCT
Also ADV
remember VERB
that SCONJ
most ADJ
people NOUN
map VERB
thesanguine NOUN
/ SYM
choleric PROPN
/ SYM
melencholic ADJ
/ SYM
phlegmatic ADJ
division NOUN
onto ADP
the DET
extraversionand PROPN
neuroticism PROPN
dimensions NOUN
( PUNCT
Like SCONJ
Eysenck PROPN
) PUNCT
and CCONJ
that SCONJ
the DET
MBTI PROPN
does AUX
notdeal VERB
with ADP
neuroticism NOUN
( PUNCT
Costa PROPN
& CCONJ
McCrae).Frank PROPN
FujitaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59214From NUM
: PUNCT
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant VERB
Edwards)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographystgprao@st.unocal.COM PROPN
( PUNCT
Richard PROPN
Ottolini PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
Living VERB
things NOUN
maintain VERB
small ADJ
electric ADJ
fields NOUN
to ADP
( PUNCT
1 X
) PUNCT
enhance VERB
certain ADJ
: PUNCT
chemical ADJ
reactions NOUN
, PUNCT
( PUNCT
2 X
) PUNCT
promote VERB
communication NOUN
of ADP
states NOUN
with ADP
in ADP
a DET
: PUNCT
cell NOUN
, PUNCT
( PUNCT
3 X
) PUNCT
communicate NOUN
between ADP
cells NOUN
( PUNCT
of ADP
which PRON
the DET
nervous ADJ
system NOUN
is AUX
: PUNCT
a DET
specialized ADJ
example NOUN
) PUNCT
, PUNCT
and CCONJ
perhaps ADV
other ADJ
uses NOUN
. PUNCT
True ADJ
. PUNCT
: PUNCT
These DET
electric ADJ
fields NOUN
change VERB
with ADP
location NOUN
and CCONJ
time NOUN
in ADP
a DET
large ADJ
: PUNCT
organism NOUN
. PUNCT
Also ADV
True ADJ
. PUNCT
: PUNCT
Special ADJ
photographic ADJ
techniques NOUN
such ADJ
as SCONJ
applying VERB
external ADJ
fields NOUN
in ADP
: PUNCT
Kirillian ADJ
photography NOUN
interact VERB
with ADP
these DET
fields NOUN
or CCONJ
the DET
resistances NOUN
: PUNCT
caused VERB
by ADP
these DET
fields NOUN
to PART
make VERB
interesting ADJ
pictures NOUN
. PUNCT
Not PART
really ADV
. PUNCT
  SPACE
Kirlian ADJ
photography NOUN
is AUX
taking VERB
pictures NOUN
of ADP
the DET
corona ADJ
discharge NOUN
fromobjects NOUN
( PUNCT
animate ADJ
or CCONJ
inanimate ADJ
) PUNCT
. PUNCT
  SPACE
The DET
fields NOUN
applied VERB
to ADP
the DET
objects NOUN
aremillions NOUN
of ADP
times NOUN
larger ADJ
than SCONJ
any DET
biologically ADV
created VERB
fields NOUN
. PUNCT
  SPACE
If SCONJ
youwant ADJ
to PART
record VERB
the DET
biologically ADV
created VERB
electric ADJ
fields NOUN
, PUNCT
you PRON
've AUX
got VERB
touse ADV
low ADJ
- PUNCT
noise NOUN
, PUNCT
high ADJ
- PUNCT
gain NOUN
sensors NOUN
typical ADJ
of ADP
EEGs NOUN
and CCONJ
EKGs PROPN
. PUNCT
  SPACE
Kirlianphotography PROPN
is AUX
just ADV
phun ADJ
- PUNCT
with ADP
- PUNCT
physics NOUN
type NOUN
stuff NOUN
( PUNCT
right ADV
up ADV
there ADV
withsoaking VERB
chunks NOUN
of ADP
extra ADJ
- ADJ
fine ADJ
steel NOUN
wool NOUN
in ADP
liquid ADJ
oxygen NOUN
then ADV
hittingthem PROPN
with ADP
a DET
hammer NOUN
-- PUNCT
which PRON
, PUNCT
like SCONJ
a DET
Kirlean PROPN
setup NOUN
, PUNCT
is AUX
fun ADJ
but CCONJ
possiblydangerous ADJ
) PUNCT
. PUNCT
: PUNCT
Perhaps ADV
such ADJ
pictures NOUN
will AUX
be AUX
diagonistic ADJ
of ADP
disease NOUN
problems NOUN
in ADP
: PUNCT
organisms NOUN
when ADV
better ADV
understood VERB
. PUNCT
Perhaps ADV
not PART
. PUNCT
Probably ADV
not.--Grant ADJ
Edwards PROPN
                                 SPACE
|Yow PROPN
! PUNCT
  SPACE
Vote NOUN
for ADP
ME PROPN
-- PUNCT
I'mRosemount PROPN
Inc. PROPN
                                SPACE
|well PROPN
- PUNCT
tapered VERB
, PUNCT
half ADV
- PUNCT
cocked ADJ
, PUNCT
                                              SPACE
|ill NOUN
- PUNCT
conceived VERB
andgrante@aquarius.rosemount.com PROPN
                 SPACE
|TAX PROPN
- PUNCT
DEFERRED!Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59215From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
ArrhythmiaIn PROPN
article NOUN
< X
1993Apr22.205509.23198@husc3.harvard.edu NUM
> X
perry1@husc10.harvard.edu PROPN
( PUNCT
Alexis PROPN
Perry PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.031423.1@vaxc.stevens-tech.edu NUM
> X
u96_averba@vaxc.stevens-tech.edu PROPN
writes:>>doctors NOUN
said VERB
that SCONJ
he PRON
could AUX
die VERB
from ADP
it PRON
, PUNCT
and CCONJ
the DET
medication NOUN
caused VERB
> X
	 SPACE
Is AUX
it PRON
that ADV
serious ADJ
? PUNCT
  SPACE
My PRON
EKG PROPN
often ADV
comes VERB
back ADV
with ADP
a DET
few ADJ
irregular ADJ
> X
beats NOUN
. PUNCT
  SPACE
Another DET
question NOUN
: PUNCT
  SPACE
Is AUX
a DET
low ADJ
blood NOUN
potassium NOUN
level NOUN
very ADV
bad ADJ
? PUNCT
  SPACE
My PRON
> X
doctor NOUN
seems VERB
concerned ADJ
, PUNCT
but CCONJ
she PRON
tends VERB
to PART
worry VERB
too ADV
much ADV
in ADP
general ADJ
. PUNCT
The DET
term NOUN
arrhythmia NOUN
is AUX
usually ADV
used VERB
to PART
encompass VERB
a DET
wide ADJ
range NOUN
of ADP
abnormalheart PROPN
rhythms PROPN
( PUNCT
cardiac PROPN
dysrhythmias PROPN
) PUNCT
. PUNCT
  SPACE
Some DET
of ADP
them PRON
are AUX
very ADV
seriouswhile ADJ
others NOUN
are AUX
completely ADV
benign ADJ
. PUNCT
  SPACE
Having VERB
" PUNCT
a DET
few ADJ
irregular ADJ
beats"on X
an DET
EKG PROPN
could AUX
be AUX
serious ADJ
depending NOUN
on ADP
what PRON
those DET
beats NOUN
were AUX
andwhen NOUN
they PRON
occurred VERB
, PUNCT
or CCONJ
could AUX
be AUX
of ADP
no DET
significance NOUN
. PUNCT
Low ADJ
blood NOUN
potassium NOUN
levels NOUN
probably ADV
predispose VERB
people NOUN
with ADP
underlyingheart ADJ
disease NOUN
to PART
develop VERB
arrhythmias PROPN
. PUNCT
  SPACE
Very ADV
low ADJ
potassium NOUN
levels NOUN
areclearly ADV
dangerous ADJ
, PUNCT
but CCONJ
it PRON
is AUX
not PART
clear ADJ
how ADV
much ADJ
of ADP
a DET
problemlow ADJ
- PUNCT
end NOUN
- PUNCT
of ADP
- PUNCT
normal ADJ
levels NOUN
are AUX
: PUNCT
  SPACE
a DET
lot NOUN
of ADP
cardiologists NOUN
seem VERB
to PART
treatanyone VERB
with ADP
even ADV
a DET
mildly ADV
low ADJ
- PUNCT
normal ADJ
potassium NOUN
level.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59216From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr22.153000.1@vms.ocom.okstate.edu PROPN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>poster PROPN
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
Do AUX
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Isbeing VERB
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
nota ADV
quack ADJ
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack NOUN
, PUNCT
other ADJ
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
acommonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis NOUN
, PUNCT
or CCONJ
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no DET
longerneed VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
ofpeople.-- ADP
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59217From NUM
: PUNCT
chorley@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
C5y5zr.B11@toads.pgh.pa.us PROPN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
C5qMJJ.yB@ampex.com PROPN
> X
jag@ampex.com NOUN
( PUNCT
Rayaz PROPN
Jagani PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
From ADP
Miranda PROPN
Castro PROPN
, PUNCT
_ PROPN
The DET
Complete PROPN
Homeopathy PROPN
Handbook_,>>ISBN NUM
0 NUM
- SYM
312 NUM
- PUNCT
06320 NUM
- PUNCT
2 NUM
, PUNCT
oringinally ADV
published VERB
in ADP
Britain PROPN
in ADP
1990.>>>>From NUM
Page PROPN
10 NUM
, PUNCT
> X
> X
.. PUNCT
and CCONJ
in ADP
1946 NUM
, PUNCT
when ADV
the DET
National PROPN
Health PROPN
Service PROPN
was AUX
established,>>homeopathy PROPN
was AUX
included VERB
as SCONJ
an DET
officially ADV
approved VERB
method>>of NOUN
treatment NOUN
. PUNCT
> X
> X
I PRON
was AUX
there ADV
in ADP
1976 NUM
. PUNCT
  SPACE
I PRON
suppose VERB
it PRON
must AUX
have AUX
died VERB
out ADP
since SCONJ
1946 NUM
, PUNCT
> X
then ADV
. PUNCT
  SPACE
Certainly ADV
I PRON
never ADV
heard VERB
of ADP
any DET
homeopaths NOUN
or CCONJ
herbalists NOUN
in ADP
> X
the DET
employ NOUN
of ADP
the DET
NHS PROPN
. PUNCT
  SPACE
Perhaps ADV
the DET
law NOUN
codified VERB
it PRON
but CCONJ
the DET
authorities NOUN
> X
refused VERB
to PART
hire VERB
any DET
homeopaths NOUN
. PUNCT
  SPACE
A DET
similar ADJ
law NOUN
in ADP
the DET
US PROPN
allows VERB
> X
chiropractors NOUN
to PART
practice VERB
in ADP
VA PROPN
hospitals NOUN
but CCONJ
I PRON
've AUX
never ADV
seen VERB
one NUM
> X
there ADV
and CCONJ
I PRON
do AUX
n't PART
know VERB
of ADP
a DET
single ADJ
VA PROPN
that PRON
has AUX
hired VERB
a DET
chiropractor NOUN
. PUNCT
> X
There PRON
are AUX
a DET
lot NOUN
of ADP
Britons NOUN
on ADP
the DET
net NOUN
, PUNCT
so SCONJ
someone PRON
should AUX
be AUX
able ADJ
to PART
> X
tell VERB
us PRON
if SCONJ
the DET
NHS PROPN
provides VERB
homeopaths NOUN
for ADP
you PRON
. PUNCT
> X
> X
> X
-- PUNCT
> X
----------------------------------------------------------------------------I CCONJ
do AUX
n't PART
think VERB
they PRON
provide VERB
homeopaths NOUN
, PUNCT
heck INTJ
the DET
heir NOUN
apparent ADJ
was AUX
trying VERB
to PART
promote VERB
Osteopaths NOUN
to ADP
the DET
ranks NOUN
of ADP
eligibility NOUN
a DET
couple NOUN
of ADP
years NOUN
back ADV
... PUNCT
It PRON
pleased VERB
my PRON
family NOUN
no DET
end NOUN
, PUNCT
since SCONJ
I PRON
'm AUX
at ADP
an DET
Osteopathic ADJ
school NOUN
, PUNCT
sort ADV
of ADV
validated VERB
it PRON
for ADP
them PRON
... PUNCT
then ADV
I PRON
told VERB
them PRON
that SCONJ
the DET
name NOUN
was AUX
the DET
same ADJ
but CCONJ
the DET
practice NOUN
was AUX
different ADJ
.... PUNCT
oh INTJ
. PUNCT
	 SPACE
If SCONJ
you PRON
're AUX
seeking VERB
validation NOUN
for ADP
your PRON
philosophy NOUN
on ADP
the DET
strength NOUN
of ADP
the DET
national PROPN
health PROPN
service NOUN
adopting VERB
it PRON
, PUNCT
I PRON
suggest VERB
that SCONJ
you PRON
are AUX
not PART
very ADV
sure ADJ
of ADP
the DET
validity NOUN
of ADP
your PRON
philosophy NOUN
. PUNCT
I PRON
believe VERB
in ADP
1946 NUM
, PUNCT
the DET
NHS PROPN
was AUX
still ADV
having VERB
its PRON
nurses NOUN
taught VERB
the DET
fine ADJ
art NOUN
of ADP
" PUNCT
cupping VERB
" PUNCT
, PUNCT
which PRON
is AUX
the DET
vacuum NOUN
extraction NOUN
of ADP
intradermal ADJ
fluids NOUN
by ADP
means NOUN
of ADP
heating VERB
a DET
cup NOUN
, PUNCT
placing VERB
it PRON
on ADP
the DET
afflicted ADJ
site NOUN
and CCONJ
allowing VERB
it PRON
to PART
cool VERB
. PUNCT
	 SPACE
I PRON
would AUX
n't PART
take VERB
my PRON
sick ADJ
daughter NOUN
to ADP
a DET
homeopath NOUN
. PUNCT
David PROPN
N. PROPN
Chorley***************************************************************************Yikes PROPN
, PUNCT
I PRON
'm AUX
agreeing VERB
with ADP
Gordon PROPN
Banks**************************************************************************Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59218From NUM
: PUNCT
klier@iscsvax.uni.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Modified VERB
sense NOUN
of ADP
taste NOUN
in ADP
Cancer NOUN
pt?In PROPN
article NOUN
< X
1993Apr21.134848.19017@peavax.mlo.dec.com NUM
> X
, PUNCT
lunger@helix.enet.dec.com PROPN
( PUNCT
Dave PROPN
Lunger PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
What PRON
does AUX
a DET
lack NOUN
of ADP
taste NOUN
of ADP
foods NOUN
, PUNCT
or CCONJ
a DET
sense NOUN
of ADP
taste NOUN
that PRON
seems VERB
" PUNCT
off ADP
" PUNCT
> X
when ADV
eating VERB
foods NOUN
in ADP
someone PRON
who PRON
has AUX
cancer NOUN
mean VERB
? PUNCT
What PRON
are AUX
the DET
possible ADJ
> NOUN
causes NOUN
of ADP
this DET
? PUNCT
Why ADV
does AUX
it PRON
happen?I PROPN
ca AUX
n't PART
answer VERB
most ADJ
of ADP
your PRON
questions NOUN
, PUNCT
but CCONJ
I PRON
've AUX
seen VERB
it PRON
happen VERB
in ADP
family NOUN
members NOUN
who PRON
are AUX
being AUX
treated VERB
with ADP
radiation NOUN
and/or CCONJ
chemotherapy NOUN
. PUNCT
Jory PROPN
Graham PROPN
published VERB
a DET
cookbook NOUN
many ADJ
years NOUN
ago ADV
( PUNCT
in ADP
cooperation NOUN
with ADP
the DET
American PROPN
Cancer PROPN
Society PROPN
, PUNCT
I PRON
think VERB
) PUNCT
called VERB
" PUNCT
Something PRON
has AUX
to PART
tastegood NOUN
" PUNCT
( PUNCT
as SCONJ
I PRON
recall).The NOUN
cookbook NOUN
was AUX
just ADV
what PRON
we PRON
needed VERB
several ADJ
times NOUN
when ADV
favorite ADJ
foodssuddenly ADV
became VERB
" PUNCT
yech" NOUN
. PUNCT
Kay PROPN
Klier PROPN
  SPACE
Biology PROPN
Dept PROPN
  SPACE
UNINewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59219From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)-*-----In PROPN
article NOUN
< X
noringC5wzM4.41n@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
... PUNCT
if SCONJ
you PRON
ca AUX
n't PART
observe VERB
or CCONJ
culture VERB
the DET
yeast NOUN
" PUNCT
bloom NOUN
" PUNCT
in ADP
the DET
> X
> X
gut PROPN
or CCONJ
sinus NOUN
, PUNCT
then ADV
there PRON
's AUX
no DET
way NOUN
to PART
diagnose VERB
or CCONJ
even ADV
recognize VERB
> X
> X
the DET
disease NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
they PRON
realize VERB
that SCONJ
it PRON
is AUX
virtually ADV
> X
> X
impossible ADJ
to PART
test VERB
for ADP
candida PROPN
overbloom PROPN
in ADP
any DET
part NOUN
of ADP
the DET
body NOUN
> X
> X
that PRON
can AUX
not PART
be AUX
easily ADV
observed VERB
since SCONJ
candida PROPN
is AUX
everywhere ADV
in ADP
> X
> X
the DET
body NOUN
. PUNCT
In ADP
article NOUN
< X
C5y5nM.Axv@toads.pgh.pa.us VERB
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
You PRON
've AUX
just ADV
discovered VERB
one NUM
of ADP
the DET
requirements NOUN
for ADP
a DET
good ADJ
quack NOUN
theory NOUN
. PUNCT
> X
Find VERB
something PRON
that PRON
no DET
one NOUN
can AUX
* PUNCT
disprove VERB
* PUNCT
and CCONJ
then ADV
write VERB
a DET
book NOUN
saying VERB
> X
it PRON
is AUX
the DET
cause NOUN
of ADP
whatever PRON
. PUNCT
  SPACE
Since SCONJ
no DET
one NOUN
can AUX
disprove VERB
it PRON
, PUNCT
you PRON
can AUX
> X
rake VERB
in ADP
the DET
bucks NOUN
for ADP
quite DET
some DET
time NOUN
. PUNCT
  SPACE
I PRON
hope VERB
Gordon PROPN
Banks PROPN
did AUX
not PART
mean VERB
to PART
imply VERB
that SCONJ
notions NOUN
such ADJ
ashard NOUN
- PUNCT
to PART
- PUNCT
see VERB
candida PROPN
infections NOUN
causing VERB
various ADJ
problems NOUN
should AUX
notbe PROPN
investigated VERB
. PUNCT
  SPACE
Many ADJ
researchers NOUN
have AUX
made VERB
breakthroughs NOUN
by ADP
figuring VERB
out ADP
how ADV
to PART
investigate VERB
things NOUN
that PRON
were AUX
previously ADV
thought"virtually ADV
impossible ADJ
to PART
test VERB
for ADP
. PUNCT
"Indeed PROPN
, PUNCT
I PRON
would AUX
be AUX
surprised ADJ
if SCONJ
" PUNCT
candida PROPN
overbloom PROPN
" PUNCT
were AUX
such ADJ
aphenomena NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
candida PROPN
would AUX
produce VERB
signaturebyproducts NOUN
whose PRON
measure NOUN
would AUX
then ADV
set VERB
a DET
lower ADV
bound VERB
on ADP
the DET
extent NOUN
of ADP
recent ADJ
infection NOUN
. PUNCT
  SPACE
I PRON
realize VERB
this DET
might AUX
get AUX
quite ADV
tricky ADJ
and CCONJ
difficult ADJ
, PUNCT
probably ADV
expensive ADJ
, PUNCT
and CCONJ
likely ADJ
inconvenientor NOUN
uncomfortable ADJ
to ADP
the DET
subjects NOUN
, PUNCT
but CCONJ
that DET
is AUX
not PART
the DET
same ADJ
as SCONJ
" PUNCT
virtually ADV
impossible ADJ
. PUNCT
"RussellNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59220From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)One PROPN
thing NOUN
that PRON
I PRON
have AUX
n't PART
seen VERB
in ADP
this DET
thread NOUN
is AUX
a DET
discussion NOUN
of ADP
therelation NOUN
between ADP
IBD PROPN
inflammation NOUN
and CCONJ
the DET
profile NOUN
of ADP
ingested ADJ
fattyacids NOUN
( PUNCT
FAs).I PROPN
was AUX
diagnosed VERB
last ADJ
May PROPN
w PROPN
/ SYM
Crohn PROPN
's PART
of ADP
the DET
terminal ADJ
ileum NOUN
. PUNCT
When ADV
I PRON
gotout ADP
of ADP
the DET
hospital NOUN
I PRON
read VERB
up ADP
on ADP
it PRON
a DET
bit NOUN
, PUNCT
and CCONJ
came VERB
across ADP
severalstudies NOUN
investigating VERB
the DET
role NOUN
of ADP
EPA PROPN
( PUNCT
an DET
essentially ADV
FA PROPN
) PUNCT
in ADP
reducinginflammation NOUN
. PUNCT
The DET
evidence NOUN
was AUX
mixed ADJ
. PUNCT
[ PUNCT
Many ADJ
of ADP
these DET
studies NOUN
arediscussed VERB
in ADP
" PUNCT
Inflammatory PROPN
Bowel PROPN
Disease PROPN
, PUNCT
" PUNCT
MacDermott PROPN
, PUNCT
Stenson PROPN
. PUNCT
1992.]But NUM
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
were AUX
some DET
methodological ADJ
bones NOUN
to ADP
bepicked VERB
with ADP
the DET
studies NOUN
( PUNCT
both CCONJ
the DET
ones NOUN
w PROPN
/ SYM
pos NOUN
. PUNCT
and CCONJ
w PROPN
/ SYM
neg PROPN
. PUNCT
results NOUN
) PUNCT
. PUNCT
Inthe DET
studies NOUN
patients NOUN
were AUX
given VERB
EPA PROPN
( PUNCT
a DET
few ADJ
grams NOUN
/ SYM
day NOUN
for ADP
most ADJ
of ADP
thestudies NOUN
) PUNCT
, PUNCT
but CCONJ
, PUNCT
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
was AUX
no DET
restriction NOUN
of ADP
the_other PROPN
_ PROPN
FAs NOUN
that SCONJ
the DET
patients NOUN
could AUX
consume VERB
. PUNCT
From ADP
the DET
informedlayperson NOUN
's PART
perspective NOUN
, PUNCT
this DET
seems VERB
mistaken ADJ
. PUNCT
If SCONJ
lots NOUN
of ADP
n-6 PROPN
FAs NOUN
areconsumed VERB
along ADP
with ADP
the DET
EPA PROPN
, PUNCT
then ADV
the DET
ratio NOUN
of ADP
" PUNCT
bad ADJ
" PUNCT
prostanoidproducts NOUN
to ADP
" PUNCT
good ADJ
" PUNCT
prostanoid ADJ
products NOUN
could AUX
still ADV
be AUX
fairly ADV
" PUNCT
bad ADJ
. PUNCT
"Isn't ADV
this DET
ratio NOUN
the DET
issue?What PROPN
's AUX
the DET
view NOUN
of ADP
the DET
gastro PROPN
. PUNCT
community NOUN
on ADP
EPA PROPN
these DET
days NOUN
? PUNCT
EPAsupplements NOUN
, PUNCT
along ADP
with ADP
a DET
fairly ADV
severe ADJ
restriction NOUN
of ADP
other ADJ
FAsappear PROPN
to PART
have AUX
helped VERB
me PRON
significantly ADV
( PUNCT
though SCONJ
it PRON
could AUX
just ADV
be AUX
thelow ADJ
absolute ADJ
amount NOUN
of ADP
fat NOUN
I PRON
eat VERB
-- PUNCT
8 NUM
- SYM
10 NUM
% NOUN
calories).-Brian NOUN
< PROPN
bmdelane@midway.uchicago.edu>Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59221From NUM
: PUNCT
andrew@calvin.dgbt.doc.ca PROPN
( PUNCT
Andrew PROPN
Patrick)Subject PROPN
: PUNCT
Any DET
Interest NOUN
in ADP
a DET
Mailing PROPN
List NOUN
on ADP
Epilepsy NOUN
and CCONJ
Seizures?I PROPN
have AUX
seen VERB
a DET
fair ADJ
bit NOUN
of ADP
traffic NOUN
recently ADV
concerning VERB
Epilepsy PROPN
andseizures NOUN
. PUNCT
  SPACE
I PRON
am AUX
also ADV
interested ADJ
in ADP
this DET
subject NOUN
-- PUNCT
I PRON
have AUX
a DET
son NOUN
withEpilepsy NOUN
and CCONJ
I PRON
am AUX
very ADV
active ADJ
with ADP
the DET
local ADJ
association NOUN
. PUNCT
  SPACE
I PRON
posted VERB
amessage NOUN
like SCONJ
this DET
a DET
few ADJ
months NOUN
ago ADV
and CCONJ
received VERB
no DET
replies NOUN
, PUNCT
but CCONJ
here ADV
itis NOUN
again ADV
. PUNCT
Is AUX
anyone PRON
interested ADJ
in ADP
participating VERB
in ADP
a DET
mailing NOUN
list NOUN
on ADP
Epilepsy PROPN
andseizures NOUN
? PUNCT
  SPACE
This DET
would AUX
allow VERB
us PRON
to PART
hold VERB
discussions NOUN
and CCONJ
shareinformation NOUN
via ADP
electronic ADJ
mail NOUN
. PUNCT
  SPACE
I PRON
already ADV
run VERB
a DET
Listserver PROPN
for ADP
twoother NOUN
groups NOUN
, PUNCT
so ADV
the DET
mechanics NOUN
would AUX
be AUX
easy ADJ
. PUNCT
If SCONJ
you PRON
are AUX
interested ADJ
, PUNCT
mail VERB
me PRON
a DET
note NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
get VERB
enough ADJ
replies NOUN
, PUNCT
I PRON
willmake VERB
it PRON
happen VERB
and CCONJ
provide VERB
you PRON
with ADP
the DET
details NOUN
. PUNCT
BTW ADV
, PUNCT
I PRON
have AUX
also ADV
started VERB
a DET
database NOUN
on ADP
Epilepsy PROPN
. PUNCT
  SPACE
This DET
is AUX
part NOUN
of ADP
myresearch NOUN
on ADP
natural ADJ
language NOUN
question NOUN
answering VERB
systems NOUN
. PUNCT
  SPACE
Users NOUN
of ADP
thisservice NOUN
are AUX
able ADJ
to PART
ask VERB
questions NOUN
about ADP
Epilepsy PROPN
and CCONJ
the DET
programsearches NOUN
the DET
database NOUN
and CCONJ
retrieves VERB
its PRON
best ADJ
response NOUN
. PUNCT
  SPACE
The DET
technologyworks NOUN
by ADP
comparing VERB
your PRON
question NOUN
against ADP
a DET
set NOUN
of ADP
questions NOUN
that PRON
havebeen PROPN
seen VERB
before ADV
. PUNCT
  SPACE
All DET
new ADJ
questions NOUN
that PRON
are AUX
not PART
answered VERB
are AUX
recordedand VERB
used VERB
to PART
improve VERB
the DET
system NOUN
. PUNCT
This DET
database NOUN
is AUX
still ADV
small ADJ
and CCONJ
sparse ADJ
, PUNCT
but CCONJ
we PRON
are AUX
adding VERB
newinformation NOUN
. PUNCT
  SPACE
To PART
try VERB
it PRON
out ADP
, PUNCT
do AUX
the DET
following NOUN
	 SPACE
telnet NOUN
debra.dgbt.doc.ca NOUN
	 SPACE
login NOUN
: PUNCT
chat PROPN
	 SPACE
Then ADV
select VERB
the DET
Epilepsy PROPN
item NOUN
from ADP
the DET
menu NOUN
of ADP
databases.-- PROPN
Andrew PROPN
Patrick PROPN
, PUNCT
Ph.D. PROPN
       SPACE
Communications PROPN
Research PROPN
Centre PROPN
, PUNCT
Ottawa PROPN
, PUNCT
CANADA PROPN
                       SPACE
andrew@calvin.dgbt.doc.CA NOUN
                         SPACE
For ADP
a DET
good ADJ
time NOUN
, PUNCT
run VERB
" PUNCT
telnet NOUN
debra.dgbt.doc.ca NOUN
" PUNCT
and CCONJ
login NOUN
as SCONJ
" PUNCT
chat" PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59222From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Epstein PROPN
- PUNCT
Barr PROPN
Syndrome PROPN
questionsIn PROPN
article NOUN
< X
1993Apr23.034226.2284@reed.edu NUM
> X
jcherney@reed.edu PROPN
writes:>Okay PROPN
, PUNCT
this DET
is AUX
a DET
long ADJ
shot.>>My NOUN
friend NOUN
Robin PROPN
has AUX
recurring VERB
bouts NOUN
of ADP
mononucleosis NOUN
- PUNCT
type NOUN
symptoms NOUN
, PUNCT
very ADV
  SPACE
> X
regularly ADV
. PUNCT
  SPACE
This DET
has AUX
been AUX
going VERB
on ADP
for ADP
a DET
number NOUN
of ADP
years NOUN
. PUNCT
  SPACE
She PRON
's AUX
seen VERB
a DET
  SPACE
> X
number NOUN
of ADP
doctors NOUN
; PUNCT
six NUM
was AUX
the DET
last ADJ
count NOUN
, PUNCT
I PRON
think VERB
. PUNCT
  SPACE
Most ADJ
of ADP
them PRON
have AUX
  SPACE
> X
said VERB
either CCONJ
" PUNCT
You PRON
have AUX
mono NOUN
" PUNCT
or CCONJ
" PUNCT
You PRON
're AUX
full ADJ
of ADP
it PRON
; PUNCT
there PRON
's AUX
nothing PRON
wrong ADJ
  SPACE
> X
with ADP
you PRON
. PUNCT
" PUNCT
  SPACE
One NUM
has AUX
admitted VERB
to ADP
having VERB
no DET
idea NOUN
what PRON
was AUX
wrong ADJ
with ADP
her PRON
, PUNCT
  SPACE
> X
and CCONJ
one PRON
has AUX
claimed VERB
that SCONJ
it PRON
is AUX
Epstein PROPN
- PUNCT
Barr PROPN
syndrome.>>Now NOUN
, PUNCT
what PRON
she PRON
told VERB
me PRON
about ADP
EBS PROPN
is AUX
that SCONJ
very ADV
few ADJ
doctors NOUN
even ADV
believe VERB
that SCONJ
  SPACE
> X
it PRON
exists VERB
. PUNCT
  SPACE
( PUNCT
Obviously ADV
, PUNCT
this DET
has AUX
been AUX
her PRON
experience NOUN
. PUNCT
) PUNCT
  SPACE
So ADV
, PUNCT
what PRON
's AUX
the DET
  SPACE
> X
story NOUN
? PUNCT
  SPACE
Is AUX
it PRON
real ADJ
? PUNCT
  SPACE
Does AUX
the DET
medical ADJ
profession NOUN
believe VERB
it PRON
to PART
be AUX
real?>>Has VERB
anyone PRON
had AUX
success NOUN
is AUX
treating VERB
EBS PROPN
? PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
just ADV
something PRON
to PART
live VERB
  SPACE
> X
with ADP
? PUNCT
  SPACE
Thanks NOUN
for ADP
your PRON
assistance NOUN
. PUNCT
Outbreaks NOUN
of ADP
a DET
chronic ADJ
- PUNCT
mono NOUN
- PUNCT
like ADJ
entity NOUN
were AUX
originally ADV
called VERB
EBS PROPN
( PUNCT
orsome PROPN
variant NOUN
thereof ADV
) PUNCT
because SCONJ
most ADJ
of ADP
the DET
people NOUN
with ADP
this DET
disease NOUN
hadelevated VERB
levels NOUN
of ADP
antibodies NOUN
to ADP
the DET
EBV PROPN
virus NOUN
. PUNCT
But CCONJ
not PART
all DET
of ADP
themdid NOUN
, PUNCT
which PRON
prompted VERB
an DET
official ADJ
renaming NOUN
of ADP
the DET
disease NOUN
to ADP
ChronicFatigue PROPN
Syndrome PROPN
( PUNCT
this DET
renaming VERB
took VERB
place NOUN
in ADP
the DET
Annals PROPN
of ADP
InternalMedicine PROPN
, PUNCT
Jan. PROPN
1988 NUM
, PUNCT
I PRON
believe VERB
) PUNCT
. PUNCT
Now ADV
it PRON
's AUX
also ADV
called VERB
Chronic PROPN
Fatigueand PROPN
Immune PROPN
Dysfunction PROPN
Syndrome PROPN
( PUNCT
CFIDS PROPN
) PUNCT
, PUNCT
since SCONJ
it PRON
seems VERB
clear ADJ
thatsome ADJ
sort ADV
of ADP
immune ADJ
disregulation NOUN
is AUX
causing VERB
the DET
probs NOUN
. PUNCT
Astonishly ADV
, PUNCT
there PRON
are AUX
still ADV
docs NOUN
who PRON
tell VERB
people NOUN
with ADP
massivelyswollen ADJ
glands NOUN
, PUNCT
recurrent NOUN
fevers NOUN
and CCONJ
nightsweats NOUN
, PUNCT
etc X
. X
, PUNCT
that SCONJ
there'snothing VERB
wrong NOUN
with ADP
them PRON
. PUNCT
This DET
is AUX
not PART
the DET
same ADJ
thing NOUN
as SCONJ
saying VERB
that SCONJ
thesyndrome PROPN
may AUX
have AUX
a DET
( PUNCT
at ADP
least ADJ
partly ADV
) PUNCT
psychological ADJ
cause NOUN
. PUNCT
Thedisagreement NOUN
among ADP
people NOUN
whose PRON
thoughts NOUN
are AUX
worth ADJ
considering VERB
centerson NOUN
just ADV
what PRON
the DET
cause NOUN
is AUX
. PUNCT
No DET
one NOUN
knows VERB
, PUNCT
but CCONJ
theories NOUN
include VERB
: PUNCT
psychological ADJ
stress NOUN
, PUNCT
some DET
sort NOUN
of ADP
virus NOUN
( PUNCT
a DET
retrovirus NOUN
, PUNCT
say VERB
most ADV
--maybe PUNCT
one NUM
of ADP
the DET
newly ADV
discovered VERB
herpes NOUN
viruses NOUN
) PUNCT
, PUNCT
environmentaltoxins NOUN
, PUNCT
bacteria NOUN
( PUNCT
and CCONJ
, PUNCT
yes INTJ
, PUNCT
candida PROPN
) PUNCT
, PUNCT
genes NOUN
, PUNCT
( PUNCT
and/)or ADP
some DET
combo ADJ
ofthese PROPN
. PUNCT
There PRON
's AUX
no DET
outright ADJ
cure NOUN
at ADP
the DET
moment NOUN
, PUNCT
but CCONJ
different ADJ
docs PROPN
trydifferent NOUN
things NOUN
, PUNCT
some DET
of ADP
which PRON
seem VERB
to PART
help VERB
. PUNCT
Massive ADJ
amounts NOUN
of ADP
info NOUN
on ADP
the DET
condition NOUN
are AUX
available ADJ
these DET
days NOUN
. PUNCT
Post VERB
your PRON
Q NOUN
to ADP
alt.med.cfs PROPN
, PUNCT
and CCONJ
you PRON
will AUX
be AUX
flooded VERB
w PROPN
/ SYM
facts NOUN
. PUNCT
Note VERB
: PUNCT
There PRON
are AUX
lots NOUN
of ADP
far ADV
better ADV
understood VERB
( PUNCT
and CCONJ
better ADJ
treatable)diseases NOUN
that PRON
look VERB
like SCONJ
CFIDS PROPN
. PUNCT
Make VERB
sure ADJ
these DET
get VERB
ruled VERB
- PUNCT
out NOUN
by ADP
a DET
gooddoc NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59223From NUM
: PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders)Subject PROPN
: PUNCT
Frozen ADJ
shoulder NOUN
and CCONJ
lawn NOUN
mowingIhave NOUN
had AUX
a DET
frozen ADJ
shoulder NOUN
for ADP
over ADP
a DET
year NOUN
or CCONJ
about ADV
a DET
year NOUN
. PUNCT
  SPACE
It PRON
is AUX
stillpartially ADV
frozen ADJ
, PUNCT
and CCONJ
I PRON
am AUX
still ADV
in ADP
physical ADJ
therapy NOUN
every DET
week NOUN
. PUNCT
  SPACE
But CCONJ
thepain NOUN
has AUX
subsided VERB
almost ADV
completely ADV
. PUNCT
  SPACE
UNTIL ADP
last ADJ
week NOUN
when ADV
I PRON
mowed VERB
thelawn NOUN
for ADP
twenty NUM
minutes NOUN
each DET
, PUNCT
two NUM
days NOUN
in ADP
a DET
row NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
push NOUN
type NOUN
powermower NOUN
. PUNCT
  SPACE
The DET
pain NOUN
started VERB
back ADV
up ADP
a DET
little ADJ
bit NOUN
for ADP
the DET
first ADJ
time NOUN
in ADP
quitea NOUN
while ADV
, PUNCT
and CCONJ
I PRON
used VERB
ice NOUN
and CCONJ
medicine NOUN
again ADV
. PUNCT
  SPACE
Can AUX
anybody PRON
explain VERB
why ADV
thisparticular ADJ
activity NOUN
, PUNCT
which PRON
does AUX
not PART
seem VERB
to PART
stress VERB
me PRON
very ADV
much ADV
generally ADV
, PUNCT
should AUX
cause VERB
this DET
shoulder NOUN
problem?Thanks VERB
. PUNCT
AliceNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59224From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)In PROPN
article NOUN
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>I NUM
hope VERB
Gordon PROPN
Banks PROPN
did AUX
not PART
mean VERB
to PART
imply VERB
that SCONJ
notions NOUN
such ADJ
as SCONJ
> X
hard ADV
- PUNCT
to PART
- PUNCT
see VERB
candida PROPN
infections NOUN
causing VERB
various ADJ
problems NOUN
should AUX
not PART
> X
be AUX
investigated VERB
. PUNCT
  SPACE
Many ADJ
researchers NOUN
have AUX
made VERB
breakthroughs NOUN
by ADP
> X
figuring VERB
out ADP
how ADV
to PART
investigate VERB
things NOUN
that PRON
were AUX
previously ADV
thought>"virtually ADV
impossible ADJ
to PART
test VERB
for ADP
. PUNCT
">>Indeed PUNCT
, PUNCT
I PRON
would AUX
be AUX
surprised ADJ
if SCONJ
" PUNCT
candida PROPN
overbloom PROPN
" PUNCT
were AUX
such DET
a DET
> X
phenomena NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
candida PROPN
would AUX
produce VERB
signature NOUN
> X
byproducts NOUN
whose PRON
measure NOUN
would AUX
then ADV
set VERB
a DET
lower ADV
bound VERB
on ADP
the DET
> X
extent NOUN
of ADP
recent ADJ
infection NOUN
. PUNCT
  SPACE
I PRON
realize VERB
this DET
might AUX
get AUX
quite ADV
> X
tricky ADJ
and CCONJ
difficult ADJ
, PUNCT
probably ADV
expensive ADJ
, PUNCT
and CCONJ
likely ADV
inconvenient ADJ
> X
or CCONJ
uncomfortable ADJ
to ADP
the DET
subjects NOUN
, PUNCT
but CCONJ
that DET
is AUX
not PART
the DET
same ADJ
as SCONJ
> X
" PUNCT
virtually ADV
impossible ADJ
. PUNCT
"I NOUN
recall VERB
reading VERB
in ADP
the DET
recently ADV
revised VERB
edition NOUN
of ADP
the DET
" PUNCT
Yeast PROPN
Connection"that NUM
there PRON
is AUX
indeed ADV
work NOUN
by ADP
researchers NOUN
to PART
do AUX
this DET
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
they PRON
areworking VERB
on ADP
the DET
theory NOUN
that SCONJ
candida PROPN
overbloom PROPN
with ADP
penetration NOUN
into ADP
mucusmembrane PROPN
tissue NOUN
with ADP
associated VERB
" PUNCT
mild ADJ
" PUNCT
inflammatory ADJ
response NOUN
can AUX
and CCONJ
doesoccur VERB
in ADP
a DET
large ADJ
number NOUN
of ADP
people NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
reject VERB
this DET
" PUNCT
yeast NOUN
hypothesis",then INTJ
I PRON
'd AUX
guess VERB
you PRON
'd AUX
view VERB
this DET
research NOUN
as SCONJ
one NUM
more ADV
wasteful ADJ
and CCONJ
quixoticendeavor ADJ
. PUNCT
  SPACE
Stay VERB
tuned VERB
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59225From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1r9j33$4g8@hsdndev.harvard.edu PROPN
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr22.153000.1@vms.ocom.okstate.edu PROPN
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu INTJ
writes:>>poster PUNCT
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
> X
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
> X
> X
Do AUX
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
being AUX
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not PART
> X
a DET
quack NOUN
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack NOUN
, PUNCT
> X
other ADJ
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
a DET
> X
commonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis NOUN
, PUNCT
> X
or CCONJ
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no ADV
longer ADV
> X
need VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
of ADP
> NUM
people NOUN
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindI PROPN
do AUX
n't PART
like VERB
the DET
term NOUN
" PUNCT
quack NOUN
" PUNCT
being AUX
applied VERB
to ADP
a DET
licensed ADJ
physician NOUN
David PROPN
. PUNCT
Questionable ADJ
conduct NOUN
is AUX
more ADV
appropriately ADV
called VERB
unethical(in NUM
my PRON
opinion).I'll PUNCT
give VERB
you PRON
some DET
examples NOUN
. PUNCT
	 SPACE
1 NUM
. PUNCT
Prescribing VERB
controlled ADJ
substances NOUN
to ADP
patients NOUN
with ADP
no DET
	    SPACE
demonstrated VERB
need(other PROPN
than SCONJ
a DET
drug NOUN
addition NOUN
) PUNCT
for ADP
the DET
medication NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
Prescribing VERB
thyroid NOUN
preps VERB
for ADP
patients NOUN
with ADP
normal ADJ
thyroid NOUN
	    SPACE
function NOUN
for ADP
the DET
purpose NOUN
of ADP
quick ADJ
weight NOUN
loss NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
Using VERB
laetril ADJ
to PART
treat VERB
cancer NOUN
patients NOUN
when ADV
such ADJ
treatment NOUN
has AUX
	    SPACE
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
and CCONJ
dangerous(cyanide PROPN
release NOUN
) PUNCT
by ADP
	    SPACE
the DET
NCI.These PROPN
are AUX
errors NOUN
of ADP
commission NOUN
that PRON
competently ADV
trained VERB
physicians NOUN
should AUX
not PART
committ VERB
but CCONJ
sometimes ADV
do AUX
. PUNCT
  SPACE
There PRON
are AUX
also ADV
errors NOUN
of ADP
omission(some PROPN
of ADP
which PRON
result VERB
in ADP
malpractice NOUN
suits NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
that SCONJ
using VERB
anti ADJ
- ADJ
fungal ADJ
agents NOUN
to PART
try VERB
to PART
relieve VERB
discomfort NOUN
in ADP
a DET
patient NOUN
who PRON
you PRON
suspect VERB
may AUX
be AUX
having VERB
a DET
problem NOUN
with ADP
candida(or NOUN
another DET
fungal ADJ
growth NOUN
) PUNCT
is AUX
an DET
error NOUN
of ADP
commission NOUN
or CCONJ
omission NOUN
. PUNCT
  SPACE
Healers NOUN
have AUX
had VERB
a DET
long ADJ
history NOUN
of ADP
trying VERB
to PART
relieve VERB
human ADJ
suffering NOUN
. PUNCT
  SPACE
Some DET
have AUX
stuck VERB
to ADP
standard NOUN
, PUNCT
approved VERB
procedures NOUN
, PUNCT
others NOUN
have AUX
been AUX
willing ADJ
to PART
try VERB
any DET
reasonable ADJ
treatment NOUN
if SCONJ
there PRON
is AUX
a DET
chance NOUN
that SCONJ
it PRON
will AUX
help VERB
the DET
patient NOUN
. PUNCT
  SPACE
The DET
key NOUN
has AUX
to PART
be AUX
tied VERB
to ADP
the DET
healer NOUN
's PART
oath NOUN
, PUNCT
" PUNCT
I PRON
will AUX
do AUX
no DET
harm NOUN
" PUNCT
. PUNCT
  SPACE
But CCONJ
you PRON
know VERB
David PROPN
that SCONJ
very ADV
few ADJ
treatments NOUN
involve VERB
no DET
risk NOUN
to ADP
the DET
patient NOUN
. PUNCT
  SPACE
The DET
job NOUN
of ADP
the DET
physician NOUN
is AUX
a DET
very ADV
difficult ADJ
one NUM
when ADV
risk NOUN
versus ADP
benefit NOUN
has AUX
to PART
be AUX
weighed VERB
. PUNCT
  SPACE
Each DET
physician NOUN
deals VERB
with ADP
this DET
risk NOUN
/ SYM
benefit NOUN
paradox NOUN
a DET
little ADJ
differently ADV
. PUNCT
  SPACE
Some DET
are AUX
very ADV
conservative ADJ
while SCONJ
others NOUN
are AUX
more ADV
agressive ADJ
. PUNCT
  SPACE
An DET
agressive ADJ
approach NOUN
may AUX
be AUX
more ADV
costly ADJ
to ADP
the DET
patient NOUN
and CCONJ
carry VERB
more ADJ
risk NOUN
but CCONJ
as ADV
long ADV
as SCONJ
the DET
motive NOUN
is AUX
improving VERB
the DET
patient NOUN
's PART
health NOUN
and CCONJ
not PART
an DET
attempt NOUN
to PART
rake VERB
in ADP
lots NOUN
of ADP
money(through PROPN
some DET
of ADP
the DET
schemes NOUN
that PRON
have AUX
been AUX
uncovered VERB
in ADP
the DET
medicare PROPN
fraud NOUN
cases NOUN
) PUNCT
, PUNCT
I PRON
do AUX
n't PART
see VERB
the DET
need NOUN
to PART
label VERB
these DET
healers NOUN
as SCONJ
quacks NOUN
or CCONJ
even ADV
unethical ADJ
. PUNCT
What PRON
do AUX
I PRON
reserve VERB
the DET
term NOUN
quack ADV
for ADP
? PUNCT
  SPACE
Pseudo PROPN
- PUNCT
medical ADJ
professionals NOUN
. PUNCT
  SPACE
These DET
people NOUN
lurk VERB
on ADP
the DET
fringes NOUN
of ADP
the DET
health NOUN
care NOUN
system NOUN
waiting VERB
for ADP
the DET
frustrated ADJ
patient NOUN
to PART
fall VERB
into ADP
their PRON
lair NOUN
. PUNCT
  SPACE
Some DET
of ADP
these DET
individuals NOUN
are AUX
really ADV
doing VERB
a DET
pretty ADV
good ADJ
job NOUN
of ADP
providing VERB
" PUNCT
alternative ADJ
" PUNCT
medicine NOUN
. PUNCT
  SPACE
But CCONJ
many ADJ
lack VERB
any DET
formal ADJ
training NOUN
and CCONJ
are AUX
in ADP
the DET
" PUNCT
business NOUN
" PUNCT
simply ADV
to PART
make VERB
a DET
few ADJ
fast ADJ
bucks NOUN
. PUNCT
   SPACE
While SCONJ
a DET
patient NOUN
can AUX
be AUX
reasonably ADV
assured VERB
of ADP
getting VERB
competent ADJ
care NOUN
when ADV
a DET
liscenced VERB
physician NOUN
is AUX
consulted VERB
, PUNCT
this DET
alternative ADJ
care NOUN
area NOUN
is AUX
really ADV
a DET
buyer NOUN
's PART
beware NOUN
arena NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
lucky ADJ
, PUNCT
you PRON
may AUX
find VERB
someone PRON
who PRON
can AUX
help VERB
you PRON
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
unlucky ADJ
, PUNCT
you PRON
can AUX
loose VERB
a DET
lot NOUN
of ADP
money NOUN
and CCONJ
develop VERB
severe ADJ
disease NOUN
because SCONJ
of ADP
the DET
inability NOUN
of ADP
these DET
pseudo ADJ
- PUNCT
medical ADJ
professional NOUN
to PART
diagnose VERB
disease(which PROPN
is AUX
the DET
fortay NOUN
of ADP
the DET
liscened VERB
physicians).I PROPN
hope NOUN
that SCONJ
this DET
clears VERB
things NOUN
up ADP
David PROPN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59226From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
1993Apr23.211108.26887@midway.uchicago.edu>,bmdelane@quads.uchicago.edu NUM
( PUNCT
brian PROPN
manning PROPN
delaney PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
One NUM
thing NOUN
that PRON
I PRON
have AUX
n't PART
seen VERB
in ADP
this DET
thread NOUN
is AUX
a DET
discussion NOUN
of ADP
the DET
> X
relation NOUN
between ADP
IBD PROPN
inflammation NOUN
and CCONJ
the DET
profile NOUN
of ADP
ingested ADJ
fatty NOUN
> X
acids NOUN
( PUNCT
FAs PROPN
) PUNCT
. PUNCT
> X
> X
I PRON
was AUX
diagnosed VERB
last ADJ
May PROPN
w PROPN
/ SYM
Crohn PROPN
's PART
of ADP
the DET
terminal ADJ
ileum NOUN
. PUNCT
When ADV
I PRON
got VERB
> X
out SCONJ
of ADP
the DET
hospital NOUN
I PRON
read VERB
up ADP
on ADP
it PRON
a DET
bit NOUN
, PUNCT
and CCONJ
came VERB
across ADP
several ADJ
> X
studies NOUN
investigating VERB
the DET
role NOUN
of ADP
EPA PROPN
( PUNCT
an DET
essentially ADV
FA PROPN
) PUNCT
in ADP
reducing VERB
> X
inflammation NOUN
. PUNCT
The DET
evidence NOUN
was AUX
mixed ADJ
. PUNCT
[ PUNCT
Many ADJ
of ADP
these DET
studies NOUN
are AUX
> X
discussed VERB
in ADP
" PUNCT
Inflammatory PROPN
Bowel PROPN
Disease PROPN
, PUNCT
" PUNCT
MacDermott PROPN
, PUNCT
Stenson PROPN
. PROPN
1992 NUM
. PUNCT
] PUNCT
> X
> X
But CCONJ
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
were AUX
some DET
methodological ADJ
bones NOUN
to PART
be AUX
> X
picked VERB
with ADP
the DET
studies NOUN
( PUNCT
both CCONJ
the DET
ones NOUN
w PROPN
/ SYM
pos NOUN
. PUNCT
and CCONJ
w PROPN
/ SYM
neg PROPN
. PUNCT
results NOUN
) PUNCT
. PUNCT
In ADP
> X
the DET
studies NOUN
patients NOUN
were AUX
given VERB
EPA PROPN
( PUNCT
a DET
few ADJ
grams NOUN
/ SYM
day NOUN
for ADP
most ADJ
of ADP
the DET
> PROPN
studies NOUN
) PUNCT
, PUNCT
but CCONJ
, PUNCT
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
was AUX
no DET
restriction NOUN
of ADP
the DET
> X
_ PROPN
other ADJ
_ PROPN
FAs NOUN
that SCONJ
the DET
patients NOUN
could AUX
consume VERB
. PUNCT
From ADP
the DET
informed ADJ
> X
layperson PROPN
's PART
perspective NOUN
, PUNCT
this DET
seems VERB
mistaken ADJ
. PUNCT
If SCONJ
lots NOUN
of ADP
n-6 ADJ
FAs NOUN
are AUX
> X
consumed VERB
along ADP
with ADP
the DET
EPA PROPN
, PUNCT
then ADV
the DET
ratio NOUN
of ADP
" PUNCT
bad ADJ
" PUNCT
prostanoid ADJ
> X
products NOUN
to ADP
" PUNCT
good ADJ
" PUNCT
prostanoid ADJ
products NOUN
could AUX
still ADV
be AUX
fairly ADV
" PUNCT
bad ADJ
. PUNCT
" PUNCT
> X
Is AUX
n't PART
this DET
ratio NOUN
the DET
issue NOUN
? PUNCT
> X
> X
What PRON
's AUX
the DET
view NOUN
of ADP
the DET
gastro PROPN
. PUNCT
community NOUN
on ADP
EPA PROPN
these DET
days NOUN
? PUNCT
EPA PROPN
> X
supplements NOUN
, PUNCT
along ADP
with ADP
a DET
fairly ADV
severe ADJ
restriction NOUN
of ADP
other ADJ
FAs NOUN
> X
appear VERB
to PART
have AUX
helped VERB
me PRON
significantly ADV
( PUNCT
though SCONJ
it PRON
could AUX
just ADV
be AUX
the DET
> X
low ADJ
absolute ADJ
amount NOUN
of ADP
fat NOUN
I PRON
eat VERB
-- PUNCT
8 NUM
- SYM
10 NUM
% NOUN
calories NOUN
) PUNCT
. PUNCT
> X
> X
-Brian PUNCT
< X
bmdelane@midway.uchicago.edu>As INTJ
you PRON
note VERB
, PUNCT
the DET
research NOUN
is AUX
mixed ADJ
, PUNCT
so CCONJ
there PRON
is AUX
no DET
consensus NOUN
on ADP
therole NOUN
of ADP
fatty ADJ
acids NOUN
in ADP
Ulcerative ADJ
colitis NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
role NOUN
for ADP
shortchain ADJ
fatty ADJ
acids NOUN
in ADP
patients NOUN
with ADP
colostomies NOUN
and CCONJ
rectal ADJ
pouchesthat PUNCT
are AUX
inflammed VERB
( PUNCT
Short PROPN
is AUX
butyrate ADJ
and CCONJ
shorter ADJ
) PUNCT
. PUNCT
  SPACE
There PRON
may AUX
be AUX
a DET
rolefor NOUN
treatment NOUN
of ADP
UC PROPN
with ADP
Short ADJ
chain NOUN
fatty ADJ
acids NOUN
, PUNCT
and CCONJ
I PRON
am AUX
looking VERB
forward ADV
to ADP
the DET
upcoming ADJ
AGA PROPN
meeting NOUN
in ADP
Boston PROPN
to PART
see VERB
what PRON
people NOUN
aredoing VERB
. PUNCT
  SPACE
You PRON
raise VERB
a DET
hypothesis NOUN
about ADP
the DET
studies NOUN
and CCONJ
restriction NOUN
of ADP
otherfatty ADJ
acids NOUN
. PUNCT
  SPACE
You PRON
should AUX
contact VERB
the DET
authors NOUN
directly ADV
about ADP
that DET
oreven PROPN
write VERB
a DET
letter NOUN
to ADP
the DET
editor NOUN
- PUNCT
it PRON
is AUX
a DET
good ADJ
point NOUN
. PUNCT
  SPACE
By ADP
the DET
way NOUN
, PUNCT
the DET
abbreviation NOUN
EPA PROPN
is AUX
not PART
in ADP
general ADJ
use NOUN
, PUNCT
so CCONJ
I PRON
do AUX
not PART
know VERB
what PRON
fatty NOUN
acid NOUN
you PRON
are AUX
speaking VERB
about ADP
. PUNCT
And CCONJ
to ADP
Brian PROPN
an DET
U NOUN
of ADP
C PROPN
--- PUNCT
  SPACE
There PRON
is AUX
a DET
physician NOUN
named VERB
Stephen PROPN
Hanauerthere PROPN
who PRON
is AUX
a DET
recognized VERB
expert NOUN
in ADP
the DET
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
You PRON
might AUX
give VERB
him PRON
a DET
call NOUN
. PUNCT
  SPACE
He PRON
is AUX
interested ADJ
in ADP
new ADJ
combinations NOUN
of ADP
drugs NOUN
for ADP
the DET
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
call VERB
please INTJ
say VERB
hello INTJ
to ADP
him PRON
from ADP
me PRON
, PUNCT
I PRON
was AUX
looking VERB
at ADP
U NOUN
of ADP
C PROPN
for ADP
a DET
position NOUN
, PUNCT
and CCONJ
perhaps ADV
still ADV
am AUX
. PUNCT
  SPACE
Andbe PROPN
sure ADJ
to PART
look VERB
into ADP
joining VERB
the DET
CCFA.Best ADJ
of ADP
Luck PROPN
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59227From NUM
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr20.173019.11903@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>As NOUN
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
like VERB
> X
the DET
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
use VERB
> X
it PRON
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighbor NOUN
> X
has AUX
an DET
ulcer NOUN
. PUNCT
> X
Nobody PRON
is AUX
saying VERB
that SCONJ
you PRON
should AUX
n't PART
be AUX
allowed VERB
to PART
use VERB
msg NOUN
. PUNCT
  SPACE
Justdon't PROPN
force VERB
it PRON
on ADP
others NOUN
. PUNCT
If SCONJ
you PRON
have AUX
food NOUN
that PRON
you PRON
want VERB
to PART
enhance VERB
with ADP
msg NOUN
just ADV
put VERB
the DET
MSG NOUN
on ADP
the DET
table NOUN
like SCONJ
salt NOUN
. PUNCT
  SPACE
It PRON
isthen ADV
the DET
option NOUN
of ADP
the DET
eater NOUN
to PART
use VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
make VERB
a DET
commericalproduct NOUN
, PUNCT
just ADV
leave VERB
it PRON
out ADP
. PUNCT
You PRON
can AUX
include VERB
a DET
packet NOUN
( PUNCT
like SCONJ
somesalt NOUN
packets NOUN
) PUNCT
if SCONJ
you PRON
desire VERB
. PUNCT
Salt NOUN
, PUNCT
pepper NOUN
, PUNCT
mustard NOUN
, PUNCT
ketchup NOUN
, PUNCT
pickles NOUN
..... PUNCT
are AUX
table NOUN
options NOUN
. PUNCT
Treat VERB
MSG PROPN
the DET
same ADJ
way NOUN
. PUNCT
  SPACE
I PRON
would AUX
n't PART
shove VERB
my PRON
condiments NOUN
down ADP
yourthroat PRON
, PUNCT
do AUX
n't PART
shove VERB
yours PRON
down ADP
mine PRON
. PUNCT
WFL-- PROPN
Walter PROPN
LundbyNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59228From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>Do X
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
being AUX
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not PART
> X
a DET
quack NOUN
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack,>other PROPN
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
a DET
> X
commonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis,>or NOUN
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no ADV
longer ADV
> X
need VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
of ADP
> NUM
people NOUN
. PUNCT
I PRON
would AUX
say VERB
there PRON
are AUX
also ADV
significant ADJ
numbers NOUN
of ADP
unscrupulous ADJ
doctors NOUN
( PUNCT
ofthe NOUN
squeaky ADV
- PUNCT
clean ADJ
, PUNCT
traditional ADJ
crew NOUN
- PUNCT
cut VERB
, PUNCT
talk NOUN
to ADP
the DET
AMA PROPN
before ADP
startingany ADJ
treatment NOUN
, PUNCT
kind NOUN
) PUNCT
who PRON
recommend VERB
treatments NOUN
that SCONJ
, PUNCT
though SCONJ
" PUNCT
accepted VERB
" PUNCT
, PUNCT
maynot PROPN
be AUX
necessary ADJ
for ADP
the DET
patient NOUN
at ADP
the DET
time NOUN
. PUNCT
  SPACE
And CCONJ
all DET
for ADP
making VERB
a DET
quickbuck NOUN
. PUNCT
  SPACE
I PRON
would AUX
not PART
be AUX
surprised ADJ
if SCONJ
the DET
cost NOUN
of ADP
medical ADJ
services NOUN
in ADP
the DET
U.S. PROPN
issignificantly ADV
inflated VERB
by ADP
these DET
" PUNCT
quacks NOUN
of ADP
a DET
different ADJ
color NOUN
" PUNCT
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
I'dsay VERB
these DET
doctors NOUN
are AUX
the DET
most ADV
dangerous ADJ
since SCONJ
they PRON
call VERB
into ADP
question NOUN
thetrue ADJ
focus NOUN
of ADP
the DET
medical ADJ
profession NOUN
. PUNCT
  SPACE
The DET
AMA PROPN
and CCONJ
the DET
Boards PROPN
should AUX
focuson VERB
these DET
" PUNCT
quacks NOUN
" PUNCT
instead ADV
of ADP
devoting VERB
unbelievable ADJ
energy NOUN
on ADP
' PUNCT
search NOUN
- PUNCT
and CCONJ
- PUNCT
destroy NOUN
- PUNCT
missions NOUN
' PUNCT
to PART
pull VERB
the DET
licenses NOUN
of ADP
those DET
doctors NOUN
who PRON
are AUX
trying VERB
non ADJ
- ADJ
traditional ADJ
or CCONJ
not PART
fully ADV
accepted VERB
treatments NOUN
for ADP
their PRON
desperate ADJ
patientsthat NOUN
traditional ADJ
/ SYM
accepted VERB
medicine NOUN
can AUX
not PART
help.***************************************************Now VERB
to PART
make VERB
a DET
general ADJ
comment NOUN
on ADP
many ADJ
recent ADJ
posts:***************************************************Lately ADV
I PRON
've AUX
seen VERB
the DET
word NOUN
" PUNCT
quack NOUN
" PUNCT
bandied VERB
about ADP
recklessly ADV
. PUNCT
  SPACE
When ADV
a DET
doctor NOUN
ordoctor NOUN
- PUNCT
wanna PROPN
- PUNCT
be PROPN
has AUX
decided VERB
to PART
quit VERB
discussing VERB
any DET
controversial ADJ
medicalsubject NOUN
in ADP
a DET
civilized ADJ
manner NOUN
, PUNCT
all DET
he PRON
/ CCONJ
she PRON
has AUX
to PART
do AUX
is AUX
say VERB
" PUNCT
quack ADJ
- PUNCT
quack NOUN
" PUNCT
andsomehow ADV
they PRON
magically ADV
expect VERB
the DET
readership NOUN
of ADP
this DET
newsgroup NOUN
to PART
roll VERB
overon ADP
their PRON
backs NOUN
and CCONJ
pee NOUN
- PUNCT
pee PROPN
on ADP
themselves PRON
in ADP
obedience NOUN
. PUNCT
  SPACE
What PRON
do AUX
they PRON
teachyou VERB
in ADP
medical ADJ
school NOUN
- PUNCT
how ADV
to PART
throw VERB
your PRON
authority NOUN
around?Let VERB
me PRON
put VERB
it PRON
another DET
way NOUN
to PART
make VERB
my PRON
point NOUN
clear ADJ
: PUNCT
  SPACE
" PUNCT
quack INTJ
" PUNCT
is AUX
a DET
nebulous ADJ
wordlacking NOUN
in ADP
any DET
precision NOUN
. PUNCT
  SPACE
Its PRON
sole ADJ
use NOUN
is AUX
to PART
obfuscate VERB
the DET
issues NOUN
at ADP
hand NOUN
. PUNCT
The DET
indiscriminate ADJ
use NOUN
of ADP
this DET
word NOUN
is AUX
a DET
sure ADJ
sign NOUN
of ADP
incompetency NOUN
; PUNCT
  SPACE
and CCONJ
comingfrom VERB
any DET
medical ADJ
doctor NOUN
( PUNCT
or CCONJ
wanna PROPN
- PUNCT
be PROPN
) PUNCT
, PUNCT
where ADV
competency NOUN
is AUX
expected VERB
, PUNCT
is AUX
realscary ADJ
. PUNCT
But CCONJ
what PRON
do AUX
I PRON
know VERB
, PUNCT
I PRON
've AUX
already ADV
been AUX
diagnosed VERB
by ADP
the DET
sci.med.gods PROPN
in ADP
thisnewsgroup NOUN
as SCONJ
being AUX
' PUNCT
anal ADJ
retentive NOUN
' PUNCT
, PUNCT
and CCONJ
' PUNCT
psychotic ADJ
' PUNCT
. PUNCT
  SPACE
I PRON
look VERB
forward ADV
to ADP
morenet.diagnoses NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
're AUX
free ADJ
. PUNCT
Jon PROPN
" PUNCT
Quacks NOUN
' PUNCT
R NOUN
Us PROPN
" PUNCT
Noring(p.s PUNCT
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
onthe DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
andtheories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group NOUN
. PUNCT
You PRON
can AUX
call VERB
it PRON
sci.med.traditional.moderated VERB
or CCONJ
sci.med.AMA-approved VERB
, PUNCT
so ADV
youcan PROPN
keep VERB
anal ADJ
- PUNCT
retentives NOUN
like SCONJ
me PRON
out SCONJ
of ADP
it.)-- PROPN
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59229From NUM
: PUNCT
Pat PROPN
Lydon PROPN
< X
pat@netmanage.com>Subject VERB
: PUNCT
HELP PROPN
... PUNCT
REFLUX PROPN
ESOPHAGITISI NOUN
am AUX
writing VERB
this DET
to PART
find VERB
out ADP
the DET
following:1 NUM
. PUNCT
) PUNCT
	 SPACE
Any DET
information NOUN
on ADP
surgery NOUN
to PART
prevent VERB
reflux NOUN
esophagitis.2 PROPN
. PUNCT
) PUNCT
	 SPACE
The DET
name(s PROPN
) PUNCT
of ADP
a DET
doctor(s PROPN
) PUNCT
who PRON
specialize VERB
in ADP
such ADJ
surgery.3 PROPN
. PUNCT
) PUNCT
	 SPACE
Information NOUN
on ADP
reflux NOUN
esophagitis NOUN
which PRON
leads VERB
to ADP
cancer NOUN
. PUNCT
My PRON
boyfriend NOUN
, PUNCT
age NOUN
34 NUM
and CCONJ
otherwise ADV
in ADP
good ADJ
health NOUN
, PUNCT
was AUX
diagnosed VERB
with ADP
reflux PROPN
esophagitis PROPN
and CCONJ
a DET
hiatal ADJ
hernia NOUN
about ADV
2 NUM
years NOUN
ago ADV
. PUNCT
  SPACE
At ADP
that DET
time NOUN
he PRON
saw VERB
a DET
gastroenterologist NOUN
and CCONJ
has AUX
tried VERB
acid ADJ
controllers NOUN
( PUNCT
Mylanta PROPN
, PUNCT
Tagamet PROPN
) PUNCT
, PUNCT
as ADV
well ADV
as SCONJ
a DET
restricted VERB
diet NOUN
and CCONJ
raising VERB
the DET
head NOUN
of ADP
his PRON
bed NOUN
. PUNCT
  SPACE
These DET
treatments NOUN
were AUX
not PART
effective ADJ
and CCONJ
because SCONJ
the DET
damage NOUN
was AUX
worsening VERB
, PUNCT
he PRON
opted VERB
for ADP
a DET
surgical ADJ
repair NOUN
3 NUM
months NOUN
ago ADV
. PUNCT
  SPACE
He PRON
was AUX
told VERB
there PRON
were AUX
two NUM
repair NOUN
techniques NOUN
that PRON
could AUX
fix VERB
the DET
problem NOUN
; PUNCT
a DET
Nissen PROPN
wrap NOUN
and CCONJ
a DET
" PUNCT
Hill PROPN
Repair PROPN
" PUNCT
. PUNCT
  SPACE
He PRON
opted VERB
for ADP
the DET
" PUNCT
Hill PROPN
Repair PROPN
" PUNCT
. PUNCT
He PRON
recovered VERB
very ADV
well ADV
from ADP
the DET
surgery NOUN
itself PRON
but CCONJ
the DET
pain NOUN
he PRON
had AUX
originally ADV
is AUX
worse ADJ
and CCONJ
in ADP
addition NOUN
he PRON
now ADV
has AUX
trouble NOUN
swallowing VERB
( PUNCT
including VERB
saliva).The DET
doctor NOUN
now ADV
wants VERB
to PART
do AUX
an DET
endoscopy NOUN
and CCONJ
has AUX
also ADV
informed VERB
him PRON
that SCONJ
a DET
biopsy NOUN
might AUX
be AUX
necessary ADJ
if SCONJ
he PRON
has AUX
a DET
pre ADJ
- ADJ
cancerous ADJ
condition NOUN
which PRON
he PRON
called VERB
" PUNCT
Barrett PROPN
's PART
Syndrome PROPN
" PUNCT
. PUNCT
If SCONJ
he PRON
ca AUX
n't PART
avoid VERB
having VERB
reflux NOUN
will AUX
he PRON
necessarily ADV
get AUX
cancer?Basically ADV
, PUNCT
if SCONJ
anyone PRON
has AUX
any DET
information NOUN
on ADP
what PRON
he PRON
should AUX
do AUX
now ADV
, PUNCT
I PRON
'd AUX
appreciate VERB
it PRON
. PUNCT
Thanks NOUN
, PUNCT
Pat PROPN
Lydon/ PROPN
NetManage PROPN
, PUNCT
Inc./ PROPN
Pat@netmanage.comNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59230From NUM
: PUNCT
davel@davelpcSanDiego NOUN
. PUNCT
NCR.com PROPN
( PUNCT
Dave PROPN
Lord)Subject NOUN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn NOUN
article NOUN
< X
1r8pcn$rm1@terminator.rs.itd.umich.edu NUM
> X
, PUNCT
Donald PROPN
Mackie<Donald_Mackie@med.umich.edu PROPN
> X
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff PROPN
, PUNCT
> X
tron@fafnir.la.locus.com PROPN
writes VERB
: PUNCT
> X
> X
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
> X
> X
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
> X
> X
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki PROPN
? PUNCT
> X
> X
I PRON
'm AUX
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
of ADP
> X
the DET
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-)It PROPN
's PART
plain ADJ
yoghurt NOUN
with ADP
grated VERB
cucumber NOUN
and CCONJ
coriander NOUN
( PUNCT
other ADJ
spices NOUN
aresometimes NOUN
used VERB
) PUNCT
. PUNCT
Some DET
people NOUN
use VERB
half ADJ
yoghurt NOUN
and CCONJ
half ADJ
mayonaise NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59231From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
uabdpo.dpo.uab.edu-230493173928@spam.dom.uab.edu ADJ
> X
uabdpo.dpo.uab.edu!gila005 ADJ
( PUNCT
Stephen PROPN
Holland PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr23.211108.26887@midway.uchicago.edu>,>bmdelane@quads.uchicago.edu NUM
( PUNCT
brian PROPN
manning PROPN
delaney PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
> X
One NUM
thing NOUN
that PRON
I PRON
have AUX
n't PART
seen VERB
in ADP
this DET
thread NOUN
is AUX
a DET
discussion NOUN
of ADP
the DET
> X
> X
relation NOUN
between ADP
IBD PROPN
inflammation NOUN
and CCONJ
the DET
profile NOUN
of ADP
ingested ADJ
fatty NOUN
> X
> X
acids NOUN
( PUNCT
FAs PROPN
) PUNCT
. PUNCT
> X
> X
[ PUNCT
.... PUNCT
] PUNCT
> X
[ PUNCT
.... PUNCT
] PUNCT
> X
even ADV
write VERB
a DET
letter NOUN
to ADP
the DET
editor NOUN
- PUNCT
it PRON
is AUX
a DET
good ADJ
point NOUN
. PUNCT
  SPACE
By ADP
the DET
way,>the ADJ
abbreviation NOUN
EPA PROPN
is AUX
not PART
in ADP
general ADJ
use NOUN
, PUNCT
so CCONJ
I PRON
do AUX
not PART
know VERB
what PRON
> X
fatty ADJ
acid NOUN
you PRON
are AUX
speaking VERB
about ADP
. PUNCT
Sorry INTJ
-- PUNCT
I PRON
mean VERB
eicosapentaenoic ADJ
acid.>And NOUN
to ADP
Brian PROPN
an DET
U NOUN
of ADP
C PROPN
--- PUNCT
  SPACE
There PRON
is AUX
a DET
physician NOUN
named VERB
Stephen PROPN
Hanauer PROPN
> X
there ADV
who PRON
is AUX
a DET
recognized VERB
expert NOUN
in ADP
the DET
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
You PRON
might AUX
> X
give VERB
him PRON
a DET
call NOUN
. PUNCT
Coincidentaly PROPN
, PUNCT
just ADV
yesterday NOUN
I PRON
was AUX
( PUNCT
finally ADV
) PUNCT
referred VERB
from ADP
the DET
clinicto NOUN
Hanauer PROPN
. PUNCT
I PRON
'm AUX
seeing VERB
him PRON
on ADP
May PROPN
24 NUM
. PUNCT
I PRON
'll AUX
report VERB
what PRON
he PRON
says VERB
aboutthis PROPN
question.>the PROPN
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
call VERB
please INTJ
say VERB
hello INTJ
to ADP
him PRON
from ADP
me,>I PROPN
was AUX
looking VERB
at ADP
U NOUN
of ADP
C PROPN
for ADP
a DET
position NOUN
, PUNCT
and CCONJ
perhaps ADV
still ADV
am AUX
. PUNCT
Will AUX
do.-Brian PROPN
DelaneyNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59232From NUM
: PUNCT
solmstead@PFC.Forestry X
. PUNCT
CA PROPN
( PUNCT
Sherry PROPN
Olmstead)Subject NUM
: PUNCT
Re ADP
: PUNCT
Heat PROPN
Shock PROPN
Proteinsrousseaua@immunex.com PROPN
writes VERB
about ADP
heat NOUN
shock NOUN
proteins NOUN
( PUNCT
HSP PROPN
's PART
) PUNCT
and CCONJ
DNA.I PROPN
hate VERB
to PART
be AUX
derogatory ADJ
, PUNCT
but CCONJ
in ADP
this DET
case NOUN
I PRON
think VERB
it PRON
's AUX
warranted VERB
. PUNCT
HSP PROPN
's PART
are AUX
part NOUN
of ADP
the DET
cellular ADJ
response NOUN
to ADP
stress NOUN
. PUNCT
  SPACE
The DET
only ADJ
reason NOUN
theyare NOUN
called VERB
' PUNCT
heat NOUN
shock NOUN
proteins NOUN
' PART
is AUX
because SCONJ
they PRON
were AUX
first ADV
demonstratedusing VERB
heat NOUN
shock NOUN
. PUNCT
  SPACE
Dead ADJ
tissue NOUN
( PUNCT
ie X
. PUNCT
meat NOUN
) PUNCT
is AUX
not PART
going VERB
to PART
produce VERB
ANYprotein- NOUN
because SCONJ
it PRON
's AUX
DEAD NOUN
! PUNCT
  SPACE
Also ADV
, PUNCT
who PRON
cares VERB
if SCONJ
the DET
DNA NOUN
you PRON
are AUX
ingesting VERB
is AUX
mutated VERB
! PUNCT
? PUNCT
  SPACE
It PRON
will AUX
be AUX
completely ADV
digested VERB
in ADP
your PRON
stomach NOUN
, PUNCT
which PRON
is AUX
about ADP
pH X
2 NUM
. PUNCT
  SPACE
Some DET
of ADP
you PRON
worry VERB
WAY PROPN
too ADV
much ADV
. PUNCT
  SPACE
Eat VERB
a DET
healthy ADJ
, PUNCT
balanced ADJ
diet NOUN
and CCONJ
relax VERB
. PUNCT
My PRON
advice NOUN
is AUX
, PUNCT
if SCONJ
you PRON
do AUX
n't PART
know VERB
what PRON
you PRON
are AUX
talking VERB
about ADP
, PUNCT
it PRON
is AUX
betterto ADJ
keep VERB
your PRON
mouth NOUN
shut VERB
than SCONJ
to PART
open VERB
it PRON
and CCONJ
remove VERB
all DET
doubt NOUN
about ADP
yourignorance NOUN
. PUNCT
  SPACE
Do AUX
n't PART
speculate VERB
, PUNCT
or CCONJ
at ADP
least ADJ
get AUX
some DET
concrete NOUN
informationbefore ADP
you PRON
do!Sherry VERB
OlmsteadBiochemist NOUN
  SPACE
SHERRY PROPN
OLMSTEAD PROPN
                   SPACE
Title NOUN
: PUNCT
Lab VERB
Technician ADJ
  SPACE
Forestry PROPN
Canada PROPN
                   SPACE
Phone NOUN
: PUNCT
( PUNCT
604 NUM
) PUNCT
363 NUM
- PUNCT
0600 NUM
  SPACE
Victoria PROPN
, PUNCT
B.C. PROPN
                    SPACE
Internet NOUN
: PUNCT
SOLMSTEAD@A1.PFC.Forestry X
. PUNCT
CANewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59233From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Poisoning VERB
with ADP
heavy ADJ
water NOUN
( PUNCT
was AUX
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?)In NOUN
article NOUN
< X
1993Apr19.043654.13068@informix.com NUM
> X
proberts@informix.com X
( PUNCT
Paul PROPN
Roberts PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr12.165410.4206@kestrel.edu NUM
> X
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes:>>>>I ADJ
recall NOUN
reading VERB
somewhere ADV
, PUNCT
during ADP
my PRON
youth NOUN
, PUNCT
in ADP
some DET
science NOUN
popularization>>book NOUN
, PUNCT
that SCONJ
whyle NOUN
isotope NOUN
changes NOUN
do AUX
n't PART
normally ADV
affect VERB
chemistry NOUN
, PUNCT
a DET
consumption>>of NOUN
only ADV
heavy ADJ
water NOUN
would AUX
be AUX
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
seeds NOUN
watered VERB
only ADV
with ADP
heavy>>water NOUN
do AUX
not PART
sprout VERB
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
about ADP
this?>>>>I NOUN
also ADV
heard VERB
this DET
. PUNCT
I PRON
always ADV
thought VERB
it PRON
might AUX
make VERB
a DET
good ADJ
eposide NOUN
of>'Columbo NUM
' PUNCT
for ADP
someone PRON
to PART
be AUX
poisoned VERB
with ADP
heavy ADJ
water NOUN
- PUNCT
it PRON
wouldn't PROPN
> X
show VERB
up ADP
in ADP
any DET
chemical NOUN
test NOUN
. PUNCT
No DET
one NOUN
else ADV
seems VERB
to PART
know VERB
, PUNCT
so ADV
I PRON
'll AUX
post VERB
this DET
. PUNCT
This DET
topic NOUN
came VERB
up ADP
on ADP
sci.physics.fusion NOUN
shortly ADV
after ADP
the DET
cold ADJ
- PUNCT
fusionflap NOUN
started VERB
. PUNCT
  SPACE
As SCONJ
I PRON
recall VERB
, PUNCT
its PRON
been AUX
done VERB
to ADP
some DET
experimental ADJ
mice NOUN
. PUNCT
They PRON
showed VERB
various ADJ
ill ADJ
effects NOUN
and CCONJ
eventually ADV
died VERB
. PUNCT
  SPACE
The DET
reason NOUN
isthat ADP
deuterium NOUN
does AUX
not PART
have AUX
exactly ADV
the DET
same ADJ
reaction NOUN
rates NOUN
ashydrogen VERB
due ADP
to ADP
its PRON
extra ADJ
mass NOUN
( PUNCT
which PRON
causes VERB
lower ADJ
velocity NOUN
, PUNCT
Boltzmanconstant PROPN
, PUNCT
mumble ADJ
) PUNCT
. PUNCT
  SPACE
This DET
throws VERB
various ADJ
bits NOUN
of ADP
body NOUN
biochemistry NOUN
outof PROPN
kilter PROPN
, PUNCT
and CCONJ
you PRON
get VERB
sick ADJ
and CCONJ
die VERB
. PUNCT
I've PROPN
never ADV
heard VERB
of ADP
anyone PRON
being AUX
poisened VERB
this DET
way NOUN
, PUNCT
in ADP
or CCONJ
out SCONJ
of ADP
reallife NOUN
. PUNCT
  SPACE
The DET
process NOUN
takes VERB
quite DET
a DET
while NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
wants VERB
to PART
write VERB
thisbook NOUN
, PUNCT
I PRON
would AUX
imagine VERB
you PRON
would AUX
have AUX
to:1 NOUN
: PUNCT
Replace VERB
a DET
significant ADJ
fraction NOUN
of ADP
the DET
water NOUN
in ADP
the DET
body NOUN
with ADP
heavy ADJ
   SPACE
water.2 ADV
: PUNCT
Wait VERB
while SCONJ
normal ADJ
breakdown NOUN
and CCONJ
repair NOUN
processes NOUN
cause VERB
other ADJ
   SPACE
molecules NOUN
in ADP
the DET
body NOUN
to PART
be AUX
synthesised VERB
using VERB
the DET
deuterium NOUN
. PUNCT
During ADP
this DET
process NOUN
the DET
victim NOUN
would AUX
gradually ADV
deteriorate VERB
andeventually ADV
die VERB
, PUNCT
but CCONJ
I PRON
imagine VERB
it PRON
would AUX
take VERB
weeks NOUN
during ADP
which PRON
thepoisoner NOUN
would AUX
have AUX
to PART
ensure VERB
that SCONJ
a DET
significant ADJ
proportion NOUN
of ADP
thewater NOUN
the DET
victim NOUN
ingested VERB
was AUX
heavy ADJ
. PUNCT
You PRON
would AUX
get AUX
such DET
a DET
mess NOUN
of ADP
symptoms NOUN
that PRON
the DET
doctors NOUN
would AUX
be AUX
bothalarmed VERB
and CCONJ
confused ADJ
. PUNCT
  SPACE
Why ADV
should AUX
every DET
organ NOUN
in ADP
the DET
body NOUN
suddenlybegin NOUN
to PART
deteriorate VERB
? PUNCT
  SPACE
If SCONJ
you PRON
can AUX
figure VERB
out ADP
how ADV
the DET
poisoner NOUN
gets VERB
theheavy ADJ
water NOUN
into ADP
the DET
victim NOUN
in ADP
a DET
hospital NOUN
then ADV
you PRON
could AUX
have AUX
a DET
realstory ADJ
here ADV
. PUNCT
Come VERB
to PART
think VERB
of ADP
it PRON
, PUNCT
< X
2 NUM
> X
would AUX
continue VERB
even ADV
after ADP
the DET
heavy ADJ
water NOUN
wasno NOUN
longer ADV
being AUX
ingested VERB
, PUNCT
so CCONJ
hospitalisation NOUN
might AUX
be AUX
too ADV
late ADJ
. PUNCT
The DET
most ADV
detectable ADJ
effect NOUN
would AUX
be AUX
that SCONJ
the DET
victim NOUN
's PART
body NOUN
fluidswould AUX
literally ADV
be AUX
" PUNCT
heavy ADJ
" PUNCT
. PUNCT
  SPACE
Water PROPN
has AUX
a DET
molecular ADJ
weight NOUN
of ADP
18 NUM
andheavy NOUN
water NOUN
has AUX
a DET
MW PROPN
of ADP
20 NUM
. PUNCT
  SPACE
Thus ADV
the DET
victim NOUN
's PART
weight NOUN
will AUX
increase VERB
byabout ADV
1 NUM
% NOUN
for ADP
every DET
10 NUM
% NOUN
of ADP
body NOUN
water NOUN
replaced VERB
by ADP
heavy ADJ
water NOUN
. PUNCT
  SPACE
Maybethe PROPN
detection NOUN
occurs VERB
because SCONJ
some DET
pathologist NOUN
in ADP
the DET
lab NOUN
notices VERB
thatthe PROPN
victim NOUN
's PART
urine NOUN
is AUX
strangely ADV
dense ADJ
. PUNCT
  SPACE
Is AUX
there PRON
any DET
medical ADJ
testinvolving VERB
the DET
specific ADJ
gravity NOUN
of ADP
a DET
body NOUN
fluid?Paul.-- PROPN
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59234From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
cholistasis(sp?)/fat ADJ
- PUNCT
free ADJ
diet/pregnancy!!heart@access.digex.com PROPN
( PUNCT
G PROPN
) PUNCT
writes:>Hi,>I've PROPN
just ADV
returned VERB
from ADP
a DET
visit NOUN
with ADP
my PRON
OB PROPN
/ SYM
GYN PROPN
and CCONJ
I PRON
have AUX
a DET
few ADJ
> NOUN
concerns NOUN
that SCONJ
maybe ADV
y' PRON
all DET
can AUX
help VERB
me PRON
with ADP
. PUNCT
  SPACE
I PRON
've AUX
been AUX
seeing VERB
> PUNCT
her PRON
every DET
4 NUM
weeks NOUN
for ADP
the DET
past ADJ
few ADJ
months NOUN
( PUNCT
I PRON
'm AUX
at ADP
week NOUN
28 NUM
) PUNCT
> X
and CCONJ
during ADP
the DET
last ADJ
2 NUM
visits NOUN
I PRON
've AUX
gained VERB
9 NUM
to ADP
9 NUM
1/2 NUM
pounds NOUN
every DET
> X
4 NUM
weeks NOUN
. PUNCT
  SPACE
She PRON
said VERB
this DET
was AUX
unacceptable ADJ
over ADP
any DET
4 NUM
week NOUN
period NOUN
. PUNCT
> X
As SCONJ
it PRON
stands VERB
I PRON
've AUX
thus ADV
far ADV
gained VERB
26 NUM
pounds NOUN
. PUNCT
  SPACE
Also ADV
she PRON
says VERB
that SCONJ
> X
though SCONJ
I PRON
'm AUX
at ADP
28 NUM
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
is AUX
27 NUM
weeks NOUN
, PUNCT
I PRON
think VERB
she PRON
> X
mentioned VERB
27 NUM
inches NOUN
for ADP
the DET
top NOUN
of ADP
the DET
fundus NOUN
. PUNCT
  SPACE
When ADV
I PRON
was AUX
13 NUM
> X
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
was AUX
14 NUM
weeks NOUN
. PUNCT
  SPACE
I PRON
must AUX
also ADV
add VERB
, PUNCT
that SCONJ
I PRON
had AUX
> X
an DET
operation NOUN
a DET
few ADJ
years NOUN
ago ADV
for ADP
endometriosis NOUN
and CCONJ
I PRON
've AUX
had VERB
no DET
> NOUN
problems NOUN
with ADP
endometriosis NOUN
but CCONJ
apparently ADV
it PRON
is AUX
causing VERB
me PRON
pain NOUN
> X
in ADP
my PRON
pelvic ADJ
region NOUN
during ADP
the DET
pregnancy NOUN
, PUNCT
and CCONJ
I PRON
have AUX
a DET
very ADV
> X
difficult ADJ
time NOUN
moving VERB
, PUNCT
and CCONJ
the DET
doc NOUN
has AUX
recommended VERB
I PRON
not PART
walk VERB
or CCONJ
> X
move VERB
unless SCONJ
I PRON
have AUX
to PART
. PUNCT
( PUNCT
I PRON
have AUX
a DET
little ADJ
handicapped ADJ
sticker NOUN
for ADP
> X
when ADV
I PRON
do AUX
need VERB
to PART
go VERB
out ADP
. PUNCT
) PUNCT
> X
Anyway INTJ
that DET
's AUX
1/2 NUM
of ADP
the DET
situation NOUN
the DET
other ADJ
is AUX
that SCONJ
almost ADV
from ADP
> X
the DET
beginning NOUN
of ADP
pregnancy NOUN
I PRON
was AUX
getting VERB
sick ADJ
( PUNCT
throwing VERB
up ADP
) PUNCT
about ADP
> SYM
2 NUM
- SYM
3 NUM
times NOUN
a DET
day NOUN
and CCONJ
mostly ADV
it PRON
was AUX
bile ADJ
that PRON
was AUX
being AUX
eliminated VERB
. PUNCT
  SPACE
> X
( PUNCT
I PRON
told VERB
her PRON
about ADP
this DET
) PUNCT
. PUNCT
  SPACE
I PRON
know VERB
this DET
because SCONJ
I PRON
was AUX
n't PART
eating VERB
> X
very ADV
much ADV
due ADP
to ADP
the DET
nausea NOUN
and CCONJ
could AUX
see VERB
the DET
' PUNCT
results NOUN
' PUNCT
. PUNCT
  SPACE
Well INTJ
> X
now ADV
I PRON
only ADV
get VERB
sick ADJ
about ADP
once ADV
every DET
1 NUM
- SYM
2 NUM
weeks NOUN
, PUNCT
and CCONJ
it PRON
is AUX
still ADV
bile ADJ
> X
related VERB
. PUNCT
  SPACE
But CCONJ
in ADP
addition NOUN
I PRON
had AUX
begun VERB
to PART
feel VERB
movement NOUN
near SCONJ
my PRON
> X
upper ADJ
right ADJ
abdomen NOUN
, PUNCT
just ADV
below ADP
the DET
right ADJ
breast NOUN
, PUNCT
usually ADV
when ADV
I PRON
> X
was AUX
lying VERB
on ADP
my PRON
right ADJ
side NOUN
. PUNCT
  SPACE
It PRON
began VERB
to PART
get AUX
worse ADJ
though ADV
because SCONJ
> X
it PRON
started VERB
to PART
hurt VERB
when ADV
I PRON
lay VERB
on ADP
my PRON
right ADJ
side NOUN
, PUNCT
and CCONJ
then ADV
it PRON
hurt VERB
  SPACE
> X
no ADV
matter ADV
what PRON
position NOUN
I PRON
was AUX
in ADV
. PUNCT
  SPACE
Next ADV
, PUNCT
I PRON
noticed VERB
that SCONJ
when ADV
I PRON
> X
ate VERB
greasy NOUN
or CCONJ
fatty NOUN
foods NOUN
I PRON
felt VERB
like SCONJ
my PRON
entire ADJ
abdomen NOUN
had AUX
> X
turned VERB
to ADP
stone NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
in ADP
the DET
area NOUN
got VERB
worse ADJ
. PUNCT
  SPACE
However ADV
if SCONJ
> X
I PRON
ate VERB
sauerkraut NOUN
or CCONJ
vinegar NOUN
or CCONJ
something PRON
to PART
' PUNCT
cut VERB
' PUNCT
the DET
fat NOUN
it PRON
> X
was AUX
n't PART
as ADV
much ADJ
of ADP
a DET
problem.>So NUM
the DET
doctor NOUN
says VERB
I PRON
have AUX
cholistatis NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
should AUX
avoid VERB
> X
fatty PROPN
foods NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
, PUNCT
and CCONJ
because SCONJ
I PRON
was AUX
already ADV
aware ADJ
> X
of ADP
what PRON
seemed VERB
to ADP
me PRON
this DET
cause NOUN
and CCONJ
effect NOUN
relationship NOUN
I PRON
have AUX
> X
been AUX
avoiding VERB
these DET
foods NOUN
on ADP
my PRON
own ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
still ADV
able ADJ
to PART
eat VERB
> X
foods NOUN
with ADP
Ricotta PROPN
cheese NOUN
for ADP
instance NOUN
and CCONJ
other ADJ
low ADJ
fat ADJ
foods NOUN
. PUNCT
  SPACE
> X
But CCONJ
doc PROPN
wants VERB
me PRON
to PART
be AUX
on ADP
a DET
non ADJ
- ADJ
fat ADJ
diet NOUN
. PUNCT
  SPACE
This DET
means VERB
no DET
meat NOUN
> X
except SCONJ
fish NOUN
and CCONJ
chicken NOUN
w/o ADP
skin NOUN
( PUNCT
I PRON
do AUX
this DET
anyway ADV
) PUNCT
. PUNCT
  SPACE
No DET
nuts NOUN
, PUNCT
> X
fried VERB
food NOUN
, PUNCT
cheese NOUN
etc X
. PUNCT
  SPACE
I PRON
am AUX
allowed VERB
skim PROPN
milk NOUN
. PUNCT
  SPACE
She PRON
said VERB
I PRON
> X
should AUX
avoid VERB
anything PRON
sweet ADJ
( PUNCT
e.g. ADV
bananas PROPN
) PUNCT
. PUNCT
  SPACE
Also ADV
I PRON
must AUX
only ADV
> X
have AUX
one NUM
serving VERB
of ADP
something PRON
high ADJ
in ADP
carbohydrates NOUN
a DET
day NOUN
( PUNCT
> X
potatoes PROPN
, PUNCT
pasta NOUN
, PUNCT
rice NOUN
) PUNCT
! PUNCT
  SPACE
She PRON
said VERB
I PRON
ca AUX
n't PART
even ADV
cook VERB
vegetables NOUN
in ADP
> X
a DET
little ADJ
bit NOUN
of ADP
oil NOUN
and CCONJ
that SCONJ
I PRON
should AUX
eat VERB
vegetables NOUN
raw ADJ
or CCONJ
> X
steamed VERB
. PUNCT
  SPACE
I PRON
'm AUX
concerned ADJ
because SCONJ
I PRON
understand VERB
you PRON
need VERB
to PART
have AUX
> X
some DET
fat NOUN
in ADP
your PRON
diet NOUN
to PART
help VERB
in ADP
the DET
digestive ADJ
process NOUN
. PUNCT
  SPACE
And CCONJ
if SCONJ
> X
I PRON
'm AUX
not PART
taking VERB
in ADP
fat NOUN
, PUNCT
is AUX
she PRON
expecting VERB
the DET
baby NOUN
will AUX
take VERB
it PRON
> X
from ADP
my PRON
stores NOUN
? PUNCT
  SPACE
And CCONJ
why ADV
this DET
restriction NOUN
on ADP
carbohydrates NOUN
if SCONJ
> X
she PRON
's AUX
concerned ADJ
about ADP
fat NOUN
? PUNCT
  SPACE
I PRON
'm AUX
not PART
clear ADJ
how ADV
much ADJ
of ADP
her PRON
> X
recommendation NOUN
is AUX
based VERB
on ADP
my PRON
weight NOUN
gain NOUN
and CCONJ
how ADV
much ADJ
on ADP
> X
cholistatis PROPN
, PUNCT
which PRON
I PRON
ca AUX
n't PART
seem VERB
to PART
find VERB
any DET
information NOUN
on ADP
. PUNCT
  SPACE
She PRON
> X
originally ADV
said VERB
that SCONJ
I PRON
should AUX
only ADV
gain VERB
20 NUM
pounds NOUN
during ADP
the DET
> X
entire ADJ
pregnancy NOUN
since SCONJ
I PRON
was AUX
about ADV
20 NUM
lbs NOUN
overweight NOUN
when ADV
I PRON
> X
started VERB
. PUNCT
  SPACE
But CCONJ
my PRON
sister NOUN
gained VERB
60 NUM
lbs NOUN
during ADP
her PRON
pregnancy NOUN
and CCONJ
> X
she PRON
's AUX
taken VERB
it PRON
all DET
off ADP
and CCONJ
has AUX
n't PART
had VERB
any DET
problems NOUN
. PUNCT
  SPACE
She PRON
also ADV
> X
asked VERB
if SCONJ
any DET
members NOUN
of ADP
my PRON
family NOUN
were AUX
obese ADJ
, PUNCT
which PRON
none NOUN
of ADP
them PRON
> X
are AUX
. PUNCT
  SPACE
Anyway INTJ
I PRON
think VERB
she PRON
is AUX
overly ADV
concerned ADJ
about ADP
weight NOUN
gain NOUN
, PUNCT
> X
and CCONJ
feel VERB
like SCONJ
I PRON
'm AUX
being AUX
' PUNCT
punished VERB
' PUNCT
by ADP
a DET
severe ADJ
diet NOUN
. PUNCT
  SPACE
She PRON
did AUX
> X
want VERB
to PART
see VERB
me PRON
again ADV
in ADP
one NUM
week NOUN
so ADV
I PRON
think VERB
she PRON
the DET
diet NOUN
may AUX
be AUX
> X
temporary ADJ
for ADP
that DET
one NUM
week NOUN
. PUNCT
> X
What PRON
I PRON
want VERB
to PART
know VERB
is AUX
how ADV
reasonable ADJ
is AUX
this DET
non ADJ
- ADJ
fat ADJ
diet NOUN
? PUNCT
  SPACE
I PRON
> X
would AUX
understand VERB
if SCONJ
she PRON
had AUX
said VERB
low ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
since SCONJ
I PRON
'm AUX
trying VERB
> X
that ADV
anyway ADV
, PUNCT
even ADV
if SCONJ
she PRON
said VERB
really ADV
low ADJ
- PUNCT
fat NOUN
diet NOUN
. PUNCT
  SPACE
I PRON
think VERB
she PRON
> X
assumes VERB
I PRON
must AUX
be AUX
eating VERB
a DET
high ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
but CCONJ
really ADV
it PRON
is AUX
that DET
> X
because SCONJ
of ADP
the DET
endometriosis NOUN
and CCONJ
the DET
operation NOUN
I PRON
'm AUX
not PART
able ADJ
to PART
> X
use VERB
the DET
energy NOUN
from ADP
the DET
food NOUN
I PRON
do AUX
eat VERB
. PUNCT
> X
Any DET
opinions NOUN
, PUNCT
info NOUN
and CCONJ
experiences NOUN
will AUX
be AUX
appreciated VERB
. PUNCT
  SPACE
I PRON
'm AUX
> X
truly ADV
going VERB
stark ADJ
raving VERB
mad ADJ
trying VERB
to PART
meet VERB
this DET
new ADJ
strict ADJ
diet NOUN
> X
because SCONJ
fruits NOUN
and CCONJ
vegetables NOUN
go VERB
through ADP
my PRON
system NOUN
in ADP
a DET
few ADJ
> X
minutes NOUN
and CCONJ
I PRON
'll AUX
end VERB
up ADP
having VERB
to PART
eat VERB
constantly ADV
. PUNCT
  SPACE
Thus ADV
far ADV
I PRON
> X
do AUX
n't PART
find VERB
any DET
foods NOUN
satisfying.>Thanks NOUN
> X
GFor PROPN
one NUM
week NOUN
, PUNCT
she PRON
probably ADV
wants VERB
to PART
see VERB
how ADV
you PRON
react VERB
to ADP
the DET
diet NOUN
. PUNCT
If SCONJ
itchanges NOUN
anything PRON
. PUNCT
You PRON
can AUX
live VERB
on ADP
the DET
diet NOUN
but CCONJ
you PRON
need VERB
to PART
up ADP
your PRON
calories NOUN
. PUNCT
Where ADV
before ADP
youhad PROPN
a DET
pat NOUN
of ADP
butter NOUN
now ADV
you PRON
need VERB
a DET
medium ADJ
apple NOUN
( PUNCT
probably ADV
microwavecooked VERB
) PUNCT
. PUNCT
  SPACE
Smaller ADJ
meals NOUN
but CCONJ
more ADJ
of ADP
them PRON
. PUNCT
Not PART
terrific ADJ
amounts NOUN
of ADP
meat NOUN
, PUNCT
it'shard PROPN
to PART
digest VERB
anyway ADV
. PUNCT
For ADP
comfort NOUN
and CCONJ
to PART
make VERB
the DET
carbohydrate NOUN
meal NOUN
" PUNCT
last ADJ
" PUNCT
longer ADJ
eat VERB
pasta NOUN
orrice NOUN
which PRON
give VERB
their PRON
calories NOUN
up ADP
slowly ADV
rather ADV
than SCONJ
bread NOUN
or CCONJ
corn NOUN
. PUNCT
Maybesmaller NOUN
meals NOUN
as SCONJ
you PRON
may AUX
be AUX
getting VERB
less ADJ
room NOUN
in ADP
the DET
stomach NOUN
area NOUN
. PUNCT
Is AUX
thebaby NOUN
still ADV
coming VERB
up ADP
. PUNCT
Is AUX
it PRON
starting VERB
to PART
push VERB
or CCONJ
rub VERB
under ADP
your PRON
ribs NOUN
? PUNCT
Howtight PROPN
are AUX
your PRON
clothes NOUN
. PUNCT
You PRON
should AUX
n't PART
be AUX
wearing VERB
any DET
clothing NOUN
that PRON
compresses VERB
your PRON
middle NOUN
. PUNCT
Be AUX
sure ADJ
not PART
to PART
" PUNCT
suck VERB
in ADP
" PUNCT
your PRON
stomach NOUN
when ADV
sitting VERB
, PUNCT
again ADV
itwill VERB
put VERB
pressure NOUN
on ADP
the DET
digestive ADJ
tract NOUN
. PUNCT
Try VERB
laying VERB
on ADP
your PRON
sides NOUN
, PUNCT
back ADV
, PUNCT
and CCONJ
stay VERB
in ADP
reclining VERB
positions NOUN
for ADP
the DET
many ADJ
hours NOUN
you PRON
are AUX
being AUX
inactive ADJ
. PUNCT
Easier ADJ
on ADP
your PRON
legs NOUN
( PUNCT
circulation NOUN
) PUNCT
as ADV
well ADV
. PUNCT
You PRON
might AUX
try VERB
letting VERB
the DET
baby"turn NOUN
" PUNCT
or CCONJ
at ADP
least ADJ
not PART
be AUX
forced VERB
under ADP
the DET
ribs NOUN
during ADP
the DET
last ADJ
months NOUN
. PUNCT
When ADV
you PRON
are AUX
shortwaisted VERB
it PRON
's AUX
easy ADJ
for ADP
that DET
baby NOUN
to PART
end VERB
up ADP
right ADV
under ADP
thediaphram PROPN
, PUNCT
especially ADV
if SCONJ
you PRON
have AUX
tight ADJ
abdominal ADJ
muscles NOUN
. PUNCT
If SCONJ
I PRON
had AUX
mysecond NUM
one NUM
to PART
do AUX
over ADP
again ADV
I PRON
think VERB
I PRON
'd AUX
have AUX
tried VERB
to PART
loosen VERB
up ADP
since SCONJ
hedidn't PROPN
turn VERB
sideways ADV
until ADP
late ADJ
and CCONJ
the DET
relief NOUN
was AUX
enormous ADJ
. PUNCT
Maybe ADV
this DET
doctor NOUN
does AUX
have AUX
a DET
thing NOUN
about ADP
weight NOUN
gain NOUN
in ADP
pregnancy NOUN
or CCONJ
maybeshe PROPN
just ADV
nags VERB
all DET
her PRON
patients NOUN
this DET
way NOUN
. PUNCT
Especially ADV
if SCONJ
she PRON
's AUX
young ADJ
. PUNCT
But CCONJ
this DET
gallbladder NOUN
/ PUNCT
whatever PRON
problem NOUN
that PRON
might AUX
be AUX
coming VERB
up ADP
is AUX
somethingto NOUN
be AUX
avoided VERB
if SCONJ
possible ADJ
. PUNCT
Nausea NOUN
, PUNCT
etc X
. PUNCT
can AUX
vary VERB
from ADP
person NOUN
to ADP
person NOUN
and CCONJ
with ADP
each DET
pregnancy NOUN
. PUNCT
Myfirst NOUN
pregnancy NOUN
was AUX
miserable ADJ
. PUNCT
During ADP
the DET
second ADJ
I PRON
had AUX
very ADV
little ADJ
trouble NOUN
. PUNCT
Some DET
articles NOUN
have AUX
said VERB
that SCONJ
women NOUN
with ADP
nausea NOUN
had AUX
a DET
statistically ADJ
betterchance NOUN
of ADP
carrying VERB
their PRON
baby NOUN
. PUNCT
( PUNCT
grain NOUN
of ADP
salt NOUN
here ADV
) PUNCT
Good ADJ
luck NOUN
- PUNCT
Jackie PROPN
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59235From NUM
: PUNCT
bbenowit@telesciences.com X
( PUNCT
Barry PROPN
D PROPN
Benowitz)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
   SPACE
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
   SPACE
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
   SPACE
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
> X
   SPACE
Thanks INTJ
. PUNCT
Yes INTJ
, PUNCT
there PRON
is AUX
such DET
a DET
thing NOUN
as SCONJ
eye NOUN
dominance NOUN
, PUNCT
although SCONJ
I PRON
am AUX
not PART
sure ADJ
ifthis NOUN
dominance NOUN
refers VERB
to ADP
perscription NOUN
strength NOUN
. PUNCT
As SCONJ
i PRON
recall VERB
, PUNCT
if SCONJ
you PRON
selectively ADV
close VERB
your PRON
dominant ADJ
eye NOUN
, PUNCT
you PRON
will AUX
percievethat VERB
the DET
image NOUN
shifts NOUN
. PUNCT
This DET
will AUX
not PART
happen VERB
if SCONJ
you PRON
close VERB
your PRON
other ADJ
eye NOUN
. PUNCT
I PRON
believe VERB
that SCONJ
which PRON
eye NOUN
is AUX
dominant ADJ
is AUX
related VERB
to ADP
handedness NOUN
, PUNCT
but CCONJ
Ican't PROPN
recall VERB
the DET
relation NOUN
at ADP
the DET
moment.--Barry NOUN
D. PROPN
BenowitzEMail PROPN
: PUNCT
	 SPACE
bbenowit@telesciences.com X
( PUNCT
... PUNCT
! PUNCT
pyrnj!telesci!bbenowit)Phone NOUN
: PUNCT
	 SPACE
+1 PROPN
609 NUM
866 NUM
1000 NUM
x354Snail NUM
: PUNCT
	 SPACE
Telesciences PROPN
CO PROPN
Systems PROPN
, PUNCT
351 NUM
New PROPN
Albany PROPN
Rd PROPN
, PUNCT
Moorestown PROPN
, PUNCT
NJ PROPN
, PUNCT
08057 NUM
- SYM
1177Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59236From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
Fictionrind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.153000.1@vms.ocom.okstate.edu PROPN
> X
> X
banschbach@vms.ocom.okstate.edu INTJ
writes:>>poster PUNCT
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
> X
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
> X
Do AUX
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
being AUX
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not PART
> X
a DET
quack NOUN
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack,>other PROPN
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
a DET
> X
commonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis,>or NOUN
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no ADV
longer ADV
> X
need VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
of ADP
> X
people.>-- X
> X
David PROPN
RindSure PROPN
there PRON
are AUX
quacks NOUN
. PUNCT
There PRON
are AUX
quacks NOUN
who PRON
do AUX
n't PART
treat VERB
and CCONJ
quacks VERB
whotreat NOUN
. PUNCT
One NUM
's AUX
that PRON
refuse VERB
to PART
diagnose VERB
and CCONJ
ones NOUN
that PRON
diagnose VERB
improperly ADV
. PUNCT
There PRON
are AUX
lucky ADJ
quacks NOUN
and CCONJ
unlucky ADJ
quacks NOUN
. PUNCT
Smart ADJ
quacks VERB
and CCONJ
dumb ADJ
ones NOUN
. PUNCT
There PRON
are AUX
people NOUN
ahead ADV
of ADP
their PRON
time NOUN
, PUNCT
with ADP
unprobable ADJ
or CCONJ
unproven NUM
theoriesand NOUN
rationals NOUN
. PUNCT
There PRON
are AUX
ill ADV
- PUNCT
reasoned VERB
, PUNCT
absurd ADJ
, PUNCT
theorists NOUN
. PUNCT
Sometimes ADV
it PRON
's AUX
hard ADJ
to PART
tell VERB
who PRON
's AUX
who PRON
. PUNCT
  SPACE
Reading VERB
a DET
book NOUN
of ADP
ancient ADJ
jokes NOUN
it PRON
seems VERB
that SCONJ
doctors NOUN
called VERB
other ADJ
doctorsquacks NOUN
in ADP
Babylon PROPN
. PUNCT
Arguments NOUN
abound VERB
when ADV
there PRON
are AUX
n't PART
any DET
firm ADJ
answers NOUN
. PUNCT
Plenty NOUN
of ADP
illnessesaren't PROPN
, PUNCT
or CCONJ
ca AUX
n't PART
, PUNCT
be AUX
diagnosed VERB
or CCONJ
treated VERB
. PUNCT
But CCONJ
I PRON
think VERB
it PRON
's AUX
better ADJ
to ADP
argueagainst PROPN
the DET
theory NOUN
, PUNCT
as SCONJ
was AUX
originally ADV
done VERB
with ADP
postings NOUN
on ADP
candida PROPN
a DET
monthor NOUN
so ADV
ago ADV
. PUNCT
Stating VERB
the DET
facts NOUN
usually ADV
works VERB
better ADV
than SCONJ
simply ADV
asserting VERB
anopinion NOUN
about ADP
someone PRON
's PART
competency NOUN
. PUNCT
And CCONJ
you PRON
ca AUX
n't PART
convince VERB
everybody PRON
. PUNCT
Sometimes ADV
a DET
correct ADJ
diagnosistakes VERB
years NOUN
for ADP
people NOUN
: PUNCT
they PRON
do AUX
n't PART
run VERB
into ADP
a DET
doctor NOUN
who PRON
recognizes VERB
thedisease NOUN
, PUNCT
they PRON
have AUX
n't PART
developed VERB
something PRON
recognizable ADJ
yet ADV
, PUNCT
or CCONJ
they PRON
havesomething VERB
that SCONJ
no DET
one NOUN
is AUX
going VERB
to PART
recognize VERB
, PUNCT
because SCONJ
it PRON
has AUX
n't PART
beendescribed VERB
yet ADV
. PUNCT
Sometimes ADV
they PRON
get VERB
a DET
cure NOUN
, PUNCT
sometimes ADV
the DET
illness NOUN
wears VERB
out ADP
, PUNCT
sometimes ADV
they PRON
stumble VERB
on ADP
an DET
improper ADJ
diagnosis NOUN
with ADP
the DET
right ADJ
treatment NOUN
, PUNCT
sometimes ADV
they PRON
find VERB
it PRON
's AUX
incurable ADJ
. PUNCT
  SPACE
There PRON
is AUX
no DET
profit NOUN
in ADP
a DET
patient NOUN
accepting VERB
a DET
hopeless ADJ
attitude NOUN
about ADP
an DET
illness NOUN
. PUNCT
Unless SCONJ
it PRON
's AUX
a DET
rock NOUN
solid ADJ
diagnosis NOUN
of ADP
terminal ADJ
disease NOUN
it PRON
's AUX
ismore ADV
like INTJ
ly INTJ
that SCONJ
a DET
person NOUN
will AUX
find VERB
a DET
cure NOUN
if SCONJ
they PRON
keep VERB
looking VERB
. PUNCT
-Jackie X
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59237From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
< X
noringC5yL3I.3qo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>>Do VERB
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is>>being VERB
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not>>a PROPN
quack ADV
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack,>>other PROPN
people NOUN
should AUX
n't PART
say VERB
so?>I PROPN
would AUX
say VERB
there PRON
are AUX
also ADV
significant ADJ
numbers NOUN
of ADP
unscrupulous ADJ
doctors NOUN
( PUNCT
of ADP
> X
the DET
squeaky ADV
- PUNCT
clean ADJ
, PUNCT
traditional ADJ
crew NOUN
- PUNCT
cut VERB
, PUNCT
talk NOUN
to ADP
the DET
AMA PROPN
before ADP
starting VERB
> X
any DET
treatment NOUN
, PUNCT
kind)Umm PROPN
, PUNCT
were AUX
n't PART
you PRON
the DET
one NUM
objecting VERB
to ADP
someone PRON
who PRON
is AUX
a DET
" PUNCT
licensedphysician ADJ
" PUNCT
being AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
just ADV
that SCONJ
being AUX
a DET
licensedphysician NOUN
is AUX
a DET
good ADJ
defense NOUN
against ADP
charges NOUN
of ADP
quackery NOUN
when ADV
thephysician PROPN
agrees VERB
with ADP
your PRON
system NOUN
of ADP
beliefs?>Lately PUNCT
I PRON
've AUX
seen VERB
the DET
word NOUN
" PUNCT
quack NOUN
" PUNCT
bandied VERB
about ADP
recklessly ADV
. PUNCT
Actually ADV
, PUNCT
I PRON
almost ADV
never ADV
use VERB
the DET
term NOUN
quack NOUN
. PUNCT
  SPACE
When ADV
I PRON
discuss"systemic VERB
yeast NOUN
syndrome NOUN
" PUNCT
, PUNCT
however ADV
, PUNCT
I PRON
always ADV
point VERB
out ADP
thatmainstream NOUN
medicine NOUN
views NOUN
this DET
as SCONJ
a DET
quack ADJ
diagnosis NOUN
( PUNCT
and CCONJ
I PRON
agreewith VERB
that SCONJ
characterization).>Let PROPN
me PRON
put VERB
it PRON
another DET
way NOUN
to PART
make VERB
my PRON
point NOUN
clear ADJ
: PUNCT
  SPACE
" PUNCT
quack INTJ
" PUNCT
is AUX
a DET
nebulous ADJ
word NOUN
> X
lacking VERB
in ADP
any DET
precision NOUN
. PUNCT
Really ADV
? PUNCT
  SPACE
I PRON
bet VERB
virtually ADV
everyone PRON
reading VERB
these DET
posts NOUN
understands VERB
whatSteve PROPN
Dyer PROPN
, PUNCT
Gordon PROPN
Banks PROPN
, PUNCT
and CCONJ
I PRON
am AUX
implying VERB
when ADV
we PRON
have AUX
talked VERB
aboutsystemic ADJ
yeast NOUN
syndrome NOUN
as SCONJ
a DET
quack ADJ
diagnosis NOUN
. PUNCT
  SPACE
Would AUX
you PRON
prefer VERB
theword PROPN
" PUNCT
charlatan PROPN
" PUNCT
? PUNCT
  SPACE
( PUNCT
I PRON
do AUX
n't PART
happen VERB
to PART
think VERB
that SCONJ
all DET
quacks VERB
arecharlatans NOUN
since SCONJ
I PRON
suspect VERB
that SCONJ
some DET
believe VERB
in ADP
the DET
" PUNCT
diseases NOUN
" PUNCT
theyare PROPN
diagnosing.)>(p.s PROPN
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
on ADP
> X
the DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
and CCONJ
> X
theories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group NOUN
. PUNCT
Why ADV
? PUNCT
  SPACE
Is AUX
there PRON
some DET
reason NOUN
why ADV
you PRON
feel VERB
that SCONJ
it PRON
should AUX
n't PART
be AUX
pointed VERB
outin ADJ
SCI.med PROPN
that SCONJ
there PRON
is AUX
no DET
convincing ADJ
empirical ADJ
evidence NOUN
to PART
support VERB
the DET
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome?-- NOUN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59238From NUM
: PUNCT
vortex@zikzak.apana.org.au PROPN
( PUNCT
Paul PROPN
Anderson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?dougb@comm.mot.com PROPN
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:>My PROPN
wife NOUN
's PART
ob PROPN
- PUNCT
gyn PROPN
has AUX
an DET
ultrasound ADJ
machine NOUN
in ADP
her PRON
office NOUN
. PUNCT
  SPACE
When ADV
> X
On ADP
her PRON
next ADJ
visit NOUN
, PUNCT
my PRON
wife NOUN
asked VERB
another DET
doctor NOUN
in ADP
the DET
office NOUN
if SCONJ
> X
they PRON
read VERB
the DET
ultrasounds VERB
themselves PRON
or CCONJ
if SCONJ
they PRON
had AUX
a DET
radiologist NOUN
> X
read VERB
the DET
pictures NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
very ADV
vehemently ADV
insisted VERB
that SCONJ
they PRON
> X
were AUX
qualified ADJ
to PART
read VERB
the DET
ultrasound NOUN
and CCONJ
radiologists NOUN
were AUX
NOT!>My PROPN
wife NOUN
is AUX
concerned ADJ
about ADP
this DET
. PUNCT
  SPACE
She PRON
saw VERB
a DET
TV NOUN
show VERB
a DET
couple NOUN
months NOUN
> X
back ADV
( PUNCT
something PRON
like SCONJ
20/20 NUM
or CCONJ
Dateline PROPN
NBC PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
where ADV
an DET
expert NOUN
> X
on ADP
fetal ADJ
ultrasounds NOUN
( PUNCT
a DET
radiologist NOUN
) PUNCT
was AUX
showing VERB
all DET
the DET
different ADJ
> X
deffects NOUN
that PRON
could AUX
be AUX
detected VERB
using VERB
the DET
ultrasound.>Should PROPN
my PRON
wife NOUN
be AUX
concerned VERB
? PUNCT
  SPACE
Should AUX
we PRON
take VERB
the DET
pictures NOUN
to ADP
a DET
> X
radiologist NOUN
for ADP
a DET
second ADJ
opinion NOUN
? PUNCT
( PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
where ADV
would AUX
we PRON
find VERB
> X
such DET
an DET
expert NOUN
in ADP
Chicago PROPN
? PUNCT
) PUNCT
  SPACE
We PRON
do AUX
n't PART
really ADV
have AUX
any DET
special ADJ
medical ADJ
> X
reason NOUN
to PART
be AUX
concerned VERB
, PUNCT
but CCONJ
if SCONJ
a DET
radiologist NOUN
will AUX
be AUX
able ADJ
to PART
see VERB
> X
things NOUN
the DET
ob PROPN
- PUNCT
gyn PROPN
ca AUX
n't PART
, PUNCT
then ADV
I PRON
do AUX
n't PART
see VERB
why ADV
we PRON
should AUX
n't PART
use VERB
one.>Any NOUN
thoughts NOUN
? PUNCT
As ADV
far ADV
as SCONJ
I PRON
can AUX
see VERB
if SCONJ
your PRON
obstetrition NOUN
has AUX
an DET
ultrasound NOUN
in ADP
his PRON
roomsand NOUN
is AUX
expirienced VERB
its PRON
use NOUN
and CCONJ
interpretation NOUN
, PUNCT
he PRON
should AUX
be AUX
just ADV
ascapable ADJ
of ADP
reading VERB
it PRON
as SCONJ
any DET
radiologist NOUN
. PUNCT
All DET
doctors NOUN
are AUX
" PUNCT
qualified ADJ
" PUNCT
toread NOUN
x NOUN
- NOUN
rays NOUN
, PUNCT
u PROPN
/ SYM
s PROPN
, PUNCT
ct NOUN
scans VERB
etc X
. PUNCT
it PRON
is AUX
just ADV
that SCONJ
a DET
radiologist NOUN
does AUX
nothingelse VERB
, PUNCT
and CCONJ
thus ADV
, PUNCT
is AUX
only ADV
better ADJ
at ADP
reading VERB
them PRON
because SCONJ
of ADP
all DET
this DET
timespent NOUN
doing VERB
this DET
( PUNCT
skill NOUN
in ADP
reading VERB
x NOUN
- NOUN
rays NOUN
etc X
. PUNCT
just ADV
comes VERB
from ADP
plenty ADJ
ofpractice NOUN
) PUNCT
. PUNCT
If SCONJ
your PRON
obstetrition NOUN
reads VERB
heaps NOUN
of ADP
obstetric ADJ
ultrasounds VERB
heshould AUX
be AUX
able ADJ
to PART
pick VERB
up ADP
any DET
abnormalities NOUN
that PRON
can AUX
be AUX
demonstrated VERB
bythis PROPN
technique.- PROPN
Paul.-- PROPN
           SPACE
| PROPN
Zikzak PROPN
public ADJ
access NOUN
UNIX NOUN
, PUNCT
Melbourne PROPN
, PUNCT
Australia PROPN
. PUNCT
   SPACE
| PROPN
  SPACE
^^^^^^^ PUNCT
  SPACE
| PROPN
                                                    SPACE
| NUM
  SPACE
| PROPN
     SPACE
| PROPN
  SPACE
| PROPN
                                                    SPACE
| PROPN
          SPACE
/// PUNCT
  SPACE
< X
O INTJ
O INTJ
> X
  SPACE
| ADV
     SPACE
# NOUN
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
     SPACE
| NOUN
         SPACE
///Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59239From NUM
: PUNCT
  SPACE
Alla PROPN
V. PROPN
Kotenko PROPN
< X
avk@lst.msk.su>Subject NOUN
: PUNCT
SALE PROPN
! PUNCT
MELITTIN PROPN
( PUNCT
see VERB
letter NOUN
) PUNCT
                                SPACE
MELITTIN PROPN
        SPACE
In ADP
cooperation NOUN
with ADP
the DET
State PROPN
Scientific PROPN
Center PROPN
on ADP
Antibiotics NOUN
we PRON
have AUX
elaborated VERB
our PRON
own ADJ
technology NOUN
of ADP
bee PROPN
venom PROPN
components NOUN
isolation NOUN
, PUNCT
particularly ADV
melitin PROPN
, PUNCT
using VERB
modern ADJ
chromatographic ADJ
eduipment NOUN
by ADP
" PUNCT
Pharmacia PROPN
" PUNCT
and CCONJ
" PUNCT
Millipore PROPN
" PUNCT
Companies NOUN
, PUNCT
with ADP
application NOUN
of ADP
only ADV
the DET
materials NOUN
, PUNCT
admitted VERB
for ADP
manufacturing VERB
pharmaceutic ADJ
production NOUN
. PUNCT
High ADJ
quality NOUN
of ADP
our PRON
product NOUN
is AUX
acknowledged VERB
by ADP
the DET
expertise NOUN
of ADP
the DET
Accredited ADJ
test NOUN
laboratory NOUN
firm NOUN
" PUNCT
Test"v PROPN
/ SYM
o INTJ
" PUNCT
Souzexpertisa PROPN
" PUNCT
TPP PROPN
RF NOUN
. PUNCT
        SPACE
littin ADJ
- PUNCT
no ADV
less ADJ
than SCONJ
92 NUM
% NOUN
of ADP
the DET
primary ADJ
substance NOUN
content NOUN
. PUNCT
Quantity NOUN
: PUNCT
from ADP
100 NUM
g NOUN
up ADP
to PART
5 NUM
kg NOUN
. PUNCT
Date NOUN
of ADP
manufacture NOUN
: PUNCT
March PROPN
1993.Price:2500 NUM
dol NOUN
. PUNCT
USA PROPN
per ADP
1g PROPN
. PUNCT
Certificate NOUN
: PUNCT
Is AUX
on ADP
saleAdress:105094,Moscow PROPN
, PUNCT
Semyenovskiy PROPN
Val,10-a,"BOST"Partnership PROPN
Ltd PROPN
. PUNCT
Tel PROPN
/ SYM
fax NOUN
194 NUM
- SYM
86 NUM
- PUNCT
04,369 NUM
- PUNCT
46 NUM
- PUNCT
68Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59240From NUM
: PUNCT
Nigel@dataman.demon.co.uk PROPN
( PUNCT
Nigel PROPN
Ballard)Subject VERB
: PUNCT
Re ADP
: PUNCT
Adult PROPN
Chicken PROPN
Pox PROPN
> X
I PRON
am AUX
35 NUM
and CCONJ
am AUX
recovering VERB
from ADP
a DET
case NOUN
of ADP
Chicken PROPN
Pox PROPN
which PRON
I PRON
contracted VERB
> X
from ADP
my PRON
5 NUM
year NOUN
old ADJ
daughter NOUN
. PUNCT
  SPACE
I PRON
have AUX
quite ADV
a DET
few ADJ
of ADP
these DET
little ADJ
puppies NOUN
> X
all ADV
over ADP
my PRON
bod NOUN
. PUNCT
  SPACE
At ADP
what PRON
point NOUN
am AUX
I PRON
no ADV
longer ADV
infectious ADJ
? PUNCT
  SPACE
My PRON
physician's NOUN
> X
office NOUN
says VERB
when ADV
they PRON
are AUX
all DET
scabbed VERB
over ADV
. PUNCT
  SPACE
Is AUX
this DET
true?I NOUN
have AUX
been AUX
in ADP
the DET
same ADJ
boat NOUN
as SCONJ
you PRON
last ADJ
year NOUN
. PUNCT
I PRON
've AUX
tried VERB
four NUM
times NOUN
tosend VERB
you PRON
an DET
email NOUN
response NOUN
, PUNCT
but CCONJ
your PRON
end NOUN
does AUX
n't PART
seem VERB
to PART
accept VERB
my PRON
mail?Please NOUN
let VERB
me PRON
know VERB
if SCONJ
you PRON
receive VERB
this DET
. PUNCT
Cheers PROPN
Nigel PROPN
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
* PUNCT
NIGEL PROPN
BALLARD PROPN
  SPACE
| ADP
INT PROPN
: PUNCT
nigel@dataman.demon.co.uk PROPN
  SPACE
| ADP
    SPACE
VACANT PROPN
LOT PROPN
     SPACE
* SYM
   SPACE
* PUNCT
BOURNEMOUTH ADV
UK PROPN
| PROPN
CIS PROPN
: PUNCT
100015.2644 NUM
   SPACE
RADIO PROPN
- PUNCT
G1HOI PROPN
  SPACE
| PROPN
     SPACE
FOR ADP
RENT PROPN
      SPACE
* PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                           SPACE
DIARIES NOUN
OF ADP
THE DET
FAMOUS PROPN
... PUNCT
     SPACE
Colonel PROPN
Custer PROPN
... PUNCT
Surrounded VERB
by ADP
Indians PROPN
, PUNCT
just ADV
when ADV
I PRON
fancied VERB
a DET
Chinese!Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59241From NUM
: PUNCT
ken@isis.cns.caltech.edu PROPN
( PUNCT
Ken PROPN
Miller)Subject NUM
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
< X
1rag61$1cb@hsdndev.harvard.edu INTJ
> X
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
noringC5yL3I.3qo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>(p.s PUNCT
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
on>>the DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
and>>theories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group.>>Why NOUN
? PUNCT
  SPACE
Is AUX
there PRON
some DET
reason NOUN
why ADV
you PRON
feel VERB
that SCONJ
it PRON
should AUX
n't PART
be AUX
pointed VERB
out ADP
> X
in ADP
SCI.med PROPN
that SCONJ
there PRON
is AUX
no DET
convincing ADJ
empirical ADJ
evidence NOUN
to PART
support VERB
the DET
> X
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome?I PROPN
do AUX
n't PART
know VERB
the DET
first ADJ
thing NOUN
about ADP
yeast NOUN
infections NOUN
but CCONJ
I PRON
am AUX
a DET
scientist NOUN
. PUNCT
No DET
scientist NOUN
would AUX
take VERB
your PRON
statement NOUN
--- PUNCT
" PUNCT
no DET
convincing ADJ
empirical ADJ
evidenceto NOUN
support VERB
the DET
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
--- PUNCT
to PART
tell VERB
youanything VERB
except SCONJ
an DET
absence NOUN
of ADP
data NOUN
on ADP
the DET
question NOUN
. PUNCT
  SPACE
Noring NOUN
has AUX
pointed VERB
outthe DET
catch-22 NUM
that SCONJ
if SCONJ
the DET
" PUNCT
crazy ADJ
" PUNCT
theory NOUN
were AUX
true ADJ
, PUNCT
you PRON
probably ADV
couldn'tfind VERB
any DET
direct ADJ
evidence NOUN
of ADP
it PRON
--- PUNCT
that SCONJ
you PRON
could AUX
n't PART
observe VERB
those DET
yeastiebeasties NOUN
with ADP
present ADJ
methods NOUN
even ADV
if SCONJ
they PRON
were AUX
there ADV
. PUNCT
  SPACE
Noring VERB
and CCONJ
thefellow VERB
from ADP
Oklahoma PROPN
( PUNCT
sorry INTJ
, PUNCT
forgot VERB
your PRON
name NOUN
) PUNCT
have AUX
also ADV
suggested VERB
one NUM
setof NOUN
anecdotal ADJ
evidence NOUN
in ADP
favor NOUN
based VERB
on ADP
their PRON
personal ADJ
experiences NOUN
---namely ADV
, PUNCT
that SCONJ
when ADV
people NOUN
with ADP
certain ADJ
conditions NOUN
are AUX
given VERB
anti ADJ
- ADJ
fungals NOUN
, PUNCT
many ADJ
of ADP
them PRON
appear VERB
to PART
get AUX
better ADJ
. PUNCT
  SPACE
So ADV
, PUNCT
if SCONJ
you PRON
have AUX
any DET
evidence NOUN
* PUNCT
against ADP
* PUNCT
the DET
hypothesis NOUN
--- PUNCT
for ADP
example NOUN
, PUNCT
controlled VERB
double ADJ
- PUNCT
blind ADJ
studies NOUN
showing VERB
that SCONJ
the DET
anti NOUN
- NOUN
fungals NOUN
do AUX
n't PART
do AUX
anybetter NOUN
than SCONJ
sugar NOUN
water NOUN
--- PUNCT
then ADV
let VERB
's PRON
hear VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
, PUNCT
then ADV
what PRON
wehave NOUN
is AUX
anecdotal ADJ
and CCONJ
uncontrolled ADJ
evidence NOUN
on ADP
one NUM
side NOUN
, PUNCT
and CCONJ
abjectdisbelief NOUN
on ADP
the DET
other ADJ
. PUNCT
  SPACE
In ADP
which PRON
case NOUN
, PUNCT
please INTJ
, PUNCT
there PRON
is AUX
no DET
point NOUN
in ADP
yellingback NOUN
and CCONJ
forth ADV
at ADP
each DET
other ADJ
any DET
longer ADV
since SCONJ
neither DET
side NOUN
has AUX
anyconvincing VERB
evidence NOUN
either CCONJ
positive ADJ
or CCONJ
negative ADJ
. PUNCT
  SPACE
And CCONJ
I PRON
understand VERB
that SCONJ
your PRON
abject NOUN
disbelief NOUN
is AUX
based VERB
on ADP
the DET
existence NOUN
ofpeople NOUN
who PRON
may AUX
get AUX
famous ADJ
or CCONJ
make VERB
money NOUN
applying VERB
the DET
diagnosis NOUN
to PART
everythingin VERB
sight NOUN
, PUNCT
making VERB
wild ADJ
claims NOUN
with ADP
no DET
evidence NOUN
, PUNCT
and CCONJ
always ADV
refusing VERB
to ADP
docontrolled VERB
studies NOUN
. PUNCT
  SPACE
But CCONJ
that DET
has AUX
absolutely ADV
no DET
bearing NOUN
on ADP
the DET
apparentlysincere ADJ
experiences NOUN
of ADP
the DET
people NOUN
on ADP
the DET
net ADJ
observing VERB
anti NOUN
- ADJ
fungals NOUN
workingon VERB
themselves PRON
and CCONJ
other ADJ
people NOUN
in ADP
certain ADJ
specific ADJ
cases NOUN
. PUNCT
  SPACE
There PRON
are AUX
alsoquacks NOUN
who PRON
sell VERB
oral ADJ
superoxide NOUN
dismutase NOUN
, PUNCT
in ADP
spite NOUN
of ADP
the DET
fact NOUN
that SCONJ
it'scompletely ADV
broken VERB
down ADP
in ADP
the DET
guts NOUN
, PUNCT
but CCONJ
this DET
does AUX
n't PART
change VERB
the DET
genuinescientific NOUN
knowledge NOUN
about ADP
the DET
role NOUN
of ADP
superoxide ADJ
dismutase NOUN
in ADP
fightingoxidative ADJ
damage NOUN
. PUNCT
  SPACE
Same ADJ
thing NOUN
. PUNCT
  SPACE
Just ADV
cause SCONJ
there PRON
are AUX
candida PROPN
quacks NOUN
, PUNCT
thatdoesn't ADV
establish VERB
evidence NOUN
against ADP
the DET
candida PROPN
hypothesis NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
's AUX
someother ADJ
reason NOUN
( PUNCT
besides SCONJ
the DET
quacks NOUN
) PUNCT
, PUNCT
if SCONJ
only ADV
anecdotal ADJ
, PUNCT
to PART
think VERB
it PRON
could AUX
betrue VERB
, PUNCT
then ADV
that DET
is AUX
what PRON
has AUX
to PART
be AUX
considered VERB
, PUNCT
that DET
is AUX
what PRON
the DET
net ADJ
peoplehave NOUN
been AUX
talking VERB
about ADP
. PUNCT
But CCONJ
again ADV
, PUNCT
there PRON
is AUX
no DET
point NOUN
in ADP
arguing VERB
about ADP
it PRON
. PUNCT
  SPACE
There PRON
is AUX
anecdotalevidence NOUN
, PUNCT
and CCONJ
there PRON
is AUX
no DET
convincing ADJ
evidence NOUN
, PUNCT
and CCONJ
there PRON
are AUX
also ADV
somecandida PROPN
quacks VERB
out ADV
there ADV
, PUNCT
I PRON
hope VERB
everyone PRON
can AUX
agree VERB
on ADP
all DET
of ADP
that DET
. PUNCT
  SPACE
Thus ADV
, PUNCT
it PRON
appears VERB
to ADP
me PRON
the DET
main ADJ
question NOUN
now ADV
is AUX
whether SCONJ
the DET
proponents NOUN
canmarshall VERB
enough ADJ
anecdotal ADJ
evidence NOUN
in ADP
a DET
convincing ADJ
and CCONJ
documented VERB
enoughmanner NOUN
to PART
make VERB
a DET
good ADJ
case NOUN
for ADP
carrying VERB
out ADP
a DET
good ADJ
controlled VERB
double ADJ
- PUNCT
blindstudy NOUN
of ADP
antifungals NOUN
( PUNCT
or CCONJ
else ADV
, PUNCT
forget VERB
convincing VERB
anybody PRON
else ADV
to PART
carry VERB
outthe ADJ
test NOUN
, PUNCT
just ADV
carry VERB
it PRON
out ADP
themselves PRON
! PUNCT
) PUNCT
--- PUNCT
and CCONJ
also ADV
, PUNCT
whether SCONJ
they PRON
canadequately ADV
define VERB
the DET
patient ADJ
population NOUN
or CCONJ
symptoms NOUN
on ADP
which PRON
such DET
a DET
studyshould NOUN
be AUX
carried VERB
out ADP
to PART
provide VERB
a DET
fair ADJ
test NOUN
of ADP
the DET
hypothesis NOUN
. PUNCT
Ken-- PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59242From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominancebbenowit@telesciences.com X
( PUNCT
Barry PROPN
D PROPN
Benowitz PROPN
) PUNCT
writes:>In X
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
   SPACE
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
> X
   SPACE
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
> X
   SPACE
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
> X
   SPACE
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
> X
> X
   SPACE
Thanks INTJ
. PUNCT
> X
Yes INTJ
, PUNCT
there PRON
is AUX
such DET
a DET
thing NOUN
as SCONJ
eye NOUN
dominance NOUN
, PUNCT
although SCONJ
I PRON
am AUX
not PART
sure ADJ
if SCONJ
> X
this DET
dominance NOUN
refers VERB
to ADP
perscription NOUN
strength.>As NUM
i PRON
recall VERB
, PUNCT
if SCONJ
you PRON
selectively ADV
close VERB
your PRON
dominant ADJ
eye NOUN
, PUNCT
you PRON
will AUX
percieve VERB
> X
that SCONJ
the DET
image NOUN
shifts NOUN
. PUNCT
This DET
will AUX
not PART
happen VERB
if SCONJ
you PRON
close VERB
your PRON
other ADJ
eye.>I PROPN
believe VERB
that SCONJ
which PRON
eye NOUN
is AUX
dominant ADJ
is AUX
related VERB
to ADP
handedness NOUN
, PUNCT
but CCONJ
I PRON
> VERB
can't NOUN
recall VERB
the DET
relation NOUN
at ADP
the DET
moment.>Barry PROPN
D. PROPN
BenowitzI PROPN
read VERB
a DET
great ADJ
book NOUN
about ADP
eye NOUN
dominance NOUN
several ADJ
years NOUN
ago ADV
. PUNCT
So ADV
there PRON
is AUX
onebook VERB
out ADP
there ADV
.. PUNCT
at ADV
least ADJ
one NUM
: PUNCT
) PUNCT
.There PUNCT
were AUX
several ADJ
types NOUN
of ADP
eye NOUN
dominance NOUN
. PUNCT
Where ADV
a DET
person NOUN
looks VERB
in ADP
theirmemory NOUN
usually ADV
indicates VERB
a DET
type NOUN
of ADP
eye NOUN
dominanc NOUN
Another DET
type NOUN
is AUX
related VERB
tocoordination NOUN
activities NOUN
like SCONJ
hitting VERB
a DET
ball NOUN
. PUNCT
Another DET
for ADP
reading VERB
. PUNCT
I PRON
did AUX
n't PART
read VERB
one NUM
that PRON
discussed VERB
prescription NOUN
strength NOUN
. PUNCT
Although SCONJ
peoplewith VERB
bad ADJ
vision NOUN
, PUNCT
near ADV
or CCONJ
far ADV
sighted ADJ
would AUX
tend VERB
to PART
depend VERB
on ADP
the DET
strongereye NOUN
. PUNCT
-Jackie NUM
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59243From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject PROPN
: PUNCT
Sweet PROPN
's PART
Syndrome PROPN
? PUNCT
	 SPACE
My PRON
brother NOUN
's PART
affine NOUN
has AUX
recently ADV
been AUX
diagnosed VERB
with ADP
Sweet'ssyndrome PROPN
. PUNCT
Also ADV
called VERB
steroid NOUN
resistant ADJ
Sweet PROPN
's PART
syndrome NOUN
. PUNCT
	 SPACE
This DET
syndrome NOUN
started VERB
after ADP
she PRON
had AUX
had VERB
Iodine PROPN
131 NUM
treatment NOUN
forhyperthyroidism NOUN
. PUNCT
She PRON
'd AUX
been AUX
reluctant ADJ
to PART
have AUX
treatment NOUN
for ADP
thehyperthyroidism NOUN
for ADP
many ADJ
years NOUN
and CCONJ
apparently ADV
started VERB
to PART
show VERB
exaustionfrom ADP
it PRON
. PUNCT
	 SPACE
I PRON
understand VERB
that SCONJ
she PRON
may AUX
still ADV
be AUX
testing VERB
high ADJ
in ADP
thyroid NOUN
levelbut NOUN
she PRON
's AUX
is AUX
n't PART
being AUX
treated VERB
by ADP
an DET
endocrinologist NOUN
. PUNCT
Her PRON
previousendocrinologist NOUN
bowed VERB
out ADP
when ADV
she PRON
entered VERB
the DET
hospital NOUN
. PUNCT
She PRON
entered VERB
thehospital ADJ
because SCONJ
of ADP
the DET
Sweet PROPN
's PART
syndrome NOUN
symptoms NOUN
( PUNCT
skin NOUN
lesions).I've PUNCT
looked VERB
through ADP
the DET
last ADJ
two NUM
years NOUN
of ADP
Medline PROPN
and CCONJ
did AUX
n't PART
find VERB
anabstract NOUN
mentioning VERB
a DET
correlation NOUN
between ADP
thyroid NOUN
and CCONJ
Sweets PROPN
. PUNCT
. PUNCT
I PRON
checked VERB
a DET
handbook NOUN
which PRON
said VERB
that SCONJ
Sweet PROPN
's PART
was AUX
associated VERB
with ADP
leukemia NOUN
. PUNCT
I'd NOUN
like SCONJ
a DET
reccomndation NOUN
for ADP
experts NOUN
who PRON
are AUX
in ADP
New PROPN
York PROPN
City PROPN
or CCONJ
who PRON
travelto VERB
New PROPN
York PROPN
City PROPN
. PUNCT
For ADP
the DET
sweets NOUN
and CCONJ
perhaps ADV
for ADP
the DET
endocrinology NOUN
. PUNCT
Any DET
information NOUN
that PRON
might AUX
help VERB
. PUNCT
Apparently ADV
there PRON
has AUX
n't PART
been AUX
muchimprovement ADJ
in ADP
her PRON
condition NOUN
over ADP
the DET
past ADJ
several ADJ
months NOUN
. PUNCT
-Jackie- PRON
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59244From NUM
: PUNCT
candee@brtph5.bnr.ca NOUN
( PUNCT
Candee PROPN
Ellis PROPN
P885)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
If SCONJ
you PRON
think VERB
you PRON
have AUX
kidney NOUN
stones NOUN
or CCONJ
your PRON
doctor NOUN
tells VERB
you PRON
that SCONJ
you PRON
do AUX
, PUNCT
DEFINITELY NOUN
follow VERB
up ADP
on ADP
it PRON
. PUNCT
  SPACE
My PRON
sister NOUN
was AUX
diagnosed VERB
with ADP
kidney NOUN
stones1 PROPN
1/2 NUM
years NOUN
ago ADV
and CCONJ
given VERB
medication NOUN
to PART
take VERB
to PART
dissolve VERB
them PRON
. PUNCT
  SPACE
After ADP
thatfailed VERB
and CCONJ
she PRON
continued VERB
to PART
be AUX
in ADP
great ADJ
pain NOUN
, PUNCT
they PRON
decided VERB
she PRON
hadendometriosis NOUN
. PUNCT
  SPACE
When ADV
they PRON
did AUX
exploratory ADJ
surgery NOUN
, PUNCT
they PRON
discovered VERB
shehad PROPN
a DET
tumor NOUN
, PUNCT
which PRON
turned VERB
out ADP
to PART
be AUX
rhabdomyosarcoma VERB
-- PUNCT
a DET
very ADV
rare ADJ
and CCONJ
agressive ADJ
cancer NOUN
. PUNCT
  SPACE
I PRON
realize VERB
this DET
is AUX
not PART
what PRON
happens VERB
in ADP
the DET
majorityof PROPN
cases NOUN
, PUNCT
but CCONJ
you PRON
never ADV
know VERB
what PRON
can AUX
happen VERB
and CCONJ
should AUX
n't PART
take VERB
chances!Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59245From NUM
: PUNCT
sharon@world.std.com PROPN
( PUNCT
Sharon PROPN
M PROPN
Gartenberg)Subject NOUN
: PUNCT
From ADP
Srebrenica PROPN
: PUNCT
" PUNCT
Doctoring VERB
" PUNCT
in ADP
HellSREBRENICA PROPN
'S PART
DOCTOR PROPN
RECOUNTS NOUN
TOWN PROPN
'S AUX
LIVING NOUN
HELL NOUN
     SPACE
By ADP
Laura PROPN
Pitter PROPN
    SPACE
TUZLA PROPN
, PUNCT
Bosnia PROPN
, PUNCT
Reuter PROPN
- PUNCT
Neret PROPN
Mujanovic PROPN
was AUX
a DET
pathologistwhen NOUN
he PRON
trekked VERB
through ADP
the DET
mountains NOUN
to ADP
the DET
besieged VERB
Muslimtown PROPN
of ADP
Srebrenica PROPN
last ADJ
August PROPN
. PUNCT
    SPACE
But CCONJ
after ADP
treating VERB
4,000 NUM
mangled VERB
victims NOUN
of ADP
Bosnia PROPN
's PART
bloodywar NOUN
, PUNCT
he PRON
considers VERB
himself PRON
a DET
surgeon NOUN
. PUNCT
    SPACE
` PUNCT
` PUNCT
Now ADV
I PRON
'm AUX
a DET
surgeon NOUN
with ADP
great ADJ
experience NOUN
although SCONJ
I PRON
have AUX
nolicense NOUN
to PART
practice VERB
. PUNCT
But CCONJ
if SCONJ
I PRON
operate VERB
on ADP
a DET
person NOUN
and CCONJ
he PRON
livesnormally ADV
that DET
's AUX
the DET
greatest ADJ
license NOUN
a DET
surgeon NOUN
could AUX
have AUX
. PUNCT
' PUNCT
' PUNCT
    SPACE
Evacuated VERB
by ADP
the DET
U.N. PROPN
this DET
week NOUN
to ADP
his PRON
home NOUN
town NOUN
of ADP
Tuzla PROPN
, PUNCT
the DET
Muslim ADJ
physician NOUN
gave VERB
an DET
eyewitness NOUN
medical ADJ
assessment NOUN
ofthe NOUN
horrors NOUN
of ADP
the DET
year NOUN
- PUNCT
long ADJ
Serb ADJ
siege NOUN
of ADP
Srebrenica PROPN
and CCONJ
thesuffering VERB
of ADP
the DET
thousands NOUN
trapped VERB
there ADV
. PUNCT
    SPACE
` PUNCT
` PUNCT
I PRON
lived VERB
through ADP
hell PROPN
together ADV
with ADP
the DET
people NOUN
ofSrebrenica NUM
. PUNCT
All DET
those DET
who PRON
lived VERB
through ADP
this DET
are AUX
the DET
greatestheroes NOUN
that PRON
humanity NOUN
can AUX
produce VERB
, PUNCT
' PUNCT
' PUNCT
he PRON
told VERB
reporters NOUN
. PUNCT
    SPACE
Mujanovic PROPN
, PUNCT
31 NUM
, PUNCT
had AUX
practiced VERB
for ADP
two NUM
months NOUN
as SCONJ
an DET
assistantat NOUN
a DET
local ADJ
hospital NOUN
in ADP
Tuzla PROPN
, PUNCT
but CCONJ
before ADP
going VERB
to ADP
Srebrenica PROPN
hehad VERB
never ADV
performed VERB
a DET
surgical ADJ
operation NOUN
on ADP
his PRON
own ADJ
. PUNCT
Now ADV
he PRON
sayshe ADV
has AUX
performed VERB
major ADJ
surgery NOUN
1,396 NUM
times NOUN
, PUNCT
relying VERB
on ADP
books NOUN
forguidance NOUN
, PUNCT
amputating VERB
arms NOUN
and CCONJ
legs NOUN
150 NUM
times NOUN
, PUNCT
usually ADV
withoutanesthetic ADJ
, PUNCT
delivering VERB
350 NUM
babies NOUN
and CCONJ
performing VERB
four NUM
cesareansections NOUN
. PUNCT
    SPACE
He PRON
worked VERB
18-to-19-hour NUM
days NOUN
, PUNCT
slept VERB
in ADP
the DET
hospital NOUN
for ADP
thefirst PROPN
10 NUM
weeks NOUN
after ADP
his PRON
arrival NOUN
last ADJ
Aug. PROPN
5 NUM
and CCONJ
treated VERB
  SPACE
4,000patients NOUN
. PUNCT
    SPACE
He PRON
arrived VERB
after ADP
making VERB
the DET
trek NOUN
over ADP
mountains NOUN
on ADP
foot NOUN
fromTuzla PROPN
, PUNCT
60 NUM
miles NOUN
northwest ADV
of ADP
Srebrenica PROPN
. PUNCT
About ADV
50 NUM
other ADJ
peoplecarried VERB
in ADP
supplies NOUN
and CCONJ
350 NUM
soldiers NOUN
guided VERB
and CCONJ
protected VERB
himthrough ADJ
guerrilla NOUN
terrain NOUN
, PUNCT
he PRON
said VERB
. PUNCT
    SPACE
His PRON
worst ADJ
memory NOUN
was AUX
of ADP
10 NUM
days NOUN
ago ADV
when ADV
seven NUM
Serb PROPN
shellslanded VERB
within ADP
one NUM
minute NOUN
in ADP
an DET
area NOUN
half DET
the DET
size NOUN
of ADP
a DET
footballfield NOUN
, PUNCT
killing VERB
36 NUM
people NOUN
immediately ADV
and CCONJ
wounding NOUN
102 NUM
. PUNCT
Half ADJ
ofthe NOUN
dead ADJ
were AUX
women NOUN
and CCONJ
children NOUN
. PUNCT
    SPACE
The DET
people NOUN
had AUX
come VERB
out ADP
for ADP
a DET
rare ADJ
day NOUN
of ADP
sunshine NOUN
and CCONJ
thechildren NOUN
were AUX
playing VERB
soccer NOUN
. PUNCT
` PUNCT
` PUNCT
There PRON
was AUX
no DET
warning NOUN
... PUNCT
theblood NOUN
flowed VERB
like SCONJ
a DET
river NOUN
in ADP
the DET
street NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
    SPACE
` PUNCT
` PUNCT
There PRON
were AUX
pieces NOUN
of ADP
women NOUN
all ADV
around ADV
and CCONJ
you PRON
could AUX
notpiece VERB
them PRON
together ADV
. PUNCT
One NUM
woman NOUN
holding VERB
her PRON
two NUM
children NOUN
in ADP
herhands NOUN
was AUX
lying VERB
with ADP
them PRON
on ADP
the DET
ground NOUN
dead ADJ
. PUNCT
They PRON
had AUX
noheads NOUN
. PUNCT
' PUNCT
' PUNCT
    SPACE
Before ADP
Mujanovic PROPN
arrived VERB
with ADP
his PRON
supplies NOUN
conditions NOUN
weredeplorable ADJ
, PUNCT
he PRON
said VERB
. PUNCT
Many ADJ
deaths NOUN
could AUX
have AUX
been AUX
prevented VERB
hadthe DET
hospital NOUN
had AUX
surgical ADJ
tools NOUN
, PUNCT
facilities NOUN
and CCONJ
medicine NOUN
. PUNCT
    SPACE
The DET
six NUM
general ADJ
practitioners NOUN
who PRON
had AUX
been AUX
operating VERB
beforehe PROPN
arrived VERB
had AUX
even ADV
less ADV
surgical ADJ
experience NOUN
than SCONJ
he PRON
did AUX
. PUNCT
` PUNCT
` PUNCT
Theydidn't PROPN
know VERB
the DET
basic ADJ
principles NOUN
for ADP
amputating VERB
limbs NOUN
. PUNCT
' PUNCT
' PUNCT
    SPACE
Once SCONJ
he PRON
arrived VERB
the DET
situation NOUN
improved VERB
, PUNCT
he PRON
said VERB
, PUNCT
but CCONJ
bymid PROPN
- PUNCT
September PROPN
he PRON
had AUX
run VERB
out SCONJ
of ADP
supplies NOUN
. PUNCT
    SPACE
` PUNCT
` PUNCT
Bandages NOUN
were AUX
washed VERB
and CCONJ
boiled VERB
five NUM
times NOUN
... PUNCT
sometimesthey NOUN
were AUX
falling VERB
apart ADV
in ADP
my PRON
hands NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
Doctors NOUN
had AUX
noanesthetic ADJ
and CCONJ
could AUX
not PART
give VERB
patients NOUN
alcohol NOUN
to ADP
numb PROPN
the DET
painbecause NOUN
it PRON
increased VERB
bleeding VERB
. PUNCT
    SPACE
` PUNCT
` PUNCT
People NOUN
were AUX
completely ADV
conscious ADJ
during ADP
amputations NOUN
andstomach VERB
operations NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
Blood NOUN
transfusions NOUN
wereimpossible ADJ
because SCONJ
they PRON
had AUX
no DET
facilities NOUN
to PART
test VERB
blood NOUN
types NOUN
. PUNCT
    SPACE
` PUNCT
` PUNCT
I PRON
felt VERB
destroyed VERB
psychologically ADV
, PUNCT
' PUNCT
' PUNCT
Mujanovic PROPN
said VERB
. PUNCT
    SPACE
The DET
situation NOUN
improved VERB
after ADP
Dec. PROPN
4 NUM
, PUNCT
when ADV
a DET
convoy NOUN
arrivedfrom ADP
the DET
Belgian ADJ
medical ADJ
group NOUN
Medecins PROPN
Sans PROPN
Frontieres PROPN
. PUNCT
    SPACE
But CCONJ
Mujanovic PROPN
said VERB
the DET
military ADJ
predicament NOUN
worsened VERB
inmid PROPN
- PUNCT
December PROPN
after ADP
Bosnian PROPN
Serbs PROPN
began VERB
a DET
major ADJ
offensive NOUN
in ADP
theregion NOUN
. PUNCT
` PUNCT
` PUNCT
Every DET
day NOUN
we PRON
had AUX
air NOUN
strikes NOUN
and CCONJ
shellings NOUN
. PUNCT
' PUNCT
' PUNCT
    SPACE
Then ADV
the DET
hunger NOUN
set VERB
in ADP
. PUNCT
    SPACE
Between ADP
mid PROPN
- NOUN
December PROPN
and CCONJ
mid PROPN
- PROPN
March PROPN
, PUNCT
when ADV
U.S. PROPN
planes NOUN
beganair NOUN
dropping NOUN
food NOUN
, PUNCT
between ADP
20 NUM
and CCONJ
30 NUM
people NOUN
were AUX
dying VERB
every DET
dayfrom ADJ
complications NOUN
associated VERB
with ADP
malnutrition NOUN
, PUNCT
he PRON
said VERB
. PUNCT
    SPACE
` PUNCT
` PUNCT
I PRON
know VERB
for ADP
sure ADJ
that SCONJ
the DET
air NOUN
drop NOUN
operation NOUN
saved VERB
thepeople ADJ
from ADP
massive ADJ
death NOUN
by ADP
hunger NOUN
and CCONJ
starvation NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
    SPACE
According VERB
to ADP
Mujanovic PROPN
, PUNCT
around ADV
5,000 NUM
people NOUN
died VERB
inSrebrenica PROPN
, PUNCT
1,000 NUM
of ADP
them PRON
children NOUN
, PUNCT
during ADP
a DET
year NOUN
of ADP
siege NOUN
. PUNCT
    SPACE
Mujanovic PROPN
plans VERB
to PART
return VERB
to ADP
Srebrenica PROPN
in ADP
three NUM
weeks NOUN
aftervisiting VERB
his PRON
wife NOUN
, PUNCT
who PRON
is AUX
ill ADJ
in ADP
Tuzla PROPN
. PUNCT
    SPACE
` PUNCT
` PUNCT
They PRON
say VERB
I PRON
'm AUX
a DET
hero NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
` PUNCT
` PUNCT
There PRON
were AUX
thousands NOUN
ofpeople ADJ
standing VERB
at ADP
the DET
sides NOUN
of ADP
the DET
road NOUN
, PUNCT
crying VERB
and CCONJ
waving VERB
whenI PROPN
left VERB
. PUNCT
And CCONJ
I PRON
cried VERB
too ADV
. PUNCT
''-- NOUN
Sharon PROPN
Machlis PROPN
GartenbergFramingham PROPN
, PUNCT
MA PROPN
  SPACE
USAe PROPN
- PUNCT
mail NOUN
: PUNCT
sharon@world.std.comNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59246From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! X
  SPACE
( PUNCT
was AUX
: PUNCT
Candida PROPN
bloom NOUN
... PUNCT
)-*----In X
article NOUN
< X
noringC5yGw1.F1M@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
> X
... PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
they PRON
are AUX
working VERB
on ADP
the DET
theory NOUN
that SCONJ
candida PROPN
> X
overbloom PROPN
with ADP
penetration NOUN
into ADP
mucus PROPN
membrane PROPN
tissue NOUN
with ADP
> X
associated VERB
" PUNCT
mild ADJ
" PUNCT
inflammatory ADJ
response NOUN
can AUX
and CCONJ
does AUX
occur VERB
> X
in ADP
a DET
large ADJ
number NOUN
of ADP
people NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
reject VERB
this DET
" PUNCT
yeast NOUN
> X
hypothesis NOUN
" PUNCT
, PUNCT
then ADV
I PRON
'd AUX
guess VERB
you PRON
'd AUX
view VERB
this DET
research NOUN
as SCONJ
one NUM
> X
more ADV
wasteful ADJ
and CCONJ
quixotic ADJ
endeavor NOUN
. PUNCT
  SPACE
Stay VERB
tuned VERB
. PUNCT
I PRON
do AUX
not PART
have AUX
enough ADJ
medical ADJ
expertise NOUN
to PART
have AUX
much ADJ
of ADP
an DET
opinionone ADJ
way NOUN
or CCONJ
another DET
on ADP
hidden VERB
candida PROPN
infections NOUN
. PUNCT
  SPACE
I PRON
canunderstand VERB
the DET
skepticism NOUN
of ADP
those DET
who PRON
see VERB
this DET
associated VERB
withvarious ADJ
general ADJ
kinds NOUN
of ADP
symptoms NOUN
, PUNCT
while SCONJ
there PRON
is AUX
a DET
lack NOUN
of ADP
soliddemonstration NOUN
that SCONJ
this DET
happens VERB
and CCONJ
causes VERB
such ADJ
general ADJ
symptoms.(To PUNCT
understand VERB
this DET
skepticism NOUN
, PUNCT
one NUM
only ADV
needs VERB
to PART
know VERB
of ADP
pastfailures NOUN
that PRON
shared VERB
these DET
characteristics NOUN
with ADP
the DET
notion NOUN
ofhidden PROPN
candida PROPN
infection NOUN
. PUNCT
  SPACE
There PRON
have AUX
been AUX
quite DET
a DET
few ADJ
, PUNCT
and CCONJ
theproponents NOUN
of ADP
all DET
thought VERB
that SCONJ
the DET
skeptics NOUN
were AUX
overly ADV
skeptical.)On PROPN
the DET
other ADJ
hand NOUN
, PUNCT
I PRON
am AUX
happy ADJ
to PART
read VERB
that SCONJ
some DET
people NOUN
aresufficiently ADV
interested ADJ
in ADP
this DET
possibility NOUN
, PUNCT
spurred VERB
bysuggestive ADJ
clinical ADJ
experience NOUN
, PUNCT
to PART
research VERB
it PRON
further ADV
. PUNCT
  SPACE
Thedoubters NOUN
may AUX
be AUX
surprised ADJ
. PUNCT
  SPACE
( PUNCT
It PRON
has AUX
happened VERB
before.)I NOUN
realize VERB
that SCONJ
admitting VERB
ignorance NOUN
in ADP
the DET
face NOUN
of ADP
ignorance NOUN
maynot PROPN
endear VERB
me PRON
to ADP
those DET
who PRON
are AUX
so ADV
sure ADJ
they PRON
know VERB
one NUM
way NOUN
oranother NOUN
. PUNCT
  SPACE
( PUNCT
And CCONJ
, PUNCT
indeed ADV
, PUNCT
perhaps ADV
some DET
of ADP
them PRON
do AUX
know VERB
-- PUNCT
I PRON
am AUX
theone NOUN
who PRON
is AUX
currently ADV
ignorant ADJ
. PUNCT
) PUNCT
  SPACE
But CCONJ
I PRON
find VERB
this DET
the DET
most ADV
honestroute NOUN
, PUNCT
and CCONJ
so ADV
I PRON
am AUX
happy ADJ
with ADP
it PRON
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59247From NUM
: PUNCT
jgnassi@athena.mit.edu PROPN
( PUNCT
John PROPN
Angelo PROPN
Gnassi)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
FictionIn NUM
an DET
article NOUN
Jon PROPN
Noring PROPN
writes:>In PROPN
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>Do PUNCT
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
true ADJ
focus NOUN
of ADP
the DET
medical ADJ
profession NOUN
. PUNCT
  SPACE
The DET
AMA PROPN
and CCONJ
the DET
Boards PROPN
should AUX
focus VERB
> X
on ADP
these DET
" PUNCT
quacks NOUN
" PUNCT
instead ADV
of ADP
devoting VERB
unbelievable ADJ
energy NOUN
on ADP
' PUNCT
search NOUN
- PUNCT
and->destroy NOUN
- PUNCT
missions NOUN
' PUNCT
to PART
pull VERB
the DET
licenses NOUN
of ADP
those DET
doctors NOUN
who PRON
are AUX
trying VERB
non->traditional ADJ
or CCONJ
not PART
fully ADV
accepted VERB
treatments NOUN
for ADP
their PRON
desperate ADJ
patients NOUN
> X
that SCONJ
traditional ADJ
/ SYM
accepted ADJ
medicine NOUN
can AUX
not PART
help VERB
. PUNCT
If SCONJ
I PRON
prescribe VERB
itraconazole NOUN
for ADP
a DET
patient NOUN
's PART
sinusitis NOUN
neither CCONJ
the DET
AMA PROPN
, PUNCT
FDA PROPN
, PUNCT
State PROPN
Licensing PROPN
Board PROPN
, PUNCT
nor CCONJ
ABFP PROPN
will AUX
be AUX
knocking VERB
on ADP
my PRON
door NOUN
to ADP
askwhy ADV
. PUNCT
  SPACE
This DET
is AUX
a DET
specious ADJ
argument.>on NOUN
their PRON
backs NOUN
and CCONJ
pee NOUN
- PUNCT
pee PROPN
on ADP
themselves PRON
in ADP
obedience NOUN
. PUNCT
  SPACE
What PRON
do AUX
they PRON
teach VERB
> X
you PRON
in ADP
medical ADJ
school NOUN
- PUNCT
how ADV
to PART
throw VERB
your PRON
authority NOUN
around?Among ADP
other ADJ
things NOUN
, PUNCT
how ADV
to PART
evaluate VERB
new ADJ
theories NOUN
and CCONJ
treatments.>Let VERB
me PRON
put VERB
it PRON
another DET
way NOUN
to PART
make VERB
my PRON
point NOUN
clear ADJ
: PUNCT
  SPACE
" PUNCT
quack INTJ
" PUNCT
is AUX
a DET
nebulous ADJ
word NOUN
> X
lacking VERB
in ADP
any DET
precision NOUN
. PUNCT
  SPACE
Its PRON
sole ADJ
use NOUN
is AUX
to PART
obfuscate VERB
the DET
issues NOUN
at ADP
hand NOUN
. PUNCT
Funny ADJ
, PUNCT
I PRON
thought VERB
it PRON
meant VERB
" PUNCT
one NUM
who PRON
fraudulently ADV
misrepresents VERB
hisability NOUN
and CCONJ
experience NOUN
in ADP
the DET
diagnosis NOUN
and CCONJ
treatment NOUN
of ADP
disease PROPN
orthe DET
effects NOUN
to PART
be AUX
achieved VERB
by ADP
the DET
treatment NOUN
he PRON
offers VERB
" PUNCT
( PUNCT
Dorland's27th PROPN
) PUNCT
. PUNCT
  SPACE
Certainly ADV
more ADJ
precision NOUN
than SCONJ
conveyed VERB
by ADP
" PUNCT
chronic ADJ
yeast".>The PROPN
indiscriminate NOUN
use NOUN
of ADP
this DET
word NOUN
is AUX
a DET
sure ADJ
sign NOUN
of ADP
incompetency NOUN
; PUNCT
  SPACE
and CCONJ
coming VERB
> X
from ADP
any DET
medical ADJ
doctor NOUN
( PUNCT
or CCONJ
wanna PROPN
- PUNCT
be PROPN
) PUNCT
, PUNCT
where ADV
competency NOUN
is AUX
expected VERB
, PUNCT
is AUX
real ADJ
> X
scary ADJ
. PUNCT
The DET
inability NOUN
to PART
discriminate VERB
between ADP
fraudulent NOUN
or CCONJ
erroneousrepresentations NOUN
is AUX
far ADV
more ADV
frightening ADJ
. PUNCT
  SPACE
It PRON
is AUX
fraud NOUN
to PART
promote VERB
atreatment NOUN
where ADV
the DET
evidence NOUN
for ADP
it PRON
is AUX
either CCONJ
lacking ADJ
or CCONJ
against ADP
itand VERB
the DET
quacksalver NOUN
knows VERB
so ADV
, PUNCT
or CCONJ
error NOUN
if SCONJ
the DET
honest ADJ
practitionerdoesn't CCONJ
know VERB
so ADV
. PUNCT
  SPACE
Failure NOUN
to PART
speak VERB
out ADP
against ADP
either DET
bespeaksincompetency.>(p.s NOUN
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
on ADP
> X
the DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
and CCONJ
> X
theories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group NOUN
. PUNCT
May AUX
I PRON
reply VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
practitioners NOUN
and CCONJ
proponents NOUN
ofnon ADJ
- PUNCT
scientific ADJ
medicine NOUN
have AUX
left VERB
their PRON
minds NOUN
so ADV
open ADJ
that SCONJ
the DET
partsof NOUN
their PRON
brains NOUN
that PRON
do AUX
critical ADJ
evaluation NOUN
have AUX
fallen VERB
out ADP
, PUNCT
they PRON
shouldlearn VERB
to PART
edit VERB
their PRON
newsgroup NOUN
headers NOUN
to PART
conform VERB
to ADP
the DET
existinghierarchy NOUN
and CCONJ
divisions.-- VERB
     SPACE
John PROPN
Angelo PROPN
Gnassi PROPN
                 SPACE
Lab PROPN
of ADP
Computer PROPN
Science PROPN
   SPACE
jgnassi@hstbme.mit.edu PROPN
               SPACE
Massachusetts PROPN
General PROPN
Hospital PROPN
     SPACE
" PUNCT
Eternal PROPN
Student PROPN
" PUNCT
                  SPACE
Boston PROPN
, PUNCT
Massachusetts PROPN
, PUNCT
USA PROPN
     SPACE
" PUNCT
The DET
Earth PROPN
be AUX
spanned VERB
, PUNCT
connected VERB
by ADP
a DET
Network PROPN
" PUNCT
- PUNCT
Walt PROPN
WhitmanNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59248From NUM
: PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison)Subject NUM
: PUNCT
Re ADP
: PUNCT
Frequent PROPN
nosebleedsIn PROPN
a DET
previous ADJ
article NOUN
, PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
says:>In PROPN
article NOUN
< X
9304191126.AA21125@seastar.seashell NOUN
> X
bebmza@sru001.chvpkh.chevron.com NOUN
( PUNCT
Beverly PROPN
M. PROPN
Zalan PROPN
) PUNCT
writes:>>>>My PROPN
6 NUM
year NOUN
son NOUN
is AUX
so ADV
plagued ADJ
. PUNCT
  SPACE
Lots NOUN
of ADP
vaseline NOUN
up ADP
his PRON
nose NOUN
each DET
night NOUN
seems VERB
> X
> X
to PART
keep VERB
it PRON
under ADP
control NOUN
. PUNCT
  SPACE
But CCONJ
let VERB
him PRON
get AUX
bopped VERB
there ADV
, PUNCT
and CCONJ
he PRON
'll AUX
recur VERB
for ADP
> X
> X
days NOUN
! PUNCT
  SPACE
Also ADV
allergies VERB
, PUNCT
colds NOUN
, PUNCT
dry ADJ
air NOUN
all DET
seem VERB
to PART
contribute VERB
. PUNCT
  SPACE
But CCONJ
again ADV
, PUNCT
the DET
> X
> X
vaseline PROPN
, PUNCT
or CCONJ
A&D PROPN
ointment NOUN
, PUNCT
or CCONJ
neosporin VERB
all DET
seem VERB
to PART
keep VERB
them PRON
from ADP
recurring.>>>If NOUN
you PRON
can AUX
get AUX
it PRON
, PUNCT
you PRON
might AUX
want VERB
to PART
try VERB
a DET
Canadian PROPN
over ADP
- PUNCT
the DET
- PUNCT
counter NOUN
product NOUN
> X
called VERB
Secaris PROPN
, PUNCT
which PRON
is AUX
a DET
water NOUN
- PUNCT
soluble ADJ
gel NOUN
. PUNCT
  SPACE
Compared VERB
to ADP
Vaseline PROPN
or CCONJ
other ADJ
> X
greasy NOUN
ointments NOUN
, PUNCT
Secaris PROPN
seems VERB
more ADV
compatible ADJ
with ADP
the DET
moisture NOUN
that's NOUN
> X
already ADV
there.>Secaris PROPN
is AUX
reasonably ADV
inexpensive ADJ
( PUNCT
$ SYM
6.00 NUM
Cdn PROPN
for ADP
a DET
tube NOUN
) PUNCT
, PUNCT
and CCONJ
is AUX
indeed ADV
anover ADJ
the DET
counter NOUN
medication NOUN
. PUNCT
Why ADV
it PRON
does AUX
not PART
appear VERB
to PART
be AUX
available ADJ
in ADP
theUS PROPN
, PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
It PRON
's AUX
manufactured VERB
in ADP
Montreal PROPN
. PUNCT
It PRON
's AUX
a DET
nasal ADJ
lubricant NOUN
, PUNCT
and CCONJ
is AUX
intended VERB
to PART
help VERB
nosebleeds VERB
that DET
result NOUN
fromdry PROPN
mucous ADJ
membranes NOUN
. PUNCT
From ADP
some DET
of ADP
the DET
replies NOUN
to ADP
my PRON
original ADJ
posting NOUN
, PUNCT
it PRON
's AUX
evident ADJ
that SCONJ
somepeople NOUN
do AUX
not PART
secrete VERB
enough ADJ
mucous ADJ
to PART
keep VERB
their PRON
nose NOUN
lining NOUN
protectedfrom ADP
environmental ADJ
influences NOUN
( PUNCT
ie X
, PUNCT
dry ADJ
air NOUN
) PUNCT
. PUNCT
But CCONJ
I PRON
've AUX
had VERB
no DET
responsesfrom NOUN
anyone PRON
with ADP
experience NOUN
with ADP
Rutin PROPN
. PUNCT
Is AUX
there PRON
another DET
newsgroup PROPN
thatmight NOUN
have AUX
specifics NOUN
on ADP
herbal ADJ
remedies?But PROPN
thanks NOUN
to ADP
all DET
those DET
who PRON
did AUX
reply VERB
with ADP
their PRON
experiences.-- PROPN
Robert PROPN
AllisonNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59249From NUM
: PUNCT
elg@silver.lcs.mit.edu PROPN
( PUNCT
Elizabeth PROPN
Glaser)Subject PROPN
: PUNCT
net ADJ
address NOUN
for ADP
WHOI PROPN
am AUX
looking VERB
for ADP
the DET
email NOUN
address NOUN
of ADP
the DET
World PROPN
Health PROPN
Organization PROPN
, PUNCT
in ADP
particular ADJ
the DET
address NOUN
for ADP
the DET
Department PROPN
of ADP
Nursing PROPN
or CCONJ
the DET
ChiefScientist PROPN
for ADP
Nursing NOUN
: PUNCT
Dr. PROPN
Miriam PROPN
Hirschfeld PROPN
. PUNCT
The DET
snail ADJ
- PUNCT
mail NOUN
address NOUN
Ihave PROPN
is AUX
the DET
following VERB
: PUNCT
    SPACE
World PROPN
Health PROPN
Organization PROPN
    SPACE
20 NUM
Avenue PROPN
Appia PROPN
    SPACE
1211 NUM
Geneva PROPN
27 NUM
    SPACE
SwitzerlandPlease PROPN
respond VERB
directly ADV
to ADP
me PRON
. PUNCT
Thank VERB
you PRON
for ADP
your PRON
assistance NOUN
. PUNCT
   SPACE
--- PUNCT
   SPACE
elg PROPN
   SPACE
---Elizabeth PUNCT
Glaser PROPN
, PUNCT
RNelg@silver.lcs.mit.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59250Subject NUM
: PUNCT
Why ADV
isolate VERB
it?From PROPN
: PUNCT
chinsz@eis.calstate.edu PROPN
( PUNCT
Christopher PROPN
Hinsz PROPN
) PUNCT
	 SPACE
Does AUX
anyone PRON
on ADP
this DET
newsgroup NOUN
happen VERB
to PART
know VERB
WHY ADV
morphine NOUN
wasfirst VERB
isolated VERB
from ADP
opium NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
know VERB
why ADV
, PUNCT
or CCONJ
have AUX
an DET
idea NOUN
for ADP
where ADV
Icould AUX
look VERB
to PART
find VERB
this DET
info NOUN
, PUNCT
please INTJ
mail VERB
me PRON
. PUNCT
	 SPACE
CSHany PROPN
suggestionas NOUN
would AUX
be AUX
greatly ADV
appreciated-- NUM
" PUNCT
Kilimanjaro PROPN
is AUX
a DET
pretty ADV
tricky ADJ
climb NOUN
. PUNCT
Most ADJ
of ADP
it PRON
's AUX
up ADV
, PUNCT
until ADP
you PRON
reachthe VERB
very ADV
, PUNCT
very ADV
top ADJ
, PUNCT
and CCONJ
then ADV
it PRON
tends VERB
to PART
slope VERB
away ADV
rather ADV
sharply ADV
. PUNCT
" PUNCT
					 SPACE
Sir PROPN
George PROPN
Head PROPN
, PUNCT
OBE PROPN
( PUNCT
JC)------------------------------------------------------------------------------LOGIC PROPN
: PUNCT
" PUNCT
The DET
point NOUN
is AUX
frozen VERB
, PUNCT
the DET
beast NOUN
is AUX
dead ADJ
, PUNCT
what PRON
is AUX
the DET
difference NOUN
? PUNCT
" PUNCT
					 SPACE
Gavin PROPN
Millarrrrrrrrrr PROPN
( PUNCT
JC)Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59251From NUM
: PUNCT
mutrh@uxa.ecn.bgu.edu PROPN
( PUNCT
Todd PROPN
R. PROPN
Haverstock)Subject NUM
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn NOUN
article NOUN
< X
1993Apr23.181051.4023@donner NUM
. PUNCT
SanDiego PROPN
. PUNCT
NCR.COM PROPN
> X
davel@davelpcSanDiego NOUN
. PUNCT
NCR.com PROPN
( PUNCT
Dave PROPN
Lord PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1r8pcn$rm1@terminator.rs.itd.umich.edu NUM
> X
, PUNCT
Donald PROPN
Mackie><Donald_Mackie@med.umich.edu PROPN
> X
writes VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff PROPN
, PUNCT
> X
> X
tron@fafnir.la.locus.com PROPN
writes VERB
: PUNCT
> X
> X
> X
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
> X
> X
> X
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
> X
> X
> X
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki PROPN
? PUNCT
> X
> X
> X
> X
I PRON
'm AUX
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
of ADP
> X
> X
the DET
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-)>>It PUNCT
's PART
plain ADJ
yoghurt NOUN
with ADP
grated VERB
cucumber NOUN
and CCONJ
coriander NOUN
( PUNCT
other ADJ
spices NOUN
are AUX
> X
sometimes ADV
used VERB
) PUNCT
. PUNCT
Some DET
people NOUN
use VERB
half ADJ
yoghurt NOUN
and CCONJ
half NOUN
mayonaise NOUN
. PUNCT
In ADP
the DET
kind NOUN
I PRON
have AUX
made VERB
I PRON
used VERB
a DET
Lite ADJ
sour ADJ
cream NOUN
instead ADV
of ADP
yogurt PROPN
. PUNCT
  SPACE
May AUX
notbe PROPN
as ADV
good ADJ
for ADP
you PRON
, PUNCT
but CCONJ
I PRON
prefer VERB
the DET
taste NOUN
. PUNCT
  SPACE
A DET
few ADJ
small ADJ
bits NOUN
of ADP
cuke PROPN
inaddition NOUN
to ADP
the DET
grated VERB
cuke PROPN
may AUX
also ADV
finish VERB
the DET
sauce NOUN
off ADP
nicely.---TRHmutrh@uxa.ecn.bgu.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59252From NUM
: PUNCT
res4w@galen.med.Virginia.EDU PROPN
( PUNCT
Robert PROPN
E. PROPN
Schmieg)Subject NUM
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)ken@isis.cns.caltech.edu NUM
  SPACE
writes VERB
: PUNCT
> X
I PRON
do AUX
n't PART
know VERB
the DET
first ADJ
thing NOUN
about ADP
yeast NOUN
infections NOUN
but CCONJ
I PRON
am AUX
a DET
scientist NOUN
. PUNCT
> X
No DET
scientist NOUN
would AUX
take VERB
your PRON
statement NOUN
--- PUNCT
" PUNCT
no DET
convincing ADJ
empirical ADJ
evidence NOUN
> X
to PART
support VERB
the DET
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
--- PUNCT
to PART
tell VERB
you PRON
> PUNCT
anything PRON
except SCONJ
an DET
absence NOUN
of ADP
data NOUN
on ADP
the DET
question NOUN
. PUNCT
The DET
burden NOUN
of ADP
proof NOUN
rests NOUN
upon SCONJ
those DET
who PRON
claim VERB
the DET
existenceof NOUN
this DET
" PUNCT
syndrome NOUN
" PUNCT
. PUNCT
  SPACE
To ADP
date NOUN
, PUNCT
these DET
claims NOUN
are AUX
unsubstantiatedby ADJ
any DET
available ADJ
data NOUN
. PUNCT
  SPACE
Hopefully ADV
, PUNCT
as SCONJ
a DET
scientist NOUN
, PUNCT
you PRON
wouldtake VERB
issue NOUN
with ADP
anyone PRON
overstating VERB
their PRON
conclusions NOUN
basedupon ADP
their PRON
data NOUN
. PUNCT
> X
beasties VERB
with ADP
present ADJ
methods NOUN
even ADV
if SCONJ
they PRON
were AUX
there ADV
. PUNCT
  SPACE
Noring VERB
and CCONJ
the DET
> X
fellow NOUN
from ADP
Oklahoma PROPN
( PUNCT
sorry INTJ
, PUNCT
forgot VERB
your PRON
name NOUN
) PUNCT
have AUX
also ADV
suggested VERB
one NUM
set NOUN
> X
of ADP
anecdotal ADJ
evidence NOUN
in ADP
favor NOUN
based VERB
on ADP
their PRON
personal ADJ
experiences NOUN
--- PUNCT
> X
namely ADV
, PUNCT
that SCONJ
when ADV
people NOUN
with ADP
certain ADJ
conditions NOUN
are AUX
given VERB
anti ADJ
- ADJ
fungals NOUN
, PUNCT
> X
many ADJ
of ADP
them PRON
appear VERB
to PART
get AUX
better ADJ
. PUNCT
  SPACE
Gee PROPN
, PUNCT
I PRON
have AUX
many ADJ
interesting ADJ
and CCONJ
enlightening ADJ
anecdotes VERB
aboutmyself PRON
, PUNCT
my PRON
friends NOUN
, PUNCT
and CCONJ
my PRON
family NOUN
, PUNCT
but CCONJ
in ADP
the DET
practice NOUN
ofmedicine NOUN
I PRON
expect VERB
and CCONJ
demand VERB
more ADV
rigorous ADJ
rationales NOUN
forbasing VERB
therapy NOUN
than SCONJ
" PUNCT
Aunt PROPN
Susie PROPN
's PART
brother NOUN
- PUNCT
in ADP
- PUNCT
law NOUN
... PUNCT
" PUNCT
.Anecdotal PUNCT
evidence NOUN
may AUX
provide VERB
inspiration NOUN
for ADP
a DET
hypothesis NOUN
, PUNCT
but CCONJ
rarely ADV
proves VERB
anything PRON
in ADP
a DET
positive ADJ
sense NOUN
. PUNCT
  SPACE
And CCONJ
unlikemathematics NOUN
, PUNCT
boolean ADJ
logic NOUN
rarely ADV
applies VERB
directly ADV
to ADP
medicalissues NOUN
, PUNCT
and CCONJ
so ADV
evidence NOUN
of ADP
' PUNCT
exceptions NOUN
' PUNCT
does AUX
not PART
usuallydisprove VERB
but CCONJ
rather ADV
modifies VERB
current ADJ
concepts NOUN
of ADP
disease PROPN
. PUNCT
> X
So ADV
, PUNCT
if SCONJ
you PRON
have AUX
any DET
evidence NOUN
* PUNCT
against ADP
* PUNCT
the DET
hypothesis NOUN
--- PUNCT
for ADP
example NOUN
, PUNCT
> X
controlled VERB
double ADJ
- PUNCT
blind ADJ
studies NOUN
showing VERB
that SCONJ
the DET
anti NOUN
- NOUN
fungals NOUN
do AUX
n't PART
do AUX
any DET
> X
better ADJ
than SCONJ
sugar NOUN
water NOUN
--- PUNCT
then ADV
let VERB
's PRON
hear VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
, PUNCT
then ADV
what PRON
we PRON
> X
have AUX
is AUX
anecdotal ADJ
and CCONJ
uncontrolled ADJ
evidence NOUN
on ADP
one NUM
side NOUN
, PUNCT
and CCONJ
abject VERB
> X
disbelief NOUN
on ADP
the DET
other ADJ
. PUNCT
  SPACE
In ADP
which PRON
case NOUN
, PUNCT
please INTJ
, PUNCT
there PRON
is AUX
no DET
point NOUN
in ADP
yelling VERB
> X
back ADV
and CCONJ
forth ADV
at ADP
each DET
other ADJ
any DET
longer ADV
since SCONJ
neither DET
side NOUN
has AUX
any DET
> X
convincing ADJ
evidence NOUN
either CCONJ
positive ADJ
or CCONJ
negative ADJ
. PUNCT
  SPACE
I PRON
would AUX
characterize VERB
it PRON
not PART
as SCONJ
' PUNCT
abject ADJ
disbelief NOUN
' PUNCT
but CCONJ
rather ADV
' PUNCT
scientific ADJ
outrage NOUN
over ADP
vastly ADV
overstated VERB
conclusions NOUN
' PUNCT
. PUNCT
> X
it PRON
appears VERB
to ADP
me PRON
the DET
main ADJ
question NOUN
now ADV
is AUX
whether SCONJ
the DET
proponents NOUN
can AUX
> X
marshall PROPN
enough ADJ
anecdotal ADJ
evidence NOUN
in ADP
a DET
convincing ADJ
and CCONJ
documented VERB
enough ADJ
> X
manner NOUN
to PART
make VERB
a DET
good ADJ
case NOUN
for ADP
carrying VERB
out ADP
a DET
good ADJ
controlled VERB
double ADJ
- PUNCT
blind ADJ
> X
study NOUN
of ADP
antifungals NOUN
( PUNCT
or CCONJ
else ADV
, PUNCT
forget VERB
convincing VERB
anybody PRON
else ADV
to PART
carry VERB
out ADP
> X
the DET
test NOUN
, PUNCT
just ADV
carry VERB
it PRON
out ADP
themselves PRON
! PUNCT
) PUNCT
--- PUNCT
and CCONJ
also ADV
, PUNCT
whether SCONJ
they PRON
can AUX
> X
adequately ADV
define VERB
the DET
patient ADJ
population NOUN
or CCONJ
symptoms NOUN
on ADP
which PRON
such DET
a DET
study NOUN
> X
should AUX
be AUX
carried VERB
out ADP
to PART
provide VERB
a DET
fair ADJ
test NOUN
of ADP
the DET
hypothesis NOUN
. PUNCT
I PRON
have AUX
no DET
problem NOUN
with ADP
such DET
an DET
approach NOUN
; PUNCT
but CCONJ
this DET
is AUX
NOT ADV
whatis NOUN
happening VERB
in ADP
the DET
' PUNCT
trenches NOUN
' PUNCT
of ADP
this DET
diagnosis NOUN
. PUNCT
Bob PROPN
SchmiegNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59253From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject NOUN
: PUNCT
Adenocarcinoma PROPN
of ADP
the DET
LungsPutting PROPN
aside ADV
our PRON
substantial ADJ
differences NOUN
, PUNCT
I PRON
'd AUX
like VERB
to PART
ask VERB
the DET
knowledgeableones NOUN
to PART
give VERB
feedback NOUN
on ADP
this DET
. PUNCT
  SPACE
Let VERB
me PRON
explain VERB
. PUNCT
One NUM
of ADP
my PRON
family NOUN
members NOUN
last ADJ
week NOUN
was AUX
discovered VERB
to PART
have AUX
a DET
brain NOUN
tumor NOUN
afterhaving VERB
some DET
difficulties NOUN
with ADP
walking NOUN
and CCONJ
writing NOUN
( PUNCT
she PRON
is AUX
64 NUM
years NOUN
old).Otherwise ADV
, PUNCT
she PRON
is AUX
in ADP
fine ADJ
health NOUN
. PUNCT
  SPACE
The DET
discovery NOUN
was AUX
made VERB
via ADP
CAT NOUN
scans NOUN
. PUNCT
She PRON
then ADV
had AUX
MRI PROPN
scans NOUN
done VERB
, PUNCT
where ADV
small ADJ
cancerous ADJ
areas NOUN
were AUX
discoveredin ADJ
her PRON
lungs NOUN
. PUNCT
  SPACE
Biopsies PROPN
showed VERB
it PRON
to PART
be AUX
adenocarcinoma PROPN
. PUNCT
  SPACE
One NUM
spot NOUN
isin PROPN
the DET
lungs NOUN
, PUNCT
and CCONJ
another DET
in ADP
the DET
pneumothorax NOUN
. PUNCT
  SPACE
The DET
oncologists NOUN
believethe DET
cancer NOUN
started VERB
in ADP
the DET
lungs NOUN
and CCONJ
caused VERB
the DET
brain NOUN
tumor NOUN
( PUNCT
she PRON
smokeduntil ADP
four NUM
years NOUN
ago).Anyway ADV
, PUNCT
I PRON
'd AUX
like INTJ
feedback VERB
as SCONJ
to ADP
what PRON
adenocarcinoma PROPN
is AUX
, PUNCT
how ADV
it PRON
is AUX
differentfrom ADP
other ADJ
cancers NOUN
, PUNCT
how ADV
she PRON
will AUX
be AUX
treated VERB
( PUNCT
luckily ADV
the DET
tumor NOUN
is AUX
rightbelow VERB
the DET
skull NOUN
and CCONJ
can AUX
be AUX
easily ADV
removed VERB
) PUNCT
, PUNCT
and CCONJ
statistically ADV
what PRON
arethe VERB
chances NOUN
for ADP
full ADJ
remission NOUN
/ SYM
recovery?Thanks NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59254From NUM
: PUNCT
x91hozak@gw.wmich.eduSubject PROPN
: PUNCT
PRK PROPN
referral NOUN
in ADP
CanadaCould PROPN
some DET
please INTJ
refer VERB
me PRON
to ADP
someone PRON
who PRON
can AUX
perform VERB
PRK PROPN
( PUNCT
Photo PROPN
Refractive PROPN
Keratostomy PROPN
) PUNCT
in ADP
Canada PROPN
( PUNCT
preferably ADV
eastern ADJ
portion NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
looked VERB
inthe ADV
yellow ADJ
pages NOUN
with ADP
little ADJ
success NOUN
, PUNCT
and CCONJ
if SCONJ
someone PRON
has AUX
had VERB
a DET
good ADJ
( PUNCT
orbad NOUN
, PUNCT
for ADP
that DET
matter NOUN
) PUNCT
experience NOUN
, PUNCT
that PRON
would AUX
be AUX
especially ADV
helpful ADJ
if SCONJ
youcould PRON
please INTJ
let VERB
me PRON
know VERB
. PUNCT
Thanks NOUN
, PUNCT
Kurt PROPN
Hozak92hozak@lab.cc.wmich.edu PROPN
( PUNCT
preferred ADJ
address)Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59255From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
cholistasis(sp?)/fat ADJ
- PUNCT
free ADJ
diet/pregnancy!!aldridge@netcom.com NOUN
( PUNCT
Jacquelin PROPN
Aldridge PROPN
) PUNCT
writes VERB
: PUNCT
I PRON
decided VERB
to PART
come VERB
back ADV
and CCONJ
amend VERB
this DET
so SCONJ
it PRON
quotes VERB
me PRON
and CCONJ
has AUX
addedcomments...>heart@access.digex.com X
( PUNCT
G PROPN
) PUNCT
writes:>>Hi,>>it PROPN
started VERB
to PART
hurt VERB
when ADV
I PRON
lay VERB
on ADP
my PRON
right ADJ
side NOUN
, PUNCT
and CCONJ
then ADV
it PRON
hurt VERB
  SPACE
> X
> X
no ADV
matter ADV
what PRON
position NOUN
I PRON
was AUX
in ADV
. PUNCT
  SPACE
Next ADV
, PUNCT
I PRON
noticed VERB
that SCONJ
when ADV
I PRON
> X
> X
ate VERB
greasy NOUN
or CCONJ
fatty NOUN
foods NOUN
I PRON
felt VERB
like SCONJ
my PRON
entire ADJ
abdomen NOUN
had AUX
> X
> X
turned VERB
to ADP
stone NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
in ADP
the DET
area NOUN
got VERB
worse ADJ
. PUNCT
  SPACE
However ADV
if SCONJ
> X
> X
I PRON
ate VERB
sauerkraut NOUN
or CCONJ
vinegar NOUN
or CCONJ
something PRON
to PART
' PUNCT
cut VERB
' PUNCT
the DET
fat NOUN
it PRON
> X
> X
was AUX
n't PART
as ADV
much ADJ
of ADP
a DET
problem.>>So NOUN
the DET
doctor NOUN
says VERB
I PRON
have AUX
cholistatis NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
should AUX
avoid VERB
> X
> X
fatty PROPN
foods NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
, PUNCT
and CCONJ
because SCONJ
I PRON
was AUX
already ADV
aware ADJ
> X
> X
of ADP
what PRON
seemed VERB
to ADP
me PRON
this DET
cause NOUN
and CCONJ
effect NOUN
relationship NOUN
I PRON
have AUX
> X
> X
been AUX
avoiding VERB
these DET
foods NOUN
on ADP
my PRON
own ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
still ADV
able ADJ
to PART
eat VERB
> X
> X
foods NOUN
with ADP
Ricotta PROPN
cheese NOUN
for ADP
instance NOUN
and CCONJ
other ADJ
low ADJ
fat ADJ
foods NOUN
. PUNCT
  SPACE
> X
> X
But CCONJ
doc PROPN
wants VERB
me PRON
to PART
be AUX
on ADP
a DET
non ADJ
- ADJ
fat ADJ
diet NOUN
. PUNCT
  SPACE
This DET
means VERB
no DET
meat NOUN
> X
> X
except SCONJ
fish NOUN
and CCONJ
chicken NOUN
w/o ADP
skin NOUN
( PUNCT
I PRON
do AUX
this DET
anyway ADV
) PUNCT
. PUNCT
  SPACE
No DET
nuts NOUN
, PUNCT
> X
> X
fried VERB
food NOUN
, PUNCT
cheese NOUN
etc X
. PUNCT
  SPACE
I PRON
am AUX
allowed VERB
skim PROPN
milk NOUN
. PUNCT
  SPACE
She PRON
said VERB
I PRON
> X
> X
should AUX
avoid VERB
anything PRON
sweet ADJ
( PUNCT
e.g. ADV
bananas PROPN
) PUNCT
. PUNCT
  SPACE
Also ADV
I PRON
must AUX
only ADV
> X
> X
have AUX
one NUM
serving VERB
of ADP
something PRON
high ADJ
in ADP
carbohydrates NOUN
a DET
day NOUN
( PUNCT
> X
> X
potatoes PROPN
, PUNCT
pasta NOUN
, PUNCT
rice NOUN
) PUNCT
! PUNCT
  SPACE
She PRON
said VERB
I PRON
ca AUX
n't PART
even ADV
cook VERB
vegetables NOUN
in ADP
> X
> X
a DET
little ADJ
bit NOUN
of ADP
oil NOUN
and CCONJ
that SCONJ
I PRON
should AUX
eat VERB
vegetables NOUN
raw ADJ
or CCONJ
> X
> X
steamed PROPN
. PUNCT
  SPACE
I PRON
'm AUX
concerned ADJ
because SCONJ
I PRON
understand VERB
you PRON
need VERB
to PART
have AUX
> X
> X
some DET
fat NOUN
in ADP
your PRON
diet NOUN
to PART
help VERB
in ADP
the DET
digestive ADJ
process NOUN
. PUNCT
  SPACE
And CCONJ
if SCONJ
> X
> X
G PROPN
> X
For ADP
one NUM
week NOUN
, PUNCT
she PRON
probably ADV
wants VERB
to PART
see VERB
how ADV
you PRON
react VERB
to ADP
the DET
diet NOUN
. PUNCT
If SCONJ
it PRON
> PUNCT
changes VERB
anything PRON
. PUNCT
> X
You PRON
can AUX
live VERB
on ADP
the DET
diet NOUN
but CCONJ
you PRON
need VERB
to PART
up ADP
your PRON
non ADJ
- ADJ
fat ADJ
calories NOUN
. PUNCT
Wherebefore NOUN
you PRON
had AUX
a DET
pat NOUN
of ADP
butter NOUN
, PUNCT
now ADV
you PRON
need VERB
a DET
medium ADJ
apple NOUN
( PUNCT
probably ADV
microwave VERB
> X
cooked VERB
) PUNCT
. PUNCT
  SPACE
Smaller ADJ
meals NOUN
but CCONJ
more ADJ
of ADP
them PRON
. PUNCT
Not PART
terrific ADJ
amounts NOUN
of ADP
meat NOUN
, PUNCT
it's PRON
> X
hard ADV
to PART
digest VERB
anyway ADV
. PUNCT
First ADV
, PUNCT
even ADV
fish NOUN
, PUNCT
fowl NOUN
and CCONJ
breads NOUN
have AUX
fat ADJ
. PUNCT
Second ADV
, PUNCT
the DET
body NOUN
will AUX
make VERB
fat NOUN
out SCONJ
of ADP
carbohydrates NOUN
if SCONJ
it PRON
needs VERB
them PRON
. PUNCT
Third ADV
, PUNCT
yourbody NOUN
, PUNCT
like SCONJ
most ADJ
peoples NOUN
, PUNCT
was AUX
n't PART
bred VERB
to PART
live VERB
on ADP
a DET
high ADJ
fat NOUN
, PUNCT
modern ADJ
diet NOUN
. PUNCT
If SCONJ
you PRON
read VERB
texts NOUN
about ADP
ancient ADJ
and CCONJ
primative ADJ
people NOUN
you PRON
will AUX
read VERB
aboutthe DET
luxury NOUN
of ADP
eating VERB
fat NOUN
, PUNCT
how ADV
people NOUN
enjoyed VERB
it PRON
. PUNCT
This DET
was AUX
because SCONJ
it PRON
was AUX
sorare ADJ
. PUNCT
Even ADV
cows NOUN
did AUX
n't PART
put VERB
out ADP
nearly ADV
the DET
amount NOUN
of ADP
butterfat NOUN
in ADP
milk NOUN
thatthey NOUN
do AUX
now ADV
. PUNCT
  SPACE
> X
For ADP
comfort NOUN
and CCONJ
to PART
make VERB
the DET
carbohydrate NOUN
meal NOUN
" PUNCT
last ADJ
" PUNCT
longer ADJ
eat VERB
pasta NOUN
or CCONJ
> X
rice NOUN
which PRON
give VERB
their PRON
calories NOUN
up ADP
slowly ADV
rather ADV
than SCONJ
bread NOUN
or CCONJ
corn NOUN
. PUNCT
Maybe ADV
> X
smaller ADJ
meals NOUN
as SCONJ
you PRON
may AUX
be AUX
getting VERB
less ADJ
room NOUN
in ADP
the DET
stomach NOUN
area NOUN
. PUNCT
Is AUX
the DET
> X
baby NOUN
still ADV
coming VERB
up ADP
. PUNCT
Is AUX
it PRON
starting VERB
to PART
push VERB
or CCONJ
rub VERB
under ADP
your PRON
ribs NOUN
? PUNCT
How ADV
> X
tight ADV
are AUX
your PRON
clothes NOUN
. PUNCT
You PRON
should AUX
n't PART
be AUX
wearing VERB
any DET
clothing NOUN
that PRON
compresses VERB
> X
your PRON
middle NOUN
. PUNCT
Be AUX
sure ADJ
not PART
to PART
" PUNCT
suck VERB
in ADP
" PUNCT
your PRON
stomach NOUN
when ADV
sitting VERB
, PUNCT
again ADV
it PRON
> X
will AUX
put VERB
pressure NOUN
on ADP
the DET
digestive ADJ
tract NOUN
. PUNCT
> X
Try VERB
laying VERB
on ADP
your PRON
sides NOUN
, PUNCT
back,>and CCONJ
stay VERB
in ADP
reclining VERB
positions NOUN
for ADP
the DET
many ADJ
hours NOUN
you PRON
are AUX
being AUX
inactive.>Easier ADJ
on ADP
your PRON
legs NOUN
( PUNCT
circulation NOUN
) PUNCT
as ADV
well ADV
. PUNCT
You PRON
might AUX
try VERB
letting VERB
the DET
baby>"turn PROPN
" PUNCT
or CCONJ
at ADP
least ADJ
not PART
be AUX
forced VERB
under ADP
the DET
ribs NOUN
during ADP
the DET
last ADJ
months.>When ADP
you PRON
are AUX
shortwaisted VERB
it PRON
's AUX
easy ADJ
for ADP
that DET
baby NOUN
to PART
end VERB
up ADP
right ADV
under ADP
the DET
> X
diaphram NOUN
, PUNCT
especially ADV
if SCONJ
you PRON
have AUX
tight ADJ
abdominal ADJ
muscles NOUN
. PUNCT
If SCONJ
I PRON
had AUX
my PRON
> X
second ADJ
one NOUN
to PART
do AUX
over ADP
again ADV
I PRON
think VERB
I PRON
'd AUX
have AUX
tried VERB
to PART
loosen VERB
up ADP
since SCONJ
he PRON
> X
didn't PROPN
turn VERB
sideways ADV
until ADP
late ADJ
and CCONJ
the DET
relief NOUN
was AUX
enormous.>Maybe PROPN
this DET
doctor NOUN
does AUX
have AUX
a DET
thing NOUN
about ADP
weight NOUN
gain NOUN
in ADP
pregnancy NOUN
or CCONJ
maybe ADV
> X
she PRON
just ADV
nags VERB
all DET
her PRON
patients NOUN
this DET
way NOUN
. PUNCT
Especially ADV
if SCONJ
she PRON
's AUX
young ADJ
. PUNCT
  SPACE
> X
But CCONJ
this DET
gallbladder NOUN
/ PUNCT
whatever PRON
problem NOUN
that PRON
might AUX
be AUX
coming VERB
up ADP
is AUX
something PRON
> X
to PART
be AUX
avoided VERB
if SCONJ
possible ADJ
. PUNCT
You PRON
do AUX
n't PART
want VERB
to PART
become VERB
ill ADJ
with ADP
it PRON
while SCONJ
youare NOUN
pregnant ADJ
. PUNCT
If SCONJ
you PRON
are AUX
lucky ADJ
you PRON
can AUX
work VERB
on ADP
getting VERB
rid VERB
of ADP
it PRON
after ADP
thebaby PROPN
. PUNCT
( PUNCT
It PRON
is AUX
said VERB
that SCONJ
doctors NOUN
have AUX
less ADJ
gallbadder NOUN
surgery NOUN
than SCONJ
the DET
restof NOUN
the DET
population NOUN
, PUNCT
a DET
good ADJ
part NOUN
of ADP
it PRON
is AUX
that SCONJ
they PRON
are AUX
willing ADJ
to PART
do AUX
thedieting NOUN
, PUNCT
etc X
that PRON
helps VERB
them PRON
avoid VERB
surgery NOUN
. PUNCT
Also ADV
, PUNCT
I PRON
do AUX
n't PART
think VERB
the DET
surgerylets NOUN
a DET
person NOUN
go VERB
back ADV
to ADP
eating VERB
a DET
high ADJ
fat ADJ
diet NOUN
. PUNCT
) PUNCT
> X
Nausea PROPN
, PUNCT
etc X
. PUNCT
can AUX
vary VERB
from ADP
person NOUN
to ADP
person NOUN
and CCONJ
with ADP
each DET
pregnancy NOUN
. PUNCT
My PRON
> NOUN
first ADJ
pregnancy NOUN
was AUX
miserable ADJ
. PUNCT
During ADP
the DET
second ADJ
I PRON
had AUX
very ADV
little ADJ
trouble.>Some NOUN
articles NOUN
have AUX
said VERB
that SCONJ
women NOUN
with ADP
nausea NOUN
had AUX
a DET
statistically ADV
better ADJ
> X
chance NOUN
of ADP
carrying VERB
their PRON
baby NOUN
. PUNCT
( PUNCT
grain NOUN
of ADP
salt NOUN
here ADV
) PUNCT
> X
Good ADJ
luck>-Jackie PROPN
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59256From NUM
: PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?These NOUN
are AUX
MY ADP
last ADJ
words NOUN
on ADP
the DET
subjectFrom PROPN
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby PROPN
) PUNCT
writes VERB
: PUNCT
> X
As SCONJ
a DET
person NOUN
who PRON
is AUX
very ADV
sensitive ADJ
to ADP
msg NOUN
and CCONJ
whose PRON
wife NOUN
and CCONJ
kids NOUN
are AUX
> X
too ADV
, PUNCT
I PRON
WANT VERB
TO PART
KNOW VERB
WHY ADV
THE DET
FOOD NOUN
INDUSTRY NOUN
WANTS VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
FOOD!!!Some PROPN
people NOUN
think VERB
it PRON
enhances VERB
the DET
flavor NOUN
. PUNCT
  SPACE
I PRON
personally ADV
do AUX
n't PART
think VERB
ithelps ADP
the DET
taste NOUN
, PUNCT
it PRON
makes VERB
me PRON
sick ADJ
, PUNCT
so ADV
I PRON
try VERB
to PART
avoid VERB
it PRON
. PUNCT
> X
From ADP
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
Sez CCONJ
you PRON
. PUNCT
  SPACE
Such DET
an DET
effect NOUN
in ADP
humans NOUN
has AUX
not PART
been AUX
demonstrated VERB
in ADP
any DET
> X
controlled VERB
studies NOUN
. PUNCT
  SPACE
Infant NOUN
mice NOUN
and CCONJ
other ADJ
models NOUN
are AUX
useful ADJ
as ADV
far ADV
> X
as SCONJ
they PRON
go VERB
, PUNCT
but CCONJ
they PRON
're AUX
not PART
relevant ADJ
to ADP
the DET
matter NOUN
at ADP
hand NOUN
. PUNCT
  SPACE
Which PRON
is AUX
> X
not PART
to PART
say VERB
that SCONJ
I PRON
favor VERB
its PRON
use NOUN
in ADP
things NOUN
like SCONJ
baby NOUN
food NOUN
-- PUNCT
a DET
patently ADV
> X
ridiculous ADJ
use NOUN
of ADP
the DET
additive ADJ
. PUNCT
  SPACE
But CCONJ
we PRON
have AUX
no DET
reason NOUN
to PART
believe VERB
> X
that SCONJ
MSG PROPN
in ADP
the DET
diet NOUN
effects NOUN
humans NOUN
adversely ADV
. PUNCT
Well INTJ
, PUNCT
I PRON
know VERB
that SCONJ
MSG NOUN
effects NOUN
ME PROPN
adversely ADV
- PUNCT
maybe ADV
not PART
permanently ADV
butat ADJ
least ADJ
temporarily ADV
enough ADV
that SCONJ
I PRON
like VERB
to PART
try VERB
to PART
avoid VERB
the DET
stuff NOUN
. PUNCT
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
Writes VERB
: PUNCT
> X
If SCONJ
you PRON
do AUX
n't PART
like VERB
additives NOUN
, PUNCT
then ADV
for ADP
godsake NOUN
, PUNCT
> X
get AUX
off ADP
the DET
net NOUN
and CCONJ
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
. PUNCT
  SPACE
Sheesh PROPN
. PUNCT
EXCUSE NOUN
ME!!!!!!!!!!!!Why NOUN
ca AUX
n't PART
people NOUN
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
* PUNCT
ON ADP
* PUNCT
the DET
net NOUN
. PUNCT
  SPACE
I PRON
've AUX
gottenLOTS PUNCT
of ADP
recipes NOUN
off ADP
the DET
net NOUN
that PRON
do AUX
n't PART
use VERB
additives NOUN
. PUNCT
If SCONJ
you PRON
LIKE VERB
additives NOUN
then ADV
get AUX
off ADP
the DET
net NOUN
and CCONJ
go VERB
to ADP
your PRON
localsupermarket NOUN
, PUNCT
buy VERB
lots NOUN
of ADP
packaged VERB
foods NOUN
, PUNCT
and CCONJ
YOU PRON
get VERB
OFF PROPN
THE DET
NET NOUN
! PUNCT
! PUNCT
> X
> X
IS VERB
IT PRON
TO PART
COVER VERB
UP ADP
THE DET
FACT NOUN
THAT PRON
THE DET
RECIPES NOUN
ARE VERB
NOT ADV
VERY ADV
GOOD ADJ
> X
> X
OR CCONJ
THE DET
FOOD NOUN
IS VERB
POOR PROPN
QUALITY VERB
? PUNCT
> X
> X
Yes INTJ
, PUNCT
and CCONJ
YOU PRON
buy VERB
it PRON
. PUNCT
  SPACE
Says VERB
something PRON
about ADP
your PRON
taste NOUN
, PUNCT
eh?I NOUN
do AUX
n't PART
! PUNCT
! PUNCT
> X
> X
And CCONJ
what PRON
happens VERB
when ADV
the DET
companies NOUN
forced VERB
to PART
submit VERB
to ADP
your PRON
silly ADJ
notions NOUN
> X
go VERB
out SCONJ
of ADP
business NOUN
because SCONJ
nobody PRON
wants VERB
to PART
buy VERB
their PRON
overpriced VERB
bad ADJ
food NOUN
? PUNCT
> X
( PUNCT
Removing VERB
preservatives NOUN
directly ADV
raises VERB
food NOUN
costs NOUN
by ADP
reducing VERB
shelf NOUN
life.)HEY PROPN
- PUNCT
I PRON
'll AUX
pay VERB
* PUNCT
MY INTJ
* PUNCT
hard ADV
earned VERB
dollars NOUN
to PART
buy VERB
food NOUN
that PRON
costs VERB
morebut PROPN
does AUX
NOT ADV
have AUX
preservatives NOUN
. PUNCT
  SPACE
I PRON
choose VERB
to PART
speak VERB
with ADP
my PRON
pocketbookin NOUN
many ADJ
ways NOUN
. PUNCT
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
> X
You PRON
have AUX
a DET
good ADJ
point NOUN
. PUNCT
  SPACE
MSG PROPN
is AUX
commonly ADV
used VERB
in ADP
soups NOUN
, PUNCT
in ADP
bottled ADJ
> X
sauces NOUN
, PUNCT
in ADP
seasoning VERB
mixtures NOUN
, PUNCT
and CCONJ
in ADP
the DET
coating NOUN
on ADP
barbecue NOUN
potato NOUN
> X
chips NOUN
. PUNCT
  SPACE
Nacho PROPN
cheese NOUN
Doritos PROPN
, PUNCT
breading VERB
for ADP
MANY ADJ
frozen ADJ
fried VERB
foods NOUN
( PUNCT
like SCONJ
fishand PROPN
chicken NOUN
) PUNCT
, PUNCT
etc X
. PUNCT
ad PROPN
naseum PROPN
. PUNCT
> X
If SCONJ
MSG PROPN
is AUX
really ADV
the DET
problem NOUN
, PUNCT
we PRON
should AUX
call VERB
this DET
" PUNCT
barbecue NOUN
potato NOUN
> X
chip PROPN
syndrome PROPN
" PUNCT
or CCONJ
maybe ADV
" PUNCT
diner NOUN
syndrome NOUN
. PUNCT
" PUNCT
   SPACE
Or CCONJ
the DET
" PUNCT
and CCONJ
other ADJ
natural ADJ
flavorings NOUN
syndrome NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
's AUX
been AUX
a DET
few ADJ
yearssince NOUN
I PRON
've AUX
bought VERB
anything PRON
labelled VERB
with ADP
" PUNCT
and CCONJ
other ADJ
naturalflavorings NOUN
" PUNCT
. PUNCT
  SPACE
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
> X
> X
THE DET
REACTION NOUN
CAME VERB
THE DET
TIME NOUN
THE DET
MSG NOUN
WAS VERB
IN ADP
THE DET
FOOD PROPN
> X
> X
THAT PRON
WAS VERB
THE DET
ONLY ADJ
DIFFERENCE PROPN
> X
> X
SAME PROPN
RESTAURANT PROPN
- PUNCT
SAME PROPN
INGREDIENTS PROPN
! PUNCT
! PUNCT
! PUNCT
> X
> X
How ADV
do AUX
you PRON
know VERB
this DET
? PUNCT
> X
> X
In ADP
order NOUN
to PART
demonstrate VERB
your PRON
claim NOUN
, PUNCT
you PRON
would AUX
have AUX
had VERB
to PART
supervise VERB
the DET
> X
preparation NOUN
on ADP
both DET
occasions NOUN
. PUNCT
  SPACE
Perhaps ADV
they PRON
used VERB
MSG PROPN
both DET
times NOUN
, PUNCT
and CCONJ
lied VERB
> X
about ADP
it PRON
. PUNCT
  SPACE
Perhaps ADV
once SCONJ
they PRON
used VERB
something PRON
that PRON
had AUX
begun VERB
to PART
spoil VERB
, PUNCT
and CCONJ
> PROPN
produced VERB
some DET
bizarre ADJ
toxin NOUN
that PRON
you PRON
're AUX
allergic ADJ
to ADP
. PUNCT
Well INTJ
, PUNCT
I PRON
had AUX
had VERB
similar ADJ
reactions NOUN
many ADJ
times NOUN
. PUNCT
  SPACE
That DET
was AUX
when ADV
I PRON
reallystarted VERB
WATCHING PROPN
CAREFULLY PROPN
- PUNCT
reaction NOUN
to ADP
Doritos PROPN
- PUNCT
hey INTJ
guess VERB
what PRON
's AUX
inthere NOUN
- PUNCT
reaction NOUN
to ADP
Lawry PROPN
's PART
season NOUN
salt NOUN
- PUNCT
guess NOUN
what PRON
's AUX
in ADP
THEREI'll PROPN
give VERB
you PRON
a DET
hint NOUN
- PUNCT
I PRON
've AUX
had VERB
enough ADJ
problems NOUN
with ADP
MANY ADJ
MANY ADJ
MANYdifferent NOUN
products NOUN
with ADP
MSG PROPN
that PRON
I PRON
figured VERB
out ADP
one NUM
thing NOUN
. PUNCT
UNLESS ADP
I PRON
plan VERB
on ADP
getting VERB
sick ADJ
- PUNCT
I PRON
wo AUX
n't PART
eat VERB
the DET
stuff NOUN
without ADP
mySeldane PROPN
. PUNCT
  SPACE
And CCONJ
did AUX
I PRON
ever ADV
learn VERB
to PART
read VERB
labels NOUN
. PUNCT
> X
PLEASE INTJ
note VERB
that SCONJ
I PRON
am AUX
NOT ADV
saying VERB
you PRON
are AUX
making VERB
it PRON
up ADP
, PUNCT
I PRON
am AUX
just ADV
> X
trying VERB
to PART
point VERB
out ADP
that SCONJ
the DET
situation NOUN
is AUX
not PART
always ADV
as ADV
simple ADJ
as SCONJ
it PRON
> X
might AUX
seem VERB
. PUNCT
  SPACE
Which PRON
was AUX
why ADV
I PRON
started VERB
checking VERB
EVERY DET
time NOUN
I PRON
got VERB
sick ADJ
. PUNCT
  SPACE
And CCONJ
EVERYtime NOUN
I PRON
got VERB
sick ADJ
MSG PROPN
was AUX
somehow ADV
involved VERB
in ADP
one NUM
of ADP
the DET
food NOUN
products NOUN
. PUNCT
And CCONJ
consider VERB
there PRON
were AUX
no DET
other ADJ
similar ADJ
ingredients NOUN
( PUNCT
to ADP
my PRON
knowledge)- NOUN
it PRON
might AUX
not PART
please VERB
a DET
medical ADJ
researcher NOUN
- PUNCT
but CCONJ
it PRON
pleased VERB
my PRON
ownpersonal ADJ
physician NOUN
enough ADV
for ADP
him PRON
to PART
give VERB
me PRON
allergy ADJ
medicine NOUN
and CCONJ
MOSTIMPORTANTLY NOUN
it PRON
's AUX
enough ADJ
proof NOUN
for ADP
ME PROPN
to PART
avoid VERB
it PRON
( PUNCT
and CCONJ
enough ADV
proofthat ADP
my PRON
INCREDIBLY ADJ
frugal ADJ
fiance NOUN
did AUX
n't PART
flinch VERB
when ADV
I PRON
literally ADV
threwout VERB
or CCONJ
gave VERB
away ADP
all DET
the DET
food NOUN
products NOUN
in ADP
his PRON
pantry NOUN
that PRON
had AUX
msg NOUN
-and CCONJ
he PRON
always ADV
flinches VERB
when ADV
there PRON
's AUX
waste NOUN
- PUNCT
but CCONJ
it PRON
was AUX
a DET
simpleexplanation NOUN
- PUNCT
I PRON
wo AUX
n't PART
eat VERB
this DET
stuff NOUN
, PUNCT
I PRON
WON'T VERB
cook VERB
with ADP
this DET
stuff NOUN
, PUNCT
soI PROPN
can AUX
either CCONJ
throw VERB
it PRON
out ADP
or CCONJ
give VERB
it PRON
away ADV
. PUNCT
) PUNCT
> X
From ADP
: PUNCT
pattee@ucsu NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Donna PROPN
Pattee PROPN
) PUNCT
> X
My PRON
guess NOUN
was AUX
that SCONJ
the DET
spice NOUN
mix NOUN
on ADP
the DET
fries NOUN
contained VERB
MSG PROPN
, PUNCT
Probably ADV
Lawry PROPN
's PART
seasoning VERB
salt NOUN
. PUNCT
  SPACE
I PRON
LOVE VERB
the DET
way NOUN
that PRON
tastes VERB
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
I PRON
NEVER ADV
consume VERB
ANYTHING NOUN
with ADP
MSG PROPN
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
Ihave PROPN
a DET
certain ADJ
tolerance NOUN
level NOUN
- PUNCT
like SCONJ
a DET
( PUNCT
small ADJ
) PUNCT
bag NOUN
of ADP
bbq PROPN
chips NOUN
oncea PROPN
month NOUN
or CCONJ
so ADV
it PRON
not PART
a DET
problem NOUN
- PUNCT
but CCONJ
that DET
same ADJ
bag NOUN
of ADP
chips NOUN
willbother ADP
me PRON
if SCONJ
I PRON
also ADV
had AUX
chicken NOUN
bouillon NOUN
yesterday NOUN
and CCONJ
lunch NOUN
at ADP
one NUM
ofthe NOUN
Chinese ADJ
restaurants NOUN
the DET
day NOUN
before ADV
. PUNCT
  SPACE
> X
From ADP
: PUNCT
kelley@healthy.uwaterloo.ca X
( PUNCT
Catherine PROPN
L. PROPN
Kelley PROPN
) PUNCT
> X
> X
> X
All DET
that PRON
's AUX
needed VERB
now ADV
is AUX
that DET
final ADJ
step NOUN
, PUNCT
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
done VERB
> X
on ADP
humans NOUN
. PUNCT
  SPACE
There PRON
is AUX
n't PART
even ADV
an DET
ethical ADJ
question NOUN
about ADP
" PUNCT
possible ADJ
> X
harm NOUN
" PUNCT
, PUNCT
as SCONJ
this DET
is AUX
a DET
widely ADV
used VERB
and CCONJ
approved VERB
food NOUN
additive ADJ
. PUNCT
But CCONJ
- PUNCT
some DET
say VERB
that SCONJ
only ADV
2 NUM
% NOUN
of ADP
the DET
population NOUN
has AUX
a DET
problem NOUN
with ADP
MSG PROPN
-some PROPN
say VERB
it PRON
's AUX
more ADJ
like SCONJ
20 NUM
% NOUN
- PUNCT
but CCONJ
let VERB
's PRON
say VERB
that SCONJ
it PRON
's AUX
5 NUM
% NOUN
. PUNCT
  SPACE
How ADV
manypeople NOUN
would AUX
have AUX
to PART
be AUX
tested VERB
that PRON
would AUX
have AUX
a DET
problem NOUN
? PUNCT
  SPACE
Also ADV
- PUNCT
IKNOW PROPN
I PRON
have AUX
a DET
problem NOUN
with ADP
it PRON
, PUNCT
and CCONJ
I PRON
would AUX
n't PART
VOLUNTEER VERB
for ADP
a DET
test NOUN
. PUNCT
Like SCONJ
thanks NOUN
guys NOUN
but CCONJ
I PRON
do AUX
n't PART
WANT VERB
to PART
get AUX
sick ADJ
. PUNCT
  SPACE
Also ADV
- PUNCT
I PRON
'm AUX
sure ADJ
thatmost ADJ
people NOUN
probably ADV
have AUX
varying VERB
degrees NOUN
of ADP
sensitivities NOUN
atdifferent PROPN
times NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
have AUX
a DET
cold ADJ
I PRON
'm AUX
MUCH ADV
more ADV
susceptible ADJ
to ADP
thereaction NOUN
than SCONJ
when ADV
I PRON
'm AUX
healthy ADJ
( PUNCT
as SCONJ
proven VERB
today NOUN
- PUNCT
when ADV
I PRON
'm AUX
stuffy PROPN
butfor PROPN
some DET
silly ADJ
reason NOUN
I PRON
still ADV
gave VERB
in ADP
and CCONJ
decided VERB
to PART
have AUX
the DET
BBQchips PROPN
; PUNCT
} PUNCT
) PUNCT
. PUNCT
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
> X
Because SCONJ
too ADV
many ADJ
of ADP
you PRON
( PUNCT
generic ADJ
rhetorical PROPN
' PUNCT
you PRON
, PUNCT
' PUNCT
not PART
' PUNCT
you PRON
Cathy PROPN
' PUNCT
) PUNCT
go VERB
> X
around ADP
calling VERB
this DET
" PUNCT
Chinese ADJ
restaurant NOUN
syndrome NOUN
, PUNCT
" PUNCT
thus ADV
suggesting VERB
to ADP
the DET
> X
people NOUN
you PRON
complain VERB
to ADP
that SCONJ
you PRON
experience VERB
this DET
ONLY ADV
from ADP
Chinese ADJ
food NOUN
. PUNCT
> X
MSG PROPN
is AUX
prevalent ADJ
in ADP
a DET
LOT PROPN
more ADJ
things NOUN
than SCONJ
Chinese ADJ
food NOUN
-- PUNCT
thats NOUN
why ADV
I PRON
> X
suggested VERB
calling VERB
this DET
" PUNCT
Diner PROPN
syndrome NOUN
. PUNCT
" PUNCT
  SPACE
Cathy PROPN
does AUX
n't PART
- PUNCT
I PRON
have AUX
n't PART
saved VERB
all DET
my PRON
postings NOUN
but CCONJ
I PRON
NEVER ADV
called VERB
it"chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
and CCONJ
I PRON
NEVER ADV
stated VERB
I PRON
got VERB
it PRON
only ADV
fromChinese ADJ
food NOUN
. PUNCT
  SPACE
I PRON
just ADV
thought VERB
it PRON
would AUX
be AUX
easiest ADJ
to PART
conduct VERB
mypersonal ADJ
test NOUN
at ADP
a DET
Chinese PROPN
take VERB
out ADP
place NOUN
that PRON
I PRON
knew VERB
would AUX
hold VERB
( PUNCT
ornot NOUN
hold NOUN
) PUNCT
the DET
MSG PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
call VERB
up ADP
whoever PRON
makes VERB
Doritos PROPN
and CCONJ
ask VERB
themto PROPN
make VERB
me PRON
ONE NUM
back ADV
of ADP
chips NOUN
without ADP
MSG PROPN
. PUNCT
> X
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
if SCONJ
one PRON
complains VERB
about ADP
potatoes NOUN
from ADP
a DET
mix NOUN
, PUNCT
or CCONJ
> X
restaurant NOUN
spice NOUN
mixes NOUN
, PUNCT
I PRON
'm AUX
going VERB
to PART
believe VERB
them PRON
, PUNCT
and CCONJ
if SCONJ
anyone PRON
says VERB
they PRON
> X
got VERB
( PUNCT
MSG-)sick PROPN
after ADP
eating VERB
too ADV
many ADJ
barbecue NOUN
potato NOUN
chips NOUN
at ADP
a DET
party NOUN
, PUNCT
I PRON
'm AUX
> X
REALLY PROPN
going VERB
to PART
believe VERB
them PRON
. PUNCT
  SPACE
Well INTJ
, PUNCT
I PRON
believe VERB
I PRON
mentioned VERB
that SCONJ
in ADP
an DET
earlier ADJ
post NOUN
Let VERB
's PRON
see VERB
you PRON
wrote VERB
this DET
message NOUN
atDate NOUN
: PUNCT
20 NUM
Apr PROPN
1993 NUM
00:09:31 NUM
-0500but NOUN
on ADP
Date NOUN
: PUNCT
19 NUM
Apr PROPN
1993 NUM
16:33:18 NUM
GMTI PROPN
wrote VERB
: PUNCT
> X
> X
Has AUX
anyone PRON
had AUX
an DET
MSG PROPN
reaction NOUN
from ADP
something PRON
* PUNCT
other ADJ
than SCONJ
* PUNCT
a DET
> X
> X
Chinese ADJ
restaurant NOUN
? PUNCT
  SPACE
> X
LOTS PROPN
of ADP
times NOUN
- PUNCT
that DET
's AUX
why ADV
it PRON
was AUX
so ADV
hard ADJ
for ADP
me PRON
to PART
pin VERB
down ADP
. PUNCT
  SPACE
I PRON
> X
would AUX
probably ADV
have AUX
been AUX
EASIER ADJ
if SCONJ
I PRON
'd AUX
only ADV
have AUX
the DET
reaction NOUN
in ADP
a DET
> X
certain ADJ
type NOUN
of ADP
restaurant NOUN
but CCONJ
I PRON
've AUX
had VERB
the DET
reaction NOUN
in ADP
Chinese ADJ
> X
restaurants NOUN
and CCONJ
Greek ADJ
restaurants NOUN
and CCONJ
Italian ADJ
restaurants NOUN
and CCONJ
Steak VERB
> X
places NOUN
( PUNCT
I PRON
can AUX
tell VERB
you PRON
when ADV
a DET
steak NOUN
joint NOUN
uses VERB
Accent PROPN
to PART
tenderize VERB
> X
their PRON
meat NOUN
) PUNCT
. PUNCT
   SPACE
OH PROPN
- PUNCT
and CCONJ
just ADV
in ADP
case NOUN
anyone PRON
thinks VERB
I PRON
'm AUX
prejudice NOUN
against ADP
eitherChinese ADJ
food NOUN
or CCONJ
Asian ADJ
people NOUN
- PUNCT
I PRON
'm AUX
not PART
going VERB
home ADV
to PART
cook VERB
some DET
Chinesefood PROPN
for ADP
the DET
guy NOUN
I PRON
'm AUX
marrying VERB
next ADJ
week NOUN
. PUNCT
  SPACE
Incidentally ADV
, PUNCT
his PRON
last ADJ
nameis NOUN
Wu PROPN
. PUNCT
SO ADV
STOP VERB
IT PRON
WITH ADP
THE DET
FLAME PROPN
MAIL PROPN
-- PUNCT
Why ADV
does AUX
a DET
woman NOUN
work VERB
ten NUM
years NOUN
to PART
change VERB
a DET
man NOUN
's PART
habits NOUN
and CCONJ
then ADV
complain VERB
that SCONJ
he PRON
's AUX
not PART
the DET
man NOUN
she PRON
married VERB
? PUNCT
      SPACE
-- PUNCT
Barbra PROPN
Streisand PROPN
    SPACE
Mary PROPN
Allison PROPN
( PUNCT
mary@uicsl.csl.uiuc.edu PROPN
) PUNCT
Urbana PROPN
, PUNCT
IllinoisNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59257From NUM
: PUNCT
jpc@avdms8.msfc.nasa.gov PROPN
( PUNCT
J. PROPN
Porter PROPN
Clark)Subject PROPN
: PUNCT
Annual ADJ
inguinal ADJ
hernia PROPN
repairLast PROPN
year NOUN
, PUNCT
I PRON
was AUX
totally ADV
surprised ADJ
when ADV
my PRON
annual ADJ
physical ADJ
disclosed VERB
aninguinal ADJ
hernia PROPN
. PUNCT
  SPACE
I PRON
could AUX
n't PART
remember VERB
doing VERB
anything PRON
that PRON
would AUX
havecaused VERB
it PRON
. PUNCT
  SPACE
That ADV
is ADV
, PUNCT
I PRON
had AUX
n't PART
been AUX
lifting VERB
more ADJ
than SCONJ
other ADJ
people NOUN
do AUX
, PUNCT
and CCONJ
in ADP
fact NOUN
probably ADV
somewhat ADV
less ADJ
. PUNCT
  SPACE
Eventually ADV
the DET
thing NOUN
became VERB
morepainful ADJ
and CCONJ
I PRON
had AUX
the DET
repair NOUN
operation NOUN
. PUNCT
This DET
year NOUN
I PRON
developed VERB
a DET
pain NOUN
on ADP
the DET
other ADJ
side NOUN
. PUNCT
  SPACE
This DET
turned VERB
out ADP
to ADP
beanother PROPN
inguinal ADJ
hernia PROPN
. PUNCT
  SPACE
So ADV
I PRON
go VERB
back ADV
to ADP
the DET
hospital NOUN
Monday PROPN
foranother ADJ
fun NOUN
8-) NUM
operation NOUN
. PUNCT
I PRON
do AUX
n't PART
know VERB
of ADP
anything PRON
I PRON
'm AUX
doing VERB
to PART
cause VERB
this DET
to PART
happen VERB
. PUNCT
  SPACE
I PRON
'm AUX
38years NOUN
old ADJ
and CCONJ
I PRON
do AUX
n't PART
think VERB
I PRON
'm AUX
old ADJ
enough ADV
for ADP
things NOUN
to PART
start VERB
fallingapart NOUN
like SCONJ
this DET
. PUNCT
  SPACE
The DET
surgeon NOUN
who PRON
is AUX
doing VERB
the DET
operation NOUN
seems VERB
tosuspect VERB
a DET
congenital ADJ
weakness NOUN
, PUNCT
but CCONJ
if SCONJ
so ADV
, PUNCT
why ADV
did AUX
it PRON
suddenly ADV
appearwhen VERB
I PRON
was AUX
37 NUM
and CCONJ
not PART
really ADV
as ADV
active ADJ
as SCONJ
I PRON
was AUX
when ADV
I PRON
was AUX
younger?Does PROPN
anyone PRON
know VERB
how ADV
to PART
prevent VERB
a DET
hernia PROPN
, PUNCT
other ADJ
than SCONJ
not PART
liftinganything VERB
? PUNCT
  SPACE
It PRON
's AUX
rare ADJ
that SCONJ
I PRON
lift VERB
more ADJ
than SCONJ
my PRON
16-month NUM
- PUNCT
old ADJ
or CCONJ
a DET
sackfull NOUN
of ADP
groceries NOUN
, PUNCT
and CCONJ
you PRON
may AUX
have AUX
noticed VERB
that SCONJ
your PRON
typical ADJ
grocerysack NOUN
is AUX
fairly ADV
small ADJ
these DET
days NOUN
. PUNCT
  SPACE
Is AUX
there PRON
some DET
sort NOUN
of ADP
exercise NOUN
thatwill NOUN
reduce VERB
the DET
risk?Of PROPN
course NOUN
, PUNCT
my PRON
wife NOUN
thinks VERB
it PRON
's AUX
from ADP
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
atthe NOUN
computer NOUN
, PUNCT
reading VERB
news NOUN
... PUNCT
-- PUNCT
J. PROPN
Porter PROPN
Clark PROPN
    SPACE
jpc@avdms8.msfc.nasa.gov PROPN
or CCONJ
jpc@gaia.msfc.nasa.govNASA/MSFC PROPN
Flight PROPN
Data PROPN
Systems PROPN
BranchNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59258Subject VERB
: PUNCT
CALCIUM ADJ
deposits NOUN
on ADP
heart NOUN
valveFrom PROPN
: PUNCT
john.greze@execnet.com PROPN
( PUNCT
John PROPN
Greze)A PROPN
friend NOUN
, PUNCT
a DET
62 NUM
year NOUN
old ADJ
man NOUN
, PUNCT
has AUX
calcium NOUN
deposits NOUN
on ADP
one NUM
of ADP
hisheart PROPN
valves NOUN
. PUNCT
   SPACE
What PRON
causes VERB
this DET
to PART
happen VERB
and CCONJ
what PRON
can AUX
be AUX
done VERB
aboutit?John.Greze@execnet.comNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59259From NUM
: PUNCT
vrao@nyx.cs.du.edu PROPN
( PUNCT
Vinay PROPN
Rao)Subject NOUN
: PUNCT
Density NOUN
of ADP
the DET
skull NOUN
boneCould PROPN
someone PRON
tell VERB
me PRON
what PRON
the DET
density NOUN
of ADP
skull NOUN
bone NOUN
is AUX
or CCONJ
direct VERB
me PRON
to ADP
a DET
reference NOUN
that PRON
contains VERB
this DET
info NOUN
? PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
it PRON
very ADV
much ADV
. PUNCT
Thanks NOUN
. PUNCT
Vinay--**********************************************Vinay PROPN
J. PROPN
Rao PROPN
                SPACE
vrao@nyx.cs.du.edu**********************************************Newsgroup PUNCT
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59260From NUM
: PUNCT
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant VERB
Edwards)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyHOLFELTZ@LSTC2VM.stortek.com PROPN
writes VERB
: PUNCT
: PUNCT
As SCONJ
you PRON
know VERB
all ADV
ready ADJ
, PUNCT
it PRON
is AUX
the DET
pattern NOUN
in ADP
the DET
bioplasmic ADJ
energy NOUN
: PUNCT
field NOUN
that PRON
is AUX
significant ADJ
. PUNCT
No INTJ
, PUNCT
I PRON
did AUX
n't PART
already ADV
know VERB
that DET
. PUNCT
  SPACE
I PRON
've AUX
never ADV
even ADV
heard VERB
of ADP
a"bioplasmic ADJ
energy NOUN
field NOUN
. PUNCT
" PUNCT
  SPACE
Care VERB
to PART
explain VERB
it PRON
? PUNCT
  SPACE
It PRON
's AUX
been AUX
a DET
few ADJ
yearssince NOUN
my PRON
last ADJ
fields NOUN
class NOUN
so ADV
I PRON
may AUX
have AUX
forgotten VERB
( PUNCT
or CCONJ
maybe ADV
I PRON
skippedthat ADV
day NOUN
) PUNCT
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
as SCONJ
Ross PROPN
Perot PROPN
said VERB
, PUNCT
I PRON
'm AUX
all DET
ears NOUN
. PUNCT
  SPACE
Well INTJ
, PUNCT
eyes NOUN
inthis VERB
case.--Grant NOUN
Edwards PROPN
                                 SPACE
|Yow PROPN
! PUNCT
  SPACE
Is AUX
something PRON
VIOLENTRosemount PROPN
Inc. PROPN
                                SPACE
|going PROPN
to PART
happen VERB
to ADP
a DET
GARBAGE NOUN
                                              SPACE
|CAN?grante@aquarius.rosemount.com X
                 SPACE
|Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59261From NUM
: PUNCT
vrao@nyx.cs.du.edu PROPN
( PUNCT
Vinay PROPN
Rao)Subject NOUN
: PUNCT
Perception NOUN
of ADP
doctors NOUN
and CCONJ
health NOUN
careThe PROPN
following VERB
article NOUN
by ADP
columnist NOUN
Mike PROPN
Royko PROPN
is AUX
his PRON
humorous ADJ
commentaryon NOUN
some DET
of ADP
the DET
public NOUN
's PART
perception NOUN
of ADP
doctors NOUN
and CCONJ
their PRON
salaries NOUN
. PUNCT
I PRON
hope VERB
some DET
of ADP
you PRON
will AUX
find VERB
it PRON
as ADV
amusing ADJ
as SCONJ
I PRON
did.____________________________________________________________________________[Reprinted VERB
w/o ADP
permission]"There PROPN
's PART
no DET
cure NOUN
for ADP
stupidity NOUN
of ADP
poll NOUN
on ADP
doctors NOUN
' PART
salaries"By ADJ
Mike PROPN
RoykoTribune PROPN
Media PROPN
Services PROPN
     SPACE
On ADP
a DET
stupidity NOUN
scale NOUN
, PUNCT
a DET
recent ADJ
poll NOUN
about ADP
doctors NOUN
' PART
earnings NOUN
is AUX
right ADV
up ADV
there ADV
. PUNCT
  SPACE
It PRON
almost ADV
scored VERB
a DET
perfect ADJ
brain NOUN
- PUNCT
dead ADJ
10 NUM
. PUNCT
     SPACE
It PRON
  SPACE
was AUX
  SPACE
commissioned VERB
by ADP
some DET
whiny ADJ
consumers NOUN
  SPACE
group NOUN
  SPACE
called VERB
Families PROPN
USA PROPN
. PUNCT
      SPACE
The DET
  SPACE
poll NOUN
tells VERB
us PRON
that SCONJ
the DET
majority NOUN
of ADP
  SPACE
Americans PROPN
  SPACE
believe VERB
that SCONJ
doctors NOUN
make VERB
too ADV
much ADJ
money NOUN
. PUNCT
     SPACE
The DET
  SPACE
pollsters NOUN
  SPACE
also ADV
asked VERB
what PRON
a DET
fair ADJ
income NOUN
would AUX
  SPACE
be AUX
  SPACE
for ADP
physicians NOUN
. PUNCT
  SPACE
Those DET
polled VERB
said VERB
, PUNCT
oh INTJ
, PUNCT
about ADV
$ SYM
80,000 NUM
a DET
year NOUN
would AUX
be AUX
OK ADJ
. PUNCT
     SPACE
How ADV
generous ADJ
. PUNCT
  SPACE
How ADV
sporting VERB
. PUNCT
  SPACE
How ADV
stupid ADJ
. PUNCT
     SPACE
Why ADV
is AUX
this DET
poll NOUN
stupid ADJ
? PUNCT
   SPACE
Because SCONJ
it PRON
is AUX
based VERB
on ADP
resentment NOUN
and CCONJ
envy NOUN
, PUNCT
two NUM
emotions NOUN
that PRON
ran VERB
hot ADJ
during ADP
the DET
political ADJ
campaign NOUN
and CCONJ
are AUX
still ADV
simmering VERB
. PUNCT
     SPACE
You PRON
could AUX
conduct VERB
the DET
same ADJ
kind NOUN
of ADP
poll NOUN
about ADP
any DET
group NOUN
that PRON
earns VERB
$ SYM
100,000-plus NUM
and CCONJ
get AUX
the DET
same ADJ
results NOUN
. PUNCT
  SPACE
Since SCONJ
the DET
majority NOUN
of ADP
Americans PROPN
do AUX
n't PART
make VERB
those DET
bucks NOUN
, PUNCT
  SPACE
they PRON
assume VERB
that SCONJ
those DET
  SPACE
who PRON
do AUX
are AUX
stealing VERB
it PRON
from ADP
them PRON
. PUNCT
     SPACE
Maybe ADV
  SPACE
the DET
Berlin PROPN
Wall PROPN
came VERB
down ADP
, PUNCT
  SPACE
but CCONJ
do AUX
n't PART
  SPACE
kid NOUN
  SPACE
yourself PRON
. PUNCT
  SPACE
Karl PROPN
Marx PROPN
lives VERB
. PUNCT
     SPACE
It PRON
's AUX
also ADV
stupid ADJ
because SCONJ
it PRON
did AUX
n't PART
ask VERB
key ADJ
  SPACE
questions NOUN
, PUNCT
  SPACE
such ADJ
as SCONJ
: PUNCT
  SPACE
Do AUX
  SPACE
you PRON
  SPACE
know VERB
how ADV
much ADJ
education NOUN
and CCONJ
training NOUN
  SPACE
it PRON
  SPACE
takes VERB
  SPACE
to PART
become VERB
a DET
physician NOUN
? PUNCT
     SPACE
If SCONJ
those DET
polled VERB
said VERB
no INTJ
, PUNCT
  SPACE
they PRON
did AUX
n't PART
know VERB
, PUNCT
then ADV
they PRON
should AUX
have AUX
  SPACE
been AUX
disqualified VERB
. PUNCT
   SPACE
If SCONJ
they PRON
gave VERB
the DET
wrong ADJ
  SPACE
answers NOUN
, PUNCT
  SPACE
they PRON
should AUX
have AUX
been AUX
dropped VERB
. PUNCT
   SPACE
What PRON
good NOUN
are AUX
their PRON
views NOUN
on ADP
how ADV
much ADJ
a DET
doctor NOUN
should AUX
earn VERB
if SCONJ
they PRON
do AUX
n't PART
know VERB
what PRON
it PRON
takes VERB
to PART
become VERB
a DET
doctor NOUN
? PUNCT
     SPACE
Or CCONJ
maybe ADV
a DET
question NOUN
should AUX
have AUX
been AUX
phrased VERB
this DET
way NOUN
: PUNCT
  SPACE
" PUNCT
How ADV
much ADJ
  SPACE
should AUX
  SPACE
a DET
person NOUN
earn VERB
if SCONJ
he PRON
or CCONJ
she PRON
must AUX
( PUNCT
a DET
) PUNCT
  SPACE
get AUX
  SPACE
excellent ADJ
grades NOUN
and CCONJ
a DET
fine ADJ
educational ADJ
foundation NOUN
in ADP
high ADJ
school NOUN
in ADP
  SPACE
order NOUN
to ADP
( PUNCT
b X
) PUNCT
be AUX
accepted VERB
by ADP
a DET
good ADJ
college NOUN
and CCONJ
spend VERB
four NUM
years NOUN
  SPACE
taking VERB
courses NOUN
heavy ADJ
in ADP
math NOUN
, PUNCT
physics NOUN
, PUNCT
chemistry NOUN
, PUNCT
and CCONJ
other ADJ
lab NOUN
work NOUN
and CCONJ
maintain VERB
a DET
3.5 NUM
average ADJ
or CCONJ
better ADJ
, PUNCT
  SPACE
and CCONJ
( PUNCT
c NOUN
) PUNCT
spend VERB
four NUM
more ADJ
  SPACE
years NOUN
of ADP
  SPACE
grinding VERB
study NOUN
in ADP
medical ADJ
school NOUN
, PUNCT
  SPACE
with ADP
the DET
third ADJ
and CCONJ
  SPACE
fourth ADJ
years NOUN
in ADP
clinical ADJ
training NOUN
, PUNCT
  SPACE
working VERB
80 NUM
to PART
100 NUM
hours NOUN
a DET
week NOUN
, PUNCT
  SPACE
and CCONJ
( PUNCT
d PROPN
) PUNCT
spend VERB
another DET
year NOUN
as SCONJ
a DET
low ADJ
- PUNCT
pay NOUN
, PUNCT
  SPACE
hard ADJ
- PUNCT
work NOUN
intern NOUN
, PUNCT
  SPACE
and CCONJ
  SPACE
( PUNCT
e X
) PUNCT
put VERB
  SPACE
in ADP
  SPACE
another DET
  SPACE
three NUM
to PART
10 NUM
years NOUN
  SPACE
of ADP
  SPACE
post ADJ
- ADJ
graduate ADJ
  SPACE
training NOUN
, PUNCT
depending VERB
  SPACE
on ADP
  SPACE
your PRON
specialty NOUN
and CCONJ
( PUNCT
f X
) PUNCT
maybe ADV
wind VERB
up ADV
  SPACE
$ SYM
100,000 NUM
  SPACE
in ADP
debt NOUN
  SPACE
after ADP
  SPACE
medical PROPN
school PROPN
and CCONJ
( PUNCT
g NOUN
) PUNCT
then ADV
work VERB
an DET
  SPACE
average NOUN
  SPACE
of ADP
  SPACE
60 NUM
hours NOUN
  SPACE
a DET
week NOUN
, PUNCT
  SPACE
with ADP
many ADJ
family NOUN
doctors NOUN
putting VERB
in ADP
70 NUM
  SPACE
hours NOUN
  SPACE
or CCONJ
more ADJ
until ADP
they PRON
retire VERB
or CCONJ
fall VERB
over ADP
? PUNCT
" PUNCT
     SPACE
As SCONJ
  SPACE
you PRON
have AUX
probably ADV
guessed VERB
by ADP
now ADV
, PUNCT
  SPACE
I PRON
  SPACE
have AUX
  SPACE
considerably ADV
more ADJ
  SPACE
respect NOUN
for ADP
doctors NOUN
than SCONJ
does AUX
the DET
law NOUN
firm NOUN
of ADP
  SPACE
Clinton PROPN
  SPACE
and CCONJ
Clinton PROPN
, PUNCT
  SPACE
and CCONJ
all DET
the DET
lawyers NOUN
and CCONJ
insurance NOUN
executives NOUN
they PRON
  SPACE
have AUX
called VERB
together ADV
to PART
remake VERB
America PROPN
's PART
health NOUN
care NOUN
. PUNCT
     SPACE
Based VERB
  SPACE
on ADP
what PRON
doctors NOUN
contribute VERB
to ADP
society NOUN
, PUNCT
  SPACE
they PRON
are AUX
  SPACE
far ADV
more ADV
useful ADJ
than SCONJ
the DET
power NOUN
- PUNCT
happy ADJ
, PUNCT
  SPACE
ego ADV
- PUNCT
tripping VERB
, PUNCT
program NOUN
- PUNCT
spewing VERB
, PUNCT
social ADJ
tinkerers NOUN
who PRON
will AUX
probably ADV
give VERB
us PRON
a DET
medical ADJ
plan NOUN
that PRON
is AUX
to PART
health VERB
what PRON
Clinton PROPN
's PART
first ADJ
budget NOUN
is AUX
to ADP
frugality NOUN
. PUNCT
     SPACE
But CCONJ
propaganda NOUN
works VERB
. PUNCT
   SPACE
And CCONJ
, PUNCT
  SPACE
as SCONJ
the DET
stupid ADJ
poll NOUN
  SPACE
indicates VERB
, PUNCT
many ADJ
Americans PROPN
wrongly ADV
believe VERB
that SCONJ
profiteering NOUN
doctors NOUN
are AUX
  SPACE
the DET
major ADJ
cause NOUN
of ADP
high ADJ
medical ADJ
costs NOUN
. PUNCT
     SPACE
Of ADP
  SPACE
course NOUN
doctors NOUN
are AUX
well ADV
- PUNCT
compensated VERB
. PUNCT
   SPACE
They PRON
  SPACE
should AUX
  SPACE
be AUX
. PUNCT
  SPACE
Americans PROPN
now ADV
live VERB
longer ADV
than SCONJ
ever ADV
. PUNCT
   SPACE
But CCONJ
who PRON
is AUX
responsible ADJ
for ADP
our PRON
longevity NOUN
-- PUNCT
lawyers NOUN
, PUNCT
  SPACE
Congress PROPN
, PUNCT
or CCONJ
the DET
guy NOUN
flipping VERB
burgers NOUN
in ADP
a DET
McDonald PROPN
's PART
? PUNCT
     SPACE
And CCONJ
the DET
doctors NOUN
prolong VERB
our PRON
lives NOUN
despite SCONJ
our PRON
having VERB
  SPACE
become VERB
a DET
  SPACE
nation NOUN
  SPACE
of ADP
  SPACE
self NOUN
- PUNCT
indulgent ADJ
, PUNCT
   SPACE
lard NOUN
- PUNCT
butted VERB
, PUNCT
   SPACE
TV NOUN
- PUNCT
gaping VERB
   SPACE
couch NOUN
cabbages NOUN
. PUNCT
     SPACE
Ah INTJ
, PUNCT
  SPACE
that SCONJ
  SPACE
is AUX
not PART
something PRON
you PRON
heard VERB
President PROPN
  SPACE
Clinton PROPN
  SPACE
or CCONJ
Super PROPN
  SPACE
Spouse NOUN
  SPACE
talk NOUN
  SPACE
about ADP
during ADP
the DET
  SPACE
campaign NOUN
  SPACE
or CCONJ
  SPACE
since ADV
. PUNCT
   SPACE
But CCONJ
instead ADV
of ADP
trying VERB
to PART
turn VERB
the DET
medical ADJ
profession NOUN
into ADP
a DET
  SPACE
villain NOUN
, PUNCT
they PRON
might AUX
have AUX
been AUX
more ADV
honest ADJ
if SCONJ
they PRON
had AUX
said VERB
: PUNCT
     SPACE
" PUNCT
Let VERB
  SPACE
us PRON
  SPACE
talk NOUN
  SPACE
about ADP
medical ADJ
care NOUN
and CCONJ
one NUM
  SPACE
of ADP
  SPACE
the DET
  SPACE
biggest ADJ
problems NOUN
we PRON
have AUX
. PUNCT
   SPACE
That DET
problem NOUN
is AUX
you PRON
, PUNCT
my PRON
fellow ADJ
American PROPN
. PUNCT
Yes INTJ
, PUNCT
you PRON
, PUNCT
  SPACE
eating VERB
  SPACE
too ADV
much ADJ
and CCONJ
eating VERB
the DET
wrong ADJ
foods NOUN
; PUNCT
  SPACE
many ADJ
  SPACE
of ADP
  SPACE
you PRON
guzzling VERB
  SPACE
too ADV
  SPACE
much ADJ
hooch PROPN
; PUNCT
  SPACE
still ADV
puffing VERB
away ADV
at ADP
$ SYM
2.50 NUM
  SPACE
a DET
  SPACE
pack NOUN
; PUNCT
getting VERB
  SPACE
your PRON
daily ADJ
exercise NOUN
by ADP
lumbering VERB
from ADP
the DET
fridge NOUN
to ADP
  SPACE
the DET
microwave NOUN
to ADP
the DET
couch NOUN
; PUNCT
doing VERB
dope NOUN
and CCONJ
bringing VERB
crack NOUN
babies NOUN
into ADP
the DET
  SPACE
world NOUN
; PUNCT
  SPACE
filling VERB
  SPACE
the DET
big ADJ
city NOUN
emergency NOUN
rooms NOUN
  SPACE
with ADP
  SPACE
gunshot NOUN
victims NOUN
; PUNCT
  SPACE
engaging VERB
  SPACE
in ADP
unsafe ADJ
sex NOUN
and CCONJ
catching VERB
a DET
  SPACE
deadly ADJ
  SPACE
disease NOUN
while SCONJ
blaming VERB
the DET
world NOUN
for ADP
not PART
finding VERB
an DET
instant ADJ
cure NOUN
. PUNCT
     SPACE
" PUNCT
You PRON
  SPACE
and CCONJ
  SPACE
your PRON
habits NOUN
, PUNCT
  SPACE
not PART
the DET
  SPACE
doctors NOUN
, PUNCT
  SPACE
are AUX
  SPACE
the DET
  SPACE
single ADV
biggest ADJ
  SPACE
health NOUN
  SPACE
problem NOUN
in ADP
this DET
country NOUN
. PUNCT
   SPACE
If SCONJ
  SPACE
anything PRON
, PUNCT
  SPACE
it PRON
  SPACE
is AUX
amazing ADJ
that SCONJ
the DET
docs NOUN
keep VERB
you PRON
alive ADJ
as ADV
long ADV
as SCONJ
they PRON
do AUX
. PUNCT
     SPACE
" PUNCT
In ADP
fact NOUN
, PUNCT
  SPACE
I PRON
do AUX
n't PART
understand VERB
how ADV
they PRON
can AUX
stand VERB
looking VERB
  SPACE
at ADP
your PRON
blubbery NOUN
bods NOUN
all DET
day NOUN
. PUNCT
     SPACE
" PUNCT
So ADV
as SCONJ
your PRON
president NOUN
, PUNCT
  SPACE
I PRON
call VERB
upon SCONJ
you PRON
to PART
stop VERB
whining VERB
  SPACE
and CCONJ
start VERB
living VERB
cleanly ADV
. PUNCT
   SPACE
Now ADV
I PRON
must AUX
go VERB
get AUX
myself PRON
a DET
triple ADJ
cheesy NOUN
- PUNCT
greasy NOUN
with ADP
double ADJ
fries NOUN
. PUNCT
  SPACE
Do AUX
as SCONJ
I PRON
say VERB
, PUNCT
not PART
as SCONJ
I PRON
do AUX
. PUNCT
" PUNCT
     SPACE
But CCONJ
  SPACE
for ADP
those DET
who PRON
truly ADV
believe VERB
that SCONJ
doctors NOUN
are AUX
  SPACE
overpaid VERB
, PUNCT
there PRON
is AUX
another DET
solution NOUN
: PUNCT
Do AUX
n't PART
use VERB
them PRON
. PUNCT
     SPACE
That DET
's AUX
right ADJ
. PUNCT
   SPACE
You PRON
do AUX
n't PART
feel VERB
well ADJ
? PUNCT
   SPACE
Then ADV
try VERB
one NUM
of ADP
those DET
spine NOUN
poppers NOUN
, PUNCT
  SPACE
needle NOUN
twirlers NOUN
, PUNCT
or CCONJ
have AUX
Rev. PROPN
Bubba PROPN
lay VERB
his PRON
hands NOUN
upon SCONJ
your PRON
head NOUN
and CCONJ
declare VERB
you PRON
fit ADJ
. PUNCT
     SPACE
Or CCONJ
  SPACE
there PRON
is AUX
the DET
do AUX
- PUNCT
it PRON
- PUNCT
yourself PRON
approach NOUN
. PUNCT
   SPACE
You PRON
  SPACE
have AUX
  SPACE
chest NOUN
pains NOUN
? PUNCT
   SPACE
Then ADV
sit VERB
in ADP
front NOUN
of ADP
a DET
mirror NOUN
, PUNCT
  SPACE
make VERB
a DET
slit NOUN
here ADV
, PUNCT
a DET
slit NOUN
there ADV
, PUNCT
and CCONJ
pop VERB
in ADP
a DET
couple NOUN
of ADP
valves NOUN
. PUNCT
     SPACE
You PRON
're AUX
  SPACE
going VERB
to PART
have AUX
a DET
kid NOUN
? PUNCT
   SPACE
Why ADV
throw VERB
your PRON
money NOUN
at ADP
  SPACE
that PRON
overpaid VERB
  SPACE
sawbones NOUN
so SCONJ
he PRON
can AUX
buy VERB
a DET
better ADJ
car NOUN
and CCONJ
a DET
bigger ADJ
  SPACE
house NOUN
than SCONJ
  SPACE
you PRON
  SPACE
will AUX
  SPACE
ever ADV
  SPACE
have AUX
  SPACE
( PUNCT
while SCONJ
  SPACE
paying VERB
  SPACE
more ADJ
  SPACE
in ADP
  SPACE
taxes NOUN
  SPACE
and CCONJ
malpractice NOUN
insurance NOUN
than SCONJ
you PRON
will AUX
ever ADV
earn VERB
) PUNCT
? PUNCT
     SPACE
Just ADV
have AUX
the DET
kid NOUN
the DET
old ADJ
- PUNCT
fashioned ADJ
way NOUN
. PUNCT
   SPACE
Squat PROPN
and CCONJ
do AUX
  SPACE
it PRON
. PUNCT
  SPACE
And CCONJ
if SCONJ
it PRON
survives VERB
, PUNCT
  SPACE
you PRON
can AUX
go VERB
to ADP
the DET
library NOUN
and CCONJ
find VERB
a DET
book NOUN
on ADP
how ADV
to PART
give VERB
it PRON
its PRON
shots NOUN
. PUNCT
     SPACE
By ADP
  SPACE
the DET
  SPACE
way NOUN
, PUNCT
  SPACE
has AUX
  SPACE
anyone PRON
  SPACE
ever ADV
done VERB
a DET
  SPACE
poll NOUN
  SPACE
on ADP
  SPACE
how ADV
  SPACE
much ADJ
pollsters NOUN
should AUX
earn?Royko VERB
  SPACE
is AUX
  SPACE
a DET
Pulitzer PROPN
Prize PROPN
- PUNCT
winning VERB
columnist NOUN
for ADP
  SPACE
Tribune PROPN
  SPACE
Media PROPN
Services.____________________________________________________________________________--**********************************************Vinay PROPN
J. PROPN
Rao PROPN
                SPACE
vrao@nyx.cs.du.edu**********************************************Newsgroup PUNCT
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59262From NUM
: PUNCT
oldman@coos.dartmouth.edu PROPN
( PUNCT
Prakash PROPN
Das)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr20.173019.11903@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>As NOUN
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
like VERB
> X
the DET
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
use VERB
> X
it PRON
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighbor NOUN
> X
has AUX
an DET
ulcer NOUN
. PUNCT
Julie PROPN
, PUNCT
it PRON
does AUX
n't PART
necessarily ADV
follow VERB
that SCONJ
you PRON
should AUX
use VERB
it PRON
( PUNCT
MSG NOUN
orsomething VERB
else ADV
for ADP
that DET
matter NOUN
) PUNCT
simply ADV
because SCONJ
you PRON
are AUX
not PART
allergicto VERB
it PRON
. PUNCT
For ADP
example NOUN
you PRON
might AUX
not PART
be AUX
allergic ADJ
to ADP
( PUNCT
animal NOUN
) PUNCT
fats NOUN
, PUNCT
andlike ADP
their PRON
taste NOUN
, PUNCT
yet CCONJ
it PRON
does AUX
n't PART
follow VERB
that SCONJ
you PRON
should AUX
be AUX
using VERB
them(regularly PROPN
) PUNCT
. PUNCT
MSG PROPN
might AUX
have AUX
other ADJ
bad ADJ
( PUNCT
or CCONJ
good ADJ
, PUNCT
I PRON
am AUX
not PART
up ADV
on ADP
knowledge NOUN
of ADP
MSG NOUN
) PUNCT
effects NOUN
on ADP
your PRON
body NOUN
in ADP
the DET
long ADJ
run NOUN
, PUNCT
maybe ADV
that'sreason ADV
enough ADV
not PART
to PART
use VERB
it PRON
. PUNCT
Altho ADV
' PUNCT
your PRON
example NOUN
of ADP
the DET
ulcer NOUN
is AUX
funny ADJ
, PUNCT
it PRON
is AUX
n't PART
anappropriate ADJ
comparison NOUN
at ADP
all.-Prakash PROPN
DasNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59263From NUM
: PUNCT
ttrusk@its.mcw.edu NOUN
( PUNCT
Thomas PROPN
Trusk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
20APR199315574161@vxcrna.cern.ch NUM
> X
filipe@vxcrna.cern.ch PROPN
( PUNCT
VINCI PROPN
) PUNCT
writes VERB
: PUNCT
> X
How ADV
about ADP
Kirlian ADJ
imaging NOUN
? PUNCT
I PRON
believe VERB
the DET
FAQ PROPN
for ADP
sci.skeptics PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
> X
has AUX
a DET
nice ADJ
write NOUN
- PUNCT
up NOUN
on ADP
this DET
. PUNCT
They PRON
would AUX
certainly ADV
be AUX
most ADV
supportive ADJ
> X
on ADP
helping VERB
you PRON
to PART
build VERB
such DET
a DET
device NOUN
and CCONJ
connect NOUN
to ADP
a DET
120Kvolt NUM
> X
supply NOUN
so SCONJ
that SCONJ
you PRON
can AUX
take VERB
a DET
serious ADJ
look NOUN
at ADP
your PRON
" PUNCT
aura PROPN
" PUNCT
... PUNCT
: PUNCT
- PUNCT
) PUNCT
> X
> X
Filipe PROPN
Santos PROPN
> X
CERN PROPN
- PUNCT
European PROPN
Laboratory PROPN
for ADP
Particle PROPN
Physics PROPN
> X
SwitzerlandPlease PROPN
sign VERB
the DET
relevant ADJ
documents NOUN
and CCONJ
forward ADV
the DET
remaining VERB
partsto NOUN
our PRON
study NOUN
' PUNCT
Effect NOUN
of ADP
120 NUM
Kv PROPN
on ADP
Human PROPN
Tissue PROPN
wrapped VERB
in ADP
Film' PROPN
. PUNCT
Thanks NOUN
for ADP
your PRON
support NOUN
... PUNCT
*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*==*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*Dr PUNCT
. PUNCT
Thomas PROPN
Trusk PROPN
                    SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Dept PROPN
. NOUN
of ADP
Cellular PROPN
Biology PROPN
& CCONJ
Anatomy PROPN
* PUNCT
Email NOUN
to PART
ttrusk@its.mcw.edu VERB
  SPACE
* PUNCT
* PUNCT
Medical PROPN
College PROPN
of ADP
Wisconsin PROPN
        SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Milwaukee PROPN
, PUNCT
WI PROPN
  SPACE
53226 NUM
              SPACE
DISCLAIMER PROPN
( PUNCT
ala PROPN
Foghorn PROPN
Leghorn):**(414 PROPN
) PUNCT
257 NUM
- SYM
8504 NUM
                     SPACE
It PRON
's AUX
a DET
joke NOUN
, PUNCT
son NOUN
. PUNCT
A DET
joke NOUN
I PRON
say VERB
! PUNCT
* PUNCT
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59264From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
net ADJ
address NOUN
for ADP
WHOIn PROPN
article NOUN
< X
1993Apr24.162351.4408@mintaka.lcs.mit.edu NUM
> X
, PUNCT
elg@silver.lcs.mit.edu PROPN
( PUNCT
Elizabeth PROPN
Glaser PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
am AUX
looking VERB
for ADP
the DET
email NOUN
address NOUN
of ADP
the DET
World PROPN
Health PROPN
Organization PROPN
, PUNCT
> X
in ADP
particular ADJ
the DET
address NOUN
for ADP
the DET
Department PROPN
of ADP
Nursing PROPN
or CCONJ
the DET
Chief ADJ
> X
Scientist NOUN
for ADP
Nursing NOUN
: PUNCT
Dr. PROPN
Miriam PROPN
Hirschfeld PROPN
. PUNCT
The DET
snail ADJ
- PUNCT
mail NOUN
address NOUN
I PRON
> X
have AUX
is AUX
the DET
following VERB
: PUNCT
> X
> X
     SPACE
World PROPN
Health PROPN
Organization PROPN
> X
     SPACE
20 NUM
Avenue PROPN
Appia PROPN
> X
     SPACE
1211 NUM
Geneva PROPN
27 NUM
> X
     SPACE
SwitzerlandThe PROPN
domain NOUN
address NOUN
of ADP
the DET
WHO PROPN
is AUX
: PUNCT
  SPACE
who.arcom.chSo PROPN
try VERB
sending VERB
email NOUN
to ADP
  SPACE
postmaster@who.arcom.chJoshbackon@VMS.HUJI.AC.IL PROPN
> X
> X
Please INTJ
respond VERB
directly ADV
to ADP
me PRON
. PUNCT
Thank VERB
you PRON
for ADP
your PRON
assistance NOUN
. PUNCT
> X
> X
> X
> X
    SPACE
--- PUNCT
   SPACE
elg PROPN
   SPACE
--- PUNCT
> X
> X
Elizabeth PROPN
Glaser PROPN
, PUNCT
RN PROPN
> X
elg@silver.lcs.mit.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59265From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition NOUN
? PUNCT
To PART
: PUNCT
milsh@nmr-z.mgh.harvard.edu PUNCT
( PUNCT
Alex PROPN
Milshteyn PROPN
) PUNCT
AM VERB
> X
Having VERB
said VERB
that DET
, PUNCT
i PRON
might AUX
add VERB
, PUNCT
that SCONJ
in ADP
MHO PROPN
, PUNCT
MSG PROPN
does AUX
not PART
enhance VERB
AM PROPN
> X
flavor NOUN
enoughf VERB
for ADP
me PRON
to PART
miss VERB
it PRON
. PUNCT
  SPACE
When ADV
I PRON
go VERB
to ADP
chinese ADJ
places NOUN
, PUNCT
AM PROPN
> X
I PRON
order VERB
food NOUN
without ADP
MSG PROPN
. PUNCT
  SPACE
To ADP
me PRON
, PUNCT
MSG PROPN
tastes VERB
just ADV
like SCONJ
a DET
mixture NOUN
of ADP
salt NOUN
and CCONJ
sugar NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
that DET
is AUX
the DET
case NOUN
with ADP
most ADJ
people NOUN
. PUNCT
  SPACE
What PRON
does AUX
it PRON
taste VERB
like SCONJ
to ADP
you PRON
? PUNCT
... PUNCT
If SCONJ
wishes NOUN
were AUX
horses NOUN
, PUNCT
we PRON
'd AUX
all DET
have AUX
to PART
wear VERB
hip NOUN
boots NOUN
! PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59266From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections NOUN
? PUNCT
To PART
: PUNCT
smithmc@mentor.cc.purdue.edu NUM
( PUNCT
Lost VERB
Boy PROPN
) PUNCT
LB PROPN
> X
I PRON
know VERB
from ADP
personal ADJ
experience NOUN
that PRON
men NOUN
CAN AUX
get AUX
yeast NOUN
infections NOUN
. PUNCT
I PRON
  SPACE
LB PROPN
> X
get AUX
rather ADV
nasty ADJ
ones NOUN
from ADP
time NOUN
to ADP
time NOUN
, PUNCT
mostly ADV
in ADP
the DET
area NOUN
of ADP
the DET
LB PROPN
> X
scrotum NOUN
and CCONJ
the DET
base NOUN
of ADP
the DET
penis PROPN
. PUNCT
I PRON
used VERB
to PART
have AUX
problems NOUN
with ADP
recurrent NOUN
athlete NOUN
's PART
foot NOUN
until ADP
I PRON
started VERB
drying VERB
between ADP
my PRON
toes NOUN
with ADP
my PRON
blow NOUN
drier NOUN
after ADP
each DET
time NOUN
I PRON
bathe VERB
. PUNCT
  SPACE
I PRON
also ADV
dry VERB
my PRON
pubic ADJ
area NOUN
while SCONJ
I PRON
am AUX
at ADP
it PRON
to PART
prevent VERB
problems NOUN
. PUNCT
  SPACE
You PRON
might AUX
want VERB
to PART
try VERB
it PRON
.... PUNCT
My PRON
cat NOUN
types NOUN
with ADP
his PRON
tail NOUN
. PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59267From NUM
: PUNCT
westes@netcom.com X
( PUNCT
Will AUX
Estes)Subject VERB
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyDoes PROPN
anyone PRON
know VERB
of ADP
research NOUN
done VERB
on ADP
the DET
use NOUN
of ADP
haldol NOUN
in ADP
the DET
elderly ADJ
? PUNCT
  SPACE
Does AUX
short ADJ
- PUNCT
term NOUN
use NOUN
of ADP
the DET
drug NOUN
ever ADV
produce VERB
long ADJ
- PUNCT
term NOUN
side NOUN
- PUNCT
effects NOUN
afterthe DET
use NOUN
of ADP
the DET
drug NOUN
? PUNCT
  SPACE
My PRON
grandmother NOUN
recently ADV
had AUX
to PART
be AUX
hospitalizedand ADJ
was AUX
given VERB
large ADJ
doses NOUN
of ADP
haldol NOUN
for ADP
several ADJ
weeks NOUN
. PUNCT
  SPACE
Although SCONJ
thedrug PROPN
has AUX
been AUX
terminated VERB
, PUNCT
she PRON
has AUX
changed VERB
from ADP
a DET
perky ADJ
, PUNCT
slightlysenile ADJ
woman NOUN
into ADP
a DET
virtual ADJ
vegetable NOUN
who PRON
does AUX
not PART
talk VERB
to ADP
anyoneand PROPN
who PRON
can AUX
not PART
even ADV
eat VERB
or CCONJ
brush VERB
her PRON
teeth NOUN
without ADP
assistance NOUN
. PUNCT
  SPACE
Itseems NOUN
incredible ADJ
to ADP
me PRON
that SCONJ
such ADJ
changes NOUN
could AUX
take VERB
place NOUN
in ADP
thecourse NOUN
of ADP
just ADV
one NUM
and CCONJ
one NUM
- PUNCT
half NOUN
months NOUN
. PUNCT
  SPACE
I PRON
have AUX
to PART
believe VERB
that SCONJ
thecombination NOUN
of ADP
the DET
hospital NOUN
stay NOUN
and CCONJ
some DET
drug(s PROPN
) PUNCT
are AUX
in ADP
partcatalysts NOUN
for ADP
this DET
. PUNCT
  SPACE
Any DET
comments?-- PROPN
Will AUX
Estes VERB
		 SPACE
Internet NOUN
: PUNCT
westes@netcom.comNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59268Subject NUM
: PUNCT
hypodermic PROPN
needleFrom ADV
: PUNCT
bolsen@eis.calstate.edu PROPN
( PUNCT
Becky PROPN
Olsen)Hi PROPN
, PUNCT
I PRON
am AUX
doing VERB
a DET
term NOUN
paper NOUN
on ADP
the DET
syringe NOUN
and CCONJ
I PRON
have AUX
found VERB
someinformation NOUN
. PUNCT
  SPACE
It PRON
is AUX
said VERB
that SCONJ
Charles PROPN
Pravaz PROPN
has AUX
invented VERB
the DET
hypodermicneedle NOUN
, PUNCT
but CCONJ
then ADV
I PRON
have AUX
also ADV
found VERB
that SCONJ
Alexander PROPN
Wood PROPN
has AUX
invented VERB
it PRON
. PUNCT
Does AUX
anyone PRON
know VERB
which PRON
one NOUN
it PRON
is AUX
, PUNCT
of ADP
if SCONJ
it PRON
was AUX
anyone PRON
else ADV
? PUNCT
  SPACE
If SCONJ
there ADV
isanymore VERB
information NOUN
that PRON
is AUX
out ADV
there PRON
could AUX
you PRON
please INTJ
send VERB
it PRON
to ADP
me PRON
. PUNCT
Thank VERB
you PRON
very ADV
much ADV
. PUNCT
Becky PROPN
OlsenNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59269From NUM
: PUNCT
haynes@cats.ucsc.edu PROPN
( PUNCT
Jim PROPN
Haynes)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Poisoning VERB
with ADP
heavy ADJ
water NOUN
( PUNCT
was AUX
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?)All NOUN
I PRON
can AUX
remember VERB
is AUX
that SCONJ
there PRON
was AUX
an DET
article NOUN
in ADP
Scientific PROPN
Americanmaybe PROPN
20 NUM
years NOUN
ago ADV
. PUNCT
  SPACE
As SCONJ
someone PRON
else ADV
noted VERB
rats NOUN
or CCONJ
mice NOUN
fed PROPN
nothingbut PROPN
heavy ADJ
water NOUN
eventually ADV
died VERB
, PUNCT
and CCONJ
the DET
explanation NOUN
was AUX
given.-- PROPN
haynes@cats.ucsc.eduhaynes@cats.bitnet"Ya NOUN
can AUX
talk VERB
all DET
ya PROPN
wanna PROPN
, PUNCT
but CCONJ
it PRON
's AUX
dif'rent ADJ
than SCONJ
it PRON
was!""No VERB
it PRON
ai VERB
nt PART
! PUNCT
  SPACE
But CCONJ
ya PRON
got VERB
ta PART
know VERB
the DET
territory NOUN
! PUNCT
" PUNCT
        SPACE
Meredith PROPN
Willson PROPN
: PUNCT
" PUNCT
The DET
Music PROPN
Man"Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59270From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
hypodermic PROPN
needleIn NUM
article NOUN
< X
C60vIJ.Co6@eis.calstate.edu PROPN
> X
Becky PROPN
Olsen,bolsen@eis.calstate.edu PROPN
writes:>Hi PROPN
, PUNCT
I PRON
am AUX
doing VERB
a DET
term NOUN
paper NOUN
on ADP
the DET
syringe NOUN
and CCONJ
I PRON
have AUX
found VERB
some DET
> X
information NOUN
. PUNCT
  SPACE
It PRON
is AUX
said VERB
that SCONJ
Charles PROPN
Pravaz PROPN
has AUX
invented VERB
thehypodermic ADJ
> X
needle NOUN
, PUNCT
but CCONJ
then ADV
I PRON
have AUX
also ADV
found VERB
that SCONJ
Alexander PROPN
Wood PROPN
has AUX
inventedit VERB
. PUNCT
> X
Does AUX
anyone PRON
know VERB
which PRON
one NOUN
it PRON
is AUX
, PUNCT
of ADP
if SCONJ
it PRON
was AUX
anyone PRON
else ADV
? PUNCT
  SPACE
Ifthere PROPN
is AUX
> X
anymore ADV
information NOUN
that PRON
is AUX
out ADV
there PRON
could AUX
you PRON
please INTJ
send VERB
it PRON
tome.>Thank PROPN
you PRON
very ADV
much.>Becky ADJ
OlsenLooking PROPN
in ADP
The DET
Evolution PROPN
of ADP
Anaesthesia PROPN
by ADP
M.H. PROPN
Armstrong PROPN
Davison(pub PROPN
Williams PROPN
& CCONJ
Wilkins PROPN
, PUNCT
Baltimore PROPN
1965 NUM
) PUNCT
I PRON
found VERB
the DET
followingchronology:"1853 NOUN
. PUNCT
  SPACE
Charles PROPN
- PUNCT
Gabriel PROPN
Pravaz PROPN
( PUNCT
1791 NUM
- SYM
1853 NUM
) PUNCT
, PUNCT
inventor NOUN
of ADP
thegalvanocautery PROPN
, PUNCT
describes VERB
a DET
glass NOUN
syringe NOUN
with ADP
tapered ADJ
nozzle NOUN
. PUNCT
Thissyringe PROPN
was AUX
intended VERB
to PART
be AUX
used VERB
with ADP
a DET
special ADJ
trocar NOUN
for ADP
injectingferric ADJ
chloride NOUN
into ADP
aneurysms NOUN
, PUNCT
and CCONJ
thus ADV
to PART
heal VERB
them PRON
by ADP
coagulation.1853 PROPN
. PUNCT
  SPACE
Alexander PROPN
Wood PROPN
( PUNCT
1817 NUM
- SYM
84 NUM
) PUNCT
  SPACE
of ADP
Edinburgh PROPN
invents NOUN
the DET
hypodermicneedle NOUN
and CCONJ
adapts PROPN
Pravaz PROPN
's PART
syringe NOUN
for ADP
use NOUN
with ADP
it PRON
. PUNCT
"You PROPN
might AUX
also ADV
be AUX
interested ADJ
to PART
read VERB
about ADP
the DET
experiments NOUN
of ADP
SirChristopher PROPN
Wren PROPN
in ADP
1656 NUM
, PUNCT
described VERB
by ADP
Oldenberg PROPN
& CCONJ
Clarck PROPN
in ADP
thePhilosophical NUM
transactions NOUN
of ADP
the DET
Royal PROPN
Society PROPN
in ADP
1665 NUM
. PUNCT
Using VERB
asharpened ADJ
quill NOUN
and CCONJ
a DET
pig NOUN
's PART
bladder NOUN
he PRON
injected VERB
opium NOUN
, PUNCT
wine NOUN
and CCONJ
beerinto PROPN
the DET
veins NOUN
of ADP
dogs NOUN
. PUNCT
Don PROPN
Mackie PROPN
UM PROPN
Anesthesiology PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59271From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1rcfj2INNmds@roundup.crhc.uiuc.edu NUM
> X
, PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison PROPN
) PUNCT
writes:=Which PRON
was AUX
why ADV
I PRON
started VERB
checking VERB
EVERY DET
time NOUN
I PRON
got VERB
sick ADJ
. PUNCT
  SPACE
And CCONJ
EVERY DET
= SYM
time NOUN
I PRON
got VERB
sick ADJ
MSG PROPN
was AUX
somehow ADV
involved VERB
in ADP
one NUM
of ADP
the DET
food NOUN
products NOUN
. PUNCT
Which PRON
points VERB
up ADP
the DET
" PUNCT
studies NOUN
" PUNCT
made VERB
by ADP
amateurs NOUN
: PUNCT
  SPACE
Did AUX
you PRON
ALSO ADV
check VERB
EVERY DET
TIMEYOU PROPN
DID VERB
* PUNCT
NOT ADV
* PUNCT
get AUX
sick ADJ
? PUNCT
  SPACE
" PUNCT
No INTJ
, PUNCT
" PUNCT
you PRON
say VERB
? PUNCT
  SPACE
Why ADV
not PART
check VERB
every DET
thing NOUN
you PRON
eat VERB
whenyou PRON
do AUX
n't PART
get AUX
sick ADJ
and CCONJ
find VERB
out ADP
how ADV
much ADJ
MSG NOUN
you PRON
're AUX
actually ADV
consuming?= NOUN
> X
All DET
that PRON
's AUX
needed VERB
now ADV
is AUX
that DET
final ADJ
step NOUN
, PUNCT
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
done= PUNCT
> X
on ADP
humans NOUN
. PUNCT
  SPACE
There PRON
is AUX
n't PART
even ADV
an DET
ethical ADJ
question NOUN
about ADP
" PUNCT
possible= ADJ
> X
harm NOUN
" PUNCT
, PUNCT
as SCONJ
this DET
is AUX
a DET
widely ADV
used VERB
and CCONJ
approved VERB
food NOUN
additive.==But NOUN
- PUNCT
some DET
say VERB
that SCONJ
only ADV
2 NUM
% NOUN
of ADP
the DET
population NOUN
has AUX
a DET
problem NOUN
with ADP
MSG NOUN
-=some PUNCT
say VERB
it PRON
's AUX
more ADJ
like SCONJ
20 NUM
% NOUN
- PUNCT
but CCONJ
let VERB
's PRON
say VERB
that SCONJ
it PRON
's AUX
5 NUM
% NOUN
. PUNCT
  SPACE
How ADV
many ADJ
= PUNCT
people NOUN
would AUX
have AUX
to PART
be AUX
tested VERB
that PRON
would AUX
have AUX
a DET
problem NOUN
? PUNCT
  SPACE
Also ADV
- PUNCT
I PRON
= VERB
KNOW VERB
I PRON
have AUX
a DET
problem NOUN
with ADP
it PRON
, PUNCT
and CCONJ
I PRON
would AUX
n't PART
VOLUNTEER VERB
for ADP
a DET
test NOUN
. PUNCT
If SCONJ
you PRON
knew VERB
enough ADV
about ADP
what PRON
the DET
test NOUN
was AUX
about ADJ
to PART
decide VERB
that SCONJ
you PRON
did AUX
n't PART
wantto NOUN
participate VERB
because SCONJ
it PRON
involved VERB
MSG PROPN
, PUNCT
you PRON
'd AUX
've AUX
already ADV
made VERB
yourselfineligible ADJ
( PUNCT
since SCONJ
MSG PROPN
IS VERB
detectable ADJ
by ADP
taste NOUN
) PUNCT
. PUNCT
How ADV
can AUX
anybody PRON
be AUX
so ADV
cluelessas ADJ
to ADP
what PRON
double ADJ
blind ADJ
studies NOUN
are AUX
all DET
about?--------------------------------------------------------------------------------Carl PROPN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59272From NUM
: PUNCT
< X
ICBAL@ASUACAD.BITNET NOUN
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1993Apr22.143929.26131@midway.uchicago.edu>,jacquier@gsbux1.uchicago.edu PROPN
( PUNCT
Eric PROPN
Jacquier PROPN
) PUNCT
says:>>From PROPN
now ADV
on ADP
it PRON
looks VERB
like SCONJ
2 NUM
shots NOUN
per ADP
week NOUN
for>6 ADJ
months NOUN
followed VERB
by ADP
1 NUM
shot NOUN
per ADP
month NOUN
or CCONJ
so ADV
. PUNCT
Each DET
shot VERB
costs>$20 NOUN
. PUNCT
Talking VERB
about ADP
soaring VERB
costs NOUN
and CCONJ
the DET
Health PROPN
care NOUN
system NOUN
, PUNCT
I PRON
would AUX
> X
call VERB
that SCONJ
a DET
racket NOUN
. PUNCT
We PRON
are AUX
not PART
talking VERB
about ADP
rare ADJ
Amazonian ADJ
grasses NOUN
> X
here ADV
, PUNCT
but CCONJ
the DET
garbage NOUN
which PRON
grows VERB
behind ADP
the DET
doctor NOUN
's PART
office.>Apart PROPN
from ADP
this DET
issue NOUN
, PUNCT
I PRON
was AUX
somewhat ADV
disappointed ADJ
to PART
find VERB
out ADP
> X
that SCONJ
you PRON
have AUX
to PART
keep VERB
getting VERB
the DET
shots NOUN
forever ADV
. PUNCT
Is AUX
that DET
right?>You NOUN
might AUX
look VERB
for ADP
an DET
allergy ADJ
doctor NOUN
in ADP
your PRON
area NOUN
who PRON
uses VERB
sublingualdrops NOUN
instead ADV
of ADP
shots NOUN
for ADP
treatment NOUN
. PUNCT
( PUNCT
You PRON
are AUX
given VERB
a DET
small ADJ
bottle NOUN
ofantigens NOUN
; PUNCT
3 NUM
drops NOUN
are AUX
placed VERB
under ADP
the DET
tongue NOUN
for ADP
5 NUM
minutes NOUN
. PUNCT
) PUNCT
Myallergy NOUN
to PART
bermuda VERB
grass PROPN
was AUX
neutralized VERB
this DET
way NOUN
. PUNCT
Throughout ADP
the DET
treatmentprocess NOUN
I PRON
had AUX
to PART
return VERB
to ADP
the DET
doctor NOUN
's PART
office NOUN
every DET
month NOUN
for ADP
re NOUN
- VERB
testingand VERB
a DET
new ADJ
bottle NOUN
of ADP
antigens NOUN
. PUNCT
After ADP
the DET
allergy NOUN
was AUX
completely ADV
neutralizeda ADJ
bottle NOUN
of ADP
maintenance NOUN
antigens NOUN
lasts VERB
me PRON
about ADV
4 NUM
months NOUN
( PUNCT
the DET
sublingualdrops NOUN
are AUX
then ADV
taken VERB
3 NUM
times NOUN
per ADP
week NOUN
) PUNCT
, PUNCT
and CCONJ
costs VERB
$ SYM
20 NUM
. PUNCT
So ADV
the DET
cost NOUN
isless NOUN
than SCONJ
shots NOUN
and CCONJ
it PRON
is AUX
more ADV
convenient ADJ
just ADV
to PART
take VERB
the DET
drops NOUN
at ADP
home NOUN
. PUNCT
Bruce PROPN
LongNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59273From NUM
: PUNCT
hchung@nyx.cs.du.edu PROPN
( PUNCT
H. PROPN
Anthony PROPN
Chung)Subject NUM
: PUNCT
Localized VERB
fat ADJ
reduction NOUN
due ADP
to ADP
exercise NOUN
( PUNCT
question).I X
was AUX
just ADV
wondering VERB
if SCONJ
exercises NOUN
specific ADJ
to ADP
particular ADJ
regions NOUN
of ADP
thebody NOUN
( PUNCT
such ADJ
as SCONJ
thighs NOUN
) PUNCT
will AUX
basically ADV
only ADV
tone VERB
the DET
thighs NOUN
, PUNCT
or CCONJ
if SCONJ
fatfrom ADP
other ADJ
parts NOUN
of ADP
the DET
body NOUN
( PUNCT
such ADJ
as SCONJ
breasts NOUN
) PUNCT
would AUX
be AUX
affected VERB
just ADV
asmuch.-- ADP
   SPACE
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
+ SYM
--------H. PROPN
Anthony PROPN
Chung--------+--C= PROPN
AMIGAs--+ NUM
  SPACE
/ PUNCT
//_/ PUNCT
// SYM
/ SYM
_ PROPN
_ PROPN
_ PROPN
  SPACE
// SYM
/ SYM
_ PROPN
_ PROPN
_ PROPN
_ PROPN
//|Case PUNCT
Western PROPN
Reserve PROPN
University PROPN
| CCONJ
  SPACE
/\/\ PUNCT
R PROPN
The DET
| PROPN
/ SYM
_ PROPN
_ PROPN
_ PROPN
  SPACE
// SYM
/ SYM
_ PROPN
_ PROPN
_ PROPN
  SPACE
// SYM
/ PUNCT
//___~ PUNCT
| CCONJ
       SPACE
School PROPN
of ADP
Dentistry PROPN
      SPACE
| PROPN
  SPACE
\ X
  SPACE
/ SYM
Future|/_// PROPN
/_// NOUN
/_// PUNCT
/_// PUNCT
/_____// PUNCT
  SPACE
+ SYM
-hac@po PUNCT
. PUNCT
CWRU.Edu-(Cabal PROPN
on ADP
IRC)-+-ac\/is------+Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59274From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu PROPN
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
re ADP
: PUNCT
use NOUN
of ADP
haldol NOUN
and CCONJ
the DET
elderlyI'm PROPN
a DET
nursing NOUN
student NOUN
, PUNCT
and CCONJ
I PRON
would AUX
like VERB
to PART
respond VERB
to ADP
# SYM
66966 NUM
on ADP
haldoland PROPN
the DET
elderly ADJ
. PUNCT
Message NOUN
- PUNCT
ID PROPN
: PUNCT
< X
25APR199316225142@fsphy1.physics.fsu.edu>Organization NUM
: PUNCT
Florida PROPN
State PROPN
University PROPN
- PUNCT
School PROPN
of ADP
Higher ADJ
ThoughtNews PROPN
- PUNCT
Software PROPN
: PUNCT
VAX PROPN
/ SYM
VMS PROPN
VNEWS PROPN
1.4-b1 NUM
  SPACE
First ADV
, PUNCT
I PRON
'm AUX
sorry ADJ
to PART
hear VERB
that SCONJ
you PRON
have AUX
had VERB
to PART
see VERB
your PRON
grandmother NOUN
gothrough VERB
this DET
. PUNCT
  SPACE
I PRON
know VERB
it PRON
has AUX
to PART
have AUX
been AUX
tough ADJ
. PUNCT
There PRON
are AUX
many ADJ
things NOUN
that PRON
can AUX
cause VERB
long ADJ
term NOUN
confusion NOUN
in ADP
elderlyadults NOUN
. PUNCT
  SPACE
The DET
change NOUN
in ADP
environment NOUN
can AUX
cause VERB
problems NOUN
. PUNCT
  SPACE
Anesthetic ADJ
agentscan ADJ
cause NOUN
confusion NOUN
because SCONJ
the DET
body NOUN
can AUX
not PART
clear VERB
the DET
medicines NOUN
out SCONJ
ofthe DET
body NOUN
as ADV
easily ADV
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
medications NOUN
and CCONJ
interactions NOUN
betweenmedications NOUN
can AUX
cause VERB
confusion NOUN
. PUNCT
As ADV
far ADV
as SCONJ
whether SCONJ
or CCONJ
not PART
haldol PROPN
can AUX
have AUX
long ADJ
lasting VERB
effects NOUN
even ADV
afterthe DET
drug NOUN
has AUX
been AUX
discontinued VERB
, PUNCT
I PRON
do AUX
not PART
know VERB
. PUNCT
  SPACE
I PRON
have AUX
not PART
_ ADV
seen VERB
_ DET
anythingto NOUN
that DET
effect NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
I PRON
also ADV
had AUX
not PART
been AUX
looking VERB
for ADP
that DET
information NOUN
. PUNCT
I PRON
can AUX
see VERB
what PRON
I PRON
can AUX
find VERB
... PUNCT
I PRON
can AUX
tell VERB
you PRON
that SCONJ
haldol PROPN
is AUX
an DET
antipsychotic ADJ
drug NOUN
, PUNCT
and CCONJ
, PUNCT
according VERB
tothe DET
Nursing93 NUM
Drug PROPN
handbook NOUN
, PUNCT
it PRON
is AUX
" PUNCT
Especially ADV
useful ADJ
for ADP
agitationassociated VERB
with ADP
senile ADJ
dementia NOUN
" PUNCT
  SPACE
( PUNCT
p. NOUN
400 NUM
) PUNCT
. PUNCT
  SPACE
It PRON
also ADV
should AUX
not PART
be AUX
discontinued VERB
abruptly ADV
. PUNCT
  SPACE
It PRON
did AUX
not PART
say VERB
anything PRON
about ADP
long ADJ
lastingeffects NOUN
. PUNCT
Because SCONJ
so ADV
many ADJ
things NOUN
can AUX
cause VERB
confusion NOUN
, PUNCT
it PRON
is AUX
hard ADJ
for ADP
me PRON
to ADP
knowwhat PROPN
else ADV
was AUX
going VERB
on ADP
at ADP
the DET
time NOUN
; PUNCT
if SCONJ
I PRON
had AUX
more ADJ
history NOUN
, PUNCT
i PRON
might AUX
be AUX
ableto PROPN
answer VERB
you PRON
better ADV
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
send VERB
me PRON
e NOUN
- NOUN
mail NOUN
with ADP
more ADJ
information NOUN
, PUNCT
I PRON
would AUX
be AUX
happy ADJ
to PART
try VERB
to PART
  SPACE
help VERB
you PRON
piece VERB
together ADV
what PRON
might AUX
havehappened.Elisapicl25@fsphy1.physics.fsu.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59275From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
ROC PROPN
curves NOUN
softwareI PROPN
understand VERB
Robert PROPN
Centor PROPN
has AUX
a DET
program NOUN
called VERB
ROC PROPN
ANALYZER PROPN
, PUNCT
that PRON
can AUX
beused VERB
to PART
do AUX
receiver NOUN
operating VERB
characteristic NOUN
( PUNCT
ROC PROPN
) PUNCT
curve NOUN
analysis NOUN
. PUNCT
Does AUX
anyone PRON
know VERB
if SCONJ
this DET
is AUX
avaliable ADJ
from ADP
an DET
FTP PROPN
site NOUN
? PUNCT
If SCONJ
not PART
, PUNCT
does AUX
anyoneknow VERB
how ADV
to PART
get AUX
a DET
copy NOUN
of ADP
it?==============================Howard NOUN
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59276From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
re ADP
: PUNCT
use NOUN
of ADP
haldol NOUN
and CCONJ
the DET
elderlyIn PROPN
article NOUN
< X
C623Az.M85@mailer.cc.fsu.edu PROPN
> X
PICL PROPN
account_25,picl25@fsphy1.physics.fsu.edu PROPN
writes:>adults NOUN
. PUNCT
  SPACE
The DET
change NOUN
in ADP
environment NOUN
can AUX
cause VERB
problems NOUN
. PUNCT
  SPACE
Anestheticagents NOUN
> X
can AUX
cause VERB
confusion NOUN
because SCONJ
the DET
body NOUN
can AUX
not PART
clear VERB
the DET
medicines NOUN
outof PROPN
> X
the DET
body NOUN
as ADV
easily ADV
. PUNCT
The DET
original ADJ
poster NOUN
did AUX
not PART
say VERB
why ADV
his PRON
mother NOUN
had AUX
been AUX
in ADP
hospitalbut NOUN
I PRON
can AUX
answer VERB
a DET
few ADJ
general ADJ
points NOUN
. PUNCT
Elderly ADJ
patients NOUN
may AUX
exhibit VERB
a DET
marked ADJ
difficulty NOUN
in ADP
coping VERB
afterbeing VERB
in ADP
hospital NOUN
for ADP
a DET
few ADJ
days NOUN
. PUNCT
The DET
drastic ADJ
change NOUN
of ADP
environmentwill PROPN
often ADV
unmask VERB
how ADV
marginally ADV
they PRON
have AUX
been AUX
coping VERB
at ADP
home NOUN
. PUNCT
Evenyoung NOUN
people NOUN
find VERB
the DET
change NOUN
unsettling VERB
. PUNCT
Though SCONJ
we PRON
have AUX
thought VERB
that SCONJ
this DET
decrement NOUN
in ADP
function NOUN
after ADP
- PUNCT
say VERB
-anaesthesia NOUN
and CCONJ
surgery NOUN
for ADP
a DET
fractured ADJ
hip NOUN
( PUNCT
a DET
common ADJ
event NOUN
in ADP
theelderly ADV
) PUNCT
was AUX
due ADJ
to ADP
anaesthesia PROPN
there PRON
is AUX
good ADJ
evidence NOUN
that SCONJ
thechange NOUN
of ADP
situation NOUN
is AUX
much ADV
more ADV
important ADJ
. PUNCT
Some DET
hospitals NOUN
havetried VERB
a DET
' PUNCT
rapid ADJ
transit NOUN
' PUNCT
system NOUN
for ADP
hip NOUN
fractures NOUN
, PUNCT
aiming VERB
to PART
have AUX
thepatient ADJ
back ADV
at ADP
home NOUN
within ADP
24 NUM
hours NOUN
of ADP
admission NOUN
. PUNCT
The DET
selection NOUN
ofthe NOUN
anaesthetic NOUN
has AUX
no DET
effect NOUN
on ADP
the DET
ability NOUN
to PART
discharge VERB
thesepatients NOUN
early ADV
. PUNCT
Anaesthetists NOUN
who PRON
work VERB
with ADP
the DET
elderly ADJ
( PUNCT
which PRON
is AUX
almost ADV
all DET
of ADP
us)generally PROPN
take VERB
care NOUN
to PART
tailor VERB
the DET
choice NOUN
and CCONJ
dose NOUN
of ADP
drugs NOUN
used VERB
tothe DET
individual ADJ
patient NOUN
. PUNCT
Even ADV
so ADV
, PUNCT
there PRON
is AUX
some DET
evidence NOUN
that SCONJ
fullmental ADJ
recovery NOUN
may AUX
take VERB
a DET
surprisingly ADV
long ADJ
time NOUN
to PART
return VERB
. PUNCT
This DET
isthe ADJ
sort NOUN
of ADP
thing NOUN
which PRON
is AUX
detected VERB
by ADP
setting VERB
quite ADV
difficulttasks NOUN
, PUNCT
not PART
the DET
gross ADJ
change NOUN
that SCONJ
the DET
original ADJ
poster NOUN
noted VERB
. PUNCT
Haloperidol NOUN
( PUNCT
Haldol PROPN
TM PROPN
) PUNCT
is AUX
a DET
long ADJ
acting VERB
drug NOUN
. PUNCT
The DET
plasma NOUN
half NOUN
lifeof VERB
the DET
drug NOUN
is AUX
up ADP
to PART
35 NUM
hours NOUN
. PUNCT
If SCONJ
the DET
decanoate NOUN
( PUNCT
a DET
sort NOUN
of ADP
slowrelease ADJ
formulation NOUN
) PUNCT
is AUX
used VERB
it PRON
may AUX
be AUX
weeks NOUN
. PUNCT
The DET
elderly ADJ
aresensitive NOUN
to ADP
haloperidol NOUN
for ADP
a DET
number NOUN
of ADP
reasons NOUN
. PUNCT
Without ADP
knowingmore NOUN
it PRON
is AUX
hard ADJ
to PART
comment VERB
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsesiology NOUN
will AUX
disavow VERB
... PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59277From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyI've DET
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented VERB
anddemented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
weredefinitely ADV
involved VERB
. PUNCT
My PRON
own ADJ
father NOUN
turned VERB
into ADP
a DET
vegetable NOUN
for ADP
a DET
short ADJ
time NOUN
while SCONJ
in ADP
thehospital NOUN
. PUNCT
He PRON
was AUX
fifty NUM
- PUNCT
three NUM
at ADP
the DET
time NOUN
, PUNCT
and CCONJ
he PRON
was AUX
on ADP
21 NUM
separatemedications NOUN
. PUNCT
The DET
family NOUN
protested VERB
, PUNCT
but CCONJ
the DET
doctors NOUN
were AUX
adamant ADJ
, PUNCT
tellingus VERB
that SCONJ
none NOUN
of ADP
the DET
drugs NOUN
interact VERB
. PUNCT
They PRON
even ADV
took VERB
the DET
attitude NOUN
that PRON
, PUNCT
ifhe NOUN
was AUX
disoriented VERB
, PUNCT
they PRON
should AUX
put VERB
him PRON
on ADP
something PRON
else ADV
as ADV
well ADV
! PUNCT
Withthe DET
help NOUN
of ADP
an DET
MD PROPN
friend NOUN
of ADP
the DET
family NOUN
, PUNCT
we PRON
had AUX
all DET
his PRON
medicationdiscontinued VERB
. PUNCT
He PRON
had AUX
a DET
seizure NOUN
that DET
night NOUN
, PUNCT
and CCONJ
was AUX
put VERB
back ADV
on ADP
one NUM
drug NOUN
. PUNCT
Two NUM
days NOUN
later ADV
, PUNCT
he PRON
was AUX
his PRON
old ADJ
self NOUN
again ADV
. PUNCT
I PRON
guess VERB
there PRON
are AUX
n't PART
manymedical ADJ
texts NOUN
that PRON
address VERB
the DET
subject NOUN
of ADP
21-way NUM
interactions NOUN
. PUNCT
I PRON
do AUX
n't PART
mean VERB
this DET
as SCONJ
a DET
cheap ADJ
shot NOUN
at ADP
the DET
medical ADJ
profession NOUN
. PUNCT
It PRON
is AUX
anaspect ADJ
of ADP
hospitals NOUN
that PRON
is AUX
very ADV
frightening ADJ
to ADP
me PRON
. PUNCT
Docs PROPN
seem VERB
to ADP
believethat VERB
, PUNCT
because SCONJ
they PRON
have AUX
close ADJ
control NOUN
of ADP
you PRON
, PUNCT
it PRON
's AUX
quite ADV
all ADV
right ADJ
totake VERB
your PRON
bodily ADJ
equilibria VERB
into ADP
their PRON
own ADJ
hands NOUN
. PUNCT
That DET
control NOUN
reducesthe ADJ
chance NOUN
that SCONJ
the DET
patient NOUN
will AUX
make VERB
a DET
mistake NOUN
, PUNCT
but CCONJ
health NOUN
careproviders NOUN
can AUX
make VERB
mistakes NOUN
too ADV
, PUNCT
and CCONJ
mistakes NOUN
can AUX
be AUX
deadly ADJ
under ADP
thosecircumstances NOUN
. PUNCT
I PRON
grant VERB
you PRON
that SCONJ
sometimes ADV
there PRON
's AUX
no DET
choice NOUN
. PUNCT
Nevertheless ADV
, PUNCT
I PRON
suggestyou VERB
procure VERB
a DET
list NOUN
of ADP
the DET
drugs NOUN
your PRON
grandmother NOUN
is AUX
getting VERB
, PUNCT
and CCONJ
discussit VERB
with ADP
an DET
independent ADJ
doc NOUN
. PUNCT
Her PRON
problems NOUN
may AUX
not PART
be AUX
the DET
effect NOUN
of ADP
HALDOLat PROPN
all DET
. PUNCT
HALDOL PROPN
may AUX
have AUX
been AUX
used VERB
validly ADV
, PUNCT
or CCONJ
it PRON
may AUX
have AUX
beenprescribed VERB
because SCONJ
OTHER ADJ
medication NOUN
confused VERB
her PRON
, PUNCT
and CCONJ
because SCONJ
thehospital ADJ
normally ADV
prescribes VERB
HALDOL PROPN
for ADP
the DET
confused ADJ
elderly ADV
. PUNCT
Just ADV
my PRON
opinion,-Larry NOUN
( PUNCT
obviously ADV
not PART
a DET
doc NOUN
) PUNCT
C. PROPN
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59278From NUM
: PUNCT
jowalker@polyslo.csc.calpoly.edu PROPN
( PUNCT
The DET
Thespian)Subject NUM
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceI PROPN
got VERB
this DET
recipe NOUN
from ADP
a DET
watier ADJ
on ADP
the DET
greek PROPN
island NOUN
of ADP
samos ADJ
. PUNCT
They PRON
use VERB
it PRON
as SCONJ
a DET
spread NOUN
for ADP
bread NOUN
there ADV
butit NOUN
is AUX
excellent ADJ
ongyro PROPN
's PART
as ADV
well ADV
. PUNCT
By ADP
the DET
way NOUN
, PUNCT
the DET
actual ADJ
name NOUN
is AUX
tzatziki ADJ
. PUNCT
Here ADV
is AUX
the DET
recipe NOUN
: PUNCT
yoghurt PROPN
, PUNCT
chopped VERB
garlic NOUN
, PUNCT
peeled VERB
chopped VERB
cucumber NOUN
, PUNCT
salt NOUN
, PUNCT
whitepepper NOUN
, PUNCT
a DET
little ADJ
olive ADJ
oil NOUN
and CCONJ
a DET
little ADJ
vinegar NOUN
. PUNCT
I PRON
would AUX
love VERB
to PART
hear VERB
of ADP
any DET
other ADJ
good ADJ
greek ADJ
recipes NOUN
out ADP
there.-- PROPN
Jon PROPN
Walkerjowalker@oboe.calpoly.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59279From NUM
: PUNCT
dbaker@utkvx.utk.edu PROPN
( PUNCT
Baker PROPN
, PUNCT
David)Subject NUM
: PUNCT
Hypodermic PROPN
SyringeWhile PROPN
I PRON
do AUX
n't PART
have AUX
an DET
answer NOUN
for ADP
you PRON
, PUNCT
I PRON
reckon VERB
Blaise PROPN
Pascal PROPN
is AUX
generallycredited VERB
with ADP
inventing VERB
the DET
syringe NOUN
per ADP
se X
. PROPN
  SPACE
I PRON
do AUX
n't PART
know VERB
much ADJ
about ADP
theneedles NOUN
; PUNCT
however ADV
, PUNCT
I PRON
do AUX
know VERB
of ADP
a DET
southwest NOUN
Virginia PROPN
country NOUN
doctor NOUN
whosome PROPN
thrity PROPN
or CCONJ
more ADJ
years NOUN
ago ADV
invented VERB
, PUNCT
patented VERB
, PUNCT
used VERB
, PUNCT
and CCONJ
sold VERB
a DET
syringe NOUN
/ SYM
hypodermic ADJ
needle NOUN
combination NOUN
that PRON
retracted VERB
, PUNCT
injected VERB
with ADP
the DET
flip NOUN
of ADP
atrigger NOUN
, PUNCT
then ADV
retracted VERB
, PUNCT
giving VERB
a DET
near ADJ
- PUNCT
painless ADJ
injection NOUN
. PUNCT
  SPACE
The DET
fellow ADJ
wasDr PROPN
. PUNCT
Daniel PROPN
Gabriel PROPN
, PUNCT
and CCONJ
it PRON
was AUX
termed VERB
the DET
Gabriel PROPN
-- PUNCT
somebody PRON
else ADV
syringe NOUN
. PUNCT
Did AUX
you PRON
come VERB
across ADP
that DET
one NUM
. PUNCT
  SPACE
( PUNCT
Plastic ADJ
, PUNCT
disposable ADJ
syringes NOUN
came VERB
onto ADP
themarket NOUN
about ADP
that DET
time NOUN
and CCONJ
his PRON
product NOUN
went VERB
by ADP
the DET
wayside NOUN
, PUNCT
to ADP
my PRON
knowledge.)Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59280From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu NUM
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyIn PROPN
article NOUN
< X
YfqmleK00iV185Co5L@andrew.cmu.edu ADJ
> X
, PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu NOUN
> X
writes VERB
... PUNCT
>I've PUNCT
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented ADJ
and CCONJ
> X
demented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
were AUX
> X
definitely ADV
involved ADJ
. PUNCT
> X
> X
My PRON
own ADJ
father NOUN
turned VERB
into ADP
a DET
vegetable NOUN
for ADP
a DET
short ADJ
time NOUN
while SCONJ
in ADP
the DET
> X
hospital NOUN
. PUNCT
He PRON
was AUX
fifty NUM
- PUNCT
three NUM
at ADP
the DET
time NOUN
, PUNCT
and CCONJ
he PRON
was AUX
on ADP
21 NUM
separate ADJ
> NOUN
drugs NOUN
... PUNCT
No DET
wonder NOUN
he PRON
became VERB
confused ADJ
! PUNCT
  SPACE
With ADP
so ADV
many ADJ
drugs NOUN
, PUNCT
it PRON
is AUX
almost ADV
impossibleto ADJ
know VERB
which PRON
one NOUN
is AUX
causing VERB
the DET
problem NOUN
. PUNCT
  SPACE
And CCONJ
because SCONJ
some DET
drugs NOUN
potentiate VERB
the DET
effect NOUN
of ADP
each DET
other ADJ
, PUNCT
they PRON
can AUX
make VERB
the DET
side NOUN
effectsall VERB
the DET
worse ADJ
, PUNCT
and CCONJ
even ADV
dangerous ADJ
. PUNCT
  SPACE
( PUNCT
kinda ADV
like SCONJ
mixing VERB
alcohol NOUN
and CCONJ
antihistamines!)> PROPN
... PUNCT
he PRON
was AUX
disoriened VERB
[ PUNCT
the DET
doctors NOUN
thougt NOUN
] PUNCT
they PRON
should AUX
put VERB
him PRON
on ADP
something PRON
> X
else ADV
as SCONJ
well!Unfortunately ADV
, PUNCT
doctors NOUN
prescribe VERB
drugs NOUN
to PART
treat VERB
the DET
side NOUN
effects NOUN
ofthe NOUN
drugs NOUN
a DET
patient NOUN
is AUX
receiving VERB
. PUNCT
  SPACE
If SCONJ
one NUM
drug NOUN
they PRON
are AUX
taking VERB
causesthe NOUN
patient NOUN
's PART
blood NOUN
pressure NOUN
to PART
go VERB
up ADP
, PUNCT
many ADJ
times NOUN
an DET
antihypertensiveis PROPN
prescribed VERB
instead ADV
of ADP
re NOUN
- VERB
evaluating VERB
the DET
need NOUN
for ADP
the DET
original ADJ
drug NOUN
. PUNCT
This DET
is AUX
why ADV
many ADJ
older ADJ
adults NOUN
are AUX
trying VERB
to PART
take VERB
a DET
dozen NOUN
or CCONJ
so ADV
drugsat VERB
home!!!!> NOUN
.... PUNCT
procure NOUN
a DET
list NOUN
of ADP
the DET
drugs NOUN
your PRON
grandmother NOUN
is AUX
getting VERB
, PUNCT
and CCONJ
discuss VERB
> X
it PRON
with ADP
an DET
independent ADJ
doc NOUN
. PUNCT
Her PRON
problems NOUN
may AUX
not PART
be AUX
the DET
effect NOUN
of ADP
HALDOL PROPN
> X
at ADV
all ADV
. PUNCT
HALDOL PROPN
may AUX
have AUX
been AUX
used VERB
validly ADV
, PUNCT
or CCONJ
it PRON
may AUX
have AUX
been AUX
> X
prescribed VERB
because SCONJ
OTHER ADJ
medication NOUN
confused VERB
her PRON
, PUNCT
and CCONJ
because SCONJ
the DET
> X
hospital NOUN
normally ADV
prescribes VERB
HALDOL PROPN
for ADP
the DET
confused ADJ
elderly ADV
. PUNCT
I PRON
fully ADV
agree VERB
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
she PRON
proably ADV
should AUX
be AUX
examined VERB
by ADP
anotherdoctor NOUN
who PRON
can AUX
re VERB
- VERB
evaluate VERB
the DET
need NOUN
for ADP
the DET
medications NOUN
she PRON
is AUX
taking VERB
. PUNCT
I PRON
ca AUX
n't PART
remember VERB
the DET
guidelines NOUN
I PRON
either CCONJ
saw VERB
in ADP
a DET
text NOUN
or CCONJ
heard VERB
duringa PROPN
lecture NOUN
, PUNCT
but CCONJ
any DET
elderly ADJ
adult NOUN
who PRON
is AUX
receiving VERB
medications NOUN
should AUX
havethe NOUN
need NOUN
for ADP
the DET
drug NOUN
re NOUN
- VERB
evaluated VERB
regularly ADV
. PUNCT
  SPACE
If SCONJ
her PRON
current ADJ
physicianis NOUN
unwilling ADJ
to PART
do AUX
this DET
, PUNCT
find VERB
one NUM
who PRON
will AUX
. PUNCT
  SPACE
Either CCONJ
check VERB
the DET
phone NOUN
book NOUN
for ADP
a DET
physician NOUN
who PRON
specializes VERB
in ADP
geriatric ADJ
medicine NOUN
or CCONJ
gerontology NOUN
, PUNCT
or CCONJ
contact VERB
a DET
physician ADJ
referral NOUN
line NOUN
or CCONJ
the DET
American PROPN
Medical PROPN
Society PROPN
. PUNCT
By ADP
finding VERB
a DET
geriatric ADJ
specialist NOUN
, PUNCT
he PRON
( PUNCT
she PRON
) PUNCT
will AUX
more ADV
likely ADV
be AUX
in ADP
tunewith PROPN
the DET
special ADJ
needs NOUN
of ADP
elderly ADJ
adults NOUN
and CCONJ
maybe ADV
can AUX
help VERB
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59281From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject PROPN
: PUNCT
Fibromyalgia PROPN
, PUNCT
CFS PROPN
and CCONJ
sleep NOUN
levelsI PROPN
know VERB
that SCONJ
there PRON
is AUX
a DET
relationship NOUN
between ADP
Fibromyalgia PROPN
and CCONJ
deep ADJ
sleep NOUN
. PUNCT
  SPACE
I PRON
believe VERB
that SCONJ
there PRON
are AUX
five NUM
levels NOUN
of ADP
sleep NOUN
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
R.E.M. PROPN
sleep NOUN
is AUX
the DET
third ADJ
deepest ADJ
level NOUN
of ADP
sleep NOUN
and CCONJ
that SCONJ
there PRON
are AUX
two NUM
deeper ADJ
levels NOUN
of ADP
sleep NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
am AUX
in ADP
error NOUN
in ADP
any DET
of ADP
this DET
, PUNCT
please INTJ
let VERB
me PRON
know VERB
. PUNCT
Which PRON
level NOUN
of ADP
sleep NOUN
is AUX
thought VERB
to PART
be AUX
deficient ADJ
in ADP
people NOUN
with ADP
Fibromyalgia PROPN
? PUNCT
  SPACE
Are AUX
there PRON
any DET
known VERB
sleep NOUN
disturbances NOUN
associated VERB
with ADP
CFS PROPN
? PUNCT
  SPACE
What PRON
sleep NOUN
disturbances VERB
( PUNCT
if SCONJ
any DET
) PUNCT
are AUX
associated VERB
with ADP
clinical ADJ
depression NOUN
? PUNCT
  SPACE
Do AUX
antidepressants NOUN
correct VERB
the DET
sleep NOUN
disturbances NOUN
in ADP
these DET
diseases NOUN
? PUNCT
  SPACE
Are AUX
there PRON
any DET
good ADJ
books NOUN
or CCONJ
medical ADJ
journal NOUN
articles NOUN
about ADP
sleep NOUN
disturbances NOUN
and CCONJ
these DET
diseases NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
.... PUNCT
The DET
more ADV
inconvenient ADJ
it PRON
is AUX
to PART
answer VERB
the DET
phone NOUN
, PUNCT
the DET
more ADV
it PRON
rings VERB
. PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59282From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
Pregnency NOUN
without ADP
sex?When PROPN
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incidentin NOUN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
havingsexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
spermcells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation NOUN
. PUNCT
Was AUX
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actuallyoccur?StephenNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59283From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
1/4 NUM
- SYM
------------ PUNCT
cut NOUN
here ADV
-----------------Volume NOUN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
              SPACE
+ CCONJ
------------------------------------------------+ PUNCT
              SPACE
! PUNCT
                                                SPACE
! PUNCT
              SPACE
! PUNCT
              SPACE
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
           SPACE
! PUNCT
              SPACE
! PUNCT
                SPACE
Medical PROPN
Newsletter PROPN
              SPACE
! PUNCT
              SPACE
+ X
------------------------------------------------+ PUNCT
                         SPACE
Editor NOUN
: PUNCT
David PROPN
Dodell PROPN
, PUNCT
D.M.D. PROPN
    SPACE
10250 NUM
North PROPN
92nd NOUN
Street PROPN
, PUNCT
Suite PROPN
210 NUM
, PUNCT
Scottsdale PROPN
, PUNCT
Arizona PROPN
85258 NUM
- SYM
4599 NUM
USA PROPN
                          SPACE
Telephone PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
860 NUM
- SYM
1121 NUM
                              SPACE
FAX PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
451 NUM
- PUNCT
1165Compilation NUM
Copyright PROPN
1993 NUM
by ADP
David PROPN
Dodell PROPN
, PUNCT
  SPACE
D.M.D. PROPN
  SPACE
All DET
  SPACE
rights NOUN
  SPACE
Reserved VERB
. PUNCT
  SPACE
License NOUN
  SPACE
is AUX
  SPACE
hereby PROPN
  SPACE
granted VERB
  SPACE
to PART
republish VERB
on ADP
electronic ADJ
media NOUN
for ADP
which PRON
no DET
fees NOUN
are AUX
charged VERB
, PUNCT
  SPACE
so ADV
long ADV
as SCONJ
the DET
text NOUN
of ADP
this DET
copyright NOUN
notice NOUN
and CCONJ
license NOUN
are AUX
attached VERB
intact ADJ
to ADP
any DET
and CCONJ
all DET
republished VERB
portion NOUN
or CCONJ
portions NOUN
. PUNCT
  SPACE
The DET
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
Newsletter PROPN
is AUX
  SPACE
distributed VERB
  SPACE
biweekly ADV
. PUNCT
  SPACE
Articles NOUN
on ADP
  SPACE
a DET
medical ADJ
nature NOUN
are AUX
welcomed VERB
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
an DET
article NOUN
, PUNCT
  SPACE
please INTJ
contact VERB
the DET
editor NOUN
for ADP
information NOUN
on ADP
how ADV
to PART
submit VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
  SPACE
interested ADJ
  SPACE
in ADP
joining VERB
the DET
automated VERB
distribution NOUN
system NOUN
, PUNCT
please INTJ
contact VERB
the DET
editor NOUN
. PUNCT
  SPACE
E PROPN
- PROPN
Mail PROPN
Address NOUN
: PUNCT
                                    SPACE
Editor NOUN
: PUNCT
                            SPACE
Internet NOUN
: PUNCT
david@stat.com X
                              SPACE
FidoNet PROPN
= SYM
1:114/15 NUM
                           SPACE
Bitnet NOUN
= SYM
ATW1H@ASUACAD VERB
LISTSERV PROPN
= SYM
MEDNEWS@ASUACAD.BITNET NOUN
( PUNCT
or CCONJ
internet NOUN
: PUNCT
mednews@asuvm.inre.asu.edu PROPN
) PUNCT
                          SPACE
anonymous ADJ
ftp NOUN
= X
vm1.nodak.edu PROPN
               SPACE
Notification PROPN
List PROPN
= SYM
hicn-notify-request@stat.com X
                 SPACE
FAX PROPN
Delivery NOUN
= SYM
Contact PROPN
Editor PROPN
for ADP
information NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                       SPACE
T NOUN
A PROPN
B NOUN
L NOUN
E NOUN
   SPACE
O INTJ
F NOUN
   SPACE
C NOUN
O NOUN
N NOUN
T NOUN
E NOUN
N NOUN
T NOUN
S1 PROPN
. PUNCT
  SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
     SPACE
[ PUNCT
23 NUM
April PROPN
1993 NUM
] PUNCT
Rates PROPN
of ADP
Cesarean PROPN
Delivery PROPN
........................... PUNCT
  SPACE
1 NUM
     SPACE
Malaria PROPN
Among ADP
U.S. PROPN
Embassy PROPN
Personnel NOUN
................................. PUNCT
  SPACE
5 NUM
     SPACE
FDA PROPN
Approval PROPN
of ADP
Hib PROPN
Vaccine PROPN
for ADP
Children NOUN
/ SYM
Infants NOUN
..................... PUNCT
  SPACE
82 NUM
. PUNCT
  SPACE
Dental PROPN
News PROPN
     SPACE
Workshop PROPN
Explores PROPN
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
............... PUNCT
113 NUM
. PUNCT
  SPACE
Food PROPN
& CCONJ
Drug PROPN
Administration PROPN
News PROPN
     SPACE
FDA PROPN
Approves PROPN
Depo PROPN
Provera PROPN
, PUNCT
injectable ADJ
contraceptive NOUN
.................. PUNCT
14 NUM
     SPACE
New PROPN
Rules PROPN
Speed PROPN
Approval NOUN
of ADP
Drugs NOUN
for ADP
Life NOUN
- PUNCT
Threatening VERB
Illnesses PROPN
..... PUNCT
164 NUM
. PUNCT
  SPACE
Articles PROPN
     SPACE
Research PROPN
Promises PROPN
Preventing PROPN
/ SYM
Slowing VERB
Blindness PROPN
from ADP
Retinal PROPN
Disease PROPN
.. PUNCT
18 NUM
     SPACE
Affluent PROPN
Diet PROPN
Increases PROPN
Risk PROPN
Of ADP
Heart PROPN
Disease PROPN
........................ PUNCT
205 NUM
. PUNCT
  SPACE
General PROPN
Announcments PROPN
     SPACE
Publications PROPN
for ADP
Health PROPN
Professionals PROPN
from ADP
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
23 NUM
     SPACE
Publications NOUN
for ADP
Patients NOUN
Available ADJ
from ADP
National PROPN
Cancer PROPN
Institute PROPN
... PUNCT
306 NUM
. PUNCT
  SPACE
AIDS PROPN
News PROPN
Summaries PROPN
     SPACE
AIDS PROPN
Daily PROPN
Summary PROPN
for ADP
April PROPN
19 NUM
to ADP
April PROPN
23 NUM
, PUNCT
1993 NUM
.................... PUNCT
387 NUM
. PUNCT
  SPACE
AIDS PROPN
Statistics PROPN
     SPACE
Worldwide PROPN
AIDS PROPN
Statistics PROPN
............................................ PUNCT
48HICNet NUM
Medical PROPN
Newsletter PROPN
                                            SPACE
Page PROPN
    SPACE
iVolume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Rates NOUN
of ADP
Cesarean PROPN
Delivery PROPN
-- PUNCT
United PROPN
States PROPN
, PUNCT
1991 NUM
               SPACE
= X
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(15 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
23 NUM
, PUNCT
1993 NUM
     SPACE
Cesarean ADJ
deliveries NOUN
have AUX
accounted VERB
for ADP
nearly ADV
1 NUM
million NUM
of ADP
the DET
approximately ADV
4 NUM
million NUM
annual ADJ
deliveries NOUN
in ADP
the DET
United PROPN
States PROPN
since SCONJ
1986 NUM
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
The DET
cesarean ADJ
rate NOUN
in ADP
the DET
United PROPN
States PROPN
is AUX
the DET
third ADJ
highest ADJ
among ADP
21 NUM
reporting NOUN
countries NOUN
, PUNCT
exceeded VERB
only ADV
by ADP
Brazil PROPN
and CCONJ
Puerto PROPN
Rico PROPN
( PUNCT
1 NUM
) PUNCT
. PUNCT
This DET
report NOUN
presents VERB
data NOUN
on ADP
cesarean ADJ
deliveries NOUN
from ADP
CDC PROPN
's PART
National PROPN
Hospital PROPN
Discharge PROPN
Survey PROPN
( PUNCT
NHDS PROPN
) PUNCT
for ADP
1991 NUM
and CCONJ
compares VERB
these DET
data NOUN
with ADP
previous ADJ
years NOUN
. PUNCT
      SPACE
Data PROPN
on ADP
discharges NOUN
from ADP
short ADJ
- PUNCT
stay NOUN
, PUNCT
nonfederal ADJ
hospitals NOUN
have AUX
been AUX
collected VERB
annually ADV
since SCONJ
1965 NUM
in ADP
the DET
NHDS PROPN
, PUNCT
conducted VERB
by ADP
CDC PROPN
's PART
National PROPN
Center PROPN
for ADP
Health PROPN
Statistics PROPN
. PUNCT
For ADP
1991 NUM
, PUNCT
medical ADJ
and CCONJ
demographic ADJ
information NOUN
were AUX
abstracted VERB
from ADP
a DET
sample NOUN
of ADP
274,000 NUM
inpatients NOUN
discharged VERB
from ADP
484 NUM
participating VERB
hospitals NOUN
. PUNCT
The DET
1991 NUM
cesareans NOUN
and CCONJ
vaginal ADJ
births NOUN
after ADP
a DET
prior ADJ
cesarean NOUN
( PUNCT
VBAC PROPN
) PUNCT
presented VERB
in ADP
this DET
report NOUN
are AUX
based VERB
on ADP
weighted VERB
national ADJ
estimates NOUN
from ADP
the DET
NHDS PROPN
sample NOUN
of ADP
approximately ADV
31,000 NUM
( PUNCT
11 NUM
% NOUN
) PUNCT
women NOUN
discharged VERB
after ADP
delivery NOUN
. PUNCT
The DET
estimated VERB
numbers NOUN
of ADP
live ADJ
births NOUN
by ADP
type NOUN
of ADP
delivery NOUN
were AUX
calculated VERB
by ADP
applying VERB
cesarean ADJ
rates NOUN
from ADP
the DET
NHDS PROPN
to PART
live VERB
births NOUN
from ADP
national ADJ
vital ADJ
registration NOUN
data NOUN
. PUNCT
Therefore ADV
, PUNCT
estimates NOUN
of ADP
the DET
number NOUN
of ADP
cesareans PROPN
in ADP
this DET
report NOUN
will AUX
not PART
agree VERB
with ADP
previously ADV
published VERB
data NOUN
based VERB
solely ADV
on ADP
the DET
NHDS PROPN
( PUNCT
2 NUM
) PUNCT
. PUNCT
Stated VERB
differences NOUN
in ADP
this DET
analysis NOUN
are AUX
significant ADJ
at ADP
the DET
95 NUM
% NOUN
confidence NOUN
level NOUN
, PUNCT
based VERB
on ADP
the DET
two NUM
- PUNCT
tailed VERB
t NOUN
- PUNCT
test NOUN
with ADP
a DET
critical ADJ
value NOUN
of ADP
1.96 NUM
. PUNCT
      SPACE
In ADP
1991 NUM
, PUNCT
there PRON
were AUX
23.5 NUM
cesareans NOUN
per ADP
100 NUM
deliveries NOUN
, PUNCT
the DET
same ADJ
rate NOUN
as SCONJ
in ADP
1990 NUM
and CCONJ
similar ADJ
to ADP
rates NOUN
during ADP
1986 NUM
- SYM
1989 NUM
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
The DET
primary ADJ
cesarean ADJ
rate NOUN
( PUNCT
i.e. X
, PUNCT
number NOUN
of ADP
first ADJ
cesareans PROPN
per ADP
100 NUM
deliveries NOUN
to ADP
women NOUN
who PRON
had AUX
no DET
previous ADJ
cesareans NOUN
) PUNCT
for ADP
1986 NUM
- SYM
1991 NUM
also ADV
was AUX
stable ADJ
, PUNCT
ranging VERB
from ADP
16.8 NUM
to ADP
17.5 NUM
. PUNCT
In ADP
1991 NUM
, PUNCT
the DET
cesarean ADJ
rate NOUN
in ADP
the DET
South PROPN
was AUX
27.6 NUM
, PUNCT
significantly ADV
( PUNCT
p<0.05 NOUN
) PUNCT
higher ADJ
than SCONJ
the DET
rates NOUN
for ADP
the DET
West PROPN
( PUNCT
19.8 NUM
) PUNCT
, PUNCT
Midwest PROPN
( PUNCT
21.8 NUM
) PUNCT
, PUNCT
and CCONJ
Northeast PROPN
( PUNCT
22.6 NUM
) PUNCT
. PUNCT
Rates NOUN
were AUX
higher ADJ
for ADP
mothers NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
30 NUM
years NOUN
than SCONJ
for ADP
younger ADJ
women NOUN
; PUNCT
in ADP
proprietary ADJ
hospitals NOUN
than SCONJ
in ADP
nonprofit ADJ
or CCONJ
government NOUN
hospitals NOUN
; PUNCT
in ADP
hospitals NOUN
with ADP
fewer ADJ
than SCONJ
300 NUM
beds NOUN
than SCONJ
in ADP
larger ADJ
hospitals NOUN
; PUNCT
and CCONJ
for ADP
deliveries NOUN
for ADP
which PRON
Blue PROPN
Cross PROPN
/ SYM
Blue PROPN
Shield PROPN
* PUNCT
and CCONJ
other ADJ
private ADJ
insurance NOUN
is AUX
the DET
expected VERB
source NOUN
of ADP
payment NOUN
than SCONJ
for ADP
other ADJ
sources NOUN
of ADP
payment NOUN
( PUNCT
Table NOUN
2 NUM
) PUNCT
. PUNCT
The DET
same ADJ
pattern NOUN
characterized VERB
primary ADJ
cesarean ADJ
deliveries NOUN
. PUNCT
      SPACE
Since SCONJ
the DET
early ADJ
1970s NOUN
, PUNCT
the DET
number NOUN
and CCONJ
percentage NOUN
of ADP
births NOUN
to ADP
older ADJ
women NOUN
increased VERB
; PUNCT
however ADV
, PUNCT
if SCONJ
the DET
age NOUN
distribution NOUN
of ADP
mothers NOUN
in ADP
1991 NUM
had AUX
remained VERB
the DET
same ADJ
as SCONJ
in ADP
1986 NUM
, PUNCT
the DET
overall ADJ
cesarean ADJ
rate NOUN
in ADP
1991 NUM
would AUX
have AUX
been AUX
23.3 NUM
, PUNCT
essentially ADV
the DET
same ADJ
as SCONJ
the DET
23.5 NUM
observed VERB
. PUNCT
      SPACE
Based PROPN
on ADP
the DET
NHDS NOUN
, PUNCT
of ADP
the DET
approximately ADV
4,111,000 NUM
live ADJ
births NOUN
in ADP
1991 NUM
, PUNCT
an DET
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
1Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993estimated NUM
966,000 NUM
( PUNCT
23.5 NUM
% NOUN
) PUNCT
were AUX
by ADP
cesarean ADJ
delivery NOUN
. PUNCT
Of ADP
these DET
, PUNCT
an DET
estimated VERB
338,000 NUM
( PUNCT
35.0 NUM
% NOUN
) PUNCT
births NOUN
were AUX
repeat NOUN
cesareans NOUN
, PUNCT
and CCONJ
628,000 NUM
( PUNCT
65.0 NUM
% NOUN
) PUNCT
were AUX
primary ADJ
cesareans NOUN
. PUNCT
Since SCONJ
1986 NUM
, PUNCT
approximately ADV
600,000 NUM
primary ADJ
cesareans NOUN
have AUX
been AUX
performed VERB
annually ADV
. PUNCT
In ADP
1986 NUM
, PUNCT
8.5 NUM
% NOUN
of ADP
women NOUN
who PRON
had AUX
a DET
previous ADJ
cesarean NOUN
delivered VERB
vaginally ADV
, PUNCT
compared VERB
with ADP
24.2 NUM
% NOUN
in ADP
1991 NUM
. PUNCT
Of ADP
all DET
cesareans NOUN
in ADP
1991 NUM
, PUNCT
35.0 NUM
% NOUN
were AUX
associated VERB
with ADP
a DET
previous ADJ
cesarean NOUN
, PUNCT
30.4 NUM
% NOUN
with ADP
dystocia PROPN
( PUNCT
i.e. X
, PUNCT
failure NOUN
of ADP
labor NOUN
to PART
progress VERB
) PUNCT
, PUNCT
11.7 NUM
% NOUN
with ADP
breech ADJ
presentation NOUN
, PUNCT
9.2 NUM
% NOUN
with ADP
fetal ADJ
distress NOUN
, PUNCT
and CCONJ
13.7 NUM
% NOUN
with ADP
all DET
other ADJ
specified VERB
complications NOUN
. PUNCT
      SPACE
The DET
average ADJ
hospital NOUN
stay NOUN
for ADP
all DET
deliveries NOUN
in ADP
1991 NUM
was AUX
2.8 NUM
days NOUN
. PUNCT
In ADP
comparison NOUN
, PUNCT
the DET
hospital NOUN
stay VERB
for ADP
a DET
primary ADJ
cesarean ADJ
delivery NOUN
was AUX
4.5 NUM
days NOUN
, PUNCT
and CCONJ
for ADP
a DET
repeat NOUN
cesarean NOUN
, PUNCT
4.2 NUM
days NOUN
-- PUNCT
nearly ADV
twice DET
the DET
duration NOUN
for ADP
VBAC PROPN
deliveries NOUN
( PUNCT
2.2 NUM
days NOUN
) PUNCT
or CCONJ
for ADP
vaginal ADJ
deliveries NOUN
that PRON
were AUX
not PART
VBACs NOUN
( PUNCT
2.3 NUM
days NOUN
) PUNCT
. PUNCT
In ADP
1986 NUM
, PUNCT
the DET
average ADJ
hospital NOUN
stay NOUN
for ADP
all DET
deliveries NOUN
was AUX
3.2 NUM
days NOUN
, PUNCT
for ADP
primary ADJ
cesareans NOUN
5.2 NUM
days NOUN
, PUNCT
for ADP
repeat NOUN
cesareans NOUN
4.7 NUM
days NOUN
, PUNCT
and CCONJ
for ADP
VBAC NOUN
and CCONJ
non ADJ
- ADJ
VBAC ADJ
vaginal ADJ
deliveries NOUN
2.7 NUM
and CCONJ
2.6 NUM
days NOUN
, PUNCT
respectively ADV
. PUNCT
Reported VERB
by ADP
: PUNCT
Office PROPN
of ADP
Vital PROPN
and CCONJ
Health PROPN
Statistics PROPN
Systems PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Health PROPN
Statistics PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
cesarean ADJ
rate NOUN
in ADP
the DET
United PROPN
States PROPN
steadily ADV
increased VERB
from ADP
1965 NUM
through ADP
1986 NUM
; PUNCT
however ADV
, PUNCT
the DET
findings NOUN
in ADP
this DET
report NOUN
indicate VERB
that SCONJ
rates NOUN
have AUX
been AUX
stable ADJ
since SCONJ
1986 NUM
( PUNCT
3 NUM
) PUNCT
. PUNCT
Because SCONJ
there PRON
is AUX
little ADJ
evidence NOUN
that SCONJ
maternal ADJ
and CCONJ
child NOUN
health NOUN
status NOUN
has AUX
improved VERB
during ADP
this DET
time NOUN
and CCONJ
because SCONJ
cesareans PROPN
are AUX
associated VERB
with ADP
an DET
increased VERB
risk NOUN
for ADP
complications NOUN
of ADP
childbirth NOUN
, PUNCT
a DET
national ADJ
health NOUN
objective NOUN
for ADP
the DET
year NOUN
2000 NUM
( PUNCT
4 NUM
) PUNCT
is AUX
to PART
reduce VERB
the DET
overall ADJ
cesarean ADJ
rate NOUN
to ADP
15 NUM
or CCONJ
fewer ADJ
per ADP
100 NUM
deliveries NOUN
and CCONJ
the DET
primary ADJ
cesarean ADJ
rate NOUN
to ADP
12 NUM
or CCONJ
fewer ADJ
per ADP
100 NUM
deliveries NOUN
( PUNCT
objective ADJ
14.8 NUM
) PUNCT
. PUNCT
      SPACE
Postpartum PROPN
complications NOUN
-- PUNCT
including VERB
urinary ADJ
tract NOUN
and CCONJ
wound NOUN
infections NOUN
-- PUNCT
may AUX
account VERB
in ADP
part NOUN
for ADP
the DET
longer ADJ
hospital NOUN
stays VERB
for ADP
cesarean ADJ
deliveries NOUN
than SCONJ
for ADP
vaginal ADJ
births NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
Moreover ADV
, PUNCT
the DET
prolonged ADJ
hospital NOUN
stays VERB
for ADP
cesarean ADJ
deliveries NOUN
substantially ADV
increase VERB
health NOUN
- PUNCT
care NOUN
costs NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
in ADP
1991 NUM
, PUNCT
the DET
average ADJ
costs NOUN
for ADP
cesarean ADJ
and CCONJ
vaginal ADJ
deliveries NOUN
were AUX
$ SYM
7826 NUM
and CCONJ
$ SYM
4720 NUM
, PUNCT
respectively ADV
. PUNCT
The DET
additional ADJ
cost NOUN
for ADP
each DET
cesarean ADJ
delivery NOUN
includes VERB
$ SYM
611 NUM
for ADP
physician NOUN
fees NOUN
and CCONJ
$ SYM
2495 NUM
for ADP
hospital NOUN
charges NOUN
( PUNCT
6 NUM
) PUNCT
. PUNCT
If SCONJ
the DET
cesarean ADJ
rate NOUN
in ADP
1991 NUM
had AUX
been AUX
15 NUM
( PUNCT
the DET
year NOUN
2000 NUM
objective NOUN
) PUNCT
instead ADV
of ADP
23.5 NUM
, PUNCT
the DET
number NOUN
of ADP
cesarean ADJ
births NOUN
would AUX
have AUX
decreased VERB
by ADP
349,000 NUM
( PUNCT
617,000 NUM
versus ADP
966,000 NUM
) PUNCT
, PUNCT
resulting VERB
in ADP
a DET
savings NOUN
of ADP
more ADJ
than SCONJ
$ SYM
1 NUM
billion NUM
in ADP
physician NOUN
fees NOUN
and CCONJ
hospital NOUN
charges NOUN
. PUNCT
      SPACE
Despite SCONJ
the DET
steady ADJ
increase NOUN
in ADP
VBAC PROPN
rates NOUN
since SCONJ
1986 NUM
, PUNCT
several ADJ
factors NOUN
may AUX
impede VERB
progress NOUN
toward ADP
the DET
year NOUN
2000 NUM
national PROPN
health PROPN
objectives NOUN
for ADP
cesarean ADJ
delivery NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
VBAC PROPN
rates NOUN
substantially ADV
reflect VERB
the DET
number NOUN
of ADP
women NOUN
offered VERB
trial NOUN
of ADP
labor NOUN
, PUNCT
which PRON
has AUX
been AUX
increasingly ADV
encouraged VERB
since SCONJ
1982 NUM
( PUNCT
7 NUM
) PUNCT
. PUNCT
Of ADP
women NOUN
who PRON
are AUX
offered VERB
a DET
trial NOUN
of ADP
labor NOUN
, PUNCT
50%-70 NUM
% NOUN
could AUX
deliver VERB
vaginally ADV
( PUNCT
7 NUM
) PUNCT
--a NOUN
level NOUN
already ADV
achieved VERB
by ADP
many ADJ
hospitals NOUN
( PUNCT
8) NUM
. PUNCT
Trial NOUN
of ADP
labor NOUN
was AUX
routinely ADV
offered VERB
in ADP
46 NUM
% NOUN
of ADP
hospitals NOUN
surveyed VERB
in ADP
1984 NUM
( PUNCT
the DET
most ADV
recent ADJ
year NOUN
for ADP
which PRON
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
2Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993national NUM
data NOUN
are AUX
available ADJ
) PUNCT
( PUNCT
9 NUM
) PUNCT
when ADV
the DET
VBAC NOUN
rate NOUN
( PUNCT
according VERB
to ADP
NHDS PROPN
data NOUN
) PUNCT
was AUX
5.7 NUM
% NOUN
. PUNCT
The DET
year NOUN
2000 NUM
objective ADJ
specifies NOUN
a DET
VBAC NOUN
rate NOUN
of ADP
35 NUM
% NOUN
, PUNCT
based VERB
on ADP
all DET
women NOUN
who PRON
had AUX
a DET
prior ADJ
cesarean NOUN
, PUNCT
regardless ADV
of ADP
whether SCONJ
a DET
trial NOUN
of ADP
labor NOUN
was AUX
attempted VERB
. PUNCT
To PART
reach VERB
the DET
overall ADJ
cesarean ADJ
rate NOUN
goal NOUN
, PUNCT
however ADV
, PUNCT
increases NOUN
in ADP
the DET
VBAC NOUN
rate NOUN
will AUX
need VERB
to PART
be AUX
combined VERB
with ADP
a DET
substantial ADJ
reduction NOUN
in ADP
the DET
primary ADJ
rate NOUN
. PUNCT
      SPACE
One NUM
hospital NOUN
succeeded VERB
in ADP
reducing VERB
the DET
rate NOUN
of ADP
cesarean ADJ
delivery NOUN
by ADP
applying VERB
objective ADJ
criteria NOUN
for ADP
the DET
four NUM
most ADV
common ADJ
indications NOUN
for ADP
cesarean ADJ
delivery NOUN
, PUNCT
by ADP
requiring VERB
a DET
second ADJ
opinion NOUN
, PUNCT
and CCONJ
by ADP
instituting VERB
a DET
peer NOUN
- PUNCT
review NOUN
process NOUN
( PUNCT
10 NUM
) PUNCT
. PUNCT
Other ADJ
recommendations NOUN
for ADP
decreasing VERB
cesarean ADJ
delivery NOUN
rates NOUN
include VERB
eliminating VERB
incentives NOUN
for ADP
physicians NOUN
and CCONJ
hospitals NOUN
by ADP
equalizing VERB
reimbursement NOUN
for ADP
vaginal ADJ
and CCONJ
cesarean ADJ
deliveries NOUN
; PUNCT
public ADJ
dissemination NOUN
of ADP
physician- PROPN
and CCONJ
hospital NOUN
- PUNCT
specific ADJ
cesarean ADJ
delivery NOUN
rates NOUN
to PART
increase VERB
public ADJ
awareness NOUN
of ADP
differences NOUN
in ADP
practices NOUN
; PUNCT
and CCONJ
addressing VERB
malpractice NOUN
concerns NOUN
, PUNCT
which PRON
may AUX
be AUX
an DET
important ADJ
factor NOUN
in ADP
maintaining VERB
the DET
high ADJ
rates NOUN
of ADP
cesarean ADJ
delivery NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
References1 ADJ
. PUNCT
Notzon PROPN
FC PROPN
. PUNCT
International ADJ
differences NOUN
in ADP
the DET
use NOUN
of ADP
obstetric ADJ
interventions NOUN
. PUNCT
JAMA PROPN
1990 NUM
; PUNCT
263:3286 NUM
- SYM
91 NUM
. PUNCT
2 NUM
. PUNCT
Graves PROPN
EJ PROPN
, PUNCT
NCHS PROPN
. PUNCT
1991 NUM
Summary PROPN
: PUNCT
National PROPN
Hospital PROPN
Discharge PROPN
Survey PROPN
. PUNCT
Hyattsville PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
CDC PROPN
, PUNCT
1993 NUM
. PUNCT
( PUNCT
Advance NOUN
data NOUN
no NOUN
. NOUN
227 NUM
) PUNCT
. PUNCT
3 X
. PUNCT
Taffel PROPN
SM PROPN
, PUNCT
Placek PROPN
PJ PROPN
, PUNCT
Kosary PROPN
CL PROPN
. PUNCT
U.S. PROPN
cesarean ADJ
section NOUN
rates NOUN
, PUNCT
1990 NUM
: PUNCT
an DET
update NOUN
. PUNCT
Birth NOUN
1992;19:21 PROPN
- PUNCT
2 NUM
. PUNCT
4 NUM
. PUNCT
Public PROPN
Health PROPN
Service PROPN
. PUNCT
Healthy ADJ
people NOUN
2000 NUM
: PUNCT
national PROPN
health PROPN
promotion PROPN
and CCONJ
disease NOUN
prevention PROPN
objectives NOUN
-- PUNCT
full ADJ
report NOUN
, PUNCT
with ADP
commentary NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1991 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
PHS)91 PROPN
- PUNCT
50212 NUM
. PUNCT
5 NUM
. PUNCT
Danforth PROPN
DN PROPN
. PUNCT
Cesarean ADJ
section NOUN
. PUNCT
JAMA PROPN
1985;253:811 NUM
- SYM
8 NUM
. PUNCT
6 NUM
. PUNCT
Hospital PROPN
Insurance PROPN
Association PROPN
of ADP
America PROPN
. PUNCT
Table NOUN
4.15 NUM
: PUNCT
cost NOUN
of ADP
maternity NOUN
care NOUN
, PUNCT
physicians NOUN
' PART
fees NOUN
, PUNCT
and CCONJ
hospital NOUN
charges NOUN
, PUNCT
by ADP
census NOUN
region NOUN
, PUNCT
based VERB
on ADP
Consumer PROPN
Price PROPN
Index PROPN
( PUNCT
1991 NUM
) PUNCT
. PUNCT
In ADP
: PUNCT
1992 NUM
Source NOUN
book NOUN
of ADP
health NOUN
insurance NOUN
data NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
Hospital PROPN
Insurance PROPN
Association PROPN
of ADP
America PROPN
, PUNCT
1992 NUM
. PUNCT
7 NUM
. PUNCT
Committee PROPN
on ADP
Obstetrics PROPN
. PUNCT
ACOG PROPN
committee NOUN
opinion NOUN
no NOUN
. PROPN
64 NUM
: PUNCT
guidelines NOUN
for ADP
vaginal ADJ
delivery NOUN
after ADP
a DET
previous ADJ
cesarean ADJ
birth NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
American PROPN
College PROPN
of ADP
Obstetricians PROPN
and CCONJ
Gynecologists PROPN
, PUNCT
1988 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
3Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
19938 NUM
. PUNCT
Rosen PROPN
MG PROPN
, PUNCT
Dickinson PROPN
JC PROPN
. PUNCT
Vaginal ADJ
birth NOUN
after ADP
cesarean NOUN
: PUNCT
a DET
meta NOUN
- PUNCT
analysis NOUN
of ADP
indicators NOUN
for ADP
success NOUN
. PUNCT
Obstet PROPN
Gynecol PROPN
1990;76:865 PROPN
- SYM
9 NUM
. NOUN
9 NUM
. PUNCT
Shiono PROPN
PH PROPN
, PUNCT
Fielden PROPN
JG PROPN
, PUNCT
McNellis PROPN
D PROPN
, PUNCT
Rhoads VERB
GG PROPN
, PUNCT
Pearse PROPN
WH PROPN
. PUNCT
Recent ADJ
trends NOUN
in ADP
cesarean ADJ
birth NOUN
and CCONJ
trial NOUN
of ADP
labor NOUN
rates NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
JAMA PROPN
1987;257:494 PROPN
- SYM
7 NUM
. PUNCT
10 NUM
. PUNCT
Myers PROPN
SA PROPN
, PUNCT
Gleicher PROPN
N. PROPN
A DET
successful ADJ
program NOUN
to PART
lower VERB
cesarean ADJ
- PUNCT
section NOUN
rates NOUN
. PUNCT
N PROPN
Engl PROPN
J PROPN
Med PROPN
1988;319:1511 NUM
- SYM
6 NUM
. PUNCT
* PUNCT
Use NOUN
of ADP
trade NOUN
names NOUN
and CCONJ
commercial ADJ
sources NOUN
is AUX
for ADP
identification NOUN
only ADV
and CCONJ
does AUX
not PART
imply VERB
endorsement NOUN
by ADP
the DET
Public PROPN
Health PROPN
Service PROPN
or CCONJ
the DET
U.S. PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
4Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
         SPACE
Malaria PROPN
Among ADP
U.S. PROPN
Embassy PROPN
Personnel PROPN
-- PUNCT
Kampala PROPN
, PUNCT
Uganda PROPN
, PUNCT
1992 NUM
         SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(15 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
23 NUM
, PUNCT
1993 NUM
     SPACE
The DET
treatment NOUN
and CCONJ
prevention NOUN
of ADP
malaria PROPN
in ADP
Africa PROPN
has AUX
become VERB
a DET
challenging ADJ
and CCONJ
complex ADJ
problem NOUN
because SCONJ
of ADP
increasing VERB
drug NOUN
resistance NOUN
. PUNCT
Although SCONJ
the DET
risk NOUN
of ADP
acquiring VERB
malaria NOUN
for ADP
U.S. PROPN
citizens NOUN
and CCONJ
their PRON
dependents NOUN
stationed VERB
overseas ADV
generally ADV
has AUX
been AUX
low ADJ
, PUNCT
this DET
risk NOUN
varies VERB
substantially ADV
and CCONJ
unpredictably ADV
. PUNCT
During ADP
May PROPN
1992 NUM
, PUNCT
the DET
Office PROPN
of ADP
Medical PROPN
Services PROPN
, PUNCT
Department PROPN
of ADP
State PROPN
( PUNCT
OMS PROPN
/ SYM
DOS PROPN
) PUNCT
, PUNCT
and CCONJ
CDC PROPN
were AUX
notified VERB
of ADP
an DET
increased VERB
number NOUN
of ADP
malaria NOUN
cases NOUN
among ADP
official ADJ
U.S. PROPN
personnel NOUN
stationed VERB
in ADP
Kampala PROPN
, PUNCT
Uganda PROPN
. PUNCT
A DET
review NOUN
of ADP
the DET
health NOUN
records NOUN
from ADP
the DET
Embassy PROPN
Health PROPN
Unit PROPN
( PUNCT
EHU PROPN
) PUNCT
in ADP
Kampala PROPN
indicated VERB
that SCONJ
27 NUM
cases NOUN
of ADP
malaria NOUN
were AUX
diagnosed VERB
in ADP
official ADJ
personnel NOUN
from ADP
March PROPN
through ADP
June PROPN
1992 NUM
compared VERB
with ADP
two NUM
cases NOUN
during ADP
the DET
same ADJ
period NOUN
in ADP
1991 NUM
. PUNCT
EHU PROPN
, PUNCT
OMS PROPN
/ SYM
DOS PROPN
, PUNCT
and CCONJ
CDC PROPN
conducted VERB
an DET
investigation NOUN
to PART
confirm VERB
all DET
reported VERB
malaria NOUN
cases NOUN
and CCONJ
identify VERB
potential ADJ
risk NOUN
factors NOUN
for ADP
malaria NOUN
among ADP
U.S. PROPN
Embassy PROPN
personnel NOUN
. PUNCT
This DET
report NOUN
summarizes VERB
the DET
results NOUN
of ADP
the DET
investigation NOUN
. PUNCT
      SPACE
Malaria PROPN
blood NOUN
smears NOUN
from ADP
25 NUM
of ADP
the DET
27 NUM
reported VERB
case NOUN
- PUNCT
patients NOUN
were AUX
available ADJ
for ADP
review NOUN
by ADP
OMS PROPN
/ SYM
DOS PROPN
and CCONJ
CDC PROPN
. PUNCT
A DET
case NOUN
of ADP
malaria PROPN
was AUX
confirmed VERB
if SCONJ
the DET
slide NOUN
was AUX
positive ADJ
for ADP
Plasmodium PROPN
sp PROPN
. PUNCT
Of ADP
the DET
25 NUM
persons NOUN
, PUNCT
17 NUM
were AUX
slide NOUN
- PUNCT
confirmed VERB
as SCONJ
having VERB
malaria NOUN
. PUNCT
      SPACE
A PROPN
questionnaire NOUN
was AUX
distributed VERB
to ADP
all DET
persons NOUN
served VERB
by ADP
the DET
EHU PROPN
to PART
obtain VERB
information NOUN
about ADP
residence NOUN
, PUNCT
activities NOUN
, PUNCT
use NOUN
of ADP
malaria NOUN
chemoprophylaxis NOUN
, PUNCT
and CCONJ
use NOUN
of ADP
personal ADJ
protection NOUN
measures NOUN
( PUNCT
i.e. X
, PUNCT
using VERB
bednets NOUN
and CCONJ
insect ADJ
repellents NOUN
, PUNCT
having VERB
window NOUN
and CCONJ
door NOUN
screens NOUN
, PUNCT
and CCONJ
wearing VERB
long ADJ
sleeves NOUN
and CCONJ
pants NOUN
in ADP
the DET
evening NOUN
) PUNCT
. PUNCT
Of ADP
the DET
157 NUM
persons NOUN
eligible ADJ
for ADP
the DET
survey NOUN
, PUNCT
128 NUM
( PUNCT
82 NUM
% NOUN
) PUNCT
responded VERB
. PUNCT
      SPACE
Risk PROPN
for ADP
malaria PROPN
was AUX
not PART
associated VERB
with ADP
sex NOUN
or CCONJ
location NOUN
of ADP
residence NOUN
in ADP
Kampala PROPN
. PUNCT
Although SCONJ
the DET
risk NOUN
for ADP
malaria PROPN
was AUX
higher ADJ
among ADP
children NOUN
aged VERB
less ADV
than SCONJ
or CCONJ
equal ADJ
to ADP
15 NUM
years NOUN
( PUNCT
6/32 NUM
19 NUM
% NOUN
) PUNCT
than SCONJ
among ADP
persons NOUN
greater ADJ
than SCONJ
15 NUM
years NOUN
( PUNCT
11/94 NUM
12 NUM
% NOUN
) PUNCT
, PUNCT
this DET
difference NOUN
was AUX
not PART
significant ADJ
( PUNCT
relative ADJ
risk NOUN
RR=1.6 NUM
; PUNCT
95 NUM
% NOUN
confidence NOUN
interval NOUN
CI=0.6 PROPN
- SYM
4.0 NUM
) PUNCT
. PUNCT
Eighty NUM
- PUNCT
two NUM
percent NOUN
of ADP
the DET
cases NOUN
occurred VERB
among ADP
persons NOUN
who PRON
had AUX
been AUX
living VERB
in ADP
Kampala PROPN
for ADP
1 NUM
- SYM
5 NUM
years NOUN
, PUNCT
compared VERB
with ADP
those DET
living VERB
there ADV
less ADJ
than SCONJ
1 NUM
year NOUN
. PUNCT
Travel VERB
outside ADP
of ADP
the DET
Kampala PROPN
area NOUN
to ADP
more ADJ
rural ADJ
settings NOUN
was AUX
not PART
associated VERB
with ADP
increased VERB
risk NOUN
for ADP
malaria PROPN
. PUNCT
      SPACE
Four PROPN
malaria NOUN
chemoprophylaxis NOUN
regimens NOUN
were AUX
used VERB
by ADP
persons NOUN
who PRON
participated VERB
in ADP
the DET
survey NOUN
: PUNCT
mefloquine PROPN
, PUNCT
chloroquine NOUN
and CCONJ
proguanil PROPN
, PUNCT
chloroquine NOUN
alone ADV
, PUNCT
and CCONJ
proguanil VERB
alone ADV
. PUNCT
In ADP
addition NOUN
, PUNCT
23 NUM
( PUNCT
18 NUM
% NOUN
) PUNCT
persons NOUN
who PRON
responded VERB
were AUX
not PART
using VERB
any DET
malaria NOUN
chemoprophylaxis NOUN
. PUNCT
The DET
risk NOUN
for ADP
malaria PROPN
was AUX
significantly ADV
lower ADJ
among ADP
persons NOUN
using VERB
either CCONJ
mefloquine NOUN
or CCONJ
chloroquine NOUN
and CCONJ
proguanil NOUN
( PUNCT
8/88 NUM
9 NUM
% NOUN
) PUNCT
than SCONJ
among ADP
persons NOUN
using VERB
the DET
other ADJ
regimens NOUN
or CCONJ
no DET
prophylaxis PROPN
( PUNCT
9/37 NUM
24 NUM
% NOUN
) PUNCT
( PUNCT
RR=0.4 PROPN
; PUNCT
95 NUM
% NOUN
CI=0.2 NUM
- SYM
0.9 NUM
) PUNCT
. PUNCT
Twelve NUM
persons NOUN
not PART
using VERB
prophylaxis PROPN
reported VERB
side NOUN
effects NOUN
or CCONJ
fear NOUN
of ADP
possible ADJ
side NOUN
effects NOUN
as SCONJ
a DET
reason NOUN
. PUNCT
      SPACE
The DET
risk NOUN
for ADP
malaria PROPN
was AUX
lower ADJ
among ADP
persons NOUN
who PRON
reported VERB
using VERB
bednets NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
5Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993all NUM
or CCONJ
most ADJ
of ADP
the DET
time NOUN
( PUNCT
2/27 NUM
7 NUM
% NOUN
) PUNCT
than SCONJ
among ADP
persons NOUN
who PRON
sometimes ADV
or CCONJ
rarely ADV
used VERB
bednets NOUN
( PUNCT
15/99 NUM
15 NUM
% NOUN
) PUNCT
( PUNCT
RR=0.5 PROPN
; PUNCT
95 NUM
% NOUN
CI=0.1 PROPN
- SYM
2.0 NUM
) PUNCT
. PUNCT
The DET
risk NOUN
for ADP
malaria PROPN
was AUX
also ADV
lower ADJ
among ADP
persons NOUN
who PRON
consistently ADV
used VERB
insect ADJ
repellent NOUN
in ADP
the DET
evening NOUN
( PUNCT
0/16 NUM
) PUNCT
, PUNCT
compared VERB
with ADP
those DET
who PRON
rarely ADV
used VERB
repellent NOUN
( PUNCT
17/110 NUM
15 NUM
% NOUN
) PUNCT
( PUNCT
RR=0 NOUN
; PUNCT
upper ADJ
95 NUM
% NOUN
confidence NOUN
limit=1.2 NOUN
) PUNCT
. PUNCT
Risk NOUN
for ADP
malaria NOUN
was AUX
not PART
associated VERB
with ADP
failure NOUN
to PART
have AUX
window NOUN
or CCONJ
door NOUN
screens NOUN
or CCONJ
wear VERB
long ADJ
sleeves NOUN
or CCONJ
pants NOUN
in ADP
the DET
evening NOUN
. PUNCT
      SPACE
As SCONJ
a DET
result NOUN
of ADP
this DET
investigation NOUN
, PUNCT
EHU PROPN
staff NOUN
reviewed VERB
with ADP
all DET
personnel NOUN
the DET
need NOUN
to PART
use VERB
and CCONJ
comply VERB
with ADP
the DET
recommended VERB
malaria PROPN
chemoprophylaxis PROPN
regimens VERB
. PUNCT
EHU PROPN
staff NOUN
also ADV
emphasized VERB
the DET
need NOUN
to PART
use VERB
personal ADJ
protection NOUN
measures NOUN
and CCONJ
made VERB
plans NOUN
to PART
obtain VERB
insecticide NOUN
- PUNCT
impregnated VERB
bednets NOUN
and CCONJ
to PART
provide VERB
window NOUN
and CCONJ
door NOUN
screens NOUN
for ADP
all DET
personnel NOUN
. PUNCT
Reported VERB
by ADP
: PUNCT
U.S. PROPN
Embassy PROPN
Health PROPN
Unit PROPN
, PUNCT
Kampala PROPN
, PUNCT
Uganda PROPN
; PUNCT
Office PROPN
of ADP
Medical PROPN
Svcs PROPN
, PUNCT
Dept PROPN
of ADP
State PROPN
, PUNCT
Washington PROPN
, PUNCT
D.C. PROPN
Malaria PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Parasitic PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
In ADP
Uganda PROPN
, PUNCT
the DET
increase NOUN
in ADP
malaria NOUN
among ADP
U.S. PROPN
personnel NOUN
was AUX
attributed VERB
to ADP
poor ADJ
adherence NOUN
to ADP
both DET
recommended VERB
malaria PROPN
chemoprophylaxis PROPN
regimens NOUN
and CCONJ
use NOUN
of ADP
personal ADJ
protection NOUN
measures NOUN
during ADP
a DET
period NOUN
of ADP
increased VERB
malaria NOUN
transmission NOUN
and CCONJ
intensified VERB
chloroquine NOUN
resistance NOUN
in ADP
sub ADJ
- ADJ
Saharan PROPN
Africa PROPN
. PUNCT
The DET
findings NOUN
in ADP
this DET
report NOUN
underscore VERB
the DET
need NOUN
to PART
provide VERB
initial ADJ
and CCONJ
continued ADJ
counseling NOUN
regarding VERB
malaria PROPN
prevention NOUN
for ADP
persons NOUN
living VERB
abroad ADV
in ADP
malaria NOUN
- PUNCT
endemic ADJ
areas NOUN
-- PUNCT
preventive ADJ
measures NOUN
that PRON
are AUX
also ADV
important ADJ
for ADP
short ADJ
- PUNCT
term NOUN
travelers NOUN
to ADP
such ADJ
areas NOUN
. PUNCT
      SPACE
Mefloquine PROPN
is AUX
an DET
effective ADJ
prophylaxis PROPN
regimen NOUN
in ADP
Africa PROPN
and CCONJ
in ADP
most ADJ
other ADJ
areas NOUN
with ADP
chloroquine NOUN
- PUNCT
resistant ADJ
P. PROPN
falciparum NOUN
; PUNCT
however ADV
, PUNCT
in ADP
some DET
areas NOUN
( PUNCT
e.g. ADV
, PUNCT
Thailand PROPN
) PUNCT
, PUNCT
resistance NOUN
to ADP
mefloquine PROPN
may AUX
limit VERB
its PRON
effectiveness NOUN
. PUNCT
In ADP
Africa PROPN
, PUNCT
the DET
efficacy NOUN
of ADP
mefloquine NOUN
, PUNCT
compared VERB
with ADP
chloroquine NOUN
alone ADV
, PUNCT
in ADP
preventing VERB
infection NOUN
with ADP
P. PROPN
falciparum NOUN
is AUX
92 NUM
% NOUN
( PUNCT
1 NUM
) PUNCT
. PUNCT
Mefloquine PROPN
is AUX
safe ADJ
and CCONJ
well ADV
tolerated VERB
when ADV
given VERB
at ADP
250 NUM
mg NOUN
per ADP
week NOUN
over ADP
a DET
2-year NUM
period NOUN
. PUNCT
The DET
risk NOUN
for ADP
serious ADJ
adverse ADJ
reactions NOUN
possibly ADV
associated VERB
with ADP
mefloquine PROPN
prophylaxis PROPN
( PUNCT
e.g. ADV
, PUNCT
psychosis NOUN
and CCONJ
convulsions NOUN
) PUNCT
is AUX
low ADJ
( PUNCT
i.e. X
, PUNCT
1.3 NUM
- SYM
1.9 NUM
episodes NOUN
per ADP
100,000 NUM
users NOUN
2 NUM
) PUNCT
, PUNCT
while SCONJ
the DET
risk NOUN
for ADP
less ADV
severe ADJ
adverse ADJ
reactions NOUN
( PUNCT
e.g. ADV
, PUNCT
dizziness NOUN
, PUNCT
gastrointestinal ADJ
complaints NOUN
, PUNCT
and CCONJ
sleep NOUN
disturbances NOUN
) PUNCT
is AUX
similar ADJ
to ADP
that DET
for ADP
other ADJ
antimalarial ADJ
chemoprophylactics NOUN
( PUNCT
1 NUM
) PUNCT
. PUNCT
      SPACE
Doxycycline PROPN
has AUX
similar ADJ
prophylactic ADJ
efficacy NOUN
to ADP
mefloquine VERB
, PUNCT
but CCONJ
the DET
need NOUN
for ADP
daily ADJ
dosing NOUN
may AUX
reduce VERB
compliance NOUN
with ADP
and CCONJ
effectiveness NOUN
of ADP
this DET
regimen NOUN
( PUNCT
3,4 NUM
) PUNCT
. PUNCT
Chloroquine PROPN
alone ADV
is AUX
not PART
effective ADJ
as SCONJ
prophylaxis PROPN
in ADP
areas NOUN
of ADP
intense ADJ
chloroquine NOUN
resistance NOUN
( PUNCT
e.g. ADV
, PUNCT
Southeast PROPN
Asia PROPN
and CCONJ
Africa PROPN
) PUNCT
. PUNCT
In ADP
Africa PROPN
, PUNCT
for ADP
persons NOUN
who PRON
can AUX
not PART
take VERB
mefloquine NOUN
or CCONJ
doxycycline NOUN
, PUNCT
chloroquine NOUN
and CCONJ
proguanil NOUN
is AUX
an DET
alternative NOUN
, PUNCT
although SCONJ
less ADV
effective ADJ
, PUNCT
regimen PROPN
. PUNCT
Chloroquine PROPN
should AUX
be AUX
used VERB
for ADP
malaria PROPN
prevention NOUN
in ADP
areas NOUN
only ADV
where ADV
chloroquine NOUN
- PUNCT
resistant ADJ
P. PROPN
falciparum NOUN
has AUX
not PART
been AUX
reported VERB
. PUNCT
      SPACE
Country NOUN
- PUNCT
specific ADJ
recommendations NOUN
for ADP
preventing VERB
malaria NOUN
and CCONJ
information NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
6Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993on NUM
the DET
dosage NOUN
and CCONJ
precautions NOUN
for ADP
malaria PROPN
chemoprophylaxis PROPN
regimens NOUN
are AUX
available ADJ
from ADP
Health PROPN
Information PROPN
for ADP
International PROPN
Travel PROPN
, PUNCT
1992 NUM
( PUNCT
i.e. X
, PUNCT
" PUNCT
yellow ADJ
book NOUN
" PUNCT
) PUNCT
( PUNCT
5 NUM
) PUNCT
or CCONJ
24 NUM
hours NOUN
a DET
day NOUN
by ADP
telephone NOUN
or CCONJ
fax NOUN
, PUNCT
( PUNCT
404 NUM
) PUNCT
332 NUM
- SYM
4555 NUM
. PUNCT
References1 ADJ
. PUNCT
Lobel PROPN
HO PROPN
, PUNCT
Miani PROPN
M PROPN
, PUNCT
Eng PROPN
T PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Long ADJ
- PUNCT
term NOUN
malaria NOUN
prophylaxis PROPN
with ADP
weekly ADJ
mefloquine NOUN
in ADP
Peace PROPN
Corps PROPN
volunteers NOUN
: PUNCT
an DET
effective ADJ
and CCONJ
well ADV
tolerated VERB
regimen NOUN
. PUNCT
Lancet PROPN
1993;341:848 NUM
- SYM
51 NUM
. PUNCT
2 NUM
. PUNCT
World PROPN
Health PROPN
Organization PROPN
. PUNCT
Review NOUN
of ADP
central ADJ
nervous ADJ
system NOUN
adverse ADJ
events NOUN
related VERB
to ADP
the DET
antimalarial ADJ
drug NOUN
, PUNCT
mefloquine NOUN
( PUNCT
1985 NUM
- SYM
1990 NUM
) PUNCT
. PUNCT
Geneva PROPN
: PUNCT
World PROPN
Health PROPN
Organization PROPN
, PUNCT
1991 NUM
; PUNCT
publication NOUN
no INTJ
. PUNCT
WHO PROPN
/ SYM
MAL/91.1063 PROPN
. PUNCT
3 X
. PUNCT
Pang PROPN
L PROPN
, PUNCT
Limsomwong PROPN
N PROPN
, PUNCT
Singharaj PROPN
P. PROPN
Prophylactic ADJ
treatment NOUN
of ADP
vivax PROPN
and CCONJ
falciparum PROPN
malaria PROPN
with ADP
low ADJ
- PUNCT
dose NOUN
doxycycline NOUN
. PUNCT
J PROPN
Infect PROPN
Dis PROPN
1988;158:1124 NUM
- SYM
7 NUM
. PUNCT
4 NUM
. PUNCT
Pang PROPN
L PROPN
, PUNCT
Limsomwong PROPN
N PROPN
, PUNCT
Boudreau PROPN
EF PROPN
, PUNCT
Singharaj PROPN
P. PROPN
Doxycycline PROPN
prophylaxis PROPN
for ADP
falciparum PROPN
malaria PROPN
. PUNCT
Lancet PROPN
1987;1:1161 NUM
- SYM
4 NUM
. PUNCT
5 NUM
. PUNCT
CDC PROPN
. PUNCT
Health NOUN
information NOUN
for ADP
international ADJ
travel NOUN
, PUNCT
1992 NUM
. PUNCT
Atlanta PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1992:98 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
CDC)92 PROPN
- PUNCT
8280.HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
7Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
FDA PROPN
Approval PROPN
of ADP
Use PROPN
of ADP
a DET
New PROPN
Haemophilus PROPN
b NOUN
Conjugate PROPN
Vaccine PROPN
and CCONJ
a DET
       SPACE
Combined PROPN
Diphtheria PROPN
- PUNCT
Tetanus PROPN
- PUNCT
Pertussis PROPN
and CCONJ
Haemophilus PROPN
b NOUN
Conjugate PROPN
                       SPACE
Vaccine NOUN
for ADP
Infants PROPN
and CCONJ
Children PROPN
      SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(15 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
23 NUM
, PUNCT
1993 NUM
     SPACE
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
( PUNCT
Hib PROPN
) PUNCT
conjugate VERB
vaccines NOUN
have AUX
been AUX
recommended VERB
for ADP
use NOUN
in ADP
infants NOUN
since SCONJ
1990 NUM
, PUNCT
and CCONJ
their PRON
routine ADJ
use NOUN
in ADP
infant NOUN
vaccination NOUN
has AUX
contributed VERB
to ADP
the DET
substantial ADJ
decline NOUN
in ADP
the DET
incidence NOUN
of ADP
Hib PROPN
disease NOUN
in ADP
the DET
United PROPN
States PROPN
( PUNCT
1 NUM
- SYM
3 NUM
) PUNCT
. PUNCT
Vaccines NOUN
against ADP
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
and CCONJ
pertussis NOUN
during ADP
infancy NOUN
and CCONJ
childhood NOUN
have AUX
been AUX
administered VERB
routinely ADV
in ADP
the DET
United PROPN
States PROPN
since SCONJ
the DET
late ADJ
1940s NOUN
and CCONJ
has AUX
been AUX
associated VERB
with ADP
a DET
greater ADJ
than SCONJ
90 NUM
% NOUN
reduction NOUN
in ADP
morbidity NOUN
and CCONJ
mortality NOUN
associated VERB
with ADP
infection NOUN
by ADP
these DET
organisms NOUN
. PUNCT
Because SCONJ
of ADP
the DET
increasing VERB
number NOUN
of ADP
vaccines NOUN
now ADV
routinely ADV
recommended VERB
for ADP
infants NOUN
, PUNCT
a DET
high ADJ
priority NOUN
is AUX
the DET
development NOUN
of ADP
combined VERB
vaccines NOUN
that PRON
allow VERB
simultaneous ADJ
administration NOUN
with ADP
fewer ADJ
separate ADJ
injections NOUN
. PUNCT
      SPACE
The DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
( PUNCT
FDA PROPN
) PUNCT
recently ADV
licensed VERB
two NUM
new ADJ
products NOUN
for ADP
vaccinating VERB
children NOUN
against ADP
these DET
diseases NOUN
: PUNCT
1 X
) PUNCT
the DET
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
( PUNCT
tetanus NOUN
toxoid NOUN
conjugate VERB
, PUNCT
ActHIB PROPN
Trademark PROPN
) PUNCT
, PUNCT
* PUNCT
for ADP
vaccination NOUN
against ADP
Hib PROPN
disease NOUN
only ADV
and CCONJ
2 X
) PUNCT
a DET
combined VERB
diphtheria NOUN
and CCONJ
tetanus NOUN
toxoids NOUN
and CCONJ
whole ADJ
- PUNCT
cell NOUN
pertussis NOUN
vaccine NOUN
( PUNCT
DTP PROPN
) PUNCT
and CCONJ
Hib PROPN
conjugate VERB
vaccine NOUN
( PUNCT
TETRAMUNE PROPN
Trademark PROPN
) PUNCT
, PUNCT
a DET
combination NOUN
of ADP
vaccines NOUN
formulated VERB
for ADP
use NOUN
in ADP
vaccinating VERB
children NOUN
against ADP
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
pertussis NOUN
, PUNCT
and CCONJ
Hib PROPN
disease NOUN
. PUNCT
                                SPACE
ActHIB PROPN
Trademark PROPN
      SPACE
On ADP
March PROPN
30 NUM
, PUNCT
1993 NUM
, PUNCT
the DET
FDA PROPN
approved VERB
a DET
new ADJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
, PUNCT
polyribosylribitol PROPN
phosphate NOUN
- PUNCT
tetanus NOUN
toxoid NOUN
conjugate NOUN
( PUNCT
PRP PROPN
- PUNCT
T PROPN
) PUNCT
, PUNCT
manufactured VERB
by ADP
Pasteur PROPN
Merieux PROPN
Serum PROPN
et X
Vaccins PROPN
and CCONJ
distributed VERB
as SCONJ
ActHIB PROPN
Trademark PROPN
by ADP
Connaught PROPN
Laboratories PROPN
, PUNCT
Inc. PROPN
( PUNCT
Swiftwater PROPN
, PUNCT
Pennsylvania PROPN
) PUNCT
. PUNCT
This DET
vaccine NOUN
has AUX
been AUX
licensed VERB
for ADP
use NOUN
in ADP
infants NOUN
in ADP
a DET
three NUM
- PUNCT
dose NOUN
primary ADJ
vaccination NOUN
series NOUN
administered VERB
at ADP
ages NOUN
2 NUM
, PUNCT
4 NUM
, PUNCT
and CCONJ
6 NUM
months NOUN
. PUNCT
Previously ADV
unvaccinated ADJ
infants NOUN
7 NUM
- SYM
11 NUM
months NOUN
of ADP
age NOUN
should AUX
receive VERB
two NUM
doses NOUN
2 NUM
months NOUN
apart ADV
. PUNCT
Previously ADV
unvaccinated ADJ
children NOUN
12 NUM
- PUNCT
14 NUM
months NOUN
of ADP
age NOUN
should AUX
receive VERB
one NUM
dose NOUN
. PUNCT
A DET
booster NOUN
dose NOUN
administered VERB
at ADP
15 NUM
months NOUN
of ADP
age NOUN
is AUX
recommended VERB
for ADP
all DET
children NOUN
. PUNCT
Previously ADV
unvaccinated ADJ
children NOUN
15 NUM
- SYM
59 NUM
months NOUN
of ADP
age NOUN
should AUX
receive VERB
a DET
single ADJ
dose NOUN
and CCONJ
do AUX
not PART
require VERB
a DET
booster NOUN
. PUNCT
More ADJ
than SCONJ
90 NUM
% NOUN
of ADP
infants NOUN
receiving VERB
a DET
primary ADJ
vaccination NOUN
series NOUN
of ADP
ActHIB PROPN
Trademark PROPN
( PUNCT
consecutive ADJ
doses NOUN
at ADP
2 NUM
, PUNCT
4 NUM
, PUNCT
and CCONJ
6 NUM
months NOUN
of ADP
age NOUN
) PUNCT
develop VERB
a DET
geometric ADJ
mean ADJ
titer NOUN
of ADP
anti ADJ
- ADJ
Haemophilus ADJ
b NOUN
polysaccharide NOUN
antibody NOUN
greater ADJ
than SCONJ
1 NUM
ug NOUN
/ SYM
mL X
( PUNCT
4 NUM
) PUNCT
. PUNCT
This DET
response NOUN
is AUX
similar ADJ
to ADP
that DET
of ADP
infants NOUN
who PRON
receive VERB
recommended VERB
series NOUN
of ADP
previously ADV
licensed VERB
Haemophilus PROPN
b NOUN
conjugate VERB
vaccines NOUN
for ADP
which PRON
efficacy NOUN
has AUX
been AUX
demonstrated VERB
in ADP
prospective ADJ
trials NOUN
. PUNCT
Two NUM
U.S. PROPN
efficacy NOUN
trials NOUN
of ADP
PRP PROPN
- PUNCT
T PROPN
were AUX
terminated VERB
early ADV
because SCONJ
of ADP
the DET
concomitant ADJ
licensure NOUN
of ADP
other ADJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccines NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
8Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993for NUM
use NOUN
in ADP
infants NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
In ADP
these DET
studies NOUN
, PUNCT
no DET
cases NOUN
of ADP
invasive ADJ
Hib PROPN
disease NOUN
were AUX
detected VERB
in ADP
approximately ADV
6000 NUM
infants NOUN
vaccinated VERB
with ADP
PRP PROPN
- PUNCT
T. PROPN
These DET
and CCONJ
other ADJ
studies NOUN
suggest VERB
that SCONJ
the DET
efficacy NOUN
of ADP
PRP PROPN
- PUNCT
T PROPN
vaccine NOUN
will AUX
be AUX
similar ADJ
to ADP
that DET
of ADP
the DET
other ADJ
licensed VERB
Hib PROPN
vaccines NOUN
. PUNCT
TETRAMUNE PROPN
Trademark PROPN
      SPACE
On ADP
March PROPN
30 NUM
, PUNCT
1993 NUM
, PUNCT
the DET
FDA PROPN
approved VERB
a DET
combined VERB
diphtheria NOUN
and CCONJ
tetanus NOUN
toxoids NOUN
and CCONJ
whole ADJ
- PUNCT
cell NOUN
pertussis NOUN
vaccine NOUN
( PUNCT
DTP PROPN
) PUNCT
and CCONJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
. PUNCT
TETRAMUNE PROPN
Trademark PROPN
, PUNCT
available ADJ
from ADP
Lederle PROPN
- PUNCT
Praxis PROPN
Biologicals PROPN
( PUNCT
Pearl PROPN
River PROPN
, PUNCT
New PROPN
York PROPN
) PUNCT
, PUNCT
combines VERB
two NUM
previously ADV
licensed VERB
products NOUN
, PUNCT
DTP PROPN
( PUNCT
TRIIMMUNOL PROPN
Registered PROPN
, PUNCT
manufactured VERB
by ADP
Lederle PROPN
Laboratories PROPN
Pearl PROPN
River PROPN
, PUNCT
New PROPN
York PROPN
) PUNCT
and CCONJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
( PUNCT
HibTITER PROPN
Registered PROPN
, PUNCT
manufactured VERB
by ADP
Praxis PROPN
Biologics PROPN
, PUNCT
Inc. PROPN
Rochester PROPN
, PUNCT
New PROPN
York PROPN
) PUNCT
. PUNCT
      SPACE
This DET
vaccine NOUN
has AUX
been AUX
licensed VERB
for ADP
use NOUN
in ADP
children NOUN
aged VERB
2 NUM
months-5 PROPN
years NOUN
for ADP
protection NOUN
against ADP
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
pertussis NOUN
, PUNCT
and CCONJ
Hib PROPN
disease NOUN
when ADV
indications NOUN
for ADP
vaccination NOUN
with ADP
DTP PROPN
vaccine NOUN
and CCONJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
coincide NOUN
. PUNCT
Based VERB
on ADP
demonstration NOUN
of ADP
co NOUN
mparable ADJ
or CCONJ
higher ADJ
antibody NOUN
responses VERB
to ADP
each DET
of ADP
the DET
components NOUN
of ADP
the DET
two NUM
vaccines NOUN
, PUNCT
TETRAMUNE PROPN
Trademark PROPN
is AUX
expected VERB
to PART
provide VERB
protection NOUN
against ADP
Hib PROPN
, PUNCT
as ADV
well ADV
as SCONJ
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
and CCONJ
pertussis NOUN
, PUNCT
equivalent ADJ
to ADP
that DET
of ADP
already ADV
licensed VERB
formulations NOUN
of ADP
other ADJ
DTP PROPN
and CCONJ
Haemophilus PROPN
b NOUN
vaccines NOUN
. PUNCT
      SPACE
The DET
Advisory PROPN
Committee PROPN
for ADP
Immunization PROPN
Practices PROPN
( PUNCT
ACIP PROPN
) PUNCT
recommends VERB
that SCONJ
all DET
infants NOUN
receive VERB
a DET
primary ADJ
series NOUN
of ADP
one NUM
of ADP
the DET
licensed ADJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccines NOUN
beginning VERB
at ADP
2 NUM
months NOUN
of ADP
age NOUN
and CCONJ
a DET
booster NOUN
dose NOUN
at ADP
age NOUN
12 NUM
- SYM
15 NUM
months NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
The DET
ACIP PROPN
also ADV
recommends VERB
that SCONJ
all DET
infants NOUN
receive VERB
a DET
four NUM
- PUNCT
dose NOUN
primary ADJ
series NOUN
of ADP
diphtheria PROPN
and CCONJ
tetanus NOUN
toxoids NOUN
and CCONJ
pertussis NOUN
vaccine NOUN
at ADP
2 NUM
, PUNCT
4 NUM
, PUNCT
6 NUM
, PUNCT
and CCONJ
15 NUM
- SYM
18 NUM
months NOUN
of ADP
age NOUN
, PUNCT
and CCONJ
a DET
booster NOUN
dose NOUN
at ADP
4 NUM
- SYM
6 NUM
years NOUN
( PUNCT
6 NUM
- SYM
8 NUM
) PUNCT
. PUNCT
A DET
complete ADJ
statement NOUN
regarding VERB
recommendations NOUN
for ADP
use NOUN
of ADP
ActHIB NUM
Trademark PROPN
and CCONJ
TETRAMUNE PROPN
Trademark PROPN
is AUX
being AUX
developed VERB
. PUNCT
Reported VERB
by ADP
: PUNCT
Office PROPN
of ADP
Vaccines PROPN
Research PROPN
and CCONJ
Review PROPN
, PUNCT
Center PROPN
for ADP
Biologics PROPN
Evaluation PROPN
and CCONJ
Research PROPN
, PUNCT
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
. PUNCT
Div PROPN
of ADP
Immunization PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Prevention PROPN
Svcs PROPN
; PUNCT
Meningitis PROPN
and CCONJ
Special PROPN
Pathogens PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Bacterial PROPN
and CCONJ
Mycotic PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
References1 PROPN
. PUNCT
Adams PROPN
WG PROPN
, PUNCT
Deaver PROPN
KA PROPN
, PUNCT
Cochi PROPN
SL PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Decline NOUN
of ADP
childhood NOUN
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
( PUNCT
Hib PROPN
) PUNCT
disease NOUN
in ADP
the DET
Hib PROPN
vaccine NOUN
era NOUN
. PUNCT
JAMA PROPN
1993;269:221 NUM
- SYM
6 NUM
. PUNCT
2 NUM
. PUNCT
Broadhurst PROPN
LE PROPN
, PUNCT
Erickson PROPN
RL PROPN
, PUNCT
Kelley PROPN
PW PROPN
. PUNCT
Decrease VERB
in ADP
invasive ADJ
Haemophilus PROPN
influenzae NOUN
disease NOUN
in ADP
U.S. PROPN
Army PROPN
children NOUN
, PUNCT
1984 NUM
through ADP
1991 NUM
. PUNCT
JAMA PROPN
1993;269:227 PROPN
- SYM
31 NUM
. PUNCT
3 NUM
. PUNCT
Murphy PROPN
TV PROPN
, PUNCT
White PROPN
KE PROPN
, PUNCT
Pastor PROPN
P PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Declining VERB
incidence NOUN
of ADP
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
disease NOUN
since SCONJ
introduction NOUN
of ADP
vaccination NOUN
. PUNCT
JAMA PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
9Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
19931993;269:246 NUM
- SYM
8 NUM
. PUNCT
4 NUM
. PUNCT
Fritzell PROPN
B PROPN
, PUNCT
Plotkin PROPN
S. PROPN
Efficacy PROPN
and CCONJ
safety NOUN
of ADP
a DET
Haemophilus PROPN
influenzae NOUN
type NOUN
b NOUN
capsular ADJ
polysaccharide NOUN
- PUNCT
tetanus NOUN
protein NOUN
conjugate VERB
vaccine NOUN
. PUNCT
J PROPN
Pediatr PROPN
1992;121:355 NUM
- PUNCT
62 NUM
. PUNCT
5 NUM
. PUNCT
ACIP PROPN
. PUNCT
Haemophilus PROPN
b AUX
conjugate VERB
vaccines NOUN
for ADP
prevention NOUN
of ADP
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
disease NOUN
among ADP
infants NOUN
and CCONJ
children NOUN
two NUM
months NOUN
of ADP
age NOUN
and CCONJ
older ADJ
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1991;40(no NUM
. PUNCT
RR-1 PROPN
) PUNCT
. PUNCT
6 NUM
. PUNCT
ACIP PROPN
. PUNCT
Diphtheria PROPN
, PUNCT
tetanus NOUN
, PUNCT
and CCONJ
pertussis NOUN
-- PUNCT
recommendations NOUN
for ADP
vaccine NOUN
use NOUN
and CCONJ
other ADJ
preventive ADJ
measures NOUN
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1991;40(no NUM
. PUNCT
RR-10 PROPN
) PUNCT
. PUNCT
7 NUM
. PUNCT
ACIP PROPN
. PUNCT
Pertussis NOUN
vaccination NOUN
: PUNCT
acellular ADJ
pertussis NOUN
vaccine NOUN
for ADP
reinforcing VERB
and CCONJ
booster NOUN
use NOUN
-- PUNCT
supplementary ADJ
ACIP ADJ
statement NOUN
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1992;41(no NUM
. PUNCT
RR-1 PROPN
) PUNCT
. PUNCT
8 NUM
. PUNCT
ACIP PROPN
. PUNCT
Pertussis NOUN
vaccination NOUN
: PUNCT
acellular ADJ
pertussis NOUN
vaccine NOUN
for ADP
the DET
fourth ADJ
and CCONJ
fifth ADJ
doses NOUN
of ADP
the DET
DTP PROPN
series NOUN
-- PUNCT
update VERB
to ADP
supplementary ADJ
ACIP ADJ
statement NOUN
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1992;41(no NUM
. PUNCT
RR-15 PROPN
) PUNCT
. PUNCT
* PUNCT
Use NOUN
of ADP
trade NOUN
names NOUN
and CCONJ
commercial ADJ
sources NOUN
is AUX
for ADP
identification NOUN
only ADV
and CCONJ
does AUX
not PART
imply VERB
endorsement NOUN
by ADP
the DET
Public PROPN
Health PROPN
Service PROPN
or CCONJ
the DET
U.S. PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
10Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                  SPACE
Dental PROPN
News PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
            SPACE
International PROPN
Workshop PROPN
Explores PROPN
Oral PROPN
Manifestations PROPN
of ADP
                                 SPACE
HIV PROPN
Infection PROPN
                             SPACE
NIDR PROPN
Research PROPN
Digest PROPN
                             SPACE
written VERB
by ADP
Jody PROPN
Dove PROPN
                                  SPACE
March PROPN
1993 NUM
                     SPACE
National PROPN
Institute PROPN
of ADP
Dental PROPN
Research PROPN
     SPACE
At ADP
the DET
Second PROPN
International PROPN
Workshop PROPN
on ADP
the DET
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
, PUNCT
held VERB
January PROPN
31-February PROPN
3 NUM
in ADP
San PROPN
Francisco PROPN
, PUNCT
participants NOUN
explored VERB
issues NOUN
related VERB
to ADP
the DET
epidemiology NOUN
, PUNCT
basic ADJ
molecular ADJ
virology NOUN
, PUNCT
mucosal ADJ
immunology NOUN
, PUNCT
and CCONJ
oral ADJ
clinical ADJ
presentations NOUN
of ADP
HIV PROPN
infection NOUN
. PUNCT
      SPACE
The DET
workshop NOUN
was AUX
organized VERB
by ADP
Dr. PROPN
John PROPN
Greenspan PROPN
and CCONJ
Dr. PROPN
Deborah PROPN
Greenspan PROPN
of ADP
the DET
Department PROPN
of ADP
Stomatology PROPN
, PUNCT
School PROPN
of ADP
Dentistry PROPN
, PUNCT
University PROPN
of ADP
California PROPN
, PUNCT
San PROPN
Francisco PROPN
. PUNCT
  SPACE
An DET
international ADJ
steering NOUN
committee NOUN
and CCONJ
scientific ADJ
program NOUN
committee NOUN
provided VERB
guidance NOUN
. PUNCT
      SPACE
The DET
conference NOUN
drew VERB
more ADJ
than SCONJ
260 NUM
scientists NOUN
from ADP
39 NUM
countries NOUN
, PUNCT
including VERB
Asia PROPN
, PUNCT
Africa PROPN
, PUNCT
Europe PROPN
, PUNCT
Central PROPN
America PROPN
, PUNCT
South PROPN
America PROPN
, PUNCT
as ADV
well ADV
as SCONJ
the DET
United PROPN
States PROPN
and CCONJ
Canada PROPN
. PUNCT
  SPACE
Support NOUN
tor NOUN
the DET
workshop NOUN
was AUX
provided VERB
by ADP
the DET
National PROPN
Institute PROPN
of ADP
Dental PROPN
Research PROPN
, PUNCT
the DET
National PROPN
Cancer PROPN
Institute PROPN
, PUNCT
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases PROPN
, PUNCT
the DET
NIH PROPN
Office PROPN
of ADP
AIDS PROPN
Research PROPN
, PUNCT
and CCONJ
the DET
Procter PROPN
and CCONJ
Gamble PROPN
Company PROPN
. PUNCT
      SPACE
Among ADP
the DET
topics NOUN
discussed VERB
were AUX
: PUNCT
the DET
epidemiology NOUN
of ADP
HIV PROPN
lesions NOUN
; PUNCT
ethics NOUN
, PUNCT
professional ADJ
responsibility NOUN
, PUNCT
and CCONJ
public ADJ
policy NOUN
; PUNCT
occupational ADJ
issues NOUN
; PUNCT
provision NOUN
of ADP
oral ADJ
care NOUN
to ADP
the DET
HIV PROPN
- PUNCT
positive ADJ
population NOUN
; PUNCT
salivary ADJ
HIV PROPN
transmission NOUN
and CCONJ
mucosal ADJ
immunity NOUN
; PUNCT
opportunistic ADJ
infections NOUN
; PUNCT
pediatric ADJ
HIV PROPN
infection NOUN
; PUNCT
and CCONJ
women NOUN
's PART
issues NOUN
. PUNCT
                                 SPACE
Recommendations PROPN
     SPACE
Recommendations PROPN
emerged VERB
from ADP
the DET
workshop NOUN
to PART
define VERB
the DET
association NOUN
between ADP
the DET
appearance NOUN
of ADP
oral ADJ
lesions NOUN
and CCONJ
rate NOUN
of ADP
progression NOUN
of ADP
HIV PROPN
, PUNCT
to PART
establish VERB
a DET
universal ADJ
terminology NOUN
for ADP
HIV PROPN
- PUNCT
associated VERB
oral ADJ
lesions NOUN
, PUNCT
to PART
look VERB
for ADP
more ADJ
effective ADJ
treatments NOUN
for ADP
oral ADJ
manifestations NOUN
, PUNCT
to PART
expand VERB
molecular ADJ
biology NOUN
studies NOUN
to PART
understand VERB
the DET
relationship NOUN
between ADP
HIV PROPN
infection NOUN
and CCONJ
common ADJ
oral ADJ
lesions NOUN
, PUNCT
and CCONJ
to PART
study VERB
the DET
effects NOUN
of ADP
HIV PROPN
therapy NOUN
on ADP
oral ADJ
lesions NOUN
. PUNCT
                                  SPACE
Epidemiology PROPN
     SPACE
Since SCONJ
the DET
First PROPN
International PROPN
Workshop PROPN
on ADP
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
was AUX
convened VERB
five NUM
years NOUN
ago ADV
, PUNCT
the DET
epidemiology NOUN
of ADP
HIV PROPN
infection NOUN
has AUX
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
11Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993radically NUM
changed VERB
. PUNCT
  SPACE
In ADP
1988 NUM
, PUNCT
HIV PROPN
infection NOUN
was AUX
detected VERB
and CCONJ
reported VERB
largely ADV
in ADP
homosexual ADJ
and CCONJ
bisexual ADJ
males NOUN
, PUNCT
intravenous ADJ
drug NOUN
users NOUN
, PUNCT
and CCONJ
hemophiliacs PROPN
. PUNCT
  SPACE
Today NOUN
, PUNCT
more ADJ
HIV PROPN
infection NOUN
is AUX
seen VERB
in ADP
heterosexual ADJ
males NOUN
and CCONJ
females NOUN
and CCONJ
in ADP
children NOUN
and CCONJ
adolescents NOUN
. PUNCT
      SPACE
While SCONJ
the DET
predominant ADJ
impact NOUN
of ADP
HIV PROPN
infection NOUN
has AUX
been AUX
felt VERB
in ADP
Africa PROPN
, PUNCT
a DET
major ADJ
increase NOUN
in ADP
infection NOUN
rate NOUN
is AUX
being AUX
seen VERB
in ADP
Southeast PROPN
Asia PROPN
as ADV
well ADV
. PUNCT
  SPACE
Five NUM
hundred NUM
thousand NUM
cases NOUN
have AUX
been AUX
reported VERB
to ADP
date NOUN
in ADP
this DET
region NOUN
and CCONJ
more ADJ
are AUX
appearing VERB
all DET
the DET
time NOUN
. PUNCT
      SPACE
Researchers PROPN
are AUX
continuing VERB
to PART
document VERB
the DET
epidemiology NOUN
of ADP
oral ADJ
lesions NOUN
such ADJ
as SCONJ
hairy ADJ
leukoplakia NOUN
and CCONJ
candidiasis NOUN
. PUNCT
  SPACE
They PRON
also ADV
are AUX
beginning VERB
to PART
explore VERB
the DET
relationships NOUN
between ADP
specific ADJ
oral ADJ
lesions NOUN
and CCONJ
HIV PROPN
disease NOUN
progression NOUN
and CCONJ
prognosis NOUN
. PUNCT
                             SPACE
Social PROPN
/ SYM
political ADJ
Issues PROPN
     SPACE
Discussion NOUN
on ADP
the DET
social ADJ
and CCONJ
political ADJ
implications NOUN
of ADP
HIV PROPN
infection NOUN
focused VERB
on ADP
changing VERB
the DET
public NOUN
's PART
attitude NOUN
that SCONJ
AIDS PROPN
is AUX
retribution NOUN
for ADP
indiscriminate ADJ
sexual ADJ
behavior NOUN
and CCONJ
drug NOUN
use NOUN
. PUNCT
  SPACE
Speakers NOUN
also ADV
addressed VERB
health NOUN
care NOUN
delivery NOUN
for ADP
HIV PROPN
- PUNCT
infected VERB
patients NOUN
, PUNCT
and CCONJ
the DET
need NOUN
to PART
educate VERB
the DET
public NOUN
about ADP
what PRON
AIDS PROPN
is AUX
, PUNCT
and CCONJ
how ADV
it PRON
is AUX
acquired VERB
. PUNCT
                           SPACE
Saliva PROPN
and CCONJ
Salivary PROPN
Glands PROPN
     SPACE
Conference PROPN
speakers NOUN
described VERB
transmission NOUN
issues NOUN
and CCONJ
the DET
HIV PROPN
- PUNCT
inhibitory NOUN
activity NOUN
of ADP
saliva NOUN
, PUNCT
the DET
strength NOUN
of ADP
which PRON
varies VERB
among ADP
the DET
different ADJ
salivary ADJ
secretions NOUN
. PUNCT
  SPACE
Whole ADJ
saliva NOUN
has AUX
a DET
greater ADJ
inhibitory ADJ
effect NOUN
than SCONJ
submandibular ADJ
secretions NOUN
, PUNCT
which PRON
in ADP
turn NOUN
have AUX
a DET
greater ADJ
inhibitory ADJ
effect NOUN
than SCONJ
parotid PROPN
secretions NOUN
. PUNCT
  SPACE
Research PROPN
has AUX
shown VERB
that SCONJ
at ADV
least ADV
two NUM
mechanisms NOUN
are AUX
responsible ADJ
for ADP
salivary ADJ
inhibitory ADJ
activity NOUN
. PUNCT
  SPACE
They PRON
attributed VERB
the DET
HIV PROPN
- PUNCT
inhibitory ADJ
effect NOUN
of ADP
saliva NOUN
to ADP
the DET
1 NUM
) PUNCT
aggregation NOUN
/ SYM
agglutination NOUN
of ADP
HIV PROPN
by ADP
saliva NOUN
, PUNCT
which PRON
may AUX
both DET
promote VERB
clearance NOUN
of ADP
virus NOUN
and CCONJ
prevent VERB
it PRON
reaching VERB
a DET
target NOUN
cell NOUN
, PUNCT
and CCONJ
2 X
) PUNCT
direct ADJ
effects NOUN
on ADP
the DET
virus NOUN
or CCONJ
target NOUN
cells NOUN
. PUNCT
      SPACE
Other ADJ
topics NOUN
discussed VERB
were AUX
the DET
manifestation NOUN
of ADP
salivary ADJ
gland PROPN
disease NOUN
in ADP
HIV PROPN
- PUNCT
infected VERB
persons NOUN
and CCONJ
current ADJ
research NOUN
on ADP
oral ADJ
mucosal ADJ
immunity NOUN
. PUNCT
                                SPACE
Pediatric PROPN
Issues PROPN
     SPACE
Pediatric PROPN
AIDS PROPN
recently ADV
has AUX
emerged VERB
as SCONJ
an DET
area NOUN
of ADP
intense ADJ
interest NOUN
. PUNCT
  SPACE
With ADP
early ADJ
and CCONJ
accurate ADJ
diagnosis NOUN
and CCONJ
proper ADJ
treatment NOUN
, PUNCT
the DET
life NOUN
expectancy NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
children NOUN
has AUX
tripled VERB
. PUNCT
  SPACE
The DET
prevention NOUN
of ADP
transmission NOUN
of ADP
HIV PROPN
from ADP
mother NOUN
to ADP
child NOUN
may AUX
be AUX
possible ADJ
in ADP
many ADJ
cases NOUN
, PUNCT
particularly ADV
if SCONJ
the DET
mother NOUN
's PART
sero NOUN
- PUNCT
status NOUN
is AUX
known VERB
prior ADV
to ADP
giving VERB
birth NOUN
. PUNCT
                     SPACE
Periodontal PROPN
and CCONJ
Gingival PROPN
Tissue PROPN
DiseaseHICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
12Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
Oral ADJ
health NOUN
researchers NOUN
continue VERB
to PART
explore VERB
periodontal ADJ
diseases NOUN
and CCONJ
gingivitis NOUN
found VERB
in ADP
individuals NOUN
with ADP
HIV PROPN
infection NOUN
. PUNCT
  SPACE
Recommendations NOUN
made VERB
at ADP
the DET
workshop NOUN
include VERB
the DET
standardization NOUN
of ADP
terminology NOUN
, PUNCT
refinement NOUN
of ADP
diagnostic ADJ
markers NOUN
, PUNCT
standardization NOUN
of ADP
study NOUN
design NOUN
, PUNCT
and CCONJ
proper ADJ
consideration NOUN
of ADP
confounding VERB
variables NOUN
resulting VERB
from ADP
periodontal ADJ
therapy NOUN
. PUNCT
                        SPACE
Occupational PROPN
and CCONJ
Treatment PROPN
Issues PROPN
     SPACE
Occupational ADJ
issues NOUN
surrounding VERB
the DET
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
individuals NOUN
and CCONJ
treatment NOUN
rendered VERB
by ADP
HIV PROPN
- PUNCT
infected VERB
health NOUN
care NOUN
professionals NOUN
still ADV
command VERB
considerable ADJ
attention NOUN
. PUNCT
  SPACE
Factors NOUN
under ADP
consideration NOUN
include VERB
the DET
cost NOUN
/ SYM
benefit NOUN
of ADP
HIV PROPN
testing NOUN
, PUNCT
patient NOUN
- PUNCT
to ADP
- PUNCT
health NOUN
care NOUN
provider NOUN
transmission NOUN
of ADP
HIV PROPN
infection NOUN
and CCONJ
the DET
reverse NOUN
, PUNCT
and CCONJ
the DET
use NOUN
of ADP
mainstream NOUN
versus ADP
dedicated ADJ
facilities NOUN
for ADP
the DET
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
patients NOUN
. PUNCT
      SPACE
Conference PROPN
participants NOUN
anticipate VERB
that SCONJ
a DET
third ADJ
International PROPN
Workshop PROPN
on ADP
the DET
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
will AUX
be AUX
held VERB
in ADP
five NUM
years NOUN
or CCONJ
less ADJ
. PUNCT
  SPACE
Proceedings NOUN
from ADP
the DET
second ADJ
workshop NOUN
will AUX
be AUX
published VERB
by ADP
the DET
Quintessence PROPN
Company PROPN
in ADP
late ADJ
1993.--------- NUM
end NOUN
of ADP
part NOUN
1 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59284From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
2/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
13Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                        SPACE
Food PROPN
& CCONJ
Drug PROPN
Administration PROPN
News PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
              SPACE
FDA PROPN
Approves PROPN
Depo PROPN
Provera PROPN
, PUNCT
injectable ADJ
contraceptive NOUN
                      SPACE
P92 PROPN
- PUNCT
31 NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
              SPACE
FOR ADP
IMMEDIATE PROPN
RELEASE PROPN
Susan PROPN
Cruzan PROPN
- PUNCT
( PUNCT
301 NUM
) PUNCT
443 NUM
- SYM
3285The NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
today NOUN
announced VERB
the DET
approval NOUN
of ADP
Depo PROPN
Provera PROPN
, PUNCT
an DET
injectable ADJ
contraceptive ADJ
drug NOUN
. PUNCT
The DET
drug NOUN
, PUNCT
which PRON
contains VERB
a DET
synthetic ADJ
hormone NOUN
similar ADJ
to ADP
the DET
natural ADJ
hormone NOUN
progesterone NOUN
, PUNCT
protects VERB
women NOUN
from ADP
pregnancy NOUN
for ADP
three NUM
months NOUN
per ADP
injection NOUN
. PUNCT
The DET
hormone NOUN
is AUX
injected VERB
into ADP
the DET
muscle NOUN
of ADP
the DET
arm NOUN
or CCONJ
buttock NOUN
where ADV
it PRON
is AUX
released VERB
into ADP
the DET
bloodstream NOUN
to PART
prevent VERB
pregnancy NOUN
. PUNCT
It PRON
is AUX
more ADJ
than SCONJ
99 NUM
percent NOUN
effective ADJ
. PUNCT
"This PUNCT
drug NOUN
presents VERB
another DET
long ADJ
- PUNCT
term NOUN
, PUNCT
effective ADJ
option NOUN
for ADP
women NOUN
to PART
prevent VERB
pregnancy NOUN
, PUNCT
" PUNCT
said VERB
FDA PROPN
Commissioner PROPN
David PROPN
A. PROPN
Kessler PROPN
, PUNCT
M.D. PROPN
" PUNCT
As SCONJ
an DET
injectable NOUN
, PUNCT
given VERB
once ADV
every DET
three NUM
months NOUN
, PUNCT
Depo PROPN
Provera PROPN
eliminates VERB
problems NOUN
related VERB
to ADP
missing VERB
a DET
daily ADJ
dose NOUN
. PUNCT
"Depo PUNCT
Provera PROPN
is AUX
available ADJ
in ADP
150 NUM
mg PROPN
. PROPN
single ADJ
dose NOUN
vials NOUN
from ADP
doctors NOUN
and CCONJ
clinics NOUN
and CCONJ
must AUX
be AUX
given VERB
on ADP
a DET
regular ADJ
basis NOUN
to PART
maintain VERB
contraceptive ADJ
protection NOUN
. PUNCT
If SCONJ
a DET
patient NOUN
decides VERB
to PART
become VERB
pregnant ADJ
, PUNCT
she PRON
discontinues VERB
the DET
injections NOUN
. PUNCT
As SCONJ
with ADP
any DET
such ADJ
products NOUN
, PUNCT
FDA PROPN
advises VERB
patients NOUN
to PART
discuss VERB
the DET
benefits NOUN
and CCONJ
risks NOUN
of ADP
Depo PROPN
Provera PROPN
with ADP
their PRON
doctor NOUN
or CCONJ
other ADJ
health NOUN
care NOUN
professional NOUN
before ADP
making VERB
a DET
decision NOUN
to PART
use VERB
it PRON
. PUNCT
Depo PROPN
Provera PROPN
's PART
effectiveness NOUN
as SCONJ
a DET
contraceptive NOUN
was AUX
established VERB
in ADP
extensive ADJ
studies NOUN
by ADP
the DET
manufacturer NOUN
, PUNCT
the DET
World PROPN
Health PROPN
Organization PROPN
and CCONJ
health NOUN
agencies NOUN
in ADP
other ADJ
countries NOUN
. PUNCT
U.S. PROPN
clinical ADJ
trials NOUN
, PUNCT
begun VERB
in ADP
1963 NUM
, PUNCT
also ADV
found VERB
Depo PROPN
Provera PROPN
effective ADJ
as SCONJ
an DET
injectable ADJ
contraceptive NOUN
. PUNCT
The DET
most ADV
common ADJ
side NOUN
effects NOUN
are AUX
menstrual ADJ
irregularities NOUN
and CCONJ
weight NOUN
gain NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
some DET
patients NOUN
may AUX
experience VERB
headache NOUN
, PUNCT
nervousness NOUN
, PUNCT
abdominal ADJ
pain NOUN
, PUNCT
dizziness NOUN
, PUNCT
weakness NOUN
or CCONJ
fatigue NOUN
. PUNCT
The DET
drug NOUN
should AUX
not PART
be AUX
used VERB
in ADP
women NOUN
who PRON
have AUX
acute ADJ
liver NOUN
disease NOUN
, PUNCT
unexplained ADJ
vaginal ADJ
bleeding NOUN
, PUNCT
breast NOUN
cancer NOUN
or CCONJ
blood NOUN
clots NOUN
in ADP
the DET
legs NOUN
, PUNCT
lungs NOUN
or CCONJ
eyes NOUN
. PUNCT
The DET
labeling NOUN
advises VERB
doctors NOUN
to PART
rule VERB
out ADP
pregnancy NOUN
before ADP
prescribing VERB
the DET
drug NOUN
, PUNCT
due ADP
to ADP
concerns NOUN
about ADP
low ADJ
birth NOUN
weight NOUN
in ADP
babies NOUN
exposed VERB
to ADP
the DET
drug NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
14Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Recent NUM
data NOUN
have AUX
also ADV
demonstrated VERB
that SCONJ
long ADJ
- PUNCT
term NOUN
use NOUN
may AUX
contribute VERB
to ADP
osteoporosis NOUN
. PUNCT
The DET
manufacturer NOUN
will AUX
conduct VERB
additional ADJ
research NOUN
to PART
study VERB
this DET
potential ADJ
effect NOUN
. PUNCT
Depo PROPN
Provera PROPN
was AUX
Developed VERB
in ADP
the DET
1960s NOUN
and CCONJ
has AUX
been AUX
approved VERB
for ADP
contraception NOUN
in ADP
many ADJ
other ADJ
countries NOUN
. PUNCT
The DET
UpJohn PROPN
Company PROPN
of ADP
Kalamazoo PROPN
, PUNCT
Mich. PROPN
, PUNCT
which PRON
will AUX
market VERB
the DET
drug NOUN
under ADP
the DET
name NOUN
, PUNCT
Depo PROPN
Provera PROPN
Contraceptive PROPN
Injection PROPN
, PUNCT
first ADV
submitted VERB
it PRON
for ADP
approval NOUN
in ADP
the DET
United PROPN
States PROPN
in ADP
the DET
1970s NOUN
. PUNCT
At ADP
that DET
time NOUN
, PUNCT
animal NOUN
studies NOUN
raised VERB
questions NOUN
about ADP
its PRON
potential NOUN
to PART
cause VERB
breast NOUN
cancer NOUN
. PUNCT
Worldwide ADJ
studies NOUN
have AUX
since SCONJ
found VERB
the DET
overall ADJ
risk NOUN
of ADP
cancer NOUN
, PUNCT
including VERB
breast NOUN
cancer NOUN
in ADP
humans NOUN
, PUNCT
to PART
be AUX
minimal ADJ
if SCONJ
any DET
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
15Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
       SPACE
New PROPN
Rules PROPN
Speed PROPN
Approval NOUN
of ADP
Drugs NOUN
for ADP
Life NOUN
- PUNCT
Threatening VERB
Illnesses PROPN
                      SPACE
P92 PROPN
- PUNCT
37 NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
                        SPACE
Monica PROPN
Revelle PROPN
- PUNCT
( PUNCT
301 NUM
) PUNCT
443 NUM
- SYM
4177The NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
today NOUN
announced VERB
that SCONJ
it PRON
will AUX
soon ADV
publish VERB
new ADJ
rules NOUN
to PART
shed VERB
the DET
approval NOUN
of ADP
drugs NOUN
for ADP
patients NOUN
with ADP
serious ADJ
or CCONJ
life NOUN
- PUNCT
threatening VERB
illnesses NOUN
, PUNCT
such ADJ
as SCONJ
AIDS PROPN
, PUNCT
cancer NOUN
and CCONJ
Alzheimer PROPN
's PART
disease NOUN
. PUNCT
" PUNCT
These DET
final ADJ
rules NOUN
will AUX
help VERB
patients NOUN
who PRON
are AUX
suffering VERB
the DET
most ADV
serious ADJ
illnesses NOUN
to PART
get AUX
access NOUN
to ADP
new ADJ
drugs NOUN
months NOUN
or CCONJ
even ADV
years NOUN
earlier ADV
than SCONJ
would AUX
otherwise ADV
be AUX
possible ADJ
, PUNCT
" PUNCT
said VERB
HHS PROPN
Secretary PROPN
Louis PROPN
W. PROPN
Sullivan PROPN
, PUNCT
M.D. PROPN
" PUNCT
The DET
effort NOUN
to PART
accelerate VERB
FDA PROPN
review NOUN
for ADP
these DET
drugs NOUN
has AUX
been AUX
a DET
long ADJ
- PUNCT
term NOUN
commitment NOUN
and CCONJ
indeed ADV
a DET
hallmark NOUN
of ADP
this DET
administration NOUN
. PUNCT
" PUNCT
These DET
rules NOUN
establish VERB
procedures NOUN
for ADP
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
to PART
approve VERB
a DET
drug NOUN
based VERB
on ADP
" PUNCT
surrogate ADJ
endpoints NOUN
" PUNCT
or CCONJ
markers NOUN
. PUNCT
They PRON
apply VERB
when ADV
the DET
drug NOUN
provides VERB
a DET
meaningful ADJ
benefit NOUN
over ADP
currently ADV
available ADJ
therapies NOUN
. PUNCT
Such ADJ
endpoints NOUN
would AUX
include VERB
laboratory NOUN
tests NOUN
or CCONJ
physical ADJ
signs NOUN
that PRON
do AUX
not PART
in ADP
themselves PRON
constitute VERB
a DET
clinical ADJ
effect NOUN
but CCONJ
that PRON
are AUX
judged VERB
by ADP
qualified ADJ
scientists NOUN
to PART
be AUX
likely ADJ
to PART
correspond VERB
to ADP
real ADJ
benefits NOUN
to ADP
the DET
patient NOUN
. PUNCT
Use NOUN
of ADP
surrogate ADJ
endpoints NOUN
for ADP
measurement NOUN
of ADP
drug NOUN
efficacy NOUN
permits VERB
approval NOUN
earlier ADV
than SCONJ
if SCONJ
traditional ADJ
endpoints NOUN
-- PUNCT
such ADJ
as SCONJ
relief NOUN
of ADP
disease NOUN
symptoms NOUN
or CCONJ
prevention NOUN
of ADP
disability NOUN
and CCONJ
death NOUN
from ADP
the DET
disease NOUN
-- PUNCT
are AUX
used VERB
. PUNCT
The DET
new ADJ
rules NOUN
provide VERB
for ADP
therapies NOUN
to PART
be AUX
approved VERB
as ADV
soon ADV
as SCONJ
safety NOUN
and CCONJ
effectiveness NOUN
, PUNCT
based VERB
on ADP
surrogate ADJ
endpoints NOUN
, PUNCT
can AUX
be AUX
reasonably ADV
established VERB
. PUNCT
The DET
drug NOUN
's PART
sponsor NOUN
will AUX
be AUX
required VERB
to PART
agree VERB
to PART
continue VERB
or CCONJ
conduct VERB
postmarketing VERB
human ADJ
studies NOUN
to PART
confirm VERB
that SCONJ
the DET
drug NOUN
's PART
effect NOUN
on ADP
the DET
surrogate ADJ
endpoint NOUN
is AUX
an DET
indicator NOUN
of ADP
its PRON
clinical ADJ
effectiveness NOUN
. PUNCT
One NUM
new ADJ
drug NOUN
-- PUNCT
zalcitabine PROPN
( PUNCT
also ADV
called VERB
ddC NOUN
) PUNCT
-- PUNCT
was AUX
approved VERB
June PROPN
19 NUM
, PUNCT
using VERB
a DET
model NOUN
of ADP
this DET
process NOUN
, PUNCT
for ADP
treating VERB
the DET
human ADJ
immunodeficiency NOUN
virus NOUN
, PUNCT
HIV PROPN
, PUNCT
the DET
cause NOUN
of ADP
AIDS PROPN
. PUNCT
Accelerated ADJ
approval NOUN
can AUX
also ADV
be AUX
used VERB
, PUNCT
if SCONJ
necessary ADJ
, PUNCT
when ADV
FDA PROPN
determines VERB
that SCONJ
a DET
drug NOUN
, PUNCT
judged VERB
to PART
be AUX
effective ADJ
for ADP
the DET
treatment NOUN
of ADP
a DET
disease NOUN
, PUNCT
can AUX
be AUX
used VERB
safely ADV
only ADV
under ADP
a DET
restricted ADJ
distribution NOUN
plan NOUN
. PUNCT
" PUNCT
The DET
new ADJ
rules NOUN
will AUX
help VERB
streamline VERB
the DET
drug NOUN
development NOUN
and CCONJ
review NOUN
process NOUN
without ADP
sacrificing VERB
goad NOUN
science NOUN
and CCONJ
rigorous ADJ
FDA PROPN
oversight NOUN
, PUNCT
" PUNCT
said VERB
FDA PROPN
commissioner NOUN
David PROPN
A. PROPN
Kessler PROPN
, PUNCT
M.D. PROPN
" PUNCT
While SCONJ
drug NOUN
approval NOUN
will AUX
be AUX
accomplished VERB
faster ADV
, PUNCT
these DET
drugs NOUN
and CCONJ
biological ADJ
products NOUN
must AUX
still ADV
meet VERB
safety NOUN
and CCONJ
effectiveness NOUN
standards NOUN
required VERB
by ADP
law NOUN
. PUNCT
" PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
16Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993The NUM
new ADJ
procedures NOUN
also ADV
allow VERB
for ADP
a DET
streamlined ADJ
withdrawal NOUN
process NOUN
if SCONJ
the DET
postmarketing NOUN
studies NOUN
do AUX
not PART
verify VERB
the DET
drug NOUN
's PART
clinical ADJ
benefit NOUN
, PUNCT
if SCONJ
there PRON
is AUX
new ADJ
evidence NOUN
that SCONJ
the DET
drug NOUN
product NOUN
is AUX
not PART
shown VERB
to PART
be AUX
safe ADJ
and CCONJ
effective ADJ
, PUNCT
or CCONJ
if SCONJ
other ADJ
specified VERB
circumstances NOUN
arise VERB
that SCONJ
necessitate VERB
expeditious ADJ
withdrawal NOUN
of ADP
the DET
drug NOUN
or CCONJ
biologic NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
17Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                   SPACE
Articles NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Research NOUN
Shows VERB
Promise PROPN
for ADP
Preventing PROPN
or CCONJ
Slowing VERB
                       SPACE
Blindness NOUN
due ADP
to ADP
Retinal PROPN
Disease PROPN
                   SPACE
National PROPN
Retinitis PROPN
Pigmentosa PROPN
Foundation PROPN
        SPACE
Neutrophilic PROPN
Factors PROPN
Rescue PROPN
Photoreceptor PROPN
Cells PROPN
in ADP
Animal PROPN
Tests PROPN
     SPACE
Baltimore PROPN
, PUNCT
MD PROPN
- PUNCT
Researchers PROPN
at ADP
the DET
University PROPN
of ADP
California PROPN
San PROPN
Francisco PROPN
and CCONJ
Regeneron PROPN
Pharmaceuticals PROPN
, PUNCT
Inc. PROPN
[ PUNCT
NASDAQ PROPN
: PUNCT
REGN NOUN
] PUNCT
have AUX
discovered VERB
that SCONJ
certain ADJ
naturally ADV
occurring VERB
substances NOUN
known VERB
as SCONJ
neurotrophic ADJ
factors NOUN
can AUX
prevent VERB
the DET
degeneration NOUN
of ADP
light ADJ
- PUNCT
sensing VERB
cells NOUN
in ADP
the DET
retina NOUN
of ADP
the DET
eye NOUN
. PUNCT
The DET
degeneration NOUN
of ADP
these DET
cells NOUN
, PUNCT
known VERB
as SCONJ
photoreceptors NOUN
, PUNCT
is AUX
a DET
major ADJ
cause NOUN
of ADP
visual ADJ
impairment NOUN
      SPACE
This DET
research NOUN
, PUNCT
published VERB
to ADP
in ADP
the DET
December PROPN
issue NOUN
of ADP
the DET
Proceedings NOUN
of ADP
the DET
National PROPN
Academy PROPN
of ADP
Science PROPN
( PUNCT
PNAS NOUN
) PUNCT
, PUNCT
holds VERB
promise NOUN
for ADP
people NOUN
who PRON
may AUX
lose VERB
their PRON
sight NOUN
due ADP
to ADP
progressive ADJ
retinal ADJ
degeneration NOUN
-- PUNCT
currently ADV
, PUNCT
no DET
drug NOUN
treatment NOUN
for ADP
retinal ADJ
degeneration NOUN
exists VERB
. PUNCT
It PRON
is AUX
estimated VERB
that SCONJ
2.5 NUM
million NUM
Americans PROPN
have AUX
severe ADJ
vision NOUN
loss NOUN
due ADP
to ADP
age NOUN
- PUNCT
related VERB
macular ADJ
degeneration NOUN
and CCONJ
100,000 NUM
Americans PROPN
are AUX
affected VERB
by ADP
retinitis PROPN
pigmentosus PROPN
, PUNCT
a DET
hereditary ADJ
disease NOUN
that PRON
causes VERB
blindness NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
each DET
year NOUN
more ADJ
than SCONJ
15,000 NUM
people NOUN
undergo VERB
surgical ADJ
procedures NOUN
to PART
repair VERB
retinal ADJ
detachments NOUN
and CCONJ
other ADJ
retinal ADJ
traumas NOUN
. PUNCT
      SPACE
The DET
research NOUN
was AUX
funded VERB
in ADP
part NOUN
by ADP
the DET
RP PROPN
( PUNCT
Retinitis PROPN
Pigmentosa PROPN
) PUNCT
Foundation PROPN
Fighting PROPN
Blindness PROPN
, PUNCT
Regeneron PROPN
Pharmaceuticals PROPN
and CCONJ
the DET
National PROPN
Eye PROPN
Institute PROPN
. PUNCT
It PRON
was AUX
conducted VERB
by ADP
Drs PROPN
. PUNCT
Matthew PROPN
M. PROPN
LaVail PROPN
, PUNCT
Kazuhiko PROPN
Unoki PROPN
, PUNCT
Douglas PROPN
Yasurnura PROPN
, PUNCT
Michael PROPN
T. PROPN
Matthes PROPN
and CCONJ
Roy PROPN
H. PROPN
Steinberg PROPN
at ADP
UCSF PROPN
, PUNCT
arld NOUN
Dr. PROPN
C;eorge PROPN
Yancoooulos PROPN
, PUNCT
Regeneron PROPN
's PART
Vice PROPN
President PROPN
for ADP
Discovery PROPN
. PUNCT
Regeneron PROPN
holds VERB
an DET
exclusive ADJ
license NOUN
for ADP
this DET
research NOUN
from ADP
UCSF PROPN
. PUNCT
     SPACE
In ADP
the DET
research NOUN
described VERB
in ADP
the DET
PNAS NOUN
, PUNCT
a DET
light ADJ
- PUNCT
damage NOUN
model NOUN
was AUX
used VERB
to PART
assess VERB
the DET
survival NOUN
- PUNCT
promoting VERB
activity NOUN
of ADP
a DET
number NOUN
of ADP
naturally ADV
occurring VERB
substances NOUN
. PUNCT
Experimental ADJ
rats NOUN
were AUX
exposed VERB
to ADP
constant ADJ
light NOUN
for ADP
one NUM
week NOUN
. PUNCT
Eyes NOUN
that DET
had AUX
not PART
been AUX
treated VERB
with ADP
an DET
effective ADJ
factor NOUN
lost VERB
most ADJ
of ADP
their PRON
photoreceptor NOUN
cells NOUN
-- PUNCT
the DET
rods NOUN
and CCONJ
cones NOUN
of ADP
the DET
retina NOUN
-- PUNCT
after ADP
light ADJ
exposure NOUN
. PUNCT
Brain NOUN
Derived VERB
Neurotrophic PROPN
Factor PROPN
( PUNCT
BDNF PROPN
) PUNCT
and CCONJ
Ciliary PROPN
Neurotrophic PROPN
Factor PROPN
( PUNCT
CNTF PROPN
) PUNCT
were AUX
particularly ADV
effective ADJ
in ADP
this DET
model NOUN
without ADP
causing VERB
unwanted ADJ
side NOUN
effects NOUN
; PUNCT
other ADJ
factors NOUN
such ADJ
as SCONJ
Nerve PROPN
Growth PROPN
Factor PROPN
( PUNCT
NGF PROPN
) PUNCT
and CCONJ
Insulin PROPN
- PUNCT
like ADJ
Growth PROPN
Factor PROPN
( PUNCT
IGF-1 PROPN
) PUNCT
were AUX
not PART
effective ADJ
in ADP
these DET
experiments NOUN
. PUNCT
      SPACE
Discussing VERB
the DET
research NOUN
, PUNCT
Dr. PROPN
Jesse PROPN
M. PROPN
Cedarbaum PROPN
, PUNCT
Regeneron PROPN
's PART
Director PROPN
of ADP
Clinical PROPN
Research PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
BDNF PROPN
's PART
ability NOUN
to PART
rescue VERB
neurons NOUN
in ADP
the DET
retina NOUN
that PRON
have AUX
been AUX
damaged VERB
by ADP
light ADJ
exposure NOUN
may AUX
hold VERB
promise NOUN
for ADP
the DET
treatment NOUN
of ADP
age NOUN
- PUNCT
related VERB
macular ADJ
degeneration NOUN
, PUNCT
one NUM
of ADP
the DET
leading VERB
causes NOUN
of ADP
vision NOUN
impairment NOUN
, PUNCT
and CCONJ
for ADP
retinal ADJ
detachment NOUN
. PUNCT
Following VERB
detachment NOUN
, PUNCT
permanent ADJ
vision NOUN
loss NOUN
may AUX
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
18Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993result NUM
frorn VERB
the DET
death NOUN
of ADP
detached ADJ
retinal ADJ
cells NOUN
. PUNCT
It PRON
is AUX
possible ADJ
that SCONJ
BDNF PROPN
could AUX
play VERB
a DET
role NOUN
in ADP
rescuing VERB
those DET
cells NOUN
once SCONJ
the DET
retina NOUN
has AUX
been AUX
reattached VERB
surgically ADV
. PUNCT
" PUNCT
      SPACE
" PUNCT
Retinitis PROPN
pigmentosa PROPN
is AUX
a DET
slowly ADV
progressing VERB
disease NOUN
that PRON
causes VERB
the DET
retina NOUN
to PART
degenerate VERB
over ADP
a DET
period NOUN
of ADP
years NOUN
or CCONJ
even ADV
decades NOUN
. PUNCT
Vision NOUN
decreases VERB
to ADP
a DET
small ADJ
tunnel NOUN
of ADP
sight NOUN
and CCONJ
can AUX
result VERB
in ADP
total ADJ
blindness NOUN
. PUNCT
It PRON
is AUX
our PRON
hope NOUN
that SCONJ
research NOUN
on ADP
growth NOUN
factors NOUN
will AUX
provide VERB
a DET
means NOUN
to PART
slow VERB
the DET
progression NOUN
and CCONJ
preserve VERB
useful ADJ
vision NOUN
throughout ADP
life NOUN
, PUNCT
" PUNCT
stated VERB
Jeanette PROPN
S. PROPN
Felix PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Director PROPN
of ADP
Science PROPN
for ADP
the DET
RP PROPN
Foundation PROPN
Fighting PROPN
Blindness PROPN
. PUNCT
      SPACE
In ADP
addition NOUN
to ADP
the DET
work NOUN
described VERB
, PUNCT
Regeneron PROPN
is AUX
developing VERB
BDNF PROPN
in ADP
conjunction NOUN
with ADP
Aingen PROPN
Inc. PROPN
[ PUNCT
NASDAQ PROPN
: PUNCT
AMGN PROPN
] PUNCT
as SCONJ
a DET
possible ADJ
treatment NOUN
for ADP
peripheral ADJ
neuropathies NOUN
associated VERB
with ADP
diabetes NOUN
and CCONJ
cancer NOUN
chemotherapy NOUN
, PUNCT
motor PROPN
neuron PROPN
diseases NOUN
, PUNCT
Parkinson PROPN
's PART
disease NOUN
, PUNCT
and CCONJ
Alzheimer PROPN
's PART
disease NOUN
. PUNCT
By ADP
itself PRON
, PUNCT
Regeneron PROPN
is AUX
testing VERB
CNTF PROPN
in ADP
patients NOUN
with ADP
arnyotrophic ADJ
lateral PROPN
sclerosis PROPN
( PUNCT
commonly ADV
known VERB
as SCONJ
Lou PROPN
Gehrig PROPN
's PART
disease NOUN
) PUNCT
. PUNCT
      SPACE
Regeneron PROPN
Pharlnaceuticals PROPN
, PUNCT
Inc. PROPN
, PUNCT
based VERB
in ADP
Tarrytown PROPN
, PUNCT
New PROPN
York PROPN
, PUNCT
is AUX
a DET
leader NOUN
in ADP
the DET
discovery NOUN
and CCONJ
development NOUN
of ADP
biotechnology NOUN
- PUNCT
based VERB
compounds NOUN
for ADP
the DET
treatment NOUN
of ADP
neurodegenerative ADJ
diseases NOUN
, PUNCT
peripheral ADJ
neuropathies NOUN
and CCONJ
nerve NOUN
injuries NOUN
, PUNCT
which PRON
affect VERB
more ADJ
than SCONJ
seven NUM
million NUM
Americans PROPN
. PUNCT
Drs PROPN
. PUNCT
LaVail PROPN
and CCONJ
Steinberg PROPN
of ADP
UCSF PROPN
are AUX
consultants NOUN
to ADP
Regeneron PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
19Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
                 SPACE
Affluent PROPN
Diet PROPN
Increases PROPN
Risk PROPN
Of ADP
Heart PROPN
Disease PROPN
                          SPACE
Research PROPN
Resources PROPN
Reporter NOUN
                           SPACE
written VERB
by ADP
Mary PROPN
Weideman PROPN
                                 SPACE
Nov PROPN
/ SYM
Dec PROPN
1992 NUM
                         SPACE
National PROPN
Institutes PROPN
of ADP
Health PROPN
     SPACE
High ADJ
- PUNCT
fat NOUN
, PUNCT
high ADJ
- PUNCT
calorie NOUN
diets NOUN
rapidly ADV
increase VERB
risk NOUN
factors NOUN
for ADP
coronary ADJ
heart NOUN
disease NOUN
in ADP
native ADJ
populations NOUN
of ADP
developing VERB
countries NOUN
that PRON
have AUX
traditionally ADV
consumed VERB
diets NOUN
low ADJ
in ADP
fat NOUN
. PUNCT
  SPACE
These DET
findings NOUN
, PUNCT
according VERB
to ADP
investigators NOUN
at ADP
the DET
Oregon PROPN
Health PROPN
Sciences PROPN
University PROPN
in ADP
Portland PROPN
, PUNCT
have AUX
serious ADJ
implications NOUN
for ADP
public ADJ
health NOUN
in ADP
both DET
industrialized VERB
and CCONJ
developing VERB
countries NOUN
. PUNCT
      SPACE
" PUNCT
This DET
study NOUN
demonstrates VERB
why ADV
we PRON
can AUX
develop VERB
coronary ADJ
heart NOUN
disease NOUN
and CCONJ
have AUX
higher ADJ
blood NOUN
cholesterol NOUN
and CCONJ
triglyceride ADJ
levels NOUN
. PUNCT
  SPACE
It PRON
shows VERB
also ADV
the DET
importance NOUN
of ADP
diet NOUN
and CCONJ
particularly ADV
the DET
potential NOUN
of ADP
the DET
diet NOUN
to PART
increase VERB
body NOUN
weight NOUN
, PUNCT
thereby ADV
leading VERB
to ADP
a DET
whole ADJ
host NOUN
of ADP
other ADJ
health NOUN
problems NOUN
in ADP
developing VERB
countries NOUN
and CCONJ
affluent ADJ
nations NOUN
as ADV
well ADV
, PUNCT
" PUNCT
explains VERB
principal ADJ
investigator NOUN
Dr. PROPN
William PROPN
E. PROPN
Connor PROPN
, PUNCT
head NOUN
of ADP
the DET
section NOUN
of ADP
clinical ADJ
nutrition NOUN
and CCONJ
lipid NOUN
metabolism NOUN
at ADP
Oregon PROPN
Health PROPN
Sciences PROPN
University PROPN
. PUNCT
      SPACE
Over ADP
the DET
past ADJ
25 NUM
years NOUN
Dr. PROPN
Connor PROPN
and CCONJ
his PRON
team NOUN
have AUX
characterized VERB
the DET
food NOUN
and CCONJ
nutrient ADJ
intakes NOUN
of ADP
the DET
Tara PROPN
humara PROPN
Indians PROPN
in ADP
Mexico PROPN
, PUNCT
while SCONJ
simultaneously ADV
documenting VERB
various ADJ
aspects NOUN
of ADP
Tarahumara PROPN
lipid NOUN
metabolism NOUN
. PUNCT
  SPACE
These DET
native ADJ
Mexicans PROPN
number VERB
approximately ADV
50,000 NUM
and CCONJ
reside VERB
in ADP
the DET
Sierra PROPN
Madre PROPN
Occidental PROPN
Mountains PROPN
in ADP
the DET
state NOUN
of ADP
Chihuahua PROPN
. PUNCT
  SPACE
The DET
Tarahumaras PROPN
have AUX
coupled VERB
an DET
agrarian ADJ
diet NOUN
to ADP
endurance VERB
racing NOUN
. PUNCT
  SPACE
Probably ADV
as SCONJ
a DET
result NOUN
, PUNCT
coronary ADJ
heart NOUN
disease NOUN
, PUNCT
which PRON
is AUX
so ADV
prevalent ADJ
in ADP
Western ADJ
industrialized ADJ
nations NOUN
, PUNCT
is AUX
virtually ADV
non ADJ
existent NOUN
in ADP
their PRON
culture NOUN
. PUNCT
  SPACE
Loosely ADV
translated VERB
, PUNCT
the DET
name NOUN
Tarahumara PROPN
means VERB
" PUNCT
fleet NOUN
of ADP
foot NOUN
, PUNCT
" PUNCT
reflecting VERB
a DET
tribal ADJ
passion NOUN
for ADP
betting VERB
on ADP
" PUNCT
kickball NOUN
" PUNCT
races NOUN
, PUNCT
in ADP
which PRON
participants NOUN
run VERB
distances NOUN
of ADP
100 NUM
miles NOUN
or CCONJ
more ADJ
while SCONJ
kicking VERB
a DET
machete NOUN
- PUNCT
carved VERB
wooden ADJ
ball NOUN
. PUNCT
     SPACE
The DET
typical ADJ
Tarahumara PROPN
diet NOUN
consists VERB
primarily ADV
of ADP
pinto ADJ
beans NOUN
, PUNCT
tortillas NOUN
, PUNCT
and CCONJ
pinole PROPN
, PUNCT
a DET
drink NOUN
made VERB
of ADP
ground NOUN
roasted VERB
corn NOUN
mixed VERB
with ADP
cold ADJ
water NOUN
, PUNCT
together ADV
with ADP
squash NOUN
and CCONJ
gath PROPN
ered VERB
fruits NOUN
and CCONJ
vegetables NOUN
. PUNCT
  SPACE
The DET
Tara PROPN
humaras NOUN
also ADV
eat VERB
small ADJ
amounts NOUN
of ADP
game NOUN
, PUNCT
fish NOUN
, PUNCT
and CCONJ
eggs NOUN
. PUNCT
  SPACE
Their PRON
food NOUN
contains VERB
approximately ADV
12 NUM
percent NOUN
of ADP
total ADJ
calories NOUN
as SCONJ
fat NOUN
of ADP
which PRON
the DET
majority NOUN
( PUNCT
69 NUM
percent NOUN
) PUNCT
is AUX
of ADP
vegetable ADJ
origin NOUN
. PUNCT
  SPACE
Dietician PROPN
Martha PROPN
McMurry PROPN
, PUNCT
a DET
coinvestigator NOUN
in ADP
the DET
study NOUN
, PUNCT
describes VERB
their PRON
diet NOUN
as SCONJ
simple ADJ
and CCONJ
very ADV
rich ADJ
in ADP
nutrients NOUN
while SCONJ
low ADJ
in ADP
cholesterol NOUN
and CCONJ
fat NOUN
. PUNCT
     SPACE
The DET
Tarahumaras PROPN
have AUX
average ADJ
plasma NOUN
cholesterol NOUN
levels NOUN
of ADP
121 NUM
mg/ NOUN
dL ADJ
, PUNCT
low ADJ
- PUNCT
density NOUN
lipoprotein NOUN
( PUNCT
LDL)-cholesterol ADJ
levels NOUN
of ADP
72 NUM
mg PROPN
/ SYM
dl PROPN
, PUNCT
and CCONJ
high ADJ
- PUNCT
density NOUN
lipoprotein NOUN
( PUNCT
HDL)-cholesterol PROPN
levels NOUN
of ADP
32 NUM
to PART
42 NUM
mg PROPN
/ SYM
dl PROPN
. PROPN
  SPACE
All DET
of ADP
those DET
values NOUN
are AUX
in ADP
the DET
good ADJ
, PUNCT
low ADJ
- PUNCT
risk NOUN
range NOUN
, PUNCT
according VERB
to ADP
the DET
researchers NOUN
. PUNCT
  SPACE
Elevated ADJ
cholesterol NOUN
and CCONJ
LDL NOUN
- PUNCT
cholesterol NOUN
levels NOUN
are AUX
considered VERB
risk NOUN
factors NOUN
for ADP
heart NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
20Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993disease PROPN
. PROPN
  SPACE
HDL PROPN
- PUNCT
cholesterol NOUN
is AUX
considered VERB
beneficial ADJ
. PUNCT
  SPACE
In ADP
previous ADJ
studies NOUN
the DET
Tarahumaras PROPN
had AUX
been AUX
found VERB
to PART
be AUX
at ADP
low ADJ
risk NOUN
for ADP
cardiac ADJ
disease NOUN
, PUNCT
although SCONJ
able ADJ
to PART
respond VERB
to ADP
high ADJ
- PUNCT
cholesterol NOUN
diets NOUN
with ADP
elevations NOUN
in ADP
total NOUN
and CCONJ
LDL PROPN
- PUNCT
cholesterol NOUN
. PUNCT
      SPACE
Clinical PROPN
Research PROPN
Center PROPN
dietitian ADJ
McMurry PROPN
and CCONJ
coinvestigator NOUN
Maria PROPN
Teresa PROPN
Cerqueira PROPN
established VERB
a DET
metabolic ADJ
unit NOUN
in ADP
a DET
Jesuit PROPN
mission NOUN
school NOUN
building NOUN
near SCONJ
a DET
community NOUN
hospital NOUN
in ADP
the DET
small ADJ
village NOUN
of ADP
Sisoguichi PROPN
. PUNCT
  SPACE
Food PROPN
was AUX
weighed VERB
, PUNCT
cooked VERB
, PUNCT
and CCONJ
fed VERB
to ADP
the DET
study NOUN
participants NOUN
under ADP
the DET
investigators NOUN
' PART
direct ADJ
supervision NOUN
, PUNCT
ensuring VERB
that SCONJ
subjects NOUN
ate VERB
only ADV
food NOUN
stipulated VERB
by ADP
the DET
research NOUN
protocol NOUN
. PUNCT
  SPACE
Fasting VERB
blood NOUN
was AUX
drawn VERB
twice ADV
weekly ADJ
, PUNCT
and CCONJ
plasma NOUN
samples NOUN
were AUX
frozen VERB
and CCONJ
shipped VERB
to ADP
Dr. PROPN
Connors PROPN
laboratory NOUN
for ADP
cholesterol NOUN
, PUNCT
triglyceride PROPN
, PUNCT
and CCONJ
lipoprotein PROPN
analyses NOUN
. PUNCT
  SPACE
Regular ADJ
measurements NOUN
included VERB
participant ADJ
body NOUN
weight NOUN
, PUNCT
height NOUN
, PUNCT
and CCONJ
triceps NOUN
skin NOUN
fold VERB
thickness ADJ
. PUNCT
  SPACE
Thirteen NUM
Tarahumaras PROPN
, PUNCT
five NUM
women NOUN
and CCONJ
eight NUM
men NOUN
, PUNCT
including VERB
one NUM
adolescent NOUN
, PUNCT
were AUX
fed VERB
their PRON
native ADJ
diet NOUN
for ADP
1 NUM
week NOUN
, PUNCT
followed VERB
by ADP
5 NUM
weeks NOUN
of ADP
an DET
" PUNCT
affluent ADJ
" PUNCT
diet NOUN
. PUNCT
      SPACE
" PUNCT
In ADP
this DET
study NOUN
we PRON
went VERB
up ADP
to ADP
a DET
concentration NOUN
of ADP
dietary ADJ
fat NOUN
that PRON
was AUX
40 NUM
percent NOUN
of ADP
total ADJ
calories NOUN
. PUNCT
  SPACE
This DET
is AUX
the DET
prototype NOUN
of ADP
the DET
holiday NOUN
diet NOUN
that SCONJ
many ADJ
Americans PROPN
consume VERB
a DET
diet NOUN
high ADJ
in ADP
fat NOUN
, PUNCT
sugar NOUN
, PUNCT
and CCONJ
cholesterol NOUN
, PUNCT
low ADJ
in ADP
fiber NOUN
, PUNCT
" PUNCT
elaborates VERB
Dr. PROPN
Conners PROPN
. PUNCT
Such ADJ
dietary ADJ
characteristics NOUN
are AUX
reflected VERB
in ADP
the DET
cholesterol NOUN
- PUNCT
saturation NOUN
index NOUN
, PUNCT
or CCONJ
CSI PROPN
, PUNCT
recently ADV
devised VERB
research NOUN
dietitian NOUN
Sonja PROPN
Conner PROPN
working VERB
with ADP
Dr. PROPN
Connor PROPN
. PUNCT
  SPACE
" PUNCT
The DET
CSI PROPN
is AUX
a DET
single ADJ
number NOUN
that PRON
incorporates VERB
both DET
the DET
amount NOUN
of ADP
cholesterol NOUN
and CCONJ
the DET
amount NOUN
of ADP
saturated VERB
fat NOUN
in ADP
the DET
diet NOUN
. PUNCT
  SPACE
CSI PROPN
indicates VERB
the DET
diet NOUN
's PART
potential NOUN
to PART
elevate VERB
the DET
cholesterol NOUN
level NOUN
, PUNCT
particularly ADV
the DET
LDL NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connor PROPN
explains VERB
. PUNCT
  SPACE
The DET
Tarahumaran PROPN
diet NOUN
averages VERB
a DET
very ADV
low ADJ
CSI PROPN
of ADP
20 NUM
; PUNCT
Dr. PROPN
Connor PROPN
's PART
" PUNCT
affluent ADJ
" PUNCT
diet NOUN
used VERB
in ADP
the DET
study NOUN
ranks VERB
a DET
CSI PROPN
of ADP
149 NUM
. PUNCT
      SPACE
The DET
experimental ADJ
design NOUN
of ADP
this DET
study NOUN
reflects VERB
the DET
importance NOUN
of ADP
establishing VERB
baseline NOUN
plasma NOUN
lipid NOUN
levels NOUN
, PUNCT
typical ADJ
of ADP
the DET
native ADJ
diet NOUN
, PUNCT
before ADP
exposing VERB
subjects NOUN
to ADP
the DET
experimental ADJ
diet NOUN
. PUNCT
  SPACE
The DET
standard ADJ
curve NOUN
relating VERB
dietary ADJ
food NOUN
intake NOUN
to PART
plasma VERB
cholesterol NOUN
demonstrates VERB
a DET
leveling NOUN
off ADP
, PUNCT
or CCONJ
plateau NOUN
, PUNCT
for ADP
consumption NOUN
of ADP
large ADJ
amounts NOUN
of ADP
fat NOUN
. PUNCT
  SPACE
Changes NOUN
in ADP
dietary ADJ
fat NOUN
and/or CCONJ
cholesterol NOUN
in ADP
this DET
range NOUN
have AUX
little ADJ
effect NOUN
on ADP
plasma NOUN
levels NOUN
. PUNCT
  SPACE
" PUNCT
You PRON
must AUX
have AUX
the DET
baseline NOUN
diet NOUN
almost ADV
free ADJ
of ADP
the DET
variables NOUN
you PRON
are AUX
going VERB
to PART
put VERB
into ADP
the DET
experimental ADJ
diet NOUN
. PUNCT
  SPACE
The DET
Framingham PROPN
study NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
did AUX
not PART
discriminate VERB
on ADP
the DET
basis NOUN
of ADP
diet NOUN
between ADP
individuals NOUN
who PRON
got VERB
heart NOUN
disease NOUN
because SCONJ
the DET
diet NOUN
was AUX
already ADV
high ADJ
in ADP
fat NOUN
. PUNCT
  SPACE
All DET
subjects NOUN
were AUX
already ADV
eating VERB
on ADP
a DET
plateau NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connor PROPN
says VERB
. PUNCT
      SPACE
After ADP
5 NUM
weeks NOUN
of ADP
consuming VERB
the DET
" PUNCT
affluent ADJ
" PUNCT
diet NOUN
, PUNCT
the DET
subjects NOUN
' PART
mean ADJ
plasma NOUN
cholesterol NOUN
levels NOUN
had AUX
in ADP
creased VERB
by ADP
31 NUM
percent NOUN
, PUNCT
primarily ADV
in ADP
the DET
LDL PROPN
fraction NOUN
, PUNCT
which PRON
rose VERB
39 NUM
percent NOUN
. PUNCT
  SPACE
HDL PROPN
- PUNCT
cholesterol NOUN
increased VERB
by ADP
31 NUM
per ADP
cent NOUN
, PUNCT
and CCONJ
LDL PROPN
to ADP
HDL PROPN
ratios NOUN
changed VERB
therefore ADV
very ADV
little ADJ
. PUNCT
  SPACE
Plasma PROPN
triglyceride ADJ
levels NOUN
increased VERB
by ADP
18 NUM
percent NOUN
, PUNCT
and CCONJ
subjects NOUN
averaged VERB
an DET
8-pound NUM
gain NOUN
in ADP
weight NOUN
. PUNCT
  SPACE
According VERB
to ADP
Dr. PROPN
Connor PROPN
, PUNCT
lipid NOUN
changes NOUN
occurred VERB
surprisingly ADV
soon ADV
, PUNCT
yielding VERB
nearly ADV
the DET
same ADJ
results NOUN
after ADP
7 NUM
days NOUN
of ADP
affluent ADJ
diet NOUN
as SCONJ
after ADP
35 NUM
days NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
21Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
The DET
increase NOUN
in ADP
HDL PROPN
carries VERB
broad ADJ
dietary ADJ
implications NOUN
for ADP
industrialized ADJ
nations NOUN
. PUNCT
  SPACE
" PUNCT
We PRON
think VERB
HDL PROPN
- PUNCT
cholesterol NOUN
increased VERB
because SCONJ
we PRON
increased VERB
the DET
amount NOUN
of ADP
dietary ADJ
fat NOUN
over ADP
the DET
fat ADJ
content NOUN
used VERB
in ADP
the DET
previous ADJ
Tarahumara PROPN
metabolic ADJ
study NOUN
. PUNCT
  SPACE
In ADP
that DET
study NOUN
we PRON
saw VERB
no DET
change NOUN
in ADP
HDL PROPN
levels NOUN
after ADP
raising VERB
the DET
dietary ADJ
cholesterol NOUN
but CCONJ
keeping VERB
the DET
fat NOUN
relatively ADV
consistent ADJ
with ADP
native ADJ
consumption NOUN
. PUNCT
  SPACE
In ADP
the DET
present ADJ
study NOUN
we PRON
increased VERB
fat ADJ
intake NOUN
to ADP
40 NUM
percent NOUN
of ADP
the DET
total ADJ
calories NOUN
. PUNCT
  SPACE
We PRON
reached VERB
the DET
conclusion NOUN
in ADP
the DET
Tarahumara PROPN
study NOUN
that SCONJ
HDL PROPN
reflects VERB
the DET
amount NOUN
of ADP
dietary ADJ
fat NOUN
in ADP
general ADJ
and CCONJ
not PART
the DET
amount NOUN
of ADP
dietary ADJ
cholesterol NOUN
. PUNCT
  SPACE
HDL PROPN
must AUX
increase VERB
to PART
help VERB
metabolize VERB
the DET
fat NOUN
, PUNCT
and CCONJ
it PRON
increased VERB
quite DET
a DET
bit NOUN
in ADP
this DET
study NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connor PROPN
explains VERB
. PUNCT
     SPACE
Low PROPN
HDL PROPN
in ADP
the DET
Tarahumarans PROPN
is AUX
not PART
typically ADV
an DET
important ADJ
predictor NOUN
of ADP
coronary ADJ
heart NOUN
disease NOUN
because SCONJ
they PRON
do AUX
not PART
normally ADV
consume VERB
large ADJ
amounts NOUN
of ADP
fat NOUN
or CCONJ
cholesterol NOUN
. PUNCT
  SPACE
HDL PROPN
remains VERB
an DET
important ADJ
predictor NOUN
to ADP
Americans PROPN
because SCONJ
of ADP
their PRON
usual ADJ
high ADJ
fat NOUN
intake NOUN
. PUNCT
      SPACE
Dr. PROPN
Connor PROPN
recommends VERB
a DET
diet NOUN
for ADP
Americans PROPN
that PRON
contains VERB
less ADJ
than SCONJ
20 NUM
percent NOUN
of ADP
total ADJ
calories NOUN
as SCONJ
fat ADJ
, PUNCT
less ADJ
than SCONJ
100 NUM
mg NOUN
of ADP
cholesterol NOUN
, PUNCT
and CCONJ
a DET
CSI PROPN
around ADP
20 NUM
, PUNCT
varying VERB
in ADP
accordance NOUN
with ADP
caloric ADJ
needs NOUN
. PUNCT
  SPACE
Such DET
a DET
diet NOUN
is AUX
low ADJ
in ADP
meat NOUN
and CCONJ
dairy NOUN
fat NOUN
, PUNCT
high ADJ
in ADP
fiber NOUN
. PUNCT
  SPACE
Dr. PROPN
Connor PROPN
also ADV
comments VERB
on ADP
recent ADJ
suggestions NOUN
that PRON
Americans PROPN
adopt VERB
a DET
" PUNCT
Mediterranean PROPN
- PUNCT
style NOUN
" PUNCT
diet NOUN
. PUNCT
  SPACE
" PUNCT
The DET
original ADJ
Mediterranean PROPN
diet NOUN
, PUNCT
in ADP
its PRON
pristine ADJ
state NOUN
, PUNCT
consisted VERB
of ADP
a DET
very ADV
low ADJ
intake NOUN
of ADP
fat ADJ
and CCONJ
very ADV
few ADJ
animal NOUN
and CCONJ
dairy NOUN
products NOUN
. PUNCT
  SPACE
We PRON
are AUX
already ADV
eating VERB
a DET
lot NOUN
of ADP
meat NOUN
and CCONJ
dairy NOUN
products NOUN
. PUNCT
  SPACE
Simply ADV
to PART
continue VERB
that DET
pattern NOUN
while SCONJ
switching VERB
to ADP
olive ADJ
oil NOUN
is AUX
not PART
going VERB
to PART
help VERB
the DET
situation NOUN
. PUNCT
" PUNCT
      SPACE
The DET
World PROPN
Health PROPN
Organization PROPN
( PUNCT
WHO PROPN
) PUNCT
is AUX
focusing VERB
much ADJ
attention NOUN
on ADP
the DET
emergence NOUN
of ADP
diseases NOUN
such ADJ
as SCONJ
coronary ADJ
heart NOUN
disease NOUN
in ADP
nations NOUN
and CCONJ
societies NOUN
undergoing VERB
technological ADJ
development NOUN
. PUNCT
  SPACE
Dr. PROPN
Connor PROPN
says VERB
that SCONJ
coronary ADJ
heart NOUN
disease NOUN
starts VERB
with ADP
a DET
given VERB
society NOUN
's PART
elite NOUN
, PUNCT
who PRON
typically ADV
eat VERB
a DET
different ADJ
diet NOUN
than SCONJ
the DET
average ADJ
citizen NOUN
. PUNCT
  SPACE
" PUNCT
If SCONJ
the DET
pattern NOUN
of ADP
afluence NOUN
increases NOUN
, PUNCT
the DET
entire ADJ
population NOUN
will AUX
have AUX
have AUX
a DET
higher ADJ
incidence NOUN
of ADP
coronary ADJ
heart NOUN
disease NOUN
, PUNCT
which PRON
places VERB
a DET
termendous ADJ
health NOUN
care NOUN
burden NOUN
on ADP
a DET
society NOUN
. PUNCT
  SPACE
WHO PRON
would AUX
like VERB
the DET
developing VERB
countries NOUN
to PART
prevent VERB
coronary ADJ
heart NOUN
disease NOUN
, PUNCT
so SCONJ
they PRON
can AUX
concentrate VERB
on ADP
other ADJ
aspects NOUN
of ADP
their PRON
economic ADJ
development NOUN
and CCONJ
on ADP
public ADJ
health NOUN
measures NOUN
to PART
improve VERB
general ADJ
well ADV
- PUNCT
being NOUN
, PUNCT
rather ADV
than SCONJ
paying VERB
for ADP
unnecessary ADJ
, PUNCT
expensive ADJ
medical ADJ
technology NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connors PROPN
says VERB
. PUNCT
     SPACE
" PUNCT
The DET
overall ADJ
implication NOUN
of ADP
this DET
study NOUN
is AUX
that SCONJ
humans NOUN
can AUX
readily ADV
move VERB
their PRON
plasma NOUN
lipids NOUN
and CCONJ
lipoprotein ADJ
values NOUN
into ADP
a DET
high ADJ
- PUNCT
risk NOUN
range NOUN
within ADP
a DET
very ADV
short ADJ
time NOUN
by ADP
an DET
affluent ADJ
, PUNCT
excessive ADJ
diet NOUN
. PUNCT
  SPACE
The DET
present ADJ
rate NOUN
of ADP
coronary ADJ
heart NOUN
disease NOUN
in ADP
the DET
United PROPN
States PROPN
is AUX
30 NUM
percent NOUN
less ADJ
than SCONJ
it PRON
was AUX
20 NUM
years NOUN
ago ADV
, PUNCT
so ADV
a DET
lot NOUN
has AUX
been AUX
accomplished VERB
. PUNCT
  SPACE
We PRON
are AUX
changing VERB
rapidly ADV
, PUNCT
" PUNCT
he PRON
concludes VERB
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
22Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                             SPACE
General PROPN
Announcments PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
        SPACE
Publications PROPN
for ADP
Health PROPN
Professionals PROPN
Available ADJ
from ADP
NCI PROPN
( PUNCT
1/93)Unless NUM
otherwise ADV
noted VERB
, PUNCT
the DET
following VERB
materials NOUN
are AUX
provided VERB
free ADJ
of ADP
charge NOUN
by ADP
calling VERB
the DET
NCI PROPN
's PART
Publication PROPN
Ordering PROPN
Service PROPN
, PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
4-CANCER NOUN
. PUNCT
  SPACE
Because SCONJ
Federal PROPN
Government PROPN
publications NOUN
are AUX
not PART
subject ADJ
to ADP
copyright NOUN
restriction NOUN
, PUNCT
you PRON
are AUX
free ADJ
to PART
photocopy VERB
NCI PROPN
material NOUN
. PUNCT
   SPACE
GENERAL PROPN
INFORMATION PROPN
       SPACE
ANTICANCER PROPN
DRUG PROPN
INFORMATION NOUN
SHEETS VERB
IN ADP
SPANISH PROPN
/ SYM
ENGLISH PROPN
. PUNCT
  SPACE
Two- PROPN
     SPACE
sided ADJ
fact NOUN
sheets NOUN
( PUNCT
in ADP
English PROPN
and CCONJ
Spanish PROPN
) PUNCT
provide VERB
     SPACE
information NOUN
about ADP
side NOUN
effects NOUN
of ADP
common ADJ
drugs NOUN
used VERB
to PART
treat VERB
     SPACE
cancer NOUN
, PUNCT
their PRON
proper ADJ
usage NOUN
, PUNCT
and CCONJ
precautions NOUN
for ADP
patients NOUN
. PUNCT
     SPACE
The DET
fact NOUN
sheets NOUN
were AUX
prepared VERB
by ADP
the DET
United PROPN
States PROPN
     SPACE
Pharmacopeial PROPN
Convention PROPN
, PUNCT
Inc. PROPN
, PUNCT
for ADP
distribution NOUN
by ADP
the DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
Single ADJ
sets NOUN
only ADV
may AUX
be AUX
ordered VERB
. PUNCT
      SPACE
CANCER PROPN
RATES NOUN
AND CCONJ
RISKS PROPN
, PUNCT
3RD NUM
EDITION PROPN
( PUNCT
85 NUM
- SYM
691 NUM
) PUNCT
. PUNCT
  SPACE
This DET
book NOUN
is AUX
     SPACE
a DET
compact ADJ
guide NOUN
to ADP
statistics NOUN
, PUNCT
risk NOUN
factors NOUN
, PUNCT
and CCONJ
risks NOUN
for ADP
     SPACE
major ADJ
cancer NOUN
sites NOUN
. PUNCT
  SPACE
It PRON
includes VERB
charts NOUN
and CCONJ
graphs NOUN
showing VERB
     SPACE
incidence NOUN
, PUNCT
mortality NOUN
, PUNCT
and CCONJ
survival NOUN
worldwide ADV
and CCONJ
in ADP
the DET
     SPACE
United PROPN
States PROPN
. PUNCT
  SPACE
It PRON
also ADV
contains VERB
a DET
section NOUN
on ADP
the DET
costs NOUN
of ADP
     SPACE
cancer NOUN
. PUNCT
136 NUM
pages NOUN
. PUNCT
      SPACE
DIET PROPN
, PUNCT
NUTRITION PROPN
& CCONJ
CANCER PROPN
PREVENTION PROPN
: PUNCT
A DET
GUIDE NOUN
TO ADP
FOOD NOUN
CHOICES NOUN
     SPACE
( PUNCT
87 NUM
- SYM
2778 NUM
) PUNCT
. PUNCT
  SPACE
This DET
booklet NOUN
describes VERB
what PRON
is AUX
now ADV
known VERB
about ADP
     SPACE
diet NOUN
, PUNCT
nutrition NOUN
, PUNCT
and CCONJ
cancer NOUN
prevention NOUN
. PUNCT
  SPACE
It PRON
provides VERB
     SPACE
information NOUN
about ADP
foods NOUN
that PRON
contain VERB
components NOUN
like SCONJ
fiber NOUN
, PUNCT
     SPACE
fat NOUN
, PUNCT
and CCONJ
vitamins NOUN
that PRON
may AUX
affect VERB
a DET
person NOUN
's PART
risk NOUN
of ADP
getting VERB
     SPACE
certain ADJ
cancers NOUN
. PUNCT
  SPACE
It PRON
suggests VERB
ways NOUN
to PART
use VERB
that DET
information NOUN
     SPACE
to PART
select VERB
from ADP
a DET
broad ADJ
variety NOUN
of ADP
foods NOUN
-- PUNCT
choosing VERB
more ADJ
of ADP
     SPACE
some DET
foods NOUN
and CCONJ
less ADJ
of ADP
others NOUN
. PUNCT
Includes VERB
recipes NOUN
and CCONJ
sample NOUN
     SPACE
menus NOUN
. PUNCT
  SPACE
39 NUM
pages NOUN
. PUNCT
      SPACE
NATIONAL PROPN
CANCER PROPN
INSTITUTE PROPN
FACT PROPN
BOOK PROPN
. PUNCT
  SPACE
This DET
book NOUN
presents VERB
     SPACE
general ADJ
information NOUN
about ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
     SPACE
including VERB
budget NOUN
data NOUN
, PUNCT
grants NOUN
and CCONJ
contracts NOUN
, PUNCT
and CCONJ
historical ADJ
     SPACE
information NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
23Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
NATIONAL PROPN
CANCER PROPN
INSTITUTE NOUN
GRANTS NOUN
PROCESS PROPN
( PUNCT
91 NUM
- SYM
1222 NUM
) PUNCT
( PUNCT
Revised VERB
     SPACE
3/90 NUM
) PUNCT
. PUNCT
  SPACE
This DET
booklet NOUN
describes VERB
general ADJ
NCI PROPN
grant NOUN
award NOUN
     SPACE
procedures NOUN
; PUNCT
includes VERB
chapters NOUN
on ADP
eligibility NOUN
, PUNCT
preparation NOUN
of ADP
     SPACE
grant NOUN
application NOUN
, PUNCT
peer NOUN
review NOUN
, PUNCT
eligible ADJ
costs NOUN
, PUNCT
and CCONJ
post- PROPN
     SPACE
award NOUN
activities NOUN
. PUNCT
  SPACE
62 NUM
pages NOUN
. PUNCT
      SPACE
PHYSICIAN PROPN
TO ADP
PHYSICIAN NOUN
: PUNCT
PERSPECTIVE NOUN
ON ADP
CLINICAL NOUN
TRIALS NOUN
. PUNCT
This DET
     SPACE
15-minute NUM
videocassette NOUN
discusses NOUN
why ADV
and CCONJ
how ADV
to PART
enter VERB
     SPACE
patients NOUN
on ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
It PRON
was AUX
produced VERB
in ADP
     SPACE
collaboration NOUN
with ADP
the DET
American PROPN
College PROPN
of ADP
Surgeons PROPN
     SPACE
Commission PROPN
on ADP
Cancer PROPN
. PUNCT
       SPACE
STUDENTS NOUN
WITH ADP
CANCER NOUN
: PUNCT
A DET
RESOURCE NOUN
FOR ADP
THE DET
EDUCATOR PROPN
( PUNCT
91 NUM
- PUNCT
2086 NUM
) PUNCT
. PUNCT
     SPACE
( PUNCT
Revised VERB
4/87 NUM
) PUNCT
This DET
booklet NOUN
is AUX
designed VERB
for ADP
teachers NOUN
who PRON
     SPACE
have AUX
students NOUN
with ADP
cancer NOUN
in ADP
their PRON
classrooms NOUN
or CCONJ
schools NOUN
. PUNCT
It PRON
     SPACE
includes VERB
an DET
explanation NOUN
of ADP
cancer NOUN
, PUNCT
its PRON
treatment NOUN
and CCONJ
     SPACE
effects NOUN
, PUNCT
and CCONJ
guidelines NOUN
for ADP
the DET
young ADJ
person NOUN
's PART
re NOUN
- NOUN
entry NOUN
to ADP
     SPACE
school NOUN
and CCONJ
for ADP
dealing VERB
with ADP
terminally ADV
ill ADJ
students NOUN
. PUNCT
     SPACE
Bibliographies NOUN
are AUX
included VERB
for ADP
both DET
educators NOUN
and CCONJ
young ADJ
     SPACE
people NOUN
. PUNCT
  SPACE
22 NUM
pages NOUN
. PUNCT
      SPACE
UNDERSTANDING PROPN
THE DET
IMMUNE PROPN
SYSTEM PROPN
( PUNCT
92 NUM
- SYM
529 NUM
) PUNCT
. PUNCT
This DET
booklet NOUN
     SPACE
describes VERB
the DET
complex ADJ
network NOUN
of ADP
specialized ADJ
cells NOUN
and CCONJ
     SPACE
organs NOUN
that PRON
make VERB
up ADP
the DET
human ADJ
immune ADJ
system NOUN
. PUNCT
It PRON
explains VERB
how ADV
     SPACE
the DET
system NOUN
works VERB
to PART
fight VERB
off ADP
disease NOUN
caused VERB
by ADP
invading VERB
     SPACE
agents NOUN
such ADJ
as SCONJ
bacteria NOUN
and CCONJ
viruses NOUN
, PUNCT
and CCONJ
how ADV
it PRON
sometimes ADV
     SPACE
malfunctions NOUN
, PUNCT
resulting VERB
in ADP
a DET
variety NOUN
of ADP
diseases NOUN
from ADP
     SPACE
allergies NOUN
, PUNCT
to ADP
arthritis NOUN
, PUNCT
to ADP
cancer NOUN
. PUNCT
It PRON
was AUX
developed VERB
by ADP
the DET
     SPACE
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases NOUN
and CCONJ
     SPACE
printed VERB
by ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
     SPACE
presents VERB
college NOUN
level NOUN
instruction NOUN
in ADP
immunology NOUN
. PUNCT
  SPACE
It PRON
is AUX
     SPACE
appropriate ADJ
for ADP
nursing NOUN
or CCONJ
pharmacology NOUN
students NOUN
and CCONJ
for ADP
     SPACE
persons NOUN
receiving VERB
college NOUN
training NOUN
in ADP
other ADJ
areas NOUN
within ADP
the DET
     SPACE
health NOUN
professions NOUN
. PUNCT
  SPACE
36 NUM
pages NOUN
. PUNCT
  SPACE
MATERIALS NOUN
TO PART
HELP VERB
STOP PROPN
TOBACCO PROPN
USE PROPN
      SPACE
CHEW NOUN
OR CCONJ
SNUFF PROPN
EDUCATOR PROPN
PACKAGE NOUN
( PUNCT
91 NUM
- SYM
2976 NUM
) PUNCT
. PUNCT
  SPACE
Each DET
package NOUN
     SPACE
contains VERB
: PUNCT
           SPACE
Ten NUM
copies NOUN
of ADP
CHEW NOUN
OR CCONJ
SNUFF PROPN
IS VERB
REAL ADV
BAD ADJ
STUFF NOUN
, PUNCT
a DET
          SPACE
brochure NOUN
designed VERB
for ADP
seventh ADJ
and CCONJ
eighth ADJ
graders NOUN
that PRON
          SPACE
describes VERB
the DET
health NOUN
and CCONJ
social ADJ
effects NOUN
of ADP
usingHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
24Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
          SPACE
smokeless ADJ
tobacco NOUN
products NOUN
. PUNCT
  SPACE
When ADV
fully ADV
opened VERB
, PUNCT
the DET
          SPACE
brochure NOUN
can AUX
be AUX
used VERB
as SCONJ
a DET
poster NOUN
. PUNCT
           SPACE
One NUM
copy NOUN
of ADP
CHEW NOUN
OR CCONJ
SNUFF PROPN
IS VERB
REAL ADV
BAD ADJ
STUFF NOUN
: PUNCT
  SPACE
A DET
GUIDE PROPN
          SPACE
TO PART
MAKE VERB
YOUNG ADJ
PEOPLE NOUN
AWARE ADJ
OF ADP
THE DET
DANGERS NOUN
OF ADP
USING VERB
          SPACE
SMOKELESS PROPN
TOBACCO PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
a DET
lesson NOUN
plan NOUN
for ADP
          SPACE
teachers NOUN
. PUNCT
  SPACE
It PRON
contains VERB
facts NOUN
about ADP
smokeless NOUN
tobacco NOUN
, PUNCT
          SPACE
suggested VERB
classroom NOUN
activities NOUN
, PUNCT
and CCONJ
selected VERB
          SPACE
educational ADJ
resources NOUN
. PUNCT
      SPACE
HOW ADV
TO PART
HELP VERB
YOUR PRON
PATIENTS NOUN
STOP VERB
SMOKING NOUN
: PUNCT
A DET
NATIONAL PROPN
CANCER PROPN
     SPACE
INSTITUTE PROPN
MANUAL PROPN
FOR ADP
PHYSICIANS NOUN
( PUNCT
92 NUM
- PUNCT
3064 NUM
) PUNCT
. PUNCT
  SPACE
This DET
is AUX
a DET
step- ADJ
     SPACE
by ADP
- PUNCT
step NOUN
handbook NOUN
for ADP
instituting VERB
smoking NOUN
cessation NOUN
     SPACE
techniques NOUN
in ADP
medical ADJ
practices NOUN
. PUNCT
  SPACE
The DET
manual NOUN
, PUNCT
with ADP
resource NOUN
     SPACE
lists NOUN
and CCONJ
tear NOUN
- PUNCT
out ADP
materials NOUN
, PUNCT
is AUX
based VERB
on ADP
the DET
results NOUN
of ADP
NCI PROPN
     SPACE
clinical ADJ
trials NOUN
. PUNCT
  SPACE
75 NUM
pages NOUN
. PUNCT
      SPACE
HOW ADV
TO PART
HELP VERB
YOUR PRON
PATIENTS NOUN
STOP VERB
USING VERB
TOBACCO NOUN
: PUNCT
A DET
NATIONAL PROPN
     SPACE
CANCER PROPN
INSTITUTE PROPN
MANUAL PROPN
FOR ADP
THE DET
ORAL PROPN
HEALTH NOUN
TEAM NOUN
( PUNCT
91 NUM
- PUNCT
3191 NUM
) PUNCT
. PUNCT
     SPACE
This DET
is AUX
a DET
handbook NOUN
for ADP
dentists NOUN
, PUNCT
dental ADJ
hygienists NOUN
, PUNCT
and CCONJ
     SPACE
dental ADJ
assistants NOUN
. PUNCT
  SPACE
It PRON
complements VERB
the DET
physicians PROPN
' PART
manual ADJ
     SPACE
and CCONJ
includes VERB
additional ADJ
information NOUN
on ADP
smoking VERB
prevention NOUN
     SPACE
and CCONJ
on ADP
smokeless ADJ
tobacco NOUN
use NOUN
. PUNCT
  SPACE
58 NUM
pages NOUN
. PUNCT
      SPACE
PHARMACISTS PROPN
HELPING PROPN
SMOKERS NOUN
QUIT PROPN
KIT PROPN
. PUNCT
  SPACE
A DET
packet NOUN
of ADP
materials NOUN
     SPACE
to PART
help VERB
pharmacists NOUN
encourage VERB
their PRON
smoking NOUN
patients NOUN
to ADP
     SPACE
quit NOUN
. PUNCT
  SPACE
Contains VERB
a DET
pharmacist NOUN
's PART
guide NOUN
and CCONJ
self NOUN
- PUNCT
help NOUN
materials NOUN
     SPACE
for ADP
25 NUM
patients NOUN
. PUNCT
      SPACE
SCHOOL PROPN
PROGRAMS PROPN
TO PART
PREVENT VERB
SMOKING NOUN
: PUNCT
THE DET
NATIONAL PROPN
CANCER PROPN
     SPACE
INSTITUTE VERB
GUIDE PROPN
TO PART
STRATEGIES NOUN
THAT ADP
SUCCEED PROPN
( PUNCT
90 NUM
- SYM
500 NUM
) PUNCT
. PUNCT
  SPACE
This DET
     SPACE
guide NOUN
outlines VERB
eight NUM
essential ADJ
elements NOUN
of ADP
a DET
successful ADJ
     SPACE
school NOUN
- PUNCT
based VERB
smoking NOUN
prevention NOUN
program NOUN
based VERB
on ADP
NCI PROPN
     SPACE
research NOUN
. PUNCT
  SPACE
It PRON
includes VERB
a DET
list NOUN
of ADP
available ADJ
curriculum NOUN
     SPACE
resources NOUN
and CCONJ
selected VERB
references NOUN
. PUNCT
  SPACE
24 NUM
pages NOUN
. PUNCT
       SPACE
SELF PROPN
- PUNCT
GUIDED PROPN
STRATEGIES NOUN
FOR ADP
SMOKING NOUN
CESSATION NOUN
: PUNCT
A DET
PROGRAM PROPN
     SPACE
PLANNER PROPN
'S PART
GUIDE PROPN
( PUNCT
91 NUM
- SYM
3104 NUM
) PUNCT
. PUNCT
This DET
booklet NOUN
outlines VERB
key VERB
     SPACE
characteristics NOUN
of ADP
successful ADJ
self NOUN
- PUNCT
help NOUN
materials NOUN
and CCONJ
     SPACE
programs NOUN
based VERB
on ADP
NCI PROPN
collaborative ADJ
research NOUN
. PUNCT
  SPACE
It PRON
lists VERB
     SPACE
additional ADJ
resources NOUN
and CCONJ
references NOUN
. PUNCT
36 NUM
pages NOUN
. PUNCT
       SPACE
SMOKING PROPN
POLICY PROPN
: PUNCT
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
. PUNCT
These DET
ten NUM
fact NOUN
sheetsHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
25Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
provide VERB
basic ADJ
information NOUN
about ADP
the DET
establishment NOUN
of ADP
     SPACE
worksite ADJ
smoking NOUN
policies NOUN
. PUNCT
Topics NOUN
range VERB
from ADP
the DET
health NOUN
     SPACE
effects NOUN
of ADP
environmental ADJ
tobacco NOUN
smoke NOUN
to ADP
legal ADJ
issues NOUN
     SPACE
concerning VERB
policy NOUN
implementation NOUN
. PUNCT
      SPACE
STRATEGIES VERB
TO PART
CONTROL VERB
TOBACCO NOUN
USE NOUN
IN ADP
THE DET
UNITED PROPN
STATES PROPN
: PUNCT
  SPACE
A DET
     SPACE
BLUEPRINT NOUN
FOR ADP
PUBLIC ADJ
HEALTH NOUN
ACTION NOUN
IN ADP
THE DET
1990s NOUN
( PUNCT
92 NUM
- SYM
3316 NUM
: PUNCT
     SPACE
Smoking PROPN
and CCONJ
Control PROPN
Monograph PROPN
No PROPN
. NOUN
1 NUM
) PUNCT
. PUNCT
  SPACE
This DET
volume NOUN
provides VERB
     SPACE
a DET
summary NOUN
of ADP
what PRON
has AUX
been AUX
learned VERB
from ADP
40 NUM
years NOUN
of ADP
a DET
public ADJ
     SPACE
health NOUN
effort NOUN
against ADP
smoking NOUN
, PUNCT
from ADP
the DET
early ADJ
trial NOUN
- PUNCT
and- ADP
     SPACE
error NOUN
health NOUN
information NOUN
campaigns NOUN
of ADP
the DET
1960s NOUN
to ADP
the DET
NCI PROPN
's PART
     SPACE
science NOUN
- PUNCT
based VERB
project NOUN
, PUNCT
American PROPN
Stop PROPN
Smoking PROPN
Intervention NOUN
     SPACE
Study NOUN
for ADP
Cancer PROPN
Prevention PROPN
, PUNCT
which PRON
began VERB
in ADP
1991 NUM
. PUNCT
  SPACE
It PRON
offers VERB
     SPACE
reasons NOUN
why ADV
comprehensive ADJ
smoking NOUN
control NOUN
strategies NOUN
are AUX
now ADV
     SPACE
needed VERB
to PART
address VERB
the DET
smoker NOUN
's PART
total ADJ
environment NOUN
and CCONJ
to PART
     SPACE
reduce VERB
smoking NOUN
prevalence NOUN
significantly ADV
over ADP
the DET
next ADJ
     SPACE
decade NOUN
. PUNCT
  SPACE
MATERIALS PROPN
FOR ADP
OUTREACH PROPN
PROGRAMS PROPN
      SPACE
CANCER PROPN
PREVENTION PROPN
AND CCONJ
EARLY PROPN
DETECTION NOUN
: PUNCT
  SPACE
COMMUNITY PROPN
OUTREACH VERB
     SPACE
PROGRAMS PROPN
FOR ADP
HEALTH NOUN
PROFESSIONALS NOUN
         SPACE
Three NUM
kits NOUN
are AUX
available ADJ
for ADP
community NOUN
program NOUN
planners NOUN
        SPACE
and CCONJ
health NOUN
professionals NOUN
to PART
set VERB
up ADP
local ADJ
cancer NOUN
        SPACE
prevention NOUN
and CCONJ
early ADJ
detection NOUN
education NOUN
projects NOUN
: PUNCT
            SPACE
DO VERB
THE DET
RIGHT ADJ
THING NOUN
. PUNCT
. PUNCT
. PUNCT
GET VERB
A DET
NEW ADJ
ATTITUDE NOUN
ABOUT ADP
           SPACE
CANCER PROPN
COMMUNITY PROPN
OUTREACH VERB
PROGRAM PROPN
. PUNCT
  SPACE
This DET
community NOUN
           SPACE
outreach NOUN
kit NOUN
targets VERB
Black ADJ
American ADJ
audiences NOUN
. PUNCT
  SPACE
It PRON
           SPACE
contains VERB
materials NOUN
to PART
help VERB
health NOUN
professionals NOUN
           SPACE
conduct NOUN
community NOUN
education NOUN
programs NOUN
for ADP
black ADJ
           SPACE
audiences NOUN
. PUNCT
  SPACE
The DET
kit NOUN
emphasizes VERB
the DET
early ADJ
detection NOUN
of ADP
           SPACE
breast NOUN
cancer NOUN
by ADP
mammography NOUN
and CCONJ
of ADP
cervical ADJ
cancer NOUN
by ADP
           SPACE
the DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
It PRON
also ADV
discusses VERB
smoking NOUN
and CCONJ
           SPACE
nutrition NOUN
. PUNCT
  SPACE
The DET
kit NOUN
includes VERB
helpful ADJ
program NOUN
guidance NOUN
, PUNCT
           SPACE
facts NOUN
, PUNCT
news NOUN
articles NOUN
, PUNCT
visuals NOUN
, PUNCT
and CCONJ
brochures NOUN
. PUNCT
            SPACE
HAGALO PROPN
HOY PROPN
COMMUNITY PROPN
OUTREACH PROPN
PROGRAM PROPN
. PUNCT
  SPACE
This DET
community NOUN
           SPACE
outreach NOUN
kit NOUN
targets VERB
Hispanic ADJ
audiences NOUN
. PUNCT
  SPACE
It PRON
contains VERB
           SPACE
bilingual ADJ
and CCONJ
Spanish ADJ
language NOUN
materials NOUN
to PART
help VERB
           SPACE
health NOUN
professionals NOUN
conduct VERB
community PROPN
education NOUN
           SPACE
programs NOUN
. PUNCT
  SPACE
The DET
materials NOUN
educate VERB
Hispanic ADJ
audiences NOUN
           SPACE
about ADP
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
by ADP
mammographyHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
26Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
           SPACE
and CCONJ
of ADP
cervical ADJ
cancer NOUN
by ADP
Pap PROPN
tests NOUN
. PUNCT
  SPACE
The DET
kit NOUN
also ADV
           SPACE
discusses NOUN
smoking VERB
and CCONJ
related ADJ
issues NOUN
. PUNCT
  SPACE
The DET
kit NOUN
           SPACE
includes VERB
helpful ADJ
guidance NOUN
, PUNCT
facts NOUN
, PUNCT
news NOUN
articles NOUN
, PUNCT
           SPACE
visuals NOUN
and CCONJ
brochures NOUN
. PUNCT
            SPACE
ONCE ADV
A DET
YEAR NOUN
.. PUNCT
FOR ADP
A DET
LIFETIME NOUN
COMMUNITY PROPN
OUTREACH VERB
           SPACE
MAMMOGRAPHY PROPN
PROGRAM PROPN
. PUNCT
  SPACE
This DET
community NOUN
outreach NOUN
kit PROPN
           SPACE
targets VERB
all DET
women NOUN
age VERB
40 NUM
or CCONJ
over ADV
. PUNCT
  SPACE
It PRON
supplies VERB
           SPACE
community NOUN
program NOUN
planners NOUN
and CCONJ
health NOUN
professionals NOUN
           SPACE
with ADP
planning VERB
guidance NOUN
, PUNCT
facts NOUN
about ADP
mammography NOUN
, PUNCT
news NOUN
           SPACE
articles NOUN
, PUNCT
visuals NOUN
and CCONJ
brochures NOUN
. PUNCT
       SPACE
MAKING PROPN
HEALTH NOUN
COMMUNICATION NOUN
PROGRAMS PROPN
WORK NOUN
: PUNCT
A DET
PLANNER PROPN
'S PART
GUIDE PROPN
     SPACE
( PUNCT
92 NUM
- PUNCT
1493 NUM
) PUNCT
. PUNCT
  SPACE
This DET
handbook NOUN
presents VERB
key ADJ
principles NOUN
and CCONJ
steps NOUN
     SPACE
in ADP
developing VERB
and CCONJ
evaluating VERB
health NOUN
communications NOUN
programs NOUN
     SPACE
for ADP
the DET
public NOUN
, PUNCT
patients NOUN
, PUNCT
and CCONJ
health NOUN
professionals NOUN
. PUNCT
  SPACE
It PRON
     SPACE
expands VERB
upon SCONJ
and CCONJ
replaces VERB
" PUNCT
Pretesting VERB
in ADP
Health PROPN
     SPACE
Communications PROPN
" PUNCT
and CCONJ
" PUNCT
Making VERB
PSAs NOUN
Work VERB
. PUNCT
" PUNCT
131 NUM
pages NOUN
. PUNCT
      SPACE
SUPPORT PROPN
MATERIAL NOUN
FOR ADP
COMMUNITY PROPN
OUTREACH PROPN
PROGRAMS PROPN
      SPACE
The DET
video NOUN
and CCONJ
slide NOUN
presentations NOUN
listed VERB
below ADP
support NOUN
the DET
     SPACE
mammography NOUN
outreach NOUN
programs NOUN
. PUNCT
         SPACE
ONCE PROPN
A DET
YEAR NOUN
... PUNCT
FOR ADP
A DET
LIFETIME PROPN
VIDEOTAPE NOUN
. PUNCT
  SPACE
This DET
5-minute NUM
        SPACE
VHS PROPN
videotape NOUN
uses VERB
a DET
dramatic ADJ
format NOUN
to PART
highlight VERB
the DET
        SPACE
important ADJ
facts NOUN
about ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
        SPACE
cancer NOUN
by ADP
mammography NOUN
. PUNCT
         SPACE
UNA PROPN
VEZ PROPN
AL PROPN
ANO PROPN
... PUNCT
PARA PROPN
TODA PROPN
UNA PROPN
VIDA PROPN
VIDEOTAPE NOUN
. PUNCT
  SPACE
This DET
27- NUM
        SPACE
minute ADJ
Spanish ADJ
videotape NOUN
informs NOUN
Spanish PROPN
- PUNCT
speaking VERB
women NOUN
        SPACE
of ADP
the DET
need NOUN
for ADP
medical ADJ
screening NOUN
, PUNCT
particularly ADV
        SPACE
mammography NOUN
. PUNCT
  SPACE
It PRON
explains VERB
commonly ADV
misunderstood NOUN
facts NOUN
        SPACE
about ADP
breast NOUN
cancer NOUN
and CCONJ
early ADJ
detection NOUN
. PUNCT
  SPACE
The DET
program NOUN
, PUNCT
in ADP
        SPACE
a DET
dramatic ADJ
format NOUN
, PUNCT
features VERB
Edward PROPN
James PROPN
Olmos PROPN
and CCONJ
        SPACE
Cristina PROPN
Saralegui PROPN
. PUNCT
         SPACE
ONCE PROPN
A DET
YEAR NOUN
... PUNCT
FOR ADP
A DET
LIFETIME PROPN
SPEAKER NOUN
'S PART
KIT PROPN
( PUNCT
SLIDE PROPN
SHOW PROPN
) PUNCT
. PUNCT
        SPACE
This DET
kit NOUN
includes VERB
66 NUM
full ADJ
- PUNCT
color NOUN
slides NOUN
and CCONJ
a DET
number- ADJ
        SPACE
coded VERB
, PUNCT
ready ADJ
- PUNCT
to PART
- PUNCT
read VERB
script NOUN
suitable ADJ
for ADP
a DET
mammography NOUN
        SPACE
presentation NOUN
to ADP
a DET
large ADJ
group NOUN
. PUNCT
  SPACE
It PRON
addresses VERB
the DET
        SPACE
misconceptions NOUN
prevalent ADJ
about ADP
mammography NOUN
and CCONJ
urges VERB
        SPACE
women NOUN
age NOUN
40 NUM
and CCONJ
older ADJ
to PART
get AUX
regular ADJ
mammograms NOUN
so SCONJ
that SCONJ
        SPACE
breast NOUN
cancer NOUN
can AUX
be AUX
detected VERB
as ADV
early ADV
as SCONJ
possible ADJ
. PUNCT
  SPACE
KitHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
27Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
        SPACE
includes VERB
a DET
guide NOUN
, PUNCT
poster NOUN
, PUNCT
media NOUN
announcement NOUN
, PUNCT
news NOUN
        SPACE
feature NOUN
, PUNCT
flyer NOUN
, PUNCT
and CCONJ
pamphlets NOUN
on ADP
mammography NOUN
. PUNCT
  SPACE
This DET
kit NOUN
        SPACE
is AUX
available ADJ
directly ADV
by ADP
writing VERB
to ADP
: PUNCT
  SPACE
Modern PROPN
, PUNCT
5000 NUM
Park PROPN
        SPACE
Street PROPN
North PROPN
, PUNCT
St. PROPN
Petersburg PROPN
, PUNCT
FL PROPN
33709 NUM
- SYM
9989.--------- NUM
end NOUN
of ADP
part NOUN
2 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59285From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
4/4 NUM
- PUNCT
------------ ADV
cut NOUN
here ADV
-----------------call PROPN
for ADP
employers NOUN
to PART
keep VERB
  SPACE
information NOUN
about ADP
the DET
HIV PROPN
status NOUN
of ADP
health NOUN
- PUNCT
care NOUN
workers NOUN
  SPACE
confidential ADJ
. PUNCT
  SPACE
But CCONJ
doctors NOUN
who PRON
know VERB
of ADP
an DET
HIV PROPN
- PUNCT
positive ADJ
colleague NOUN
  SPACE
who PRON
has AUX
not PART
sought VERB
advice NOUN
must AUX
inform VERB
the DET
employing VERB
authority NOUN
and CCONJ
the DET
appropriate ADJ
professional ADJ
regulatory ADJ
body NOUN
. PUNCT
  SPACE
The DET
guidelines NOUN
  SPACE
also ADV
emphasize VERB
the DET
significance NOUN
of ADP
notifying VERB
all DET
patients NOUN
on ADP
whom PRON
an DET
invasive ADJ
procedure NOUN
has AUX
been AUX
done VERB
by ADP
an DET
infected ADJ
health NOUN
- PUNCT
care NOUN
  SPACE
worker NOUN
. PUNCT
  SPACE
A DET
model NOUN
letter NOUN
to ADP
patients NOUN
who PRON
have AUX
come VERB
into ADP
contact NOUN
  SPACE
with ADP
such DET
an DET
individual NOUN
is AUX
provided VERB
, PUNCT
along ADP
with ADP
suggestions NOUN
for ADP
  SPACE
health NOUN
officials NOUN
on ADP
how ADV
to PART
deal VERB
with ADP
the DET
media NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
a DET
  SPACE
U.K. PROPN
advisory ADJ
panel NOUN
on ADP
HIV PROPN
infection NOUN
in ADP
health NOUN
- PUNCT
care NOUN
workers NOUN
has AUX
  SPACE
been AUX
formed VERB
to PART
provide VERB
specific ADJ
occupational ADJ
recommendations NOUN
to ADP
  SPACE
those DET
treating VERB
such ADJ
patients NOUN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Properties NOUN
of ADP
an DET
HIV PROPN
' PUNCT
Vaccine PROPN
' PUNCT
" PUNCT
Nature PROPN
( PUNCT
04/08/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
362 NUM
, PUNCT
No NOUN
. NOUN
6420 NUM
, PUNCT
P. PROPN
504 NUM
   SPACE
( PUNCT
Volvovitz PROPN
, PUNCT
Franklin PROPN
and CCONJ
Smith PROPN
, PUNCT
Gale PROPN
) PUNCT
      SPACE
The DET
questions NOUN
raised VERB
by ADP
Moore PROPN
et PROPN
al PROPN
. PUNCT
about ADP
recombinant ADJ
gp160 PROPN
  SPACE
envelope PROPN
glycoprotein PROPN
precursor NOUN
from ADP
HIV-1 PROPN
produced VERB
by ADP
  SPACE
MicroGeneSys PROPN
are AUX
advantages NOUN
rather ADV
than SCONJ
disadvantages NOUN
, PUNCT
write VERB
  SPACE
Franklin PROPN
Volvovitz PROPN
and CCONJ
Gale PROPN
Smith PROPN
of ADP
MicroGeneSys PROPN
in ADP
Meriden PROPN
, PUNCT
  SPACE
Conn. PROPN
  SPACE
Moore PROPN
et PROPN
al PROPN
. PROPN
says VERB
that SCONJ
gp160 PROPN
in ADP
a DET
baculovirus ADJ
expression NOUN
  SPACE
system NOUN
does AUX
not PART
bind VERB
strongly ADV
to ADP
the DET
CD4 PROPN
receptor NOUN
, PUNCT
and CCONJ
that SCONJ
this DET
  SPACE
recombinant ADJ
gp160 PROPN
does AUX
not PART
stimulate VERB
the DET
same ADJ
antibodies NOUN
as SCONJ
the DET
  SPACE
HIV-1 PROPN
virus NOUN
does AUX
in ADP
natural ADJ
infection NOUN
. PUNCT
  SPACE
But CCONJ
vaccination NOUN
with ADP
  SPACE
recombinant ADJ
gp160 PROPN
in ADP
patients NOUN
infected VERB
with ADP
HIV-1 PROPN
broadens NOUN
HIV-1 PROPN
  SPACE
specific ADJ
envelope NOUN
- PUNCT
directed VERB
immune ADJ
responses NOUN
, PUNCT
including VERB
  SPACE
crossreactive ADJ
antibodies NOUN
to ADP
gp160 PROPN
epitopes NOUN
and CCONJ
CD4 PROPN
and CCONJ
CD8 PROPN
  SPACE
cytotoxic PROPN
T PROPN
- PUNCT
cell NOUN
responses NOUN
. PUNCT
  SPACE
Volvovitz PROPN
and CCONJ
Smith PROPN
claim NOUN
that SCONJ
they PRON
  SPACE
never ADV
intended VERB
their PRON
gp160 PROPN
molecule NOUN
to PART
be AUX
identical ADJ
to ADP
the DET
native ADJ
protein NOUN
. PUNCT
  SPACE
Antibody NOUN
responses VERB
against ADP
native ADJ
HIV-1 PROPN
proteins NOUN
, PUNCT
  SPACE
including VERB
the DET
types NOUN
described VERB
by ADP
Moore PROPN
et PROPN
al PROPN
. PROPN
, PUNCT
exist VERB
in ADP
nearly ADV
  SPACE
all DET
AIDS PROPN
patients NOUN
but CCONJ
do AUX
not PART
prevent VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
42Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993progression NUM
of ADP
HIV PROPN
disease NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
binding NOUN
of ADP
gp120 PROPN
or CCONJ
gp120-antibody PROPN
complexes NOUN
to ADP
  SPACE
CD4 PROPN
has AUX
been AUX
shown VERB
to PART
interfere VERB
with ADP
antigen PROPN
specific ADJ
activation NOUN
  SPACE
of ADP
CD4 PROPN
cells NOUN
and CCONJ
trigger NOUN
programmed VERB
cell NOUN
death NOUN
in ADP
vitro PROPN
, PUNCT
which PRON
  SPACE
may AUX
contribute VERB
to ADP
the DET
pathogenesis NOUN
of ADP
HIV PROPN
infection NOUN
. PUNCT
  SPACE
The DET
absence NOUN
of ADP
CD4 PROPN
binding VERB
by ADP
the DET
MicroGeneSys PROPN
gp160 PROPN
vaccine NOUN
may AUX
therefore ADV
be AUX
viewed VERB
as SCONJ
an DET
added VERB
safety NOUN
feature NOUN
. PUNCT
  SPACE
Phase NOUN
I PRON
studies NOUN
have AUX
  SPACE
demonstrated VERB
stable ADJ
CD4 PROPN
counts NOUN
, PUNCT
stimulation NOUN
of ADP
cytotoxic PROPN
T PROPN
cells NOUN
, PUNCT
and CCONJ
the DET
suggestion NOUN
of ADP
restoration NOUN
of ADP
immune ADJ
function NOUN
. PUNCT
  SPACE
Based VERB
on ADP
  SPACE
these DET
and CCONJ
other ADJ
clinical ADJ
results NOUN
, PUNCT
MicroGeneSys PROPN
gp160 PROPN
was AUX
chosen VERB
  SPACE
by ADP
researchers NOUN
at ADP
the DET
Karolinska PROPN
Institute PROPN
in ADP
Sweden PROPN
for ADP
the DET
  SPACE
first ADJ
phase NOUN
III NUM
vaccine NOUN
therapy NOUN
studies NOUN
, PUNCT
conclude VERB
Volvovitz PROPN
and CCONJ
  SPACE
Smith PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
HIV-1 PROPN
Infection NOUN
: PUNCT
Breast PROPN
Milk PROPN
and CCONJ
HIV-1 PROPN
Transmission PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
930 NUM
  SPACE
( PUNCT
Mok PROPN
, PUNCT
Jacqueline PROPN
) PUNCT
      SPACE
There PRON
are AUX
still ADV
more ADJ
questions NOUN
than SCONJ
answers NOUN
regarding VERB
  SPACE
HIV-1-positive ADJ
women NOUN
breastfeeding VERB
their PRON
babies NOUN
, PUNCT
writes VERB
  SPACE
Jacqueline PROPN
Mok PROPN
of ADP
the DET
Lancet PROPN
. PUNCT
  SPACE
The DET
anti ADJ
- ADJ
infective ADJ
properties NOUN
of ADP
  SPACE
milk NOUN
are AUX
well ADV
documented VERB
. PUNCT
  SPACE
While SCONJ
the DET
numbers NOUN
of ADP
leukocytes NOUN
, PUNCT
  SPACE
concentrations NOUN
of ADP
lactoferrin PROPN
and CCONJ
IgA PROPN
, PUNCT
and CCONJ
lymphocyte PROPN
mitogenic NOUN
  SPACE
activity NOUN
decline NOUN
sharply ADV
during ADP
the DET
first ADJ
two NUM
to PART
three NUM
months NOUN
of ADP
  SPACE
lactation NOUN
to ADP
barely ADV
detectable ADJ
levels NOUN
, PUNCT
lactoferrin PROPN
and CCONJ
IgA PROPN
then ADV
  SPACE
increase NOUN
from ADP
three NUM
to ADP
twelve NUM
months NOUN
, PUNCT
with ADP
90 NUM
percent NOUN
of ADP
total ADJ
  SPACE
IgA PROPN
in ADP
milk NOUN
being AUX
secretory ADJ
IgA. NOUN
  SPACE
Breastfeeding PROPN
protects VERB
infants NOUN
  SPACE
against ADP
gastrointestinal ADJ
and CCONJ
respiratory ADJ
illnesses NOUN
, PUNCT
in ADP
both DET
  SPACE
normal ADJ
and CCONJ
uninfected ADJ
children NOUN
born VERB
to ADP
HIV PROPN
- PUNCT
positive ADJ
mothers NOUN
. PUNCT
  SPACE
The DET
Italian PROPN
National PROPN
Registry PROPN
of ADP
AIDS PROPN
discovered VERB
that SCONJ
breastfed VERB
HIV-1 PROPN
infected ADJ
children NOUN
had AUX
a DET
longer ADV
median ADJ
incubation NOUN
time NOUN
( PUNCT
19 NUM
months NOUN
) PUNCT
than SCONJ
bottlefed VERB
infants NOUN
( PUNCT
9.7 NUM
months NOUN
) PUNCT
. PUNCT
  SPACE
Breastfed ADJ
children NOUN
also ADV
had AUX
a DET
slower ADJ
progression NOUN
to ADP
AIDS PROPN
. PUNCT
  SPACE
There PRON
is AUX
no DET
agreement NOUN
on ADP
which PRON
  SPACE
antibodies NOUN
offer VERB
protection NOUN
against ADP
HIV-1 PROPN
infection NOUN
. PUNCT
  SPACE
Studies NOUN
of ADP
  SPACE
the DET
biological ADJ
properties NOUN
of ADP
milk NOUN
from ADP
15 NUM
HIV-1 PROPN
infected ADJ
women NOUN
  SPACE
showed VERB
the DET
presence NOUN
of ADP
IgG PROPN
and CCONJ
IgA NOUN
antibodies NOUN
against ADP
envelope NOUN
  SPACE
glycoproteins NOUN
, PUNCT
as ADV
well ADV
as SCONJ
IgA NOUN
antibodies NOUN
against ADP
core NOUN
antigens NOUN
. PUNCT
   SPACE
Binding PROPN
of ADP
HIV-1 PROPN
to ADP
the DET
CD4 PROPN
receptor NOUN
can AUX
be AUX
inhibited VERB
by ADP
a DET
human ADJ
  SPACE
milk NOUN
factor NOUN
. PUNCT
  SPACE
In ADP
the DET
developing VERB
world NOUN
, PUNCT
where ADV
infectious ADJ
disease NOUN
  SPACE
and CCONJ
malnutrition NOUN
contribute VERB
significantly ADV
to ADP
infant NOUN
mortality NOUN
, PUNCT
  SPACE
breast NOUN
milk NOUN
is AUX
still ADV
the DET
best ADJ
food NOUN
for ADP
infants NOUN
, PUNCT
regardless ADV
of ADP
the DET
mother NOUN
's PART
HIV PROPN
status NOUN
. PUNCT
  SPACE
Transmission PROPN
might AUX
be AUX
restricted VERB
by ADP
  SPACE
breastfeeding NOUN
after ADP
colostrum NOUN
and CCONJ
early ADJ
milk NOUN
have AUX
been AUX
expressed VERB
  SPACE
and CCONJ
discarded VERB
. PUNCT
  SPACE
The DET
possibility NOUN
remains VERB
that SCONJ
breast NOUN
milk NOUN
could AUX
  SPACE
protect VERB
the DET
infant NOUN
who PRON
is AUX
already ADV
infected VERB
with ADP
HIV PROPN
at ADP
birth NOUN
and CCONJ
  SPACE
may AUX
even ADV
delay VERB
progression NOUN
to ADP
AIDS PROPN
, PUNCT
concludes VERB
Mok PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Absence PROPN
of ADP
HIV PROPN
Transmission PROPN
From ADP
an DET
Infected ADJ
Dentist NOUN
to ADP
His PRON
Patients PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
1802 NUM
  SPACE
( PUNCT
Dickinson PROPN
, PUNCT
Gordon PROPN
M. PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
If SCONJ
universal ADJ
precautions NOUN
are AUX
practiced VERB
, PUNCT
the DET
risk NOUN
of ADP
HIV PROPN
  SPACE
transmission NOUN
from ADP
dentist NOUN
to ADP
patient NOUN
appears NOUN
to PART
be AUX
infinitesimal ADJ
, PUNCT
write VERB
Gordon PROPN
M. PROPN
Dickinson PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
43Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993et NUM
al PROPN
. PROPN
of ADP
the DET
University PROPN
of ADP
Miami PROPN
  SPACE
School PROPN
of ADP
Medicine PROPN
in ADP
Miami PROPN
, PUNCT
Fla. PROPN
  SPACE
The DET
researchers NOUN
contacted VERB
all DET
  SPACE
patients NOUN
treated VERB
by ADP
a DET
dentist NOUN
with ADP
AIDS PROPN
and CCONJ
attempts NOUN
were AUX
made VERB
to PART
contact VERB
all DET
patients NOUN
for ADP
HIV PROPN
testing NOUN
. PUNCT
  SPACE
Living VERB
patients NOUN
with ADP
newly ADV
detected VERB
HIV PROPN
infection NOUN
were AUX
interviewed VERB
, PUNCT
and CCONJ
DNA NOUN
sequence NOUN
  SPACE
analysis NOUN
was AUX
performed VERB
to PART
compare VERB
genetic ADJ
relatedness NOUN
of ADP
their PRON
  SPACE
HIV PROPN
to ADP
that DET
of ADP
the DET
dentist NOUN
. PUNCT
  SPACE
Death NOUN
certificates NOUN
were AUX
obtained VERB
for ADP
deceased ADJ
patients NOUN
, PUNCT
and CCONJ
the DET
medical ADJ
records NOUN
of ADP
those DET
with ADP
  SPACE
diagnoses NOUN
suggestive ADJ
of ADP
HIV PROPN
disease NOUN
or CCONJ
drug NOUN
abuse NOUN
and CCONJ
those DET
dying VERB
under ADP
the DET
age NOUN
of ADP
50 NUM
years NOUN
were AUX
examined VERB
in ADP
detail NOUN
. PUNCT
  SPACE
There PRON
were AUX
  SPACE
1,192 NUM
patients NOUN
who PRON
had AUX
undergone VERB
9,267 NUM
procedures NOUN
, PUNCT
of ADP
whom PRON
124 NUM
  SPACE
were AUX
deceased ADJ
. PUNCT
  SPACE
An DET
examination NOUN
of ADP
the DET
death NOUN
certificates NOUN
of ADP
  SPACE
patients NOUN
identified VERB
five NUM
who PRON
had AUX
died VERB
with ADP
HIV PROPN
infection NOUN
, PUNCT
all DET
of ADP
  SPACE
whom PRON
were AUX
either CCONJ
homosexuals NOUN
or CCONJ
IV PROPN
- PUNCT
drug NOUN
users NOUN
. PUNCT
  SPACE
The DET
researchers NOUN
  SPACE
were AUX
able ADJ
to PART
detect VERB
962 NUM
of ADP
the DET
remaining VERB
1,048 NUM
patients NOUN
, PUNCT
and CCONJ
900 NUM
  SPACE
agreed VERB
to PART
be AUX
tested VERB
. PUNCT
  SPACE
HIV PROPN
infection NOUN
was AUX
reported VERB
in ADP
five NUM
of ADP
the DET
  SPACE
900 NUM
patients NOUN
, PUNCT
including VERB
four NUM
who PRON
had AUX
clear ADJ
evidence NOUN
of ADP
risk NOUN
  SPACE
factors NOUN
for ADP
the DET
disease NOUN
. PUNCT
  SPACE
One NUM
patient NOUN
who PRON
had AUX
only ADV
a DET
single ADJ
  SPACE
evaluation NOUN
by ADP
the DET
dentist NOUN
denied VERB
high ADJ
- PUNCT
risk NOUN
behavior NOUN
. PUNCT
  SPACE
Comparative ADJ
DNA PROPN
sequence NOUN
analysis NOUN
showed VERB
that SCONJ
the DET
viruses NOUN
from ADP
the DET
dentists NOUN
  SPACE
and CCONJ
these DET
five NUM
patients NOUN
were AUX
not PART
closely ADV
related ADJ
. PUNCT
  SPACE
The DET
study NOUN
  SPACE
suggests VERB
the DET
potential NOUN
for ADP
HIV PROPN
transmission NOUN
from ADP
a DET
general ADJ
  SPACE
dentist NOUN
to ADP
his PRON
patients NOUN
is AUX
minimal ADJ
in ADP
a DET
setting NOUN
in ADP
which PRON
  SPACE
universal ADJ
precautions NOUN
are AUX
strictly ADV
observed VERB
, PUNCT
conclude VERB
Dickinson PROPN
  SPACE
et PROPN
al PROPN
. PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
22 NUM
, PUNCT
1993 NUM
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
AIDS PROPN
Patients NOUN
are AUX
Susceptible ADJ
to ADP
Recurrences NOUN
of ADP
TB PROPN
, PUNCT
Study PROPN
Says VERB
" PUNCT
Washington PROPN
Post PROPN
( PUNCT
04/22/93 PUNCT
) PUNCT
, PUNCT
P. PROPN
A13 PROPN
      SPACE
Tuberculosis PROPN
can AUX
strike VERB
AIDS PROPN
patients NOUN
more ADV
than SCONJ
once ADV
, PUNCT
which PRON
makes VERB
the DET
resurging VERB
health NOUN
hazard NOUN
harder ADV
to PART
control VERB
, PUNCT
according VERB
to ADP
a DET
  SPACE
study NOUN
published VERB
in ADP
today NOUN
's PART
New PROPN
England PROPN
Journal PROPN
of ADP
Medicine PROPN
. PUNCT
   SPACE
People NOUN
who PRON
contract VERB
TB PROPN
usually ADV
develop VERB
an DET
immunity NOUN
that PRON
protects VERB
  SPACE
them PRON
if SCONJ
they PRON
are AUX
exposed VERB
to ADP
the DET
bacteria NOUN
again ADV
. PUNCT
  SPACE
But CCONJ
a DET
person NOUN
  SPACE
whose PRON
immune ADJ
system NOUN
is AUX
depleted VERB
may AUX
not PART
be AUX
able ADJ
to PART
fight VERB
off ADP
a DET
  SPACE
new ADJ
TB PROPN
infection NOUN
, PUNCT
doctors NOUN
found VERB
. PUNCT
  SPACE
Peter PROPN
M. PROPN
Small PROPN
of ADP
the DET
Howard PROPN
  SPACE
Hughes PROPN
Medical PROPN
Institute PROPN
at ADP
Stanford PROPN
University PROPN
, PUNCT
director NOUN
of ADP
the DET
  SPACE
study NOUN
, PUNCT
said VERB
that SCONJ
in ADP
order NOUN
to PART
protect VERB
against ADP
reinfection NOUN
, PUNCT
it PRON
may AUX
  SPACE
be AUX
necessary ADJ
for ADP
some DET
people NOUN
to PART
use VERB
TB PROPN
medicines NOUN
permanently ADV
. PUNCT
   SPACE
The DET
study NOUN
examined VERB
the DET
genetic ADJ
makeup NOUN
of ADP
TB ADJ
bacteria NOUN
and CCONJ
how ADV
the DET
  SPACE
germs NOUN
changed VERB
over ADP
time NOUN
in ADP
17 NUM
patients NOUN
at ADP
Kings PROPN
County PROPN
Hospital PROPN
  SPACE
in ADP
New PROPN
York PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
HIV-1 PROPN
Infection NOUN
: PUNCT
Breast PROPN
Milk PROPN
and CCONJ
HIV-1 PROPN
Transmission PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
930 NUM
  SPACE
( PUNCT
Mok PROPN
, PUNCT
Jacqueline PROPN
) PUNCT
      SPACE
There PRON
are AUX
still ADV
more ADJ
questions NOUN
than SCONJ
answers NOUN
regarding VERB
  SPACE
HIV-1-positive ADJ
women NOUN
breastfeeding VERB
their PRON
babies NOUN
, PUNCT
writes VERB
  SPACE
Jacqueline PROPN
Mok PROPN
of ADP
the DET
Lancet PROPN
. PUNCT
  SPACE
The DET
anti ADJ
- ADJ
infective ADJ
properties NOUN
of ADP
  SPACE
milk NOUN
are AUX
well ADV
documented VERB
. PUNCT
  SPACE
While SCONJ
the DET
numbers NOUN
of ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
44Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993leukocytes NUM
, PUNCT
  SPACE
concentrations NOUN
of ADP
lactoferrin PROPN
and CCONJ
IgA PROPN
, PUNCT
and CCONJ
lymphocyte PROPN
mitogenic NOUN
  SPACE
activity NOUN
decline NOUN
sharply ADV
during ADP
the DET
first ADJ
two NUM
to PART
three NUM
months NOUN
of ADP
  SPACE
lactation NOUN
to ADP
barely ADV
detectable ADJ
levels NOUN
, PUNCT
lactoferrin PROPN
and CCONJ
IgA PROPN
then ADV
  SPACE
increase NOUN
from ADP
three NUM
to ADP
twelve NUM
months NOUN
, PUNCT
with ADP
90 NUM
percent NOUN
of ADP
total ADJ
  SPACE
IgA PROPN
in ADP
milk NOUN
being AUX
secretory ADJ
IgA. NOUN
  SPACE
Breastfeeding PROPN
protects VERB
infants NOUN
  SPACE
against ADP
gastrointestinal ADJ
and CCONJ
respiratory ADJ
illnesses NOUN
, PUNCT
in ADP
both DET
  SPACE
normal ADJ
and CCONJ
uninfected ADJ
children NOUN
born VERB
to ADP
HIV PROPN
- PUNCT
positive ADJ
mothers NOUN
. PUNCT
  SPACE
The DET
Italian PROPN
National PROPN
Registry PROPN
of ADP
AIDS PROPN
discovered VERB
that SCONJ
breastfed VERB
HIV-1 PROPN
infected ADJ
children NOUN
had AUX
a DET
longer ADV
median ADJ
incubation NOUN
time NOUN
( PUNCT
19 NUM
months NOUN
) PUNCT
than SCONJ
bottlefed VERB
infants NOUN
( PUNCT
9.7 NUM
months NOUN
) PUNCT
. PUNCT
  SPACE
Breastfed ADJ
children NOUN
also ADV
had AUX
a DET
slower ADJ
progression NOUN
to ADP
AIDS PROPN
. PUNCT
  SPACE
There PRON
is AUX
no DET
agreement NOUN
on ADP
which PRON
  SPACE
antibodies NOUN
offer VERB
protection NOUN
against ADP
HIV-1 PROPN
infection NOUN
. PUNCT
  SPACE
Studies NOUN
of ADP
  SPACE
the DET
biological ADJ
properties NOUN
of ADP
milk NOUN
from ADP
15 NUM
HIV-1 PROPN
infected ADJ
women NOUN
  SPACE
showed VERB
the DET
presence NOUN
of ADP
IgG PROPN
and CCONJ
IgA NOUN
antibodies NOUN
against ADP
envelope NOUN
  SPACE
glycoproteins NOUN
, PUNCT
as ADV
well ADV
as SCONJ
IgA NOUN
antibodies NOUN
against ADP
core NOUN
antigens NOUN
. PUNCT
   SPACE
Binding PROPN
of ADP
HIV-1 PROPN
to ADP
the DET
CD4 PROPN
receptor NOUN
can AUX
be AUX
inhibited VERB
by ADP
a DET
human ADJ
  SPACE
milk NOUN
factor NOUN
. PUNCT
  SPACE
In ADP
the DET
developing VERB
world NOUN
, PUNCT
where ADV
infectious ADJ
disease NOUN
  SPACE
and CCONJ
malnutrition NOUN
contribute VERB
significantly ADV
to ADP
infant NOUN
mortality NOUN
, PUNCT
  SPACE
breast NOUN
milk NOUN
is AUX
still ADV
the DET
best ADJ
food NOUN
for ADP
infants NOUN
, PUNCT
regardless ADV
of ADP
the DET
mother NOUN
's PART
HIV PROPN
status NOUN
. PUNCT
  SPACE
Transmission PROPN
might AUX
be AUX
restricted VERB
by ADP
  SPACE
breastfeeding NOUN
after ADP
colostrum NOUN
and CCONJ
early ADJ
milk NOUN
have AUX
been AUX
expressed VERB
  SPACE
and CCONJ
discarded VERB
. PUNCT
  SPACE
The DET
possibility NOUN
remains VERB
that SCONJ
breast NOUN
milk NOUN
could AUX
  SPACE
protect VERB
the DET
infant NOUN
who PRON
is AUX
already ADV
infected VERB
with ADP
HIV PROPN
at ADP
birth NOUN
and CCONJ
  SPACE
may AUX
even ADV
delay VERB
progression NOUN
to ADP
AIDS PROPN
, PUNCT
concludes VERB
Mok PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
HIV PROPN
and CCONJ
the DET
Aetiology PROPN
of ADP
AIDS PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
957 NUM
  SPACE
( PUNCT
Duesberg PROPN
, PUNCT
Peter PROPN
) PUNCT
      SPACE
Because SCONJ
there PRON
is AUX
no DET
proof NOUN
that SCONJ
HIV PROPN
is AUX
the DET
cause NOUN
of ADP
AIDS PROPN
, PUNCT
the DET
  SPACE
hypothesis NOUN
that SCONJ
drug NOUN
use NOUN
leads VERB
to ADP
AIDS PROPN
will AUX
hopefully ADV
become VERB
a DET
  SPACE
hindrance NOUN
to ADP
the DET
physiologically ADV
( PUNCT
AZT PROPN
) PUNCT
and CCONJ
psychologically ADV
  SPACE
( PUNCT
positive ADJ
AIDS PROPN
test NOUN
) PUNCT
toxic ADJ
public ADJ
health NOUN
initiatives NOUN
, PUNCT
writes VERB
  SPACE
Peter PROPN
Duesberg PROPN
of ADP
the DET
University PROPN
of ADP
California PROPN
-- PUNCT
Berkeley PROPN
. PUNCT
  SPACE
In ADP
the DET
Lancet PROPN
's PART
March PROPN
13 NUM
issue NOUN
, PUNCT
Schechter PROPN
et PROPN
al PROPN
. PROPN
call VERB
Duesberg PROPN
's PART
  SPACE
hypothesis NOUN
that PRON
injected VERB
and CCONJ
orally ADV
used VERB
recreational ADJ
drugs NOUN
and CCONJ
  SPACE
AZT PROPN
lead VERB
to ADP
AIDS PROPN
, PUNCT
" PUNCT
a DET
hindrance NOUN
to ADP
public ADJ
health NOUN
initiatives NOUN
. PUNCT
" PUNCT
   SPACE
However ADV
, PUNCT
their PRON
hypothesis NOUN
that SCONJ
HIV PROPN
is AUX
the DET
cause NOUN
of ADP
AIDS PROPN
has AUX
not PART
  SPACE
attained VERB
any DET
public ADJ
health NOUN
benefits NOUN
. PUNCT
  SPACE
The DET
U.S. PROPN
government NOUN
spends VERB
  SPACE
$ SYM
4 NUM
billion NUM
annually ADV
, PUNCT
but CCONJ
no DET
vaccine NOUN
, PUNCT
no DET
therapy NOUN
, PUNCT
no DET
prevention NOUN
, PUNCT
  SPACE
and CCONJ
no DET
AIDS PROPN
control NOUN
have AUX
resulted VERB
from ADP
work NOUN
on ADP
this DET
hypothesis NOUN
. PUNCT
   SPACE
Schechter PROPN
et PROPN
al PROPN
. PUNCT
conclude VERB
that SCONJ
HIV PROPN
has AUX
a DET
key ADJ
role NOUN
in ADP
CD4 PROPN
  SPACE
depletion NOUN
and CCONJ
AIDS PROPN
based VERB
on ADP
epidemiological ADJ
correlations NOUN
with ADP
  SPACE
antibodies NOUN
against ADP
HIV PROPN
and CCONJ
with ADP
self NOUN
reported VERB
recreational ADJ
drug NOUN
  SPACE
use NOUN
among ADP
homosexuals NOUN
from ADP
Vancouver PROPN
. PUNCT
  SPACE
However ADV
, PUNCT
their PRON
survey NOUN
  SPACE
neglects NOUN
to PART
disprove VERB
Duesberg PROPN
's PART
drug NOUN
- PUNCT
AIDS PROPN
hypothesis NOUN
, PUNCT
because SCONJ
it PRON
  SPACE
does AUX
not PART
provide VERB
controls NOUN
-- PUNCT
i.e PROPN
. PROPN
, PUNCT
confirmed VERB
drug NOUN
- PUNCT
free ADJ
AIDS PROPN
  SPACE
cases NOUN
-- PUNCT
and CCONJ
because SCONJ
it PRON
does AUX
not PART
quantify VERB
drug NOUN
use NOUN
and CCONJ
ignores VERB
AZT PROPN
  SPACE
use VERB
altogether ADV
. PUNCT
  SPACE
To PART
refute VERB
Duesberg PROPN
's PART
hypothesis NOUN
Schechter PROPN
would AUX
  SPACE
have AUX
to PART
produce VERB
a DET
controlled VERB
study NOUN
demonstrating VERB
that SCONJ
over ADP
a DET
  SPACE
period NOUN
of ADP
up ADP
to PART
10 NUM
years NOUN
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
who PRON
use VERB
  SPACE
recreational ADJ
drugs NOUN
or CCONJ
AZT PROPN
or CCONJ
both DET
have AUX
the DET
same ADJ
AIDS PROPN
risks NOUN
as SCONJ
  SPACE
positives NOUN
who PRON
do AUX
not PART
do AUX
so ADV
. PUNCT
  SPACE
The DET
10 NUM
year NOUN
period NOUN
is AUX
claimed VERB
by ADP
  SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
45Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993proponents NUM
of ADP
the DET
HIV PROPN
hypothesis NOUN
to PART
be AUX
the DET
time NOUN
needed VERB
for ADP
HIV PROPN
to PART
cause VERB
AIDS PROPN
. PUNCT
  SPACE
Alternatively ADV
, PUNCT
they PRON
could AUX
show VERB
that SCONJ
HIV PROPN
- PUNCT
free ADJ
  SPACE
individuals NOUN
who PRON
have AUX
used VERB
drugs NOUN
for ADP
10 NUM
years NOUN
never ADV
get AUX
  SPACE
AIDS PROPN
- PUNCT
defining VERB
illnesses NOUN
, PUNCT
concludes VERB
Duesberg PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Rapid ADJ
Decline PROPN
of ADP
CD4 PROPN
+ SYM
Cells NOUN
After ADP
IFNa NOUN
Treatment NOUN
in ADP
HIV-1 PROPN
  SPACE
Infection PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
959 NUM
   SPACE
( PUNCT
Vento PROPN
, PUNCT
Sandro PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
Interferon PROPN
( PUNCT
IFN PROPN
) PUNCT
, PUNCT
which PRON
induces VERB
autoantibodies NOUN
and CCONJ
autoimmune NOUN
  SPACE
diseases NOUN
in ADP
some DET
settings NOUN
, PUNCT
may AUX
hasten VERB
CD4 PROPN
T NOUN
- PUNCT
cell NOUN
loss NOUN
in ADP
some DET
  SPACE
HIV-1 PROPN
infected ADJ
individuals NOUN
through ADP
the DET
amplification NOUN
of ADP
harmful ADJ
  SPACE
" PUNCT
autoimmune ADJ
" PUNCT
reactions NOUN
, PUNCT
write VERB
Sandro PROPN
Vento PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
A. NOUN
  SPACE
Pugliese PROPN
Hospital PROPN
in ADP
Catanzaro PROPN
, PUNCT
Italy PROPN
. PUNCT
  SPACE
The DET
researchers NOUN
report VERB
  SPACE
three NUM
asymptomatic ADJ
HIV-1 PROPN
infected ADJ
individuals NOUN
with ADP
hepatitis PROPN
C PROPN
  SPACE
Virus PROPN
related ADJ
chronic ADJ
active ADJ
hepatitis NOUN
( PUNCT
CAH PROPN
) PUNCT
who PRON
had AUX
a DET
rapid ADJ
, PUNCT
  SPACE
profound ADJ
decline NOUN
of ADP
CD4 PROPN
cells NOUN
after ADP
IFN PROPN
. PUNCT
  SPACE
All DET
three NUM
patients NOUN
  SPACE
throughout ADP
the DET
observation NOUN
were AUX
consistently ADV
negative ADJ
for ADP
serum PROPN
  SPACE
HIV PROPN
p24 NOUN
antigen PROPN
and CCONJ
had AUX
circulating VERB
antibodies NOUN
to ADP
p24 NOUN
. PUNCT
  SPACE
Sera PROPN
from ADP
all DET
three NUM
patients NOUN
, PUNCT
obtained VERB
at ADP
the DET
end NOUN
of ADP
IFN PROPN
treatment NOUN
and CCONJ
  SPACE
testing NOUN
in ADP
enzyme NOUN
- PUNCT
linked VERB
immunosorbent NOUN
assay NOUN
, PUNCT
contained VERB
high ADJ
  SPACE
titres NOUN
of ADP
antibodies NOUN
reacting VERB
to ADP
a DET
sequence NOUN
located VERB
in ADP
the DET
  SPACE
aminoterminal NOUN
of ADP
the DET
beta ADJ
chain NOUN
of ADP
all DET
human ADJ
HLA PROPN
class NOUN
II PROPN
  SPACE
antigens PROPN
, PUNCT
homologous ADJ
to ADP
a DET
sequence NOUN
located VERB
in ADP
the DET
carboxy NOUN
  SPACE
terminus NOUN
of ADP
HIV-1 PROPN
gp41 PROPN
. PUNCT
  SPACE
These DET
autoantibodies NOUN
, PUNCT
which PRON
also ADV
  SPACE
recognize VERB
" PUNCT
native ADJ
" PUNCT
class NOUN
II NOUN
molecules NOUN
and CCONJ
may AUX
contribute VERB
to ADP
the DET
  SPACE
elimination NOUN
of ADP
CD4 PROPN
T PROPN
cells NOUN
" PUNCT
in ADP
vivo NOUN
" PUNCT
, PUNCT
were AUX
at ADP
low ADJ
tires NOUN
( PUNCT
50 NUM
- SYM
100 NUM
) PUNCT
  SPACE
in ADP
all DET
three NUM
patients NOUN
six NUM
months NOUN
after ADP
stopping VERB
IFN PROPN
. PUNCT
  SPACE
Such ADJ
  SPACE
autoantibodies NOUN
were AUX
not PART
detected VERB
in ADP
28 NUM
other ADJ
patients NOUN
with ADP
HIV PROPN
  SPACE
infection NOUN
and CCONJ
HCV PROPN
related VERB
CAH PROPN
treated VERB
with ADP
IFN PROPN
and CCONJ
who PRON
did AUX
not PART
  SPACE
experience NOUN
CD4 PROPN
T NOUN
- PUNCT
cell NOUN
loss NOUN
in ADP
some DET
HIV-1 PROPN
infected ADJ
individuals NOUN
  SPACE
through ADP
the DET
amplification NOUN
of ADP
harmful ADJ
" PUNCT
autoimmune ADJ
" PUNCT
reactions NOUN
. PUNCT
  SPACE
The DET
subjects NOUN
had AUX
A1 PROPN
; PUNCT
B8 PROPN
; PUNCT
DR3 PROPN
; PUNCT
and CCONJ
B35 PROPN
, PUNCT
DR1 PROPN
HLA PROPN
antigen PROPN
combinations NOUN
  SPACE
which PRON
are AUX
linked VERB
with ADP
a DET
more ADV
rapid ADJ
fall NOUN
in ADP
CD4 PROPN
cell NOUN
counts NOUN
and CCONJ
  SPACE
clinical ADJ
progression NOUN
of ADP
HIV-1 PROPN
disease NOUN
. PUNCT
  SPACE
IFN PROPN
can AUX
induce VERB
a DET
very ADV
  SPACE
rapid ADJ
decline NOUN
of ADP
CD4 PROPN
cells NOUN
and CCONJ
should AUX
be AUX
used VERB
cautiously ADV
in ADP
  SPACE
patients NOUN
with ADP
these DET
HLA PROPN
haplotypes VERB
, PUNCT
the DET
researchers NOUN
conclude VERB
. PUNCT
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
23 NUM
, PUNCT
1993 NUM
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
TB PROPN
Makes VERB
a DET
Comeback PROPN
" PUNCT
State PROPN
Government PROPN
News PROPN
( PUNCT
04/93 NUM
) PUNCT
Vol PROPN
. PROPN
36 NUM
, PUNCT
No NOUN
. NOUN
4 NUM
, PUNCT
P. NOUN
6 NUM
   SPACE
( PUNCT
Voit PROPN
, PUNCT
William PROPN
and CCONJ
Knapp PROPN
, PUNCT
Elaine PROPN
S. PROPN
) PUNCT
      SPACE
Although SCONJ
tuberculosis NOUN
was AUX
once ADV
believed VERB
to PART
be AUX
eliminated VERB
in ADP
the DET
  SPACE
United PROPN
States PROPN
, PUNCT
it PRON
is AUX
emerging VERB
again ADV
among ADP
the DET
homeless ADJ
, PUNCT
AIDS PROPN
  SPACE
patients NOUN
, PUNCT
immigrants NOUN
, PUNCT
minorities NOUN
, PUNCT
and CCONJ
prisoners NOUN
. PUNCT
  SPACE
Dr. PROPN
Lee PROPN
B. PROPN
  SPACE
Reichman PROPN
, PUNCT
professor NOUN
of ADP
medicine NOUN
at ADP
the DET
University PROPN
of ADP
New PROPN
Jersey PROPN
  SPACE
Medical PROPN
School PROPN
and CCONJ
president NOUN
of ADP
the DET
American PROPN
Lung PROPN
Association PROPN
, PUNCT
  SPACE
said VERB
, PUNCT
" PUNCT
Right ADV
now ADV
, PUNCT
it PRON
's AUX
a DET
big ADJ
city NOUN
problem NOUN
, PUNCT
but CCONJ
potentially ADV
it PRON
's AUX
  SPACE
everyone PRON
's PART
problem NOUN
. PUNCT
" PUNCT
  SPACE
The DET
ALA PROPN
predicts VERB
that SCONJ
10 NUM
million NUM
Americans PROPN
  SPACE
are AUX
infected VERB
with ADP
TB PROPN
, PUNCT
and CCONJ
about ADV
10 NUM
percent NOUN
of ADP
them PRON
will AUX
develop VERB
  SPACE
the DET
disease NOUN
because SCONJ
their PRON
immune ADJ
systems NOUN
are AUX
depressed ADJ
, PUNCT
  SPACE
especially ADV
those DET
with ADP
AIDS PROPN
or CCONJ
HIV PROPN
. PUNCT
  SPACE
Gene PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
46Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Tammes NUM
, PUNCT
a DET
Centers PROPN
for ADP
  SPACE
Disease PROPN
Control PROPN
expert NOUN
, PUNCT
said VERB
that DET
is AUX
why ADV
the DET
CDC PROPN
has AUX
issued VERB
  SPACE
guidelines NOUN
warning NOUN
hospitals NOUN
and CCONJ
institutions NOUN
not PART
to PART
mix VERB
AIDS PROPN
  SPACE
with ADP
TB PROPN
patients NOUN
. PUNCT
  SPACE
State NOUN
health NOUN
officials NOUN
believe VERB
the DET
TB PROPN
is AUX
also ADV
  SPACE
spreading VERB
because SCONJ
those DET
who PRON
are AUX
most ADV
susceptible ADJ
are AUX
the DET
least ADJ
  SPACE
likely ADJ
to PART
follow VERB
through ADP
with ADP
treatment NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
  SPACE
increase NOUN
is AUX
attributed VERB
to ADP
a DET
shortage NOUN
of ADP
public ADJ
health NOUN
services NOUN
. PUNCT
   SPACE
In ADP
New PROPN
York PROPN
City PROPN
, PUNCT
TB PROPN
is AUX
an DET
epidemic NOUN
" PUNCT
because SCONJ
the DET
number NOUN
of ADP
cases NOUN
  SPACE
is AUX
increasing VERB
faster ADV
than SCONJ
we PRON
can AUX
treat VERB
people NOUN
, PUNCT
" PUNCT
said VERB
Dr. PROPN
George PROPN
  SPACE
Diferdinando PROPN
, PUNCT
director NOUN
of ADP
the DET
New PROPN
York PROPN
State PROPN
TB PROPN
Control PROPN
. PUNCT
   SPACE
According VERB
to ADP
Diferdinando PROPN
, PUNCT
curbing VERB
the DET
spread NOUN
of ADP
TB PROPN
entails VERB
  SPACE
keeping VERB
85 NUM
percent NOUN
or CCONJ
more ADJ
of ADP
diagnosed ADJ
TB PROPN
cases NOUN
in ADP
treatment NOUN
. PUNCT
   SPACE
About ADV
40 NUM
percent NOUN
of ADP
infected ADJ
New PROPN
York PROPN
City PROPN
residents NOUN
do AUX
n't PART
  SPACE
complete ADJ
therapy NOUN
. PUNCT
  SPACE
When ADV
TB PROPN
patients NOUN
do AUX
n't PART
finish VERB
taking VERB
their PRON
  SPACE
medication NOUN
, PUNCT
multi ADJ
- ADJ
drug ADJ
resistant ADJ
TB PROPN
can AUX
develop VERB
, PUNCT
which PRON
requires VERB
  SPACE
taking VERB
more ADV
expensive ADJ
drugs NOUN
and CCONJ
can AUX
take VERB
two NUM
years NOUN
instead ADV
of ADP
the DET
normal ADJ
six NUM
months NOUN
to PART
treat VERB
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
     SPACE
" PUNCT
Increasing VERB
Frequency PROPN
of ADP
Heterosexually PROPN
Transmitted PROPN
AIDS PROPN
in ADP
  SPACE
Southern PROPN
Florida PROPN
: PUNCT
Artifact VERB
or CCONJ
Reality NOUN
? PUNCT
" PUNCT
American PROPN
Journal PROPN
of ADP
Public PROPN
Health PROPN
( PUNCT
04/93 NUM
) PUNCT
Vol PROPN
. PROPN
83 NUM
, PUNCT
No NOUN
. NOUN
4 NUM
, PUNCT
P. PROPN
571 NUM
  SPACE
( PUNCT
Nwanyanwu PROPN
, PUNCT
Okey PROPN
C. PROPN
et X
al PROPN
. PROPN
) PUNCT
      SPACE
The DET
alarmingly ADV
high ADJ
rate NOUN
of ADP
heterosexually ADV
acquired VERB
AIDS PROPN
cases NOUN
in ADP
southern ADJ
Florida PROPN
was AUX
partially ADV
related VERB
to ADP
misclassification NOUN
of ADP
  SPACE
risk NOUN
, PUNCT
write VERB
Okey PROPN
C. PROPN
Nwanyanwu PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
Centers PROPN
for ADP
Disease PROPN
  SPACE
Control PROPN
in ADP
Atlanta PROPN
, PUNCT
Ga. PROPN
  SPACE
The DET
researchers NOUN
investigated VERB
168 NUM
such ADJ
  SPACE
AIDS PROPN
cases NOUN
from ADP
Broward PROPN
and CCONJ
coastal ADJ
Palm PROPN
Beach PROPN
counties NOUN
. PUNCT
  SPACE
All DET
of ADP
  SPACE
these DET
cases NOUN
attributed VERB
to ADP
heterosexual ADJ
transmission NOUN
reported VERB
  SPACE
sexual ADJ
contact NOUN
with ADP
bisexual ADJ
men NOUN
, PUNCT
injecting VERB
drug NOUN
users NOUN
, PUNCT
or CCONJ
  SPACE
persons NOUN
born VERB
in ADP
countries NOUN
where ADV
heterosexual ADJ
contact NOUN
is AUX
the DET
  SPACE
primary ADJ
route NOUN
of ADP
HIV PROPN
transmission NOUN
. PUNCT
  SPACE
Medical ADJ
records NOUN
of ADP
patients NOUN
, PUNCT
  SPACE
in ADP
addition NOUN
to ADP
records NOUN
from ADP
social ADJ
services NOUN
, PUNCT
HIV PROPN
counseling NOUN
and CCONJ
  SPACE
testing NOUN
centers NOUN
, PUNCT
and CCONJ
sexually ADV
transmitted VERB
disease NOUN
( PUNCT
STD PROPN
) PUNCT
clinics NOUN
  SPACE
were AUX
reviewed VERB
. PUNCT
  SPACE
If SCONJ
no DET
other ADJ
HIV PROPN
risk NOUN
factor NOUN
was AUX
found VERB
from ADP
  SPACE
medical ADJ
record NOUN
review NOUN
, PUNCT
patients NOUN
were AUX
interviewed VERB
using VERB
a DET
  SPACE
standardized ADJ
questionnaire NOUN
. PUNCT
  SPACE
Once ADV
STD PROPN
clinic NOUN
and CCONJ
other ADJ
medical ADJ
  SPACE
records NOUN
were AUX
reviewed VERB
, PUNCT
29 NUM
men NOUN
and CCONJ
7 NUM
women NOUN
were AUX
reclassified VERB
into ADP
  SPACE
other ADJ
HIV PROPN
transmission NOUN
categories NOUN
. PUNCT
  SPACE
After ADP
adjustments NOUN
were AUX
made VERB
  SPACE
for ADP
the DET
reclassification NOUN
, PUNCT
the DET
percentage NOUN
of ADP
AIDS PROPN
cases NOUN
reported VERB
  SPACE
from ADP
Palm PROPN
Beach PROPN
and CCONJ
Broward PROPN
counties NOUN
between ADP
January PROPN
1 NUM
, PUNCT
1989 NUM
, PUNCT
and CCONJ
March PROPN
31 NUM
, PUNCT
1990 NUM
, PUNCT
that PRON
was AUX
attributed VERB
to ADP
heterosexual ADJ
transmission NOUN
  SPACE
decreased VERB
from ADP
10 NUM
percent NOUN
to ADP
6 NUM
percent NOUN
among ADP
men NOUN
and CCONJ
from ADP
33 NUM
  SPACE
percent NOUN
to ADP
28 NUM
percent NOUN
among ADP
women NOUN
. PUNCT
  SPACE
While SCONJ
the DET
percentage NOUN
of ADP
  SPACE
heterosexually ADV
transmitted VERB
AIDS PROPN
cases NOUN
in ADP
southern ADJ
Florida PROPN
  SPACE
decreased VERB
after ADP
adjustment NOUN
was AUX
made VERB
for ADP
reclassified ADJ
cases NOUN
, PUNCT
it PRON
  SPACE
still ADV
remained VERB
above ADP
the DET
national ADJ
average NOUN
, PUNCT
the DET
researchers NOUN
  SPACE
conclude VERB
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
47Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                SPACE
AIDS PROPN
Statistics PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                            SPACE
World PROPN
Health PROPN
Organization PROPN
, PUNCT
Geneva PROPN
                        SPACE
Organisation PROPN
mondiale PROPN
de X
la PROPN
Sante PROPN
, PUNCT
Geneve PROPN
                              SPACE
WEEKLY PROPN
EPIDEMIOLOGICAL PROPN
RECORD PROPN
                           SPACE
RELEVE AUX
EPIDEMIOLOGIQUE NOUN
HEBDOMADAIRE15 ADJ
January PROPN
1993 NUM
- PUNCT
68th NOUN
Year PROPN
                        SPACE
ACQUIRED PROPN
IMMUNODEFICIENCY VERB
SYNDROME PROPN
( PUNCT
AIDS PROPN
) PUNCT
                               SPACE
DATA PROPN
AS ADP
AT ADP
31 NUM
December PROPN
1992 NUM
                       SPACE
SYNDROME NOUN
D'IMMUNODEFICIENCE PROPN
ACQUISE PROPN
( PUNCT
SIDA PROPN
) PUNCT
                               SPACE
DONNEES PROPN
AU PROPN
31 NUM
Decembre PROPN
1992 NUM
                                           SPACE
NUMBER PROPN
                 SPACE
DATE NOUN
OF ADP
                                         SPACE
OF ADP
CASES PROPN
                 SPACE
REPORTCOUNTRY PROPN
/ SYM
AREA PROPN
- PUNCT
                             SPACE
NOMBRE PROPN
                 SPACE
DATE NOUN
        SPACE
PAYS PROPN
/ SYM
TERRITOIRE PROPN
                    SPACE
DE PROPN
CAS PROPN
                 SPACE
DE PROPN
                                                                  SPACE
NOTIFI- PROPN
                                                                  SPACE
CATIONAFRICA PROPN
- PUNCT
AFRIQUEAlgeria PROPN
- PUNCT
Algerie PROPN
                              SPACE
92 NUM
                 SPACE
31.08.91Angola NUM
                                        SPACE
514 NUM
                 SPACE
24.09.92Benin NUM
- PUNCT
Benin PROPN
                                 SPACE
247 NUM
                 SPACE
31.03.92Botswana NUM
                                      SPACE
353 NUM
                 SPACE
30.06.92Burkina NUM
Faso PROPN
                                SPACE
1,263 NUM
                 SPACE
20.03.92Burundi NUM
                                     SPACE
6,052 NUM
                 SPACE
20.03.92Cameroon NUM
- PUNCT
Cameroun PROPN
                         SPACE
1,407 NUM
                 SPACE
05.10.92Cape NUM
Verde PROPN
- PUNCT
Cap PROPN
- PUNCT
Vert PROPN
                          SPACE
52 NUM
                 SPACE
08.02.92Central DET
African PROPN
Republic PROPN
- PUNCT
        SPACE
Republique PROPN
centrafricaine NOUN
           SPACE
1,864 NUM
                 SPACE
20.03.92Chad PROPN
- PUNCT
Tchad PROPN
                                  SPACE
382 NUM
                 SPACE
17.09.92Comoros NUM
- SYM
Comores PROPN
                               SPACE
3 NUM
                 SPACE
11.03.92Congo NUM
                                       SPACE
3,482 NUM
                 SPACE
30.01.92Cote NUM
d'Ivoire PROPN
                              SPACE
10,792 NUM
                 SPACE
09.03.92Djibouti PUNCT
                                      SPACE
265 NUM
                 SPACE
17.12.92Egypt PROPN
- PUNCT
Egypte PROPN
                                 SPACE
57 NUM
                 SPACE
17.12.92Equatorial NUM
Guinea PROPN
- PUNCT
         SPACE
Guinee PROPN
equatoriale PROPN
                     SPACE
13 NUM
                 SPACE
16.05.92Ethiopia NUM
- PUNCT
Ethiopie PROPN
                         SPACE
3,978 NUM
                 SPACE
11.11.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
48Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Gabon NUM
                                         SPACE
215 NUM
                 SPACE
31.05.92Gambia NUM
- PUNCT
Gambie PROPN
                               SPACE
180 NUM
                 SPACE
25.02.92Ghana NUM
                                       SPACE
3,612 NUM
                 SPACE
01.07.92Guinea PROPN
- PUNCT
Guinee PROPN
                               SPACE
338 NUM
                 SPACE
20.03.92Guinea NUM
- PUNCT
Bissau PROPN
- PUNCT
Guinee PROPN
- PUNCT
Bissau PROPN
                 SPACE
189 NUM
                 SPACE
13.07.92Kenya NUM
                                      SPACE
31,185 NUM
                 SPACE
01.10.92Lesotho NUM
                                        SPACE
64 NUM
                 SPACE
31.03.92Liberia PROPN
- PUNCT
Liberia PROPN
                              SPACE
28 NUM
                 SPACE
31.03.92Libyan NUM
Arab PROPN
Jamahiriya PROPN
- PUNCT
        SPACE
Jamahiriya PROPN
arabe PROPN
libyenne VERB
               SPACE
7 NUM
                 SPACE
17.12.92Madagascar NUM
                                      SPACE
2 NUM
                 SPACE
06.11.92Malawi PROPN
                                     SPACE
22,300 NUM
                 SPACE
02.12.92Mali PROPN
                                        SPACE
1,111 NUM
                 SPACE
17.07.92Mauritania PROPN
- PUNCT
Mauritanie PROPN
                        SPACE
36 NUM
                 SPACE
19.07.92Mauritius PROPN
- PUNCT
Maurice PROPN
                            SPACE
11 NUM
                 SPACE
29.02.92Morocco PROPN
- PUNCT
Maroc PROPN
                               SPACE
121 NUM
                 SPACE
17.12.92Mozambique NUM
                                    SPACE
538 NUM
                 SPACE
10.10.92Namibia PROPN
- PUNCT
Namibie PROPN
                             SPACE
311 NUM
                 SPACE
20.03.92Niger NUM
                                         SPACE
497 NUM
                 SPACE
07.02.92Nigeria PROPN
- PUNCT
Nigeria PROPN
                             SPACE
184 NUM
                 SPACE
12.03.92Reunion NUM
- PUNCT
Reunion PROPN
                              SPACE
65 NUM
                 SPACE
20.03.92Rwanda NUM
                                      SPACE
8,483 NUM
                 SPACE
12.11.92Sao NUM
Tome PROPN
and CCONJ
Principe PROPN
- PUNCT
        SPACE
Sao PROPN
Tome PROPN
- PUNCT
et PROPN
- PUNCT
Principe PROPN
                   SPACE
11 NUM
                 SPACE
03.07.92Senegal PROPN
- PUNCT
Senegal PROPN
                             SPACE
648 NUM
                 SPACE
09.03.92Seychelles PROPN
                                    SPACE
--- PUNCT
                 SPACE
18.02.92Sierra NUM
Leone PROPN
                                   SPACE
40 NUM
                 SPACE
20.03.92Somalia NUM
- PUNCT
Somalie PROPN
                              SPACE
13 NUM
                 SPACE
17.12.92South NUM
Africa PROPN
- PUNCT
         SPACE
Afrique PROPN
du PROPN
Sud PROPN
                      SPACE
1,316 NUM
                 SPACE
30.06.92Sudan PROPN
- PUNCT
Soudan PROPN
                                SPACE
650 NUM
                 SPACE
17.12.92Swaziland NUM
                                     SPACE
197 NUM
                 SPACE
08.07.92Togo PROPN
                                        SPACE
1,278 NUM
                 SPACE
03.04.92Tunisia PROPN
- PUNCT
Tunisie PROPN
                             SPACE
114 NUM
                 SPACE
17.12.92Uganda PROPN
- PUNCT
Ouganda PROPN
                           SPACE
34,611 NUM
                 SPACE
01.11.92United PUNCT
Republic PROPN
of ADP
Tanzania PROPN
- PUNCT
        SPACE
Republique PROPN
- PUNCT
Unie PROPN
de X
        SPACE
Tanzanie PROPN
                           SPACE
34,605 NUM
                 SPACE
31.05.92Zaire PROPN
- PUNCT
Zaire PROPN
                              SPACE
18,186 NUM
                 SPACE
14.05.92Zambia PROPN
- PUNCT
Zambie PROPN
                             SPACE
6,556 NUM
                 SPACE
15.10.92Zimbabwe NUM
                                   SPACE
12,514 NUM
                 SPACE
31.03.92TOTAL NUM
                                     SPACE
211,032HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
49Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993AMERICAS NUM
- PUNCT
AMERIQUESAnguilla PROPN
                                        SPACE
6 NUM
                 SPACE
10.12.92Antigua NUM
and CCONJ
Barbuda PROPN
- PUNCT
         SPACE
Antigua PROPN
- PUNCT
et PROPN
- PUNCT
Barbuda PROPN
                      SPACE
6 NUM
                 SPACE
10.12.92Argentina NUM
- PUNCT
Argentine PROPN
                       SPACE
1,820 NUM
                 SPACE
10.12.92Bahamas NUM
                                       SPACE
934 NUM
                 SPACE
10.12.92Barbados PROPN
- PUNCT
Barbade PROPN
                            SPACE
315 NUM
                 SPACE
10.12.92Belize NUM
                                         SPACE
53 NUM
                 SPACE
10.12.92Bermuda PROPN
- SYM
Bermudes PROPN
                            SPACE
199 NUM
                 SPACE
10.12.92Bolivia NUM
- PUNCT
Bolivie PROPN
                              SPACE
49 NUM
                 SPACE
10.12.92Brazil PROPN
- PUNCT
Bresil PROPN
                            SPACE
31,364 NUM
                 SPACE
10.12.92British NUM
Virgin PROPN
Islands PROPN
- PUNCT
        SPACE
Iles PROPN
Vierges NOUN
         SPACE
britanniques NOUN
                            SPACE
4 NUM
                 SPACE
10.12.92Canada NUM
                                      SPACE
6,889 NUM
                 SPACE
10.12.92Cayman NUM
Islands PROPN
- PUNCT
Iles PROPN
Caimanes PROPN
                 SPACE
13 NUM
                 SPACE
10.12.92Chile NUM
- PUNCT
Chili PROPN
                                 SPACE
573 NUM
                 SPACE
10.12.92Colombia NUM
- PUNCT
Colombie PROPN
                         SPACE
2,957 NUM
                 SPACE
10.12.92Costa NUM
Rica PROPN
                                    SPACE
419 NUM
                 SPACE
10.12.92Cuba NUM
                                          SPACE
137 NUM
                 SPACE
10.12.92Dominica NUM
- PUNCT
Dominique PROPN
                           SPACE
12 NUM
                 SPACE
10.12.92Dominican PROPN
Republic PROPN
- PUNCT
        SPACE
Republique PROPN
dominicaine NOUN
              SPACE
1,809 NUM
                 SPACE
10.12.92Ecuador NUM
- PUNCT
Equateur ADJ
                            SPACE
224 NUM
                 SPACE
10.12.92El NUM
Salvador PROPN
                                   SPACE
382 NUM
                 SPACE
10.12.92French NUM
Guiana PROPN
- PUNCT
        SPACE
Guyane PROPN
francaise NOUN
                      SPACE
232 NUM
                 SPACE
10.12.92Grenada PROPN
- PUNCT
Grenade PROPN
                              SPACE
32 NUM
                 SPACE
10.12.92Guadeloupe PROPN
                                    SPACE
182 NUM
                 SPACE
10.12.92Guatemala NUM
                                     SPACE
273 NUM
                 SPACE
10.12.92Guyana PROPN
                                        SPACE
333 NUM
                 SPACE
10.12.92Haiti NUM
- PUNCT
Haiti PROPN
                               SPACE
3,086 NUM
                 SPACE
10.12.92Honduras NUM
                                    SPACE
1,976 NUM
                 SPACE
10.12.92Jamaica NUM
- PUNCT
Jamaique PROPN
                            SPACE
361 NUM
                 SPACE
10.12.92Martinique NUM
                                    SPACE
227 NUM
                 SPACE
10.12.92Mexico PROPN
- PUNCT
Mexique PROPN
                           SPACE
11,034 NUM
                 SPACE
10.12.92Montserrat NUM
                                      SPACE
1 NUM
                 SPACE
10.12.92Netherlands NUM
Antilles PROPN
and CCONJ
Aruba PROPN
- PUNCT
        SPACE
Antilles PROPN
neerlandaises VERB
et PROPN
        SPACE
Aruba PROPN
                                 SPACE
110 NUM
                 SPACE
10.12.92Nicaragua NUM
                                      SPACE
31 NUM
                 SPACE
10.12.92Panama NUM
                                        SPACE
388 NUM
                 SPACE
10.12.92Paraguay NUM
                                       SPACE
51 NUM
                 SPACE
10.12.92Peru NUM
- PUNCT
Perou PROPN
                                  SPACE
614 NUM
                 SPACE
10.12.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
50Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Saint NUM
Kitts PROPN
and CCONJ
Nevis PROPN
- PUNCT
        SPACE
Saint PROPN
- PUNCT
Kitts PROPN
- PUNCT
et PROPN
- PUNCT
Nevis PROPN
                   SPACE
37 NUM
                 SPACE
10.12.92Saint NUM
Lucia PROPN
- PUNCT
Sainte PROPN
- PUNCT
Lucie PROPN
                     SPACE
48 NUM
                 SPACE
10.12.92Saint NUM
Vincent PROPN
and CCONJ
the DET
        SPACE
Grenadines PROPN
- PUNCT
Saint- PROPN
        SPACE
Vincent PROPN
- PUNCT
et PROPN
- PUNCT
Grenadines PROPN
                  SPACE
41 NUM
                 SPACE
10.12.92Suriname NUM
                                      SPACE
122 NUM
                 SPACE
10.12.92Trinidad NUM
and CCONJ
Tobago PROPN
- PUNCT
        SPACE
Trinite PROPN
- PUNCT
et PROPN
- PUNCT
Tobago PROPN
                   SPACE
1,085 NUM
                 SPACE
10.12.92Turks PROPN
and CCONJ
Caicos PROPN
Islands PROPN
- PUNCT
        SPACE
Iles PROPN
Turques PROPN
et PROPN
        SPACE
Caiques PROPN
                                SPACE
25 NUM
                 SPACE
10.12.92United NUM
States PROPN
of ADP
America PROPN
- PUNCT
        SPACE
Etats PROPN
- PUNCT
Unis PROPN
d'Amerique PROPN
             SPACE
242,146 NUM
                 SPACE
10.12.92Uruguay NUM
                                       SPACE
310 NUM
                 SPACE
10.12.92Venezuela NUM
                                   SPACE
2,173 NUM
                 SPACE
10.12.92TOTAL DET
                                     SPACE
313,083ASIA NUM
- PUNCT
ASIEAfghanistan PROPN
                                   SPACE
--- PUNCT
                 SPACE
17.12.92Bahrain NUM
- PUNCT
Bahrein PROPN
                               SPACE
3 NUM
                 SPACE
31.03.92Bangladesh NUM
                                      SPACE
1 NUM
                 SPACE
30.11.92Bhutan PROPN
- PUNCT
Bhoutan PROPN
                              SPACE
--- PUNCT
                 SPACE
30.11.92Brunei PROPN
Darussalam PROPN
- PUNCT
         SPACE
Brunei PROPN
Darussalam PROPN
                       SPACE
2 NUM
                 SPACE
19.12.91Burma NUM
see VERB
Myanmar PROPN
- PUNCT
        SPACE
Birmanie PROPN
voir X
MyanmarCambodia PROPN
- PUNCT
Cambodge PROPN
                           SPACE
--- PUNCT
                 SPACE
31.10.92China(a NUM
) PUNCT
- PUNCT
Chine(a NOUN
) PUNCT
                            SPACE
11 NUM
                 SPACE
28.04.92Cyprus NUM
- PUNCT
Chypre PROPN
                                SPACE
24 NUM
                 SPACE
17.12.92Democratic NUM
People PROPN
's PART
Republic PROPN
        SPACE
of ADP
Korea PROPN
- PUNCT
  SPACE
Republique PROPN
        SPACE
populaire NOUN
democratique NOUN
        SPACE
de X
Coree PROPN
                              SPACE
--- PUNCT
                 SPACE
30.11.92Hong NUM
Kong PROPN
                                      SPACE
61 NUM
                 SPACE
26.09.92India NUM
- PUNCT
Inde ADJ
                                  SPACE
242 NUM
                 SPACE
30.11.92Indonesia PROPN
- PUNCT
Indonesie PROPN
                          SPACE
24 NUM
                 SPACE
30.11.92Iran NUM
( PUNCT
Islamic PROPN
Republic PROPN
of ADP
) PUNCT
- PUNCT
        SPACE
Iran PROPN
( PUNCT
Republique PROPN
        SPACE
islamique NOUN
d PROPN
' PUNCT
) PUNCT
                          SPACE
56 NUM
                 SPACE
17.12.92Iraq NUM
                                            SPACE
7 NUM
                 SPACE
17.12.92Israel PROPN
- PUNCT
Israel PROPN
                               SPACE
192 NUM
                 SPACE
17.12.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
51Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Japan PROPN
- PUNCT
Japon PROPN
                                 SPACE
508 NUM
                 SPACE
04.12.92Jordan PROPN
- PUNCT
Jordanie PROPN
                              SPACE
24 NUM
                 SPACE
17.12.92Kuwait PROPN
- PUNCT
Koweit PROPN
                                 SPACE
7 NUM
                 SPACE
17.12.92Lao NUM
People PROPN
's PART
Democratic PROPN
Republic PROPN
- PUNCT
        SPACE
Republique PROPN
democratique NOUN
        SPACE
populaire PROPN
lao PROPN
                           SPACE
1 NUM
                 SPACE
23.04.92Lebanon PROPN
- PUNCT
Liban PROPN
                                SPACE
35 NUM
                 SPACE
17.12.92Macao NUM
                                           SPACE
2 NUM
                 SPACE
03.11.92Malaysia PROPN
- PUNCT
Malaisie PROPN
                            SPACE
46 NUM
                 SPACE
25.05.92Maldives NUM
                                      SPACE
--- PUNCT
                 SPACE
30.11.92Mongolia PROPN
- PUNCT
Mongolie PROPN
                             SPACE
1 NUM
                 SPACE
30.11.92Myanmar PROPN
                                        SPACE
16 NUM
                 SPACE
30.11.92Nepal PROPN
- PUNCT
Nepal PROPN
                                  SPACE
12 NUM
                 SPACE
30.11.92Oman NUM
                                           SPACE
27 NUM
                 SPACE
17.12.92Pakistan NUM
                                       SPACE
25 NUM
                 SPACE
17.12.92Philippines NUM
                                    SPACE
80 NUM
                 SPACE
07.10.92Qatar PROPN
                                          SPACE
31 NUM
                 SPACE
17.12.92Republic NUM
of ADP
Korea PROPN
- PUNCT
        SPACE
Republique PROPN
de X
Coree PROPN
                    SPACE
10 NUM
                 SPACE
19.11.92Saudi PROPN
Arabia PROPN
- PUNCT
Arabie PROPN
saoudite NOUN
                 SPACE
46 NUM
                 SPACE
17.12.92Singapore ADJ
- PUNCT
Singapour PROPN
                          SPACE
43 NUM
                 SPACE
05.08.92Sri NUM
Lanka PROPN
                                      SPACE
20 NUM
                 SPACE
30.11.92Syrian NUM
Arab PROPN
Republic PROPN
- PUNCT
         SPACE
Republique PROPN
arabe PROPN
syrienne PROPN
              SPACE
19 NUM
                 SPACE
17.12.92Thailand PROPN
- PUNCT
Thailande PROPN
                          SPACE
909 NUM
                 SPACE
30.11.92Turkey PROPN
- PUNCT
Turquie PROPN
                               SPACE
89 NUM
                 SPACE
17.12.92United PROPN
Arab PROPN
Emirates PROPN
- PUNCT
Emirats NOUN
        SPACE
arabes NOUN
unis PROPN
                             SPACE
8 NUM
                 SPACE
17.12.92Viet NUM
Nam PROPN
                                      SPACE
--- PUNCT
                 SPACE
28.04.92Yemen NUM
- PUNCT
Yemen PROPN
                                 SPACE
--- PUNCT
                 SPACE
17.12.92TOTAL NUM
                                       SPACE
2,582EUROPEAlbania NUM
- PUNCT
Albanie PROPN
                             SPACE
--- PUNCT
                 SPACE
30.09.92Austria PROPN
- PUNCT
Autriche PROPN
                            SPACE
828 NUM
                 SPACE
30.09.92Belarus PROPN
- PUNCT
Belarus PROPN
                               SPACE
6 NUM
                 SPACE
30.09.92Belgium PROPN
- PUNCT
Belgique PROPN
                          SPACE
1,224 NUM
                 SPACE
17.12.92Bulgaria PROPN
- PUNCT
Bulgarie PROPN
                            SPACE
16 NUM
                 SPACE
17.12.92Czechoslovakia PROPN
- PUNCT
Tchecoslovaquie PROPN
               SPACE
32 NUM
                 SPACE
17.12.92Denmark PROPN
- PUNCT
Danemark PROPN
                          SPACE
1,072 NUM
                 SPACE
17.12.92Finland PROPN
- PUNCT
Finlande PROPN
                            SPACE
112 NUM
                 SPACE
17.12.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
52Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993France NUM
                                     SPACE
21,487 NUM
                 SPACE
17.12.92Germany NUM
- PUNCT
Allemagne PROPN
                         SPACE
8,893 NUM
                 SPACE
17.12.92Greece PROPN
- PUNCT
Grece PROPN
                                SPACE
689 NUM
                 SPACE
17.12.92Hungary PROPN
- PUNCT
Hongrie PROPN
                             SPACE
105 NUM
                 SPACE
17.12.92Iceland NUM
- PUNCT
Islande PROPN
                              SPACE
22 NUM
                 SPACE
17.12.92Ireland PROPN
- PUNCT
Irlande PROPN
                             SPACE
294 NUM
                 SPACE
17.12.92Italy PROPN
- PUNCT
Italie PROPN
                             SPACE
14,783 NUM
                 SPACE
17.12.92Latvia PROPN
- PUNCT
Lettonie PROPN
                               SPACE
2 NUM
                 SPACE
30.09.92Lithuania PROPN
- PUNCT
Lituanie PROPN
                            SPACE
2 NUM
                 SPACE
30.09.92Luxembourg NUM
                                     SPACE
55 NUM
                 SPACE
17.12.92Malta PROPN
- PUNCT
Malte PROPN
                                  SPACE
25 NUM
                 SPACE
17.12.92Monaco NUM
                                          SPACE
9 NUM
                 SPACE
17.12.92Netherlands PROPN
- PUNCT
Pays PROPN
- PUNCT
Bas PROPN
                      SPACE
2,330 NUM
                 SPACE
17.12.92Norway NUM
- PUNCT
Norvege PROPN
                              SPACE
283 NUM
                 SPACE
17.12.92Poland PROPN
- PUNCT
Pologne PROPN
                              SPACE
118 NUM
                 SPACE
17.12.92Portugal NUM
                                    SPACE
1,007 NUM
                 SPACE
17.12.92Romania PROPN
- PUNCT
Roumanie PROPN
                          SPACE
2,073 NUM
                 SPACE
17.12.92Russian PROPN
Federation PROPN
- PUNCT
Federation PROPN
        SPACE
de ADP
Russie PROPN
                              SPACE
94 NUM
                 SPACE
30.09.92San NUM
Marino PROPN
- PUNCT
Saint PROPN
- PUNCT
Marin PROPN
                        SPACE
1 NUM
                 SPACE
17.12.92Spain NUM
- PUNCT
Espagne PROPN
                            SPACE
14,991 NUM
                 SPACE
17.12.92Sweden PROPN
- PUNCT
Suede PROPN
                                SPACE
743 NUM
                 SPACE
17.12.92Switzerland PROPN
- PUNCT
Suisse PROPN
                        SPACE
2,691 NUM
                 SPACE
17.12.92United PROPN
Kingdom PROPN
- PUNCT
Royaume PROPN
- PUNCT
Uni NOUN
                SPACE
6,510 NUM
                 SPACE
17.12.92Yugoslavia(b NUM
) PUNCT
- PUNCT
Yougoslavie(b NOUN
) PUNCT
                SPACE
313 NUM
                 SPACE
30.09.92TOTAL NUM
                                      SPACE
80,810OCEANIA PROPN
- PUNCT
OCEANIEAmerican PROPN
Samoa PROPN
- PUNCT
Samoa PROPN
americaines NOUN
            SPACE
--- PUNCT
                 SPACE
18.11.92Australia NUM
- PUNCT
Australie PROPN
                       SPACE
3,615 NUM
                 SPACE
02.12.92Cook NUM
Islands PROPN
- PUNCT
Iles PROPN
Cook PROPN
                      SPACE
--- PUNCT
                 SPACE
18.02.92Federated NUM
States PROPN
of ADP
Micronesia PROPN
- PUNCT
        SPACE
Etats PROPN
federes NOUN
de PROPN
Micronesie PROPN
             SPACE
2 NUM
                 SPACE
01.09.92Fiji PROPN
- PUNCT
Fidji PROPN
                                    SPACE
4 NUM
                 SPACE
28.11.91French NUM
Polynesia PROPN
- PUNCT
Polynesie PROPN
francaise NOUN
         SPACE
27 NUM
                 SPACE
28.11.91Guam NUM
                                           SPACE
10 NUM
                 SPACE
13.09.91Kiribati NUM
                                      SPACE
--- PUNCT
                 SPACE
08.11.91Mariana PROPN
Islands PROPN
- PUNCT
Iles PROPN
Mariannes NOUN
                SPACE
4 NUM
                 SPACE
14.10.92Marshall NUM
Islands PROPN
- PUNCT
Iles PROPN
Marshall PROPN
                SPACE
2 NUM
                 SPACE
18.03.91Nauru NUM
                                         SPACE
--- PUNCT
                 SPACE
17.12.92New NUM
Caledonia PROPN
and CCONJ
Dependencies PROPN
-HICNet VERB
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
53Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
        SPACE
Nouvelle PROPN
- PUNCT
Caledonie PROPN
et PROPN
        SPACE
dependances NOUN
                            SPACE
22 NUM
                 SPACE
26.08.92New NUM
Zealand PROPN
- PUNCT
Nouvelle PROPN
- PUNCT
Zelande PROPN
                SPACE
348 NUM
                 SPACE
03.11.92Niue PROPN
                                          SPACE
--- PUNCT
                 SPACE
18.02.92Palau PROPN
                                         SPACE
--- PUNCT
                 SPACE
15.10.92Papua NUM
New PROPN
Guinea PROPN
- PUNCT
Papouasie- PROPN
        SPACE
Nouvelle PROPN
- PUNCT
Guinee PROPN
                        SPACE
45 NUM
                 SPACE
10.08.92Samoa NUM
                                           SPACE
1 NUM
                 SPACE
18.02.92Solomon PROPN
Islands PROPN
- PUNCT
Iles PROPN
Salomon PROPN
                SPACE
--- PUNCT
                 SPACE
19.12.91Tokelau NUM
                                       SPACE
--- PUNCT
                 SPACE
18.02.92Tonga NUM
                                           SPACE
2 NUM
                 SPACE
24.07.92Tuvalu NUM
                                        SPACE
--- PUNCT
                 SPACE
22.11.92Vanuatu NUM
                                       SPACE
--- PUNCT
                 SPACE
08.06.92Wallis PROPN
and CCONJ
Futuna PROPN
Islands PROPN
- PUNCT
Iles PROPN
        SPACE
Wallis PROPN
et PROPN
Futuna PROPN
                      SPACE
--- PUNCT
                 SPACE
27.05.91TOTAL NUM
                                       SPACE
4,082WORLD NUM
TOTAL NOUN
- PUNCT
         SPACE
TOTAL PROPN
MONDIAL PROPN
                     SPACE
611,589(a NUM
) PUNCT
The DET
above ADJ
statistics NOUN
relating VERB
to ADP
China PROPN
do AUX
not PART
include VERB
48 NUM
cases NOUN
of ADP
AIDS PROPN
inthe NOUN
Province PROPN
of ADP
Taiwan PROPN
. PUNCT
-- PUNCT
Les PROPN
statistiques VERB
ci PROPN
- PUNCT
dessus PROPN
se PROPN
rapportant VERB
a DET
la X
Chinene PROPN
comprennent NOUN
pas NOUN
48 NUM
cas NOUN
de X
SIDA PROPN
dans NOUN
la PROPN
province PROPN
de X
Taiwan.(b PROPN
) PUNCT
Refers VERB
to ADP
Republics NOUN
and CCONJ
areas NOUN
of ADP
the DET
former ADJ
Socialist PROPN
Federal PROPN
Republic PROPN
ofYugoslavia PUNCT
: PUNCT
  SPACE
Bosnia PROPN
and CCONJ
Herzegovina PROPN
; PUNCT
Croatia PROPN
; PUNCT
Macedonia PROPN
; PUNCT
Montenegro;Serbia PROPN
; PUNCT
Slovenia PROPN
. PUNCT
-- PUNCT
Se PROPN
refere ADV
aux NOUN
republiques VERB
et PROPN
territoires PROPN
de PROPN
l'ancienneRepublique PROPN
federative ADJ
socialiste NOUN
de ADP
Yougoslavie PROPN
: PUNCT
Bosnie PROPN
- PUNCT
Herzegovine PROPN
; PUNCT
Croatie;Macedoine PROPN
; PUNCT
Montenegro PROPN
; PUNCT
Serbie PROPN
; PUNCT
Slovenie PROPN
. PUNCT
                                        SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
54 NUM
- PUNCT
------------ ADV
cut NOUN
here ADV
------------------- PUNCT
This DET
is AUX
the DET
last ADJ
part NOUN
------------------ PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59286From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
3/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
----------------- PUNCT
         SPACE
ONCE PROPN
A DET
YEAR NOUN
... PUNCT
FOR ADP
A DET
LIFETIME PROPN
VIDEO PROPN
KIT PROPN
. PUNCT
  SPACE
This DET
kit NOUN
        SPACE
includes VERB
a DET
25-minute NUM
VHS PROPN
videotape NOUN
that PRON
presents VERB
common ADJ
        SPACE
misconceptions NOUN
about ADP
mammography NOUN
. PUNCT
  SPACE
It PRON
tells VERB
of ADP
the DET
        SPACE
benefits NOUN
gains NOUN
by ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
        SPACE
Jane PROPN
Pauley PROPN
and CCONJ
Phylicia PROPN
Rashad PROPN
are AUX
the DET
narrators NOUN
. PUNCT
  SPACE
Kit PROPN
        SPACE
includes VERB
a DET
guide NOUN
, PUNCT
poster NOUN
, PUNCT
flyer NOUN
, PUNCT
and CCONJ
pamphlets NOUN
on ADP
        SPACE
mammography NOUN
. PUNCT
  SPACE
This DET
kit NOUN
is AUX
available ADJ
directly ADV
by ADP
writing VERB
        SPACE
to ADP
: PUNCT
  SPACE
Modern PROPN
, PUNCT
5000 NUM
Park PROPN
Street PROPN
North PROPN
, PUNCT
St. PROPN
Petersburg PROPN
, PUNCT
FL PROPN
        SPACE
33709 NUM
- SYM
9989 NUM
. PUNCT
   SPACE
ADDITIONAL PROPN
RESOURCES NOUN
       SPACE
COMBINED PROPN
HEALTH NOUN
INFORMATION NOUN
DATABASE NOUN
( PUNCT
CHID PROPN
) PUNCT
. PUNCT
  SPACE
A DET
computerized ADJ
     SPACE
bibliographic ADJ
database NOUN
developed VERB
and CCONJ
managed VERB
by ADP
agencies NOUN
of ADP
     SPACE
the DET
U.S. PROPN
Public PROPN
Health PROPN
Service PROPN
. PUNCT
  SPACE
It PRON
contains VERB
references NOUN
to ADP
     SPACE
health NOUN
information NOUN
and CCONJ
health NOUN
education NOUN
resources NOUN
. PUNCT
  SPACE
The DET
     SPACE
database NOUN
provides VERB
bibliographic ADJ
citations NOUN
and CCONJ
abstracts NOUN
for ADP
     SPACE
journal NOUN
articles NOUN
, PUNCT
books NOUN
, PUNCT
reports NOUN
, PUNCT
pamphlets NOUN
, PUNCT
audiovisuals NOUN
, PUNCT
     SPACE
product NOUN
descriptions NOUN
, PUNCT
hard ADJ
- PUNCT
to PART
- PUNCT
find VERB
information NOUN
sources NOUN
, PUNCT
and CCONJ
     SPACE
health NOUN
promotion NOUN
and CCONJ
education NOUN
programs NOUN
under ADP
way NOUN
in ADP
state NOUN
     SPACE
and CCONJ
local ADJ
health NOUN
departments NOUN
and CCONJ
other ADJ
locations NOUN
. PUNCT
  SPACE
In ADP
     SPACE
addition NOUN
, PUNCT
CHID PROPN
provides VERB
source NOUN
and CCONJ
availability NOUN
information NOUN
     SPACE
for ADP
these DET
materials NOUN
, PUNCT
so SCONJ
that SCONJ
users NOUN
may AUX
obtain VERB
them PRON
directly ADV
. PUNCT
      SPACE
At ADP
present NOUN
, PUNCT
there PRON
are AUX
twenty NUM
- PUNCT
one NUM
subfiles NOUN
on ADP
CHID NOUN
. PUNCT
The DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
created VERB
the DET
Cancer PROPN
Patient PROPN
     SPACE
Education NOUN
subfile NOUN
in ADP
1990 NUM
. PUNCT
It PRON
serves VERB
as SCONJ
a DET
resource NOUN
for ADP
the DET
     SPACE
CHID PROPN
user NOUN
who PRON
is AUX
interested ADJ
in ADP
identifying VERB
patient ADJ
education NOUN
     SPACE
programs NOUN
for ADP
specific ADJ
cancer NOUN
patient NOUN
populations NOUN
, PUNCT
as ADV
well ADV
as SCONJ
     SPACE
for ADP
the DET
user NOUN
who PRON
is AUX
trying VERB
to PART
locate VERB
educational ADJ
resources NOUN
     SPACE
available ADJ
for ADP
patient NOUN
or CCONJ
family NOUN
cancer NOUN
education NOUN
. PUNCT
  SPACE
Citations PROPN
     SPACE
include VERB
the DET
contact NOUN
person NOUN
at ADP
cancer NOUN
centers NOUN
, PUNCT
so SCONJ
the DET
user NOUN
     SPACE
can AUX
follow VERB
up ADP
directly ADV
with ADP
the DET
appropriate ADJ
person NOUN
. PUNCT
      SPACE
To PART
access VERB
CHID NOUN
, PUNCT
check VERB
with ADP
your PRON
local ADJ
library NOUN
. PUNCT
  SPACE
Most ADV
medical ADJ
     SPACE
school NOUN
, PUNCT
university NOUN
, PUNCT
hospital NOUN
, PUNCT
and CCONJ
public ADJ
libraries NOUN
subscribe VERB
     SPACE
to ADP
commercial ADJ
database NOUN
vendors NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
28Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
FINAL PROPN
REPORT PROPN
: PUNCT
  SPACE
AN DET
INTEGRATED PROPN
ONCOLOGY NOUN
WORKSTATION NOUN
( PUNCT
revised VERB
     SPACE
5/92 NUM
) PUNCT
. PUNCT
  SPACE
This DET
book NOUN
provides VERB
a DET
conceptual ADJ
overview NOUN
of ADP
what PRON
a DET
     SPACE
clinical ADJ
information NOUN
system NOUN
for ADP
practicing VERB
oncologists NOUN
might AUX
     SPACE
include VERB
: PUNCT
  SPACE
a DET
database NOUN
of ADP
electronic ADJ
patient NOUN
chart NOUN
records VERB
     SPACE
combined VERB
with ADP
access NOUN
to ADP
a DET
knowledge NOUN
base NOUN
of ADP
information NOUN
     SPACE
resources NOUN
such ADJ
as SCONJ
PDQ PROPN
, PUNCT
CANCERLIT NOUN
, PUNCT
and CCONJ
MEDLINE PROPN
-- PUNCT
an DET
     SPACE
integration NOUN
of ADP
data NOUN
and CCONJ
knowledge NOUN
combined VERB
to PART
create VERB
a DET
     SPACE
clinical ADJ
" PUNCT
oncology NOUN
workstation NOUN
. PUNCT
" PUNCT
  SPACE
The DET
concept NOUN
was AUX
developed VERB
     SPACE
as SCONJ
a DET
means NOUN
to PART
assist VERB
the DET
oncologist NOUN
and CCONJ
his PRON
or CCONJ
her PRON
office NOUN
     SPACE
staff NOUN
in ADP
the DET
daily ADJ
management NOUN
of ADP
patient ADJ
care NOUN
and CCONJ
clinical ADJ
     SPACE
trials NOUN
. PUNCT
  SPACE
This DET
book NOUN
can AUX
be AUX
obtained VERB
by ADP
contacting VERB
: PUNCT
  SPACE
Dr. PROPN
     SPACE
Robert PROPN
Esterhay PROPN
, PUNCT
Project PROPN
Officer PROPN
, PUNCT
Computer PROPN
Communications PROPN
     SPACE
Branch PROPN
, PUNCT
Building PROPN
82 NUM
, PUNCT
Room PROPN
201 NUM
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
20892 NUM
. PUNCT
      SPACE
SCIENTIFIC PROPN
INFORMATION PROPN
SERVICES NOUN
OF ADP
THE DET
NATIONAL PROPN
CANCER PROPN
     SPACE
INSTITUTE PROPN
. PUNCT
( PUNCT
91 NUM
- SYM
2683 NUM
) PUNCT
. PUNCT
This DET
booklet NOUN
from ADP
the DET
International PROPN
     SPACE
Cancer PROPN
Information PROPN
Center PROPN
( PUNCT
ICIC PROPN
) PUNCT
describes VERB
each DET
ICIC PROPN
product NOUN
     SPACE
or CCONJ
service NOUN
, PUNCT
including VERB
scientific ADJ
journals NOUN
( PUNCT
Journal PROPN
of ADP
the DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
and CCONJ
NCI PROPN
Monographs PROPN
) PUNCT
, PUNCT
specialized VERB
     SPACE
current ADJ
awareness NOUN
publications NOUN
( PUNCT
CANCERGRAMS PROPN
, PUNCT
and CCONJ
ONCOLOGY NOUN
     SPACE
OVERVIEWS NOUN
) PUNCT
, PUNCT
and CCONJ
online ADJ
databases NOUN
( PUNCT
PDQ PROPN
and CCONJ
CANCERLIT NOUN
) PUNCT
. PUNCT
To PART
     SPACE
obtain VERB
copies NOUN
of ADP
the DET
booklet NOUN
, PUNCT
write VERB
to ADP
: PUNCT
International PROPN
Cancer PROPN
     SPACE
Information PROPN
Center PROPN
, PUNCT
Dept PROPN
. PUNCT
JJJ PROPN
, PUNCT
National PROPN
Cancer PROPN
Institute PROPN
, PUNCT
     SPACE
Bldg PROPN
. PUNCT
82 NUM
, PUNCT
Rm PROPN
. PROPN
123 NUM
, PUNCT
Bethesda PROPN
, PUNCT
Maryland PROPN
20892 NUM
or CCONJ
fax VERB
your PRON
     SPACE
request NOUN
to ADP
301 NUM
- PUNCT
480 NUM
- PUNCT
8105.HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
29Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
            SPACE
Publications NOUN
for ADP
Patients NOUN
Available ADJ
from ADP
the DET
NCI PROPN
( PUNCT
1/93 NUM
) PUNCT
Free ADJ
copies NOUN
of ADP
the DET
following VERB
patient ADJ
education NOUN
materials NOUN
are AUX
available ADJ
( PUNCT
in ADP
single ADJ
copy NOUN
or CCONJ
bulk NOUN
) PUNCT
by ADP
calling VERB
the DET
NCI PROPN
's PART
Publication PROPN
Ordering PROPN
Service PROPN
, PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
4-CANCER PROPN
. PUNCT
   SPACE
CANCER PROPN
PREVENTION PROPN
      SPACE
CHEW NOUN
OR CCONJ
SNUFF PROPN
IS VERB
REAL ADV
BAD ADJ
STUFF NOUN
. PUNCT
  SPACE
This DET
brochure NOUN
, PUNCT
designedfor NOUN
seventh ADJ
and CCONJ
eighth ADJ
graders NOUN
, PUNCT
describes VERB
the DET
health NOUN
and CCONJ
socialeffects NOUN
of ADP
using VERB
smokeless ADJ
tobacco NOUN
products NOUN
. PUNCT
  SPACE
When ADV
fully ADV
opened VERB
, PUNCT
the DET
brochure NOUN
can AUX
be AUX
used VERB
as SCONJ
a DET
poster NOUN
. PUNCT
      SPACE
CLEARING PROPN
THE DET
AIR PROPN
: PUNCT
  SPACE
A DET
GUIDE PROPN
TO ADP
QUITTING VERB
SMOKING NOUN
. PUNCT
  SPACE
Thispamphlet PROPN
, PUNCT
designed VERB
to PART
help VERB
the DET
smoker NOUN
who PRON
wants VERB
to PART
quit VERB
, PUNCT
offers VERB
avariety NOUN
of ADP
approaches NOUN
to ADP
cessation NOUN
. PUNCT
[ PUNCT
24 NUM
pages NOUN
] PUNCT
      SPACE
DIET PROPN
, PUNCT
NUTRITION PROPN
& CCONJ
CANCER PROPN
PREVENTION PROPN
: PUNCT
  SPACE
THE DET
GOOD PROPN
NEWS PROPN
. PUNCT
  SPACE
Thisbooklet PROPN
provides VERB
an DET
overview NOUN
of ADP
dietary ADJ
guidelines NOUN
that PRON
mayassist VERB
individuals NOUN
in ADP
reducing VERB
their PRON
risks NOUN
for ADP
some DET
cancers NOUN
. PUNCT
  SPACE
Itidentifies VERB
certain ADJ
foods NOUN
to PART
choose VERB
more ADV
often ADV
and CCONJ
others NOUN
tochoose VERB
less ADV
often ADV
in ADP
the DET
context NOUN
of ADP
a DET
total ADJ
health NOUN
- PUNCT
promotingdiet NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
WHY ADV
DO VERB
YOU PRON
SMOKE VERB
? PUNCT
  SPACE
This DET
pamphlet NOUN
contains VERB
a DET
self NOUN
- PUNCT
test NOUN
todetermine NOUN
why ADV
people NOUN
smoke VERB
and CCONJ
suggests VERB
alternatives NOUN
andsubstitutes NOUN
that PRON
can AUX
help VERB
them PRON
stop VERB
. PUNCT
  SPACE
EARLY PROPN
DETECTION PROPN
       SPACE
BREAST PROPN
EXAMS PROPN
: PUNCT
  SPACE
WHAT PRON
YOU PRON
SHOULD AUX
KNOW VERB
. PUNCT
  SPACE
This DET
pamphlet ADJ
providesanswers NOUN
to ADP
questions NOUN
about ADP
breast NOUN
cancer NOUN
screening NOUN
methods NOUN
, PUNCT
including VERB
mammography NOUN
, PUNCT
the DET
medical ADJ
checkup NOUN
, PUNCT
breast PROPN
self NOUN
- PUNCT
examination NOUN
, PUNCT
and CCONJ
future ADJ
technologies NOUN
. PUNCT
  SPACE
Includes VERB
instructions NOUN
forbreast ADJ
self NOUN
- PUNCT
examination NOUN
. PUNCT
[ PUNCT
10 NUM
pages NOUN
] PUNCT
      SPACE
CANCER PROPN
TESTS NOUN
YOU PRON
SHOULD AUX
KNOW VERB
ABOUT ADV
: PUNCT
  SPACE
A DET
GUIDE PROPN
FOR ADP
PEOPLE NOUN
65AND NUM
OVER ADP
. PUNCT
  SPACE
This DET
pamphlet NOUN
describes VERB
the DET
cancer NOUN
tests NOUN
important ADJ
forpeople ADJ
age NOUN
65 NUM
and CCONJ
older ADJ
. PUNCT
  SPACE
It PRON
informs VERB
men NOUN
and CCONJ
women NOUN
of ADP
the DET
examsthey NOUN
should AUX
be AUX
requesting VERB
when ADV
they PRON
schedule VERB
checkups NOUN
with ADP
theirdoctors NOUN
. PUNCT
  SPACE
It PRON
provides VERB
a DET
checklist NOUN
for ADP
men NOUN
and CCONJ
women NOUN
to PART
recordwhen VERB
the DET
cancer NOUN
tests NOUN
occur VERB
, PUNCT
and CCONJ
it PRON
describes VERB
the DET
steps NOUN
to ADP
followHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
30Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993should NUM
cancer NOUN
be AUX
found VERB
. PUNCT
[ PUNCT
14 NUM
pages NOUN
] PUNCT
      SPACE
DO PROPN
THE DET
RIGHT ADJ
THING NOUN
: PUNCT
  SPACE
GET VERB
A DET
MAMMOGRAM PROPN
. PUNCT
  SPACE
This DET
brochure NOUN
targetsblack NOUN
women NOUN
age NOUN
40 NUM
or CCONJ
older ADJ
. PUNCT
  SPACE
It PRON
describes VERB
the DET
importance NOUN
ofregular ADJ
mammograms NOUN
in ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
  SPACE
Itstates VERB
the DET
NCI PROPN
guidelines NOUN
for ADP
mammography NOUN
. PUNCT
      SPACE
ONCE PROPN
A DET
YEAR NOUN
FOR ADP
A DET
LIFETIME NOUN
. PUNCT
  SPACE
This DET
brochure NOUN
targets VERB
all DET
womenage NOUN
40 NUM
or CCONJ
older ADJ
. PUNCT
  SPACE
It PRON
describes VERB
the DET
importance NOUN
of ADP
regularmammograms NOUN
in ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
  SPACE
It PRON
statesthe VERB
NCI PROPN
guidelines NOUN
for ADP
mammography NOUN
. PUNCT
      SPACE
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
ABOUT ADP
BREAST PROPN
LUMPS PROPN
. PUNCT
  SPACE
This DET
pamphletdescribes VERB
some DET
of ADP
the DET
most ADV
common ADJ
noncancerous ADJ
breast NOUN
lumps NOUN
andwhat PRON
can AUX
be AUX
done VERB
about ADP
them PRON
. PUNCT
  SPACE
Includes VERB
instructions NOUN
for ADP
breastself NOUN
- PUNCT
examination NOUN
. PUNCT
[ PUNCT
22 NUM
pages NOUN
] PUNCT
      SPACE
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
ABOUT ADP
CHOOSING NOUN
A DET
MAMMOGRAPHY NOUN
FACILITY.This PROPN
brochure NOUN
lists VERB
questions NOUN
to PART
ask VERB
in ADP
selecting VERB
a DET
qualitymammography ADJ
facility NOUN
. PUNCT
  SPACE
Also ADV
discusses VERB
typical ADJ
costs NOUN
and CCONJ
coverage NOUN
. PUNCT
      SPACE
TESTICULAR PROPN
SELF PROPN
- PUNCT
EXAMINATION PROPN
. PUNCT
  SPACE
This DET
pamphlet ADJ
containsinformation NOUN
about ADP
risks NOUN
and CCONJ
symptoms NOUN
of ADP
testicular ADJ
cancer NOUN
andprovides ADJ
instructions NOUN
on ADP
how ADV
to PART
perform VERB
testicular ADJ
self NOUN
- PUNCT
examination NOUN
. PUNCT
      SPACE
THE DET
PAP PROPN
TEST NOUN
: PUNCT
  SPACE
IT PRON
CAN AUX
SAVE VERB
YOUR PRON
LIFE NOUN
! PUNCT
  SPACE
This DET
easy ADJ
- PUNCT
to PART
- PUNCT
readpamphlet NOUN
tells VERB
women NOUN
the DET
importance NOUN
of ADP
getting VERB
a DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
Itexplains NOUN
who PRON
should AUX
request VERB
one NUM
, PUNCT
how ADV
often ADV
it PRON
should AUX
be AUX
done VERB
, PUNCT
andwhere ADV
to PART
go VERB
to PART
get AUX
a DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
GENERAL PROPN
       SPACE
RESEARCH PROPN
REPORTS PROPN
. PUNCT
  SPACE
In ADP
- PUNCT
depth NOUN
reports NOUN
covering VERB
currentknowledge NOUN
of ADP
the DET
causes NOUN
and CCONJ
prevention NOUN
, PUNCT
symptoms NOUN
, PUNCT
detection NOUN
anddiagnosis NOUN
, PUNCT
and CCONJ
treatment NOUN
of ADP
various ADJ
types NOUN
of ADP
cancer NOUN
. PUNCT
  SPACE
Individualreports NOUN
are AUX
available ADJ
on ADP
the DET
following ADJ
topics NOUN
: PUNCT
      SPACE
Bone PROPN
Marrow PROPN
Transplantation PROPN
     SPACE
Cancer NOUN
of ADP
the DET
Colon PROPN
and CCONJ
Rectum PROPN
     SPACE
Cancer NOUN
of ADP
the DET
Lung PROPN
     SPACE
Cancer PROPN
of ADP
the DET
Pancreas PROPN
     SPACE
MelanomaHICNet ADJ
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
31Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
Oral PROPN
Cancers PROPN
      SPACE
THE DET
IMMUNE PROPN
SYSTEM PROPN
- PUNCT
HOW ADV
IT PRON
WORKS VERB
. PUNCT
  SPACE
This DET
booklet NOUN
, PUNCT
written VERB
ata PROPN
high ADJ
school NOUN
level NOUN
, PUNCT
explains VERB
the DET
human ADJ
immune ADJ
system NOUN
for ADP
thegeneral ADJ
public NOUN
. PUNCT
  SPACE
It PRON
describes VERB
the DET
sophistication NOUN
of ADP
the DET
body'simmune NOUN
responses NOUN
, PUNCT
the DET
impact NOUN
of ADP
immune ADJ
disorders NOUN
, PUNCT
and CCONJ
therelation NOUN
of ADP
the DET
immune ADJ
system NOUN
to ADP
cancer NOUN
therapies NOUN
present VERB
andfuture NOUN
. PUNCT
[ PUNCT
28 NUM
pages NOUN
] PUNCT
       SPACE
WHAT PRON
YOU PRON
NEED VERB
TO PART
KNOW VERB
ABOUT ADP
CANCER PROPN
. PUNCT
  SPACE
This DET
series NOUN
ofpamphlets VERB
discusses VERB
symptoms NOUN
, PUNCT
diagnosis NOUN
, PUNCT
treatment NOUN
, PUNCT
emotionalissues NOUN
, PUNCT
and CCONJ
questions NOUN
to PART
ask VERB
the DET
doctor NOUN
. PUNCT
  SPACE
Includes VERB
glossary ADJ
ofterms NOUN
and CCONJ
other ADJ
resources NOUN
. PUNCT
  SPACE
Individual ADJ
pamphlets NOUN
are AUX
available ADJ
onthe ADJ
following ADJ
topics NOUN
: PUNCT
      SPACE
Bladder PROPN
     SPACE
Bone NOUN
     SPACE
Brain PROPN
     SPACE
Breast PROPN
     SPACE
Cervix PROPN
     SPACE
Colon PROPN
and CCONJ
Rectum PROPN
     SPACE
Dysplastic PROPN
Nevi PROPN
     SPACE
Esophagus NOUN
     SPACE
Hodgkin PROPN
's PART
Disease PROPN
     SPACE
Kidney PROPN
     SPACE
Larynx PROPN
     SPACE
Lung PROPN
     SPACE
Melanoma PROPN
     SPACE
Multiple PROPN
Myeloma PROPN
     SPACE
Non PROPN
- PROPN
Hodgkin PROPN
's PART
Lymphoma PROPN
     SPACE
Oral PROPN
Cancers PROPN
     SPACE
Ovary PROPN
     SPACE
Pancreas PROPN
     SPACE
Prostate PROPN
     SPACE
Skin NOUN
     SPACE
Testis PROPN
     SPACE
Uterus NOUN
  SPACE
PATIENT PROPN
EDUCATION PROPN
      SPACE
ANTICANCER PROPN
DRUG PROPN
INFORMATION NOUN
SHEETS VERB
IN ADP
SPANISH PROPN
/ SYM
ENGLISH PROPN
. PUNCT
  SPACE
Two NUM
- PUNCT
sided ADJ
fact NOUN
sheets NOUN
( PUNCT
in ADP
English PROPN
and CCONJ
Spanish PROPN
) PUNCT
provide VERB
informationabout VERB
side NOUN
effects NOUN
of ADP
common ADJ
drugs NOUN
used VERB
to PART
treat VERB
cancer NOUN
, PUNCT
theirHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
32Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993proper NUM
usage NOUN
, PUNCT
and CCONJ
precautions NOUN
for ADP
patients NOUN
. PUNCT
  SPACE
The DET
fact NOUN
sheets NOUN
wereprepared VERB
by ADP
the DET
United PROPN
States PROPN
Pharmacopeial PROPN
Convention PROPN
, PUNCT
Inc. PROPN
, PUNCT
fordistribution NOUN
by ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
Single ADJ
sets NOUN
onlymay NOUN
be AUX
ordered VERB
. PUNCT
      SPACE
ADVANCED PROPN
CANCER PROPN
: PUNCT
  SPACE
LIVING NOUN
EACH PROPN
DAY PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
addressescoping VERB
with ADP
a DET
terminal ADJ
illness NOUN
by ADP
discussing VERB
practicalconsiderations NOUN
for ADP
the DET
patient NOUN
, PUNCT
the DET
family NOUN
, PUNCT
and CCONJ
friends NOUN
. PUNCT
[ PUNCT
30pages PROPN
] PUNCT
      SPACE
CHEMOTHERAPY PROPN
AND CCONJ
YOU PRON
: PUNCT
  SPACE
A DET
GUIDE PROPN
TO ADP
SELF PROPN
- PUNCT
HELP PROPN
DURINGTREATMENT NOUN
. PUNCT
This DET
booklet NOUN
, PUNCT
in ADP
question NOUN
- PUNCT
and CCONJ
- PUNCT
answer NOUN
format NOUN
, PUNCT
addressesproblems NOUN
and CCONJ
concerns NOUN
of ADP
patients NOUN
receiving VERB
chemotherapy NOUN
. PUNCT
Emphasis NOUN
is AUX
on ADP
explanation NOUN
and CCONJ
self NOUN
- PUNCT
help NOUN
. PUNCT
[ PUNCT
64 NUM
pages NOUN
] PUNCT
      SPACE
EATING NOUN
HINTS NOUN
: PUNCT
  SPACE
RECIPES NOUN
AND CCONJ
TIPS NOUN
FOR ADP
BETTER ADJ
NUTRITION NOUN
DURINGCANCER ADJ
TREATMENT NOUN
. PUNCT
  SPACE
This DET
cookbook NOUN
- PUNCT
style NOUN
booklet NOUN
includes VERB
recipesand NOUN
suggestions NOUN
for ADP
maintaining VERB
optimum ADJ
nutrition NOUN
duringtreatment NOUN
. PUNCT
  SPACE
All DET
recipes NOUN
have AUX
been AUX
tested VERB
. PUNCT
[ PUNCT
92 NUM
pages NOUN
] PUNCT
      SPACE
FACING PROPN
FORWARD PROPN
: PUNCT
A DET
GUIDE NOUN
FOR ADP
CANCER ADJ
SURVIVORS NOUN
. PUNCT
  SPACE
This DET
bookletpresents VERB
a DET
concise ADJ
overview NOUN
of ADP
important ADJ
survivor NOUN
issues NOUN
, PUNCT
including VERB
ongoing ADJ
health NOUN
needs NOUN
, PUNCT
psychosocial ADJ
concerns NOUN
, PUNCT
insurance NOUN
, PUNCT
and CCONJ
employment NOUN
. PUNCT
  SPACE
Easy ADJ
- PUNCT
to ADP
- PUNCT
use NOUN
format NOUN
includes VERB
cancer NOUN
survivors'experiences NOUN
, PUNCT
practical ADJ
tips NOUN
, PUNCT
recordkeeping VERB
forms NOUN
, PUNCT
and CCONJ
resources NOUN
. PUNCT
It PRON
is AUX
recommended VERB
for ADP
cancer NOUN
survivors NOUN
, PUNCT
their PRON
family NOUN
, PUNCT
andfriends VERB
. PUNCT
[ PUNCT
43 NUM
pages NOUN
] PUNCT
      SPACE
PATIENT PROPN
TO ADP
PATIENT VERB
: PUNCT
  SPACE
CANCER PROPN
CLINICAL PROPN
TRIALS NOUN
AND CCONJ
YOU PRON
. PUNCT
  SPACE
This15-minute PROPN
videocassette NOUN
provides VERB
simple ADJ
information NOUN
for ADP
patientsand PROPN
families NOUN
about ADP
the DET
clinical ADJ
trials NOUN
process NOUN
( PUNCT
produced VERB
incollaboration NOUN
with ADP
the DET
American PROPN
College PROPN
of ADP
Surgeons PROPN
Commission PROPN
onCancer PROPN
) PUNCT
. PUNCT
      SPACE
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
ABOUT ADP
PAIN PROPN
CONTROL PROPN
: PUNCT
  SPACE
A DET
GUIDE PROPN
FORPEOPLE PROPN
WITH ADP
CANCER NOUN
AND CCONJ
THEIR PRON
FAMILIES PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
discussespain NOUN
control NOUN
using VERB
both CCONJ
medical ADJ
and CCONJ
nonmedical ADJ
methods NOUN
. PUNCT
  SPACE
Theemphasis PROPN
is AUX
on ADP
explanation NOUN
, PUNCT
self NOUN
- PUNCT
help NOUN
, PUNCT
and CCONJ
patient ADJ
participation NOUN
. PUNCT
This DET
booklet NOUN
is AUX
also ADV
available ADJ
from ADP
the DET
American PROPN
Cancer PROPN
Society.[44 ADJ
pages NOUN
] PUNCT
      SPACE
RADIATION PROPN
THERAPY PROPN
AND CCONJ
YOU PRON
: PUNCT
  SPACE
A DET
GUIDE PROPN
TO ADP
SELF PROPN
- PUNCT
HELP PROPN
DURINGTREATMENT NOUN
. PUNCT
This DET
booklet NOUN
addresses VERB
concerns NOUN
of ADP
patients NOUN
receivingforms NOUN
of ADP
radiation NOUN
therapy NOUN
. PUNCT
  SPACE
Emphasis NOUN
is AUX
on ADP
explanation NOUN
andself NOUN
- PUNCT
help NOUN
. PUNCT
[ PUNCT
52 NUM
pages]HICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
33Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
TAKING PROPN
TIME NOUN
: PUNCT
  SPACE
SUPPORT NOUN
FOR ADP
PEOPLE NOUN
WITH ADP
CANCER NOUN
AND CCONJ
THE DET
PEOPLEWHO NOUN
CARE VERB
ABOUT ADP
THEM PRON
. PUNCT
  SPACE
This DET
sensitively ADV
written VERB
booklet NOUN
forpersons NOUN
with ADP
cancer NOUN
and CCONJ
their PRON
families NOUN
addresses VERB
the DET
feelings NOUN
andconcerns ADV
of ADP
others NOUN
in ADP
similar ADJ
situations NOUN
and CCONJ
how ADV
they PRON
have AUX
coped.[68 PROPN
pages NOUN
] PUNCT
      SPACE
WHAT PRON
ARE VERB
CLINICAL NOUN
TRIALS NOUN
ALL DET
ABOUT ADP
? PUNCT
  SPACE
This DET
booklet NOUN
isdesigned VERB
for ADP
patients NOUN
who PRON
are AUX
considering VERB
taking VERB
part NOUN
in ADP
researchfor NOUN
new ADJ
cancer NOUN
treatments NOUN
. PUNCT
  SPACE
It PRON
explains VERB
clinical ADJ
trials NOUN
topatients NOUN
in ADP
easy ADJ
- PUNCT
to PART
- PUNCT
understand VERB
terms NOUN
and CCONJ
gives VERB
them PRON
informationthat PRON
will AUX
help VERB
them PRON
decide VERB
about ADP
participating VERB
. PUNCT
[ PUNCT
24 NUM
pages NOUN
] PUNCT
      SPACE
WHEN ADV
CANCER ADJ
RECURS NOUN
: PUNCT
  SPACE
MEETING PROPN
THE DET
CHALLENGE PROPN
AGAIN ADV
. PUNCT
  SPACE
Thisbooklet PROPN
details NOUN
the DET
different ADJ
types NOUN
of ADP
recurrence NOUN
, PUNCT
types NOUN
oftreatment NOUN
, PUNCT
and CCONJ
coping VERB
with ADP
cancer NOUN
's PART
return NOUN
. PUNCT
[ PUNCT
28 NUM
pages NOUN
] PUNCT
  SPACE
BREAST PROPN
CANCER PROPN
EDUCATION PROPN
SERIES NOUN
      SPACE
BREAST PROPN
BIOPSY PROPN
: PUNCT
  SPACE
WHAT PRON
YOU PRON
SHOULD AUX
KNOW VERB
. PUNCT
  SPACE
This DET
booklet NOUN
     SPACE
discusses VERB
biopsy NOUN
procedures NOUN
. PUNCT
  SPACE
It PRON
describes VERB
what PRON
to PART
expect VERB
in ADP
     SPACE
the DET
hospital NOUN
and CCONJ
while SCONJ
awaiting VERB
a DET
diagnosis NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
BREAST PROPN
CANCER PROPN
: PUNCT
  SPACE
UNDERSTANDING NOUN
TREATMENT NOUN
OPTIONS NOUN
. PUNCT
This DET
     SPACE
booklet NOUN
summarizes VERB
the DET
biopsy PROPN
procedure NOUN
and CCONJ
examines VERB
the DET
     SPACE
pros NOUN
and CCONJ
cons NOUN
of ADP
various ADJ
types NOUN
of ADP
breast NOUN
surgery NOUN
. PUNCT
  SPACE
It PRON
     SPACE
discusses NOUN
lumpectomy NOUN
and CCONJ
radiation NOUN
therapy NOUN
as SCONJ
primary ADJ
     SPACE
treatment NOUN
, PUNCT
adjuvant ADJ
therapy NOUN
, PUNCT
and CCONJ
the DET
process NOUN
of ADP
making VERB
     SPACE
treatment NOUN
decisions NOUN
. PUNCT
[ PUNCT
19 NUM
pages NOUN
] PUNCT
      SPACE
MASTECTOMY PROPN
: PUNCT
  SPACE
A DET
TREATMENT NOUN
FOR ADP
BREAST PROPN
CANCER PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
     SPACE
presents VERB
information NOUN
about ADP
the DET
different ADJ
types NOUN
of ADP
breast NOUN
     SPACE
surgery NOUN
. PUNCT
  SPACE
It PRON
explains VERB
what PRON
to PART
expect VERB
in ADP
the DET
hospital NOUN
and CCONJ
     SPACE
during ADP
the DET
recovery NOUN
period NOUN
following VERB
breast NOUN
cancer NOUN
surgery NOUN
. PUNCT
     SPACE
Breast PROPN
self NOUN
- PUNCT
examination NOUN
for ADP
mastectomy NOUN
patients NOUN
is AUX
also ADV
     SPACE
described VERB
. PUNCT
[ PUNCT
25 NUM
pages NOUN
] PUNCT
      SPACE
AFTER ADP
BREAST PROPN
CANCER PROPN
: PUNCT
  SPACE
A DET
GUIDE NOUN
TO ADP
FOLLOWUP ADJ
CARE PROPN
. PUNCT
  SPACE
This DET
     SPACE
booklet NOUN
is AUX
for ADP
the DET
woman NOUN
who PRON
has AUX
completed VERB
treatment NOUN
. PUNCT
  SPACE
It PRON
     SPACE
explains VERB
the DET
importance NOUN
of ADP
checking VERB
for ADP
possible ADJ
signs NOUN
of ADP
     SPACE
recurring VERB
cancer NOUN
by ADP
receiving VERB
regular ADJ
mammograms NOUN
, PUNCT
getting VERB
     SPACE
breast NOUN
exams NOUN
from ADP
a DET
doctor NOUN
, PUNCT
and CCONJ
continuing VERB
monthly ADJ
breast NOUN
     SPACE
self NOUN
- PUNCT
exams NOUN
. PUNCT
  SPACE
It PRON
offers VERB
advice NOUN
for ADP
managing VERB
the DET
physical ADJ
and CCONJ
     SPACE
emotional ADJ
side NOUN
effects NOUN
that PRON
may AUX
accompany VERB
surviving VERB
breastHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
34Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
cancer NOUN
. PUNCT
[ PUNCT
15 NUM
pages NOUN
] PUNCT
      SPACE
PEDIATRIC PROPN
CANCER PROPN
EDUCATION PROPN
SERIES NOUN
      SPACE
HELP PROPN
YOURSELF PROPN
: PUNCT
  SPACE
TIPS PROPN
FOR ADP
TEENAGERS NOUN
WITH ADP
CANCER PROPN
. PUNCT
This DET
     SPACE
magazine NOUN
- PUNCT
style NOUN
booklet NOUN
is AUX
designed VERB
to PART
provide VERB
information NOUN
     SPACE
and CCONJ
support NOUN
to ADP
adolescents NOUN
with ADP
cancer NOUN
. PUNCT
  SPACE
Issues NOUN
addressed VERB
     SPACE
include VERB
reactions NOUN
to ADP
diagnosis VERB
, PUNCT
relationships NOUN
with ADP
family NOUN
     SPACE
and CCONJ
friends NOUN
, PUNCT
school NOUN
attendance NOUN
, PUNCT
and CCONJ
body NOUN
image NOUN
. PUNCT
[ PUNCT
37 NUM
pages NOUN
] PUNCT
      SPACE
HOSPITAL PROPN
DAYS NOUN
, PUNCT
TREATMENT NOUN
WAYS PROPN
. PUNCT
This DET
hematology NOUN
- PUNCT
oncology NOUN
     SPACE
coloring VERB
book NOUN
helps VERB
orient ADP
the DET
child NOUN
with ADP
cancer NOUN
to ADP
hospital NOUN
     SPACE
and CCONJ
treatment NOUN
procedures NOUN
. PUNCT
[ PUNCT
26 NUM
pages NOUN
] PUNCT
      SPACE
MANAGING VERB
YOUR PRON
CHILD NOUN
'S AUX
EATING NOUN
PROBLEMS NOUN
DURING ADP
CANCER PROPN
     SPACE
TREATMENT NOUN
. PUNCT
  SPACE
This DET
booklet NOUN
contains VERB
information NOUN
about ADP
the DET
     SPACE
importance NOUN
of ADP
nutrition NOUN
, PUNCT
the DET
side NOUN
effects NOUN
of ADP
cancer NOUN
and CCONJ
its PRON
     SPACE
treatment NOUN
, PUNCT
ways NOUN
to PART
encourage VERB
a DET
child NOUN
to PART
eat VERB
, PUNCT
and CCONJ
special ADJ
     SPACE
diets NOUN
. PUNCT
[ PUNCT
32 NUM
pages NOUN
] PUNCT
      SPACE
TALKING PROPN
WITH ADP
YOUR PRON
CHILD NOUN
ABOUT ADP
CANCER PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
     SPACE
designed VERB
for ADP
the DET
parent NOUN
whose PRON
child NOUN
has AUX
been AUX
diagnosed VERB
with ADP
     SPACE
cancer NOUN
. PUNCT
  SPACE
It PRON
addresses VERB
the DET
health NOUN
- PUNCT
related VERB
concerns NOUN
of ADP
young ADJ
     SPACE
people NOUN
of ADP
different ADJ
ages NOUN
; PUNCT
it PRON
suggests VERB
ways NOUN
to PART
discuss VERB
     SPACE
disease NOUN
- PUNCT
related VERB
issues NOUN
with ADP
the DET
child NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
WHEN ADV
SOMEONE NOUN
IN ADP
YOUR PRON
FAMILY NOUN
HAS VERB
CANCER PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
     SPACE
written VERB
for ADP
young ADJ
people NOUN
whose PRON
parent NOUN
or CCONJ
sibling NOUN
has AUX
cancer NOUN
. PUNCT
     SPACE
It PRON
includes VERB
sections NOUN
on ADP
the DET
disease NOUN
, PUNCT
its PRON
treatment NOUN
, PUNCT
and CCONJ
     SPACE
emotional ADJ
concerns NOUN
. PUNCT
[ PUNCT
28 NUM
pages NOUN
] PUNCT
      SPACE
YOUNG PROPN
PEOPLE NOUN
WITH ADP
CANCER NOUN
: PUNCT
  SPACE
A DET
HANDBOOK NOUN
FOR ADP
PARENTS NOUN
. PUNCT
     SPACE
This DET
booklet NOUN
discusses VERB
the DET
most ADV
common ADJ
types NOUN
of ADP
childhood NOUN
     SPACE
cancer NOUN
, PUNCT
treatments NOUN
and CCONJ
side NOUN
effects NOUN
, PUNCT
and CCONJ
issues NOUN
that PRON
may AUX
     SPACE
arise VERB
when ADV
a DET
child NOUN
is AUX
diagnosed VERB
with ADP
cancer NOUN
. PUNCT
  SPACE
Offers VERB
medical ADJ
     SPACE
information NOUN
and CCONJ
practical ADJ
tips NOUN
gathered VERB
from ADP
the DET
experience NOUN
     SPACE
of ADP
others NOUN
. PUNCT
[ PUNCT
86 NUM
pages NOUN
] PUNCT
  SPACE
SPANISH PROPN
LANGUAGE PROPN
PUBLICATIONS PROPN
Si PROPN
desea VERB
hablar ADJ
con X
un PROPN
especialista PROPN
en ADP
informacion PROPN
sobre NOUN
elcancer NOUN
, PUNCT
por NOUN
favor NOUN
llame PROPN
al PROPN
1 NUM
- PUNCT
800 NUM
- PUNCT
422 NUM
- SYM
6237 NUM
( PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
4-CANCER NUM
) PUNCT
. PUNCT
CANCER PROPN
PREVENTIONHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
35Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
A DET
TIME NOUN
OF ADP
CHANGE PROPN
/ SYM
DE PROPN
NINA PROPN
A PROPN
MUJER PROPN
. PUNCT
  SPACE
This DET
bilingual ADJ
fotonovela PROPN
     SPACE
was AUX
developed VERB
specifically ADV
for ADP
young ADJ
women NOUN
. PUNCT
  SPACE
It PRON
discusses VERB
     SPACE
various ADJ
health NOUN
promotion NOUN
issues NOUN
such ADJ
as SCONJ
nutrition NOUN
, PUNCT
no DET
     SPACE
smoking NOUN
, PUNCT
exercise NOUN
, PUNCT
and CCONJ
pelvic ADJ
, PUNCT
Pap PROPN
, PUNCT
and CCONJ
breast NOUN
examinations NOUN
. PUNCT
     SPACE
[ PUNCT
34 NUM
pages NOUN
] PUNCT
      SPACE
DATOS PROPN
SOBRE PROPN
EL PROPN
HABITO PROPN
DE PROPN
FUMAR PROPN
Y PROPN
RECOMENDACIONES NOUN
PARA NOUN
DEJAR VERB
     SPACE
DE PROPN
FUMAR PROPN
. PUNCT
  SPACE
This DET
bilingual ADJ
pamphlet NOUN
describes VERB
the DET
health NOUN
     SPACE
risks NOUN
of ADP
smoking NOUN
and CCONJ
tips NOUN
on ADP
how ADV
to PART
quit VERB
and CCONJ
how ADV
to PART
stay VERB
     SPACE
quit NOUN
. PUNCT
[ PUNCT
8 NUM
pages NOUN
] PUNCT
      SPACE
GUIA PROPN
PARA PROPN
DEJAR PROPN
DE PROPN
FUMAR PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
a DET
full ADJ
- PUNCT
color NOUN
, PUNCT
     SPACE
self NOUN
- PUNCT
help NOUN
smoking NOUN
cessation NOUN
booklet NOUN
prepared VERB
specifically ADV
     SPACE
for ADP
Spanish PROPN
- PUNCT
speaking VERB
Americans PROPN
. PUNCT
  SPACE
It PRON
was AUX
developed VERB
by ADP
the DET
     SPACE
University PROPN
of ADP
California PROPN
, PUNCT
San PROPN
Francisco PROPN
, PUNCT
under ADP
an DET
NCI PROPN
     SPACE
research NOUN
grant NOUN
. PUNCT
[ PUNCT
36 NUM
pages NOUN
] PUNCT
  SPACE
EARLY PROPN
DETECTION PROPN
      SPACE
HAGASE VERB
LA PROPN
PRUEBA PROPN
PAP PROPN
: PUNCT
HAGALO NOUN
HOY PROPN
... PUNCT
POR PROPN
SU PROPN
SALUD NOUN
Y PROPN
SU PROPN
     SPACE
FAMILIA NOUN
. PUNCT
  SPACE
This DET
bilingual ADJ
brochure NOUN
tells VERB
women NOUN
why ADV
it PRON
is AUX
     SPACE
important ADJ
to PART
get AUX
a DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
It PRON
gives VERB
brief ADJ
, PUNCT
clear ADJ
     SPACE
information NOUN
about ADP
who PRON
needs VERB
a DET
Pap PROPN
test NOUN
, PUNCT
where ADV
to PART
go VERB
to PART
get AUX
     SPACE
one NUM
, PUNCT
and CCONJ
how ADV
often ADV
the DET
Pap PROPN
test NOUN
should AUX
be AUX
done VERB
. PUNCT
      SPACE
HAGASE PROPN
UN PROPN
MAMOGRAMA PROPN
: PUNCT
UNA PROPN
VEZ PROPN
AL PROPN
ANO PROPN
... PUNCT
PARA PROPN
TODA PROPN
UNA PROPN
VIDA PROPN
. PUNCT
     SPACE
This DET
bilingual ADJ
brochure NOUN
describes VERB
the DET
importance NOUN
of ADP
     SPACE
mammograms NOUN
in ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
  SPACE
It PRON
     SPACE
gives VERB
brief ADJ
information NOUN
about ADP
who PRON
is AUX
at ADP
risk NOUN
for ADP
breast NOUN
     SPACE
cancer NOUN
, PUNCT
how ADV
a DET
mammogram NOUN
is AUX
done VERB
, PUNCT
and CCONJ
how ADV
to PART
get AUX
one NUM
. PUNCT
      SPACE
LA PROPN
PRUEBA PROPN
PAP PROPN
: PUNCT
UN PROPN
METODO NOUN
PARA NOUN
DIAGNOSTICAR NOUN
CANCER ADJ
DEL PROPN
CUELLO NOUN
     SPACE
DEL PROPN
UTERO NOUN
. PUNCT
  SPACE
This DET
booklet NOUN
in ADP
Spanish ADJ
answers NOUN
questions NOUN
about ADP
     SPACE
the DET
Pap PROPN
test NOUN
, PUNCT
including VERB
how ADV
often ADV
it PRON
should AUX
be AUX
done VERB
, PUNCT
     SPACE
significance NOUN
of ADP
results NOUN
, PUNCT
and CCONJ
other ADJ
diagnostic ADJ
tests NOUN
and CCONJ
     SPACE
treatments NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
LO PROPN
QUE PROPN
USTED PROPN
DEBE PROPN
SABER VERB
SOBRE PROPN
LOS PROPN
EXAMENES VERB
DE PROPN
LOS PROPN
SENOS PROPN
. PUNCT
     SPACE
This DET
booklet NOUN
in ADP
Spanish ADJ
explains VERB
the DET
importance NOUN
of ADP
the DET
three NUM
     SPACE
actions NOUN
recommended VERB
by ADP
the DET
NCI PROPN
to PART
detect VERB
breast NOUN
cancer NOUN
as SCONJ
     SPACE
early ADV
as SCONJ
possible ADJ
: PUNCT
  SPACE
requesting VERB
regular ADJ
mammography NOUN
, PUNCT
getting VERB
     SPACE
an DET
annual ADJ
breast NOUN
exam NOUN
from ADP
the DET
doctor NOUN
, PUNCT
and CCONJ
performing VERB
a DET
     SPACE
monthly ADJ
breast NOUN
self NOUN
- PUNCT
exam NOUN
. PUNCT
[ PUNCT
6 NUM
pages]HICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
36Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
PREGUNTAS PROPN
Y PROPN
RESPUESTAS PROPN
SOBRE NOUN
LA PROPN
SELECCION PROPN
DE PROPN
UN PROPN
CENTRO PROPN
DE PROPN
     SPACE
MAMOGRAFIA NOUN
. PUNCT
  SPACE
This DET
brochure NOUN
lists VERB
questions NOUN
and CCONJ
answers NOUN
to PART
     SPACE
ask NOUN
in ADP
selecting VERB
a DET
quality NOUN
mammography NOUN
facility NOUN
. PUNCT
PATIENT PROPN
EDUCATION PROPN
      SPACE
ANTICANCER PROPN
DRUG PROPN
INFORMATION NOUN
SHEETS VERB
IN ADP
SPANISH PROPN
/ SYM
ENGLISH PROPN
. PUNCT
  SPACE
Two- PROPN
     SPACE
sided ADJ
fact NOUN
sheets NOUN
( PUNCT
in ADP
English PROPN
and CCONJ
Spanish PROPN
) PUNCT
provide VERB
     SPACE
information NOUN
about ADP
side NOUN
effects NOUN
of ADP
common ADJ
drugs NOUN
used VERB
to PART
treat VERB
     SPACE
cancer NOUN
, PUNCT
their PRON
proper ADJ
usage NOUN
, PUNCT
and CCONJ
precautions NOUN
for ADP
patients NOUN
. PUNCT
     SPACE
The DET
fact NOUN
sheets NOUN
were AUX
prepared VERB
by ADP
the DET
United PROPN
States PROPN
     SPACE
Pharmacopeial PROPN
Convention PROPN
, PUNCT
Inc. PROPN
, PUNCT
for ADP
distribution NOUN
by ADP
the DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
Single ADJ
sets NOUN
only ADV
may AUX
be AUX
ordered VERB
. PUNCT
      SPACE
DATOS PROPN
SOBRE PROPN
EL PROPN
TRATAMIENTO PROPN
DE PROPN
QUIMIOTERAPIA PROPN
CONTRA VERB
EL PROPN
     SPACE
CANCER PROPN
. PUNCT
  SPACE
This DET
flyer NOUN
in ADP
Spanish PROPN
provides VERB
a DET
brief ADJ
introduction NOUN
     SPACE
to ADP
cancer NOUN
chemotherapy NOUN
. PUNCT
[ PUNCT
12 NUM
pages NOUN
] PUNCT
      SPACE
EL PROPN
TRATAMIENTO PROPN
DE PROPN
RADIOTERAPIA PROPN
: PUNCT
  SPACE
GUIA PROPN
PARA PROPN
EL PROPN
PACIENTE NOUN
     SPACE
DURANTE NOUN
EL PROPN
TRATAMIENTO PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
in ADP
Spanish ADJ
addresses NOUN
     SPACE
the DET
concerns NOUN
of ADP
patients NOUN
receiving VERB
radiation NOUN
therapy NOUN
for ADP
     SPACE
cancer NOUN
. PUNCT
  SPACE
Emphasis NOUN
is AUX
on ADP
explanation NOUN
and CCONJ
self NOUN
- PUNCT
help NOUN
. PUNCT
[ PUNCT
48 NUM
     SPACE
pages]HICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
37Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                              SPACE
AIDS PROPN
News PROPN
Summaries PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
AIDS PROPN
Daily PROPN
Summary PROPN
for ADP
April PROPN
19 NUM
to ADP
April PROPN
23 NUM
, PUNCT
1993 NUM
            SPACE
The DET
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
( PUNCT
CDC PROPN
) PUNCT
National PROPN
AIDS PROPN
  SPACE
Clearinghouse PROPN
makes VERB
available ADJ
the DET
following VERB
information NOUN
as SCONJ
a DET
public ADJ
  SPACE
service NOUN
only ADV
. PUNCT
Providing VERB
this DET
information NOUN
does AUX
not PART
constitute VERB
endorsement NOUN
  SPACE
by ADP
the DET
CDC PROPN
, PUNCT
the DET
CDC PROPN
Clearinghouse PROPN
, PUNCT
or CCONJ
any DET
other ADJ
organization NOUN
. PUNCT
Reproduction NOUN
  SPACE
of ADP
this DET
text NOUN
is AUX
encouraged VERB
; PUNCT
however ADV
, PUNCT
copies NOUN
may AUX
not PART
be AUX
sold VERB
. PUNCT
  SPACE
Copyright NOUN
1993 NUM
, PUNCT
Information PROPN
, PUNCT
Inc. PROPN
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                     SPACE
April PROPN
19 NUM
, PUNCT
1993 NUM
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
      SPACE
" PUNCT
Absence PROPN
of ADP
HIV PROPN
Transmission PROPN
From ADP
an DET
Infected ADJ
Orthopedic PROPN
Surgeon PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
1807 NUM
  SPACE
( PUNCT
von PROPN
Reyn PROPN
, PUNCT
C. PROPN
Fordham PROPN
) PUNCT
      SPACE
The DET
risk NOUN
of ADP
HIV PROPN
transmission NOUN
from ADP
an DET
HIV PROPN
- PUNCT
positive ADJ
surgeon NOUN
to ADP
  SPACE
patient NOUN
is AUX
extremely ADV
low ADJ
, PUNCT
provided VERB
that SCONJ
the DET
surgeon NOUN
strictly ADV
  SPACE
adheres NOUN
to ADP
universal ADJ
infection NOUN
control NOUN
procedures NOUN
, PUNCT
write VERB
C. PROPN
  SPACE
Fordham PROPN
von PROPN
Reyn PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
Dartmouth PROPN
- PUNCT
Hitchcock PROPN
Medical PROPN
Center PROPN
in ADP
Lebanon PROPN
, PUNCT
N.H. PROPN
  SPACE
The DET
researchers NOUN
contacted VERB
2,317 NUM
former ADJ
patients NOUN
on ADP
whom PRON
an DET
HIV PROPN
- PUNCT
positive ADJ
orthopedic ADJ
surgeon NOUN
performed VERB
invasive NOUN
  SPACE
procedures NOUN
between ADP
January PROPN
1 NUM
, PUNCT
1978 NUM
and CCONJ
June PROPN
30 NUM
, PUNCT
1992 NUM
. PUNCT
  SPACE
The DET
  SPACE
orthopedic ADJ
surgeon NOUN
voluntarily ADV
withdrew VERB
from ADP
practice NOUN
after ADP
  SPACE
testing VERB
positive ADJ
for ADP
HIV PROPN
. PUNCT
  SPACE
A DET
total NOUN
of ADP
1,174 NUM
former ADJ
patients NOUN
  SPACE
underwent VERB
HIV PROPN
testing NOUN
, PUNCT
representing VERB
50.7 NUM
percent NOUN
of ADP
patients NOUN
on ADP
  SPACE
whom PRON
the DET
orthopedic ADJ
surgeon NOUN
performed VERB
invasive ADJ
procedures NOUN
during ADP
  SPACE
the DET
13.5-year ADJ
period NOUN
. PUNCT
  SPACE
Patients NOUN
were AUX
tested VERB
from ADP
each DET
year NOUN
and CCONJ
  SPACE
from ADP
each DET
category NOUN
of ADP
invasive ADJ
procedure NOUN
. PUNCT
  SPACE
All DET
patients NOUN
were AUX
  SPACE
found VERB
to PART
be AUX
negative ADJ
for ADP
HIV PROPN
by ADP
enzyme NOUN
- PUNCT
linked VERB
- PUNCT
immunosorbent NOUN
  SPACE
assay NOUN
. PUNCT
  SPACE
Two NUM
former ADJ
patients NOUN
reported VERB
known VERB
HIV PROPN
infection NOUN
prior ADV
to ADP
surgery NOUN
. PUNCT
  SPACE
The DET
examination NOUN
of ADP
AIDS PROPN
case NOUN
registries VERB
and CCONJ
vital ADJ
  SPACE
records NOUN
neglected VERB
to PART
detect VERB
cases NOUN
of ADP
HIV PROPN
infection NOUN
among ADP
former ADJ
  SPACE
surgical ADJ
patients NOUN
. PUNCT
  SPACE
The DET
estimated VERB
cost NOUN
of ADP
the DET
initial ADJ
patient NOUN
  SPACE
notification NOUN
and CCONJ
testing NOUN
was AUX
$ SYM
158,000 NUM
, PUNCT
with ADP
the DET
single ADJ
most ADJ
  SPACE
expensive ADJ
activity NOUN
being AUX
counseling NOUN
and CCONJ
testing NOUN
. PUNCT
  SPACE
This DET
accounted VERB
  SPACE
for ADP
37 NUM
percent NOUN
of ADP
the DET
total ADJ
expense NOUN
. PUNCT
  SPACE
The DET
patient ADJ
notification NOUN
  SPACE
and CCONJ
testing NOUN
were AUX
conducted VERB
while SCONJ
maintaining VERB
the DET
confidentiality NOUN
  SPACE
of ADP
the DET
orthopedic ADJ
surgeon NOUN
who PRON
was AUX
an DET
active ADJ
participant NOUN
in ADP
the DET
  SPACE
planning NOUN
and CCONJ
execution NOUN
of ADP
the DET
study NOUN
. PUNCT
  SPACE
Notifying VERB
patients NOUN
of ADP
the DET
  SPACE
infected VERB
surgeon NOUN
's PART
HIV PROPN
- PUNCT
status NOUN
is AUX
both CCONJ
disruptive ADJ
and CCONJ
expensive ADJ
  SPACE
and CCONJ
is AUX
not PART
routinely ADV
recommended VERB
, PUNCT
the DET
researchers NOUN
conclude VERB
. PUNCT
\ PUNCT
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
     SPACE
" PUNCT
Investigation PROPN
of ADP
Potential PROPN
HIV PROPN
Transmission PROPN
to ADP
the DET
Patients PROPN
of ADP
  SPACE
an DET
HIV PROPN
- PUNCT
Infected VERB
Surgeon PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
Vol PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
38Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
1795 NUM
  SPACE
( PUNCT
Smith PROPN
Rogers PROPN
, PUNCT
Audrey PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
The DET
risk NOUN
of ADP
HIV PROPN
transmission NOUN
during ADP
surgery NOUN
is AUX
so ADV
remote ADJ
that SCONJ
it PRON
  SPACE
will AUX
be AUX
quantified VERB
only ADV
by ADP
gathering VERB
data NOUN
from ADP
multiple ADJ
, PUNCT
  SPACE
methodologically ADV
similar ADJ
investigations NOUN
, PUNCT
writes VERB
Audrey PROPN
Smith PROPN
  SPACE
Rogers PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
Johns PROPN
Hopkins PROPN
University PROPN
School PROPN
of ADP
Medicine PROPN
  SPACE
in ADP
Baltimore PROPN
, PUNCT
Md. PROPN
  SPACE
The DET
researchers NOUN
identified VERB
a DET
total NOUN
of ADP
1,131 NUM
  SPACE
persons NOUN
in ADP
hospital NOUN
databases NOUN
who PRON
underwent VERB
invasive ADJ
surgical ADJ
  SPACE
procedures NOUN
between ADP
1984 NUM
and CCONJ
1990 NUM
and CCONJ
for ADP
whom PRON
the DET
HIV PROPN
- PUNCT
positive ADJ
  SPACE
surgeon NOUN
was AUX
listed VERB
as SCONJ
the DET
operating NOUN
surgeon NOUN
. PUNCT
  SPACE
The DET
AIDS PROPN
case NOUN
  SPACE
registries NOUN
were AUX
reviewed VERB
for ADP
all DET
patients NOUN
having VERB
undergone VERB
  SPACE
invasive ADJ
procedures NOUN
and CCONJ
death NOUN
certificates NOUN
were AUX
obtained VERB
. PUNCT
  SPACE
Among ADP
  SPACE
the DET
1,131 NUM
patients NOUN
, PUNCT
101 NUM
were AUX
dead ADJ
, PUNCT
119 NUM
had AUX
no DET
address NOUN
, PUNCT
413 NUM
had AUX
  SPACE
test NOUN
results NOUN
known VERB
, PUNCT
and CCONJ
498 NUM
did AUX
not PART
respond VERB
to ADP
the DET
questionnaire NOUN
. PUNCT
No DET
study NOUN
patient ADJ
name NOUN
was AUX
found VERB
in ADP
reported VERB
AIDS PROPN
case NOUN
registries VERB
. PUNCT
One NUM
newly ADV
detected VERB
, PUNCT
HIV PROPN
- PUNCT
positive ADJ
patient NOUN
was AUX
determined ADJ
to PART
have AUX
  SPACE
been AUX
most ADV
probably ADV
infected VERB
in ADP
1985 NUM
during ADP
a DET
transfusion NOUN
. PUNCT
  SPACE
There PRON
  SPACE
was AUX
no DET
HIV PROPN
transmission NOUN
in ADP
369 NUM
person NOUN
- PUNCT
hours NOUN
of ADP
surgical ADJ
exposure NOUN
, PUNCT
suggesting VERB
that SCONJ
HIV PROPN
transmission NOUN
to ADP
patients NOUN
is AUX
unlikely ADJ
to PART
occur VERB
more ADV
frequently ADV
than SCONJ
once ADV
per ADP
1000 NUM
person NOUN
- PUNCT
hours NOUN
of ADP
surgical ADJ
  SPACE
exposure NOUN
. PUNCT
  SPACE
The DET
researchers NOUN
determined VERB
there PRON
is AUX
no DET
evidence NOUN
to ADP
  SPACE
suggest VERB
that SCONJ
the DET
surgeon NOUN
failed VERB
to PART
adhere VERB
to ADP
standard ADJ
  SPACE
infection NOUN
- PUNCT
control NOUN
guidelines NOUN
; PUNCT
over ADP
50 NUM
percent NOUN
of ADP
the DET
patients NOUN
  SPACE
with ADP
invasive ADJ
procedures NOUN
chose VERB
to PART
be AUX
tested VERB
, PUNCT
and CCONJ
of ADP
those DET
whose PRON
  SPACE
results NOUN
were AUX
revealed VERB
, PUNCT
only ADV
one NUM
person NOUN
was AUX
found VERB
to PART
be AUX
infected VERB
  SPACE
with ADP
HIV PROPN
. PUNCT
  SPACE
The DET
study NOUN
patient NOUN
's PART
infection NOUN
was AUX
probably ADV
the DET
result NOUN
  SPACE
of ADP
a DET
tainted ADJ
blood NOUN
transfusion NOUN
received VERB
in ADP
1985 NUM
. PUNCT
  SPACE
As SCONJ
a DET
result NOUN
, PUNCT
  SPACE
there PRON
is AUX
no DET
evidence NOUN
that SCONJ
the DET
transmission NOUN
of ADP
HIV PROPN
from ADP
the DET
  SPACE
HIV PROPN
- PUNCT
positive ADJ
surgeon NOUN
to ADP
any DET
patient NOUN
transpired VERB
, PUNCT
the DET
researchers NOUN
  SPACE
conclude VERB
. PUNCT
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
                                SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
       SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
" PUNCT
Drug NOUN
Concerns PROPN
to PART
Share VERB
AIDS PROPN
Data PROPN
" PUNCT
New PROPN
York PROPN
Times PROPN
( PUNCT
04/20/93 PROPN
) PUNCT
, PUNCT
P. PROPN
C10 PROPN
  SPACE
( PUNCT
Kolata PROPN
, PUNCT
Gina PROPN
) PUNCT
      SPACE
A DET
total NOUN
of ADP
15 NUM
major ADJ
pharmaceutical ADJ
companies NOUN
have AUX
decided VERB
, PUNCT
in ADP
a DET
  SPACE
highly ADV
unusual ADJ
move NOUN
, PUNCT
to PART
share VERB
AIDS PROPN
drugs NOUN
and CCONJ
information NOUN
while SCONJ
  SPACE
the DET
drugs NOUN
are AUX
undergoing VERB
early ADJ
clinical ADJ
testing NOUN
. PUNCT
  SPACE
Dr. PROPN
Edward PROPN
  SPACE
Scolnick PROPN
, PUNCT
president NOUN
of ADP
the DET
Merck PROPN
Research PROPN
Laboratory PROPN
in ADP
Rahway PROPN
, PUNCT
  SPACE
N.J. PROPN
, PUNCT
arranged VERB
the DET
collaboration NOUN
. PUNCT
  SPACE
He PRON
said VERB
that SCONJ
cooperation NOUN
  SPACE
between ADP
companies NOUN
seemed VERB
increasingly ADV
significant ADJ
as SCONJ
it PRON
had AUX
  SPACE
become VERB
clear ADJ
that SCONJ
combinations NOUN
of ADP
drugs NOUN
were AUX
likely ADJ
to PART
be AUX
more ADJ
  SPACE
effective ADJ
in ADP
fighting VERB
HIV PROPN
than SCONJ
any DET
drug NOUN
used VERB
alone ADV
. PUNCT
  SPACE
The DET
  SPACE
researchers NOUN
are AUX
hopeful ADJ
that SCONJ
HIV PROPN
, PUNCT
when ADV
faced VERB
with ADP
a DET
combination NOUN
  SPACE
of ADP
several ADJ
drugs NOUN
requiring VERB
mutation NOUN
at ADP
different ADJ
sites NOUN
for ADP
  SPACE
resistance NOUN
to PART
develop VERB
, PUNCT
will AUX
be AUX
unable ADJ
to PART
evolve VERB
all DET
the DET
mutations NOUN
at ADP
the DET
same ADJ
time NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
several ADJ
drugs NOUN
taken VERB
together ADV
or CCONJ
one NUM
after ADP
the DET
other ADJ
could AUX
halt VERB
the DET
spread NOUN
of ADP
HIV PROPN
. PUNCT
  SPACE
Currently ADV
, PUNCT
the DET
  SPACE
drug NOUN
companies NOUN
do AUX
not PART
know VERB
what PRON
other ADJ
drugs NOUN
their PRON
competitors NOUN
are AUX
developing VERB
. PUNCT
  SPACE
The DET
new ADJ
agreement NOUN
allows VERB
companies NOUN
to PART
routinely ADV
  SPACE
exchange NOUN
animal PROPN
data NOUN
and CCONJ
safety NOUN
data NOUN
on ADP
new ADJ
AIDS PROPN
drugs NOUN
. PUNCT
  SPACE
" PUNCT
An DET
  SPACE
agreement NOUN
like SCONJ
this DET
will AUX
greatly ADV
facilitate VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
39Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993companies PROPN
' PART
ability NOUN
to PART
choose VERB
the DET
best ADJ
drug NOUN
combinations NOUN
much ADV
faster ADV
and CCONJ
in ADP
a DET
much ADV
more ADJ
  SPACE
efficient ADJ
way NOUN
, PUNCT
" PUNCT
said VERB
Scolnick PROPN
. PUNCT
  SPACE
He PRON
also ADV
said VERB
that SCONJ
the DET
  SPACE
collaboration NOUN
would AUX
not PART
violate VERB
antitrust ADJ
laws NOUN
. PUNCT
  SPACE
In ADP
creating VERB
the DET
  SPACE
agreement NOUN
, PUNCT
Merck PROPN
spoke VERB
frequently ADV
to ADP
members NOUN
of ADP
AIDS PROPN
advocacy NOUN
  SPACE
groups NOUN
, PUNCT
including VERB
ACT PROPN
- PUNCT
UP PROPN
. PUNCT
  SPACE
Dr. PROPN
Daniel PROPN
Hoth PROPN
, PUNCT
director NOUN
of ADP
the DET
  SPACE
division NOUN
on ADP
AIDS PROPN
at ADP
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
  SPACE
Infectious PROPN
Disease PROPN
said VERB
, PUNCT
" PUNCT
We PRON
're AUX
delighted ADJ
to PART
see VERB
the DET
  SPACE
pharmaceutical NOUN
industry NOUN
take VERB
this DET
step NOUN
because SCONJ
we PRON
think VERB
that SCONJ
  SPACE
increasing VERB
the DET
information NOUN
flow NOUN
will AUX
likely ADV
accelerate VERB
the DET
  SPACE
discovery NOUN
of ADP
better ADJ
compounds NOUN
for ADP
AIDS PROPN
. PUNCT
" PUNCT
  SPACE
Related ADJ
Stories PROPN
: PUNCT
Wall PROPN
Street PROPN
Journal PROPN
( PUNCT
04/20 NUM
) PUNCT
P. NOUN
B1 PROPN
; PUNCT
Philadelphia PROPN
  SPACE
Inquirer PROPN
( PUNCT
04/20 NUM
) PUNCT
P. PROPN
A3 PROPN
; PUNCT
USA PROPN
Today PROPN
( PUNCT
04/20 NUM
) PUNCT
P. NOUN
1B NUM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
" PUNCT
The DET
Next PROPN
Step NOUN
in ADP
AIDS PROPN
Treatment PROPN
" PUNCT
Nature PROPN
( PUNCT
04/08/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
362 NUM
, PUNCT
No NOUN
. NOUN
6420 NUM
, PUNCT
P. PROPN
493 NUM
  SPACE
( PUNCT
Maddox PROPN
, PUNCT
John PROPN
) PUNCT
      SPACE
Although SCONJ
AZT PROPN
was AUX
found VERB
to PART
be AUX
ineffective ADJ
in ADP
prolonging VERB
the DET
lives NOUN
  SPACE
of ADP
people NOUN
infected VERB
with ADP
HIV PROPN
, PUNCT
the DET
findings NOUN
do AUX
not PART
indicate VERB
that SCONJ
  SPACE
AZT PROPN
should AUX
not PART
be AUX
administered VERB
in ADP
people NOUN
with ADP
full ADV
- PUNCT
blown VERB
AIDS PROPN
, PUNCT
  SPACE
writes VERB
columnist NOUN
John PROPN
Maddox PROPN
. PUNCT
  SPACE
AZT PROPN
has AUX
been AUX
used VERB
in ADP
the DET
United PROPN
  SPACE
States PROPN
in ADP
asymptomatic ADJ
HIV PROPN
- PUNCT
positive ADJ
people NOUN
on ADP
the DET
basis NOUN
that SCONJ
  SPACE
administration NOUN
of ADP
the DET
drug NOUN
appeared VERB
to PART
abate VERB
the DET
decline NOUN
of ADP
  SPACE
T NOUN
- PUNCT
cell NOUN
counts NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
a DET
report NOUN
in ADP
the DET
Lancet PROPN
demonstrated VERB
that SCONJ
AZT PROPN
should AUX
not PART
be AUX
used VERB
early ADV
in ADP
the DET
course NOUN
of ADP
disease NOUN
. PUNCT
  SPACE
While SCONJ
the DET
CD4 PROPN
counts NOUN
of ADP
the DET
877 NUM
people NOUN
given VERB
AZT PROPN
were AUX
consistently ADV
greater ADJ
  SPACE
than SCONJ
those DET
of ADP
patients NOUN
receiving VERB
only ADJ
placebo NOUN
, PUNCT
the DET
first ADJ
three NUM
  SPACE
years NOUN
of ADP
follow NOUN
- PUNCT
up NOUN
have AUX
shown VERB
that SCONJ
the DET
proportions NOUN
of ADP
people NOUN
in ADP
  SPACE
the DET
two NUM
groups NOUN
progressing VERB
to PART
overt VERB
AIDS PROPN
or CCONJ
even ADV
to ADP
death NOUN
were AUX
  SPACE
not PART
significantly ADV
different ADJ
at ADP
roughly ADV
18 NUM
percent NOUN
. PUNCT
  SPACE
The DET
  SPACE
conclusions NOUN
are AUX
that SCONJ
AZT PROPN
is AUX
not PART
an DET
effective ADJ
AIDS PROPN
drug NOUN
in ADP
  SPACE
HIV PROPN
- PUNCT
infected VERB
individuals NOUN
, PUNCT
and CCONJ
that DET
CD4 PROPN
cell NOUN
count NOUN
may AUX
not PART
be AUX
a DET
  SPACE
reliable ADJ
proxy NOUN
for ADP
the DET
progression NOUN
to ADP
AIDS PROPN
in ADP
infected ADJ
people NOUN
. PUNCT
   SPACE
But CCONJ
nothing PRON
is AUX
implied VERB
by ADP
the DET
study NOUN
of ADP
the DET
utility NOUN
of ADP
AZT PROPN
in ADP
the DET
  SPACE
treatment NOUN
of ADP
those DET
in ADP
whom PRON
symptoms NOUN
have AUX
already ADV
appeared VERB
-- PUNCT
there PRON
  SPACE
is AUX
no DET
case NOUN
for ADP
abandoning VERB
that DET
treatment NOUN
, PUNCT
at ADP
least ADJ
on ADP
the DET
  SPACE
evidence NOUN
now ADV
available ADJ
. PUNCT
  SPACE
It PRON
is AUX
much ADV
more ADV
alarming ADJ
that SCONJ
the DET
CD4 PROPN
  SPACE
count NOUN
has AUX
proven VERB
to PART
be AUX
an DET
unreliable ADJ
mark NOUN
of ADP
the DET
efficacy NOUN
of ADP
drug NOUN
treatment NOUN
in ADP
HIV PROPN
infection NOUN
. PUNCT
  SPACE
AIDS PROPN
researchers NOUN
should AUX
acknowledge VERB
  SPACE
HIV PROPN
is AUX
alive ADJ
from ADP
the DET
beginning NOUN
of ADP
infection NOUN
and CCONJ
turn VERB
it PRON
into ADP
a DET
  SPACE
workable ADJ
assay CCONJ
of ADP
the DET
progress NOUN
of ADP
disease NOUN
. PUNCT
  SPACE
The DET
general ADJ
  SPACE
application NOUN
of ADP
such DET
an DET
assay NOUN
will AUX
probably ADV
in ADP
itself PRON
provide VERB
a DET
  SPACE
better ADJ
understanding NOUN
of ADP
the DET
pathogenesis NOUN
of ADP
AIDS PROPN
, PUNCT
concludes VERB
  SPACE
Maddox PROPN
. PUNCT
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
" PUNCT
Infective ADJ
and CCONJ
Anti ADJ
- ADJ
Infective ADJ
Properties NOUN
of ADP
Breastmilk PROPN
From ADP
  SPACE
HIV-1-Infected NUM
Women PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
914 NUM
   SPACE
( PUNCT
Van PROPN
de PROPN
Perre PROPN
, PUNCT
Philippe PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
A DET
vaccine NOUN
preparation NOUN
inducing VERB
a DET
persistent ADJ
immune ADJ
response NOUN
of ADP
  SPACE
the DET
IgM PROPN
type NOUN
in ADP
the DET
mother NOUN
's PART
body NOUN
fluids NOUN
could AUX
be AUX
valuable ADJ
to PART
  SPACE
prevent VERB
transmission NOUN
of ADP
HIV-1 PROPN
from ADP
mother NOUN
to ADP
child NOUN
, PUNCT
write VERB
  SPACE
Philippe PROPN
Van PROPN
de PROPN
Perre PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
40Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993National ADJ
AIDS PROPN
Control PROPN
Program PROPN
in ADP
Kigali PROPN
, PUNCT
Rwanda PROPN
. PUNCT
  SPACE
The DET
researchers NOUN
hypothesized VERB
that SCONJ
  SPACE
transmission NOUN
of ADP
HIV-1 PROPN
through ADP
breastmilk NOUN
could AUX
be AUX
favored VERB
by ADP
the DET
  SPACE
presence NOUN
of ADP
infected ADJ
cells NOUN
, PUNCT
by ADP
deficiency NOUN
of ADP
anti ADJ
- ADJ
infective ADJ
  SPACE
substances NOUN
in ADP
breastmilk NOUN
, PUNCT
or CCONJ
both DET
factors NOUN
. PUNCT
  SPACE
A DET
total NOUN
of ADP
215 NUM
  SPACE
HIV-1-infected VERB
women NOUN
were AUX
enrolled VERB
at ADP
delivery NOUN
in ADP
Kigali PROPN
, PUNCT
Rwanda PROPN
; PUNCT
milk NOUN
samples NOUN
were AUX
collected VERB
15 NUM
days NOUN
, PUNCT
6 NUM
months NOUN
, PUNCT
and CCONJ
18 NUM
months NOUN
post VERB
partum NOUN
. PUNCT
  SPACE
HIV-1 PROPN
IgG PROPN
, PUNCT
secretory NOUN
IgA PROPN
, PUNCT
and CCONJ
IgM PROPN
were AUX
assayed VERB
by ADP
  SPACE
western ADJ
blot PROPN
, PUNCT
for ADP
the DET
latter ADJ
two NUM
after ADP
removal NOUN
of ADP
IgG NOUN
with ADP
  SPACE
protein NOUN
G. PROPN
  SPACE
In ADP
the DET
15-day NUM
and CCONJ
6-month NUM
samples NOUN
, PUNCT
the DET
researchers NOUN
  SPACE
sought VERB
viral ADJ
genome NOUN
in ADP
milk NOUN
cells NOUN
by ADP
double ADJ
polymerase NOUN
chain NOUN
  SPACE
reaction NOUN
with ADP
three NUM
sets NOUN
of ADP
primers NOUN
( PUNCT
gag NOUN
, PUNCT
pol NOUN
, PUNCT
and CCONJ
env NOUN
) PUNCT
. PUNCT
  SPACE
At ADP
15 NUM
  SPACE
days NOUN
, PUNCT
6 NUM
months NOUN
, PUNCT
and CCONJ
18 NUM
months NOUN
post NOUN
partum NOUN
, PUNCT
HIV-1 PROPN
specific ADJ
IgG NOUN
was AUX
detected VERB
in ADP
95 NUM
percent NOUN
, PUNCT
98 NUM
percent NOUN
, PUNCT
and CCONJ
97 NUM
percent NOUN
of ADP
breastmilk NOUN
  SPACE
samples NOUN
; PUNCT
IgA PROPN
in ADP
23 NUM
percent NOUN
, PUNCT
28 NUM
percent NOUN
, PUNCT
and CCONJ
41 NUM
percent NOUN
; PUNCT
and CCONJ
IgM PROPN
  SPACE
in ADP
66 NUM
percent NOUN
, PUNCT
78 NUM
percent NOUN
, PUNCT
and CCONJ
41 NUM
percent NOUN
. PUNCT
  SPACE
In ADP
children NOUN
who PRON
  SPACE
survived VERB
longer ADJ
than SCONJ
18 NUM
months NOUN
the DET
risk NOUN
of ADP
infection NOUN
was AUX
  SPACE
associated VERB
with ADP
lack NOUN
of ADP
persistence NOUN
of ADP
IgM PROPN
and CCONJ
IgA PROPN
in ADP
their PRON
  SPACE
mothers NOUN
' PART
milk NOUN
. PUNCT
  SPACE
The DET
presence NOUN
of ADP
HIV-1-infected ADJ
cells NOUN
in ADP
the DET
milk NOUN
  SPACE
15 NUM
days NOUN
post NOUN
partum NOUN
was AUX
strongly ADV
predictive ADJ
of ADP
HIV-1 PROPN
infection NOUN
in ADP
the DET
child NOUN
by ADP
both CCONJ
univariate ADJ
and CCONJ
multivariate VERB
analysis NOUN
. PUNCT
  SPACE
The DET
  SPACE
combination NOUN
of ADP
HIV-1 PROPN
infected ADJ
cells NOUN
in ADP
breastmilk NOUN
and CCONJ
a DET
defective ADJ
IgM PROPN
response NOUN
was AUX
the DET
strongest ADJ
predictor NOUN
of ADP
infection NOUN
. PUNCT
  SPACE
IgM PROPN
and CCONJ
  SPACE
IgA PROPN
anti PROPN
- ADJ
HIV-1 PROPN
in ADP
breastmilk NOUN
may AUX
protect VERB
against ADP
postnatal NOUN
  SPACE
transmission NOUN
of ADP
HIV PROPN
, PUNCT
the DET
researchers NOUN
conclude VERB
. PUNCT
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                    SPACE
April PROPN
21 NUM
, PUNCT
1993 NUM
       SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Firms NOUN
to PART
Share VERB
AIDS PROPN
Research PROPN
in ADP
Global PROPN
Venture PROPN
" PUNCT
Journal PROPN
of ADP
Commerce PROPN
( PUNCT
04/21/93 PROPN
) PUNCT
, PUNCT
P. PROPN
7A NOUN
      SPACE
A DET
total NOUN
of ADP
fifteen NUM
U.S. PROPN
and CCONJ
European ADJ
pharmaceutical ADJ
companies NOUN
  SPACE
announced VERB
Tuesday PROPN
they PRON
will AUX
swap VERB
drug NOUN
supplies NOUN
and CCONJ
information NOUN
on ADP
early ADJ
- PUNCT
stage NOUN
AIDS PROPN
research NOUN
to PART
hasten VERB
the DET
search NOUN
for ADP
combination NOUN
  SPACE
therapies NOUN
to PART
fight VERB
HIV PROPN
infection NOUN
and CCONJ
AIDS PROPN
. PUNCT
  SPACE
The DET
companies NOUN
said VERB
  SPACE
the DET
unusual ADJ
move NOUN
resulted VERB
primarily ADV
from ADP
the DET
increasing VERB
  SPACE
concentration NOUN
of ADP
AIDS PROPN
research NOUN
on ADP
combination NOUN
therapies NOUN
since SCONJ
  SPACE
realizing VERB
that SCONJ
HIV PROPN
is AUX
likely ADJ
to PART
develop VERB
resistance NOUN
to ADP
every DET
  SPACE
individual ADJ
AIDS PROPN
drug NOUN
. PUNCT
  SPACE
Edward PROPN
Scolnick PROPN
, PUNCT
president NOUN
of ADP
Merck PROPN
& CCONJ
Co. PROPN
  SPACE
Research PROPN
Laboratories PROPN
, PUNCT
led VERB
the DET
collaborative ADJ
effort NOUN
that PRON
took VERB
a DET
  SPACE
year NOUN
of ADP
negotiations NOUN
to PART
come VERB
together ADV
, PUNCT
said VERB
participants NOUN
. PUNCT
  SPACE
In ADP
  SPACE
addition NOUN
to ADP
Merck PROPN
, PUNCT
the DET
other ADJ
companies NOUN
involved VERB
in ADP
the DET
  SPACE
Inter PROPN
- PUNCT
Company PROPN
Collaboration PROPN
for ADP
AIDS PROPN
Drug PROPN
Development PROPN
are AUX
  SPACE
Bristol PROPN
- PUNCT
Myers PROPN
Squibb PROPN
Co. PROPN
, PUNCT
Burroughs PROPN
Wellcome PROPN
, PUNCT
Glaxo PROPN
Inc. PROPN
, PUNCT
  SPACE
Hoffman PROPN
- PUNCT
La PROPN
Roche PROPN
, PUNCT
Eli PROPN
Lilly PROPN
& CCONJ
Co. PROPN
, PUNCT
Pfizer PROPN
Inc. PROPN
, PUNCT
Smithkline PROPN
  SPACE
Beecham PROPN
, PUNCT
AB PROPN
Astra PROPN
, PUNCT
Du PROPN
Pont PROPN
Merck PROPN
, PUNCT
Syntex PROPN
Inc. PROPN
, PUNCT
Boehringer PROPN
  SPACE
Ingelheim PROPN
, PUNCT
Miles PROPN
Inc. PROPN
, PUNCT
and CCONJ
Sigma PROPN
- PUNCT
Tau PROPN
. PUNCT
  SPACE
The DET
participants NOUN
said VERB
that SCONJ
all DET
companies NOUN
involved VERB
in ADP
AIDS PROPN
drug NOUN
development NOUN
they PRON
were AUX
aware ADJ
  SPACE
of ADP
had AUX
joined VERB
the DET
collaboration NOUN
, PUNCT
and CCONJ
that SCONJ
any DET
company NOUN
actively ADV
  SPACE
involved VERB
in ADP
HIV PROPN
anti ADJ
- ADJ
viral ADJ
development NOUN
may AUX
participate VERB
. PUNCT
  SPACE
Scolnick PROPN
said VERB
the DET
collaborators NOUN
would AUX
most ADV
likely ADV
meet VERB
every DET
couple NOUN
of ADP
  SPACE
months NOUN
for ADP
a DET
daylong ADJ
scientific ADJ
meeting NOUN
where ADV
they PRON
will AUX
review VERB
  SPACE
for ADP
one NUM
another DET
their PRON
preclinical ADJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
41Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993and NUM
early ADJ
clinical ADJ
data NOUN
. PUNCT
  SPACE
The DET
  SPACE
American PROPN
Foundation PROPN
for ADP
AIDS PROPN
Research PROPN
( PUNCT
AmFAR PROPN
) PUNCT
was AUX
pleased ADJ
with ADP
  SPACE
the DET
news NOUN
of ADP
the DET
collaboration NOUN
, PUNCT
which PRON
it PRON
hopes VERB
will AUX
lead VERB
to ADP
the DET
  SPACE
development NOUN
of ADP
drug NOUN
combinations NOUN
that PRON
will AUX
reduce VERB
viral ADJ
  SPACE
resistance NOUN
. PUNCT
   SPACE
Related PROPN
Story PROPN
: PUNCT
Financial PROPN
Times PROPN
( PUNCT
04/21 NUM
) PUNCT
P. NOUN
1 NUM
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Guidance PROPN
Over ADP
HIV PROPN
- PUNCT
Infected VERB
Health PROPN
- PUNCT
Care PROPN
Workers PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
952 NUM
  SPACE
( PUNCT
Horton PROPN
, PUNCT
Richard PROPN
) PUNCT
      SPACE
The DET
United PROPN
Kingdom PROPN
's PART
Department PROPN
of ADP
Health PROPN
recently ADV
followed VERB
the DET
  SPACE
advice NOUN
of ADP
AIDS PROPN
experts NOUN
that SCONJ
there PRON
is AUX
no DET
scientific ADJ
reason NOUN
for ADP
  SPACE
routine ADJ
HIV PROPN
testing VERB
among ADP
health NOUN
- PUNCT
care NOUN
workers NOUN
. PUNCT
  SPACE
Following VERB
recent ADJ
  SPACE
highly ADV
publicized VERB
reports NOUN
of ADP
health NOUN
professionals NOUN
who PRON
contracted VERB
  SPACE
HIV PROPN
, PUNCT
the DET
department NOUN
issued VERB
revised VERB
guidelines NOUN
on ADP
the DET
management NOUN
  SPACE
of ADP
such ADJ
cases NOUN
. PUNCT
  SPACE
Dr. PROPN
Kenneth PROPN
Calman PROPN
, PUNCT
Chief PROPN
Medical PROPN
Officer PROPN
, PUNCT
said VERB
  SPACE
doctors NOUN
, PUNCT
dentists NOUN
, PUNCT
nurses NOUN
, PUNCT
and CCONJ
other ADJ
health NOUN
- PUNCT
care NOUN
workers NOUN
have AUX
an DET
  SPACE
ethical ADJ
duty NOUN
to PART
seek VERB
advice NOUN
if SCONJ
they PRON
have AUX
been AUX
exposed VERB
to ADP
HIV PROPN
  SPACE
infection NOUN
, PUNCT
including VERB
, PUNCT
if SCONJ
appropriate ADJ
, PUNCT
diagnostic ADJ
HIV PROPN
testing NOUN
. PUNCT
  SPACE
He PRON
said VERB
, PUNCT
" PUNCT
Infected ADJ
health NOUN
care NOUN
workers NOUN
should AUX
not PART
perform VERB
invasive ADJ
  SPACE
procedures NOUN
that PRON
carry VERB
even ADV
a DET
remote ADJ
risk NOUN
of ADP
exposing VERB
patients NOUN
to ADP
  SPACE
the DET
virus NOUN
. PUNCT
" PUNCT
  SPACE
The DET
guidelines NOUN
--------- PUNCT
end NOUN
of ADP
part NOUN
3 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59287From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
FREQUENT PROPN
NOSEBLEEDSA NOUN
> X
  SPACE
From ADP
some DET
of ADP
the DET
replies NOUN
to ADP
my PRON
original ADJ
posting NOUN
, PUNCT
it PRON
's AUX
evident ADJ
that SCONJ
someA PROPN
> X
  SPACE
people NOUN
do AUX
not PART
secrete VERB
enough ADJ
mucous ADJ
to PART
keep VERB
their PRON
nose NOUN
lining NOUN
protected VERB
            SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
             SPACE
Include VERB
small ADJ
amounts NOUN
of ADP
hot ADJ
, PUNCT
spicy ADJ
foods NOUN
with ADP
your PRON
meals NOUN
. PUNCT
It PRON
's AUX
not PART
a DET
cure NOUN
, PUNCT
but CCONJ
many ADJ
people NOUN
find VERB
it PRON
helpful ADJ
to PART
create VERB
extra ADJ
mucus NOUN
. PUNCT
You PRON
may AUX
also ADV
consider VERB
taking VERB
a DET
few ADJ
drops NOUN
of ADP
iodine NOUN
in ADP
juice NOUN
or CCONJ
water NOUN
  SPACE
( PUNCT
consult VERB
your PRON
doctor NOUN
first ADV
! PUNCT
) PUNCT
, PUNCT
which PRON
is AUX
available ADJ
OTC PROPN
in ADP
Canada PROPN
. PUNCT
If SCONJ
you PRON
have AUX
a DET
sedentary ADJ
lifestyle NOUN
, PUNCT
exercising VERB
sometimes ADV
helps VERB
. PUNCT
A DET
> X
  SPACE
from ADP
environmental ADJ
influences NOUN
( PUNCT
ie X
, PUNCT
dry ADJ
air NOUN
) PUNCT
. PUNCT
But CCONJ
I PRON
've AUX
had VERB
no DET
responsesA PROPN
> X
  SPACE
from ADP
anyone PRON
with ADP
experience NOUN
with ADP
Rutin PROPN
. PUNCT
Is AUX
there PRON
another DET
newsgroup NOUN
that PRON
                      SPACE
^^^^^^^^^^^^^^^^^^^^^A NOUN
> X
  SPACE
might AUX
have AUX
specifics NOUN
on ADP
herbal ADJ
remedies?A PROPN
> X
A DET
> X
  SPACE
Robert PROPN
Allison PROPN
I PRON
tried VERB
to ADP
e NOUN
- NOUN
mail VERB
you PRON
, PUNCT
but CCONJ
our PRON
board NOUN
is AUX
having VERB
internet NOUN
problems NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
not PART
sure ADJ
whether SCONJ
you PRON
got VERB
the DET
information NOUN
on ADP
rutin PROPN
or CCONJ
not PART
. PUNCT
  SPACE
Rutin PROPN
is AUX
NOT ADV
a DET
herb NOUN
, PUNCT
but CCONJ
part NOUN
of ADP
the DET
bioflavonoid NOUN
complex NOUN
. PUNCT
You PRON
should AUX
generally ADV
* PUNCT
not PART
* PUNCT
take VERB
rutin NOUN
by ADP
itself PRON
, PUNCT
but CCONJ
take VERB
the DET
whole ADJ
bioflavonoid NOUN
  SPACE
complex NOUN
instead ADV
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
( PUNCT
and CCONJ
there PRON
are AUX
some DET
exceptions NOUN
to ADP
that DET
) PUNCT
you PRON
'll AUX
eventually ADV
create VERB
a DET
hesperidin PROPN
deficiency NOUN
, PUNCT
which PRON
is AUX
the DET
other ADJ
major ADJ
component NOUN
of ADP
the DET
bioflavonoid NOUN
complex NOUN
. PUNCT
I PRON
found VERB
out ADP
the DET
hard ADJ
way NOUN
years NOUN
ago ADV
when ADV
I PRON
recommended VERB
rutin NOUN
, PUNCT
after ADP
it PRON
showed VERB
deficient ADJ
in ADP
patients NOUN
who PRON
were AUX
NOT ADV
deficient ADJ
in ADP
hesperidin PROPN
be- PROPN
fore PROPN
. PUNCT
A DET
later ADV
retest NOUN
almost ADV
always ADV
showed VERB
a DET
subsequent ADJ
deficiency NOUN
in ADP
  SPACE
hesperidin PROPN
, PUNCT
which PRON
, PUNCT
from ADP
then ADV
on ADV
, PUNCT
made VERB
me PRON
always ADV
* PUNCT
add VERB
* PUNCT
bioflavonoids NOUN
  SPACE
to ADP
anyone PRON
that PRON
had AUX
* PUNCT
very ADV
* PUNCT
low ADJ
levels NOUN
of ADP
rutin NOUN
. PUNCT
Most ADJ
of ADP
the DET
time NOUN
people NOUN
are AUX
equally ADV
low ADJ
in ADP
rutin PROPN
* PUNCT
and CCONJ
* PUNCT
hesperidin PROPN
, PUNCT
so CCONJ
there PRON
is AUX
really ADV
no DET
reason NOUN
to PART
take VERB
rutin PROPN
by ADP
itself PRON
, PUNCT
but CCONJ
use VERB
the DET
whole ADJ
bioflavonoid NOUN
complex NOUN
instead ADV
. PUNCT
I PRON
have AUX
several ADJ
thousand NUM
patients NOUN
taking VERB
them PRON
with ADP
many ADJ
claiming VERB
that SCONJ
  SPACE
they PRON
had AUX
been AUX
helped VERB
with ADP
hemorrhoids NOUN
, PUNCT
varicose VERB
veins NOUN
, PUNCT
chronic ADJ
nose NOUN
  SPACE
bleeds NOUN
, PUNCT
aneurysms NOUN
, PUNCT
gastro PROPN
- PUNCT
intestinal ADJ
bleeding NOUN
( PUNCT
due ADP
to ADP
drugs NOUN
) PUNCT
, PUNCT
etc X
... PUNCT
One NUM
patient NOUN
in ADP
desperation NOUN
took VERB
a DET
whole ADJ
bottle NOUN
( PUNCT
100 NUM
's PART
) PUNCT
in ADP
one NUM
day NOUN
for ADP
his PRON
painful ADJ
, PUNCT
bleeding VERB
hemorrhoids NOUN
, PUNCT
without ADP
any DET
ill ADJ
effects NOUN
. PUNCT
   SPACE
They PRON
are AUX
also ADV
non ADJ
- ADJ
toxic ADJ
in ADP
very ADV
high ADJ
amounts NOUN
, PUNCT
that DET
's AUX
why ADV
they PRON
can AUX
be AUX
safely ADV
recommended VERB
. PUNCT
If SCONJ
you PRON
are AUX
allergic ADJ
to PART
citrus VERB
fruit NOUN
( PUNCT
they PRON
are AUX
made VERB
from ADP
their PRON
peels NOUN
) PUNCT
, PUNCT
pine NOUN
bark NOUN
sources NOUN
are AUX
available ADJ
as ADV
well ADV
. PUNCT
About ADV
90 NUM
% NOUN
of ADP
patients NOUN
tested VERB
show VERB
a DET
bioflavonoid NOUN
deficiency NOUN
, PUNCT
  SPACE
with ADP
the DET
average ADJ
daily ADJ
dosage NOUN
needed VERB
being AUX
about ADV
1 NUM
- SYM
2,000 NUM
mg NOUN
. PUNCT
For ADP
major ADJ
complaints NOUN
, PUNCT
4 NUM
- SYM
6,000mg+/day NOUN
is AUX
common ADJ
. PUNCT
  SPACE
In ADP
case NOUN
they PRON
can AUX
not PART
be AUX
taken VERB
, PUNCT
because SCONJ
of ADP
their PRON
size NOUN
and CCONJ
taste NOUN
( PUNCT
they PRON
are AUX
big ADJ
, PUNCT
and CCONJ
they PRON
do AUX
n't PART
taste VERB
that DET
great ADJ
) PUNCT
, PUNCT
a DET
product NOUN
made VERB
from ADP
pine PROPN
  SPACE
bark PROPN
extract PROPN
gives VERB
you PRON
the DET
same ADJ
effect NOUN
and CCONJ
the DET
tablets NOUN
are AUX
quite ADV
small ADJ
and CCONJ
taste VERB
much ADV
better ADV
, PUNCT
however ADV
the DET
cost NOUN
is AUX
about ADV
seven NUM
times NOUN
higher ADJ
for ADP
the DET
equivalent ADJ
effect NOUN
. PUNCT
One NUM
25 NUM
mg PROPN
tablet NOUN
of ADP
the DET
pine PROPN
bark NOUN
extract NOUN
gives VERB
you PRON
about ADP
the DET
same ADJ
effect NOUN
as SCONJ
1,000 NUM
mg NOUN
of ADP
bioflavonoids NOUN
. PUNCT
The DET
name NOUN
for ADP
the DET
pine ADJ
bark NOUN
product NOUN
is AUX
' PUNCT
Pycnogenol PROPN
. PUNCT
' PUNCT
     SPACE
Some DET
Canadian PROPN
brands NOUN
carrying VERB
bioflavonoids NOUN
are AUX
: PUNCT
    SPACE
Quest PROPN
............. PUNCT
1,000 NUM
mg PROPN
   SPACE
big ADJ
, PUNCT
bitter ADJ
, PUNCT
not PART
chewable ADJ
   SPACE
Swiss PROPN
Herbal PROPN
........ PUNCT
600 NUM
mg PROPN
   SPACE
smooth PROPN
, PUNCT
easier ADJ
swallowing NOUN
    SPACE
Jamieson PROPN
............ PUNCT
500 NUM
mg PROPN
   SPACE
medium NOUN
, PUNCT
bitter ADJ
, PUNCT
chewable ADJ
    SPACE
SISU NOUN
................. PUNCT
25 NUM
mg NOUN
   SPACE
( PUNCT
Pycnogenol PROPN
) PUNCT
small ADJ
, PUNCT
easy ADJ
swallowing NOUN
    SPACE
Give VERB
them PRON
a DET
try NOUN
and CCONJ
see VERB
what PRON
happens VERB
..... PUNCT
and CCONJ
good ADJ
luck NOUN
! PUNCT
   SPACE
-- PUNCT
Ron PROPN
Roth PROPN
-- PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
-- PUNCT
  SPACE
Internet NOUN
: PUNCT
rn.3228@rose.com PROPN
  SPACE
- PUNCT
  SPACE
Rosenet PROPN
: PUNCT
ron PROPN
roth@rosehamilton PROPN
  SPACE
-- PUNCT
* PUNCT
   SPACE
" PUNCT
Eating PROPN
Radium PROPN
has AUX
strange ADJ
results NOUN
, PUNCT
" PUNCT
  SPACE
Tom PROPN
said VERB
brightly.--- PROPN
   SPACE
RoseReader PROPN
2.10 NUM
  SPACE
P003228 PROPN
Entered VERB
at ADP
[ PUNCT
ROSEHAMILTON NOUN
] PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59288From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes::When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident NOUN
: PUNCT
in ADP
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having VERB
: PUNCT
sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm NOUN
: PUNCT
cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.::Was PROPN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually ADV
: PUNCT
occur?Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
forpregnancy NOUN
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
alsoartificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of"natural PUNCT
" PUNCT
acts NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen PROPN
isdeposited VERB
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that'sabout ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talkto PROPN
your PRON
biology NOUN
teacher.-- ADP
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59289From NUM
: PUNCT
ipj@unix.brighton.ac.uk ADJ
( PUNCT
( PUNCT
( PUNCT
Fleg PROPN
Software PROPN
) PUNCT
) PUNCT
) PUNCT
Subject NOUN
: PUNCT
Artificial PROPN
Intelligence PROPN
in ADP
MedicineIf PROPN
you PRON
have AUX
any DET
information NOUN
on ADP
artificial ADJ
intelligence NOUN
in ADP
medicine NOUN
, PUNCT
then ADV
Iwould AUX
appreciate VERB
it PRON
if SCONJ
you PRON
could AUX
mail VERB
me PRON
with ADP
whatever PRON
it PRON
is AUX
. PUNCT
The DET
informationsis NOUN
needed VERB
for ADP
a DET
project NOUN
. PUNCT
Thank VERB
you PRON
, PUNCT
Ian.-- PROPN
.____________________________________________________________________________.| PUNCT
  SPACE
Ian PROPN
Jukes PROPN
BSc VERB
. PUNCT
Computer NOUN
Science PROPN
( PUNCT
Hons PROPN
) PUNCT
Year NOUN
2 NUM
The DET
University PROPN
of ADP
Brighton PROPN
  SPACE
|| PROPN
           SPACE
janet PROPN
e NOUN
- NOUN
mail NOUN
: PUNCT
ipj@uk.ac.bton.unix PROPN
, PUNCT
ipj@uk.ac.bton.vms PROPN
           SPACE
|`----------------------------------------------------------------------------'Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59290From NUM
: PUNCT
< X
RFM@psuvm.psu.edu>Subject VERB
: PUNCT
Sleep NOUN
in ADP
hospitals NOUN
( PUNCT
WAS PROPN
Re PROPN
: PUNCT
EUse PROPN
of ADP
haldol PROPN
in ADP
elderlyIn PROPN
article NOUN
< X
YfqmleK00iV185Co5L@andrew.cmu.edu PROPN
> X
, PUNCT
you PRON
say VERB
: PUNCT
> X
I PRON
've AUX
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented ADJ
and CCONJ
> X
demented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
  SPACE
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
were AUX
> X
definitely ADV
involved VERB
. PUNCT
Speaking VERB
from ADP
experience NOUN
, PUNCT
one PRON
does AUX
n't PART
need VERB
drugs NOUN
to PART
become VERB
disorientedduring VERB
hospital NOUN
stays NOUN
. PUNCT
I PRON
was AUX
in ADP
hosp NOUN
for ADP
5 NUM
days NOUN
in ADP
late ADJ
Jan PROPN
; PUNCT
what PRON
withgeneral ADJ
noise NOUN
at ADP
all DET
hours NOUN
of ADP
night NOUN
, PUNCT
staff NOUN
coming VERB
every DET
time NOUN
I PRON
turned VERB
over ADP
, PUNCT
or CCONJ
whatever PRON
, PUNCT
to PART
check VERB
me PRON
out ADP
, PUNCT
I PRON
did AUX
n't PART
get AUX
much ADV
sustained ADJ
sleep NOUN
at ADP
night NOUN
. PUNCT
Spent VERB
days NOUN
groggy PROPN
& CCONJ
dozing PROPN
, PUNCT
and CCONJ
all DET
it PRON
was AUX
from ADP
my PRON
perspective NOUN
was AUX
that SCONJ
Iwas PROPN
TIRED PROPN
! PUNCT
   SPACE
BobM PROPN
- PUNCT
Let PROPN
's PART
* PUNCT
REINVENT NOUN
* PUNCT
hospital NOUN
organization!sNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59291Subject NUM
: PUNCT
Re ADP
: PUNCT
Localized VERB
fat ADJ
reduction NOUN
due ADP
to ADP
exercise NOUN
( PUNCT
questionFrom VERB
: PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg)In PROPN
< X
1993Apr25.203223.28534@mnemosyne.cs.du.edu NUM
> X
hchung@nyx.cs.du.edu PROPN
writes VERB
: PUNCT
> X
I PRON
was AUX
just ADV
wondering VERB
if SCONJ
exercises NOUN
specific ADJ
to ADP
particular ADJ
regions NOUN
of ADP
the DET
> X
body NOUN
( PUNCT
such ADJ
as SCONJ
thighs NOUN
) PUNCT
will AUX
basically ADV
only ADV
tone VERB
the DET
thighs NOUN
, PUNCT
or CCONJ
if SCONJ
fat NOUN
> X
from ADP
other ADJ
parts NOUN
of ADP
the DET
body NOUN
( PUNCT
such ADJ
as SCONJ
breasts NOUN
) PUNCT
would AUX
be AUX
affected VERB
just ADV
as SCONJ
> X
much ADJ
. PUNCT
There PRON
are AUX
two NUM
different ADJ
mechanisms NOUN
here ADV
: PUNCT
  SPACE
toning VERB
of ADP
muscles NOUN
and CCONJ
reduction NOUN
offat NOUN
. PUNCT
  SPACE
Exercises NOUN
specific ADJ
to ADP
particular ADJ
muscles NOUN
will AUX
tone VERB
only ADV
those DET
musclesexercised VERB
( PUNCT
example NOUN
: PUNCT
look VERB
at ADP
differences NOUN
in ADP
arm NOUN
circumferences NOUN
between ADP
pitchingarms NOUN
and CCONJ
non ADJ
- ADJ
pitching ADJ
arms NOUN
in ADP
major ADJ
league NOUN
pitchers NOUN
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
if SCONJ
exercisealso NOUN
leads VERB
to ADP
reduction NOUN
of ADP
body NOUN
fat NOUN
, PUNCT
the DET
loss NOUN
of ADP
body NOUN
fat NOUN
will AUX
be AUX
equallydistributed VERB
over ADP
the DET
entire ADJ
body NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
way NOUN
to PART
" PUNCT
spot NOUN
reduce VERB
" PUNCT
body NOUN
fatother NOUN
than SCONJ
surgically ADV
, PUNCT
through ADP
liposuction NOUN
. PUNCT
Distribution NOUN
of ADP
body NOUN
fat NOUN
isgenetically ADV
determined ADJ
. PUNCT
  SPACE
Sometimes ADV
a DET
very ADV
flabby ADJ
muscle NOUN
will AUX
look VERB
like SCONJ
" PUNCT
fat",so PROPN
when ADV
that DET
muscle NOUN
gains VERB
some DET
muscle NOUN
tone NOUN
it PRON
may AUX
* PUNCT
appear VERB
* PUNCT
as SCONJ
though SCONJ
the DET
" PUNCT
fat"is PROPN
" PUNCT
changing VERB
" PUNCT
into ADP
" PUNCT
muscle NOUN
" PUNCT
, PUNCT
but CCONJ
really ADV
fat ADJ
and CCONJ
muscle NOUN
tissues NOUN
are AUX
totallyseparate ADJ
, PUNCT
and CCONJ
one PRON
does AUX
not PART
ever ADV
" PUNCT
change VERB
into ADP
" PUNCT
the DET
other.------------------------Ruth ADJ
Ginzberg PROPN
< X
rginzberg@eagle.wesleyan.edu>Philosophy NOUN
Department;Wesleyan PROPN
University;USANewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59292From NUM
: PUNCT
gpivar@maestro.mitre.org PROPN
( PUNCT
Greg PROPN
Pivarnik)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:| PROPN
> X
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:| PROPN
> X
| ADP
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
| ADP
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow| NOUN
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking| NOUN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus ADJ
for| PROPN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly| ADJ
> X
> X
appreciated.| NOUN
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
| PROPN
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.| PROPN
> X
| ADV
> X
Bill PROPN
from ADP
oz| ADP
> X
Bill PROPN
, PUNCT
No DET
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilianphotography PROPN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple ADJ
, PUNCT
it PRON
takes VERB
pictures NOUN
of ADP
your PRON
aura.| PROPN
> X
-- PUNCT
Greg NOUN
-- PUNCT
  SPACE
Be AUX
still ADV
, PUNCT
be AUX
silent ADJ
... PUNCT
the DET
rest NOUN
is AUX
easy ADJ
. PUNCT
  SPACE
--Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59293From NUM
: PUNCT
dh@fncrd6.fnal.gov PROPN
( PUNCT
don PROPN
husby)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyPoor PROPN
person NOUN
's PART
Kirlian PROPN
Photography PROPN
( PUNCT
try VERB
this DET
at ADP
home)1 PROPN
. PUNCT
Hold VERB
your PRON
hand NOUN
up ADP
to ADP
a DET
cold ADJ
window.2 NOUN
. PUNCT
Look VERB
closely ADV
at ADP
the DET
stunning ADJ
corona ADJ
effects NOUN
around ADP
   SPACE
your PRON
fingertips.3 NOUN
. PUNCT
Remove PROPN
hand NOUN
( PUNCT
from ADP
window NOUN
) PUNCT
and CCONJ
observe VERB
after ADP
image NOUN
. PUNCT
  SPACE
4 NUM
. PUNCT
Invent ADJ
crackpot NOUN
theory NOUN
to PART
explain VERB
the DET
effect NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59294From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr23.180430.1@vms.ocom.okstate.edu NOUN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>I INTJ
do AUX
n't PART
like VERB
the DET
term NOUN
" PUNCT
quack NOUN
" PUNCT
being AUX
applied VERB
to ADP
a DET
licensed ADJ
physician NOUN
David.>Questionable ADJ
conduct NOUN
is AUX
more ADV
appropriately ADV
called VERB
unethical(in NUM
my PRON
opinion NOUN
) PUNCT
. PUNCT
> X
	 SPACE
3 NUM
. PUNCT
Using VERB
laetril ADJ
to PART
treat VERB
cancer NOUN
patients NOUN
when ADV
such ADJ
treatment NOUN
has AUX
> X
	    SPACE
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
and CCONJ
dangerous(cyanide PROPN
release NOUN
) PUNCT
by ADP
> X
	    SPACE
the DET
NCI.Hmm NOUN
. PUNCT
  SPACE
This DET
is AUX
certainly ADV
among ADP
the DET
things NOUN
I PRON
would AUX
refer VERB
to ADP
as SCONJ
quacktherapy NOUN
and CCONJ
would AUX
tend VERB
to PART
refer VERB
to ADP
any DET
practitioner NOUN
who PRON
prescribedlaetrile VERB
( PUNCT
whether SCONJ
licensed ADJ
or CCONJ
not PART
) PUNCT
as SCONJ
a DET
quack NOUN
. PUNCT
  SPACE
There PRON
are AUX
unethicalbehaviors NOUN
( PUNCT
such ADJ
as SCONJ
ordering VERB
unneccessary ADJ
tests NOUN
to PART
increase VERB
fees)which PROPN
I PRON
would AUX
not PART
lable VERB
as SCONJ
quackish ADJ
, PUNCT
but CCONJ
prescribing VERB
known VERB
ineffectivetherapies NOUN
seems VERB
to ADP
me PRON
to PART
be AUX
one NUM
of ADP
the DET
hallmarks NOUN
of ADP
a DET
quack.-- NOUN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59295From NUM
: PUNCT
garyws@cbnewsg.cb.att.com X
( PUNCT
gary.schuetter)Subject NOUN
: PUNCT
A DET
Good ADJ
place NOUN
for ADP
Back PROPN
Surgery PROPN
? PUNCT
	         SPACE
Hello INTJ
, PUNCT
        SPACE
Just ADV
one NUM
quick ADJ
question NOUN
: PUNCT
        SPACE
My PRON
father NOUN
has AUX
had VERB
a DET
back ADJ
problem NOUN
for ADP
a DET
long ADJ
time NOUN
and CCONJ
doctors NOUN
        SPACE
have AUX
diagnosed VERB
an DET
operation NOUN
is AUX
needed VERB
. PUNCT
Since SCONJ
he PRON
lives VERB
down ADP
in ADP
        SPACE
Mexico PROPN
, PUNCT
he PRON
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
a DET
hospital NOUN
anywhere ADV
in ADP
        SPACE
the DET
United PROPN
States PROPN
particulary NOUN
famous ADJ
for ADP
this DET
kind NOUN
of ADP
surgery NOUN
, PUNCT
        SPACE
kind ADV
of ADV
like SCONJ
Houston PROPN
has AUX
a DET
reputation NOUN
for ADP
excellent ADJ
doctors NOUN
        SPACE
in ADP
eye NOUN
surgery NOUN
. PUNCT
Any DET
additional ADJ
info NOUN
or CCONJ
pointers NOUN
will AUX
be AUX
        SPACE
appreciated VERB
a DET
whole ADJ
lot NOUN
! PUNCT
... PUNCT
                SPACE
Thanks NOUN
in ADP
Advance PROPN
. PUNCT
                        SPACE
Gary PROPN
Sheutter PROPN
. PUNCT
                        SPACE
AT&T PROPN
Bell PROPN
Labs PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59296From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
< X
1ravpeINNah4@gap.caltech.edu NUM
> X
ken@isis.cns.caltech.edu PROPN
( PUNCT
Ken PROPN
Miller PROPN
) PUNCT
writes:>So PROPN
, PUNCT
if SCONJ
you PRON
have AUX
any DET
evidence NOUN
* PUNCT
against ADP
* PUNCT
the DET
hypothesis NOUN
--- PUNCT
for ADP
example,>controlled ADJ
double ADJ
- PUNCT
blind ADJ
studies NOUN
showing VERB
that SCONJ
the DET
anti NOUN
- NOUN
fungals NOUN
do AUX
n't PART
do AUX
any DET
> X
better ADJ
than SCONJ
sugar NOUN
water NOUN
--- PUNCT
then ADV
let VERB
's PRON
hear VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
, PUNCT
then ADV
what PRON
we PRON
> X
have AUX
is AUX
anecdotal ADJ
and CCONJ
uncontrolled ADJ
evidence NOUN
on ADP
one NUM
side NOUN
, PUNCT
and CCONJ
abject VERB
> X
disbelief NOUN
on ADP
the DET
other ADJ
. PUNCT
I PRON
do AUX
n't PART
have AUX
any DET
evidence NOUN
against ADP
water NOUN
from ADP
Lourdes PROPN
curing VERB
MS PROPN
--I'm PUNCT
sure ADV
there PRON
is AUX
anecdotal ADJ
evidence NOUN
that SCONJ
it PRON
does AUX
. PUNCT
  SPACE
Do AUX
you PRON
really ADV
thinkthat ADP
in ADP
the DET
absence NOUN
of ADP
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
I PRON
should AUX
be AUX
indifferentto VERB
the DET
hypothesis NOUN
that PRON
water NOUN
from ADP
Lourdes PROPN
cures NOUN
MS?For X
what PRON
it PRON
's AUX
worth ADJ
, PUNCT
I PRON
know VERB
of ADP
only ADV
one NUM
double ADJ
blind ADJ
study NOUN
of ADP
Nystatinfor PROPN
" PUNCT
candida PROPN
hypersensitivity NOUN
syndrome NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
was AUX
published VERB
in ADP
the DET
New PROPN
England PROPN
Journal PROPN
( PUNCT
I PRON
think VERB
1990 NUM
) PUNCT
and CCONJ
showed VERB
no DET
benefit NOUN
on ADP
systemicsymptoms NOUN
( PUNCT
though SCONJ
I PRON
think VERB
it PRON
reduced VERB
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
notsurprisingly ADV
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
recall VERB
, PUNCT
the DET
yeast NOUN
crowd NOUN
had AUX
some DET
major ADJ
objectionsto NOUN
the DET
study NOUN
, PUNCT
though SCONJ
I PRON
do AUX
n't PART
remember VERB
what PRON
they PRON
were.-- ADP
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59297From NUM
: PUNCT
jtpoupor@undergrad.math.uwaterloo.ca X
( PUNCT
Jeff PROPN
Poupore)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskHi PROPN
, PUNCT
Thought PROPN
I PRON
'd AUX
add VERB
something PRON
to ADP
the DET
conversation NOUN
. PUNCT
My PRON
girlfriend NOUN
used VERB
to PART
work VERB
in ADP
a DET
lab NOUN
studying VERB
different ADJ
natural ADJ
carcinogens NOUN
. PUNCT
She PRON
mentioned VERB
once ADV
about ADP
the DET
cancerous ADJ
effect NOUN
of ADP
barbecued VERB
food NOUN
. PUNCT
Basically ADV
, PUNCT
she PRON
said VERB
that SCONJ
if SCONJ
you PRON
eat VERB
barbecued VERB
foods NOUN
with ADP
strawberries(a PROPN
natural ADJ
carcinogen NOUN
) PUNCT
the DET
slight ADJ
carcinogenic ADJ
properties NOUN
of ADP
bothcancel NOUN
out ADP
each DET
other.--Jeff PROPN
Pouporejtpoupor@undergrad.math.uwaterloo.ca-- PROPN
Jeff PROPN
Pouporejtpoupor@undergrad.math.uwaterloo.caNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59298From NUM
: SYM
trones@dxcern.cern.ch PROPN
( PUNCT
Jostein PROPN
Lodve PROPN
Trones)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org PROPN
> X
, PUNCT
gpivar@maestro.mitre.org PROPN
( PUNCT
Greg PROPN
Pivarnik PROPN
) PUNCT
writes VERB
: PUNCT
  SPACE
| ADP
> X
In ADP
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
  SPACE
| ADP
> X
| ADP
> X
in ADP
  SPACE
| X
> X
| ADV
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.| PROPN
> X
| ADV
> X
| ADV
> X
| X
> X
Bill PROPN
from ADP
oz| ADP
> X
| CCONJ
> X
| ADV
> X
| ADV
> X
| ADV
> X
Bill,| PROPN
> X
No DET
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian| PROPN
> X
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,| PROPN
> X
it PRON
takes VERB
pictures NOUN
of ADP
your PRON
aura.| PROPN
> X
| ADP
> X
| CCONJ
> X
-- PUNCT
| ADV
> X
Greg PROPN
| ADV
> X
| ADP
> X
-- PUNCT
  SPACE
Be AUX
still ADV
, PUNCT
be AUX
silent ADJ
... PUNCT
the DET
rest NOUN
is AUX
easy ADJ
. PUNCT
  SPACE
--| PROPN
> X
Greg PROPN
, PUNCT
No DET
flame NOUN
intended VERB
, PUNCT
but CCONJ
I PRON
think VERB
you PRON
just ADV
missed VERB
one NUM
of ADP
the DET
rare ADJ
attempts NOUN
ofhumor NOUN
in ADP
sci.skeptic."Krillean PROPN
" PUNCT
against ADP
" PUNCT
Kirilian ADJ
" PUNCT
. PUNCT
Get AUX
it?;-)BTW NOUN
, PUNCT
I PRON
think VERB
you PRON
're AUX
a DET
bit NOUN
of ADP
base NOUN
yourself PRON
, PUNCT
since SCONJ
, PUNCT
to ADP
my PRON
knowledge NOUN
, PUNCT
theelectromagnetic ADJ
field NOUN
around ADP
a DET
stone NOUN
is AUX
rather ADV
abscent NOUN
. PUNCT
But CCONJ
still ADV
, PUNCT
a DET
stonehas PROPN
a DET
nice ADJ
" PUNCT
aura NOUN
" PUNCT
on ADP
the DET
Kirilian ADJ
photographs NOUN
. PUNCT
Don't NUM
remember VERB
excactly ADV
, PUNCT
but CCONJ
" PUNCT
corona ADJ
discharge NOUN
" PUNCT
I PRON
think VERB
is AUX
a DET
more ADJ
fittingexpression NOUN
than SCONJ
aura NOUN
. PUNCT
Think VERB
you PRON
'll AUX
find VERB
something PRON
on ADP
this DET
in ADP
the DET
skeptic PROPN
- PUNCT
faq NOUN
. PUNCT
Cheers NOUN
, PUNCT
	 SPACE
JosteinNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59299From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
OCDThis INTJ
is AUX
to PART
followup VERB
my PRON
previous ADJ
reply NOUN
on ADP
this DET
topic NOUN
, PUNCT
which PRON
it PRON
has AUX
beenpointed VERB
out ADP
to ADP
me PRON
might AUX
have AUX
been AUX
dangerously ADV
misleading VERB
in ADP
two NUM
spots.1 PROPN
. PUNCT
  SPACE
I PRON
stated VERB
that SCONJ
psychotherapy NOUN
( PUNCT
meaning VERB
talking VERB
therapy NOUN
and CCONJ
so ADV
on ADV
) PUNCT
was AUX
used VERB
     SPACE
to PART
treat VERB
Obsessive ADJ
Compulsive PROPN
Disorder PROPN
, PUNCT
which PRON
though SCONJ
sometimes ADV
true ADJ
is AUX
     SPACE
misleading NOUN
. PUNCT
  SPACE
It PRON
is AUX
not PART
often ADV
found VERB
effective ADJ
, PUNCT
particularly ADV
by ADP
itself PRON
. PUNCT
    SPACE
Primary ADJ
treatment NOUN
today NOUN
usually ADV
consists VERB
at ADP
least ADJ
in ADP
part NOUN
of ADP
drug NOUN
    SPACE
therapy NOUN
. PUNCT
  SPACE
The DET
most ADV
current ADJ
theories NOUN
of ADP
this DET
condition NOUN
attribute VERB
     SPACE
it PRON
to ADP
more ADJ
to ADP
biological ADJ
causes NOUN
than SCONJ
psychological ADJ
, PUNCT
in ADP
places NOUN
where ADV
this DET
    SPACE
distinction NOUN
becomes VERB
important.2 PROPN
. PUNCT
  SPACE
I PRON
mentioned VERB
that SCONJ
the DET
DSM PROPN
- PUNCT
IIIR PROPN
mentions NOUN
' PART
impulses NOUN
' PUNCT
as SCONJ
a DET
possible ADJ
	 SPACE
diagnostic ADJ
marker NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
this DET
might AUX
look VERB
like SCONJ
something PRON
	 SPACE
people NOUN
associate VERB
with ADP
psychotic ADJ
conditions NOUN
, PUNCT
uncontrollable ADJ
or CCONJ
	 SPACE
unpredictable ADJ
behaviors NOUN
, PUNCT
which PRON
is AUX
NOT ADV
the DET
case NOUN
with ADP
OCD PROPN
. PUNCT
 	 SPACE
One NUM
of ADP
the DET
diagnostic ADJ
criteria NOUN
of ADP
OCD PROPN
is AUX
that SCONJ
the DET
individual NOUN
	 SPACE
can AUX
and CCONJ
does AUX
suppress VERB
some DET
of ADP
their PRON
' PUNCT
impulses NOUN
, PUNCT
' PUNCT
although SCONJ
they PRON
	 SPACE
are AUX
an DET
unending ADJ
source NOUN
of ADP
anxiety NOUN
. PUNCT
 	 SPACE
The DET
obsessive ADJ
thoughts NOUN
and CCONJ
ritualistic ADJ
actions NOUN
usually ADV
associated VERB
with ADP
	 SPACE
OCD PROPN
are AUX
most ADV
frequently ADV
very ADV
mundane ADJ
and CCONJ
predictable ADJ
, PUNCT
closer ADV
to ADP
	 SPACE
a DET
superstitious ADJ
nature NOUN
than SCONJ
a DET
dangerous ADJ
nature NOUN
for ADP
the DET
most ADJ
part NOUN
. PUNCT
	 SPACE
Some DET
references NOUN
( PUNCT
one NUM
non ADJ
- ADJ
technical ADJ
and CCONJ
several ADJ
technical ADJ
) PUNCT
	 SPACE
that SCONJ
someone PRON
was AUX
kind ADV
enough ADV
to PART
supply VERB
for ADP
me PRON
	 SPACE
but CCONJ
was AUX
unable ADJ
to PART
post VERB
themself NOUN
: PUNCT
|"The NOUN
boy NOUN
who PRON
could AUX
n't PART
stop VERB
washing VERB
" PUNCT
by ADP
judith PROPN
rapaport PROPN
. PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
	 SPACE
( PUNCT
technical ADJ
refs PROPN
) PUNCT
:| PUNCT
	 SPACE
pharmacotherapy NOUN
of ADP
o PROPN
- PUNCT
c PROPN
disorder| PROPN
	 SPACE
donna PROPN
m PROPN
jermain PROPN
and CCONJ
lynn PROPN
crismon| PROPN
	 SPACE
pharmacotherapy PROPN
1990 NUM
; PUNCT
10(3):175 NUM
- PUNCT
198| PROPN
	 SPACE
epidemiology NOUN
of ADP
ocd| PROPN
	 SPACE
seteven VERB
a DET
rasmussen ADJ
and CCONJ
jane PROPN
eisen| PROPN
	 SPACE
j PROPN
clin PROPN
psychiatry PROPN
1990;51(2 NUM
, PUNCT
suppl.):10 PROPN
- PUNCT
13| PROPN
	 SPACE
the DET
waking VERB
nightmare NOUN
: PUNCT
an DET
overview NOUN
of ADP
ocd| PROPN
	 SPACE
judith PROPN
l PROPN
rapoport| PROPN
	 SPACE
j PROPN
clin PROPN
psychiatry PROPN
1990 NUM
; PUNCT
51(11 NUM
, PUNCT
suppl.):25 PROPN
- PUNCT
28| PROPN
	 SPACE
absence NOUN
of ADP
placebo NOUN
response NOUN
in ADP
ocd| PROPN
	 SPACE
matig PROPN
r PROPN
mavissakalian PROPN
, PUNCT
bruce PROPN
jones PROPN
, PUNCT
stephen PROPN
olson| PROPN
	 SPACE
j PROPN
nerv PROPN
ment PROPN
disease PROPN
1990 NUM
vol PROPN
178 NUM
no NOUN
. NOUN
4 NUM
	 SPACE
And CCONJ
thanks NOUN
very ADV
much ADV
to ADP
those DET
who PRON
supplied VERB
constructive ADJ
 	 SPACE
criticism NOUN
to ADP
my PRON
first ADJ
post NOUN
on ADP
OCD PROPN
. PUNCT
  SPACE
I PRON
hope VERB
this DET
helps VERB
clarify VERB
	 SPACE
the DET
parts NOUN
that PRON
were AUX
misleading VERB
. PUNCT
						 SPACE
kind PROPN
regards PROPN
, PUNCT
						 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
354 NUM
- SYM
1273 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Olliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
  SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59300From NUM
: PUNCT
mechalas@gn.ecn.purdue.edu PROPN
( PUNCT
John PROPN
P. PROPN
Mechalas)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rgnn6$lli@fnnews.fnal.gov NUM
> X
dh@fncrd6.fnal.gov PROPN
( PUNCT
don PROPN
husby PROPN
) PUNCT
writes:>>Poor NOUN
person NOUN
's PART
Kirlian PROPN
Photography PROPN
( PUNCT
try VERB
this DET
at ADP
home)>>1 X
. PUNCT
Hold VERB
your PRON
hand NOUN
up ADP
to ADP
a DET
cold ADJ
window.>2 PROPN
. PUNCT
Look VERB
closely ADV
at ADP
the DET
stunning ADJ
corona NOUN
effects NOUN
around ADP
> X
   SPACE
your PRON
fingertips.>3 PROPN
. PUNCT
Remove PROPN
hand NOUN
( PUNCT
from ADP
window NOUN
) PUNCT
and CCONJ
observe VERB
after ADP
image NOUN
. PUNCT
  SPACE
> X
4 NUM
. PUNCT
Invent ADJ
crackpot NOUN
theory NOUN
to PART
explain VERB
the DET
effect NOUN
. PUNCT
Advanced ADJ
Kirlian PROPN
Photography PROPN
( PUNCT
try VERB
this DET
at ADP
home NOUN
, PUNCT
too)1 NOUN
. PUNCT
  SPACE
Get AUX
a DET
camera2 NOUN
. PUNCT
  SPACE
Have AUX
your PRON
subject ADJ
face NOUN
you PRON
with ADP
his PRON
/ SYM
her PRON
back ADV
to ADP
the DET
sun.3 PROPN
. PUNCT
  SPACE
Take VERB
photo4 NOUN
. PUNCT
  SPACE
Observe VERB
the DET
glow NOUN
behind ADP
their PRON
silhouetted VERB
image NOUN
on ADP
the DET
photo5 NOUN
. PUNCT
  SPACE
Invent ADJ
crackpot PROPN
theory NOUN
to PART
explain VERB
the DET
effect-- PROPN
John PROPN
Mechalas PROPN
                                          SPACE
" PUNCT
I PRON
'm AUX
not PART
an DET
actor NOUN
, PUNCT
butmechalas@gn.ecn.purdue.edu PROPN
                                 SPACE
I PRON
play VERB
one NOUN
on ADP
TV."Aero PROPN
Engineering PROPN
, PUNCT
Purdue PROPN
University PROPN
                     SPACE
# SYM
include VERB
disclaimer.hNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59301From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
Mind NOUN
Machines?In PROPN
article NOUN
< X
C5snww.5GA@tripos.com X
> X
, PUNCT
homer@tripos.com X
( PUNCT
Webster PROPN
Homer PROPN
) PUNCT
writes VERB
... PUNCT
>I NUM
recently ADV
learned VERB
about ADP
these DET
devices NOUN
that PRON
supposedly ADV
induce VERB
specific ADJ
> X
brain NOUN
wave NOUN
frequencies NOUN
in ADP
their PRON
users NOUN
simply ADV
by ADP
wearing VERB
them PRON
. PUNCT
The DET
principle NOUN
underlying VERB
these DET
devices NOUN
is AUX
a DET
well ADV
establish VERB
principle ADJ
inpsychology NOUN
called VERB
' PUNCT
entrainment NOUN
, PUNCT
' PUNCT
whereby ADV
external ADJ
sensory ADJ
stimuliinfluence NOUN
gross ADJ
electrical ADJ
patterns NOUN
of ADP
brain NOUN
function NOUN
. PUNCT
They PRON
are AUX
' PUNCT
experimental ADJ
' PUNCT
in ADP
that DET
people NOUN
experiment VERB
with ADP
them PRON
and CCONJ
theyare PROPN
_ AUX
not PART
_ DET
widely ADV
( PUNCT
if SCONJ
at ADV
all ADV
) PUNCT
used VERB
in ADP
medicine NOUN
for ADP
therapeutic ADJ
purposes NOUN
. PUNCT
  SPACE
Given VERB
the DET
exception NOUN
of ADP
TENS PROPN
and CCONJ
similar ADJ
units NOUN
used VERB
for ADP
external ADJ
electrical ADJ
stimulation NOUN
, PUNCT
usually ADV
for ADP
pain NOUN
relief NOUN
, PUNCT
not PART
really ADV
a DET
light NOUN
and CCONJ
sound ADJ
machine NOUN
. PUNCT
They PRON
are AUX
_ DET
not PART
_ VERB
experimental ADJ
in ADP
the DET
sense NOUN
of ADP
a DET
specific ADJ
medical ADJ
category NOUN
to ADP
that DET
effect NOUN
, PUNCT
as SCONJ
with ADP
experimental ADJ
drugs NOUN
, PUNCT
as SCONJ
the DET
FDA PROPN
does AUX
not PART
specifically ADV
regulate VERB
medical ADJ
devices NOUN
in ADP
the DET
way NOUN
it PRON
does AUX
pharmaceuticals NOUN
. PUNCT
   SPACE
> X
I PRON
would AUX
think VERB
that SCONJ
if SCONJ
they PRON
work VERB
as SCONJ
reported VERB
they PRON
would AUX
be AUX
incredibly ADV
useful ADJ
, PUNCT
There PRON
are AUX
few ADJ
reliable ADJ
studies NOUN
of ADP
therapeutic ADJ
or CCONJ
enhancement NOUN
effectsfor NOUN
mind NOUN
machines NOUN
, PUNCT
other ADJ
than SCONJ
those DET
relaxation NOUN
- PUNCT
related VERB
effects NOUN
found VERB
with ADP
meditation NOUN
or CCONJ
self NOUN
- PUNCT
hypnosis NOUN
as ADV
well ADV
. PUNCT
  SPACE
Reported VERB
benefits NOUN
are AUX
mostly ADV
anecdotal ADJ
andsubjective ADJ
so ADV
far ADV
, PUNCT
so ADV
it PRON
's AUX
hard ADJ
to PART
generalize VERB
about ADP
their PRON
potential ADJ
value NOUN
. PUNCT
A DET
pretty ADV
good ADJ
general ADJ
non ADJ
- ADJ
technical ADJ
introduction NOUN
to ADP
a DET
wide ADJ
varietyof NOUN
these DET
devices NOUN
may AUX
be AUX
found VERB
in ADP
" PUNCT
Would AUX
the DET
Buddha PROPN
Wear PROPN
a DET
Walkman NOUN
? PUNCT
" PUNCT
Some DET
interesting ADJ
background NOUN
material NOUN
, PUNCT
names NOUN
of ADP
suppliers NOUN
, PUNCT
and CCONJ
capsule NOUN
reviewsof ADJ
specific ADJ
equipment NOUN
. PUNCT
  SPACE
> X
do AUX
these DET
mind NOUN
machines NOUN
( PUNCT
aka ADV
Light ADJ
and CCONJ
Sound PROPN
machines NOUN
) PUNCT
work NOUN
? PUNCT
can AUX
they PRON
induce VERB
> X
alpha NOUN
, PUNCT
theta NOUN
, PUNCT
and/or CCONJ
delta PROPN
waves VERB
in ADP
a DET
person NOUN
wearing VERB
them PRON
? PUNCT
What PRON
research NOUN
if SCONJ
> X
any DET
has AUX
been AUX
done VERB
on ADP
them PRON
? PUNCT
Could AUX
they PRON
be AUX
used VERB
in ADP
lieu NOUN
of ADP
a DET
tranquilizer?>Or NOUN
are AUX
they PRON
just ADV
another DET
bit NOUN
of ADP
quackery?A PROPN
more ADV
important ADJ
question NOUN
might AUX
be AUX
whether SCONJ
they PRON
have AUX
enough ADJ
additionalvalue NOUN
to PART
be AUX
worth ADJ
investing VERB
in ADP
. PUNCT
  SPACE
' PUNCT
Biofeedback PROPN
' PUNCT
was AUX
found VERB
to PART
be AUX
a DET
legitimateand NOUN
reliable ADJ
effect NOUN
experimentally ADV
under ADP
certain ADJ
conditions NOUN
, PUNCT
( PUNCT
in ADP
thatit PROPN
demonstrated VERB
that SCONJ
we PRON
can AUX
influence VERB
physiological ADJ
processes NOUN
previously ADV
considered VERB
purely ADV
autonomic ADJ
) PUNCT
but CCONJ
never ADV
panned VERB
out ADP
as SCONJ
a DET
particularly ADV
valuable ADJ
therapeutic ADJ
tool NOUN
because SCONJ
of ADP
the DET
skill NOUN
level NOUN
required VERB
and CCONJ
the DET
subtlety NOUN
andtemporary ADJ
nature NOUN
of ADP
the DET
effects NOUN
in ADP
most ADJ
cases NOUN
. PUNCT
   SPACE
Maybe ADV
someone PRON
else ADV
has AUX
more ADJ
, PUNCT
there PRON
used VERB
to PART
be AUX
a DET
whole ADJ
mailing NOUN
list NOUN
devoted VERB
to ADP
mind NOUN
machines NOUN
, PUNCT
somewhere ADV
on ADP
the DET
net.>Web PROPN
Homer>homer@tripos.com PROPN
						 SPACE
kind PROPN
regards NOUN
, PUNCT
						 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
354 NUM
- SYM
1273 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Olliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
  SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59302From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org PROPN
> X
, PUNCT
gpivar@maestro.mitre.org(Greg PROPN
Pivarnik PROPN
) PUNCT
writes:=In VERB
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding VERB
) PUNCT
writes:=| PROPN
> X
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:=| PROPN
> X
=| PUNCT
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
=| PUNCT
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow=| VERB
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking=| PROPN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for=| NOUN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly=| PROPN
> X
> X
appreciated.=| PROPN
> X
=| PUNCT
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
=| X
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.=| NUM
> X
=| PUNCT
> X
Bill PROPN
from ADP
oz=| PROPN
> X
= PUNCT
= X
= PUNCT
Bill,=No PROPN
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian PROPN
= SYM
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,=it PROPN
takes VERB
pictures NOUN
of ADP
your PRON
aura NOUN
. PUNCT
Greg PROPN
: PUNCT
  SPACE
Flame PROPN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
Itinvolves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
thesubject NOUN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
wellwith ADP
inanimate ADJ
objects.--------------------------------------------------------------------------------Carl NOUN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59303From NUM
: PUNCT
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
C60KrL.59t@dartvax.dartmouth.edu NUM
> X
oldman@coos.dartmouth.edu PROPN
( PUNCT
Prakash PROPN
Das PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr20.173019.11903@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>>>As VERB
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
like>>the AUX
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
use>>it PROPN
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighbor>>has NOUN
an DET
ulcer.>>Julie NOUN
, PUNCT
it PRON
does AUX
n't PART
necessarily ADV
follow VERB
that SCONJ
you PRON
should AUX
use VERB
it PRON
( PUNCT
MSG PROPN
or CCONJ
> X
something PRON
else ADV
for ADP
that DET
matter NOUN
) PUNCT
simply ADV
because SCONJ
you PRON
are AUX
not PART
allergic ADJ
> X
to ADP
it PRON
. PUNCT
For ADP
example NOUN
you PRON
might AUX
not PART
be AUX
allergic ADJ
to ADP
( PUNCT
animal NOUN
) PUNCT
fats NOUN
, PUNCT
and CCONJ
> X
like SCONJ
their PRON
taste NOUN
, PUNCT
yet CCONJ
it PRON
does AUX
n't PART
follow VERB
that SCONJ
you PRON
should AUX
be AUX
using VERB
them>(regularly ADV
) PUNCT
. PUNCT
MSG PROPN
might AUX
have AUX
other ADJ
bad ADJ
( PUNCT
or CCONJ
good ADJ
, PUNCT
I PRON
am AUX
not PART
up ADV
on ADP
> X
knowledge NOUN
of ADP
MSG PROPN
) PUNCT
effects NOUN
on ADP
your PRON
body NOUN
in ADP
the DET
long ADJ
run NOUN
, PUNCT
maybe ADV
that's ADP
> X
reason NOUN
enough ADV
not PART
to PART
use VERB
it PRON
. PUNCT
Perhaps ADV
I PRON
should AUX
quit VERB
eating VERB
mushrooms NOUN
, PUNCT
soya PROPN
beans NOUN
, PUNCT
and CCONJ
brie PROPN
cheesewhich PROPN
all DET
have AUX
MSG NOUN
in ADP
them PRON
. PUNCT
  SPACE
It PRON
occurs VERB
naturally ADV
. PUNCT
I'm PRON
not PART
going VERB
to PART
quit VERB
eating VERB
something PRON
that PRON
I PRON
like VERB
just ADV
becauseit NOUN
* PUNCT
might AUX
* PUNCT
cause VERB
me PRON
trouble NOUN
later ADV
or CCONJ
causes VERB
problems NOUN
in ADP
* PUNCT
some*people NOUN
. PUNCT
  SPACE
I PRON
would AUX
much ADV
rather ADV
avoid VERB
stress NOUN
by ADP
not PART
worrying VERB
overwhat NOUN
goes VERB
in ADP
my PRON
mouth NOUN
and CCONJ
not PART
spending VERB
every DET
day NOUN
reading VERB
conflictingreports NOUN
of ADP
what PRON
is AUX
good ADJ
/ SYM
bad ADJ
for ADP
you PRON
. PUNCT
I PRON
may AUX
eat VERB
some DET
things NOUN
in ADP
quantities NOUN
that PRON
may AUX
not PART
be AUX
good ADJ
for ADP
me PRON
. PUNCT
Fine INTJ
. PUNCT
  SPACE
I PRON
've AUX
made VERB
my PRON
decision NOUN
and CCONJ
I PRON
do AUX
n't PART
think VERB
it PRON
's AUX
appropriatefor ADV
anyone PRON
to PART
try VERB
to PART
' PUNCT
convert VERB
' PUNCT
me PRON
. PUNCT
  SPACE
" PUNCT
It PRON
's AUX
for ADP
your PRON
own ADJ
good NOUN
" PUNCT
arethe NOUN
most ADV
obnoxious ADJ
and CCONJ
harmful ADJ
words NOUN
, PUNCT
IMO ADV
, PUNCT
in ADP
the DET
English PROPN
( PUNCT
orany ADJ
other ADJ
) PUNCT
language.>>Altho ADV
' PUNCT
your PRON
example NOUN
of ADP
the DET
ulcer NOUN
is AUX
funny ADJ
, PUNCT
it PRON
is AUX
n't PART
an DET
> X
appropriate ADJ
comparison NOUN
at ADV
all ADV
. PUNCT
I PRON
think VERB
it PRON
is AUX
. PUNCT
  SPACE
I PRON
get VERB
tired ADJ
of ADP
people NOUN
saying VERB
' PUNCT
do AUX
n't PART
eat VERB
X NOUN
becauseit NOUN
's PART
BAD ADJ
! PUNCT
' PUNCT
  SPACE
Well INTJ
, PUNCT
X PROPN
may AUX
not PART
be AUX
bad ADJ
for ADP
everyone PRON
. PUNCT
  SPACE
And CCONJ
even ADV
ifit NOUN
is AUX
, PUNCT
so ADV
what PRON
? PUNCT
  SPACE
Give VERB
people NOUN
all DET
the DET
information NOUN
but CCONJ
do AUX
n't PART
ramyour VERB
decisions NOUN
down ADP
their PRON
throats NOUN
. PUNCT
JulieDISCLAIMER PROPN
: PUNCT
  SPACE
All DET
opinions NOUN
here ADV
belong VERB
to ADP
my PRON
cat NOUN
and CCONJ
no DET
one NUM
elseNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59304From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rgo4b$et4@hsdndev.harvard.edu NUM
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr23.180430.1@vms.ocom.okstate.edu NOUN
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu PROPN
writes:>>I PROPN
do AUX
n't PART
like VERB
the DET
term NOUN
" PUNCT
quack NOUN
" PUNCT
being AUX
applied VERB
to ADP
a DET
licensed ADJ
physician NOUN
David.>>Questionable ADJ
conduct NOUN
is AUX
more ADV
appropriately ADV
called VERB
unethical(in NUM
my PRON
opinion NOUN
) PUNCT
. PUNCT
> X
> X
> X
	 SPACE
3 NUM
. PUNCT
Using VERB
laetril ADJ
to PART
treat VERB
cancer NOUN
patients NOUN
when ADV
such ADJ
treatment NOUN
has AUX
> X
> X
	    SPACE
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
and CCONJ
dangerous(cyanide PROPN
release NOUN
) PUNCT
by ADP
> X
> X
	    SPACE
the DET
NCI PROPN
. PUNCT
> X
> X
Hmm INTJ
. PUNCT
  SPACE
This DET
is AUX
certainly ADV
among ADP
the DET
things NOUN
I PRON
would AUX
refer VERB
to ADP
as SCONJ
quack PROPN
> X
therapy NOUN
and CCONJ
would AUX
tend VERB
to PART
refer VERB
to ADP
any DET
practitioner NOUN
who PRON
prescribed VERB
> X
laetrile PROPN
( PUNCT
whether SCONJ
licensed ADJ
or CCONJ
not PART
) PUNCT
as SCONJ
a DET
quack NOUN
. PUNCT
  SPACE
There PRON
are AUX
unethical ADJ
> X
behaviors NOUN
( PUNCT
such ADJ
as SCONJ
ordering VERB
unneccessary ADJ
tests NOUN
to PART
increase VERB
fees NOUN
) PUNCT
> X
which PRON
I PRON
would AUX
not PART
lable VERB
as SCONJ
quackish ADJ
, PUNCT
but CCONJ
prescribing VERB
known VERB
ineffective ADJ
> NOUN
therapies NOUN
seems VERB
to ADP
me PRON
to PART
be AUX
one NUM
of ADP
the DET
hallmarks NOUN
of ADP
a DET
quack NOUN
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindOne PROPN
of ADP
the DET
responsibilities NOUN
of ADP
a DET
licensed ADJ
physician NOUN
is AUX
to PART
read VERB
the DET
medical ADJ
literature NOUN
to PART
keep VERB
up ADP
with ADP
changes NOUN
in ADP
medical ADJ
practice NOUN
. PUNCT
  SPACE
All DET
the DET
clamor NOUN
over ADP
laetril PROPN
resulted VERB
in ADP
the DET
NCI PROPN
spending VERB
quite DET
a DET
bit NOUN
of ADP
money NOUN
on ADP
clinical ADJ
trials NOUN
which PRON
proved(to VERB
me PRON
anyway ADV
) PUNCT
that SCONJ
laetril PROPN
was AUX
ineffective ADJ
against ADP
cancer NOUN
. PUNCT
  SPACE
A DET
physician NOUN
who PRON
continued VERB
to PART
use VERB
it PRON
, PUNCT
when ADV
better ADJ
, PUNCT
more ADV
effective ADJ
, PUNCT
treatments NOUN
are AUX
available ADJ
, PUNCT
may AUX
deserve VERB
to PART
be AUX
called VERB
a DET
quack NOUN
. PUNCT
  SPACE
Anti NOUN
- NOUN
fungals NOUN
are AUX
in ADP
a DET
different ADJ
class NOUN
. PUNCT
  SPACE
The DET
big ADJ
question NOUN
seems VERB
to PART
be AUX
is AUX
it PRON
reasonable ADJ
to PART
use VERB
them PRON
in ADP
patients NOUN
with ADP
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
that PRON
* PUNCT
could AUX
* PUNCT
be AUX
due ADJ
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
  SPACE
Gorden PROPN
Rubenfeld PROPN
, PUNCT
through ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
has AUX
assured VERB
me PRON
that SCONJ
most ADJ
physicians NOUN
recognize VERB
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
occuring VERB
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
and CCONJ
they PRON
therefore ADV
reinnoculate VERB
their PRON
patients NOUN
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
to PART
restore VERB
competetion NOUN
for ADP
candida PROPN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believe VERB
that SCONJ
this DET
is AUX
yet ADV
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
. PUNCT
  SPACE
He PRON
deals VERB
with ADP
critical ADJ
care NOUN
patients NOUN
where ADV
fungal PROPN
infection(systemic PROPN
) PUNCT
is AUX
a DET
real ADJ
problem NOUN
and CCONJ
just ADV
because SCONJ
he PRON
tries VERB
to PART
keep VERB
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
in ADP
his PRON
patients NOUN
does AUX
not PART
mean VERB
that SCONJ
all DET
physicians NOUN
do AUX
this DET
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
aspergillis PROPN
is AUX
more ADV
likely ADJ
to PART
be AUX
found VERB
in ADP
the DET
sinus PROPN
mucus PROPN
membranes NOUN
than SCONJ
is AUX
candida PROPN
. PUNCT
  SPACE
Women NOUN
have AUX
been AUX
known VERB
for ADP
a DET
very ADV
long ADJ
time NOUN
to PART
suffer VERB
from ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
and CCONJ
a DET
women NOUN
is AUX
lucky ADJ
to PART
find VERB
a DET
physician NOUN
who PRON
is AUX
willing ADJ
to PART
treat VERB
the DET
cause NOUN
and CCONJ
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
  SPACE
Since SCONJ
candida PROPN
colonizes VERB
primarily ADV
in ADP
the DET
ano NOUN
- PUNCT
rectal ADJ
area NOUN
, PUNCT
GI PROPN
symptoms NOUN
should AUX
be AUX
more ADV
common ADJ
than SCONJ
vaginal ADJ
problems NOUN
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
. PUNCT
The DET
problem NOUN
we PRON
have AUX
here ADV
David PROPN
is AUX
proof NOUN
that SCONJ
GI PROPN
discomfort NOUN
can AUX
be AUX
caused VERB
by ADP
a DET
candida PROPN
bloom NOUN
. PUNCT
  SPACE
The DET
arguement NOUN
is AUX
that SCONJ
without ADP
proof NOUN
, PUNCT
no DET
action NOUN
is AUX
warrented VERB
. PUNCT
Medicine NOUN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There PRON
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to PART
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
Medicine PROPN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
The DET
conventional ADJ
wisdom NOUN
in ADP
animal NOUN
husbandry NOUN
has AUX
been AUX
that SCONJ
animals NOUN
need VERB
to PART
be AUX
reinnoculated VERB
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
after ADP
coming VERB
off ADP
antibiotic ADJ
therapy NOUN
. PUNCT
If SCONJ
it PRON
makes VERB
sense NOUN
for ADP
livestock NOUN
, PUNCT
why ADV
does AUX
n't PART
it PRON
make VERB
sense NOUN
for ADP
humans NOUN
David PROPN
? PUNCT
  SPACE
We PRON
are AUX
not PART
talking VERB
about ADP
a DET
dangerous ADJ
treatment(unless NOUN
you PRON
consider VERB
yogurt PROPN
dangerous ADJ
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
should AUX
decline VERB
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59305From NUM
: PUNCT
chorley@vms.ocom.okstate.eduSubject NOUN
: PUNCT
CS PROPN
" PUNCT
gas NOUN
" PUNCT
and CCONJ
allergic ADJ
response- NOUN
Ques PROPN
. PUNCT
This DET
question NOUN
derives VERB
from ADP
the DET
Waco PROPN
incident NOUN
: PUNCT
	 SPACE
Could AUX
CS PROPN
( PUNCT
" PUNCT
gas NOUN
" PUNCT
) PUNCT
particles VERB
create VERB
an DET
allergic ADJ
response NOUN
which PRON
would AUX
result VERB
in ADP
laryngospasm PROPN
and CCONJ
asphyxiation?- PROPN
especially ADV
in ADP
children NOUN
. PUNCT
	 SPACE
DNC PROPN
in ADP
Ok PROPN
. PUNCT
	 SPACE
OSU PROPN
- PUNCT
COM PROPN
will AUX
disavow VERB
my PRON
opinion NOUN
, PUNCT
and CCONJ
my PRON
existence NOUN
, PUNCT
if SCONJ
necessary ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59306From NUM
: PUNCT
mmeyer@m2.dseg.ti.com PROPN
( PUNCT
Mark PROPN
Meyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes VERB
: PUNCT
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
> X
resident NOUN
in ADP
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
> X
them PRON
, PUNCT
perhaps ADV
. PUNCT
In ADP
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org PROPN
> X
gpivar@maestro.mitre.org PROPN
( PUNCT
Greg PROPN
Pivarnik PROPN
) PUNCT
writes VERB
: PUNCT
> X
No DET
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
> X
Kirilian ADJ
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
> X
objects NOUN
, PUNCT
in ADP
simple ADJ
, PUNCT
it PRON
takes VERB
pictures NOUN
of ADP
your PRON
aura NOUN
. PUNCT
	 SPACE
Greg PROPN
, PUNCT
no DET
flame NOUN
intended VERB
, PUNCT
but CCONJ
you PRON
have AUX
no DET
discernible ADJ
sense NOUN
ofhumor NOUN
. PUNCT
  SPACE
What PRON
Bill PROPN
wrote VERB
was AUX
intended VERB
to PART
be AUX
funny ADJ
. PUNCT
  SPACE
It PRON
's AUX
called VERB
a"joke PROPN
" PUNCT
, PUNCT
Greg PROPN
. PUNCT
  SPACE
Look VERB
into ADP
it PRON
. PUNCT
	 SPACE
Besides ADV
, PUNCT
Kirilian ADJ
photography NOUN
is AUX
actually ADV
photography NOUN
of ADP
myfriend PROPN
's PART
two NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
Kiril PROPN
. PUNCT
  SPACE
Perhaps ADV
you PRON
meant VERB
" PUNCT
Kirlian"?-- PROPN
Mark PROPN
Meyer PROPN
                                               SPACE
| PROPN
mmeyer@dseg.ti.com PROPN
|Texas PROPN
Instruments PROPN
, PUNCT
Inc. PROPN
, PUNCT
  SPACE
Plano PROPN
TX PROPN
                       SPACE
+ SYM
--------------------+Every NOUN
day NOUN
, PUNCT
Jerry PROPN
Junkins PROPN
is AUX
grateful ADJ
that SCONJ
I PRON
do AUX
n't PART
speak VERB
for ADP
TI PROPN
. PUNCT
      SPACE
" PUNCT
You PRON
have AUX
triggered VERB
primary ADJ
defense NOUN
mechanism NOUN
. PUNCT
" PUNCT
  SPACE
" PUNCT
Blast NOUN
! PUNCT
" PUNCT
  SPACE
" PUNCT
Affirmative ADJ
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59307From NUM
: PUNCT
  SPACE
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5sqv8.EDB@acsu.buffalo.edu PROPN
> X
, PUNCT
SFEGUS@ubvm.cc.buffalo.edu PROPN
wrote VERB
: PUNCT
> X
In ADP
article NOUN
< X
79857@cup.portal.com NUM
> X
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
An DET
odd ADJ
exception NOUN
to ADP
the DET
rule NOUN
seems VERB
to PART
be AUX
the DET
product NOUN
known VERB
as SCONJ
" PUNCT
gumbo PROPN
file NOUN
' PUNCT
" PUNCT
. PUNCT
> X
> X
This DET
is AUX
nothing PRON
more ADJ
than SCONJ
coarsely ADV
ground NOUN
dried VERB
sassafras PROPN
leaves NOUN
. PUNCT
  SPACE
This DET
> X
> X
is AUX
not PART
only ADV
a DET
natural ADJ
product NOUN
, PUNCT
but CCONJ
a DET
natural ADJ
product NOUN
still ADV
in ADP
its PRON
natural ADJ
> X
> X
form NOUN
, PUNCT
so ADV
maybe ADV
that DET
's AUX
how ADV
they PRON
evade VERB
Delany PROPN
. PUNCT
  SPACE
Or CCONJ
maybe ADV
a DET
special ADJ
exemption NOUN
> X
> X
was AUX
made VERB
, PUNCT
to PART
appease VERB
powerful ADJ
Louisiana PROPN
Democrats PROPN
. PUNCT
One NUM
possible ADJ
reason NOUN
is AUX
that SCONJ
file NOUN
' PUNCT
is AUX
made VERB
with ADP
sassafras PROPN
leaves NOUN
, PUNCT
while SCONJ
rootbeer NOUN
was AUX
made VERB
with ADP
sassafras PROPN
bark NOUN
or CCONJ
root NOUN
bark NOUN
. PUNCT
  SPACE
The DET
leaves NOUN
contain VERB
eithernoor PROPN
less ADJ
saffrole NOUN
than SCONJ
the DET
bark NOUN
. PUNCT
There PRON
is AUX
also ADV
some DET
sort NOUN
of ADP
treatment NOUN
which PRON
putatively ADV
removes VERB
saffrole NOUN
fromsassafras VERB
products NOUN
. PUNCT
  SPACE
I PRON
have AUX
some DET
concentrated ADJ
sassafras NOUN
tea NOUN
extract NOUN
whichisclaimed VERB
to PART
have AUX
the DET
saffrole NOUN
removed VERB
. PUNCT
> X
I PRON
think VERB
what PRON
we PRON
have AUX
to PART
keep VERB
in ADP
mind NOUN
is AUX
that SCONJ
even ADV
though SCONJ
it PRON
may AUX
be AUX
illegal ADJ
to ADP
> X
commercially ADV
produce VERB
/ SYM
sell VERB
food NOUN
with ADP
carcinogenic ADJ
substances NOUN
, PUNCT
it PRON
is AUX
not PART
illegal ADJ
> X
for ADP
people NOUN
to PART
do AUX
such ADJ
to ADP
their PRON
own ADJ
food NOUN
( PUNCT
smoking NOUN
, PUNCT
etc X
) PUNCT
. PUNCT
  SPACE
Is AUX
this DET
true?Well NOUN
, PUNCT
the DET
last ADJ
time NOUN
that PRON
I PRON
went VERB
to ADP
the DET
store NOUN
to PART
buy VERB
sassafras PROPN
bark NOUN
to PART
make VERB
root NOUN
beer NOUN
, PUNCT
there PRON
was AUX
a DET
sign NOUN
saying VERB
that SCONJ
it PRON
was AUX
n't PART
sold VERB
for ADP
humanconsumption NOUN
. PUNCT
Also ADV
, PUNCT
when ADV
I PRON
asked VERB
the DET
person NOUN
if SCONJ
they PRON
had AUX
wild ADJ
cherry NOUN
bark NOUN
and CCONJ
wintergreenbark PROPN
, PUNCT
she PRON
made VERB
a DET
point NOUN
of ADP
telling VERB
me PRON
that SCONJ
I PRON
could AUX
n't PART
buy VERB
sassafras NOUN
for ADP
human ADJ
consumption NOUN
. PUNCT
I PRON
find VERB
the DET
fact NOUN
that SCONJ
some DET
people NOUN
reckless ADJ
enough ADV
to PART
step VERB
into ADP
an DET
automobilelivein ADJ
fear NOUN
of ADP
dropping VERB
dead ADJ
because SCONJ
of ADP
a DET
pork NOUN
rib VERB
quite ADV
funny ADJ
, PUNCT
in ADP
a DET
sick ADJ
way NOUN
. PUNCT
Eric PROPN
Pepke PROPN
                                     SPACE
INTERNET:pepke@gw.scri.fsu.eduSupercomputer PROPN
Computations PROPN
Research PROPN
Institute PROPN
  SPACE
MFENET PROPN
: PUNCT
   SPACE
pepke@fsuFlorida PROPN
State PROPN
University PROPN
                       SPACE
SPAN PROPN
: PUNCT
     SPACE
scri::pepkeTallahassee PROPN
, PUNCT
FL PROPN
32306 NUM
- SYM
4052 NUM
                     SPACE
BITNET NOUN
: PUNCT
   SPACE
pepke@fsuDisclaimer PROPN
: PUNCT
My PRON
employers NOUN
seldom ADV
even ADV
LISTEN VERB
to ADP
my PRON
opinions NOUN
. PUNCT
Meta PROPN
- PUNCT
disclaimer PROPN
: PUNCT
Any DET
society NOUN
that PRON
needs VERB
disclaimers NOUN
has AUX
too ADV
many ADJ
lawyers NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59308From NUM
: PUNCT
Nigel@dataman.demon.co.uk PROPN
( PUNCT
Nigel PROPN
Ballard)Subject VERB
: PUNCT
Re ADP
: PUNCT
Mind NOUN
Machines PROPN
? PUNCT
I PRON
use VERB
a DET
ZYGON PROPN
Mind PROPN
Machine PROPN
as SCONJ
bought VERB
in ADP
the DET
USA PROPN
last ADJ
year NOUN
. PUNCT
  SPACE
Althoughit PROPN
's AUX
no DET
wonder NOUN
cure NOUN
for ADP
what PRON
ail NOUN
's AUX
you PRON
. PUNCT
  SPACE
It PRON
is AUX
however ADV
VERY ADV
good ADJ
atstopping VERB
you PRON
thinking!Sound ADV
strange ADJ
? PUNCT
  SPACE
Well INTJ
suppose VERB
you PRON
're AUX
tired ADJ
and CCONJ
want VERB
to PART
go VERB
to ADP
bed NOUN
/ SYM
sleep NOUN
. PUNCT
BUT CCONJ
your PRON
head NOUN
is AUX
full ADJ
of ADP
niggling VERB
problems NOUN
to PART
resolve VERB
, PUNCT
you PRON
lay VERB
in ADP
thebed PROPN
, PUNCT
and CCONJ
quickly ADV
they PRON
all DET
come VERB
to ADP
the DET
surface NOUN
, PUNCT
churning VERB
around ADP
from ADP
oneunresolved VERB
thing NOUN
to ADP
the DET
next ADJ
and CCONJ
then ADV
back ADV
again ADV
. PUNCT
  SPACE
Been AUX
there ADV
, PUNCT
boughtthe NOUN
t PROPN
- PUNCT
shirt?I PROPN
slip VERB
on ADP
the DET
Zygon PROPN
and CCONJ
select VERB
a DET
soothing VERB
pattern NOUN
of ADP
light NOUN
& CCONJ
sound NOUN
, PUNCT
andquickly PROPN
I PRON
just ADV
ca AUX
n't PART
concentrate VERB
on ADP
the DET
previous ADJ
stuff NOUN
. PUNCT
Your PRON
brain'scache NOUN
kinda PROPN
get VERB
's PART
flushed ADJ
, PUNCT
and CCONJ
you PRON
start VERB
on ADP
a DET
whole ADJ
new ADJ
set NOUN
of ADP
stuff NOUN
. PUNCT
A DET
useful ADJ
addition NOUN
, PUNCT
is AUX
the DET
facility NOUN
to PART
feed VERB
the DET
output NOUN
of ADP
a DET
tape NOUN
playeror NOUN
CD NOUN
through ADP
the DET
box NOUN
, PUNCT
I PRON
use VERB
New PROPN
Age PROPN
elevator NOUN
muzak NOUN
to PART
enhance VERB
theoverall NOUN
effect NOUN
. PUNCT
DEFFO NOUN
better ADV
than SCONJ
a DET
pill NOUN
. PUNCT
Cheers PROPN
Nigel PROPN
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
* PUNCT
NIGEL PROPN
BALLARD PROPN
  SPACE
| ADP
INT PROPN
: PUNCT
nigel@dataman.demon.co.uk PROPN
| DET
      SPACE
I'M PROPN
PINK VERB
      SPACE
* PUNCT
   SPACE
* PUNCT
BOURNEMOUTH ADV
UK PROPN
| PROPN
CIS PROPN
: PUNCT
100015.2644 NUM
   SPACE
RADIO PROPN
- PUNCT
G1HOI PROPN
| PROPN
THEREFORE PROPN
I'M NOUN
SPAM VERB
* PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59309From NUM
: SYM
n3022@cray.com X
( PUNCT
Jim PROPN
Knoll)Subject PROPN
: PUNCT
Patti PROPN
Duke PROPN
's PART
ProblemDoes PROPN
anyone PRON
have AUX
information NOUN
about ADP
the DET
struggles NOUN
that PRON
PattiDuke PROPN
went VERB
through ADP
in ADP
her PRON
personal ADJ
life NOUN
with ADP
severe ADJ
mood NOUN
swings NOUN
. PUNCT
Did AUX
she PRON
have AUX
some DET
form NOUN
of ADP
chemical ADJ
imbalance NOUN
that SCONJ
triggeredthese ADJ
problems NOUN
? PUNCT
  SPACE
I PRON
recall VERB
that SCONJ
she PRON
wrote VERB
a DET
book NOUN
about ADP
her PRON
troubles NOUN
. PUNCT
Does AUX
someone PRON
have AUX
the DET
title NOUN
of ADP
that DET
book?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59310From NUM
: PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)Subject PROPN
: PUNCT
tick PROPN
fever PROPN
( PUNCT
aka ADV
rocky ADJ
mtn PROPN
spotted)Any PROPN
rocky ADJ
mountain NOUN
spotted VERB
fever NOUN
experts NOUN
out ADV
there ADV
? PUNCT
The DET
doctor NOUN
thinks VERB
a DET
friend NOUN
might AUX
have AUX
this DET
. PUNCT
The DET
question NOUN
is AUX
, PUNCT
does AUX
n't PART
the DET
tick NOUN
have AUX
to PART
bite VERB
you PRON
? PUNCT
You PRON
frequently ADV
find VERB
a DET
tick NOUN
crawling VERB
on ADP
you PRON
after ADP
a DET
walkin NOUN
the DET
woods NOUN
around ADP
here ADV
, PUNCT
but CCONJ
you PRON
tend VERB
to PART
notice VERB
it PRON
beforeit PROPN
bites VERB
you PRON
; PUNCT
pulling VERB
one NUM
out SCONJ
of ADP
your PRON
skin NOUN
is AUX
somethingyou're PUNCT
not PART
likely ADJ
to PART
forget VERB
. PUNCT
Can AUX
you PRON
get AUX
the DET
fever NOUN
without ADP
it PRON
biting VERB
you PRON
? PUNCT
  SPACE
Do AUX
theysometimes NOUN
bite VERB
you PRON
and CCONJ
then ADV
let VERB
go VERB
so ADV
you PRON
do AUX
n't PART
realizeyou VERB
were AUX
bitten VERB
? PUNCT
  SPACE
I PRON
know VERB
they PRON
will AUX
let VERB
go VERB
once SCONJ
they PRON
've AUX
hadtheir NOUN
fill VERB
, PUNCT
but CCONJ
you PRON
certainly ADV
would AUX
notice VERB
this DET
( PUNCT
arggh).So ADV
how ADV
do AUX
you PRON
get AUX
the DET
fever NOUN
if SCONJ
you PRON
never ADV
pulled VERB
a DET
tickoff NOUN
yourself PRON
( PUNCT
as SCONJ
opposed VERB
to ADP
finding VERB
one NUM
merely ADV
crawlingon NOUN
you PRON
) PUNCT
? PUNCT
John PROPN
Eylesjge@cs.unc.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59311From NUM
: PUNCT
Renee VERB
< X
rme1@cornell.edu>Subject NOUN
: PUNCT
Chelation NOUN
therapyDoes VERB
anyone PRON
here ADV
know VERB
anything PRON
about ADP
chelation NOUN
therapy NOUN
using VERB
EDTA NOUN
? PUNCT
  SPACE
Myuncle PROPN
has AUX
emphesema NOUN
, PUNCT
and CCONJ
a DET
doctor NOUN
wants VERB
to PART
try VERB
it PRON
on ADP
him PRON
. PUNCT
  SPACE
We PRON
arewondering VERB
if:1 PROPN
. PUNCT
  SPACE
Is AUX
there PRON
any DET
evidence NOUN
EDTA VERB
chelation NOUN
therapy NOUN
is AUX
beneficial ADJ
for ADP
hiscondition NOUN
, PUNCT
or CCONJ
any DET
condition?2 PROPN
. PUNCT
  SPACE
What PRON
possible ADJ
side NOUN
effects NOUN
are AUX
there ADV
. PUNCT
  SPACE
How ADV
can AUX
they PRON
be AUX
mimimized?Please VERB
respond VERB
via ADP
e NOUN
- NOUN
mail NOUN
to ADP
    SPACE
rme1@cornell.eduThanks,ReneeNewsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59312From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Patti PROPN
Duke PROPN
's PART
ProblemIn NOUN
article NOUN
< X
1993Apr26.070649.2138@hemlock.cray.com PROPN
> X
n3022@cray.com PUNCT
writes:>Does VERB
anyone PRON
have AUX
information NOUN
about ADP
the DET
struggles NOUN
that SCONJ
Patti PROPN
> X
Duke PROPN
went VERB
through ADP
in ADP
her PRON
personal ADJ
life NOUN
with ADP
severe ADJ
mood NOUN
swings.>Did INTJ
she PRON
have AUX
some DET
form NOUN
of ADP
chemical ADJ
imbalance NOUN
that PRON
triggered VERB
> X
these DET
problems NOUN
? PUNCT
  SPACE
I PRON
recall VERB
that SCONJ
she PRON
wrote VERB
a DET
book NOUN
about ADP
her PRON
troubles.>Does ADV
someone PRON
have AUX
the DET
title NOUN
of ADP
that DET
book?She PROPN
's PART
published VERB
two NUM
books NOUN
about ADP
her PRON
manic ADJ
- PUNCT
depressive ADJ
illness NOUN
: PUNCT
_ DET
Call VERB
Me PRON
Anna PROPN
: PUNCT
the DET
Autobiography PROPN
of ADP
Patty PROPN
Duke PROPN
_ PROPN
, PUNCT
Patty PROPN
Duke PROPN
and CCONJ
Kenneth PROPN
Turan PROPN
, PUNCT
Bantam PROPN
Books PROPN
1987 NUM
and_A PROPN
Brilliant PROPN
Madness PROPN
: PUNCT
  SPACE
Living VERB
with ADP
Manic PROPN
- PUNCT
Depressive PROPN
Illness PROPN
_ NOUN
, PUNCT
Patty PROPN
Duke PROPN
and CCONJ
Gloria PROPN
Hochman PROPN
, PUNCT
Bantam PROPN
Books PROPN
1992 NUM
- PUNCT
-Barbara PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59313From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Annual ADJ
inguinal ADJ
hernia PROPN
repairIn PROPN
article NOUN
< X
jpc.735692207@avdms8.msfc.nasa.gov PROPN
> PROPN
, PUNCT
jpc@avdms8.msfc.nasa.gov(J. PROPN
Porter PROPN
Clark PROPN
) PUNCT
wrote:[synopsis PROPN
] PUNCT
Young ADJ
man NOUN
with ADP
inguianl PROPN
hernia PROPN
on ADP
one NUM
side NOUN
, PUNCT
repaired VERB
, PUNCT
now ADV
hasnew VERB
hernia PROPN
on ADP
other ADJ
side NOUN
. PUNCT
  SPACE
What PRON
gives VERB
, PUNCT
he PRON
asks VERB
? PUNCT
  SPACE
[ PUNCT
and CCONJ
he PRON
continues VERB
... PUNCT
] PUNCT
> X
Of ADV
course ADV
, PUNCT
my PRON
wife NOUN
thinks VERB
it PRON
's AUX
from ADP
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
> X
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
... PUNCT
There PRON
is AUX
the DET
possibility NOUN
that SCONJ
there PRON
is AUX
some DET
degree NOUN
of ADP
constipation NOUN
causingchronic NOUN
straining NOUN
which PRON
has AUX
caused VERB
the DET
bowel NOUN
movements NOUN
. PUNCT
  SPACE
The DET
classic ADJ
problems NOUN
that PRON
are AUX
supposed VERB
to PART
be AUX
looked VERB
for ADP
in ADP
someone PRON
with ADP
a DET
hernia PROPN
areconstipation NOUN
, PUNCT
chronic ADJ
cough NOUN
, PUNCT
colon NOUN
cancer NOUN
( PUNCT
and CCONJ
you PRON
're AUX
not PART
too ADV
young ADJ
forthat ADV
) PUNCT
and CCONJ
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
. PUNCT
Good ADJ
Luck PROPN
with ADP
your PRON
surgery!Steve ADJ
HollandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59314From NUM
: PUNCT
aj2a@galen.med.Virginia.EDU PROPN
( PUNCT
Amir PROPN
Anthony PROPN
Jazaeri)Subject NUM
: PUNCT
Re ADP
: PUNCT
Heat PROPN
Shock PROPN
Proteinsby PROPN
the DET
way NOUN
ms PROPN
. PROPN
olmstead PROPN
dna PROPN
is AUX
not PART
degraded VERB
in ADP
the DET
stomach NOUN
norunder NOUN
pH NOUN
of ADP
2 NUM
. PUNCT
  SPACE
its PRON
degraded VERB
in ADP
the DET
duodenum NOUN
under ADP
approx.neutral NOUN
pH NOUN
by ADP
DNAase PROPN
enzymes NOUN
secreted VERB
by ADP
the DET
pancreas NOUN
. PUNCT
  SPACE
mypoint PROPN
: PUNCT
  SPACE
check VERB
your PRON
facts NOUN
before ADP
yelling VERB
at ADP
other ADJ
people NOUN
for ADP
notdoing VERB
so ADV
. PUNCT
  SPACE
just ADV
a DET
friendly ADJ
suggestion.aaj NOUN
4/26/93Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59315From NUM
: PUNCT
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister)Subject PROPN
: PUNCT
Celery NOUN
and CCONJ
HypertensionSomewhere PROPN
or CCONJ
other ADJ
I PRON
read VERB
that SCONJ
when ADV
a DET
person NOUN
of ADP
Chinese ADJ
heritage NOUN
wastold VERB
that SCONJ
he PRON
had AUX
high ADJ
blood NOUN
pressure NOUN
he PRON
responded VERB
by ADP
eating VERB
celery(sorry PROPN
, PUNCT
I PRON
do AUX
n't PART
recall VERB
the DET
" PUNCT
dosage NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Apparently ADV
this DET
is AUX
supposed VERB
towork NOUN
in ADP
reducing VERB
hypertension NOUN
. PUNCT
Can AUX
anyone PRON
out ADV
there ADV
verify VERB
this DET
? PUNCT
  SPACE
And CCONJ
if SCONJ
it PRON
does AUX
work NOUN
, PUNCT
does AUX
anyoneknow VERB
the DET
appropriate ADJ
amounts NOUN
and CCONJ
possible ADJ
side NOUN
- PUNCT
effects?Thanks NOUN
, PUNCT
Leon PROPN
Traister PROPN
( PUNCT
lmtra@uts.amdahl.com)Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59316From NUM
: PUNCT
draper@gnd1.wtp.gtefsd.com X
( PUNCT
PAM PROPN
DRAPER)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
93115.120409ICBAL@ASUACAD.BITNET NUM
> X
, PUNCT
< X
ICBAL@ASUACAD.BITNET ADP
> X
writes VERB
... PUNCT
>>>You PRON
might AUX
look VERB
for ADP
an DET
allergy ADJ
doctor NOUN
in ADP
your PRON
area NOUN
who PRON
uses VERB
sublingual ADJ
> X
drops NOUN
instead ADV
of ADP
shots NOUN
for ADP
treatment NOUN
. PUNCT
( PUNCT
You PRON
are AUX
given VERB
a DET
small ADJ
bottle NOUN
of ADP
> X
antigens NOUN
; PUNCT
3 NUM
drops NOUN
are AUX
placed VERB
under ADP
the DET
tongue NOUN
for ADP
5 NUM
minutes NOUN
. PUNCT
) PUNCT
MyThis DET
homeopathic ADJ
remedies NOUN
. PUNCT
  SPACE
I PRON
tried VERB
the DET
dander NOUN
one NUM
for ADP
a DET
month NOUN
. PUNCT
15 NUM
drops VERB
three NUM
times NOUN
a DET
day NOUN
. PUNCT
  SPACE
I PRON
did AUX
n't PART
notice VERB
any DET
change NOUN
what PRON
s VERB
so ADV
ever ADV
. PUNCT
  SPACE
How ADV
long ADV
were AUX
you PRON
using VERB
the DET
drops NOUN
before ADP
you PRON
noticed VERB
a DET
difference?For NOUN
me PRON
this DET
treatment NOUN
is AUX
more ADV
expensive ADJ
because SCONJ
my PRON
insurance NOUN
will AUX
cover VERB
tradiitional ADJ
medicine NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59317From NUM
: PUNCT
lumensa@lub001.lamar.eduSubject NOUN
: PUNCT
Precocious PROPN
Puberty PROPN
Am AUX
looking VERB
for ADP
network NOUN
access NOUN
to ADP
recent ADJ
research NOUN
into ADP
treatments NOUN
forprecocious ADJ
puberty NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
know VERB
of ADP
specifics NOUN
, PUNCT
would AUX
appreciate VERB
email NOUN
. PUNCT
I PRON
have AUX
plenty NOUN
of ADP
general ADJ
textbook NOUN
type NOUN
references NOUN
. PUNCT
  SPACE
Have AUX
a DET
niece NOUN
whosedaughter NOUN
is AUX
afflicted VERB
. PUNCT
  SPACE
The DET
mother NOUN
is AUX
an DET
RN PROPN
and CCONJ
has AUX
done VERB
a DET
ratherexhaustive ADJ
search NOUN
of ADP
printed VERB
material NOUN
. PUNCT
Pls INTJ
Email NOUN
suggestions NOUN
to ADP
lumensa@lub001.lamar.eduThanx.-- PROPN
------------------------------------------------------------------------Dale ADJ
Parish PROPN
- PUNCT
Orange PROPN
, PUNCT
Texas PROPN
            SPACE
| PROPN
Is AUX
the DET
surface NOUN
of ADP
a DET
planet NOUN
theLamar NOUN
's PART
Token PROPN
Perpetual PROPN
Student PROPN
        SPACE
| ADP
proper ADJ
place NOUN
for ADP
a DET
developing VERB
( PUNCT
409)745-(vox)3899;(rec)1581;dat(2507 NUM
) PUNCT
| PROPN
industrial ADJ
civilization?------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59318From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr26.103242.1@vms.ocom.okstate.edu ADV
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>are ADJ
in ADP
a DET
different ADJ
class NOUN
. PUNCT
  SPACE
The DET
big ADJ
question NOUN
seems VERB
to PART
be AUX
is AUX
it PRON
reasonable ADJ
to PART
> X
use VERB
them PRON
in ADP
patients NOUN
with ADP
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
that PRON
* PUNCT
could AUX
* PUNCT
be AUX
due ADJ
> X
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics?I PROPN
guess NOUN
I PRON
'm AUX
still ADV
not PART
clear ADJ
on ADP
what PRON
the DET
term NOUN
" PUNCT
candida PROPN
bloom PROPN
" PUNCT
means NOUN
, PUNCT
but CCONJ
certainly ADV
it PRON
is AUX
well ADV
known ADJ
that SCONJ
thrush ADJ
( PUNCT
superficial ADJ
candidalinfections NOUN
on ADP
mucous ADJ
membranes NOUN
) PUNCT
can AUX
occur VERB
after ADP
antibiotic ADJ
use NOUN
. PUNCT
This DET
has AUX
nothing PRON
to PART
do AUX
with ADP
systemic ADJ
yeast NOUN
syndrome NOUN
, PUNCT
the DET
" PUNCT
quack"diagnosis NOUN
that PRON
has AUX
been AUX
being AUX
discussed.>found VERB
in ADP
the DET
sinus PROPN
mucus PROPN
membranes NOUN
than SCONJ
is AUX
candida PROPN
. PUNCT
  SPACE
Women NOUN
have AUX
been AUX
known VERB
> X
for ADP
a DET
very ADV
long ADJ
time NOUN
to PART
suffer VERB
from ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
and CCONJ
a DET
> X
women NOUN
is AUX
lucky ADJ
to PART
find VERB
a DET
physician NOUN
who PRON
is AUX
willing ADJ
to PART
treat VERB
the DET
cause NOUN
and CCONJ
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams NOUN
. PUNCT
Lucky ADJ
how ADV
? PUNCT
  SPACE
Since SCONJ
a DET
recent ADJ
article NOUN
( PUNCT
randomized VERB
controlled VERB
trial NOUN
) PUNCT
oforal ADJ
yogurt PROPN
on ADP
reducing VERB
vaginal ADJ
candidiasis NOUN
, PUNCT
I PRON
've AUX
mentioned VERB
to ADP
a DET
number NOUN
of ADP
patients NOUN
with ADP
frequent ADJ
vaginal ADJ
yeast NOUN
infections NOUN
that PRON
theycould AUX
try VERB
eating VERB
6 NUM
ounces NOUN
of ADP
yogurt PROPN
daily ADV
. PUNCT
  SPACE
It PRON
turns VERB
out ADP
most ADJ
wouldrather NOUN
just ADV
use VERB
anti ADJ
- ADJ
fungal ADJ
creams NOUN
when ADV
they PRON
get VERB
yeast ADJ
infections.>yogurt ADJ
dangerous ADJ
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
infections NOUN
should AUX
decline VERB
. PUNCT
Again ADV
, PUNCT
this DET
just ADV
is AUX
n't PART
what PRON
the DET
systemic ADJ
yeast NOUN
syndrome NOUN
is AUX
about ADV
, PUNCT
andhas VERB
nothing PRON
to PART
do AUX
with ADP
the DET
quack ADJ
therapies NOUN
that PRON
were AUX
being AUX
discussed VERB
. PUNCT
There PRON
is AUX
some DET
evidence NOUN
that PRON
attempts VERB
to PART
reinoculate VERB
the DET
GI PROPN
tract NOUN
withbacteria NOUN
after ADP
antibiotic ADJ
therapy NOUN
do AUX
n't PART
seem VERB
to PART
be AUX
very ADV
helpful ADJ
inreducing VERB
diarrhea NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
think VERB
anyone PRON
would AUX
view VERB
this DET
as SCONJ
aquack NOUN
therapy.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59319From NUM
: PUNCT
rhaller@ns.uoregon.edu PROPN
( PUNCT
Rich PROPN
Haller)Subject NUM
: PUNCT
Resound PROPN
Hearing PROPN
aids VERB
( PUNCT
and CCONJ
others)I NOUN
have AUX
a DET
fairly ADV
severe ADJ
high ADJ
frequency NOUN
hearing NOUN
loss NOUN
. PUNCT
A DET
recent ADJ
rough NOUN
testshowed VERB
a DET
gently ADV
sloping VERB
loss NOUN
to ADP
10 NUM
- PUNCT
20db NOUN
down ADV
at ADP
1000cps NUM
. PUNCT
Then ADV
it PRON
falls VERB
offa ADJ
cliff NOUN
to ADP
70 NUM
- PUNCT
80dbs NOUN
down ADV
from ADP
1500cps NUM
on ADP
. PUNCT
  SPACE
This DET
type NOUN
of ADP
loss NOUN
is AUX
difficultto ADJ
fit NOUN
. PUNCT
I PRON
am AUX
currently ADV
using VERB
some DET
old ADJ
siemens NOUN
behind ADP
the DET
ear PROPN
aids PROPN
whichkeep VERB
me PRON
roughly ADV
functional ADJ
, PUNCT
but CCONJ
leave VERB
a DET
lot NOUN
to PART
be AUX
desired VERB
. PUNCT
Recently ADV
I PRON
had AUX
an DET
opportunity NOUN
to PART
test VERB
the DET
Widex PROPN
Q8 PROPN
behind ADP
the DET
ear NOUN
aids VERB
forseveral ADJ
weeks NOUN
. PUNCT
These DET
have AUX
four NUM
independent ADJ
programs NOUN
which PRON
are AUX
intended VERB
tobe NOUN
customized VERB
for ADP
different ADJ
hearing NOUN
situations NOUN
and CCONJ
can AUX
be AUX
reprogramed VERB
. PUNCT
Ifound VERB
them PRON
to PART
be AUX
a DET
definite ADJ
improvement NOUN
over ADP
my PRON
current ADJ
aids NOUN
and CCONJ
was AUX
aboutto NOUN
go VERB
ahead ADV
with ADP
them PRON
until ADP
another DET
local ADJ
outfit NOUN
advertised VERB
a DET
free ADJ
trial NOUN
ofanother ADJ
programmable ADJ
system NOUN
called VERB
ReSound PROPN
. PUNCT
Unfortunately ADV
I PRON
was AUX
only ADV
able ADJ
to PART
try VERB
the DET
ReSound PROPN
aids NOUN
in ADP
their PRON
office NOUN
forabout ADV
30 NUM
minutes NOUN
and CCONJ
I PRON
could AUX
n't PART
compare VERB
them PRON
' PUNCT
head NOUN
to PART
head VERB
' PUNCT
with ADP
the DET
Widex PROPN
. PUNCT
Nevertheless ADV
, PUNCT
it PRON
did AUX
appear VERB
to ADP
me PRON
that SCONJ
they PRON
were AUX
superior ADJ
and CCONJ
I PRON
wasimpressed VERB
by ADP
what PRON
I PRON
was AUX
able ADJ
to PART
read VERB
about ADP
the DET
theory NOUN
behind ADP
them PRON
which PRON
Iwill PROPN
give VERB
in ADP
a DET
separate ADJ
posting NOUN
. PUNCT
They PRON
also ADV
carry VERB
the DET
Widex PROPN
aids NOUN
and CCONJ
had AUX
onepatient VERB
( PUNCT
presumably ADV
wealthy ADJ
) PUNCT
who PRON
decided VERB
to PART
go VERB
ahead ADV
and CCONJ
get AUX
the DET
ReSoundeven PROPN
though SCONJ
he PRON
had AUX
purchased VERB
the DET
Widex PROPN
only ADV
6 NUM
months NOUN
ago ADV
. PUNCT
The DET
problem NOUN
is AUX
that SCONJ
the DET
ReSound PROPN
aids NOUN
are AUX
about ADV
twice ADV
as ADV
expensive ADJ
as SCONJ
theWidex ADJ
and CCONJ
other ADJ
programmable ADJ
aids NOUN
. PUNCT
I PRON
could AUX
take VERB
a DET
trip NOUN
to ADP
Europe PROPN
on ADP
thedifference NOUN
! PUNCT
  SPACE
Being AUX
a DET
lover NOUN
of ADP
bargains NOUN
and CCONJ
hating VERB
to PART
spend VERB
money NOUN
, PUNCT
I PRON
amhaving VERB
a DET
hard ADJ
time NOUN
persuading VERB
myself PRON
to PART
go VERB
with ADP
the DET
ReSounds PROPN
. PUNCT
I PRON
wouldappreciate VERB
any DET
opinions NOUN
on ADP
this DET
and CCONJ
other ADJ
hearing NOUN
aids NOUN
and CCONJ
projectionsabout NOUN
when ADV
and CCONJ
if SCONJ
I PRON
might AUX
see VERB
improvements NOUN
in ADP
technology NOUN
that PRON
are AUX
n't PART
quiteso VERB
expensive.-Rich NUM
Haller PROPN
< X
rhaller@ns.uoregon.edu PROPN
> X
   SPACE
University PROPN
of ADP
Oregon PROPN
, PUNCT
Eugene PROPN
, PUNCT
OR CCONJ
, PUNCT
USANewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59320From NUM
: PUNCT
andersom@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Marc PROPN
Anderson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Discussions NOUN
on ADP
alt.psychoactivesIn PROPN
article NOUN
< X
0fpzY=S00WBOM2Vn1u@andrew.cmu.edu ADJ
> X
" PUNCT
Charles PROPN
D. PROPN
Nichols PROPN
" PUNCT
< X
cn0p+@andrew.cmu.edu INTJ
> X
writes:>>From PROPN
: PUNCT
herzog@sierra.lbl.gov PROPN
( PUNCT
Hanan PROPN
Herzog)>>Subject VERB
: PUNCT
Discussions NOUN
on ADP
alt.psychoactives>>Date NOUN
: PUNCT
20 NUM
Apr PROPN
1993 NUM
19:16:25 NUM
GMT PROPN
> X
> X
> X
> X
Could AUX
the DET
people NOUN
discussing VERB
recreational ADJ
drugs NOUN
such ADJ
as SCONJ
mj PROPN
, PUNCT
lsd NOUN
, PUNCT
mdma NOUN
, PUNCT
etc X
. PUNCT
,>>take PUNCT
their PRON
discussions NOUN
to ADP
alt.drugs PROPN
? PUNCT
Their PRON
discussions NOUN
will AUX
receive VERB
greatest>>contribution NOUN
and CCONJ
readership NOUN
there ADV
. PUNCT
The DET
people NOUN
interested ADJ
in ADP
strictly>>"smart PROPN
drugs NOUN
" PUNCT
( PUNCT
i.e. X
Nootropics PROPN
) PUNCT
should AUX
post VERB
to ADP
this DET
group NOUN
. PUNCT
The DET
two NUM
groups>>(alt.drugs PROPN
& CCONJ
alt.psychoactives PROPN
) PUNCT
have AUX
been AUX
used VERB
interchangably ADV
lately.>>I NOUN
do AUX
think VERB
that SCONJ
alt.psychoactives NOUN
is AUX
a DET
deceiving VERB
name NOUN
. PUNCT
alt.psychoactives>>is X
supposedly ADV
the DET
" PUNCT
smart ADJ
drug NOUN
" PUNCT
newsgroup NOUN
according VERB
to ADP
newsgroup PROPN
lists NOUN
on>>the DET
Usenet PROPN
. PUNCT
Should AUX
we PRON
establish VERB
an DET
alt.nootropics NOUN
or CCONJ
alt.sdn ADJ
( PUNCT
smart ADJ
drugs NOUN
& CCONJ
> X
> X
nutrients PROPN
) PUNCT
? PUNCT
I PRON
have AUX
noticed VERB
some DET
posts NOUN
in ADP
sci.med.nutrition NOUN
regarding>>"smart NOUN
nutrients NOUN
. PUNCT
" PUNCT
We PRON
may AUX
lower VERB
that SCONJ
groups NOUN
burden VERB
as SCONJ
well.>>I PROPN
beg VERB
to PART
disagree VERB
with ADP
you PRON
on ADP
this DET
subject NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
recall VERB
correctly,>alt.drugs PROPN
was AUX
being AUX
flodded VERB
by ADP
posts NOUN
like SCONJ
" PUNCT
how ADV
do AUX
I PRON
grow VERB
MJ PROPN
" PUNCT
" PUNCT
How ADV
do AUX
I PRON
> ADV
use VERB
a DET
bong NOUN
? PUNCT
" PUNCT
" PUNCT
wow INTJ
, PUNCT
man INTJ
, PUNCT
I PRON
just ADV
had AUX
the DET
coolest ADJ
trip NOUN
" PUNCT
etc X
... PUNCT
  SPACE
There PRON
were AUX
> X
quite DET
a DET
few ADJ
people NOUN
out SCONJ
there ADV
who PRON
were AUX
versed VERB
in ADP
pharmacology NOUN
and CCONJ
biology NOUN
> X
who PRON
wanted VERB
to PART
discuss VERB
centrally ADV
active ADJ
substabces NOUN
at ADP
a DET
higher ADJ
level NOUN
> X
without ADP
all DET
the DET
other ADJ
crap NOUN
filling VERB
the DET
bandwidth NOUN
. PUNCT
    SPACE
I PRON
would AUX
suggest VERB
> X
that SCONJ
you PRON
proceed VERB
to PART
create VERB
a DET
newsgroup NOUN
dedicated VERB
to ADP
Nootropics PROPN
if SCONJ
you PRON
> PUNCT
must AUX
have AUX
one NUM
dedicated VERB
to ADP
them PRON
, PUNCT
and CCONJ
leave VERB
alt.psychoactives PROPN
to ADP
the DET
> X
discussion NOUN
of ADP
psychoactives NOUN
( PUNCT
including VERB
nootropics NOUN
, PUNCT
which PRON
are AUX
but CCONJ
a DET
small ADJ
> X
portion NOUN
of ADP
the DET
realm NOUN
of ADP
centrally ADV
active ADJ
substances).I NUM
was AUX
wondering VERB
if SCONJ
a DET
group NOUN
called VERB
' PUNCT
sci.pharmacology NOUN
' PUNCT
would AUX
be AUX
relevent ADJ
. PUNCT
This DET
would AUX
be AUX
used VERB
for ADP
a DET
more ADV
formal ADJ
discussion NOUN
about ADP
pharmacologicalissues NOUN
( PUNCT
pharmacodynamics NOUN
, PUNCT
neuropharmacology NOUN
, PUNCT
etc.)Just PROPN
an DET
informal ADJ
proposal NOUN
( PUNCT
I PRON
do AUX
n't PART
know VERB
anything PRON
about ADP
the DET
net.politicsfor NOUN
adding VERB
a DET
newsgroup NOUN
, PUNCT
etc.)[more NOUN
alt.psychoactives PROPN
stuff NOUN
deleted]-marcandersom@spot.colorado.eduNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59321From NUM
: PUNCT
rhaller@ns.uoregon.edu PROPN
( PUNCT
Rich PROPN
Haller)Subject NUM
: PUNCT
ReSound PROPN
hearing VERB
aid NOUN
theory NOUN
as SCONJ
I PRON
understand VERB
itThe NOUN
following VERB
is AUX
based VERB
on ADP
copies NOUN
I PRON
was AUX
given VERB
of ADP
some DET
articles NOUN
published VERB
inHearing PROPN
Instruments PROPN
. PUNCT
I PRON
would AUX
appreciate VERB
any DET
comments NOUN
about ADP
this DET
and CCONJ
other'new NOUN
' PUNCT
technology NOUN
for ADP
hearing VERB
aids NOUN
. PUNCT
The DET
ReSound PROPN
system NOUN
was AUX
developed VERB
on ADP
the DET
basis NOUN
of ADP
some DET
research NOUN
at ADP
AT&T PROPN
andappears NOUN
to PART
take VERB
a DET
different ADJ
approach NOUN
from ADP
other ADJ
aids NOUN
. PUNCT
It PRON
appears VERB
to ADP
me PRON
thata VERB
new ADJ
' PUNCT
programmable ADJ
' PUNCT
aid NOUN
like SCONJ
the DET
Widex PROPN
just ADV
uses VERB
a DET
more ADV
flexible ADJ
( PUNCT
andprogrammable ADJ
) PUNCT
version NOUN
of ADP
the DET
classical ADJ
approach NOUN
of ADP
amplifying VERB
some DET
parts NOUN
ofthe VERB
spectrum NOUN
more ADJ
than SCONJ
others NOUN
and CCONJ
adding VERB
some DET
compression NOUN
to PART
try VERB
and CCONJ
helpout VERB
in ADP
' PUNCT
noisy ADJ
' PUNCT
situations NOUN
. PUNCT
The DET
major ADJ
difference NOUN
in ADP
the DET
ReSound PROPN
approach NOUN
is AUX
that SCONJ
it PRON
divides VERB
thespectrum NOUN
into ADP
low ADJ
and CCONJ
high ADJ
frequencies NOUN
( PUNCT
splitting NOUN
point NOUN
is AUX
programmable),apparently ADV
based VERB
on ADP
the DET
fact NOUN
that SCONJ
lots NOUN
of ADP
vowel NOUN
information NOUN
can AUX
be AUX
found VERB
inthe DET
low ADJ
frequencies NOUN
, PUNCT
while SCONJ
the DET
important ADJ
consonant NOUN
information(unfortunately ADV
for ADP
me PRON
) PUNCT
is AUX
in ADP
the DET
high ADJ
frequencies NOUN
. PUNCT
The DET
two NUM
bands NOUN
then ADV
aretreated VERB
with ADP
different ADJ
compression NOUN
schemes NOUN
which PRON
are AUX
programable ADJ
. PUNCT
They PRON
havealso ADV
developed VERB
a DET
new ADJ
fitting ADJ
algorythm NOUN
that PRON
builds VERB
on ADP
what PRON
they PRON
call'abnormal VERB
growth NOUN
of ADP
loudness' PROPN
. PUNCT
This DET
latter NOUN
is AUX
interesting ADJ
and CCONJ
fits VERB
my PRON
own ADJ
personal ADJ
experience NOUN
, PUNCT
though SCONJ
Ithink PROPN
the DET
phrase NOUN
is AUX
missleading VERB
. PUNCT
What PRON
appears VERB
to PART
be AUX
the DET
case NOUN
is AUX
that SCONJ
as SCONJ
youexceed NOUN
the DET
minimum NOUN
threshold NOUN
for ADP
a DET
person NOUN
with ADP
hearing VERB
loss NOUN
, PUNCT
the DET
deficitbecomes NOUN
progresslively ADV
less ADV
compared VERB
to ADP
normals NOUN
and CCONJ
by ADP
the DET
time NOUN
you PRON
reachthe VERB
' PUNCT
too ADV
loud ADJ
' PUNCT
point NOUN
the DET
sensitivity NOUN
curves NOUN
appear VERB
to PART
converge VERB
. PUNCT
  SPACE
This DET
meansthat NOUN
if SCONJ
you PRON
just ADV
boost VERB
all DET
sound NOUN
levels NOUN
, PUNCT
you PRON
are AUX
overloading VERB
at ADP
the DET
highend NOUN
for ADP
people NOUN
with ADP
hearing NOUN
losses NOUN
. PUNCT
Hence ADV
what PRON
you PRON
want VERB
is AUX
progressivelyless ADJ
amplification NOUN
as SCONJ
the DET
signal NOUN
get VERB
closer ADJ
to ADP
the DET
maximum ADJ
tolerable ADJ
point NOUN
. PUNCT
You PRON
want VERB
to PART
boost VERB
low ADJ
volume NOUN
sounds VERB
more ADJ
than SCONJ
high ADJ
and CCONJ
do AUX
so ADV
potentiallydifferently ADV
for ADP
the DET
low ADJ
and CCONJ
high ADJ
frequency NOUN
parts NOUN
of ADP
the DET
spectrum NOUN
( PUNCT
speciallyfor ADP
someone PRON
like SCONJ
me PRON
who PRON
is AUX
relatively ADV
normal ADJ
up ADP
to PART
1000 NUM
cps NOUN
and CCONJ
then ADV
fallsoff VERB
a DET
cliff).Aids NOUN
with ADP
simple ADJ
compressors NOUN
do AUX
n't PART
descriminate VERB
between ADP
energy NOUN
in ADP
the DET
lowand ADJ
high ADJ
frequencies NOUN
and CCONJ
can AUX
therefor VERB
' PUNCT
compress ADJ
' PUNCT
useful ADJ
high ADJ
frequencyinformation NOUN
because SCONJ
of ADP
high ADJ
volume NOUN
of ADP
low ADJ
frequency NOUN
components NOUN
. PUNCT
Particularly ADV
impressive ADJ
was AUX
the DET
ReSound PROPN
performance NOUN
with ADP
whispered VERB
speechand NOUN
in ADP
simulated VERB
restaurant NOUN
noise NOUN
situations NOUN
. PUNCT
-Rich PUNCT
Haller PROPN
< X
rhaller@ns.uoregon.edu PROPN
> X
   SPACE
University PROPN
of ADP
Oregon PROPN
, PUNCT
Eugene PROPN
, PUNCT
OR CCONJ
, PUNCT
USANewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59322From NUM
: PUNCT
nodrog@hardy.u.washington.edu PROPN
( PUNCT
Gordon PROPN
Rubenfeld)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fictionbanschbach@vms.ocom.okstate.edu PROPN
writes:>to PROPN
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
  SPACE
Gorden PROPN
> X
Rubenfeld PROPN
, PUNCT
through ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
has AUX
assured VERB
me PRON
that SCONJ
most ADJ
physicians NOUN
recognize VERB
> X
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
occuring VERB
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
> X
and CCONJ
they PRON
therefore ADV
reinnoculate VERB
their PRON
patients NOUN
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
to PART
> PROPN
restore PROPN
competetion NOUN
for ADP
candida PROPN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believe VERB
that SCONJ
this DET
is AUX
> X
yet ADV
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
. PUNCT
    SPACE
Nor CCONJ
is AUX
it PRON
mine ADJ
. PUNCT
  SPACE
What PRON
I PRON
tried VERB
to PART
explain VERB
to ADP
Marty PROPN
was AUX
that SCONJ
it PRON
is AUX
clearlyunderstood NOUN
that SCONJ
antibiotic ADJ
exposure NOUN
is AUX
a DET
risk NOUN
factor NOUN
for ADP
fungal PROPN
infections- NOUN
which PRON
is AUX
not PART
the DET
same ADJ
as SCONJ
saying VERB
bacteria NOUN
prevent VERB
fungal PROPN
infections NOUN
. PUNCT
Marty PROPN
made VERB
this DET
sound NOUN
like SCONJ
a DET
secret ADJ
  SPACE
known VERB
only ADV
to ADP
veternarians NOUN
andbiochemists NOUN
. PUNCT
  SPACE
Anyone PRON
who PRON
has AUX
treated VERB
a DET
urinary ADJ
tract NOUN
infection NOUN
knownsthis NOUN
. PUNCT
At ADP
some DET
centers NOUN
pre VERB
- ADJ
op ADJ
liver NOUN
transplant NOUN
patients NOUN
receive VERB
boweldecontamination NOUN
directed VERB
at ADP
retaining VERB
" PUNCT
good ADJ
" PUNCT
anaerobic ADJ
flora PROPN
in ADP
an DET
attemptto PROPN
prevent PROPN
fungal PROPN
colonization PROPN
in ADP
this DET
soon ADV
- PUNCT
to PART
- PUNCT
be AUX
high ADJ
risk NOUN
group NOUN
. PUNCT
  SPACE
I PRON
alsouse VERB
lactobacillus NOUN
to PART
treat VERB
enteral ADJ
nutrition NOUN
associated PROPN
diarrhea PROPN
( PUNCT
that SCONJ
maybe ADV
in ADP
part NOUN
due ADJ
to ADP
alterations NOUN
in ADP
gut PROPN
flora PROPN
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
it PRON
is AUX
NOT ADV
part NOUN
ofmy PROPN
routine ADJ
practice NOUN
to PART
" PUNCT
reinnoculate VERB
" PUNCT
patients NOUN
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
afterantibiotics NOUN
. PUNCT
  SPACE
I PRON
have AUX
seen VERB
no DET
data NOUN
on ADP
this DET
practice NOUN
preventing VERB
or CCONJ
treatingfungal ADJ
infections NOUN
in ADP
at ADP
risk NOUN
patients NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
it PRON
is AUX
a DET
" PUNCT
logicalextension NOUN
" PUNCT
from ADP
the DET
available ADJ
observations NOUN
I PRON
'll AUX
leave VERB
to ADP
those DET
of ADP
you PRON
whobase VERB
strong ADJ
opinions NOUN
and CCONJ
argue VERB
over ADP
such ADJ
speculations NOUN
in ADP
the DET
absence NOUN
ofclinical ADJ
trials NOUN
. PUNCT
   SPACE
One NUM
place NOUN
such ADJ
therapy NOUN
has AUX
been AUX
described VERB
is AUX
in ADP
treating VERB
particularlyrecalcitrant ADJ
cases NOUN
of ADP
C. PROPN
difficile ADJ
colitis NOUN
( PUNCT
NOT ADV
a DET
fungal ADJ
infection NOUN
) PUNCT
. PUNCT
Thereare PROPN
case NOUN
reports VERB
of ADP
using VERB
stool NOUN
( PUNCT
ie X
someone PRON
elses NOUN
) PUNCT
enemas NOUN
to PART
repopulatethe VERB
patients NOUN
flora PROPN
. PUNCT
  SPACE
Do AUX
n't PART
try VERB
this DET
at ADP
home NOUN
. PUNCT
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
  SPACE
Since SCONJ
candida PROPN
> X
colonizes VERB
primarily ADV
in ADP
the DET
ano NOUN
- PUNCT
rectal ADJ
area NOUN
, PUNCT
GI PROPN
symptoms NOUN
should AUX
be AUX
more ADV
common ADJ
> X
than SCONJ
vaginal ADJ
problems NOUN
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
. PUNCT
  SPACE
Except SCONJ
that SCONJ
it PRON
is AUX
n't PART
. PUNCT
At ADP
least ADJ
symptomatically ADV
apparent ADJ
disease.>Medicine PROPN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There ADV
> X
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
> X
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
> X
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
> X
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
> X
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to ADP
> X
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
> X
Medicine PROPN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
> X
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
> X
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
  SPACE
Seems VERB
like SCONJ
this DET
is AUX
an DET
excellent ADJ
argument NOUN
for ADP
ignoring VERB
anecdotalconventional ADJ
wisdom NOUN
( PUNCT
a DET
euphemism NOUN
for ADP
no DET
data NOUN
) PUNCT
and CCONJ
doing VERB
a DET
good ADJ
clinicaltrial NOUN
, PUNCT
like SCONJ
: PUNCT
AU PROPN
   SPACE
Dismukes PROPN
- PUNCT
W PROPN
- PUNCT
E. PROPN
  SPACE
Wade PROPN
- PUNCT
J PROPN
- PUNCT
S. PROPN
  SPACE
Lee PROPN
- PUNCT
J PROPN
- PUNCT
Y. PROPN
  SPACE
Dockery PROPN
- PUNCT
B PROPN
- PUNCT
K. PROPN
  SPACE
Hain PROPN
- PUNCT
J PROPN
- PUNCT
D.TI PROPN
   SPACE
A DET
randomized ADJ
, PUNCT
double ADJ
- PUNCT
blind ADJ
trial NOUN
of ADP
nystatin PROPN
therapy NOUN
for ADP
the DET
     SPACE
candidiasis NOUN
hypersensitivity NOUN
syndrome NOUN
[ PUNCT
see VERB
comments]SO PROPN
   SPACE
N PROPN
- PUNCT
Engl PROPN
- PUNCT
J PROPN
- PUNCT
Med PROPN
. PUNCT
  SPACE
1990 NUM
Dec PROPN
20 NUM
. PUNCT
  SPACE
323(25 NUM
) PUNCT
. PUNCT
  SPACE
P NOUN
1717 NUM
- SYM
23 NUM
. PUNCT
     SPACE
psychological ADJ
tests NOUN
. PUNCT
RESULTS PROPN
. PUNCT
The DET
three NUM
active ADJ
- PUNCT
treatment NOUN
regimens NOUN
     SPACE
and CCONJ
the DET
all ADV
- PUNCT
placebo NOUN
regimen NOUN
     SPACE
significantly ADV
reduced VERB
both CCONJ
vaginal ADJ
and CCONJ
systemic ADJ
symptoms NOUN
( PUNCT
P NOUN
less ADJ
than SCONJ
     SPACE
0.001 NUM
) PUNCT
, PUNCT
but CCONJ
nystatin PROPN
did AUX
not PART
reduce VERB
the DET
systemic ADJ
symptoms NOUN
     SPACE
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
[ PUNCT
. PUNCT
. PUNCT
. PUNCT
] PUNCT
     SPACE
CONCLUSIONS PROPN
. PUNCT
In ADP
women NOUN
with ADP
presumed ADJ
candidiasis NOUN
     SPACE
hypersensitivity NOUN
syndrome NOUN
, PUNCT
nystatin PROPN
does AUX
not PART
reduce VERB
systemic ADJ
or CCONJ
     SPACE
psychological ADJ
symptoms NOUN
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
Consequently ADV
, PUNCT
     SPACE
the DET
empirical ADJ
recommendation NOUN
of ADP
long ADJ
- PUNCT
term NOUN
nystatin PROPN
therapy NOUN
for ADP
such ADJ
     SPACE
women NOUN
appears VERB
to PART
be AUX
unwarranted ADJ
. PUNCT
  SPACE
Does AUX
this DET
trial NOUN
address NOUN
every DET
issue NOUN
raised VERB
here ADV
, PUNCT
no INTJ
. NOUN
  SPACE
Jon PROPN
Noring PROPN
was AUX
notsurprised VERB
at ADP
this DET
negative ADJ
trial NOUN
since SCONJ
they PRON
did AUX
n't PART
use VERB
* PUNCT
Sporanox PROPN
* PUNCT
( PUNCT
despiteCrook PROPN
's PART
recommendation NOUN
for ADP
Nystatin PROPN
) PUNCT
. PUNCT
  SPACE
Maybe ADV
they PRON
did AUX
n't PART
avoid VERB
thosecarbohydrates NOUN
. PUNCT
. PUNCT
. PUNCT
> X
The DET
conventional ADJ
wisdom NOUN
in ADP
animal NOUN
husbandry NOUN
has AUX
been AUX
that SCONJ
animals NOUN
need VERB
to PART
> X
be AUX
reinnoculated VERB
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
after ADP
coming VERB
off ADP
antibiotic ADJ
therapy.>If PROPN
it PRON
makes VERB
sense NOUN
for ADP
livestock NOUN
, PUNCT
why ADV
does AUX
n't PART
it PRON
make VERB
sense NOUN
for ADP
humans NOUN
> X
David PROPN
? PUNCT
  SPACE
We PRON
are AUX
not PART
talking VERB
about ADP
a DET
dangerous ADJ
treatment(unless NOUN
you PRON
consider VERB
> X
yogurt PROPN
dangerous PROPN
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
infections NOUN
should AUX
decline VERB
. PUNCT
  SPACE
Marty PROPN
, PUNCT
you PRON
've AUX
also ADV
changed VERB
the DET
terrain NOUN
of ADP
the DET
discussion NOUN
from ADP
empiricitraconazole NOUN
for ADP
undocumented ADJ
chronic ADJ
fungal PROPN
sinusitis NOUN
with ADP
systemichypersensitivity NOUN
symptoms NOUN
( PUNCT
Noring VERB
syndrome NOUN
) PUNCT
to ADP
the DET
yoghurt PROPN
and CCONJ
vitamintherapy NOUN
of ADP
undocumented ADJ
candida PROPN
enteritis NOUN
( PUNCT
Elaine PROPN
Palmer PROPN
syndrome NOUN
) PUNCT
withsystemic ADJ
symptoms NOUN
. PUNCT
  SPACE
There PRON
is AUX
significant ADJ
difference NOUN
between ADP
the DET
cost NOUN
andrisk NOUN
of ADP
these DET
two NUM
empiric ADJ
therapeutic ADJ
trials NOUN
. PUNCT
  SPACE
Are AUX
we PRON
talking VERB
about ADP
" PUNCT
real"candida PROPN
infections NOUN
, PUNCT
the DET
whole ADJ
" PUNCT
yeast NOUN
connection NOUN
" PUNCT
hypothesis NOUN
, PUNCT
the DET
efficacyof PROPN
routine PROPN
bacterial ADJ
repopulation NOUN
in ADP
humans NOUN
, PUNCT
or CCONJ
the DET
ability NOUN
of ADP
anecdotallyeffective ADJ
therapies NOUN
( PUNCT
challenged VERB
by ADP
a DET
negative ADJ
randomized VERB
trial NOUN
) PUNCT
to PART
confirman VERB
etiologic ADJ
hypothesis NOUN
( PUNCT
post PROPN
hoc X
ergo PROPN
propter PROPN
hoc PROPN
) PUNCT
. PUNCT
  SPACE
We PRON
ca AUX
n't PART
seem VERB
tofocus NOUN
in ADP
on ADP
a DET
disease NOUN
, PUNCT
a DET
therapy NOUN
, PUNCT
or CCONJ
a DET
hypothesis NOUN
under ADP
discussion NOUN
. PUNCT
                                      SPACE
I PRON
'm AUX
lost!Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59323From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject PROPN
: PUNCT
PMS PROPN
- PUNCT
Can AUX
It PRON
Be AUX
Prevented VERB
By ADP
A PROPN
Diet PROPN
Change?This PART
question NOUN
came VERB
up ADP
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
and CCONJ
I PRON
'm AUX
posting VERB
my PRON
answer NOUN
here ADV
. PUNCT
  SPACE
Only ADV
22 NUM
medical ADJ
schools NOUN
in ADP
the DET
U.S. PROPN
teach VERB
courses NOUN
on ADP
human ADJ
nutrition NOUN
. PUNCT
  SPACE
We PRON
have AUX
already ADV
seen VERB
what PRON
a DET
lack NOUN
of ADP
nutrition NOUN
education NOUN
can AUX
do AUX
when ADV
candida PROPN
and CCONJ
kidney NOUN
stones NOUN
present VERB
themselves PRON
to ADP
the DET
medical ADJ
community NOUN
. PUNCT
I PRON
think VERB
that SCONJ
the DET
best ADJ
example NOUN
of ADP
where ADV
U.S. PROPN
medicine NOUN
is AUX
really ADV
missing VERB
the DET
mark NOUN
when ADV
it PRON
comes VERB
to ADP
a DET
knowledge NOUN
of ADP
nutrition NOUN
is AUX
PMS PROPN
. PUNCT
  SPACE
So ADV
many ADJ
women(and PUNCT
their PRON
husbands NOUN
) PUNCT
suffer VERB
from ADP
this DET
disorder NOUN
that SCONJ
it PRON
is AUX
really ADV
criminal ADJ
that SCONJ
most ADJ
physicians NOUN
in ADP
the DET
U.S. PROPN
are AUX
not PART
taught VERB
that SCONJ
PMS PROPN
is AUX
primarily ADV
caused VERB
by ADP
diet NOUN
and CCONJ
diet NOUN
changes NOUN
can AUX
prevent VERB
it PRON
from ADP
ever ADV
happpening VERB
. PUNCT
  SPACE
Before ADP
shooting VERB
your PRON
flames NOUN
, PUNCT
read VERB
the DET
entire ADJ
article NOUN
and CCONJ
then ADV
decide VERB
if SCONJ
flaming NOUN
is AUX
justified ADJ
. PUNCT
From ADP
A DET
Poster NOUN
In ADP
Sci PROPN
. PUNCT
Medi PROPN
. PUNCT
Nutrition NOUN
: PUNCT
> X
	 SPACE
In ADP
a DET
psychological ADJ
anthropology NOUN
course NOUN
I PRON
am AUX
taking VERB
, PUNCT
we PRON
got VERB
> X
sidetracked VERB
onto ADP
a DET
short ADJ
conversation NOUN
about ADP
PMS PROPN
. PUNCT
  SPACE
Some DET
rumors NOUN
shared VERB
> X
by ADP
several ADJ
of ADP
the DET
students NOUN
included VERB
ideas NOUN
that SCONJ
vitamin NOUN
levels NOUN
, PUNCT
sugar NOUN
> X
intake NOUN
, PUNCT
and CCONJ
caffeine NOUN
intake NOUN
might AUX
affect VERB
PMS PROPN
symptoms NOUN
. PUNCT
> X
	 SPACE
Is AUX
there PRON
any DET
data NOUN
on ADP
this DET
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
so ADV
much ADJ
hooey NOUN
? PUNCT
> X
> X
Many ADJ
thanks NOUN
, PUNCT
> X
> X
Michael PROPN
, PUNCT
I PRON
've AUX
wanted VERB
to PART
reply VERB
to ADP
this DET
post NOUN
ever ADV
since SCONJ
I PRON
saw VERB
it PRON
but CCONJ
I PRON
got VERB
side NOUN
- PUNCT
tracked VERB
with ADP
candida PROPN
. PUNCT
  SPACE
PMS PROPN
is AUX
a DET
lot NOUN
like SCONJ
Candida PROPN
blooms NOUN
, PUNCT
most ADJ
physicians NOUN
do AUX
n't PART
recognize VERB
it PRON
as SCONJ
a DET
specific ADJ
" PUNCT
disease NOUN
" PUNCT
entity NOUN
. PUNCT
  SPACE
Here ADV
is AUX
everything PRON
that PRON
you PRON
would AUX
ever ADV
want VERB
to PART
know VERB
about ADP
PMS.Premenstrual ADJ
syndrome NOUN
has AUX
been AUX
divided VERB
into ADP
four NUM
specific ADJ
subgroups NOUN
: PUNCT
	 SPACE
PMT PROPN
- PUNCT
A(Anxiety PROPN
) PUNCT
		 SPACE
PMT PROPN
- PUNCT
D(depression PROPN
) PUNCT
	 SPACE
anxiety NOUN
			 SPACE
depression NOUN
	 SPACE
irritability NOUN
		 SPACE
forgetfulness PROPN
	 SPACE
insomnia PROPN
		 SPACE
confusion PROPN
	 SPACE
depression NOUN
		 SPACE
lethargy NOUN
	 SPACE
PMT PROPN
- PUNCT
C(Craving PROPN
) PUNCT
		 SPACE
PMT PROPN
- PUNCT
H(Hyperhydration PROPN
) PUNCT
	 SPACE
craving VERB
for ADP
sweets NOUN
	 SPACE
weight NOUN
gain NOUN
	 SPACE
increased VERB
appetite PROPN
	 SPACE
breast NOUN
congestion NOUN
and CCONJ
tenderness NOUN
	 SPACE
sugar NOUN
ingestion NOUN
causes NOUN
: PUNCT
abdominal ADJ
bloating NOUN
and CCONJ
tenderness NOUN
	  SPACE
1 NUM
. PUNCT
headache PROPN
		 SPACE
edema PROPN
of ADP
the DET
face NOUN
and CCONJ
extremities NOUN
	  SPACE
2 NUM
. PUNCT
palpitations NOUN
	  SPACE
3 NUM
. PUNCT
fatigue NOUN
or CCONJ
fainting VERB
PMT PROPN
- PUNCT
A PROPN
is AUX
characterized VERB
by ADP
elevated ADJ
blood NOUN
estrogen PROPN
levels NOUN
and CCONJ
low ADJ
progesterone NOUN
levels NOUN
during ADP
the DET
luteal NOUN
phase NOUN
of ADP
a DET
women NOUN
's PART
cycle NOUN
. PUNCT
PMT PROPN
- PUNCT
C PROPN
is AUX
caused VERB
by ADP
the DET
ingestion NOUN
of ADP
large ADJ
amounts NOUN
of ADP
refined ADJ
simple ADJ
carbohydrates NOUN
. PUNCT
  SPACE
During ADP
the DET
luteal ADJ
phase NOUN
of ADP
a DET
women NOUN
's PART
cycle NOUN
, PUNCT
there PRON
is AUX
increased VERB
glucose NOUN
tolerance NOUN
with ADP
a DET
flat ADJ
glucose NOUN
curve NOUN
after ADP
oral ADJ
glucose PROPN
challenge NOUN
. PUNCT
  SPACE
The DET
metabolic ADJ
findings NOUN
believed VERB
to PART
be AUX
responsible ADJ
for ADP
PMT PROPN
- PUNCT
C PROPN
are AUX
a DET
low ADJ
magnesium NOUN
and CCONJ
a DET
low ADJ
prostaglandin NOUN
E1 PROPN
. PUNCT
  SPACE
This DET
condition NOUN
of ADP
hypoglycemia NOUN
is AUX
not PART
unique ADJ
to ADP
PMS PROPN
but CCONJ
there PRON
are AUX
a DET
number NOUN
of ADP
different ADJ
causes NOUN
of ADP
hypoglycemia NOUN
, PUNCT
magnesium NOUN
and CCONJ
PGE1 PROPN
seem VERB
to PART
be AUX
specific ADJ
to ADP
PMS PROPN
hypoglycemia NOUN
. PUNCT
	 SPACE
A. PROPN
Am PROPN
. PUNCT
J. PROPN
Psychiatry PROPN
147(4):477 NUM
- PUNCT
80(1990).Unrefined PROPN
complex ADJ
carbohydrate NOUN
should AUX
be AUX
substituted VERB
for ADP
sugar NOUN
, PUNCT
magnesium NOUN
supplementation NOUN
and CCONJ
alpha NOUN
linoleic NOUN
acid NOUN
supplementation(increased VERB
to ADP
5 NUM
- SYM
6 NUM
% NOUN
of ADP
the DET
total ADJ
calories NOUN
) PUNCT
using VERB
safflower NOUN
oil NOUN
or CCONJ
evening NOUN
primrose NOUN
oil NOUN
as SCONJ
sources NOUN
of ADP
alpha NOUN
linoleic NOUN
acid NOUN
. PUNCT
PMT PROPN
- PUNCT
D PROPN
is AUX
characterized VERB
by ADP
elevated ADJ
progesterone NOUN
levels NOUN
during ADP
the DET
midluteal ADJ
phase NOUN
of ADP
a DET
women NOUN
's PART
cycle NOUN
. PUNCT
  SPACE
Another DET
cause NOUN
of ADP
PMT PROPN
- PUNCT
D PROPN
has AUX
been AUX
found VERB
to PART
be AUX
lead ADJ
toxicity(in NUM
women NOUN
without ADP
elevated ADJ
progesterone NOUN
levels NOUN
during ADP
the DET
midluteal ADJ
phase NOUN
) PUNCT
. PUNCT
" PUNCT
Effect NOUN
of ADP
metal NOUN
ions NOUN
on ADP
the DET
binding NOUN
of ADP
estridol NOUN
to ADP
human ADJ
endometrial ADJ
cystol NOUN
" PUNCT
Fertil PROPN
. PUNCT
Steril PROPN
. PUNCT
28:312 NUM
- PUNCT
18(1972).PMT NUM
- PUNCT
H NOUN
is AUX
associated VERB
with ADP
water NOUN
and CCONJ
salt NOUN
retention NOUN
along ADP
with ADP
an DET
elevated ADJ
serum ADJ
aldosterone ADJ
level NOUN
. PUNCT
  SPACE
Salt NOUN
restriction NOUN
, PUNCT
B6 PROPN
, PUNCT
magnesium NOUN
and CCONJ
vitamin NOUN
E NOUN
for ADP
breast NOUN
tenderness NOUN
have AUX
all DET
been AUX
effective ADJ
in ADP
treating VERB
PMT PROPN
- PUNCT
HThis PROPN
general ADJ
discussion NOUN
of ADP
the DET
PMS PROPN
syndromes NOUN
came VERB
form NOUN
: PUNCT
	 SPACE
A. PROPN
" PUNCT
Management PROPN
of ADP
the DET
premenstrual ADJ
tension NOUN
sundromes NOUN
: PUNCT
Rational PROPN
for ADP
	     SPACE
a DET
nutritional ADJ
approach NOUN
" PUNCT
. PUNCT
1986 NUM
, PUNCT
A DET
Year PROPN
in ADP
Nutritional PROPN
Medicine PROPN
. PUNCT
	     SPACE
J. PROPN
Bland PROPN
, PUNCT
Ed PROPN
. PROPN
Keats PROPN
, PUNCT
Publishing PROPN
, PUNCT
1986 NUM
. PUNCT
	 SPACE
B. PROPN
" PUNCT
Nutritional PROPN
factors NOUN
in ADP
the DET
etiology NOUN
of ADP
premenstrual ADJ
tension NOUN
	     SPACE
syndromes PROPN
" PUNCT
, PUNCT
J. PROPN
Reprod PROPN
. PUNCT
Med.28(7):446 PROPN
- PUNCT
64(1983 PROPN
) PUNCT
. PUNCT
	 SPACE
C. PROPN
" PUNCT
Premenstrual ADJ
tension NOUN
" PUNCT
, PUNCT
Prob PROPN
. PUNCT
Obstet PROPN
. PUNCT
Gynecol PROPN
. PUNCT
3(12):1 NUM
- SYM
39(1980)Treatment PROPN
has AUX
traditionally ADV
involved VERB
progesterone ADJ
administration NOUN
if SCONJ
you PRON
can AUX
find VERB
a DET
doctor NOUN
who PRON
will AUX
treat VERB
you PRON
for ADP
PMS(just PROPN
about ADV
as ADV
hard ADV
as SCONJ
finding VERB
one NUM
that PRON
will AUX
treat VERB
you PRON
for ADP
candida PROPN
blooms NOUN
) PUNCT
. PUNCT
  SPACE
While SCONJ
progesterone NOUN
will AUX
work VERB
, PUNCT
supplementation NOUN
with ADP
vitamins NOUN
and CCONJ
minerals NOUN
works VERB
even ADV
better ADV
. PUNCT
  SPACE
There PRON
really ADV
has AUX
been AUX
an DET
awful ADJ
lot NOUN
of ADP
research NOUN
done VERB
on ADP
PMS(much PROPN
more ADJ
than SCONJ
candida PROPN
blooms NOUN
) PUNCT
. PUNCT
  SPACE
Many ADJ
of ADP
these DET
studies NOUN
have AUX
been AUX
what PRON
are AUX
called VERB
experimental PROPN
controlled VERB
studies(the DET
type NOUN
of ADP
rigorous ADJ
clinical ADJ
studies NOUN
that PRON
doctors NOUN
like VERB
to PART
see VERB
done).Here X
are AUX
a DET
few ADJ
of ADP
these DET
studies NOUN
: PUNCT
	 SPACE
CARBOHYDRATE NOUN
: PUNCT
Experimental PROPN
Controlled VERB
Study PROPN
, PUNCT
" PUNCT
Effect NOUN
of ADP
a DET
low ADJ
- PUNCT
fat NOUN
, PUNCT
	 SPACE
high ADJ
- PUNCT
carbohydrate NOUN
diet NOUN
on ADP
symptoms NOUN
of ADP
cyclical ADJ
mastopathy NOUN
" PUNCT
Lancet PROPN
	 SPACE
2:128 NUM
- SYM
32(1988 NUM
) PUNCT
. PUNCT
  SPACE
21 NUM
pts PROPN
with ADP
severe ADJ
persistent ADJ
cyclical ADJ
mastopathy NOUN
	 SPACE
of ADP
at ADV
least ADV
5 NUM
years NOUN
duration NOUN
were AUX
randomly ADV
selected VERB
to PART
receive VERB
	 SPACE
specific ADJ
training NOUN
to PART
reduce VERB
dietary ADJ
fat NOUN
to ADP
15 NUM
% NOUN
of ADP
total ADJ
calories NOUN
	 SPACE
and CCONJ
increase VERB
complex ADJ
carbohydrate NOUN
ingestion NOUN
or CCONJ
given VERB
general ADJ
dietary NOUN
	 SPACE
advise ADJ
with ADP
no DET
training NOUN
. PUNCT
  SPACE
After ADP
6 NUM
months NOUN
, PUNCT
there PRON
was AUX
a DET
significant ADJ
	 SPACE
reduction NOUN
in ADP
the DET
severity NOUN
of ADP
the DET
breast NOUN
swelling NOUN
and CCONJ
tenderness NOUN
in ADP
	 SPACE
the DET
trained VERB
group NOUN
as SCONJ
reported VERB
by ADP
self NOUN
- PUNCT
reported VERB
symptoms NOUN
as ADV
well ADV
as SCONJ
	 SPACE
physical ADJ
exams NOUN
which PRON
quantitated VERB
the DET
degree NOUN
of ADP
breast NOUN
swelling NOUN
, PUNCT
	 SPACE
tenderness NOUN
and CCONJ
nodularity NOUN
. PUNCT
	 SPACE
VITAMIN PROPN
A NOUN
: PUNCT
Experimental PROPN
Controlled VERB
Study PROPN
, PUNCT
" PUNCT
The DET
use NOUN
of ADP
Vitamin PROPN
A NOUN
in ADP
	 SPACE
premenstrual ADJ
tension NOUN
" PUNCT
Acta PROPN
Obstet PROPN
. PUNCT
Gynecol PROPN
Scand PROPN
. PUNCT
39:586 NUM
- PUNCT
92(1960 PROPN
) PUNCT
. PUNCT
 	 SPACE
218 NUM
pts NOUN
with ADP
severe ADJ
recurring NOUN
PMS PROPN
received VERB
200,000 NUM
to ADP
300,000IU NUM
	 SPACE
vitamin NOUN
A DET
daily NOUN
or CCONJ
a DET
placebo NOUN
. PUNCT
  SPACE
Serum PROPN
retinol NOUN
levels NOUN
were AUX
monitored VERB
	 SPACE
and CCONJ
high ADJ
dose NOUN
supplementation NOUN
was AUX
discontinued VERB
when ADV
evidence NOUN
of ADP
	 SPACE
toxicity NOUN
occured(serum ADP
retinol NOUN
above ADP
450ug PROPN
/ SYM
ml PROPN
) PUNCT
. PUNCT
  SPACE
The DET
intent NOUN
of ADP
the DET
	 SPACE
study NOUN
was AUX
to PART
load VERB
the DET
liver NOUN
up ADP
with ADP
vitamin NOUN
A NOUN
and CCONJ
get AUX
a DET
normal ADJ
pool NOUN
	 SPACE
size(500,000IU NUM
to ADP
1,000,000IU NUM
) PUNCT
and CCONJ
then ADV
see VERB
if SCONJ
this DET
	 SPACE
normal ADJ
vitamin NOUN
A DET
pool NOUN
could AUX
prevent VERB
PMS PROPN
. PUNCT
  SPACE
48 NUM
% NOUN
getting VERB
the DET
high ADJ
dose NOUN
	 SPACE
vitamin NOUN
A PROPN
had AUX
complete ADJ
remission NOUN
of ADP
the DET
symptoms NOUN
of ADP
PMS PROPN
. PUNCT
  SPACE
Only ADV
10 NUM
% NOUN
	 SPACE
getting VERB
the DET
placebo NOUN
reported VERB
getting VERB
complete ADJ
relief NOUN
of ADP
PMS PROPN
sysmptoms NOUN
. PUNCT
 	 SPACE
10 NUM
% NOUN
of ADP
the DET
vitamin NOUN
A DET
treated VERB
group NOUN
reported VERB
no DET
improvement NOUN
in ADP
PMS PROPN
	 SPACE
symptoms NOUN
. PUNCT
	 SPACE
Experimental PROPN
Controlled PROPN
Study PROPN
, PUNCT
" PUNCT
Premenstrual ADJ
tension NOUN
treated VERB
with ADP
	 SPACE
vitamin NOUN
A NOUN
" PUNCT
J. PROPN
Clinical PROPN
Endocrinology PROPN
10:1579 NUM
- PUNCT
89(1950 PROPN
) PUNCT
. PUNCT
30 NUM
pts NOUN
	 SPACE
received VERB
200,000IU NUM
of ADP
vitamin NOUN
A DET
daily ADJ
starting VERB
on ADP
day NOUN
15 NUM
of ADP
their PRON
	 SPACE
cycle NOUN
with ADP
supplementation NOUN
continuing VERB
until ADP
the DET
onset NOUN
of ADP
PMS PROPN
symptoms NOUN
. PUNCT
 	 SPACE
After ADP
2 NUM
- SYM
6 NUM
months NOUN
, PUNCT
all DET
30 NUM
pts NOUN
reported VERB
a DET
significant ADJ
improvement NOUN
in ADP
	 SPACE
PMS PROPN
symptoms NOUN
. PUNCT
  SPACE
Vitamin PROPN
A DET
supplementation NOUN
was AUX
stopped VERB
once ADV
evidence NOUN
of ADP
	 SPACE
toxicity NOUN
was AUX
demonstrated VERB
and CCONJ
all DET
30 NUM
pts NOUN
were AUX
followed VERB
for ADP
one NUM
year NOUN
	 SPACE
after ADP
high ADJ
dose NOUN
vitamin NOUN
A DET
supplementation NOUN
was AUX
stopped VERB
. PUNCT
  SPACE
PMS PROPN
symptoms NOUN
	 SPACE
did AUX
not PART
reoccur VERB
in ADP
any DET
of ADP
these DET
30 NUM
pts NOUN
for ADP
upto ADJ
one NUM
year NOUN
after ADP
the DET
	 SPACE
vitamin NOUN
A DET
supplementation NOUN
was AUX
stopped VERB
. PUNCT
Most ADJ
Americans PROPN
do AUX
not PART
have AUX
a DET
normal ADJ
store NOUN
of ADP
vitamin NOUN
A NOUN
in ADP
their PRON
liver NOUN
. PUNCT
  SPACE
These DET
studies NOUN
and CCONJ
several ADJ
others NOUN
were AUX
designed VERB
to PART
see VERB
if SCONJ
getting VERB
a DET
normal ADJ
store NOUN
of ADP
vitamin NOUN
A NOUN
into ADP
the DET
liver NOUN
could AUX
eliminate VERB
PMS PROPN
. PUNCT
  SPACE
Of ADP
all DET
the DET
vitamins NOUN
given VERB
for ADP
PMS(vitamin NOUN
A PROPN
, PUNCT
B6 PROPN
, PUNCT
and CCONJ
vitamin NOUN
E NOUN
) PUNCT
, PUNCT
vitamin NOUN
A NOUN
has AUX
shown VERB
the DET
best ADJ
single ADJ
effect NOUN
. PUNCT
  SPACE
This DET
is AUX
probably ADV
because SCONJ
vitamin NOUN
A NOUN
is AUX
involved VERB
in ADP
steroid NOUN
( PUNCT
estrogen PROPN
/ SYM
progesterone NOUN
) PUNCT
metabolism NOUN
in ADP
the DET
liver NOUN
. PUNCT
  SPACE
Getting VERB
your PRON
liver NOUN
full ADJ
of ADP
vitamin NOUN
A NOUN
seems VERB
to PART
be AUX
one NUM
of ADP
the DET
best ADJ
things NOUN
that PRON
you PRON
can AUX
do AUX
to PART
prevent VERB
the DET
symptoms NOUN
of ADP
PMS PROPN
. PUNCT
  SPACE
But CCONJ
vitamin NOUN
A PROPN
is AUX
toxic ADJ
and CCONJ
you PRON
do AUX
n't PART
want VERB
to PART
be AUX
trying VERB
to PART
do AUX
this DET
without ADP
being AUX
seen VERB
by ADP
a DET
physician NOUN
who PRON
can AUX
monitor VERB
you PRON
for ADP
vitamin NOUN
A DET
toxicity NOUN
. PUNCT
	 SPACE
VITAMIN PROPN
B6 PROPN
: PUNCT
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Crossoverr PROPN
Study PROPN
, PUNCT
" PUNCT
Pyridoxine NOUN
	 SPACE
( PUNCT
vitamin NOUN
B6 PROPN
) PUNCT
and CCONJ
the DET
premenstrual ADJ
syndrome NOUN
: PUNCT
A DET
randomized VERB
crossover NOUN
	 SPACE
trial"J.R. PROPN
Coll PROPN
. PUNCT
Gen. PROPN
Pract PROPN
. PUNCT
39:364 NUM
- PUNCT
68(1989 PROPN
) PUNCT
. PUNCT
  SPACE
32 NUM
women NOUN
aged VERB
18 NUM
- SYM
49 NUM
	 SPACE
with ADP
moderate ADJ
to ADP
severe ADJ
PMS PROPN
randomly ADV
received VERB
50 NUM
mg PROPN
B6 PROPN
daily NOUN
or CCONJ
placebo NOUN
. PUNCT
 	 SPACE
After ADP
3 NUM
months NOUN
the DET
groups NOUN
were AUX
switched VERB
and CCONJ
followed VERB
for ADP
another DET
	 SPACE
3 NUM
months NOUN
. PUNCT
  SPACE
B6 PROPN
had AUX
a DET
significant ADJ
effect NOUN
on ADP
the DET
emotional ADJ
aspects NOUN
of ADP
	 SPACE
PMS(depression NOUN
, PUNCT
irritability NOUN
and CCONJ
tiredness NOUN
) PUNCT
. PUNCT
  SPACE
Other ADJ
symptoms NOUN
of ADP
PMS PROPN
	 SPACE
were AUX
not PART
significanttly ADV
affected VERB
by ADP
B6 PROPN
supplementation NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
The DET
efects NOUN
of ADP
vitamin NOUN
B6 NOUN
	 SPACE
supplementation NOUN
on ADP
premenstrual ADJ
sysmptoms NOUN
" PUNCT
Obstet PROPN
. PUNCT
Gynecol PROPN
	 SPACE
70(2):145 NUM
- PUNCT
49(1987 PROPN
) PUNCT
. PUNCT
  SPACE
55 NUM
pts PROPN
with ADP
moderate ADJ
to ADP
severe ADJ
PMS PROPN
received VERB
	 SPACE
150 NUM
mg PROPN
B6 PROPN
daily NOUN
or CCONJ
placebo NOUN
for ADP
2 NUM
months NOUN
. PUNCT
  SPACE
Analysis NOUN
of ADP
convergence NOUN
	 SPACE
showed VERB
that SCONJ
B6 PROPN
significantly ADV
improved VERB
premenstrual ADJ
symptoms NOUN
related VERB
	 SPACE
to ADP
the DET
autonomic ADJ
nervous ADJ
system(dizziness PROPN
and CCONJ
vomiting NOUN
) PUNCT
as ADV
well ADV
as SCONJ
	 SPACE
behavior NOUN
changes(poor PROPN
mental ADJ
performance NOUN
, PUNCT
decreased VERB
social ADJ
interaction NOUN
) PUNCT
 	 SPACE
Anxiety PROPN
, PUNCT
depression NOUN
and CCONJ
water NOUN
retention NOUN
were AUX
not PART
improved VERB
by ADP
B6 PROPN
	 SPACE
supplementation NOUN
. PUNCT
Vitamin PROPN
B6 PROPN
is AUX
below ADP
the DET
RDA PROPN
for ADP
both CCONJ
American ADJ
men NOUN
and CCONJ
women NOUN
. PUNCT
  SPACE
Birth NOUN
control NOUN
pills NOUN
and CCONJ
over ADP
40 NUM
different ADJ
drugs NOUN
increase VERB
the DET
B6 PROPN
requirement NOUN
in ADP
man NOUN
. PUNCT
  SPACE
Women NOUN
on ADP
birth NOUN
control NOUN
pills NOUN
should AUX
be AUX
supplemented VERB
with ADP
10 NUM
- SYM
15 NUM
mg NOUN
of ADP
B6 PROPN
per ADP
day NOUN
. PUNCT
  SPACE
The DET
dose NOUN
should AUX
be AUX
increased VERB
if SCONJ
symptoms NOUN
of ADP
PMS PROPN
appear VERB
. PUNCT
  SPACE
Dr. PROPN
David PROPN
R. PROPN
Rubinow PROPN
who PRON
heads VERB
the DET
biological ADJ
psychiatry NOUN
branch NOUN
of ADP
NIMH PROPN
was AUX
quoted VERB
in ADP
Clin PROPN
. PUNCT
Psychiatry PROPN
News PROPN
, PUNCT
December PROPN
, PUNCT
1987 NUM
as SCONJ
stating VERB
that SCONJ
B6 PROPN
should AUX
be AUX
considered VERB
the DET
" PUNCT
first ADJ
- PUNCT
line NOUN
" PUNCT
drug NOUN
for ADP
PMS(over NOUN
progesterone NOUN
) PUNCT
and CCONJ
if SCONJ
the DET
patient NOUN
does AUX
not PART
respond VERB
, PUNCT
then ADV
other ADJ
treatments NOUN
should AUX
be AUX
tried VERB
. PUNCT
  SPACE
Vitamin PROPN
B6 PROPN
can AUX
be AUX
toxic(nerve VERB
damage NOUN
) PUNCT
if SCONJ
consumed VERB
in ADP
doses NOUN
of ADP
500 NUM
mg NOUN
or CCONJ
more ADJ
each DET
day NOUN
. PUNCT
	 SPACE
VITAMIN NOUN
E NOUN
: PUNCT
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Efficacy NOUN
of ADP
alpha- PROPN
	 SPACE
tocopherol PROPN
in ADP
the DET
treatment NOUN
of ADP
premenstrual ADJ
syndrome NOUN
" PUNCT
J. PROPN
Reprod PROPN
. PUNCT
	 SPACE
Med PROPN
. PUNCT
32(6):400 NUM
- PUNCT
04(1987 PROPN
) PUNCT
. PUNCT
35 NUM
pts NOUN
received VERB
400IU PROPN
vitamin NOUN
E NOUN
daily NOUN
for ADP
3 NUM
	 SPACE
cycles NOUN
or CCONJ
a DET
placebo NOUN
. PUNCT
  SPACE
Vitamin PROPN
E PROPN
treated VERB
pts PROPN
had AUX
33 NUM
% NOUN
who PRON
reported VERB
a DET
	 SPACE
significant ADJ
reduction NOUN
in ADP
physical ADJ
symptoms(weight PROPN
gain NOUN
and CCONJ
breast NOUN
	 SPACE
tenderness NOUN
) PUNCT
while SCONJ
the DET
placebo NOUN
group NOUN
had AUX
14 NUM
% NOUN
who PRON
reported VERB
a DET
significant ADJ
	 SPACE
reduction NOUN
in ADP
physical ADJ
symptoms NOUN
. PUNCT
The DET
vitamin NOUN
E NOUN
group NOUN
reported VERB
that SCONJ
38 NUM
% NOUN
	 SPACE
had AUX
a DET
significant ADJ
reduction NOUN
in ADP
anxiety NOUN
versus ADP
12 NUM
% NOUN
for ADP
the DET
placebo NOUN
	 SPACE
group NOUN
. PUNCT
  SPACE
For ADP
depression NOUN
, PUNCT
the DET
vitamin NOUN
E NOUN
group NOUN
had AUX
27 NUM
% NOUN
with ADP
a DET
significant ADJ
	 SPACE
decrease NOUN
in ADP
depression NOUN
compared VERB
with ADP
8 NUM
% NOUN
for ADP
the DET
placebo NOUN
group NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
The DET
effect NOUN
of ADP
alpha PROPN
- PUNCT
tocopherol PROPN
on ADP
	 SPACE
premenstrual ADJ
symptomalogy NOUN
: PUNCT
A DET
double ADJ
blind ADJ
study NOUN
" PUNCT
J. PROPN
Am PROPN
. PUNCT
Coll PROPN
. PUNCT
Nutr PROPN
. PUNCT
	 SPACE
2(2):115 NUM
- SYM
122(1983 NUM
) PUNCT
. PUNCT
75pts NOUN
with ADP
benign ADJ
breast NOUN
disease NOUN
and CCONJ
PMT PROPN
randomly ADV
	 SPACE
received VERB
vitamin NOUN
E NOUN
at ADP
75IU NUM
, PUNCT
150IU PROPN
, PUNCT
or CCONJ
300IU PROPN
daily NOUN
or CCONJ
placebo NOUN
. PUNCT
  SPACE
After ADP
	 SPACE
2 NUM
months NOUN
of ADP
supplementation NOUN
, PUNCT
150IU PROPN
of ADP
vitamin NOUN
E NOUN
or CCONJ
higher ADJ
significantly ADV
	 SPACE
improved ADJ
PMT PROPN
- PUNCT
A PROPN
and CCONJ
PMT PROPN
- PUNCT
C. PROPN
  SPACE
The DET
300IU PROPN
dose NOUN
was AUX
needed VERB
to PART
significantly ADV
	 SPACE
improve VERB
PMT PROPN
- PUNCT
D. PROPN
  SPACE
No DET
dose NOUN
of ADP
vitamin NOUN
E NOUN
significantly ADV
improved VERB
PMT PROPN
- PUNCT
H PROPN
	 SPACE
( PUNCT
other ADJ
studies NOUN
have AUX
shown VERB
that SCONJ
a DET
higher ADJ
vitamin NOUN
E NOUN
doses NOUN
will AUX
relieve VERB
	 SPACE
PMT ADJ
- PUNCT
H PROPN
symptoms NOUN
) PUNCT
. PUNCT
		 SPACE
MAGNESIUM PROPN
: PUNCT
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Magnesium PROPN
prophylaxis PROPN
	 SPACE
of ADP
menstrual ADJ
migraine NOUN
: PUNCT
effects NOUN
on ADP
itracellular ADJ
magnesium NOUN
" PUNCT
Headache PROPN
	 SPACE
31:298 PROPN
- PUNCT
304(1991 NUM
) PUNCT
. PUNCT
20 NUM
pts NOUN
with ADP
perimenstrual ADJ
headache NOUN
received VERB
360 NUM
mg PROPN
	 SPACE
daily ADV
of ADP
magnesium NOUN
as SCONJ
magnesium PROPN
pyrrolidone PROPN
carboxylic ADJ
acid NOUN
or CCONJ
a DET
	 SPACE
placebo NOUN
. PUNCT
  SPACE
Treatment NOUN
was AUX
started VERB
on ADP
the DET
15th ADJ
day NOUN
of ADP
the DET
cycle NOUN
and CCONJ
	 SPACE
continued VERB
until ADP
menstruation NOUN
. PUNCT
After ADP
2 NUM
months NOUN
, PUNCT
the DET
Pain PROPN
Total PROPN
Index PROPN
	 SPACE
was AUX
significantly ADV
lower ADJ
in ADP
the DET
magnesium NOUN
group NOUN
. PUNCT
  SPACE
Magnesium PROPN
treatment NOUN
	 SPACE
was AUX
also ADV
assocoiated VERB
with ADP
a DET
significant ADJ
reduction NOUN
in ADP
the DET
Menstrual PROPN
	 SPACE
Distress PROPN
Questionnaire PROPN
scores NOUN
. PUNCT
  SPACE
Pretreatment ADJ
magnesium NOUN
levels NOUN
in ADP
 	 SPACE
lymphocytes NOUN
and CCONJ
polymorphonuclear NOUN
leukocytes NOUN
were AUX
significantly ADV
lower ADJ
	 SPACE
in ADP
this DET
group NOUN
of ADP
20 NUM
pts NOUN
compared VERB
to PART
control VERB
women NOUN
who PRON
did AUX
not PART
suffer VERB
	 SPACE
from ADP
PMS PROPN
. PUNCT
  SPACE
After ADP
treatment NOUN
, PUNCT
magnesium NOUN
levels NOUN
in ADP
these DET
cells NOUN
was AUX
raised VERB
	 SPACE
into ADP
the DET
normal ADJ
range NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Oral PROPN
Magnesium PROPN
successfully ADV
	 SPACE
relieves VERB
premenstrual ADJ
mood NOUN
changes NOUN
" PUNCT
Obstet PROPN
. PUNCT
Gynecol PROPN
78(2):177 NUM
- PUNCT
81(1991 PROPN
) PUNCT
. PUNCT
	 SPACE
32pts NOUN
aged ADJ
24 NUM
- SYM
39 NUM
randomly ADV
received VERB
either CCONJ
magnesium ADJ
carboxylic ADJ
acid NOUN
	 SPACE
360 NUM
mg NOUN
of ADP
Mg PROPN
per ADP
day NOUN
or CCONJ
a DET
placebo NOUN
from ADP
the DET
15th ADJ
day NOUN
of ADP
the DET
cycle NOUN
to ADP
the DET
	 SPACE
onset NOUN
of ADP
the DET
menstrual ADJ
flow NOUN
. PUNCT
  SPACE
After ADP
2 NUM
cycles NOUN
, PUNCT
both DET
groups NOUN
received VERB
	 SPACE
magnesium NOUN
. PUNCT
  SPACE
The DET
Menstrual PROPN
Distress PROPN
Questionnaire PROPN
score NOUN
of ADP
the DET
cluster NOUN
	 SPACE
pain NOUN
was AUX
significantly ADV
reduced VERB
during ADP
the DET
second ADJ
cycle(month PROPN
) PUNCT
for ADP
the DET
	 SPACE
magnesium NOUN
treatment NOUN
group NOUN
as ADV
well ADV
as SCONJ
the DET
placebo NOUN
group NOUN
once SCONJ
they PRON
were AUX
	 SPACE
switched VERB
to ADP
magnesium NOUN
supplementation NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
total ADJ
score NOUN
on ADP
	 SPACE
the DET
Menstrual PROPN
Distress PROPN
Questionnaire PROPN
was AUX
significantly ADV
decreased VERB
by ADP
	 SPACE
magnesium NOUN
supplementation NOUN
. PUNCT
  SPACE
The DET
authors NOUN
suggest VERB
that SCONJ
magnesium NOUN
	 SPACE
supplemenation NOUN
should AUX
become VERB
a DET
routine ADJ
treatment NOUN
for ADP
the DET
mood NOUN
changes NOUN
	 SPACE
that PRON
occur VERB
during ADP
PMS.There NOUN
are AUX
numerous ADJ
observational ADJ
studies NOUN
that PRON
have AUX
been AUX
published VERB
in ADP
the DET
medical ADJ
literature NOUN
which PRON
also ADV
suggest VERB
that SCONJ
PMS PROPN
is AUX
primarily ADV
a DET
disorder NOUN
that PRON
arises VERB
out SCONJ
of ADP
a DET
hormone NOUN
imbalance NOUN
that PRON
is AUX
dietary ADJ
in ADP
nature NOUN
. PUNCT
  SPACE
But CCONJ
since SCONJ
observational ADJ
studies NOUN
are AUX
considered VERB
by ADP
most ADJ
physicians NOUN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
to PART
be AUX
anecdotal ADJ
in ADP
nature NOUN
, PUNCT
I PRON
have AUX
not PART
bothered VERB
to PART
cite VERB
them PRON
. PUNCT
  SPACE
There PRON
are AUX
also ADV
over ADP
a DET
half ADJ
dozen NOUN
good ADJ
experimental ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
on ADP
multivitamin PROPN
and CCONJ
mineral NOUN
supplementation NOUN
to PART
prevent VERB
PMS PROPN
. PUNCT
  SPACE
I PRON
've AUX
chosen VERB
the DET
best ADJ
specific ADJ
studies NOUN
on ADP
individual ADJ
vitamins NOUN
and CCONJ
minerals NOUN
to PART
try VERB
to PART
point VERB
out ADP
that SCONJ
PMS PROPN
is AUX
primarily ADV
a DET
nutritional ADJ
disorder NOUN
. PUNCT
  SPACE
But CCONJ
doctors NOUN
do AUX
n't PART
recognize VERB
nutritional ADJ
disorders NOUN
unless SCONJ
they PRON
can AUX
see VERB
clinical ADJ
pathology(beri PROPN
- PUNCT
beri PROPN
, PUNCT
pellagra NOUN
, PUNCT
scruvy PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
  SPACE
PMS PROPN
is AUX
probably ADV
the DET
best ADJ
reason NOUN
why ADV
every DET
doctor NOUN
being AUX
trained VERB
in ADP
the DET
U.S. PROPN
should AUX
get AUX
a DET
good ADJ
course NOUN
on ADP
human ADJ
nutrition NOUN
. PUNCT
  SPACE
PMS PROPN
is AUX
really ADV
only ADV
the DET
tip NOUN
if SCONJ
the DET
iceberg NOUN
when ADV
it PRON
comes VERB
to ADP
nutritional ADJ
disorders NOUN
. PUNCT
  SPACE
It PRON
's AUX
time NOUN
that DET
medicine NOUN
woke VERB
up ADP
and CCONJ
smelled VERB
the DET
roses NOUN
. PUNCT
Here ADV
's AUX
some DET
studies NOUN
which PRON
show VERB
the DET
importance NOUN
in ADP
multivitamin PROPN
/ SYM
mineral PROPN
supplementation NOUN
and/or CCONJ
diet NOUN
change NOUN
in ADP
preventing VERB
PMS PROPN
. PUNCT
	 SPACE
Experimental PROPN
Study PROPN
, PUNCT
" PUNCT
Effect NOUN
of ADP
a DET
nutritional ADJ
programme NOUN
on ADP
	 SPACE
premenstrual ADJ
syndrome NOUN
: PUNCT
a DET
retrospective ADJ
analysis NOUN
" PUNCT
, PUNCT
Complement PROPN
. PUNCT
Med PROPN
. PUNCT
	 SPACE
Res.5(1):8 PROPN
- PUNCT
11(1991 PROPN
) PUNCT
. PUNCT
  SPACE
200pts NUM
were AUX
given VERB
dietary ADJ
instructions NOUN
and CCONJ
	 SPACE
supplemented VERB
with ADP
Optivite(R PROPN
) PUNCT
plus CCONJ
additional ADJ
vitamin NOUN
C NOUN
, PUNCT
vitamin NOUN
E NOUN
, PUNCT
	 SPACE
magnesium NOUN
, PUNCT
zinc NOUN
and CCONJ
primrose NOUN
oil NOUN
. PUNCT
  SPACE
The DET
dietary ADJ
instructions NOUN
were AUX
to PART
	 SPACE
take VERB
the DET
supplements NOUN
and CCONJ
switch VERB
to ADP
a DET
low ADJ
fat ADJ
, PUNCT
complex ADJ
carbohydrate NOUN
	 SPACE
diet PROPN
. PUNCT
  SPACE
On ADP
a DET
retrospective ADJ
analysis NOUN
, PUNCT
96.5 NUM
% NOUN
of ADP
the DET
200pts NUM
reported VERB
an DET
	 SPACE
improvement NOUN
in ADP
their PRON
PMS PROPN
symptoms NOUN
with ADP
30 NUM
% NOUN
of ADP
the DET
sample NOUN
stating VERB
that DET
	 SPACE
they PRON
no ADV
longer ADV
suffered VERB
from ADP
PMS PROPN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Role NOUN
of ADP
Nutrition NOUN
in ADP
managing VERB
	 SPACE
premenstrual ADJ
tension NOUN
syndromes NOUN
" PUNCT
, PUNCT
J PROPN
Reprod PROPN
. PUNCT
Med PROPN
. PUNCT
32(6):405 NUM
- PUNCT
22(1987 PROPN
) PUNCT
. PUNCT
 	 SPACE
A DET
low ADJ
fat ADJ
, PUNCT
high ADJ
complex ADJ
carbohydrate NOUN
diet NOUN
along ADP
with ADP
Optivite PROPN
	 SPACE
supplementation NOUN
significantly ADV
decreased VERB
PMS PROPN
scores NOUN
compared VERB
with ADP
diet NOUN
	 SPACE
change NOUN
and CCONJ
placebo NOUN
. PUNCT
  SPACE
After ADP
6 NUM
months NOUN
on ADP
the DET
experimental ADJ
program NOUN
, PUNCT
the DET
	 SPACE
vitamin NOUN
/ SYM
mineral NOUN
supplementated VERB
group NOUN
had AUX
significantly ADV
decreased VERB
	 SPACE
estradiol NOUN
and CCONJ
increased VERB
progesterone NOUN
in ADP
serum PROPN
during ADP
the DET
midlutel NOUN
	 SPACE
phase NOUN
of ADP
their PRON
cycle NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Clinical ADJ
and CCONJ
biochemical ADJ
effects NOUN
	 SPACE
of ADP
nutritional ADJ
supplementation NOUN
on ADP
the DET
premenstrual ADJ
syndrome NOUN
" PUNCT
, PUNCT
J. PROPN
	 SPACE
Reprod PROPN
. PUNCT
Med PROPN
. PUNCT
32(6):435 PROPN
- PUNCT
41(1987 NUM
) PUNCT
. PUNCT
119pts NUM
randomly ADV
given VERB
Optivite(12 PROPN
	 SPACE
tablets NOUN
per ADP
day NOUN
) PUNCT
or CCONJ
a DET
placebo NOUN
. PUNCT
  SPACE
The DET
treated VERB
groups NOUN
showed VERB
a DET
	 SPACE
significant ADJ
decrease NOUN
in ADP
PMS PROPN
symptoms NOUN
compared VERB
to ADP
the DET
placebo NOUN
. PUNCT
  SPACE
Another DET
	 SPACE
group NOUN
of ADP
104pts PROPN
got VERB
Optivite(4 NUM
tablets NOUN
per ADP
day NOUN
) PUNCT
or CCONJ
placebo NOUN
. PUNCT
  SPACE
For ADP
this DET
	 SPACE
second ADJ
group NOUN
of ADP
patients NOUN
, PUNCT
no DET
significant ADJ
effect NOUN
of ADP
supplementation NOUN
on ADP
	 SPACE
PMS PROPN
symptoms NOUN
was AUX
observed VERB
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine1111 PROPN
W. PROPN
17th NOUN
St PROPN
. PUNCT
Tulsa PROPN
, PUNCT
Ok INTJ
74107"Without NUM
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance NOUN
" PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59324From NUM
: PUNCT
brown@spk.hp.com X
( PUNCT
Pat PROPN
R. PROPN
Brown)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
... PUNCT
REFLUX PROPN
ESOPHAGITISPlease PROPN
post VERB
your PRON
results NOUN
, PUNCT
a DET
close ADJ
friend NOUN
has AUX
this DET
condition NOUN
andhas VERB
asked VERB
these DET
same ADJ
questions NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59325From NUM
: PUNCT
mikeq@freddy PROPN
. PUNCT
CNA.TEK.COM PROPN
( PUNCT
Mike PROPN
Quigley)Subject NUM
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>When CCONJ
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident NOUN
> X
in ADP
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having VERB
> X
sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm NOUN
> X
cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>>Was PROPN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually ADV
> X
occur?Ohboy VERB
. PUNCT
Here ADV
we PRON
go VERB
again ADV
. PUNCT
And CCONJ
one NUM
wonders VERB
why ADV
the DET
Americaneducation PROPN
system NOUN
is AUX
in ADP
such ADJ
abysmal NOUN
shape?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59326From NUM
: PUNCT
scheiber@sage.cc.purdue.edu NUM
( PUNCT
Jennifer PROPN
Scheiber)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
10030@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>:When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident>:in NOUN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having>:sexual NUM
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm>:cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>:>:Was PROPN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually>:occur?>>Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
for ADP
> X
pregnancy NOUN
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
also ADV
> X
artificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of>"natural PUNCT
" PUNCT
acts VERB
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen PROPN
is AUX
> X
deposited VERB
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that's ADP
> X
about ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talk VERB
> X
to ADP
your PRON
biology NOUN
teacher.>>-- NOUN
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>= SYM
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
> X
= SYM
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= PUNCT
what PRON
is AUX
the DET
likely ADJ
hood NOUN
of ADP
conception NOUN
if SCONJ
sperm NOUN
is AUX
deposited VERB
just ADV
outsidethe DET
vagina PROPN
? PUNCT
  SPACE
ie PROPN
. PROPN
  SPACE
_ PROPN
_ PROPN
% NOUN
chance NOUN
. PUNCT
--------------------------------------------------------------------------- PUNCT
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
* PUNCT
                  SPACE
J PROPN
e PROPN
n CCONJ
n CCONJ
i PRON
f PROPN
e NOUN
r NOUN
      SPACE
S PROPN
c NOUN
h NOUN
e NOUN
i NOUN
b NOUN
e NOUN
r NOUN
                     SPACE
* PUNCT
email NOUN
: PUNCT
scheiber@sage.cc.purdue.edu PROPN
      SPACE
School PROPN
of ADP
Nursing PROPN
- PUNCT
Purdue PROPN
University~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59327From NUM
: PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It PRON
> X
involves VERB
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the DET
> X
subject NOUN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well ADV
> X
with ADP
inanimate ADJ
objects NOUN
. PUNCT
True ADJ
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this"corona NOUN
discharge"?-- NUM
" PUNCT
THAT PRON
is AUX
a DET
DRY PROPN
turtle NOUN
. PUNCT
  SPACE
That SCONJ
turtle NOUN
is AUX
NOT ADV
moist!"Ezra PROPN
Story PROPN
, PUNCT
a DET
student NOUN
at ADP
RIT PROPN
, PUNCT
andeas3714@ultb.isc.rit.edu PROPN
, PUNCT
his PRON
trusty NOUN
( PUNCT
? PUNCT
) PUNCT
mailing NOUN
address NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59328From NUM
: PUNCT
grenus@pasture.ecn.purdue.edu PROPN
( PUNCT
Karen PROPN
M PROPN
Grenus)Subject PROPN
: PUNCT
thermogenicsHi PROPN
, PUNCT
	 SPACE
I PRON
'm AUX
an DET
avid ADJ
dieter NOUN
and CCONJ
the DET
new ADJ
miracle NOUN
drug NOUN
seems VERB
to PART
involve VERB
thermo PROPN
- PUNCT
genics PROPN
. PUNCT
The DET
drug NOUN
is AUX
claimed VERB
to PART
stimulate VERB
the DET
brown ADJ
fat NOUN
to PART
burn VERB
food NOUN
creating VERB
eat VERB
as SCONJ
opposed VERB
to ADP
the DET
fat NOUN
being AUX
stored VERB
. PUNCT
There PRON
are AUX
all DET
sorts NOUN
ofwarnings NOUN
about ADP
fevers NOUN
, PUNCT
elevated ADJ
blood NOUN
pressure NOUN
and CCONJ
heart NOUN
rate NOUN
, PUNCT
ect INTJ
.. PUNCT
	 SPACE
The DET
silver NOUN
lining NOUN
is AUX
that SCONJ
apparently ADV
some DET
weight NOUN
loss NOUN
does AUX
not PART
require VERB
a DET
change NOUN
in ADP
diet NOUN
. PUNCT
Is AUX
this DET
possible ADJ
? PUNCT
Are AUX
the DET
pills NOUN
dangerous ADJ
or CCONJ
justhoaxes?KarenNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59329From NUM
: PUNCT
dsew@troi.cc.rochester.edu PROPN
( PUNCT
David PROPN
Sewell)Subject PROPN
: PUNCT
Theophylline NOUN
/ SYM
ephedrine VERB
and CCONJ
water NOUN
bio PROPN
- PUNCT
availabilityDoes VERB
anyone PRON
know VERB
if SCONJ
either CCONJ
theophylline NUM
or CCONJ
ephedrine VERB
, PUNCT
or CCONJ
the DET
two NUM
incombination NOUN
, PUNCT
can AUX
reduce VERB
the DET
body NOUN
's PART
ability NOUN
to PART
make VERB
use NOUN
of ADP
available ADJ
water NOUN
? PUNCT
  SPACE
I PRON
had AUX
kind ADV
of ADV
an DET
odd ADJ
experience NOUN
on ADP
a DET
group NOUN
hikerecently ADV
, PUNCT
becoming VERB
dehyrated VERB
after ADP
about ADV
9 NUM
hours NOUN
of ADP
rigoroushiking VERB
despite SCONJ
having VERB
brought VERB
1 NUM
1/2 NUM
gallons NOUN
of ADP
water NOUN
( PUNCT
c. PROPN
6 NUM
liters).I NOUN
drank VERB
close ADV
to ADP
twice DET
as ADV
much ADJ
as SCONJ
anyone PRON
else ADV
, PUNCT
and CCONJ
no DET
one NOUN
else ADV
wasdehydrated VERB
. PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
general ADJ
physical ADJ
condition NOUN
was AUX
an DET
issue NOUN
, PUNCT
since SCONJ
I PRON
was AUX
in ADP
at ADP
least ADJ
the DET
middle NOUN
of ADP
the DET
pack NOUN
in ADP
terms NOUN
of ADP
generalstamina PROPN
, PUNCT
so ADV
far ADV
as SCONJ
I PRON
could AUX
tell VERB
. PUNCT
It PRON
may AUX
be AUX
that SCONJ
I PRON
just ADV
plain ADJ
need VERB
more ADJ
water NOUN
than SCONJ
most ADJ
people NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
amwondering VERB
if SCONJ
theophylline NUM
and/or CCONJ
ephedrine PROPN
might AUX
be AUX
aggravating VERB
things NOUN
. PUNCT
I PRON
took VERB
a DET
couple NOUN
of ADP
Primatene ADJ
tablets NOUN
during ADP
the DET
hike NOUN
to PART
control VERB
asthma(24 PROPN
mg PROPN
. PROPN
ephedrine PROPN
, PUNCT
100 NUM
mg PROPN
. PROPN
theophylline PROPN
) PUNCT
. PUNCT
  SPACE
I PRON
gather VERB
that SCONJ
both DET
thosedrugs NOUN
are AUX
diuretics NOUN
. PUNCT
  SPACE
So ADV
now ADV
I PRON
'm AUX
wondering VERB
: PUNCT
does AUX
that DET
mean VERB
they PRON
canreduce VERB
the DET
body NOUN
's PART
ability NOUN
to PART
utilize VERB
available ADJ
water NOUN
? PUNCT
  SPACE
Would AUX
it PRON
be AUX
aparticularly ADV
  SPACE
stupid ADJ
thing NOUN
to PART
take VERB
that DET
medication NOUN
during ADP
hot ADJ
- PUNCT
weatherexercise NOUN
? PUNCT
  SPACE
( PUNCT
I PRON
always ADV
assumed VERB
diuresis NOUN
just ADV
meant VERB
you PRON
urinated VERB
a DET
lot NOUN
, PUNCT
butthat PROPN
was AUX
n't PART
the DET
case NOUN
yesterday.)Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59330From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Chelation PROPN
therapyIn PROPN
article NOUN
< X
1rh3seINNfkc@newsstand.cit.cornell.edu NUM
> X
, PUNCT
Renee NOUN
< X
rme1@cornell.edu PROPN
> X
writes VERB
: PUNCT
> X
Does AUX
anyone PRON
here ADV
know VERB
anything PRON
about ADP
chelation NOUN
therapy NOUN
using VERB
EDTA NOUN
? PUNCT
  SPACE
My PRON
> NOUN
uncle NOUN
has AUX
emphesema PROPN
, PUNCT
and CCONJ
a DET
doctor NOUN
wants VERB
to PART
try VERB
it PRON
on ADP
him PRON
. PUNCT
  SPACE
We PRON
are AUX
> X
wondering VERB
if SCONJ
: PUNCT
> X
> X
1 NUM
. PUNCT
  SPACE
Is AUX
there PRON
any DET
evidence NOUN
EDTA VERB
chelation NOUN
therapy NOUN
is AUX
beneficial ADJ
for ADP
his PRON
> X
condition NOUN
, PUNCT
or CCONJ
any DET
condition NOUN
? PUNCT
> X
> X
2 NUM
. PUNCT
  SPACE
What PRON
possible ADJ
side NOUN
effects NOUN
are AUX
there ADV
. PUNCT
  SPACE
How ADV
can AUX
they PRON
be AUX
mimimized VERB
? PUNCT
> X
> X
Please INTJ
respond VERB
via ADP
e NOUN
- NOUN
mail NOUN
to ADP
    SPACE
rme1@cornell.edu PROPN
> X
> X
Thanks INTJ
, PUNCT
> X
ReneeEDTA(chelation NOUN
therapy NOUN
) PUNCT
has AUX
been AUX
used VERB
by ADP
some DET
physicians NOUN
to PART
try VERB
to PART
remove VERB
calcium NOUN
from ADP
calcified ADJ
plaques NOUN
in ADP
the DET
arterial ADJ
system(not NOUN
approved VERB
for ADP
such ADJ
use NOUN
) PUNCT
. PUNCT
  SPACE
There PRON
is AUX
also ADV
the DET
possibility NOUN
that SCONJ
lung NOUN
tissue NOUN
in ADP
patients NOUN
with ADP
lung NOUN
disease NOUN
has AUX
become VERB
calcified(chest PROPN
x NOUN
- NOUN
rays NOUN
would AUX
show VERB
this DET
) PUNCT
. PUNCT
  SPACE
There PRON
are AUX
side NOUN
- PUNCT
effects NOUN
to ADP
the DET
use NOUN
of ADP
EDTA NOUN
because SCONJ
it PRON
is AUX
not PART
specific ADJ
for ADP
calcium(it PROPN
also ADV
binds VERB
other ADJ
minerals NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
there PRON
have AUX
been AUX
some DET
deaths NOUN
when ADV
EDTA PROPN
chelation NOUN
therapy NOUN
has AUX
been AUX
used VERB
because SCONJ
of ADP
mineral NOUN
imbalances NOUN
that PRON
were AUX
not PART
detected VERB
and CCONJ
corrected VERB
. PUNCT
  SPACE
In ADP
animal NOUN
studies NOUN
, PUNCT
the DET
best ADJ
way NOUN
to PART
remove VERB
calcium NOUN
from ADP
plaques NOUN
in ADP
rabbits NOUN
was AUX
to PART
supplement VERB
the DET
rabbits NOUN
with ADP
vitamin NOUN
C NOUN
and CCONJ
magnesium(rabbits PROPN
already ADV
synthesize VERB
their PRON
own ADJ
vitamin NOUN
C NOUN
, PUNCT
the DET
extra ADJ
vitamin NOUN
C NOUN
was AUX
given VERB
in ADP
their PRON
diets NOUN
to PART
help VERB
the DET
magnesium NOUN
displace VERB
the DET
calcium NOUN
from ADP
the DET
plaques).The NUM
calcification NOUN
process NOUN
that PRON
occurs VERB
in ADP
both DET
plaques NOUN
and CCONJ
the DET
lung NOUN
probably ADV
can AUX
be AUX
prevented VERB
if SCONJ
magnesium NOUN
is AUX
used VERB
in ADP
supplemental ADJ
form NOUN
. PUNCT
  SPACE
Most ADJ
patietns NOUN
with ADP
calcium NOUN
deposits NOUN
are AUX
found VERB
to PART
be AUX
deficient ADJ
in ADP
calcium NOUN
. PUNCT
	 SPACE
1 NUM
. PUNCT
" PUNCT
Magnesium PROPN
interrationships NOUN
in ADP
ischemic ADJ
heart NOUN
disease NOUN
: PUNCT
A DET
review NOUN
" PUNCT
	    SPACE
Am PROPN
J PROPN
Clin PROPN
Nutr PROPN
27(1):59 NUM
- PUNCT
79(1974 PROPN
) PUNCT
. PUNCT
  SPACE
Supplementation PROPN
with ADP
	    SPACE
magnesium NOUN
will AUX
prevent VERB
clacification NOUN
of ADP
blood NOUN
vessels NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
" PUNCT
The DET
importance NOUN
of ADP
magnesium ADJ
deficiency NOUN
in ADP
cardiovascular PROPN
	     SPACE
disease NOUN
" PUNCT
Am PROPN
. PUNCT
Heart NOUN
J PROPN
94:649 NUM
- PUNCT
57(1977 PROPN
) PUNCT
. PUNCT
  SPACE
The DET
need NOUN
to PART
measure VERB
the DET
	     SPACE
serum PROPN
concentration NOUN
in ADP
all DET
patients NOUN
with ADP
heat NOUN
disease NOUN
can AUX
not PART
be AUX
	     SPACE
overemphasized VERB
. PUNCT
  SPACE
This DET
is AUX
a DET
review NOUN
article NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
" PUNCT
Effect NOUN
of ADP
dietary ADJ
magnesium NOUN
on ADP
development NOUN
of ADP
atherosclerosis NOUN
	    SPACE
in ADP
cholesterol NOUN
- PUNCT
fed VERB
rabbits NOUN
" PUNCT
Atherosclerosis PROPN
10:732 NUM
- PUNCT
7(1990 NUM
) PUNCT
. PUNCT
 	    SPACE
Magnesium PROPN
supplementation NOUN
greatly ADV
decreased VERB
the DET
formation NOUN
of ADP
	    SPACE
plaques NOUN
in ADP
rabbits NOUN
feed VERB
a DET
diet NOUN
that PRON
had AUX
1 NUM
% NOUN
by ADP
weight PROPN
cholesterrol PROPN
	    SPACE
added VERB
to ADP
their PRON
normal ADJ
food NOUN
. PUNCT
Since SCONJ
EDTA NOUN
will AUX
also ADV
bind VERB
magnesium NOUN
, PUNCT
I PRON
've AUX
never ADV
really ADV
liked VERB
it PRON
's AUX
use NOUN
for ADP
the DET
reversal NOUN
of ADP
athersclerosis NOUN
or CCONJ
now ADV
apparently ADV
in ADP
emphesema NOUN
patients NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59331From NUM
: PUNCT
blix@milton.cs.uiuc.edu PROPN
( PUNCT
Gunnar PROPN
Blix)Subject NUM
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosI PROPN
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) NUM
pros NOUN
andcons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
interested ADJ
inreferences NOUN
to ADP
studies NOUN
that PRON
indicate VERB
disadvantages NOUN
or CCONJ
refute VERB
studiesthat ADV
indicate VERB
advantages NOUN
. PUNCT
  SPACE
A DET
friend NOUN
who PRON
is AUX
a DET
medical ADJ
student NOUN
iswriting VERB
a DET
survey NOUN
paper NOUN
, PUNCT
and CCONJ
apparently ADV
the DET
studies NOUN
she PRON
has AUX
run VERB
intoare ADJ
all DET
for ADP
circumcision NOUN
, PUNCT
the DET
main ADJ
argument NOUN
being AUX
a DET
lower ADJ
risk NOUN
ofpenile NOUN
cancer NOUN
. PUNCT
Please INTJ
email NOUN
responses NOUN
as SCONJ
I PRON
am AUX
not PART
a DET
frequent ADJ
reader NOUN
of ADP
either DET
group NOUN
. PUNCT
I PRON
will AUX
summarize VERB
to ADP
the DET
net NOUN
. PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Gunnar PROPN
Blix PROPN
      SPACE
* PUNCT
Good ADJ
advice NOUN
is AUX
one NUM
of ADP
those DET
insults NOUN
that PRON
    SPACE
* PUNCT
* PUNCT
blix@cs.uiuc.edu PROPN
* PUNCT
ought AUX
to PART
be AUX
forgiven VERB
. PUNCT
              SPACE
-Unknown NUM
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
-- PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Gunnar PROPN
Blix PROPN
      SPACE
* PUNCT
Good ADJ
advice NOUN
is AUX
one NUM
of ADP
those DET
insults NOUN
that PRON
    SPACE
* PUNCT
* PUNCT
blix@cs.uiuc.edu PROPN
* PUNCT
ought AUX
to PART
be AUX
forgiven VERB
. PUNCT
              SPACE
-Unknown NUM
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59332From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rhb58$9cf@hsdndev.harvard.edu NUM
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr26.103242.1@vms.ocom.okstate.edu ADV
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu PROPN
writes:>>are PUNCT
in ADP
a DET
different ADJ
class NOUN
. PUNCT
  SPACE
The DET
big ADJ
question NOUN
seems VERB
to PART
be AUX
is AUX
it PRON
reasonable ADJ
to ADP
> X
> X
use VERB
them PRON
in ADP
patients NOUN
with ADP
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
that PRON
* PUNCT
could AUX
* PUNCT
be AUX
due ADJ
> X
> X
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
> X
> X
I PRON
guess VERB
I PRON
'm AUX
still ADV
not PART
clear ADJ
on ADP
what PRON
the DET
term NOUN
" PUNCT
candida PROPN
bloom PROPN
" PUNCT
means NOUN
, PUNCT
> X
but CCONJ
certainly ADV
it PRON
is AUX
well ADV
known ADJ
that SCONJ
thrush ADJ
( PUNCT
superficial ADJ
candidal NOUN
> X
infections NOUN
on ADP
mucous ADJ
membranes NOUN
) PUNCT
can AUX
occur VERB
after ADP
antibiotic ADJ
use NOUN
. PUNCT
> X
This DET
has AUX
nothing PRON
to PART
do AUX
with ADP
systemic ADJ
yeast NOUN
syndrome NOUN
, PUNCT
the DET
" PUNCT
quack NOUN
" PUNCT
> X
diagnosis NOUN
that PRON
has AUX
been AUX
being AUX
discussed VERB
. PUNCT
> X
> X
> X
> PROPN
found VERB
in ADP
the DET
sinus PROPN
mucus PROPN
membranes NOUN
than SCONJ
is AUX
candida PROPN
. PUNCT
  SPACE
Women NOUN
have AUX
been AUX
known VERB
> X
> X
for ADP
a DET
very ADV
long ADJ
time NOUN
to PART
suffer VERB
from ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
and CCONJ
a DET
> X
> X
women NOUN
is AUX
lucky ADJ
to PART
find VERB
a DET
physician NOUN
who PRON
is AUX
willing ADJ
to PART
treat VERB
the DET
cause NOUN
and CCONJ
> X
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
> X
> X
Lucky PROPN
how ADV
? PUNCT
  SPACE
Since SCONJ
a DET
recent ADJ
article NOUN
( PUNCT
randomized VERB
controlled VERB
trial NOUN
) PUNCT
of ADP
> NUM
oral ADJ
yogurt PROPN
on ADP
reducing VERB
vaginal ADJ
candidiasis NOUN
, PUNCT
I PRON
've AUX
mentioned VERB
to ADP
a DET
> X
number NOUN
of ADP
patients NOUN
with ADP
frequent ADJ
vaginal ADJ
yeast NOUN
infections NOUN
that SCONJ
they PRON
> X
could AUX
try VERB
eating VERB
6 NUM
ounces NOUN
of ADP
yogurt PROPN
daily ADV
. PUNCT
  SPACE
It PRON
turns VERB
out ADP
most ADV
would AUX
> X
rather ADV
just ADV
use VERB
anti ADJ
- ADJ
fungal ADJ
creams NOUN
when ADV
they PRON
get VERB
yeast NOUN
infections NOUN
. PUNCT
> X
> X
> X
yogurt PROPN
dangerous PROPN
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
> X
infections NOUN
should AUX
decline VERB
. PUNCT
> X
> X
Again ADV
, PUNCT
this DET
just ADV
is AUX
n't PART
what PRON
the DET
systemic ADJ
yeast NOUN
syndrome NOUN
is AUX
about ADP
, PUNCT
and CCONJ
> PROPN
has AUX
nothing PRON
to PART
do AUX
with ADP
the DET
quack ADJ
therapies NOUN
that PRON
were AUX
being AUX
discussed VERB
. PUNCT
> X
There PRON
is AUX
some DET
evidence NOUN
that PRON
attempts VERB
to PART
reinoculate VERB
the DET
GI PROPN
tract NOUN
with ADP
> NUM
bacteria NOUN
after ADP
antibiotic ADJ
therapy NOUN
do AUX
n't PART
seem VERB
to PART
be AUX
very ADV
helpful ADJ
in ADP
> X
reducing VERB
diarrhea NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
think VERB
anyone PRON
would AUX
view VERB
this DET
as SCONJ
a DET
> X
quack NOUN
therapy NOUN
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindYogurt PROPN
contains VERB
Lactobacillus PROPN
acidophilus NOUN
and CCONJ
L. PROPN
bulgaricus PROPN
. PUNCT
  SPACE
L. PROPN
acidophilus NOUN
is AUX
the DET
major ADJ
bacteria NOUN
in ADP
the DET
vaginal ADJ
tract NOUN
and CCONJ
is AUX
primarily ADV
responsible ADJ
for ADP
keeping VERB
the DET
vaginal ADJ
tract NOUN
acidic PROPN
and CCONJ
yeast NOUN
free ADJ
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
commercial ADJ
yogurt NOUN
sold VERB
in ADP
the DET
U.S. PROPN
has AUX
a DET
very ADV
low ADJ
L. PROPN
acidophilus NOUN
and CCONJ
L. PROPN
bulgaricus PROPN
count NOUN
. PUNCT
  SPACE
Neither DET
of ADP
these DET
bacteria NOUN
are AUX
obligate ADJ
anaerobes NOUN
with ADP
are AUX
much ADV
more ADV
important ADJ
in ADP
dealing VERB
with ADP
the DET
diarrhea NOUN
problem NOUN
. PUNCT
  SPACE
Gordon PROPN
R. PROPN
has AUX
told VERB
me PRON
through ADP
e NOUN
- NOUN
mail NOUN
that PRON
he PRON
gives VERB
his PRON
patients NOUN
L. PROPN
acidophilus NOUN
and CCONJ
several ADJ
different ADJ
obligate NOUN
anaerobes(which PROPN
set VERB
- PUNCT
up ADP
shop NOUN
in ADP
the DET
colon NOUN
) PUNCT
but CCONJ
he PRON
has AUX
n't PART
told VERB
me PRON
which PRON
ones NOUN
yet ADV
. PUNCT
  SPACE
The DET
Lactobacillus PROPN
genera NOUN
are AUX
mostly ADV
facultative ADJ
anaerobes NOUN
and CCONJ
will AUX
set VERB
- PUNCT
up ADP
shop NOUN
where ADV
they PRON
have AUX
access NOUN
to ADP
oxygen NOUN
if SCONJ
given VERB
a DET
chance(mouth PROPN
, PUNCT
anus NOUN
, PUNCT
sinus NOUN
cavity NOUN
and CCONJ
vagina PROPN
) PUNCT
. PUNCT
  SPACE
Having VERB
these DET
good ADJ
bacteria NOUN
around ADV
will AUX
greatly ADV
decrease VERB
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
in ADP
the DET
anal ADJ
region NOUN
or CCONJ
the DET
vagina PROPN
. PUNCT
  SPACE
I PRON
have AUX
not PART
proposed VERB
a DET
systemic ADJ
action NOUN
for ADP
candida PROPN
blooms NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
others NOUN
swear VERB
that SCONJ
all DET
kinds NOUN
of ADP
symptoms NOUN
arise VERB
from ADP
the DET
evil ADJ
yeast NOUN
blooms NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
ready ADJ
to PART
buy VERB
that DET
yet ADV
. PUNCT
  SPACE
I PRON
do AUX
believe VERB
that SCONJ
complications NOUN
at ADP
specific ADJ
sites(vagina PROPN
, PUNCT
anal ADJ
and CCONJ
maybe ADV
lower ADJ
colon NOUN
, PUNCT
sinus NOUN
and CCONJ
mouth NOUN
) PUNCT
can AUX
result VERB
from ADP
antibiotic ADJ
use NOUN
which PRON
removes VERB
the DET
competing VERB
bacteria NOUN
from ADP
these DET
sites NOUN
and CCONJ
thus ADV
lets VERB
candida PROPN
grow VERB
unchecked ADJ
. PUNCT
Restoring VERB
the DET
right ADJ
bacterial ADJ
balance NOUN
is AUX
the DET
best ADJ
way(in ADP
my PRON
opinion NOUN
) PUNCT
to PART
get AUX
rid VERB
of ADP
the DET
problem NOUN
. PUNCT
  SPACE
Anti NOUN
- NOUN
fungals NOUN
, PUNCT
a DET
low ADJ
carbohydrate NOUN
diet NOUN
and CCONJ
vitamin NOUN
A DET
supplementation NOUN
may AUX
all DET
help VERB
to PART
minimize VERB
the DET
local ADJ
irritation NOUN
until ADP
the DET
good ADJ
bacteria NOUN
can AUX
take VERB
over ADP
control NOUN
of ADP
the DET
food NOUN
supply NOUN
again ADV
and CCONJ
lower VERB
the DET
pH NOUN
to PART
basically ADV
starve VERB
the DET
candida PROPN
out ADP
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59333From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rhfrkINN816@shelley.u.washington.edu NUM
> X
, PUNCT
nodrog@hardy.u.washington.edu NOUN
( PUNCT
Gordon PROPN
Rubenfeld PROPN
) PUNCT
writes VERB
: PUNCT
> X
banschbach@vms.ocom.okstate.edu PROPN
writes VERB
: PUNCT
> X
> X
> X
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
  SPACE
Gorden ADJ
> X
> X
Rubenfeld PROPN
, PUNCT
through ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
has AUX
assured VERB
me PRON
that SCONJ
most ADJ
physicians NOUN
recognize VERB
> X
> X
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
occuring VERB
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
> X
> X
and CCONJ
they PRON
therefore ADV
reinnoculate VERB
their PRON
patients NOUN
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
to ADP
> X
> X
restore PROPN
competetion PROPN
for ADP
candida PROPN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believe VERB
that SCONJ
this DET
is AUX
> X
> X
yet ADV
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
. PUNCT
  SPACE
> X
> X
   SPACE
Nor CCONJ
is AUX
it PRON
mine ADJ
. PUNCT
  SPACE
What PRON
I PRON
tried VERB
to PART
explain VERB
to ADP
Marty PROPN
was AUX
that SCONJ
it PRON
is AUX
clearly ADV
> X
understood VERB
that SCONJ
antibiotic ADJ
exposure NOUN
is AUX
a DET
risk NOUN
factor NOUN
for ADP
fungal PROPN
infections NOUN
> X
- PUNCT
which PRON
is AUX
not PART
the DET
same ADJ
as SCONJ
saying VERB
bacteria NOUN
prevent VERB
fungal PROPN
infections NOUN
. PUNCT
> X
Marty PROPN
made VERB
this DET
sound NOUN
like SCONJ
a DET
secret ADJ
  SPACE
known VERB
only ADV
to ADP
veternarians NOUN
and CCONJ
> X
biochemists NOUN
. PUNCT
  SPACE
Anyone PRON
who PRON
has AUX
treated VERB
a DET
urinary ADJ
tract NOUN
infection NOUN
knowns NOUN
> X
this DET
. PUNCT
At ADP
some DET
centers NOUN
pre VERB
- ADJ
op ADJ
liver NOUN
transplant NOUN
patients NOUN
receive VERB
bowel PROPN
> X
decontamination NOUN
directed VERB
at ADP
retaining VERB
" PUNCT
good ADJ
" PUNCT
anaerobic ADJ
flora PROPN
in ADP
an DET
attempt NOUN
> X
to PART
prevent VERB
fungal PROPN
colonization NOUN
in ADP
this DET
soon ADV
- PUNCT
to PART
- PUNCT
be AUX
high ADJ
risk NOUN
group NOUN
. PUNCT
  SPACE
I PRON
also ADV
> VERB
use VERB
lactobacillus NOUN
to PART
treat VERB
enteral ADJ
nutrition NOUN
associated PROPN
diarrhea PROPN
( PUNCT
that PRON
may AUX
> X
be AUX
in ADP
part NOUN
due ADJ
to ADP
alterations NOUN
in ADP
gut PROPN
flora PROPN
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
it PRON
is AUX
NOT ADV
part NOUN
of ADP
> X
my PRON
routine ADJ
practice NOUN
to PART
" PUNCT
reinnoculate VERB
" PUNCT
patients NOUN
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
after ADP
> NUM
antibiotics NOUN
. PUNCT
  SPACE
I PRON
have AUX
seen VERB
no DET
data NOUN
on ADP
this DET
practice NOUN
preventing VERB
or CCONJ
treating VERB
> X
fungal PROPN
infections NOUN
in ADP
at ADP
risk NOUN
patients NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
it PRON
is AUX
a DET
" PUNCT
logical ADJ
> X
extension NOUN
" PUNCT
from ADP
the DET
available ADJ
observations NOUN
I PRON
'll AUX
leave VERB
to ADP
those DET
of ADP
you PRON
who PRON
> X
base VERB
strong ADJ
opinions NOUN
and CCONJ
argue VERB
over ADP
such ADJ
speculations NOUN
in ADP
the DET
absence NOUN
of ADP
> X
clinical ADJ
trials NOUN
. PUNCT
> X
   SPACE
One NUM
place NOUN
such ADJ
therapy NOUN
has AUX
been AUX
described VERB
is AUX
in ADP
treating VERB
particularly ADV
> X
recalcitrant ADJ
cases NOUN
of ADP
C. PROPN
difficile ADJ
colitis NOUN
( PUNCT
NOT ADV
a DET
fungal ADJ
infection NOUN
) PUNCT
. PUNCT
There ADV
> X
are AUX
case NOUN
reports NOUN
of ADP
using VERB
stool NOUN
( PUNCT
ie X
someone PRON
elses NOUN
) PUNCT
enemas NOUN
to PART
repopulate VERB
> X
the DET
patients NOUN
flora VERB
. PUNCT
  SPACE
Do AUX
n't PART
try VERB
this DET
at ADP
home NOUN
. PUNCT
> X
> X
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
  SPACE
Since SCONJ
candida PROPN
> X
> X
colonizes VERB
primarily ADV
in ADP
the DET
ano NOUN
- PUNCT
rectal ADJ
area NOUN
, PUNCT
GI PROPN
symptoms NOUN
should AUX
be AUX
more ADV
common ADJ
> X
> X
than SCONJ
vaginal ADJ
problems NOUN
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
. PUNCT
> X
> X
   SPACE
Except SCONJ
that SCONJ
it PRON
is AUX
n't PART
. PUNCT
At ADP
least ADJ
symptomatically ADV
apparent ADJ
disease NOUN
. PUNCT
> X
> X
> X
Medicine PROPN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There ADV
> X
> X
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
> X
> X
kidney PROPN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
> X
> X
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
> X
> X
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
> X
> X
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to ADP
> X
> X
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
> X
> X
Medicine PROPN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
> X
> X
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
> X
> X
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
> X
> X
   SPACE
Seems VERB
like SCONJ
this DET
is AUX
an DET
excellent ADJ
argument NOUN
for ADP
ignoring VERB
anecdotal ADJ
> X
conventional ADJ
wisdom NOUN
( PUNCT
a DET
euphemism NOUN
for ADP
no DET
data NOUN
) PUNCT
and CCONJ
doing VERB
a DET
good ADJ
clinical ADJ
> X
trial NOUN
, PUNCT
like SCONJ
: PUNCT
> X
> X
AU PROPN
   SPACE
Dismukes PROPN
- PUNCT
W PROPN
- PUNCT
E. PROPN
  SPACE
Wade PROPN
- PUNCT
J PROPN
- PUNCT
S. PROPN
  SPACE
Lee PROPN
- PUNCT
J PROPN
- PUNCT
Y. PROPN
  SPACE
Dockery PROPN
- PUNCT
B PROPN
- PUNCT
K. PROPN
  SPACE
Hain PROPN
- PUNCT
J PROPN
- PUNCT
D. PROPN
> X
TI PROPN
   SPACE
A DET
randomized ADJ
, PUNCT
double ADJ
- PUNCT
blind ADJ
trial NOUN
of ADP
nystatin PROPN
therapy NOUN
for ADP
the DET
> X
      SPACE
candidiasis PROPN
hypersensitivity NOUN
syndrome NOUN
[ PUNCT
see VERB
comments NOUN
] PUNCT
> X
SO ADV
   SPACE
N PROPN
- PUNCT
Engl PROPN
- PUNCT
J PROPN
- PUNCT
Med PROPN
. PUNCT
  SPACE
1990 NUM
Dec PROPN
20 NUM
. PUNCT
  SPACE
323(25 NUM
) PUNCT
. PUNCT
  SPACE
P NOUN
1717 NUM
- SYM
23 NUM
. PUNCT
> X
      SPACE
psychological ADJ
tests NOUN
. PUNCT
RESULTS PROPN
. PUNCT
The DET
three NUM
active ADJ
- PUNCT
treatment NOUN
regimens NOUN
> X
      SPACE
and CCONJ
the DET
all ADV
- PUNCT
placebo NOUN
regimen PROPN
> X
      SPACE
significantly ADV
reduced VERB
both CCONJ
vaginal ADJ
and CCONJ
systemic ADJ
symptoms NOUN
( PUNCT
P NOUN
less ADJ
than SCONJ
> X
      SPACE
0.001 NUM
) PUNCT
, PUNCT
but CCONJ
nystatin PROPN
did AUX
not PART
reduce VERB
the DET
systemic ADJ
symptoms NOUN
> X
      SPACE
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
[ PUNCT
. PUNCT
. PUNCT
. PUNCT
] PUNCT
> X
      SPACE
CONCLUSIONS PROPN
. PUNCT
In ADP
women NOUN
with ADP
presumed ADJ
candidiasis NOUN
> X
      SPACE
hypersensitivity NOUN
syndrome NOUN
, PUNCT
nystatin PROPN
does AUX
not PART
reduce VERB
systemic ADJ
or CCONJ
> X
      SPACE
psychological ADJ
symptoms NOUN
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
Consequently ADV
, PUNCT
> X
      SPACE
the DET
empirical ADJ
recommendation NOUN
of ADP
long ADJ
- PUNCT
term NOUN
nystatin PROPN
therapy NOUN
for ADP
such ADJ
> X
      SPACE
women NOUN
appears VERB
to PART
be AUX
unwarranted ADJ
. PUNCT
> X
> X
   SPACE
Does AUX
this DET
trial NOUN
address NOUN
every DET
issue NOUN
raised VERB
here ADV
, PUNCT
no INTJ
. NOUN
  SPACE
Jon PROPN
Noring PROPN
was AUX
not PART
> X
surprised ADJ
at ADP
this DET
negative ADJ
trial NOUN
since SCONJ
they PRON
did AUX
n't PART
use VERB
* PUNCT
Sporanox PROPN
* PUNCT
( PUNCT
despite SCONJ
> X
Crook PROPN
's PART
recommendation NOUN
for ADP
Nystatin PROPN
) PUNCT
. PUNCT
  SPACE
Maybe ADV
they PRON
did AUX
n't PART
avoid VERB
those DET
> X
carbohydrates NOUN
. PUNCT
. PUNCT
. PUNCT
> X
> X
> X
The DET
conventional ADJ
wisdom NOUN
in ADP
animal NOUN
husbandry NOUN
has AUX
been AUX
that SCONJ
animals NOUN
need VERB
to PART
> X
> X
be AUX
reinnoculated VERB
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
after ADP
coming VERB
off ADP
antibiotic ADJ
therapy.>>If PROPN
it PRON
makes VERB
sense NOUN
for ADP
livestock NOUN
, PUNCT
why ADV
does AUX
n't PART
it PRON
make VERB
sense NOUN
for ADP
humans NOUN
> X
> X
David PROPN
? PUNCT
  SPACE
We PRON
are AUX
not PART
talking VERB
about ADP
a DET
dangerous ADJ
treatment(unless NOUN
you PRON
consider VERB
> X
> X
yogurt PROPN
dangerous PROPN
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
> X
infections NOUN
should AUX
decline VERB
. PUNCT
> X
> X
   SPACE
Marty PROPN
, PUNCT
you PRON
've AUX
also ADV
changed VERB
the DET
terrain NOUN
of ADP
the DET
discussion NOUN
from ADP
empiric ADJ
> X
itraconazole NOUN
for ADP
undocumented ADJ
chronic ADJ
fungal PROPN
sinusitis NOUN
with ADP
systemic ADJ
> X
hypersensitivity NOUN
symptoms NOUN
( PUNCT
Noring VERB
syndrome NOUN
) PUNCT
to ADP
the DET
yoghurt PROPN
and CCONJ
vitamin PROPN
> X
therapy NOUN
of ADP
undocumented ADJ
candida PROPN
enteritis PROPN
( PUNCT
Elaine PROPN
Palmer PROPN
syndrome NOUN
) PUNCT
with ADP
> X
systemic ADJ
symptoms NOUN
. PUNCT
  SPACE
There PRON
is AUX
significant ADJ
difference NOUN
between ADP
the DET
cost NOUN
and CCONJ
> X
risk NOUN
of ADP
these DET
two NUM
empiric ADJ
therapeutic ADJ
trials NOUN
. PUNCT
  SPACE
Are AUX
we PRON
talking VERB
about ADP
" PUNCT
real ADJ
" PUNCT
> X
candida PROPN
infections NOUN
, PUNCT
the DET
whole ADJ
" PUNCT
yeast NOUN
connection NOUN
" PUNCT
hypothesis NOUN
, PUNCT
the DET
efficacy NOUN
> X
of ADP
routine ADJ
bacterial ADJ
repopulation NOUN
in ADP
humans NOUN
, PUNCT
or CCONJ
the DET
ability NOUN
of ADP
anecdotally ADV
> X
effective ADJ
therapies NOUN
( PUNCT
challenged VERB
by ADP
a DET
negative ADJ
randomized VERB
trial NOUN
) PUNCT
to PART
confirm VERB
> X
an DET
etiologic ADJ
hypothesis NOUN
( PUNCT
post X
hoc X
ergo PROPN
propter PROPN
hoc PROPN
) PUNCT
. PUNCT
  SPACE
We PRON
ca AUX
n't PART
seem VERB
to PART
> X
focus VERB
in ADP
on ADP
a DET
disease NOUN
, PUNCT
a DET
therapy NOUN
, PUNCT
or CCONJ
a DET
hypothesis NOUN
under ADP
discussion NOUN
. PUNCT
> X
           SPACE
> X
                            SPACE
I PRON
'm AUX
lost!Candida PROPN
can AUX
do AUX
that DET
to ADP
you PRON
. PUNCT
:-) PUNCT
  SPACE
Gordon PROPN
, PUNCT
I PRON
think VERB
that SCONJ
the DET
best ADV
clinical ADJ
trial NOUN
for ADP
candida PROPN
blooms NOUN
would AUX
involve VERB
giving VERB
women NOUN
with ADP
chronic ADJ
vaginal ADJ
candida PROPN
blooms NOUN
L. PROPN
Acidophilus PROPN
orally ADV
and CCONJ
see VERB
it PRON
it PRON
can AUX
decrease VERB
the DET
frequency NOUN
and CCONJ
extent NOUN
of ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
since SCONJ
most ADJ
of ADP
the DET
candida PROPN
seems VERB
to PART
be AUX
migrating VERB
in ADP
from ADP
the DET
anal ADJ
region NOUN
and CCONJ
L. PROPN
acidophilus NOUN
should AUX
be AUX
able ADJ
keep VERB
the DET
candida PROPN
in ADP
check NOUN
if SCONJ
it PRON
can AUX
make VERB
it PRON
through ADP
the DET
intestinal ADJ
tract NOUN
and CCONJ
colonize VERB
in ADP
the DET
anus NOUN
where ADV
it PRON
will AUX
have AUX
access NOUN
to ADP
oxygen(just PROPN
like SCONJ
it PRON
does AUX
in ADP
the DET
vagina PROPN
) PUNCT
. PUNCT
  SPACE
As ADV
much ADJ
stuff NOUN
as SCONJ
there PRON
is AUX
in ADP
the DET
lay NOUN
press NOUN
about ADP
L. PROPN
acidophilus NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
I PRON
'm AUX
really ADV
amazed ADJ
that SCONJ
someone PRON
has AUX
not PART
done VERB
a DET
clinical ADJ
trial NOUN
yet ADV
to PART
check VERB
it PRON
out ADP
. PUNCT
The DET
calcium NOUN
and CCONJ
kidney NOUN
stone NOUN
story NOUN
is AUX
not PART
a DET
good ADJ
reason NOUN
to PART
throw VERB
all DET
conventional ADJ
wisdom NOUN
out SCONJ
the DET
window NOUN
. PUNCT
  SPACE
Where ADV
would AUX
medicine VERB
be AUX
if SCONJ
conventional ADJ
wisdom NOUN
had AUX
not PART
been AUX
used VERB
to PART
develop VERB
many ADJ
of ADP
the DET
standard ADJ
medical ADJ
practices NOUN
that PRON
could AUX
not PART
be AUX
confirmed VERB
through ADP
clinical ADJ
trials?The ADJ
clinical ADJ
trial NOUN
is AUX
a DET
very ADV
new ADJ
arrival NOUN
on ADP
the DET
medical ADJ
scene(and NOUN
a DET
very ADV
important ADJ
one NUM
) PUNCT
. PUNCT
  SPACE
The DET
lack NOUN
of ADP
proof NOUN
that DET
reinnoculation NOUN
with ADP
good ADJ
bacteria NOUN
after ADP
antibiotic ADJ
use NOUN
is AUX
important ADJ
to ADP
the DET
health NOUN
of ADP
a DET
patient NOUN
is AUX
no DET
reason NOUN
to PART
dismiss VERB
it PRON
out ADP
- PUNCT
of ADP
- PUNCT
hand NOUN
, PUNCT
especially ADV
if SCONJ
reinnoculation NOUN
can AUX
be AUX
done VERB
cleaply NOUN
and CCONJ
safely(like CCONJ
it PRON
is AUX
in ADP
animal NOUN
husbandry).Marty PROPN
B.Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59334From NUM
: PUNCT
FOO@MHFOO.PC.MY NUM
( PUNCT
Dr. PROPN
Foo PROPN
Meng PROPN
How)Subject NOUN
: PUNCT
How ADV
to PART
gain VERB
access?To PROPN
Whomever PROPN
who PRON
can AUX
help VERB
me PRON
, PUNCT
	 SPACE
I PRON
am AUX
a DET
doctor NOUN
from ADP
Kota PROPN
Bharu PROPN
, PUNCT
Kelantan PROPN
, PUNCT
Malaysia PROPN
. PUNCT
I PRON
have AUX
recently ADV
hooked VERB
up ADP
my PRON
private ADJ
home NOUN
computer NOUN
to PART
EMail NOUN
via ADP
the DET
local ADJ
telephone NOUN
company NOUN
. PUNCT
I PRON
am AUX
really ADV
interestedin PROPN
corresponding VERB
with ADP
other ADJ
Doctors NOUN
or CCONJ
medical ADJ
researchers NOUN
through ADP
Email PROPN
. PUNCT
I PRON
also ADV
hopeto VERB
be VERB
able ADJ
to PART
subscribe VERB
to ADP
a DET
news NOUN
network NOUN
on ADP
medicine NOUN
. PUNCT
Can AUX
someone PRON
please INTJ
tell VERB
me PRON
what PRON
I PRON
should AUX
do AUX
? PUNCT
I PRON
am AUX
completely ADV
new ADJ
to ADP
this DET
and CCONJ
have AUX
no DET
idea NOUN
about ADP
the DET
vast ADJ
capabilities NOUN
of ADP
Email PROPN
. PUNCT
Thank VERB
you PRON
for ADP
your PRON
attention NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59335From NUM
: PUNCT
plebrun@minf.vub.ac.be PROPN
( PUNCT
Philippe PROPN
Lebrun)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
, PUNCT
stephen@mont.cs.missouri.edu PRON
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:| PROPN
> X
When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident| PROPN
> X
in ADP
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having| ADV
> X
sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm| PROPN
> X
cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.| PROPN
> X
| NOUN
> X
Was AUX
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually| PROPN
> X
occur?Sperm NOUN
deposited VERB
near SCONJ
the DET
entrance NOUN
of ADP
the DET
vagina PROPN
has AUX
been AUX
known VERB
to ADP
causepregnancy NOUN
, PUNCT
even ADV
in ADP
the DET
presence NOUN
of ADP
a DET
hymen NOUN
. PUNCT
I PRON
doubt VERB
that DET
sperm NOUN
could AUX
make VERB
it PRON
through ADP
a DET
layer NOUN
of ADP
cloth NOUN
then ADV
find VERB
the DET
right ADJ
path NOUN
to ADP
a DET
waiting NOUN
ovum ADV
, PUNCT
but CCONJ
it PRON
might AUX
be AUX
possible ADJ
. PUNCT
So ADV
, PUNCT
it PRON
is AUX
possible ADJ
for ADP
a DET
woman NOUN
to PART
be AUX
both DET
virgin ADJ
and CCONJ
pregnant ADJ
. PUNCT
Also ADV
, PUNCT
some DET
hymens NOUN
are AUX
sufficiently ADV
loose ADJ
to PART
allow VERB
near ADV
- PUNCT
normal ADJ
intercoursewithout NOUN
rupturing VERB
. PUNCT
The DET
problem NOUN
when ADV
investigating VERB
these DET
phenomenae NOUN
is AUX
, PUNCT
of ADP
course NOUN
, PUNCT
getting VERB
an DET
honest ADJ
account NOUN
of ADP
what PRON
exactly ADV
happened.-philippeNewsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59336From NUM
: PUNCT
plebrun@minf.vub.ac.be PROPN
( PUNCT
Philippe PROPN
Lebrun)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Frozen ADJ
shoulder NOUN
and CCONJ
lawn NOUN
mowingIn PROPN
article NOUN
< X
1993Apr23.213823.11738@ux1.cts.eiu.edu NUM
> X
, PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes:| PROPN
> X
Ihave PROPN
had AUX
a DET
frozen ADJ
shoulder NOUN
for ADP
over ADP
a DET
year NOUN
or CCONJ
about ADV
a DET
year NOUN
. PUNCT
  SPACE
It PRON
is AUX
still| PROPN
> X
partially ADV
frozen VERB
, PUNCT
and CCONJ
I PRON
am AUX
still ADV
in ADP
physical ADJ
therapy NOUN
every DET
week NOUN
. PUNCT
  SPACE
But CCONJ
the| PROPN
> X
pain NOUN
has AUX
subsided VERB
almost ADV
completely ADV
. PUNCT
  SPACE
UNTIL ADP
last ADJ
week NOUN
when ADV
I PRON
mowed VERB
the| PROPN
> X
lawn NOUN
for ADP
twenty NUM
minutes NOUN
each DET
, PUNCT
two NUM
days NOUN
in ADP
a DET
row NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
push NOUN
type NOUN
power| NOUN
> X
mower NOUN
. PUNCT
  SPACE
The DET
pain NOUN
started VERB
back ADV
up ADP
a DET
little ADJ
bit NOUN
for ADP
the DET
first ADJ
time NOUN
in ADP
quite| PROPN
> X
a DET
while NOUN
, PUNCT
and CCONJ
I PRON
used VERB
ice NOUN
and CCONJ
medicine NOUN
again ADV
. PUNCT
  SPACE
Can AUX
anybody PRON
explain VERB
why ADV
this| PROPN
> X
particular ADJ
activity NOUN
, PUNCT
which PRON
does AUX
not PART
seem VERB
to PART
stress VERB
me PRON
very ADV
much ADV
generally,| NOUN
> X
should AUX
cause VERB
this DET
shoulder NOUN
problem?You NOUN
need VERB
to PART
use VERB
your PRON
shoulder NOUN
muscles NOUN
to PART
push VERB
the DET
mower NOUN
. PUNCT
If SCONJ
you PRON
have AUX
n't PART
beendoing VERB
much ADJ
exercise NOUN
, PUNCT
as SCONJ
I PRON
suppose VERB
you PRON
have AUX
n't PART
, PUNCT
then ADV
a DET
constant ADJ
20 NUM
minutelong ADJ
effort NOUN
can AUX
cause VERB
stiffness NOUN
and CCONJ
cramps.-philippeNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59337From NUM
: PUNCT
" PUNCT
nigel PROPN
allen PROPN
" PUNCT
< X
nigel.allen@canrem.com>Subject PROPN
: PUNCT
Occupational PROPN
Injuries PROPN
and CCONJ
Disease PROPN
: PUNCT
Workers PROPN
Memorial PROPN
DayHere PROPN
is AUX
a DET
press NOUN
release NOUN
from ADP
the DET
American PROPN
Federation PROPN
of ADP
State PROPN
, PUNCT
County PROPN
and CCONJ
Municipal PROPN
Employees PROPN
. PUNCT
Unions NOUN
Point NOUN
To ADP
Deadly PROPN
Workplaces PROPN
; PUNCT
AFSCME PROPN
, PUNCT
Other ADJ
UnionsCommemorate PROPN
Workers PROPN
Memorial PROPN
Day PROPN
To ADP
: PUNCT
National PROPN
Desk PROPN
, PUNCT
Labor PROPN
Writer PROPN
Contact PROPN
: PUNCT
Janet PROPN
Rivera PROPN
of ADP
the DET
American PROPN
Federation PROPN
of ADP
State PROPN
, PUNCT
Countyand PROPN
Municipal PROPN
Employees PROPN
, PUNCT
AFL PROPN
- PUNCT
CIO PROPN
, PUNCT
202 NUM
- PUNCT
429 NUM
- PUNCT
1130 NUM
   SPACE
WASHINGTON PROPN
, PUNCT
April PROPN
23 NUM
-- PUNCT
The DET
American PROPN
Federation PROPN
of ADP
State PROPN
, PUNCT
County PROPN
and CCONJ
Municipal PROPN
Employees PROPN
( PUNCT
AFSCME PROPN
) PUNCT
and CCONJ
other ADJ
unionsof NOUN
the DET
AFL PROPN
- PUNCT
CIO PROPN
on ADP
Wednesday PROPN
, PUNCT
April PROPN
28 NUM
, PUNCT
will AUX
commemorate VERB
the DET
fifthannual ADJ
Workers PROPN
Memorial PROPN
Day PROPN
-- PUNCT
a DET
day NOUN
to PART
pay VERB
homage NOUN
to ADP
the DET
6million NUM
workers NOUN
who PRON
are AUX
killed VERB
, PUNCT
injured VERB
, PUNCT
or CCONJ
diseased VERB
on ADP
the DET
job NOUN
. PUNCT
   SPACE
This DET
year NOUN
, PUNCT
AFSCME PROPN
will AUX
focus VERB
its PRON
Workers PROPN
Memorial PROPN
Day PROPN
efforts NOUN
anthe VERB
dangerous ADJ
environment NOUN
in ADP
which PRON
corrections VERB
officers NOUN
must AUX
work VERB
. PUNCT
Earlier ADV
this DET
month NOUN
, PUNCT
an DET
AFSCME PROPN
corrections NOUN
officer NOUN
, PUNCT
RobertVallandingham PROPN
, PUNCT
was AUX
killed VERB
by ADP
inmates NOUN
who PRON
overtook VERB
the DET
correctionsfacility NOUN
in ADP
Lucasville PROPN
, PUNCT
Ohio PROPN
. PUNCT
   SPACE
The DET
law NOUN
and CCONJ
order NOUN
agenda NOUN
of ADP
the DET
1980s NUM
has AUX
resulted VERB
in ADP
a DET
steadyincrease NOUN
in ADP
the DET
prison NOUN
population NOUN
for ADP
the DET
past ADJ
five NUM
years NOUN
. PUNCT
  SPACE
OnJn PROPN
. PROPN
1 NUM
, PUNCT
1992 NUM
, PUNCT
the DET
prison NOUN
population NOUN
was AUX
709,587 NUM
. PUNCT
Projectionsshow VERB
a DET
continued VERB
increase NOUN
in ADP
the DET
number NOUN
of ADP
inmates NOUN
, PUNCT
with ADP
anexpected VERB
prison NOUN
population NOUN
of ADP
811,253 NUM
in ADP
1994 NUM
. PUNCT
   SPACE
The DET
conditions NOUN
which PRON
this DET
burgeoning VERB
prison NOUN
population NOUN
hascreated VERB
for ADP
corrections NOUN
officers NOUN
is AUX
partially ADV
reflected VERB
in ADP
thenumber NOUN
of ADP
assaults NOUN
by ADP
inmates NOUN
against ADP
staff NOUN
. PUNCT
  SPACE
Assaults NOUN
againststaff NOUN
increased VERB
dramatically ADV
between ADP
1987 NUM
and CCONJ
1989 NUM
, PUNCT
and CCONJ
remainhigh PROPN
. PUNCT
  SPACE
In ADP
1987 NUM
, PUNCT
there PRON
were AUX
808 NUM
assaults NOUN
by ADP
inmates NOUN
against ADP
staff NOUN
, PUNCT
compared VERB
to ADP
9,961 NUM
such ADJ
assaults NOUN
in ADP
1991 NUM
. PUNCT
   SPACE
The DET
increased VERB
number NOUN
of ADP
inmates NOUN
has AUX
brought VERB
on ADP
the DET
dangerouscombination NOUN
of ADP
overcrowding ADJ
and CCONJ
understaffing NOUN
. PUNCT
  SPACE
For ADP
example NOUN
in ADP
Ohioofficer PROPN
- PUNCT
to ADP
- PUNCT
inmate NOUN
ratio NOUN
is AUX
1 NUM
to ADP
8.4 NUM
-- PUNCT
the DET
second ADV
worst ADJ
ratio NOUN
inthe DET
nation NOUN
. PUNCT
The DET
national ADJ
average NOUN
is AUX
1 NUM
to ADP
5.3 NUM
. PUNCT
  SPACE
Other ADJ
health NOUN
andsafety NOUN
issues NOUN
facing VERB
corrections NOUN
officers NOUN
include VERB
AIDS PROPN
, PUNCT
HepatitisB PROPN
, PUNCT
tuberculosis NOUN
, PUNCT
stress NOUN
, PUNCT
and CCONJ
chemical NOUN
hazards NOUN
. PUNCT
   SPACE
AFSCME PROPN
has AUX
more ADJ
than SCONJ
50,000 NUM
members NOUN
who PRON
work VERB
in ADP
the DET
nation'sfederal ADJ
, PUNCT
state NOUN
and CCONJ
local ADJ
correctional ADJ
facilities NOUN
. PUNCT
   SPACE
Correction NOUN
officers NOUN
are AUX
not PART
alone ADJ
in ADP
performing VERB
their PRON
jobs NOUN
underlife NOUN
- PUNCT
threatening VERB
conditions NOUN
. PUNCT
  SPACE
Every DET
year NOUN
, PUNCT
10,000 NUM
American ADJ
workersdie NOUN
from ADP
job NOUN
- PUNCT
related VERB
injuries NOUN
, PUNCT
and CCONJ
tens NOUN
of ADP
thousands NOUN
more ADJ
die VERB
fromoccupational ADJ
disease NOUN
. PUNCT
  SPACE
Public ADJ
employees NOUN
do AUX
some DET
of ADP
the DET
nation'smost ADJ
dangerous ADJ
jobs NOUN
. PUNCT
Perilous ADJ
occupations NOUN
include VERB
: PUNCT
   SPACE
-- PUNCT
Highway PROPN
Workers PROPN
- PUNCT
Highway PROPN
workers NOUN
are AUX
often ADV
injured VERB
and CCONJ
      SPACE
frequently ADV
killed VERB
by ADP
moving VERB
traffic NOUN
because SCONJ
work NOUN
zones NOUN
are AUX
      SPACE
not PART
barricaded VERB
or CCONJ
do AUX
n't PART
have AUX
proper ADJ
lighting NOUN
. PUNCT
   SPACE
-- PUNCT
Health PROPN
Care PROPN
Workers PROPN
- PUNCT
Hospitals PROPN
have AUX
the DET
highest ADJ
number NOUN
of ADP
      SPACE
job NOUN
- PUNCT
related VERB
injuries NOUN
and CCONJ
illnesses NOUN
of ADP
any DET
private ADJ
sector NOUN
      SPACE
employer NOUN
and CCONJ
nursing NOUN
homes NOUN
ranked VERB
fifth ADJ
. PUNCT
  SPACE
There PRON
were AUX
more ADJ
      SPACE
than SCONJ
325,000 NUM
job NOUN
- PUNCT
related VERB
illnesses NOUN
and CCONJ
injuries NOUN
in ADP
private ADJ
      SPACE
sector NOUN
hospitals NOUN
in ADP
1991 NUM
, PUNCT
up ADV
almost ADV
10 NUM
percent NOUN
over ADP
the DET
      SPACE
previous ADJ
year NOUN
. PUNCT
  SPACE
It PRON
is AUX
generally ADV
believed VERB
that SCONJ
health NOUN
care NOUN
      SPACE
workers NOUN
employed VERB
at ADP
public ADJ
sector NOUN
hospitals NOUN
and CCONJ
nursing NOUN
homes NOUN
      SPACE
have AUX
a DET
significantly ADV
higher ADJ
rate NOUN
of ADP
injuries NOUN
and CCONJ
illnesses NOUN
      SPACE
than SCONJ
do AUX
their PRON
private ADJ
sector NOUN
counterparts NOUN
. PUNCT
  SPACE
Health PROPN
and CCONJ
safety PROPN
      SPACE
issues NOUN
facing VERB
health NOUN
care NOUN
workers NOUN
include VERB
exposure NOUN
to ADP
      SPACE
tuberculosis NOUN
and CCONJ
the DET
HIV PROPN
virus NOUN
, PUNCT
back ADJ
injuries NOUN
, PUNCT
and CCONJ
high ADJ
      SPACE
levels NOUN
of ADP
stress NOUN
. PUNCT
   SPACE
-- PUNCT
Social PROPN
Workers PROPN
- PUNCT
Social ADJ
workers NOUN
who PRON
work VERB
in ADP
mental ADJ
health NOUN
      SPACE
institutions NOUN
are AUX
often ADV
the DET
victims NOUN
of ADP
assaults NOUN
and CCONJ
, PUNCT
      SPACE
sometimes ADV
, PUNCT
fatal ADJ
attacks NOUN
. PUNCT
  SPACE
For ADP
instance NOUN
, PUNCT
last ADJ
October PROPN
, PUNCT
a DET
man NOUN
      SPACE
carrying VERB
a DET
semiautomatic ADJ
handgun NOUN
walked VERB
into ADP
the DET
Schuyler PROPN
      SPACE
County PROPN
Social PROPN
Services PROPN
Building PROPN
in ADP
Watkins PROPN
Glenn PROPN
, PUNCT
N.Y. PROPN
      SPACE
and CCONJ
fatally ADV
shot VERB
social ADJ
services NOUN
workers NOUN
, PUNCT
before ADP
turning VERB
the DET
      SPACE
gun NOUN
on ADP
himself PRON
. PUNCT
  SPACE
There PRON
are AUX
two NUM
basic ADJ
problems NOUN
. PUNCT
  SPACE
First PROPN
is AUX
a DET
      SPACE
growing VERB
lack NOUN
of ADP
support NOUN
services NOUN
for ADP
people NOUN
who PRON
do AUX
n't PART
have AUX
      SPACE
the DET
help NOUN
they PRON
need VERB
. PUNCT
  SPACE
Because SCONJ
workers NOUN
are AUX
overworked VERB
, PUNCT
some DET
      SPACE
clients NOUN
are AUX
not PART
given VERB
the DET
adequate ADJ
amount NOUN
of ADP
counselling NOUN
. PUNCT
      SPACE
Such ADJ
conditions NOUN
may AUX
cause VERB
clients NOUN
to PART
become VERB
more ADV
frustrated ADJ
. PUNCT
      SPACE
The DET
" PUNCT
quality NOUN
" PUNCT
of ADP
the DET
clients NOUN
is AUX
also ADV
becoming VERB
more ADV
violent ADJ
, PUNCT
      SPACE
as SCONJ
more ADJ
are AUX
moved VERB
out SCONJ
of ADP
the DET
institutions NOUN
. PUNCT
   SPACE
Nearly ADV
2 NUM
million NUM
workers NOUN
have AUX
been AUX
killed VERB
by ADP
workplace PROPN
hazardssince NOUN
OSHA PROPN
was AUX
passed VERB
. PUNCT
  SPACE
Moreover ADV
, PUNCT
as SCONJ
AFSCME PROPN
President PROPN
Gerald PROPN
W.McEntee PROPN
explains VERB
, PUNCT
OSHA PROPN
does AUX
not PART
provide VERB
workplace NOUN
safetyprotections NOUN
for ADP
public ADJ
employees NOUN
. PUNCT
   SPACE
" PUNCT
More ADJ
than SCONJ
1,600 NUM
public ADJ
employees NOUN
are AUX
killed VERB
each DET
year NOUN
on ADP
thejob PROPN
, PUNCT
yet ADV
27 NUM
states NOUN
still ADV
provide VERB
no DET
federally ADV
- PUNCT
approved VERB
OSHAcoverage NOUN
for ADP
public ADJ
employees NOUN
, PUNCT
" PUNCT
said VERB
McEntee PROPN
. PUNCT
  SPACE
" PUNCT
This DET
, PUNCT
despite SCONJ
thefact NOUN
that SCONJ
public ADJ
employees NOUN
-- PUNCT
highway NOUN
workers NOUN
, PUNCT
health NOUN
care NOUN
workers NOUN
, PUNCT
corrections NOUN
officers NOUN
, PUNCT
to PART
name VERB
but CCONJ
a DET
few ADJ
-- PUNCT
do AUX
some DET
of ADP
the DET
mostdangerous ADJ
work NOUN
in ADP
our PRON
society NOUN
. PUNCT
  SPACE
This DET
year NOUN
we PRON
are AUX
fighting VERB
forpassage NOUN
of ADP
OSHA PROPN
reform NOUN
legislation NOUN
to PART
give VERB
all DET
workers NOUN
greaterrights NOUN
and CCONJ
protections NOUN
, PUNCT
and CCONJ
finally ADV
guarantee VERB
all DET
public ADJ
employeessafe NOUN
workplaces NOUN
. PUNCT
  SPACE
We PRON
need VERB
the DET
public ADJ
support NOUN
to PART
be AUX
successful ADJ
. PUNCT
" PUNCT
   SPACE
Government PROPN
workers NOUN
suffer VERB
25 NUM
percent NOUN
more ADJ
injuries NOUN
than SCONJ
privatesector NOUN
workers NOUN
, PUNCT
and CCONJ
these DET
injuries NOUN
are AUX
almost ADV
75 NUM
percent NOUN
moresevere NOUN
. PUNCT
   SPACE
Public ADJ
employees NOUN
were AUX
exempted VERB
from ADP
OSHA PROPN
when ADV
the DET
law NOUN
was AUX
passedin PROPN
1970 NUM
and CCONJ
today NOUN
, PUNCT
public ADJ
employees NOUN
in ADP
more ADJ
than SCONJ
half DET
the DET
stateshave NOUN
no DET
OSHA PROPN
coverage NOUN
. PUNCT
-30 PROPN
- PUNCT
--Canada PUNCT
Remote PROPN
Systems PROPN
- PUNCT
Toronto PROPN
, PUNCT
Ontario416 PROPN
- PUNCT
629 NUM
- PUNCT
7000/629 NUM
- PUNCT
7044Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59338From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
nodrog@hardy.u.washington.edu NOUN
( PUNCT
Gordon PROPN
Rubenfeld PROPN
) PUNCT
writes VERB
: PUNCT
> X
  SPACE
Marty PROPN
, PUNCT
you PRON
've AUX
also ADV
changed VERB
the DET
terrain NOUN
of ADP
the DET
discussion NOUN
from ADP
empiric ADJ
> X
itraconazole NOUN
for ADP
undocumented ADJ
chronic ADJ
fungal PROPN
sinusitis NOUN
with ADP
systemic ADJ
> X
hypersensitivity NOUN
symptoms NOUN
( PUNCT
Noring VERB
syndrome NOUN
) PUNCT
to ADP
the DET
yoghurt PROPN
and CCONJ
vitamin PROPN
> X
therapy NOUN
of ADP
undocumented ADJ
candida PROPN
enteritis PROPN
( PUNCT
Elaine PROPN
Palmer PROPN
syndrome NOUN
) PUNCT
with ADP
> X
systemic ADJ
symptoms NOUN
. PUNCT
  SPACE
There PRON
is AUX
significant ADJ
difference NOUN
between ADP
the DET
cost NOUN
and CCONJ
> X
risk NOUN
of ADP
these DET
two NUM
empiric ADJ
therapeutic ADJ
trials NOUN
. PUNCT
  SPACE
Are AUX
we PRON
talking VERB
about ADP
" PUNCT
real">candida PROPN
infections NOUN
, PUNCT
the DET
whole ADJ
" PUNCT
yeast NOUN
connection NOUN
" PUNCT
hypothesis NOUN
, PUNCT
the DET
efficacy NOUN
> X
of ADP
routine ADJ
bacterial ADJ
repopulation NOUN
in ADP
humans NOUN
, PUNCT
or CCONJ
the DET
ability NOUN
of ADP
anecdotally ADV
> X
effective ADJ
therapies NOUN
( PUNCT
challenged VERB
by ADP
a DET
negative ADJ
randomized VERB
trial NOUN
) PUNCT
to PART
confirm VERB
> X
an DET
etiologic ADJ
hypothesis NOUN
( PUNCT
post X
hoc X
ergo PROPN
propter PROPN
hoc PROPN
) PUNCT
. PUNCT
  SPACE
We PRON
ca AUX
n't PART
seem VERB
to PART
> X
focus VERB
in ADP
on ADP
a DET
disease NOUN
, PUNCT
a DET
therapy NOUN
, PUNCT
or CCONJ
a DET
hypothesis NOUN
under ADP
discussion NOUN
. PUNCT
> X
          SPACE
> X
                           SPACE
I PRON
'm AUX
lost!Point NOUN
1 NUM
: PUNCT
I'm NOUN
beginning VERB
to PART
see VERB
that DET
* PUNCT
part NOUN
* PUNCT
of ADP
the DET
disagreements NOUN
about ADP
the DET
whole"yeast PROPN
issue NOUN
" PUNCT
is AUX
on ADP
differing VERB
perceptions NOUN
and CCONJ
on ADP
differing VERB
meaningsof ADJ
words NOUN
. PUNCT
  SPACE
Medical ADJ
doctors NOUN
have AUX
a DET
very ADV
specific ADJ
and CCONJ
specialized ADJ
" PUNCT
jargon",necessary PROPN
for ADP
precise ADJ
communication NOUN
within ADP
their PRON
field NOUN
( PUNCT
which PRON
I PRON
'm AUX
fullycognizant ADJ
of ADP
since SCONJ
I PRON
, PUNCT
too ADV
, PUNCT
speak VERB
" PUNCT
jargonese ADJ
" PUNCT
when ADV
with ADP
my PRON
peers NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
thesituation NOUN
in ADP
sci.med VERB
, PUNCT
many ADJ
times NOUN
the DET
words NOUN
or CCONJ
phrases NOUN
used VERB
by ADP
doctors NOUN
canhave VERB
a DET
different ADJ
and CCONJ
more ADV
specific ADJ
meaning NOUN
than SCONJ
the DET
same ADJ
word NOUN
used VERB
in ADP
theworld NOUN
at ADP
large ADJ
, PUNCT
causing VERB
significant ADJ
miscommunication NOUN
. PUNCT
  SPACE
One NUM
example NOUN
word NOUN
, PUNCT
and CCONJ
very ADV
relevant ADJ
to ADP
the DET
yeast NOUN
discussion NOUN
, PUNCT
is AUX
the DET
exact ADJ
meaning NOUN
of ADP
" PUNCT
systemic" NOUN
. PUNCT
It PRON
is AUX
now ADV
obvious ADJ
to ADP
me PRON
that SCONJ
the DET
meaning NOUN
of ADP
this DET
word NOUN
is AUX
very ADV
specific ADJ
, PUNCT
muchmore ADV
so ADV
than SCONJ
its PRON
meaning NOUN
to ADP
a DET
non ADJ
- ADJ
doctor ADJ
. PUNCT
  SPACE
There PRON
is AUX
also ADV
the DET
observation NOUN
ofthis PRON
newsgroup NOUN
that SCONJ
both DET
doctors NOUN
and CCONJ
non NOUN
- NOUN
doctors NOUN
come VERB
together ADV
on ADP
essentiallyequal ADJ
terms NOUN
, PUNCT
which PRON
, PUNCT
when ADV
combined VERB
with ADP
the DET
jargon PROPN
issue NOUN
, PUNCT
can AUX
further VERB
fanthe VERB
flames NOUN
. PUNCT
  SPACE
This DET
is AUX
probably ADV
the DET
first ADJ
time NOUN
that SCONJ
practicing VERB
doctors NOUN
getreally ADV
" PUNCT
beat VERB
up ADP
" PUNCT
by ADP
non NOUN
- NOUN
doctors NOUN
for ADP
their PRON
views NOUN
on ADP
medicine NOUN
, PUNCT
which PRON
theyotherwise NOUN
do AUX
n't PART
see VERB
much ADJ
of ADP
in ADP
their PRON
practice NOUN
except SCONJ
for ADP
the DET
occasional"difficult ADJ
" PUNCT
patient ADJ
. PUNCT
Point NOUN
2 NUM
: PUNCT
I PRON
understand VERB
the DET
viewpoint NOUN
among ADP
many ADJ
practicing VERB
doctors NOUN
that SCONJ
they PRON
will AUX
notprescribe VERB
any DET
treatments NOUN
/ SYM
therapies NOUN
for ADP
their PRON
patients NOUN
unless SCONJ
such ADJ
treatmentshave NOUN
been AUX
shown VERB
to PART
be AUX
effective ADJ
and CCONJ
the DET
risks NOUN
understood VERB
from ADP
well ADV
- PUNCT
constructedclinical ADJ
trials NOUN
( PUNCT
usually ADV
double ADJ
- PUNCT
blind ADJ
) PUNCT
, PUNCT
or CCONJ
that SCONJ
such ADJ
treatments NOUN
/ SYM
therapies NOUN
arepart NOUN
of ADP
an DET
approved VERB
and CCONJ
funded VERB
clinical ADJ
trial NOUN
. PUNCT
  SPACE
To ADP
these DET
doctors NOUN
, PUNCT
to PART
do AUX
anydifferently ADV
would AUX
, PUNCT
in ADP
this DET
belief NOUN
system NOUN
, PUNCT
be AUX
unethical ADJ
practice NOUN
. PUNCT
  SPACE
And CCONJ
itfollows VERB
that SCONJ
any DET
therapy NOUN
not PART
on ADP
the DET
" PUNCT
accepted VERB
" PUNCT
list NOUN
is AUX
therefore ADV
a DET
non ADJ
- ADJ
therapy ADJ
- PUNCT
it PRON
does AUX
not PART
even ADV
exist VERB
, PUNCT
nor CCONJ
does AUX
the DET
underlying ADJ
hypothesis NOUN
ortheory NOUN
have AUX
any DET
validity NOUN
, PUNCT
even ADV
if SCONJ
it PRON
sounds VERB
very ADV
plausible ADJ
by ADP
extrapolationof PROPN
what PRON
is AUX
currently ADV
known VERB
. PUNCT
  SPACE
Anecdotal ADJ
evidence NOUN
has AUX
no DET
value NOUN
, PUNCT
either ADV
, PUNCT
froma ADJ
treatment NOUN
point NOUN
- PUNCT
of ADP
- PUNCT
view NOUN
. PUNCT
And CCONJ
by ADV
and CCONJ
large ADJ
, PUNCT
as SCONJ
a DET
scientist NOUN
myself PRON
, PUNCT
I PRON
am AUX
glad ADJ
that SCONJ
medical ADJ
practice NOUN
/ SYM
science NOUN
takes VERB
such DET
a DET
rigorous ADJ
approach NOUN
to ADP
medical ADJ
treatment NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
asalso NOUN
being AUX
a DET
human ADJ
being NOUN
( PUNCT
last ADJ
I PRON
checked VERB
) PUNCT
, PUNCT
and CCONJ
having VERB
been AUX
one NUM
of ADP
those DET
peoplethat NOUN
has AUX
been AUX
significantly ADV
helped VERB
by ADP
a DET
currently ADV
unaccepted ADJ
treatment NOUN
, PUNCT
where"standard PROPN
" PUNCT
medicine NOUN
was AUX
not PART
able ADJ
to PART
help VERB
me PRON
, PUNCT
has AUX
caused VERB
me PRON
to PART
sit VERB
back ADV
andwonder ADV
if SCONJ
holding VERB
such DET
an DET
extreme ADJ
and CCONJ
rigid ADJ
" PUNCT
scientific ADJ
" PUNCT
viewpoint NOUN
is AUX
initself PRON
unethical ADJ
from ADP
humanitarian ADJ
considerations NOUN
. PUNCT
  SPACE
After ADV
all ADV
, PUNCT
the DET
underlyingintent NOUN
of ADP
the DET
" PUNCT
scientific ADJ
" PUNCT
approach NOUN
to ADP
medicine NOUN
is AUX
to PART
protect VERB
the DET
health NOUN
ofthe NOUN
patient NOUN
by ADP
providing VERB
the DET
best ADJ
possible ADJ
care NOUN
for ADP
the DET
patient NOUN
, PUNCT
so ADV
thepatient ADJ
should AUX
come VERB
first ADV
when ADV
considering VERB
treatment NOUN
. PUNCT
What PRON
we PRON
need VERB
is AUX
a DET
slightly ADV
modified VERB
approach NOUN
to ADP
treatment NOUN
that PRON
satisfies VERB
boththe NOUN
" PUNCT
scientific ADJ
" PUNCT
and CCONJ
the DET
" PUNCT
humanitarian ADJ
" PUNCT
viewpoints NOUN
. PUNCT
  SPACE
In ADP
an DET
earlier ADJ
post NOUN
Ioutlined VERB
a DET
crazy ADJ
idea NOUN
for ADP
doing VERB
just ADV
that DET
. PUNCT
  SPACE
The DET
gist NOUN
of ADP
it PRON
was AUX
to PART
give VERB
anyphysician ADJ
freedom NOUN
and CCONJ
encouragement NOUN
by ADP
the DET
medical ADJ
community NOUN
to PART
prescribealternate VERB
, PUNCT
not PART
yet ADV
proven VERB
therapies NOUN
( PUNCT
maybe ADV
supported VERB
by ADP
anecdotal ADJ
evidence)for PROPN
patients NOUN
who PRON
* PUNCT
all DET
* PUNCT
avenues NOUN
of ADP
accepted VERB
therapies NOUN
have AUX
been AUX
exhausted(and NUM
not PART
until ADP
then ADV
) PUNCT
. PUNCT
  SPACE
The DET
patient NOUN
would AUX
be AUX
fully ADV
informed VERB
that SCONJ
suchtherapies NOUN
/ SYM
treatments NOUN
are AUX
not PART
supported VERB
by ADP
the DET
proper ADJ
clinical ADJ
trials NOUN
and CCONJ
thatthere NOUN
are AUX
real ADJ
potential ADJ
risks NOUN
with ADP
real ADJ
possibilities NOUN
of ADP
no DET
benefit NOUN
derivedfrom ADP
them PRON
. PUNCT
This DET
approach NOUN
satisfies VERB
the DET
need NOUN
for ADP
scientific ADJ
rigor NOUN
. PUNCT
  SPACE
It PRON
also ADV
satisfiesthe VERB
humanitarian ADJ
needs NOUN
of ADP
the DET
patient NOUN
. PUNCT
  SPACE
And CCONJ
the DET
reality NOUN
is AUX
that SCONJ
many ADJ
patientswho PROPN
have AUX
reached VERB
a DET
dead ADJ
- PUNCT
end NOUN
in ADP
the DET
treatment NOUN
of ADP
their PRON
symptoms NOUN
using VERB
acceptedmedicine NOUN
* PUNCT
will AUX
* PUNCT
go VERB
outside ADP
the DET
orthodox ADJ
medical ADJ
community NOUN
: PUNCT
  SPACE
either CCONJ
to ADP
thedoctors NOUN
who PRON
are AUX
brave ADJ
enough ADV
to PART
prescribe VERB
such ADJ
treatments NOUN
at ADP
the DET
risk NOUN
of ADP
losingtheir ADJ
license NOUN
, PUNCT
or CCONJ
worse ADJ
, PUNCT
to ADP
non NOUN
- NOUN
doctors NOUN
who PRON
have AUX
not PART
had VERB
the DET
proper ADJ
medicaltraining NOUN
. PUNCT
  SPACE
This DET
approach NOUN
also ADV
recognizes VERB
this DET
reality NOUN
and CCONJ
keeps VERB
the DET
controlmore NOUN
within ADP
orthodox ADJ
medicine NOUN
, PUNCT
with ADP
the DET
benefits NOUN
that PRON
the DET
information NOUN
gleanedcould AUX
help VERB
focus VERB
limited ADJ
resources NOUN
towards ADP
future ADJ
clinical ADJ
trials NOUN
in ADP
the DET
mostproductive ADJ
way NOUN
. PUNCT
  SPACE
Everybody PRON
wins VERB
in ADP
this DET
admittedly ADV
rose VERB
- PUNCT
colored VERB
approach NOUN
- PUNCT
I'msure PROPN
there PRON
are AUX
real ADJ
problems NOUN
with ADP
this DET
approach NOUN
as SCONJ
well ADV
- PUNCT
it PRON
is AUX
presentedmore ADJ
as SCONJ
a DET
strawman NOUN
to PART
stimulate VERB
discussion NOUN
. PUNCT
Hopefully ADV
what PRON
I PRON
write VERB
here ADV
may AUX
give VERB
the DET
sci.med VERB
doctors NOUN
a DET
better ADJ
idea NOUN
as SCONJ
towhy ADV
I PRON
am AUX
" PUNCT
open ADJ
" PUNCT
to ADP
alternative ADJ
therapies NOUN
, PUNCT
as ADV
well ADV
as SCONJ
why ADV
I PRON
have AUX
realdifficulty NOUN
( PUNCT
read VERB
" PUNCT
apparent ADJ
hostility NOUN
" PUNCT
) PUNCT
with ADP
the DET
" PUNCT
coldness NOUN
" PUNCT
of ADP
the DET
99.9 NUM
% NOUN
pure"scientific PROPN
" PUNCT
approach NOUN
to ADP
medicine NOUN
. PUNCT
  SPACE
I PRON
believe VERB
the DET
best ADJ
approach NOUN
to ADP
medicaltreatment NOUN
is AUX
one NUM
where ADV
both DET
the DET
" PUNCT
humanitarian ADJ
" PUNCT
aspects NOUN
are AUX
balanced VERB
with ADP
andby PROPN
the DET
" PUNCT
scientific ADJ
" PUNCT
aspects NOUN
. PUNCT
  SPACE
Anything PRON
else ADV
is AUX
just ADV
not PART
good ADJ
medicine NOUN
, PUNCT
imho PROPN
. PUNCT
Just ADV
my PRON
' PUNCT
NF PROPN
' PART
leanings NOUN
, PUNCT
I PRON
guess VERB
. PUNCT
  SPACE
: PUNCT
^)Comments?Jon X
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59339From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
C63zF3.7n5@mentor.cc.purdue.edu NOUN
> X
scheiber@sage.cc.purdue.edu NUM
( PUNCT
Jennifer PROPN
Scheiber PROPN
) PUNCT
writes::In PROPN
article NOUN
< X
10030@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes::>Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
for:>pregnancy PUNCT
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
also:>artificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of:>"natural PROPN
" PUNCT
acts VERB
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen NOUN
is:>deposited PUNCT
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that's:>about ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talk:>to PUNCT
your PRON
biology NOUN
teacher NOUN
. PUNCT
: PUNCT
: PUNCT
what PRON
is AUX
the DET
likely ADJ
hood NOUN
of ADP
conception NOUN
if SCONJ
sperm NOUN
is AUX
deposited VERB
just ADV
outside ADV
: PUNCT
the DET
vagina PROPN
? PUNCT
  SPACE
ie PROPN
. PROPN
  SPACE
_ PROPN
_ PROPN
% NOUN
chance NOUN
. PUNCT
: PUNCT
-------------------------------------------------------------------------Hmmm X
.... PUNCT
I PRON
really ADV
do AUX
n't PART
know VERB
. PUNCT
  SPACE
Probably ADV
quite ADV
low ADJ
overall ADV
. PUNCT
  SPACE
Why ADV
do AUX
n't PART
weget VERB
a DET
couple NOUN
hundred NUM
willing ADJ
couples NOUN
together ADV
and CCONJ
find VERB
out ADP
; PUNCT
->-- PUNCT
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59340From NUM
: PUNCT
ebrandt@jarthur.claremont.edu PROPN
( PUNCT
Eli PROPN
Brandt)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
MMEYER.93Apr26102056@m2.dseg.ti.com X
> X
mmeyer@m2.dseg.ti.com PROPN
( PUNCT
Mark PROPN
Meyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Besides ADV
, PUNCT
Kirilian ADJ
photography NOUN
is AUX
actually ADV
photography NOUN
of ADP
my PRON
> X
friend NOUN
's PART
two NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
Kiril PROPN
. PUNCT
  SPACE
Perhaps ADV
you PRON
meant VERB
" PUNCT
Kirlian"?I PROPN
think VERB
it PRON
was AUX
a DET
typo NOUN
for ADP
" PUNCT
Karelian ADJ
photography NOUN
" PUNCT
, PUNCT
which PRON
is AUX
thepractice NOUN
of ADP
taking VERB
pictures NOUN
of ADP
either CCONJ
Finns PROPN
or CCONJ
Russians PROPN
, PUNCT
dependingon PROPN
whom PRON
one PRON
asks VERB
. PUNCT
   SPACE
Eli PROPN
   SPACE
ebrandt@jarthur.claremont.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59341From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr26.172836.1@vms.ocom.okstate.edu NOUN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>Neither PROPN
of ADP
these DET
bacteria NOUN
are AUX
obligate ADJ
anaerobes NOUN
with ADP
are AUX
> X
much ADV
more ADV
important ADJ
in ADP
dealing VERB
with ADP
the DET
diarrhea NOUN
problem NOUN
. PUNCT
THE DET
diarrhea NOUN
problem NOUN
? PUNCT
  SPACE
WHAT PRON
diarrhea NOUN
problem NOUN
? PUNCT
  SPACE
First ADV
, PUNCT
candidal ADJ
overgrowth NOUN
isnot NOUN
a DET
frequent ADJ
problem NOUN
during ADP
antibiotic ADJ
therapy NOUN
, PUNCT
and CCONJ
not PART
all DET
cases NOUN
ofantibiotic ADJ
- PUNCT
related VERB
diarrhea NOUN
have AUX
anything PRON
to PART
do AUX
with ADP
candida PROPN
. PUNCT
  SPACE
But CCONJ
a DET
caseof NOUN
vaginal ADJ
candidiasis NOUN
or CCONJ
oral ADJ
thrush NOUN
after ADP
antibiotic ADJ
therapy NOUN
is AUX
n't PART
goingto PROPN
surprise VERB
anyone PRON
either ADV
. PUNCT
  SPACE
That DET
's AUX
not PART
what PRON
people NOUN
are AUX
disagreeing VERB
with.>Anti NOUN
- PUNCT
fungals NOUN
, PUNCT
a DET
low ADJ
carbohydrate NOUN
diet NOUN
and CCONJ
vitamin NOUN
A NOUN
> NOUN
supplementation NOUN
may AUX
all DET
help VERB
to PART
minimize VERB
the DET
local ADJ
irritation NOUN
until ADP
the DET
> X
good ADJ
bacteria NOUN
can AUX
take VERB
over ADP
control NOUN
of ADP
the DET
food NOUN
supply NOUN
again ADV
and CCONJ
lower VERB
the DET
> X
pH NOUN
to PART
basically ADV
starve VERB
the DET
candida PROPN
out ADP
. PUNCT
Oh INTJ
, PUNCT
really ADV
? PUNCT
  SPACE
Where ADV
'd AUX
you PRON
come VERB
up ADP
with ADP
this DET
? PUNCT
  SPACE
You PRON
know VERB
, PUNCT
it PRON
's AUX
reallyappalling VERB
to PART
see VERB
you PRON
try VERB
to PART
comment VERB
authoritatively ADV
on ADP
clinical ADJ
mattersin NOUN
a DET
bizarre ADJ
synthesis NOUN
from ADP
reading VERB
reports NOUN
in ADP
the DET
literature NOUN
. PUNCT
Bobbing VERB
for ADP
citations NOUN
in ADP
the DET
research NOUN
literature NOUN
is AUX
n't PART
medicine NOUN
. PUNCT
I PRON
hope VERB
you PRON
're AUX
not PART
giving VERB
the DET
wrong ADJ
idea NOUN
to ADP
your PRON
medical ADJ
students.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59342From NUM
: PUNCT
klaus@ipri.go.jp PROPN
( PUNCT
Klaus PROPN
Hofmann;(6663))Subject NOUN
: PUNCT
cats NOUN
and CCONJ
pregnancyHello NOUN
, PUNCT
I PRON
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
whichcan PROPN
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?Thanks-- PROPN
Klaus PROPN
HofmannNational PROPN
Institute PROPN
of ADP
Materials PROPN
and CCONJ
Chemical PROPN
Research1 PROPN
- PUNCT
1 NUM
, PUNCT
Higashi PROPN
Tsukuba PROPN
, PUNCT
Ibaraki PROPN
305 NUM
, PUNCT
JapanNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59343From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Re ADP
: PUNCT
A DET
Good ADJ
place NOUN
for ADP
Back PROPN
Surgery?gary.schuetter NOUN
( PUNCT
garyws@cbnewsg.cb.att.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
	 SPACE
: PUNCT
         SPACE
Hello INTJ
, PUNCT
: PUNCT
         SPACE
Just ADV
one NUM
quick ADJ
question NOUN
: PUNCT
: PUNCT
         SPACE
My PRON
father NOUN
has AUX
had VERB
a DET
back ADJ
problem NOUN
for ADP
a DET
long ADJ
time NOUN
and CCONJ
doctors NOUN
: PUNCT
         SPACE
have AUX
diagnosed VERB
an DET
operation NOUN
is AUX
needed VERB
. PUNCT
Since SCONJ
he PRON
lives VERB
down ADP
in ADP
: PUNCT
         SPACE
Mexico PROPN
, PUNCT
he PRON
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
a DET
hospital NOUN
anywhere ADV
in ADV
: PUNCT
         SPACE
the DET
United PROPN
States PROPN
particulary NOUN
famous ADJ
for ADP
this DET
kind NOUN
of ADP
surgery NOUN
, PUNCT
: PUNCT
         SPACE
kind ADV
of ADV
like SCONJ
Houston PROPN
has AUX
a DET
reputation NOUN
for ADP
excellent ADJ
doctors NOUN
: PUNCT
         SPACE
in ADP
eye NOUN
surgery NOUN
. PUNCT
Any DET
additional ADJ
info NOUN
or CCONJ
pointers NOUN
will AUX
be AUX
: PUNCT
         SPACE
appreciated VERB
a DET
whole ADJ
lot! NOUN
... PUNCT
There PRON
is AUX
one NUM
hospital NOUN
that PRON
is AUX
here ADV
in ADP
New PROPN
York PROPN
City PROPN
that PRON
is AUX
famous ADJ
for ADP
itsorthopedists NOUN
, PUNCT
namely ADV
the DET
Hospital PROPN
for ADP
Special PROPN
Surgery PROPN
. PUNCT
They PRON
are AUX
located VERB
onthe PROPN
upper PROPN
east PROPN
side NOUN
of ADP
manhattan PROPN
. PUNCT
If SCONJ
you PRON
want VERB
their PRON
address NOUN
and CCONJ
phone NOUN
letme PROPN
know VERB
, PUNCT
i PRON
'll AUX
get AUX
them PRON
, PUNCT
i PRON
do AUX
nt PART
know VERB
them PRON
off ADP
hand.-- PROPN
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59344From NUM
: PUNCT
battin@cyclops.iucf.indiana.edu NOUN
( PUNCT
Laurence PROPN
Gene PROPN
Battin)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
E.A. PROPN
Story PROPN
( PUNCT
eas3714@ultb.isc.rit.edu PROPN
) PUNCT
wrote VERB
: PUNCT
> X
In ADP
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU PROPN
writes VERB
: PUNCT
> X
> X
Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It PRON
> X
> X
involves VERB
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the DET
> X
> X
subject NOUN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well ADV
> X
> X
with ADP
inanimate ADJ
objects NOUN
. PUNCT
> X
True ADJ
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
" PUNCT
corona ADJ
discharge"?No NOUN
. PUNCT
It PRON
's AUX
called VERB
" PUNCT
not PART
wiping VERB
off ADP
the DET
apparatus NOUN
after ADP
taking VERB
a DET
picture NOUN
of ADP
thewhole NOUN
leaf NOUN
. PUNCT
"Gene PUNCT
Battinbattin@cyclops.iucf.indiana.eduno PROPN
.sig PUNCT
yetNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59345From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Med NOUN
school NOUN
admissionhi NOUN
all ADV
, PUNCT
I PRON
ve VERB
applied VERB
for ADP
the DET
class NOUN
of ADP
93 NUM
at ADP
quite DET
a DET
number NOUN
of ADP
schools NOUN
( PUNCT
20)and NUM
have AUX
gotten VERB
13 NUM
rejects NOUN
, PUNCT
4 NUM
interviews NOUN
and CCONJ
3 NUM
no DET
responses NOUN
. PUNCT
Any DET
one NOUN
know VERB
when ADV
the DET
heck NOUN
these DET
people NOUN
send VERB
out ADP
their PRON
acceptance NOUN
letters?According VERB
to ADP
the DET
med PROPN
school NOUN
admissions NOUN
book NOUN
they PRON
re VERB
supposed VERB
to PART
send VERB
outthe DET
number NOUN
of ADP
their PRON
class NOUN
in ADP
acceptances NOUN
by ADP
mid ADJ
March PROPN
. PUNCT
What PRON
s VERB
going VERB
on ADP
... PUNCT
Iam PROPN
losing VERB
my PRON
sanity NOUN
checking VERB
my PRON
mailbox NOUN
every DET
day NOUN
. PUNCT
Also ADV
does AUX
anyone PRON
have AUX
some DET
useful ADJ
alternatives NOUN
in ADP
case NOUN
i PRON
do AUX
nt PART
get AUX
in ADP
, PUNCT
ikind NOUN
of ADP
looked VERB
into ADP
Chiropractic PROPN
and CCONJ
Podiatry PROPN
but CCONJ
they PRON
really ADV
dontinterest VERB
me PRON
. PUNCT
Thanks.-- NUM
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59346From NUM
: PUNCT
mymail@integral.stavropol.su PROPN
( PUNCT
Sidelnikov PROPN
Igor PROPN
Vladimirovich)Subject ADJ
: PUNCT
PLEASE NOUN
, PUNCT
HELP VERB
A DET
PATIENT!!!% PROPN
mail NOUN
newsserv@kiae.suSubject NOUN
: PUNCT
  SPACE
PLEASE PROPN
, PUNCT
HELP PROPN
! PUNCT
! PUNCT
! PUNCT
                    SPACE
Dear ADJ
  SPACE
Ladies NOUN
and CCONJ
  SPACE
Gentlemen PROPN
! PUNCT
      SPACE
We PRON
should AUX
be AUX
grateful ADJ
for ADP
any DET
information NOUN
about ADP
address NOUN
and CCONJ
( PUNCT
or CCONJ
) PUNCT
   SPACE
E NOUN
- NOUN
mail NOUN
address NOUN
of ADP
Loma PROPN
- PUNCT
Linda PROPN
Hospital PROPN
( PUNCT
approximate ADJ
position NOUN
: PUNCT
USA PROPN
, PUNCT
   SPACE
California PROPN
, PUNCT
near SCONJ
Vaimor PROPN
town NOUN
, PUNCT
60 NUM
miles NOUN
from ADP
Los PROPN
- PUNCT
Angelos PROPN
) PUNCT
. PUNCT
      SPACE
A DET
patient NOUN
needs VERB
consultation NOUN
in ADP
this DET
clinics NOUN
before ADP
operation NOUN
. PUNCT
                SPACE
With ADP
respect NOUN
, PUNCT
                  SPACE
Igor PROPN
V. PROPN
SidelnikovQUIT.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59347From NUM
: PUNCT
mcg2@Lehigh X
. PUNCT
EDU PROPN
( PUNCT
Marc PROPN
Gabriel)Subject PROPN
: PUNCT
LymeNet PROPN
Newsletter PROPN
vol#1 PROPN
# SYM
09 NUM
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                  SPACE
Lyme PROPN
Disease PROPN
Electronic PROPN
Mail PROPN
Network PROPN
                     SPACE
* PUNCT
* PUNCT
                          SPACE
LymeNet PROPN
Newsletter PROPN
                               SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                      SPACE
Volume NOUN
1 NUM
- PUNCT
Number PROPN
09 NUM
- SYM
4/26/93I. NUM
    SPACE
IntroductionII PROPN
. PUNCT
   SPACE
AnnouncementsIII PROPN
. PUNCT
  SPACE
News PROPN
from ADP
the DET
wiresIV PROPN
. PUNCT
   SPACE
Questions PROPN
' PART
n CCONJ
' CCONJ
AnswersV. NOUN
    SPACE
Op PROPN
- PUNCT
Ed PROPN
SectionVI PROPN
. PUNCT
   SPACE
Jargon PROPN
IndexVII PROPN
. PUNCT
  SPACE
How ADV
to ADP
Subscribe PROPN
, PUNCT
Contribute VERB
and CCONJ
Get AUX
Back ADV
IssuesI. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
INTRODUCTION NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
In ADP
this DET
issue NOUN
of ADP
the DET
Newsletter PROPN
, PUNCT
we PRON
learn VERB
of ADP
the DET
CDC PROPN
's PART
announced ADJ
concern NOUN
forthe ADJ
" PUNCT
resurgence NOUN
of ADP
infectious ADJ
diseases NOUN
" PUNCT
in ADP
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
Thanks NOUN
toJonathan ADP
Lord PROPN
for ADP
sending VERB
me PRON
the DET
UPI PROPN
release NOUN
. PUNCT
  SPACE
The DET
CDC PROPN
announced VERB
they PRON
wouldfeature VERB
a DET
new ADJ
series NOUN
of ADP
articles NOUN
in ADP
the DET
Morbidity PROPN
and CCONJ
Mortality PROPN
WeeklyReport PROPN
on ADP
these DET
infectious ADJ
diseases NOUN
( PUNCT
LD PROPN
is AUX
one NUM
of ADP
them PRON
) PUNCT
. PUNCT
  SPACE
We PRON
will AUX
keep VERB
youup NOUN
to ADP
date NOUN
on ADP
this DET
series NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
we PRON
feature VERB
a DET
The DET
Wall PROPN
Street PROPN
Journal PROPN
article NOUN
on ADP
the DET
legal ADJ
issuessurrounding VERB
LD PROPN
. PUNCT
  SPACE
We PRON
also ADV
look VERB
at ADP
Lyme PROPN
's PART
effects NOUN
from ADP
the DET
perspective NOUN
ofurologists VERB
in ADP
an DET
abstract ADJ
entitled VERB
" PUNCT
Urinary PROPN
Dysfunction PROPN
in ADP
Lyme PROPN
Disease PROPN
. PUNCT
"Finally PROPN
, PUNCT
Terry PROPN
Morse PROPN
asks VERB
an DET
intriguing ADJ
question NOUN
about ADP
a DET
tick NOUN
's PART
habitat.-Marc NUM
. PUNCT
II PROPN
. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
ANNOUNCEMENTS NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
SOURCE NOUN
: PUNCT
The DET
Lyme PROPN
Disease PROPN
UpdateSUBJECT PROPN
: PUNCT
Call VERB
for ADP
ArticlesAttention PROPN
Health PROPN
Care PROPN
Professionals NOUN
: PUNCT
The DET
Lyme PROPN
Disease PROPN
Update PROPN
would AUX
like VERB
to PART
publish VERB
your PRON
articles NOUN
on ADP
Lyme PROPN
diseasediagnosis NOUN
, PUNCT
Lyme PROPN
treatment NOUN
, PUNCT
and CCONJ
the DET
effects NOUN
on ADP
Lyme PROPN
on ADP
Lyme PROPN
patients NOUN
' PART
physicaland ADJ
mental ADJ
health NOUN
. PUNCT
The DET
LDU PROPN
has AUX
a DET
monthly ADJ
circulation NOUN
of ADP
6,000 NUM
. PUNCT
  SPACE
Our PRON
mailing NOUN
list NOUN
includes VERB
Lymepatients NOUN
, PUNCT
physicians NOUN
, PUNCT
researchers NOUN
, PUNCT
county NOUN
health NOUN
departments NOUN
, PUNCT
and CCONJ
over ADP
100Lyme NUM
support NOUN
groups NOUN
nationwide ADV
. PUNCT
  SPACE
We PRON
strive VERB
to PART
give VERB
our PRON
readers NOUN
up ADP
- PUNCT
to ADP
- PUNCT
dateinformation NOUN
on ADP
Lyme PROPN
disease NOUN
prevention NOUN
, PUNCT
diagnosis NOUN
, PUNCT
and CCONJ
treatment NOUN
, PUNCT
and CCONJ
asource NOUN
for ADP
support NOUN
and CCONJ
practical ADJ
advice NOUN
on ADP
living VERB
with ADP
Lyme PROPN
disease NOUN
. PUNCT
Articles NOUN
for ADP
the DET
LDU PROPN
should AUX
be AUX
approximately ADV
900 NUM
to PART
1200 NUM
words NOUN
and CCONJ
shouldaddress NOUN
Lyme PROPN
disease NOUN
issues NOUN
in ADP
non ADJ
- ADJ
scientific ADJ
language NOUN
. PUNCT
  SPACE
To PART
submit VERB
yourarticle NOUN
, PUNCT
mail NOUN
to ADP
: PUNCT
Lyme PROPN
Disease PROPN
Update PROPN
                  SPACE
P.O. PROPN
Box PROPN
15711 NUM
- SYM
0711 NUM
                  SPACE
Evansville PROPN
, PUNCT
IN ADP
47716 NUM
      SPACE
or CCONJ
FAX PROPN
to PART
: PUNCT
  SPACE
812 NUM
- PUNCT
471 NUM
- PUNCT
1990One NUM
year NOUN
subscriptions NOUN
to ADP
the DET
Lyme PROPN
Disease PROPN
Update PROPN
are AUX
$ SYM
19 NUM
( PUNCT
$ SYM
24 NUM
outside ADP
theUS PROPN
) PUNCT
. PUNCT
  SPACE
Mail VERB
your PRON
subscription NOUN
requests NOUN
to ADP
the DET
above ADJ
address NOUN
, PUNCT
or CCONJ
call812 NOUN
- PUNCT
471 NUM
- PUNCT
1990 NUM
for ADP
more ADJ
information NOUN
. PUNCT
III PROPN
. PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
NEWS NOUN
FROM ADP
THE DET
WIRES PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Sender NOUN
: PUNCT
Jonathan PROPN
Lord PROPN
< X
jml4s@uva.pcmail.virginia.edu>Subject X
: PUNCT
RESURGENCE PROPN
OF ADP
INFECTIOUS PROPN
DISEASE NOUN
CONCERNS NOUN
CDCDate NOUN
: PUNCT
Thursday PROPN
April PROPN
15 NUM
, PUNCT
1993ATLANTA NUM
( PUNCT
UPI PROPN
) PUNCT
-- PUNCT
   SPACE
A DET
resurgence NOUN
of ADP
infectious ADJ
diseases NOUN
blamed VERB
on ADP
newlyemerging VERB
viruses NOUN
and CCONJ
bacteria NOUN
pose VERB
a DET
major ADJ
challenge NOUN
for ADP
the DET
nation'shealth NOUN
care NOUN
system NOUN
, PUNCT
federal ADJ
health NOUN
officials NOUN
said VERB
Thursday PROPN
. PUNCT
The DET
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
, PUNCT
reporting VERB
its PRON
latestfindings NOUN
in ADP
an DET
investigation NOUN
of ADP
contaminated VERB
hamburger NOUN
meat NOUN
thatsickened VERB
hundreds NOUN
in ADP
4 NUM
states NOUN
and CCONJ
killed VERB
at ADP
least ADV
four NUM
, PUNCT
said VERB
it PRON
willput VERB
renewed VERB
emphasis NOUN
on ADP
battling VERB
infectious ADJ
diseases NOUN
. PUNCT
Part NOUN
of ADP
that DET
emphasis NOUN
includes VERB
a DET
new ADJ
series NOUN
titled VERB
" PUNCT
EmergingInfectious PROPN
Diseases NOUN
" PUNCT
to PART
be AUX
featured VERB
in ADP
the DET
CDC PROPN
's PART
Morbidity PROPN
& CCONJ
MortalityWeekly PROPN
Report PROPN
, PUNCT
which PRON
has AUX
a DET
wide ADJ
circulation NOUN
in ADP
the DET
health NOUN
community NOUN
. PUNCT
The DET
issue NOUN
also ADV
will AUX
top VERB
the DET
agenda NOUN
of ADP
a DET
two NUM
- PUNCT
day NOUN
meeting NOUN
of ADP
scientificcounselors NOUN
to PART
update VERB
the DET
CDC PROPN
's PART
draft NOUN
plan NOUN
for ADP
dealing VERB
with ADP
the DET
growingthreat NOUN
of ADP
infectious ADJ
ailments NOUN
. PUNCT
"This PUNCT
is AUX
an DET
issue NOUN
that PRON
has AUX
been AUX
coming VERB
and CCONJ
we PRON
do AUX
have AUX
a DET
responsibilityto ADJ
deal NOUN
with ADP
it PRON
, PUNCT
" PUNCT
said VERB
Dr. PROPN
Ruth PROPN
Berkelman PROPN
, PUNCT
deputy NOUN
director NOUN
of ADP
the DET
CDC'sNational PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
. PUNCT
There PRON
were AUX
more ADJ
cases NOUN
of ADP
malaria NOUN
in ADP
the DET
U.S. PROPN
in ADP
1992 NUM
than SCONJ
in ADP
any DET
yearsince NOUN
the DET
1960s NOUN
, PUNCT
and CCONJ
Latin PROPN
America PROPN
is AUX
experiencing VERB
a DET
cholera NOUN
epidemic NOUN
, PUNCT
the DET
first ADJ
in ADP
this DET
century NOUN
, PUNCT
she PRON
said VERB
. PUNCT
Resistance NOUN
of ADP
disease NOUN
- PUNCT
causing VERB
agents NOUN
to ADP
antibiotics NOUN
is AUX
also ADV
a DET
problem NOUN
. PUNCT
"We NOUN
are AUX
seeing VERB
much ADV
more ADV
antibiotic ADJ
resistance NOUN
than SCONJ
we PRON
have AUX
in ADP
the DET
past"Berkleman NOUN
said VERB
. PUNCT
  SPACE
She PRON
said VERB
even ADV
common ADJ
ear NOUN
infections NOUN
frequently ADV
seen VERB
inchildren NOUN
are AUX
becoming VERB
resistant ADJ
to ADP
antibiotic ADJ
treatment NOUN
. PUNCT
"Despite VERB
predictions NOUN
earlier ADV
this DET
century NOUN
that PRON
infectious ADJ
  SPACE
diseaseswould AUX
soon ADV
be AUX
eliminated VERB
as SCONJ
a DET
public ADJ
health NOUN
problem NOUN
, PUNCT
infectious ADJ
diseasesremain NOUN
the DET
major ADJ
cause NOUN
of ADP
death NOUN
worldwide ADV
and CCONJ
a DET
leading VERB
cause NOUN
of ADP
illnessand NOUN
death NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
" PUNCT
the DET
CDC PROPN
said VERB
. PUNCT
It PRON
  SPACE
cited VERB
  SPACE
the DET
  SPACE
emergence NOUN
since SCONJ
the DET
1970s NOUN
of ADP
a DET
" PUNCT
myriad NOUN
" PUNCT
of ADP
newlyidentified ADJ
pathogens NOUN
and CCONJ
syndromes NOUN
, PUNCT
such ADJ
as SCONJ
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
, PUNCT
adeadly ADV
bacterial ADJ
infection NOUN
; PUNCT
the DET
hepatitis PROPN
C PROPN
virus NOUN
; PUNCT
HIV PROPN
, PUNCT
the DET
virus NOUN
thatcauses VERB
AIDS PROPN
; PUNCT
Legionnaires NOUN
disease NOUN
; PUNCT
Lyme PROPN
disease NOUN
; PUNCT
and CCONJ
toxic ADJ
shock NOUN
syndrome NOUN
. PUNCT
"The PUNCT
incidences NOUN
of ADP
many ADJ
diseases NOUN
widely ADV
presumed VERB
to PART
be AUX
under ADP
control NOUN
, PUNCT
such ADJ
as SCONJ
cholera PROPN
, PUNCT
malaria PROPN
and CCONJ
tuberculosis NOUN
, PUNCT
have AUX
increased VERB
in ADP
many ADJ
areas,"the PROPN
CDC PROPN
said VERB
. PUNCT
  SPACE
It PRON
said VERB
efforts NOUN
at ADP
control NOUN
and CCONJ
prevention NOUN
have AUX
beenundermined VERB
by ADP
drug NOUN
resistance.=====*=====SOURCE PUNCT
: PUNCT
  SPACE
WALL PROPN
STREET PROPN
JOURNALREFERENCE PROPN
: PUNCT
04/15/93 PROPN
, PUNCT
pB1HEADLINE NOUN
: PUNCT
Lyme PROPN
- PUNCT
Disease PROPN
Ruling PROPN
Raises VERB
Liability NOUN
IssuesThe PROPN
tick VERB
that DET
causes VERB
Lyme PROPN
disease NOUN
may AUX
have AUX
found VERB
a DET
new ADJ
way NOUN
to PART
causedamage VERB
: PUNCT
legal ADJ
liability NOUN
. PUNCT
A DET
federal ADJ
judge NOUN
's PART
decision NOUN
holding VERB
a DET
property NOUN
owner NOUN
liable ADJ
for ADP
notdoing VERB
enough ADV
to PART
protect VERB
workers NOUN
from ADP
Lyme PROPN
disease NOUN
is AUX
getting VERB
as SCONJ
muchattention NOUN
as SCONJ
the DET
latest ADJ
medical ADJ
study NOUN
on ADP
the DET
disease NOUN
, PUNCT
a DET
flu NOUN
- PUNCT
likeillness NOUN
that PRON
can AUX
cause VERB
severe ADJ
physical ADJ
and CCONJ
mental ADJ
disabilities NOUN
and CCONJ
inrare ADJ
instances NOUN
death NOUN
. PUNCT
The DET
decision NOUN
last ADJ
week NOUN
has AUX
put VERB
property NOUN
ownerson NOUN
notice NOUN
that SCONJ
they PRON
may AUX
have AUX
to PART
do AUX
more ADJ
than SCONJ
protect VERB
themselves PRON
fromthe PROPN
ticks NOUN
- PUNCT
they PRON
also ADV
may AUX
have AUX
to PART
protect VERB
themselves PRON
from ADP
litigation PROPN
ifsomeone PROPN
becomes VERB
infected VERB
while SCONJ
on ADP
the DET
property NOUN
. PUNCT
The DET
decision NOUN
by ADP
U.S. PROPN
District PROPN
Judge PROPN
Robert PROPN
J. PROPN
Ward PROPN
in ADP
New PROPN
York PROPN
cameafter NOUN
a DET
week NOUN
- PUNCT
long ADJ
trial NOUN
in ADP
a DET
case NOUN
involving VERB
four NUM
track NOUN
workers NOUN
for ADP
theLong PROPN
Island PROPN
Railroad PROPN
. PUNCT
Judge PROPN
Ward PROPN
found VERB
that SCONJ
the DET
workers NOUN
contracted VERB
thedisease NOUN
after ADP
they PRON
were AUX
bitten VERB
by ADP
ticks NOUN
while SCONJ
on ADP
the DET
job NOUN
. PUNCT
He PRON
orderedthe VERB
New PROPN
York PROPN
state NOUN
- PUNCT
owned VERB
commuter NOUN
line NOUN
to PART
pay VERB
the DET
workers NOUN
more ADJ
than$560,000 NOUN
to PART
compensate VERB
for ADP
pain NOUN
and CCONJ
suffering NOUN
, PUNCT
in ADP
addition NOUN
to ADP
medicalexpenses NOUN
and CCONJ
lost VERB
wages NOUN
. PUNCT
Summer NOUN
camps NOUN
, PUNCT
schools NOUN
, PUNCT
companies NOUN
with ADP
facilities NOUN
in ADP
rural ADJ
orsemirural ADJ
areas NOUN
, PUNCT
and CCONJ
homeowners NOUN
who PRON
rent VERB
to ADP
vacationers NOUN
are AUX
among ADP
thegroups NOUN
that PRON
need VERB
to PART
be AUX
worried ADJ
about ADP
this DET
ruling NOUN
, PUNCT
says VERB
Stephen PROPN
L.Kass PROPN
, PUNCT
an DET
attorney NOUN
at ADP
New PROPN
York PROPN
law NOUN
firm NOUN
Berle PROPN
, PUNCT
Kass PROPN
& CCONJ
Case PROPN
, PUNCT
who PRON
wrote VERB
alegal PROPN
article NOUN
three NUM
years NOUN
ago ADV
warning VERB
property NOUN
owners NOUN
of ADP
the DET
potentialliability NOUN
. PUNCT
Even ADV
a DET
family NOUN
that PRON
invites VERB
friends NOUN
over ADP
for ADP
a DET
backyardbarbecue NOUN
might AUX
be AUX
potentially ADV
liable ADJ
. PUNCT
Lawsuits NOUN
for ADP
insect ADJ
bites NOUN
, PUNCT
while SCONJ
rare ADJ
, PUNCT
are AUX
n't PART
unheard ADJ
- PUNCT
of ADJ
. PUNCT
A DET
summervacationer NOUN
in ADP
Southampton PROPN
, PUNCT
N.Y. PROPN
, PUNCT
last ADJ
year NOUN
sued VERB
the DET
owner NOUN
of ADP
the DET
homeshe PROPN
rented VERB
, PUNCT
claiming VERB
that SCONJ
a DET
tick NOUN
on ADP
the DET
property NOUN
gave VERB
her PRON
RockyMountain PROPN
spotted VERB
fever NOUN
. PUNCT
In ADP
1988 NUM
, PUNCT
also ADV
on ADP
Long PROPN
Island PROPN
, PUNCT
a DET
jury NOUN
orderedan PROPN
outdoor PROPN
restaurant NOUN
to PART
pay VERB
more ADJ
than SCONJ
$ SYM
3 NUM
million NUM
to ADP
a DET
patron NOUN
who PRON
wasstung VERB
by ADP
a DET
bee NOUN
, PUNCT
causing VERB
an DET
allergic ADJ
reaction NOUN
and CCONJ
permanentquadriplegia NOUN
. PUNCT
The DET
judge NOUN
later ADV
threw VERB
out ADP
the DET
award NOUN
, PUNCT
citing VERB
no ADV
evidencethat NOUN
a DET
beehive NOUN
was AUX
near SCONJ
the DET
restaurant NOUN
. PUNCT
But CCONJ
lawyers NOUN
say VERB
that SCONJ
the DET
attention NOUN
to ADP
Lyme PROPN
disease NOUN
throughout ADP
thecountry NOUN
-- PUNCT
it PRON
's AUX
most ADV
prevalent ADJ
in ADP
New PROPN
England PROPN
, PUNCT
the DET
Middle PROPN
Atlanticstates PROPN
, PUNCT
Wisconsin PROPN
, PUNCT
Minnesota PROPN
and CCONJ
the DET
Northwest PROPN
-- PUNCT
may AUX
make VERB
thisparticular ADJ
insect NOUN
bite NOUN
a DET
particularly ADV
litigious ADJ
one NOUN
. PUNCT
The DET
illness NOUN
already ADV
has AUX
proved VERB
to PART
be AUX
a DET
source NOUN
of ADP
controversy NOUN
in ADP
thecourtroom NOUN
over ADP
such ADJ
issues NOUN
as SCONJ
the DET
type NOUN
of ADP
medical ADJ
care NOUN
insurers NOUN
willcover NOUN
and CCONJ
medical ADJ
malpractice NOUN
claims NOUN
against ADP
doctors NOUN
for ADP
notdiagnosing VERB
the DET
disease NOUN
. PUNCT
Lawyers NOUN
say VERB
worker's ADJ
- PUNCT
compensation NOUN
claims NOUN
related VERB
to ADP
Lyme PROPN
diseasehave NOUN
become VERB
common ADJ
in ADP
some DET
states NOUN
in ADP
recent ADJ
years NOUN
. PUNCT
Payments NOUN
inworker's PROPN
- PUNCT
compensation NOUN
cases NOUN
, PUNCT
however ADV
, PUNCT
are AUX
limited VERB
to ADP
medical ADJ
costs NOUN
andlost VERB
earnings NOUN
. PUNCT
The DET
case NOUN
before ADP
Judge PROPN
Ward PROPN
dealt VERB
with ADP
a DET
potentially ADV
much ADJ
morelucrative ADJ
avenue NOUN
for ADP
damages NOUN
, PUNCT
because SCONJ
it PRON
involved VERB
the DET
question NOUN
ofnegligence NOUN
. PUNCT
Unlike ADP
the DET
worker NOUN
's PART
compensation NOUN
process NOUN
, PUNCT
the DET
law NOUN
governinginjuries NOUN
to PART
rail NOUN
workers NOUN
allows VERB
for ADP
a DET
finding NOUN
of ADP
negligence NOUN
and CCONJ
, PUNCT
as SCONJ
aresult ADJ
, PUNCT
for ADP
additional ADJ
payments NOUN
for ADP
pain NOUN
and CCONJ
suffering NOUN
. PUNCT
Propertyowners NOUN
and CCONJ
lawyers NOUN
say VERB
that SCONJ
negligence NOUN
claims NOUN
can AUX
be AUX
made VERB
in ADP
manyother NOUN
situations NOUN
where ADV
people NOUN
are AUX
exposed VERB
to ADP
the DET
ticks NOUN
that PRON
carry VERB
thedisease NOUN
. PUNCT
Ira PROPN
M. PROPN
Maurer PROPN
, PUNCT
a DET
partner NOUN
at ADP
New PROPN
York PROPN
law NOUN
firm NOUN
Elkind PROPN
, PUNCT
Flynn PROPN
& CCONJ
Maurer PROPN
, PUNCT
who PRON
represented VERB
the DET
rail NOUN
workers NOUN
, PUNCT
says VERB
the DET
decision NOUN
will AUX
helpto VERB
establish VERB
" PUNCT
the DET
duty NOUN
of ADP
all DET
sorts NOUN
of ADP
property NOUN
owners NOUN
to ADP
protectagainst PROPN
Lyme PROPN
disease NOUN
. PUNCT
"Lawyers NOUN
caution VERB
that SCONJ
despite SCONJ
Judge PROPN
Ward PROPN
's PART
decision NOUN
, PUNCT
winning VERB
alawsuit NOUN
for ADP
damages NOUN
caused VERB
by ADP
Lyme PROPN
disease NOUN
may AUX
prove VERB
difficult ADJ
. PUNCT
Forone NOUN
thing NOUN
, PUNCT
victims NOUN
have AUX
to PART
demonstrate VERB
that SCONJ
they PRON
have AUX
pinned VERB
down ADP
whenand ADV
where ADV
they PRON
got VERB
the DET
tick ADJ
bite NOUN
. PUNCT
Judge PROPN
Ward PROPN
found VERB
that SCONJ
the DET
plaintiffsin NOUN
the DET
railroad NOUN
case NOUN
got VERB
Lyme PROPN
disease NOUN
while SCONJ
working VERB
on ADP
property NOUN
ownedby ADP
the DET
railroad NOUN
, PUNCT
even ADV
though SCONJ
none NOUN
of ADP
the DET
men NOUN
remembered VERB
being AUX
bitten VERB
. PUNCT
The DET
workers NOUN
, PUNCT
who PRON
were AUX
n't PART
outdoorsmen NOUN
likely ADJ
to PART
be AUX
exposed VERB
elsewhere ADV
tothe DET
insects NOUN
, PUNCT
said VERB
they PRON
saw VERB
ticks NOUN
in ADP
the DET
high ADJ
grass NOUN
that PRON
surroundedsome VERB
work NOUN
sites NOUN
. PUNCT
A DET
spokeswoman NOUN
for ADP
the DET
railroad NOUN
says VERB
that SCONJ
there PRON
was AUX
no DET
proof NOUN
thatthe DET
four NUM
men NOUN
were AUX
bitten VERB
while SCONJ
on ADP
the DET
job NOUN
and CCONJ
that SCONJ
the DET
railroad NOUN
isconsidering VERB
an DET
appeal NOUN
. PUNCT
The DET
railroad NOUN
also ADV
disputes VERB
Judge PROPN
Ward PROPN
's PART
findingthat NOUN
it PRON
did AUX
n't PART
do AUX
enough ADJ
to PART
protect VERB
employees NOUN
. PUNCT
The DET
spokeswoman NOUN
saysthe NOUN
railroad NOUN
provides VERB
track NOUN
workers NOUN
with ADP
insect ADJ
repellent NOUN
and CCONJ
specialpants NOUN
to PART
protect VERB
against ADP
bug NOUN
bites NOUN
. PUNCT
Debate NOUN
in ADP
the DET
scientific ADJ
community NOUN
over ADP
Lyme PROPN
disease NOUN
could AUX
open VERB
upsome ADJ
legal ADJ
defenses NOUN
for ADP
property NOUN
owners NOUN
, PUNCT
such ADJ
as SCONJ
questioning VERB
whether SCONJ
avictim NOUN
actually ADV
has AUX
the DET
disease NOUN
rather ADV
than SCONJ
some DET
other ADJ
illness NOUN
. PUNCT
Earlier ADV
this DET
week NOUN
, PUNCT
the DET
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Associationreported PROPN
that SCONJ
doctors NOUN
overly ADV
diagnose VERB
patients NOUN
as SCONJ
having VERB
Lyme PROPN
disease NOUN
. PUNCT
And CCONJ
damages NOUN
awarded VERB
to ADP
a DET
victim NOUN
also ADV
might AUX
be AUX
influenced VERB
by ADP
medicaldisputes NOUN
over ADP
the DET
degree NOUN
of ADP
harm NOUN
that PRON
Lyme PROPN
disease NOUN
causes VERB
. PUNCT
Because SCONJ
of ADP
health NOUN
and CCONJ
safety NOUN
concerns NOUN
, PUNCT
some DET
groups NOUN
and CCONJ
companiesalready ADJ
take VERB
special ADJ
measures NOUN
to PART
protect VERB
against ADP
Lyme PROPN
disease NOUN
. PUNCT
Lastyear NOUN
, PUNCT
at ADP
its PRON
headquarters NOUN
in ADP
Franklin PROPN
Lakes PROPN
, PUNCT
N.J. PROPN
, PUNCT
Becton PROPN
, PUNCT
Dickinson PROPN
& CCONJ
Co. PROPN
began VERB
using VERB
Damminix PROPN
, PUNCT
a DET
pesticide NOUN
made VERB
by ADP
EcoHealth PROPN
Inc. PROPN
of ADP
Bostonthat PROPN
is AUX
designed VERB
to PART
kill VERB
ticks NOUN
carrying VERB
the DET
disease NOUN
. PUNCT
The DET
medical ADJ
- PUNCT
supply NOUN
company NOUN
's PART
headquarters NOUN
include VERB
a DET
120-acre NUM
park NOUN
, PUNCT
and CCONJ
the DET
companywas NOUN
worried VERB
that SCONJ
employees NOUN
who PRON
walk VERB
on ADP
its PRON
trails NOUN
for ADP
recreation NOUN
mightget NOUN
infected VERB
. PUNCT
Ruth PROPN
Lister PROPN
, PUNCT
a DET
spokeswoman NOUN
for ADP
the DET
American PROPN
Camping PROPN
Association PROPN
inIndianapolis PROPN
, PUNCT
says VERB
that SCONJ
many ADJ
youth NOUN
camps NOUN
accredited VERB
by ADP
herorganization NOUN
also ADV
have AUX
begun VERB
to PART
check VERB
children NOUN
for ADP
ticks NOUN
. PUNCT
And CCONJ
CaroleKatz PROPN
, PUNCT
a DET
member NOUN
of ADP
the DET
board NOUN
of ADP
the DET
Fire PROPN
Island PROPN
Pines PROPN
Property PROPN
OwnersAssociation PROPN
, PUNCT
says VERB
her PRON
group NOUN
spends VERB
$ SYM
30,000 NUM
each DET
year NOUN
to PART
treat VERB
their100-acre PROPN
site NOUN
off ADP
the DET
coast NOUN
of ADP
New PROPN
York PROPN
with ADP
the DET
tick PROPN
- PUNCT
killingpesticide.=====*=====TITLE PROPN
: PUNCT
Urinary ADJ
dysfunction NOUN
in ADP
Lyme PROPN
disease NOUN
. PUNCT
AUTHORS PROPN
: PUNCT
Chancellor PROPN
MB NOUN
; PUNCT
McGinnis PROPN
DE PROPN
; PUNCT
Shenot PROPN
PJ PROPN
; PUNCT
Kiilholma PROPN
P PROPN
; PUNCT
Hirsch PROPN
IH PROPN
, PUNCT
Department PROPN
of ADP
Urology PROPN
, PUNCT
Jefferson PROPN
Medical PROPN
College PROPN
, PUNCT
Thomas PROPN
JeffersonUniversity PROPN
, PUNCT
Philadelphia PROPN
, PUNCT
Pennsylvania PROPN
. PUNCT
REFERENCE PROPN
: PUNCT
J PROPN
Urol PROPN
1993 NUM
Jan PROPN
; PUNCT
149 NUM
( PUNCT
1 NUM
) PUNCT
: PUNCT
26 NUM
- SYM
30Lyme NUM
disease NOUN
, PUNCT
which PRON
is AUX
caused VERB
by ADP
the DET
spirochete ADJ
Borrelia PROPN
burgdorferi PROPN
, PUNCT
isassociated VERB
with ADP
a DET
variety NOUN
of ADP
neurological ADJ
sequelae PROPN
. PUNCT
  SPACE
We PRON
describe VERB
7 NUM
patientswith PROPN
neuro PROPN
- PUNCT
borreliosis PROPN
who PRON
also ADV
had AUX
lower ADJ
urinary ADJ
tract NOUN
dysfunction NOUN
. PUNCT
Urodynamic ADJ
evaluation NOUN
revealed VERB
detrusor PROPN
hyperreflexia PROPN
in ADP
5 NUM
patients NOUN
anddetrusor NOUN
areflexia PROPN
in ADP
2 NUM
. PUNCT
  SPACE
Detrusor PROPN
external ADJ
sphincter NOUN
dyssynergia PROPN
was AUX
notnoted VERB
on ADP
electromyography NOUN
in ADP
any DET
patient NOUN
. PUNCT
  SPACE
We PRON
observed VERB
that SCONJ
the DET
urinary ADJ
tractmay NOUN
be AUX
involved VERB
in ADP
2 NUM
respects NOUN
in ADP
the DET
course NOUN
of ADP
Lyme PROPN
  SPACE
disease NOUN
: PUNCT
1 X
) PUNCT
voidingdysfunction NOUN
may AUX
be AUX
part NOUN
of ADP
neuro PROPN
- PUNCT
borreliosis PROPN
and CCONJ
2 X
) PUNCT
the DET
spirochete NOUN
maydirectly ADV
invade VERB
the DET
urinary ADJ
tract NOUN
. PUNCT
  SPACE
In ADP
1 NUM
patient ADJ
bladder NOUN
infection NOUN
by ADP
theLyme PROPN
spirochete NOUN
was AUX
documented VERB
on ADP
biopsy NOUN
. PUNCT
  SPACE
Neurological PROPN
and CCONJ
urologicalsymptoms NOUN
in ADP
all DET
patients NOUN
were AUX
slow ADJ
to PART
resolve VERB
and CCONJ
convalescence NOUN
wasprotracted VERB
. PUNCT
  SPACE
Relapses NOUN
of ADP
active ADJ
Lyme PROPN
disease NOUN
and CCONJ
residual ADJ
neurologicaldeficits NOUN
were AUX
common ADJ
. PUNCT
  SPACE
Urologists NOUN
practicing VERB
in ADP
areas NOUN
endemic ADJ
for ADP
Lymedisease PROPN
need NOUN
to PART
be AUX
aware ADJ
of ADP
B. PROPN
burgdorferi PROPN
infection NOUN
in ADP
the DET
differentialdiagnosis NOUN
of ADP
neurogenic ADJ
bladder NOUN
dysfunction NOUN
. PUNCT
  SPACE
Conservative ADJ
bladdermanagement NOUN
including VERB
clean ADJ
intermittent ADJ
catheterization NOUN
guided VERB
by ADP
urodynamicevaluation NOUN
is AUX
recommended VERB
. PUNCT
IV PROPN
. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
QUESTIONS PROPN
' PART
N CCONJ
' PUNCT
ANSWERS NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Note VERB
: PUNCT
If SCONJ
you PRON
have AUX
a DET
response NOUN
to ADP
this DET
question NOUN
, PUNCT
please INTJ
forward ADV
it PRON
to ADP
theeditor VERB
. PUNCT
Sender NOUN
: PUNCT
Terry PROPN
Morse PROPN
< X
morset@ccmail.orst.edu>Subject NOUN
: PUNCT
Question NOUN
on ADP
Lyme PROPN
Vectors PROPN
and CCONJ
Compost PROPN
Piles PROPN
  SPACE
When ADV
I PRON
visited VERB
my PRON
sister NOUN
on ADP
Long PROPN
Island PROPN
, PUNCT
NY PROPN
, PUNCT
I PRON
was AUX
cautioned VERB
to PART
avoid VERB
thecompost ADJ
heap NOUN
in ADP
her PRON
back NOUN
yard NOUN
, PUNCT
as SCONJ
she PRON
thinks VERB
this DET
is AUX
where ADV
she PRON
becameinfected VERB
. PUNCT
  SPACE
A DET
friend NOUN
of ADP
mine PRON
here ADV
in ADP
Oregon PROPN
who PRON
has AUX
a DET
compost ADJ
heap NOUN
would AUX
like VERB
me PRON
toback VERB
that DET
claim VERB
up ADP
with ADP
documentation NOUN
. PUNCT
  SPACE
Do AUX
lyme NOUN
- PUNCT
carrying VERB
ticks NOUN
hang VERB
out ADP
incompost NOUN
heaps?Thank VERB
you PRON
. PUNCT
V. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
OP PROPN
- PUNCT
ED NOUN
SECTION NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
This DET
section NOUN
is AUX
open ADJ
to ADP
all DET
subscribers NOUN
who PRON
would AUX
like VERB
to PART
express VERB
an DET
opinion NOUN
. PUNCT
VI PROPN
. PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
JARGON PROPN
INDEX PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Bb PROPN
- PUNCT
Borrelia PROPN
burgdorferi PROPN
- PUNCT
The DET
scientific ADJ
name NOUN
for ADP
the DET
LD PROPN
bacterium NOUN
. PUNCT
CDC PROPN
- PUNCT
Centers PROPN
for ADP
Disease PROPN
Control PROPN
- PUNCT
Federal PROPN
agency NOUN
in ADP
charge NOUN
of ADP
tracking VERB
      SPACE
diseases NOUN
and CCONJ
programs NOUN
to PART
prevent VERB
them PRON
. PUNCT
CNS PROPN
- PUNCT
Central PROPN
Nervous PROPN
System PROPN
. PUNCT
ELISA PROPN
- PUNCT
Enzyme PROPN
- PUNCT
linked VERB
Immunosorbent PROPN
Assays PROPN
- PUNCT
Common PROPN
antibody NOUN
testEM PROPN
- PUNCT
Erythema PROPN
Migrans PROPN
- PUNCT
The DET
name NOUN
of ADP
the DET
" PUNCT
bull NOUN
's PART
eye NOUN
" PUNCT
rash NOUN
that PRON
appears VERB
in ADP
     SPACE
~60 NUM
% NOUN
of ADP
the DET
patients NOUN
early ADV
in ADP
the DET
infection NOUN
. PUNCT
IFA PROPN
- PUNCT
Indirect PROPN
Fluorescent PROPN
Antibody PROPN
- PUNCT
Common PROPN
antibody NOUN
test NOUN
. PUNCT
LD PROPN
- PUNCT
Common ADJ
abbreviation NOUN
for ADP
Lyme PROPN
Disease PROPN
. PUNCT
NIH PROPN
- PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
- PUNCT
Federal PROPN
agency NOUN
that PRON
conducts VERB
medical PROPN
      SPACE
research NOUN
and CCONJ
issues NOUN
grants NOUN
to PART
research NOUN
interests NOUN
. PUNCT
PCR PROPN
- PUNCT
Polymerase PROPN
Chain PROPN
Reaction PROPN
- PUNCT
A DET
new ADJ
test NOUN
that PRON
detects VERB
the DET
DNA PROPN
sequence NOUN
      SPACE
of ADP
the DET
microbe NOUN
in ADP
question NOUN
. PUNCT
  SPACE
Currently ADV
being AUX
tested VERB
for ADP
use NOUN
in ADP
      SPACE
detecting VERB
LD PROPN
, PUNCT
TB PROPN
, PUNCT
and CCONJ
AIDS.Spirochete VERB
- PUNCT
The DET
LD PROPN
bacterium NOUN
. PUNCT
  SPACE
It PRON
's AUX
given VERB
this DET
name NOUN
due ADP
to ADP
it PRON
's AUX
spiral ADJ
      SPACE
shape NOUN
. PUNCT
Western ADJ
Blot PROPN
- PUNCT
A NOUN
more ADV
precise ADJ
antibody NOUN
test NOUN
. PUNCT
VII PROPN
. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
HOW ADV
TO PART
SUBSCRIBE VERB
, PUNCT
CONTRIBUTE NOUN
AND CCONJ
GET VERB
BACK PROPN
ISSUES ADV
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
SUBSCRIPTIONS NOUN
: PUNCT
Anyone PRON
with ADP
an DET
Internet NOUN
address NOUN
may AUX
subscribe VERB
. PUNCT
Send VERB
a DET
memo NOUN
to ADP
    SPACE
listserv@Lehigh NOUN
. PUNCT
EDUin VERB
the DET
body NOUN
, PUNCT
type NOUN
: PUNCT
subscribe VERB
LymeNet PROPN
- PUNCT
L PROPN
< X
Your PRON
Real ADJ
Name NOUN
> X
FAX NOUN
subscriptions NOUN
are AUX
also ADV
available ADJ
. PUNCT
  SPACE
Send VERB
a DET
single ADJ
page NOUN
FAX NOUN
to ADP
215 NUM
- SYM
974 NUM
- PUNCT
6410for NUM
further ADJ
information NOUN
. PUNCT
DELETIONS PROPN
: PUNCT
Send VERB
a DET
memo NOUN
to ADP
    SPACE
listserv@Lehigh NOUN
. PUNCT
EDUin VERB
the DET
body NOUN
, PUNCT
type NOUN
: PUNCT
unsubscribe ADJ
LymeNet PROPN
- PUNCT
LCONTRIBUTIONS PROPN
: PUNCT
Send VERB
all DET
contributions NOUN
to PART
   SPACE
LymeNet PROPN
- PUNCT
L@Lehigh PROPN
. PUNCT
EDU PROPN
  SPACE
or CCONJ
FAX VERB
them PRON
to ADP
215 NUM
- SYM
974 NUM
- PUNCT
6410.All NOUN
are AUX
encouraged VERB
to PART
submit VERB
questions NOUN
, PUNCT
news NOUN
items NOUN
, PUNCT
announcements NOUN
, PUNCT
andcommentaries NOUN
. PUNCT
BACK PROPN
ISSUES ADV
: PUNCT
Send VERB
a DET
memo NOUN
to ADP
    SPACE
listserv@Lehigh NOUN
. PUNCT
EDUin VERB
the DET
body NOUN
, PUNCT
type NOUN
: PUNCT
get AUX
LymeNet PROPN
- PUNCT
L PROPN
/ SYM
Newsletters PROPN
x PROPN
- PUNCT
yy NOUN
              SPACE
( PUNCT
where ADV
x NOUN
= SYM
vol PROPN
# PROPN
and CCONJ
yy NOUN
= SYM
issue NOUN
# NOUN
) PUNCT
example NOUN
: PUNCT
  SPACE
get AUX
LymeNet PROPN
- PUNCT
L PROPN
/ SYM
Newsletters PROPN
1 NUM
- SYM
01 NUM
    SPACE
( PUNCT
will AUX
get AUX
vol#1 PROPN
, PUNCT
issue#01)-----------------------------------------------------------------------------LymeNet ADJ
- PUNCT
The DET
Internet NOUN
Lyme PROPN
Disease PROPN
Information PROPN
Source-----------------------------------------------------------------------------Editor NOUN
- PUNCT
in ADP
- PUNCT
Chief NOUN
: PUNCT
Marc PROPN
C. PROPN
Gabriel PROPN
< X
mcg2@Lehigh PRON
. PUNCT
EDU PROPN
> PROPN
            SPACE
FAX PROPN
: PUNCT
215 NUM
- PUNCT
974 NUM
- PUNCT
6410Contributing NOUN
Editors NOUN
: PUNCT
Carl PROPN
Brenner PROPN
< X
brenner@lamont.ldgo.Columbia.EDU ADV
> X
                      SPACE
John PROPN
Setel PROPN
O'Donnell PROPN
< X
jod@Equator NOUN
. PUNCT
COM NOUN
> X
Advisors NOUN
: PUNCT
Carol PROPN
- PUNCT
Jane PROPN
Stolow PROPN
, PUNCT
Director PROPN
          SPACE
William PROPN
S. PROPN
Stolow PROPN
, PUNCT
President PROPN
          SPACE
The DET
Lyme PROPN
Disease PROPN
Network PROPN
of ADP
New PROPN
Jersey PROPN
( PUNCT
908 NUM
- PUNCT
390 NUM
- PUNCT
5027)Chief NUM
Proofreader NOUN
: PUNCT
Ed PROPN
Mackey PROPN
< X
elm4@Lehigh X
. PUNCT
EDU>-----------------------------------------------------------------------------WHEN PROPN
COMMENTS NOUN
ARE VERB
PRESENTED VERB
WITH ADP
AN DET
ATTRIBUTION NOUN
, PUNCT
THEY PRON
DO VERB
NOT ADV
NECESSARILYREPRESENT VERB
THE DET
OPINIONS PROPN
/ SYM
ANALYSES PROPN
OF ADP
THE DET
EDITOR.-----------------------------------------------------------------------------THIS NOUN
NEWSLETTER NOUN
MAY AUX
BE VERB
REPRODUCED NOUN
AND CCONJ
/ SYM
OR CCONJ
POSTED VERB
ON ADP
BULLETIN PROPN
BOARDS NOUN
FREELYAS NOUN
LONG ADV
AS ADP
IT PRON
IS VERB
NOT ADV
MODIFIED PROPN
OR CCONJ
ABRIDGED PROPN
IN ADP
ANY DET
WAY.-----------------------------------------------------------------------------SEND NOUN
ALL DET
BUG PROPN
REPORTS NOUN
TO PART
mcg2@Lehigh VERB
. PUNCT
EDU.-----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59348From NUM
: PUNCT
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections?>>>Can PROPN
men NOUN
get VERB
yeast NOUN
infections NOUN
? PUNCT
Spread VERB
them PRON
? PUNCT
What PRON
kind NOUN
of ADP
symptoms?My PROPN
ENT PROPN
doctor NOUN
told VERB
me PRON
that SCONJ
it PRON
is AUX
not PART
uncommon ADJ
for ADP
the DET
wife NOUN
to PART
get AUX
a DET
vaginalyeast ADJ
infection NOUN
after ADP
the DET
husband NOUN
takes VERB
antibiotics NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
this DET
recentlyhappened VERB
to ADP
my PRON
wife NOUN
. PUNCT
  SPACE
Explanation NOUN
is AUX
that SCONJ
the DET
antibiotics NOUN
kill VERB
the DET
yeast'scompetition NOUN
, PUNCT
they PRON
then ADV
thrive VERB
and CCONJ
increased VERB
yeast NOUN
around ADP
the DET
penis PROPN
spreadthe NOUN
infection NOUN
during ADP
intercourse NOUN
. PUNCT
  SPACE
I PRON
was AUX
on ADP
ceclor NOUN
for ADP
30 NUM
days NOUN
, PUNCT
then ADV
my PRON
wifegot NOUN
the DET
yeast NOUN
. PUNCT
Jay PROPN
Kellerbadboy@netcom.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59350From NUM
: PUNCT
gary@concave.cs.wits.ac.za PROPN
( PUNCT
Gary PROPN
Taylor)Subject NUM
: PUNCT
Umbilical PROPN
HerniaCould PROPN
anyone PRON
give VERB
me PRON
information NOUN
on ADP
Umbilical ADJ
hernias NOUN
. PUNCT
The DET
patient NOUN
is AUX
over ADP
weight NOUN
and CCONJ
has AUX
a DET
protruding VERB
hernia NOUN
. PUNCT
Surgery NOUN
may AUX
be AUX
risky ADJ
due ADP
to ADP
the DET
obesity NOUN
. PUNCT
What PRON
other ADJ
remedies NOUN
could AUX
I PRON
try?Thanx VERB
in ADP
advanceDr PROPN
. PUNCT
Gary PROPN
TaylorNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59351From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?A PROPN
woman NOUN
once ADV
told VERB
me PRON
her PRON
doctor NOUN
told VERB
her PRON
that SCONJ
Icould AUX
catch VERB
, PUNCT
asymptomatically ADV
, PUNCT
her PRON
yeast NOUN
infectionfrom VERB
her PRON
, PUNCT
then ADV
give VERB
it PRON
back ADV
to ADP
her PRON
, PUNCT
causinga ADJ
relapse PROPN
. PUNCT
Probably ADV
bogus ADJ
, PUNCT
but CCONJ
if SCONJ
not PART
, PUNCT
it PRON
's AUX
another DET
reason NOUN
to ADP
uselatex NOUN
... PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59352From NUM
: PUNCT
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Proventil PROPN
InhalerIn PROPN
article NOUN
< X
16BB6CDEB.RICK@ysub.ysu.edu NUM
> X
RICK@ysub.ysu.edu PROPN
( PUNCT
Rick PROPN
Marsico PROPN
) PUNCT
writes:>Does VERB
the DET
Proventil PROPN
inhaler NOUN
for ADP
asthma NOUN
relief NOUN
fall NOUN
into ADP
the DET
steroid NOUN
> X
or CCONJ
nonsteroid PROPN
category NOUN
? PUNCT
  SPACE
Looking VERB
at ADP
the DET
product NOUN
literature NOUN
it's PRON
> X
not PART
clear ADJ
. PUNCT
Non ADJ
- NOUN
steroid ADJ
. PUNCT
  SPACE
Proventil PROPN
is AUX
a DET
brand NOUN
of ADP
albuterol NOUN
, PUNCT
a DET
bronchodilator NOUN
. PUNCT
  SPACE
Regards PROPN
, PUNCT
Jay PROPN
Keller(asthmatic PROPN
Proventil PROPN
- PUNCT
head)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59353From NUM
: PUNCT
res4w@galen.med.Virginia.EDU PROPN
( PUNCT
Robert PROPN
E. PROPN
Schmieg)Subject NUM
: PUNCT
Re ADP
: PUNCT
Med NOUN
school NOUN
admissionhoss@panix.com NOUN
  SPACE
writes VERB
: PUNCT
> X
hi INTJ
all DET
, PUNCT
I PRON
ve VERB
applied VERB
for ADP
the DET
class NOUN
of ADP
93 NUM
at ADP
quite DET
a DET
number NOUN
of ADP
schools NOUN
( PUNCT
20 NUM
) PUNCT
> X
and CCONJ
have AUX
gotten VERB
13 NUM
rejects NOUN
, PUNCT
4 NUM
interviews NOUN
and CCONJ
3 NUM
no DET
responses NOUN
. PUNCT
Three NUM
possible ADJ
results NOUN
after ADP
interview:1 NUM
) PUNCT
rejection NOUN
outright2 NOUN
) PUNCT
acceptance NOUN
outright3 NOUN
) PUNCT
the DET
infamous ADJ
' PUNCT
wait NOUN
list NOUN
' PUNCT
... PUNCT
If SCONJ
you PRON
are AUX
on ADP
a DET
' PUNCT
wait NOUN
list NOUN
' PUNCT
, PUNCT
your PRON
entrance NOUN
into ADP
medical ADJ
schoolis ADJ
dependent ADJ
upon SCONJ
some DET
other ADJ
applicant NOUN
withdrawing VERB
theiracceptance NOUN
. PUNCT
  SPACE
This DET
can AUX
happen VERB
as ADV
late ADV
as SCONJ
day NOUN
-1 PUNCT
of ADP
startingclasses NOUN
. PUNCT
  SPACE
> X
Any DET
one NUM
know VERB
when ADV
the DET
heck NOUN
these DET
people NOUN
send VERB
out ADP
their PRON
acceptance NOUN
letters NOUN
? PUNCT
> X
According VERB
to ADP
the DET
med PROPN
school NOUN
admissions NOUN
book NOUN
they PRON
re VERB
supposed VERB
to PART
send VERB
out ADP
> X
the DET
number NOUN
of ADP
their PRON
class NOUN
in ADP
acceptances NOUN
by ADP
mid ADJ
March PROPN
. PUNCT
What PRON
s VERB
going VERB
on ADP
... PUNCT
I PRON
> X
am AUX
losing VERB
my PRON
sanity NOUN
checking VERB
my PRON
mailbox NOUN
every DET
day NOUN
. PUNCT
You PRON
can AUX
always ADV
call VERB
the DET
admissions NOUN
office NOUN
. PUNCT
  SPACE
The DET
secretariesshould AUX
have AUX
some DET
idea NOUN
of ADP
when ADV
a DET
decision NOUN
might AUX
be AUX
made VERB
on ADP
yourapplication NOUN
. PUNCT
  SPACE
Be AUX
calm ADJ
, PUNCT
respectful ADJ
, PUNCT
and CCONJ
friendly ADJ
; PUNCT
secretarieshave VERB
more ADJ
power NOUN
than SCONJ
you PRON
might AUX
realize VERB
, PUNCT
and CCONJ
you PRON
never ADV
know VERB
- PUNCT
could AUX
be AUX
the DET
dean NOUN
of ADP
admissions NOUN
answering VERB
the DET
phone NOUN
. PUNCT
> X
Also ADV
does AUX
anyone PRON
have AUX
some DET
useful ADJ
alternatives NOUN
in ADP
case NOUN
i PRON
do AUX
nt PART
get AUX
in ADV
, PUNCT
iIf INTJ
you PRON
do AUX
n't PART
get AUX
in ADP
this DET
year NOUN
, PUNCT
sit VERB
down ADP
and CCONJ
re VERB
- NOUN
evaluateyourself VERB
: PUNCT
your PRON
motives NOUN
, PUNCT
desires NOUN
, PUNCT
and CCONJ
goals NOUN
that PRON
are AUX
directingyou NOUN
into ADP
medicine NOUN
; PUNCT
your PRON
academic ADJ
and CCONJ
extracurricularaccomplishments NOUN
. PUNCT
  SPACE
Make VERB
a DET
decision NOUN
about ADP
whether SCONJ
you PRON
* PUNCT
really*want NOUN
to PART
be AUX
a DET
medical ADJ
doctor NOUN
. PUNCT
  SPACE
I PRON
had AUX
classmates NOUN
who PRON
dropped VERB
outin PROPN
the DET
first ADJ
semester NOUN
of ADP
med PROPN
school NOUN
because SCONJ
they PRON
found VERB
it PRON
wasnot VERB
what PRON
they PRON
wanted VERB
to PART
do AUX
; PUNCT
I PRON
have AUX
friends NOUN
who PRON
applied VERB
fouryears NOUN
in ADP
a DET
row NOUN
before ADP
they PRON
were AUX
accepted VERB
. PUNCT
  SPACE
Medicine PROPN
as SCONJ
acareer NOUN
is AUX
a DET
choice NOUN
you PRON
must AUX
make VERB
for ADP
yourself PRON
; PUNCT
DON'T VERB
bepushed VERB
into ADP
it PRON
because SCONJ
of ADP
your PRON
parents NOUN
/ SYM
family NOUN
/ SYM
significantother NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
still ADV
want VERB
to PART
be AUX
a DET
medical ADJ
doctor NOUN
, PUNCT
determine VERB
how ADV
youcan PROPN
improve VERB
your PRON
application NOUN
. PUNCT
  SPACE
A DET
letter NOUN
of ADP
recommendation NOUN
froma NOUN
professor NOUN
who PRON
knows VERB
you PRON
well ADV
and CCONJ
can AUX
give VERB
an DET
honest ADJ
positiverecommendation NOUN
is AUX
far ADV
better ADJ
than SCONJ
one NUM
from ADP
a DET
' PUNCT
big ADJ
- PUNCT
shot NOUN
' PART
famousprofessor NOUN
who PRON
only ADV
vaguely ADV
remembers VERB
your PRON
face NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
don'tbe X
afraid ADJ
to PART
ask VERB
these DET
people NOUN
if SCONJ
they PRON
can AUX
give VERB
you PRON
an DET
honestand NOUN
positive ADJ
recommendation NOUN
; PUNCT
give VERB
them PRON
a DET
chance NOUN
to PART
say VERB
' PUNCT
no INTJ
, PUNCT
sorry INTJ
' PUNCT
instead ADV
of ADP
the DET
medical ADJ
school NOUN
saying VERB
' PUNCT
no INTJ
, PUNCT
sorry INTJ
' PUNCT
. PUNCT
  SPACE
Ihave PROPN
turned VERB
down ADP
writing NOUN
recommendations NOUN
for ADP
some DET
studentsbecause NOUN
I PRON
did AUX
not PART
know VERB
them PRON
well ADV
enough ADV
to PART
make VERB
any DET
meaningfulcomments NOUN
, PUNCT
and CCONJ
some DET
because SCONJ
I PRON
honestly ADV
could AUX
not PART
recommend VERB
themat NOUN
that DET
point NOUN
. PUNCT
  SPACE
Rewrite VERB
your PRON
personal ADJ
statement NOUN
; PUNCT
take VERB
it PRON
by ADP
an DET
Englishprofessor PROPN
or CCONJ
some DET
other ADJ
friendly ADJ
person NOUN
with ADP
skill NOUN
andexperience NOUN
in ADP
writing NOUN
and CCONJ
proof NOUN
- PUNCT
reading NOUN
and CCONJ
get AUX
theircriticism NOUN
, PUNCT
both CCONJ
about ADP
what PRON
you PRON
are AUX
saying VERB
as ADV
well ADV
as SCONJ
how ADV
yousay VERB
it PRON
. PUNCT
Review VERB
your PRON
academic ADJ
accomplishments NOUN
. PUNCT
  SPACE
If SCONJ
your PRON
grades NOUN
are AUX
poorin VERB
some DET
area NOUN
, PUNCT
do AUX
n't PART
be AUX
afraid ADJ
to PART
spend VERB
some DET
time NOUN
in ADP
furthercoursework NOUN
. PUNCT
  SPACE
Evidence NOUN
of ADP
determined VERB
committment NOUN
will AUX
helphere VERB
. PUNCT
  SPACE
If SCONJ
you PRON
filled VERB
your PRON
pre ADJ
- ADJ
medicine ADJ
curriculum NOUN
with ADP
gutcourses NOUN
, PUNCT
it PRON
usually ADV
shows VERB
. PUNCT
Look VERB
at ADP
your PRON
extracurricular ADJ
involvements NOUN
. PUNCT
  SPACE
Participating VERB
inlocal ADJ
philanthropic NOUN
or CCONJ
service NOUN
organizations NOUN
is AUX
a DET
plus;substantial ADJ
leadership NOUN
roles NOUN
in ADP
an DET
organization NOUN
help NOUN
also ADV
. PUNCT
Beware VERB
of ADP
' PUNCT
resume VERB
padding NOUN
' PUNCT
; PUNCT
such ADJ
things NOUN
are AUX
not PART
difficult ADJ
tospot NOUN
and CCONJ
weed VERB
out ADP
. PUNCT
Overall ADV
, PUNCT
a DET
clear ADJ
conception NOUN
of ADP
where ADV
you PRON
wish VERB
to PART
head VERB
and CCONJ
whyyou NOUN
want VERB
to PART
get AUX
there ADV
, PUNCT
combined VERB
with ADP
an DET
honest ADJ
self NOUN
- PUNCT
appraisalof ADJ
skills NOUN
and CCONJ
aptitude NOUN
, PUNCT
will AUX
be AUX
the DET
best ADJ
path NOUN
to PART
take VERB
inapplying VERB
to ADP
any DET
program NOUN
, PUNCT
medical ADJ
or CCONJ
what PRON
- PUNCT
have AUX
- PUNCT
you PRON
. PUNCT
Good ADJ
luck NOUN
with ADP
the DET
process NOUN
-- PUNCT
as SCONJ
Tom PROPN
Petty PROPN
says VERB
, PUNCT
' PUNCT
the DET
waitingis NOUN
the DET
hardest ADJ
part NOUN
' PUNCT
, PUNCT
at ADP
least ADJ
emotionally ADV
. PUNCT
: PUNCT
) PUNCT
Bob PROPN
SchmiegNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59354From NUM
: PUNCT
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller)Subject PROPN
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
Septoplasty PROPN
My PRON
ENT PROPN
doctor NOUN
recommended VERB
surgery NOUN
to PART
fix VERB
my PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
very ADV
deviatednasal ADJ
septum NOUN
( PUNCT
probably ADV
the DET
result NOUN
at ADP
least ADJ
partially ADV
from ADP
several ADJ
fractures).One PROPN
side NOUN
has AUX
approximately ADV
10 NUM
- SYM
15 NUM
% NOUN
of ADP
normal ADJ
flow NOUN
. PUNCT
  SPACE
Of ADV
course ADV
I PRON
have AUX
known VERB
thisfor ADJ
years NOUN
but CCONJ
recently ADV
discovered VERB
that SCONJ
I PRON
suffer VERB
from ADP
chronic ADJ
sinus NOUN
infection NOUN
, PUNCT
discovered VERB
during ADP
an DET
MRI NOUN
after ADP
a DET
severe ADJ
migraine NOUN
. PUNCT
  SPACE
A DET
CT PROPN
scan AUX
subsequently ADV
confirmed VERB
the DET
problems NOUN
in ADP
the DET
sinuses NOUN
. PUNCT
He PRON
wants VERB
to PART
do AUX
endoscopic ADJ
sinus NOUN
surgery NOUN
on ADP
the DET
ethmoid ADJ
, PUNCT
maxillary ADJ
, PUNCT
frontal ADJ
, PUNCT
and CCONJ
sphenoid VERB
, PUNCT
along ADP
with ADP
nasal ADJ
septoplasty NOUN
. PUNCT
He PRON
explained VERB
the DET
procedure NOUN
, PUNCT
and CCONJ
the DET
risks NOUN
. PUNCT
  SPACE
What PRON
I PRON
would AUX
like VERB
to PART
know VERB
is AUX
ifthere NOUN
is AUX
anyone PRON
out ADV
there ADV
who PRON
can AUX
tell VERB
me PRON
" PUNCT
I PRON
had AUX
this DET
surgery NOUN
, PUNCT
and CCONJ
it PRON
helpedme"?(I've VERB
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn'treally ADV
help VERB
them).I NUM
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see VERB
somerelief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
ofthat ADP
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved VERB
. PUNCT
I PRON
am AUX
42.Any NUM
relevant ADJ
information NOUN
is AUX
appreciated VERB
. PUNCT
Regards NOUN
, PUNCT
Jay PROPN
KellerSunnyvale PROPN
, PUNCT
Californiabadboy@netcom.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59355From NUM
: PUNCT
jprice@dpw.com X
( PUNCT
Janice PROPN
Price)Subject NUM
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???I PROPN
saw VERB
a DET
printed VERB
up ADP
flyer NOUN
that PRON
stated VERB
the DET
person NOUN
was AUX
a"licensed VERB
herbologist NOUN
and CCONJ
iridologist"What PRON
are AUX
your PRON
opinions?How NOUN
much ADJ
can AUX
you PRON
tell VERB
about ADP
a DET
person NOUN
's PART
health NOUN
by ADP
looking VERB
into ADP
their PRON
eyes?Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59356From NUM
: PUNCT
chcho@vnet NOUN
. PUNCT
IBM.COM PROPN
( PUNCT
Chul PROPN
- PUNCT
hee PROPN
Cho PROPN
) PUNCT
Subject NOUN
: PUNCT
ProHibit PROPN
for ADP
Spiral PROPN
MeningitisI PROPN
like VERB
to PART
know VERB
how ADV
effective ADJ
ProHibit PROPN
is AUX
to PART
prevent VERB
spiral NOUN
meningitisfor ADP
a DET
child NOUN
who PRON
is AUX
five NUM
years NOUN
old ADJ
. PUNCT
  SPACE
I PRON
heard VERB
it PRON
's AUX
from ADP
Canada PROPN
. PUNCT
What PRON
sort NOUN
of ADP
side NOUN
effects NOUN
, PUNCT
etc X
. PUNCT
Chul PROPN
- PUNCT
hee PROPN
ChoNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59357From NUM
: PUNCT
Stephen PROPN
Dubin PROPN
< X
sdubin@igc.apc.org>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?I PROPN
think VERB
you PRON
must AUX
have AUX
the DET
same ADJ
hygiene NOUN
teacher NOUN
I PRON
had AUX
in ADP
1955 NUM
. PUNCT
  SPACE
There PRON
is AUX
a DET
story NOUN
about ADP
the DET
Civil PROPN
War PROPN
about ADP
a DET
soldier NOUN
who PRON
was AUX
shot VERB
in ADP
thegroin NOUN
. PUNCT
  SPACE
The DET
bullet NOUN
, PUNCT
after ADP
passing VERB
through ADP
one NUM
of ADP
his PRON
testes NOUN
, PUNCT
then ADV
enteredthe VERB
abdomen NOUN
of ADP
a DET
young ADJ
woman NOUN
standing VERB
nearby ADV
. PUNCT
  SPACE
Later ADV
, PUNCT
  SPACE
when ADV
she PRON
( PUNCT
a DET
youngwoman NOUN
of ADP
unimpeachible ADJ
virtue NOUN
) PUNCT
was AUX
shown VERB
to PART
be AUX
pregnant ADJ
; PUNCT
the DET
soldier NOUN
didthe NOUN
honorable ADJ
thing NOUN
of ADP
marrying VERB
her PRON
. PUNCT
  SPACE
According VERB
to ADP
this DET
story NOUN
, PUNCT
they PRON
livedhappily ADV
ever ADV
after ADV
. PUNCT
  SPACE
Perhaps ADV
the DET
most ADV
famous ADJ
of ADP
Mr. PROPN
Rau PROPN
's PART
classes NOUN
was AUX
the DET
time NOUN
he PRON
would AUX
comeinto VERB
class NOUN
brandishing VERB
an DET
aluminum NOUN
turning VERB
mandrel NOUN
  SPACE
( PUNCT
tapering VERB
from ADP
about3/8 PROPN
" PUNCT
to ADP
1/2 NUM
" PUNCT
over ADP
a DET
10 NUM
inch NOUN
length NOUN
) PUNCT
. PUNCT
  SPACE
He PRON
would AUX
say VERB
, PUNCT
" PUNCT
Boys NOUN
, PUNCT
do AUX
you PRON
knowwhat ADP
this DET
is AUX
? PUNCT
  SPACE
It PRON
's AUX
a DET
medical ADJ
instrument NOUN
called VERB
a DET
' PUNCT
cock ADJ
reamer NOUN
' PUNCT
and CCONJ
it'sused VERB
to PART
unclog VERB
your PRON
penis NOUN
when ADV
you PRON
have AUX
VD PROPN
. PUNCT
  SPACE
They PRON
just ADV
ram VERB
it PRON
up ADP
therewithout ADP
an DET
anesthetic NOUN
! PUNCT
" PUNCT
  SPACE
Needless PROPN
to PART
say VERB
this DET
had AUX
a DET
chilling ADJ
effect NOUN
. PUNCT
I PRON
did AUX
n't PART
have AUX
lascivious ADJ
thoughts NOUN
for ADP
at ADV
least ADJ
an DET
hour NOUN
. PUNCT
  SPACE
Later ADV
in ADP
lifeas NOUN
I PRON
perused VERB
medical ADJ
instrument NOUN
catelogs NOUN
and CCONJ
saw VERB
the DET
slender ADJ
flexibleurethral ADJ
sounds NOUN
that PRON
are AUX
actually ADV
used VERB
, PUNCT
I PRON
could AUX
not PART
escape VERB
thinkingthat ADP
I PRON
might AUX
one NUM
day NOUN
see VERB
, PUNCT
" PUNCT
Reamer PROPN
, PUNCT
Cock NOUN
( PUNCT
style NOUN
of ADP
Rau PROPN
) PUNCT
. PUNCT
" PUNCT
        SPACE
] PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59358From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?Speaking VERB
of ADP
educational ADJ
systems NOUN
, PUNCT
I PRON
recently ADV
had AUX
a DET
colleaguetell NOUN
me PRON
that SCONJ
the DET
reason NOUN
one NUM
of ADP
our PRON
fifth ADJ
grade NOUN
students NOUN
is AUX
sophysically ADV
developed VERB
is AUX
because SCONJ
she PRON
was AUX
sexually ADV
abused VERB
as SCONJ
a DET
youngerchild NOUN
. PUNCT
This DET
, PUNCT
she PRON
went VERB
on ADP
to PART
say VERB
, PUNCT
kicks VERB
the DET
pituitary ADJ
gland NOUN
intoaction NOUN
and CCONJ
causes VERB
puberty NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59359From NUM
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?I PROPN
wrote VERB
: PUNCT
KW PROPN
> X
If SCONJ
you PRON
do AUX
n't PART
like VERB
additives NOUN
, PUNCT
then ADV
for ADP
godsake NOUN
, PUNCT
KW PROPN
> X
get AUX
off ADP
the DET
net NOUN
and CCONJ
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
. PUNCT
  SPACE
Sheesh PROPN
. PUNCT
Mary PROPN
Allison PROPN
exclaims VERB
: PUNCT
MA PROPN
> X
EXCUSE PROPN
ME!!!!!!!!!!!!MA NOUN
> X
Why ADV
ca AUX
n't PART
people NOUN
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
* PUNCT
ON ADP
* PUNCT
the DET
net NOUN
. PUNCT
MA PROPN
> X
I PRON
've AUX
gotten VERB
LOTS NOUN
of ADP
recipes NOUN
off ADP
the DET
net NOUN
that PRON
do AUX
n't PART
use VERB
additives NOUN
. PUNCT
Because SCONJ
one NUM
simply ADV
_ VERB
ca AUX
n't PART
_ VERB
cook VERB
on ADP
the DET
net NOUN
, PUNCT
nor CCONJ
can AUX
one NUM
cook VERB
while SCONJ
ON ADP
thenet NOUN
. PUNCT
  SPACE
Cooking NOUN
is AUX
best ADV
done VERB
IN ADP
a DET
kitchen NOUN
, PUNCT
ON ADP
a DET
stove NOUN
. PUNCT
  SPACE
( PUNCT
Gotcha PROPN
! PUNCT
* PUNCT
grin*)(I PROPN
said VERB
this DET
out SCONJ
of ADP
general ADJ
frustration NOUN
at ADP
people NOUN
( PUNCT
not PART
anyone PRON
in ADP
particular ADJ
) PUNCT
who PRON
seem VERB
to PART
expect VERB
packaged VERB
food NOUN
to PART
conform VERB
to ADP
their PRON
tastes NOUN
. PUNCT
  SPACE
In ADP
other ADJ
words NOUN
, PUNCT
if SCONJ
packaged VERB
foods NOUN
are AUX
not PART
to ADP
your PRON
liking NOUN
, PUNCT
prepare VERB
foods NOUN
that PRON
are.)MA VERB
> X
If SCONJ
you PRON
LIKE VERB
additives NOUN
then ADV
get AUX
off ADP
the DET
net NOUN
and CCONJ
go VERB
to ADP
your PRON
localMA PROPN
> X
supermarket NOUN
, PUNCT
buy VERB
lots NOUN
of ADP
packaged VERB
foods NOUN
, PUNCT
and CCONJ
YOU PRON
get VERB
OFF PROPN
THE DET
NET!!I PROPN
do AUX
n't PART
have AUX
strong ADJ
feelings NOUN
about ADP
additives NOUN
, PUNCT
as ADV
long ADV
as SCONJ
I PRON
ca AUX
n't PART
taste VERB
' PUNCT
em.(As NOUN
for ADP
the DET
rest NOUN
of ADP
your PRON
reply NOUN
to ADP
me PRON
, PUNCT
I PRON
am AUX
sorry ADJ
it PRON
it PRON
seemed VERB
as SCONJ
if SCONJ
i PRON
was AUX
  SPACE
picking VERB
on ADP
you PRON
. PUNCT
  SPACE
I PRON
was AUX
n't PART
trying VERB
to PART
do AUX
so ADV
. PUNCT
  SPACE
Please INTJ
accept VERB
my PRON
apologies.)~ DET
Kiran PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59360From NUM
: PUNCT
chungy2@rebecca.its.rpi.edu PROPN
( PUNCT
Yau PROPN
Felix PROPN
Chung)Subject PROPN
: PUNCT
Nasopharinx PROPN
Carcenoma PROPN
... PUNCT
Hi INTJ
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
the DET
possible ADJ
causes NOUN
of ADP
nasoparynx ADJ
carcenomaand NOUN
what PRON
are AUX
the DET
chances NOUN
of ADP
it PRON
being AUX
hereditary?Also PROPN
, PUNCT
in ADP
the DET
advacned VERB
cases NOUN
, PUNCT
what PRON
is AUX
the DET
general ADJ
procedure NOUN
to PART
reduce VERB
the DET
pain NOUN
the DET
area NOUN
as SCONJ
it PRON
prevents VERB
the DET
patient NOUN
from ADP
eatingdue PROPN
to ADP
the DET
excessive ADJ
pain NOUN
of ADP
swallowing NOUN
and CCONJ
even ADV
talking?Thanks.-F ADJ
.. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59361From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
cats NOUN
and CCONJ
pregnancyIn PROPN
article NOUN
< X
1993Apr27.043035.22609@etl.go.jp NUM
> X
klaus@ipri.go.jp PUNCT
( PUNCT
Klaus PROPN
Hofmann;(6663 PROPN
) PUNCT
) PUNCT
writes::Hello,:I PROPN
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
which PRON
: PUNCT
can AUX
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
: PUNCT
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?:Having VERB
the DET
cat NOUN
around ADV
is AUX
not PART
a DET
problem NOUN
, PUNCT
but CCONJ
the DET
pregnant ADJ
woman NOUN
should AUX
notchange VERB
the DET
litter NOUN
box NOUN
. PUNCT
  SPACE
Toxoplasmosis NOUN
can AUX
be AUX
transmitted VERB
from ADP
the DET
stool NOUN
ofsome NOUN
cats.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59362From NUM
: PUNCT
tegarr01@ulkyvx.louisville.eduSubject NOUN
: PUNCT
Herpes PROPN
question?I PROPN
am AUX
looking VERB
for ADP
some DET
clarification NOUN
on ADP
a DET
subject NOUN
that PRON
I PRON
am AUX
trying VERB
to PART
find VERB
someinformation NOUN
on ADP
. PUNCT
How ADV
is AUX
HSV-2 PROPN
( PUNCT
Herpes PROPN
) PUNCT
transmitted VERB
? PUNCT
  SPACE
I PRON
currently ADV
know VERB
that SCONJ
it PRON
can AUX
be AUX
transmittedduring VERB
inflammation NOUN
but CCONJ
, PUNCT
what PRON
I PRON
am AUX
looking VERB
for ADP
is AUX
if SCONJ
it PRON
can AUX
be AUX
transmitted VERB
during ADP
in ADP
other ADJ
periods NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
I PRON
want VERB
to PART
know VERB
if SCONJ
you PRON
can AUX
be AUX
accurately ADV
tested VERB
for ADP
it PRON
while SCONJ
you PRON
are AUX
not PART
showing VERB
symtoms?If NOUN
you PRON
can AUX
help VERB
I PRON
would AUX
greatly ADV
appreciate VERB
it PRON
. PUNCT
TegNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59363From NUM
: PUNCT
lim@graphics.rent.com PROPN
( PUNCT
Julie PROPN
Lim)Subject X
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?michael@iastate.edu PROPN
( PUNCT
Michael PROPN
M. PROPN
Huang PROPN
) PUNCT
writes VERB
: PUNCT
> X
MSG PROPN
is AUX
common ADJ
in ADP
many ADJ
food NOUN
we PRON
eat VERB
, PUNCT
including VERB
Chinese PROPN
( PUNCT
though SCONJ
some DET
oriental ADJ
> X
restaurants NOUN
might AUX
put VERB
a DET
tad NOUN
too ADV
much ADJ
in ADP
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
when ADV
I PRON
> X
go VERB
out ADP
and CCONJ
eat VERB
in ADP
most ADJ
of ADP
the DET
Chinese ADJ
food NOUN
restaurants NOUN
, PUNCT
I PRON
will AUX
usually ADV
get AUX
> X
a DET
slight ADJ
headache NOUN
and CCONJ
an DET
ununsual ADJ
thirst NOUN
afterwards ADV
. PUNCT
  SPACE
This DET
happens VERB
to ADP
many ADJ
> X
of ADP
my PRON
friends NOUN
and CCONJ
relatives NOUN
too ADV
. PUNCT
  SPACE
And CCONJ
, PUNCT
heh INTJ
, PUNCT
we PRON
eat VERB
Chinese ADJ
food NOUN
all DET
the DET
> X
time NOUN
at ADP
home NOUN
:) PUNCT
( PUNCT
but CCONJ
we PRON
do AUX
n't PART
use VERB
MSG PROPN
when ADV
we PRON
're AUX
cooking VERB
for ADP
ourselves PRON
) PUNCT
        SPACE
Heck INTJ
, PUNCT
I PRON
seem VERB
to PART
feel VERB
like SCONJ
that DET
* PUNCT
every DET
* PUNCT
time NOUN
I PRON
eat VERB
out ADP
. PUNCT
Including VERB
in ADP
the DET
cafeteria NOUN
at ADP
work NOUN
. PUNCT
About ADV
half DET
the DET
time NOUN
, PUNCT
the DET
headache NOUN
intensifies VERB
until ADP
nothing PRON
will AUX
make VERB
it PRON
go VERB
away ADV
except SCONJ
throwing VERB
up ADP
. PUNCT
Ick PROPN
. PROPN
        SPACE
As SCONJ
you PRON
might AUX
imagine VERB
, PUNCT
I PRON
do AUX
n't PART
eat VERB
out ADP
a DET
lot NOUN
. PUNCT
I PRON
guess VERB
my PRON
tolerance NOUN
for ADP
food NOUN
additives NOUN
has AUX
plummeted VERB
since SCONJ
I PRON
switched VERB
to ADP
eating VERB
mostly ADV
steamed VERB
veggies NOUN
. PUNCT
They PRON
're AUX
easy ADJ
to PART
fix VERB
, PUNCT
that DET
's AUX
all DET
. PUNCT
        SPACE
I PRON
wo AUX
n't PART
even ADV
mention VERB
what PRON
happened VERB
the DET
last ADJ
time NOUN
I PRON
ate VERB
corned ADJ
beef NOUN
. PUNCT
( PUNCT
Oops INTJ
. PUNCT
Too ADV
late ADV
. PUNCT
) PUNCT
The DET
Graphics PROPN
BBS PROPN
  SPACE
908/469 NUM
- PUNCT
0049 NUM
  SPACE
" PUNCT
It PRON
's AUX
better ADJ
than SCONJ
a DET
sharp ADJ
stick NOUN
in ADP
the DET
eye NOUN
! PUNCT
" PUNCT
  SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
Internet NOUN
: PUNCT
lim@graphics.rent.com PROPN
( PUNCT
Julie PROPN
Lim PROPN
) PUNCT
     SPACE
UUCP NOUN
: PUNCT
rutgers!bobsbox!graphics!limNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59364From NUM
: PUNCT
andrea@unity.ncsu.edu PROPN
( PUNCT
Andrea PROPN
M PROPN
Free PROPN
- PUNCT
Kwiatkowski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections?Steve ADJ
Pope PROPN
( PUNCT
spp@zabriskie.berkeley.edu ADV
) PUNCT
wrote VERB
: PUNCT
: PUNCT
A DET
woman NOUN
once ADV
told VERB
me PRON
her PRON
doctor NOUN
told VERB
her PRON
that SCONJ
I PRON
: PUNCT
could AUX
catch VERB
, PUNCT
asymptomatically ADV
, PUNCT
her PRON
yeast NOUN
infection NOUN
: PUNCT
from ADP
her PRON
, PUNCT
then ADV
give VERB
it PRON
back ADV
to ADP
her PRON
, PUNCT
causing VERB
: PUNCT
a DET
relapse NOUN
. PUNCT
: PUNCT
Probably ADV
bogus ADJ
, PUNCT
but CCONJ
if SCONJ
not PART
, PUNCT
it PRON
's AUX
another DET
reason NOUN
to PART
use VERB
: PUNCT
latex NOUN
... PUNCT
: PUNCT
SteveIt PROPN
is AUX
n't PART
bogus ADJ
. PUNCT
  SPACE
I PRON
had AUX
chronic ADJ
vaginal ADJ
yeast NOUN
infections NOUN
that PRON
would AUX
go VERB
awaywith PROPN
cream NOUN
but CCONJ
reappear VERB
in ADP
about ADV
2 NUM
weeks NOUN
. PUNCT
  SPACE
I PRON
had AUX
been AUX
on ADP
3 NUM
rounds VERB
ofantibiotics NOUN
for ADP
a DET
resistant ADJ
sinus NOUN
infection NOUN
and CCONJ
my PRON
husband NOUN
had AUX
been AUX
onamoxicillin ADJ
also ADV
for ADP
a DET
sinus NOUN
infection NOUN
. PUNCT
  SPACE
After ADP
six NUM
months NOUN
of ADP
this DET
, PUNCT
I PRON
wentto VERB
a DET
gynecologist NOUN
who PRON
had AUX
me PRON
culture NOUN
my PRON
husband NOUN
seminal ADJ
fluid PROPN
. PUNCT
  SPACE
After ADP
7days NUM
incubation NOUN
he PRON
had AUX
quite DET
a DET
bit NOUN
of ADP
yeast NOUN
growth NOUN
( PUNCT
it PRON
was AUX
confirmed VERB
bythe NOUN
lab NOUN
) PUNCT
. PUNCT
  SPACE
A DET
round NOUN
of ADP
Nizerol PROPN
for ADP
him PRON
cleared VERB
both DET
of ADP
us PRON
. PUNCT
Andrea PROPN
KwiatkowskiNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59365From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?mmatusev@radford.vak12ed.edu NOUN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich PROPN
) PUNCT
writes:>Speaking VERB
of ADP
educational ADJ
systems NOUN
, PUNCT
I PRON
recently ADV
had AUX
a DET
colleague NOUN
> X
tell VERB
me PRON
that SCONJ
the DET
reason NOUN
one NUM
of ADP
our PRON
fifth ADJ
grade NOUN
students NOUN
is AUX
so ADV
> X
physically ADV
developed VERB
is AUX
because SCONJ
she PRON
was AUX
sexually ADV
abused VERB
as SCONJ
a DET
younger ADJ
> X
child NOUN
. PUNCT
This DET
, PUNCT
she PRON
went VERB
on ADP
to PART
say VERB
, PUNCT
kicks VERB
the DET
pituitary ADJ
gland NOUN
into ADP
> X
action NOUN
and CCONJ
causes VERB
puberty NOUN
. PUNCT
Nonsense NOUN
! PUNCT
I PRON
've AUX
taught VERB
fifth ADJ
, PUNCT
sixth ADJ
, PUNCT
seventh ADJ
. PUNCT
There PRON
are AUX
a DET
few ADJ
early ADJ
puberty NOUN
types NOUN
in ADP
fifth ADJ
and CCONJ
it PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
early ADJ
sexual ADJ
experience NOUN
. PUNCT
-Jackie NUM
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59366From NUM
: PUNCT
russ@pmafire.inel.gov PROPN
( PUNCT
Russ PROPN
Brown)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Nasopharinx PROPN
Carcenoma PROPN
... PUNCT
In ADP
article NOUN
< X
+ CCONJ
y55z0d@rpi.edu INTJ
> X
chungy2@rebecca.its.rpi.edu PROPN
( PUNCT
Yau PROPN
Felix PROPN
Chung PROPN
) PUNCT
writes:>>Hi PROPN
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
the DET
possible ADJ
causes NOUN
of ADP
nasoparynx ADJ
carcenoma NOUN
> X
and CCONJ
what PRON
are AUX
the DET
chances NOUN
of ADP
it PRON
being AUX
hereditary?Nasopharyngeal VERB
cancer NOUN
is AUX
( PUNCT
roughly ADV
, PUNCT
do AUX
n't PART
have AUX
references NOUN
at ADP
hand NOUN
) PUNCT
20 NUM
- SYM
30times NUM
more ADV
prevalent ADJ
in ADP
Chinese ADJ
than SCONJ
Caucasians PROPN
, PUNCT
particularly ADV
those DET
Chinesefrom PROPN
southern ADJ
China PROPN
. PUNCT
  SPACE
One NUM
province NOUN
( PUNCT
or CCONJ
region NOUN
) PUNCT
has AUX
an DET
extraordinary ADJ
excess NOUN
. PUNCT
The DET
Chinese PROPN
and CCONJ
others NOUN
have AUX
done VERB
major ADJ
studies NOUN
. PUNCT
  SPACE
Some DET
association NOUN
withthe NOUN
Epstein PROPN
- PUNCT
Barr PROPN
virus NOUN
has AUX
been AUX
noted.>>Also ADV
, PUNCT
in ADP
the DET
advacned VERB
cases NOUN
, PUNCT
what PRON
is AUX
the DET
general ADJ
procedure NOUN
to PART
> X
reduce VERB
the DET
pain NOUN
the DET
area NOUN
as SCONJ
it PRON
prevents VERB
the DET
patient NOUN
from ADP
eating VERB
> X
due ADP
to ADP
the DET
excessive ADJ
pain NOUN
of ADP
swallowing NOUN
and CCONJ
even ADV
talking?>Palliative PUNCT
radiotherapy PROPN
is AUX
used VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59367From NUM
: PUNCT
sutton@vxcrna.cern.ch PROPN
( PUNCT
SUTTON PROPN
, PUNCT
BERN./SL)Subject PROPN
: PUNCT
Hip PROPN
replacementNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59368From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
pros-*----In PROPN
article NOUN
< X
C63yG5.8tH@cs.uiuc.edu NUM
> X
blix@milton.cs.uiuc.edu NOUN
( PUNCT
Gunnar PROPN
Blix PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) NUM
pros NOUN
and CCONJ
> X
cons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
... PUNCT
I PRON
pity VERB
those DET
who PRON
hope VERB
that SCONJ
medical ADJ
knowledge NOUN
can AUX
resolve VERB
issuessuch ADJ
as SCONJ
this DET
. PUNCT
  SPACE
This DET
issue NOUN
has AUX
been AUX
rehashed VERB
in ADP
sci.med VERB
time NOUN
andtime NOUN
again ADV
. PUNCT
  SPACE
The DET
bottom ADJ
line NOUN
is AUX
this DET
: PUNCT
in ADP
normal ADJ
circumstances NOUN
, PUNCT
both CCONJ
the DET
medical ADJ
advantages NOUN
of ADP
and CCONJ
the DET
medical ADJ
risks NOUN
ofcircumcision NOUN
are AUX
minor ADJ
. PUNCT
  SPACE
This DET
means VERB
that SCONJ
the DET
decision NOUN
is AUX
left VERB
tothe DET
religious ADJ
, PUNCT
cultural ADJ
, PUNCT
ethical ADJ
, PUNCT
and CCONJ
aesthetic ADJ
mores NOUN
of ADP
theparents NOUN
, PUNCT
at ADP
best ADJ
, PUNCT
or CCONJ
to ADP
the DET
habit NOUN
of ADP
the DET
concerned ADJ
hospital NOUN
orcaregivers NOUN
, PUNCT
at ADP
worst ADJ
. PUNCT
As SCONJ
( PUNCT
prospective ADJ
) PUNCT
parents NOUN
, PUNCT
you PRON
should AUX
do AUX
what PRON
you PRON
want VERB
in ADP
thisregard NOUN
and CCONJ
not PART
worry VERB
about ADP
it PRON
too ADV
much ADV
. PUNCT
  SPACE
In ADP
terms NOUN
of ADP
decisionsyou NOUN
make VERB
for ADP
your PRON
child NOUN
, PUNCT
it PRON
will AUX
have AUX
far ADV
less ADJ
importance NOUN
thanmany NOUN
-- PUNCT
such ADJ
as SCONJ
which PRON
schools NOUN
you PRON
choose VERB
-- PUNCT
that SCONJ
most ADV
parentsthink VERB
about ADP
only ADV
a DET
little ADJ
. PUNCT
This DET
question NOUN
will AUX
undoubtedly ADV
push VERB
the DET
buttons NOUN
of ADP
people NOUN
whofeel VERB
that SCONJ
the DET
decision NOUN
to PART
circumcise VERB
your PRON
infant NOUN
or CCONJ
not PART
is AUX
amomentous ADJ
medical ADJ
decision NOUN
. PUNCT
  SPACE
It PRON
is AUX
not PART
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59369From NUM
: PUNCT
tuser@azbuka.kharkov.ua PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
WE PRON
CAN AUX
SUPPLY VERB
YOU PRON
WITH ADP
THE DET
TRANSPLANTANTS PROPN
& CCONJ
OTHER PROPN
    SPACE
The DET
Private PROPN
Scietific PROPN
& CCONJ
industrial ADJ
firm NOUN
" PUNCT
Intercom PROPN
2000 NUM
" PUNCT
cansupply NOUN
You PRON
with ADP
the DET
transplantants NOUN
that PRON
could AUX
be AUX
delivered VERB
accordingto PROPN
Your PRON
order NOUN
. PUNCT
    SPACE
Selection NOUN
and CCONJ
preparation NOUN
of ADP
the DET
materials NOUN
is AUX
carried VERB
out ADP
by ADP
thequalified ADJ
personnel NOUN
having VERB
20-year NUM
experience NOUN
in ADP
this DET
sphere NOUN
. PUNCT
    SPACE
We PRON
provide VERB
: PUNCT
- PUNCT
Immunological ADJ
selection NOUN
of ADP
tissues NOUN
( PUNCT
on ADP
the DET
special ADJ
request NOUN
) PUNCT
; PUNCT
- PUNCT
AIDS PROPN
, PUNCT
Syphilis PROPN
& CCONJ
other ADJ
infection NOUN
diseases NOUN
tests NOUN
; PUNCT
- PUNCT
bio ADJ
- PUNCT
chemical ADJ
tests NOUN
. PUNCT
    SPACE
We PRON
guarantee VERB
deliverance NOUN
of ADP
our PRON
products NOUN
within ADP
temperaturehabital ADJ
providing VERB
their PRON
prime ADJ
condition NOUN
. PUNCT
                SPACE
O.Yarosha PROPN
st PROPN
. PROPN
39 NUM
                SPACE
apart ADV
. PUNCT
49 NUM
                SPACE
Kharkov PROPN
, PUNCT
Ukraine PROPN
. PUNCT
                SPACE
tel PROPN
. PUNCT
+7 PROPN
( PUNCT
057)-2 NUM
- SYM
323177 NUM
                SPACE
fax NOUN
  SPACE
+7 NOUN
( PUNCT
057)-2 NUM
- SYM
431651 NUM
, PUNCT
231192 NUM
                SPACE
e NOUN
- NOUN
mail NOUN
: PUNCT
tuser%azbuka.kharkov.ua@relay.ussr.eu.netNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59370From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???In NUM
article NOUN
< X
9304261811.AA07821@DPW.COM NOUN
> X
Janice PROPN
Price PROPN
, PUNCT
jprice@dpw.comwrites:>How PUNCT
much ADV
can AUX
you PRON
tell VERB
about ADP
a DET
person NOUN
's PART
health NOUN
by ADP
looking VERB
into ADP
theireyes?By PROPN
looking VERB
at ADP
the DET
iris PROPN
( PUNCT
iridology NOUN
) PUNCT
- PUNCT
virtually ADV
nothing PRON
. PUNCT
Looking VERB
at ADP
the DET
retina NOUN
allows VERB
one NUM
to PART
visualise VERB
the DET
small ADJ
bloodvessels NOUN
and CCONJ
is AUX
helpful ADJ
in ADP
assessing VERB
various ADJ
systemic ADJ
diseases NOUN
, PUNCT
hypertension NOUN
and CCONJ
diabetes NOUN
for ADP
example NOUN
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionUM PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59371From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
thermogenicsFirst NOUN
off ADV
, PUNCT
if SCONJ
I PRON
'm AUX
not PART
mistaken ADJ
, PUNCT
only ADV
hibernating VERB
animals NOUN
have AUX
brown ADJ
fat NOUN
, PUNCT
not PART
humans NOUN
. PUNCT
Secondly ADV
, PUNCT
your PRON
description NOUN
sounds VERB
just ADV
like SCONJ
2,4-dinitrophenol NUM
. PUNCT
  SPACE
This DET
is AUX
anuncoupler NOUN
of ADP
respiratory PROPN
chain NOUN
oxidative ADJ
phosphorylation NOUN
. PUNCT
  SPACE
Put VERB
in ADP
layman'sterms NOUN
, PUNCT
it PRON
short ADJ
- PUNCT
circuits NOUN
the DET
mitochondria NOUN
, PUNCT
causing VERB
food NOUN
energy NOUN
to PART
beturned VERB
into ADP
heat.2,4-DNP PROPN
was AUX
popular ADJ
in ADP
the DET
1930 NUM
's PART
for ADP
weight NOUN
reduction NOUN
. PUNCT
  SPACE
In ADP
controlledamounts NOUN
, PUNCT
it PRON
raises VERB
body NOUN
temperature NOUN
as SCONJ
the DET
body NOUN
compensates VERB
for ADP
thereduced ADJ
amount NOUN
of ADP
useful ADJ
energy NOUN
available ADJ
. PUNCT
  SPACE
It PRON
is AUX
very ADV
dangerous ADJ
. PUNCT
It PRON
would AUX
be AUX
wiser ADJ
to PART
adjust VERB
to ADP
your PRON
present ADJ
body NOUN
form NOUN
, PUNCT
rather ADV
thanplay VERB
around ADP
with ADP
2,4-DNP.But NUM
if SCONJ
you PRON
insist VERB
, PUNCT
I PRON
suggest VERB
you PRON
look VERB
up ADP
the DET
literature NOUN
in ADP
your PRON
ownuniversity NOUN
library NOUN
. PUNCT
  SPACE
You PRON
can AUX
obtain VERB
2,4-DNP NUM
by ADP
taking VERB
a DET
first ADJ
yearorganic NOUN
chemistry NOUN
lab NOUN
course NOUN
and CCONJ
swiping VERB
it PRON
from ADP
the DET
supplies NOUN
( PUNCT
it'sa PROPN
commonly ADV
- PUNCT
used VERB
reagent).Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59372From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
hypodermic ADJ
needleScientific NOUN
American PROPN
had AUX
a DET
nice ADJ
short ADJ
article NOUN
on ADP
the DET
history NOUN
of ADP
thehypodermic ADJ
about ADV
10 NUM
or CCONJ
15 NUM
years NOUN
ago ADV
. PUNCT
  SPACE
Prior ADV
to ADP
liquid NOUN
injectables NOUN
, PUNCT
there PRON
were AUX
paddle NOUN
- PUNCT
like ADJ
needles NOUN
used VERB
to PART
implant VERB
a DET
tiny ADJ
pill NOUN
under ADP
theskin NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59373From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr26.174538.1@vms.ocom.okstate.edu PROPN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>oxygen(just INTJ
like INTJ
it PRON
does AUX
in ADP
the DET
vagina PROPN
) PUNCT
. PUNCT
  SPACE
As ADV
much ADJ
stuff NOUN
as SCONJ
there PRON
is AUX
in ADP
the DET
> X
lay NOUN
press NOUN
about ADP
L. PROPN
acidophilus NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
I PRON
'm AUX
really ADV
> X
amazed ADJ
that SCONJ
someone PRON
has AUX
not PART
done VERB
a DET
clinical ADJ
trial NOUN
yet ADV
to PART
check VERB
it PRON
out ADP
. PUNCT
I've PROPN
mentioned VERB
this DET
study NOUN
a DET
couple NOUN
of ADP
times NOUN
now ADV
: PUNCT
Ingestion NOUN
of ADP
yogurtcontaining VERB
Lactobacillus PROPN
acidophilus NOUN
as SCONJ
prophylaxis PROPN
for ADP
candidalvaginitis NOUN
, PUNCT
Annals PROPN
of ADP
Internal PROPN
Medicine PROPN
, PUNCT
3/1/92 NUM
116(5):353 NUM
- SYM
7 NUM
. PUNCT
  SPACE
Do AUX
youhave VERB
a DET
problem NOUN
with ADP
the DET
study NOUN
because SCONJ
they PRON
used VERB
yogurt PROPN
rather ADV
thancapsules NOUN
of ADP
lactobacillus NOUN
( PUNCT
even ADV
though SCONJ
it PRON
had AUX
positive ADJ
results)?The PROPN
study NOUN
was AUX
a DET
crossover NOUN
trial NOUN
of ADP
daily ADJ
ingestion NOUN
of ADP
8 NUM
ounces NOUN
ofyogurt NOUN
. PUNCT
  SPACE
There PRON
was AUX
a DET
marked ADJ
decrease NOUN
in ADP
infections NOUN
while SCONJ
women NOUN
wereingesting VERB
the DET
yogurt PROPN
. PUNCT
  SPACE
Problems NOUN
with ADP
the DET
study NOUN
included VERB
very ADV
smallnumbers NOUN
( PUNCT
33 NUM
patients NOUN
enrolled VERB
) PUNCT
and CCONJ
many ADJ
protocol NOUN
violations NOUN
( PUNCT
only21 PROPN
patients NOUN
were AUX
analyzed VERB
) PUNCT
. PUNCT
  SPACE
Still ADV
, PUNCT
the DET
difference NOUN
in ADP
rates NOUN
of ADP
infectionbetween NUM
the DET
two NUM
groups NOUN
was AUX
so ADV
large ADJ
that SCONJ
the DET
study NOUN
remains VERB
fairlybelievable.-- ADP
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59374From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections?My PUNCT
( PUNCT
then ADV
) PUNCT
wife NOUN
used VERB
to PART
get AUX
recurrent ADJ
yeast NOUN
infections NOUN
. PUNCT
One NUM
day NOUN
, PUNCT
herdoctor NOUN
sent VERB
her PRON
home NOUN
with ADP
medication NOUN
for ADP
her PRON
and CCONJ
a DET
pill NOUN
for ADP
me PRON
. PUNCT
I PRON
tookthe NOUN
pill NOUN
, PUNCT
upon SCONJ
her PRON
insistence NOUN
, PUNCT
and CCONJ
was AUX
very ADV
relieved VERB
the DET
next ADJ
day NOUN
when ADV
Ilooked VERB
it PRON
up ADP
in ADP
the DET
PDR PROPN
. PUNCT
It PRON
only ADV
RARELY NOUN
causes VERB
testicular ADJ
atrophy NOUN
... PUNCT
Anyway INTJ
, PUNCT
men NOUN
apparently ADV
do AUX
get AUX
yeast NOUN
infections NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59375From NUM
: PUNCT
wiesel-elisha@cs.yale.edu PROPN
( PUNCT
Elisha PROPN
Wiesel)Subject NUM
: PUNCT
INFO NOUN
: PUNCT
Colonics NOUN
and CCONJ
Purification?Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
coloncleansing VERB
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
Inparticular PROPN
, PUNCT
Dr. PROPN
Bernard PROPN
Jenssen PROPN
in ADP
his PRON
book NOUN
" PUNCT
Colon PROPN
Cleansing PROPN
forHealth PROPN
and CCONJ
Longevity PROPN
" PUNCT
-- PUNCT
the DET
title NOUN
actually ADV
escapes VERB
me PRON
, PUNCT
but CCONJ
it PRON
is AUX
verysimilar ADJ
to ADP
that DET
-- PUNCT
claims VERB
that SCONJ
regular ADJ
self NOUN
- PUNCT
administered VERB
colonics NOUN
, PUNCT
along ADP
with ADP
certain ADJ
orally ADV
ingested VERB
" PUNCT
debris NOUN
- PUNCT
loosening VERB
agents NOUN
" PUNCT
, PUNCT
booststhe NOUN
immune ADJ
system NOUN
to ADP
a DET
significant ADJ
degree NOUN
. PUNCT
He PRON
also ADV
plugs VERB
a DET
unique ADJ
appliance NOUN
called VERB
the DET
" PUNCT
Colema PROPN
Board PROPN
" PUNCT
, PUNCT
whichfacilitates VERB
the DET
self NOUN
- PUNCT
administration NOUN
of ADP
colonics NOUN
. PUNCT
  SPACE
It PRON
sells VERB
for ADP
over$100 PROPN
from ADP
a DET
California PROPN
- PUNCT
based VERB
company NOUN
. PUNCT
  SPACE
He PRON
also ADV
plugs VERB
Vitra PROPN
- PUNCT
Toxproducts PROPN
as SCONJ
his PRON
chemical ADJ
agents NOUN
of ADP
choice NOUN
: PUNCT
these DET
include VERB
volcanic ADJ
ash NOUN
, PUNCT
supposedly ADV
for ADP
its PRON
electrical ADJ
charge NOUN
, PUNCT
and CCONJ
psyllium NOUN
powder NOUN
, PUNCT
for ADP
itsbulkiness NOUN
. PUNCT
If SCONJ
anyone PRON
knows VERB
anything PRON
about ADP
colon NOUN
cleansing NOUN
theory NOUN
, PUNCT
itsparticulars NOUN
, PUNCT
or CCONJ
the DET
Colema PROPN
Board PROPN
and CCONJ
related ADJ
products NOUN
, PUNCT
I PRON
'd AUX
be AUX
veryinterested VERB
to PART
hear VERB
about ADP
research NOUN
and CCONJ
personal ADJ
experience NOUN
. PUNCT
This DET
article NOUN
is AUX
crossposted VERB
to ADP
alt.magick PROPN
as SCONJ
the DET
issue NOUN
touches VERB
uponfasting VERB
and CCONJ
cleansing VERB
through ADP
a DET
" PUNCT
ritual ADJ
" PUNCT
system NOUN
of ADP
purification.-- PROPN
Eli-- PROPN
/-------------------------------------------------------------------------\![wiesel@cs.yale.edu PUNCT
] PUNCT
Elisha PROPN
Wiesel PROPN
, PUNCT
Davenport PROPN
College PROPN
' PART
94 NUM
Yale PROPN
University PROPN
! PUNCT
    SPACE
! PUNCT
[ PUNCT
wiesel@minerva.cis.yale.edu PROPN
] PUNCT
( PUNCT
203 NUM
) PUNCT
436 NUM
- SYM
1338<-School NUM
( PUNCT
212 NUM
) PUNCT
371 NUM
- PUNCT
2756<-Home!\-------------------------------------------------------------------------/Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59376From NUM
: PUNCT
wiesel-elisha@yale.edu NUM
( PUNCT
Elisha PROPN
Wiesel)Subject NUM
: PUNCT
INFO NOUN
: PUNCT
Colonics NOUN
and CCONJ
Purification?Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
coloncleansing VERB
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
Inparticular PROPN
, PUNCT
Dr. PROPN
Bernard PROPN
Jenssen PROPN
in ADP
his PRON
book NOUN
" PUNCT
Colon PROPN
Cleansing PROPN
forHealth PROPN
and CCONJ
Longevity PROPN
" PUNCT
-- PUNCT
the DET
title NOUN
actually ADV
escapes VERB
me PRON
, PUNCT
but CCONJ
it PRON
is AUX
verysimilar ADJ
to ADP
that DET
-- PUNCT
claims VERB
that SCONJ
regular ADJ
self NOUN
- PUNCT
administered VERB
colonics NOUN
, PUNCT
along ADP
with ADP
certain ADJ
orally ADV
ingested VERB
" PUNCT
debris NOUN
- PUNCT
loosening VERB
agents NOUN
" PUNCT
, PUNCT
booststhe NOUN
immune ADJ
system NOUN
to ADP
a DET
significant ADJ
degree NOUN
. PUNCT
He PRON
also ADV
plugs VERB
a DET
unique ADJ
appliance NOUN
called VERB
the DET
" PUNCT
Colema PROPN
Board PROPN
" PUNCT
, PUNCT
whichfacilitates VERB
the DET
self NOUN
- PUNCT
administration NOUN
of ADP
colonics NOUN
. PUNCT
  SPACE
It PRON
sells VERB
for ADP
over$100 PROPN
from ADP
a DET
California PROPN
- PUNCT
based VERB
company NOUN
. PUNCT
  SPACE
He PRON
also ADV
plugs VERB
Vitra PROPN
- PUNCT
Toxproducts PROPN
as SCONJ
his PRON
chemical ADJ
agents NOUN
of ADP
choice NOUN
: PUNCT
these DET
include VERB
volcanic ADJ
ash NOUN
, PUNCT
supposedly ADV
for ADP
its PRON
electrical ADJ
charge NOUN
, PUNCT
and CCONJ
psyllium NOUN
powder NOUN
, PUNCT
for ADP
itsbulkiness NOUN
. PUNCT
If SCONJ
anyone PRON
knows VERB
anything PRON
about ADP
colon NOUN
cleansing NOUN
theory NOUN
, PUNCT
itsparticulars NOUN
, PUNCT
or CCONJ
the DET
Colema PROPN
Board PROPN
and CCONJ
related ADJ
products NOUN
, PUNCT
I PRON
'd AUX
be AUX
veryinterested VERB
to PART
hear VERB
about ADP
research NOUN
and CCONJ
personal ADJ
experience NOUN
. PUNCT
This DET
article NOUN
is AUX
crossposted VERB
to ADP
alt.magick PROPN
as SCONJ
the DET
issue NOUN
touches VERB
uponfasting VERB
and CCONJ
cleansing VERB
through ADP
a DET
" PUNCT
ritual ADJ
" PUNCT
system NOUN
of ADP
purification.-- PROPN
Eli-- PROPN
/-------------------------------------------------------------------------\![wiesel@cs.yale.edu PUNCT
] PUNCT
Elisha PROPN
Wiesel PROPN
, PUNCT
Davenport PROPN
College PROPN
' PART
94 NUM
Yale PROPN
University PROPN
! PUNCT
    SPACE
! PUNCT
[ PUNCT
wiesel@minerva.cis.yale.edu PROPN
] PUNCT
( PUNCT
203 NUM
) PUNCT
436 NUM
- SYM
1338<-School NUM
( PUNCT
212 NUM
) PUNCT
371 NUM
- PUNCT
2756<-Home!\-------------------------------------------------------------------------/Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59377From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu NUM
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
cats NOUN
and CCONJ
pregnancyIn PROPN
article NOUN
< X
1993Apr27.043035.22609@etl.go.jp NUM
> X
, PUNCT
klaus@ipri.go.jp PUNCT
( PUNCT
Klaus PROPN
Hofmann;(6663 PROPN
) PUNCT
) PUNCT
writes VERB
... PUNCT
>I NUM
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
which PRON
> X
can AUX
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
> X
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?The ADJ
disease NOUN
you PRON
are AUX
talking VERB
about ADP
is AUX
toxoplasmosis NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
protozoan NOUN
that PRON
lives VERB
and CCONJ
multiplies NOUN
within ADP
cells NOUN
. PUNCT
  SPACE
In ADP
cats NOUN
, PUNCT
the DET
protozoan NOUN
multiplies NOUN
in ADP
theintestinal ADJ
cells NOUN
and CCONJ
eggs NOUN
are AUX
shed VERB
in ADP
the DET
cat NOUN
's PART
feces NOUN
. PUNCT
  SPACE
The DET
protozoa NOUN
cancross VERB
the DET
placenta NOUN
to PART
infect VERB
the DET
fetus NOUN
. PUNCT
  SPACE
The DET
disease NOUN
may AUX
be AUX
asymptomaticafter VERB
the DET
baby NOUN
is AUX
born VERB
, PUNCT
or CCONJ
it PRON
may AUX
be AUX
very ADV
severe ADJ
. PUNCT
  SPACE
Toxo PROPN
may AUX
cause VERB
blindnessand PROPN
mental ADJ
retardation NOUN
. PUNCT
Having VERB
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
; PUNCT
however ADV
, PUNCT
pregnantwomen NOUN
should AUX
not PART
scoop VERB
or CCONJ
change VERB
the DET
cat NOUN
's PART
litterbox NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
whoeverdoes NOUN
empty VERB
the DET
litterbox NOUN
should AUX
thoroughly ADV
wash VERB
his PRON
/ SYM
her PRON
hands NOUN
before ADP
handlinganything VERB
else ADV
, PUNCT
especially ADV
food NOUN
. PUNCT
Information NOUN
came VERB
from ADP
_ PROPN
The DET
Merck PROPN
Manual PROPN
, PUNCT
15th ADJ
Ed._I NOUN
hope VERB
this DET
information NOUN
is AUX
helpful ADJ
to ADP
you.Elisapicl25@fsphy1.physics.fsu.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59378From NUM
: PUNCT
daniel@siemens.com X
. PUNCT
( PUNCT
Daniel PROPN
L. PROPN
Theivanayagam)Subject PROPN
: PUNCT
USMLE PROPN
( PUNCT
formerly ADV
National PROPN
Boards PROPN
) PUNCT
Part NOUN
1- NUM
Request NOUN
to ADP
Medical PROPN
StudentsThis PROPN
request NOUN
goes VERB
out ADP
to ADP
medical ADJ
students NOUN
who PRON
have AUX
doneor NOUN
are AUX
planning VERB
to PART
sit VERB
the DET
USMLE PROPN
( PUNCT
or CCONJ
National PROPN
Boards PROPN
) PUNCT
Part NOUN
1.My NUM
wife NOUN
is AUX
sitting VERB
this DET
examination NOUN
in ADP
early ADJ
June PROPN
this DET
year NOUN
and CCONJ
wouldlike VERB
to PART
have AUX
a DET
look NOUN
at ADP
some DET
old ADJ
National PROPN
Boards PROPN
, PUNCT
Part NOUN
1 NUM
questionsfound NOUN
in ADP
the DET
following VERB
books NOUN
. PUNCT
These DET
books NOUN
are AUX
currently ADV
out SCONJ
of ADP
print NOUN
. PUNCT
The DET
books NOUN
are:(1 NUM
) PUNCT
Retired VERB
NBME PROPN
Basic PROPN
Medical PROPN
Science PROPN
Test PROPN
Items PROPN
, PUNCT
NBME PROPN
; PUNCT
    SPACE
Published VERB
by ADP
NBME PROPN
in ADP
1991(2 NUM
) PUNCT
Self NOUN
- PUNCT
test NOUN
in ADP
the DET
Part PROPN
1 NUM
Basic PROPN
Medical PROPN
Sciences PROPN
, PUNCT
NBME PROPN
; PUNCT
    SPACE
Published VERB
by ADP
NBME PROPN
in ADP
1989I PROPN
would AUX
appreciate VERB
if SCONJ
anyone PRON
who PRON
has AUX
these DET
books NOUN
is AUX
willingto NOUN
loan VERB
it PRON
to ADP
her PRON
for ADP
a DET
couple NOUN
of ADP
days NOUN
. PUNCT
Obviously ADV
, PUNCT
I PRON
wouldreimburse VERB
for ADP
you PRON
all DET
postage VERB
and CCONJ
related ADJ
charges NOUN
. PUNCT
Failingthat ADP
it PRON
would AUX
be AUX
beneficial ADJ
if SCONJ
anyone PRON
could AUX
point VERB
to ADP
anylibrary NOUN
in ADP
the DET
NY PROPN
, PUNCT
NJ PROPN
or CCONJ
PA PROPN
area NOUN
that PRON
may AUX
have AUX
these DET
books NOUN
. PUNCT
Please INTJ
respond VERB
by ADP
e NOUN
- NOUN
mail NOUN
since SCONJ
I PRON
do AUX
not PART
read VERB
this DET
newsgroupregularly ADV
. PUNCT
Thanks NOUN
in ADP
advance NOUN
. PUNCT
Daniele ADJ
- PUNCT
mail NOUN
: PUNCT
daniel@learning.siemens.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59379From NUM
: PUNCT
giamomj@duvm.ocs.drexel.edu PROPN
( PUNCT
Mike PROPN
G.)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosNeed VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosIn NOUN
article NOUN
< X
C63yG5.8tH@cs.uiuc.edu NOUN
> X
Gunnar PROPN
Blix PROPN
, PUNCT
blix@milton.cs.uiuc.eduwrites:>I PROPN
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) NUM
pros NOUN
and CCONJ
> X
cons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
interested ADJ
in ADP
> NUM
references NOUN
to ADP
studies NOUN
that PRON
indicate VERB
disadvantages NOUN
or CCONJ
refute VERB
studies NOUN
> X
that PRON
indicate VERB
advantages NOUN
. PUNCT
  SPACE
A DET
friend NOUN
who PRON
is AUX
a DET
medical ADJ
student NOUN
is AUX
> X
writing VERB
a DET
survey NOUN
paper NOUN
, PUNCT
and CCONJ
apparently ADV
the DET
studies NOUN
she PRON
has AUX
run VERB
into ADP
> X
are AUX
all DET
for ADP
circumcision NOUN
, PUNCT
the DET
main ADJ
argument NOUN
being AUX
a DET
lower ADJ
risk NOUN
of ADP
> PROPN
penile PROPN
cancer.>>Please PROPN
email NOUN
responses NOUN
as SCONJ
I PRON
am AUX
not PART
a DET
frequent ADJ
reader NOUN
of ADP
either DET
group.>I PROPN
will AUX
summarize VERB
to ADP
the DET
net NOUN
. PUNCT
I'm PRON
very ADV
surprised VERB
that SCONJ
medical ADJ
schools NOUN
still ADV
push VERB
routine ADJ
circumcisionof NOUN
newborn ADJ
males NOUN
on ADP
the DET
population NOUN
. PUNCT
Since SCONJ
your PRON
friend NOUN
is AUX
not PART
a DET
man NOUN
, PUNCT
shecan't ADV
imagine VERB
what PRON
it PRON
's AUX
like ADJ
to PART
have AUX
a DET
penis NOUN
, PUNCT
much ADV
less ADJ
a DET
foreskin NOUN
. PUNCT
Iguess VERB
if SCONJ
American ADJ
medicine NOUN
did AUX
an DET
artistic ADJ
job NOUN
of ADP
circumcising VERB
everymale PROPN
, PUNCT
then ADV
the DET
visual ADJ
result NOUN
would AUX
be AUX
somewhat ADV
more ADV
natural ADJ
inappearance NOUN
... PUNCT
The DET
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
begoing VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journalor PROPN
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
oldJewish ADJ
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
thecancer NOUN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
likecrazy PROPN
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
alittle VERB
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung ADJ
up ADP
onthe DET
penis PROPN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADJ
likemastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basicallyunnecessary ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59380From NUM
: PUNCT
sjg@maths.warwick.ac.uk ADJ
( PUNCT
Susannah ADV
Gort)Subject NUM
: PUNCT
Allergies NOUN
and CCONJ
stuff NOUN
( PUNCT
Was AUX
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition NOUN
? PUNCT
) PUNCT
> X
UNLESS ADP
I PRON
plan VERB
on ADP
getting VERB
sick ADJ
- PUNCT
I PRON
wo AUX
n't PART
eat VERB
the DET
stuff NOUN
without ADP
my PRON
> X
Seldane PROPN
. PUNCT
  SPACE
And CCONJ
did AUX
I PRON
ever ADV
learn VERB
to PART
read VERB
labels NOUN
. PUNCT
> X
- PUNCT
it PRON
might AUX
not PART
please VERB
a DET
medical ADJ
researcher NOUN
- PUNCT
but CCONJ
it PRON
pleased VERB
my PRON
own ADJ
> X
personal ADJ
physician NOUN
enough ADV
for ADP
him PRON
to PART
give VERB
me PRON
allergy ADJ
medicine NOUN
  SPACE
-Allergy PROPN
medicine NOUN
, PUNCT
huh INTJ
? PUNCT
  SPACE
Is AUX
this DET
just ADV
to PART
get AUX
rid VERB
of ADP
the DET
resultant ADJ
migraine NOUN
orwhatever NOUN
, PUNCT
or CCONJ
does AUX
it PRON
actually ADV
suppress VERB
allergic ADJ
reactions NOUN
? PUNCT
( PUNCT
i.e. X
like SCONJ
anantihistamine NOUN
does AUX
? PUNCT
) PUNCT
  SPACE
As ADV
far ADV
as SCONJ
doctors NOUN
over ADV
here ADV
are AUX
concerned VERB
, PUNCT
if SCONJ
you PRON
slip VERB
upand PROPN
eat VERB
something PRON
you PRON
're AUX
allergic ADJ
to PART
( PUNCT
even ADV
if SCONJ
they PRON
wo AUX
n't PART
test VERB
you PRON
to PART
tell VERB
youwhat PRON
to PART
avoid VERB
) PUNCT
then ADV
tough ADJ
; PUNCT
if SCONJ
a DET
_ PROPN
cheap ADJ
_ PROPN
medicine NOUN
will AUX
alleviate VERB
your PRON
symptoms NOUN
, PUNCT
then ADV
fine ADV
, PUNCT
otherwise ADV
you PRON
just ADV
suffer VERB
. PUNCT
  SPACE
One NUM
doctor NOUN
did AUX
prescribe VERB
me PRON
imigran PROPN
( PUNCT
coststhe NOUN
NHS PROPN
# SYM
48 NUM
for ADP
6 NUM
tablets NOUN
) PUNCT
after ADP
having VERB
to PART
rehydrate VERB
me PRON
because SCONJ
I PRON
'd AUX
been AUX
throwingup NOUN
for ADP
four NUM
solid ADJ
days NOUN
and CCONJ
could AUX
n't PART
even ADV
drink VERB
water NOUN
- PUNCT
but CCONJ
I PRON
got VERB
taken VERB
off ADP
itagain NOUN
when ADV
I PRON
moved VERB
and CCONJ
had AUX
to PART
change VERB
doctors NOUN
. PUNCT
  SPACE
Reasoning NOUN
: PUNCT
they PRON
did AUX
not PART
know VERB
whatthe NOUN
side NOUN
- PUNCT
effects NOUN
were AUX
because SCONJ
it PRON
was AUX
new ADJ
. PUNCT
  SPACE
OK INTJ
, PUNCT
fine ADV
- PUNCT
but CCONJ
it PRON
has AUX
passed VERB
thesafety NOUN
tests NOUN
to PART
get AUX
on ADP
the DET
prescription NOUN
list NOUN
, PUNCT
and CCONJ
anyway INTJ
I PRON
was AUX
prepared ADJ
to PART
takethe VERB
risk NOUN
to PART
have AUX
quality NOUN
of ADP
life NOUN
now ADV
. PUNCT
  SPACE
The DET
only ADJ
alternatives NOUN
I PRON
have AUX
is AUX
to PART
get AUX
itprescribed VERB
privately ADV
, PUNCT
which PRON
I PRON
can AUX
not PART
afford VERB
, PUNCT
or CCONJ
to PART
pay VERB
a DET
private ADJ
allergyspecialist NOUN
to PART
test VERB
me PRON
and CCONJ
tell VERB
me PRON
what PRON
to PART
avoid VERB
. PUNCT
  SPACE
I PRON
am AUX
fairly ADV
certain ADJ
I PRON
amallergic VERB
to ADP
more ADJ
than SCONJ
one NUM
chemical NOUN
additive ADJ
, PUNCT
as SCONJ
a DET
lot NOUN
of ADP
things NOUN
I PRON
ca AUX
n't PART
eat VERB
havenothing VERB
in ADP
common ADJ
except SCONJ
things NOUN
I PRON
know VERB
are AUX
safe ADJ
, PUNCT
so CCONJ
testing VERB
myself PRON
is AUX
n't PART
reallyan ADJ
option NOUN
; PUNCT
there PRON
are AUX
too ADV
many ADJ
permutations NOUN
. PUNCT
> X
I PRON
'm AUX
not PART
saying VERB
I PRON
NEVER ADV
consume VERB
ANYTHING NOUN
with ADP
MSG PROPN
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
I PRON
> X
have AUX
a DET
certain ADJ
tolerance NOUN
level NOUN
- PUNCT
like SCONJ
a DET
( PUNCT
small ADJ
) PUNCT
bag NOUN
of ADP
bbq ADJ
chips NOUN
once ADV
> X
a DET
month NOUN
or CCONJ
so ADV
it PRON
not PART
a DET
problem NOUN
- PUNCT
but CCONJ
that DET
same ADJ
bag NOUN
of ADP
chips NOUN
will AUX
> X
bother VERB
me PRON
if SCONJ
I PRON
also ADV
had AUX
chicken NOUN
bouillon NOUN
yesterday NOUN
and CCONJ
lunch NOUN
at ADP
one NUM
of ADP
> X
the DET
Chinese ADJ
restaurants NOUN
the DET
day NOUN
before ADV
. PUNCT
  SPACE
Yes INTJ
, PUNCT
I PRON
've AUX
noticed VERB
that SCONJ
- PUNCT
and CCONJ
I PRON
can AUX
work VERB
it PRON
up ADP
by ADP
eating VERB
just ADV
under ADP
the DET
tolerancelevel NOUN
fairly ADV
regularly ADV
. PUNCT
  SPACE
If SCONJ
I PRON
do AUX
n't PART
eat VERB
anything PRON
except SCONJ
home NOUN
cooking NOUN
for ADP
a DET
monthor NOUN
so ADV
I PRON
lose VERB
it PRON
and CCONJ
have AUX
to PART
work VERB
it PRON
up ADP
from ADP
scratch NOUN
... PUNCT
a DET
bad ADJ
experience NOUN
. PUNCT
  SPACE
Now ADV
Iknow VERB
what PRON
the DET
early ADV
- PUNCT
warning NOUN
symptoms NOUN
are AUX
, PUNCT
though ADV
, PUNCT
I PRON
can AUX
usually ADV
tell VERB
whether SCONJ
I PRON
amallergic VERB
to ADP
food NOUN
before ADP
I PRON
've AUX
eaten VERB
too ADV
much ADJ
of ADP
it PRON
... PUNCT
usually ADV
... PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59381From NUM
: PUNCT
kryan@stein.u.washington.edu PROPN
( PUNCT
Kerry PROPN
Ryan)Subject PROPN
: PUNCT
looking VERB
for ADP
info NOUN
on ADP
kemotherapy(sp?)Hello PROPN
, PUNCT
a DET
friend NOUN
is AUX
under ADP
going VERB
kemotherapy(sp PROPN
? PUNCT
) PUNCT
for ADP
breast NOUN
cancer NOUN
. PUNCT
I'mtrying VERB
to PART
learn VERB
what PRON
I PRON
can AUX
about ADP
it PRON
. PUNCT
Any DET
info NOUN
would AUX
be AUX
appreciated VERB
. PUNCT
Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59382From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:=In VERB
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:=>Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
= PUNCT
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It=>involves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the=>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well=>with ADJ
inanimate ADJ
objects.==True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this="corona X
discharge"?Yup ADJ
. PUNCT
  SPACE
The DET
demonstration NOUN
to PART
which PRON
you PRON
refer VERB
consists NOUN
of ADP
placing VERB
a DET
leaf NOUN
betweenthe NOUN
plates NOUN
, PUNCT
and CCONJ
taking VERB
a DET
Kirlian ADJ
photograph NOUN
of ADP
it PRON
. PUNCT
  SPACE
You PRON
then ADV
cut VERB
off ADP
part NOUN
ofthe NOUN
leaf NOUN
, PUNCT
put VERB
the DET
top ADJ
plate NOUN
back ADV
on ADV
, PUNCT
and CCONJ
take VERB
another DET
Kirlian ADJ
photograph NOUN
. PUNCT
  SPACE
Yousee PROPN
pretty ADV
much ADV
the DET
same ADJ
image NOUN
in ADP
both DET
cases NOUN
. PUNCT
  SPACE
Turns VERB
out ADP
the DET
effect NOUN
isn'tnearly ADV
so ADV
striking ADJ
if SCONJ
you PRON
take VERB
the DET
trouble NOUN
to PART
clean VERB
the DET
plates NOUN
betweenphotographs NOUN
. PUNCT
  SPACE
Seems VERB
that SCONJ
the DET
moisture NOUN
from ADP
the DET
leaf NOUN
that PRON
you PRON
left VERB
on ADP
the DET
placeconducts NOUN
electricity NOUN
. PUNCT
  SPACE
Surprise PROPN
, PUNCT
surprise!--------------------------------------------------------------------------------Carl PROPN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59383From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
etxmow.735561695@garboc29 PROPN
> X
etxmow@garbo.ericsson.se PROPN
( PUNCT
Mats PROPN
Winberg PROPN
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
Is AUX
n't PART
there PRON
a DET
relatively ADV
new ADJ
treatment NOUN
for ADP
kidney NOUN
stones NOUN
involving VERB
> X
   SPACE
a DET
non ADJ
- ADJ
invasive ADJ
use NOUN
of ADP
ultra ADJ
- ADJ
sound ADJ
where ADV
the DET
patient NOUN
is AUX
lowered VERB
> X
   SPACE
into ADP
some DET
sort NOUN
of ADP
liquid NOUN
when ADV
he PRON
/ SYM
she PRON
undergoes VERB
treatment NOUN
? PUNCT
I PRON
'm AUX
sure ADJ
> X
   SPACE
I PRON
've AUX
read VERB
about ADP
it PRON
somewhere ADV
. PUNCT
If SCONJ
I PRON
remember VERB
it PRON
correctly ADV
it PRON
is AUX
a DET
> X
   SPACE
painless ADJ
and CCONJ
effective ADJ
treatment NOUN
. PUNCT
> X
   SPACE
A DET
couple NOUN
of ADP
weeks NOUN
ago ADV
I PRON
visited VERB
a DET
hospital NOUN
here ADV
in ADP
Stockholm PROPN
and CCONJ
> X
   SPACE
saw VERB
big ADJ
signs NOUN
showing VERB
the DET
way NOUN
to ADP
the DET
" PUNCT
Kidney PROPN
stone NOUN
chrusher NOUN
" PUNCT
... PUNCT
I PRON
saw VERB
this DET
a DET
few ADJ
years NOUN
ago ADV
on ADP
" PUNCT
Tomorrow PROPN
's PART
World NOUN
" PUNCT
( PUNCT
low ADJ
- PUNCT
brow NOUN
BBCtechnology NOUN
news NOUN
program NOUN
) PUNCT
. PUNCT
  SPACE
The DET
patient NOUN
is AUX
lowered VERB
into ADP
a DET
bath ADJ
ofde NOUN
- PUNCT
ionized VERB
water NOUN
and CCONJ
carefully ADV
positioned VERB
. PUNCT
  SPACE
High ADJ
intensity NOUN
pressurewaves NOUN
are AUX
generated VERB
by ADP
an DET
electric ADJ
spark NOUN
in ADP
the DET
water NOUN
( PUNCT
you PRON
do AUX
n't PART
getelectrocuted VERB
because SCONJ
de PROPN
- ADJ
ionised VERB
water NOUN
does AUX
not PART
conduct VERB
) PUNCT
. PUNCT
  SPACE
These DET
waves NOUN
arefocused VERB
on ADP
the DET
kidneys NOUN
by ADP
a DET
parabolic NOUN
reflector NOUN
and CCONJ
cause VERB
the DET
stone NOUN
tobreak VERB
up ADP
. PUNCT
  SPACE
This DET
is AUX
completely ADV
painless ADJ
. PUNCT
Of ADV
course ADV
, PUNCT
you PRON
then ADV
have AUX
to PART
get AUX
these DET
little ADJ
bits NOUN
of ADP
gravel NOUN
throughthe PROPN
urethra PROPN
. PUNCT
  SPACE
Ouch!Paul.-- PROPN
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59384From NUM
: PUNCT
hd0022@albnyvms.bitnet PROPN
( PUNCT
Chip NOUN
Dunham)Subject NUM
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyIn PROPN
article NOUN
< X
westesC60xqF.59r@netcom.com PROPN
> PROPN
, PUNCT
westes@netcom.com X
( PUNCT
Will AUX
Estes NOUN
) PUNCT
writes:>Does VERB
anyone PRON
know VERB
of ADP
research NOUN
done VERB
on ADP
the DET
use NOUN
of ADP
haldol NOUN
in ADP
the DET
elderly ADJ
? PUNCT
  SPACE
Does AUX
> X
short ADJ
- PUNCT
term NOUN
use NOUN
of ADP
the DET
drug NOUN
ever ADV
produce VERB
long ADJ
- PUNCT
term NOUN
side NOUN
- PUNCT
effects NOUN
after ADP
> X
the DET
use NOUN
of ADP
the DET
drug NOUN
? PUNCT
  SPACE
My PRON
grandmother NOUN
recently ADV
had AUX
to PART
be AUX
hospitalized VERB
> X
and CCONJ
was AUX
given VERB
large ADJ
doses NOUN
of ADP
haldol NOUN
for ADP
several ADJ
weeks NOUN
. PUNCT
  SPACE
Although SCONJ
the DET
> X
drug NOUN
has AUX
been AUX
terminated VERB
, PUNCT
she PRON
has AUX
changed VERB
from ADP
a DET
perky NOUN
, PUNCT
slightly ADV
> X
senile ADJ
woman NOUN
into ADP
a DET
virtual ADJ
vegetable NOUN
who PRON
does AUX
not PART
talk VERB
to ADP
anyone PRON
> X
and CCONJ
who PRON
can AUX
not PART
even ADV
eat VERB
or CCONJ
brush VERB
her PRON
teeth NOUN
without ADP
assistance NOUN
. PUNCT
  SPACE
It PRON
> X
seems VERB
incredible ADJ
to ADP
me PRON
that SCONJ
such ADJ
changes NOUN
could AUX
take VERB
place NOUN
in ADP
the DET
> X
course NOUN
of ADP
just ADV
one NUM
and CCONJ
one NUM
- PUNCT
half NOUN
months NOUN
. PUNCT
  SPACE
I PRON
have AUX
to PART
believe VERB
that SCONJ
the DET
> X
combination NOUN
of ADP
the DET
hospital NOUN
stay NOUN
and CCONJ
some DET
drug(s PROPN
) PUNCT
are AUX
in ADP
part NOUN
> X
catalysts NOUN
for ADP
this DET
. PUNCT
  SPACE
Any DET
comments?>>-- NOUN
> X
Will AUX
Estes VERB
		 SPACE
Internet NOUN
: PUNCT
westes@netcom.comHaldol PROPN
, PUNCT
one NUM
of ADP
the DET
wonder NOUN
drugs NOUN
that PRON
works VERB
wonders NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
're AUX
a DET
carrot NOUN
thatis.***************************************************************************Henry PUNCT
Dunham PROPN
( PUNCT
Chip PROPN
) PUNCT
EMT PROPN
- PUNCT
D PROPN
, PUNCT
NREMTCoordinator NOUN
of ADP
EMS PROPN
OperationsHouston PROPN
Field PROPN
House PROPN
EMSHD0022@albnyvms.bitnet***************************************************************************Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59385From NUM
: PUNCT
westes@netcom.com X
( PUNCT
Will AUX
Estes)Subject VERB
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyLawrence NOUN
Curcio PROPN
( PUNCT
lc2b+@andrew.cmu.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
I PRON
've AUX
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented ADJ
and CCONJ
: PUNCT
demented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
were AUX
: PUNCT
definitely ADV
involved ADJ
. PUNCT
: PUNCT
My PRON
own ADJ
father NOUN
turned VERB
into ADP
a DET
vegetable NOUN
for ADP
a DET
short ADJ
time NOUN
while SCONJ
in ADP
the DET
: PUNCT
hospital NOUN
. PUNCT
He PRON
was AUX
fifty NUM
- PUNCT
three NUM
at ADP
the DET
time NOUN
, PUNCT
and CCONJ
he PRON
was AUX
on ADP
21 NUM
separate ADJ
: PUNCT
medications NOUN
. PUNCT
The DET
family NOUN
protested VERB
, PUNCT
but CCONJ
the DET
doctors NOUN
were AUX
adamant ADJ
, PUNCT
telling VERB
: PUNCT
us PRON
that SCONJ
none NOUN
of ADP
the DET
drugs NOUN
interact VERB
. PUNCT
They PRON
even ADV
took VERB
the DET
attitude NOUN
that PRON
, PUNCT
if SCONJ
: PUNCT
he PRON
was AUX
disoriented VERB
, PUNCT
they PRON
should AUX
put VERB
him PRON
on ADP
something PRON
else ADV
as ADV
well ADV
! PUNCT
With ADP
: PUNCT
the DET
help NOUN
of ADP
an DET
MD PROPN
friend NOUN
of ADP
the DET
family NOUN
, PUNCT
we PRON
had AUX
all DET
his PRON
medication NOUN
: PUNCT
discontinued VERB
. PUNCT
He PRON
had AUX
a DET
seizure NOUN
that DET
night NOUN
, PUNCT
and CCONJ
was AUX
put VERB
back ADV
on ADP
one NUM
drug NOUN
. PUNCT
: PUNCT
Two NUM
days NOUN
later ADV
, PUNCT
he PRON
was AUX
his PRON
old ADJ
self NOUN
again ADV
. PUNCT
I PRON
guess VERB
there PRON
are AUX
n't PART
many ADJ
: PUNCT
medical ADJ
texts NOUN
that PRON
address VERB
the DET
subject NOUN
of ADP
21-way NUM
interactions NOUN
. PUNCT
I PRON
saw VERB
the DET
same ADJ
thing NOUN
happen VERB
to ADP
my PRON
father NOUN
, PUNCT
and CCONJ
I PRON
can AUX
more ADV
or CCONJ
less ADV
validate ADJ
yourtake NOUN
on ADP
hospitals NOUN
. PUNCT
  SPACE
It PRON
seems VERB
to ADP
me PRON
that SCONJ
medical ADJ
science NOUN
understands VERB
preciouslittle NOUN
about ADP
taking VERB
care NOUN
of ADP
the DET
human ADJ
machine NOUN
. PUNCT
  SPACE
Drugs NOUN
are AUX
given VERB
as SCONJ
aresponse ADJ
to ADP
symptoms NOUN
( PUNCT
and CCONJ
I PRON
guess VERB
that DET
makes VERB
sense NOUN
since SCONJ
all DET
the DET
studies NOUN
that PRON
validate VERB
the DET
effectiveness NOUN
of ADP
those DET
drugs NOUN
are AUX
based VERB
on ADP
a DET
narrowassessment NOUN
of ADP
the DET
degree NOUN
of ADP
particular ADJ
symptoms NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
there PRON
seemsto NOUN
be AUX
very ADV
little ADJ
appreciation NOUN
for ADP
the DET
well NOUN
- PUNCT
being NOUN
of ADP
a DET
personoutside NOUN
of ADP
the DET
numbers NOUN
that PRON
appear VERB
on ADP
a DET
test NOUN
. PUNCT
  SPACE
I PRON
watched VERB
my PRON
dadwither NOUN
away ADV
and CCONJ
lose VERB
huge ADJ
amounts NOUN
of ADP
body NOUN
fat NOUN
and CCONJ
muscles NOUN
tissuewhile NOUN
in ADP
the DET
hospital NOUN
. PUNCT
  SPACE
There PRON
is AUX
something PRON
a DET
little ADJ
crazy ADJ
about ADP
asystem NOUN
in ADP
which PRON
there PRON
is AUX
more ADJ
attention NOUN
paid VERB
to ADP
giving VERB
you PRON
everylatest ADJ
drug NOUN
available ADJ
than SCONJ
there PRON
is AUX
attention NOUN
paid VERB
to ADP
whether SCONJ
youhave PROPN
had AUX
enough ADJ
to PART
eat VERB
to PART
prevent VERB
loss NOUN
of ADP
muscle NOUN
tissue NOUN
. PUNCT
  SPACE
It PRON
isreally ADV
, PUNCT
really ADV
bizarre ADJ
. PUNCT
    SPACE
-- PUNCT
Will AUX
Estes NOUN
		 SPACE
Internet NOUN
: PUNCT
westes@netcom.comNewsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59386From NUM
: PUNCT
matthews@Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?All PROPN
right ADV
, PUNCT
listen VERB
up ADP
.... PUNCT
  SPACE
What PRON
are AUX
the DET
possibilities NOUN
of ADP
transmission NOUN
throughswimming VERB
pool NOUN
water NOUN
? PUNCT
  SPACE
Especially ADV
if SCONJ
the DET
chlorination NOUN
is AUX
n't PART
up ADP
to ADP
par?I've VERB
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
whatelse ADV
is AUX
going VERB
on?Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59387From NUM
: PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyFLAME PROPN
ONReading PROPN
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)photography NOUN
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
thenarrow NOUN
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
ormeasure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADV
there ADV
. PUNCT
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
toso NOUN
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
justas NOUN
likely ADJ
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
bequite VERB
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
I PRON
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
tosomething NOUN
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frameof ADJ
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists NOUN
, PUNCT
were AUX
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
Especially ADV
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
notdrop NOUN
off ADP
the DET
edge NOUN
of ADP
the DET
earth NOUN
. PUNCT
FLAME PROPN
OFF PROPN
, PUNCT
or CCONJ
end NOUN
sermon NOUN
: PUNCT
-)-- PUNCT
AlexNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59388From NUM
: PUNCT
pyan@ehd.hwc.ca X
( PUNCT
Ping PROPN
Yan)Subject NOUN
: PUNCT
What PRON
is AUX
the DET
medical ADJ
term NOUN
for ADP
this DET
sensation?Dear PROPN
Netters PROPN
: PUNCT
Maybe ADV
one NUM
of ADP
you PRON
can AUX
explain VERB
this DET
. PUNCT
  SPACE
From ADP
time NOUN
to ADP
time NOUN
I PRON
experience VERB
a DET
strange ADJ
kind NOUN
of ADP
feeling NOUN
( PUNCT
I PRON
have AUX
all DET
kinds NOUN
of ADP
weird ADJ
feelings NOUN
) PUNCT
which PRON
can AUX
be AUX
best ADV
described VERB
as SCONJ
the DET
feeling NOUN
of ADP
" PUNCT
losing VERB
gravity NOUN
" PUNCT
, PUNCT
like SCONJ
that DET
one NUM
experiences VERB
in ADP
a DET
descending VERB
elevator NOUN
. PUNCT
  SPACE
Needless ADJ
to PART
say VERB
, PUNCT
it PRON
is AUX
not PART
enjoyable ADJ
. PUNCT
  SPACE
It PRON
sometimes ADV
comes VERB
with ADP
shortness NOUN
of ADP
breath NOUN
and CCONJ
extreme ADJ
fatigue NOUN
. PUNCT
  SPACE
It PRON
lasts VERB
from ADP
a DET
few ADJ
minutes NOUN
to ADP
an DET
hour NOUN
and CCONJ
when ADV
it PRON
lasts VERB
that SCONJ
long ADV
, PUNCT
it PRON
makes VERB
me PRON
sweatening VERB
. PUNCT
Initially ADV
I PRON
called VERB
it PRON
" PUNCT
palpitation NOUN
( PUNCT
spelling NOUN
? PUNCT
) PUNCT
" PUNCT
until ADP
I PRON
later ADV
learnt VERB
that SCONJ
the DET
terminology NOUN
has AUX
been AUX
reserved VERB
for ADP
the DET
self NOUN
- PUNCT
awareness NOUN
of ADP
heart NOUN
beats NOUN
. PUNCT
So ADV
, PUNCT
is AUX
there PRON
a DET
specific ADJ
term NOUN
for ADP
this DET
feeling NOUN
, PUNCT
or CCONJ
am AUX
I PRON
a DET
stragne NOUN
person?I VERB
always ADV
believe VERB
I PRON
am AUX
unique ADJ
. PUNCT
Thanks NOUN
. PUNCT
PingNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59389From NUM
: PUNCT
groleau@e7sa.crd.ge.com X
( PUNCT
Wes PROPN
Groleau PROPN
X7574)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Discussions NOUN
on ADP
alt.psychoactivesRe PROPN
: PUNCT
serious ADJ
discussion NOUN
about ADP
drugs NOUN
vs. ADP
" PUNCT
Where ADV
can AUX
I PRON
get AUX
a DET
good ADJ
bong NOUN
, PUNCT
man?"Why PROPN
not PART
have AUX
the DET
group NOUN
moderated VERB
? PUNCT
  SPACE
That DET
would AUX
eliminate VERB
some DET
of ADP
the DET
idiots NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59390Subject NUM
: PUNCT
Vasectomy NOUN
: PUNCT
Health PROPN
Effects PROPN
on ADP
Women?From NOUN
: PUNCT
eskagerb@nermal.santarosa.edu NUM
( PUNCT
Eric PROPN
Skagerberg)Does VERB
anyone PRON
know VERB
of ADP
any DET
studies NOUN
done VERB
on ADP
the DET
long ADJ
- PUNCT
term NOUN
health NOUN
effects NOUN
of ADP
aman PROPN
's PART
vasectomy NOUN
on ADP
his PRON
female ADJ
partner?I've NOUN
seen VERB
plenty NOUN
of ADP
study NOUN
results NOUN
about ADP
vasectomy PROPN
's PART
effects NOUN
on ADP
men NOUN
's PART
health NOUN
, PUNCT
but CCONJ
what PRON
about ADP
women NOUN
? PUNCT
For ADP
example NOUN
, PUNCT
might AUX
the DET
wife NOUN
of ADP
a DET
vasectomized VERB
man NOUN
become VERB
more ADV
at ADP
risk NOUN
for ADP
, PUNCT
say INTJ
, PUNCT
cervical ADJ
cancer NOUN
? PUNCT
  SPACE
Adverse ADJ
effects NOUN
from ADP
sperm NOUN
antibodies NOUN
? PUNCT
  SPACE
Changes NOUN
in ADP
thevagina PROPN
's PART
pH NOUN
? PUNCT
  SPACE
Yeast NOUN
or CCONJ
bacterial ADJ
infections?Outside NOUN
of ADP
study NOUN
results NOUN
, PUNCT
how ADV
about ADP
informed ADJ
speculation?Thanks NOUN
in ADP
advance NOUN
for ADP
your PRON
help!--Eric ADJ
Skagerberg PROPN
        SPACE
< X
eskagerb@nermal.santarosa.edu>Santa PROPN
Rosa PROPN
, PUNCT
California PROPN
        SPACE
Telephone PROPN
( PUNCT
707 NUM
) PUNCT
573 NUM
- SYM
1460Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59391From NUM
: PUNCT
lipofsky@zach.fit.edu PROPN
( PUNCT
Judy PROPN
Lipofsky PROPN
( PUNCT
ACS))Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org NUM
> X
gpivar@mitre.org(The PROPN
Pancake PROPN
Emporium PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:>| PUNCT
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>| PUNCT
> X
> X
| CCONJ
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
>| PROPN
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow>| VERB
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking>| NOUN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for>| PROPN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly>| PROPN
> X
> X
appreciated.>| PROPN
> X
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
> X
| CCONJ
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.>| PROPN
> X
> X
| CCONJ
> X
Bill PROPN
from ADP
oz>| PROPN
> X
> X
> X
> X
Bill,>No PROPN
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian ADJ
> PROPN
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,>it PROPN
takes VERB
pictures NOUN
of ADP
your PRON
aura.>| NOUN
> X
> X
> X
-- PUNCT
> X
Greg PROPN
> X
> X
-- PUNCT
  SPACE
Be AUX
still ADV
, PUNCT
be AUX
silent ADJ
... PUNCT
the DET
rest NOUN
is AUX
easy ADJ
. PUNCT
  SPACE
--Dear PROPN
Bill PROPN
, PUNCT
I PRON
think VERB
you PRON
forgot VERB
the DET
smileys NOUN
. PUNCT
  SPACE
SOME DET
of ADP
us PRON
got VERB
the DET
joke!Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59392From NUM
: PUNCT
jhsu@Xenon PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Jeffrey PROPN
H. PROPN
Hsu)Subject X
: PUNCT
Re ADP
: PUNCT
Med NOUN
school NOUN
admissionI'm ADP
a DET
fellow ADJ
applicant NOUN
and CCONJ
my PRON
situation NOUN
is AUX
not PART
too ADV
much ADV
better ADJ
. PUNCT
  SPACE
I PRON
appliedto VERB
about ADV
20 NUM
schools NOUN
, PUNCT
got VERB
two NUM
interviews NOUN
, PUNCT
got VERB
one NUM
offer NOUN
, PUNCT
and CCONJ
am AUX
waiting VERB
tohear NOUN
from ADP
the DET
other ADJ
school NOUN
. PUNCT
Let VERB
me PRON
be AUX
honest ADJ
about ADP
my PRON
experiences NOUN
and CCONJ
impressions NOUN
about ADP
the DET
medicalschool NOUN
admissions NOUN
process NOUN
. PUNCT
  SPACE
Numbers PROPN
( PUNCT
GPA PROPN
, PUNCT
MCATs PROPN
) PUNCT
are AUX
not PART
everything PRON
, PUNCT
but CCONJ
they PRON
are AUX
probably ADV
more ADV
important ADJ
than SCONJ
anything PRON
else ADV
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
someschools VERB
screen VERB
out ADP
applicants NOUN
based VERB
on ADP
these DET
numbers NOUN
and CCONJ
never ADV
even ADV
lookat VERB
your PRON
other ADJ
qualities NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
when ADV
this DET
happens VERB
, PUNCT
do AUX
n't PART
expect VERB
a DET
refundon NOUN
your PRON
$ SYM
50 NUM
application NOUN
fee NOUN
. PUNCT
But CCONJ
, PUNCT
the DET
fact NOUN
that SCONJ
you PRON
got VERB
four NUM
interviews NOUN
tells VERB
me PRON
that SCONJ
you PRON
have AUX
the DET
numbersand NOUN
are AUX
very ADV
well ADV
qualified ADJ
academically ADV
. PUNCT
  SPACE
You PRON
mentioned VERB
one NUM
response NOUN
, PUNCT
was AUX
itan PROPN
acceptance NOUN
, PUNCT
denial NOUN
, PUNCT
or CCONJ
wait NOUN
- PUNCT
list NOUN
? PUNCT
  SPACE
If SCONJ
I PRON
assume VERB
the DET
worst ADJ
, PUNCT
that SCONJ
it PRON
was AUX
adenial ADJ
, PUNCT
then ADV
you PRON
still ADV
have AUX
a DET
great ADJ
probability NOUN
of ADP
acceptance NOUN
somewhere ADV
. PUNCT
  SPACE
Howdid VERB
your PRON
interviews NOUN
go?As PROPN
for ADP
how ADV
long ADV
you PRON
have AUX
to PART
wait VERB
, PUNCT
I PRON
've AUX
called VERB
a DET
few ADJ
schools NOUN
who PRON
never ADV
contactedme VERB
for ADP
anything PRON
. PUNCT
  SPACE
Many ADJ
of ADP
them PRON
told VERB
me PRON
that SCONJ
the DET
interview NOUN
season NOUN
for ADP
them PRON
wasover ADV
and CCONJ
that SCONJ
if SCONJ
I PRON
have AUX
n't PART
heard VERB
by ADP
now ADV
, PUNCT
I PRON
can AUX
assume VERB
a DET
denial NOUN
. PUNCT
  SPACE
Many ADJ
rejectionletters NOUN
are AUX
not PART
sent VERB
out ADP
until ADP
May PROPN
or CCONJ
as ADV
late ADV
as SCONJ
June PROPN
. PUNCT
  SPACE
But CCONJ
some DET
schools NOUN
arestill VERB
interviewing VERB
. PUNCT
I PRON
really ADV
do AUX
n't PART
think VERB
you PRON
should AUX
worry VERB
. PUNCT
  SPACE
Do AUX
n't PART
becomefixated VERB
on ADP
the DET
mailbox NOUN
, PUNCT
go VERB
out ADP
, PUNCT
have AUX
fun NOUN
, PUNCT
be AUX
very ADV
proud ADJ
of ADP
yourself PRON
. PUNCT
What PRON
do AUX
people NOUN
think VERB
of ADP
the DET
medical ADJ
school NOUN
admissions NOUN
process NOUN
? PUNCT
  SPACE
I PRON
had AUX
a DET
verymediocre ADJ
GPA PROPN
, PUNCT
but CCONJ
high ADJ
MCAT ADJ
scores NOUN
, PUNCT
and CCONJ
I PRON
have AUX
been AUX
working VERB
as SCONJ
a DET
softwareengineer NOUN
for ADP
two NUM
years NOUN
. PUNCT
  SPACE
I PRON
majored VERB
in ADP
Computer PROPN
Science PROPN
at ADP
Stanford PROPN
. PUNCT
  SPACE
Still ADV
, PUNCT
I PRON
think VERB
the DET
profile NOUN
of ADP
the DET
person NOUN
who PRON
has AUX
the DET
best ADJ
chance NOUN
of ADP
getting VERB
admittedis PROPN
something PRON
like SCONJ
this DET
: PUNCT
VERY ADJ
IMPORTANT--------------GPA PROPN
: PUNCT
	 SPACE
3.5 NUM
or CCONJ
betterMCAT NOUN
: PUNCT
   SPACE
top ADJ
15 NUM
% NOUN
in ADP
all DET
subjectMEDIUM NUM
IMPORTANCE-----------------Writing PROPN
/ SYM
Speaking VERB
abilityMaturityMotivation PROPN
for ADP
going VERB
into ADP
medicineActivitiesLESS ADJ
IMPORTANT--------------College NOUN
or CCONJ
UniversityMajorWork PROPN
experienceAnything VERB
else ADV
you PRON
want VERB
them PRON
to ADP
knowAnyway PROPN
, PUNCT
you PRON
are AUX
in ADP
good ADJ
shape NOUN
. PUNCT
  SPACE
I PRON
think VERB
admissions NOUN
committees NOUN
are AUX
bound VERB
inmany ADJ
ways NOUN
by ADP
the DET
numbers NOUN
, PUNCT
but CCONJ
would AUX
like VERB
very ADV
much ADV
to PART
understand VERB
eachperson PROPN
as SCONJ
an DET
individual NOUN
. PUNCT
  SPACE
Sometimes ADV
that DET
s VERB
just ADV
not PART
practical ADJ
. PUNCT
  SPACE
But CCONJ
getting VERB
four NUM
interviews NOUN
is AUX
an DET
indicator NOUN
that PRON
you PRON
have AUX
the DET
numbers NOUN
. PUNCT
  SPACE
Hopefully ADV
, PUNCT
youwere ADV
able ADJ
to PART
impress VERB
them PRON
with ADP
your PRON
character NOUN
. PUNCT
Good ADJ
luck NOUN
, PUNCT
JeffNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59393From NUM
: PUNCT
fzjaffe@hamlet.ucdavis.edu PROPN
( PUNCT
Rory ADJ
Jaffe)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
etxmow@garbo.ericsson.se X
( PUNCT
Mats PROPN
Winberg PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
: PUNCT
    SPACE
Is AUX
n't PART
there PRON
a DET
relatively ADV
new ADJ
treatment NOUN
for ADP
kidney NOUN
stones NOUN
involving VERB
: PUNCT
    SPACE
a DET
non ADJ
- ADJ
invasive ADJ
use NOUN
of ADP
ultra ADJ
- ADJ
sound ADJ
where ADV
the DET
patient NOUN
is AUX
lowered VERB
: PUNCT
    SPACE
into ADP
some DET
sort NOUN
of ADP
liquid NOUN
when ADV
he PRON
/ SYM
she PRON
undergoes VERB
treatment NOUN
? PUNCT
I PRON
'm AUX
sure ADJ
: PUNCT
    SPACE
I PRON
've AUX
read VERB
about ADP
it PRON
somewhere ADV
. PUNCT
If SCONJ
I PRON
remember VERB
it PRON
correctly ADV
it PRON
is AUX
a DET
: PUNCT
    SPACE
painless ADJ
and CCONJ
effective ADJ
treatment NOUN
. PUNCT
The DET
use NOUN
of ADP
shock NOUN
waves NOUN
( PUNCT
not PART
ultrasound ADJ
) PUNCT
to PART
break VERB
up ADP
stones NOUN
has AUX
beenaround VERB
for ADP
a DET
few ADJ
years NOUN
. PUNCT
  SPACE
Depending VERB
on ADP
the DET
type NOUN
of ADP
machine NOUN
, PUNCT
and CCONJ
intensityof VERB
the DET
shock NOUN
waves NOUN
, PUNCT
it PRON
is AUX
usually ADV
uncomfortable ADJ
enough ADV
to PART
requiresomething VERB
... PUNCT
  SPACE
The DET
high ADJ
- PUNCT
power NOUN
machines NOUN
cause SCONJ
enough ADJ
pain NOUN
to PART
requiregeneral ADJ
or CCONJ
regional ADJ
anesthesia PROPN
. PUNCT
  SPACE
Afterwards ADV
, PUNCT
it PRON
feels VERB
like SCONJ
someoneslugged VERB
you PRON
pretty ADV
good!Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59394From NUM
: PUNCT
alan@lancaster.nsc.com X
( PUNCT
The DET
Hepburn)Subject NUM
: PUNCT
Re ADP
: PUNCT
Resound PROPN
Hearing PROPN
aids VERB
( PUNCT
and CCONJ
others)In NOUN
article NOUN
< X
rhaller-260493122521@rhaller.cc.uoregon.edu PROPN
> X
, PUNCT
rhaller@ns.uoregon.edu PROPN
( PUNCT
Rich PROPN
Haller PROPN
) PUNCT
writes:| PROPN
> X
I PRON
have AUX
a DET
fairly ADV
severe ADJ
high ADJ
frequency NOUN
hearing NOUN
loss NOUN
. PUNCT
A DET
recent ADJ
rough ADJ
test| PROPN
> X
showed VERB
a DET
gently ADV
sloping VERB
loss NOUN
to ADP
10 NUM
- PUNCT
20db NOUN
down ADV
at ADP
1000cps NUM
. PUNCT
Then ADV
it PRON
falls VERB
off| PROPN
> X
a DET
cliff NOUN
to ADP
70 NUM
- PUNCT
80dbs NOUN
down ADV
from ADP
1500cps NUM
on ADP
. PUNCT
  SPACE
This DET
type NOUN
of ADP
loss NOUN
is AUX
difficult| ADJ
> X
to PART
fit VERB
. PUNCT
I PRON
am AUX
currently ADV
using VERB
some DET
old ADJ
siemens NOUN
behind ADP
the DET
ear PROPN
aids PROPN
which| PROPN
> X
keep VERB
me PRON
roughly ADV
functional ADJ
, PUNCT
but CCONJ
leave VERB
a DET
lot NOUN
to PART
be AUX
desired.| PROPN
> X
| ADV
> X
Recently ADV
I PRON
had AUX
an DET
opportunity NOUN
to PART
test VERB
the DET
Widex PROPN
Q8 PROPN
behind ADP
the DET
ear NOUN
aids PROPN
for| PROPN
> X
several ADJ
weeks NOUN
. PUNCT
These DET
have AUX
four NUM
independent ADJ
programs NOUN
which PRON
are AUX
intended VERB
to| DET
> X
be AUX
customized VERB
for ADP
different ADJ
hearing NOUN
situations NOUN
and CCONJ
can AUX
be AUX
reprogramed VERB
. PUNCT
I| PROPN
> X
found VERB
them PRON
to PART
be AUX
a DET
definite ADJ
improvement NOUN
over ADP
my PRON
current ADJ
aids NOUN
and CCONJ
was AUX
about| PROPN
> X
to PART
go VERB
ahead ADV
with ADP
them PRON
until ADP
another DET
local ADJ
outfit NOUN
advertised VERB
a DET
free ADJ
trial NOUN
of| ADP
> X
another DET
programmable ADJ
system NOUN
called VERB
ReSound.| PROPN
> X
| ADV
> X
Unfortunately ADV
I PRON
was AUX
only ADV
able ADJ
to PART
try VERB
the DET
ReSound PROPN
aids NOUN
in ADP
their PRON
office NOUN
for| NOUN
> X
about ADV
30 NUM
minutes NOUN
and CCONJ
I PRON
could AUX
n't PART
compare VERB
them PRON
' PUNCT
head NOUN
to PART
head VERB
' PUNCT
with ADP
the DET
Widex.| PROPN
> X
Nevertheless ADV
, PUNCT
it PRON
did AUX
appear VERB
to ADP
me PRON
that SCONJ
they PRON
were AUX
superior ADJ
and CCONJ
I PRON
was| PROPN
> X
impressed VERB
by ADP
what PRON
I PRON
was AUX
able ADJ
to PART
read VERB
about ADP
the DET
theory NOUN
behind ADP
them PRON
which PRON
I| PROPN
> X
will AUX
give VERB
in ADP
a DET
separate ADJ
posting NOUN
. PUNCT
They PRON
also ADV
carry VERB
the DET
Widex PROPN
aids NOUN
and CCONJ
had AUX
one| ADV
> X
patient NOUN
( PUNCT
presumably ADV
wealthy ADJ
) PUNCT
who PRON
decided VERB
to PART
go VERB
ahead ADV
and CCONJ
get AUX
the DET
ReSound| NOUN
> X
even ADV
though SCONJ
he PRON
had AUX
purchased VERB
the DET
Widex PROPN
only ADV
6 NUM
months NOUN
ago.| PROPN
> X
| ADV
> X
The DET
problem NOUN
is AUX
that SCONJ
the DET
ReSound PROPN
aids NOUN
are AUX
about ADV
twice ADV
as ADV
expensive ADJ
as SCONJ
the| PROPN
> X
Widex PROPN
and CCONJ
other ADJ
programmable ADJ
aids NOUN
. PUNCT
I PRON
could AUX
take VERB
a DET
trip NOUN
to ADP
Europe PROPN
on ADP
the| PROPN
> X
difference NOUN
! PUNCT
  SPACE
Being AUX
a DET
lover NOUN
of ADP
bargains NOUN
and CCONJ
hating VERB
to PART
spend VERB
money NOUN
, PUNCT
I PRON
am| VERB
> X
having VERB
a DET
hard ADJ
time NOUN
persuading VERB
myself PRON
to PART
go VERB
with ADP
the DET
ReSounds PROPN
. PUNCT
I PRON
would| VERB
> X
appreciate VERB
any DET
opinions NOUN
on ADP
this DET
and CCONJ
other ADJ
hearing NOUN
aids NOUN
and CCONJ
projections| NOUN
> X
about ADP
when ADV
and CCONJ
if SCONJ
I PRON
might AUX
see VERB
improvements NOUN
in ADP
technology NOUN
that PRON
are AUX
n't PART
quite| PROPN
> X
so ADV
expensive.| PROPN
> X
| ADV
> X
Your PRON
hearing NOUN
curve NOUN
sounds VERB
a DET
lot NOUN
like SCONJ
mine NOUN
( PUNCT
thanks NOUN
, PUNCT
Uncle PROPN
Sam PROPN
! PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
beenwearing VERB
Miracle PROPN
Ear PROPN
canal NOUN
aids NOUN
for ADP
about ADV
5 NUM
months NOUN
now ADV
and CCONJ
I PRON
find VERB
them PRON
to ADP
beacceptable VERB
. PUNCT
  SPACE
They PRON
are AUX
molded VERB
to ADP
the DET
shape NOUN
of ADP
your PRON
ear NOUN
canal NOUN
, PUNCT
and CCONJ
tuned VERB
to ADP
your PRON
hearing NOUN
curve NOUN
. PUNCT
  SPACE
They PRON
are AUX
comfortable ADJ
to PART
wear VERB
and CCONJ
almost ADV
invisible ADJ
, PUNCT
ifyou're VERB
worried ADJ
about ADP
that DET
( PUNCT
although SCONJ
if SCONJ
you PRON
're AUX
currently ADV
wearing VERB
behind ADP
theear NOUN
models NOUN
, PUNCT
that DET
's AUX
not PART
an DET
issue NOUN
) PUNCT
. PUNCT
  SPACE
The DET
cost NOUN
: PUNCT
  SPACE
I PRON
paid VERB
$ SYM
1200 NUM
each DET
for ADP
mine PRON
, PUNCT
through ADP
the DET
Miracle PROPN
Ear PROPN
counter NOUN
at ADP
Sears PROPN
. PUNCT
  SPACE
I PRON
've AUX
heard VERB
that SCONJ
there PRON
is AUX
asubstantial ADJ
discount NOUN
for ADP
senior ADJ
citizens NOUN
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
researched VERB
that SCONJ
, PUNCT
becauseI'm PROPN
not PART
a DET
senior ADJ
citizen NOUN
, PUNCT
yet!Give VERB
them PRON
a DET
try NOUN
; PUNCT
you PRON
might AUX
be AUX
pleasantly ADV
surprised!-- PROPN
Alan PROPN
Hepburn PROPN
           SPACE
" PUNCT
A DET
man NOUN
does AUX
n't PART
know VERB
what PRON
he PRON
knowsNational ADJ
Semiconductor PROPN
       SPACE
until ADP
he PRON
knows VERB
what PRON
he PRON
does AUX
n't PART
know VERB
. PUNCT
"Santa PUNCT
Clara PROPN
, PUNCT
Ca AUX
              SPACE
alan@berlioz.nsc.com PROPN
                              SPACE
Thomas PROPN
CarlyleNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59395From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rjifg$bgm@hsdndev.harvard.edu NUM
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr26.174538.1@vms.ocom.okstate.edu PROPN
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu PROPN
writes:>>oxygen(just ADV
like SCONJ
it PRON
does AUX
in ADP
the DET
vagina PROPN
) PUNCT
. PUNCT
  SPACE
As ADV
much ADJ
stuff NOUN
as SCONJ
there PRON
is AUX
in ADP
the DET
> X
> X
lay VERB
press NOUN
about ADP
L. PROPN
acidophilus NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
I PRON
'm AUX
really ADV
> X
> X
amazed ADJ
that SCONJ
someone PRON
has AUX
not PART
done VERB
a DET
clinical ADJ
trial NOUN
yet ADV
to PART
check VERB
it PRON
out ADP
. PUNCT
> X
> X
I PRON
've AUX
mentioned VERB
this DET
study NOUN
a DET
couple NOUN
of ADP
times NOUN
now ADV
: PUNCT
Ingestion NOUN
of ADP
yogurt PROPN
> X
containing VERB
Lactobacillus PROPN
acidophilus NOUN
as SCONJ
prophylaxis PROPN
for ADP
candidal PROPN
> X
vaginitis NOUN
, PUNCT
Annals PROPN
of ADP
Internal PROPN
Medicine PROPN
, PUNCT
3/1/92 NUM
116(5):353 NUM
- SYM
7 NUM
. PUNCT
  SPACE
Do AUX
you PRON
> X
have AUX
a DET
problem NOUN
with ADP
the DET
study NOUN
because SCONJ
they PRON
used VERB
yogurt PROPN
rather ADV
than SCONJ
> X
capsules NOUN
of ADP
lactobacillus NOUN
( PUNCT
even ADV
though SCONJ
it PRON
had AUX
positive ADJ
results NOUN
) PUNCT
? PUNCT
> X
> X
The DET
study NOUN
was AUX
a DET
crossover NOUN
trial NOUN
of ADP
daily ADJ
ingestion NOUN
of ADP
8 NUM
ounces NOUN
of ADP
> X
yogurt PROPN
. PUNCT
  SPACE
There PRON
was AUX
a DET
marked ADJ
decrease NOUN
in ADP
infections NOUN
while SCONJ
women NOUN
were AUX
> X
ingesting VERB
the DET
yogurt NOUN
. PUNCT
  SPACE
Problems NOUN
with ADP
the DET
study NOUN
included VERB
very ADV
small ADJ
> NUM
numbers NOUN
( PUNCT
33 NUM
patients NOUN
enrolled VERB
) PUNCT
and CCONJ
many ADJ
protocol NOUN
violations NOUN
( PUNCT
only ADV
> X
21 NUM
patients NOUN
were AUX
analyzed VERB
) PUNCT
. PUNCT
  SPACE
Still ADV
, PUNCT
the DET
difference NOUN
in ADP
rates NOUN
of ADP
infection NOUN
> X
between ADP
the DET
two NUM
groups NOUN
was AUX
so ADV
large ADJ
that SCONJ
the DET
study NOUN
remains VERB
fairly ADV
> X
believable ADJ
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindDavid PROPN
, PUNCT
this DET
study NOUN
looks VERB
like SCONJ
a DET
good ADJ
one NUM
. PUNCT
  SPACE
Gordon PROPN
Rubenfeld PROPN
did AUX
a DET
Medline PROPN
search NOUN
and CCONJ
also ADV
sent VERB
me PRON
the DET
same ADJ
reference NOUN
through ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
  SPACE
Since SCONJ
commercial ADJ
yogurt PROPN
does AUX
not PART
always ADV
have AUX
a DET
good ADJ
Lactobacillus PROPN
a. NOUN
or CCONJ
bulgaricus NOUN
culture NOUN
, PUNCT
a DET
negative ADJ
finding NOUN
would AUX
not PART
have AUX
been AUX
too ADV
informative ADJ
. PUNCT
This DET
is AUX
often ADV
the DET
reason NOUN
why ADV
Lactobacillus PROPN
acidophilus ADJ
tablets NOUN
are AUX
recommended VERB
rather ADV
than SCONJ
yogurt PROPN
. PUNCT
I PRON
guess VERB
the DET
next ADJ
question NOUN
is AUX
why ADV
would AUX
this DET
introduction NOUN
of ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
back ADV
into ADP
the DET
gut NOUN
decrease VERB
the DET
incidence NOUN
of ADP
vaginal ADJ
candida PROPN
blooms NOUN
if SCONJ
the DET
anus NOUN
was AUX
not PART
serving VERB
as SCONJ
a DET
candida PROPN
reservoir(a PROPN
fact NOUN
that SCONJ
Gordon PROPN
R. PROPN
vehementydenys PROPN
) PUNCT
? PUNCT
  SPACE
I PRON
see VERB
two NUM
possible ADJ
theories NOUN
. PUNCT
  SPACE
One NUM
, PUNCT
the DET
L. PROPN
acidophilus NOUN
, PUNCT
which PRON
is AUX
a DET
facultatively ADV
anaerobic ADJ
bacterium NOUN
, PUNCT
could AUX
make VERB
it PRON
through ADP
the DET
gut NOUN
and CCONJ
colonize VERB
the DET
rectal ADJ
area NOUN
to PART
overgrow VERB
the DET
candida PROPN
. PUNCT
  SPACE
This DET
would AUX
not PART
explain VERB
the DET
reoccurance NOUN
of ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
after ADP
the DET
yogurt PROPN
ingestion NOUN
was AUX
stopped VERB
though ADV
. PUNCT
  SPACE
The DET
other ADJ
is AUX
that SCONJ
the DET
additional ADJ
bacteria NOUN
in ADP
the DET
intestinal ADJ
tract NOUN
remove VERB
most ADJ
of ADP
the DET
glucose NOUN
from ADP
the DET
feces NOUN
and CCONJ
candida PROPN
looses PROPN
it PRON
's AUX
major ADJ
food NOUN
source NOUN
. PUNCT
Getting VERB
Lactobacillus PROPN
acidophilus NOUN
to PART
colonize VERB
the DET
vaginal NOUN
tract(where NOUN
it PRON
is AUX
normally ADV
found VERB
) PUNCT
would AUX
have AUX
a DET
much ADV
better ADJ
effect NOUN
on ADP
the DET
recurrance NOUN
of ADP
vaginal ADJ
yeast NOUN
blooms NOUN
though ADV
. PUNCT
  SPACE
An DET
acetic ADJ
acid NOUN
, PUNCT
Lactobacillus PROPN
acidophilus ADJ
douche PROPN
has AUX
been AUX
used VERB
to PART
get AUX
this DET
effect NOUN
but CCONJ
I PRON
've AUX
not PART
seen VERB
any DET
such ADJ
treatment NOUN
reported VERB
in ADP
the DET
medical ADJ
literature NOUN
. PUNCT
  SPACE
This DET
would AUX
be AUX
an DET
example NOUN
of ADP
physicians NOUN
conducting VERB
their PRON
own ADJ
clinical ADJ
trials NOUN
to PART
try VERB
to PART
come VERB
up ADP
with ADP
treatments NOUN
that PRON
help VERB
their PRON
patients NOUN
. PUNCT
  SPACE
When ADV
this DET
is AUX
done VERB
in ADP
private ADJ
practice NOUN
, PUNCT
the DET
results NOUN
are AUX
rarely ADV
, PUNCT
if SCONJ
ever ADV
published VERB
. PUNCT
  SPACE
It PRON
was AUX
the DET
hallmark NOUN
of ADP
medicine NOUN
until ADP
the DET
modern ADJ
age NOUN
emerged VERB
with ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
It PRON
really ADV
raises VERB
a DET
big ADJ
question NOUN
. PUNCT
  SPACE
Does AUX
the DET
medical ADJ
profession NOUN
cast VERB
out ADP
the DET
adventerous ADJ
few ADJ
who PRON
try VERB
new ADJ
treatments NOUN
to PART
help VERB
patients NOUN
or CCONJ
does AUX
it PRON
look VERB
the DET
other ADJ
way NOUN
. PUNCT
This DET
particular ADJ
issue NOUN
is AUX
really ADV
a DET
very ADV
simple ADJ
one NOUN
since SCONJ
no DET
real ADJ
dangerous ADJ
therapy NOUN
is AUX
involved(even ADP
the DET
anti NOUN
- NOUN
fungals NOUN
are AUX
not PART
all ADV
that ADV
dangerous ADJ
) PUNCT
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
some DET
areas(like PROPN
EDTA PROPN
chelation NOUN
therapy NOUN
) PUNCT
, PUNCT
where ADV
the DET
fire NOUN
is AUX
pretty ADV
hot ADJ
and CCONJ
somebody PRON
could AUX
get AUX
burned VERB
. PUNCT
  SPACE
It PRON
's AUX
really ADV
tough ADJ
. PUNCT
  SPACE
Do AUX
I PRON
follow VERB
only ADV
well ADV
established VERB
protocols NOUN
and CCONJ
then ADV
give VERB
up ADP
if SCONJ
they PRON
do AUX
n't PART
work VERB
that DET
well INTJ
or CCONJ
do AUX
it PRON
try VERB
something PRON
that PRON
looks VERB
like SCONJ
it PRON
will AUX
work VERB
but CCONJ
has AUX
n't PART
been AUX
proven VERB
to PART
work VERB
yet?My PROPN
stand VERB
is AUX
to PART
consider VERB
other ADJ
treatment NOUN
possibilities NOUN
, PUNCT
especially ADV
if SCONJ
they PRON
involve VERB
little ADJ
or CCONJ
no DET
risk NOUN
to ADP
the DET
patient NOUN
. PUNCT
  SPACE
Getting VERB
good ADJ
bacteria NOUN
back ADV
into ADP
the DET
gut NOUN
after ADP
antibiotic ADJ
treatment NOUN
is AUX
one NUM
treatment NOUN
possibility NOUN
. PUNCT
  SPACE
The DET
other ADJ
is AUX
getting VERB
L. PROPN
acidophilus NOUN
into ADP
the DET
vaginal ADJ
tract NOUN
of ADP
a DET
woman NOUN
who PRON
is AUX
having VERB
a DET
problem NOUN
with ADP
recurring VERB
yeast NOUN
infections NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59396From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rjr1uINNh8@gap.caltech.edu NUM
> X
, PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick PROPN
) PUNCT
writes VERB
... PUNCT
>In PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:>=In ADV
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>=>Greg NOUN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
= PUNCT
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It>=>involves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the>=>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well>=>with VERB
inanimate ADJ
objects.>=>=True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this>="corona SYM
discharge NOUN
" PUNCT
? PUNCT
> X
> X
Yup INTJ
. PUNCT
  SPACE
The DET
demonstration NOUN
to PART
which PRON
you PRON
refer VERB
consists NOUN
of ADP
placing VERB
a DET
leaf NOUN
between ADP
> X
the DET
plates NOUN
, PUNCT
and CCONJ
taking VERB
a DET
Kirlian ADJ
photograph NOUN
of ADP
it PRON
. PUNCT
  SPACE
You PRON
then ADV
cut VERB
off ADP
part NOUN
of ADP
> X
the DET
leaf NOUN
, PUNCT
put VERB
the DET
top ADJ
plate NOUN
back ADV
on ADV
, PUNCT
and CCONJ
take VERB
another DET
Kirlian ADJ
photograph NOUN
. PUNCT
  SPACE
You PRON
> X
see VERB
pretty ADV
much ADV
the DET
same ADJ
image NOUN
in ADP
both DET
cases NOUN
. PUNCT
  SPACE
Turns VERB
out ADP
the DET
effect NOUN
isn't ADV
> X
nearly ADV
so ADV
striking ADJ
if SCONJ
you PRON
take VERB
the DET
trouble NOUN
to PART
clean VERB
the DET
plates NOUN
between ADP
> PROPN
photographs NOUN
. PUNCT
  SPACE
Seems VERB
that SCONJ
the DET
moisture NOUN
from ADP
the DET
leaf NOUN
that PRON
you PRON
left VERB
on ADP
the DET
place NOUN
> X
conducts VERB
electricity NOUN
. PUNCT
  SPACE
Surprise NOUN
, PUNCT
surprise NOUN
! PUNCT
	 SPACE
This DET
is AUX
true ADJ
, PUNCT
but CCONJ
it PRON
's AUX
not PART
quite DET
the DET
whole ADJ
story NOUN
. PUNCT
  SPACE
There PRON
were AUX
	 SPACE
actually ADV
some DET
people NOUN
who PRON
were AUX
more ADV
careful ADJ
in ADP
their PRON
methodology NOUN
	 SPACE
who PRON
also ADV
replicated VERB
the DET
' PUNCT
phantom ADJ
leaf NOUN
effect NOUN
. PUNCT
' PUNCT
    SPACE
One NUM
of ADP
the DET
most ADV
influential ADJ
critics NOUN
of ADP
Kirlian PROPN
Electrophotography PROPN
    SPACE
is AUX
a DET
Theosophist PROPN
( PUNCT
and CCONJ
threfore NOUN
presumably ADV
willing ADJ
to PART
entertain VERB
the DET
    SPACE
hypothesis NOUN
of ADP
scientific ADJ
evidence NOUN
for ADP
a DET
human ADJ
aura NOUN
, PUNCT
electromagnetic ADJ
    SPACE
or CCONJ
otherwise ADV
) PUNCT
, PUNCT
professor NOUN
of ADP
electrical ADJ
engineering NOUN
at ADP
London PROPN
's PART
    SPACE
City PROPN
University PROPN
, PUNCT
and CCONJ
a DET
past ADJ
president NOUN
of ADP
the DET
Society PROPN
for ADP
Psychic PROPN
Research PROPN
     SPACE
named VERB
A. PROPN
J. PROPN
Ellison PROPN
. PUNCT
    SPACE
After ADP
years NOUN
of ADP
studying VERB
the DET
method NOUN
and CCONJ
the DET
claims NOUN
, PUNCT
Ellison PROPN
    SPACE
came VERB
to ADP
the DET
conclusion NOUN
that SCONJ
the DET
photographic ADJ
images NOUN
are AUX
what PRON
we PRON
    SPACE
calls VERB
' PUNCT
Lichtenberg PROPN
Figures PROPN
, PUNCT
' PUNCT
an DET
effect NOUN
of ADP
intermittent ADJ
ionization NOUN
of ADP
    SPACE
the DET
air NOUN
around ADP
the DET
object NOUN
. PUNCT
  SPACE
It PRON
's AUX
a DET
bit NOUN
more ADV
complicated ADJ
than SCONJ
    SPACE
' PUNCT
not PART
wiping VERB
off ADP
the DET
plates NOUN
, PUNCT
' PUNCT
but CCONJ
it PRON
comes VERB
down ADP
to ADP
the DET
same ADJ
thing NOUN
    SPACE
in ADP
the DET
end NOUN
, PUNCT
Kirlian ADJ
electrophotography NOUN
has AUX
much ADV
more ADV
limited ADJ
    SPACE
value NOUN
( PUNCT
if SCONJ
any DET
) PUNCT
than SCONJ
was AUX
previously ADV
widely ADV
thought VERB
. PUNCT
  SPACE
Electrical ADJ
and CCONJ
    SPACE
magnetic ADJ
fields NOUN
generated VERB
by ADP
the DET
body NOUN
are AUX
much ADV
too ADV
small ADJ
to PART
be AUX
    SPACE
of ADP
much ADJ
use NOUN
diagnostically ADV
without ADP
very ADV
elaborate ADJ
equipment NOUN
and CCONJ
    SPACE
usually ADV
also ADV
tracer NOUN
chemicals NOUN
. PUNCT
					 SPACE
kind PROPN
regards VERB
, PUNCT
					 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
542 NUM
- SYM
3573 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Oliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
   SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59397From NUM
: PUNCT
samuel@paul.rutgers.edu PROPN
( PUNCT
Empress NOUN
Carrena PROPN
Kristina PROPN
I)Subject X
: PUNCT
REQUEST NOUN
: PUNCT
FAQHi NOUN
. PUNCT
I PRON
have AUX
a DET
friend NOUN
who PRON
is AUX
interested ADJ
in ADP
subscribing VERB
to ADP
this DET
newsgroup NOUN
. PUNCT
Unfortunatly ADV
she PRON
does AUX
not PART
have AUX
usenet ADJ
access NOUN
. PUNCT
If SCONJ
someone PRON
could AUX
sendher VERB
a DET
faq NOUN
and CCONJ
info NOUN
on ADP
how ADV
to PART
subscribe VERB
, PUNCT
we PRON
'd AUX
be AUX
very ADV
appreciative ADJ
Ifyou NOUN
want VERB
to PART
send VERB
it PRON
to ADP
me PRON
, PUNCT
you PRON
can AUX
and CCONJ
I PRON
will AUX
get AUX
it PRON
to ADP
her PRON
. PUNCT
I PRON
do AUX
notread ADV
this DET
newsgroup NOUN
regularly ADV
though ADV
so ADV
e NOUN
- NOUN
mail NOUN
please INTJ
. PUNCT
Thank VERB
youJody-- PRON
-------------------------------------------------------------------------------Jody NUM
Rebecca PROPN
		 SPACE
Colby PROPN
College PROPN
		 SPACE
Majors NOUN
: PUNCT
History NOUN
/ SYM
Sociology NOUN
			 SPACE
Class NOUN
o NOUN
' PUNCT
' NUM
94 NUM
            SPACE
E PROPN
- NOUN
Mail NOUN
: PUNCT
  SPACE
jrgould@colby.edu X
	  SPACE
samuel@paul.rutgers.eduFantasy PROPN
, PUNCT
Music PROPN
, PUNCT
Colors PROPN
, PUNCT
and CCONJ
Animals NOUN
will AUX
lead VERB
this DET
society NOUN
out SCONJ
of ADP
oppression.-------------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59398From NUM
: PUNCT
samuel@paul.rutgers.edu PROPN
( PUNCT
Empress NOUN
Carrena PROPN
Kristina PROPN
I)Subject X
: PUNCT
Oops INTJ
. PUNCT
SIlly VERB
me PRON
. PUNCT
Sorry INTJ
. PUNCT
My PRON
friend NOUN
's PART
address NOUN
who PRON
wants VERB
the DET
faq NOUN
and CCONJ
info PROPN
isjjsulliv@colby.eduSorry PROPN
about ADP
that DET
folks NOUN
. PUNCT
Jody-- PROPN
-------------------------------------------------------------------------------Jody PROPN
Rebecca PROPN
		 SPACE
Colby PROPN
College PROPN
		 SPACE
Majors NOUN
: PUNCT
History NOUN
/ SYM
Sociology NOUN
			 SPACE
Class NOUN
o NOUN
' PUNCT
' NUM
94 NUM
            SPACE
E PROPN
- NOUN
Mail NOUN
: PUNCT
  SPACE
jrgould@colby.edu X
	  SPACE
samuel@paul.rutgers.eduFantasy PROPN
, PUNCT
Music PROPN
, PUNCT
Colors PROPN
, PUNCT
and CCONJ
Animals NOUN
will AUX
lead VERB
this DET
society NOUN
out SCONJ
of ADP
oppression.-------------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59399From NUM
: PUNCT
werckme1@eecs.uic.edu PROPN
( PUNCT
robert PROPN
werckmeister)Subject NUM
: PUNCT
ECG NOUN
data NOUN
neededI PROPN
need VERB
some DET
ECG NOUN
data NOUN
, PUNCT
uncompressed VERB
, PUNCT
  SPACE
hopefully ADV
in ADP
ascii ADJ
format NOUN
. PUNCT
Don't NUM
care VERB
what PRON
it PRON
looks VERB
like SCONJ
, PUNCT
this DET
is AUX
for ADP
a DET
signal ADJ
processingproject NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59400From NUM
: PUNCT
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field))Subject PROPN
: PUNCT
Re ADP
: PUNCT
PLEASE INTJ
, PUNCT
HELP VERB
A DET
PATIENT!!!In PROPN
article NOUN
< X
AAghzshe-3@integral.stavropol.su X
> X
mymail@integral.stavropol.su PROPN
writes:>% PROPN
mail NOUN
newsserv@kiae.su>Subject X
: PUNCT
  SPACE
PLEASE PROPN
, PUNCT
HELP PROPN
! PUNCT
! PUNCT
! PUNCT
> X
                    SPACE
Dear ADJ
  SPACE
Ladies NOUN
and CCONJ
  SPACE
Gentlemen PROPN
! PUNCT
> X
      SPACE
We PRON
should AUX
be AUX
grateful ADJ
for ADP
any DET
information NOUN
about ADP
address NOUN
and CCONJ
( PUNCT
or CCONJ
) PUNCT
> X
   SPACE
E PROPN
- NOUN
mail NOUN
address NOUN
of ADP
Loma PROPN
- PUNCT
Linda PROPN
Hospital PROPN
( PUNCT
approximate ADJ
position NOUN
: PUNCT
USA PROPN
, PUNCT
> X
   SPACE
California PROPN
, PUNCT
near SCONJ
Vaimor PROPN
town NOUN
, PUNCT
60 NUM
miles NOUN
from ADP
Los PROPN
- PUNCT
Angelos PROPN
) PUNCT
. PUNCT
> X
      SPACE
A DET
patient NOUN
needs VERB
consultation NOUN
in ADP
this DET
clinics NOUN
before ADP
operation NOUN
. PUNCT
> X
                SPACE
With ADP
respect NOUN
, PUNCT
                  SPACE
Igor PROPN
V. PROPN
Sidelnikov PROPN
> X
QUITThis NOUN
is AUX
also ADV
being AUX
replied VERB
to ADP
via ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
  SPACE
I PRON
dialed VERB
my PRON
universitylibrarian NOUN
, PUNCT
and CCONJ
he PRON
looked VERB
it PRON
up ADP
: PUNCT
Loma PROPN
Linda PROPN
University PROPN
Medical PROPN
CenterLoma PROPN
Linda PROPN
, PUNCT
CA PROPN
92350I VERB
do AUX
n't PART
know VERB
an DET
Internet NOUN
address NOUN
for ADP
them PRON
, PUNCT
but CCONJ
they PRON
can AUX
be AUX
reached VERB
bytelephone PROPN
at ADP
( PUNCT
714 NUM
) PUNCT
824 NUM
- PUNCT
4300.Good NUM
luck.-- PROPN
| PROPN
Daniel PROPN
R. PROPN
Field PROPN
, PUNCT
AKA PROPN
InfoSpunj PROPN
| PROPN
" PUNCT
Never ADV
believe VERB
any DET
experiment NOUN
until ADP
|| PROPN
dfield@oboe.calpoly.edu NUM
        SPACE
| PROPN
it PRON
has AUX
been AUX
confirmed VERB
by ADP
theory NOUN
. PUNCT
" PUNCT
   SPACE
|| PROPN
Biochemistry PROPN
, PUNCT
Biotechnology PROPN
    SPACE
| PROPN
-Arthur PUNCT
Eddington PROPN
                   SPACE
|| PROPN
California PROPN
Polytechnic PROPN
State PROPN
U PROPN
| PROPN
Tongue PROPN
- PUNCT
in ADP
- PUNCT
cheek NOUN
or CCONJ
foot NOUN
- PUNCT
in ADP
- PUNCT
mouth NOUN
? PUNCT
   SPACE
| PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59401From NUM
: PUNCT
aezpete@deja-vu.aiss.uiuc.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosIn NOUN
article NOUN
< X
1993Apr27.151619.2636@netnews.noc.drexel.edu NUM
> X
giamomj@duvm.ocs.drexel.edu PROPN
( PUNCT
Mike PROPN
G. PROPN
) PUNCT
writes:>Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
pros>>In PROPN
article NOUN
< X
C63yG5.8tH@cs.uiuc.edu NOUN
> X
Gunnar PROPN
Blix PROPN
, PUNCT
blix@milton.cs.uiuc.edu>writes:>>I NOUN
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) PUNCT
pros NOUN
and>>cons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
interested ADJ
in>>references NOUN
to ADP
studies NOUN
that PRON
indicate VERB
disadvantages NOUN
or CCONJ
refute VERB
studies>>that PRON
indicate VERB
advantages NOUN
. PUNCT
  SPACE
A DET
friend NOUN
who PRON
is AUX
a DET
medical ADJ
student NOUN
is>>writing NOUN
a DET
survey NOUN
paper NOUN
, PUNCT
and CCONJ
apparently ADV
the DET
studies NOUN
she PRON
has AUX
run VERB
into>>are NUM
all DET
for ADP
circumcision NOUN
, PUNCT
the DET
main ADJ
argument NOUN
being AUX
a DET
lower ADJ
risk NOUN
of>>penile NOUN
cancer.>>>>Please NOUN
email NOUN
responses NOUN
as SCONJ
I PRON
am AUX
not PART
a DET
frequent ADJ
reader NOUN
of ADP
either DET
group.>>I PROPN
will AUX
summarize VERB
to ADP
the DET
net.>>I'm PROPN
very ADV
surprised VERB
that SCONJ
medical ADJ
schools NOUN
still ADV
push VERB
routine ADJ
circumcision NOUN
> X
of ADP
newborn ADJ
males NOUN
on ADP
the DET
population NOUN
. PUNCT
Since SCONJ
your PRON
friend NOUN
is AUX
not PART
a DET
man NOUN
, PUNCT
sheMoney PROPN
probably ADV
has AUX
a DET
lot NOUN
to PART
do AUX
with ADP
keeping VERB
the DET
practice NOUN
of ADP
routine ADJ
circumcision NOUN
alive ADJ
... PUNCT
It PRON
's AUX
another DET
opporitunity NOUN
to PART
charge VERB
a DET
few ADJ
hundredextra ADJ
bucks NOUN
for ADP
a DET
completely ADV
unnecessary ADJ
procedure NOUN
, PUNCT
the DET
rationale NOUN
for ADP
which PRON
until ADP
recently ADV
has AUX
been AUX
accepted VERB
without ADP
question NOUN
by ADP
mostparents NOUN
of ADP
newborns NOUN
. PUNCT
  SPACE
One PRON
could AUX
also ADV
imagine VERB
that SCONJ
complications NOUN
arising VERB
from ADP
circumcision(infections PROPN
, PUNCT
sloppy ADJ
jobs NOUN
, PUNCT
etc X
) PUNCT
are AUX
far ADV
more ADV
common ADJ
than SCONJ
the DET
remote ADJ
chanceof ADJ
penile NOUN
cancer NOUN
it PRON
is AUX
purported VERB
to PART
prevent VERB
. PUNCT
   SPACE
> X
ca AUX
n't PART
imagine VERB
what PRON
it PRON
's AUX
like ADJ
to PART
have AUX
a DET
penis NOUN
, PUNCT
much ADV
less ADJ
a DET
foreskin NOUN
. PUNCT
I PRON
> X
guess VERB
if SCONJ
American ADJ
medicine NOUN
did AUX
an DET
artistic ADJ
job NOUN
of ADP
circumcising VERB
every DET
> X
male NOUN
, PUNCT
then ADV
the DET
visual ADJ
result NOUN
would AUX
be AUX
somewhat ADV
more ADV
natural ADJ
in ADP
> X
appearance NOUN
... PUNCT
>>The PUNCT
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
be AUX
> X
going VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journal PROPN
> X
or CCONJ
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
old ADJ
> X
Jewish ADJ
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
the DET
> X
cancer NOUN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
like SCONJ
> X
crazy ADJ
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
a DET
> X
little ADJ
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung VERB
up ADP
on ADP
> X
the DET
penis PROPN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADV
like SCONJ
> X
mastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basically ADV
> X
unnecessary ADJ
. PUNCT
Peter PROPN
SchlumpfUniversity PROPN
of ADP
Illinois PROPN
at ADP
Urbana PROPN
- PUNCT
ChampaignNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59402From NUM
: PUNCT
OPDBS@vm.cc.latech.eduSubject NUM
: PUNCT
Can AUX
I PRON
sell VERB
my PRON
TENS PROPN
unit NOUN
? PUNCT
Sci PROPN
med VERB
people NOUN
: PUNCT
Can AUX
I PRON
sell VERB
my PRON
TENS PROPN
unit NOUN
or CCONJ
does AUX
it PRON
have AUX
to PART
be AUX
sold VERB
by ADP
a DET
physician NOUN
orother NOUN
liscened VERB
person NOUN
? PUNCT
Dougopdbs@vm.cc.latech.edu NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59403From NUM
: PUNCT
scheiber@sage.cc.purdue.edu NUM
( PUNCT
Jennifer PROPN
Scheiber)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
matthews@oswego PROPN
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews PROPN
) PUNCT
writes:>All PROPN
right ADV
, PUNCT
listen VERB
up ADP
.... PUNCT
  SPACE
What PRON
are AUX
the DET
possibilities NOUN
of ADP
transmission NOUN
through ADP
> X
swimming VERB
pool NOUN
water NOUN
? PUNCT
  SPACE
Especially ADV
if SCONJ
the DET
chlorination NOUN
is AUX
n't PART
up ADP
to PART
par?>>I've VERB
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
> X
else ADV
is AUX
going VERB
on?>>But CCONJ
the DET
sperm NOUN
would AUX
be AUX
very ADV
diluted ADJ
in ADP
a DET
" PUNCT
x ADJ
" PUNCT
gallon NOUN
swimming NOUN
pool NOUN
   SPACE
-- PUNCT
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
* PUNCT
                  SPACE
J PROPN
e PROPN
n CCONJ
n CCONJ
i PRON
f PROPN
e NOUN
r NOUN
      SPACE
S PROPN
c NOUN
h NOUN
e NOUN
i NOUN
b NOUN
e NOUN
r NOUN
                     SPACE
* PUNCT
email NOUN
: PUNCT
scheiber@sage.cc.purdue.edu PROPN
      SPACE
School PROPN
of ADP
Nursing PROPN
- PUNCT
Purdue PROPN
University~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59404From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:=FLAME PROPN
ON==Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)=photography NOUN
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
= SYM
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
= SYM
measure VERB
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADV
there ADV
. PUNCT
Where ADV
have AUX
you PRON
seen VERB
that SCONJ
attitude?=I NOUN
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
= SYM
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
= PUNCT
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
= SYM
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.=I X
am AUX
convinced VERB
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
= SYM
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
= SYM
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,=were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
Fine ADV
, PUNCT
jackass NOUN
. PROPN
  SPACE
Suppose VERB
you PRON
point VERB
out ADP
even ADV
ONE NUM
aspect NOUN
of ADP
Kirlian PROPN
photographythat NOUN
's AUX
not PART
explained VERB
by ADP
a DET
corona NOUN
discharge.--------------------------------------------------------------------------------Carl NOUN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59406From NUM
: PUNCT
enea1@applelink.apple.com PROPN
( PUNCT
Horace PROPN
Enea)Subject NOUN
: PUNCT
Persistent PROPN
vs ADP
ChronicCan VERB
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
diseaseand NOUN
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis PROPN
vs ADP
chronichepatitis NOUN
. PUNCT
Thanks NOUN
, PUNCT
HoraceNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59407From NUM
: PUNCT
brenda@bookhouse NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Brenda PROPN
Bowden)Subject PROPN
: PUNCT
feverfew ADJ
for ADP
migrainesI PROPN
heard VERB
a DET
short ADJ
blurb NOUN
on ADP
the DET
news NOUN
yesterday NOUN
about ADP
an DET
herb NOUN
called VERB
feverfew ADJ
( PUNCT
? PUNCT
) PUNCT
that SCONJ
some DET
say VERB
is AUX
good ADJ
for ADP
preventing VERB
migraines NOUN
. PUNCT
I PRON
think VERB
the DET
news NOUN
said VERB
therewere ADJ
two NUM
double ADJ
- PUNCT
blind ADJ
studies NOUN
that PRON
found VERB
this DET
effective ADJ
. PUNCT
Does AUX
anyone PRON
know VERB
about ADP
these DET
studies NOUN
? PUNCT
Or CCONJ
have AUX
experience NOUN
with ADP
feverfew?I'm PROPN
skeptical ADJ
, PUNCT
but CCONJ
open ADJ
to ADP
trying VERB
it PRON
if SCONJ
I PRON
can AUX
find VERB
out ADP
more ADJ
about ADP
this DET
. PUNCT
What PRON
is AUX
feverfew ADJ
, PUNCT
and CCONJ
how ADV
much ADJ
would AUX
you PRON
take VERB
to PART
prevent VERB
migraines NOUN
( PUNCT
if SCONJ
this DET
is AUX
a DET
good ADJ
idea NOUN
, PUNCT
that DET
is ADV
) PUNCT
? PUNCT
Are AUX
there PRON
any DET
known VERB
risks NOUN
or CCONJ
side NOUN
effectsof NOUN
feverfew ADJ
? PUNCT
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
info!BrendaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59408From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???Iridology PROPN
is AUX
descendant ADJ
from ADP
a DET
19th ADJ
- PUNCT
century NOUN
theory NOUN
which PRON
mapped VERB
certaindiseases NOUN
to ADP
sectors NOUN
of ADP
the DET
iris NOUN
of ADP
the DET
eye NOUN
. PUNCT
  SPACE
There PRON
's AUX
enough ADJ
naturalvariation NOUN
in ADP
color NOUN
that SCONJ
a DET
skilled ADJ
examiner NOUN
can AUX
find VERB
indicators NOUN
ofvirtually ADV
any DET
disease NOUN
. PUNCT
Modern ADJ
scientists NOUN
consider VERB
it PRON
to PART
be AUX
complete ADJ
bunk NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59409From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
WE PRON
CAN AUX
SUPPLY VERB
YOU PRON
WITH ADP
THE DET
TRANSPLANTANTS PROPN
& CCONJ
OTHERHarvested VERB
to ADP
order?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59410From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics NOUN
and CCONJ
Purification?Colonics NOUN
were AUX
a DET
health NOUN
fad NOUN
of ADP
the DET
19th ADJ
century NOUN
, PUNCT
which PRON
persists VERB
to ADP
this DET
day NOUN
. PUNCT
Except SCONJ
for ADP
certain ADJ
medical ADJ
conditions NOUN
, PUNCT
there PRON
is AUX
no DET
reason NOUN
to PART
do AUX
this DET
. PUNCT
Certainly ADV
no DET
normal ADJ
person NOUN
should AUX
do AUX
this DET
. PUNCT
Frequent ADJ
use NOUN
of ADP
enemas NOUN
can AUX
lead VERB
to ADP
a DET
condition NOUN
in ADP
which PRON
a DET
person NOUN
is AUX
unableto PROPN
have AUX
normal ADJ
bowel NOUN
passage NOUN
, PUNCT
essentially ADV
a DET
person NOUN
becomes VERB
addicted VERB
toenemas NOUN
. PUNCT
  SPACE
As SCONJ
I PRON
understand VERB
it PRON
, PUNCT
this DET
is AUX
a DET
very ADV
unpleasant ADJ
condition NOUN
, PUNCT
and CCONJ
itwould AUX
be AUX
best ADJ
to PART
avoid VERB
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59411From NUM
: PUNCT
< X
RFM@psuvm.psu.edu>Subject VERB
: PUNCT
Re ADP
: PUNCT
Med NOUN
school NOUN
admissionThen ADV
there PRON
are AUX
always ADV
osteopathy ADJ
colleges NOUN
.... PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59412From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
< X
4974@master NOUN
. PUNCT
CNA.TEK.COM PROPN
> PROPN
mikeq@freddy PROPN
. PUNCT
CNA.TEK.COM PROPN
( PUNCT
Mike PROPN
Quigley PROPN
) PUNCT
writes:>In PROPN
article NOUN
? PUNCT
? PUNCT
? PUNCT
? PUNCT
? PUNCT
? PUNCT
I PRON
write:>>When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident>>in PROPN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having>>sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm>>cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>>>>Was PUNCT
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually>>occur?>Ohboy PROPN
. PUNCT
Here ADV
we PRON
go VERB
again ADV
. PUNCT
And CCONJ
one NUM
wonders VERB
why ADV
the DET
American ADJ
> NUM
education NOUN
system NOUN
is AUX
in ADP
such ADJ
abysmal NOUN
shape?Actually ADV
, PUNCT
this DET
was AUX
a DET
school NOUN
in ADP
England PROPN
. PUNCT
  SPACE
This DET
same ADJ
biology NOUN
teacher NOUN
alsotold ADP
me PRON
that SCONJ
the DET
reason NOUN
that PRON
stars VERB
twinkle ADJ
is AUX
that SCONJ
the DET
small ADJ
spot NOUN
oflight NOUN
on ADP
the DET
retina NOUN
sometimes ADV
falls VERB
between ADP
the DET
light ADJ
recepive ADJ
cells NOUN
. PUNCT
So ADV
his PRON
info NOUN
was AUX
suspect ADJ
from ADP
the DET
start NOUN
. PUNCT
  SPACE
StephenNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59413From NUM
: PUNCT
pinn@cpqhou.se.hou.compaq.com X
( PUNCT
Steve PROPN
Pinn PROPN
x44304)Subject NOUN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceMichael PROPN
Trofimoff PROPN
( PUNCT
tron@fafnir.la.locus.com X
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Hi INTJ
All DET
, PUNCT
: PUNCT
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
: PUNCT
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
: PUNCT
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki PROPN
? PUNCT
: PUNCT
Thanks NOUN
, PUNCT
I PRON
have AUX
a DET
receipe NOUN
at ADP
home NOUN
that PRON
was AUX
posted VERB
to ADP
me PRON
by ADP
one NUM
of ADP
our PRON
fellownetters NOUN
about ADP
a DET
month NOUN
ago ADV
. PUNCT
  SPACE
I PRON
am AUX
recalling VERB
this DET
from ADP
memory NOUN
butI NOUN
think VERB
I PRON
'm AUX
fairly ADV
close ADJ
( PUNCT
by ADP
the DET
way NOUN
it PRON
was AUX
GREAT!)1 PROPN
	 SPACE
pint NOUN
of ADP
plain ADJ
yogurt PROPN
1/2 NUM
	 SPACE
med PROPN
. PUNCT
sized ADJ
cucumber PROPN
finely ADV
shredded3 NOUN
	 SPACE
cloves NOUN
of ADP
garlic NOUN
( PUNCT
more ADV
or CCONJ
less ADJ
by ADP
taste)1/4 PROPN
tsp PROPN
	 SPACE
dill NOUN
weedThe PROPN
yogurt PROPN
is AUX
dumped VERB
into ADP
a DET
strainer NOUN
lined VERB
with ADP
a DET
coffeefilter NOUN
and CCONJ
allowed VERB
to PART
drain VERB
at ADV
least ADV
2 NUM
hours NOUN
( PUNCT
you PRON
canadjust VERB
the DET
consistancy NOUN
of ADP
the DET
sauce NOUN
by ADP
increasing VERB
this DET
timeup NOUN
to ADP
24 NUM
hours)The PROPN
shredded VERB
cuc PROPN
is AUX
drained VERB
the DET
same ADJ
wayMix NOUN
it PRON
all DET
together ADV
and CCONJ
let VERB
it PRON
steep VERB
for ADP
at ADP
least2 PROPN
hours NOUN
( PUNCT
it PRON
's AUX
better ADJ
the DET
next ADJ
day NOUN
) PUNCT
and CCONJ
enjoy!SteveNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59414From NUM
: PUNCT
cjh@tinton.ccur.com PROPN
( PUNCT
Christopher PROPN
J. PROPN
Henrich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>>Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It>>involves X
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the>>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well>>with PROPN
inanimate ADJ
objects.>>True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this>"corona PUNCT
discharge"?>I ADV
think VERB
I PRON
can AUX
explain VERB
the DET
" PUNCT
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
" PUNCT
story NOUN
. PUNCT
I PRON
have AUX
actually ADV
seen VERB
a DET
reproduction NOUN
of ADP
that DET
particular ADJ
Kirlianphotograph PROPN
, PUNCT
in ADP
a DET
book NOUN
compiled VERB
by ADP
people NOUN
who PRON
were AUX
enthusiasts NOUN
ofKirlian PROPN
photography NOUN
. PUNCT
  SPACE
" PUNCT
That DET
particular ADJ
photograph NOUN
" PUNCT
... PUNCT
? PUNCT
  SPACE
That'sright PROPN
, PUNCT
the DET
effect NOUN
has AUX
been AUX
observed VERB
only ADV
once ADV
. PUNCT
  SPACE
Even ADV
the DET
writers NOUN
ofthe PROPN
book NOUN
were AUX
inclined VERB
to PART
disbelieve VERB
in ADP
it PRON
. PUNCT
  SPACE
I PRON
conjecture VERB
that SCONJ
the DET
maker NOUN
of ADP
that DET
photograph NOUN
began VERB
by ADP
placinga PROPN
whole ADJ
leaf NOUN
between ADP
two NUM
plates NOUN
and CCONJ
taking VERB
its PRON
Kirlian ADJ
photo NOUN
. PUNCT
For ADP
his PRON
next ADJ
experiment NOUN
, PUNCT
he PRON
cut VERB
the DET
leaf NOUN
in ADP
half NOUN
, PUNCT
put VERB
one NUM
half NOUN
downbetween PUNCT
the DET
same ADJ
two NUM
plates NOUN
, PUNCT
and CCONJ
took VERB
another DET
K. PROPN
p. NOUN
  SPACE
The"missing VERB
half DET
" PUNCT
effect NOUN
was AUX
created VERB
by ADP
water NOUN
, PUNCT
oils NOUN
, PUNCT
etc X
. PUNCT
left VERB
behind ADV
after ADP
the DET
first ADJ
photo NOUN
. PUNCT
This DET
explanation NOUN
must AUX
be AUX
tentative ADJ
, PUNCT
because SCONJ
after ADV
all DET
I PRON
was AUX
n't PART
therewhen VERB
it PRON
happened VERB
. PUNCT
  SPACE
Regards PROPN
, PUNCT
Chris PROPN
HenrichNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59415From NUM
: PUNCT
wvhorn@magnus.acs.ohio-state.edu PROPN
( PUNCT
William PROPN
VanHorne)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>>Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>photography PUNCT
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
> X
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
> X
measure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADP
there.>>I PUNCT
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>I PROPN
am AUX
convinced VERB
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics.>>Especially ADV
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not PART
> X
drop VERB
off ADP
the DET
edge NOUN
of ADP
the DET
earth NOUN
. PUNCT
It PRON
is AUX
one NUM
thing NOUN
to PART
be AUX
open ADJ
- PUNCT
minded ADJ
about ADP
phenomona PROPN
that PRON
have AUX
notbe PROPN
demonstrated VERB
to PART
be AUX
false ADJ
, PUNCT
and CCONJ
quite DET
another DET
to PART
" PUNCT
believe VERB
" PUNCT
insomething VERB
like SCONJ
Krilian ADJ
photography NOUN
, PUNCT
where ADV
* PUNCT
all DET
* PUNCT
the DET
claimed VERB
effectshave NOUN
be AUX
demonstrated VERB
to PART
be AUX
artifacts NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
longer ADV
any DET
reasonto PROPN
adopt VERB
a DET
" PUNCT
wait VERB
and CCONJ
see VERB
" PUNCT
attitude NOUN
about ADP
Krilian ADJ
photography NOUN
, PUNCT
ithas VERB
been AUX
experimentally ADV
shown VERB
to PART
be AUX
nothing PRON
but SCONJ
simple ADJ
coronaldischarge NOUN
. PUNCT
  SPACE
The DET
" PUNCT
auras X
" PUNCT
shown VERB
by ADP
missing VERB
leaf NOUN
parts NOUN
came VERB
from ADP
moisture NOUN
left VERB
by ADP
the DET
original ADJ
whole ADJ
leaf NOUN
, PUNCT
for ADP
example NOUN
. PUNCT
  SPACE
That DET
's AUX
what PRON
science NOUN
is AUX
, PUNCT
son.---Bill ADJ
VanHorneNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59416From NUM
: PUNCT
< X
ICBAL@ASUACAD.BITNET NOUN
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1rhb0e$9ks@europa.eng.gtefsd.com NUM
> X
, PUNCT
draper@gnd1.wtp.gtefsd.com X
( PUNCT
PAMDRAPER PROPN
) PUNCT
says:>>This DET
homeopathic ADJ
remedies NOUN
. PUNCT
  SPACE
I PRON
tried VERB
the DET
dander NOUN
one NUM
for ADP
a DET
month NOUN
. PUNCT
15 NUM
drops NOUN
> X
three NUM
times NOUN
a DET
day NOUN
. PUNCT
  SPACE
I PRON
did AUX
n't PART
notice VERB
any DET
change NOUN
what PRON
s VERB
so ADV
ever ADV
. PUNCT
  SPACE
How ADV
long ADV
> X
were AUX
you PRON
using VERB
the DET
drops NOUN
before ADP
you PRON
noticed VERB
a DET
difference?>It NOUN
is AUX
NOT ADV
a DET
homeopathic ADJ
remedy NOUN
. PUNCT
Improvement NOUN
began VERB
in ADP
a DET
few ADJ
months NOUN
. PUNCT
I PRON
am AUX
allergic ADJ
to PART
bermuda VERB
grass PROPN
and CCONJ
if SCONJ
anyone PRON
nearby ADV
was AUX
mowing VERB
a DET
lawnmy NOUN
nose NOUN
would AUX
start VERB
to PART
run VERB
. PUNCT
  SPACE
Now ADV
I PRON
can AUX
walk VERB
right ADV
by ADV
and CCONJ
it PRON
does AUX
n't PART
botherme VERB
at ADV
all ADV
. PUNCT
  SPACE
The DET
same ADJ
success NOUN
with ADP
desert NOUN
ragweed NOUN
. PUNCT
   SPACE
Bruce PROPN
LongNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59417From NUM
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?Michael DET
Covington PROPN
( PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
: PUNCT
How ADV
about ADP
contaminants NOUN
on ADP
the DET
corn NOUN
, PUNCT
e.g. ADV
aflatoxin NOUN
? PUNCT
? PUNCT
? PUNCT
: PUNCT
Little ADJ
alflatoxin NOUN
on ADP
commercial ADJ
cereal NOUN
products NOUN
and CCONJ
certainly ADV
wouldn'tcause VERB
seizures.--David ADJ
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Healthdozonoff@med-itvax1.bu.edu PROPN
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C(617 PROPN
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59418From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rk5miINNkju@usenet.pa.dec.com PROPN
> X
, PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark PROPN
) PUNCT
writes:=>Yup X
. PUNCT
  SPACE
The DET
demonstration NOUN
to PART
which PRON
you PRON
refer VERB
consists NOUN
of ADP
placing VERB
a DET
leaf NOUN
between=>the NOUN
plates NOUN
, PUNCT
and CCONJ
taking VERB
a DET
Kirlian ADJ
photograph NOUN
of ADP
it PRON
. PUNCT
  SPACE
You PRON
then ADV
cut VERB
off ADP
part NOUN
of=>the DET
leaf NOUN
, PUNCT
put VERB
the DET
top ADJ
plate NOUN
back ADV
on ADV
, PUNCT
and CCONJ
take VERB
another DET
Kirlian ADJ
photograph NOUN
. PUNCT
  SPACE
You=>see PROPN
pretty ADV
much ADV
the DET
same ADJ
image NOUN
in ADP
both DET
cases NOUN
. PUNCT
  SPACE
Turns VERB
out ADP
the DET
effect NOUN
isn't=>nearly ADV
so ADV
striking ADJ
if SCONJ
you PRON
take VERB
the DET
trouble NOUN
to PART
clean VERB
the DET
plates NOUN
between=>photographs NOUN
. PUNCT
  SPACE
Seems VERB
that SCONJ
the DET
moisture NOUN
from ADP
the DET
leaf NOUN
that PRON
you PRON
left VERB
on ADP
the DET
place=>conducts NOUN
electricity NOUN
. PUNCT
  SPACE
Surprise PROPN
, PUNCT
surprise!== PROPN
	 SPACE
This DET
is AUX
true ADJ
, PUNCT
but CCONJ
it PRON
's AUX
not PART
quite DET
the DET
whole ADJ
story NOUN
. PUNCT
  SPACE
There PRON
were AUX
= X
	 SPACE
actually ADV
some DET
people NOUN
who PRON
were AUX
more ADV
careful ADJ
in ADP
their PRON
methodology= PROPN
	 SPACE
who PRON
also ADV
replicated VERB
the DET
' PUNCT
phantom ADJ
leaf NOUN
effect NOUN
. PUNCT
'You PRON
can AUX
also ADV
replicate VERB
the DET
effect NOUN
with ADP
a DET
rock NOUN
: PUNCT
  SPACE
Take VERB
your PRON
first ADJ
Kirlianphotograph PROPN
. PUNCT
  SPACE
Then ADV
moisten VERB
one NUM
edge NOUN
of ADP
the DET
rock NOUN
. PUNCT
  SPACE
Lo PROPN
! PUNCT
and CCONJ
behold VERB
! PUNCT
  SPACE
Phantom PROPN
rock!--------------------------------------------------------------------------------Carl PROPN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59419From NUM
: PUNCT
joel@cray.com X
( PUNCT
Joel PROPN
Broude)Subject PROPN
: PUNCT
Mevicore PROPN
vs. ADP
Lopid PROPN
vs. NOUN
? PUNCT
I PRON
used VERB
to PART
be AUX
on ADP
lopid PROPN
. PUNCT
  SPACE
It PRON
did AUX
a DET
good ADJ
job NOUN
of ADP
reducing VERB
cholesterol NOUN
( PUNCT
295down NUM
to ADP
around ADP
214 NUM
) PUNCT
, PUNCT
as ADV
well ADV
as SCONJ
LDL PROPN
and CCONJ
triglycerides NOUN
. PUNCT
  SPACE
Then ADV
, PUNCT
I PRON
gotpneumonia VERB
, PUNCT
and CCONJ
for ADP
some DET
reason NOUN
, PUNCT
the DET
Lopid PROPN
stopped VERB
working VERB
very ADV
well;cholesterol PROPN
and CCONJ
triglycerides NOUN
soared VERB
. PUNCT
  SPACE
The DET
levels NOUN
might AUX
have AUX
stabilizedover NOUN
time NOUN
, PUNCT
but CCONJ
a DET
new ADJ
doctor NOUN
had AUX
me PRON
quit VERB
, PUNCT
wait VERB
a DET
month NOUN
, PUNCT
then ADV
switchto VERB
Mevicore PROPN
. PUNCT
  SPACE
On ADP
Mevicore PROPN
, PUNCT
my PRON
total ADJ
cholesterol NOUN
was AUX
down ADV
to ADP
207 NUM
, PUNCT
  SPACE
LDL PROPN
was AUX
108 NUM
, PUNCT
and CCONJ
HDL PROPN
was AUX
35 NUM
; PUNCT
but CCONJ
the DET
trig NOUN
's PART
were AUX
stillvery NOUN
high ADJ
, PUNCT
around ADV
318 NUM
, PUNCT
and CCONJ
my PRON
liver NOUN
tests NOUN
came VERB
back ADV
slightly ADV
abnormal ADJ
, PUNCT
SGOT PROPN
= SYM
83 NUM
( PUNCT
N PROPN
= SYM
1 NUM
- SYM
35 NUM
) PUNCT
, PUNCT
  SPACE
GGTP(?hard NOUN
to PART
read VERB
copy NOUN
) PUNCT
= SYM
42 NUM
( PUNCT
N PROPN
= SYM
0 NUM
- SYM
35).He NUM
said VERB
the DET
liver NOUN
numbers NOUN
were AUX
not PART
offbase VERB
enough ADJ
to PART
cause VERB
himconcern ADJ
, PUNCT
and CCONJ
the DET
triglycerides NOUN
are AUX
not PART
as ADV
important ADJ
as SCONJ
the DET
cholesterolfigures NOUN
. PUNCT
  SPACE
He PRON
had AUX
me PRON
stop VERB
the DET
Mevicore PROPN
to PART
allow VERB
the DET
liver NOUN
to PART
heal VERB
( PUNCT
" PUNCT
Justto PROPN
be AUX
extra ADV
cautious ADJ
, PUNCT
though SCONJ
I PRON
'm AUX
sure ADJ
it PRON
's AUX
not PART
a DET
problem NOUN
. PUNCT
"),and PUNCT
wants VERB
me PRON
to PART
go VERB
back ADV
on ADP
it PRON
after ADP
that DET
. PUNCT
  SPACE
I PRON
suggested VERB
maybe ADV
Lopid PROPN
mightbe VERB
the DET
better ADJ
choice NOUN
, PUNCT
and CCONJ
he PRON
said VERB
that SCONJ
he PRON
would AUX
n't PART
object VERB
if SCONJ
that DET
's AUX
whatI PROPN
want VERB
to PART
do AUX
. PUNCT
  SPACE
But CCONJ
Lopid PROPN
has AUX
one NUM
particular ADJ
side NOUN
effect NOUN
I PRON
'm AUX
not PART
fond ADJ
of ADP
. PUNCT
Should AUX
the DET
above ADJ
liver NOUN
and CCONJ
trig NOUN
figures NOUN
be AUX
feared VERB
? PUNCT
  SPACE
What PRON
happens VERB
tofolks NOUN
with ADP
high ADJ
trig NOUN
levels NOUN
? PUNCT
  SPACE
Is AUX
my PRON
liver NOUN
in ADP
danger NOUN
with ADP
the DET
aboveresults NOUN
? PUNCT
  SPACE
Would AUX
I PRON
be AUX
better ADJ
off ADP
on ADP
Lopid PROPN
, PUNCT
despite SCONJ
its PRON
inconvenient ADJ
side NOUN
effect NOUN
, PUNCT
or CCONJ
, PUNCT
perhaps ADV
, PUNCT
some DET
other ADJ
drug NOUN
? PUNCT
  SPACE
( PUNCT
Niacin PROPN
affected VERB
my PRON
liver NOUN
, PUNCT
too).Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59420Subject NUM
: PUNCT
EXPERTS NOUN
ON ADP
EDWARD PROPN
JENNER PROPN
... PUNCT
LOOK!!!From PROPN
: PUNCT
pkwok@eis.calstate.edu PROPN
( PUNCT
Philip PROPN
Kwok)I PROPN
am AUX
a DET
student NOUN
from ADP
San PROPN
Leandro PROPN
High PROPN
school NOUN
. PUNCT
  SPACE
I PRON
am AUX
doing VERB
a DET
researchproject NOUN
for ADP
physics NOUN
and CCONJ
I PRON
would AUX
like VERB
information NOUN
on ADP
Edward PROPN
Jenner PROPN
and CCONJ
thevaccination NOUN
for ADP
small ADJ
pox NOUN
. PUNCT
  SPACE
Any DET
information NOUN
at ADV
all DET
would AUX
be AUX
greatlyapprectiated VERB
. PUNCT
  SPACE
Thank VERB
you PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59421From NUM
: PUNCT
kring@pamuk.physik.uni-kl.de PROPN
( PUNCT
Thomas PROPN
Kettenring)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU PROPN
writes VERB
: PUNCT
> X
> X
[ PUNCT
.. PUNCT
] PUNCT
It>>involves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the>>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well>>with PROPN
inanimate ADJ
objects.>>True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this>"corona PUNCT
discharge"?This ADJ
effect NOUN
disappears VERB
if SCONJ
you PRON
clean VERB
your PRON
apparatus NOUN
after ADP
you PRON
kirlianedthe VERB
whole ADJ
leaf NOUN
and CCONJ
before ADP
kirlianing VERB
the DET
leaf NOUN
part.--thomas PROPN
kettenring NOUN
, PUNCT
3 NUM
dan PROPN
, PUNCT
kaiserslautern PROPN
, PUNCT
germanyThe PROPN
extraterrestrials NOUN
do AUX
n't PART
even ADV
know VERB
this DET
planet NOUN
has AUX
native ADJ
inhabitants NOUN
. PUNCT
Their PRON
government NOUN
does AUX
n't PART
tell VERB
them PRON
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59422From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject PROPN
: PUNCT
med VERB
school NOUN
admission NOUN
continued.hi X
all DET
, PUNCT
i PRON
got VERB
several ADJ
emails NOUN
and CCONJ
a DET
couple NOUN
news NOUN
replies NOUN
and CCONJ
i PRON
guess VERB
ishoulda ADV
went VERB
into ADP
more ADJ
detail NOUN
... PUNCT
Being AUX
my PRON
anxiety NOUN
level NOUN
is AUX
peaking VERB
and CCONJ
youfolks NOUN
have AUX
no DET
clue NOUN
who PRON
I PRON
am AUX
I PRON
may AUX
as ADV
well ADV
post VERB
the DET
specifics NOUN
and CCONJ
see VERB
whatyou NOUN
people NOUN
think VERB
regarding VERB
my PRON
previous ADJ
post NOUN
. PUNCT
To PART
recap PROPN
i PRON
applied VERB
to ADP
20 NUM
schools NOUN
total ADJ
, PUNCT
16 NUM
of ADP
which PRON
were AUX
MD PROPN
and CCONJ
4 NUM
DO.as PUNCT
it PRON
stands VERB
now ADV
i PRON
have AUX
had VERB
13 NUM
rejects NOUN
, PUNCT
4 NUM
interviews NOUN
( PUNCT
2 NUM
MD PROPN
and CCONJ
2 NUM
DO PROPN
) PUNCT
, PUNCT
theresults NOUN
of ADP
which PRON
are AUX
2 NUM
waiting NOUN
lists NOUN
( PUNCT
1 NUM
MD PROPN
and CCONJ
one NUM
DO)3 PROPN
schools NOUN
i PRON
heard VERB
nothing PRON
from ADP
at ADV
all ADV
. PUNCT
I PRON
have AUX
contacted VERB
all DET
institutions NOUN
other ADJ
than SCONJ
the DET
rejects NOUN
and CCONJ
they PRON
have AUX
noinfo PROPN
whatsoever ADV
to PART
tell VERB
me PRON
. PUNCT
I PRON
have AUX
taken VERB
a DET
good ADJ
mix NOUN
to PART
apply VERB
to ADP
.. PUNCT
2 NUM
- SYM
3 NUM
top ADJ
schools NOUN
a DET
bunch NOUN
of ADP
middlesand NOUN
a DET
few ADJ
" PUNCT
safety NOUN
" PUNCT
  SPACE
( PUNCT
funny ADJ
that SCONJ
most ADJ
of ADP
my PRON
safety NOUN
schools NOUN
were AUX
the DET
firstto NOUN
reject VERB
me)my PROPN
index NOUN
is AUX
at ADP
like SCONJ
a DET
3.5 NUM
mcats NOUN
were AUX
R7 PROPN
P9 PROPN
B10 PROPN
WQ NOUN
and CCONJ
R7 PROPN
P9 PROPN
B11 PROPN
WRI PROPN
could AUX
nt PART
get AUX
the DET
damn ADJ
reading VERB
score VERB
up ADV
... PUNCT
i PRON
never ADV
stuff VERB
like SCONJ
arthistory NOUN
, PUNCT
politics NOUN
etc X
I PRON
ve VERB
done VERB
medical ADJ
research NOUN
at ADP
the DET
undergrad ADJ
level NOUN
, PUNCT
done VERB
clinical ADJ
lab NOUN
workfor NOUN
years NOUN
now ADV
, PUNCT
but CCONJ
unfortunately ADV
i PRON
have AUX
no DET
patient ADJ
contact NOUN
experience NOUN
. PUNCT
I PRON
ca AUX
nt PART
think VERB
of ADP
what PRON
else ADV
i PRON
left VERB
out ADP
... PUNCT
but CCONJ
that DET
s VERB
the DET
summary NOUN
. PUNCT
Whatpercent NOUN
of ADP
people NOUN
are AUX
usually ADV
called VERB
from ADP
the DET
waiting VERB
lists NOUN
on ADP
an DET
average?I PROPN
felt VERB
that SCONJ
my PRON
interviews NOUN
went VERB
quite ADV
well ADV
yet ADV
i PRON
do AUX
nt PART
have AUX
a DET
firmacceptance NOUN
in ADP
my PRON
hand NOUN
... PUNCT
anyone PRON
have AUX
any DET
suggestions NOUN
as SCONJ
to PART
calm VERB
themailbox NOUN
anxiety NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
premeds VERB
out ADV
there ADV
or CCONJ
med VERB
students NOUN
have AUX
any DET
questions NOUN
or CCONJ
commentsfor VERB
me PRON
feel VERB
free ADJ
to PART
send VERB
them PRON
down ADP
... PUNCT
Typing NOUN
is AUX
a DET
form NOUN
of ADP
anti ADJ
- ADJ
anxietythereapy ADJ
hehehehe NOUN
: PUNCT
) PUNCT
-- PUNCT
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59423From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Re ADP
: PUNCT
med PROPN
schoolJohn PROPN
Carey PROPN
( PUNCT
jcarey@news.weeg.uiowa.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Actually ADV
I PRON
am AUX
entering VERB
vet NOUN
school NOUN
next ADJ
year NOUN
, PUNCT
but CCONJ
the DET
question NOUN
is AUX
: PUNCT
relevant ADJ
for ADP
med ADJ
students NOUN
too ADV
. PUNCT
: PUNCT
Memorizing VERB
large ADJ
amounts NOUN
has AUX
never ADV
been AUX
my PRON
strong ADJ
point NOUN
academically ADV
. PUNCT
: PUNCT
Since SCONJ
this DET
is AUX
a DET
major ADJ
portion NOUN
of ADP
medical ADJ
education NOUN
-- PUNCT
anatomy NOUN
, PUNCT
: PUNCT
histology NOUN
, PUNCT
pathology NOUN
, PUNCT
pharmacology NOUN
, PUNCT
are AUX
for ADP
the DET
most ADJ
part NOUN
mass NOUN
: PUNCT
memorization NOUN
-- PUNCT
I PRON
am AUX
a DET
little ADV
concerned ADJ
. PUNCT
  SPACE
As SCONJ
I PRON
am AUX
sure ADJ
most ADV
: PUNCT
med VERB
students NOUN
are AUX
. PUNCT
: PUNCT
Can AUX
anyone PRON
suggest VERB
techniques NOUN
for ADP
this DET
type NOUN
of ADP
memorization NOUN
? PUNCT
  SPACE
I PRON
: PUNCT
have AUX
had VERB
reasonable ADJ
success NOUN
with ADP
nemonics NOUN
and CCONJ
memory NOUN
tricks NOUN
like SCONJ
: PUNCT
thinking VERB
up ADP
little ADJ
stories NOUN
to PART
associate VERB
unrelated ADJ
things NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
have AUX
: PUNCT
never ADV
applied VERB
them PRON
to ADP
large ADJ
amounts NOUN
of ADP
" PUNCT
data NOUN
" PUNCT
. PUNCT
: PUNCT
Has AUX
anyone PRON
had AUX
luck NOUN
with ADP
any DET
particular ADJ
books NOUN
, PUNCT
memory NOUN
systems NOUN
, PUNCT
or CCONJ
: PUNCT
cheap ADJ
software NOUN
? PUNCT
   SPACE
: PUNCT
Can AUX
you PRON
suggest VERB
any DET
helpful ADJ
organizational ADJ
techniques NOUN
? PUNCT
  SPACE
Being AUX
an DET
: PUNCT
older ADJ
student NOUN
who PRON
returned VERB
to ADP
school NOUN
this DET
year NOUN
, PUNCT
organization NOUN
( PUNCT
another DET
: PUNCT
one NUM
of ADP
my PRON
weak ADJ
points NOUN
) PUNCT
has AUX
been AUX
a DET
major ADJ
help NOUN
to ADP
my PRON
success NOUN
. PUNCT
: PUNCT
Please INTJ
no DET
griping NOUN
about ADP
how ADV
all DET
you PRON
have AUX
to PART
do AUX
is AUX
" PUNCT
learn VERB
" PUNCT
the DET
material NOUN
: PUNCT
conceptually ADV
. PUNCT
  SPACE
I PRON
have AUX
no DET
problem NOUN
with ADP
that DET
, PUNCT
it PRON
is AUX
one NUM
of ADP
my PRON
strong ADJ
: PUNCT
points NOUN
. PUNCT
  SPACE
But CCONJ
you PRON
ca AUX
n't PART
get AUX
around ADP
the DET
fact NOUN
that SCONJ
much ADJ
of ADP
medicine NOUN
is AUX
: PUNCT
rote VERB
memorization NOUN
. PUNCT
  SPACE
: PUNCT
Thanks NOUN
for ADP
your PRON
help NOUN
. PUNCT
The DET
only ADJ
suggestion NOUN
i PRON
can AUX
think VERB
of ADP
off ADP
the DET
top NOUN
of ADP
my PRON
head NOUN
is AUX
get AUX
a DET
largesupply NOUN
of ADP
index NOUN
cards NOUN
and CCONJ
memorize VERB
small ADJ
amounts NOUN
of ADP
info NOUN
at ADP
a DET
time NOUN
, PUNCT
makingflash NOUN
cards NOUN
and CCONJ
quesitons NOUN
. PUNCT
Everytime ADV
i PRON
get VERB
a DET
question NOUN
wrong ADJ
I PRON
alwaysmanage VERB
to PART
get AUX
the DET
damn ADJ
thing NOUN
right INTJ
the DET
next ADJ
time NOUN
-- PUNCT
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59424From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Re ADP
: PUNCT
A DET
Good ADJ
place NOUN
for ADP
Back PROPN
Surgery PROPN
? PUNCT
: PUNCT
gary.schuetter NOUN
( PUNCT
garyws@cbnewsg.cb.att.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
: PUNCT
	 SPACE
: PUNCT
: PUNCT
         SPACE
Hello INTJ
, PUNCT
: PUNCT
: PUNCT
         SPACE
Just ADV
one NUM
quick ADJ
question NOUN
: PUNCT
: PUNCT
: PUNCT
         SPACE
My PRON
father NOUN
has AUX
had VERB
a DET
back ADJ
problem NOUN
for ADP
a DET
long ADJ
time NOUN
and CCONJ
doctors NOUN
: PUNCT
: PUNCT
         SPACE
have AUX
diagnosed VERB
an DET
operation NOUN
is AUX
needed VERB
. PUNCT
Since SCONJ
he PRON
lives VERB
down ADP
in ADP
: PUNCT
: PUNCT
         SPACE
Mexico PROPN
, PUNCT
he PRON
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
a DET
hospital NOUN
anywhere ADV
in ADV
: PUNCT
: PUNCT
         SPACE
the DET
United PROPN
States PROPN
particulary NOUN
famous ADJ
for ADP
this DET
kind NOUN
of ADP
surgery NOUN
, PUNCT
: PUNCT
: PUNCT
         SPACE
kind ADV
of ADV
like SCONJ
Houston PROPN
has AUX
a DET
reputation NOUN
for ADP
excellent ADJ
doctors NOUN
: PUNCT
: PUNCT
         SPACE
in ADP
eye NOUN
surgery NOUN
. PUNCT
Any DET
additional ADJ
info NOUN
or CCONJ
pointers NOUN
will AUX
be AUX
: PUNCT
: PUNCT
         SPACE
appreciated VERB
a DET
whole ADJ
lot NOUN
! PUNCT
... PUNCT
: PUNCT
There PRON
is AUX
one NUM
hospital NOUN
that PRON
is AUX
here ADV
in ADP
New PROPN
York PROPN
City PROPN
that PRON
is AUX
famous ADJ
for ADP
its PRON
: PUNCT
orthopedists NOUN
, PUNCT
namely ADV
the DET
Hospital PROPN
for ADP
Special PROPN
Surgery PROPN
. PUNCT
They PRON
are AUX
located VERB
on ADP
: PUNCT
the DET
upper PROPN
east PROPN
side NOUN
of ADP
manhattan PROPN
. PUNCT
If SCONJ
you PRON
want VERB
their PRON
address NOUN
and CCONJ
phone NOUN
let VERB
: PUNCT
me PRON
know VERB
, PUNCT
i PRON
'll AUX
get AUX
them PRON
, PUNCT
i PRON
do AUX
nt PART
know VERB
them PRON
off ADP
hand.for PROPN
those DET
who PRON
are AUX
interested ADJ
the DET
hospitals NOUN
i PRON
was AUX
referring VERB
to ADP
are AUX
: PUNCT
The DET
Hospital PROPN
for ADP
Special PROPN
Surgery535 PROPN
East PROPN
70th NOUN
StreetNew PROPN
York PROPN
, PUNCT
NY PROPN
10021212 NUM
- SYM
606 NUM
- PUNCT
1555 NUM
( PUNCT
Physician PROPN
Referral PROPN
Service PROPN
& CCONJ
info NOUN
) PUNCT
The DET
Hospital PROPN
for ADP
Joint PROPN
Diseases301 PROPN
East PROPN
17th NOUN
StreetNew PROPN
York PROPN
, PUNCT
NY PROPN
10003212 NUM
- SYM
598 NUM
- PUNCT
7600 NUM
- PUNCT
- PUNCT
          SPACE
/\ PUNCT
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59425From NUM
: PUNCT
oldman@coos.dartmouth.edu PROPN
( PUNCT
Prakash PROPN
Das)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr26.143101.4307@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>I VERB
get AUX
tired ADJ
of ADP
people NOUN
saying VERB
' PUNCT
do AUX
n't PART
eat VERB
X NOUN
because SCONJ
> X
it PRON
's AUX
BAD ADJ
! PUNCT
' PUNCT
  SPACE
Well INTJ
, PUNCT
X PROPN
may AUX
not PART
be AUX
bad ADJ
for ADP
everyone PRON
. PUNCT
  SPACE
And CCONJ
even ADV
if SCONJ
> X
it PRON
is AUX
, PUNCT
so ADV
what PRON
? PUNCT
  SPACE
Give VERB
people NOUN
all DET
the DET
information NOUN
but CCONJ
do AUX
n't PART
ram VERB
> X
your PRON
decisions NOUN
down ADP
their PRON
throats.>It NUM
is AUX
evident ADJ
you PRON
did AUX
not PART
read VERB
my PRON
post NOUN
carefully ADV
. PUNCT
I PRON
wasn'ttrying VERB
to PART
tell VERB
you PRON
not PART
to PART
eat VERB
MSG NOUN
products NOUN
and CCONJ
produce VERB
, PUNCT
nor CCONJ
was AUX
Iarguing VERB
for ADP
or CCONJ
against ADP
MSG PROPN
. PUNCT
I PRON
was AUX
simply ADV
questioning VERB
the DET
logic NOUN
ofyour PRON
statement NOUN
that SCONJ
simply ADV
because(a PROPN
) PUNCT
one NUM
is AUX
not PART
allergic ADJ
to ADP
something PRON
, PUNCT
and(b PROPN
) PUNCT
likes VERB
eating VERB
thatit NOUN
follows VERB
that SCONJ
one PRON
could AUX
keep VERB
eating VERB
whatever PRON
it PRON
is AUX
. PUNCT
In ADP
my PRON
post NOUN
, PUNCT
I PRON
had AUX
clearly ADV
said VERB
that SCONJ
I PRON
do AUX
n't PART
know VERB
enough ADJ
about ADP
MSG.The ADJ
statement NOUN
" PUNCT
do AUX
n't PART
eat VERB
X NOUN
because SCONJ
its PRON
bad ADJ
" PUNCT
is AUX
just ADV
_ VERB
your PRON
_ DET
interpretation NOUN
of ADP
nutritional ADJ
info NOUN
out ADV
there ADV
. PUNCT
Prakash PROPN
DasNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59426From NUM
: PUNCT
tad@ssc.com X
( PUNCT
Tad PROPN
Cook)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org NUM
> X
gpivar@mitre.org(The PROPN
Pancake PROPN
Emporium PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:>| PUNCT
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>| PUNCT
> X
> X
| CCONJ
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
>| PROPN
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow>| VERB
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking>| NOUN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for>| PROPN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly>| PROPN
> X
> X
appreciated.>| PROPN
> X
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
> X
| CCONJ
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.>| PROPN
> X
> X
| CCONJ
> X
Bill PROPN
from ADP
oz>| PROPN
> X
> X
> X
> X
Bill,>No PROPN
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian ADJ
> PROPN
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,>it PROPN
takes VERB
pictures NOUN
of ADP
your PRON
aura.>| NOUN
> X
> X
> X
-- PUNCT
> X
Greg PROPN
> X
You PRON
're AUX
confused ADJ
. PUNCT
  SPACE
You PRON
are AUX
talking VERB
about ADP
KIRILIAN PROPN
photography NOUN
. PUNCT
Bill PROPN
is AUX
talking VERB
KRILLEAN PROPN
photography.-- PROPN
   SPACE
| PROPN
   SPACE
tad@ssc.com X
  SPACE
( PUNCT
if SCONJ
it PRON
bounces VERB
, PUNCT
use VERB
3288544@mcimail.com NOUN
) PUNCT
   SPACE
| PROPN
  SPACE
| CCONJ
   SPACE
Tad PROPN
Cook PROPN
     SPACE
| NOUN
  SPACE
Packet PROPN
Amateur PROPN
Radio PROPN
: PUNCT
  SPACE
| ADP
  SPACE
Home PROPN
Phone PROPN
: PUNCT
   SPACE
| PROPN
  SPACE
| PROPN
   SPACE
Seattle PROPN
, PUNCT
WA PROPN
  SPACE
| ADP
  SPACE
KT7H PROPN
@ ADP
N7DUO.WA.USA.NA PROPN
| ADJ
  SPACE
206 NUM
- PUNCT
527 NUM
- PUNCT
4089 NUM
  SPACE
|Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59427From NUM
: PUNCT
ac940@Freenet.carleton.ca PROPN
( PUNCT
Lau PROPN
Hon PROPN
- PUNCT
Wah)Subject NOUN
: PUNCT
Copper PROPN
Bracelet PROPN
( PUNCT
Sabona PROPN
by ADP
Dr. PROPN
John PROPN
Sorenson)I NOUN
have AUX
seen VERB
Copper PROPN
Bracelet PROPN
by ADP
the DET
name NOUN
of ADP
Sabona PROPN
created VERB
by ADP
Dr. PROPN
JohnSorenson PROPN
. PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
literature NOUN
on ADP
the DET
effectiveness NOUN
of ADP
CopperBracelet PROPN
in ADP
dealing VERB
with ADP
Arthritis PROPN
. PUNCT
I PRON
know VERB
in ADP
one NUM
case NOUN
a DET
70-year NUM
old ADJ
person NOUN
developed VERB
bruise NOUN
at ADP
the DET
base NOUN
of ADP
herleft ADJ
thumb NOUN
after ADP
wearing VERB
the DET
copper NOUN
bracelet NOUN
on ADP
her PRON
left ADJ
wrist NOUN
for ADP
severalmonths NOUN
. PUNCT
  SPACE
She PRON
was AUX
told VERB
the DET
bruise NOUN
is AUX
" PUNCT
normal ADJ
" PUNCT
and CCONJ
would AUX
disappear VERB
. PUNCT
Is AUX
the DET
bruise NOUN
reason NOUN
to PART
be AUX
concerned?Should AUX
the DET
person NOUN
discontinued VERB
wearing VERB
the DET
copper NOUN
bracelet?Could NOUN
anyone PRON
kindly ADV
point VERB
me PRON
to PART
literature VERB
on ADP
copper NOUN
bracelet?What PROPN
are AUX
the DET
other ADJ
information NOUN
on ADP
copper NOUN
bracelet?Your PROPN
response NOUN
would AUX
be AUX
very ADV
much ADV
appreciated VERB
. PUNCT
Thank VERB
you PRON
. PUNCT
Lau PROPN
Hon PROPN
- PUNCT
Wah-- PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59428From NUM
: PUNCT
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder)Subject PROPN
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesDoes CCONJ
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someonewas NOUN
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
wouldbe VERB
liable ADJ
to PART
happen VERB
to ADP
the DET
person?(Just NOUN
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
myhouse NOUN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case'.)RebeccaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59429From NUM
: PUNCT
help4@dcs2.dc PROPN
( PUNCT
len VERB
ramirez)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographyvery PROPN
good ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59430From NUM
: PUNCT
ohandley@betsy.gsfc.nasa.govSubject NUM
: PUNCT
Schatzki PROPN
Ring/ PROPN
PVC'sCan NUM
anybody PRON
out ADV
there ADV
provide VERB
me PRON
with ADP
any DET
advice NOUN
concerning VERB
thefollowing VERB
two NUM
health NOUN
problems NOUN
: PUNCT
First ADV
, PUNCT
I PRON
was AUX
recently ADV
diagnosed VERB
( PUNCT
using VERB
a DET
UGI PROPN
series NOUN
) PUNCT
as SCONJ
having VERB
aSchatzki PROPN
ring NOUN
and CCONJ
small ADJ
sliding VERB
hiatal ADJ
hernia NOUN
. PUNCT
As SCONJ
I PRON
understand VERB
it PRON
, PUNCT
the DET
hernia PROPN
is AUX
a DET
relatively ADV
minor ADJ
problem NOUN
, PUNCT
though SCONJ
I PRON
do AUX
occasionallyhave ADP
some DET
nasty ADJ
heartburn NOUN
that PRON
is AUX
probably ADV
related ADJ
to ADP
it PRON
. PUNCT
The DET
Schatzkiring NOUN
, PUNCT
on ADP
the DET
other ADJ
hand NOUN
, PUNCT
is AUX
causing VERB
swallowing VERB
difficulty NOUN
. PUNCT
In ADP
particular ADJ
, PUNCT
if SCONJ
I PRON
'm AUX
not PART
careful ADJ
about ADP
eating VERB
slowly ADV
, PUNCT
and CCONJ
thoroughly ADV
chewing VERB
food NOUN
, PUNCT
food NOUN
occasionally ADV
gets VERB
" PUNCT
stuck ADJ
" PUNCT
before ADP
reaching VERB
my PRON
stomach NOUN
. PUNCT
This DET
resultsin NOUN
a DET
period NOUN
of ADP
painful ADJ
spasms NOUN
as SCONJ
the DET
food NOUN
attempts VERB
to PART
pass VERB
the DET
obstruction NOUN
. PUNCT
Fortunately ADV
, PUNCT
the DET
food NOUN
has AUX
always ADV
managed VERB
to PART
pass VERB
, PUNCT
but CCONJ
this DET
is AUX
annoying ADJ
, PUNCT
and CCONJ
causes VERB
frequent ADJ
discomfort NOUN
. PUNCT
My PRON
doctor NOUN
wants VERB
to PART
" PUNCT
dilate VERB
" PUNCT
the DET
ring NOUN
using VERB
thefollowing VERB
procedure NOUN
: PUNCT
use VERB
an DET
endoscope NOUN
to PART
examine VERB
the DET
esophagus NOUN
and CCONJ
stomachfor VERB
any DET
inflammation NOUN
, PUNCT
then ADV
cut VERB
through ADP
the DET
ring NOUN
and CCONJ
dilate VERB
it PRON
by ADP
passingsome PROPN
kind NOUN
of ADP
balloon NOUN
or CCONJ
something PRON
thru ADP
the DET
esophagous ADJ
. PUNCT
I PRON
would AUX
like VERB
to ADP
knowif NOUN
anyone PRON
out ADV
there ADV
has AUX
had VERB
this DET
( PUNCT
or CCONJ
a DET
similar ADJ
) PUNCT
procedure NOUN
done VERB
- PUNCT
if NOUN
so ADV
, PUNCT
was AUX
it PRON
painful ADJ
, PUNCT
successful ADJ
, PUNCT
etc X
. PUNCT
Also ADV
, PUNCT
can AUX
anyone PRON
  SPACE
comment VERB
onsafety NOUN
, PUNCT
advisability NOUN
, PUNCT
and CCONJ
success NOUN
rate NOUN
of ADP
this DET
procedure NOUN
? PUNCT
Has AUX
it PRON
becomea VERB
common ADJ
procedure NOUN
? PUNCT
I PRON
am AUX
kind ADV
of ADV
leery ADJ
of ADP
having VERB
such DET
an DET
invasive ADJ
- PUNCT
soundingprocedure NOUN
performed VERB
for ADP
a DET
( PUNCT
currently ADV
) PUNCT
non ADJ
- ADJ
threatening ADJ
condition NOUN
such ADJ
as SCONJ
this DET
, PUNCT
especially ADV
considering VERB
the DET
possible ADJ
side NOUN
effects NOUN
( PUNCT
bleeding NOUN
, PUNCT
perforation NOUN
, PUNCT
reaction NOUN
to ADP
anesthesia).The DET
second ADJ
issue NOUN
: PUNCT
for ADP
the DET
past ADJ
3 NUM
- SYM
4 NUM
years NOUN
I PRON
have AUX
had VERB
a DET
large ADJ
numberof NOUN
" PUNCT
extra ADJ
" PUNCT
heartbeats NOUN
. PUNCT
In ADP
particular ADJ
, PUNCT
during ADP
the DET
past ADJ
month NOUN
or CCONJ
so ADV
therehas ADJ
been AUX
a DET
dramatic ADJ
increase NOUN
- PUNCT
a DET
Holter ADJ
monitor NOUN
recently ADV
showed VERB
50 NUM
PVC PROPN
's PART
in ADP
24hrs NUM
, PUNCT
along ADP
with ADP
a DET
few ADJ
PAC PROPN
's PART
. PUNCT
( PUNCT
Many ADJ
days NOUN
, PUNCT
there PRON
are AUX
far ADV
more ADJ
than SCONJ
this DET
, PUNCT
however ADV
- PUNCT
five NUM
to PART
ten NUM
per ADP
hour NOUN
) PUNCT
. PUNCT
All DET
of ADP
them PRON
were AUX
isolated VERB
, PUNCT
and CCONJ
the DET
cardiologistindicated ADJ
that SCONJ
such DET
a DET
number NOUN
was AUX
" PUNCT
normal ADJ
" PUNCT
. PUNCT
It PRON
certainly ADV
doesn'tfeel VERB
normal ADJ
. PUNCT
In ADP
the DET
past NOUN
there PRON
have AUX
also ADV
been AUX
a DET
couple NOUN
of ADP
episodes NOUN
ofextended VERB
" PUNCT
runs NOUN
" PUNCT
of ADP
these DET
beats NOUN
, PUNCT
one NUM
of ADP
which PRON
lasted VERB
long ADV
enough ADV
to PART
causesevere VERB
light ADJ
- PUNCT
headedness NOUN
. PUNCT
I PRON
am AUX
relatively ADV
young ADJ
( PUNCT
30-ish NUM
) PUNCT
, PUNCT
thin ADJ
and CCONJ
in ADP
goodhealth PROPN
( PUNCT
recent ADJ
bloodtests NOUN
were AUX
all DET
normal ADJ
) PUNCT
, PUNCT
and CCONJ
do AUX
not PART
smoke VERB
, PUNCT
use VERB
drugs NOUN
orcaffeine ADJ
, PUNCT
etc X
. PUNCT
I PRON
'm AUX
willing ADJ
to PART
accept VERB
the DET
extra ADJ
beats NOUN
as SCONJ
" PUNCT
normal ADJ
" PUNCT
, PUNCT
but CCONJ
don'twant VERB
to PART
ignore VERB
them PRON
if SCONJ
they PRON
might AUX
be AUX
some DET
kind NOUN
of ADP
warning NOUN
symptom NOUN
. PUNCT
The DET
numberof NOUN
PVC PROPN
's PART
seems VERB
to PART
increase VERB
throughout ADP
the DET
day NOUN
, PUNCT
and CCONJ
with ADP
exercise NOUN
( PUNCT
or CCONJ
somethingas NOUN
simple ADJ
as SCONJ
climbing VERB
some DET
stairs NOUN
) PUNCT
. PUNCT
Also ADV
, PUNCT
if SCONJ
I PRON
get VERB
up ADP
after ADP
sitting VERB
or CCONJ
lyingdown VERB
for ADP
a DET
while NOUN
, PUNCT
I PRON
tend VERB
to PART
get AUX
a DET
couple NOUN
of ADP
extra ADJ
beats NOUN
. PUNCT
Could AUX
they PRON
possiblybe ADV
related ADJ
to ADP
the DET
esophagous ADJ
problems NOUN
? PUNCT
Both DET
seemed VERB
to PART
develop VERB
at ADP
about ADP
thesame NOUN
time NOUN
. PUNCT
Thanks NOUN
for ADP
any DET
help NOUN
/ SYM
advice!==============================================================================================================================================================Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59431From NUM
: PUNCT
rmccown@world.std.com PROPN
( PUNCT
Bob PROPN
McCown)Subject PROPN
: PUNCT
Miscelaneous ADJ
soon ADV
- PUNCT
to PART
- PUNCT
have AUX
- PUNCT
baby NOUN
questionsWe're NOUN
about ADJ
to PART
have AUX
our PRON
first ADJ
baby NOUN
, PUNCT
and CCONJ
have AUX
a DET
few ADJ
questions NOUN
that PRON
wedont VERB
seem VERB
to PART
be AUX
able ADJ
to PART
get AUX
answered VERB
to ADP
our PRON
satisfaction NOUN
. PUNCT
Reguarding VERB
having VERB
a DET
baby NOUN
boy NOUN
circumsized VERB
, PUNCT
what PRON
are AUX
the DET
medical ADJ
prosand NOUN
cons NOUN
? PUNCT
  SPACE
All DET
we PRON
've AUX
heard VERB
is AUX
' PUNCT
its PRON
up ADP
to ADP
the DET
parents' PROPN
. PUNCT
How ADV
about ADP
the DET
pregnant ADJ
woman NOUN
sitting VERB
in ADP
a DET
tub NOUN
of ADP
water NOUN
? PUNCT
  SPACE
We PRON
've AUX
heard VERB
stories NOUN
of ADP
infection NOUN
, PUNCT
etc X
. PUNCT
  SPACE
How ADV
about ADP
after ADP
the DET
water NOUN
has AUX
broken?rmccown@world.std.comOld PROPN
MacDonald PROPN
had AUX
an DET
agricultural ADJ
real ADJ
estate NOUN
tax NOUN
abatement NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59432From NUM
: PUNCT
cfaks@ux1.cts.eiu.edu NOUN
( PUNCT
Alice PROPN
Sanders)Subject NUM
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesA PROPN
student NOUN
told VERB
me PRON
today NOUN
that SCONJ
she PRON
has AUX
been AUX
diagnosed VERB
with ADP
kidney NOUN
stones NOUN
, PUNCT
acyst VERB
on ADP
one NUM
kidney NOUN
, PUNCT
and CCONJ
a DET
kidney NOUN
infection NOUN
. PUNCT
  SPACE
She PRON
was AUX
upset ADJ
because SCONJ
hercondition NOUN
had AUX
been AUX
misdiagnosed VERB
since SCONJ
last ADJ
fall NOUN
, PUNCT
and CCONJ
she PRON
has AUX
been AUX
ill ADJ
allthis DET
time NOUN
. PUNCT
  SPACE
During ADP
her PRON
most ADV
recent ADJ
doctor NOUN
's PART
appointment NOUN
at ADP
her PRON
parents'HMO PROPN
clinic NOUN
, PUNCT
she PRON
said VERB
that SCONJ
about ADP
FORTY PROPN
! PUNCT
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
of ADP
her PRON
kidney NOUN
. PUNCT
When ADV
she PRON
asked VERB
why ADV
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
were AUX
being AUX
made VERB
, PUNCT
she PRON
was AUX
told VERB
by ADP
atechnician PROPN
that SCONJ
they PRON
need VERB
to PART
see VERB
the DET
area NOUN
from ADP
different ADJ
views NOUN
, PUNCT
but CCONJ
shesays NOUN
that SCONJ
about ADV
five NUM
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
from ADP
EACH PROPN
angle NOUN
. PUNCT
  SPACE
She PRON
could AUX
n't PART
helpfeeling VERB
that SCONJ
something PRON
must AUX
be AUX
wrong ADJ
with ADP
the DET
procedure NOUN
or CCONJ
something PRON
. PUNCT
  SPACE
Sheis PROPN
a DET
pre ADJ
- ADJ
med ADJ
student NOUN
and CCONJ
feels VERB
she PRON
could AUX
have AUX
understood VERB
what PRON
washappening VERB
if SCONJ
someone PRON
would AUX
have AUX
explained VERB
. PUNCT
  SPACE
When ADV
nobody PRON
would AUX
, PUNCT
she PRON
gotworried VERB
. PUNCT
	 SPACE
Also ADV
, PUNCT
she PRON
is AUX
told VERB
that SCONJ
thre PROPN
are AUX
300 NUM
! PUNCT
surgery NOUN
patients NOUN
ahead ADV
of ADP
herand NOUN
that SCONJ
they PRON
can AUX
not PART
do AUX
surgery NOUN
until ADP
August PROPN
or CCONJ
so ADV
. PUNCT
  SPACE
It PRON
is AUX
now ADV
April PROPN
... PUNCT
She PRON
is AUX
supposed VERB
to PART
rest VERB
a DET
lot NOUN
and CCONJ
drink NOUN
fluids NOUN
. PUNCT
  SPACE
But CCONJ
she PRON
has AUX
to PART
go VERB
toclasses NOUN
. PUNCT
  SPACE
She PRON
wonders VERB
why ADV
they PRON
have AUX
given VERB
her PRON
no DET
medicine NOUN
. PUNCT
  SPACE
She PRON
plans VERB
tocall NOUN
back ADV
her PRON
doctor NOUN
's PART
office NOUN
/ SYM
clinic NOUN
and CCONJ
try VERB
to PART
get AUX
answers NOUN
to ADP
thesequestions NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
told VERB
her PRON
I PRON
would AUX
also ADV
write VERB
in ADP
to ADP
sci.med VERB
and CCONJ
see VERB
what PRON
Icould AUX
find VERB
out ADP
about ADP
why ADV
there PRON
were AUX
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
and CCONJ
whether SCONJ
it PRON
seemso.k PROPN
. PUNCT
to PART
wait VERB
in ADP
line NOUN
3 NUM
or CCONJ
more ADJ
months NOUN
for ADP
surgery NOUN
for ADP
something PRON
like SCONJ
thisor VERB
whether SCONJ
she PRON
should AUX
be AUX
looking VERB
elsewhere ADV
for ADP
her PRON
care NOUN
. PUNCT
  SPACE
She PRON
does AUX
plan VERB
toget VERB
a DET
second ADJ
opinion NOUN
, PUNCT
too ADV
. PUNCT
	 SPACE
I PRON
will AUX
pass VERB
info NOUN
on ADP
to ADP
her PRON
. PUNCT
  SPACE
It PRON
never ADV
hurts VERB
to PART
get AUX
informationfrom ADP
more ADJ
than SCONJ
one NUM
source NOUN
. PUNCT
  SPACE
You PRON
can AUX
e NOUN
- VERB
mail VERB
me PRON
or CCONJ
post VERB
. PUNCT
Thanks NOUN
. PUNCT
AliceNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59433From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
matthews@oswego PROPN
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews PROPN
) PUNCT
writes::All VERB
right ADV
, PUNCT
listen VERB
up ADP
.... PUNCT
  SPACE
What PRON
are AUX
the DET
possibilities NOUN
of ADP
transmission NOUN
through ADP
: PUNCT
swimming VERB
pool NOUN
water NOUN
? PUNCT
  SPACE
Especially ADV
if SCONJ
the DET
chlorination NOUN
is AUX
n't PART
up ADP
to PART
par?::I've VERB
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
: PUNCT
else ADV
is AUX
going VERB
on?No PROPN
dice NOUN
. PUNCT
  SPACE
As ADV
soon ADV
as SCONJ
the DET
sperm NOUN
cells NOUN
hit VERB
the DET
water NOUN
they PRON
would AUX
virtuallyexplode VERB
. PUNCT
  SPACE
The DET
inside NOUN
of ADP
the DET
cell NOUN
is AUX
hypertonic ADJ
, PUNCT
and CCONJ
since SCONJ
the DET
membrane NOUN
issemipermeable ADJ
water NOUN
would AUX
rush VERB
in ADV
and CCONJ
cause VERB
the DET
cell NOUN
to ADP
burst.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59435From NUM
: PUNCT
" PUNCT
nigel PROPN
allen PROPN
" PUNCT
< X
nigel.allen@canrem.com>Subject PROPN
: PUNCT
New PROPN
Method PROPN
For ADP
Diagnosing VERB
Alzheimer PROPN
's PART
Disease PROPN
DiscoveredHere PROPN
is AUX
a DET
press NOUN
release NOUN
from ADP
Huntington PROPN
Medical PROPN
Research PROPN
Institutes PROPN
. PUNCT
New PROPN
Method PROPN
For ADP
Diagnosing VERB
Alzheimer PROPN
's PART
Disease PROPN
Discovered PROPN
atHuntington PROPN
Medical PROPN
Research PROPN
Institutes PROPN
: PUNCT
Results NOUN
to PART
Be AUX
Reported VERB
To ADP
: PUNCT
National PROPN
Desk PROPN
, PUNCT
Health PROPN
Writer PROPN
Contact PROPN
: PUNCT
John PROPN
Lockhart PROPN
or CCONJ
Belinda PROPN
Gerber PROPN
, PUNCT
310 NUM
- PUNCT
444 NUM
- PUNCT
7000 NUM
, PUNCT
or CCONJ
          SPACE
800 NUM
- PUNCT
522 NUM
- PUNCT
8877 NUM
, PUNCT
for ADP
the DET
Huntington PROPN
Medical PROPN
Research PROPN
          SPACE
Institutes PROPN
. PUNCT
   SPACE
LOS PROPN
ANGELES PROPN
, PUNCT
April PROPN
28 NUM
  SPACE
-- PUNCT
A DET
new ADJ
method NOUN
for ADP
diagnosing VERB
and CCONJ
measuring VERB
chemical NOUN
imbalances NOUN
in ADP
the DET
brainwhich PROPN
lead NOUN
to ADP
Alzheimer PROPN
's PART
disease NOUN
and CCONJ
other ADJ
dementias NOUN
has AUX
beendiscovered VERB
by ADP
researchers NOUN
at ADP
the DET
Huntington PROPN
Medical PROPN
ResearchInstitutes PROPN
( PUNCT
HMRI PROPN
) PUNCT
in ADP
Pasadena PROPN
, PUNCT
Calif. PROPN
  SPACE
Results NOUN
of ADP
their PRON
researchwill NOUN
be AUX
reported VERB
in ADP
the DET
May PROPN
issue NOUN
of ADP
the DET
scientific ADJ
journal NOUN
, PUNCT
Radiology PROPN
. PUNCT
   SPACE
Using VERB
an DET
advanced ADJ
form NOUN
of ADP
magnetic ADJ
resonance NOUN
imaging NOUN
( PUNCT
MRI)called ADJ
magnetic ADJ
resonance NOUN
spectroscopy NOUN
( PUNCT
MRS PROPN
) PUNCT
, PUNCT
a DET
research NOUN
team NOUN
ledby NOUN
Brian PROPN
D. PROPN
Ross PROPN
, PUNCT
M.D. PROPN
, PUNCT
D. PROPN
Phil PROPN
. PROPN
, PUNCT
conducted VERB
a DET
study NOUN
on ADP
21 NUM
elderlypatients NOUN
who PRON
were AUX
believed VERB
to PART
be AUX
suffering VERB
from ADP
some DET
form NOUN
ofdementia NOUN
. PUNCT
The DET
exams NOUN
used VERB
standard ADJ
MRI PROPN
equipment NOUN
fitted VERB
with ADP
specialsoftware NOUN
developed VERB
at ADP
HMRI PROPN
called VERB
Clinical PROPN
Proton PROPN
MRS PROPN
. PUNCT
  SPACE
ClinicalProton PROPN
MRS PROPN
is AUX
easily ADV
applied VERB
, PUNCT
giving VERB
doctors NOUN
confirmatory NOUN
diagnosesin NOUN
less ADJ
than SCONJ
30 NUM
minutes NOUN
. PUNCT
  SPACE
An DET
automated VERB
version NOUN
of ADP
Clinical PROPN
ProtonMRS PROPN
called VERB
Proton PROPN
Brain PROPN
Examination PROPN
( PUNCT
PROBE PROPN
) PUNCT
reduces VERB
the DET
examinationtime NOUN
yet ADV
further ADV
, PUNCT
providing VERB
confirmatory NOUN
diagnoses NOUN
in ADP
less ADJ
than SCONJ
10minutes NUM
. PUNCT
  SPACE
By ADP
comparison NOUN
, PUNCT
the DET
current ADJ
" PUNCT
standard NOUN
of ADP
care NOUN
" PUNCT
in ADP
testingfor PROPN
Alzheimer PROPN
's PART
disease NOUN
calls VERB
for ADP
lengthy ADJ
memory NOUN
function NOUN
andneuropsychological ADJ
tests NOUN
, PUNCT
which PRON
can AUX
be AUX
very ADV
upsetting ADJ
to ADP
thepatient ADJ
, PUNCT
are AUX
not PART
definitive ADJ
and CCONJ
can AUX
only ADV
be AUX
confirmed VERB
by ADP
autopsy ADJ
. PUNCT
   SPACE
In ADP
addition NOUN
to ADP
Alzheimer PROPN
's PART
disease NOUN
, PUNCT
the DET
new ADJ
Clinical PROPN
Proton PROPN
MRSexam PROPN
may AUX
have AUX
applications NOUN
in ADP
diagnosing VERB
other ADJ
dementias NOUN
, PUNCT
includingAIDS NUM
- PUNCT
related VERB
dementia NOUN
, PUNCT
Parkinson PROPN
's PART
disease NOUN
and CCONJ
Huntington'sdisease PROPN
. PUNCT
   SPACE
" PUNCT
We PRON
've AUX
developed VERB
a DET
simple ADJ
test NOUN
which PRON
can AUX
be AUX
administered VERB
quicklyand PROPN
relatively ADV
inexpensively ADV
using VERB
existing VERB
MRI PROPN
equipment NOUN
fittedwith NOUN
either CCONJ
the DET
MRS PROPN
or CCONJ
PROBE PROPN
software NOUN
, PUNCT
" PUNCT
said VERB
Dr. PROPN
Ross PROPN
, PUNCT
adding,"this PROPN
will AUX
help VERB
physicians NOUN
to PART
diagnose VERB
Alzheimer PROPN
's PART
earlier ADJ
andintervene NOUN
with ADP
therapeutics NOUN
before ADP
the DET
progression NOUN
of ADP
the DET
diseasecauses NOUN
further ADJ
damage NOUN
to ADP
the DET
delicate ADJ
inner ADJ
workings NOUN
of ADP
the DET
brain NOUN
. PUNCT
" PUNCT
   SPACE
Dr. PROPN
Ross PROPN
and CCONJ
his PRON
HMRI PROPN
team NOUN
measured VERB
a DET
family NOUN
of ADP
chemicals NOUN
in ADP
thebrain NOUN
known VERB
as SCONJ
inositols NOUN
, PUNCT
and CCONJ
myo NOUN
- PUNCT
inositol PROPN
( PUNCT
MI PROPN
) PUNCT
acted VERB
as SCONJ
a DET
markerin NOUN
the DET
study NOUN
. PUNCT
  SPACE
In ADP
comparison NOUN
to ADP
healthy ADJ
patients NOUN
, PUNCT
those DET
diagnosedwith NOUN
Alzheimer PROPN
's PART
showed VERB
a DET
22 NUM
percent NOUN
increase NOUN
in ADP
MI PROPN
, PUNCT
while SCONJ
theirlevel NOUN
of ADP
another DET
chemical NOUN
called VERB
N NOUN
- PUNCT
acetylaspartate ADJ
( PUNCT
NAA PROPN
) PUNCT
wassignificantly ADV
lower ADV
, PUNCT
indicating VERB
a DET
loss NOUN
of ADP
brain NOUN
- PUNCT
stimulating VERB
neuronsbelieved VERB
to PART
be AUX
associated VERB
with ADP
the DET
progression NOUN
of ADP
the DET
disease NOUN
. PUNCT
   SPACE
Current ADJ
drug NOUN
therapy NOUN
for ADP
Alzheimer PROPN
's PART
disease NOUN
is AUX
widelyconsidered VERB
to PART
be AUX
inadequate ADJ
. PUNCT
  SPACE
This DET
is AUX
attributable ADJ
, PUNCT
Dr. PROPN
Rossbelieves PROPN
, PUNCT
to ADP
the DET
theory NOUN
that SCONJ
Alzheimer PROPN
's PART
is AUX
caused VERB
by ADP
aninterruption NOUN
in ADP
the DET
transmission NOUN
of ADP
the DET
chemical PROPN
acetylcholine PROPN
tothe PROPN
nerve NOUN
cells NOUN
. PUNCT
This DET
belief NOUN
has AUX
been AUX
adhered VERB
to ADP
over ADP
the DET
last ADJ
15years NUM
, PUNCT
and CCONJ
consequently ADV
, PUNCT
most ADJ
drugs NOUN
to PART
treat VERB
Alzheimer PROPN
's PART
were AUX
basedon ADJ
the DET
changing VERB
receptors NOUN
for ADP
acetylcholine NOUN
. PUNCT
   SPACE
" PUNCT
Physicians PROPN
have AUX
a DET
real ADJ
need NOUN
for ADP
a DET
test NOUN
to ADP
differentiateAlzheimer NOUN
's PART
from ADP
other ADJ
dementias NOUN
, PUNCT
to PART
provide VERB
the DET
patient NOUN
and CCONJ
his PRON
orher NOUN
family NOUN
with ADP
a DET
firm ADJ
diagnosis NOUN
and CCONJ
to PART
monitor VERB
future ADJ
treatmentprotocols NOUN
for ADP
the DET
treatment NOUN
of ADP
this DET
disease NOUN
. PUNCT
  SPACE
For ADP
this DET
reason NOUN
, PUNCT
weconsider VERB
this DET
test NOUN
a DET
major ADJ
advancement NOUN
in ADP
medicine NOUN
, PUNCT
" PUNCT
said VERB
BruceMiller PROPN
, PUNCT
M.D. PROPN
, PUNCT
a DET
noted VERB
neurologist NOUN
at ADP
Harbor PROPN
- PUNCT
UCLA PROPN
, PUNCT
MRS PROPN
researcherand VERB
a DET
co NOUN
- NOUN
author NOUN
of ADP
the DET
study NOUN
. PUNCT
   SPACE
Other ADJ
members NOUN
of ADP
the DET
HMRI PROPN
research NOUN
team NOUN
included VERB
Rex PROPN
A. PROPN
Moats PROPN
, PUNCT
Ph PROPN
. PROPN
D. PROPN
, PUNCT
Truda PROPN
Shonk PROPN
, PUNCT
B.S. PROPN
, PUNCT
Thomas PROPN
Ernst PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
and CCONJ
Suzanne PROPN
Woolley PROPN
, PUNCT
R.N. PROPN
  SPACE
The DET
PROBE PROPN
software NOUN
can AUX
be AUX
fitted VERB
on ADP
the DET
approximately ADV
1,200General PROPN
Electric PROPN
MRI PROPN
units NOUN
currently ADV
in ADP
use NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
and CCONJ
will AUX
be AUX
configured VERB
for ADP
other ADJ
manufacturers NOUN
' PART
MRI PROPN
units NOUN
soon ADV
. PUNCT
   SPACE
For ADP
interviews NOUN
with ADP
Dr. PROPN
Ross PROPN
, PUNCT
advance NOUN
copies NOUN
of ADP
the DET
RadiologyMay PROPN
issue NOUN
, PUNCT
and CCONJ
other ADJ
information NOUN
, PUNCT
please INTJ
contact VERB
John PROPN
Lockhart PROPN
orBelinda PROPN
Gerber PROPN
for ADP
HMRI PROPN
at ADP
310 NUM
- SYM
444 NUM
- PUNCT
7000 NUM
or CCONJ
800 NUM
- PUNCT
522 NUM
- PUNCT
8877 NUM
. PUNCT
   SPACE
Q PROPN
& CCONJ
A PROPN
on ADP
Alzheimer PROPN
's PART
Disease PROPN
: PUNCT
   SPACE
What PRON
is AUX
Alzheimer PROPN
's PART
disease NOUN
and CCONJ
how ADV
is AUX
it PRON
caused VERB
? PUNCT
   SPACE
Alzheimer PROPN
's PART
disease NOUN
( PUNCT
AD NOUN
) PUNCT
is AUX
an DET
incurable ADJ
degenerative ADJ
disease NOUN
ofthe PROPN
brain NOUN
first ADV
described VERB
in ADP
1906 NUM
by ADP
the DET
German ADJ
neuropathologistAlois NOUN
Alzheimer PROPN
. PUNCT
  SPACE
As SCONJ
the DET
disease NOUN
progresses VERB
, PUNCT
it PRON
leads VERB
to PART
loss VERB
ofmemory NOUN
and CCONJ
mental ADJ
functioning NOUN
, PUNCT
followed VERB
by ADP
changes NOUN
in ADP
personality NOUN
, PUNCT
loss NOUN
of ADP
control NOUN
of ADP
bodily ADJ
functions NOUN
, PUNCT
and CCONJ
, PUNCT
eventually ADV
, PUNCT
death NOUN
. PUNCT
   SPACE
How ADV
many ADJ
people NOUN
does AUX
it PRON
affect VERB
? PUNCT
   SPACE
Alzheimer PROPN
's PART
disease NOUN
affects VERB
an DET
estimated VERB
4 NUM
million NUM
adults NOUN
inthe NOUN
United PROPN
States PROPN
and CCONJ
is AUX
the DET
fourth ADJ
leading ADJ
cause NOUN
of ADP
death NOUN
, PUNCT
takingapproximately ADV
100,000 NUM
lives NOUN
each DET
year NOUN
. PUNCT
  SPACE
While SCONJ
Alzheimer'sdebilitates VERB
its PRON
victims NOUN
, PUNCT
it PRON
is AUX
equally ADV
devastating ADJ
, PUNCT
bothemotionally ADV
and CCONJ
financially ADV
, PUNCT
for ADP
patients NOUN
' PART
families NOUN
. PUNCT
  SPACE
AD PROPN
is AUX
themost ADJ
common ADJ
cause NOUN
of ADP
dementia NOUN
in ADP
adults NOUN
. PUNCT
  SPACE
Symptoms NOUN
worsen ADJ
everyyear NOUN
, PUNCT
and CCONJ
death NOUN
usually ADV
occurs VERB
within ADP
10 NUM
years NOUN
of ADP
initial ADJ
onset NOUN
. PUNCT
   SPACE
What PRON
are AUX
its PRON
signs NOUN
and CCONJ
symptoms NOUN
? PUNCT
   SPACE
Although SCONJ
the DET
cause NOUN
of ADP
AD NOUN
is AUX
not PART
known VERB
, PUNCT
two NUM
risk NOUN
factors NOUN
havebeen PROPN
identified VERB
: PUNCT
advanced ADJ
age NOUN
and CCONJ
genetic ADJ
predisposition NOUN
. PUNCT
  SPACE
The DET
riskof NOUN
developing VERB
AD NOUN
is AUX
less ADJ
than SCONJ
one NUM
percent NOUN
before ADP
the DET
age NOUN
of ADP
50yars NUM
old ADJ
, PUNCT
but CCONJ
increases VERB
steeply ADV
in ADP
each DET
successive ADJ
decade NOUN
of ADP
lifeto NOUN
reach VERB
30 NUM
percent NOUN
by ADP
the DET
age NOUN
of ADP
90 NUM
. PUNCT
  SPACE
In ADP
patients NOUN
with ADP
familialAD PROPN
, PUNCT
immediate ADJ
family NOUN
relatives NOUN
have AUX
a DET
50 NUM
percent NOUN
chance NOUN
ofdeveloping VERB
AD NOUN
. PUNCT
  SPACE
One NUM
of ADP
its PRON
first ADJ
symptoms NOUN
is AUX
severe ADJ
" PUNCT
forgetfulness"caused VERB
by ADP
short ADJ
- PUNCT
term NOUN
memory NOUN
loss NOUN
. PUNCT
  SPACE
Dr. PROPN
Herman PROPN
Weinreb PROPN
of ADP
the DET
Schoolof PROPN
Medicine PROPN
at ADP
New PROPN
York PROPN
University PROPN
says VERB
" PUNCT
whether SCONJ
forgetfulness NOUN
isa PROPN
serious ADJ
symptom NOUN
or CCONJ
not PART
is AUX
largely ADV
a DET
matter NOUN
of ADP
degree NOUN
" PUNCT
andsuggests VERB
the DET
following VERB
criteria NOUN
: PUNCT
   SPACE
-- PUNCT
Forgetting VERB
the DET
name NOUN
of ADP
someone PRON
you PRON
see VERB
infrequently ADV
is AUX
      SPACE
normal ADJ
. PUNCT
   SPACE
-- PUNCT
Forgetting VERB
the DET
name NOUN
of ADP
a DET
loved VERB
one NOUN
is AUX
serious ADJ
. PUNCT
   SPACE
-- PUNCT
Forgetting VERB
where ADV
you PRON
left VERB
your PRON
keys NOUN
is AUX
normal ADJ
. PUNCT
   SPACE
-- PUNCT
Forgetting VERB
how ADV
to PART
get AUX
home NOUN
is AUX
serious ADJ
. PUNCT
   SPACE
Doctors NOUN
suggest VERB
that SCONJ
people NOUN
with ADP
severe ADJ
symptoms NOUN
should AUX
beevaluated VERB
in ADP
order NOUN
to PART
rule VERB
out ADP
Alzheimer PROPN
's PART
disease NOUN
and CCONJ
other ADJ
formsof ADJ
dementia NOUN
. PUNCT
-30 PROPN
- PUNCT
--Canada PUNCT
Remote PROPN
Systems PROPN
- PUNCT
Toronto PROPN
, PUNCT
Ontario416 PROPN
- PUNCT
629 NUM
- PUNCT
7000/629 NUM
- PUNCT
7044Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59436From NUM
: PUNCT
" PUNCT
nigel PROPN
allen PROPN
" PUNCT
< X
nigel.allen@canrem.com>Subject PROPN
: PUNCT
Results NOUN
of ADP
GUSTO PROPN
Heart PROPN
Attack PROPN
Study PROPN
to PART
be AUX
Released VERB
FridayHere PROPN
is AUX
a DET
press NOUN
release NOUN
from ADP
Medical PROPN
Science PROPN
Communications PROPN
. PUNCT
Results NOUN
of ADP
GUSTO PROPN
Heart PROPN
Attack PROPN
Study PROPN
to PART
be AUX
Released VERB
Friday PROPN
To PART
: PUNCT
Assignment PROPN
Desk PROPN
, PUNCT
Medical PROPN
Writer PROPN
Contact PROPN
: PUNCT
Jim PROPN
Augustine PROPN
of ADP
Medical PROPN
Science PROPN
Communication PROPN
, PUNCT
          SPACE
703 NUM
- PUNCT
644 NUM
- PUNCT
6824 NUM
, PUNCT
or CCONJ
Steve PROPN
Hull PROPN
or CCONJ
Tracy PROPN
Furey PROPN
, PUNCT
          SPACE
800 NUM
- SYM
477 NUM
- PUNCT
9626 NUM
or CCONJ
April PROPN
29 NUM
- SYM
30 NUM
, PUNCT
202 NUM
- PUNCT
393 NUM
- PUNCT
2000 NUM
or CCONJ
          SPACE
202 NUM
- PUNCT
662 NUM
- PUNCT
7592 NUM
( PUNCT
J.W. PROPN
Marriott PROPN
) PUNCT
   SPACE
News PROPN
Advisory PROPN
: PUNCT
   SPACE
Results NOUN
of ADP
the DET
largest ADJ
heart NOUN
attack NOUN
study NOUN
ever ADV
undertaken VERB
, PUNCT
the DET
Global PROPN
Utilization PROPN
of ADP
Streptokinase PROPN
and CCONJ
t PROPN
- PUNCT
PA PROPN
for ADP
OccludedCoronary PROPN
Arteries PROPN
trial NOUN
( PUNCT
GUSTO PROPN
) PUNCT
, PUNCT
will AUX
be AUX
presented VERB
Friday PROPN
, PUNCT
April30 PROPN
, PUNCT
at ADP
the DET
Clinical PROPN
Research PROPN
Meeting PROPN
. PUNCT
   SPACE
A DET
press NOUN
conference NOUN
will AUX
be AUX
held VERB
at ADP
12:30 NUM
p.m. NOUN
   SPACE
GUSTO PROPN
evaluates VERB
the DET
most ADV
aggressive ADJ
emergency NOUN
- PUNCT
room NOUN
treatmentstrategies NOUN
available ADJ
to PART
clear VERB
blocked VERB
heart NOUN
arteries NOUN
and CCONJ
restoreblood NOUN
flow NOUN
to ADP
the DET
heart NOUN
, PUNCT
a DET
process NOUN
called VERB
thrombolysis NOUN
. PUNCT
  SPACE
Thethrombolytic ADJ
strategies NOUN
compared VERB
in ADP
GUSTO PROPN
use VERB
powerful ADJ
drugs NOUN
to PART
breakup VERB
blood NOUN
clots NOUN
in ADP
heart NOUN
vessels NOUN
quickly ADV
and CCONJ
prevent VERB
clots NOUN
fromrecurring VERB
. PUNCT
  SPACE
These DET
strategies NOUN
have AUX
never ADV
been AUX
compared VERB
directly ADV
in ADP
alarge NOUN
- PUNCT
scale NOUN
clinical ADJ
trial NOUN
until ADP
GUSTO PROPN
. PUNCT
  SPACE
The DET
results NOUN
are AUX
expected VERB
tohave ADP
an DET
important ADJ
impact NOUN
on ADP
heart NOUN
attack NOUN
treatment NOUN
worldwide ADV
. PUNCT
   SPACE
The DET
press NOUN
conference NOUN
will AUX
be AUX
held VERB
at ADP
two NUM
locations NOUN
: PUNCT
live VERB
at ADP
theNational PROPN
Press PROPN
Club PROPN
, PUNCT
Main PROPN
Lounge PROPN
, PUNCT
13th ADJ
Floor NOUN
, PUNCT
529 NUM
14th ADJ
St. PROPN
, PUNCT
N.W.,Washington PROPN
D.C. PROPN
, PUNCT
and CCONJ
via ADP
satellite NOUN
at ADP
The DET
Hotel PROPN
Macklowe PROPN
, PUNCT
145 NUM
W. PROPN
44thStreet NUM
, PUNCT
4th ADJ
Floor PROPN
, PUNCT
New PROPN
York PROPN
City PROPN
, PUNCT
between ADP
Broadway PROPN
and CCONJ
6th ADJ
Avenue PROPN
. PUNCT
   SPACE
GUSTO PROPN
results NOUN
will AUX
be AUX
presented VERB
by ADP
Eric PROPN
Topol PROPN
M.D. PROPN
, PUNCT
GUSTO PROPN
StudyChairman PROPN
, PUNCT
professor NOUN
and CCONJ
chairman NOUN
of ADP
the DET
Department PROPN
of ADP
Cardiology PROPN
atThe PROPN
Cleveland PROPN
Clinic PROPN
Foundation PROPN
; PUNCT
Robert PROPN
Califf PROPN
, PUNCT
M.D. PROPN
, PUNCT
clinicaldirector NOUN
, PUNCT
GUSTO PROPN
Coordinating PROPN
Center PROPN
and CCONJ
Associate PROPN
Professor PROPN
ofMedicine PROPN
at ADP
Duke PROPN
University PROPN
Medical PROPN
Center PROPN
; PUNCT
and CCONJ
Allan PROPN
Ross PROPN
, PUNCT
M.D.,coordinator NOUN
of ADP
the DET
GUSTO PROPN
Angiographic PROPN
Substudy PROPN
and CCONJ
professor NOUN
anddirector NOUN
of ADP
the DET
Division PROPN
of ADP
Cardiology PROPN
at ADP
The DET
George PROPN
WashingtonUniversity PROPN
Medical PROPN
Center PROPN
. PUNCT
    SPACE
------ PUNCT
   SPACE
Editorial PROPN
Notes PROPN
/ SYM
Attention PROPN
television NOUN
: PUNCT
The DET
press NOUN
conference NOUN
may AUX
beviewed VERB
in ADP
its PRON
entirety NOUN
via ADP
satellite NOUN
starting VERB
at ADP
12:30 NUM
p.m. NOUN
( PUNCT
EDT)C PROPN
- PUNCT
band NOUN
Telestar PROPN
302 NUM
, PUNCT
Transponder PROPN
2V NOUN
( PUNCT
dual ADJ
audio PROPN
6.2 NUM
, PUNCT
6.8 NUM
) PUNCT
or CCONJ
KUSBS6,Transponder PROPN
8 NUM
. PUNCT
  SPACE
Following VERB
the DET
press NOUN
conference NOUN
, PUNCT
there PRON
will AUX
be AUX
a DET
newspackage NOUN
and CCONJ
b NOUN
- PUNCT
roll NOUN
feed NOUN
. PUNCT
  SPACE
Camera NOUN
- PUNCT
ready ADJ
illustrations NOUN
also ADV
will AUX
beavailable VERB
at ADP
the DET
press NOUN
conference NOUN
. PUNCT
   SPACE
Telephone PROPN
hook NOUN
up ADP
to ADP
the DET
press NOUN
conference NOUN
is AUX
planned VERB
. PUNCT
Availability NOUN
is AUX
limited ADJ
; PUNCT
please INTJ
call VERB
MCS PROPN
for ADP
more ADJ
information NOUN
. PUNCT
   SPACE
For ADP
reporters NOUN
who PRON
will AUX
be AUX
at ADP
the DET
Sheraton PROPN
Washington PROPN
attending VERB
theClinical PROPN
Research PROPN
Meeting PROPN
on ADP
Friday PROPN
morning NOUN
, PUNCT
minibus PROPN
transportationwill ADV
be AUX
provided VERB
to ADP
the DET
press NOUN
conference NOUN
. PUNCT
  SPACE
The DET
bus NOUN
will AUX
depart VERB
at12 PROPN
p.m. NOUN
; PUNCT
it PRON
also ADV
will AUX
be AUX
available ADJ
for ADP
return NOUN
to ADP
the DET
Sheratonafter PROPN
the DET
press NOUN
conference NOUN
. PUNCT
   SPACE
For ADP
more ADJ
information NOUN
, PUNCT
contact NOUN
Steve PROPN
Hull PROPN
or CCONJ
Tracy PROPN
Furey PROPN
of ADP
MCS PROPN
, PUNCT
for ADP
the DET
GUSTO PROPN
Study PROPN
Group PROPN
, PUNCT
at ADP
800 NUM
- SYM
477 NUM
- PUNCT
9626 NUM
; PUNCT
or CCONJ
at ADP
the DET
J.W. PROPN
MarriottApril PROPN
29 NUM
to ADP
April PROPN
30 NUM
at ADP
202 NUM
- SYM
393 NUM
- PUNCT
2000 NUM
or CCONJ
202 NUM
- PUNCT
662 NUM
- PUNCT
7592 NUM
. PUNCT
  SPACE
For ADP
moreinformation NOUN
about ADP
the DET
Clinical PROPN
Research PROPN
Meeting PROPN
, PUNCT
contact NOUN
JimAugustine PROPN
of ADP
Medical PROPN
Science PROPN
Communications PROPN
at ADP
703 NUM
- PUNCT
644 NUM
- PUNCT
6824 NUM
. PUNCT
-30 PROPN
- PUNCT
--Canada PUNCT
Remote PROPN
Systems PROPN
- PUNCT
Toronto PROPN
, PUNCT
Ontario416 PROPN
- PUNCT
629 NUM
- PUNCT
7000/629 NUM
- PUNCT
7044Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59437From NUM
: PUNCT
rrome@nyx.cs.du.edu PROPN
( PUNCT
Robert PROPN
Rome)Subject NUM
: PUNCT
Need VERB
Prozac VERB
infoI'm ADV
looking VERB
for ADP
information NOUN
regarding VERB
dosages NOUN
of ADP
prozac NOUN
used VERB
in ADP
minordepression NOUN
. PUNCT
  SPACE
Also ADV
any DET
other ADJ
information NOUN
regarding VERB
the DET
drug NOUN
is AUX
helpful ADJ
. PUNCT
Please INTJ
send VERB
responses NOUN
direct ADJ
. PUNCT
  SPACE
Thanks!rrome@nyx.cs.du.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59438From NUM
: PUNCT
andrewm@bio.uts.EDU.AU PROPN
( PUNCT
Andrew PROPN
Mears)Subject PROPN
: PUNCT
sheep NOUN
in ADP
cardiac ADJ
researchDear PROPN
news NOUN
readers NOUN
, PUNCT
Is AUX
there PRON
anyone PRON
using VERB
sheep NOUN
models NOUN
for ADP
cardiac ADJ
research NOUN
, PUNCT
specificallyconcerned VERB
with ADP
arrhythmias PROPN
, PUNCT
pacing NOUN
or CCONJ
defibrillation NOUN
? PUNCT
I PRON
would AUX
liketo VERB
hear VERB
from ADP
you PRON
. PUNCT
Many ADJ
thanks NOUN
, PUNCT
Andrew PROPN
Mears PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Please INTJ
email VERB
me PRON
< X
andrewm@iris.bio.uts.edu.au PROPN
> X
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
Andrew PROPN
Mears PROPN
                            SPACE
h NOUN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
9774245 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
CRC PROPN
for ADP
Cardiac PROPN
Technology PROPN
, PUNCT
UTS PROPN
         SPACE
w PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
3304091 NUM
	         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
Westbourne PROPN
St PROPN
, PUNCT
GORE PROPN
HILL PROPN
                SPACE
F PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- SYM
3304003 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
N.S.W PROPN
  SPACE
2065 NUM
               SPACE
email NOUN
: PUNCT
< X
andrewm@iris.bio.uts.edu.au PROPN
> X
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59439From NUM
: PUNCT
larpjb@selway.umt.edu PROPN
( PUNCT
Philip PROPN
J PROPN
Bowman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Strain VERB
Gage PROPN
Applications PROPN
in ADP
vivoIn PROPN
article NOUN
< X
1993Apr28.173600.21703@organpipe.uug.arizona.edu NUM
> X
ame_0123@bigdog.engr.arizona.edu ADJ
( PUNCT
Terrance PROPN
J. PROPN
Dishongh PROPN
) PUNCT
writes:>Greeting>>I NOUN
am AUX
starting VERB
work NOUN
on ADP
a DET
project NOUN
where ADV
I PRON
am AUX
trying VERB
to PART
make VERB
strain VERB
gages NOUN
> X
bond NOUN
to ADP
bone NOUN
in ADP
vivo NOUN
or CCONJ
a DET
period NOUN
of ADP
several ADJ
months NOUN
. PUNCT
  SPACE
I PRON
am AUX
currently ADV
> X
using VERB
hydroxyapaptite ADJ
back ADP
gages NOUN
, PUNCT
and CCONJ
I PRON
have AUX
tried VERB
M NOUN
- PUNCT
bonding VERB
the DET
gages NOUN
> X
to ADP
the DET
bone NOUN
. PUNCT
  SPACE
Apart ADV
from ADP
those DET
two NUM
application NOUN
methods NOUN
there ADV
doesn't VERB
> X
seem VERB
to PART
be AUX
much ADV
else ADV
in ADP
the DET
literature NOUN
. PUNCT
  SPACE
I PRON
have AUX
only ADV
an DET
engineering NOUN
> X
background NOUN
not PART
medical ADJ
or CCONJ
biological ADJ
. PUNCT
  SPACE
I PRON
would AUX
be AUX
interest NOUN
in ADP
any DET
> NUM
ideas NOUN
about ADP
how ADV
to PART
stimulte VERB
bone NOUN
growth NOUN
on ADP
the DET
surface NOUN
of ADP
cortical ADJ
bone.>>Thanks NOUN
for ADP
oyur NOUN
help NOUN
in ADP
Advance.>>Terrance NOUN
J PROPN
Dishongh>ame_0123@bigdog.engr.arizona.eduIt PROPN
sounds VERB
as SCONJ
though SCONJ
you PRON
might AUX
want VERB
to PART
try VERB
a DET
product NOUN
such ADJ
as SCONJ
" PUNCT
super ADJ
- ADJ
glue" ADJ
. PUNCT
The DET
active ADJ
ingredient NOUN
is AUX
cynoacrylate ADJ
, PUNCT
the DET
same ADJ
compound NOUN
used VERB
to ADP
reconstructbones NOUN
. PUNCT
  SPACE
I PRON
have AUX
successfully ADV
used VERB
superglue NOUN
for ADP
a DET
number NOUN
of ADP
procedures NOUN
on ADP
manydifferent NOUN
species NOUN
of ADP
animal NOUN
. PUNCT
If SCONJ
you PRON
are AUX
simply ADV
trying VERB
to PART
adhear VERB
somethingto NOUN
bone NOUN
for ADP
several ADJ
months NOUN
, PUNCT
this DET
would AUX
be AUX
ideal ADJ
. PUNCT
It PRON
bonds VERB
almost ADV
immediatly ADV
, PUNCT
is AUX
resistant ADJ
to ADP
infection NOUN
, PUNCT
and CCONJ
is AUX
non ADJ
- ADJ
irritating ADJ
to ADP
surrounding VERB
tissue NOUN
. PUNCT
Phil PROPN
Bowman PROPN
, PUNCT
ManagerLab PROPN
Animal PROPN
ResourcesUniversity PROPN
of ADP
MontanaMissoula PROPN
, PUNCT
MT PROPN
59812larpjb@selway.umt.edu NOUN
: PUNCT
wg-- ADJ
                          SPACE
/\---/\ PUNCT
          SPACE
Phil PROPN
Bowman PROPN
, PUNCT
Manager PROPN
               SPACE
\ NOUN
* PUNCT
* PUNCT
/ SYM
          SPACE
Laboratory PROPN
Animal PROPN
ResourcesNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59441From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Urine NOUN
analysisIn PROPN
article NOUN
< X
1rm2bn$kps@transfer.stratus.com NUM
> X
Randy_Faneuf@vos.stratus.com PROPN
writes VERB
: PUNCT
> X
> X
Someone PRON
please INTJ
help VERB
me PRON
. PUNCT
I PRON
am AUX
searching VERB
to PART
find VERB
out ADP
( PUNCT
as ADV
many ADJ
others NOUN
may)>an PROPN
absolute PROPN
' PUNCT
cure NOUN
' PUNCT
to ADP
removing VERB
all DET
detectable ADJ
traces NOUN
of ADP
marijuana PROPN
from ADP
> X
a DET
persons NOUN
body NOUN
. PUNCT
Is AUX
there PRON
a DET
chemical ADJ
or CCONJ
natural ADJ
substance NOUN
that PRON
can AUX
be AUX
> X
ingested VERB
or CCONJ
added VERB
to PART
urine VERB
to PART
make VERB
it PRON
undetectable ADJ
in ADP
urine NOUN
analysis.>If PROPN
so ADV
where ADV
can AUX
these DET
substances NOUN
be AUX
found VERB
. PUNCT
You PRON
could AUX
do AUX
what PRON
I PRON
do AUX
: PUNCT
never ADV
go VERB
near SCONJ
the DET
stuff NOUN
! PUNCT
  SPACE
: PUNCT
) PUNCT
-- PUNCT
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59442From NUM
: PUNCT
andrewm@bio.uts.EDU.AU PROPN
( PUNCT
Andrew PROPN
Mears)Subject PROPN
: PUNCT
sheep NOUN
models NOUN
in ADP
cardiologyDear ADJ
news NOUN
readers NOUN
, PUNCT
Is AUX
there PRON
anyone PRON
using VERB
sheep NOUN
models NOUN
for ADP
cardiac ADJ
research NOUN
, PUNCT
specificallyconcerned VERB
with ADP
arrhythmias PROPN
, PUNCT
pacing NOUN
or CCONJ
defibrillation NOUN
? PUNCT
I PRON
would AUX
liketo VERB
hear VERB
from ADP
you PRON
. PUNCT
Many ADJ
thanks NOUN
, PUNCT
Andrew PROPN
Mears PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
PLEASE INTJ
EMAIL VERB
ME PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
-- PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
Andrew PROPN
Mears PROPN
                            SPACE
h NOUN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
9774245 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
CRC PROPN
for ADP
Cardiac PROPN
Technology PROPN
, PUNCT
UTS PROPN
         SPACE
w PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
3304091 NUM
	         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
Westbourne PROPN
St PROPN
, PUNCT
GORE PROPN
HILL PROPN
                SPACE
F PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- SYM
3304003 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
N.S.W PROPN
  SPACE
2065 NUM
               SPACE
email NOUN
: PUNCT
< X
andrewm@iris.bio.uts.edu.au PROPN
> X
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59443From NUM
: PUNCT
eileen@microware.com X
( PUNCT
Eileen PROPN
Beck)Subject NUM
: PUNCT
cortisone NOUN
shotsI PROPN
need VERB
some DET
information NOUN
on ADP
the DET
implications NOUN
of ADP
receivingcortisone NOUN
shots NOUN
for ADP
a DET
seasonal ADJ
allergic ADJ
condition NOUN
. PUNCT
  SPACE
I PRON
've AUX
had VERB
the DET
usual ADJ
" PUNCT
skin NOUN
prick NOUN
" PUNCT
tests NOUN
for ADP
thecommon PROPN
allergies NOUN
, PUNCT
but CCONJ
reacted VERB
to ADP
none NOUN
of ADP
the DET
substances NOUN
. PUNCT
So ADV
for ADP
the DET
last ADJ
two NUM
seasons NOUN
I PRON
've AUX
received VERB
cortisone NOUN
shotsbut PROPN
the DET
doctors NOUN
seem VERB
reluctant ADJ
to PART
give VERB
more ADJ
than SCONJ
two NUM
orthree ADJ
shots NOUN
. PUNCT
  SPACE
Why ADV
? PUNCT
  SPACE
What PRON
are AUX
the DET
dangers?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59444From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu PROPN
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
looking VERB
for ADP
info NOUN
on ADP
kemotherapy(p PROPN
? PUNCT
) PUNCT
( PUNCT
KINDA PROPN
LONG)In PROPN
article NOUN
< X
1rjpu7INNmij@shelley.u.washington.edu NUM
> X
, PUNCT
kryan@stein.u.washington.edu PROPN
( PUNCT
Kerry PROPN
Ryan PROPN
) PUNCT
writes VERB
... PUNCT
> X
> X
Hello INTJ
, PUNCT
a DET
friend NOUN
is AUX
under ADP
going VERB
kemotherapy(sp PROPN
? PUNCT
) PUNCT
for ADP
breast NOUN
cancer NOUN
. PUNCT
I'm PROPN
> X
trying VERB
to PART
learn VERB
what PRON
I PRON
can AUX
about ADP
it PRON
. PUNCT
Any DET
info NOUN
would AUX
be AUX
appreciated.>Thanks PROPN
. PUNCT
You've PROPN
asked VERB
a DET
toughie NOUN
of ADP
a DET
question NOUN
. PUNCT
  SPACE
There PRON
are AUX
many ADJ
different ADJ
drugs NOUN
whichare VERB
used VERB
for ADP
chemotherapy NOUN
. PUNCT
The DET
overall ADJ
purpose NOUN
of ADP
chemotherapy NOUN
( PUNCT
do AUX
n't PART
worry VERB
about ADP
the DET
spelling NOUN
. PUNCT
  SPACE
Some DET
ofthese ADJ
crazy ADJ
medical ADJ
words NOUN
are AUX
impossible ADJ
to PART
spell VERB
! PUNCT
:-) PUNCT
is AUX
to ADP
either CCONJ
destroycancer NOUN
cells NOUN
or CCONJ
to PART
keep VERB
them PRON
from ADP
growing VERB
. PUNCT
  SPACE
Different ADJ
drugs NOUN
have AUX
differenteffects NOUN
on ADP
cancer NOUN
cells NOUN
, PUNCT
and CCONJ
therefore ADV
, PUNCT
it PRON
is AUX
not PART
uncommon ADJ
to PART
use VERB
more ADJ
thanone NOUN
drug NOUN
at ADP
a DET
time NOUN
. PUNCT
Some DET
chemotherapeutic ADJ
drugs NOUN
are AUX
effective ADJ
anytime NOUN
during ADP
the DET
growth NOUN
cycleof VERB
a DET
cell NOUN
. PUNCT
  SPACE
Others NOUN
work VERB
only ADV
at ADP
specific ADJ
times NOUN
during ADP
the DET
cell NOUN
cycle NOUN
. PUNCT
The DET
first ADJ
phase NOUN
of ADP
the DET
cell NOUN
cycle NOUN
is AUX
G1 PROPN
; PUNCT
it PRON
is AUX
when ADV
the DET
protein NOUN
synthesisand NOUN
RNA PROPN
systhesis NOUN
occurs VERB
. PUNCT
  SPACE
In ADP
the DET
second ADJ
phase NOUN
, PUNCT
S PROPN
, PUNCT
synthesis NOUN
of ADP
DNA NOUN
occurs VERB
. PUNCT
The DET
third ADJ
phase NOUN
is AUX
G2 PROPN
; PUNCT
The DET
DNA PROPN
splits VERB
and CCONJ
RNA PROPN
and CCONJ
protein NOUN
are AUX
synthesized VERB
aagain ADV
. PUNCT
  SPACE
In ADP
the DET
fourth ADJ
phase NOUN
, PUNCT
M PROPN
( PUNCT
or CCONJ
Mitosis PROPN
) PUNCT
, PUNCT
the DET
cell NOUN
may AUX
divide VERB
. PUNCT
There PRON
are AUX
drugs NOUN
which PRON
are AUX
effective ADJ
in ADP
each DET
phase NOUN
. PUNCT
  SPACE
Some DET
stop VERB
DNA NOUN
synthesis NOUN
. PUNCT
Others NOUN
stop VERB
the DET
cell NOUN
from ADP
dividing NOUN
. PUNCT
Others NOUN
wreck VERB
protein NOUN
synthesis NOUN
. PUNCT
At ADP
any DET
rate NOUN
, PUNCT
the DET
end NOUN
result NOUN
that PRON
is AUX
being AUX
sought VERB
is AUX
for ADP
the DET
cancer NOUN
cellsto NOUN
stop VERB
growing VERB
. PUNCT
If SCONJ
what PRON
you PRON
are AUX
seeking VERB
is AUX
" PUNCT
practical ADJ
" PUNCT
advice NOUN
, PUNCT
I PRON
apologize VERB
for ADP
ramblingon VERB
the DET
techno NOUN
stuff NOUN
. PUNCT
  SPACE
Some DET
side NOUN
effects NOUN
are AUX
pretty ADV
common ADJ
. PUNCT
  SPACE
Chemo NOUN
. PUNCT
drugsare VERB
rather ADV
nasty ADJ
. PUNCT
  SPACE
It PRON
can AUX
cause VERB
a DET
person NOUN
to PART
lose VERB
their PRON
appetite NOUN
and CCONJ
to PART
experience VERB
nausea NOUN
and CCONJ
vomiting NOUN
. PUNCT
  SPACE
Things NOUN
to PART
help VERB
this DET
include VERB
eating VERB
smallfrequent ADJ
meals NOUN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
suggested VERB
that SCONJ
if SCONJ
nausea NOUN
/ SYM
vomiting NOUN
( PUNCT
hereafterknown VERB
as SCONJ
n PROPN
/ SYM
v X
) PUNCT
occurs VERB
that SCONJ
the DET
person NOUN
notify VERB
the DET
doctor NOUN
; PUNCT
there PRON
are AUX
medicinestthat PROPN
help VERB
nausea NOUN
. PUNCT
  SPACE
Diarrhea PROPN
can AUX
be AUX
an DET
effect NOUN
. PUNCT
  SPACE
Antidiarrheal ADJ
medications NOUN
can AUX
be AUX
given VERB
, PUNCT
and CCONJ
good ADJ
skincare NOUN
and CCONJ
fluid NOUN
intake NOUN
are AUX
important ADJ
. PUNCT
Probably ADV
the DET
one NUM
of ADP
biggest ADJ
concsern NOUN
is AUX
hair NOUN
loss NOUN
. PUNCT
  SPACE
This DET
does AUX
not PART
alwayshappen VERB
. PUNCT
  SPACE
It PRON
depends VERB
on ADP
what PRON
drugs NOUN
are AUX
being AUX
given VERB
, PUNCT
and CCONJ
on ADP
the DET
person NOUN
themself PRON
. PUNCT
  SPACE
Different ADJ
people NOUN
taking VERB
the DET
same ADJ
drug NOUN
can AUX
and CCONJ
do AUX
have AUX
differentside NOUN
effects NOUN
. PUNCT
  SPACE
I PRON
have AUX
seen VERB
some DET
literature NOUN
which PRON
states VERB
that SCONJ
wearing VERB
a DET
snugheadband NOUN
and/or CCONJ
wearing VERB
an DET
ice NOUN
cap NOUN
can AUX
help VERB
reduce VERB
hair NOUN
loss NOUN
, PUNCT
presumablyby ADJ
reducing VERB
blood NOUN
flow NOUN
to ADP
the DET
scalp NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
has AUX
seen VERB
research NOUN
on ADP
thistoo NOUN
, PUNCT
I PRON
would AUX
love VERB
to PART
see VERB
it PRON
, PUNCT
and CCONJ
possibly ADV
some DET
bib PROPN
data NOUN
. PUNCT
I PRON
highly ADV
recommend VERB
making VERB
contact NOUN
with ADP
the DET
American PROPN
Cancer PROPN
Society PROPN
. PUNCT
They PRON
have AUX
a DET
vast ADJ
selection NOUN
of ADP
literature NOUN
and CCONJ
information NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
if SCONJ
your PRON
friend NOUN
has AUX
had VERB
a DET
mastectomy NOUN
, PUNCT
I PRON
highly ADV
recommend VERB
" PUNCT
Reach VERB
for ADP
Recovery" PROPN
. PUNCT
It PRON
is AUX
a DET
support NOUN
group NOUN
comprised VERB
entirely ADV
of ADP
women NOUN
who PRON
have AUX
lost VERB
a DET
breast NOUN
because SCONJ
of ADP
cancer NOUN
. PUNCT
  SPACE
They PRON
can AUX
offer VERB
some DET
excellent ADJ
support NOUN
and CCONJ
suggestions NOUN
. PUNCT
If SCONJ
you PRON
have AUX
further ADJ
questions NOUN
, PUNCT
please INTJ
send VERB
me PRON
E NOUN
- NOUN
mail NOUN
. PUNCT
  SPACE
I PRON
hav VERB
some DET
goodaccess NOUN
to ADP
information NOUN
, PUNCT
and CCONJ
I PRON
enjoy VERB
trying VERB
to PART
help VERB
other ADJ
people NOUN
. PUNCT
I PRON
wish VERB
the DET
best ADJ
to ADP
you PRON
and CCONJ
your PRON
friend NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59445From NUM
: PUNCT
isckbk@nuscc.nus.sg PROPN
( PUNCT
Kiong PROPN
Beng PROPN
Kee)Subject NOUN
: PUNCT
HivesMy ADJ
wife NOUN
had AUX
hives NOUN
during ADP
the DET
first ADJ
two NUM
monthsof NOUN
her PRON
pregnancy NOUN
. PUNCT
  SPACE
My PRON
son NOUN
( PUNCT
3 NUM
months NOUN
old ADJ
) PUNCT
, PUNCT
breast NOUN
- PUNCT
fed PROPN
, PUNCT
now ADV
has AUX
the DET
same ADJ
symptoms NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
to ADP
a DET
skin NOUN
- PUNCT
specialist NOUN
, PUNCT
but CCONJ
he PRON
has AUX
merely ADV
prescribed VERB
various ADJ
medicines NOUN
( PUNCT
oneeach NOUN
visit NOUN
as SCONJ
though SCONJ
by ADP
trial NOUN
and CCONJ
error NOUN
: PUNCT
-))Anti PROPN
- PUNCT
histamines NOUN
worked VERB
on ADP
both DET
of ADP
them PRON
, PUNCT
but CCONJ
looks VERB
likebecoming VERB
less ADV
effective ADJ
. PUNCT
Are AUX
there PRON
other ADJ
solutions NOUN
? PUNCT
  SPACE
Thanks.-- PROPN
Kiong PROPN
Beng PROPN
KeeDept PROPN
of ADP
Information PROPN
Systems PROPN
and CCONJ
Computer PROPN
ScienceNational PROPN
University PROPN
of ADP
SingaporeLower PROPN
Kent PROPN
Ridge PROPN
Road PROPN
, PUNCT
SINGAPORE PROPN
0511Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59446From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu NUM
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Miscelaneous ADJ
soon ADV
- PUNCT
to PART
- PUNCT
have AUX
- PUNCT
baby NOUN
questionsIn PROPN
article NOUN
< X
C66919.Inz@world.std.com PROPN
> X
, PUNCT
rmccown@world.std.com PROPN
( PUNCT
Bob PROPN
McCown PROPN
) PUNCT
writes VERB
... PUNCT
>We're X
about ADP
to PART
have AUX
our PRON
first ADJ
baby NOUN
, PUNCT
and CCONJ
have AUX
a DET
few ADJ
questions NOUN
that PRON
we PRON
> X
dont PROPN
seem VERB
to PART
be AUX
able ADJ
to PART
get AUX
answered VERB
to ADP
our PRON
satisfaction NOUN
. PUNCT
> X
> X
Reguarding VERB
having VERB
a DET
baby NOUN
boy NOUN
circumsized VERB
, PUNCT
what PRON
are AUX
the DET
medical ADJ
pros NOUN
> X
and CCONJ
cons NOUN
? PUNCT
  SPACE
All DET
we PRON
've AUX
heard VERB
is AUX
' PUNCT
its PRON
up ADP
to ADP
the DET
parents NOUN
' PUNCT
. PUNCT
> X
Unfortonately ADV
, PUNCT
that SCONJ
truly ADV
is AUX
about ADP
the DET
best ADJ
summation NOUN
of ADP
the DET
researchthat NOUN
there PRON
is AUX
. PUNCT
  SPACE
Advantages NOUN
stated VERB
of ADP
circumcison NOUN
included VERB
probablyprevention NOUN
of ADP
penile NOUN
cancer NOUN
, PUNCT
( PUNCT
which PRON
, PUNCT
interestingly ADV
, PUNCT
occurs VERB
mostly ADV
in ADP
menwhose ADJ
personal ADJ
hygiene NOUN
is AUX
exceptionally ADV
poor ADJ
) PUNCT
, PUNCT
simplicity NOUN
of ADP
personalhygiene NOUN
, PUNCT
prevention NOUN
of ADP
urinary ADJ
tract NOUN
infections NOUN
, PUNCT
and CCONJ
prevention NOUN
ofa NOUN
unretractible ADJ
foreskin X
, PUNCT
  SPACE
Disadvantages NOUN
include VERB
infection NOUN
from ADP
the DET
procedure NOUN
, PUNCT
pain NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
apologize VERB
; PUNCT
I PRON
am AUX
trying VERB
to PART
pull VERB
this DET
offthe NOUN
top NOUN
of ADP
my PRON
head NOUN
. PUNCT
  SPACE
I PRON
will AUX
post VERB
what PRON
I PRON
discovered VERB
in ADP
research NOUN
; PUNCT
I PRON
dida NOUN
paper NOUN
on ADP
the DET
topic NOUN
in ADP
my PRON
research NOUN
class NOUN
in ADP
Nursing PROPN
school NOUN
. PUNCT
It PRON
really ADV
is AUX
a DET
decision NOUN
that PRON
is AUX
up ADP
to ADP
the DET
parents NOUN
. PUNCT
  SPACE
Some DET
parents NOUN
usethe VERB
reasoning NOUN
that SCONJ
they PRON
will AUX
" PUNCT
look VERB
like SCONJ
Daddy NOUN
" PUNCT
and CCONJ
like SCONJ
their PRON
friendsas ADJ
justification NOUN
. PUNCT
  SPACE
There PRON
is AUX
nothing PRON
wrong ADJ
with ADP
this DET
; PUNCT
just ADV
be AUX
sure ADJ
it PRON
iswhat ADP
you PRON
want VERB
to PART
do AUX
, PUNCT
since SCONJ
it PRON
is AUX
rather ADV
difficult ADJ
to ADP
uncircumcisea ADJ
male NOUN
, PUNCT
although SCONJ
a DET
major ADJ
surgical ADJ
procedure NOUN
exists.>How NOUN
about ADP
the DET
pregnant ADJ
woman NOUN
sitting VERB
in ADP
a DET
tub NOUN
of ADP
water NOUN
? PUNCT
  SPACE
We PRON
've AUX
heard VERB
> X
stories NOUN
of ADP
infection NOUN
, PUNCT
etc X
. PUNCT
  SPACE
How ADV
about ADP
after ADP
the DET
water NOUN
has AUX
broken VERB
? PUNCT
> X
As ADV
long ADV
as SCONJ
your PRON
membranes NOUN
have AUX
not PART
broken VERB
and CCONJ
you PRON
have AUX
not PART
had VERB
anyproblems NOUN
with ADP
your PRON
pregnancy NOUN
, PUNCT
it PRON
should AUX
be AUX
OK ADJ
to PART
sit VERB
in ADP
a DET
tub NOUN
of ADP
water NOUN
. PUNCT
HOWEVER ADV
, PUNCT
I PRON
WOULD AUX
RECOMMEND VERB
USING VERB
YOUR PRON
OWN ADJ
BATHTUB NOUN
IN ADP
YOUR PRON
OWN ADJ
HOME!It NOUN
is AUX
nearly ADV
impossible ADJ
to PART
guarantee VERB
the DET
cleanliness NOUN
and CCONJ
safety NOUN
of ADP
" PUNCT
public"hot PROPN
tubs NOUN
. PUNCT
  SPACE
A DET
nice ADJ
warm ADJ
bath NOUN
can AUX
be AUX
very ADV
relaxing ADJ
, PUNCT
especially ADV
if SCONJ
your PRON
backis NOUN
killing VERB
you PRON
! PUNCT
  SPACE
And CCONJ
it PRON
would AUX
possibly ADV
be AUX
advisable ADJ
to PART
avoid VERB
bubble NOUN
bathsoap NOUN
, PUNCT
esp ADV
. PUNCT
if SCONJ
you PRON
are AUX
prone ADJ
to ADP
yeast NOUN
infection NOUN
. PUNCT
Hope VERB
these DET
tips NOUN
help VERB
you PRON
some.Elisapicl25@fsphy1.physics.fsu.eduNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59447From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Kidney PROPN
Stones PROPN
     SPACE
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
Marty PROPN
Banschbach PROPN
) PUNCT
writes:[ NOUN
... PUNCT
]B X
> X
  SPACE
Medicine PROPN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
ThereB PROPN
> X
  SPACE
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
isB PROPN
> X
  SPACE
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
beenB PROPN
> X
  SPACE
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng PROPN
theB PROPN
> X
  SPACE
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stonesB PROPN
> X
  SPACE
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
toB PROPN
> X
  SPACE
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
ofB NOUN
> X
  SPACE
Medicine NOUN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
B NOUN
> X
  SPACE
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
isB ADJ
> X
  SPACE
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
    SPACE
[ PUNCT
... PUNCT
] PUNCT
B NOUN
> X
  SPACE
Marty PROPN
B. PROPN
Marty PROPN
, PUNCT
I PRON
personally ADV
would AUX
n't PART
be AUX
so ADV
quick ADJ
and CCONJ
take VERB
that SCONJ
NEJM PROPN
article NOUN
  SPACE
on ADP
kidney NOUN
stones NOUN
as SCONJ
gospel NOUN
. PUNCT
First ADV
of ADP
all DET
, PUNCT
I PRON
would AUX
want VERB
to PART
know VERB
who PRON
sponsored VERB
that DET
study NOUN
. PUNCT
I PRON
have AUX
seen VERB
too ADV
many ADJ
" PUNCT
nutrition NOUN
" PUNCT
bulletins NOUN
over ADP
the DET
years NOUN
from ADP
local ADJ
newspapers NOUN
, PUNCT
magazines NOUN
, PUNCT
to ADP
TV NOUN
- PUNCT
guide NOUN
, PUNCT
with ADP
disclaimers NOUN
on ADP
the DET
bottom NOUN
informing VERB
us PRON
that SCONJ
this DET
great ADJ
health NOUN
news NOUN
was AUX
brought VERB
to ADP
us PROPN
compliments NOUN
of ADP
the DET
Dairy PROPN
Industries PROPN
. PUNCT
There PRON
are AUX
of ADP
course NOUN
numerous ADJ
other ADJ
interest NOUN
groups NOUN
now ADV
that PRON
thrive VERB
financially ADV
on ADP
the DET
media NOUN
hype NOUN
created VERB
from ADP
the DET
supposedly ADV
enormous ADJ
  SPACE
benefits NOUN
of ADP
increasing VERB
one PRON
's PART
calcium NOUN
intake NOUN
. PUNCT
Secondly ADV
, PUNCT
were AUX
ALL DET
the DET
kidney NOUN
stones NOUN
of ADP
the DET
test NOUN
subjects NOUN
involved VERB
  SPACE
in ADP
that DET
project NOUN
analysed VERB
for ADP
their PRON
chemical NOUN
composition NOUN
? PUNCT
  SPACE
The DET
study NOUN
did AUX
n't PART
say VERB
that DET
, PUNCT
it PRON
only ADV
claimed VERB
that SCONJ
" PUNCT
most ADJ
kidney NOUN
stones NOUN
are AUX
large- ADJ
ly PROPN
calcium NOUN
. PUNCT
" PUNCT
Perhaps ADV
it PRON
wo AUX
n't PART
be AUX
long ADJ
before ADP
another DET
study NOUN
comes VERB
up ADP
with ADP
the DET
exact ADJ
opposite ADJ
findings NOUN
. PUNCT
A DET
curious ADJ
phenomenon NOUN
with ADP
researchers NOUN
is AUX
that SCONJ
they PRON
are AUX
oftentimes NOUN
just ADV
plain ADV
wrong ADJ
. PUNCT
It PRON
would AUX
n't PART
be AUX
the DET
first ADJ
time NOUN
. PUNCT
  SPACE
Sodium PROPN
/ SYM
magnesium PROPN
/ SYM
calcium NOUN
/ SYM
phosphorus PROPN
ratios NOUN
are AUX
, PUNCT
in ADP
my PRON
opinion NOUN
, PUNCT
still ADV
  SPACE
the DET
most ADV
reliable ADJ
indicators NOUN
for ADP
the DET
cause NOUN
, PUNCT
treatment NOUN
, PUNCT
and CCONJ
prevention NOUN
  SPACE
of ADP
kidney NOUN
stones NOUN
. PUNCT
I PRON
, PUNCT
for ADP
one NUM
, PUNCT
will AUX
continue VERB
to PART
recommend VERB
the DET
most ADV
logical ADJ
changes NOUN
in ADP
one NUM
's PART
diet NOUN
or CCONJ
through ADP
supplementation NOUN
to PART
counteract VERB
or CCONJ
prevent VERB
kidney NOUN
stones NOUN
of ADP
either DET
type NOUN
; PUNCT
and CCONJ
they PRON
definitely ADV
wo AUX
n't PART
include VERB
an DET
INCREASE NOUN
in ADP
calcium NOUN
if SCONJ
the DET
stones NOUN
have AUX
been AUX
identified VERB
as SCONJ
being AUX
of ADP
the DET
calcium NOUN
type NOUN
and CCONJ
people NOUN
's PART
chemical ADJ
analysis NOUN
confirms VERB
that SCONJ
they PRON
would AUX
benefit VERB
from ADP
a DET
PHOSPHORUS PROPN
- PUNCT
raising VERB
approach NOUN
instead ADV
! PUNCT
     SPACE
Ron PROPN
Roth PROPN
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
-- PUNCT
  SPACE
Internet NOUN
: PUNCT
rn.3228@rose.com PROPN
  SPACE
- PUNCT
  SPACE
Rosenet PROPN
: PUNCT
ron PROPN
roth@rosehamilton PROPN
  SPACE
-- PUNCT
* PUNCT
A DET
stone NOUN
on ADP
the DET
ground NOUN
is AUX
better ADJ
than SCONJ
a DET
stone NOUN
in ADP
the DET
body.--- NOUN
   SPACE
RoseReader PROPN
2.10 NUM
  SPACE
P003228 PROPN
Entered VERB
at ADP
[ PUNCT
ROSEHAMILTON NOUN
] PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59448From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Umbilical PROPN
HerniaIn PROPN
article NOUN
< X
1993Apr27.060740.3068@shannon.ee.wits.ac.za NUM
> X
gary@concave.cs.wits.ac.za NOUN
( PUNCT
Gary PROPN
Taylor PROPN
) PUNCT
writes:>Could AUX
anyone PRON
give VERB
me PRON
information NOUN
on ADP
Umbilical PROPN
hernias.>The NOUN
patient NOUN
is AUX
over ADP
weight NOUN
and CCONJ
has AUX
a DET
protruding ADJ
hernia.>>Surgery NOUN
may AUX
be AUX
risky ADJ
due ADP
to ADP
the DET
obesity.>What X
other ADJ
remedies NOUN
could AUX
I PRON
try?Unless VERB
the DET
patient NOUN
has AUX
a DET
very ADV
short ADJ
life NOUN
expectancy NOUN
, PUNCT
the DET
possible ADJ
complicationsfrom PROPN
a DET
hernia NOUN
that PRON
has AUX
n't PART
been AUX
repaired VERB
far ADV
outweigh VERB
the DET
risks NOUN
of ADP
surgery NOUN
. PUNCT
The DET
risks NOUN
of ADP
surgery NOUN
, PUNCT
anyway ADV
, PUNCT
are AUX
minimal ADJ
. PUNCT
Unless SCONJ
they PRON
are AUX
exceedingly ADV
large ADJ
, PUNCT
hernias PROPN
can AUX
be AUX
fixed VERB
under ADP
local ADJ
anesthesia PROPN
. PUNCT
Do AUX
n't PART
forget VERB
that SCONJ
hernias NOUN
are AUX
one NUM
the DET
leading VERB
causes NOUN
of ADP
small ADJ
bowel NOUN
obstruction NOUN
. PUNCT
And CCONJ
the DET
smaller ADJ
the DET
hernia PROPN
is AUX
, PUNCT
the DET
higher ADJ
the DET
chances NOUN
that PRON
a DET
loop NOUN
of ADP
bowel PROPN
willbecome PROPN
incarcerated VERB
or CCONJ
strangulated.===============================Howard PROPN
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59449Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
FictionFrom PROPN
: PUNCT
pchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill)I PROPN
am AUX
currently ADV
in ADP
the DET
throes NOUN
of ADP
a DET
hay NOUN
fever NOUN
attack NOUN
. PUNCT
  SPACE
SO ADV
who PRON
certainlynever VERB
reads VERB
Usenet PROPN
, PUNCT
let VERB
alone ADV
Sci.med VERB
, PUNCT
said VERB
quite ADV
spontaneously ADV
" PUNCT
There PRON
are AUX
a DET
lot NOUN
of ADP
mushrooms NOUN
and CCONJ
toadstools NOUN
out ADP
on ADP
the DET
lawn NOUN
at ADP
themoment NOUN
. PUNCT
  SPACE
Sure INTJ
that DET
's AUX
not PART
your PRON
problem?"Well NOUN
, PUNCT
who PRON
knows VERB
? PUNCT
  SPACE
Or CCONJ
maybe ADV
it PRON
's AUX
the DET
sourdough NOUN
bread NOUN
I PRON
bake?After VERB
reading NOUN
learned VERB
, PUNCT
semi ADV
- ADJ
learned ADJ
, PUNCT
possibly ADV
ignorant ADJ
and CCONJ
downrightludicrous ADJ
stuff NOUN
in ADP
this DET
thread NOUN
, PUNCT
I PRON
am AUX
about ADV
ready ADJ
to PART
believe VERB
anything PRON
: PUNCT
-)If VERB
the DET
hayfever NOUN
gets VERB
any DET
worse ADJ
, PUNCT
maybe ADV
I PRON
will AUX
cook VERB
those DET
toadstools NOUN
... PUNCT
-- PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
            SPACE
The DET
floggings NOUN
will AUX
continue VERB
until ADP
morale NOUN
improves VERB
                  SPACE
pchurch@swell.actrix.gen.nz PROPN
  SPACE
Pat PROPN
Churchill PROPN
, PUNCT
Wellington PROPN
New PROPN
Zealand PROPN
     SPACE
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59450From NUM
: PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf)Subject NUM
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1993Apr22.143929.26131@midway.uchicago.edu NUM
> X
jacquier@gsbux1.uchicago.edu NOUN
( PUNCT
Eric PROPN
Jacquier PROPN
) PUNCT
writes:>>I PROPN
am AUX
interested ADJ
in ADP
trying VERB
this DET
" PUNCT
desensitization NOUN
" PUNCT
( PUNCT
? PUNCT
) PUNCT
method NOUN
> X
against ADP
hay PROPN
fever.>What PROPN
is AUX
the DET
state NOUN
of ADP
affairs NOUN
about ADP
this DET
. PUNCT
I PRON
went VERB
to ADP
a DET
doctor NOUN
and CCONJ
> X
paid VERB
$ SYM
85 NUM
for ADP
a DET
10 NUM
minute NOUN
interview NOUN
+ CCONJ
3 NUM
scratches NOUN
, PUNCT
leading VERB
to ADP
the DET
> X
diagnostic ADJ
that PRON
I PRON
am AUX
allergic ADJ
to ADP
( PUNCT
June PROPN
and CCONJ
Timothy PROPN
) PUNCT
grass.>I PROPN
believe VERB
this DET
. PUNCT
From ADP
now ADV
on ADP
it PRON
looks VERB
like SCONJ
2 NUM
shots NOUN
per ADP
week NOUN
for>6 ADJ
months NOUN
followed VERB
by ADP
1 NUM
shot NOUN
per ADP
month NOUN
or CCONJ
so ADV
. PUNCT
Each DET
shot VERB
costs>$20 NOUN
. PUNCT
Talking VERB
about ADP
soaring VERB
costs NOUN
and CCONJ
the DET
Health PROPN
care NOUN
system NOUN
, PUNCT
I PRON
would AUX
> X
call VERB
that SCONJ
a DET
racket NOUN
. PUNCT
We PRON
are AUX
not PART
talking VERB
about ADP
rare ADJ
Amazonian ADJ
grasses NOUN
> X
here ADV
, PUNCT
but CCONJ
the DET
garbage NOUN
which PRON
grows VERB
behind ADP
the DET
doctor NOUN
's PART
office.>Apart PROPN
from ADP
this DET
issue NOUN
, PUNCT
I PRON
was AUX
somewhat ADV
disappointed ADJ
to PART
find VERB
out ADP
> X
that SCONJ
you PRON
have AUX
to PART
keep VERB
getting VERB
the DET
shots NOUN
forever ADV
. PUNCT
Is AUX
that DET
right?>Thanks PUNCT
for ADP
information.>>Go PROPN
to ADP
your PRON
public ADJ
library NOUN
and CCONJ
get AUX
the DET
February PROPN
, PUNCT
1988 NUM
issue NOUN
of ADP
ConsumerReports PROPN
. PUNCT
  SPACE
An DET
article NOUN
on ADP
allergy ADJ
shots NOUN
begins VERB
on ADP
page NOUN
96 NUM
. PUNCT
  SPACE
This DET
articleis PROPN
MUST AUX
reading VERB
for ADP
anyone PRON
contemplating VERB
allergy NOUN
shots NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59451From NUM
: PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
Septoplasty PROPN
In ADP
article NOUN
< X
badboyC64t0z.FGq@netcom.com PROPN
> X
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller PROPN
) PUNCT
writes:>>(I've NOUN
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn't ADV
> X
really ADV
help VERB
them).>>I PART
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see VERB
some DET
> ADJ
relief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
of ADP
> X
that SCONJ
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved.>>>Did PUNCT
your PRON
ENT PROPN
also ADV
tell VERB
you PRON
that SCONJ
this DET
procedure NOUN
may AUX
remove VERB
warts NOUN
from ADP
the DET
solesof NOUN
your PRON
feet NOUN
and CCONJ
improve VERB
your PRON
sex NOUN
life?Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59452From NUM
: PUNCT
rdd@uts.ipp-garching.mpg.de PROPN
( PUNCT
Reinhard PROPN
Drube)Subject NUM
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser PROPN
printers??Hello PROPN
, PUNCT
does AUX
anyone PRON
know VERB
about ADP
allergic ADJ
reactions NOUN
caused VERB
by ADP
the DET
developer NOUN
/ SYM
tonerof ADJ
laser NOUN
printers NOUN
? PUNCT
What PRON
chemical NOUN
stuff NOUN
is AUX
involved?Thanks VERB
in ADP
advance!Reinhardemail NOUN
: PUNCT
rdd@ibma.ipp-garching.mpg.deNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59453From NUM
: PUNCT
pkhalsa@wpi X
. PUNCT
WPI.EDU PROPN
( PUNCT
Partap PROPN
S PROPN
Khalsa)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Strain VERB
Gage PROPN
Applications PROPN
in ADP
vivoIn PROPN
article NOUN
< X
1993Apr28.173600.21703@organpipe.uug.arizona.edu NUM
> X
ame_0123@bigdog.engr.arizona.edu ADJ
( PUNCT
Terrance PROPN
J. PROPN
Dishongh PROPN
) PUNCT
writes:>Greeting>>I NOUN
am AUX
starting VERB
work NOUN
on ADP
a DET
project NOUN
where ADV
I PRON
am AUX
trying VERB
to PART
make VERB
strain VERB
gages NOUN
> X
bond NOUN
to ADP
bone NOUN
in ADP
vivo NOUN
or CCONJ
a DET
period NOUN
of ADP
several ADJ
months NOUN
. PUNCT
  SPACE
I PRON
am AUX
currently ADV
> X
using VERB
hydroxyapaptite ADJ
back ADP
gages NOUN
, PUNCT
and CCONJ
I PRON
have AUX
tried VERB
M NOUN
- PUNCT
bonding VERB
the DET
gages NOUN
> X
to ADP
the DET
bone NOUN
. PUNCT
  SPACE
Apart ADV
from ADP
those DET
two NUM
application NOUN
methods NOUN
there ADV
doesn't VERB
> X
seem VERB
to PART
be AUX
much ADV
else ADV
in ADP
the DET
literature NOUN
. PUNCT
  SPACE
I PRON
have AUX
only ADV
an DET
engineering NOUN
> X
background NOUN
not PART
medical ADJ
or CCONJ
biological ADJ
. PUNCT
  SPACE
I PRON
would AUX
be AUX
interest NOUN
in ADP
any DET
> NUM
ideas NOUN
about ADP
how ADV
to PART
stimulte VERB
bone NOUN
growth NOUN
on ADP
the DET
surface NOUN
of ADP
cortical ADJ
bone.>>Thanks NOUN
for ADP
oyur NOUN
help NOUN
in ADP
Advance.>>Terrance NOUN
J PROPN
Dishongh>ame_0123@bigdog.engr.arizona.eduTerrance PROPN
, PUNCT
  SPACE
There PRON
is AUX
a DET
good ADJ
article NOUN
entitled VERB
: PUNCT
  SPACE
" PUNCT
A DET
long ADJ
- PUNCT
term NOUN
in ADP
vivo NOUN
bone NOUN
strainmeasurement NOUN
device NOUN
, PUNCT
" PUNCT
  SPACE
Journal PROPN
of ADP
Investigative PROPN
Surgery PROPN
1989 NUM
; PUNCT
2(2 X
) PUNCT
: PUNCT
195 NUM
- PUNCT
206by NOUN
Szivek PROPN
JA PROPN
& CCONJ
Magee PROPN
FP PROPN
. PUNCT
  SPACE
I PRON
think VERB
you PRON
can AUX
find VERB
some DET
others NOUN
by ADP
searching VERB
MedLine PROPN
. PUNCT
Partap PROPN
S. PROPN
Khalsa PROPN
, PUNCT
MS PROPN
, PUNCT
DC PROPN
, PUNCT
FACOPost PROPN
- PUNCT
Doc PROPN
Research PROPN
FellowU.Mass PROPN
. PUNCT
Med PROPN
. PUNCT
SchoolNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59454From NUM
: PUNCT
johnf@HQ.Ileaf PROPN
. PUNCT
COM PROPN
( PUNCT
John PROPN
Finlayson)Subject NUM
: PUNCT
Re ADP
: PUNCT
feverfew ADJ
for ADP
migrainesIn PROPN
article NOUN
< X
ltrdroINNltf@exodus NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
> X
brenda@bookhouse NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Brenda PROPN
Bowden PROPN
) PUNCT
writes:>>Does VERB
anyone PRON
know VERB
about ADP
these DET
studies NOUN
? PUNCT
Or CCONJ
have AUX
experience NOUN
with ADP
feverfew?>I'm NOUN
skeptical ADJ
, PUNCT
but CCONJ
open ADJ
to ADP
trying VERB
it PRON
if SCONJ
I PRON
can AUX
find VERB
out ADP
more ADJ
about ADP
this.>What DET
is AUX
feverfew ADJ
, PUNCT
and CCONJ
how ADV
much ADJ
would AUX
you PRON
take VERB
to PART
prevent VERB
migraines NOUN
( PUNCT
if SCONJ
> X
this DET
is AUX
a DET
good ADJ
idea NOUN
, PUNCT
that DET
is ADV
) PUNCT
? PUNCT
Are AUX
there PRON
any DET
known VERB
risks NOUN
or CCONJ
side NOUN
effects NOUN
> X
of ADP
feverfew PROPN
? PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
info!>BrendaI've NOUN
tried VERB
it PRON
, PUNCT
and CCONJ
so ADV
has AUX
one NUM
friend NOUN
of ADP
mine PRON
. PUNCT
  SPACE
No DET
known VERB
side NOUN
effects NOUN
orrisks NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
seem VERB
to PART
work VERB
for ADP
us PRON
, PUNCT
but CCONJ
several ADJ
studies NOUN
now ADV
have AUX
suggested VERB
it PRON
does AUX
work NOUN
for ADP
many ADJ
people NOUN
, PUNCT
so ADV
I PRON
think VERB
it PRON
's AUX
worth ADJ
a DET
try NOUN
. PUNCT
You PRON
can AUX
find VERB
it PRON
in ADP
capsule NOUN
form NOUN
at ADP
health NOUN
food NOUN
stores NOUN
. PUNCT
  SPACE
Up ADP
to PART
six NUM
capsulesa NOUN
day NOUN
was AUX
recommended VERB
, PUNCT
if SCONJ
I PRON
remember VERB
correctly ADV
. PUNCT
  SPACE
It PRON
can AUX
also ADV
be AUX
prepared VERB
as SCONJ
a DET
tea NOUN
. PUNCT
Good ADJ
luck NOUN
, PUNCT
JohnNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59455From NUM
: PUNCT
Randy_Faneuf@vos.stratus.comSubject NUM
: PUNCT
Urine ADJ
analysis NOUN
Someone PRON
please INTJ
help VERB
me PRON
. PUNCT
I PRON
am AUX
searching VERB
to PART
find VERB
out ADP
( PUNCT
as ADV
many ADJ
others NOUN
may)an VERB
absolute ADJ
' PUNCT
cure NOUN
' PUNCT
to ADP
removing VERB
all DET
detectable ADJ
traces NOUN
of ADP
marijuana PROPN
froma PROPN
persons NOUN
body NOUN
. PUNCT
Is AUX
there PRON
a DET
chemical ADJ
or CCONJ
natural ADJ
substance NOUN
that PRON
can AUX
beingested VERB
or CCONJ
added VERB
to PART
urine VERB
to PART
make VERB
it PRON
undetectable ADJ
in ADP
urine ADJ
analysis NOUN
. PUNCT
If SCONJ
so ADV
where ADV
can AUX
these DET
substances NOUN
be AUX
found VERB
. PUNCT
             SPACE
If SCONJ
you PRON
know VERB
this DET
information NOUN
, PUNCT
please INTJ
Email VERB
me PRON
directly ADV
                             SPACE
Thank VERB
You PRON
Kindly ADV
for ADP
your PRON
support NOUN
, PUNCT
                         SPACE
RandyNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59456From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
Septoplasty PROPN
In ADP
article NOUN
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf PROPN
) PUNCT
writes:>In PROPN
article NOUN
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller PROPN
) PUNCT
writes:>>(I've NOUN
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn't>>really ADV
help VERB
them).>>>>I NOUN
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see NOUN
some>>relief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
of>>that ADP
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved.>Did NOUN
your PRON
ENT PROPN
also ADV
tell VERB
you PRON
that SCONJ
this DET
procedure NOUN
may AUX
remove VERB
warts NOUN
from ADP
the DET
soles NOUN
> X
of ADP
your PRON
feet NOUN
and CCONJ
improve VERB
your PRON
sex NOUN
life?Actually ADV
, PUNCT
severe ADJ
headaches NOUN
due ADJ
to ADP
stopped VERB
up ADP
sinuses NOUN
( PUNCT
plugged VERB
ostia NOUN
) PUNCT
arepossible ADJ
, PUNCT
and CCONJ
sinus NOUN
surgery NOUN
which PRON
widens VERB
the DET
ostia NOUN
- PUNCT
from ADP
the DET
normal ADJ
2 NUM
mm PROPN
to ADP
about ADV
10 NUM
mm NOUN
- PUNCT
should AUX
relieve VERB
this DET
. PUNCT
  SPACE
There PRON
are AUX
non ADJ
- ADJ
surgical ADJ
ways NOUN
, PUNCT
however ADV
, PUNCT
to PART
keep VERB
the DET
ostia NOUN
open ADJ
( PUNCT
however ADV
, PUNCT
in ADP
a DET
few ADJ
individuals NOUN
, PUNCT
theirostia PROPN
are AUX
naturally ADV
very ADV
small ADJ
) PUNCT
, PUNCT
and CCONJ
Dr. PROPN
Ivker PROPN
's PART
book NOUN
talks NOUN
about ADP
this DET
. PUNCT
The DET
underlying ADJ
cause NOUN
of ADP
chronic ADJ
sinusitis NOUN
is AUX
NOT ADV
cured VERB
by ADP
this DET
kind NOUN
ofsinus NOUN
surgery NOUN
, PUNCT
though ADV
. PUNCT
About ADP
asthma PROPN
, PUNCT
that DET
's AUX
a DET
little ADJ
more ADV
controversial ADJ
. PUNCT
  SPACE
Dr. PROPN
Ivker PROPN
, PUNCT
in ADP
his PRON
book,"Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
* PUNCT
speculates VERB
* PUNCT
( PUNCT
and CCONJ
says VERB
it PRON
's AUX
not PART
proven VERB
) PUNCT
, PUNCT
that SCONJ
many ADJ
casesof NOUN
asthma NOUN
are AUX
triggered VERB
by ADP
chronic ADJ
sinusitis NOUN
due ADP
to ADP
the DET
excessive ADJ
drainage(postnasal PROPN
drip NOUN
) PUNCT
from ADP
the DET
sinuses NOUN
. PUNCT
  SPACE
He PRON
's AUX
had AUX
many ADJ
patients NOUN
who PRON
've AUX
foundrelief NOUN
from ADP
asthma NOUN
when ADV
the DET
chronic ADJ
sinusitis NOUN
is AUX
reduced VERB
or CCONJ
eliminated VERB
-not PUNCT
clinical ADJ
proof NOUN
, PUNCT
but CCONJ
compelling ADJ
anecdotal ADJ
information NOUN
of ADP
this DET
speculation NOUN
. PUNCT
Before ADP
doing VERB
any DET
sinus NOUN
surgery NOUN
, PUNCT
first ADV
get AUX
THE DET
BOOK PROPN
- PUNCT
it PRON
discusses VERB
surgery NOUN
, PUNCT
as ADV
well ADV
as SCONJ
a DET
good ADJ
non ADJ
- ADJ
surgical ADJ
treatment NOUN
program NOUN
for ADP
chronic ADJ
sinusitis NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59457From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
What PRON
's AUX
the DET
origin NOUN
of ADP
" PUNCT
STAT?"In NOUN
article NOUN
< X
1993Apr28.100131.157926@zeus.calpoly.edu NUM
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>The ADJ
term NOUN
" PUNCT
stat NOUN
" PUNCT
is AUX
used VERB
not PART
only ADV
in ADP
medicine NOUN
, PUNCT
but CCONJ
is AUX
a DET
commonly ADV
used VERB
> X
indicator NOUN
that SCONJ
something PRON
is AUX
urgent ADJ
. PUNCT
  SPACE
> X
> X
Does AUX
anyone PRON
know VERB
where ADV
it PRON
came VERB
from ADP
? PUNCT
  SPACE
My PRON
dictionary NOUN
was AUX
not PART
helpful.>>-- PUNCT
From ADP
the DET
word NOUN
' PUNCT
statim NOUN
' PUNCT
( PUNCT
Latin PROPN
, PUNCT
I PRON
think VERB
) PUNCT
, PUNCT
meaning VERB
immediately.=========================Howard ADP
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59458From NUM
: PUNCT
hartman@informix.com X
( PUNCT
Robert PROPN
Hartman)Subject NUM
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
1rjn0eINNnqn@MINERVA.CIS.YALE.EDU NUM
> X
wiesel-elisha@yale.edu NUM
( PUNCT
Elisha PROPN
Wiesel PROPN
) PUNCT
writes:>Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
colon NOUN
> X
cleansing NOUN
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
No ADV
doubt ADV
the DET
sci.med NOUN
* PUNCT
folks NOUN
are AUX
getting VERB
out ADP
their PRON
flamethrowers NOUN
. PUNCT
  SPACE
I'mrather PROPN
certain ADJ
that SCONJ
the DET
information NOUN
you PRON
got VERB
was AUX
not PART
medical ADJ
literaturein NOUN
the DET
accepted VERB
academic ADJ
/ SYM
scientific ADJ
journals NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
the DET
righteous ADJ
amongthem NOUN
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
. PUNCT
Also ADV
, PUNCT
insofar ADV
as SCONJ
it PRON
does AUX
n't PART
conform VERB
to ADP
the DET
accepted VERB
medical ADJ
presumptionthat PROPN
it PRON
just ADV
does AUX
n't PART
matter VERB
what PRON
you PRON
eat VERB
, PUNCT
and CCONJ
that SCONJ
we PRON
can AUX
think VERB
of ADP
theGI PROPN
tract NOUN
as SCONJ
a DET
black ADJ
box NOUN
in ADP
which PRON
nothing PRON
ever ADV
goes VERB
wrong ADJ
( PUNCT
except SCONJ
formaybe PROPN
cancer NOUN
and CCONJ
ulcers NOUN
) PUNCT
, PUNCT
the DET
righteous ADJ
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
too ADV
. PUNCT
Then ADV
there PRON
'll AUX
be AUX
the DET
ones NOUN
who PRON
call VERB
your PRON
doctor NOUN
a DET
raving NOUN
quack NOUN
, PUNCT
eventhough VERB
he PRON
, PUNCT
like SCONJ
Linus PROPN
Pauling PROPN
, PUNCT
is AUX
lucid ADJ
and CCONJ
robust ADJ
well ADV
into ADP
hisnineties NOUN
-- PUNCT
but CCONJ
nevermind VERB
about ADP
that DET
. PUNCT
  SPACE
He PRON
should AUX
n't PART
charge VERB
for ADP
hisequipment NOUN
and CCONJ
supplies NOUN
, PUNCT
since SCONJ
they PRON
're AUX
no ADV
doubt NOUN
not PART
approved VERB
by ADP
theFDA PROPN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
with ADP
FDA PROPN
approval NOUN
an DET
MD PROPN
or CCONJ
pharmaceutical NOUN
company NOUN
cancharge NOUN
whatever PRON
they PRON
can AUX
get AUX
for ADP
such ADJ
safe ADJ
and CCONJ
effective ADJ
treatments NOUN
asthalidomide VERB
. PUNCT
  SPACE
But CCONJ
nevermind NOUN
about ADP
that DET
either ADV
. PUNCT
Unfortunately ADV
, PUNCT
you PRON
dared VERB
to PART
step VERB
into ADP
the DET
sacred ADJ
turf NOUN
of ADP
Net PROPN
. PUNCT
Medical ADJ
. PUNCT
Discussion NOUN
without ADP
a DET
credential ADJ
and CCONJ
without ADP
understanding VERB
that SCONJ
therighteous ADJ
among ADP
them PRON
will AUX
make VERB
certain ADJ
that SCONJ
you PRON
are AUX
suitably ADV
denouncedbefore ADV
dismissing VERB
you PRON
as SCONJ
a DET
fool NOUN
. PUNCT
But CCONJ
maybe ADV
somebody PRON
without ADP
such DET
a DET
huge ADJ
chip NOUN
on ADP
their PRON
shoulder NOUN
willsend VERB
you PRON
some DET
reasonable ADJ
responses NOUN
by ADP
e PROPN
- PUNCT
mail.1/2 PROPN
; PUNCT
^ PROPN
) PUNCT
  SPACE
1/2 NUM
; PUNCT
^(Oh ADV
yes INTJ
, PUNCT
I PRON
did AUX
have AUX
a DET
point NOUN
. PUNCT
  SPACE
A DET
few ADJ
years NOUN
ago ADV
an DET
MD NOUN
with ADP
a DET
thrivingpractice NOUN
in ADP
a DET
very ADV
wealthy ADJ
part NOUN
of ADP
Silicon PROPN
Valley PROPN
once ADV
recommended VERB
thatI PROPN
take VERB
such ADJ
treatments NOUN
to PART
clear VERB
up ADP
a DET
skin NOUN
condition NOUN
. PUNCT
  SPACE
( PUNCT
Not PART
through ADP
hisoffice NOUN
, PUNCT
I PRON
might AUX
add VERB
. PUNCT
) PUNCT
  SPACE
Although SCONJ
I PRON
'm AUX
sure ADJ
that DET
's AUX
not PART
conclusive ADJ
, PUNCT
it PRON
wassure VERB
an DET
unusual ADJ
prescription!-rNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59459From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesIn PROPN
article NOUN
< X
1993Apr29.003406.55029@ux1.cts.eiu.edu NUM
> X
, PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes VERB
: PUNCT
> X
A DET
student NOUN
told VERB
me PRON
today NOUN
that SCONJ
she PRON
has AUX
been AUX
diagnosed VERB
with ADP
kidney NOUN
stones NOUN
, PUNCT
a DET
> X
cyst NOUN
on ADP
one NUM
kidney NOUN
, PUNCT
and CCONJ
a DET
kidney NOUN
infection NOUN
. PUNCT
  SPACE
She PRON
was AUX
upset ADJ
because SCONJ
her PRON
> X
condition NOUN
had AUX
been AUX
misdiagnosed VERB
since SCONJ
last ADJ
fall NOUN
, PUNCT
and CCONJ
she PRON
has AUX
been AUX
ill ADV
all DET
> X
this DET
time NOUN
. PUNCT
  SPACE
During ADP
her PRON
most ADV
recent ADJ
doctor NOUN
's PART
appointment NOUN
at ADP
her PRON
parents NOUN
' PART
> X
HMO PROPN
clinic NOUN
, PUNCT
she PRON
said VERB
that SCONJ
about ADP
FORTY PROPN
! PUNCT
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
of ADP
her PRON
kidney NOUN
. PUNCT
> X
When ADV
she PRON
asked VERB
why ADV
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
were AUX
being AUX
made VERB
, PUNCT
she PRON
was AUX
told VERB
by ADP
a DET
> X
technician NOUN
that SCONJ
they PRON
need VERB
to PART
see VERB
the DET
area NOUN
from ADP
different ADJ
views NOUN
, PUNCT
but CCONJ
she PRON
> X
says VERB
that SCONJ
about ADV
five NUM
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
from ADP
EACH PROPN
angle NOUN
. PUNCT
  SPACE
She PRON
could AUX
n't PART
help VERB
> X
feeling VERB
that SCONJ
something PRON
must AUX
be AUX
wrong ADJ
with ADP
the DET
procedure NOUN
or CCONJ
something PRON
. PUNCT
  SPACE
She PRON
> X
is AUX
a DET
pre ADJ
- ADJ
med ADJ
student NOUN
and CCONJ
feels VERB
she PRON
could AUX
have AUX
understood VERB
what PRON
was AUX
> X
happening VERB
if SCONJ
someone PRON
would AUX
have AUX
explained VERB
. PUNCT
  SPACE
When ADV
nobody PRON
would AUX
, PUNCT
she PRON
got VERB
> X
worried VERB
. PUNCT
> X
	 SPACE
Also ADV
, PUNCT
she PRON
is AUX
told VERB
that SCONJ
thre PROPN
are AUX
300 NUM
! PUNCT
surgery NOUN
patients NOUN
ahead ADV
of ADP
her PRON
> X
and CCONJ
that SCONJ
they PRON
can AUX
not PART
do AUX
surgery NOUN
until ADP
August PROPN
or CCONJ
so ADV
. PUNCT
  SPACE
It PRON
is AUX
now ADV
April PROPN
... PUNCT
> X
She PRON
is AUX
supposed VERB
to PART
rest VERB
a DET
lot NOUN
and CCONJ
drink NOUN
fluids NOUN
. PUNCT
  SPACE
But CCONJ
she PRON
has AUX
to PART
go VERB
to ADP
> X
classes NOUN
. PUNCT
  SPACE
She PRON
wonders VERB
why ADV
they PRON
have AUX
given VERB
her PRON
no DET
medicine NOUN
. PUNCT
  SPACE
She PRON
plans VERB
to PART
> X
call VERB
back ADP
her PRON
doctor NOUN
's PART
office NOUN
/ SYM
clinic NOUN
and CCONJ
try VERB
to PART
get AUX
answers NOUN
to ADP
these DET
> NOUN
questions NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
told VERB
her PRON
I PRON
would AUX
also ADV
write VERB
in ADP
to ADP
sci.med VERB
and CCONJ
see VERB
what PRON
I PRON
> X
could AUX
find VERB
out ADP
about ADP
why ADV
there PRON
were AUX
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
and CCONJ
whether SCONJ
it PRON
seems VERB
> X
o.k PROPN
. PROPN
to PART
wait VERB
in ADP
line NOUN
3 NUM
or CCONJ
more ADJ
months NOUN
for ADP
surgery NOUN
for ADP
something PRON
like SCONJ
this DET
> X
or CCONJ
whether SCONJ
she PRON
should AUX
be AUX
looking VERB
elsewhere ADV
for ADP
her PRON
care NOUN
. PUNCT
  SPACE
She PRON
does AUX
plan VERB
to PART
> X
get AUX
a DET
second ADJ
opinion NOUN
, PUNCT
too ADV
. PUNCT
> X
> X
	 SPACE
I PRON
will AUX
pass VERB
info NOUN
on ADP
to ADP
her PRON
. PUNCT
  SPACE
It PRON
never ADV
hurts VERB
to PART
get AUX
information NOUN
> X
from ADP
more ADJ
than SCONJ
one NUM
source NOUN
. PUNCT
  SPACE
> X
> X
You PRON
can AUX
e NOUN
- VERB
mail VERB
me PRON
or CCONJ
post VERB
. PUNCT
> X
> X
Thanks INTJ
. PUNCT
> X
> X
AliceMy PROPN
opinion(for ADP
what PRON
it PRON
's AUX
worth ADJ
) PUNCT
is AUX
that SCONJ
40 NUM
x NOUN
- NOUN
rays NOUN
is AUX
* PUNCT
way NOUN
* PUNCT
too ADV
many ADJ
. PUNCT
  SPACE
Guidleines NOUN
have AUX
been AUX
set VERB
on ADP
the DET
number NOUN
of ADP
dental ADJ
x NOUN
- NOUN
rays NOUN
and CCONJ
chest NOUN
x NOUN
- PUNCT
rays NOUN
that SCONJ
one PRON
should AUX
have AUX
over ADP
a DET
given VERB
period NOUN
of ADP
time NOUN
because SCONJ
of ADP
all DET
the DET
environmental ADJ
factors NOUN
that PRON
can AUX
cause VERB
cancer NOUN
in ADP
humans NOUN
, PUNCT
ionizing VERB
radiation NOUN
is AUX
one NUM
of ADP
the DET
most ADV
potent(splits PROPN
DNA NOUN
and CCONJ
causes VERB
hydroxyl NOUN
free ADJ
radical ADJ
formation NOUN
in ADP
tissue NOUN
cells NOUN
) PUNCT
. PUNCT
  SPACE
Ultasound(like ADP
that DET
used VERB
in ADP
seeing VERB
the DET
fetus NOUN
in ADP
the DET
uterus NOUN
) PUNCT
has AUX
been AUX
shown VERB
to PART
be AUX
extremely ADV
good ADJ
at ADP
picking VERB
up ADP
tumors NOUN
in ADP
the DET
prostate NOUN
and CCONJ
gallstones NOUN
in ADP
the DET
gallbladder NOUN
. PUNCT
  SPACE
But CCONJ
kidney NOUN
tissue NOUN
may AUX
be AUX
too ADV
dense ADJ
for ADP
ultrasound NOUN
to PART
work VERB
for ADP
kidney NOUN
stones(any NUM
radiologists NOUN
care VERB
to ADP
comment?).Most PROPN
stones NOUN
will AUX
pass(but ADP
it PRON
's AUX
a DET
very ADV
painful ADJ
process NOUN
) PUNCT
. PUNCT
  SPACE
Unlike ADP
gallstones NOUN
, PUNCT
I PRON
do AUX
n't PART
think VERB
that SCONJ
there PRON
are AUX
many ADJ
drugs NOUN
that PRON
can AUX
help VERB
" PUNCT
dissolve VERB
" PUNCT
the DET
kidney NOUN
stone(which PROPN
is AUX
probably ADV
calcium NOUN
- PUNCT
oxalate NOUN
) PUNCT
. PUNCT
  SPACE
Vitamin PROPN
C PROPN
and CCONJ
magnesium NOUN
have AUX
worked VERB
in ADP
rabbits NOUN
to PART
remove VERB
calcium NOUN
from ADP
calcified ADJ
plaques NOUN
in ADP
the DET
aterial ADJ
wall NOUN
. PUNCT
  SPACE
I PRON
have AUX
no DET
idea NOUN
if SCONJ
a DET
diet NOUN
change NOUN
or CCONJ
supplementation NOUN
could AUX
speed VERB
up ADP
the DET
process NOUN
of ADP
kidney NOUN
stone NOUN
passage(but NOUN
I PRON
'm AUX
pretty ADV
confident ADJ
that SCONJ
a DET
diet NOUN
change NOUN
and/or CCONJ
supplementation NOUN
can AUX
prevent VERB
a DET
reoccurance NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
surgery NOUN
is AUX
being AUX
contemplated VERB
, PUNCT
the DET
stone NOUN
must AUX
be AUX
in ADP
the DET
kidney NOUN
tubule NOUN
. PUNCT
  SPACE
A DET
second ADJ
opinion NOUN
is AUX
a DET
good ADJ
idea NOUN
because SCONJ
there PRON
are AUX
better(less PROPN
damaging ADJ
) PUNCT
ways NOUN
to PART
break VERB
up ADP
the DET
stone NOUN
if SCONJ
it PRON
's AUX
logged VERB
within ADP
the DET
kidney(sonic PROPN
blasts NOUN
) PUNCT
. PUNCT
  SPACE
HMO PROPN
's PART
are AUX
notorious ADJ
for ADP
conservative ADJ
care NOUN
and CCONJ
long ADJ
waits NOUN
for ADP
expensvie NOUN
treatments NOUN
. PUNCT
  SPACE
My PRON
condolences NOUN
to ADP
your PRON
friend NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59460From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
EarwaxWhat PROPN
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leaveit VERB
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
outevery VERB
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage NOUN
your PRON
eardrums?Are NOUN
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked?StephenNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59461From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
enea1-270493135255@enea.apple.com X
> X
enea1@applelink.apple.com PROPN
( PUNCT
Horace PROPN
Enea PROPN
) PUNCT
writes:>Can VERB
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
disease NOUN
> X
and CCONJ
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis PROPN
vs ADP
chronic PROPN
> X
hepatitis NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
there PRON
is AUX
a DET
general ADJ
distinction NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
there PRON
aretwo VERB
classes NOUN
of ADP
chronic ADJ
hepatitis NOUN
: PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
and CCONJ
chronicpersistent PROPN
hepatitis PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
think VERB
of ADP
any DET
other ADJ
disease NOUN
where ADV
theterm ADJ
persistent NOUN
is AUX
used VERB
with ADP
or CCONJ
in ADP
preference NOUN
to ADP
chronic NOUN
. PUNCT
Much ADV
as SCONJ
these DET
two NUM
terms NOUN
" PUNCT
chronic ADJ
active ADJ
" PUNCT
and CCONJ
" PUNCT
chronic ADJ
persistent"sound NOUN
fuzzy NOUN
, PUNCT
the DET
actual ADJ
distinction NOUN
between ADP
the DET
two NUM
conditionsis NOUN
often ADV
fairly ADV
fuzzy ADJ
as SCONJ
well.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59462From NUM
: PUNCT
kring@efes.physik.uni-kl.de PROPN
( PUNCT
Thomas PROPN
Kettenring)Subject PROPN
: PUNCT
Old PROPN
Sermon PROPN
( PUNCT
was AUX
: PUNCT
Krillean PROPN
Photography)In NOUN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>FLAME VERB
ON>>Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>photography PUNCT
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
> X
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
> X
measure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADP
there.>>I PUNCT
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>I PROPN
am AUX
convinced VERB
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics.>>Especially ADV
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not PART
> X
drop VERB
off ADP
the DET
edge NOUN
of ADP
the DET
earth.>>FLAME PROPN
OFF PROPN
, PUNCT
or CCONJ
end NOUN
sermon NOUN
: PUNCT
-)We PUNCT
know VERB
that DET
sermon NOUN
. PUNCT
  SPACE
It PRON
is AUX
posted VERB
roughly ADV
every DET
month NOUN
or CCONJ
so ADV
by ADP
differentpersons NOUN
, PUNCT
and CCONJ
that DET
does AUX
n't PART
make VERB
it PRON
any ADV
better ADV
. PUNCT
How ADV
did AUX
you PRON
get AUX
the DET
idea NOUN
that SCONJ
skeptics NOUN
are AUX
closed VERB
- PUNCT
minded ADJ
? PUNCT
  SPACE
Why ADV
do AUX
n't PART
youconsider VERB
the DET
possibility NOUN
that SCONJ
they PRON
came VERB
to ADP
their PRON
conclusions NOUN
by ADP
theproper NOUN
methods NOUN
? PUNCT
  SPACE
Besides ADV
, PUNCT
one PRON
can AUX
come VERB
to ADP
a DET
conclusion NOUN
without ADP
closingone NOUN
's PART
mind NOUN
to ADP
other ADJ
possibilities NOUN
. PUNCT
I PRON
you PRON
do AUX
n't PART
agree VERB
with ADP
a DET
person NOUN
, PUNCT
please INTJ
ask VERB
him PRON
why ADV
he PRON
thinks VERB
like SCONJ
that DET
, PUNCT
instead ADV
of ADP
insulting VERB
him PRON
. PUNCT
  SPACE
Perhaps ADV
he PRON
's AUX
right ADJ
. PUNCT
  SPACE
Follow VERB
your PRON
own ADJ
advice NOUN
, PUNCT
be AUX
open ADJ
- PUNCT
minded ADJ
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
post VERB
a DET
bit NOUN
of ADP
evidence NOUN
for ADP
your PRON
claims NOUN
, PUNCT
I PRON
'll AUX
complain VERB
thatit PROPN
's AUX
always ADV
those DET
" PUNCT
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever ADJ
" PUNCT
types NOUN
who PRON
narrow VERB
- PUNCT
mindedly ADJ
judge VERB
others NOUN
without ADP
knowing VERB
their PRON
motives.--thomas NUM
kettenring NOUN
, PUNCT
3 NUM
dan PROPN
, PUNCT
kaiserslautern PROPN
, PUNCT
germanyThe PROPN
extraterrestrials NOUN
do AUX
n't PART
even ADV
know VERB
this DET
planet NOUN
has AUX
native ADJ
inhabitants NOUN
. PUNCT
Their PRON
government NOUN
does AUX
n't PART
tell VERB
them PRON
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59463From NUM
: PUNCT
bpeters@oasys.dt.navy.mil NUM
( PUNCT
Brenda PROPN
Peters)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser NOUN
printers??In PROPN
sci.med NUM
, PUNCT
rdd@uts.ipp-garching.mpg.de PROPN
( PUNCT
Reinhard PROPN
Drube PROPN
) PUNCT
writes:>Hello,>>does VERB
anyone PRON
know VERB
about ADP
allergic ADJ
reactions NOUN
caused VERB
by ADP
the DET
developer NOUN
/ SYM
toner NOUN
> X
of ADP
laser NOUN
printers NOUN
? PUNCT
What PRON
chemical NOUN
stuff NOUN
is AUX
involved?>>Thanks NOUN
in ADP
advance!>>Reinhard>>email PROPN
: PUNCT
rdd@ibma.ipp-garching.mpg.deDo PUNCT
I PRON
ever ADV
! PUNCT
! PUNCT
! PUNCT
! PUNCT
! PUNCT
! PUNCT
  SPACE
After ADP
2 NUM
years NOUN
of ADP
having VERB
health NOUN
problems NOUN
that PRON
had AUX
beencleared VERB
up ADP
w PROPN
/ SYM
allery NOUN
shots NOUN
, PUNCT
and CCONJ
not PART
knowing VERB
why ADV
, PUNCT
I PRON
went VERB
and CCONJ
was AUX
re VERB
- VERB
tested VERB
. PUNCT
I PRON
actually ADV
did AUX
better ADV
than SCONJ
when ADV
I PRON
had AUX
been AUX
tested VERB
2 NUM
years NOUN
ago ADV
.... PUNCT
Then ADV
putting VERB
2 NUM
+ SYM
2 NUM
together ADV
, PUNCT
I PRON
realized VERB
that SCONJ
it PRON
all DET
started VERB
back ADV
upwhen PROPN
the DET
laser NOUN
printer NOUN
came VERB
into ADP
the DET
office NOUN
. PUNCT
  SPACE
I PRON
kept VERB
track NOUN
of ADP
the DET
usage NOUN
, PUNCT
andon PROPN
hi INTJ
use NOUN
days NOUN
, PUNCT
I PRON
was AUX
worse ADJ
. PUNCT
  SPACE
I PRON
got VERB
better ADJ
over ADP
the DET
weekends NOUN
.... PUNCT
The DET
laser NOUN
printer NOUN
is AUX
gone VERB
, PUNCT
I PRON
'm AUX
100 NUM
% NOUN
better ADJ
! PUNCT
! PUNCT
! PUNCT
..... PUNCT
Whether SCONJ
it PRON
is AUX
the DET
tonerdust NOUN
or CCONJ
chemicals NOUN
, PUNCT
I PRON
do AUX
nt PART
know VERB
( PUNCT
I PRON
am AUX
highly ADV
allergic ADJ
to ADP
dust NOUN
... PUNCT
) PUNCT
, PUNCT
butit NOUN
definitely ADV
was AUX
the DET
laser NOUN
printer NOUN
.... PUNCT
		      SPACE
brenda PROPN
peters PROPN
		      SPACE
carderock PROPN
div PROPN
, PUNCT
nswc PROPN
, PUNCT
david PROPN
taylor PROPN
model PROPN
basin PROPN
		      SPACE
bethesda PROPN
, PUNCT
md PROPN
  SPACE
20084 NUM
		      SPACE
e NOUN
- NOUN
mail NOUN
: PUNCT
   SPACE
cape@dtvms.dt.navy.mil NUM
				  SPACE
or CCONJ
				  SPACE
bpeters@oasys.dt.navy.milNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59464From NUM
: PUNCT
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister)Subject PROPN
: PUNCT
Vitamin PROPN
B6 PROPN
dosesForgive ADJ
me PRON
, PUNCT
but CCONJ
just ADV
the DET
other ADJ
day NOUN
I PRON
read VERB
on ADP
some DET
newsgroup NOUN
or CCONJ
other ADJ
aphysician PROPN
's PART
posting VERB
about ADP
the DET
theraputic ADJ
uses NOUN
of ADP
vitamin NOUN
B6 NOUN
. PUNCT
  SPACE
I PRON
can'tseem VERB
to PART
locate VERB
the DET
article NOUN
, PUNCT
but CCONJ
I PRON
recall VERB
there PRON
was AUX
mention NOUN
of ADP
some DET
safelimits NOUN
. PUNCT
I PRON
looked VERB
at ADP
a DET
" PUNCT
Balanced PROPN
100 NUM
" PUNCT
time NOUN
release NOUN
formulation NOUN
from ADP
Walgreen'sand PROPN
noted VERB
that SCONJ
the DET
100 NUM
mg NOUN
of ADP
B6 PROPN
was AUX
some DET
thousands NOUN
times NOUN
the DET
RDA PROPN
. PUNCT
  SPACE
Isthis PROPN
safe?!?.Also PROPN
what PRON
was AUX
the DET
condition NOUN
that PRON
B6 PROPN
was AUX
theraputic ADJ
for?Mail PROPN
would AUX
be AUX
just ADV
fine ADJ
if SCONJ
you PRON
do AUX
n't PART
want VERB
to PART
clog VERB
the DET
net NOUN
. PUNCT
Thanks NOUN
, PUNCT
Leon PROPN
Traister PROPN
( PUNCT
lmtra@uts.amdahl.com)Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59465From NUM
: PUNCT
spl@pitstop.ucsd.edu PROPN
( PUNCT
Steve PROPN
Lamont)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C64FuM.5B8@news.claremont.edu ADJ
> X
ebrandt@jarthur.claremont.edu PROPN
( PUNCT
Eli PROPN
Brandt PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
MMEYER.93Apr26102056@m2.dseg.ti.com X
> X
mmeyer@m2.dseg.ti.com PROPN
( PUNCT
Mark PROPN
Meyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
	 SPACE
Besides ADV
, PUNCT
Kirilian ADJ
photography NOUN
is AUX
actually ADV
photography NOUN
of ADP
my>>friend PROPN
's PART
two NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
Kiril PROPN
. PUNCT
  SPACE
Perhaps ADV
you PRON
meant VERB
" PUNCT
Kirlian"?>>I NUM
think VERB
it PRON
was AUX
a DET
typo NOUN
for ADP
" PUNCT
Karelian ADJ
photography NOUN
" PUNCT
, PUNCT
which PRON
is AUX
the DET
> X
practice NOUN
of ADP
taking VERB
pictures NOUN
of ADP
either CCONJ
Finns PROPN
or CCONJ
Russians PROPN
, PUNCT
depending VERB
> X
on ADP
whom PRON
one PRON
asks VERB
. PUNCT
Think VERB
we PRON
can AUX
lose VERB
the DET
sci.image.processing NOUN
group NOUN
from ADP
this DET
thread NOUN
, PUNCT
folks?Thanks VERB
bunches NOUN
. PUNCT
							 SPACE
spl-- NOUN
Steve PROPN
Lamont PROPN
, PUNCT
SciViGuy PROPN
-- PUNCT
( PUNCT
619 NUM
) PUNCT
534 NUM
- SYM
7968 NUM
-- PUNCT
spl@szechuan.ucsd.eduSan PROPN
Diego PROPN
Microscopy PROPN
and CCONJ
Imaging PROPN
Resource PROPN
/ SYM
UC PROPN
San PROPN
Diego PROPN
/ SYM
La PROPN
Jolla PROPN
, PUNCT
CA PROPN
92093 NUM
- SYM
0608"My NUM
other ADJ
car NOUN
is AUX
a DET
car NOUN
, PUNCT
too ADV
. PUNCT
" PUNCT
                 SPACE
- PUNCT
Bumper PROPN
strip NOUN
seen VERB
on ADP
I-805Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59466From NUM
: PUNCT
rhca80@melton.sps.mot.com PROPN
( PUNCT
Henry PROPN
Melton)Subject PROPN
: PUNCT
Chromium NOUN
as SCONJ
dietary ADJ
suppliment NOUN
for ADP
weight NOUN
lossMy PROPN
wife NOUN
has AUX
requested VERB
that SCONJ
I PRON
poll VERB
the DET
Sages NOUN
of ADP
Usenet PROPN
to PART
see VERB
what PRON
isknown ADJ
about ADP
the DET
use NOUN
of ADP
chromium NOUN
in ADP
weight NOUN
- PUNCT
control NOUN
diet NOUN
suppliments NOUN
. PUNCT
She PRON
has AUX
seen VERB
multiple ADJ
products NOUN
advertising VERB
it PRON
and CCONJ
would AUX
like VERB
any DET
kindreal ADJ
information NOUN
. PUNCT
My PRON
first ADJ
impulse NOUN
was AUX
" PUNCT
Yuck PROPN
! PUNCT
a DET
metal NOUN
! PUNCT
" PUNCT
but CCONJ
I PRON
have AUX
zero NUM
data NOUN
on ADP
it PRON
. PUNCT
What PRON
do AUX
you PRON
know?-- PUNCT
Henry PROPN
Melton PROPN
rhca80@melton.sps.mot.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59467From NUM
: PUNCT
gtclark@festival.ed.ac.uk PROPN
( PUNCT
G NOUN
T NOUN
Clark)Subject NOUN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesmsnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes:>Does VERB
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someone PRON
> X
was AUX
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
would AUX
> X
be AUX
liable ADJ
to PART
happen VERB
to ADP
the DET
person?>(Just NOUN
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
my PRON
> X
house PROPN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case'.)>Rebecca NOUN
	 SPACE
Millipedes PROPN
, PUNCT
I PRON
understand VERB
, PUNCT
are AUX
vegetarian ADJ
, PUNCT
and CCONJ
therefore ADV
almostcertainly ADV
will AUX
not PART
bite VERB
and CCONJ
are AUX
not PART
poisonous ADJ
. PUNCT
Centipedes VERB
arecarnivorous ADJ
, PUNCT
and CCONJ
although SCONJ
I PRON
do AUX
n't PART
have AUX
any DET
absolute ADJ
knowledge NOUN
on ADP
this DET
, PUNCT
Iwould AUX
tend VERB
to PART
think VERB
that SCONJ
you PRON
're AUX
in ADP
no DET
danger NOUN
from ADP
anything PRON
but CCONJ
aconcerted VERB
assault NOUN
by ADP
several ADJ
million NUM
of ADP
them PRON
. PUNCT
			 SPACE
G.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59468From NUM
: PUNCT
ttrusk@its.mcw.edu NOUN
( PUNCT
Thomas PROPN
Trusk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C67G01.2J1@efi.com X
> X
alanm@efi.com X
( PUNCT
Alan PROPN
Morgan PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
> X
  SPACE
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>>>I NOUN
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to>>so PROPN
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just>>as NOUN
likely ADJ
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be>>quite VERB
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>Oooooh NOUN
. PUNCT
  SPACE
Bad ADJ
example NOUN
. PUNCT
  SPACE
I PRON
'm AUX
an DET
atheist.>This NOUN
is AUX
not PART
flame ADJ
, PUNCT
or CCONJ
abuse NOUN
, PUNCT
nor CCONJ
do AUX
I PRON
want VERB
to PART
start VERB
another DET
thread NOUN
( PUNCT
thisis NOUN
, PUNCT
after ADV
all ADV
, PUNCT
supposed VERB
to PART
be AUX
about ADP
IMAGE NOUN
PROCESSING).BUT NOUN
, PUNCT
to PART
say VERB
you PRON
're AUX
an DET
atheist NOUN
is AUX
to PART
suggest VERB
you PRON
have AUX
PROOF PROPN
there PRON
is AUX
NO DET
GOD.To NOUN
be AUX
a DET
politically ADV
- PUNCT
correct ADJ
skeptic NOUN
, PUNCT
better ADJ
to PART
go VERB
with ADP
agnostic NOUN
, PUNCT
like SCONJ
me PRON
! PUNCT
: PUNCT
) PUNCT
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
* PUNCT
Dr PROPN
. PUNCT
Thomas PROPN
Trusk PROPN
                    SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Dept PROPN
. NOUN
of ADP
Cellular PROPN
Biology PROPN
& CCONJ
Anatomy PROPN
* PUNCT
Email NOUN
to PART
ttrusk@its.mcw.edu VERB
  SPACE
* PUNCT
* PUNCT
Medical PROPN
College PROPN
of ADP
Wisconsin PROPN
        SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Milwaukee PROPN
, PUNCT
WI PROPN
  SPACE
53226 NUM
                SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
( PUNCT
414 NUM
) PUNCT
257 NUM
- SYM
8504 NUM
                      SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59469From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Schatzki PROPN
Ring/ PROPN
PVC'sIn NUM
article NOUN
< X
1993Apr27.180334@betsy.gsfc.nasa.gov>,ohandley@betsy.gsfc.nasa.gov NUM
wrote VERB
: PUNCT
> X
> X
[ PUNCT
summarized]A NOUN
person NOUN
with ADP
a DET
Schatzki PROPN
's PART
ring NOUN
( PUNCT
a DET
membrane NOUN
partially ADV
blocking VERB
the DET
espphagus NOUN
) PUNCT
has AUX
worsening VERB
dysphagia PROPN
( PUNCT
difficulty NOUN
swallowing VERB
) PUNCT
and CCONJ
the DET
doctor NOUN
proposes VERB
dilation NOUN
by ADP
balloow NOUN
or CCONJ
bougie NOUN
( PUNCT
using VERB
an DET
inflatableballoon NOUN
to PART
rupture VERB
the DET
ring NOUN
or CCONJ
a DET
rubber NOUN
hose NOUN
to PART
push VERB
through ADP
it PRON
. PUNCT
  SPACE
Question NOUN
: PUNCT
is AUX
balloon NOUN
dilation NOUN
safe ADJ
, PUNCT
common ADJ
, PUNCT
and CCONJ
indicated VERB
? PUNCT
  SPACE
It PRON
soundspretty ADV
invasive ADJ
. PUNCT
> X
[ PUNCT
end NOUN
summary]Yes PROPN
, PUNCT
this DET
is AUX
a DET
common ADJ
and CCONJ
safe ADJ
procedure NOUN
. PUNCT
  SPACE
The DET
majority NOUN
of ADP
Schatzki'srings NOUN
described VERB
by ADP
x NOUN
- NOUN
ray PROPN
, PUNCT
however ADV
, PUNCT
wnd VERB
up ADP
being AUX
due ADJ
to ADP
inflammationinstead NOUN
of ADP
the DET
congenital ADJ
Schatzki PROPN
's PART
ring NOUN
. PUNCT
  SPACE
Occassionally ADV
a DET
cancermasquerades NOUN
as SCONJ
a DET
ring NOUN
. PUNCT
  SPACE
You PRON
should AUX
have AUX
the DET
endoscopy NOUN
to PART
see VERB
if SCONJ
itis NOUN
due ADP
to ADP
the DET
heartburn NOUN
, PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
you PRON
will AUX
need VERB
treatment NOUN
for ADP
theheartburn PROPN
ong PROPN
term NOUN
. PUNCT
  SPACE
The DET
balloon NOUN
dilation NOUN
is AUX
an DET
alternative NOUN
to PART
cuttingopen VERB
your PRON
chest NOUN
and CCONJ
cutting VERB
out ADP
a DET
section NOUN
of ADP
the DET
esophagus NOUN
, PUNCT
so CCONJ
dilationis PROPN
not PART
at ADV
all ADV
invasive ADJ
, PUNCT
considering VERB
the DET
alternative NOUN
. PUNCT
  SPACE
> X
The DET
second ADJ
issue NOUN
: PUNCT
[ PUNCT
summarized VERB
] PUNCT
  SPACE
He PRON
has AUX
had VERB
extra ADJ
heartbeats NOUN
for ADP
the DET
past3 NOUN
to ADP
4 NUM
years NOUN
, PUNCT
and CCONJ
once ADV
was AUX
symptomatic ADJ
from ADP
them PRON
, PUNCT
with ADP
somelightheadedness NOUN
. PUNCT
He PRON
is AUX
young ADJ
, PUNCT
( PUNCT
30-ish NUM
) PUNCT
, PUNCT
thin ADJ
and CCONJ
in ADP
good ADJ
> X
health PROPN
( PUNCT
recent ADJ
bloodtests NOUN
were AUX
all DET
normal ADJ
) PUNCT
, PUNCT
and CCONJ
do AUX
not PART
smoke VERB
, PUNCT
use VERB
drugs NOUN
or CCONJ
> X
caffeine NOUN
, PUNCT
etc X
. PUNCT
I PRON
'm AUX
willing ADJ
to PART
accept VERB
the DET
extra ADJ
beats NOUN
as SCONJ
" PUNCT
normal ADJ
" PUNCT
, PUNCT
but CCONJ
do AUX
n't PART
> X
want VERB
to PART
ignore VERB
them PRON
if SCONJ
they PRON
might AUX
be AUX
some DET
kind NOUN
of ADP
warning NOUN
symptom NOUN
. PUNCT
The DET
number NOUN
> X
of ADP
PVC PROPN
's PART
seems VERB
to PART
increase VERB
throughout ADP
the DET
day NOUN
, PUNCT
and CCONJ
with ADP
exercise NOUN
( PUNCT
or CCONJ
something PRON
> X
as ADV
simple ADJ
as SCONJ
climbing VERB
some DET
stairs NOUN
) PUNCT
. PUNCT
Also ADV
, PUNCT
if SCONJ
I PRON
get VERB
up ADP
after ADP
sitting VERB
or CCONJ
lying VERB
> X
down ADV
for ADP
a DET
while NOUN
, PUNCT
I PRON
tend VERB
to PART
get AUX
a DET
couple NOUN
of ADP
extra ADJ
beats NOUN
. PUNCT
Could AUX
they PRON
possibly ADV
> X
be AUX
related VERB
to ADP
the DET
esophagous ADJ
problems NOUN
? PUNCT
Both DET
seemed VERB
to PART
develop VERB
at ADP
about ADP
the DET
> X
same ADJ
time NOUN
. PUNCT
I PRON
' PUNCT
not PART
an DET
expert NOUN
on ADP
heart NOUN
problems NOUN
, PUNCT
but CCONJ
PVC PROPN
's PART
are AUX
common ADJ
and CCONJ
have AUX
beenovertreated VERB
in ADP
the DET
past NOUN
. PUNCT
  SPACE
My PRON
personal ADJ
experience NOUN
, PUNCT
and CCONJ
I PRON
have AUX
the DET
same ADJ
history NOUN
an DET
build NOUN
you PRON
do AUX
( PUNCT
related VERB
to ADP
the DET
heart NOUN
, PUNCT
that ADV
is ADV
) PUNCT
, PUNCT
is AUX
that SCONJ
my PRON
PVC'scome NUM
and CCONJ
go VERB
, PUNCT
with ADP
some DET
months NOUN
causing VERB
anxiety NOUN
. PUNCT
  SPACE
Taking VERB
on ADP
more ADJ
fluidsseems NOUN
to PART
help VERB
, PUNCT
and CCONJ
they PRON
seem VERB
worse ADJ
in ADP
the DET
summer NOUN
. PUNCT
  SPACE
Remember VERB
that SCONJ
a DET
slow ADJ
heart NOUN
rate NOUN
will AUX
allow VERB
more ADJ
PVC PROPN
's PART
to PART
be AUX
apparent ADJ
, PUNCT
so ADV
perhaps ADV
it PRON
is AUX
an DET
indication NOUN
of ADP
a DET
healthy ADJ
cardiac ADJ
system NOUN
( PUNCT
but CCONJ
ask VERB
an DET
expert NOUN
about ADP
thatlast ADJ
point NOUN
, PUNCT
especially)Good PROPN
luck NOUN
, PUNCT
hope VERB
we PRON
do AUX
n't PART
die VERB
of ADP
arrhythmias PROPN
. PUNCT
  SPACE
( PUNCT
God PROPN
, PUNCT
what PRON
a DET
happy ADJ
thought)Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59470From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
1993Apr28.023749.9259@informix.com NUM
> X
, PUNCT
hartman@informix.com X
( PUNCT
Robert PROPN
Hartman PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1rjn0eINNnqn@MINERVA.CIS.YALE.EDU NUM
> X
wiesel-elisha@yale.edu NUM
( PUNCT
Elisha PROPN
Wiesel PROPN
) PUNCT
writes:>>Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
colon>>cleansing PROPN
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
> X
> X
No ADV
doubt ADV
the DET
sci.med NOUN
* PUNCT
folks NOUN
are AUX
getting VERB
out ADP
their PRON
flamethrowers NOUN
. PUNCT
  SPACE
I PRON
'm AUX
> X
rather ADV
certain ADJ
that SCONJ
the DET
information NOUN
you PRON
got VERB
was AUX
not PART
medical ADJ
literature NOUN
> X
in ADP
the DET
accepted VERB
academic ADJ
/ SYM
scientific ADJ
journals NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
the DET
righteous ADJ
among ADP
> X
them PRON
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
. PUNCT
> X
> X
Also ADV
, PUNCT
insofar ADV
as SCONJ
it PRON
does AUX
n't PART
conform VERB
to ADP
the DET
accepted VERB
medical ADJ
presumption NOUN
> X
that SCONJ
it PRON
just ADV
does AUX
n't PART
matter VERB
what PRON
you PRON
eat VERB
, PUNCT
and CCONJ
that SCONJ
we PRON
can AUX
think VERB
of ADP
the DET
> X
GI PROPN
tract NOUN
as SCONJ
a DET
black ADJ
box NOUN
in ADP
which PRON
nothing PRON
ever ADV
goes VERB
wrong ADJ
( PUNCT
except SCONJ
for ADP
> X
maybe ADV
cancer NOUN
and CCONJ
ulcers NOUN
) PUNCT
, PUNCT
the DET
righteous ADJ
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
too ADV
. PUNCT
> X
> X
Then ADV
there PRON
'll AUX
be AUX
the DET
ones NOUN
who PRON
call VERB
your PRON
doctor NOUN
a DET
raving NOUN
quack NOUN
, PUNCT
even ADV
> X
though SCONJ
he PRON
, PUNCT
like SCONJ
Linus PROPN
Pauling PROPN
, PUNCT
is AUX
lucid ADJ
and CCONJ
robust ADJ
well ADV
into ADP
his PRON
> X
nineties NOUN
-- PUNCT
but CCONJ
nevermind VERB
about ADP
that DET
. PUNCT
  SPACE
He PRON
should AUX
n't PART
charge VERB
for ADP
his PRON
> X
equipment NOUN
and CCONJ
supplies NOUN
, PUNCT
since SCONJ
they PRON
're AUX
no ADV
doubt NOUN
not PART
approved VERB
by ADP
the DET
> X
FDA PROPN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
with ADP
FDA PROPN
approval NOUN
an DET
MD PROPN
or CCONJ
pharmaceutical NOUN
company NOUN
can AUX
> X
charge VERB
whatever PRON
they PRON
can AUX
get AUX
for ADP
such ADJ
safe ADJ
and CCONJ
effective ADJ
treatments NOUN
as SCONJ
> X
thalidomide ADV
. PUNCT
  SPACE
But CCONJ
nevermind NOUN
about ADP
that DET
either ADV
. PUNCT
> X
> X
Unfortunately ADV
, PUNCT
you PRON
dared VERB
to PART
step VERB
into ADP
the DET
sacred ADJ
turf NOUN
of ADP
Net PROPN
. PUNCT
Medical ADJ
. PUNCT
> X
Discussion NOUN
without ADP
a DET
credential ADJ
and CCONJ
without ADP
understanding VERB
that SCONJ
the DET
> X
righteous ADJ
among ADP
them PRON
will AUX
make VERB
certain ADJ
that SCONJ
you PRON
are AUX
suitably ADV
denounced VERB
> X
before ADP
dismissing VERB
you PRON
as SCONJ
a DET
fool NOUN
. PUNCT
> X
> X
But CCONJ
maybe ADV
somebody PRON
without ADP
such DET
a DET
huge ADJ
chip NOUN
on ADP
their PRON
shoulder NOUN
will AUX
> X
send VERB
you PRON
some DET
reasonable ADJ
responses NOUN
by ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
> X
> X
1/2 NUM
; PUNCT
^ PROPN
) PUNCT
  SPACE
> X
> X
1/2 NUM
; PUNCT
^ PROPN
( PUNCT
> X
> X
Oh INTJ
yes INTJ
, PUNCT
I PRON
did AUX
have AUX
a DET
point NOUN
. PUNCT
  SPACE
A DET
few ADJ
years NOUN
ago ADV
an DET
MD NOUN
with ADP
a DET
thriving VERB
> X
practice NOUN
in ADP
a DET
very ADV
wealthy ADJ
part NOUN
of ADP
Silicon PROPN
Valley PROPN
once ADV
recommended VERB
that SCONJ
> X
I PRON
take VERB
such ADJ
treatments NOUN
to PART
clear VERB
up ADP
a DET
skin NOUN
condition NOUN
. PUNCT
  SPACE
( PUNCT
Not PART
through ADP
his PRON
> X
office NOUN
, PUNCT
I PRON
might AUX
add VERB
. PUNCT
) PUNCT
  SPACE
Although SCONJ
I PRON
'm AUX
sure ADJ
that DET
's AUX
not PART
conclusive ADJ
, PUNCT
it PRON
was AUX
> X
sure ADJ
an DET
unusual ADJ
prescription NOUN
! PUNCT
> X
The DET
bacteria NOUN
in ADP
your PRON
gut NOUN
are AUX
important ADJ
. PUNCT
  SPACE
But CCONJ
colonic ADJ
flushes NOUN
are AUX
not PART
the DET
way NOUN
to PART
improve VERB
gut NOUN
function NOUN
. PUNCT
  SPACE
Each DET
person NOUN
has AUX
almost ADV
a DET
unique ADJ
mix NOUN
of ADP
bacteria NOUN
in ADP
his PRON
/ SYM
her PRON
gut NOUN
. PUNCT
  SPACE
Diet PROPN
affects VERB
this DET
mix NOUN
as SCONJ
does AUX
the DET
use NOUN
of ADP
antibiotics NOUN
. PUNCT
  SPACE
A DET
diet NOUN
change NOUN
is AUX
a DET
much ADV
better ADJ
way NOUN
to PART
alter VERB
the DET
players NOUN
in ADP
your PRON
gut NOUN
than SCONJ
is AUX
colonic ADJ
flushes NOUN
. PUNCT
  SPACE
Cross PROPN
contamination NOUN
has AUX
been AUX
a DET
real ADJ
problem NOUN
in ADP
some DET
of ADP
the DET
outfits NOUN
that PRON
do AUX
this DET
" PUNCT
treatment NOUN
" PUNCT
since SCONJ
the DET
equipment NOUN
is AUX
not PART
always ADV
cleaned VERB
as ADV
well ADV
as SCONJ
it PRON
should AUX
be AUX
between ADP
patient NOUN
" PUNCT
treatments" NOUN
. PUNCT
Dental ADJ
drills NOUN
have AUX
me PRON
a DET
little ADV
concerned ADJ
about ADP
HIV PROPN
infection NOUN
and CCONJ
I PRON
've AUX
picked VERB
a DET
dentist NOUN
that PRON
uses VERB
both DET
chemical NOUN
and CCONJ
autoclave VERB
sterilization NOUN
of ADP
his PRON
instruments(more NOUN
clostly ADV
but CCONJ
much ADV
safer ADJ
) PUNCT
. PUNCT
  SPACE
Full ADJ
sterile ADJ
technique NOUN
is AUX
also ADV
used VERB
just ADV
like SCONJ
that DET
practiced VERB
in ADP
an DET
OR(mask NOUN
, PUNCT
gloves NOUN
and CCONJ
gowns NOUN
worn VERB
and CCONJ
disposed VERB
of ADP
between ADP
patients NOUN
) PUNCT
. PUNCT
  SPACE
Each DET
visit NOUN
costs VERB
me PRON
15 NUM
dollars NOUN
more ADJ
than SCONJ
the DET
standard ADJ
and CCONJ
customary ADJ
fee NOUN
so ADV
I PRON
have AUX
to PART
pay VERB
it PRON
out SCONJ
of ADP
pocket NOUN
. PUNCT
  SPACE
His PRON
much ADV
higher ADJ
fees NOUN
do AUX
not PART
drive VERB
away ADP
patients NOUN
. PUNCT
I PRON
can AUX
not PART
think VERB
of ADP
any DET
good ADJ
reason NOUN
why ADV
someone PRON
should AUX
subject VERB
themselves PRON
to ADP
this DET
colonic ADJ
flush ADJ
procedure NOUN
. PUNCT
  SPACE
For ADP
very ADV
little ADJ
, PUNCT
if SCONJ
any DET
benefit NOUN
, PUNCT
you PRON
subject VERB
yourself PRON
to ADP
hepatitis PROPN
, PUNCT
cholera PROPN
, PUNCT
parasitic ADJ
disease NOUN
and CCONJ
even ADV
HIV.Just NUM
ask VERB
yourself PRON
why ADV
someone PRON
might AUX
resort VERB
to ADP
this DET
kind NOUN
of ADP
treatment?Could AUX
they PRON
be VERB
having VERB
GI PROPN
distress NOUN
? PUNCT
  SPACE
Could AUX
this DET
distress NOUN
be AUX
due ADJ
to ADP
a DET
pathogenic ADJ
organism NOUN
? PUNCT
  SPACE
Could AUX
I PRON
get AUX
this DET
organism NOUN
if SCONJ
the DET
equipment NOUN
is AUX
not PART
cleaned VERB
properly ADV
between ADP
patients NOUN
? PUNCT
  SPACE
Do AUX
I PRON
really ADV
want VERB
to PART
take VERB
this DET
risk?Food PROPN
for ADP
thought NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59471From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 ADJ
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HivesIn PROPN
article NOUN
< X
1993Apr28.064144.24115@nuscc.nus.sg NUM
> X
, PUNCT
isckbk@nuscc.nus.sg(Kiong PROPN
Beng PROPN
Kee PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
My PRON
wife NOUN
had AUX
hives NOUN
during ADP
the DET
first ADJ
two NUM
months NOUN
> X
of ADP
her PRON
pregnancy NOUN
. PUNCT
  SPACE
My PRON
son NOUN
( PUNCT
3 NUM
months NOUN
old ADJ
) PUNCT
, PUNCT
breast NOUN
- PUNCT
fed PROPN
, PUNCT
> X
now ADV
has AUX
the DET
same ADJ
symptoms NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
to ADP
a DET
skin NOUN
- PUNCT
specialist NOUN
, PUNCT
> X
but CCONJ
he PRON
has AUX
merely ADV
prescribed VERB
various ADJ
medicines NOUN
( PUNCT
one NUM
> X
each DET
visit NOUN
as SCONJ
though SCONJ
by ADP
trial NOUN
and CCONJ
error NOUN
:-)) PUNCT
> X
> X
Anti PROPN
- NOUN
histamines NOUN
worked VERB
on ADP
both DET
of ADP
them PRON
, PUNCT
but CCONJ
looks VERB
like SCONJ
> X
becoming VERB
less ADV
effective ADJ
. PUNCT
> X
> X
Are AUX
there PRON
other ADJ
solutions NOUN
? PUNCT
  SPACE
Thanks INTJ
. PUNCT
> X
-- PUNCT
> X
Kiong PROPN
Beng PROPN
Kee PROPN
> X
Dept PROPN
of ADP
Information PROPN
Systems PROPN
and CCONJ
Computer PROPN
Science PROPN
> X
National PROPN
University PROPN
of ADP
Singapore PROPN
> X
Lower PROPN
Kent PROPN
Ridge PROPN
Road PROPN
, PUNCT
SINGAPORE PROPN
0511Food NUM
products NOUN
can AUX
get AUX
through ADP
breast NOUN
milk NOUN
and CCONJ
cause VERB
allergies NOUN
in ADP
theyoung PROPN
. PUNCT
  SPACE
Since SCONJ
the DET
son NOUN
is AUX
allergic ADJ
it PRON
would AUX
be AUX
best ADJ
not PART
to PART
go VERB
tobottle ADJ
feedings NOUN
, PUNCT
but CCONJ
rather ADV
eliminate VERB
foods NOUN
from ADP
mother NOUN
's PART
diet NOUN
. PUNCT
  SPACE
Yourpediatrician PROPN
should AUX
be AUX
able ADJ
to PART
give VERB
you PRON
a DET
list NOUN
of ADP
foods NOUN
to PART
avoid VERB
. PUNCT
Good ADJ
luck NOUN
, PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59472From NUM
: PUNCT
chorley@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesIn PROPN
article NOUN
< X
35004@castle.ed.ac.uk NOUN
> X
, PUNCT
gtclark@festival.ed.ac.uk PROPN
( PUNCT
G PROPN
T PROPN
Clark PROPN
) PUNCT
writes VERB
: PUNCT
> X
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
Does AUX
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someone>>was DET
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
would>>be VERB
liable ADJ
to PART
happen VERB
to ADP
the DET
person NOUN
? PUNCT
> X
> X
> X
( PUNCT
Just ADV
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
my>>house PROPN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case NOUN
' PUNCT
. PUNCT
) PUNCT
> X
> X
> X
Rebecca PROPN
> X
> X
> X
	 SPACE
Millipedes NOUN
, PUNCT
I PRON
understand VERB
, PUNCT
are AUX
vegetarian ADJ
, PUNCT
and CCONJ
therefore ADV
almost ADV
> X
certainly ADV
will AUX
not PART
bite VERB
and CCONJ
are AUX
not PART
poisonous ADJ
. PUNCT
Centipedes NOUN
are AUX
> X
carnivorous ADJ
, PUNCT
and CCONJ
although SCONJ
I PRON
do AUX
n't PART
have AUX
any DET
absolute ADJ
knowledge NOUN
on ADP
this DET
, PUNCT
I PRON
> X
would AUX
tend VERB
to PART
think VERB
that SCONJ
you PRON
're AUX
in ADP
no DET
danger NOUN
from ADP
anything PRON
but SCONJ
a DET
> X
concerted ADJ
assault NOUN
by ADP
several ADJ
million NUM
of ADP
them PRON
. PUNCT
> X
> X
			 SPACE
G.Not ADP
sure ADJ
of ADP
this DET
but CCONJ
I PRON
think VERB
some DET
millipedes NOUN
cause VERB
a DET
toxic ADJ
reaction NOUN
( PUNCT
sting?So PROPN
I PRON
would AUX
not PART
assume VERB
that SCONJ
they PRON
are AUX
not PART
dangerous ADJ
merely ADV
on ADP
the DET
basis NOUN
of ADP
vegetarianism NOUN
, PUNCT
after ADP
all DET
wasps NOUN
are AUX
vegetarian ADJ
too.dnc.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59473From NUM
: PUNCT
mikeq@freddy PROPN
. PUNCT
CNA.TEK.COM PROPN
( PUNCT
Mike PROPN
Quigley)Subject NUM
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?How NOUN
about ADP
going VERB
to ADP
a DET
doctor NOUN
to PART
get AUX
some DET
minor ADJ
surgery NOUN
done VERB
. PUNCT
Doctorrefuses NOUN
to PART
do AUX
it PRON
because SCONJ
it PRON
's AUX
` PUNCT
` PUNCT
to ADP
risky ADJ
' PUNCT
' PUNCT
( PUNCT
still ADV
charges VERB
me PRON
$ SYM
50!).I NUM
go VERB
home ADV
and CCONJ
do AUX
it PRON
myself PRON
. PUNCT
No DET
problem NOUN
. PUNCT
The DET
` PUNCT
` PUNCT
surgery NOUN
' PUNCT
' PUNCT
involved VERB
digging VERB
out ADP
a DET
pine ADJ
needle NOUN
that PRON
had AUX
burieditself NOUN
under ADP
my PRON
tongue NOUN
. PUNCT
MikeNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59474From NUM
: PUNCT
jeffs@sr.hp.com PROPN
( PUNCT
Jeff PROPN
Silva)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
pk115050@wvnvms.wvnet.edu PROPN
wrote VERB
: PUNCT
: PUNCT
My PRON
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
no DET
: PUNCT
medical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed VERB
. PUNCT
: PUNCT
: PUNCT
My PRON
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigate VERB
: PUNCT
their PRON
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
: PUNCT
etc X
... PUNCT
) PUNCT
: PUNCT
: PUNCT
Thank VERB
you PRON
, PUNCT
: PUNCT
: PUNCT
Dave PROPN
Carvell PROPN
: PUNCT
pk115050@wvnvms.wvnet.eduFirst NOUN
off ADV
, PUNCT
I PRON
would AUX
consider VERB
the DET
severity NOUN
of ADP
the DET
pain NOUN
. PUNCT
I PRON
had AUX
stonesseveral ADJ
years NOUN
ago ADV
, PUNCT
and CCONJ
there PRON
's AUX
now ADV
way NOUN
I PRON
could AUX
have AUX
made VERB
it PRON
withoutheavy VERB
duty NOUN
doses NOUN
of ADP
morphine NOUN
and CCONJ
demerol NOUN
and CCONJ
a DET
two NUM
week NOUN
stay NOUN
in ADP
thehospital NOUN
. PUNCT
I PRON
was AUX
told VERB
that SCONJ
there PRON
was AUX
nothing PRON
that PRON
I PRON
could AUX
take VERB
that DET
woulddissolve VERB
them PRON
. PUNCT
If SCONJ
the DET
stones NOUN
are AUX
passible ADJ
, PUNCT
the DET
best ADJ
thing NOUN
she PRON
could AUX
dois VERB
drink VERB
LOTS NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
hope VERB
that SCONJ
they PRON
pass VERB
, PUNCT
but CCONJ
every DET
time NOUN
theymove VERB
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctorat NOUN
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes INTJ
, PUNCT
by ADP
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'dreally ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
whohave VERB
had AUX
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
--Jeff PROPN
Silva(707 PROPN
) PUNCT
577-2681jeffs@sr.hp.comNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59475From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
SeptoplastyIn PROPN
article NOUN
< X
C670zy.DA@utdallas.edu PROPN
> X
, PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
badboyC64t0z.FGq@netcom.com PROPN
> X
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller PROPN
) PUNCT
writes:>>>>(I've PROPN
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn't>>really ADV
help VERB
them).>>>>I NOUN
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see NOUN
some>>relief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
of>>that ADP
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved VERB
. PUNCT
> X
> X
> X
> X
> X
> X
> X
Did AUX
your PRON
ENT PROPN
also ADV
tell VERB
you PRON
that SCONJ
this DET
procedure NOUN
may AUX
remove VERB
warts NOUN
from ADP
the DET
soles NOUN
> X
of ADP
your PRON
feet NOUN
and CCONJ
improve VERB
your PRON
sex NOUN
life?>You PROPN
probably ADV
were AUX
trying VERB
to PART
be AUX
facetious ADJ
but CCONJ
just ADV
for ADP
the DET
record ADJ
partial ADJ
nasalobstruction NOUN
is AUX
correlated VERB
with ADP
a DET
number NOUN
of ADP
chronic ADJ
disorders NOUN
such ADJ
as SCONJ
migraine NOUN
, PUNCT
hyperthyroidism NOUN
, PUNCT
asthma NOUN
, PUNCT
peptic ADJ
ulcer NOUN
, PUNCT
dysmenorrhea PROPN
, PUNCT
and CCONJ
lack NOUN
of ADP
libido PROPN
( PUNCT
:-) PUNCT
) PUNCT
[ PUNCT
Riga PROPN
IN PROPN
. PUNCT
Rev PROPN
d'Oto PROPN
- PUNCT
Neuro PROPN
- PUNCT
Ophthalmol PROPN
1957;24:325 PROPN
- PUNCT
335 NUM
] PUNCT
, PUNCT
cardiac ADJ
symptoms[Jackson PROPN
RT PROPN
. PUNCT
Annals NOUN
of ADP
Otology PROPN
1976;85:65 PROPN
- SYM
70 NUM
  SPACE
Cvetnic PROPN
MH PROPN
, PUNCT
Cvetnic PROPN
V. PROPN
Rhinology1980;18:47 PROPN
- PUNCT
50 NUM
     SPACE
Cottle PROPN
MH PROPN
. PUNCT
Rhinology VERB
1980;18:67 NUM
- SYM
81 NUM
] PUNCT
, PUNCT
and CCONJ
fever NOUN
, PUNCT
inadequateoral ADJ
intake NOUN
and CCONJ
electrolyte ADJ
imbalance NOUN
[ PUNCT
Fairbanks PROPN
DNF PROPN
. PUNCT
Otorhinolaryngology PROPN
Headand PROPN
Neck PROPN
Surgery PROPN
1986;94:412 NUM
- PUNCT
415).So PROPN
before ADP
you PRON
post VERB
your PRON
inane ADJ
comments NOUN
it PRON
would AUX
be AUX
nice ADJ
if SCONJ
you PRON
'd AUX
run VERB
a DET
MEDLINEsearch NOUN
on ADP
the DET
topic NOUN
say VERB
back ADV
to ADP
1966 NUM
. PUNCT
There PRON
's AUX
been AUX
extensive ADJ
literature NOUN
on ADP
thisfor NOUN
over ADP
a DET
100 NUM
years NOUN
. PUNCT
I PRON
may AUX
be AUX
in ADP
cardiology NOUN
but CCONJ
I PRON
've AUX
had VERB
a DET
very ADV
good ADJ
working NOUN
relationship NOUN
withmy NOUN
colleagues NOUN
from ADP
ENT.Joshbackon@VMS.HUJI.AC.ILNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59476From NUM
: PUNCT
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Earwaxstephen@mont.cs.missouri.edu PROPN
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>What DET
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leave VERB
> X
it PRON
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
out ADP
> X
every ADV
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage VERB
your PRON
eardrums?>Are NOUN
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked?Assuming VERB
that SCONJ
the DET
wax NOUN
is AUX
causing VERB
hearing NOUN
loss NOUN
, PUNCT
congestion NOUN
or CCONJ
poppingin NOUN
the DET
ears NOUN
, PUNCT
you PRON
can AUX
try VERB
some DET
cautious ADJ
tepid ADJ
water NOUN
irrigation NOUN
with ADP
abulb NOUN
syringe NOUN
, PUNCT
but CCONJ
it PRON
is AUX
awkward ADJ
to PART
do AUX
for ADP
oneself PRON
and CCONJ
may AUX
not PART
work VERB
ormay NOUN
even ADV
make VERB
things NOUN
worse ADJ
. PUNCT
  SPACE
( PUNCT
My PRON
wife NOUN
would AUX
disagree VERB
, PUNCT
she PRON
does AUX
itsuccessfully ADV
every DET
six NUM
months NOUN
or CCONJ
so ADV
. PUNCT
) PUNCT
  SPACE
In ADP
any DET
case NOUN
DO VERB
NOT ADV
ATTEMPTANYTHING NOUN
WITH ADP
Q PROPN
- PUNCT
TIPS!!!My NOUN
experience NOUN
has AUX
been AUX
that SCONJ
this DET
is AUX
initially ADV
best ADV
handled VERB
by ADP
aEar PROPN
/ SYM
Nose PROPN
/ SYM
Throat PROPN
person NOUN
. PUNCT
  SPACE
I PRON
say VERB
initially ADV
, PUNCT
because SCONJ
an DET
ENT PROPN
can AUX
evaluatewhether ADV
or CCONJ
not PART
you PRON
might AUX
have AUX
success NOUN
on ADP
your PRON
own ADJ
with ADP
a DET
littleinstruction NOUN
. PUNCT
I PRON
am AUX
not PART
a DET
physician NOUN
( PUNCT
obviously ADV
, PUNCT
because SCONJ
I PRON
eschew VERB
the DET
termotolaryngologist NOUN
) PUNCT
; PUNCT
this DET
posting NOUN
is AUX
based VERB
only ADV
on ADP
personal ADJ
experience.========================================================================<Usual PROPN
Disclaimer PROPN
> X
        SPACE
" PUNCT
The DET
best ADJ
is AUX
the DET
enemy NOUN
of ADP
the DET
good ADJ
" PUNCT
- PUNCT
VoltaireLeon PROPN
Traister PROPN
( PUNCT
lmtra@amdahl.uts.amdahl.com)c/o VERB
Amdahl PROPN
Corporation PROPN
            SPACE
( PUNCT
408)737 PROPN
- PUNCT
54491250 NUM
E. PROPN
Arques PROPN
Ave PROPN
. PUNCT
  SPACE
M PROPN
/ SYM
S PROPN
338P.O. PROPN
Box PROPN
3470Sunnyvale NUM
, PUNCT
CA PROPN
  SPACE
94088 NUM
- PUNCT
3470Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59477From NUM
: PUNCT
ame_0123@bigdog.engr.arizona.edu PROPN
( PUNCT
Terrance PROPN
J. PROPN
Dishongh)Subject NUM
: PUNCT
Strain PROPN
Gage PROPN
Applications PROPN
in ADP
vivoGreetingI NOUN
am AUX
starting VERB
work NOUN
on ADP
a DET
project NOUN
where ADV
I PRON
am AUX
trying VERB
to PART
make VERB
strain VERB
gagesbond NOUN
to ADP
bone NOUN
in ADP
vivo NOUN
or CCONJ
a DET
period NOUN
of ADP
several ADJ
months NOUN
. PUNCT
  SPACE
I PRON
am AUX
currentlyusing VERB
hydroxyapaptite ADJ
back ADJ
gages NOUN
, PUNCT
and CCONJ
I PRON
have AUX
tried VERB
M PROPN
- PUNCT
bonding VERB
the DET
gagesto NOUN
the DET
bone NOUN
. PUNCT
  SPACE
Apart ADV
from ADP
those DET
two NUM
application NOUN
methods NOUN
there ADV
doesn'tseem VERB
to PART
be AUX
much ADV
else ADV
in ADP
the DET
literature NOUN
. PUNCT
  SPACE
I PRON
have AUX
only ADV
an DET
engineering NOUN
background NOUN
not PART
medical ADJ
or CCONJ
biological ADJ
. PUNCT
  SPACE
I PRON
would AUX
be AUX
interest NOUN
in ADP
anyideas NOUN
about ADP
how ADV
to PART
stimulte VERB
bone NOUN
growth NOUN
on ADP
the DET
surface NOUN
of ADP
cortical ADJ
bone NOUN
. PUNCT
Thanks NOUN
for ADP
oyur NOUN
help NOUN
in ADP
Advance PROPN
. PUNCT
Terrance NOUN
J PROPN
Dishonghame_0123@bigdog.engr.arizona.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59478From NUM
: PUNCT
shell@cs.sfu.ca PROPN
( PUNCT
Barry PROPN
Shell)Subject PROPN
: PUNCT
Great ADJ
Canadian ADJ
ScientistsAbout PROPN
two NUM
years NOUN
ago ADV
I PRON
posted VERB
the DET
following VERB
: PUNCT
I PRON
am AUX
planning VERB
to PART
write VERB
a DET
new ADJ
book NOUN
called VERB
" PUNCT
Great PROPN
Canadian ADJ
Scientists PROPN
. PUNCT
"Please PUNCT
forward ADV
your PRON
nominations NOUN
to ADP
me PRON
: PUNCT
shell@cs.sfu.ca X
The DET
rules NOUN
are AUX
that SCONJ
the DET
person NOUN
must AUX
be AUX
a DET
Canadian ADJ
citizen NOUN
. PUNCT
They PRON
do AUX
n't PART
haveto NOUN
be AUX
born VERB
in ADP
Canada PROPN
or CCONJ
even ADV
live VERB
in ADP
Canada PROPN
, PUNCT
but CCONJ
they PRON
must AUX
have AUX
( PUNCT
or CCONJ
havehad VERB
, PUNCT
if SCONJ
they PRON
are AUX
dead ADJ
) PUNCT
Canadian ADJ
citizenship NOUN
while SCONJ
they PRON
are AUX
/ SYM
were AUX
greatCanadian ADJ
scientists NOUN
. PUNCT
About ADV
70 NUM
people NOUN
have AUX
been AUX
nominated VERB
already ADV
and CCONJ
they PRON
are AUX
listed VERB
at ADP
theend NOUN
of ADP
this DET
posting NOUN
. PUNCT
I PRON
'm AUX
not PART
quite ADV
sure ADJ
what PRON
should AUX
constitute VERB
greatness NOUN
, PUNCT
and CCONJ
there PRON
may AUX
be AUX
agray ADV
area NOUN
here ADV
. PUNCT
If SCONJ
you PRON
have AUX
any DET
ideas NOUN
on ADP
criteria NOUN
for ADP
greatness NOUN
, PUNCT
I PRON
would AUX
bepleased VERB
to PART
hear VERB
them PRON
. PUNCT
In ADP
any DET
event NOUN
, PUNCT
please INTJ
nominate VERB
people NOUN
even ADV
if SCONJ
you PRON
arenot VERB
sure ADJ
they PRON
are AUX
great ADJ
. PUNCT
I PRON
would AUX
like VERB
as ADV
big ADJ
a DET
list NOUN
as SCONJ
possible ADJ
. PUNCT
Please INTJ
give VERB
me PRON
a DET
name NOUN
and CCONJ
email NOUN
address NOUN
, PUNCT
phone NOUN
number NOUN
or CCONJ
mail NOUN
address NOUN
, PUNCT
sothat PROPN
I PRON
can AUX
contact VERB
the DET
person NOUN
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
above ADJ
, PUNCT
thengive VERB
me PRON
their PRON
last ADJ
known VERB
whereabouts NOUN
. PUNCT
Also ADV
please INTJ
give VERB
your PRON
reason NOUN
for ADP
whyyou NOUN
think VERB
the DET
person NOUN
should AUX
be AUX
considered VERB
a DET
great ADJ
Canadian ADJ
scientist NOUN
. PUNCT
After ADP
I PRON
have AUX
the DET
list NOUN
, PUNCT
I PRON
will AUX
choose VERB
about ADV
six NUM
of ADP
the DET
most ADV
interesting ADJ
onesand NOUN
do AUX
in ADP
- PUNCT
depth NOUN
biographies NOUN
of ADP
those DET
individuals NOUN
in ADP
the DET
style NOUN
of ADP
TracyKidder PROPN
's PART
" PUNCT
Soul PROPN
of ADP
a DET
New PROPN
Machine PROPN
" PUNCT
or CCONJ
some DET
other ADJ
dramatic ADJ
technique NOUN
. PUNCT
The DET
rest NOUN
of ADP
the DET
great ADJ
Canadian ADJ
scientists NOUN
will AUX
appear VERB
in ADP
an DET
appedix NOUN
with ADP
one NUM
paragraph NOUN
biographies NOUN
. PUNCT
If SCONJ
you PRON
have AUX
any DET
other ADJ
ideas NOUN
about ADP
this DET
project NOUN
, PUNCT
I PRON
am AUX
interested ADJ
to ADP
hearthem PROPN
. PUNCT
So ADV
far ADV
, PUNCT
I PRON
have AUX
received VERB
68 NUM
nominations NOUN
as SCONJ
follows VERB
: PUNCT
  SPACE
First PROPN
Name PROPN
     SPACE
Last ADJ
Name PROPN
      SPACE
Nominator PROPN
            SPACE
Famous PROPN
For---------- PROPN
     SPACE
--------- PUNCT
      SPACE
--------- PUNCT
            SPACE
----------Sid NOUN
            SPACE
Altman PROPN
         SPACE
Kuszewski PROPN
, PUNCT
John PROPN
      SPACE
Catalytic PROPN
RNA(Nobel PROPN
Chem PROPN
89)Frederick PROPN
      SPACE
Banting VERB
        SPACE
me PRON
                   SPACE
Insulin PROPN
( PUNCT
Nobel PROPN
U23 PROPN
medicine)Davidson PROPN
       SPACE
Black PROPN
          SPACE
Stanley PROPN
, PUNCT
Robert PROPN
      SPACE
Discovered VERB
Peking PROPN
ManJames PROPN
R. PROPN
       SPACE
Bolton PROPN
         SPACE
Warden PROPN
, PUNCT
Joseph PROPN
       SPACE
chemistry?Raoul VERB
          SPACE
Bott PROPN
           SPACE
Smith PROPN
, PUNCT
Steven PROPN
        SPACE
Math PROPN
: PUNCT
algebraic ADJ
topology NOUN
. PUNCT
Willard PROPN
        SPACE
Boyle PROPN
          SPACE
Chamm PROPN
, PUNCT
Craig PROPN
         SPACE
Co PROPN
inventor NOUN
of ADP
CCDGerard NOUN
         SPACE
Bull PROPN
           SPACE
Stanley PROPN
, PUNCT
Robert PROPN
      SPACE
Ballistics PROPN
and CCONJ
gunneryDennis PROPN
         SPACE
Chitty PROPN
         SPACE
Galindo PROPN
- PUNCT
Leal PROPN
, PUNCT
Carlos PROPN
First PROPN
animal NOUN
ecologistBrian NOUN
C. PROPN
       SPACE
Conway PROPN
         SPACE
Tellefsen PROPN
, PUNCT
Karen PROPN
     SPACE
ElectrochemistryStephen PROPN
        SPACE
Cook PROPN
           SPACE
Mendelzon PROPN
, PUNCT
Alberto PROPN
   SPACE
NP PROPN
- PUNCT
completeness NOUN
, PUNCT
complexity NOUN
? PUNCT
              SPACE
Copp PROPN
           SPACE
Kuch PROPN
, PUNCT
Gerald PROPN
         SPACE
biochem ADJ
aspects NOUN
of ADP
physiolH.S.M. PROPN
         SPACE
Coxeter PROPN
        SPACE
Calkin PROPN
, PUNCT
Neil PROPN
J. PROPN
      SPACE
Regular PROPN
polytopes NOUN
( PUNCT
math)P. PROPN
N. PROPN
          SPACE
Daykin PROPN
         SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Chem PROPN
, PUNCT
mosquito PROPN
repellantH. NUM
E. PROPN
          SPACE
Duckworth PROPN
      SPACE
anonymous PROPN
            SPACE
Mass PROPN
Spectroscopy PROPN
, PUNCT
  SPACE
adminJack PROPN
           SPACE
Edmonds PROPN
        SPACE
Snoeyink PROPN
, PUNCT
Jack PROPN
       SPACE
Math PROPN
, PUNCT
Operations NOUN
researchReginald NOUN
       SPACE
Fessenden PROPN
      SPACE
Johnsen PROPN
, PUNCT
Hans PROPN
        SPACE
Wire PROPN
insulation NOUN
, PUNCT
light ADJ
bulbUrsula NOUN
         SPACE
Franklin PROPN
       SPACE
McKellin PROPN
, PUNCT
William PROPN
    SPACE
Physics PROPN
archeol NOUN
. PUNCT
materialsJ. PROPN
A. PROPN
          SPACE
Gray PROPN
           SPACE
Gray PROPN
, PUNCT
Tom PROPN
            SPACE
Nuclear ADJ
physics NOUN
, PUNCT
The DET
GrayE. PROPN
W. PROPN
          SPACE
Guptill PROPN
        SPACE
Chamm PROPN
, PUNCT
Craig PROPN
         SPACE
Slotted PROPN
array NOUN
radarDonald ADP
         SPACE
Hebb PROPN
           SPACE
Lyons PROPN
, PUNCT
Michael PROPN
       SPACE
Learning PROPN
( PUNCT
Hebbian PROPN
synapses)Gerhard PROPN
        SPACE
Herzberg PROPN
       SPACE
me PRON
                   SPACE
Optical ADJ
spectr NOUN
Nobel PROPN
71James PROPN
          SPACE
Hillier PROPN
        SPACE
me PRON
                   SPACE
Electron PROPN
Microscope PROPN
( PUNCT
Can AUX
/ SYM
Am)Crawford NOUN
S. PROPN
    SPACE
Holling VERB
        SPACE
Galindo PROPN
- PUNCT
Leal PROPN
, PUNCT
Carlos PROPN
Ecology PROPN
, PUNCT
predators NOUN
and CCONJ
preyDavid NOUN
          SPACE
Hubel PROPN
          SPACE
Lyons PROPN
, PUNCT
Michael PROPN
       SPACE
Visual ADJ
cortex NOUN
( PUNCT
Nobel PROPN
med VERB
? PUNCT
) PUNCT
Kenneth PROPN
        SPACE
Iverson PROPN
        SPACE
Dare PROPN
, PUNCT
Gary PROPN
           SPACE
Invented PROPN
APLJ PROPN
. PUNCT
D. PROPN
          SPACE
Jackson PROPN
        SPACE
Austern PROPN
, PUNCT
Matt PROPN
        SPACE
Elementary PROPN
Particle PROPN
TheoryAndre PROPN
          SPACE
Joyal PROPN
          SPACE
Pananagden PROPN
, PUNCT
Prakash PROPN
  SPACE
Category PROPN
theory NOUN
, PUNCT
categ NOUN
LogicMartin PROPN
         SPACE
Kamen PROPN
          SPACE
me PRON
                   SPACE
Carbon-14 PROPN
( PUNCT
Canadian PROPN
/ SYM
Amer.)Irving NUM
         SPACE
Kaplansky PROPN
      SPACE
Knighten PROPN
, PUNCT
Bob PROPN
        SPACE
Algebra PROPN
, PUNCT
functional ADJ
analysisGeorge NOUN
S. PROPN
      SPACE
Kell PROPN
           SPACE
Kell PROPN
, PUNCT
Dave PROPN
           SPACE
Hot PROPN
water NOUN
freezingT. NUM
E. PROPN
          SPACE
Kellogg PROPN
        SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Chem PROPN
, PUNCT
mosquito PROPN
repellantGeraldine PROPN
      SPACE
Kenney PROPN
- PUNCT
Wallace PROPN
Siegman PROPN
, PUNCT
Anthony PROPN
     SPACE
Chemistry PROPN
? PUNCT
AdministrationBrian PROPN
          SPACE
Kernaghan PROPN
      SPACE
Brader PROPN
, PUNCT
Mark PROPN
         SPACE
C PROPN
programming NOUN
languageMichael PROPN
L. PROPN
     SPACE
Klein PROPN
          SPACE
Marchi PROPN
, PUNCT
Massimo PROPN
      SPACE
Theoretical PROPN
ChemistryCharles PROPN
J. PROPN
     SPACE
Krebs PROPN
          SPACE
Galindo PROPN
- PUNCT
Leal PROPN
, PUNCT
Carlos PROPN
Ecology PROPN
, PUNCT
Krebs PROPN
effectK. VERB
J. PROPN
          SPACE
Laidler PROPN
        SPACE
Tellefsen PROPN
, PUNCT
Karen PROPN
     SPACE
Chemical PROPN
KineticsG. PROPN
C. PROPN
          SPACE
Laurence PROPN
       SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Physics PROPN
? PUNCT
? PUNCT
? PUNCT
? PUNCT
Raymond PROPN
        SPACE
Lemieux PROPN
        SPACE
Smith PROPN
, PUNCT
Earl PROPN
          SPACE
First PROPN
synthesized VERB
glucoseMartin NOUN
         SPACE
Levine PROPN
         SPACE
Meunier PROPN
, PUNCT
Robert PROPN
      SPACE
Computer PROPN
visionEdward NOUN
S. PROPN
      SPACE
Lowry PROPN
          SPACE
himself PRON
              SPACE
Computer PROPN
programmingPere NOUN
           SPACE
Marie PROPN
- PUNCT
Victorin PROPN
Meunier PROPN
, PUNCT
Robert PROPN
      SPACE
Jardin PROPN
Botanique PROPN
de ADP
MontrealColin PROPN
          SPACE
MacLeod PROPN
        SPACE
Turner PROPN
, PUNCT
Steven PROPN
       SPACE
Nobel PROPN
( PUNCT
? PUNCT
) PUNCT
DNA NOUN
discovery?Marshall NOUN
       SPACE
McLuhan PROPN
        SPACE
Clamen PROPN
, PUNCT
Stewart PROPN
      SPACE
Social PROPN
sci PROPN
, PUNCT
communicationsBen PROPN
            SPACE
Morrison PROPN
       SPACE
Willson PROPN
, PUNCT
David PROPN
       SPACE
Aurora PROPN
BorealisLawrence PROPN
       SPACE
Morley PROPN
         SPACE
Strome PROPN
, PUNCT
Murray PROPN
       SPACE
Plate PROPN
Tektonics PROPN
/ SYM
Remote ADJ
senseFarley NOUN
         SPACE
Mowat PROPN
          SPACE
Abbott PROPN
, PUNCT
John PROPN
         SPACE
Northern PROPN
Animal PROPN
rights?Kevin NOUN
          SPACE
Ogilvie PROPN
        SPACE
Kendrick PROPN
, PUNCT
Kelly PROPN
      SPACE
Genetics PROPN
, PUNCT
cure VERB
for ADP
herpes?Sir PROPN
William PROPN
    SPACE
Osler PROPN
          SPACE
Lyons PROPN
, PUNCT
Michael PROPN
       SPACE
MedicineP.J.E. PROPN
         SPACE
Peebles PROPN
        SPACE
Vishniac PROPN
, PUNCT
Ethan PROPN
      SPACE
Most ADV
important ADJ
cosmologistWilder NOUN
         SPACE
Penfield PROPN
       SPACE
Perri PROPN
, PUNCT
Marie PROPN
         SPACE
Anatomical PROPN
basis NOUN
for ADP
memoryJohn PROPN
           SPACE
Polanyi PROPN
        SPACE
me PRON
                   SPACE
chemiluminescensce NOUN
Nobel86Denis PROPN
          SPACE
Poussart PROPN
       SPACE
Meunier PROPN
, PUNCT
Robert PROPN
      SPACE
Computer PROPN
VisionAnatol PROPN
         SPACE
Rapoport PROPN
       SPACE
Lloyd PROPN
- PUNCT
Jones PROPN
, PUNCT
David PROPN
   SPACE
conflict NOUN
theory NOUN
, PUNCT
game NOUN
theoryHoward NOUN
         SPACE
Rapson PROPN
         SPACE
Sutherland PROPN
, PUNCT
Russell PROPN
  SPACE
Pulp PROPN
chemistryHans PROPN
           SPACE
Selye PROPN
          SPACE
Goel PROPN
, PUNCT
Anil PROPN
K. PROPN
        SPACE
Psychology PROPN
of ADP
stress NOUN
. PUNCT
William PROPN
        SPACE
Stephenson PROPN
     SPACE
Wilkins PROPN
, PUNCT
Darin PROPN
       SPACE
WW2 PROPN
Enigma PROPN
code NOUN
, PUNCT
Wire ADJ
photoBoris NOUN
          SPACE
Stoicheff PROPN
      SPACE
Siegman PROPN
, PUNCT
Anthony PROPN
     SPACE
Raman PROPN
SpectroscopyDavid PROPN
          SPACE
Suzuki PROPN
         SPACE
Meister PROPN
, PUNCT
Darren PROPN
      SPACE
Science PROPN
communicationHenry NOUN
          SPACE
Taube PROPN
          SPACE
Parker PROPN
, PUNCT
Wiley PROPN
        SPACE
Physical PROPN
Chemistry PROPN
Nobel83Richard PROPN
        SPACE
Taylor PROPN
         SPACE
Manuel PROPN
, PUNCT
John PROPN
         SPACE
Verified PROPN
Quark PROPN
model NOUN
Nobel90David PROPN
          SPACE
Thompson PROPN
       SPACE
Eisler PROPN
, PUNCT
Michael PROPN
      SPACE
Mapped PROPN
western ADJ
CanadaEndel PROPN
          SPACE
Tulving PROPN
        SPACE
Green PROPN
, PUNCT
Christopher PROPN
   SPACE
Psychology PROPN
of ADP
memoryBill PROPN
           SPACE
Tutte PROPN
          SPACE
Royle PROPN
, PUNCT
Gordon PROPN
        SPACE
matroid PROPN
theory NOUN
( PUNCT
math)I X
              SPACE
Uchida PROPN
         SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Down PROPN
's PART
syndromeJ. NUM
Tuzo PROPN
        SPACE
Wilson PROPN
         SPACE
Collier PROPN
, PUNCT
John PROPN
        SPACE
Continental PROPN
Drift PROPN
theoryR. NOUN
H. PROPN
          SPACE
Wright PROPN
         SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Chem PROPN
, PUNCT
mosquito PROPN
repellantJ.L.(Allen PROPN
) PUNCT
    SPACE
Yen NOUN
            SPACE
Leone PROPN
, PUNCT
Pasquale PROPN
      SPACE
VL PROPN
baseline NOUN
interferometryWalter NOUN
         SPACE
Zinn PROPN
           SPACE
me PRON
                   SPACE
Breader PROPN
Reactor PROPN
( PUNCT
Can AUX
/ SYM
Amer.)---------------------------------------------------------------------------- PUNCT
The DET
list NOUN
is AUX
growing VERB
nicely ADV
. PUNCT
It PRON
's AUX
amazing ADJ
to PART
see VERB
just ADV
how ADV
much ADJ
was AUX
discoveredby ADJ
Canadians PROPN
. PUNCT
Actually ADV
there PRON
are AUX
many ADJ
more ADJ
who PRON
were AUX
born VERB
in ADP
Canada PROPN
, PUNCT
butbecame VERB
Americans PROPN
after ADP
graduate NOUN
school NOUN
. PUNCT
Please INTJ
note VERB
: PUNCT
a DET
lot NOUN
of ADP
people NOUN
have AUX
nominated VERB
Alexander PROPN
Graham PROPN
Bell PROPN
but CCONJ
Ifeel PROPN
he PRON
was AUX
really ADV
a DET
Scottish ADJ
/ SYM
American PROPN
with ADP
a DET
summer NOUN
home NOUN
in ADP
Canada PROPN
. PUNCT
NowI DET
know VERB
this DET
is AUX
debatable ADJ
, PUNCT
but CCONJ
please INTJ
do AUX
n't PART
nominate VERB
him PRON
again ADV
. PUNCT
If SCONJ
anyone PRON
can AUX
fill VERB
in ADP
some DET
of ADP
the DET
question NOUN
marks VERB
on ADP
the DET
list NOUN
, PUNCT
please INTJ
dropme VERB
a DET
line.================================================== PROPN
That PRON
was AUX
two NUM
years NOUN
ago ADV
. PUNCT
Since SCONJ
then ADV
, PUNCT
I PRON
have AUX
received VERB
a DET
grant NOUN
from ADP
ScienceCulture PROPN
Canada PROPN
, PUNCT
a DET
division NOUN
of ADP
Supply PROPN
and CCONJ
Services PROPN
Canada PROPN
to PART
research VERB
thebook NOUN
. PUNCT
Since SCONJ
my PRON
old ADJ
posting VERB
the DET
book NOUN
has AUX
evolved VERB
into ADP
an DET
educational ADJ
bookfor NOUN
kids NOUN
aged ADJ
9 NUM
- SYM
14 NUM
( PUNCT
though SCONJ
this DET
may AUX
change VERB
again ADV
) PUNCT
It PRON
will AUX
have AUX
about40 ADV
two NUM
- PUNCT
page NOUN
spreads VERB
with ADP
a DET
large ADJ
graphic NOUN
in ADP
the DET
middle NOUN
and CCONJ
text NOUN
/ SYM
graphicboxes NOUN
all ADV
around ADV
on ADP
the DET
following VERB
subjects NOUN
: PUNCT
Vital ADJ
statistics NOUN
and CCONJ
photo NOUN
ofthe NOUN
scientist NOUN
, PUNCT
Personal ADJ
statement NOUN
from ADP
the DET
scientist NOUN
, PUNCT
Narrative PROPN
of ADP
a DET
fewmoments NOUN
in ADP
the DET
life NOUN
of ADP
the DET
scientist NOUN
, PUNCT
" PUNCT
What PRON
I PRON
was AUX
doing VERB
when ADV
I PRON
was AUX
12",So NUM
you PRON
want VERB
to PART
be AUX
a DET
< X
insert NOUN
kind NOUN
of ADP
scientist NOUN
> X
, PUNCT
Experiment NOUN
you PRON
can AUX
do AUX
. PUNCT
There PRON
will AUX
be AUX
an DET
appendix PROPN
with ADP
100 NUM
- SYM
200 NUM
more ADJ
scientists NOUN
with ADP
one NUM
paragraphbiographies NOUN
who PRON
did AUX
n't PART
quite ADV
make VERB
it PRON
to ADP
the DET
double ADJ
spreads NOUN
. PUNCT
The DET
whole ADJ
thingwill NOUN
then ADV
be AUX
published VERB
on ADP
CD NOUN
- PUNCT
ROM NOUN
with ADP
video NOUN
and CCONJ
sound NOUN
clips NOUN
for ADP
addedrichness NOUN
. PUNCT
I PRON
am AUX
looking VERB
for ADP
a DET
CD NOUN
- PUNCT
ROM NOUN
publisher NOUN
as ADV
well ADV
. PUNCT
The DET
text NOUN
part NOUN
mayalso ADV
be AUX
available ADJ
on ADP
the DET
CANARIE PROPN
electronic ADJ
highway NOUN
being AUX
developed VERB
inCanada PUNCT
as ADV
well ADV
. PUNCT
I PRON
am AUX
still ADV
looking VERB
for ADP
a DET
publisher NOUN
though SCONJ
Penguin PROPN
Canada PROPN
came VERB
close ADV
to ADP
being AUX
it PRON
. PUNCT
Hope VERB
to PART
find VERB
one NOUN
soon ADV
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to PART
again ADV
ask VERB
for ADP
more ADJ
nominations NOUN
, PUNCT
especially ADV
in ADP
thepure NOUN
sciences NOUN
of ADP
Physics PROPN
, PUNCT
Chemistry PROPN
and CCONJ
Biology PROPN
. PUNCT
Also ADV
criticisms NOUN
of ADP
the DET
list NOUN
are AUX
welcomed VERB
. PUNCT
Also ADV
women NOUN
and CCONJ
French ADJ
- PUNCT
Canadian ADJ
scientists NOUN
are AUX
needed VERB
. PUNCT
I PRON
hope VERB
this DET
posting NOUN
will AUX
get AUX
others NOUN
to PART
nominate VERB
more ADJ
Great ADJ
CanadianScientists PROPN
, PUNCT
and CCONJ
to PART
discuss VERB
what PRON
is AUX
" PUNCT
great ADJ
" PUNCT
what PRON
is AUX
" PUNCT
Canadian PROPN
" PUNCT
and CCONJ
what PRON
is"scientist NOUN
" PUNCT
. PUNCT
Please INTJ
respond VERB
to:shell@sfu.ca PROPN
orBarry PROPN
Shell PROPN
   SPACE
604 NUM
- PUNCT
876 NUM
- PUNCT
5790 NUM
4692 NUM
Quebec PROPN
St. PROPN
Vancouver PROPN
, PUNCT
B.C. PROPN
  SPACE
V5V NOUN
3M1 NUM
Canada PROPN
Thanks NOUN
to ADP
all DET
who PRON
responded VERB
already ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59479From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>FLAME VERB
ON>>Especially PROPN
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not PART
> X
drop VERB
off ADP
the DET
edge NOUN
of ADP
the DET
earth.(WITH PROPN
- PUNCT
COUNTERFLAME PROPN
- PUNCT
ENABLED VERB
Columbus PROPN
was AUX
indeed ADV
a DET
crank NOUN
, PUNCT
but CCONJ
not PART
in ADP
the DET
manner NOUN
you PRON
think VERB
. PUNCT
The DET
fact NOUN
that SCONJ
the DET
world NOUN
was AUX
round ADJ
was AUX
well ADV
known VERB
when ADV
he PRON
set VERB
sail NOUN
. PUNCT
  SPACE
It PRON
was AUX
also ADV
well ADV
known ADJ
that SCONJ
the DET
circumference NOUN
was AUX
about ADV
25 NUM
K NOUN
miles NOUN
, PUNCT
and CCONJ
that SCONJ
you PRON
could AUX
not PART
reach VERB
Asia PROPN
bo NOUN
going VERB
west PROPN
with ADP
current ADJ
technology NOUN
-- PUNCT
you PRON
would AUX
neither CCONJ
be AUX
able ADJ
to PART
carry VERB
enough ADJ
supplies NOUN
, PUNCT
nor CCONJ
get AUX
a DET
long ADJ
enough ADJ
stretch NOUN
of ADP
good ADJ
sailing NOUN
weather NOUN
. PUNCT
  SPACE
Nobody PRON
thought VERB
he PRON
would AUX
fall VERB
off ADP
the DET
edge NOUN
of ADP
the DET
world NOUN
. PUNCT
  SPACE
Instead ADV
, PUNCT
they PRON
expected VERB
him PRON
to PART
die VERB
at ADP
sea NOUN
. PUNCT
Columbus PROPN
thought VERB
for ADP
no DET
good ADJ
reason NOUN
that SCONJ
the DET
circumference NOUN
was AUX
only ADV
16 NUM
K NOUN
miles NOUN
, PUNCT
making VERB
the DET
trip NOUN
practical ADJ
. PUNCT
Unfortunately ADV
for ADP
Columbus PROPN
and CCONJ
his PRON
shipmates NOUN
, PUNCT
the DET
Earth PROPN
's PART
circumference NOUN
is AUX
indeed ADV
25 NUM
K NOUN
miles NOUN
. PUNCT
Fortunately ADV
for ADP
Columbus PROPN
and CCONJ
his PRON
shipmates NOUN
, PUNCT
there PRON
was AUX
a DET
stopping VERB
place NOUN
right ADV
about ADP
where ADV
Asia PROPN
would AUX
have AUX
been AUX
had VERB
the DET
circumference NOUN
been AUX
16 NUM
K NOUN
miles NOUN
. PUNCT
My PRON
source NOUN
is AUX
the DET
recent ADJ
PBS PROPN
series NOUN
on ADP
Columbus.)>>FLAME PROPN
OFF PROPN
, PUNCT
or CCONJ
end NOUN
sermon NOUN
: PUNCT
-)>>-- PUNCT
AlexNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59480From NUM
: PUNCT
jcarey@news.weeg.uiowa.edu PROPN
( PUNCT
John PROPN
Carey)Subject PROPN
: PUNCT
med VERB
schoolActually ADV
I PRON
am AUX
entering VERB
vet NOUN
school NOUN
next ADJ
year NOUN
, PUNCT
but CCONJ
the DET
question NOUN
is AUX
relevant ADJ
for ADP
med ADJ
students NOUN
too ADV
. PUNCT
Memorizing VERB
large ADJ
amounts NOUN
has AUX
never ADV
been AUX
my PRON
strong ADJ
point NOUN
academically ADV
. PUNCT
Since SCONJ
this DET
is AUX
a DET
major ADJ
portion NOUN
of ADP
medical ADJ
education NOUN
-- PUNCT
anatomy NOUN
, PUNCT
histology NOUN
, PUNCT
pathology NOUN
, PUNCT
pharmacology NOUN
, PUNCT
are AUX
for ADP
the DET
most ADJ
part NOUN
mass NOUN
memorization NOUN
-- PUNCT
I PRON
am AUX
a DET
little ADV
concerned ADJ
. PUNCT
  SPACE
As SCONJ
I PRON
am AUX
sure ADJ
most ADJ
med ADJ
students NOUN
are AUX
. PUNCT
Can AUX
anyone PRON
suggest VERB
techniques NOUN
for ADP
this DET
type NOUN
of ADP
memorization NOUN
? PUNCT
  SPACE
I PRON
have AUX
had VERB
reasonable ADJ
success NOUN
with ADP
nemonics NOUN
and CCONJ
memory NOUN
tricks NOUN
likethinking VERB
up ADP
little ADJ
stories NOUN
to PART
associate VERB
unrelated ADJ
things NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
havenever ADV
applied VERB
them PRON
to ADP
large ADJ
amounts NOUN
of ADP
" PUNCT
data" NOUN
. PUNCT
Has AUX
anyone PRON
had AUX
luck NOUN
with ADP
any DET
particular ADJ
books NOUN
, PUNCT
memory NOUN
systems NOUN
, PUNCT
orcheap PROPN
software NOUN
? PUNCT
   SPACE
Can AUX
you PRON
suggest VERB
any DET
helpful ADJ
organizational ADJ
techniques NOUN
? PUNCT
  SPACE
Being AUX
anolder NOUN
student NOUN
who PRON
returned VERB
to ADP
school NOUN
this DET
year NOUN
, PUNCT
organization NOUN
( PUNCT
anotherone NOUN
of ADP
my PRON
weak ADJ
points NOUN
) PUNCT
has AUX
been AUX
a DET
major ADJ
help NOUN
to ADP
my PRON
success NOUN
. PUNCT
Please INTJ
no DET
griping NOUN
about ADP
how ADV
all DET
you PRON
have AUX
to PART
do AUX
is AUX
" PUNCT
learn VERB
" PUNCT
the DET
materialconceptually ADV
. PUNCT
  SPACE
I PRON
have AUX
no DET
problem NOUN
with ADP
that DET
, PUNCT
it PRON
is AUX
one NUM
of ADP
my PRON
strong ADJ
points NOUN
. PUNCT
  SPACE
But CCONJ
you PRON
ca AUX
n't PART
get AUX
around ADP
the DET
fact NOUN
that SCONJ
much ADJ
of ADP
medicine NOUN
isrote PROPN
memorization NOUN
. PUNCT
  SPACE
Thanks NOUN
for ADP
your PRON
help NOUN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59481From NUM
: PUNCT
daless@di.unipi.it PROPN
( PUNCT
Antonella PROPN
Dalessandro)Subject NUM
: PUNCT
Epilepsy NOUN
and CCONJ
video NOUN
gamesThere NOUN
have AUX
been AUX
a DET
few ADJ
postings NOUN
in ADP
the DET
past NOUN
on ADP
alleged VERB
pathological PROPN
( PUNCT
esp ADV
. PUNCT
neurological ADJ
) PUNCT
conditions NOUN
induced VERB
by ADP
playing VERB
video NOUN
games(e.g PROPN
. PUNCT
Nintendo PROPN
) PUNCT
. PUNCT
Apparently ADV
, PUNCT
there PRON
have AUX
been AUX
reported VERB
several ADJ
cases NOUN
of"photosensitive NUM
epilepsy NOUN
" PUNCT
, PUNCT
due ADP
to ADP
the DET
flashing NOUN
of ADP
somepatterns NOUN
and CCONJ
the DET
strong ADJ
attention NOUN
of ADP
the DET
( PUNCT
young ADJ
) PUNCT
players NOUN
. PUNCT
One NUM
poster NOUN
to PART
comp.risks PROPN
reported VERB
some DET
action NOUN
fromthe NOUN
British ADJ
Government PROPN
. PUNCT
A DET
quick ADJ
search NOUN
in ADP
a DET
database NOUN
reported VERB
the DET
following VERB
two NUM
publishedreferences:1 NUM
. PUNCT
E.J. PROPN
Hart PROPN
, PUNCT
Nintendo PROPN
epilepsy NOUN
, PUNCT
in ADP
New PROPN
England PROPN
J. PROPN
of ADP
Med PROPN
. PROPN
, PUNCT
322(20 NUM
) PUNCT
, PUNCT
14732 NUM
. PUNCT
TK PROPN
Daneshmend PROPN
et PROPN
al PROPN
. PROPN
, PUNCT
Dark PROPN
Warrior PROPN
epilepsy NOUN
, PUNCT
BMJ PROPN
1982 NUM
; PUNCT
284:1751 NUM
- PUNCT
2.I NUM
would AUX
appreciate VERB
if SCONJ
someone PRON
could AUX
post VERB
( PUNCT
or CCONJ
e ADJ
- NOUN
mail NOUN
) PUNCT
any DET
reference NOUN
to ADP
( PUNCT
preferably ADV
published VERB
) PUNCT
further ADV
work NOUN
on ADP
the DET
subject NOUN
. PUNCT
Any DET
pointer NOUN
to ADP
other ADJ
information NOUN
and/or CCONJ
to ADP
possible ADJ
technical ADJ
tools NOUN
( PUNCT
if SCONJ
any DET
) PUNCT
for ADP
reducing VERB
the DET
risks NOUN
are AUX
appreciated VERB
. PUNCT
Many ADJ
thanks NOUN
, PUNCT
Antonella PROPN
D'Alessandro PROPN
, PUNCT
Pisa PROPN
-- PUNCT
Italy PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59482From NUM
: PUNCT
adwright@iastate.edu X
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesIn PROPN
< X
1993Apr29.112642.1@vms.ocom.okstate.edu NUM
> X
chorley@vms.ocom.okstate.edu PROPN
writes:>In PROPN
article NOUN
< X
35004@castle.ed.ac.uk NOUN
> X
, PUNCT
gtclark@festival.ed.ac.uk PROPN
( PUNCT
G PROPN
T PROPN
Clark PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
Does AUX
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someone>>>was INTJ
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
would>>>be NOUN
liable ADJ
to PART
happen VERB
to ADP
the DET
person NOUN
? PUNCT
> X
> X
> X
> X
> X
( PUNCT
Just ADV
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
my>>>house NOUN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case NOUN
' PUNCT
. PUNCT
) PUNCT
> X
> X
> X
> X
> X
Rebecca PROPN
> X
> X
> X
> X
> X
> X
	 SPACE
Millipedes NOUN
, PUNCT
I PRON
understand VERB
, PUNCT
are AUX
vegetarian ADJ
, PUNCT
and CCONJ
therefore ADV
almost ADV
> X
> X
certainly ADV
will AUX
not PART
bite VERB
and CCONJ
are AUX
not PART
poisonous ADJ
. PUNCT
Centipedes NOUN
are AUX
> X
> X
carnivorous ADJ
, PUNCT
and CCONJ
although SCONJ
I PRON
do AUX
n't PART
have AUX
any DET
absolute ADJ
knowledge NOUN
on ADP
this DET
, PUNCT
I PRON
> X
> X
would AUX
tend VERB
to PART
think VERB
that SCONJ
you PRON
're AUX
in ADP
no DET
danger NOUN
from ADP
anything PRON
but SCONJ
a DET
> X
> X
concerted ADJ
assault NOUN
by ADP
several ADJ
million NUM
of ADP
them PRON
. PUNCT
> X
> X
> X
> X
			 SPACE
G.>Not INTJ
sure ADJ
of ADP
this DET
but CCONJ
I PRON
think VERB
some DET
millipedes NOUN
cause VERB
a DET
toxic ADJ
reaction NOUN
( PUNCT
sting?>So NOUN
I PRON
would AUX
not PART
assume VERB
that SCONJ
they PRON
are AUX
not PART
dangerous ADJ
merely ADV
on ADP
the DET
basis NOUN
of ADP
> X
vegetarianism NOUN
, PUNCT
after ADP
all DET
wasps NOUN
are AUX
vegetarian ADJ
too.>dnc NOUN
. PUNCT
As SCONJ
a DET
child NOUN
i PRON
can AUX
remember VERB
picking VERB
up ADP
a DET
centipede NOUN
and CCONJ
getting VERB
a DET
rather ADV
painful ADJ
sting NOUN
, PUNCT
but CCONJ
it PRON
quickly ADV
subsided VERB
. PUNCT
Much ADV
less ADV
painful ADJ
compared VERB
to ADP
a DET
bee NOUN
sting NOUN
. PUNCT
Centipedes NOUN
have AUX
a DET
poison NOUN
claw NOUN
( PUNCT
one NUM
of ADP
the DET
front ADJ
feet NOUN
) PUNCT
to PART
stun VERB
their PRON
prey NOUN
, PUNCT
butin VERB
my PRON
single ADJ
experience NOUN
it PRON
did AUX
not PART
have AUX
a DET
lot NOUN
of ADP
" PUNCT
bite NOUN
" PUNCT
to ADP
it PRON
. PUNCT
A.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59483From NUM
: PUNCT
wdh@faron.mitre.org PROPN
( PUNCT
Dale PROPN
Hall)Subject NUM
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
8frk1ym00Vp5Apxl1q@andrew.cmu.edu NUM
> X
" PUNCT
Gabriel PROPN
D. PROPN
Underwood PROPN
" PUNCT
< X
gabe+@CMU.EDU PROPN
> X
writes:>I PROPN
heard VERB
a DET
great ADJ
Civil PROPN
War PROPN
story NOUN
... PUNCT
      SPACE
A DET
guy NOUN
on ADP
the DET
battlfield NOUN
is AUX
shot VERB
> X
in ADP
the DET
groin NOUN
, PUNCT
   SPACE
the DET
bullet NOUN
continues VERB
on ADP
it PRON
's AUX
path NOUN
, PUNCT
and CCONJ
lodges NOUN
in ADP
the DET
> X
abdomen NOUN
of ADP
a DET
female ADJ
spectator NOUN
. PUNCT
    SPACE
Lo PROPN
and CCONJ
behold VERB
.... PUNCT
>>As X
the DET
legend NOUN
goes VERB
, PUNCT
   SPACE
both DET
parents NOUN
survived VERB
, PUNCT
  SPACE
married VERB
, PUNCT
  SPACE
and CCONJ
raised VERB
the DET
child NOUN
. PUNCT
> X
	 SPACE
.... PUNCT
who PRON
turned VERB
out ADP
to PART
be AUX
a DET
real ADJ
son NOUN
- PUNCT
of ADP
- PUNCT
a DET
- PUNCT
gun NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59484From NUM
: PUNCT
< X
ICBAL@ASUACAD.BITNET NOUN
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Depression NOUN
> X
I PRON
do AUX
believe VERB
that SCONJ
depression NOUN
can AUX
have AUX
a DET
dietary ADJ
component NOUN
. PUNCT
Depression NOUN
can AUX
also ADV
have AUX
various ADJ
chemical NOUN
( PUNCT
environmental ADJ
) PUNCT
components NOUN
. PUNCT
I PRON
noticed VERB
that SCONJ
I PRON
became VERB
depressed ADJ
in ADP
various ADJ
buildings NOUN
, PUNCT
and CCONJ
at ADP
homewhen ADV
the DET
air NOUN
conditioning NOUN
was AUX
on ADV
. PUNCT
Subsequent ADJ
testing NOUN
revealed VERB
thatI PROPN
was AUX
allergic ADJ
to ADP
stemphyllium NOUN
, PUNCT
a DET
mold NOUN
commonly ADV
found VERB
in ADP
air NOUN
conditioners NOUN
. PUNCT
After ADP
I PRON
began VERB
taking VERB
antigens NOUN
, PUNCT
that DET
problem NOUN
disappeared VERB
. PUNCT
Bruce PROPN
L.Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59485From NUM
: PUNCT
mcovingt@aisun4.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser NOUN
printers??Laser NOUN
printers NOUN
often ADV
emit VERB
ozone NOUN
( PUNCT
which PRON
smells VERB
sort ADV
of ADV
like INTJ
Clorox).Adequate PROPN
ventilation NOUN
is AUX
recommended.-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59486From NUM
: PUNCT
mcovingt@aisun4.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
C697IJ.IuA@srgenprp.sr.hp.com X
> X
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
writes:>pk115050@wvnvms.wvnet.edu PROPN
wrote:>move PROPN
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes,>by NOUN
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'd NOUN
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
One NUM
more ADJ
reason NOUN
for ADP
men NOUN
to PART
learn VERB
the DET
Lamaze PROPN
breathing NOUN
techniques NOUN
, PUNCT
in ADP
orderto ADJ
be AUX
able ADJ
to PART
get AUX
some DET
pain NOUN
reduction NOUN
instantly ADV
, PUNCT
wherever ADV
you PRON
are.-- VERB
: PUNCT
- SYM
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59487From NUM
: PUNCT
brian@ucsd.edu X
( PUNCT
Brian PROPN
Kantor)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
As SCONJ
I PRON
recall VERB
from ADP
my PRON
bout NOUN
with ADP
kidney NOUN
stones NOUN
, PUNCT
there PRON
is AUX
n't PART
anymedication NOUN
that PRON
can AUX
do AUX
anything PRON
about ADP
them PRON
except PART
relieve VERB
the DET
pain NOUN
. PUNCT
Either CCONJ
they PRON
pass VERB
, PUNCT
or CCONJ
they PRON
have AUX
to PART
be AUX
broken VERB
up ADP
with ADP
sound NOUN
, PUNCT
or CCONJ
they PRON
haveto AUX
be AUX
extracted VERB
surgically ADV
. PUNCT
When ADV
I PRON
was AUX
in ADV
, PUNCT
the DET
X NOUN
- NOUN
ray NOUN
tech NOUN
happened VERB
to PART
mention VERB
that SCONJ
she PRON
'd AUX
had VERB
kidneystones NOUN
and CCONJ
children NOUN
, PUNCT
and CCONJ
the DET
childbirth ADJ
hurt NOUN
less ADV
. PUNCT
Demerol PROPN
worked VERB
, PUNCT
although SCONJ
I PRON
nearly ADV
got VERB
arrested VERB
on ADP
my PRON
way NOUN
home ADV
when ADV
I PRON
barfedall VERB
over ADP
the DET
police NOUN
car NOUN
parked VERB
just ADV
outside ADP
the DET
ER PROPN
. PUNCT
	 SPACE
- PUNCT
BrianNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59488From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject X
: PUNCT
DepressionSome PROPN
of ADP
the DET
MD PROPN
's PART
in ADP
this DET
newsgroup NOUN
have AUX
been AUX
riding VERB
my PRON
butt NOUN
pretty ADV
good(maybe PROPN
in ADP
some DET
cases NOUN
with ADP
good ADJ
reason NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
this DET
post NOUN
on ADP
depression NOUN
, PUNCT
I PRON
'm AUX
laying VERB
it PRON
all DET
out ADP
. PUNCT
  SPACE
I PRON
'll AUX
continue VERB
to PART
post VERB
here ADV
because SCONJ
I PRON
think VERB
that SCONJ
I PRON
have AUX
some DET
knowledge NOUN
that PRON
could AUX
be AUX
useful ADJ
. PUNCT
  SPACE
Once SCONJ
you PRON
have AUX
read VERB
this DET
post NOUN
, PUNCT
you PRON
should AUX
know VERB
where ADV
I PRON
'm AUX
coming VERB
from ADP
when ADV
I PRON
post VERB
again ADV
in ADP
the DET
future NOUN
. PUNCT
In ADP
article NOUN
< X
123552@netnews.upenn.edu NUM
> X
, PUNCT
lchaplyn@mail.sas.upenn.edu PROPN
( PUNCT
Lida PROPN
Chaplynsky PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
A DET
family NOUN
member NOUN
of ADP
mine NOUN
is AUX
suffering VERB
from ADP
a DET
severe ADJ
depression NOUN
brought VERB
on ADP
> X
by ADP
menopause NOUN
as ADV
well ADV
as SCONJ
a DET
mental ADJ
break NOUN
down ADP
. PUNCT
  SPACE
She PRON
is AUX
being AUX
treated VERB
with ADP
> X
Halydol PROPN
with ADP
some DET
success NOUN
but CCONJ
the DET
treatments NOUN
being AUX
provided VERB
through ADP
her PRON
> X
psychiatrist NOUN
are AUX
not PART
satisfactory ADJ
. PUNCT
  SPACE
Someone PRON
suggested VERB
contacting VERB
a DET
> X
nutritionist NOUN
to ADP
> X
discuss VERB
alternative ADJ
treatment NOUN
. PUNCT
  SPACE
Since SCONJ
she PRON
is AUX
sensitive ADJ
to ADP
medication NOUN
, PUNCT
I PRON
> X
think VERB
this DET
is AUX
a DET
good ADJ
suggestion NOUN
but CCONJ
do AUX
n't PART
know VERB
where ADV
to PART
begin VERB
. PUNCT
  SPACE
If SCONJ
anyone PRON
> X
can AUX
suggest VERB
a DET
Philly ADJ
area NOUN
nutritionist NOUN
, PUNCT
or CCONJ
else ADV
some DET
literature NOUN
to PART
read VERB
, PUNCT
> X
I PRON
'd AUX
appreciate VERB
it PRON
. PUNCT
Lida PROPN
, PUNCT
I PRON
can AUX
emphasize VERB
with ADP
your PRON
situation NOUN
. PUNCT
  SPACE
Both CCONJ
my PRON
wife NOUN
and CCONJ
I PRON
suffered VERB
from ADP
bouts NOUN
of ADP
depression NOUN
. PUNCT
  SPACE
Her PRON
's PART
was AUX
brought VERB
on ADP
by ADP
breast NOUN
cancer NOUN
and CCONJ
mine NOUN
was AUX
a DET
rebound ADJ
stress NOUN
reaction NOUN
to ADP
her PRON
modified VERB
radical ADJ
mastectomy NOUN
and CCONJ
chemotherapy NOUN
. PUNCT
  SPACE
Lida PROPN
, PUNCT
I PRON
used VERB
my PRON
knowledge NOUN
of ADP
nutrition NOUN
to PART
get AUX
her PRON
through ADP
her PRON
six NUM
months NOUN
of ADP
chemotherapy(with PROPN
the DET
approval NOUN
of ADP
her PRON
oncologist NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
severe ADJ
depression NOUN
set VERB
in ADP
a DET
few ADJ
months NOUN
after ADP
the DET
chemo NOUN
stopped VERB
, PUNCT
I PRON
tried VERB
to PART
use VERB
supplements NOUN
to PART
bring VERB
her PRON
out SCONJ
of ADP
it PRON
. PUNCT
  SPACE
I PRON
had AUX
" PUNCT
cured VERB
" PUNCT
her PRON
PMS PROPN
using VERB
supplements NOUN
and CCONJ
I PRON
really ADV
thought VERB
that SCONJ
I PRON
knew VERB
enough ADV
about ADP
the DET
role NOUN
of ADP
diet NOUN
in ADP
depression NOUN
to PART
take VERB
care NOUN
of ADP
her PRON
depression NOUN
as ADV
well ADV
. PUNCT
  SPACE
It PRON
did AUX
n't PART
work VERB
and CCONJ
she PRON
was AUX
put VERB
on ADP
Prozac PROPN
by ADP
her PRON
oncologist NOUN
. PUNCT
  SPACE
Two NUM
Winters PROPN
ago(three NUM
years NOUN
after ADP
by ADP
wife NOUN
's PART
breast NOUN
cancer NOUN
) PUNCT
I PRON
got VERB
hit VERB
with ADP
severe ADJ
depression(pretty PROPN
typical ADJ
and CCONJ
one NUM
reason NOUN
why ADV
many ADJ
marriages NOUN
break VERB
up ADP
after ADP
breast NOUN
cancer NOUN
or CCONJ
another DET
stressor NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
tried VERB
to PART
take VERB
care NOUN
of ADP
it PRON
for ADP
several ADJ
months NOUN
with ADP
supplementation NOUN
. PUNCT
  SPACE
Did AUX
n't PART
work VERB
. PUNCT
  SPACE
My PRON
internist NOUN
ended VERB
up ADP
putting VERB
me PRON
on ADP
Prozac PROPN
. PUNCT
I PRON
was AUX
going VERB
to PART
give VERB
you PRON
a DET
list NOUN
of ADP
several ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
using VERB
B6 PROPN
, PUNCT
niacin PROPN
, PUNCT
folate NOUN
and CCONJ
B12 PROPN
to PART
" PUNCT
cure VERB
" PUNCT
depression NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
going VERB
to PART
do AUX
that DET
because SCONJ
all DET
you PRON
would AUX
be AUX
doing VERB
is AUX
flying VERB
blind ADJ
like SCONJ
I PRON
was AUX
. PUNCT
Lida PROPN
, PUNCT
I PRON
do AUX
believe VERB
that SCONJ
depression NOUN
can AUX
have AUX
a DET
dietary ADJ
component NOUN
. PUNCT
  SPACE
But CCONJ
the DET
problem NOUN
is AUX
that SCONJ
you PRON
need VERB
to PART
know VERB
exactly ADV
what PRON
the DET
problem NOUN
is AUX
and CCONJ
then ADV
use VERB
an DET
approach NOUN
which PRON
will AUX
" PUNCT
fix VERB
" PUNCT
the DET
problem NOUN
. PUNCT
  SPACE
For ADP
chemotherapy NOUN
, PUNCT
I PRON
knew VERB
exactly ADV
what PRON
drugs NOUN
were AUX
going VERB
to PART
be AUX
used VERB
and CCONJ
exactly ADV
what PRON
nutrients NOUN
would AUX
be AUX
affected VERB
. PUNCT
  SPACE
Same ADJ
thing NOUN
for ADP
PMS PROPN
. PUNCT
  SPACE
I PRON
was AUX
flying VERB
blind ADJ
for ADP
both DET
of ADP
these DET
stressors NOUN
but CCONJ
the DET
literature NOUN
that PRON
I PRON
used VERB
to PART
devise VERB
a DET
treatment NOUN
program NOUN
was AUX
pretty ADV
good ADJ
. PUNCT
  SPACE
Depression NOUN
is AUX
just ADV
too ADV
complicated ADJ
. PUNCT
  SPACE
What PRON
you PRON
really ADV
need VERB
is AUX
a DET
nutritional ADJ
scan NOUN
. PUNCT
  SPACE
This DET
is AUX
not PART
a DET
diet NOUN
analysis NOUN
but CCONJ
an DET
analysis NOUN
of ADP
your PRON
bodies NOUN
nutrient ADJ
reserves NOUN
. PUNCT
  SPACE
For ADP
every DET
vitamin NOUN
and CCONJ
mineral(except PROPN
vitamin NOUN
C PROPN
) PUNCT
, PUNCT
you PRON
have AUX
a DET
reserve NOUN
. PUNCT
  SPACE
The DET
RDA PROPN
is AUX
not PART
designed VERB
to PART
give VERB
you PRON
enough ADJ
of ADP
any DET
nutrient NOUN
to PART
keep VERB
these DET
reserves NOUN
full ADJ
, PUNCT
it PRON
is AUX
only ADV
designed VERB
to PART
keep VERB
them PRON
from ADP
being AUX
emptied VERB
which PRON
would AUX
cause VERB
clinical ADJ
pathology NOUN
. PUNCT
  SPACE
Stress NOUN
will AUX
increase VERB
your PRON
need NOUN
for ADP
many ADJ
vitamins NOUN
and CCONJ
minerals NOUN
. PUNCT
  SPACE
This DET
is AUX
when ADV
your PRON
reserves NOUN
become VERB
very ADV
important ADJ
. PUNCT
Lida PROPN
, PUNCT
without ADP
your PRON
permission NOUN
, PUNCT
I PRON
'm AUX
going VERB
to PART
use VERB
your PRON
post NOUN
as SCONJ
a DET
conduit NOUN
to PART
try VERB
to PART
explain VERB
to ADP
the DET
readers NOUN
in ADP
this DET
group NOUN
and CCONJ
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
where ADV
I PRON
'm AUX
coming VERB
from ADP
. PUNCT
  SPACE
I PRON
have AUX
taught VERB
a DET
course NOUN
on ADP
human ADJ
nutrition NOUN
in ADP
one NUM
of ADP
the DET
Osteopathic PROPN
Medical PROPN
schools NOUN
for ADP
ten NUM
years NOUN
now ADV
. PUNCT
  SPACE
I PRON
've AUX
written VERB
my PRON
own ADJ
textbook NOUN
because SCONJ
none NOUN
was AUX
available ADJ
. PUNCT
  SPACE
What PRON
I PRON
teach VERB
is AUX
not PART
a DET
rehash NOUN
of ADP
biochemistry NOUN
. PUNCT
  SPACE
I PRON
preach VERB
nutrient ADJ
reserves(yes VERB
my PRON
lectures NOUN
in ADP
this DET
course NOUN
are AUX
referred VERB
to ADP
by ADP
my PRON
students NOUN
as SCONJ
sermons NOUN
) PUNCT
. PUNCT
  SPACE
Here ADV
is AUX
what PRON
I PRON
cover VERB
: PUNCT
Indroduction NOUN
and CCONJ
Carbohydrates PROPN
			 SPACE
LipidsProteins PROPN
I PRON
					 SPACE
Proteins NOUN
IIEnergy VERB
Balance NOUN
					 SPACE
Evaluation PROPN
of ADP
Nutritional PROPN
						 SPACE
Status PROPN
I PRON
, PUNCT
A DET
Clinical PROPN
						 SPACE
PerspectiveEvaluation PROPN
of ADP
Nutritional PROPN
Status PROPN
II PROPN
, PUNCT
            SPACE
Evaluation PROPN
of ADP
Nutritional PROPN
		 SPACE
A PROPN
Biochemical PROPN
Perspective PROPN
			 SPACE
Status PROPN
III PROPN
, PUNCT
Homework PROPN
						 SPACE
Assignment PROPN
Using VERB
the DET
						 SPACE
Nutritionist PROPN
IV PROPN
Diet PROPN
and CCONJ
						 SPACE
Fitness PROPN
Analysis PROPN
Software PROPN
						 SPACE
programWeight NOUN
Control NOUN
					 SPACE
Food PROPN
Fads PROPN
and CCONJ
FactsAge PROPN
- PUNCT
Related VERB
Change NOUN
in ADP
Nutrient PROPN
Requirements PROPN
	 SPACE
Food PROPN
Additives PROPN
, PUNCT
						 SPACE
Contaminants PROPN
and CCONJ
CancerDrug PROPN
- PUNCT
Nutrient PROPN
Interactions PROPN
			 SPACE
Mineral PROPN
and CCONJ
Water PROPN
BalanceSodium PROPN
, PUNCT
Potassium PROPN
and CCONJ
Chloride PROPN
			 SPACE
Calcium PROPN
, PUNCT
Magnesium PROPN
and CCONJ
						 SPACE
PhosphorusIron PROPN
						 SPACE
Zinc PROPN
and CCONJ
CopperIodine PROPN
and CCONJ
Fluoride PROPN
				 SPACE
Other PROPN
Trace PROPN
MineralsVitamin PROPN
A DET
					 SPACE
Vitamin NOUN
EVitamins VERB
D NOUN
and CCONJ
K PROPN
				 SPACE
Vitamin PROPN
CThiamin PROPN
and CCONJ
Niacin PROPN
				 SPACE
Riboflavin PROPN
and CCONJ
PyridoxinePantothenic PROPN
and CCONJ
Folic ADJ
acids NOUN
			 SPACE
Biotin PROPN
and CCONJ
B12Other ADJ
Nutrient PROPN
Factors NOUN
				 SPACE
Enteral PROPN
NutritionParenteral PROPN
NutritionEvery PROPN
three NUM
years NOUN
I PRON
spend VERB
my PRON
entire ADJ
Summer NOUN
reviewing VERB
the DET
Medical ADJ
literature NOUN
to PART
find VERB
material NOUN
that PRON
I PRON
can AUX
use VERB
in ADP
my PRON
nutrition NOUN
textbook NOUN
. PUNCT
  SPACE
I PRON
last ADV
did AUX
this DET
in ADP
the DET
Summer PROPN
of ADP
1991 NUM
. PUNCT
  SPACE
I PRON
read VERB
everything PRON
that PRON
I PRON
can AUX
find VERB
and CCONJ
then ADV
sit VERB
down ADP
and CCONJ
rewrite VERB
my PRON
lecture NOUN
handouts NOUN
which PRON
are AUX
bound VERB
in ADP
three NUM
separate ADJ
books NOUN
that PRON
have AUX
217 NUM
, PUNCT
237 NUM
and CCONJ
122 NUM
pages NOUN
. PUNCT
  SPACE
Opposite ADP
each DET
page NOUN
of ADP
written VERB
text(which PROPN
I PRON
write VERB
myself PRON
) PUNCT
I PRON
've AUX
pulled VERB
figures NOUN
, PUNCT
tables NOUN
and CCONJ
graphs NOUN
from ADP
various ADJ
copyrighted VERB
sources NOUN
. PUNCT
  SPACE
Since SCONJ
this DET
material NOUN
is AUX
only ADV
being AUX
used VERB
for ADP
educational ADJ
purposes NOUN
, PUNCT
I PRON
can AUX
get AUX
around ADP
the DET
copyright NOUN
laws NOUN
( PUNCT
so ADV
far ADV
) PUNCT
. PUNCT
  SPACE
I PRON
can AUX
not PART
send VERB
this DET
material NOUN
out SCONJ
to PART
newsgroup VERB
readers(as NOUN
I PRON
've AUX
been AUX
asked VERB
to PART
do).I PROPN
am AUX
now ADV
in ADP
the DET
process NOUN
of ADP
trying VERB
to PART
get AUX
a DET
grant NOUN
to PART
setup VERB
a DET
nutrition NOUN
assessment NOUN
lab NOUN
. PUNCT
  SPACE
This DET
is AUX
the DET
last ADJ
peice NOUN
of ADP
the DET
nutrition NOUN
puzzle NOUN
that PRON
I PRON
need VERB
to PART
make VERB
my PRON
education NOUN
program NOUN
complete ADJ
. PUNCT
  SPACE
This DET
lab NOUN
will AUX
let VERB
me PRON
measure VERB
the DET
nutrient PROPN
reserve NOUN
for ADP
almost ADV
all DET
the DET
vitamins NOUN
and CCONJ
minerals NOUN
that PRON
are AUX
known VERB
to PART
be AUX
required VERB
in ADP
humans NOUN
. PUNCT
  SPACE
The DET
Mayo PROPN
clinic NOUN
already ADV
uses VERB
a DET
similiar ADJ
lab NOUN
to PART
design VERB
supplement NOUN
programs NOUN
for ADP
their PRON
cancer NOUN
patients NOUN
. PUNCT
  SPACE
Cancer PROPN
Treatment PROPN
Centers PROPN
of ADP
America PROPN
, PUNCT
which PRON
is AUX
a DET
private ADJ
for ADP
- PUNCT
profit NOUN
organization NOUN
with ADP
hospitals NOUN
in ADP
Illinois PROPN
and CCONJ
Oklahoma(Tulsa PROPN
) PUNCT
also ADV
operates VERB
a DET
nutritional ADJ
assessment NOUN
clinical ADJ
lab NOUN
. PUNCT
  SPACE
I PRON
also ADV
believe VERB
that SCONJ
the DET
Pritikin PROPN
Clinic PROPN
in ADP
California PROPN
has AUX
a DET
similiar ADJ
lab NOUN
setup NOUN
. PUNCT
For ADP
physicians NOUN
reading VERB
this DET
post NOUN
, PUNCT
I PRON
would AUX
suggest VERB
that SCONJ
you PRON
get VERB
the DET
new ADJ
Clinical PROPN
Nutrition PROPN
Textbook PROPN
that PRON
has AUX
just ADV
been AUX
published(Feb ADJ
) PUNCT
by ADP
Mosby PROPN
. PUNCT
  SPACE
I PRON
have AUX
been AUX
using VERB
Alpers PROPN
Manual PROPN
of ADP
Nutritional PROPN
Therapeutics(a PROPN
Little PROPN
Brown PROPN
series NOUN
book NOUN
) PUNCT
as SCONJ
a DET
supplemental ADJ
text NOUN
for ADP
my PRON
course NOUN
but CCONJ
Alpers PROPN
is AUX
geared VERB
more ADV
to ADP
residency NOUN
training NOUN
. PUNCT
  SPACE
Two NUM
M.D PROPN
's PART
have AUX
written VERB
this DET
new ADJ
Clinical PROPN
Nutritiontextbook PROPN
and CCONJ
it PRON
is AUX
geared VERB
more ADV
towards ADP
medical ADJ
student NOUN
education NOUN
and CCONJ
it PRON
does AUX
a DET
good ADJ
job NOUN
of ADP
covering VERB
the DET
lab NOUN
tests NOUN
that PRON
can AUX
be AUX
run VERB
to PART
assess VERB
a DET
patient NOUN
's PART
nutritional ADJ
status NOUN
. PUNCT
  SPACE
Let VERB
me PRON
quote VERB
a DET
few ADJ
sentences NOUN
from ADP
the DET
Preface PROPN
of ADP
this DET
new ADJ
text:"So PROPN
- PUNCT
called VERB
nutrition NOUN
specialists NOUN
were AUX
in ADP
reality NOUN
gastroenterologists NOUN
, PUNCT
hematologists NOUN
, PUNCT
or CCONJ
pediatricians NOUN
who PRON
just ADV
happened VERB
to PART
profess VERB
some DET
knowledge NOUN
of ADP
nutrition NOUN
as SCONJ
it PRON
related VERB
to ADP
their PRON
field NOUN
of ADP
practice NOUN
. PUNCT
" PUNCT
  SPACE
" PUNCT
Unfortunately ADV
, PUNCT
about ADV
two NUM
thirds NOUN
of ADP
the DET
medical ADJ
schools NOUN
in ADP
the DET
United PROPN
States PROPN
require VERB
no DET
formal ADJ
instruction NOUN
in ADP
nutrition NOUN
. PUNCT
""But PUNCT
times NOUN
and CCONJ
medical ADJ
practice NOUN
have AUX
changed VERB
. PUNCT
  SPACE
More ADJ
than SCONJ
half NOUN
of ADP
the DET
leading VERB
causes NOUN
of ADP
death NOUN
in ADP
this DET
country NOUN
are AUX
nutrition NOUN
related ADJ
. PUNCT
" PUNCT
" PUNCT
... PUNCT
this DET
monograph NOUN
should AUX
accomplish VERB
the DET
following VERB
two NUM
objectives NOUN
: PUNCT
( PUNCT
1 X
) PUNCT
it PRON
should AUX
complement VERB
your PRON
medical ADJ
training NOUN
by ADP
emphasizing VERB
the DET
relevance NOUN
of ADP
nutrition NOUN
to ADP
your PRON
medical ADJ
practice NOUN
; PUNCT
and CCONJ
( PUNCT
2 X
) PUNCT
it PRON
should AUX
heighten VERB
your PRON
awareness NOUN
of ADP
nutrition NOUN
as SCONJ
a DET
medical ADJ
speciality NOUN
that PRON
is AUX
vitally ADV
important ADJ
for ADP
both CCONJ
disease PROPN
prevention PROPN
and CCONJ
the DET
treatment NOUN
of ADP
diseases NOUN
of ADP
essentially ADV
every DET
organ NOUN
system NOUN
. PUNCT
"Roland PUNCT
L. PROPN
Weinsier PROPN
, PUNCT
MD PROPN
, PUNCT
DrPH VERB
Lida PROPN
, PUNCT
my PRON
advise NOUN
to ADP
you PRON
is AUX
that SCONJ
you PRON
tell VERB
your PRON
family NOUN
members NOUN
to PART
try VERB
to PART
find VERB
a DET
physician NOUN
who PRON
has AUX
an DET
understanding NOUN
of ADP
the DET
role NOUN
that PRON
vitamins VERB
and CCONJ
minerals(yes X
even ADV
magnesium NOUN
may AUX
play VERB
a DET
role NOUN
in ADP
depression NOUN
) PUNCT
play VERB
in ADP
depression NOUN
and CCONJ
who PRON
could AUX
get AUX
a DET
nutritional ADJ
profile NOUN
run NOUN
. PUNCT
  SPACE
Menopause PROPN
is AUX
often ADV
a DET
time NOUN
when ADV
women NOUN
suffer VERB
depression NOUN
. PUNCT
  SPACE
There PRON
are AUX
a DET
lot NOUN
of ADP
hormonal ADJ
changes NOUN
that PRON
are AUX
occuring VERB
but CCONJ
they PRON
are AUX
not PART
the DET
same ADJ
ones NOUN
that PRON
occur VERB
during ADP
PMS PROPN
. PUNCT
  SPACE
A DET
nutritionist NOUN
may AUX
also ADV
be AUX
able ADJ
to PART
help VERB
. PUNCT
  SPACE
Not PART
too ADV
long ADV
ago ADV
a DET
poster NOUN
mentioned VERB
that SCONJ
his PRON
nutritionist NOUN
had AUX
diagnosed VERB
a DET
selenium NOUN
deficiency NOUN
based VERB
on ADP
a DET
red ADJ
cell NOUN
glutathionine NOUN
peroxidase NOUN
test(the DET
specific ADJ
test NOUN
for ADP
the DET
selenium NOUN
reserve PROPN
) PUNCT
. PUNCT
  SPACE
Most ADV
clinical ADJ
labs NOUN
will AUX
not PART
run VERB
this DET
test NOUN
and CCONJ
I PRON
advised VERB
him PRON
to PART
try VERB
to PART
make VERB
sure ADJ
that SCONJ
the DET
lab NOUN
that PRON
did AUX
the DET
test NOUN
was AUX
certified VERB
. PUNCT
  SPACE
There PRON
are AUX
also ADV
a DET
lot NOUN
of ADP
hair NOUN
and CCONJ
nail NOUN
analysis NOUN
labs NOUN
setup NOUN
to PART
do AUX
trace NOUN
mineral NOUN
analysis NOUN
but CCONJ
these DET
labs NOUN
are AUX
not PART
regulated VERB
. PUNCT
  SPACE
Checks NOUN
of ADP
these DET
labs NOUN
using VERB
certified VERB
standards NOUN
, PUNCT
and CCONJ
also ADV
those DET
doing VERB
water NOUN
lead NOUN
analysis NOUN
, PUNCT
showed VERB
some DET
pretty ADV
shoddy ADJ
testing NOUN
was AUX
going VERB
on ADP
. PUNCT
  SPACE
If SCONJ
you PRON
or CCONJ
anyone PRON
else ADV
finds VERB
someone PRON
who PRON
will AUX
run VERB
these DET
speciality NOUN
nutrition NOUN
tests NOUN
, PUNCT
make VERB
sure ADJ
that SCONJ
they PRON
are AUX
using VERB
a DET
lab NOUN
that PRON
has AUX
been AUX
certified VERB
under ADP
CLIA(the PROPN
Clinical PROPN
Laboratory PROPN
Improvement PROPN
Act PROPN
) PUNCT
. PUNCT
  SPACE
A DET
diet NOUN
analysis NOUN
may AUX
be AUX
helpful ADJ
since SCONJ
many ADJ
nutrient ADJ
reserves NOUN
have AUX
been AUX
shown VERB
to PART
correlate VERB
fairly ADV
well ADV
with ADP
the DET
dietary ADJ
intake NOUN
as SCONJ
monitored VERB
by ADP
food NOUN
logging NOUN
and CCONJ
software NOUN
analysis(Nutritionist NOUN
IV PROPN
and CCONJ
other ADJ
software NOUN
programs NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
still ADV
about ADP
half NOUN
of ADP
the DET
nutrients NOUN
required VERB
by ADP
humans NOUN
that PRON
do AUX
not PART
show VERB
a DET
very ADV
good ADJ
correlation NOUN
between ADP
apparent ADJ
dietary ADJ
intake NOUN
and CCONJ
reserve NOUN
status NOUN
. PUNCT
Until ADP
we PRON
have AUX
more ADJ
nutritional ADJ
assessment NOUN
clinical ADJ
labs NOUN
in ADP
operation NOUN
in ADP
the DET
U.S. PROPN
and CCONJ
physicians NOUN
who PRON
have AUX
been AUX
trained VERB
how ADV
to PART
use VERB
the DET
nutritional ADJ
profile NOUN
that PRON
these DET
labs NOUN
provide VERB
to PART
devise VERB
a DET
treatment NOUN
approach NOUN
that PRON
uses VERB
diet NOUN
changes NOUN
and CCONJ
supplementation NOUN
, PUNCT
anti NOUN
- NOUN
depressants NOUN
will AUX
probably ADV
continue VERB
to PART
be AUX
the DET
best ADJ
approach NOUN
to ADP
depression NOUN
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine"Without PROPN
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance NOUN
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59489From NUM
: PUNCT
hbloom@moose.uvm.edu PROPN
( PUNCT
* PUNCT
Heather*)Subject PUNCT
: PUNCT
re ADP
: PUNCT
earwaxHi PROPN
StephenEar PROPN
wax NOUN
is AUX
a DET
healthy ADJ
way NOUN
to PART
help VERB
prevent VERB
ear NOUN
infections NOUN
, PUNCT
both CCONJ
by ADP
preventinga PROPN
barrier PROPN
and CCONJ
also ADV
with ADP
some DET
antibiotic ADJ
properties NOUN
. PUNCT
  SPACE
Too ADV
much ADV
can AUX
block VERB
theexternal ADJ
auditory PROPN
canal PROPN
( PUNCT
the DET
hole NOUN
in ADP
the DET
outside NOUN
of ADP
the DET
ear NOUN
) PUNCT
and CCONJ
cause VERB
some DET
hearing NOUN
problems NOUN
. PUNCT
  SPACE
It PRON
is AUX
very ADV
simple ADJ
, PUNCT
and CCONJ
safe ADJ
, PUNCT
to PART
remove VERB
excess ADJ
wax NOUN
on ADP
yourown NOUN
, PUNCT
or CCONJ
at ADP
your PRON
physician NOUN
's PART
office NOUN
. PUNCT
  SPACE
You PRON
can AUX
take VERB
a DET
syringe NOUN
( PUNCT
no DET
needles NOUN
! PUNCT
) PUNCT
andfill VERB
it PRON
with ADP
50 NUM
% NOUN
warm ADJ
water NOUN
( PUNCT
cold ADJ
can AUX
cause VERB
fainting NOUN
) PUNCT
and CCONJ
50 NUM
% NOUN
OTC PROPN
hydrogenperoxide NOUN
. PUNCT
  SPACE
Then ADV
point VERB
the DET
ear NOUN
towards ADP
the DET
ceiling NOUN
( PUNCT
about ADP
45 NUM
degrees NOUN
up)and ADJ
insert NOUN
the DET
tip NOUN
of ADP
the DET
syringe NOUN
( PUNCT
helps VERB
to PART
have AUX
someone PRON
else ADV
do AUX
this DET
! PUNCT
) PUNCT
and CCONJ
  SPACE
firmly ADV
expell VERB
the DET
solution NOUN
. PUNCT
  SPACE
Depending VERB
on ADP
the DET
size NOUN
of ADP
the DET
syringe NOUN
and CCONJ
thetenacity NOUN
of ADP
the DET
wax NOUN
, PUNCT
this DET
could AUX
take VERB
several ADJ
rinses NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
place VERB
a DET
bowl NOUN
under ADP
the DET
ear NOUN
to PART
catch VERB
the DET
water NOUN
, PUNCT
it PRON
will AUX
be AUX
much ADV
drier ADJ
:-) PUNCT
. PUNCT
  SPACE
You PRON
can AUX
buya VERB
syringe VERB
with ADP
a DET
special ADJ
tip NOUN
at ADP
your PRON
local ADJ
pharmacy NOUN
, PUNCT
or CCONJ
just ADV
use VERB
whateveryou NOUN
may AUX
have AUX
. PUNCT
  SPACE
If SCONJ
wax NOUN
is AUX
old ADJ
, PUNCT
it PRON
will AUX
be AUX
harder ADJ
, PUNCT
and CCONJ
darker ADJ
. PUNCT
  SPACE
You PRON
can AUX
tryadding VERB
a DET
few ADJ
drops NOUN
of ADP
olive ADJ
oil NOUN
into ADP
the DET
ear NOUN
during ADP
a DET
shower NOUN
to PART
soften VERB
upthe PROPN
wax NOUN
. PUNCT
  SPACE
Do AUX
this DET
for ADP
a DET
couple NOUN
days NOUN
, PUNCT
then ADV
try VERB
syringing VERB
again ADV
. PUNCT
  SPACE
It PRON
is AUX
alsosafe ADJ
to PART
point VERB
your PRON
ear NOUN
up ADP
at ADP
the DET
shower NOUN
head NOUN
, PUNCT
and CCONJ
allow VERB
the DET
water NOUN
to PART
rinseit VERB
out ADP
. PUNCT
Good PROPN
Luck PROPN
- PUNCT
heatherNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59490From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesIn PROPN
article NOUN
< X
1993Apr28.095305.3587@rose.com NUM
> X
, PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
writes VERB
: PUNCT
> X
      SPACE
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
Marty PROPN
Banschbach PROPN
) PUNCT
writes VERB
: PUNCT
> X
[ PUNCT
... PUNCT
] PUNCT
> X
B NOUN
> X
  SPACE
Medicine NOUN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There ADV
> X
B NOUN
> X
  SPACE
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
> X
B NOUN
> X
  SPACE
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
> X
B NOUN
> X
  SPACE
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
> X
B NOUN
> X
  SPACE
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
> X
B PROPN
> X
  SPACE
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to ADP
> X
B PROPN
> X
  SPACE
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
> X
B NOUN
> X
  SPACE
Medicine NOUN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
> X
B NOUN
> X
  SPACE
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
> X
B NOUN
> X
  SPACE
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
    SPACE
> X
[ PUNCT
... PUNCT
] PUNCT
> X
B NOUN
> X
  SPACE
Marty PROPN
B. PROPN
> X
> X
  SPACE
Marty PROPN
, PUNCT
I PRON
personally ADV
would AUX
n't PART
be AUX
so ADV
quick ADJ
and CCONJ
take VERB
that SCONJ
NEJM PROPN
article NOUN
> X
  SPACE
on ADP
kidney NOUN
stones NOUN
as SCONJ
gospel NOUN
. PUNCT
First ADV
of ADP
all DET
, PUNCT
I PRON
would AUX
want VERB
to PART
know VERB
who PRON
> X
  SPACE
sponsored VERB
that DET
study NOUN
. PUNCT
> X
  SPACE
I PRON
have AUX
seen VERB
too ADV
many ADJ
" PUNCT
nutrition NOUN
" PUNCT
bulletins NOUN
over ADP
the DET
years NOUN
from ADP
> X
  SPACE
local ADJ
newspapers NOUN
, PUNCT
magazines NOUN
, PUNCT
to ADP
TV NOUN
- PUNCT
guide NOUN
, PUNCT
with ADP
disclaimers NOUN
on ADP
the DET
> X
  SPACE
bottom NOUN
informing VERB
us PRON
that SCONJ
this DET
great ADJ
health NOUN
news NOUN
was AUX
brought VERB
to ADP
us PRON
> X
  SPACE
compliments NOUN
of ADP
the DET
Dairy PROPN
Industries PROPN
. PUNCT
> X
  SPACE
There PRON
are AUX
of ADP
course NOUN
numerous ADJ
other ADJ
interest NOUN
groups NOUN
now ADV
that PRON
thrive VERB
> X
  SPACE
financially ADV
on ADP
the DET
media NOUN
hype NOUN
created VERB
from ADP
the DET
supposedly ADV
enormous ADJ
> X
  SPACE
benefits NOUN
of ADP
increasing VERB
one PRON
's PART
calcium NOUN
intake NOUN
. PUNCT
> X
> X
  SPACE
Secondly ADV
, PUNCT
were AUX
ALL DET
the DET
kidney NOUN
stones NOUN
of ADP
the DET
test NOUN
subjects NOUN
involved VERB
> X
  SPACE
in ADP
that DET
project NOUN
analysed VERB
for ADP
their PRON
chemical NOUN
composition NOUN
? PUNCT
  SPACE
The DET
study NOUN
> X
  SPACE
did AUX
n't PART
say VERB
that DET
, PUNCT
it PRON
only ADV
claimed VERB
that SCONJ
" PUNCT
most ADJ
kidney NOUN
stones NOUN
are AUX
large- PROPN
> X
  SPACE
ly PROPN
calcium PROPN
. PUNCT
" PUNCT
> X
  SPACE
Perhaps ADV
it PRON
wo AUX
n't PART
be AUX
long ADJ
before ADP
another DET
study NOUN
comes VERB
up ADP
with ADP
the DET
exact ADJ
> X
  SPACE
opposite ADJ
findings NOUN
. PUNCT
A DET
curious ADJ
phenomenon NOUN
with ADP
researchers NOUN
is AUX
that SCONJ
they PRON
> X
  SPACE
are AUX
oftentimes NOUN
just ADV
plain ADV
wrong ADJ
. PUNCT
It PRON
would AUX
n't PART
be AUX
the DET
first ADJ
time NOUN
. PUNCT
> X
  SPACE
> X
  SPACE
Sodium PROPN
/ SYM
magnesium PROPN
/ SYM
calcium NOUN
/ SYM
phosphorus PROPN
ratios NOUN
are AUX
, PUNCT
in ADP
my PRON
opinion NOUN
, PUNCT
still ADV
> X
  SPACE
the DET
most ADV
reliable ADJ
indicators NOUN
for ADP
the DET
cause NOUN
, PUNCT
treatment NOUN
, PUNCT
and CCONJ
prevention NOUN
> X
  SPACE
of ADP
kidney NOUN
stones NOUN
. PUNCT
> X
  SPACE
I PRON
, PUNCT
for ADP
one NUM
, PUNCT
will AUX
continue VERB
to PART
recommend VERB
the DET
most ADV
logical ADJ
changes NOUN
in ADP
> X
  SPACE
one PRON
's PART
diet NOUN
or CCONJ
through ADP
supplementation NOUN
to PART
counteract VERB
or CCONJ
prevent VERB
kidney NOUN
> X
  SPACE
stones NOUN
of ADP
either DET
type NOUN
; PUNCT
and CCONJ
they PRON
definitely ADV
wo AUX
n't PART
include VERB
an DET
INCREASE PROPN
> X
  SPACE
in ADP
calcium NOUN
if SCONJ
the DET
stones NOUN
have AUX
been AUX
identified VERB
as SCONJ
being AUX
of ADP
the DET
calcium NOUN
> X
  SPACE
type NOUN
and CCONJ
people NOUN
's PART
chemical ADJ
analysis NOUN
confirms VERB
that SCONJ
they PRON
would AUX
benefit VERB
> X
  SPACE
from ADP
a DET
PHOSPHORUS PROPN
- PUNCT
raising VERB
approach NOUN
instead ADV
! PUNCT
> X
> X
      SPACE
Ron PROPN
RothRon PROPN
, PUNCT
you PRON
are AUX
absolutely ADV
right ADJ
. PUNCT
  SPACE
Not PART
all DET
kidney NOUN
stones NOUN
have AUX
calcium NOUN
and CCONJ
not PART
all DET
calcium NOUN
stones NOUN
are AUX
calcium NOUN
- PUNCT
oxalate NOUN
. PUNCT
  SPACE
But CCONJ
the DET
vast ADJ
majority NOUN
are AUX
calcium NOUN
- PUNCT
oxalate NOUN
. PUNCT
  SPACE
Calcium PROPN
is AUX
just ADV
one NUM
piece NOUN
of ADP
the DET
puzzle NOUN
. PUNCT
  SPACE
I PRON
cited VERB
that SCONJ
NEJM PROPN
article NOUN
as SCONJ
a DET
way NOUN
of ADP
pointing VERB
out ADP
to ADP
some DET
of ADP
the DET
physicians NOUN
in ADP
this DET
group NOUN
that SCONJ
conventional ADJ
wisdom NOUN
is AUX
used VERB
in ADP
medicine NOUN
, PUNCT
always ADV
has AUX
been AUX
and CCONJ
probably ADV
always ADV
will AUX
be AUX
. PUNCT
  SPACE
If SCONJ
one PRON
uses VERB
conventional ADJ
wisdom NOUN
, PUNCT
there PRON
is AUX
a DET
chance NOUN
that SCONJ
you PRON
will AUX
be AUX
wrong ADJ
. PUNCT
  SPACE
As ADV
long ADV
as SCONJ
the DET
error NOUN
is AUX
not PART
going VERB
to PART
cause VERB
a DET
lot NOUN
of ADP
damage NOUN
, PUNCT
what PRON
's AUX
the DET
big ADJ
deal(why NOUN
call VERB
a DET
physician NOUN
who PRON
gives VERB
anti NOUN
- NOUN
fungals NOUN
to ADP
sinus NOUN
suffers NOUN
or CCONJ
GI PROPN
distress NOUN
patients NOUN
a DET
quack?).On NOUN
the DET
kidney NOUN
stone NOUN
problem NOUN
. PUNCT
  SPACE
I PRON
'd AUX
want VERB
a DET
mineral NOUN
profile NOUN
run VERB
in ADP
a DET
clinical ADJ
chemistry NOUN
lab NOUN
. PUNCT
  SPACE
Balance PROPN
is AUX
much ADV
more ADV
important ADJ
than SCONJ
the DET
dietary ADJ
intake NOUN
of ADP
calcium NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
you PRON
use VERB
an DET
electrical ADJ
conductance NOUN
technique NOUN
to PART
measure VERB
mineral NOUN
balance NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
you PRON
do AUX
n't PART
think VERB
that SCONJ
the DET
serum ADJ
levels NOUN
for ADP
minerals NOUN
are AUX
very ADV
useful(I NOUN
agree VERB
) PUNCT
. PUNCT
  SPACE
If SCONJ
I PRON
can AUX
get AUX
a DET
good ADJ
nutritional ADJ
assessment NOUN
lab NOUN
setup NOUN
where ADV
I PRON
can AUX
actually ADV
measure VERB
the DET
tissue NOUN
reserve NOUN
for ADP
minerals NOUN
, PUNCT
I PRON
'd AUX
like VERB
to PART
do AUX
a DET
collaborative ADJ
study NOUN
with ADP
you PRON
to PART
see VERB
how ADV
your PRON
technique NOUN
compares VERB
with ADP
mine NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59491From NUM
: PUNCT
tung@paaiec.enet.dec.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?I NOUN
have AUX
just ADV
started VERB
taking VERB
allergy ADJ
shots NOUN
a DET
month NOUN
ago ADV
and CCONJ
is AUX
still ADV
wondering VERB
what PRON
I PRON
am AUX
getting VERB
into ADP
. PUNCT
A DET
friend NOUN
of ADP
mine NOUN
toldme VERB
that SCONJ
the DET
body NOUN
change VERB
every DET
7 NUM
years NOUN
( PUNCT
whatever PRON
that SCONJ
means)and PROPN
I PRON
do AUX
n't PART
need VERB
those DET
antibody NOUN
- PUNCT
building VERB
allergy NOUN
shots NOUN
at ADV
all ADV
. PUNCT
Does AUX
that DET
make VERB
sense NOUN
to ADP
anyone?BTW PROPN
, PUNCT
can AUX
someone PRON
summarize VERB
what PRON
is AUX
in ADP
the DET
Consumer PROPN
ReportFebruary PROPN
, PUNCT
1988 NUM
article?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59492From NUM
: PUNCT
mou@nova1.stanford.edu PROPN
( PUNCT
Alex PROPN
Mou)Subject NUM
: PUNCT
cure VERB
for ADP
dry ADJ
skin?Hi PROPN
all DET
, PUNCT
My PRON
skin NOUN
is AUX
very ADV
dry ADJ
in ADP
general ADJ
. PUNCT
But CCONJ
the DET
most ADV
serious ADJ
part NOUN
is AUX
locatedfrom ADJ
knees NOUN
down ADP
. PUNCT
The DET
skin NOUN
there PRON
looks VERB
like SCONJ
segmented VERB
. PUNCT
The DET
segmentationactually ADV
happens VERB
beneath ADP
the DET
skin NOUN
. PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
anycure NOUN
for ADP
this DET
. PUNCT
At ADP
the DET
supermarkets NOUN
or CCONJ
pharmacies NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
lot NOUN
of ADP
stuffs NOUN
fordry ADJ
skins NOUN
, PUNCT
but CCONJ
what PRON
to ADP
chose?Thanks NOUN
in ADP
advance NOUN
for ADP
all DET
advices NOUN
and CCONJ
hints NOUN
. PUNCT
Reply VERB
by ADP
email NOUN
preferred VERB
. PUNCT
AlexNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59493From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedes-*----In PROPN
article NOUN
< X
1993Apr28.081953.21043@nmt.edu NUM
> NUM
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes VERB
: PUNCT
> X
Does AUX
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
... PUNCT
The DET
millipede NOUN
's AUX
around ADV
here ADV
( PUNCT
Austin PROPN
) PUNCT
have AUX
no DET
sting NOUN
. PUNCT
  SPACE
Some DET
of ADP
thecentipedes NOUN
do AUX
. PUNCT
  SPACE
The DET
question NOUN
Rebecca PROPN
Snyder PROPN
asks VERB
is AUX
much ADV
likeasking VERB
" PUNCT
How ADV
venomous ADJ
are AUX
snakes NOUN
? PUNCT
" PUNCT
  SPACE
One NUM
either CCONJ
wants VERB
to PART
ask VERB
" PUNCT
whichsnake VERB
? PUNCT
" PUNCT
or CCONJ
point VERB
to ADP
some DET
reference NOUN
on ADP
the DET
many ADJ
different ADJ
speciesof NOUN
snake NOUN
. PUNCT
  SPACE
Similarly ADV
, PUNCT
there PRON
are AUX
many ADJ
different ADJ
species NOUN
ofmillipede NOUN
and CCONJ
centipede PROPN
. PUNCT
  SPACE
( PUNCT
These DET
are AUX
different ADJ
families;millipedes NOUN
have AUX
two NUM
pairs NOUN
of ADP
legs NOUN
per ADP
body NOUN
segment NOUN
, PUNCT
whilecentipedes NOUN
have AUX
but CCONJ
one NUM
pair.)Sorry NOUN
if SCONJ
this DET
information NOUN
is AUX
not PART
useful ADJ
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59494From NUM
: PUNCT
roxannen@cruzio.santa-cruz.ca.usSubject NOUN
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)I PROPN
recently ADV
heard VERB
of ADP
some DET
testing NOUN
of ADP
a DET
new ADJ
migraine ADJ
drug NOUN
called VERB
sumatripton(I PROPN
have AUX
no DET
idea NOUN
of ADP
the DET
actual ADJ
spelling NOUN
) PUNCT
that PRON
supposedly ADV
utilizes VERB
a DET
chemicalthat PROPN
trips VERB
neuro PROPN
- PUNCT
transmitters PROPN
. PUNCT
  SPACE
My PRON
mother NOUN
has AUX
regular ADJ
migraines NOUN
and CCONJ
nothingseems NOUN
to PART
help VERB
- PUNCT
does AUX
anyone PRON
know VERB
anything PRON
about ADP
this DET
new ADJ
drug NOUN
? PUNCT
  SPACE
Is AUX
it PRON
ina NOUN
testing VERB
phaze NOUN
or CCONJ
anywhere ADV
near ADJ
approval NOUN
? PUNCT
  SPACE
Does AUX
it PRON
seem VERB
to PART
be AUX
working?Any ADJ
information NOUN
would AUX
help VERB
. PUNCT
Please INTJ
feel VERB
free ADJ
to ADP
e NOUN
- NOUN
mail NOUN
rather ADV
than SCONJ
take VERB
up ADP
bandwidth ADJ
if SCONJ
you PRON
prefer VERB
. PUNCT
Thanks NOUN
in ADP
advance,-Rox-- PROPN
roxannen@cruzio.santa-cruz.ca.us"Virtue PROPN
is AUX
a DET
relative ADJ
term NOUN
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59496From NUM
: PUNCT
bechtler@asdg.enet.dec.com PROPN
( PUNCT
Laurie PROPN
Bechtler)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Urine NOUN
analysisIn PROPN
article NOUN
< X
C67t3M.Fxx@athena.cs.uga.edu PROPN
> X
, PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
writes VERB
... PUNCT
>In PROPN
article NOUN
< X
1rm2bn$kps@transfer.stratus.com X
> X
Randy_Faneuf@vos.stratus.com PROPN
writes VERB
: PUNCT
> X
> X
> X
> X
Someone PRON
please INTJ
help VERB
me PRON
. PUNCT
I PRON
am AUX
searching VERB
to PART
find VERB
out ADP
( PUNCT
as ADV
many ADJ
others NOUN
may)>>an PROPN
absolute ADJ
' PUNCT
cure NOUN
' PUNCT
to ADP
removing VERB
all DET
detectable ADJ
traces NOUN
of ADP
marijuana PROPN
from>>a PROPN
persons NOUN
body NOUN
. PUNCT
Is AUX
there PRON
a DET
chemical ADJ
or CCONJ
natural ADJ
substance NOUN
that PRON
can AUX
be>>ingested VERB
or CCONJ
added VERB
to PART
urine VERB
to PART
make VERB
it PRON
undetectable ADJ
in ADP
urine NOUN
analysis.>>If NOUN
so ADV
where ADV
can AUX
these DET
substances NOUN
be AUX
found VERB
. PUNCT
> X
> X
You PRON
could AUX
do AUX
what PRON
I PRON
do AUX
: PUNCT
never ADV
go VERB
near SCONJ
the DET
stuff NOUN
! PUNCT
  SPACE
:) PUNCT
> X
> X
> X
-- PUNCT
There PRON
's AUX
always ADV
the DET
old ADJ
switcheroo NOUN
. PUNCT
My PRON
brother NOUN
works VERB
at ADP
a DET
dialysis NOUN
clinic NOUN
. PUNCT
  SPACE
They PRON
were AUX
interviewing VERB
candidates NOUN
for ADP
a DET
technician ADJ
job NOUN
( PUNCT
mainly ADV
electronics NOUN
tech NOUN
) PUNCT
, PUNCT
and CCONJ
aurine NOUN
screen NOUN
was AUX
part NOUN
of ADP
the DET
interview NOUN
. PUNCT
  SPACE
The DET
bathroom NOUN
was AUX
acrossthe PROPN
hall NOUN
from ADP
a DET
lab NOUN
. PUNCT
  SPACE
One NUM
candidate NOUN
managed VERB
to PART
switch VERB
his PRON
urinesample ADJ
with ADP
one NUM
he PRON
grabbed VERB
from ADP
the DET
lab NOUN
. PUNCT
  SPACE
( PUNCT
No DET
one NOUN
was AUX
in ADP
it PRON
atthe NOUN
time.)Most ADJ
inner ADJ
- PUNCT
city NOUN
dialysis NOUN
patients NOUN
have AUX
quite DET
a DET
few ADJ
medical ADJ
problems NOUN
, PUNCT
so CCONJ
it PRON
was AUX
immediately ADV
obvious ADJ
what PRON
had AUX
happened VERB
. PUNCT
  SPACE
My PRON
brother NOUN
fleetingly ADV
considered VERB
telling VERB
the DET
candidate NOUN
, PUNCT
" PUNCT
I PRON
'm AUX
sorry ADJ
but CCONJ
youare VERB
very ADV
ill ADV
and CCONJ
need VERB
medical ADJ
attention NOUN
immediately ADV
. PUNCT
" PUNCT
  SPACE
They PRON
offeredhim VERB
another DET
* PUNCT
well ADV
- PUNCT
monitored VERB
* PUNCT
chance NOUN
and CCONJ
he PRON
declined VERB
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59497From NUM
: PUNCT
markv@pixar.com X
( PUNCT
Mark PROPN
T. PROPN
VandeWettering)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographyalex@vuse.vanderbilt.edu NOUN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>FLAME VERB
ON ADP
> X
Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>photography PUNCT
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
> X
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
> X
measure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADV
there ADV
. PUNCT
	 SPACE
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
	 SPACE
Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
People NOUN
who PRON
think VERB
digital ADJ
watches NOUN
are AUX
a DET
	 SPACE
real ADJ
good ADJ
idea NOUN
? PUNCT
  SPACE
That SCONJ
60 NUM
channels NOUN
of ADP
television NOUN
is AUX
10x NOUN
better ADV
	 SPACE
than SCONJ
6 NUM
channels NOUN
of ADP
television NOUN
? PUNCT
  SPACE
> X
I PRON
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
	 SPACE
You PRON
're AUX
right ADJ
. PUNCT
  SPACE
Keep VERB
an DET
open ADJ
mind NOUN
to ADP
the DET
following VERB
: PUNCT
	 SPACE
1 NUM
. PUNCT
Taco PROPN
flavored VERB
donuts NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
Cannibalism NOUN
. PUNCT
  SPACE
Good ADJ
way NOUN
to PART
get AUX
that DET
extra ADJ
protein NOUN
in ADP
the DET
diet NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
Belief NOUN
in ADP
Yawanga PROPN
, PUNCT
armadillo PROPN
god PROPN
of ADP
parking PROPN
meters.----------------------------------------------------------------------Mark PROPN
VandeWetteringTruest PROPN
Servant PROPN
of ADP
Yawanga PROPN
! PUNCT
  SPACE
Oh INTJ
Yawanga PROPN
! PUNCT
  SPACE
He PRON
who PRON
never ADV
will AUX
become VERB
a DET
road NOUN
- PUNCT
pizza!All NOUN
of ADP
my PRON
quarters NOUN
and CCONJ
dimes NOUN
, PUNCT
nay PROPN
even ADV
nickels NOUN
, PUNCT
will AUX
be AUX
spent VERB
to PART
buy VERB
time NOUN
to ADP
		 SPACE
park PROPN
in ADP
your PRON
eternal ADJ
parking NOUN
lot!Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59498From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
C697IJ.IuA@srgenprp.sr.hp.com X
> X
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
writes:>pk115050@wvnvms.wvnet.edu PROPN
wrote:>move PROPN
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes,>by NOUN
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'd NOUN
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
I PRON
've AUX
had VERB
neither CCONJ
a DET
baby NOUN
nor CCONJ
a DET
kidney NOUN
stone NOUN
, PUNCT
but CCONJ
according VERB
to ADP
my PRON
aunt NOUN
, PUNCT
who PRON
has AUX
had VERB
plenty NOUN
of ADP
both DET
, PUNCT
a DET
kidney NOUN
stone NOUN
is AUX
worse ADJ
. PUNCT
--Barbara PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59499From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Chromium NOUN
as SCONJ
dietary ADJ
suppliment NOUN
for ADP
weight NOUN
lossIn PROPN
article NOUN
< X
1993Apr29.145140.10559@newsgate.sps.mot.com NUM
> X
, PUNCT
rhca80@melton.sps.mot.com PROPN
( PUNCT
Henry PROPN
Melton PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
My PRON
wife NOUN
has AUX
requested VERB
that SCONJ
I PRON
poll VERB
the DET
Sages NOUN
of ADP
Usenet PROPN
to PART
see VERB
what PRON
is AUX
> X
known VERB
about ADP
the DET
use NOUN
of ADP
chromium NOUN
in ADP
weight NOUN
- PUNCT
control NOUN
diet NOUN
suppliments NOUN
. PUNCT
> X
She PRON
has AUX
seen VERB
multiple ADJ
products NOUN
advertising VERB
it PRON
and CCONJ
would AUX
like VERB
any DET
kind NOUN
> X
real ADJ
information NOUN
. PUNCT
> X
> X
My PRON
first ADJ
impulse NOUN
was AUX
" PUNCT
Yuck PROPN
! PUNCT
a DET
metal NOUN
! PUNCT
" PUNCT
but CCONJ
I PRON
have AUX
zero NUM
data NOUN
on ADP
it PRON
. PUNCT
> X
> X
What PRON
do AUX
you PRON
know VERB
? PUNCT
> X
> X
-- PUNCT
> X
Henry PROPN
Melton PROPN
I PRON
'll AUX
tell VERB
you PRON
all DET
that PRON
I PRON
know VERB
about ADP
chromium NOUN
. PUNCT
  SPACE
But CCONJ
before ADP
I PRON
do AUX
, PUNCT
I PRON
want VERB
to PART
get AUX
a DET
few ADJ
things NOUN
off ADP
my PRON
chest NOUN
. PUNCT
  SPACE
I PRON
just ADV
got VERB
blasted VERB
in ADP
e NOUN
- NOUN
mail NOUN
for ADP
my PRON
kidney NOUN
stone NOUN
posts NOUN
. PUNCT
  SPACE
Kidney NOUN
stones NOUN
are AUX
primarily ADV
caused VERB
by ADP
diet NOUN
, PUNCT
as SCONJ
is AUX
heart NOUN
disease NOUN
and CCONJ
cancer NOUN
. PUNCT
  SPACE
When ADV
I PRON
give VERB
dietary ADJ
advise NOUN
, PUNCT
it PRON
is AUX
not PART
intended VERB
to PART
encourage VERB
people NOUN
reading VERB
this DET
news NOUN
group(or NOUN
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
where ADV
I PRON
do AUX
most ADJ
of ADP
my PRON
posting NOUN
) PUNCT
to PART
avoid VERB
seeing VERB
a DET
doctor NOUN
. PUNCT
  SPACE
Nothing PRON
can AUX
be AUX
further ADV
from ADP
the DET
truth NOUN
. PUNCT
  SPACE
Kidney NOUN
stones NOUN
can AUX
be AUX
caused VERB
by ADP
tumors NOUN
and CCONJ
this DET
possibility NOUN
has AUX
to PART
be AUX
ruled VERB
out ADP
. PUNCT
  SPACE
But CCONJ
once SCONJ
it PRON
is AUX
, PUNCT
diet PROPN
is AUX
a DET
good ADJ
way NOUN
of ADP
preventing VERB
a DET
reoccurance NOUN
. PUNCT
Same ADJ
thing NOUN
with ADP
heart NOUN
disease NOUN
and CCONJ
cancer NOUN
, PUNCT
if SCONJ
you PRON
suspect VERB
that SCONJ
you PRON
may AUX
have AUX
a DET
problem NOUN
with ADP
one NUM
of ADP
these DET
diseases NOUN
, PUNCT
do AUX
n't PART
use VERB
what PRON
I PRON
'm AUX
going VERB
to PART
tell VERB
you PRON
or CCONJ
what PRON
you PRON
read VERB
in ADP
some DET
book NOUN
to PART
avoid VERB
going VERB
to ADP
a DET
doctor NOUN
. PUNCT
  SPACE
You PRON
have AUX
to PART
go VERB
. PUNCT
Hopefully ADV
you PRON
will AUX
find VERB
a DET
doctor NOUN
who PRON
knows VERB
enough ADJ
about ADP
nutrition NOUN
to PART
help VERB
you PRON
change VERB
your PRON
risk NOUN
factors NOUN
for ADP
both DET
diseases NOUN
as SCONJ
part NOUN
of ADP
a DET
treatment NOUN
program(but ADP
the DET
odds NOUN
are AUX
that SCONJ
you PRON
will AUX
not PART
and CCONJ
that DET
's AUX
why ADV
I PRON
'm AUX
here ADV
) PUNCT
. PUNCT
  SPACE
When ADV
my PRON
wife NOUN
detected VERB
a DET
lump NOUN
in ADP
here ADV
breast NOUN
I PRON
did AUX
n't PART
say VERB
, PUNCT
do AUX
n't PART
worry VERB
my PRON
vitamin NOUN
E NOUN
will AUX
take VERB
care NOUN
of ADP
it PRON
. PUNCT
  SPACE
Any DET
breast NOUN
lump NOUN
has AUX
to PART
be AUX
worked VERB
up ADP
by ADP
a DET
physician NOUN
, PUNCT
plan NOUN
and CCONJ
simple ADJ
. PUNCT
  SPACE
If SCONJ
it PRON
's AUX
begnin(which PROPN
most ADJ
are AUX
) PUNCT
fine ADJ
, PUNCT
then ADV
maybe ADV
a DET
diet NOUN
change NOUN
and CCONJ
supplementation NOUN
will AUX
prevent VERB
further ADJ
breast NOUN
lumps NOUN
from ADP
occuring VERB
. PUNCT
But CCONJ
let VERB
me PRON
tell VERB
you PRON
right ADV
now ADV
, PUNCT
if SCONJ
you PRON
have AUX
tried VERB
diet NOUN
and CCONJ
supplementation NOUN
and CCONJ
another DET
lump NOUN
returns NOUN
, PUNCT
get AUX
your PRON
butt NOUN
into ADP
the DET
doctor NOUN
's PART
office NOUN
as ADV
fast ADV
as SCONJ
your PRON
little ADJ
feet NOUN
can AUX
carry VERB
you(better NOUN
yet ADV
, PUNCT
have AUX
a DET
mammography NOUN
done VERB
on ADP
a DET
regular ADJ
basis NOUN
, PUNCT
my PRON
wife NOUN
kept VERB
putting VERB
her PRON
's AUX
off ADP
, PUNCT
both DET
myself PRON
and CCONJ
her PRON
gynocologist NOUN
told VERB
her PRON
she PRON
needed VERB
to PART
have AUX
one NUM
done VERB
) PUNCT
. PUNCT
  SPACE
Her PRON
gynocologist NOUN
even ADV
scheduled VERB
one NUM
, PUNCT
but CCONJ
she PRON
did AUX
n't PART
show VERB
up(too PUNCT
busy ADJ
running VERB
the DET
Operating PROPN
Room PROPN
for ADP
the DET
biggest ADJ
Hospital PROPN
in ADP
Tulsa).One SYM
more ADJ
thing NOUN
, PUNCT
I PRON
am AUX
not PART
an DET
orthomolecular ADJ
nutritionist NOUN
. PUNCT
  SPACE
This DET
group NOUN
uses VERB
high ADJ
dose NOUN
vitamins NOUN
and CCONJ
minerals NOUN
to PART
treat VERB
all DET
kinds NOUN
of ADP
disease NOUN
. PUNCT
  SPACE
There PRON
is AUX
absolutely ADV
no DET
doubt NOUN
in ADP
my PRON
mind NOUN
that SCONJ
vitamins NOUN
and CCONJ
minerals NOUN
can AUX
and CCONJ
do AUX
have AUX
drug NOUN
actions NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
But CCONJ
you PRON
talk VERB
about ADP
flying VERB
blind ADJ
, PUNCT
man NOUN
this DET
is AUX
really ADV
blind ADJ
treatment NOUN
. PUNCT
  SPACE
No DET
drug NOUN
could AUX
ever ADV
be AUX
used VERB
as SCONJ
these DET
vitamins NOUN
and CCONJ
minerals NOUN
are AUX
being AUX
used VERB
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
that SCONJ
some DET
of ADP
this DET
stuff NOUN
could AUX
n't PART
be AUX
right ADJ
on ADP
the DET
money NOUN
, PUNCT
it PRON
may AUX
well ADV
be AUX
. PUNCT
  SPACE
But CCONJ
my PRON
approach NOUN
to ADP
nutrition NOUN
is AUX
a DET
lot NOUN
like SCONJ
that DET
of ADP
Weinsier PROPN
and CCONJ
Morgan PROPN
, PUNCT
the DET
two NUM
M.D PROPN
's PART
who PRON
wrote VERB
the DET
new ADJ
Clinical PROPN
Nutrition PROPN
textbook NOUN
. PUNCT
  SPACE
My PRON
push NOUN
is AUX
the DET
nutrient ADJ
reserves NOUN
and CCONJ
the DET
lab NOUN
tests NOUN
needed VERB
to PART
measure VERB
these DET
reserves NOUN
and CCONJ
then ADV
supplementation NOUN
or CCONJ
diet NOUN
changes NOUN
to PART
get AUX
these DET
reserves NOUN
built VERB
up ADP
to ADP
where ADV
they PRON
should AUX
be AUX
to PART
let VERB
you PRON
handle VERB
stress NOUN
. PUNCT
  SPACE
That DET
's AUX
where ADV
I PRON
'm AUX
coming VERB
from ADP
folks NOUN
. PUNCT
  SPACE
Blast VERB
away ADV
if SCONJ
you PRON
want VERB
, PUNCT
I'm PRON
not PART
going VERB
to PART
change VERB
. PUNCT
  SPACE
Put VERB
me PRON
in ADP
your PRON
killfile NOUN
if SCONJ
you PRON
want VERB
, PUNCT
I PRON
really ADV
do AUX
n't PART
care VERB
. PUNCT
  SPACE
I PRON
'm AUX
averaging VERB
8 NUM
- SYM
10 NUM
e NOUN
- PUNCT
mail NOUN
messages NOUN
a DET
day NOUN
from ADP
people NOUN
who PRON
think VERB
that SCONJ
I PRON
've AUX
got VERB
something PRON
important ADJ
to PART
say VERB
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
also ADV
getting VERB
hit VERB
by ADP
a DET
few ADJ
with ADP
an DET
axe NOUN
to PART
grind VERB
. PUNCT
  SPACE
That DET
's AUX
life NOUN
. PUNCT
Chromium NOUN
is AUX
one NUM
of ADP
the DET
trace NOUN
elements NOUN
. PUNCT
  SPACE
It PRON
has AUX
a DET
very ADV
limited(but CCONJ
very ADV
important ADJ
) PUNCT
role NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
used VERB
to PART
form VERB
glucose NOUN
tolerance NOUN
factor(GTF NOUN
) PUNCT
. PUNCT
  SPACE
GTF PROPN
is AUX
made VERB
up ADP
of ADP
chromium NOUN
, PUNCT
nicinamide(niacin PROPN
) PUNCT
, PUNCT
glycine PROPN
, PUNCT
cysteine PROPN
and CCONJ
glutamic PROPN
. PUNCT
  SPACE
Only ADV
the DET
chromium NOUN
and CCONJ
the DET
niacin PROPN
are AUX
needed VERB
from ADP
the DET
diet NOUN
to PART
form VERB
GTF PROPN
. PUNCT
  SPACE
Some DET
foods NOUN
already ADV
have AUX
GTF(Liver PROPN
, PUNCT
brewers NOUN
or CCONJ
nutritional ADJ
yeast NOUN
, PUNCT
and CCONJ
black ADJ
pepper NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
chromium NOUN
is AUX
in ADP
GTF PROPN
, PUNCT
a DET
pretty ADV
good ADJ
absorption NOUN
is AUX
seen(about PROPN
20 NUM
% NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
when ADV
it PRON
is AUX
simply ADV
present ADJ
as SCONJ
a DET
mineral NOUN
or CCONJ
mineral NOUN
chelate(chromium NOUN
picolinate NOUN
) PUNCT
it PRON
's AUX
absorption NOUN
is AUX
much ADV
lower(1 ADJ
to ADP
2 NUM
% NOUN
, PUNCT
lowest ADJ
for ADP
all DET
the DET
minerals NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
been AUX
posting VERB
in ADP
Misc PROPN
. PUNCT
Fitness NOUN
and CCONJ
chromium NOUN
has AUX
come VERB
up ADV
there ADV
several ADJ
times NOUN
as SCONJ
a DET
" PUNCT
fat ADJ
burner NOUN
" PUNCT
. PUNCT
  SPACE
Chromium NOUN
is AUX
among ADP
the DET
least ADJ
toxic ADJ
of ADP
the DET
minerals NOUN
so SCONJ
you PRON
could AUX
really ADV
load VERB
yourself PRON
up ADP
and CCONJ
not PART
really ADV
do AUX
any DET
harm NOUN
. PUNCT
  SPACE
I PRON
would AUX
n't PART
do AUX
it PRON
though ADV
. PUNCT
  SPACE
The DET
adequate ADJ
and CCONJ
safe ADJ
range NOUN
for ADP
chromium NOUN
is AUX
50 NUM
to PART
200ug NOUN
per ADP
day NOUN
. PUNCT
  SPACE
The DET
average ADJ
American PROPN
is AUX
getting VERB
about ADP
30ug NOUN
per ADP
day NOUN
from ADP
his PRON
/ SYM
her PRON
diet NOUN
. PUNCT
  SPACE
Chromium NOUN
levels NOUN
decrease VERB
with ADP
age NOUN
and CCONJ
many ADJ
believe VERB
that SCONJ
adult NOUN
onset NOUN
diabetes NOUN
is AUX
primarily ADV
a DET
chromium NOUN
deficiency NOUN
. PUNCT
  SPACE
I PRON
can AUX
cite VERB
you PRON
several ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
with ADP
glucose NOUN
tolerance NOUN
in ADP
Type NOUN
II PROPN
diabetes NOUN
but CCONJ
I PRON
'm AUX
not PART
going VERB
to PART
because SCONJ
for ADP
each DET
positive ADJ
one NUM
, PUNCT
there PRON
also ADV
seems VERB
to PART
be AUX
a DET
negative ADJ
one NOUN
as ADV
well ADV
. PUNCT
  SPACE
I PRON
'm AUX
convinced ADJ
that SCONJ
the DET
problem NOUN
is AUX
bioavailability NOUN
. PUNCT
  SPACE
When ADV
yeast(GTF PROPN
) PUNCT
is AUX
used VERB
, PUNCT
good ADJ
results NOUN
are AUX
obtained VERB
but CCONJ
when ADV
chromium NOUN
itself PRON
is AUX
used VERB
the DET
results NOUN
are AUX
usually ADV
negative ADJ
. PUNCT
  SPACE
In ADP
addition NOUN
to ADP
Type NOUN
II PROPN
diabetes NOUN
, PUNCT
chromiuum NOUN
has AUX
been AUX
examined VERB
in ADP
cardiovascular ADJ
disease NOUN
and CCONJ
glucoma PROPN
, PUNCT
again ADV
with ADP
mixed ADJ
results NOUN
as ADV
far ADV
as SCONJ
cardiovascular ADJ
disease NOUN
is AUX
concernedSince NOUN
a DET
high ADJ
blood NOUN
glucose NOUN
level NOUN
can AUX
lead VERB
to ADP
cardiovascular ADJ
disease NOUN
, PUNCT
this DET
possible ADJ
link NOUN
with ADP
chromium NOUN
is AUX
n't PART
too ADV
surprising ADJ
. PUNCT
  SPACE
Glucoma PROPN
is AUX
a DET
little ADV
more ADV
interesting ADJ
. PUNCT
  SPACE
Muscle NOUN
eye NOUN
focusing VERB
activity NOUN
is AUX
primarily ADV
an DET
insulin NOUN
responsive ADJ
glucose NOUN
- PUNCT
driven VERB
metabolic ADJ
function NOUN
. PUNCT
  SPACE
If SCONJ
this DET
eye NOUN
focusing VERB
activity NOUN
is AUX
impaired(by X
a DET
lack NOUN
of ADP
glucose NOUN
due ADP
to ADP
a DET
poor ADJ
insulin NOUN
response NOUN
) PUNCT
, PUNCT
intraocular ADJ
pressure NOUN
is AUX
believed VERB
to PART
be AUX
elevated VERB
. PUNCT
  SPACE
In ADP
a DET
fairly ADV
large ADJ
study NOUN
of ADP
400 NUM
pts NOUN
with ADP
glaucoma NOUN
, PUNCT
the DET
one NUM
consistent ADJ
finding NOUN
was AUX
a DET
low ADJ
RBC PROPN
chromium NOUN
. PUNCT
J. PROPN
Am PROPN
. PUNCT
Coll PROPN
. PUNCT
Nutr PROPN
. PROPN
10(5):536,(1991 NUM
) PUNCT
. PUNCT
  SPACE
But CCONJ
this DET
one NUM
preliminary ADJ
study NOUN
should AUX
not PART
prompt VERB
people NOUN
to PART
go VERB
out ADP
and CCONJ
start VERB
popping VERB
chromium NOUN
supplements NOUN
. PUNCT
  SPACE
For ADP
one NUM
thing NOUN
, PUNCT
just ADV
about ADV
every DET
older ADJ
person NOUN
is AUX
going VERB
to PART
have AUX
a DET
low ADJ
RBC PROPN
chromium NOUN
unless SCONJ
they PRON
have AUX
been AUX
taking VERB
chromium NOUN
suppleemnts(yeast NOUN
) PUNCT
. PUNCT
  SPACE
Since SCONJ
glucoma NOUN
is AUX
often ADV
found VERB
in ADP
older ADJ
people NOUN
, PUNCT
it PRON
's AUX
not PART
too ADV
surprising ADJ
that SCONJ
chromium NOUN
was AUX
low ADJ
in ADP
the DET
RBC PROPN
's PART
. PUNCT
  SPACE
If SCONJ
chromium NOUN
supplementation NOUN
could AUX
reverse VERB
glucoma NOUN
, PUNCT
that PRON
would AUX
prompt VERB
some DET
attention NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
that SCONJ
there PRON
will AUX
be AUX
a DET
clinical ADJ
trail NOUN
to PART
check VERB
out ADP
this DET
possible ADJ
chromium NOUN
link NOUN
to ADP
glucoma PROPN
. PUNCT
You PRON
could AUX
find VERB
out ADP
what PRON
your PRON
body NOUN
chromium NOUN
pool NOUN
size NOUN
was AUX
by ADP
either CCONJ
the DET
RBC PROPN
chromium NOUN
test NOUN
or CCONJ
hair NOUN
analysis NOUN
. PUNCT
  SPACE
Most ADV
clinical ADJ
labs NOUN
are AUX
not PART
going VERB
to PART
run VERB
a DET
RBC PROPN
chromium NOUN
. PUNCT
  SPACE
There PRON
are AUX
plenty NOUN
of ADP
labs NOUN
that PRON
will AUX
do AUX
a DET
hair NOUN
and CCONJ
nail NOUN
analysis NOUN
for ADP
you PRON
, PUNCT
but CCONJ
I PRON
would AUX
n't PART
use VERB
them PRON
. PUNCT
  SPACE
There PRON
is AUX
just ADV
too ADV
much ADJ
funny ADJ
business NOUN
going VERB
on ADP
in ADP
these DET
unregulated ADJ
labs NOUN
right ADV
now ADV
. PUNCT
Here ADV
's AUX
Weinsier PROPN
and CCONJ
Morgan PROPN
, PUNCT
advise VERB
on ADP
chromium NOUN
. PUNCT
  SPACE
They PRON
do AUX
not PART
consider VERB
chromium NOUN
to PART
be AUX
one NUM
of ADP
those DET
minerals NOUN
for ADP
which PRON
a DET
reliable ADJ
clinical ADJ
test NOUN
is AUX
available(they PROPN
do AUX
n't PART
like VERB
the DET
hair NOUN
and CCONJ
nail NOUN
analysis NOUN
labs NOUN
either ADV
, PUNCT
and CCONJ
they PRON
also ADV
recognize VERB
the DET
RBC PROPN
chromium NOUN
is AUX
primarily ADV
a DET
research NOUN
test NOUN
that PRON
is AUX
not PART
routinely ADV
available ADJ
in ADP
most ADJ
clinical ADJ
chemistry NOUN
labs NOUN
) PUNCT
. PUNCT
  SPACE
This DET
has AUX
to PART
change VERB
and CCONJ
as SCONJ
more ADJ
labs NOUN
run VERB
a DET
RBC PROPN
chromiuum NOUN
, PUNCT
it PRON
will AUX
. PUNCT
  SPACE
What PRON
then ADV
do AUX
they PRON
suggest?Make VERB
a DET
diagnosis NOUN
of ADP
chromium NOUN
deficiency NOUN
based VERB
on ADP
a DET
documented VERB
clinical ADJ
response NOUN
to PART
chromium(run VERB
a DET
glucose NOUN
tolerance NOUN
test NOUN
before ADP
and CCONJ
after ADP
chromium NOUN
supplementation NOUN
) PUNCT
. PUNCT
  SPACE
Once SCONJ
you PRON
make VERB
the DET
diagnosis NOUN
, PUNCT
put VERB
the DET
patient NOUN
on ADP
200ug NOUN
of ADP
CrCl3 ADJ
orally ADV
each DET
day NOUN
or CCONJ
10grams NUM
of ADP
yeast NOUN
per ADP
day NOUN
. PUNCT
What PRON
's AUX
my PRON
advise NOUN
? PUNCT
  SPACE
Do AUX
n't PART
take VERB
chromium NOUN
supplements NOUN
to PART
try VERB
to PART
loose VERB
weight(they PROPN
just ADV
do AUX
not PART
work VERB
that DET
way NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
take VERB
them PRON
and CCONJ
then ADV
exercise VERB
, PUNCT
that DET
would AUX
be AUX
great ADJ
. PUNCT
  SPACE
Do AUX
include VERB
yeast NOUN
as SCONJ
part NOUN
of ADP
your PRON
diet(most ADJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
chromium NOUN
from ADP
their PRON
diet NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
have AUX
a DET
poor ADJ
glucose NOUN
tolerance NOUN
, PUNCT
ask VERB
your PRON
doctor NOUN
to PART
check VERB
your PRON
chromium NOUN
status NOUN
. PUNCT
  SPACE
When ADV
he PRON
or CCONJ
she PRON
says VERB
, PUNCT
" PUNCT
what PRON
in ADP
the DET
world NOUN
are AUX
you PRON
talking VERB
about ADP
" PUNCT
, PUNCT
just ADV
say VERB
, PUNCT
please INTJ
get AUX
a DET
copy NOUN
of ADP
Weinsier PROPN
and CCONJ
Morgan PROPN
's PART
new ADJ
Clinical PROPN
Nutrition PROPN
textbook NOUN
and CCONJ
do AUX
what PRON
they PRON
say VERB
to PART
do AUX
with ADP
patients NOUN
who PRON
present VERB
with ADP
a DET
poor ADJ
glucose NOUN
tolerance NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
ca AUX
n't PART
do AUX
that DET
, PUNCT
I PRON
'll AUX
find VERB
a DET
doctor NOUN
who PRON
can AUX
, PUNCT
thank VERB
you PRON
very ADV
much ADV
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59500From NUM
: PUNCT
jeffs@sr.hp.com PROPN
( PUNCT
Jeff PROPN
Silva)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
Michael PROPN
Covington PROPN
( PUNCT
mcovingt@aisun4.ai.uga.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
C697IJ.IuA@srgenprp.sr.hp.com X
> X
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
pk115050@wvnvms.wvnet.edu PROPN
wrote VERB
: PUNCT
: PUNCT
: PUNCT
> X
move VERB
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
: PUNCT
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes INTJ
, PUNCT
: PUNCT
> X
by ADP
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I PRON
'd AUX
: PUNCT
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
: PUNCT
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
: PUNCT
: PUNCT
One NUM
more ADJ
reason NOUN
for ADP
men NOUN
to PART
learn VERB
the DET
Lamaze PROPN
breathing NOUN
techniques NOUN
, PUNCT
in ADP
order NOUN
: PUNCT
to PART
be AUX
able ADJ
to PART
get AUX
some DET
pain NOUN
reduction NOUN
instantly ADV
, PUNCT
wherever ADV
you PRON
are AUX
. PUNCT
: PUNCT
-- PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
It PRON
would AUX
have AUX
been AUX
pretty ADV
difficult ADJ
to PART
practice VERB
my PRON
hee NOUN
hee PROPN
's AUX
while SCONJ
I PRON
waskeeled VERB
over ADP
pukeing VERB
my PRON
guts NOUN
out ADP
though.--Jeff PROPN
Silvajeffs@sr.hp.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59501From NUM
: PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyBefore PROPN
more ADJ
bandwidth NOUN
gets VERB
wasted VERB
on ADP
this DET
: PUNCT
I PRON
APOLOGIZE VERB
for ADP
my PRON
flame NOUN
. PUNCT
First ADV
, PUNCT
because SCONJ
I PRON
distributed VERB
the DET
message NOUN
to ADP
so ADV
many ADJ
newsgroups NOUN
; PUNCT
I PRON
did AUX
       SPACE
not PART
check VERB
the DET
crosspostings NOUN
of ADP
the DET
article NOUN
I PRON
followed VERB
up ADP
on ADV
. PUNCT
Second ADV
, PUNCT
for ADP
not PART
making VERB
my PRON
argument NOUN
clear ADV
enough ADV
. PUNCT
I PRON
reacted VERB
to ADP
the DET
tone NOUN
        SPACE
of ADP
many ADJ
of ADP
the DET
anti ADJ
- ADJ
Kirlian ADJ
posts NOUN
, PUNCT
not PART
to ADP
their PRON
content NOUN
. PUNCT
Right ADJ
        SPACE
or CCONJ
wrong NOUN
, PUNCT
I PRON
found VERB
the DET
arguments NOUN
set VERB
in ADP
arrogant ADJ
and CCONJ
sneering NOUN
words NOUN
        SPACE
( PUNCT
that PRON
includes VERB
" PUNCT
jokes NOUN
" PUNCT
) PUNCT
, PUNCT
which PRON
I PRON
still ADV
think VERB
is AUX
unwarranted ADJ
. PUNCT
And CCONJ
, PUNCT
obviously ADV
, PUNCT
I PRON
should AUX
not PART
have AUX
done VERB
the DET
same.-- PROPN
AlexNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59502From NUM
: PUNCT
green@island NOUN
. PUNCT
COM PROPN
( PUNCT
Robert PROPN
Greenstein)Subject NUM
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???In NUM
article NOUN
< X
9304261811.AA07821@DPW.COM NOUN
> X
jprice@dpw.com X
( PUNCT
Janice PROPN
Price PROPN
) PUNCT
writes:>>I NOUN
saw VERB
a DET
printed VERB
up ADP
flyer NOUN
that PRON
stated VERB
the DET
person NOUN
was AUX
a>"licensed VERB
herbologist NOUN
and CCONJ
iridologist"I PROPN
do AUX
n't PART
believe VERB
any DET
state NOUN
licenses NOUN
herbologists NOUN
or CCONJ
iridologists.-- NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Robert PROPN
Greenstein PROPN
           SPACE
What PRON
the DET
fool NOUN
can AUX
not PART
learn VERB
he PRON
laughs VERB
at ADP
, PUNCT
thinkinggreen@srilanka.island.com X
   SPACE
that SCONJ
by ADP
his PRON
laughter NOUN
he PRON
shows VERB
superiority NOUN
instead ADV
                            SPACE
of ADP
latent NOUN
idiocy PROPN
- PUNCT
M. PROPN
CorelliNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59503From NUM
: PUNCT
meg_arnold@qm.sri.com X
( PUNCT
Meg PROPN
Arnold)Subject NUM
: PUNCT
Botulinum PROPN
Toxin PROPN
, PUNCT
type NOUN
AI PROPN
am AUX
looking VERB
for ADP
statistics NOUN
on ADP
the DET
prevalence NOUN
of ADP
disorders NOUN
that PRON
aretreatable ADJ
with ADP
Botulinum PROPN
Type PROPN
A. NOUN
  SPACE
These DET
disorders NOUN
include VERB
: PUNCT
facialdyskinesia PROPN
, PUNCT
meige PROPN
syndrome PROPN
, PUNCT
hemifacial ADJ
spasm NOUN
, PUNCT
apraxia PROPN
of ADP
eyelid NOUN
openeing VERB
, PUNCT
aberrant ADJ
regeneration NOUN
of ADP
the DET
facial ADJ
nerve NOUN
, PUNCT
facial ADJ
paralysis NOUN
, PUNCT
strabismus PROPN
, PUNCT
spasmodic PROPN
torticollis PROPN
, PUNCT
muscle NOUN
spasm NOUN
, PUNCT
occupational PROPN
dystonia PROPN
( PUNCT
i.e. X
writerscramp PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
spasmodic PROPN
dysphonia PROPN
, PUNCT
and CCONJ
temporal ADJ
mandibular ADJ
joint ADJ
disease NOUN
. PUNCT
I PRON
realize VERB
many ADJ
of ADP
the DET
disorders NOUN
I PRON
listed VERB
( PUNCT
such ADJ
as SCONJ
" PUNCT
muscle NOUN
spasm NOUN
" PUNCT
! PUNCT
! PUNCT
) PUNCT
arevaguely ADV
defined VERB
and CCONJ
may AUX
encompass VERB
a DET
wide ADJ
range NOUN
of ADP
particular ADJ
disorders NOUN
. PUNCT
  SPACE
Myapologies PROPN
; PUNCT
the DET
list NOUN
was AUX
provided VERB
to ADP
me PRON
as SCONJ
is AUX
. PUNCT
  SPACE
I PRON
have AUX
some DET
numbers NOUN
, PUNCT
but CCONJ
notreliable ADJ
. PUNCT
  SPACE
Any DET
ideas NOUN
on ADP
sources NOUN
or CCONJ
, PUNCT
even ADV
bbetter ADJ
, PUNCT
any DET
actual ADJ
figures NOUN
( PUNCT
with ADP
sourcelisted)?Many PROPN
thanks,- PUNCT
Meg~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PROPN
  SPACE
Meg PROPN
Arnold PROPN
, PUNCT
Business PROPN
Intelligence PROPN
Center PROPN
, PUNCT
SRI PROPN
International PROPN
. PUNCT
~ PUNCT
~ PUNCT
  SPACE
333 NUM
Ravenswood PROPN
Avenue PROPN
, PUNCT
Menlo PROPN
Park PROPN
, PUNCT
CA PROPN
  SPACE
94025 NUM
. PUNCT
                SPACE
~ PUNCT
     SPACE
~ PUNCT
  SPACE
phone NOUN
: PUNCT
( PUNCT
415 NUM
) PUNCT
859 NUM
- SYM
3764 NUM
    SPACE
internet NOUN
: PUNCT
meg_arnold@qm.sri.com X
     SPACE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59504From NUM
: PUNCT
esd3@po X
. PUNCT
CWRU.Edu PROPN
( PUNCT
Elisabeth PROPN
S. PROPN
Davidson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
FictionIn PROPN
a DET
previous ADJ
article NOUN
, PUNCT
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
) PUNCT
says:>least VERB
a DET
few ADJ
" PUNCT
enlightened VERB
" PUNCT
physicians NOUN
practicing VERB
in ADP
the DET
U.S. PROPN
  SPACE
It PRON
's AUX
really ADV
> X
too ADV
bad ADJ
that SCONJ
most ADJ
U.S. PROPN
medical ADJ
schools NOUN
do AUX
n't PART
cover VERB
nutrition NOUN
because SCONJ
if SCONJ
> X
they PRON
did AUX
, PUNCT
candida PROPN
would AUX
not PART
be AUX
viewed VERB
as SCONJ
a DET
non ADJ
- ADJ
disease NOUN
by ADP
so ADV
many ADJ
in ADP
the DET
> X
medical ADJ
profession NOUN
. PUNCT
Case NOUN
Western PROPN
Reserve PROPN
Med PROPN
School PROPN
teaches VERB
nutrition NOUN
in ADP
its PRON
own ADJ
section NOUN
aswell NOUN
as SCONJ
covering VERB
it PRON
in ADP
other ADJ
sections NOUN
as SCONJ
they PRON
apply VERB
( PUNCT
i.e. X
B12deficiency PROPN
in ADP
neuro PROPN
as SCONJ
a DET
cause NOUN
of ADP
neuropathy NOUN
, PUNCT
B12 PROPN
deficiency NOUN
inhematology NOUN
as SCONJ
a DET
cause NOUN
of ADP
megaloblastic ADJ
anemia NOUN
) PUNCT
, PUNCT
yet CCONJ
I PRON
sillhold VERB
the DET
viewpoint NOUN
of ADP
mainstream ADJ
medicine NOUN
: PUNCT
  SPACE
candida PROPN
can AUX
causemucocutaneous ADJ
candidiasis NOUN
, PUNCT
and CCONJ
, PUNCT
in ADP
already ADV
very ADV
sick ADJ
patientswith NOUN
damaged VERB
immune ADJ
systems NOUN
like SCONJ
AIDS PROPN
and CCONJ
cancer NOUN
patients NOUN
, PUNCT
systemic ADJ
candida PROPN
infection NOUN
. PUNCT
  SPACE
I PRON
think VERB
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
isa NOUN
bunch NOUN
of ADP
hooey NOUN
. PUNCT
  SPACE
What PRON
does AUX
this DET
have AUX
to PART
do AUX
with ADP
how ADV
wellnutrition NOUN
is AUX
taught VERB
, PUNCT
anyway?>>Here PUNCT
is AUX
a DET
brief ADJ
primer NOUN
on ADP
yeast NOUN
. PUNCT
  SPACE
Yeast NOUN
infections NOUN
, PUNCT
as SCONJ
they PRON
are AUX
commonly ADV
> X
called VERB
, PUNCT
are AUX
not PART
truely ADV
caused VERB
by ADP
yeasts NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
organism NOUN
responsible ADJ
> X
for ADP
this DET
type NOUN
of ADP
infection NOUN
is AUX
Candida PROPN
albicans NOUN
or CCONJ
Monilia PROPN
which PRON
is AUX
actually ADV
a DET
> X
yeast NOUN
- PUNCT
like ADJ
fungus NOUN
. PUNCT
  SPACE
Well INTJ
, PUNCT
maybe ADV
I PRON
'm AUX
getting VERB
picky ADJ
, PUNCT
but CCONJ
I PRON
always ADV
thought VERB
that SCONJ
a DET
yeastwas PROPN
one NUM
form NOUN
that PRON
a DET
fungus NOUN
could AUX
exist VERB
in ADV
, PUNCT
the DET
other ADJ
being AUX
themold NOUN
form NOUN
. PUNCT
  SPACE
Many ADJ
fungi NOUN
can AUX
occur VERB
as SCONJ
either CCONJ
yeasts NOUN
or CCONJ
molds NOUN
, PUNCT
depending VERB
on ADP
environment NOUN
. PUNCT
  SPACE
Candida PROPN
exibits VERB
what PRON
is AUX
known VERB
asreverse PROPN
dimorphism NOUN
- PUNCT
it PRON
exists VERB
as SCONJ
a DET
mold NOUN
in ADP
the DET
tissuesbut NOUN
exists VERB
as SCONJ
a DET
yeast NOUN
in ADP
the DET
environment NOUN
. PUNCT
  SPACE
Should AUX
we PRON
maybecall VERB
it PRON
a DET
mold NOUN
infection NOUN
? PUNCT
  SPACE
a DET
fungus ADJ
infection NOUN
? PUNCT
  SPACE
Maybe ADV
weshould NOUN
say VERB
it PRON
is AUX
caused VERB
by ADP
a DET
mold NOUN
- PUNCT
like ADJ
fungus PROPN
. PUNCT
> X
> X
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PUNCT
D.>Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
Chairman PROPN
> X
Department PROPN
of ADP
Biochemistry PROPN
and CCONJ
Microbiology PROPN
> X
OSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine>1111 NOUN
West PROPN
17th NOUN
St.>Tulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107 NUM
> X
You're PROPN
the DET
chairman NOUN
of ADP
Biochem PROPN
and CCONJ
Micro PROPN
and CCONJ
you PRON
did AUX
n't PART
know VERB
that SCONJ
a DET
yeast NOUN
is AUX
a DET
form NOUN
of ADP
a DET
fungus NOUN
? PUNCT
  SPACE
( PUNCT
shudder)Or PROPN
maybe ADV
you PRON
did AUX
know VERB
, PUNCT
and CCONJ
were AUX
oversimplifying?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59505From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Schatzki PROPN
Ring/ PROPN
PVC'sIn NUM
article NOUN
< X
uabdpo.dpo.uab.edu-280493114107@spam.dom.uab.edu NUM
> X
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr27.180334@betsy.gsfc.nasa.gov>,>ohandley@betsy.gsfc.nasa.gov PROPN
wrote VERB
: PUNCT
> X
> X
> X
> X
The DET
second ADJ
issue NOUN
: PUNCT
[ PUNCT
summarized VERB
] PUNCT
  SPACE
He PRON
has AUX
had VERB
extra ADJ
heartbeats NOUN
for ADP
the DET
past>3 NOUN
to ADP
4 NUM
years NOUN
, PUNCT
and CCONJ
once ADV
was AUX
symptomatic ADJ
from ADP
them PRON
, PUNCT
with ADP
some DET
> X
lightheadedness.>He NOUN
is AUX
young ADJ
, PUNCT
( PUNCT
30-ish NUM
) PUNCT
, PUNCT
thin ADJ
and CCONJ
in ADP
good ADJ
> X
> X
health PROPN
( PUNCT
recent ADJ
bloodtests NOUN
were AUX
all DET
normal ADJ
) PUNCT
, PUNCT
and CCONJ
do AUX
not PART
smoke VERB
, PUNCT
use VERB
drugs NOUN
or CCONJ
> X
> X
caffeine PROPN
, PUNCT
etc X
. PUNCT
I PRON
'm AUX
willing ADJ
to PART
accept VERB
the DET
extra ADJ
beats NOUN
as SCONJ
" PUNCT
normal ADJ
" PUNCT
, PUNCT
but CCONJ
do AUX
n't PART
> X
> X
want VERB
to PART
ignore VERB
them PRON
if SCONJ
they PRON
might AUX
be AUX
some DET
kind NOUN
of ADP
warning NOUN
symptom NOUN
. PUNCT
The DET
number NOUN
> X
> X
of ADP
PVC PROPN
's PART
seems VERB
to PART
increase VERB
throughout ADP
the DET
day NOUN
, PUNCT
and CCONJ
with ADP
exercise NOUN
( PUNCT
or CCONJ
something PRON
> X
> X
as ADV
simple ADJ
as SCONJ
climbing VERB
some DET
stairs NOUN
) PUNCT
. PUNCT
Also ADV
, PUNCT
if SCONJ
I PRON
get VERB
up ADP
after ADP
sitting VERB
or CCONJ
lying VERB
> X
> X
down ADV
for ADP
a DET
while NOUN
, PUNCT
I PRON
tend VERB
to PART
get AUX
a DET
couple NOUN
of ADP
extra ADJ
beats NOUN
. PUNCT
Could AUX
they PRON
possibly ADV
> X
> X
be AUX
related VERB
to ADP
the DET
esophagous ADJ
problems NOUN
? PUNCT
Both DET
seemed VERB
to PART
develop VERB
at ADP
about ADP
the DET
> X
> X
same ADJ
time.>>I PROPN
' PUNCT
not PART
an DET
expert NOUN
on ADP
heart NOUN
problems NOUN
, PUNCT
but CCONJ
PVC PROPN
's PART
are AUX
common ADJ
and CCONJ
have AUX
been AUX
> X
overtreated VERB
in ADP
the DET
past NOUN
. PUNCT
  SPACE
My PRON
personal ADJ
experience NOUN
, PUNCT
and CCONJ
I PRON
have AUX
the DET
same ADJ
> X
history NOUN
an DET
build NOUN
you PRON
do AUX
( PUNCT
related VERB
to ADP
the DET
heart NOUN
, PUNCT
that ADV
is ADV
) PUNCT
, PUNCT
is AUX
that SCONJ
my PRON
PVC's NOUN
> X
come VERB
and CCONJ
go VERB
, PUNCT
with ADP
some DET
months NOUN
causing VERB
anxiety NOUN
. PUNCT
  SPACE
Taking VERB
on ADP
more ADJ
fluids NOUN
> X
seems VERB
to PART
help VERB
, PUNCT
and CCONJ
they PRON
seem VERB
worse ADJ
in ADP
the DET
summer NOUN
. PUNCT
  SPACE
Remember VERB
that SCONJ
a DET
slow ADJ
> X
heart NOUN
rate NOUN
will AUX
allow VERB
more ADJ
PVC PROPN
's PART
to PART
be AUX
apparent ADJ
, PUNCT
so ADV
perhaps ADV
it PRON
is AUX
an DET
> ADJ
indication NOUN
of ADP
a DET
healthy ADJ
cardiac ADJ
system NOUN
( PUNCT
but CCONJ
ask VERB
an DET
expert NOUN
about ADP
that DET
> X
last ADJ
point NOUN
, PUNCT
especially)I ADJ
too ADV
have AUX
had VERB
premature ADJ
ventricular ADJ
heartbeat NOUN
, PUNCT
starting VERB
in ADP
1974 NUM
. PUNCT
  SPACE
( PUNCT
These DET
are AUX
not PART
, PUNCT
by ADP
the DET
way NOUN
, PUNCT
" PUNCT
extra ADJ
" PUNCT
heartbeats NOUN
. PUNCT
  SPACE
This DET
is AUX
how ADV
they PRON
feel VERB
, PUNCT
and CCONJ
this DET
is AUX
how ADV
I PRON
described VERB
them PRON
initially ADV
to ADP
the DET
doctor NOUN
, PUNCT
but CCONJ
they PRON
're AUX
actually ADV
* PUNCT
premature ADJ
* PUNCT
heartbeats NOUN
. PUNCT
  SPACE
I PRON
would AUX
sometimes ADV
experience VERB
a DET
lapse NOUN
after ADP
one NUM
of ADP
these DET
that PRON
went VERB
on ADP
for ADP
a DET
suffocatingly ADV
long ADJ
period NOUN
of ADP
time NOUN
, PUNCT
making VERB
me PRON
wonder VERB
if SCONJ
my PRON
heart NOUN
were AUX
ever ADV
going VERB
to PART
beat VERB
again ADV
. PUNCT
) PUNCT
I PRON
had AUX
them PRON
persistently ADV
for ADP
eighteen NUM
years NOUN
. PUNCT
  SPACE
Then ADV
I PRON
went VERB
on ADP
a DET
low ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
and CCONJ
they PRON
just ADV
stopped VERB
. PUNCT
  SPACE
I PRON
have AUX
n't PART
had VERB
a DET
single ADJ
episode NOUN
of ADP
PVH PROPN
for ADP
almost ADV
two NUM
years NOUN
. PUNCT
  SPACE
I PRON
know VERB
: PUNCT
  SPACE
correlation NOUN
does AUX
not PART
imply VERB
causation NOUN
. PUNCT
This DET
is AUX
just ADV
FWIW PROPN
. PUNCT
  SPACE
--Barbara PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59506From NUM
: PUNCT
tysoem@facman.ohsu.edu PROPN
( PUNCT
Marie PROPN
E NOUN
Tysoe)Subject NOUN
: PUNCT
Natural ADJ
Alternatives NOUN
to ADP
EstrogenNeed PROPN
Diet PROPN
for ADP
Diverticular PROPN
Diseaseand PROPN
ideas NOUN
for ADP
gastrointestinal ADJ
distressNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59507From NUM
: PUNCT
tysoem@facman.ohsu.edu PROPN
( PUNCT
Marie PROPN
E PROPN
Tysoe)Subject NOUN
: PUNCT
sciaticaIdeas NOUN
for ADP
the DET
relief NOUN
of ADP
sciatica PROPN
. PUNCT
Please INTJ
respond VERB
to ADP
my PRON
E NOUN
- NOUN
mailNewsgroup ADJ
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59508From NUM
: PUNCT
" PUNCT
Gabriel PROPN
D. PROPN
Underwood PROPN
" PUNCT
< X
gabe+@CMU.EDU PUNCT
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?I PROPN
heard VERB
a DET
great ADJ
Civil PROPN
War PROPN
story NOUN
... PUNCT
      SPACE
A DET
guy NOUN
on ADP
the DET
battlfield NOUN
is AUX
shotin VERB
the DET
groin NOUN
, PUNCT
   SPACE
the DET
bullet NOUN
continues VERB
on ADP
it PRON
's AUX
path NOUN
, PUNCT
and CCONJ
lodges NOUN
in ADP
theabdomen NOUN
of ADP
a DET
female ADJ
spectator NOUN
. PUNCT
    SPACE
Lo PROPN
and CCONJ
behold VERB
.... PUNCT
As SCONJ
the DET
legend NOUN
goes VERB
, PUNCT
   SPACE
both DET
parents NOUN
survived VERB
, PUNCT
  SPACE
married VERB
, PUNCT
  SPACE
and CCONJ
raised VERB
the DET
child.--"Death NOUN
. PUNCT
Taxes NOUN
. PUNCT
  SPACE
Math PROPN
. PUNCT
  SPACE
Jazz NOUN
. PUNCT
"- PUNCT
Wean PROPN
Hall PROPN
Bathroom PROPN
GraffitiGabriel PROPN
Underwoodgabe+@cmu.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59509From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Re ADP
: PUNCT
Placebo NOUN
effects NOUN
To PART
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
RT PROPN
> X
o X
  SPACE
Those DET
administering VERB
the DET
treatment NOUN
do AUX
not PART
know VERB
which PRON
subjects NOUN
  SPACE
RT PROPN
> X
receive VERB
a DET
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
. PUNCT
It PRON
seems VERB
to ADP
me PRON
that SCONJ
many ADJ
drugs NOUN
have AUX
such ADJ
severe ADJ
side NOUN
effects NOUN
that SCONJ
it PRON
might AUX
not PART
be AUX
possible ADJ
to PART
keep VERB
the DET
doctors NOUN
from ADP
knowing VERB
who PRON
is AUX
getting VERB
the DET
true ADJ
drug NOUN
. PUNCT
  SPACE
This DET
is AUX
especially ADV
true ADJ
of ADP
the DET
drugs NOUN
used VERB
for ADP
" PUNCT
mental ADJ
" PUNCT
illnesses NOUN
.... PUNCT
My PRON
cat NOUN
is AUX
very ADV
smart ADJ
. PUNCT
  SPACE
He PRON
has AUX
ME PROPN
well ADV
trained VERB
. PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59510From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?brandon@caldonia.nlm.nih.gov PROPN
( PUNCT
Brandon PROPN
Brylawski PROPN
) PUNCT
writes:>mryan@stsci.edu PROPN
writes VERB
: PUNCT
> X
: PUNCT
Am AUX
I PRON
justified ADJ
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor NOUN
? PUNCT
> X
: PUNCT
> X
: PUNCT
Last ADJ
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife NOUN
. PUNCT
> X
: PUNCT
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
> X
: PUNCT
clinic NOUN
was AUX
open ADJ
till SCONJ
6:00 NUM
pm NOUN
. PUNCT
  SPACE
The DET
receptionist NOUN
went VERB
to ADP
the DET
back NOUN
and CCONJ
told VERB
the DET
< X
: PUNCT
  SPACE
.... PUNCT
other ADJ
good ADJ
stuff NOUN
about ADP
the DET
Drs PROPN
idiocyOk PROPN
, PUNCT
much ADV
as SCONJ
I PRON
hate VERB
to PART
do AUX
it PRON
, PUNCT
here ADV
I PRON
am AUX
posting VERB
an DET
EVEN PROPN
BETTER ADJ
" PUNCT
Dr. PROPN
Idiot"story NUM
. PUNCT
I PRON
was AUX
in ADP
my PRON
18th ADJ
hour NOUN
of ADP
labor NOUN
, PUNCT
had AUX
been AUX
pushing VERB
for ADP
4.5 NUM
hours NOUN
and CCONJ
wasexhausted VERB
. PUNCT
  SPACE
My PRON
OB NOUN
and CCONJ
I PRON
decided VERB
to PART
go VERB
for ADP
a DET
csec NOUN
. PUNCT
  SPACE
The DET
OB PROPN
called VERB
inthe DET
anesthisiologist NOUN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
and CCONJ
asked VERB
him PRON
to PART
help VERB
prep VERB
me PRON
for ADP
surgery NOUN
. PUNCT
AFTER ADV
, PUNCT
watching VERB
me PRON
go VERB
through ADP
a DET
couple NOUN
contractions NOUN
, PUNCT
the DET
anes NOUN
( PUNCT
or CCONJ
anus VERB
asI NOUN
like VERB
to PART
refer VERB
to ADP
him PRON
) PUNCT
said VERB
, PUNCT
" PUNCT
Well INTJ
, PUNCT
I PRON
am AUX
off ADP
duty NOUN
now ADV
. PUNCT
" PUNCT
( PUNCT
still ADV
staringbetween ADJ
my PRON
legs NOUN
at ADP
that DET
) PUNCT
. PUNCT
  SPACE
The DET
OB PROPN
asked VERB
to PART
go VERB
call VERB
whomever NOUN
it PRON
was AUX
whowas VERB
on ADP
duty NOUN
and CCONJ
ask VERB
him PRON
/ SYM
her PRON
how ADV
long ADV
it PRON
would AUX
take VERB
... PUNCT
and CCONJ
if SCONJ
it PRON
was AUX
goingto PROPN
take VERB
more ADJ
than SCONJ
a DET
few ADJ
minutes NOUN
, PUNCT
to PART
please VERB
stay VERB
even ADV
though SCONJ
he PRON
was AUX
off ADP
duty NOUN
. PUNCT
The DET
anes NOUN
. PUNCT
went VERB
out ADP
, PUNCT
supposedly ADV
to PART
call VERB
the DET
on ADP
- PUNCT
call NOUN
anes NOUN
. PUNCT
   SPACE
In ADP
a DET
couple NOUN
ofminutes VERB
the DET
nurse NOUN
came VERB
running VERB
in ADP
to PART
tell VERB
the DET
OB PROPN
that SCONJ
the DET
anes NOUN
. PUNCT
had AUX
leftwithout ADV
even ADV
trying VERB
to PART
get AUX
ahold ADP
of ADP
the DET
on ADP
- PUNCT
call NOUN
. PUNCT
  SPACE
It PRON
was AUX
the DET
only ADJ
time NOUN
during ADP
my PRON
labor NOUN
that PRON
I PRON
swore VERB
. PUNCT
  SPACE
The DET
on ADP
- PUNCT
call NOUN
anes NOUN
. PUNCT
took VERB
20 NUM
minutes NOUN
to PART
getthere VERB
. PUNCT
Come VERB
to PART
find VERB
out ADP
, PUNCT
the DET
anes NOUN
. PUNCT
had AUX
only ADV
just ADV
gone VERB
off ADP
duty NOUN
( PUNCT
about ADV
2 NUM
minutesbefore NOUN
) PUNCT
and CCONJ
technically ADV
was AUX
supposed VERB
to PART
stay VERB
in ADP
the DET
hospital NOUN
until ADP
thenext NOUN
on ADP
- PUNCT
call NOUN
got VERB
there ADV
. PUNCT
  SPACE
Good ADJ
thing NOUN
for ADP
all DET
of ADP
us PRON
( PUNCT
especially ADV
him PRON
) PUNCT
thatit PROPN
was AUX
not PART
a DET
critical ADJ
emergency NOUN
. PUNCT
  SPACE
But CCONJ
boy NOUN
would AUX
I PRON
love VERB
to PART
knock VERB
thatfellow PROPN
's PART
ouchie NOUN
places NOUN
... PUNCT
just ADV
to PART
let VERB
him PRON
be AUX
in ADP
pain NOUN
afew ADJ
little ADJ
minutes NOUN
. PUNCT
I PRON
have AUX
run VERB
into ADP
" PUNCT
Dr. PROPN
Idiots PROPN
" PUNCT
, PUNCT
" PUNCT
Mechanic ADJ
Idiots NOUN
" PUNCT
, PUNCT
" PUNCT
Clerk PROPN
Idiots NOUN
" PUNCT
and CCONJ
" PUNCT
Etc PROPN
. PUNCT
Idiots NOUN
" PUNCT
in ADP
my PRON
time NOUN
, PUNCT
but CCONJ
this DET
fellow NOUN
I PRON
would AUX
like VERB
to PART
have AUX
words NOUN
with ADP
. PUNCT
DeanthaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59511From NUM
: PUNCT
lkherold@athena.mit.edu PROPN
( PUNCT
Lori PROPN
K PROPN
Herold)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesIf PROPN
the DET
student NOUN
has AUX
a DET
kidney NOUN
infection NOUN
, PUNCT
she PRON
ought AUX
to PART
be AUX
on ADP
antibiotics NOUN
. PUNCT
Kidney PROPN
infections-- PROPN
left VERB
untreated-- PROPN
can AUX
cause VERB
permanent ADJ
damage NOUN
tothe PROPN
kidneys NOUN
. PUNCT
  SPACE
I PRON
was AUX
hospitalized VERB
with ADP
a DET
kidney NOUN
infection NOUN
a DET
while NOUN
agoand NOUN
I PRON
was AUX
very ADV
sick ADJ
. PUNCT
In ADP
article NOUN
< X
1993Apr29.003406.55029@ux1.cts.eiu.edu NUM
> X
, PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes VERB
: PUNCT
...... PUNCT
> X
	 SPACE
Also ADV
, PUNCT
she PRON
is AUX
told VERB
that SCONJ
thre PROPN
are AUX
300 NUM
! PUNCT
surgery NOUN
patients NOUN
ahead ADV
of ADP
her PRON
> X
and CCONJ
that SCONJ
they PRON
can AUX
not PART
do AUX
surgery NOUN
until ADP
August PROPN
or CCONJ
so ADV
. PUNCT
  SPACE
It PRON
is AUX
now ADV
April PROPN
... PUNCT
> X
She PRON
is AUX
supposed VERB
to PART
rest VERB
a DET
lot NOUN
and CCONJ
drink NOUN
fluids NOUN
. PUNCT
  SPACE
But CCONJ
she PRON
has AUX
to PART
go VERB
to ADP
> X
classes NOUN
. PUNCT
  SPACE
She PRON
wonders VERB
why ADV
they PRON
have AUX
given VERB
her PRON
no DET
medicine NOUN
. PUNCT
  SPACE
She PRON
plans VERB
to PART
           SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59512From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosaezpete@deja-vu.aiss.uiuc.edu PROPN
( PUNCT
) PUNCT
writes:>>can't VERB
imagine VERB
what PRON
it PRON
's AUX
like ADJ
to PART
have AUX
a DET
penis NOUN
, PUNCT
much ADV
less ADJ
a DET
foreskin NOUN
. PUNCT
I>>guess ADJ
if SCONJ
American ADJ
medicine NOUN
did AUX
an DET
artistic ADJ
job NOUN
of ADP
circumcising NOUN
every>>male NOUN
, PUNCT
then ADV
the DET
visual ADJ
result NOUN
would AUX
be AUX
somewhat ADV
more ADV
natural ADJ
in>>appearance NOUN
... PUNCT
>>>>The X
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
be>>going VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journal>>or NOUN
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
old>>Jewish NUM
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
the>>cancer PROPN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
like>>crazy PUNCT
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
a>>little PROPN
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung ADJ
up ADP
on>>the PROPN
penis PROPN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADJ
like>>mastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basically>>unnecessary.>Peter NOUN
Schlumpf PROPN
> X
University PROPN
of ADP
Illinois PROPN
at ADP
Urbana PROPN
- PUNCT
ChampaignFirst PROPN
off ADP
, PUNCT
use VERB
some DET
decent ADJ
terms NOUN
if SCONJ
ya PRON
do AUX
n't PART
mind VERB
. PUNCT
  SPACE
This DET
is AUX
sci.med VERB
, PUNCT
notalt.sex.Secondly ADV
, PUNCT
how ADV
absolutely ADV
bogus ADJ
to PART
assume VERB
that SCONJ
" PUNCT
American PROPN
's PART
are AUX
just ADV
too ADV
hungup ADJ
on ADP
the DET
penis PROPN
.... PUNCT
blah INTJ
, PUNCT
blah INTJ
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
most ADJ
American PROPN
's PART
do AUX
n't PART
care VERB
aboutanything NOUN
so ADV
comlicated VERB
as SCONJ
that DET
. PUNCT
  SPACE
They PRON
just ADV
think VERB
it PRON
" PUNCT
looks VERB
nicer ADV
" PUNCT
. PUNCT
  SPACE
Ask VERB
a DET
few ADJ
of ADP
them PRON
and CCONJ
see VERB
what PRON
response NOUN
you PRON
get VERB
. PUNCT
  SPACE
Others NOUN
still ADV
opt VERB
forcircumcision NOUN
due ADJ
to ADP
religious ADJ
traditions NOUN
and CCONJ
beliefs NOUN
. PUNCT
  SPACE
Some DET
think VERB
it PRON
iseasier VERB
to PART
clean VERB
. PUNCT
  SPACE
Still ADV
others NOUN
do AUX
it PRON
because SCONJ
" PUNCT
Daddy NOUN
was" ADV
. PUNCT
Dont PROPN
' PUNCT
be AUX
so ADV
naive ADJ
as SCONJ
to PART
think VERB
American PROPN
's PART
are AUX
afraid ADJ
of ADP
sexuality NOUN
. PUNCT
My PRON
son NOUN
is AUX
not PART
circumcised VERB
, PUNCT
and CCONJ
I PRON
can AUX
vouch VERB
for ADP
the DET
argument NOUN
that SCONJ
it PRON
ismore VERB
difficult ADJ
to PART
keep VERB
clean ADJ
than SCONJ
a DET
circumcised VERB
kids NOUN
' PUNCT
. PUNCT
  SPACE
Not PART
so ADV
much ADJ
thatthe DET
foreskin NOUN
is AUX
difficult ADJ
to PART
pull VERB
back ADV
( PUNCT
it PRON
is AUX
n't PART
) PUNCT
but CCONJ
because SCONJ
my PRON
sondoesn't NOUN
want VERB
to PART
wait VERB
long ADV
enough ADV
for ADP
a DET
thorough ADJ
check NOUN
for ADP
smega NOUN
or CCONJ
misplacedfeces NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
many ADJ
times NOUN
it PRON
just ADV
gets VERB
a DET
once ADV
over ADP
dab PROPN
. PUNCT
  SPACE
It PRON
worries VERB
methat ADP
he PRON
might AUX
get AUX
an DET
infection NOUN
due ADP
to ADP
his PRON
lack NOUN
of ADP
cooperation NOUN
. PUNCT
  SPACE
I PRON
amsure VERB
, PUNCT
however ADV
, PUNCT
that SCONJ
he PRON
will AUX
be AUX
able ADJ
to PART
handle VERB
cleaning VERB
under ADP
the DET
foreskinhimself NOUN
once SCONJ
he PRON
is AUX
old ADJ
enough ADV
. PUNCT
  SPACE
Until ADP
, PUNCT
there PRON
is AUX
always ADV
the DET
decision NOUN
ateach NOUN
diaper NOUN
change NOUN
... PUNCT
is AUX
this DET
the DET
time NOUN
to PART
clean VERB
or CCONJ
can AUX
we PRON
wait VERB
till SCONJ
nexttime NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59513From NUM
: PUNCT
cacci@interlan.interlan.com PROPN
( PUNCT
Ernie PROPN
Cacciapuoti)Subject PROPN
: PUNCT
Question NOUN
: PUNCT
Phosphorylase PROPN
Kinase PROPN
Deficiency???If PROPN
anyone PRON
has AUX
any DET
information NOUN
on ADP
this DET
deficiency NOUN
I PRON
would AUX
very ADV
greatlyappreciate VERB
a DET
response NOUN
here ADV
or CCONJ
preferably ADV
by ADP
Email NOUN
. PUNCT
  SPACE
All DET
I PRON
know VERB
at ADP
thispoint NOUN
is AUX
a DET
deficiency NOUN
can AUX
cause VERB
myoglobin PROPN
to PART
be AUX
released VERB
, PUNCT
and CCONJ
in ADP
timesof NOUN
stress NOUN
and CCONJ
high ADJ
ambient NOUN
temperature NOUN
could AUX
cause VERB
renal ADJ
failure.xNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59514From NUM
: PUNCT
atae@spva.ph.ic.ac.uk PROPN
( PUNCT
Ata PROPN
Etemadi)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C67G01.2J1@efi.com PROPN
> X
, PUNCT
alanm@efi.com X
( PUNCT
Alan PROPN
Morgan PROPN
) PUNCT
writes:-| PROPN
In ADP
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
-| PUNCT
   SPACE
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:-| PROPN
Okay INTJ
. PUNCT
  SPACE
Name VERB
one NUM
single ADJ
effect NOUN
that PRON
Kirlian ADJ
photography NOUN
gives VERB
that-| NUM
ca AUX
n't PART
be AUX
explained VERB
by ADP
corona ADJ
discharge NOUN
. PUNCT
Dozens NOUN
of ADP
very ADV
funny ADJ
postings NOUN
to ADP
sci.image.processing DET
[ PUNCT
of ADP
which PRON
this DET
may AUX
not PART
be AUX
one NUM
:-] ADJ
. PUNCT
	 SPACE
Ata PROPN
< X
( PUNCT
|)>Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59516From NUM
: PUNCT
< X
U18183@uicvm.uic.edu>Subject NUM
: PUNCT
Re ADP
: PUNCT
Chromium NOUN
for ADP
weight NOUN
loss NOUN
  SPACE
There PRON
is AUX
no DET
data NOUN
to PART
show VERB
chromium NOUN
is AUX
effective ADJ
in ADP
promoting VERB
weight NOUN
loss NOUN
. PUNCT
  SPACE
The DET
few ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
using VERB
chromium NOUN
have AUX
been AUX
very ADV
flawed ADJ
and CCONJ
inherently ADV
biased ADJ
( PUNCT
the DET
investigators NOUN
were AUX
making VERB
money NOUN
from ADP
marketing VERB
it PRON
) PUNCT
. PUNCT
  SPACE
Theoretically ADV
it PRON
really ADV
does AUX
nt PART
make VERB
sense NOUN
either ADV
. PUNCT
The DET
claim NOUN
is AUX
that DET
chromiumwill NOUN
increase VERB
muscle NOUN
mass NOUN
and CCONJ
decrease VERB
fat NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
chromium NOUN
is AUX
also ADV
used VERB
to PART
cure VERB
diabetes NOUN
, PUNCT
high ADJ
blood NOUN
pressure NOUN
and CCONJ
increase VERB
muscle NOUN
mass NOUN
in ADP
athletes(justas PROPN
well ADV
as SCONJ
anabolic ADJ
steroids NOUN
) PUNCT
. PUNCT
Sounds VERB
like SCONJ
snake NOUN
oil NOUN
for ADP
the DET
1990 NUM
's PART
:-) PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
it PRON
really ADV
ca AUX
nt PART
hurt VERB
you PRON
anywhere ADV
but CCONJ
your PRON
wallet NOUN
, PUNCT
and CCONJ
placebo NOUN
effects NOUN
of ADP
anything PRON
can AUX
be AUX
pretty ADV
dramatic ADJ
... PUNCT
                                    SPACE
-Paul PUNCT
     SPACE
---------------------------------------------------------- PUNCT
    SPACE
| NOUN
  SPACE
Paul PROPN
Sovcik PROPN
, PUNCT
Pharm PROPN
. PUNCT
D. PROPN
U PROPN
of ADP
Illinois PROPN
College PROPN
of ADP
Pharmacy PROPN
| PROPN
    SPACE
| CCONJ
                                                          SPACE
| PROPN
    SPACE
| CCONJ
    SPACE
Email- PROPN
U18183@UICVM.UIC.EDU PROPN
                           SPACE
| PROPN
    SPACE
| CCONJ
                                                          SPACE
| PROPN
     SPACE
----------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59517From NUM
: PUNCT
bobm@Ingres NOUN
. PUNCT
COM PROPN
( PUNCT
Bob PROPN
McQueer)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EarwaxIn PROPN
< X
faUk03m6d0Kq00@amdahl.uts.amdahl.com X
> X
, PUNCT
	 SPACE
dated VERB
29 NUM
Apr PROPN
93 NUM
15:43:10 NUM
GMT PROPN
, PUNCT
	 SPACE
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister PROPN
) PUNCT
writes VERB
: PUNCT
> X
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
What PRON
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leave VERB
> X
> X
it PRON
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
out ADP
> X
> X
every DET
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage NOUN
your PRON
eardrums NOUN
? PUNCT
> X
> X
Are AUX
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked VERB
? PUNCT
> X
> X
Assuming VERB
that SCONJ
the DET
wax NOUN
is AUX
causing VERB
hearing NOUN
loss NOUN
, PUNCT
congestion NOUN
or CCONJ
popping VERB
> X
in ADP
the DET
ears NOUN
, PUNCT
you PRON
can AUX
try VERB
some DET
cautious ADJ
tepid ADJ
water NOUN
irrigation NOUN
with ADP
a DET
> X
bulb NOUN
syringe NOUN
, PUNCT
but CCONJ
it PRON
is AUX
awkward ADJ
to PART
do AUX
for ADP
oneself PRON
and CCONJ
may AUX
not PART
work VERB
or CCONJ
> X
may AUX
even ADV
make VERB
things NOUN
worse ADJ
. PUNCT
  SPACE
( PUNCT
My PRON
wife NOUN
would AUX
disagree VERB
, PUNCT
she PRON
does AUX
it PRON
> X
successfully ADV
every DET
six NUM
months NOUN
or CCONJ
so ADV
. PUNCT
) PUNCT
  SPACE
In ADP
any DET
case NOUN
DO VERB
NOT ADV
ATTEMPT PROPN
> X
ANYTHING NOUN
WITH ADP
Q PROPN
- PUNCT
TIPS!!!I'll NOUN
agree VERB
with ADP
your PRON
wife NOUN
. PUNCT
  SPACE
While SCONJ
I PRON
was AUX
a DET
student NOUN
, PUNCT
I PRON
had AUX
doctors NOUN
removerather VERB
surprising ADJ
amounts NOUN
of ADP
wax NOUN
from ADP
my PRON
ears NOUN
by ADP
flushing VERB
them PRON
out ADP
a DET
coupletimes NOUN
, PUNCT
usually ADV
because SCONJ
they PRON
were AUX
examining VERB
my PRON
ears NOUN
for ADP
some DET
other ADJ
reason NOUN
, PUNCT
andsaid VERB
something PRON
like SCONJ
" PUNCT
Gee PROPN
, PUNCT
you PRON
've AUX
got VERB
a DET
lot NOUN
of ADP
wax NOUN
in ADV
there ADV
" PUNCT
. PUNCT
  SPACE
In ADP
my PRON
case NOUN
, PUNCT
removal NOUN
of ADP
these DET
large ADJ
wax NOUN
buildups NOUN
did AUX
noticeably ADV
improve VERB
my PRON
hearing NOUN
, PUNCT
andI've PROPN
since SCONJ
gotten VERB
in ADP
the DET
same ADJ
habit NOUN
as SCONJ
your PRON
wife NOUN
of ADP
flushing VERB
them PRON
out ADP
withwarm NOUN
water NOUN
from ADP
a DET
little ADJ
rubber NOUN
bulb NOUN
every DET
few ADJ
months NOUN
. PUNCT
  SPACE
You PRON
can AUX
buy VERB
littlebulbs NOUN
together ADV
with ADP
ear NOUN
drops NOUN
for ADP
this DET
express ADJ
purpose NOUN
from ADP
the DET
drug NOUN
store NOUN
-I PROPN
do AUX
n't PART
notice VERB
that SCONJ
the DET
drops NOUN
accomplish VERB
much ADJ
of ADP
anything PRON
. PUNCT
One NUM
question NOUN
I PRON
do AUX
have AUX
- PUNCT
a DET
doctor NOUN
who PRON
flushed VERB
out ADP
my PRON
ears NOUN
once SCONJ
also ADV
advocateda VERB
drop NOUN
of ADP
rubbing VERB
alcohol NOUN
in ADP
them PRON
afterwards ADV
to PART
flush VERB
out ADP
any DET
remainingtrapped VERB
water NOUN
- PUNCT
said VERB
he PRON
told VERB
swimmers NOUN
to PART
do AUX
this DET
after ADP
swimming VERB
, PUNCT
too ADV
. PUNCT
  SPACE
Itworks PROPN
, PUNCT
but CCONJ
it PRON
stings VERB
like SCONJ
the DET
devil NOUN
, PUNCT
so CCONJ
I PRON
've AUX
always ADV
been AUX
content ADJ
to PART
let VERB
anywater NOUN
in ADP
my PRON
ears NOUN
from ADP
swimming VERB
or CCONJ
flushing VERB
them PRON
out ADP
figure VERB
out ADP
how ADV
to PART
getout VERB
by ADP
itself PRON
if SCONJ
shaking VERB
my PRON
head NOUN
a DET
few ADJ
times NOUN
wo AUX
n't PART
do AUX
the DET
trick NOUN
. PUNCT
  SPACE
Anycomments?Newsgroup X
: PUNCT
sci.meddocument_id X
: PUNCT
59518From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1rp8p1$2d3@usenet NUM
. PUNCT
INS.CWRU.Edu NUM
> X
, PUNCT
esd3@po PROPN
. PUNCT
CWRU.Edu PROPN
( PUNCT
Elisabeth PROPN
S. PROPN
Davidson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
In ADP
a DET
previous ADJ
article NOUN
, PUNCT
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
) PUNCT
says:>>least PUNCT
a DET
few ADJ
" PUNCT
enlightened VERB
" PUNCT
physicians NOUN
practicing VERB
in ADP
the DET
U.S. PROPN
  SPACE
It PRON
's AUX
really ADV
> X
> X
too ADV
bad ADJ
that SCONJ
most ADJ
U.S. PROPN
medical ADJ
schools NOUN
do AUX
n't PART
cover VERB
nutrition NOUN
because SCONJ
if SCONJ
> X
> X
they PRON
did AUX
, PUNCT
candida PROPN
would AUX
not PART
be AUX
viewed VERB
as SCONJ
a DET
non ADJ
- ADJ
disease NOUN
by ADP
so ADV
many ADJ
in ADP
the DET
> X
> X
medical PROPN
profession NOUN
. PUNCT
> X
> X
Case PROPN
Western PROPN
Reserve PROPN
Med PROPN
School PROPN
teaches VERB
nutrition NOUN
in ADP
its PRON
own ADJ
section NOUN
as SCONJ
> X
well INTJ
as SCONJ
covering VERB
it PRON
in ADP
other ADJ
sections NOUN
as SCONJ
they PRON
apply VERB
( PUNCT
i.e. X
B12 PROPN
> X
deficiency NOUN
in ADP
neuro PROPN
as SCONJ
a DET
cause NOUN
of ADP
neuropathy NOUN
, PUNCT
B12 PROPN
deficiency NOUN
in ADP
> PROPN
hematology PROPN
as SCONJ
a DET
cause NOUN
of ADP
megaloblastic ADJ
anemia NOUN
) PUNCT
, PUNCT
yet CCONJ
I PRON
sill VERB
> X
hold VERB
the DET
viewpoint NOUN
of ADP
mainstream ADJ
medicine NOUN
: PUNCT
  SPACE
candida PROPN
can AUX
cause VERB
> X
mucocutaneous ADJ
candidiasis PROPN
, PUNCT
and CCONJ
, PUNCT
in ADP
already ADV
very ADV
sick ADJ
patients NOUN
> X
with ADP
damaged VERB
immune ADJ
systems NOUN
like SCONJ
AIDS PROPN
and CCONJ
cancer NOUN
patients NOUN
, PUNCT
> X
systemic PROPN
candida PROPN
infection NOUN
. PUNCT
  SPACE
I PRON
think VERB
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
is AUX
> X
a DET
bunch NOUN
of ADP
hooey NOUN
. PUNCT
  SPACE
What PRON
does AUX
this DET
have AUX
to PART
do AUX
with ADP
how ADV
well ADV
> X
nutrition NOUN
is AUX
taught VERB
, PUNCT
anyway?Elisabeth PROPN
, PUNCT
let VERB
's PRON
set VERB
the DET
record NOUN
straight NOUN
for ADP
the DET
nth ADJ
time NOUN
, PUNCT
I PRON
have AUX
not PART
read VERB
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
. PUNCT
  SPACE
So ADV
anything PRON
that PRON
I PRON
say VERB
is AUX
not PART
due ADJ
to ADP
brainwashing VERB
by ADP
this DET
" PUNCT
hated ADJ
" PUNCT
book NOUN
. PUNCT
  SPACE
It PRON
's AUX
okay ADJ
I PRON
guess VERB
to PART
hate VERB
the DET
book NOUN
, PUNCT
by ADP
why ADV
hate VERB
me?Elisabeth PROPN
, PUNCT
I PRON
'm AUX
going VERB
to PART
quote VERB
from ADP
Zinsser PROPN
's PART
Microbiology PROPN
, PUNCT
20th ADJ
Edition NOUN
. PUNCT
A DET
book NOUN
that PRON
you PRON
should AUX
be AUX
familiar ADJ
with ADP
and CCONJ
not PART
" PUNCT
hate VERB
" PUNCT
. PUNCT
" PUNCT
Candida PROPN
species NOUN
colonize VERB
the DET
mucosal ADJ
surfaces NOUN
of ADP
all DET
humans NOUN
during ADP
birth NOUN
or CCONJ
shortly ADV
thereafter ADV
. PUNCT
  SPACE
The DET
risk NOUN
of ADP
endogenous ADJ
infection NOUN
is AUX
clearly ADV
ever ADV
present ADJ
. PUNCT
  SPACE
Indeed ADV
, PUNCT
candidiasis NOUN
occurs VERB
worldwide ADV
and CCONJ
is AUX
the DET
most ADV
common ADJ
systemic ADJ
mycosis NOUN
. PUNCT
" PUNCT
  SPACE
Neutrophils PROPN
play VERB
the DET
main ADJ
role NOUN
in ADP
preventing VERB
a DET
systemic ADJ
infection(candidiasis NOUN
) PUNCT
so ADV
you PRON
would AUX
have AUX
to PART
have AUX
a DET
low ADJ
neutrophil ADJ
count NOUN
or CCONJ
" PUNCT
sick ADJ
" PUNCT
neutrophils NOUN
to PART
see VERB
a DET
systemic ADJ
infection NOUN
. PUNCT
  SPACE
Poor ADJ
diet NOUN
and CCONJ
persistent ADJ
parasitic ADJ
infestation NOUN
set VERB
many ADJ
third ADJ
world NOUN
residents NOUN
up ADP
for ADP
candidiasis NOUN
. PUNCT
Your PRON
assessment NOUN
of ADP
candidiasis NOUN
in ADP
the DET
U.S. PROPN
is AUX
correct ADJ
and CCONJ
I PRON
do AUX
not PART
dispute VERB
it PRON
. PUNCT
What PRON
I PRON
posted VERB
was AUX
a DET
discussion NOUN
of ADP
candida PROPN
blooms NOUN
, PUNCT
without ADP
systemic ADJ
infection NOUN
. PUNCT
  SPACE
These DET
blooms NOUN
would AUX
be AUX
responsible ADJ
for ADP
local ADJ
sites NOUN
of ADP
irritation(GI PROPN
tract NOUN
, PUNCT
mouth PROPN
, PUNCT
vagina PROPN
and CCONJ
sinus NOUN
cavity NOUN
) PUNCT
. PUNCT
  SPACE
Knocking VERB
down ADP
the DET
bacterial ADJ
competition NOUN
for ADP
candida PROPN
was AUX
proposed VERB
as SCONJ
a DET
possible ADJ
trigger NOUN
for ADP
candida PROPN
blooms NOUN
. PUNCT
  SPACE
Let VERB
me PRON
quote VERB
from ADP
Zinsser PROPN
's PART
again ADV
: PUNCT
" PUNCT
However ADV
, PUNCT
some DET
factors NOUN
, PUNCT
such ADJ
as SCONJ
the DET
use NOUN
of ADP
a DET
broad ADJ
- PUNCT
spectrum NOUN
antibacterial ADJ
antibiotic NOUN
, PUNCT
may AUX
predispose VERB
to ADP
both CCONJ
mucosal ADJ
and CCONJ
systemic ADJ
infections NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
was AUX
addressing VERB
mucosal ADJ
infections(I PROPN
like SCONJ
the DET
term NOUN
blooms NOUN
better ADV
) PUNCT
. PUNCT
  SPACE
The DET
nutrition NOUN
course NOUN
that PRON
I PRON
teach VERB
covers VERB
this DET
effect NOUN
of ADP
antibiotic ADJ
treatment NOUN
as ADV
well ADV
as SCONJ
the DET
" PUNCT
cure NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
guess VERB
that SCONJ
your PRON
nutrition NOUN
course NOUN
does AUX
not PART
, PUNCT
too ADV
bad ADJ
. PUNCT
  SPACE
> X
> X
Here ADV
is AUX
a DET
brief ADJ
primer NOUN
on ADP
yeast NOUN
. PUNCT
  SPACE
Yeast NOUN
infections NOUN
, PUNCT
as SCONJ
they PRON
are AUX
commonly ADV
> X
> X
called VERB
, PUNCT
are AUX
not PART
truely ADV
caused VERB
by ADP
yeasts NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
organism NOUN
responsible>>for ADP
this DET
type NOUN
of ADP
infection NOUN
is AUX
Candida PROPN
albicans NOUN
or CCONJ
Monilia PROPN
which PRON
is AUX
actually ADV
a DET
> X
> X
yeast NOUN
- PUNCT
like ADJ
fungus PROPN
. PUNCT
  SPACE
> X
> X
Well INTJ
, PUNCT
maybe ADV
I PRON
'm AUX
getting VERB
picky ADJ
, PUNCT
but CCONJ
I PRON
always ADV
thought VERB
that SCONJ
a DET
yeast NOUN
> X
was AUX
one NUM
form NOUN
that PRON
a DET
fungus NOUN
could AUX
exist VERB
in ADV
, PUNCT
the DET
other ADJ
being AUX
the DET
> X
mold NOUN
form NOUN
. PUNCT
  SPACE
Many ADJ
fungi NOUN
can AUX
occur VERB
as SCONJ
either CCONJ
yeasts NOUN
or CCONJ
molds NOUN
, PUNCT
> X
depending VERB
on ADP
environment NOUN
. PUNCT
  SPACE
Candida PROPN
exibits VERB
what PRON
is AUX
known VERB
as SCONJ
> X
reverse ADJ
dimorphism NOUN
- PUNCT
it PRON
exists VERB
as SCONJ
a DET
mold NOUN
in ADP
the DET
tissues NOUN
> X
but CCONJ
exists VERB
as SCONJ
a DET
yeast NOUN
in ADP
the DET
environment NOUN
. PUNCT
  SPACE
Should AUX
we PRON
maybe ADV
> X
call VERB
it PRON
a DET
mold NOUN
infection NOUN
? PUNCT
  SPACE
a DET
fungus ADJ
infection NOUN
? PUNCT
  SPACE
Maybe ADV
we PRON
> X
should AUX
say VERB
it PRON
is AUX
caused VERB
by ADP
a DET
mold NOUN
- PUNCT
like ADJ
fungus PROPN
. PUNCT
> X
  SPACE
> X
> X
> X
> X
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PUNCT
D.>>Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
Chairman>>Department NOUN
of ADP
Biochemistry PROPN
and CCONJ
Microbiology>>OSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine>>1111 NUM
West PROPN
17th ADJ
St.>>Tulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107 NUM
> X
> X
> X
> X
You PRON
're AUX
the DET
chairman NOUN
of ADP
Biochem PROPN
and CCONJ
Micro PROPN
and CCONJ
you PRON
did AUX
n't PART
know VERB
> X
that SCONJ
a DET
yeast NOUN
is AUX
a DET
form NOUN
of ADP
a DET
fungus NOUN
? PUNCT
  SPACE
( PUNCT
shudder NOUN
) PUNCT
> X
Or CCONJ
maybe ADV
you PRON
did AUX
know VERB
, PUNCT
and CCONJ
were AUX
oversimplifying?My PROPN
, PUNCT
my PRON
Elisabeth PROPN
, PUNCT
do AUX
I PRON
detect VERB
a DET
little ADJ
of ADP
Steve PROPN
Dyer PROPN
in ADP
you PRON
? PUNCT
  SPACE
If SCONJ
you PRON
noticed VERB
my PRON
faculty NOUN
rank NOUN
, PUNCT
I PRON
'm AUX
a DET
biochemist NOUN
, PUNCT
not PART
a DET
microbiologist NOUN
. PUNCT
Candida PROPN
is AUX
classifed VERB
as SCONJ
a DET
fungus(according NOUN
to ADP
Zinsser PROPN
's PART
) PUNCT
. PUNCT
  SPACE
But CCONJ
, PUNCT
as SCONJ
you PRON
point VERB
out ADP
, PUNCT
it PRON
displays VERB
dimorphism NOUN
. PUNCT
  SPACE
It PRON
is AUX
capable ADJ
of ADP
producing VERB
yeast NOUN
cells NOUN
, PUNCT
pseudohyphae ADJ
and CCONJ
true ADJ
hyphae NOUN
. PUNCT
  SPACE
Elisabeth PROPN
, PUNCT
you PRON
are AUX
probably ADV
a DET
microbiologist NOUN
and CCONJ
that DET
makes VERB
a DET
lot NOUN
of ADP
sense NOUN
to ADP
you PRON
. PUNCT
  SPACE
To ADP
a DET
biochemist NOUN
, PUNCT
it PRON
's AUX
a DET
lot NOUN
of ADP
Greek PROPN
. PUNCT
  SPACE
So ADV
I PRON
called VERB
it PRON
a DET
yeast NOUN
- PUNCT
like ADJ
fungus NOUN
, PUNCT
go VERB
ahead ADV
and CCONJ
crucify VERB
me PRON
. PUNCT
You PRON
know VERB
Elisabeth PROPN
, PUNCT
I PRON
still ADV
have AUX
n't PART
been AUX
able ADJ
to PART
figure VERB
out ADP
why ADV
such DET
a DET
small ADJ
little ADJ
organism NOUN
like SCONJ
Candida PROPN
can AUX
bring VERB
out ADP
so ADV
much ADJ
hostility NOUN
in ADP
people NOUN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
  SPACE
And CCONJ
I PRON
must AUX
admitt VERB
that SCONJ
I PRON
got VERB
sucked VERB
into ADP
the DET
mud NOUN
slinging VERB
too ADV
. PUNCT
I PRON
keep VERB
hoping VERB
that SCONJ
if SCONJ
people NOUN
will AUX
just ADV
take VERB
the DET
time NOUN
to PART
think VERB
about ADP
what PRON
I PRON
've AUX
said VERB
, PUNCT
that SCONJ
it PRON
will AUX
make VERB
sense NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
asking VERB
anyone PRON
here ADV
to PART
buy VERB
into ADP
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
book NOUN
because SCONJ
I PRON
do AUX
n't PART
know VERB
what PRON
's AUX
in ADP
that DET
book NOUN
, PUNCT
plain ADJ
and CCONJ
simple ADJ
. PUNCT
And CCONJ
to PART
be AUX
honest ADJ
with ADP
you PRON
, PUNCT
I PRON
'm AUX
beginning VERB
to PART
wish VERB
that SCONJ
it PRON
was AUX
never ADV
written VERB
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59519From NUM
: PUNCT
alan.barclay@almac.co.uk PROPN
( PUNCT
Alan PROPN
Barclay)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
CircumciTO NOUN
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)RO PUNCT
> X
First ADV
off ADV
, PUNCT
use VERB
some DET
decent ADJ
terms NOUN
if SCONJ
ya PRON
do AUX
n't PART
mind VERB
. PUNCT
  SPACE
This DET
is AUX
sci.med VERB
, PUNCT
notRO PROPN
> X
alt.sex.Would INTJ
you PRON
like VERB
to PART
rephrase VERB
that DET
? PUNCT
  SPACE
--- PUNCT
. PUNCT
ATP PROPN
/ SYM
Unix1.40a PROPN
. PUNCT
G'day PROPN
mate NOUN
, PUNCT
throw VERB
another DET
cat NOUN
on ADP
the DET
barbie PROPN
! PUNCT
                                                                                                        SPACE
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59520From NUM
: PUNCT
jhl14@cunixb.cc.columbia.edu PROPN
( PUNCT
Jonathan PROPN
H. PROPN
Lin)Subject ADV
: PUNCT
atrial ADJ
natriuretic ADJ
factorANP CCONJ
is AUX
secreted VERB
by ADP
the DET
atria NOUN
in ADP
response NOUN
to ADP
increases NOUN
in ADP
fluid ADJ
volumeand NOUN
acts NOUN
to PART
facilitate VERB
sodium NOUN
and CCONJ
water NOUN
excretion NOUN
from ADP
the DET
kidneys NOUN
. PUNCT
Can AUX
someone PRON
tell VERB
me PRON
the DET
molecular ADJ
mechanism NOUN
by ADP
which PRON
this DET
is AUX
done?Please NOUN
email VERB
your PRON
responseThanks------------------------------------------------------------------------------- NOUN
                                   SPACE
Po'g PROPN
Mo PROPN
Thon PROPN
                              SPACE
-------------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59521From NUM
: PUNCT
Lauger@ssdgwy.mdc.com PROPN
( PUNCT
John PROPN
Lauger)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)In NUM
article NOUN
< X
5531@cruzio.santa-cruz.ca.us NUM
> X
, PUNCT
roxannen@cruzio.santa-cruz.ca.uswrote VERB
: PUNCT
> X
> X
I PRON
recently ADV
heard VERB
of ADP
some DET
testing NOUN
of ADP
a DET
new ADJ
migraine ADJ
drug NOUN
called VERB
sumatripton PROPN
> PUNCT
( PUNCT
I PRON
have AUX
no DET
idea NOUN
of ADP
the DET
actual ADJ
spelling NOUN
) PUNCT
that PRON
supposedly ADV
utilizes VERB
a DET
chemical NOUN
> X
that PRON
trips VERB
neuro PROPN
- PUNCT
transmitters PROPN
. PUNCT
  SPACE
My PRON
mother NOUN
has AUX
regular ADJ
migraines NOUN
and CCONJ
nothing PRON
> NOUN
seems VERB
to PART
help VERB
- PUNCT
does AUX
anyone PRON
know VERB
anything PRON
about ADP
this DET
new ADJ
drug NOUN
? PUNCT
  SPACE
Is AUX
it PRON
in ADP
> X
a DET
testing NOUN
phaze NOUN
or CCONJ
anywhere ADV
near ADJ
approval NOUN
? PUNCT
  SPACE
Does AUX
it PRON
seem VERB
to PART
be AUX
working VERB
? PUNCT
> X
My PRON
girlfriend NOUN
just ADV
started VERB
taking VERB
this DET
drug NOUN
for ADP
her PRON
migranes NOUN
. PUNCT
  SPACE
It PRON
reallyhelped VERB
her PRON
get AUX
through ADP
the DET
rebound PROPN
withdrawl NOUN
when ADV
she PRON
got VERB
off ADP
analgesics NOUN
. PUNCT
She PRON
does AUX
n't PART
have AUX
a DET
mail NOUN
account NOUN
, PUNCT
but CCONJ
asked VERB
me PRON
to ADP
forward ADV
this:"Glaxo PROPN
is AUX
the DET
distributor NOUN
; PUNCT
Imitrex PROPN
is AUX
the DET
drug NOUN
's PART
brand NOUN
name NOUN
. PUNCT
  SPACE
It PRON
works VERB
. PUNCT
She PRON
can AUX
call VERB
her PRON
pharmacy NOUN
for ADP
more ADJ
info NOUN
. PUNCT
The DET
" PUNCT
miracle NOUN
" PUNCT
drug NOUN
has AUX
been AUX
usedfor ADP
years NOUN
in ADP
Europe PROPN
and CCONJ
for ADP
some DET
time NOUN
in ADP
Canada PROPN
. PUNCT
  SPACE
Trials NOUN
in ADP
the DET
U.S. PROPN
werecompleted VERB
and CCONJ
the DET
drug NOUN
hit VERB
the DET
US PROPN
market NOUN
at ADP
the DET
end NOUN
of ADP
March PROPN
. PUNCT
  SPACE
Somepharmacies NOUN
do AUX
n't PART
stock VERB
it PRON
yet ADV
. PUNCT
  SPACE
Presently ADV
it PRON
needs VERB
to PART
be AUX
injectedsubcutaneously ADV
; PUNCT
although SCONJ
testing NOUN
is AUX
starting VERB
with ADP
a DET
nasal ADJ
spray NOUN
form NOUN
. PUNCT
  SPACE
Itmimics PROPN
serotonin ADV
( PUNCT
its PRON
molecular ADJ
structure NOUN
that PRON
fits VERB
onto ADP
pain NOUN
receptorslooks NOUN
identical ADJ
to PART
serotonin VERB
on ADP
a DET
model NOUN
I PRON
saw)"Opinions NOUN
are AUX
mine PRON
or CCONJ
others NOUN
but CCONJ
definately ADV
not PART
MDA's!Lauger@ssdgwy.mdc.comMcDonnell PROPN
Douglas PROPN
Aerospace PROPN
, PUNCT
Huntington PROPN
Beach PROPN
, PUNCT
California PROPN
, PUNCT
USANewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59522From NUM
: PUNCT
mcelwre@cnsvax.uwec.eduSubject NOUN
: PUNCT
BIOLOGICAL PROPN
ALCHEMY PROPN
                                        SPACE
BIOLOGICAL PROPN
ALCHEMY PROPN
                                                  SPACE
( PUNCT
ANOTHER DET
Form NOUN
of ADP
COLD PROPN
FUSION NOUN
) PUNCT
               SPACE
( PUNCT
ALTERNATIVE PROPN
Heavy PROPN
Element PROPN
Creation PROPN
in ADP
Universe PROPN
) PUNCT
                SPACE
A DET
very ADV
simple ADJ
experiment NOUN
can AUX
demonstrate VERB
( PUNCT
PROVE VERB
) PUNCT
the DET
           SPACE
FACT NOUN
of ADP
" PUNCT
BIOLOGICAL PROPN
TRANSMUTATIONS PROPN
" PUNCT
( PUNCT
reactions NOUN
like SCONJ
Mg PROPN
+ INTJ
O INTJ
           SPACE
-- PUNCT
> X
Ca AUX
, PUNCT
Si PROPN
+ CCONJ
C PROPN
-- PUNCT
> X
Ca AUX
, PUNCT
K NOUN
+ CCONJ
H NOUN
-- PUNCT
> X
Ca NOUN
, PUNCT
N2 PROPN
-- PUNCT
> X
CO PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
as SCONJ
           SPACE
described VERB
in ADP
the DET
BOOK PROPN
" PUNCT
Biological PROPN
Transmutations PROPN
" PUNCT
by ADP
Louis PROPN
           SPACE
Kervran PROPN
, PUNCT
[ PUNCT
1972 NUM
Edition NOUN
is AUX
BEST PROPN
. PUNCT
] PUNCT
, PUNCT
and CCONJ
in ADP
Chapter NOUN
17 NUM
of ADP
the DET
           SPACE
book NOUN
" PUNCT
THE DET
SECRET PROPN
LIFE PROPN
OF ADP
PLANTS NOUN
" PUNCT
by ADP
Peter PROPN
Tompkins PROPN
and CCONJ
           SPACE
Christopher PROPN
Bird PROPN
, PUNCT
1973 NUM
: PUNCT
                SPACE
( PUNCT
1 X
) PUNCT
Obtain VERB
a DET
good ADJ
sample NOUN
of ADP
plant NOUN
seeds NOUN
, PUNCT
all DET
of ADP
the DET
same ADJ
                    SPACE
kind NOUN
. PUNCT
  SPACE
[ PUNCT
Some DET
kinds NOUN
might AUX
work VERB
better ADV
that SCONJ
others NOUN
. PUNCT
] PUNCT
               SPACE
( PUNCT
2 NUM
) PUNCT
Divide VERB
the DET
sample NOUN
into ADP
two NUM
groups NOUN
of ADP
equal ADJ
weight NOUN
                    SPACE
and CCONJ
number NOUN
. PUNCT
               SPACE
( PUNCT
3 NUM
) PUNCT
Sprout VERB
one NUM
group NOUN
in ADP
distilled ADJ
water NOUN
on ADP
filter NOUN
paper NOUN
                    SPACE
for ADP
three NUM
or CCONJ
four NUM
weeks NOUN
. PUNCT
               SPACE
( PUNCT
4 NUM
) PUNCT
Separately ADV
incinerate VERB
both DET
groups NOUN
. PUNCT
               SPACE
( PUNCT
5 NUM
) PUNCT
Weigh VERB
the DET
residue NOUN
from ADP
each DET
group NOUN
. PUNCT
  SPACE
[ PUNCT
The DET
residue NOUN
of ADP
                    SPACE
the DET
sprouted ADJ
group NOUN
will AUX
usually ADV
weigh VERB
at ADP
least ADJ
                    SPACE
SEVERAL ADJ
PERCENT NOUN
MORE ADJ
than SCONJ
the DET
other ADJ
group NOUN
. PUNCT
] PUNCT
               SPACE
( PUNCT
6 NUM
) PUNCT
Analyze VERB
quantitatively ADV
the DET
residue NOUN
of ADP
each DET
group NOUN
for ADP
                    SPACE
mineral NOUN
content NOUN
. PUNCT
  SPACE
[ PUNCT
Some DET
of ADP
the DET
mineral NOUN
atoms NOUN
of ADP
the DET
                    SPACE
sprouted VERB
group NOUN
have AUX
been AUX
TRANSMUTED VERB
into ADP
heavier ADJ
                    SPACE
mineral NOUN
elements NOUN
by ADP
FUSING NOUN
with ADP
atoms NOUN
of ADP
oxygen NOUN
, PUNCT
                    SPACE
hydrogen NOUN
, PUNCT
carbon NOUN
, PUNCT
nitrogen NOUN
, PUNCT
etc X
.. PUNCT
] PUNCT
                         SPACE
BIOLOGICAL PROPN
TRANSMUTATIONS NOUN
occur VERB
ROUTINELY PROPN
, PUNCT
even ADV
in ADP
our PRON
           SPACE
own ADJ
bodies NOUN
. PUNCT
                          SPACE
Ingesting VERB
a DET
source NOUN
of ADP
organic ADJ
silicon NOUN
( PUNCT
silicon NOUN
with ADP
           SPACE
carbon NOUN
, PUNCT
such ADJ
as SCONJ
" PUNCT
horsetail NOUN
" PUNCT
extract NOUN
, PUNCT
or CCONJ
radishes NOUN
) PUNCT
can AUX
SPEED PROPN
           SPACE
HEALING PROPN
OF ADP
BROKEN PROPN
BONES NOUN
via ADP
the DET
reaction NOUN
Si PROPN
+ CCONJ
C PROPN
-- PUNCT
> X
Ca NOUN
, PUNCT
( PUNCT
much ADJ
           SPACE
faster ADV
than SCONJ
by ADP
merely ADV
ingesting VERB
the DET
calcium NOUN
directly ADV
) PUNCT
. PUNCT
                           SPACE
Some DET
MINERAL NOUN
DEPOSITS NOUN
in ADP
the DET
ground NOUN
are AUX
formed VERB
by ADP
micro- PROPN
          SPACE
organisms PROPN
FUSING PROPN
together ADV
atoms NOUN
of ADP
silicon NOUN
, PUNCT
carbon NOUN
, PUNCT
nitrogen PROPN
, PUNCT
           SPACE
oxygen NOUN
, PUNCT
hydrogen NOUN
, PUNCT
etc X
.. PUNCT
                          SPACE
The DET
two NUM
reactions NOUN
Si PROPN
+ CCONJ
C NOUN
< X
-- PUNCT
> X
Ca AUX
, PUNCT
by ADP
micro NOUN
- NOUN
organisms PROPN
, PUNCT
           SPACE
cause SCONJ
" PUNCT
STONE PROPN
SICKNESS NOUN
" PUNCT
in ADP
statues NOUN
, PUNCT
building VERB
bricks NOUN
, PUNCT
etc X
.. PUNCT
                           SPACE
The DET
reaction NOUN
N2 PROPN
-- PUNCT
> X
CO PROPN
, PUNCT
catalysed VERB
by ADP
very ADV
hot ADJ
iron NOUN
, PUNCT
           SPACE
creates VERB
a DET
CARBON NOUN
- PUNCT
MONOXIDE NOUN
POISON NOUN
HAZARD NOUN
for ADP
welder PROPN
operators NOUN
           SPACE
and CCONJ
people NOUN
near SCONJ
woodstoves NOUN
( PUNCT
even ADV
properly ADV
sealed VERB
ones NOUN
) PUNCT
. PUNCT
                          SPACE
Some DET
bacteria NOUN
can AUX
even ADV
NEUTRALIZE PROPN
RADIOACTIVITY PROPN
! PUNCT
                          SPACE
ALL DET
OF ADP
THESE DET
THINGS NOUN
AND CCONJ
MORE ADJ
HAPPEN PROPN
, PUNCT
IN ADP
SPITE NOUN
OF ADP
the DET
           SPACE
currently ADV
accepted VERB
" PUNCT
laws NOUN
" PUNCT
of ADP
physics NOUN
, PUNCT
( PUNCT
including VERB
the DET
law NOUN
           SPACE
which PRON
says VERB
that SCONJ
atomic ADJ
fusion NOUN
requires VERB
EXTREMELY PROPN
HIGH PROPN
           SPACE
temperatures NOUN
and CCONJ
pressures NOUN
. PUNCT
) PUNCT
           SPACE
" PUNCT
BIOLOGICAL PROPN
TRANSMUTATIONS PROPN
, PUNCT
And CCONJ
Their PRON
Applications NOUN
In ADP
                SPACE
CHEMISTRY PROPN
, PUNCT
PHYSICS PROPN
, PUNCT
BIOLOGY PROPN
, PUNCT
ECOLOGY PROPN
, PUNCT
MEDICINE PROPN
, PUNCT
                SPACE
NUTRITION PROPN
, PUNCT
AGRIGULTURE PROPN
, PUNCT
GEOLOGY PROPN
" PUNCT
, PUNCT
           SPACE
1st PROPN
Edition PROPN
, PUNCT
           SPACE
by ADP
C. PROPN
Louis PROPN
Kervran PROPN
, PUNCT
Active PROPN
Member PROPN
of ADP
New PROPN
York PROPN
Academy PROPN
of ADP
                SPACE
Science PROPN
, PUNCT
           SPACE
1972 NUM
, PUNCT
           SPACE
163 NUM
Pages PROPN
, PUNCT
Illustrated PROPN
, PUNCT
           SPACE
Swan PROPN
House PROPN
Publishing PROPN
Co. PROPN
, PUNCT
               SPACE
P.O. PROPN
Box PROPN
638 NUM
, PUNCT
                SPACE
Binghamton PROPN
, PUNCT
NY PROPN
  SPACE
13902 NUM
                     SPACE
" PUNCT
THE DET
SECRET PROPN
LIFE PROPN
OF ADP
PLANTS PROPN
" PUNCT
, PUNCT
           SPACE
by ADP
Peter PROPN
Tompkins PROPN
and CCONJ
Christopher PROPN
Bird PROPN
, PUNCT
           SPACE
1973 NUM
, PUNCT
           SPACE
402 NUM
Pages PROPN
, PUNCT
           SPACE
Harper PROPN
& CCONJ
Row PROPN
, PUNCT
                SPACE
New PROPN
York PROPN
          SPACE
[ PUNCT
Chapters PROPN
19 NUM
and CCONJ
20 NUM
are AUX
about ADP
" PUNCT
RADIONICS PROPN
" PUNCT
. PUNCT
  SPACE
Entire ADJ
book NOUN
is AUX
                SPACE
FASCINATING PROPN
! PUNCT
] PUNCT
                         SPACE
For ADP
more ADJ
information NOUN
, PUNCT
answers NOUN
to ADP
your PRON
questions NOUN
, PUNCT
etc X
. PROPN
, PUNCT
           SPACE
please INTJ
consult VERB
my PRON
CITED VERB
SOURCES PROPN
( PUNCT
the DET
two NUM
books NOUN
) PUNCT
. PUNCT
                SPACE
UN PROPN
- PUNCT
altered VERB
REPRODUCTION NOUN
and CCONJ
DISSEMINATION NOUN
of ADP
this DET
           SPACE
IMPORTANT PROPN
Information PROPN
is AUX
ENCOURAGED PROPN
. PUNCT
                                    SPACE
Robert PROPN
E. PROPN
McElwaine PROPN
                                   SPACE
B.S. PROPN
, PUNCT
Physics PROPN
and CCONJ
Astronomy PROPN
, PUNCT
UW PROPN
- PUNCT
ECNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59523From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)It PROPN
just ADV
received VERB
FDA PROPN
approval NOUN
a DET
few ADJ
months NOUN
ago ADV
. PUNCT
I PRON
have AUX
aprescription NOUN
which PRON
I PRON
have AUX
n't PART
had VERB
to PART
use VERB
yet ADV
. PUNCT
I PRON
believe VERB
thecompany ADJ
[ PUNCT
Glaxol PROPN
] PUNCT
is AUX
developing VERB
an DET
oral ADJ
form NOUN
. PUNCT
At ADP
this DET
stage NOUN
, PUNCT
onemust ADV
inject VERB
the DET
drug NOUN
into ADP
one NOUN
's PART
muscle NOUN
. PUNCT
The DET
doctor NOUN
said VERB
thatwithin ADV
30 NUM
minutes NOUN
, PUNCT
the DET
migraine NOUN
is AUX
gone VERB
for ADP
good ADJ
! PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59524From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?I PROPN
cured VERB
mine NOUN
with ADP
Bag PROPN
Balm PROPN
which PRON
I PRON
bought VERB
at ADP
the DET
local ADJ
farmsupply NOUN
store NOUN
. PUNCT
It PRON
is AUX
relatively ADV
cheap ADJ
and CCONJ
works VERB
in ADP
a DET
few ADJ
days NOUN
. PUNCT
The DET
product NOUN
was AUX
developed VERB
to PART
treat VERB
sore ADJ
udders NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59525From NUM
: PUNCT
joshm@yang.earlham.eduSubject PROPN
: PUNCT
Re ADP
: PUNCT
Vasectomy NOUN
: PUNCT
Health PROPN
Effects PROPN
on ADP
Women?In NUM
article NOUN
< X
1993Apr27.110440.5069@nic.csu.net NUM
> X
, PUNCT
eskagerb@nermal.santarosa.edu PROPN
( PUNCT
Eric PROPN
Skagerberg PROPN
) PUNCT
writes VERB
: PUNCT
> X
Does AUX
anyone PRON
know VERB
of ADP
any DET
studies NOUN
done VERB
on ADP
the DET
long ADJ
- PUNCT
term NOUN
health NOUN
effects NOUN
of ADP
a DET
> X
man NOUN
's PART
vasectomy NOUN
on ADP
his PRON
female ADJ
partner NOUN
? PUNCT
> X
> X
I PRON
've AUX
seen VERB
plenty NOUN
of ADP
study NOUN
results NOUN
about ADP
vasectomy PROPN
's PART
effects NOUN
on ADP
men NOUN
's PART
health NOUN
, PUNCT
> X
but CCONJ
what PRON
about ADP
women NOUN
? PUNCT
> X
> X
For ADP
example NOUN
, PUNCT
might AUX
the DET
wife NOUN
of ADP
a DET
vasectomized VERB
man NOUN
become VERB
more ADV
at ADP
risk NOUN
for ADP
, PUNCT
> X
say VERB
, PUNCT
cervical ADJ
cancer NOUN
? PUNCT
  SPACE
Adverse ADJ
effects NOUN
from ADP
sperm NOUN
antibodies NOUN
? PUNCT
  SPACE
Changes NOUN
in ADP
the DET
> X
vagina PROPN
's PART
pH NOUN
? PUNCT
  SPACE
Yeast NOUN
or CCONJ
bacterial ADJ
infections NOUN
? PUNCT
> X
> X
Outside ADP
of ADP
study NOUN
results NOUN
, PUNCT
how ADV
about ADP
informed VERB
speculation?I've NOUN
heard VERB
of ADP
NO PROPN
studies NOUN
, PUNCT
but CCONJ
speculation NOUN
: PUNCT
Why ADV
on ADP
_ DET
earth NOUN
_ PROPN
would AUX
there PRON
be AUX
any DET
effect NOUN
on ADP
women NOUN
's PART
health NOUN
? PUNCT
  SPACE
That DET
's AUX
about ADP
the DET
most ADV
absurd ADJ
idea NOUN
I PRON
've AUX
heard VERB
since SCONJ
Ted PROPN
Kaldis PROPN
's PART
claim NOUN
that SCONJ
no DET
more ADJ
than SCONJ
35,000 NUM
people NOUN
would AUX
march VERB
on ADP
Washington PROPN
. PUNCT
Ok INTJ
, PUNCT
_ DET
one PRON
_ PROPN
point NOUN
: PUNCT
  SPACE
Greatly ADV
reduced ADJ
chance NOUN
of ADP
pregnancy NOUN
. PUNCT
  SPACE
But CCONJ
that DET
's AUX
it.--JoshNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59526From NUM
: PUNCT
cindy@berkp.uadv.uci.edu PROPN
( PUNCT
Cindy PROPN
Windham)Subject VERB
: PUNCT
What PRON
's AUX
a DET
bone NOUN
scan?My PROPN
mother NOUN
has AUX
been AUX
advised VERB
to PART
have AUX
a DET
bone NOUN
scan NOUN
performed VERB
? PUNCT
  SPACE
What PRON
is AUX
thisprocedure NOUN
for ADP
, PUNCT
and CCONJ
is AUX
it PRON
painful ADJ
? PUNCT
  SPACE
She PRON
's AUX
been AUX
having VERB
leg NOUN
and CCONJ
back ADV
painwhich NOUN
her PRON
GP PROPN
said VERB
was AUX
sciatica PROPN
. PUNCT
  SPACE
Her PRON
oncologist NOUN
listened VERB
to ADP
her PRON
symptomsand NOUN
said VERB
that SCONJ
it PRON
did AUX
n't PART
sound VERB
like SCONJ
sciatica PROPN
, PUNCT
and CCONJ
she PRON
should AUX
get AUX
a DET
bonescan NOUN
. PUNCT
  SPACE
- PUNCT
Cindy PROPN
W.Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59527From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
banschbach@vms.ocom.okstate.edu PROPN
writes:> PROPN
... PUNCT
I'm PRON
not PART
asking VERB
anyone PRON
here ADV
to PART
buy VERB
into ADP
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
book NOUN
> X
because SCONJ
I PRON
do AUX
n't PART
know VERB
what PRON
's AUX
in ADP
that DET
book NOUN
, PUNCT
plain ADJ
and CCONJ
simple ADJ
. PUNCT
And CCONJ
to PART
be AUX
honest ADJ
> X
with ADP
you PRON
, PUNCT
I PRON
'm AUX
beginning VERB
to PART
wish VERB
that SCONJ
it PRON
was AUX
never ADV
written VERB
. PUNCT
I PRON
agree VERB
with ADP
this DET
consensus NOUN
that SCONJ
it PRON
should AUX
not PART
have AUX
been AUX
written VERB
the DET
wayit NOUN
was AUX
. PUNCT
  SPACE
My PRON
doctor NOUN
- PUNCT
who PRON
claims VERB
to PART
have AUX
introduced VERB
Dr. PROPN
Crook PROPN
to ADP
thepossibility NOUN
of ADP
candida PROPN
overbloom PROPN
causing VERB
diffuse NOUN
symptoms NOUN
way ADV
back ADV
in1961 INTJ
( PUNCT
I PRON
have AUX
no DET
reason NOUN
to PART
doubt VERB
him PRON
on ADP
this DET
) PUNCT
- PUNCT
does AUX
not PART
like VERB
the DET
bookbecause NOUN
1 NUM
) PUNCT
it PRON
makes VERB
too ADV
many ADJ
unfounded ADJ
claims NOUN
, PUNCT
and CCONJ
2 X
) PUNCT
is AUX
horribly ADV
writtenfrom ADP
a DET
scientific ADJ
viewpoint NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
my PRON
doctor NOUN
has AUX
always ADV
keptan PROPN
open ADJ
mind NOUN
on ADP
the DET
subject NOUN
and CCONJ
does AUX
believe VERB
in ADP
aspects NOUN
of ADP
the DET
" PUNCT
yeastconnection" NOUN
. PUNCT
But CCONJ
, PUNCT
I PRON
believe VERB
there PRON
is AUX
some DET
truth NOUN
to ADP
the DET
book NOUN
. PUNCT
  SPACE
Hopefully ADV
the DET
rightclinical ADJ
studies NOUN
can AUX
be AUX
done VERB
to PART
separate VERB
the DET
fact NOUN
from ADP
the DET
fiction NOUN
. PUNCT
  SPACE
Inthe DET
meantime NOUN
, PUNCT
I PRON
'd AUX
still ADV
encourage VERB
people NOUN
who PRON
have AUX
" PUNCT
incurable ADJ
" PUNCT
chronic NOUN
sinusproblems NOUN
( PUNCT
especially ADV
if SCONJ
they PRON
overused VERB
antibiotics NOUN
) PUNCT
, PUNCT
to PART
find VERB
a DET
doctor NOUN
toadminister ADP
a DET
systemic ADJ
- PUNCT
type NOUN
anti ADJ
- ADJ
fungal ADJ
such ADJ
as SCONJ
itraconazole NOUN
( PUNCT
along ADP
withliver PROPN
panels NOUN
before ADV
, PUNCT
during ADP
and CCONJ
after ADP
treatment NOUN
just ADV
to PART
play VERB
it PRON
safe ADJ
) PUNCT
. PUNCT
  SPACE
Itis VERB
an DET
empirical ADJ
approach NOUN
for ADP
sure ADJ
, PUNCT
but CCONJ
when ADV
all DET
else ADV
fails VERB
, PUNCT
and CCONJ
your PRON
ENTsays NOUN
" PUNCT
sorry INTJ
, PUNCT
you PRON
'll AUX
just ADV
have AUX
to PART
live VERB
with ADP
it PRON
" PUNCT
, PUNCT
it PRON
is AUX
time NOUN
to PART
step VERB
out ADP
andtry NOUN
an DET
empirical ADJ
approach NOUN
backed VERB
up ADP
with ADP
significant ADJ
anecdotal ADJ
evidence(Dr PROPN
. PUNCT
Ivker PROPN
) PUNCT
, PUNCT
supported VERB
by ADP
plausible ADJ
theories NOUN
( PUNCT
outlined VERB
by ADP
Marty PROPN
) PUNCT
. PUNCT
  SPACE
Atthis DET
stage NOUN
you PRON
have AUX
little ADJ
to PART
lose VERB
, PUNCT
particularly ADV
if SCONJ
you PRON
use VERB
itraconazole NOUN
andhave VERB
the DET
proper ADJ
monitoring NOUN
- PUNCT
the DET
health NOUN
risk NOUN
has AUX
been AUX
shown VERB
through ADP
extensiveclinical ADJ
studies NOUN
both DET
in ADP
Europe PROPN
and CCONJ
the DET
U.S. PROPN
to PART
be AUX
very ADV
minimal ADJ
withrelatively ADV
healthy ADJ
( PUNCT
i.e. X
, PUNCT
non ADJ
- ADJ
AIDS PROPN
) PUNCT
patients NOUN
. PUNCT
  SPACE
I PRON
'm AUX
glad ADJ
I PRON
did AUX
this DET
, PUNCT
since SCONJ
Isaw PROPN
remarkable ADJ
results NOUN
after ADP
only ADV
one NUM
week NOUN
on ADP
Sporanox PROPN
( PUNCT
itraconazole NOUN
) PUNCT
. PUNCT
  SPACE
Ofcourse PROPN
, PUNCT
your PRON
mileage NOUN
may AUX
vary VERB
a DET
lot NOUN
- PUNCT
everyone PRON
is AUX
different ADJ
so SCONJ
it PRON
may AUX
notwork VERB
for ADP
you PRON
. PUNCT
  SPACE
Talk VERB
to ADP
your PRON
doctor NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59528From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu PROPN
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
What PRON
's AUX
a DET
bone NOUN
scan?In PROPN
article NOUN
< X
cindy.349@berkp.uadv.uci.edu NUM
> X
, PUNCT
cindy@berkp.uadv.uci.edu PROPN
( PUNCT
Cindy PROPN
Windham PROPN
) PUNCT
writes VERB
... PUNCT
>My PROPN
mother NOUN
has AUX
been AUX
advised VERB
to PART
have AUX
a DET
bone NOUN
scan NOUN
performed VERB
? PUNCT
  SPACE
What PRON
is AUX
this DET
> X
procedure NOUN
for ADP
, PUNCT
and CCONJ
is AUX
it PRON
painful ADJ
? PUNCT
  SPACE
She PRON
's AUX
been AUX
having VERB
leg NOUN
and CCONJ
back ADJ
pain NOUN
> X
which PRON
her PRON
GP PROPN
said VERB
was AUX
sciatica PROPN
. PUNCT
  SPACE
Her PRON
oncologist NOUN
listened VERB
to ADP
her PRON
symptoms NOUN
> X
and CCONJ
said VERB
that SCONJ
it PRON
did AUX
n't PART
sound VERB
like SCONJ
sciatica PROPN
, PUNCT
and CCONJ
she PRON
should AUX
get AUX
a DET
bone NOUN
> X
scan NOUN
. PUNCT
Do AUX
I PRON
assume VERB
correctly ADV
from ADP
the DET
above ADJ
aricle NOUN
that SCONJ
your PRON
mother NOUN
has AUX
a DET
historyyof NOUN
cancer NOUN
? PUNCT
  SPACE
I PRON
was AUX
just ADV
wondeing VERB
, PUNCT
since SCONJ
you PRON
mentioned VERB
thhat ADP
she PRON
has AUX
anoncologist NOUN
. PUNCT
A DET
bone NOUN
scan NOUN
is AUX
a DET
nuclear ADJ
scan NOUN
. PUNCT
  SPACE
Thperson PROPN
receivving VERB
the DET
scan PROPN
is AUX
gven VERB
adose NOUN
of ADP
a DET
radioactive ADJ
tracer NOUN
, PUNCT
and CCONJ
an DET
imaging VERB
device NOUN
is AUX
used VERB
to PART
track VERB
thedistribution NOUN
of ADP
the DET
tracer NOUN
wwithin VERB
the DET
body NOUN
. PUNCT
  SPACE
The DET
tracer NOUN
is AUX
usually ADV
givenintravenously ADV
. PUNCT
  SPACE
( PUNCT
IV PROPN
) PUNCT
This DET
means VERB
that SCONJ
the DET
physician NOUN
or CCONJ
his PRON
assistant NOUN
willinsert NOUN
a DET
needle NOUN
into ADP
a DET
vein NOUN
and CCONJ
inject NOUN
  SPACE
medicine NOUN
into ADP
the DET
vein NOUN
. PUNCT
After ADP
a DET
few ADJ
minutes NOUN
has AUX
passed VERB
for ADP
the DET
tracer NOUN
to PART
circulate VERB
through ADP
thebody NOUN
, PUNCT
the DET
person NOUN
is AUX
scanned VERB
with ADP
an DET
imaging VERB
device NOUN
to PART
detect VERB
high ADJ
concentrations NOUN
of ADP
the DET
tracer NOUN
. PUNCT
  SPACE
The DET
radiologist NOUN
or CCONJ
doctor NOUN
is AUX
looking VERB
forareas NOUN
that PRON
take VERB
up ADP
more ADJ
of ADP
the DET
radioactive ADJ
tracer NOUN
or CCONJ
less ADJ
of ADP
it PRON
. PUNCT
As ADV
far ADV
as SCONJ
pain NOUN
, PUNCT
the DET
only ADJ
pain NOUN
comes VERB
from ADP
the DET
needle NOUN
stick NOUN
that PRON
is AUX
requiredto PROPN
start VERB
the DET
IV PROPN
line NOUN
. PUNCT
What PRON
the DET
doctor NOUN
is AUX
probably ADV
looking VERB
for ADP
are AUX
changes NOUN
in ADP
the DET
bones NOUN
that PRON
mayhave VERB
resulted VERB
from ADP
cancer NOUN
. PUNCT
  SPACE
This DET
is AUX
also ADV
why ADV
I PRON
was AUX
wondering VERB
if SCONJ
your PRON
motherhas NOUN
had AUX
cancer NOUN
, PUNCT
since SCONJ
cancer NOUN
can AUX
spread VERB
from ADP
one NUM
site NOUN
and CCONJ
wind NOUN
up ADP
in ADP
theskeletal ADJ
system NOUN
. PUNCT
I PRON
hope VERB
I PRON
have AUX
answered VERB
some DET
of ADP
your PRON
questions NOUN
. PUNCT
  SPACE
Feel VERB
free ADJ
to ADP
e NOUN
- NOUN
mail VERB
me PRON
ifyou NOUN
have AUX
more ADJ
questions NOUN
related VERB
to ADP
the DET
bone NOUN
scan NOUN
or CCONJ
anything PRON
else ADV
relatedto VERB
your PRON
mother NOUN
's PART
care NOUN
. PUNCT
  SPACE
I PRON
'm AUX
a DET
newly ADV
graduated VERB
nurse NOUN
, PUNCT
and CCONJ
I PRON
enjoy VERB
sharinginformation NOUN
with ADP
other ADJ
people NOUN
to PART
help VERB
them PRON
understand VERB
things NOUN
that PRON
they PRON
didnot ADV
know VERB
about ADP
before ADV
. PUNCT
My PRON
thoughts NOUN
are AUX
with ADP
you PRON
both DET
. PUNCT
Elisa PROPN
B. PROPN
Hanson PROPN
   SPACE
( PUNCT
picl25@fsphy1.physics.fsu.edu)"The NUM
chief ADJ
function NOUN
of ADP
the DET
body NOUN
is AUX
to PART
carry VERB
the DET
head NOUN
around ADV
. PUNCT
" PUNCT
                                        SPACE
--Albert PUNCT
EinsteinNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59529From NUM
: PUNCT
houle@nmt.edu NUM
( PUNCT
Paul PROPN
Houle)Subject PROPN
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aid NOUN
	 SPACE
For ADP
a DET
very ADV
long ADJ
time NOUN
I PRON
've AUX
had VERB
a DET
problem NOUN
with ADP
feeling NOUN
really ADV
awfulwhen ADV
I PRON
try VERB
to PART
get AUX
up ADP
in ADP
the DET
morning NOUN
. PUNCT
  SPACE
My PRON
sleep NOUN
latency NOUN
at ADP
night NOUN
is AUX
alsopretty PROPN
long ADV
, PUNCT
  SPACE
ranging VERB
from ADP
30 NUM
min NOUN
to ADP
an DET
hour NOUN
. PUNCT
  SPACE
I PRON
get VERB
about ADV
7 NUM
hours NOUN
ofbedtime NOUN
( PUNCT
maybe ADV
6 NUM
of ADP
actual ADJ
sleep NOUN
) PUNCT
a DET
night NOUN
and CCONJ
more ADJ
on ADP
the DET
weekends NOUN
. PUNCT
  SPACE
Iwill PROPN
spend VERB
two NUM
or CCONJ
three NUM
hours NOUN
laying VERB
in ADP
bed NOUN
after ADP
this DET
if SCONJ
I PRON
can AUX
, PUNCT
  SPACE
becauseI PROPN
feel VERB
so ADV
tired ADJ
when ADV
I PRON
wake VERB
up ADP
, PUNCT
  SPACE
even ADV
more ADV
tired ADJ
than SCONJ
I PRON
was AUX
when ADV
Iwent PROPN
to ADP
bed NOUN
, PUNCT
  SPACE
which PRON
is AUX
usually ADV
too ADV
tired ADJ
to ADP
work NOUN
. PUNCT
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
recently ADV
had AUX
a DET
really ADV
bad ADJ
flu NOUN
, PUNCT
  SPACE
so ADV
I PRON
called VERB
a DET
friend NOUN
toget VERB
me PRON
some DET
cough NOUN
syrup NOUN
with ADP
both CCONJ
an DET
expectorant ADJ
and CCONJ
a DET
nasal NOUN
decongestant;but CCONJ
he PRON
got VERB
Vicks NOUN
formula NOUN
44 NUM
M NOUN
which PRON
has AUX
everything PRON
but SCONJ
an DET
expectorant NOUN
. PUNCT
  SPACE
SoI PROPN
used VERB
that SCONJ
anyway ADV
, PUNCT
  SPACE
and CCONJ
the DET
three NUM
nights NOUN
I PRON
used VERB
it PRON
, PUNCT
  SPACE
I PRON
fell VERB
asleep ADJ
rapidlyand PROPN
felt VERB
that SCONJ
I PRON
got VERB
really ADV
good ADJ
quality NOUN
sleep NOUN
-- PUNCT
that ADV
is ADV
, PUNCT
  SPACE
I PRON
actuallyfelt VERB
refreshed VERB
the DET
next ADJ
morning NOUN
. PUNCT
	 SPACE
So ADV
, PUNCT
  SPACE
I PRON
am AUX
now ADV
trying VERB
to PART
look VERB
into ADP
, PUNCT
  SPACE
both DET
in ADP
the DET
literature NOUN
andexperimentally ADV
, PUNCT
  SPACE
the DET
use NOUN
of ADP
antihistamines NOUN
as SCONJ
sleep PROPN
aids PROPN
, PUNCT
  SPACE
since SCONJ
I PRON
ampresuming VERB
that SCONJ
it PRON
was AUX
the DET
antihistamine NOUN
that PRON
caused VERB
the DET
effect NOUN
. PUNCT
  SPACE
Theantihistamine PROPN
in ADP
Vicks PROPN
formula NOUN
44 NUM
is AUX
Chloriphenamine ADJ
maleate NOUN
, PUNCT
  SPACE
so ADV
I PRON
boughtsome VERB
generic ADJ
tablets NOUN
of ADP
that DET
, PUNCT
  SPACE
and CCONJ
tried VERB
one NUM
last ADJ
night NOUN
and CCONJ
didn'tnotice PUNCT
any DET
improvement NOUN
. PUNCT
  SPACE
I PRON
might AUX
try VERB
one NUM
with ADP
a DET
little ADJ
alcohol NOUN
( PUNCT
about1 DET
beer NOUN
) PUNCT
to PART
see VERB
if SCONJ
it PRON
is AUX
a DET
synergism NOUN
effect NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
library NOUN
researchseems NOUN
to PART
show VERB
that SCONJ
Benadryl PROPN
is AUX
the DET
antihistamine NOUN
with ADP
the DET
strongestsedative ADJ
effect NOUN
of ADP
what PRON
is AUX
availible ADJ
OTC PROPN
. PUNCT
  SPACE
So ADV
I PRON
might AUX
also ADV
buy VERB
a DET
genericform NOUN
of ADP
that DET
and CCONJ
try VERB
that DET
; PUNCT
  SPACE
the DET
PDR PROPN
seems VERB
to PART
suggest VERB
that SCONJ
50 NUM
mg PROPN
is AUX
a DET
gooddosage NOUN
level NOUN
to PART
try VERB
. PUNCT
	 SPACE
For ADP
other ADJ
medical ADJ
information NOUN
, PUNCT
  SPACE
I PRON
have AUX
allergies NOUN
but CCONJ
rarely ADV
havean ADJ
allergic ADJ
reaction NOUN
living VERB
in ADP
New PROPN
Mexico PROPN
. PUNCT
  SPACE
I PRON
also ADV
have AUX
chronically ADV
dryeyes ADV
, PUNCT
  SPACE
which PRON
get VERB
horrible ADJ
if SCONJ
I PRON
try VERB
to PART
use VERB
most ADV
underarm ADJ
deoderants NOUN
. PUNCT
  SPACE
I PRON
didguess VERB
that SCONJ
my PRON
problem NOUN
might AUX
be AUX
caused VERB
by ADP
hypoglycemia NOUN
, PUNCT
  SPACE
so ADV
I PRON
made VERB
somechanges NOUN
in ADP
my PRON
diet NOUN
consistent NOUN
with ADP
that DET
, PUNCT
  SPACE
and CCONJ
it PRON
did AUX
n't PART
help VERB
, PUNCT
  SPACE
so ADV
Iwent PROPN
back ADV
to ADP
a DET
normal ADJ
diet NOUN
( PUNCT
Pretty ADV
diverse ADJ
, PUNCT
  SPACE
also ADV
taking VERB
vitamin NOUN
supplements NOUN
) PUNCT
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
advice NOUN
for ADP
the DET
use NOUN
ofantihistamines NOUN
as SCONJ
sleep NOUN
aids PROPN
, PUNCT
  SPACE
and CCONJ
if SCONJ
there PRON
are AUX
any DET
dangers NOUN
of ADP
such ADJ
use(Seems PUNCT
safe ADJ
to ADP
me PRON
since SCONJ
they PRON
are AUX
used VERB
chronically ADV
for ADP
allergies NOUN
bymillions NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
want VERB
to PART
try VERB
BZs NOUN
, PUNCT
  SPACE
because SCONJ
BZ PROPN
addiction NOUN
seems VERB
to PART
bea VERB
serious ADJ
threat NOUN
, PUNCT
  SPACE
and CCONJ
from ADP
what PRON
I PRON
hear VERB
, PUNCT
  SPACE
BZ PROPN
sleep NOUN
quality NOUN
is AUX
not PART
good ADJ
, PUNCT
whereas SCONJ
antihistamine ADJ
sleep NOUN
quality NOUN
seems VERB
to PART
be AUX
better ADJ
for ADP
me PRON
. PUNCT
  SPACE
I PRON
havetried VERB
some DET
dietary ADJ
tryptophan ADJ
loading NOUN
stuff NOUN
, PUNCT
  SPACE
and CCONJ
that SCONJ
also ADV
seems VERB
tolower NOUN
sleep NOUN
quality NOUN
, PUNCT
  SPACE
I PRON
seem VERB
to PART
wake VERB
up ADP
around ADV
4:00 NUM
or CCONJ
so ADV
and CCONJ
be AUX
in ADP
somekind NOUN
of ADP
mental ADJ
haze NOUN
until ADP
7:00 NUM
or CCONJ
8:00 NUM
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
I PRON
would AUX
be AUX
interested ADJ
inany ADJ
other ADJ
advice NOUN
for ADP
helping VERB
my PRON
problem NOUN
. PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
've AUX
already ADV
triedmany ADJ
of ADP
the DET
non ADJ
- ADJ
pharmacological ADJ
solutions)Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59530From NUM
: PUNCT
goldstej@bag_end.pad.otc.com.au NOUN
( PUNCT
Johnathon PROPN
Goldstein)Subject PROPN
: PUNCT
Bates NOUN
eye NOUN
- PUNCT
exercisesHave PROPN
I PRON
mailed VERB
this DET
to ADP
the DET
correct ADJ
newsgroup(s PROPN
) PUNCT
? PUNCT
Are AUX
there PRON
other ADJ
newsgroup(s)which NOUN
cover VERB
the DET
following VERB
topic?--------Has NUM
anyone PRON
with ADP
myopia NOUN
( PUNCT
short ADJ
- PUNCT
sightedness NOUN
) PUNCT
ever ADV
done VERB
the DET
Bates PROPN
eye NOUN
- PUNCT
exercises?If NOUN
so ADV
, PUNCT
could AUX
you PRON
please VERB
e NOUN
- NOUN
mail VERB
me PRON
the DET
following VERB
information NOUN
: PUNCT
	 SPACE
- PUNCT
age NOUN
and CCONJ
state NOUN
of ADP
sight NOUN
before ADP
exercises NOUN
were AUX
commenced VERB
; PUNCT
	 SPACE
- PUNCT
type NOUN
, PUNCT
frequency NOUN
, PUNCT
and CCONJ
length NOUN
of ADP
time NOUN
spent VERB
on ADP
exercises NOUN
performed VERB
; PUNCT
	 SPACE
- PUNCT
improvements NOUN
noticed VERB
immediately ADV
after ADP
performing VERB
exercises NOUN
; PUNCT
	 SPACE
- PUNCT
length NOUN
of ADP
period NOUN
before ADP
any DET
improved ADJ
sight NOUN
deteriorates;Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
replies NOUN
. PUNCT
I PRON
'll AUX
summarise VERB
and CCONJ
post VERB
results NOUN
if SCONJ
there'senough NUM
interest NOUN
. PUNCT
- PUNCT
Jonathan PROPN
Goldstein-- NOUN
Jonathan PROPN
Goldstein PROPN
       SPACE
goldstej@nms.otc.com.au NOUN
       SPACE
+61 PROPN
2 NUM
339 NUM
3683Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59531From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
10030@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>:When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident>:in NOUN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having>:sexual NUM
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm>:cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>:Was NOUN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually>:occur?>>Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
for ADP
> X
pregnancy NOUN
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
also ADV
> X
artificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of>"natural PUNCT
" PUNCT
acts VERB
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen PROPN
is AUX
> X
deposited VERB
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that's ADP
> X
about ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talk VERB
> X
to ADP
your PRON
biology NOUN
teacher.>= NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= PUNCT
Well INTJ
, PUNCT
now ADV
, PUNCT
Doc PROPN
, PUNCT
I PRON
sure ADV
would AUX
not PART
want VERB
to PART
bet VERB
my PRON
life NOUN
on ADP
those DET
littlecritters NOUN
not PART
being AUX
able ADJ
to PART
get AUX
thru ADP
one NUM
layer NOUN
of ADP
sweat NOUN
- PUNCT
soaked VERB
cottonon NOUN
their PRON
way NOUN
to PART
do AUX
their PRON
programmed VERB
task NOUN
. PUNCT
  SPACE
Infrequent PROPN
, PUNCT
yes INTJ
, PUNCT
unlikely ADJ
, PUNCT
yes INTJ
, PUNCT
but CCONJ
impossible ADJ
? PUNCT
  SPACE
I PRON
learned VERB
a DET
long ADJ
time NOUN
ago ADV
never ADV
to PART
say VERB
never ADV
inmedicine VERB
   SPACE
< X
g NOUN
> X
                        SPACE
Len PROPN
Howard PROPN
MD PROPN
, PUNCT
FACOGNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59532From NUM
: PUNCT
davec@ecst.csuchico.edu PROPN
( PUNCT
Dave PROPN
Childs)Subject PROPN
: PUNCT
Dental PROPN
Fillings NOUN
questionI PROPN
have AUX
been AUX
hearing VERB
bad ADJ
thing NOUN
about ADP
amalgam PROPN
dental ADJ
fillings NOUN
. PUNCT
  SPACE
Some DET
saythe ADJ
lead/ PROPN
mercury NOUN
leeches NOUN
into ADP
your PRON
system NOUN
and CCONJ
this DET
is AUX
bad ADJ
. PUNCT
  SPACE
And CCONJ
I PRON
haverecently ADV
heard VERB
that SCONJ
there PRON
is AUX
some DET
suspicion NOUN
that SCONJ
the DET
mercury NOUN
is AUX
a DET
breedingground NOUN
for ADP
bacteria NOUN
that PRON
will AUX
be AUX
resistant ADJ
to ADP
antibiotics NOUN
. PUNCT
   SPACE
My PRON
dentist NOUN
wants VERB
to PART
use VERB
an DET
amalgam NOUN
filling VERB
for ADP
me PRON
in ADP
a DET
place NOUN
where ADV
I PRON
havetwo VERB
cavaties NOUN
in ADP
one NUM
tooth NOUN
and CCONJ
wants VERB
to PART
use VERB
one NUM
filling VERB
to PART
cover VERB
both DET
. PUNCT
He PRON
says VERB
that SCONJ
composite ADJ
filling NOUN
do AUX
n't PART
hold VERB
up ADP
well ADV
when ADV
they PRON
are AUX
large ADJ
. PUNCT
So ADV
, PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
are AUX
any DET
other ADJ
choices NOUN
besides SCONJ
amalgamand PROPN
composite PROPN
. PUNCT
  SPACE
And CCONJ
, PUNCT
should AUX
I PRON
really ADV
even ADV
be AUX
worried ADJ
about ADP
amalgam NOUN
? PUNCT
  SPACE
Iheard VERB
that SCONJ
some DET
scandanavian ADJ
country NOUN
does AUX
not PART
even ADV
use VERB
them PRON
any DET
more- NOUN
is AUX
this DET
true ADJ
. PUNCT
Any DET
information NOUN
you PRON
can AUX
give VERB
me PRON
will AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
Thanks!Dave PROPN
ChildsNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59533From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidI'm ADV
interested ADJ
in ADP
this DET
from ADP
the DET
other ADJ
angle NOUN
: PUNCT
what PRON
antihistamine NOUN
can AUX
Itake PROPN
at ADP
bedtime NOUN
for ADP
relief NOUN
of ADP
allergies NOUN
, PUNCT
with ADP
the DET
assurance NOUN
that SCONJ
itssedative ADJ
effect NOUN
will AUX
have AUX
completely ADV
worn VERB
off ADP
by ADP
the DET
next ADJ
morning NOUN
, PUNCT
butpreferably ADV
with ADP
the DET
anti ADJ
- ADJ
allergy ADJ
effect NOUN
lasting VERB
longer?I'm PROPN
thinking NOUN
mainly ADV
of ADP
OTC PROPN
products NOUN
. PUNCT
Which PRON
has AUX
the DET
least ADJ
duration NOUN
ofsedative NOUN
action NOUN
: PUNCT
Benadryl PROPN
, PUNCT
Chlor PROPN
- PUNCT
Trimeton PROPN
, PUNCT
or CCONJ
what?Note NOUN
that SCONJ
I PRON
'm AUX
asking VERB
about ADP
duration NOUN
, PUNCT
not PART
intensity.-- ADV
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59534From NUM
: PUNCT
kcarver@dante.nmsu.edu PROPN
( PUNCT
Kenneth PROPN
Carver)Subject PROPN
: PUNCT
Isolation NOUN
amplifiers NOUN
for ADP
EEG PROPN
/ SYM
ECG NOUN
* PUNCT
cheap*I NOUN
have AUX
several ADJ
isolation NOUN
amplifier NOUN
boards NOUN
that PRON
are AUX
the DET
ideal NOUN
interfacefor ADP
EEG PROPN
and CCONJ
ECG NOUN
. PUNCT
  SPACE
Isolation NOUN
is AUX
essential ADJ
for ADP
safety NOUN
when ADV
connectingline NOUN
- PUNCT
powered VERB
equipment NOUN
to ADP
electrodes NOUN
on ADP
the DET
body NOUN
. PUNCT
  SPACE
These DET
boardsincorporate VERB
the DET
Burr PROPN
- PUNCT
Brown PROPN
3656 NUM
isolation NOUN
module NOUN
that PRON
currently ADV
sellsfor VERB
$ SYM
133 NUM
, PUNCT
plus CCONJ
other ADJ
op NOUN
amps NOUN
to PART
produce VERB
an DET
overall ADJ
voltage NOUN
gain VERB
of350 PROPN
- PUNCT
400 NUM
. PUNCT
  SPACE
They PRON
are AUX
like SCONJ
new ADJ
and CCONJ
guaranteed VERB
good NOUN
. PUNCT
  SPACE
$ SYM
20 NUM
postpaid NOUN
, PUNCT
schematic ADJ
included VERB
. PUNCT
  SPACE
Please INTJ
email VERB
me PRON
for ADP
more ADJ
data.--Ken PROPN
CarverNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59535From NUM
: PUNCT
per-arne.melander@histocel.umu.se NOUN
( PUNCT
Per ADP
- PUNCT
Arne PROPN
Melander)Subject NUM
: PUNCT
HELP NOUN
- PUNCT
purification NOUN
of ADP
neutrophils NOUN
from ADP
mice NOUN
. PUNCT
Hello!I PROPN
need VERB
a DET
technique NOUN
for ADP
separation NOUN
of ADP
polymorphonuclear NOUN
neutrophils NOUN
( PUNCT
PMN)from ADP
the DET
peripheral ADJ
blood NOUN
of ADP
mice NOUN
. PUNCT
Because SCONJ
of ADP
the DET
low ADJ
PMN PROPN
: PUNCT
Lymphocyte PROPN
ratio(approx PROPN
. PROPN
20:80 NUM
) PUNCT
its PRON
not PART
just ADV
as ADV
easy ADJ
as SCONJ
the DET
corresponding ADJ
technique NOUN
usedwith PROPN
human ADJ
blood NOUN
. PUNCT
																																										 SPACE
Yours NOUN
, PUNCT
                                          													  SPACE
Per ADP
- PUNCT
Arne PROPN
MelanderPs NOUN
. PUNCT
My PRON
E NOUN
- NOUN
mail NOUN
address NOUN
is AUX
: PUNCT
per-arne.melander@histocel.umu.se ADJ
. PUNCT
DS PROPN
. PUNCT
       SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59536From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)[reply NUM
to ADP
roxannen@cruzio.santa-cruz.ca.u VERB
] PUNCT
> X
I PRON
recently ADV
heard VERB
of ADP
some DET
testing NOUN
of ADP
a DET
new ADJ
migraine ADJ
drug NOUN
called VERB
> PROPN
sumatripton PROPN
( PUNCT
I PRON
have AUX
no DET
idea NOUN
of ADP
the DET
actual ADJ
spelling NOUN
) PUNCT
that PRON
supposedly ADV
> X
utilizes VERB
a DET
chemical NOUN
that PRON
trips VERB
neuro PROPN
- PUNCT
transmitters PROPN
. PUNCT
  SPACE
My PRON
mother NOUN
has AUX
> X
regular ADJ
migraines NOUN
and CCONJ
nothing PRON
seems VERB
to PART
help VERB
- PUNCT
does AUX
anyone PRON
know VERB
anything PRON
> X
about ADP
this DET
new ADJ
drug NOUN
? PUNCT
  SPACE
Is AUX
it PRON
in ADP
a DET
testing NOUN
phaze NOUN
or CCONJ
anywhere ADV
near SCONJ
> X
approval NOUN
? PUNCT
  SPACE
Does AUX
it PRON
seem VERB
to PART
be AUX
working VERB
? PUNCT
I PRON
just ADV
got VERB
back ADV
from ADP
the DET
American PROPN
Academy PROPN
of ADP
Neurology PROPN
annual ADJ
meeting NOUN
, PUNCT
where ADV
the DET
consensus NOUN
was AUX
that SCONJ
sumatriptan ADJ
( PUNCT
Imitrex PROPN
) PUNCT
has AUX
no DET
advantagesover NOUN
DHE-45 NUM
nasal ADJ
spray NOUN
, PUNCT
which PRON
is AUX
much ADV
less ADV
expensive ADJ
, PUNCT
has AUX
fewer ADJ
sideeffects NOUN
, PUNCT
is AUX
as ADV
effective ADJ
, PUNCT
and CCONJ
works VERB
more ADV
quickly ADV
( PUNCT
5 NUM
- SYM
10 NUM
minutes NOUN
vs. ADP
30).Besides NUM
, PUNCT
who PRON
wants VERB
to PART
give VERB
themselves PRON
a DET
shot NOUN
( PUNCT
sumatriptan PROPN
) PUNCT
when ADV
a DET
nasalspray NOUN
works VERB
? PUNCT
  SPACE
DHE PROPN
nasal ADJ
spray NOUN
is AUX
not PART
widely ADV
available ADJ
yet ADV
-- PUNCT
it PRON
has AUX
tobe NOUN
mail NOUN
ordered VERB
from ADP
one NUM
of ADP
a DET
few ADJ
pharmacies NOUN
in ADP
the DET
country NOUN
-- PUNCT
but CCONJ
mostneurologists NOUN
now ADV
know VERB
about ADP
it PRON
and CCONJ
know VERB
how ADV
to PART
order VERB
it PRON
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59537From NUM
: PUNCT
barkdoll@lepomis.psych.upenn.edu NOUN
( PUNCT
Edwin PROPN
Barkdoll)Subject NUM
: PUNCT
Re ADP
: PUNCT
thermogenicsIn PROPN
article NOUN
< X
80389@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes:>First VERB
off ADP
, PUNCT
if SCONJ
I PRON
'm AUX
not PART
mistaken ADJ
, PUNCT
only ADV
hibernating VERB
animals NOUN
have AUX
brown ADJ
fat,>not NOUN
humans NOUN
. PUNCT
	 SPACE
Human ADJ
infants NOUN
do AUX
have AUX
bown VERB
fat ADJ
deposits NOUN
while SCONJ
adult NOUN
humans NOUN
arebelieved VERB
not PART
to PART
have AUX
brown ADJ
fat NOUN
. PUNCT
	 SPACE
Also ADV
while SCONJ
brown ADJ
fat NOUN
may AUX
play VERB
an DET
important ADJ
role NOUN
in ADP
rousinghibernators NOUN
, PUNCT
it PRON
is AUX
definitely ADV
not PART
limited VERB
to ADP
hibernating NOUN
animals NOUN
-- PUNCT
itis VERB
a DET
common ADJ
energy NOUN
source NOUN
for ADP
nonshivering VERB
thermogenesis.-- PROPN
Edwin PROPN
Barkdollbarkdoll@lepomis.psych.upenn.edueb3@world.std.comNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59538From NUM
: PUNCT
jlecher@pbs.orgSubject X
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?In PROPN
article NOUN
< X
1rmn0c$83v@morrow.stanford.edu PROPN
> X
, PUNCT
mou@nova1.stanford.edu PROPN
( PUNCT
Alex PROPN
Mou PROPN
) PUNCT
writes VERB
: PUNCT
> X
Hi INTJ
all DET
, PUNCT
> X
> X
My PRON
skin NOUN
is AUX
very ADV
dry ADJ
in ADP
general ADJ
. PUNCT
But CCONJ
the DET
most ADV
serious ADJ
part NOUN
is AUX
located VERB
> X
from ADP
knees NOUN
down ADV
. PUNCT
The DET
skin NOUN
there PRON
looks VERB
like SCONJ
segmented VERB
. PUNCT
The DET
segmentation NOUN
> X
actually ADV
happens VERB
beneath ADP
the DET
skin NOUN
. PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
> X
cure NOUN
for ADP
this DET
. PUNCT
> X
> X
At ADP
the DET
supermarkets NOUN
or CCONJ
pharmacies NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
lot NOUN
of ADP
stuffs NOUN
for ADP
> X
dry ADJ
skins NOUN
, PUNCT
but CCONJ
what PRON
to PART
chose VERB
? PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
for ADP
all DET
advices NOUN
and CCONJ
hints NOUN
. PUNCT
> X
> X
Reply PROPN
by ADP
email NOUN
preferred VERB
. PUNCT
> X
> X
Alex PROPN
> X
> X
As SCONJ
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
just ADV
saw VERB
a DET
dermatologist NOUN
the DET
other ADJ
day NOUN
, PUNCT
and CCONJ
while SCONJ
I PRON
was AUX
there ADV
, PUNCT
I PRON
asked VERB
him PRON
about ADP
dry ADJ
skin NOUN
. PUNCT
I PRON
'd AUX
been AUX
spending VERB
a DET
small ADJ
fortuneon NOUN
various ADJ
creams NOUN
, PUNCT
lotions NOUN
, PUNCT
and CCONJ
other ADJ
dry ADJ
skin NOUN
treatments NOUN
. PUNCT
He PRON
said VERB
all DET
I PRON
needed VERB
was AUX
a DET
large ADJ
jar NOUN
of ADP
vaseline NOUN
. PUNCT
Soak VERB
in ADP
a DET
lukewarm ADJ
tubof NOUN
water NOUN
for ADP
10 NUM
minutes NOUN
( PUNCT
ONLY ADV
10 NUM
minutes NOUN
! PUNCT
) PUNCT
then ADV
massage VERB
in ADP
the DET
vaseline NOUN
, PUNCT
to PART
trap VERB
the DET
moisture NOUN
in ADP
. PUNCT
That DET
will AUX
help VERB
. PUNCT
I PRON
have AUX
n't PART
tried VERB
it PRON
yet ADV
, PUNCT
but CCONJ
youcan PROPN
bet PROPN
I PRON
will AUX
. PUNCT
The DET
hard ADJ
part NOUN
will AUX
be AUX
finding VERB
the DET
time NOUN
to PART
rub VERB
in ADP
thevaseline NOUN
properly ADV
. PUNCT
If SCONJ
it PRON
's AUX
not PART
done VERB
right ADV
, PUNCT
you PRON
remain VERB
greasy NOUN
and CCONJ
stickto VERB
your PRON
clothes NOUN
. PUNCT
Try VERB
it PRON
. PUNCT
It PRON
's AUX
got VERB
to PART
be AUX
cheaper ADJ
then ADV
spending VERB
$ SYM
30 NUM
for ADP
8 NUM
oz PROPN
. PUNCT
of ADP
' PUNCT
natural'lotion X
. PUNCT
JaneNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59539Subject NUM
: PUNCT
Re ADP
: PUNCT
EarwaxFrom PROPN
: PUNCT
nicholson_s@kosmos.wcc.govt.nzIn X
article NOUN
< X
stephen.736092732@mont ADJ
> X
, PUNCT
stephen@mont.cs.missouri.edu PRON
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>What DET
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leave VERB
> X
it PRON
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
out ADP
> X
every ADV
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage VERB
your PRON
eardrums?>Are NOUN
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked?>>Stephen ADV
> X
The DET
best ADJ
thing NOUN
to PART
do AUX
is AUX
leave VERB
it PRON
, PUNCT
it PRON
will AUX
work VERB
its PRON
own ADJ
way NOUN
out SCONJ
to ADP
the DET
surface NOUN
. PUNCT
Anything PRON
you PRON
stick VERB
up ADP
there ADV
to PART
try VERB
and CCONJ
clean VERB
it PRON
is AUX
just ADV
going VERB
to PART
push VERB
the DET
waxup NOUN
against ADP
your PRON
eardrum NOUN
and CCONJ
pack VERB
it PRON
on ADP
there ADV
solid ADJ
, PUNCT
thus ADV
impairing VERB
yourhearing VERB
.SeanNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59540From NUM
: PUNCT
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
BIOLOGICAL PROPN
ALCHEMYmcelwre@cnsvax.uwec.edu PROPN
writes:| PROPN
          SPACE
| PROPN
                              SPACE
BIOLOGICAL PROPN
ALCHEMY| PROPN
                          SPACE
| PROPN
                        SPACE
( PUNCT
ANOTHER DET
Form NOUN
of ADP
COLD PROPN
FUSION NOUN
) PUNCT
Gee PROPN
, PUNCT
I PRON
'd AUX
FORGOTTEN PROPN
about ADP
THIS PROPN
NUT.| NOUN
               SPACE
UN PROPN
- PUNCT
altered VERB
REPRODUCTION NOUN
and CCONJ
DISSEMINATION NOUN
of ADP
this DET
| PROPN
          SPACE
IMPORTANT PROPN
Information PROPN
is AUX
ENCOURAGED PROPN
. PUNCT
| DET
                                   SPACE
Robert PROPN
E. PROPN
McElwaine| PROPN
                                   SPACE
B.S. PROPN
, PUNCT
Physics PROPN
and CCONJ
Astronomy PROPN
, PUNCT
UW PROPN
- PUNCT
ECAnd PROPN
we PRON
KNOW VERB
( PUNCT
CAN AUX
PROVE VERB
) PUNCT
what PRON
B.S. PROPN
stands VERB
for ADP
in ADP
this DET
case NOUN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59541From NUM
: PUNCT
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Earwaxbobm@Ingres NOUN
. PUNCT
COM PROPN
( PUNCT
Bob PROPN
McQueer PROPN
) PUNCT
writes:|One NOUN
question NOUN
I PRON
do AUX
have AUX
- PUNCT
a DET
doctor NOUN
who PRON
flushed VERB
out ADP
my PRON
ears NOUN
once ADV
also ADV
advocated|a VERB
drop NOUN
of ADP
rubbing VERB
alcohol NOUN
in ADP
them PRON
afterwards ADV
to PART
flush VERB
out ADP
any DET
remaining|trapped NOUN
water NOUN
- PUNCT
said VERB
he PRON
told VERB
swimmers NOUN
to PART
do AUX
this DET
after ADP
swimming VERB
, PUNCT
too ADV
. PUNCT
  SPACE
It|works ADV
, PUNCT
but CCONJ
it PRON
stings VERB
like SCONJ
the DET
devil NOUN
, PUNCT
so CCONJ
I PRON
've AUX
always ADV
been AUX
content ADJ
to PART
let VERB
any|water NOUN
in ADP
my PRON
ears NOUN
from ADP
swimming VERB
or CCONJ
flushing VERB
them PRON
out ADP
figure VERB
out ADP
how ADV
to PART
get|out VERB
by ADP
itself PRON
if SCONJ
shaking VERB
my PRON
head NOUN
a DET
few ADJ
times NOUN
wo AUX
n't PART
do AUX
the DET
trick NOUN
. PUNCT
  SPACE
Any|comments?When ADV
I PRON
have AUX
trouble NOUN
it PRON
's AUX
usually ADV
because SCONJ
of ADP
water NOUN
trapped VERB
by ADP
someremaining VERB
wax PROPN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
see VERB
why ADV
you PRON
ca AUX
n't PART
just ADV
let VERB
it PRON
evaporate VERB
; PUNCT
itshould AUX
do AUX
this DET
eventually ADV
. PUNCT
	 SPACE
/J PUNCT
= SYM
Nets NOUN
: PUNCT
levin@bbn.com X
  SPACE
| ADP
  SPACE
" PUNCT
Earn VERB
more ADJ
sessions NOUN
by ADP
sleeving VERB
. PUNCT
"pots NOUN
: PUNCT
( PUNCT
617)873 NUM
- PUNCT
3463 NUM
  SPACE
| ADP
              SPACE
N1MNF PROPN
  SPACE
| PROPN
                               SPACE
-- PUNCT
Roxanne PROPN
KowalskiNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59542From NUM
: PUNCT
theisen@uni-duesseldorf.de PROPN
( PUNCT
Herr PROPN
Theisen)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr27.233234.2929@magnus.acs.ohio-state.edu NUM
> X
wvhorn@magnus.acs.ohio-state.edu PROPN
( PUNCT
William PROPN
VanHorne PROPN
) PUNCT
writes:>Newsgroups NOUN
: PUNCT
sci.energy,sci.image.processing,sci.anthropology,alt.sci.physics.new-theories,sci.skeptic,sci.med,alt.alien.visitors>Path NUM
: PUNCT
unidus.rz.uni-duesseldorf.de!rrz.uni-koeln.de!gmd.de!newsserver.jvnc.net!howland.reston.ans.net!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!wvhorn>From NUM
: PUNCT
wvhorn@magnus.acs.ohio-state.edu PROPN
( PUNCT
William PROPN
VanHorne)>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography PROPN
> PROPN
Message NOUN
- PUNCT
ID PROPN
: PUNCT
< X
1993Apr27.233234.2929@magnus.acs.ohio-state.edu>>Sender NUM
: PUNCT
news@magnus.acs.ohio-state.edu>Nntp-Posting-Host PROPN
: PUNCT
bottom.magnus.acs.ohio-state.edu>Organization NOUN
: PUNCT
The DET
Ohio PROPN
State PROPN
University PROPN
> X
References NOUN
: PUNCT
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
< X
C64MvG.BoI@usenet.ucs.indiana.edu NOUN
> X
< X
C65oIL.436@vuse.vanderbilt.edu>>Date NOUN
: PUNCT
Tue PROPN
, PUNCT
27 NUM
Apr PROPN
1993 NUM
23:32:34 NUM
GMT PROPN
> X
Lines NOUN
: PUNCT
33 NUM
> X
Xref NOUN
: PUNCT
unidus.rz.uni-duesseldorf.de PROPN
sci.energy:6430 PROPN
sci.image.processing:2668 PROPN
sci.anthropology:2183 VERB
alt.sci.physics.new-theories:1762 PROPN
sci.skeptic:18848 PART
sci.med:18773 PROPN
alt.alien.visitors:10138>In NOUN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>>>>Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>>photography PROPN
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the>>narrow NOUN
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or>>measure ADP
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADP
there.>>>>I PROPN
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to>>so PROPN
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just>>as NOUN
likely ADJ
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be>>quite VERB
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>>>I NOUN
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to>>something NOUN
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame>>of NOUN
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>>were PROPN
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics.>>>>Especially PROPN
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not>>drop PROPN
off ADP
the DET
edge NOUN
of ADP
the DET
earth.>It NUM
is AUX
one NUM
thing NOUN
to PART
be AUX
open ADJ
- PUNCT
minded ADJ
about ADP
phenomona PROPN
that PRON
have AUX
not PART
> X
be AUX
demonstrated VERB
to PART
be AUX
false ADJ
, PUNCT
and CCONJ
quite DET
another DET
to PART
" PUNCT
believe VERB
" PUNCT
in ADP
> NUM
something PRON
like SCONJ
Krilian ADJ
photography NOUN
, PUNCT
where ADV
* PUNCT
all DET
* PUNCT
the DET
claimed VERB
effects NOUN
> X
have AUX
be AUX
demonstrated VERB
to PART
be AUX
artifacts NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
longer ADV
any DET
reason NOUN
> X
to PART
adopt VERB
a DET
" PUNCT
wait VERB
and CCONJ
see VERB
" PUNCT
attitude NOUN
about ADP
Krilian ADJ
photography NOUN
, PUNCT
it PRON
> X
has AUX
been AUX
experimentally ADV
shown VERB
to PART
be AUX
nothing PRON
but CCONJ
simple ADJ
coronal ADJ
> X
discharge NOUN
. PUNCT
  SPACE
The DET
" PUNCT
auras X
" PUNCT
shown VERB
by ADP
missing VERB
leaf NOUN
parts NOUN
came VERB
from ADP
> PROPN
moisture NOUN
left VERB
by ADP
the DET
original ADJ
whole ADJ
leaf NOUN
, PUNCT
for ADP
example NOUN
. PUNCT
  SPACE
> X
That DET
's AUX
what PRON
science NOUN
is AUX
, PUNCT
son.>---Bill PROPN
VanHorneNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59543From NUM
: PUNCT
yozzo@watson.ibm.com PROPN
( PUNCT
Ralph PROPN
Yozzo)Subject PROPN
: PUNCT
Cold PROPN
Sore PROPN
Location?I've PROPN
had AUX
cold ADJ
sores NOUN
in ADP
the DET
past NOUN
. PUNCT
  SPACE
But CCONJ
they PRON
have AUX
always ADV
been AUX
in ADP
the DET
corner NOUN
of ADP
my PRON
mouth NOUN
. PUNCT
  SPACE
Recently ADV
, PUNCT
  SPACE
I PRON
've AUX
had VERB
what PRON
appears VERB
to ADP
bea PROPN
cold ADJ
sore ADJ
, PUNCT
but CCONJ
on ADP
my PRON
lower ADJ
lip NOUN
in ADP
the DET
middle NOUN
( PUNCT
above ADP
the DET
chin).Can NOUN
cold ADJ
sores NOUN
appear VERB
anywhere ADV
around ADP
the DET
mouth NOUN
( PUNCT
or CCONJ
body)?Is PUNCT
there PRON
a DET
medical ADJ
term NOUN
for ADP
cold ADJ
sore?-- NUM
  SPACE
Ralph PROPN
Yozzo PROPN
( PUNCT
yozzo@watson.ibm.com PROPN
) PUNCT
   SPACE
From ADP
the DET
beautiful ADJ
and CCONJ
historic ADJ
New PROPN
York PROPN
State PROPN
Mid PROPN
- PUNCT
Hudson PROPN
Valley PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59544From NUM
: PUNCT
ewolff@ps.ic.ac.uk PROPN
( PUNCT
Erik PROPN
The DET
Viking)Subject NOUN
: PUNCT
thyroidal VERB
deficiencyHi PROPN
. PUNCT
My PRON
wife NOUN
has AUX
aquired VERB
some DET
thyroidal ADJ
( PUNCT
sp PROPN
? PUNCT
) PUNCT
deficiency NOUN
over ADP
the DET
past NOUN
yearthat NOUN
gives VERB
symptoms NOUN
such ADJ
as SCONJ
needing VERB
much ADJ
sleep NOUN
, PUNCT
coldness NOUN
and CCONJ
pronenessto NOUN
gaining VERB
weight NOUN
. PUNCT
She PRON
has AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
taken VERB
the DET
ordinary ADJ
( PUNCT
? PUNCT
) PUNCT
tests NOUN
and CCONJ
her PRON
values NOUN
were AUX
regarded VERB
as ADV
low ADJ
. PUNCT
The DET
doctor NOUN
( PUNCT
and CCONJ
my PRON
wife NOUN
) PUNCT
arenot NOUN
very ADV
interested ADJ
in ADP
starting VERB
medication NOUN
as SCONJ
this DET
" PUNCT
deactivates VERB
" PUNCT
the DET
gland NOUN
, PUNCT
giving VERB
life NOUN
- PUNCT
long ADJ
dependency NOUN
to ADP
the DET
drug NOUN
( PUNCT
hormone NOUN
? PUNCT
) PUNCT
. PUNCT
The DET
last ADJ
couple NOUN
of ADP
monthes NOUN
she PRON
has AUX
been AUX
seeing VERB
a DET
hoemoepath NOUN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
and CCONJ
been AUX
givensome ADJ
drops NOUN
to PART
re VERB
- VERB
activate VERB
either CCONJ
her PRON
thyroidal ADJ
gland NOUN
and/or CCONJ
the DET
' PUNCT
message NOUN
- PUNCT
center NOUN
' PUNCT
in ADP
the DET
brain NOUN
( PUNCT
sorry ADJ
about ADP
the DET
approximate ADJ
language NOUN
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
got VERB
many ADJ
clues NOUN
to ADP
what PRON
the DET
english ADJ
terms NOUN
are AUX
, PUNCT
but CCONJ
the DET
brain NOUN
- PUNCT
area NOUN
is AUX
called VERB
the DET
' PUNCT
hypofyse NOUN
' PUNCT
in ADP
norwegian PROPN
. PUNCT
) PUNCT
My PRON
questions NOUN
are AUX
: PUNCT
has AUX
anyone PRON
had VERB
/ SYM
heard VERB
of ADP
success NOUN
in ADP
using VERB
this DET
approach?Her NOUN
values NOUN
have AUX
been AUX
( PUNCT
slowly ADV
but CCONJ
) PUNCT
steadily ADV
sinking VERB
, PUNCT
any DET
comment NOUN
on ADP
theprobability NOUN
of ADP
improvement NOUN
? PUNCT
Although SCONJ
the DET
doctor NOUN
has AUX
told VERB
her PRON
to PART
' PUNCT
eatnormally ADV
' PUNCT
, PUNCT
my PRON
wife NOUN
has AUX
dieted VERB
vigorously ADV
to PART
keep VERB
her PRON
weight NOUN
as SCONJ
she PRON
feelsthat NOUN
is AUX
part NOUN
of ADP
keeping VERB
an DET
edge NOUN
over ADP
the DET
illness NOUN
/ SYM
condition NOUN
, PUNCT
may AUX
thisaffect VERB
the DET
treatment NOUN
, PUNCT
development?I PROPN
can AUX
get AUX
the DET
exact ADJ
figures NOUN
for ADP
her PRON
tests NOUN
for ADP
anyone PRON
interested ADJ
, PUNCT
and CCONJ
Iwill PROPN
greatly ADV
value VERB
any DET
information NOUN
/ SYM
opinion NOUN
/ SYM
experience NOUN
on ADP
this DET
topic NOUN
. PUNCT
I PRON
do AUX
n't PART
intend VERB
this DET
post NOUN
to PART
be AUX
either CCONJ
a DET
flaming NOUN
of ADP
the DET
establishedmedical ADJ
profession NOUN
or CCONJ
a DET
praise NOUN
for ADP
alternatives NOUN
, PUNCT
I PRON
am AUX
just ADV
relayingevents NOUN
as SCONJ
they PRON
have AUX
happened VERB
. PUNCT
Sincerely ADV
, PUNCT
Erik PROPN
A. NOUN
WolffNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59545From NUM
: PUNCT
resinfo@resinfo.demon.co.uk PROPN
( PUNCT
resinfo)Subject NOUN
: PUNCT
Investigating VERB
Phenylanine?Resinfo NOUN
( PUNCT
research NOUN
and CCONJ
information NOUN
) PUNCT
is AUX
currently ADV
seeking VERB
contact_IN NOUN
_ VERB
the DET
United PROPN
Kingdom PROPN
with ADP
researchers NOUN
of ADP
' PUNCT
phenylanine NOUN
' PUNCT
, PUNCT
or CCONJ
isthis DET
amino ADJ
acid NOUN
uninspiring?Resinfo PRON
is AUX
not PART
a DET
regular ADJ
subscriber NOUN
to ADP
sci.med VERB
due ADP
to ADP
the DET
excessive ADJ
load NOUN
of ADP
data NOUN
and CCONJ
regrettably ADV
, PUNCT
our PRON
limited ADJ
abilityto PROPN
monitor NOUN
. PUNCT
It PRON
would AUX
therefore ADV
be AUX
appreciated VERB
if SCONJ
repliescould ADV
be AUX
sent VERB
direct ADJ
to;resinfo@resinfo.demon.co.ukusing NOUN
the DET
ref NOUN
: PUNCT
mr PROPN
t.a.t PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59546From NUM
: PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)Subject PROPN
: PUNCT
insensitive ADJ
techniciansA PROPN
friend NOUN
was AUX
recently ADV
admitted VERB
to ADP
North PROPN
Carolina PROPN
Memorial PROPN
Hospitalbecause PROPN
of ADP
suspected VERB
meningitis NOUN
. PUNCT
  SPACE
Serious ADJ
business NOUN
. PUNCT
  SPACE
They PRON
wanted VERB
to PART
doa PROPN
lumbar ADJ
puncture NOUN
, PUNCT
for ADP
which PRON
a DET
CT PROPN
scan NOUN
is AUX
a DET
prerequisite NOUN
. PUNCT
I PRON
arrived VERB
in ADP
her PRON
hospital NOUN
room NOUN
about ADP
an DET
hour NOUN
after ADP
she PRON
had AUX
returnedfrom VERB
the DET
CT PROPN
. PUNCT
   SPACE
She PRON
was AUX
in ADP
tears NOUN
. PUNCT
  SPACE
Evidently ADV
the DET
technicians NOUN
in ADP
the DET
CTlab NOUN
had AUX
been AUX
very ADV
unpleasant ADJ
to ADP
her PRON
. PUNCT
To PART
begin VERB
with ADP
, PUNCT
they PRON
put VERB
her PRON
on ADP
the DET
apparatus NOUN
that PRON
moves VERB
you PRON
into ADP
themachine NOUN
itself PRON
, PUNCT
and CCONJ
just ADV
pushed VERB
a DET
button NOUN
to PART
slide VERB
her PRON
straight ADJ
into ADP
themachine NOUN
, PUNCT
without ADP
any DET
explanation NOUN
. PUNCT
  SPACE
Imagine VERB
this DET
. PUNCT
  SPACE
You PRON
worried VERB
you PRON
mayhave VERB
a DET
deadly ADJ
disease NOUN
, PUNCT
and CCONJ
next ADJ
thing NOUN
you PRON
know VERB
you PRON
're AUX
being AUX
put VERB
intothis DET
big ADJ
scary ADJ
machine NOUN
, PUNCT
without ADP
a DET
word NOUN
of ADP
explanation NOUN
about ADP
what PRON
isgoing VERB
to PART
happen VERB
to ADP
you PRON
. PUNCT
  SPACE
I PRON
believe VERB
this DET
is AUX
inexcusable ADJ
. PUNCT
   SPACE
She PRON
waved VERB
herhand ADV
as SCONJ
if SCONJ
to PART
say VERB
what PRON
are AUX
you PRON
doing VERB
to ADP
me PRON
, PUNCT
and CCONJ
they PRON
responded VERB
withannoyance NOUN
and CCONJ
anger NOUN
. PUNCT
  SPACE
Next ADV
they PRON
inserted VERB
, PUNCT
or CCONJ
tried VERB
to PART
insert VERB
, PUNCT
an DET
IVcatheter NOUN
. PUNCT
  SPACE
Apparently ADV
she PRON
has AUX
a DET
lot NOUN
of ADP
trouble NOUN
with ADP
these DET
and CCONJ
complainedof VERB
the DET
pain NOUN
. PUNCT
  SPACE
The DET
technician NOUN
just ADV
stopped VERB
and CCONJ
fixed VERB
her PRON
with ADP
a DET
glarewithout NOUN
any DET
words NOUN
of ADP
explanation NOUN
. PUNCT
Is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
about ADP
these DET
pigs NOUN
? PUNCT
I PRON
realize VERB
that SCONJ
these DET
technicians NOUN
do AUX
this DET
sort NOUN
of ADP
job NOUN
day NOUN
in ADV
and CCONJ
dayout NOUN
. PUNCT
  SPACE
And CCONJ
that SCONJ
some DET
patients NOUN
can AUX
be AUX
very ADV
irritating ADJ
and CCONJ
uncooperative ADJ
. PUNCT
But CCONJ
this DET
is AUX
simply ADV
no DET
excuse NOUN
. PUNCT
  SPACE
Their PRON
purpose NOUN
for ADP
existing VERB
is AUX
to PART
helpsick VERB
people NOUN
, PUNCT
and CCONJ
there PRON
is AUX
no DET
excuse NOUN
for ADP
this DET
sort NOUN
of ADP
behavior NOUN
. PUNCT
Fortunately ADV
my PRON
friend NOUN
is AUX
fine ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
imagine VERB
a DET
large ADJ
proportion NOUN
of ADP
thepeople NOUN
who PRON
get VERB
CT PROPN
scans NOUN
are AUX
not PART
fine ADJ
at ADV
all ADV
. PUNCT
  SPACE
They PRON
have AUX
cancer NOUN
and CCONJ
thatsort NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
They PRON
do AUX
n't PART
need VERB
this DET
kind NOUN
of ADP
shit NOUN
. PUNCT
Also ADV
, PUNCT
since SCONJ
I PRON
named VERB
the DET
hospital NOUN
involved VERB
, PUNCT
I PRON
should AUX
also ADV
point VERB
out ADP
thatneither ADV
she PRON
nor CCONJ
I PRON
have AUX
any DET
complaints NOUN
about ADP
the DET
competence NOUN
or CCONJ
compassionof NOUN
any DET
of ADP
the DET
other ADJ
personnel NOUN
at ADP
NCMH.Thanks PROPN
for ADP
listening NOUN
, PUNCT
John PROPN
Eylesjge@cs.unc.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59547From NUM
: PUNCT
u2nmh@csc.liv.ac.uk PROPN
( PUNCT
N.M. PROPN
Humphries)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyThomas PROPN
Trusk PROPN
( PUNCT
ttrusk@its.mcw.edu NOUN
) PUNCT
wrote VERB
: PUNCT
> X
In ADP
article NOUN
< X
C67G01.2J1@efi.com X
> X
alanm@efi.com X
( PUNCT
Alan PROPN
Morgan PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
> X
> X
  SPACE
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
> X
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
> X
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
> X
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
> X
> X
> X
> X
Oooooh PROPN
. PUNCT
  SPACE
Bad ADJ
example NOUN
. PUNCT
  SPACE
I PRON
'm AUX
an DET
atheist NOUN
. PUNCT
> X
> X
> X
This DET
is AUX
not PART
flame ADJ
, PUNCT
or CCONJ
abuse NOUN
, PUNCT
nor CCONJ
do AUX
I PRON
want VERB
to PART
start VERB
another DET
thread NOUN
( PUNCT
this DET
> X
is AUX
, PUNCT
after ADV
all ADV
, PUNCT
supposed VERB
to PART
be AUX
about ADP
IMAGE NOUN
PROCESSING NOUN
) PUNCT
. PUNCT
> X
BUT CCONJ
, PUNCT
to PART
say VERB
you PRON
're AUX
an DET
atheist NOUN
is AUX
to PART
suggest VERB
you PRON
have AUX
PROOF PROPN
there PRON
is AUX
NO DET
GOD.-- PROPN
That PRON
means VERB
that SCONJ
there PRON
can AUX
not PART
be AUX
any DET
atheists NOUN
  SPACE
since SCONJ
there PRON
is AUX
NO DET
WAY NOUN
that PRON
youcan AUX
prove VERB
that SCONJ
there PRON
is AUX
no DET
god NOUN
. PUNCT
Atheists NOUN
are AUX
people NOUN
who PRON
BELIEVE VERB
that SCONJ
there PRON
is AUX
nogod NOUN
, PUNCT
most ADV
not PART
only ADV
believe VERB
, PUNCT
but CCONJ
also ADV
are AUX
damn ADV
sure ADJ
that SCONJ
there PRON
is AUX
n't PART
a DET
god PROPN
( PUNCT
likeme PROPN
) PUNCT
. PUNCT
  SPACE
--------------------------------------------------------------------------- PUNCT
     SPACE
The DET
Cursor PROPN
, PUNCT
aka ADV
Nick PROPN
Humphries PROPN
, PUNCT
u2nmh@csc.liv.ac.uk PROPN
, PUNCT
at ADP
your PRON
service NOUN
. PUNCT
  SPACE
--------------------------------------------------------------------------- PUNCT
   SPACE
" PUNCT
What PRON
's AUX
the DET
use NOUN
of ADP
computers NOUN
? PUNCT
They PRON
'll AUX
never ADV
play VERB
  SPACE
| X
" PUNCT
Why ADV
pay VERB
money NOUN
to PART
see VERB
   SPACE
chess NOUN
, PUNCT
draw VERB
art NOUN
or CCONJ
make VERB
music NOUN
. PUNCT
" PUNCT
- PUNCT
Jean PROPN
Genet PROPN
. PUNCT
     SPACE
| ADJ
bad ADJ
films NOUN
? PUNCT
Stay VERB
home NOUN
    SPACE
" PUNCT
Intelligence NOUN
is AUX
n't PART
to PART
make VERB
no DET
mistakes NOUN
, PUNCT
but CCONJ
how ADV
  SPACE
| ADV
and CCONJ
see VERB
bad ADJ
TV NOUN
for ADP
   SPACE
to PART
make VERB
them PRON
look VERB
good ADJ
. PUNCT
" PUNCT
- PUNCT
Bertolt PROPN
Brecht PROPN
. PUNCT
        SPACE
| PROPN
free ADJ
. PUNCT
" PUNCT
- PUNCT
Sam PROPN
Goldwyn PROPN
. PUNCT
  SPACE
---------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59548From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject NOUN
: PUNCT
RE PROPN
: PUNCT
Robert PROPN
's PART
Biological PROPN
AlchemyRobert PROPN
, PUNCT
I'm PROPN
* PUNCT
so ADV
* PUNCT
glad ADJ
that SCONJ
you PRON
posted VERB
your PRON
Biological PROPN
Alchemy PROPN
discussion NOUN
. PUNCT
  SPACE
I PRON
've AUX
been AUX
compared VERB
to ADP
the DET
famous ADJ
Robert PROPN
McElwaine PROPN
by ADP
some DET
readers NOUN
of ADP
Sci PROPN
. PUNCT
Med INTJ
. PUNCT
I PRON
did AUX
n't PART
know VERB
how ADV
to PART
respond VERB
since SCONJ
I PRON
had AUX
not PART
seen VERB
one NUM
of ADP
your PRON
posts(just NOUN
like INTJ
I PRON
have AUX
n't PART
read VERB
" PUNCT
The DET
Yeast PROPN
Connection").Let PROPN
me PRON
just ADV
start VERB
by ADP
stating VERB
that SCONJ
the DET
authors NOUN
of ADP
the DET
" PUNCT
Cold PROPN
Fusion PROPN
" PUNCT
papers NOUN
of ADP
recent ADJ
years NOUN
are AUX
now ADV
in ADP
scientific ADJ
exile(I PROPN
believe VERB
that SCONJ
one NOUN
has AUX
actually ADV
left VERB
the DET
country NOUN
) PUNCT
. PUNCT
  SPACE
Scientific ADJ
fraud NOUN
is AUX
rare ADJ
. PUNCT
  SPACE
I PRON
'm AUX
still ADV
not PART
sure ADJ
that SCONJ
if SCONJ
a DET
review NOUN
of ADP
the DET
research NOUN
notes NOUN
of ADP
the DET
" PUNCT
cold ADJ
fusion NOUN
scientists NOUN
" PUNCT
actually ADV
proved VERB
fraud NOUN
or CCONJ
just ADV
very ADV
shoddy ADJ
experimentation NOUN
. PUNCT
Your PRON
sources NOUN
do AUX
not PART
seem VERB
to PART
be AUX
research NOUN
articles NOUN
. PUNCT
  SPACE
They PRON
are AUX
more ADV
like SCONJ
lay VERB
texts NOUN
designed VERB
to PART
pique VERB
human ADJ
interest NOUN
in ADP
a DET
subject NOUN
area(just NOUN
like SCONJ
the DET
food NOUN
combining VERB
and CCONJ
life NOUN
extension NOUN
texts NOUN
) PUNCT
. PUNCT
  SPACE
Robert PROPN
, PUNCT
I PRON
try VERB
to PART
keep VERB
an DET
open ADJ
mind NOUN
. PUNCT
But CCONJ
some DET
things NOUN
I PRON
just ADV
ca AUX
n't PART
buy(one PROPN
is AUX
taking VERB
SOD PROPN
orally ADV
to PART
prevent VERB
oxidative ADJ
damage NOUN
in ADP
the DET
body).Your PROPN
experiment NOUN
, PUNCT
if SCONJ
conducted VERB
by ADP
readers NOUN
of ADP
this DET
news NOUN
group NOUN
, PUNCT
would AUX
prove VERB
that SCONJ
you PRON
are AUX
right(more ADJ
ash NOUN
after ADP
seed NOUN
sprouting NOUN
than SCONJ
before ADV
) PUNCT
. PUNCT
  SPACE
Unless SCONJ
you PRON
use VERB
a DET
muffle ADJ
furnance NOUN
and CCONJ
obtain VERB
a DET
very ADV
high ADJ
temperature(above NOUN
600 NUM
degrees NOUN
I PRON
believe VERB
) PUNCT
, PUNCT
you PRON
will AUX
get AUX
organic ADJ
residue NOUN
in ADP
the DET
ash NOUN
. PUNCT
  SPACE
Even ADV
the DET
residue NOUN
in ADP
commercial ADJ
incinerators NOUN
contains VERB
organic ADJ
residue NOUN
. PUNCT
  SPACE
I PRON
remember VERB
doing VERB
this DET
kind NOUN
of ADP
experiment NOUN
in ADP
my PRON
organic ADJ
chemistry NOUN
couurse NOUN
in ADP
College PROPN
but CCONJ
I PRON
could AUX
n't PART
find VERB
a DET
temperature NOUN
for ADP
mineral NOUN
ash NOUN
formation NOUN
so ADV
I PRON
'm AUX
really ADV
guessing VERB
at ADP
600 NUM
degrees NOUN
F PROPN
, PUNCT
it PRON
may AUX
actually ADV
be AUX
much ADV
higher ADJ
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
no DET
one NOUN
in ADP
their PRON
home NOUN
could AUX
ever ADV
get AUX
a DET
high ADJ
enough ADJ
temperature NOUN
to PART
produce VERB
* PUNCT
only ADV
* PUNCT
a DET
mineral NOUN
ash NOUN
. PUNCT
  SPACE
They PRON
also ADV
could AUX
not PART
measure VERB
the DET
minerals NOUN
so SCONJ
they PRON
could AUX
only ADV
weigh VERB
the DET
ash NOUN
and CCONJ
find VERB
out ADP
that SCONJ
you PRON
appear VERB
to PART
be AUX
correct ADJ
. PUNCT
Chemical ADJ
reactions NOUN
abound VERB
in ADP
our PRON
body NOUN
, PUNCT
in ADP
our PRON
atmosphere NOUN
, PUNCT
in ADP
our PRON
water NOUN
and CCONJ
in ADP
our PRON
soil NOUN
. PUNCT
  SPACE
Are AUX
these DET
fusion NOUN
reactions NOUN
? PUNCT
  SPACE
Yes INTJ
many ADJ
of ADP
them PRON
do AUX
involve VERB
fusing VERB
oxygen NOUN
, PUNCT
nitrogen NOUN
and CCONJ
sulfur NOUN
to ADP
both DET
organics NOUN
and CCONJ
inorganics NOUN
. PUNCT
  SPACE
Do AUX
we PRON
really ADV
have AUX
the DET
transformation NOUN
of ADP
silicone NOUN
to ADP
calcium NOUN
if SCONJ
carbon NOUN
is AUX
fused VERB
with ADP
silicon NOUN
? PUNCT
  SPACE
Not PART
in ADP
my PRON
book NOUN
Robert PROPN
. PUNCT
Silicon PROPN
is AUX
the DET
most ADV
abundant ADJ
mineral NOUN
on ADP
our PRON
planet NOUN
. PUNCT
  SPACE
I PRON
've AUX
seen VERB
speculation NOUN
that SCONJ
man NOUN
could AUX
have AUX
evolved VERB
to PART
be AUX
a DET
silicon NOUN
based VERB
rather ADV
than SCONJ
a DET
carbon NOUN
based VERB
life NOUN
- PUNCT
form NOUN
. PUNCT
  SPACE
I PRON
like VERB
reading VERB
science NOUN
fiction NOUN
, PUNCT
as SCONJ
many ADJ
people NOUN
do AUX
. PUNCT
  SPACE
But CCONJ
I PRON
know VERB
enough ADJ
about ADP
biochemistry(and NUM
nutrition NOUN
) PUNCT
to PART
be AUX
able(in ADJ
most ADJ
cases NOUN
) PUNCT
to PART
separate VERB
the DET
fiction NOUN
from ADP
the DET
fact NOUN
. PUNCT
Silicon PROPN
may AUX
be AUX
one NUM
of ADP
the DET
trace NOUN
elements NOUN
that PRON
turns VERB
out ADP
to PART
be AUX
essential ADJ
in ADP
humans NOUN
. PUNCT
  SPACE
We PRON
have AUX
several ADJ
grams NOUN
of ADP
the DET
stuff NOUN
in ADP
our PRON
body NOUN
. PUNCT
  SPACE
What PRON
's AUX
it PRON
doing VERB
there ADV
? PUNCT
  SPACE
Only ADV
the DET
Lord PROPN
knows VERB
right ADV
now ADV
. PUNCT
  SPACE
But CCONJ
I PRON
will AUX
tell VERB
you PRON
what PRON
I PRON
do AUX
know VERB
about ADP
silicon NOUN
and CCONJ
why ADV
, PUNCT
as SCONJ
you PRON
state VERB
, PUNCT
it PRON
helps VERB
bone NOUN
healing(and ADP
it PRON
is AUX
not PART
because SCONJ
silicon NOUN
is AUX
transformed VERB
into ADP
calcium).Almost NOUN
all DET
of ADP
the DET
silicon NOUN
in ADP
the DET
human ADJ
body NOUN
is AUX
found VERB
in ADP
the DET
connective NOUN
tissue(collagen PROPN
and CCONJ
elastin PROPN
) PUNCT
. PUNCT
  SPACE
There PRON
have AUX
been AUX
studies NOUN
published VERB
which PRON
show VERB
that SCONJ
the DET
very ADV
high ADJ
silicon NOUN
content NOUN
in ADP
elastin PROPN
may AUX
be AUX
an DET
important ADJ
protective ADJ
factor NOUN
against ADP
atherosclerosis(the DET
higher ADJ
the DET
silicon NOUN
content NOUN
in ADP
elastin PROPN
, PUNCT
the DET
more ADV
resistant ADJ
the DET
elastin NOUN
is AUX
to ADP
a DET
an DET
age NOUN
- PUNCT
related VERB
loss NOUN
of ADP
elasticity NOUN
which PRON
may AUX
play VERB
a DET
role NOUN
in ADP
the DET
increase NOUN
in ADP
blood NOUN
pressure NOUN
that PRON
is AUX
often ADV
seen VERB
as SCONJ
part NOUN
of ADP
the DET
ageing NOUN
process NOUN
in ADP
humans).For DET
bone NOUN
fracture NOUN
healing NOUN
, PUNCT
the DET
first ADJ
step NOUN
is AUX
a DET
collagen NOUN
matrix NOUN
into ADP
which PRON
calcium NOUN
and CCONJ
phosphate NOUN
are AUX
pumped VERB
by ADP
osteoblasts NOUN
. PUNCT
  SPACE
A DET
high ADJ
level NOUN
of ADP
silicon NOUN
in ADP
the DET
diet NOUN
seems VERB
to PART
speed VERB
up ADP
this DET
matrix NOUN
formation NOUN
. PUNCT
  SPACE
This DET
first ADJ
step NOUN
in ADP
the DET
bone NOUN
healing NOUN
process NOUN
seems VERB
to PART
be AUX
the DET
hardest ADJ
for ADP
some DET
people NOUN
to PART
get AUX
going VERB
. PUNCT
Electriacl NOUN
currents NOUN
have AUX
been AUX
used VERB
in ADP
an DET
attempt NOUN
to PART
get AUX
the DET
matrix NOUN
forming VERB
cells NOUN
oriented VERB
in ADP
the DET
right ADJ
direction NOUN
so SCONJ
that SCONJ
the DET
matrix NOUN
can AUX
be AUX
formed VERB
in ADP
the DET
gap(or NOUN
gaps NOUN
) PUNCT
between ADP
the DET
ends NOUN
of ADP
the DET
broken ADJ
bone NOUN
. PUNCT
  SPACE
A DET
vitamin NOUN
C NOUN
deficiency(by NOUN
slowing VERB
collagen NOUN
formation NOUN
as ADV
well ADV
as SCONJ
causing VERB
the DET
prodcution NOUN
of ADP
defective ADJ
collagen NOUN
) PUNCT
does AUX
slow VERB
down ADP
both CCONJ
bone NOUN
and CCONJ
wound VERB
healing NOUN
. PUNCT
  SPACE
Zinc PROPN
is AUX
also ADV
another DET
big ADJ
player NOUN
in ADP
bone NOUN
and CCONJ
wound NOUN
healing NOUN
. PUNCT
  SPACE
And CCONJ
so ADV
is AUX
silicon(in PROPN
an DET
  SPACE
undetermined ADJ
role NOUN
that SCONJ
most ADV
likely ADV
involes VERB
matrix NOUN
formation NOUN
and CCONJ
not PART
transformation NOUN
of ADP
silicon NOUN
to ADP
calcium NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
you PRON
to PART
take VERB
this DET
bone NOUN
healing VERB
observation NOUN
and CCONJ
use VERB
it PRON
as SCONJ
proof NOUN
that SCONJ
silicon NOUN
is AUX
transformed VERB
into ADP
calcium NOUN
is AUX
an DET
interesting ADJ
little ADJ
trick NOUN
. PUNCT
But CCONJ
Robert PROPN
, PUNCT
I PRON
have AUX
the DET
same ADJ
problem NOUN
myself PRON
when ADV
I PRON
read VERB
the DET
lay NOUN
press(and PROPN
yes INTJ
even ADV
some DET
scientific ADJ
papers NOUN
) PUNCT
. PUNCT
  SPACE
Is AUX
the DET
explanation NOUN
reasonable ADJ
? PUNCT
  SPACE
Without ADP
a DET
very ADV
good ADJ
science NOUN
knowledge NOUN
base NOUN
, PUNCT
you PRON
and CCONJ
most ADJ
readers NOUN
of ADP
this DET
news NOUN
group NOUN
are AUX
flying VERB
blind(you PROPN
have AUX
to PART
take VERB
it PRON
on ADP
faith NOUN
because SCONJ
you PRON
do AUX
n't PART
know VERB
any DET
better).If NOUN
the DET
explanation NOUN
seems VERB
to PART
make VERB
sense NOUN
to ADP
me PRON
based VERB
on ADP
my PRON
knowledge NOUN
base NOUN
, PUNCT
I PRON
'm AUX
inclined ADJ
to PART
consider VERB
it(this PRON
usually ADV
means VERB
trying VERB
to PART
find VERB
other ADJ
sources NOUN
that PRON
come VERB
to ADP
the DET
same ADJ
conclusion NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
the DET
idea(like PROPN
a DET
candida PROPN
bloom NOUN
) PUNCT
seems VERB
to PART
make VERB
sense NOUN
to ADP
me PRON
, PUNCT
I PRON
tend VERB
to PART
pursue VERB
it PRON
as ADV
long ADV
as SCONJ
any DET
advice NOUN
that PRON
I PRON
'm AUX
going VERB
to PART
give VERB
is AUX
n't PART
going VERB
to PART
really ADV
mess VERB
somebody PRON
up ADP
. PUNCT
  SPACE
If SCONJ
this DET
makes VERB
us PRON
kindred VERB
souls NOUN
Robert PROPN
, PUNCT
then ADV
I PRON
guess VERB
I PRON
'll AUX
have AUX
to PART
live VERB
with ADP
that DET
label NOUN
. PUNCT
For ADP
the DET
physicians NOUN
who PRON
have AUX
decided VERB
to PART
read VERB
my PRON
response NOUN
to ADP
Robert PROPN
's PART
interesting ADJ
post NOUN
, PUNCT
I PRON
hope VERB
that SCONJ
you PRON
saw VERB
the DET
segment NOUN
on ADP
the DET
pediatric ADJ
neurosurgeon NOUN
last ADJ
night NOUN
on ADP
U.S. PROPN
TV PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
remember VERB
the DET
network NOUN
or CCONJ
his PRON
name(like PROPN
many ADJ
nights NOUN
, PUNCT
I PRON
was AUX
on ADP
my PRON
computer NOUN
and CCONJ
my PRON
wife NOUN
was AUX
watching VERB
TV NOUN
in ADP
our PRON
Den PROPN
where ADV
I PRON
have AUX
my PRON
computer NOUN
setup NOUN
) PUNCT
. PUNCT
  SPACE
This DET
neurosurgeon NOUN
takes VERB
kids NOUN
with ADP
brain NOUN
tumors NOUN
that SCONJ
everyone PRON
else ADV
has AUX
given VERB
up ADP
on ADV
and CCONJ
he PRON
uses"unconventional"treatments(his PRON
own ADJ
words NOUN
) PUNCT
. PUNCT
  SPACE
He PRON
says VERB
that SCONJ
he PRON
has AUX
a DET
70 NUM
% NOUN
success NOUN
rate NOUN
. PUNCT
  SPACE
The DET
one NUM
case NOUN
that PRON
I PRON
heard VERB
him PRON
discussing VERB
would AUX
normally ADV
use VERB
radiation(conventional ADJ
treatment NOUN
) PUNCT
. PUNCT
  SPACE
He PRON
was AUX
going VERB
to PART
go VERB
in ADV
and CCONJ
cut VERB
. PUNCT
  SPACE
You PRON
guys NOUN
complain VERB
about ADP
the DET
cost NOUN
of ADP
the DET
anti NOUN
- NOUN
fungals NOUN
. PUNCT
  SPACE
What PRON
do AUX
you PRON
think VERB
the DET
cost NOUN
difference NOUN
between ADP
radiation NOUN
treatment NOUN
and CCONJ
surgery NOUN
is AUX
guys NOUN
? PUNCT
I PRON
'm AUX
going VERB
to PART
ask VERB
you PRON
guys NOUN
one NUM
more ADJ
time NOUN
, PUNCT
why ADV
blast VERB
a DET
physician NOUN
who PRON
takes VERB
the DET
chronic ADJ
sinus NOUN
sufferer(like PROPN
Jon PROPN
) PUNCT
and CCONJ
the DET
chronic ADJ
GI PROPN
sufferer(like PROPN
Elaine)and PROPN
tries VERB
to PART
help VERB
them PRON
using VERB
unconventional ADJ
treatments NOUN
? PUNCT
  SPACE
Treatments NOUN
which PRON
do AUX
not PART
result VERB
in ADP
death(like PROPN
those DET
that SCONJ
the DET
neurosurgeon NOUN
uses VERB
? PUNCT
) PUNCT
. PUNCT
  SPACE
Is AUX
it PRON
because SCONJ
candida PROPN
blooms NOUN
are AUX
not PART
life NOUN
- PUNCT
threatening VERB
while SCONJ
brain NOUN
tumors NOUN
are?How INTJ
about ADP
quality NOUN
of ADP
life NOUN
guys NOUN
? PUNCT
  SPACE
May AUX
the DET
candida PROPN
demon NOUN
never ADV
cross VERB
your PRON
sinus NOUN
cavity NOUN
or CCONJ
gut(if NOUN
it PRON
does AUX
, PUNCT
you PRON
may AUX
feel VERB
differently ADV
about ADP
the DET
issue).Marty NOUN
B.Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59549From NUM
: PUNCT
sdl@linus.mitre.org PROPN
( PUNCT
Steven PROPN
D. PROPN
Litvintchouk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidIn NOUN
article NOUN
< X
1993Apr29.052044.23918@nmt.edu NUM
> X
houle@nmt.edu NUM
( PUNCT
Paul PROPN
Houle PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
advice NOUN
for ADP
the DET
use NOUN
of ADP
> X
antihistamines NOUN
as SCONJ
sleep PROPN
aids PROPN
, PUNCT
  SPACE
and CCONJ
if SCONJ
there PRON
are AUX
any DET
dangers NOUN
of ADP
such ADJ
use NOUN
> X
( PUNCT
Seems VERB
safe ADJ
to ADP
me PRON
since SCONJ
they PRON
are AUX
used VERB
chronically ADV
for ADP
allergies NOUN
by ADP
> X
millions NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
want VERB
to PART
try VERB
BZs NOUN
, PUNCT
  SPACE
because SCONJ
BZ PROPN
addiction NOUN
seems VERB
to PART
be AUX
> X
a DET
serious ADJ
threat NOUN
, PUNCT
  SPACE
and CCONJ
from ADP
what PRON
I PRON
hear VERB
, PUNCT
  SPACE
BZ PROPN
sleep NOUN
quality NOUN
is AUX
not PART
good ADJ
, PUNCT
> X
whereas SCONJ
antihistamine PROPN
sleep NOUN
quality NOUN
seems VERB
to PART
be AUX
better ADJ
for ADP
me PRON
. PUNCT
  SPACE
I PRON
have AUX
> X
tried VERB
some DET
dietary ADJ
tryptophan ADJ
loading NOUN
stuff NOUN
, PUNCT
  SPACE
and CCONJ
that SCONJ
also ADV
seems VERB
to PART
> VERB
lower ADJ
sleep NOUN
quality NOUN
, PUNCT
  SPACE
I PRON
seem VERB
to PART
wake VERB
up ADP
around ADV
4:00 NUM
or CCONJ
so ADV
and CCONJ
be AUX
in ADP
some DET
> X
kind NOUN
of ADP
mental ADJ
haze NOUN
until ADP
7:00 NUM
or CCONJ
8:00 NUM
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
I PRON
would AUX
be AUX
interested ADJ
in ADP
> X
any DET
other ADJ
advice NOUN
for ADP
helping VERB
my PRON
problem NOUN
. PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
've AUX
already ADV
tried VERB
> X
many ADJ
of ADP
the DET
non ADJ
- ADJ
pharmacological ADJ
solutions)Antihistamines NOUN
have AUX
been AUX
the DET
active ADJ
ingredient NOUN
of ADP
OTC PROPN
sleep NOUN
aids PROPN
fordecades NOUN
. PUNCT
  SPACE
Go VERB
to ADP
any DET
drugstore NOUN
and CCONJ
look VERB
at ADP
the DET
packages NOUN
of ADP
such ADJ
sleepaids NOUN
as SCONJ
Sominex PROPN
, PUNCT
Nytol PROPN
, PUNCT
etc X
. PUNCT
  SPACE
The DET
active ADJ
ingredient NOUN
is AUX
: PUNCT
diphenhydramine PROPN
, PUNCT
the DET
same ADJ
antihistamine NOUN
that PRON
's AUX
in ADP
Benadryl.--Steven NUM
LitvintchoukMITRE PROPN
Corporation202 PROPN
Burlington PROPN
RoadBedford PROPN
, PUNCT
MA PROPN
  SPACE
01730 NUM
- SYM
1420Fone NUM
: SYM
  SPACE
( PUNCT
617)271 NUM
- PUNCT
7753ARPA NUM
: PUNCT
  SPACE
sdl@mitre.orgUUCP X
: PUNCT
  SPACE
linus!sdlNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59550From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Annual ADJ
inguinal ADJ
hernia PROPN
repair NOUN
> X
> X
In ADP
article NOUN
< X
jpc.735692207@avdms8.msfc.nasa.gov PROPN
> PROPN
, PUNCT
jpc@avdms8.msfc.nasa.gov PROPN
> X
( PUNCT
J. PROPN
Porter PROPN
Clark PROPN
) PUNCT
wrote VERB
: PUNCT
> X
[ PUNCT
synopsis NOUN
] PUNCT
Young ADJ
man NOUN
with ADP
inguianl PROPN
hernia PROPN
on ADP
one NUM
side NOUN
, PUNCT
repaired VERB
, PUNCT
now ADV
has AUX
> X
new ADJ
hernia PROPN
on ADP
other ADJ
side NOUN
. PUNCT
  SPACE
What PRON
gives VERB
, PUNCT
he PRON
asks VERB
? PUNCT
  SPACE
[ PUNCT
and CCONJ
he PRON
continues VERB
... PUNCT
] PUNCT
> X
> X
Of ADV
course ADV
, PUNCT
my PRON
wife NOUN
thinks VERB
it PRON
's AUX
from ADP
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
> X
> X
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
... PUNCT
> X
> X
There PRON
is AUX
the DET
possibility NOUN
that SCONJ
there PRON
is AUX
some DET
degree NOUN
of ADP
constipation NOUN
causing VERB
> X
chronic NOUN
straining NOUN
which PRON
has AUX
caused VERB
the DET
bowel NOUN
movements NOUN
. PUNCT
  SPACE
The DET
classic ADJ
> X
problems NOUN
that PRON
are AUX
supposed VERB
to PART
be AUX
looked VERB
for ADP
in ADP
someone PRON
with ADP
a DET
hernia PROPN
are AUX
> X
constipation NOUN
, PUNCT
chronic ADJ
cough NOUN
, PUNCT
colon NOUN
cancer NOUN
( PUNCT
and CCONJ
you PRON
're AUX
not PART
too ADV
young ADJ
for ADP
> X
that DET
) PUNCT
and CCONJ
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
. PUNCT
> X
> X
Good ADJ
Luck PROPN
with ADP
your PRON
surgery NOUN
! PUNCT
> X
> X
Steve PROPN
HollandWell PROPN
, PUNCT
that DET
post NOUN
was AUX
not PART
that ADV
accurate ADJ
. PUNCT
  SPACE
People NOUN
with ADP
early ADJ
life NOUN
herniasare NOUN
felt VERB
to PART
have AUX
a DET
congenital ADJ
sack NOUN
that PRON
promotes VERB
the DET
formation NOUN
of ADP
hernias NOUN
. PUNCT
The DET
hernias NOUN
of ADP
later ADJ
life NOUN
may AUX
be AUX
more ADV
associated VERB
with ADP
chronic ADJ
straining NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
the DET
risk NOUN
of ADP
damage NOUN
to ADP
the DET
intestine NOUN
without ADP
an DET
operation NOUN
is AUX
high ADJ
enough ADV
that SCONJ
it PRON
ought AUX
to PART
be AUX
repaired VERB
. PUNCT
  SPACE
The DET
risk NOUN
of ADP
cancer NOUN
is AUX
probablyno NOUN
higher ADJ
than SCONJ
the DET
general ADJ
population NOUN
, PUNCT
but CCONJ
since SCONJ
you PRON
are AUX
near SCONJ
40 NUM
, PUNCT
it PRON
wouldbe VERB
sensible ADJ
to PART
have AUX
some DET
sort NOUN
of ADP
cancer NOUN
screening NOUN
, PUNCT
such ADJ
as SCONJ
a DET
flexiblesigmoidoscopy NOUN
. PUNCT
  SPACE
Sorry ADJ
for ADP
the DET
misleading ADJ
info NOUN
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59551From NUM
: PUNCT
klier@iscsvax.uni.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser NOUN
printers??In NUM
article NOUN
< X
1993Apr29.124806.4599@Informatik PROPN
. PUNCT
TU PROPN
- PUNCT
Muenchen PROPN
. PUNCT
DE PROPN
> PROPN
, PUNCT
rdd@uts.ipp-garching.mpg.de PROPN
( PUNCT
Reinhard PROPN
Drube PROPN
) PUNCT
writes VERB
: PUNCT
> X
does AUX
anyone PRON
know VERB
about ADP
allergic ADJ
reactions NOUN
caused VERB
by ADP
the DET
developer NOUN
/ SYM
toner NOUN
> X
of ADP
laser NOUN
printers NOUN
? PUNCT
What PRON
chemical NOUN
stuff NOUN
is AUX
involved?Mainly ADV
carbon NOUN
dust NOUN
with ADP
iron NOUN
in ADP
a DET
plastic ADJ
binder NOUN
that PRON
is AUX
melted VERB
on ADP
to PART
thepaper VERB
. PUNCT
  SPACE
Same ADJ
stuff NOUN
as SCONJ
dry ADJ
paper NOUN
photocopiers NOUN
. PUNCT
Allergies NOUN
? PUNCT
  SPACE
Have AUX
n't PART
heard VERB
of ADP
any DET
, PUNCT
but CCONJ
anything PRON
's AUX
possible ADJ
with ADP
allergies NOUN
; PUNCT
-)Kay PROPN
Klier PROPN
  SPACE
Biology PROPN
Dept PROPN
  SPACE
UNINewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59552From NUM
: PUNCT
gecko@camelot.bradley.edu NUM
( PUNCT
Anastasia PROPN
Defend)Subject NUM
: PUNCT
Physical PROPN
Therapy NOUN
StudentsI NOUN
am AUX
interested ADJ
in ADP
finding VERB
other ADJ
Physical PROPN
Therapy PROPN
Students PROPN
on ADP
thenet NOUN
... PUNCT
If SCONJ
you PRON
are AUX
one NUM
, PUNCT
or CCONJ
you PRON
know VERB
anyone PRON
could AUX
you PRON
get AUX
into ADP
contactwith PROPN
me PRON
via ADP
email NOUN
, PUNCT
my PRON
address NOUN
isgecko@camelot.bradley.edu PROPN
				 SPACE
thankyou NOUN
					 SPACE
anastasia PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59553From NUM
: PUNCT
SFB2763@MVS.draper.com X
( PUNCT
Eileen PROPN
Bauer)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
1993Apr30.162636.22327@cc.ic.ac.uk>,ewolff@ps.ic.ac.uk NUM
( PUNCT
Erik PROPN
The DET
Viking PROPN
) PUNCT
writes:>Hi.>>My NOUN
wife NOUN
has AUX
aquired VERB
some DET
thyroidal ADJ
( PUNCT
sp PROPN
? PUNCT
) PUNCT
deficiency NOUN
over ADP
the DET
past ADJ
year NOUN
> X
that PRON
gives VERB
symptoms NOUN
such ADJ
as SCONJ
needing VERB
much ADJ
sleep NOUN
, PUNCT
coldness NOUN
and CCONJ
proneness NOUN
> X
to ADP
gaining VERB
weight NOUN
. PUNCT
She PRON
has AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
taken VERB
the DET
ordinary ADJ
( PUNCT
? PUNCT
) PUNCT
> X
tests NOUN
and CCONJ
her PRON
values NOUN
were AUX
regarded VERB
as ADV
low ADJ
. PUNCT
The DET
doctor NOUN
( PUNCT
and CCONJ
my PRON
wife NOUN
) PUNCT
are AUX
> X
not PART
very ADV
interested ADJ
in ADP
starting VERB
medication NOUN
as SCONJ
this DET
" PUNCT
deactivates VERB
" PUNCT
the DET
> X
gland NOUN
, PUNCT
giving VERB
life NOUN
- PUNCT
long ADJ
dependency NOUN
to ADP
the DET
drug NOUN
( PUNCT
hormone?).> PROPN
... PUNCT
>My PROPN
questions NOUN
are AUX
: PUNCT
has AUX
anyone PRON
had VERB
/ SYM
heard VERB
of ADP
success NOUN
in ADP
using VERB
this DET
approach?>Her NOUN
values NOUN
have AUX
been AUX
( PUNCT
slowly ADV
but CCONJ
) PUNCT
steadily ADV
sinking VERB
, PUNCT
any DET
comment NOUN
on ADP
the DET
> X
probability NOUN
of ADP
improvement NOUN
? PUNCT
Although SCONJ
the DET
doctor NOUN
has AUX
told VERB
her PRON
to PART
' PUNCT
eat VERB
> X
normally ADV
' PUNCT
, PUNCT
my PRON
wife NOUN
has AUX
dieted VERB
vigorously ADV
to PART
keep VERB
her PRON
weight NOUN
as SCONJ
she PRON
feels VERB
> X
that DET
is AUX
part NOUN
of ADP
keeping VERB
an DET
edge NOUN
over ADP
the DET
illness NOUN
/ SYM
condition NOUN
, PUNCT
may AUX
this DET
> X
affect VERB
the DET
treatment NOUN
, PUNCT
development?>There PUNCT
are AUX
several ADJ
different ADJ
types NOUN
of ADP
Thyroid PROPN
diseases NOUN
which PRON
would AUX
causea VERB
hypothyroid ADJ
condition NOUN
( PUNCT
reduction NOUN
in ADP
the DET
output NOUN
of ADP
the DET
thyroid NOUN
, PUNCT
mainlythyroxin NOUN
) PUNCT
. PUNCT
Except SCONJ
for ADP
ones NOUN
caused VERB
by ADP
infections NOUN
, PUNCT
the DET
treatment NOUN
isgenerally ADV
thyroxin VERB
pills NOUN
. PUNCT
Hypothyroid ADJ
conditions NOUN
caused VERB
by ADP
infectionsusually ADV
disappear VERB
when ADV
the DET
infection NOUN
does AUX
... PUNCT
this DET
does AUX
n't PART
sound VERB
like SCONJ
thecase NOUN
with ADP
your PRON
wife NOUN
. PUNCT
Thyroxin NOUN
orally ADV
does AUX
" PUNCT
shut VERB
down ADP
the DET
thyroid NOUN
" PUNCT
through ADP
a DET
feedback NOUN
loopinvolving VERB
the DET
pituitary NOUN
( PUNCT
I PRON
believe VERB
) PUNCT
. PUNCT
The DET
pituitary NOUN
" PUNCT
thinks VERB
" PUNCT
that DET
thecorrect NOUN
amount NOUN
of ADP
thyroxin NOUN
is AUX
being AUX
produced VERB
so SCONJ
it PRON
does AUX
n't PART
have AUX
totell PROPN
the DET
thyroid NOUN
to PART
produce VERB
more ADJ
. PUNCT
This DET
process NOUN
is AUX
reversable ADJ
! PUNCT
I PRON
haveHashimoto VERB
's PART
thyroiditis NOUN
( PUNCT
an DET
autoimmune ADJ
condition NOUN
) PUNCT
and CCONJ
was AUX
on ADP
thyroxinfor ADP
approx PROPN
6 NUM
mo NOUN
when ADV
my PRON
endocrinologist NOUN
suggested VERB
I PRON
not PART
take VERB
the DET
pillsfor NOUN
6 NUM
wks NOUN
. PUNCT
When ADV
I PRON
was AUX
retested VERB
for ADP
thyroxin NOUN
levels NOUN
, PUNCT
they PRON
were AUX
normal ADJ
. PUNCT
I PRON
still ADV
get VERB
tested VERB
every DET
6mo NOUN
because SCONJ
the DET
condition NOUN
might AUX
reappear VERB
. PUNCT
The DET
pills NOUN
are AUX
safe ADJ
and CCONJ
have AUX
very ADV
few ADJ
side NOUN
- PUNCT
affects NOUN
( PUNCT
& CCONJ
those DET
mostly ADV
atbeginning VERB
of ADP
treatment NOUN
) PUNCT
. PUNCT
Having VERB
a DET
baby NOUN
might AUX
be AUX
a DET
problem NOUN
and CCONJ
would AUX
atleast ADV
require VERB
closer ADJ
monitoring NOUN
of ADP
hormone NOUN
levels NOUN
. PUNCT
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart),changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things NOUN
. PUNCT
I PRON
am AUX
not PART
a DET
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
I PRON
mistated VERB
something PRON
, PUNCT
but CCONJ
the DET
importantthing NOUN
is AUX
that SCONJ
thyroid NOUN
problems NOUN
are AUX
usually ADV
easily ADV
corrected VERB
and CCONJ
if SCONJ
theyaren't PROPN
corrected VERB
can AUX
cause VERB
problems NOUN
in ADP
the DET
rest NOUN
of ADP
the DET
body NOUN
. PUNCT
Get AUX
asecond NOUN
opinion NOUN
from ADP
a DET
good ADJ
endocrinologist NOUN
and CCONJ
have AUX
him PRON
/ SYM
her PRON
explainthings NOUN
in ADP
detail NOUN
to ADP
you PRON
and CCONJ
your PRON
wife.- PROPN
Eileen PROPN
BauerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59554From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Vitamin PROPN
A NOUN
and CCONJ
InfectionI've NOUN
sent VERB
Gordon PROPN
R. PROPN
my PRON
posts NOUN
on ADP
protein NOUN
, PUNCT
vitamin NOUN
C NOUN
and CCONJ
vitamin NOUN
A NOUN
prior ADV
to ADP
posting VERB
on ADP
internet NOUN
as SCONJ
a DET
professional ADJ
courtesy NOUN
. PUNCT
  SPACE
Somehow ADV
I PRON
've AUX
managed VERB
to PART
delete VERB
my PRON
vitamin NOUN
A DET
post NOUN
from ADP
my PRON
text NOUN
file NOUN
. PUNCT
  SPACE
Gordon PROPN
R. PROPN
had AUX
promised VERB
to PART
send VERB
it PRON
back ADV
to ADP
me PRON
but CCONJ
he PRON
's AUX
pretty ADV
mad ADJ
at ADP
me PRON
right ADV
now ADV
so ADV
I PRON
'll AUX
just ADV
retype VERB
it PRON
. PUNCT
Since SCONJ
digging VERB
through ADP
all DET
my PRON
references NOUN
is AUX
very ADV
time NOUN
consuming(took VERB
me PRON
all DET
day NOUN
for ADP
that DET
PMS PROPN
post NOUN
) PUNCT
, PUNCT
I PRON
'm AUX
not PART
going VERB
to PART
cite VERB
any DET
references(Gordon PROPN
R. PROPN
has AUX
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
going VERB
to PART
include VERB
some DET
of ADP
the DET
material NOUN
from ADP
Weinsier PROPN
and CCONJ
Morgan PROPN
's PART
new ADJ
Nutrition PROPN
textbook(which PROPN
was AUX
not PART
in ADP
my PRON
original ADJ
material NOUN
) PUNCT
to PART
point VERB
out ADP
that SCONJ
what PRON
I PRON
'm AUX
going VERB
to PART
say VERB
has AUX
some DET
support NOUN
in ADP
the DET
medical ADJ
community NOUN
. PUNCT
Diet PROPN
has AUX
been AUX
know VERB
to PART
affect VERB
the DET
immune ADJ
system NOUN
of ADP
man NOUN
for ADP
a DET
very ADV
, PUNCT
very ADV
long ADJ
time NOUN
. PUNCT
  SPACE
Protein PROPN
has AUX
always ADV
had VERB
the DET
biggest ADJ
role NOUN
in ADP
infection NOUN
and CCONJ
I PRON
've AUX
already ADV
covered VERB
the DET
role NOUN
of ADP
protein NOUN
in ADP
protecting VERB
you PRON
against ADP
infection NOUN
. PUNCT
Now ADV
I PRON
'm AUX
going VERB
to PART
hit VERB
what PRON
I PRON
consider VERB
to PART
be AUX
the DET
most ADV
important ADJ
nutrient NOUN
in ADP
the DET
U.S. PROPN
as ADV
far ADV
as SCONJ
infection NOUN
is AUX
concerned(vitamin PROPN
A).When PROPN
vitamin PROPN
A PROPN
was AUX
originally ADV
discovered VERB
, PUNCT
it PRON
was AUX
commonly ADV
referred VERB
to ADP
as SCONJ
the DET
anti ADJ
- ADJ
infection ADJ
vitamin NOUN
. PUNCT
  SPACE
Many ADJ
people(Linus NOUN
Pauling VERB
being AUX
one NUM
) PUNCT
have AUX
decided VERB
to PART
take VERB
this DET
title NOUN
away ADV
from ADP
vitamin NOUN
A NOUN
and CCONJ
give VERB
it PRON
to ADP
vitamin NOUN
C(which PROPN
I PRON
've AUX
already ADV
covered VERB
) PUNCT
. PUNCT
  SPACE
Big ADJ
mistake(in PROPN
my PRON
opinion NOUN
) PUNCT
. PUNCT
  SPACE
Vitamin PROPN
A PROPN
is AUX
also ADV
getting VERB
a DET
reputation NOUN
as SCONJ
an DET
anti ADJ
- ADJ
cancer ADJ
vitamin(with PROPN
good ADJ
reason).The PROPN
NCI PROPN
currently ADV
has AUX
numerous ADJ
clinical ADJ
trials NOUN
in ADP
progress NOUN
to PART
see VERB
if SCONJ
vitamin NOUN
A NOUN
can AUX
not PART
only ADV
prevent VERB
cancer NOUN
but CCONJ
cure VERB
it PRON
as ADV
well ADV
. PUNCT
  SPACE
It PRON
's AUX
role NOUN
in ADP
both CCONJ
cancer NOUN
and CCONJ
infection NOUN
is AUX
almost ADV
identical(but NUM
not PART
quite).Vitamin PUNCT
A DET
comes VERB
in ADP
two NUM
completely ADV
different ADJ
forms(retinol NOUN
and CCONJ
beta NOUN
- PUNCT
carotene NOUN
) PUNCT
. PUNCT
  SPACE
Retinol PROPN
is AUX
the DET
animal NOUN
form NOUN
and CCONJ
it PRON
's AUX
toxic ADJ
, PUNCT
beta NOUN
- PUNCT
carotene NOUN
is AUX
the DET
plant NOUN
form NOUN
and CCONJ
it PRON
's AUX
completely ADV
nontoxic ADJ
. PUNCT
  SPACE
Both CCONJ
retinol NOUN
and CCONJ
beta NOUN
- PUNCT
carotene NOUN
display NOUN
good ADJ
absorption NOUN
in ADP
the DET
human ADJ
gut NOUN
if SCONJ
bile NOUN
is AUX
present(60 PROPN
- PUNCT
80 NUM
% NOUN
) PUNCT
. PUNCT
  SPACE
The DET
liver NOUN
stores NOUN
all DET
of ADP
your PRON
retinol NOUN
and CCONJ
doles VERB
it PRON
out ADP
for ADP
other ADJ
tissues NOUN
to PART
use VERB
by ADP
synthesizing VERB
retinol NOUN
binding NOUN
protein(RBP NOUN
) PUNCT
. PUNCT
  SPACE
A DET
normal ADJ
human ADJ
adult NOUN
liver NOUN
should AUX
have AUX
500,000IU NUM
to PART
1,000,000IU NUM
of ADP
retinol NOUN
stored VERB
. PUNCT
  SPACE
We PRON
are AUX
born VERB
with ADP
10,000IU NUM
in ADP
our PRON
liver NOUN
. PUNCT
  SPACE
U.S. PROPN
autopsy ADV
has AUX
shown VERB
that SCONJ
about ADV
30 NUM
% NOUN
of ADP
Americans PROPN
die VERB
with ADP
the DET
same(or PROPN
less ADV
) PUNCT
amount NOUN
of ADP
vitamin NOUN
A NOUN
as SCONJ
they PRON
were AUX
born VERB
with ADP
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
believe VERB
that DET
nutritional NOUN
reserves(like PROPN
that DET
of ADP
retinol NOUN
in ADP
the DET
liver NOUN
) PUNCT
are AUX
important ADJ
, PUNCT
then ADV
this DET
low ADJ
vitamin NOUN
A DET
reserve NOUN
is AUX
not PART
going VERB
to PART
affect VERB
you PRON
. PUNCT
  SPACE
But CCONJ
if SCONJ
you PRON
believe(like VERB
I PRON
do AUX
) PUNCT
that SCONJ
the DET
nutrient ADJ
reserves NOUN
are AUX
important ADJ
, PUNCT
then ADV
there PRON
is AUX
a DET
problem NOUN
with ADP
vitamin NOUN
A NOUN
in ADP
the DET
U.S.The PROPN
U.S. PROPN
RDA PROPN
for ADP
vitamin NOUN
A NOUN
in ADP
an DET
adult NOUN
male NOUN
is AUX
1,000 NUM
RE PROPN
or CCONJ
5,000IU NUM
of ADP
vitamin NOUN
A. NOUN
  SPACE
For ADP
adult NOUN
feamles NOUN
its PRON
800 NUM
RE PROPN
or CCONJ
4,000IU NUM
of ADP
vitamin NOUN
A. NOUN
  SPACE
Diet PROPN
surveys NOUN
show VERB
that SCONJ
most ADJ
Americans PROPN
are AUX
getting VERB
this DET
amount NOUN
of ADP
vitamin NOUN
A(either NOUN
retinol NOUN
or CCONJ
Beta NOUN
- PUNCT
carotene NOUN
) PUNCT
from ADP
their PRON
diet NOUN
. PUNCT
  SPACE
But CCONJ
the DET
NRC(National PROPN
Research PROPN
Council PROPN
) PUNCT
was AUX
going VERB
to PART
release VERB
a DET
new ADJ
RDA PROPN
table NOUN
in ADP
1985 NUM
that PRON
had AUX
the DET
RDA PROPN
for ADP
both DET
vitamin NOUN
A NOUN
and CCONJ
vitamin NOUN
C NOUN
raised(C NOUN
to ADP
90 NUM
mg NOUN
per ADP
day NOUN
and CCONJ
A NOUN
to ADP
7,500IU NUM
per ADP
day NOUN
for ADP
adult NOUN
males NOUN
) PUNCT
. PUNCT
  SPACE
That DET
report NOUN
and CCONJ
it PRON
's AUX
recommendations NOUN
was AUX
killed VERB
. PUNCT
  SPACE
Why ADV
? PUNCT
Concern NOUN
over ADP
the DET
increasing VERB
supplementation NOUN
was AUX
the DET
main ADJ
reason NOUN
. PUNCT
  SPACE
RDAs NOUN
are AUX
set VERB
to PART
prevent VERB
clinical ADJ
disease NOUN
, PUNCT
not PART
to PART
keep VERB
nutrient ADJ
reserves NOUN
full ADJ
. PUNCT
  SPACE
Many ADJ
scientist NOUN
in ADP
the DET
U.S. PROPN
feel VERB
that SCONJ
the DET
time NOUN
has AUX
come VERB
to PART
move VERB
away ADV
from ADP
the DET
prevention NOUN
of ADP
clinical ADJ
pathology NOUN
concept NOUN
and CCONJ
move VERB
towards ADP
the DET
promotion NOUN
of ADP
optimum ADJ
health NOUN
concept NOUN
, PUNCT
especially ADV
since SCONJ
we PRON
have AUX
some DET
very ADV
good ADJ
data NOUN
now ADV
that PRON
show VERB
that SCONJ
nutrient ADJ
reserves NOUN
are AUX
extremely ADV
important ADJ
during ADP
periods NOUN
of ADP
stress NOUN
. PUNCT
  SPACE
The DET
nutritonal ADJ
concervatives NOUN
won VERB
that DET
battle NOUN
and CCONJ
a DET
new ADJ
group NOUN
of ADP
scientist NOUN
were AUX
collected VERB
to PART
come VERB
out ADP
with ADP
the DET
1989 NUM
RDA PROPN
list NOUN
which PRON
lowered VERB
the DET
RDA PROPN
for ADP
several ADJ
nutrients NOUN
and CCONJ
moved VERB
the DET
dietary ADJ
guidelines NOUN
back ADV
to ADP
where ADV
they PRON
were AUX
when ADV
we PRON
first ADV
started VERB
in ADP
the DET
1940's(get PROPN
enough ADV
to PART
prevent VERB
clinical ADJ
pathology NOUN
, PUNCT
but CCONJ
not PART
enough ADJ
to PART
fill VERB
the DET
reserves).We ADJ
know NOUN
from ADP
autopsy ADV
that SCONJ
only ADV
about ADV
10 NUM
% NOUN
of ADP
Americans PROPN
have AUX
a DET
liver NOUN
with ADP
a DET
normal ADJ
vitamin NOUN
A DET
reserve(500,000IU NOUN
to ADP
1,000,000IU NUM
) PUNCT
. PUNCT
  SPACE
I PRON
preach VERB
nutrient ADJ
reserves NOUN
to ADP
my PRON
students NOUN
and CCONJ
tell VERB
them PRON
to PART
measure VERB
them PRON
in ADP
their PRON
patients NOUN
. PUNCT
But CCONJ
for ADP
vitamin NOUN
A NOUN
, PUNCT
only ADV
a DET
liver NOUN
biopsy(or X
autopsy ADJ
data NOUN
) PUNCT
will AUX
tell VERB
you PRON
how ADV
much ADJ
somebody PRON
has AUX
stored VERB
. PUNCT
  SPACE
We PRON
can AUX
tell VERB
very ADV
easily ADV
if SCONJ
someone PRON
has AUX
overfilled VERB
his PRON
or CCONJ
her PRON
liver NOUN
with ADP
vitamin NOUN
A NOUN
by ADP
measuring VERB
the DET
serium NOUN
retinol NOUN
level(levels PROPN
above ADP
450ug PROPN
/ SYM
dl PROPN
are AUX
highly ADV
suggestive ADJ
that SCONJ
you PRON
have AUX
filled VERB
your PRON
liver NOUN
with ADP
vitamin NOUN
A NOUN
and CCONJ
it PRON
's AUX
time NOUN
to PART
stop VERB
taking VERB
retinol NOUN
) PUNCT
. PUNCT
  SPACE
The DET
normal ADJ
range NOUN
of ADP
serum ADJ
retinol NOUN
will AUX
be AUX
20 NUM
- PUNCT
100ug PROPN
/ SYM
dl PROPN
. PROPN
  SPACE
Hypervitaminosis PROPN
A PROPN
is AUX
diagnosed VERB
with ADP
a DET
serum ADJ
retinol NOUN
level NOUN
of ADP
2,000ug NUM
/ SYM
dl PROPN
or CCONJ
higher(Interpretation NOUN
of ADP
Diagnostic PROPN
Test PROPN
, PUNCT
Wallach PROPN
, PUNCT
M.D. PROPN
, PUNCT
a DET
Little PROPN
Brown PROPN
Series PROPN
book NOUN
) PUNCT
. PUNCT
  SPACE
This DET
level NOUN
of ADP
vitamin NOUN
A NOUN
in ADP
blood NOUN
means VERB
that SCONJ
medical ADJ
attention NOUN
is AUX
necessary ADJ
due ADP
to ADP
vitamin NOUN
A DET
toxicity NOUN
. PUNCT
  SPACE
Weinsier PROPN
and CCONJ
Morgan PROPN
take VERB
a DET
much ADV
more ADV
conservative ADJ
approach NOUN
to PART
vitamin NOUN
A DET
toxicity NOUN
than SCONJ
does AUX
Wallach PROPN
, PUNCT
as SCONJ
you PRON
will AUX
see VERB
later ADV
in ADP
this DET
post NOUN
. PUNCT
  SPACE
Between ADP
450ug PROPN
/ SYM
dl PROPN
and CCONJ
2,000ug PROPN
/ SYM
dl PROPN
you PRON
should AUX
have AUX
plenty NOUN
of ADP
warning NOUN
that SCONJ
it PRON
's AUX
time NOUN
to PART
eliminate VERB
the DET
retinol NOUN
from ADP
your PRON
diet(headache PROPN
, PUNCT
redness NOUN
of ADP
the DET
skin NOUN
, PUNCT
hair NOUN
loss NOUN
, PUNCT
joint ADJ
pain).I X
tell VERB
all DET
my PRON
students NOUN
that PRON
will AUX
use VERB
vitamin NOUN
A NOUN
in ADP
their PRON
practice NOUN
that SCONJ
they PRON
had AUX
better ADV
monitor VERB
the DET
serum NOUN
retinol NOUN
level NOUN
and CCONJ
stop VERB
when ADV
there PRON
are AUX
clear ADJ
signs NOUN
that SCONJ
the DET
liver NOUN
is AUX
full ADJ
. PUNCT
  SPACE
You PRON
will AUX
never ADV
really ADV
know VERB
if SCONJ
the DET
patient NOUN
needs VERB
the DET
vitamin NOUN
A(because VERB
you PRON
can AUX
not PART
measure VERB
the DET
pool NOUN
in ADP
liver NOUN
) PUNCT
but CCONJ
you PRON
will AUX
always ADV
know VERB
when ADV
it PRON
's AUX
time NOUN
to ADP
stop(just PROPN
like INTJ
in ADP
those DET
vitamin NOUN
A NOUN
for ADP
PMS PROPN
studies).Beta NOUN
- PUNCT
carotene NOUN
can AUX
be AUX
taken VERB
to PART
fill VERB
up ADP
your PRON
liver NOUN
with ADP
retinol NOUN
and CCONJ
you PRON
will AUX
never ADV
have AUX
to PART
worry VERB
about ADP
toxicity NOUN
because SCONJ
the DET
conversion NOUN
of ADP
beta NOUN
- PUNCT
carotene NOUN
to PART
retinol VERB
that PRON
occurs VERB
in ADP
both CCONJ
your PRON
gut NOUN
and CCONJ
your PRON
liver NOUN
will AUX
slow VERB
down(stops NOUN
in ADP
the DET
liver NOUN
and CCONJ
slows VERB
down ADP
in ADP
the DET
gut NOUN
) PUNCT
when ADV
your PRON
liver NOUN
is AUX
full ADJ
of ADP
retinol NOUN
. PUNCT
  SPACE
But CCONJ
taking VERB
Beta NOUN
- PUNCT
carotene NOUN
as SCONJ
the DET
source NOUN
of ADP
retinol NOUN
takes VERB
a DET
very ADV
long ADJ
time NOUN
to PART
fill VERB
the DET
liver NOUN
up(I've NOUN
seen VERB
estimates NOUN
of ADP
20 NUM
- SYM
30 NUM
years NOUN
) PUNCT
if SCONJ
you PRON
are AUX
in ADP
the DET
30 NUM
% NOUN
that PRON
only ADV
has AUX
as ADV
much ADJ
as SCONJ
you PRON
were AUX
born VERB
with ADP
in ADP
your PRON
liver(10,000IU NOUN
) PUNCT
. PUNCT
  SPACE
One NUM
other ADJ
problem NOUN
with ADP
beta NOUN
- PUNCT
carotene NOUN
, PUNCT
if SCONJ
you PRON
have AUX
a DET
zinc NOUN
deficit NOUN
, PUNCT
you PRON
will AUX
not PART
convert VERB
as SCONJ
much ADJ
beta NOUN
- PUNCT
carotene NOUN
to PART
retinol VERB
in ADP
the DET
gut NOUN
or CCONJ
the DET
liver NOUN
because SCONJ
the DET
enxzyme NOUN
that PRON
does AUX
this DET
conversion NOUN
requires VERB
zinc NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
release NOUN
of ADP
retinol NOUN
from ADP
the DET
liver NOUN
is AUX
a DET
zinc NOUN
dependent ADJ
process NOUN
so SCONJ
a DET
zinc NOUN
deficit NOUN
will AUX
cause VERB
a DET
vitamin NOUN
A DET
deficit NOUN
even ADV
if SCONJ
your PRON
liver NOUN
has AUX
plenty NOUN
of ADP
vitamin NOUN
A.Now PROPN
what PRON
does AUX
vitamin NOUN
A DET
do NOUN
in ADP
cancer NOUN
and CCONJ
infection NOUN
protection NOUN
? PUNCT
  SPACE
The DET
body NOUN
uses VERB
vitamin NOUN
A(retinol PROPN
) PUNCT
for ADP
many ADJ
different ADJ
things NOUN
. PUNCT
  SPACE
Vision(the PROPN
first ADJ
to PART
be AUX
nailed VERB
down ADP
and CCONJ
where ADV
you PRON
see VERB
overt ADJ
clinical ADJ
pathology NOUN
) PUNCT
uses VERB
the DET
aldehyde(retinal PROPN
) PUNCT
and CCONJ
alcohol(retinol PROPN
) PUNCT
form NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
Reproduction NOUN
uses VERB
the DET
retinol NOUN
form NOUN
  SPACE
and CCONJ
some DET
retinal ADJ
. PUNCT
  SPACE
Infection NOUN
and CCONJ
cancer NOUN
protection NOUN
uses VERB
retinoic ADJ
acid NOUN
. PUNCT
  SPACE
How ADV
do AUX
you PRON
convert VERB
retinol(which PROPN
your PRON
white ADJ
blood NOUN
cells NOUN
and CCONJ
the DET
mucosal ADJ
cells NOUN
get VERB
from ADP
blood NOUN
) PUNCT
to PART
retinoic VERB
acid NOUN
? PUNCT
  SPACE
You PRON
use VERB
enzymes NOUN
, PUNCT
one NUM
of ADP
which PRON
requires VERB
vitamin NOUN
C(this PROPN
is AUX
why ADV
Pauling PROPN
has AUX
tried VERB
to PART
pull VERB
the DET
title NOUN
of ADP
anti ADJ
- ADJ
infection ADJ
vitamin NOUN
away ADV
from ADP
vitamin NOUN
A NOUN
) PUNCT
. PUNCT
  SPACE
Vitamin PROPN
C PROPN
does AUX
play VERB
a DET
role NOUN
in ADP
infection(interferon PROPN
production NOUN
for ADP
example NOUN
) PUNCT
but CCONJ
it PRON
's AUX
biggest ADJ
role NOUN
is AUX
the DET
conversion NOUN
of ADP
retinol NOUN
to PART
retinoic VERB
acid NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
increase VERB
your PRON
intake NOUN
of ADP
vitamin NOUN
C NOUN
, PUNCT
you PRON
will AUX
increase VERB
your PRON
formation NOUN
of ADP
retinoic ADJ
acid NOUN
. PUNCT
  SPACE
But CCONJ
retinoic ADJ
acid NOUN
can AUX
not PART
be AUX
converted VERB
back ADV
to ADP
retinol(as PROPN
retinal PROPN
can AUX
) PUNCT
and CCONJ
once SCONJ
it PRON
's AUX
formed VERB
, PUNCT
it PRON
's AUX
used VERB
and CCONJ
then ADV
lost VERB
to ADP
the DET
body NOUN
. PUNCT
  SPACE
This DET
is AUX
why ADV
the DET
1985 NUM
NRC PROPN
group NOUN
wanted VERB
to PART
increase VERB
both DET
vitamin NOUN
C NOUN
and CCONJ
vitamin NOUN
A DET
RDA's NOUN
. PUNCT
Most ADJ
people NOUN
taking VERB
large ADJ
amounts NOUN
of ADP
vitamin NOUN
C NOUN
really ADV
think VERB
that SCONJ
they PRON
are AUX
helping VERB
themselves PRON
. PUNCT
  SPACE
If SCONJ
they PRON
do AUX
n't PART
have AUX
much ADJ
vitamin NOUN
A NOUN
in ADP
their PRON
liver NOUN
and CCONJ
they PRON
are AUX
not PART
also ADV
increasing VERB
their PRON
intake NOUN
of ADP
vitamin NOUN
A NOUN
, PUNCT
they PRON
actually ADV
do AUX
themselves PRON
more ADJ
harm NOUN
than SCONJ
good ADJ
. PUNCT
Retinoic ADJ
acid NOUN
functions NOUN
in ADP
white ADJ
blood NOUN
cells NOUN
to PART
promote VERB
antibody NOUN
formation NOUN
. PUNCT
In ADP
the DET
mucus PROPN
membrane NOUN
, PUNCT
it PRON
is AUX
the DET
main ADJ
factor NOUN
in ADP
promoting VERB
good ADJ
mucus NOUN
production NOUN
and CCONJ
a DET
good ADJ
epithelial ADJ
cell NOUN
barrier NOUN
to PART
prevent VERB
infectious ADJ
agents NOUN
from ADP
entering VERB
the DET
blood NOUN
system NOUN
. PUNCT
  SPACE
The DET
mucus ADJ
membrane NOUN
is AUX
referred VERB
to ADP
as SCONJ
the DET
" PUNCT
first ADJ
line NOUN
" PUNCT
defense NOUN
against ADP
infection NOUN
. PUNCT
  SPACE
For ADP
cancer NOUN
, PUNCT
retinoic NOUN
acid NOUN
has AUX
been AUX
shown VERB
to PART
act VERB
as SCONJ
a DET
cell NOUN
brake(it NOUN
counteracts VERB
the DET
effect NOUN
of ADP
cell NOUN
promoters NOUN
which PRON
stimulate VERB
cells NOUN
to PART
divide VERB
) PUNCT
. PUNCT
  SPACE
Cancer NOUN
has AUX
two NUM
distinct ADJ
steps NOUN
, PUNCT
DNA NOUN
alteration NOUN
and CCONJ
cell NOUN
promotion NOUN
. PUNCT
  SPACE
For ADP
cells NOUN
that PRON
normally ADV
divide VERB
all DET
the DET
time NOUN
, PUNCT
promoters NOUN
are AUX
not PART
that ADV
important ADJ
. PUNCT
  SPACE
But CCONJ
for ADP
lung NOUN
and CCONJ
breast NOUN
tissue NOUN
which PRON
does AUX
not PART
normally ADV
divide VERB
, PUNCT
promoters NOUN
are AUX
real ADV
important ADJ
in ADP
the DET
malignant ADJ
process NOUN
. PUNCT
This DET
is AUX
the DET
major ADJ
reason NOUN
why ADV
the DET
NCI PROPN
has AUX
so ADV
many ADJ
different ADJ
clinical ADJ
trials NOUN
in ADP
progress NOUN
using VERB
retinol NOUN
and/or CCONJ
beta NOUN
- PUNCT
carotene NOUN
. PUNCT
Chronic PROPN
infection(irritation PROPN
) PUNCT
of ADP
the DET
mucus PROPN
membranes PROPN
is AUX
a DET
signal NOUN
that SCONJ
vitamin NOUN
A NOUN
may AUX
not PART
be AUX
adequate ADJ
. PUNCT
  SPACE
I PRON
tell VERB
my PRON
students NOUN
that SCONJ
any DET
patient NOUN
who PRON
walks VERB
into ADP
their PRON
office NOUN
with ADP
a DET
complaint NOUN
of ADP
chronic ADJ
infection NOUN
has AUX
to PART
be AUX
worked VERB
up ADP
for ADP
vitamin NOUN
A(along ADP
with ADP
the DET
other ADJ
factors NOUN
that PRON
medicine NOUN
already ADV
has AUX
on ADP
it PRON
's PART
list NOUN
of ADP
causes NOUN
for ADP
chronic ADJ
infection NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
drive VERB
this DET
home NOUN
in ADP
my PRON
course NOUN
at ADP
the DET
Osteopathic PROPN
College PROPN
in ADP
Tulsa PROPN
, PUNCT
when ADV
I PRON
teach VERB
at ADP
the DET
allopathic ADJ
medical ADJ
school NOUN
in ADP
Tulsa(OU PROPN
's PART
branch NOUN
campus NOUN
) PUNCT
and CCONJ
when ADV
I PRON
give VERB
CME PROPN
lectures NOUN
. PUNCT
Dark ADJ
adaptation NOUN
is AUX
the DET
best ADJ
clinical ADJ
test NOUN
for ADP
vitamin NOUN
A DET
status NOUN
since SCONJ
night NOUN
vision NOUN
is AUX
impacted VERB
when ADV
liver NOUN
reverves NOUN
drop VERB
to ADP
50,000IU NUM
of ADP
retinol NOUN
. PUNCT
  SPACE
The DET
serum ADJ
level NOUN
of ADP
retinol NOUN
can AUX
also ADV
be AUX
used VERB
, PUNCT
but CCONJ
it PRON
does AUX
not PART
drop VERB
until ADP
liver NOUN
reserves NOUN
drop VERB
below ADP
10,000 NUM
to ADP
20,000IU NUM
. PUNCT
  SPACE
Asking VERB
a DET
patient NOUN
if SCONJ
they PRON
have AUX
trouble NOUN
seeing VERB
at ADP
night NOUN
is AUX
a DET
good ADJ
initial ADJ
screen(if NOUN
cataracts NOUN
are AUX
ruled VERB
out ADP
) PUNCT
. PUNCT
  SPACE
In ADP
one NUM
study NOUN
done VERB
on ADP
U.S. PROPN
Spanish PROPN
- PUNCT
Americans PROPN
where ADV
serum ADJ
retinol NOUN
levels NOUN
were AUX
measured VERB
, PUNCT
25 NUM
% NOUN
of ADP
the DET
sample NOUN
population NOUN
had AUX
a DET
serum ADJ
retinol NOUN
level NOUN
below ADP
20ug NOUN
/ SYM
dl PROPN
. PUNCT
As SCONJ
more ADJ
studies NOUN
are AUX
done VERB
on ADP
serum ADJ
retinol NOUN
levels NOUN
in ADP
population NOUN
groups NOUN
of ADP
the DET
U.S. PROPN
that PRON
have AUX
had VERB
a DET
history NOUN
of ADP
high ADJ
infection NOUN
rates NOUN
, PUNCT
we PRON
will AUX
probably ADV
see VERB
a DET
much ADJ
stonger NOUN
correlation NOUN
between ADP
infection NOUN
incidence NOUN
rates NOUN
and CCONJ
low ADJ
serum ADJ
retinol NOUN
levels NOUN
. PUNCT
What PRON
do AUX
Weinsier PROPN
and CCONJ
Morgan PROPN
have AUX
to PART
say VERB
about ADP
vitamin NOUN
A NOUN
? PUNCT
  SPACE
Here ADV
are AUX
excerptsfrom PROPN
their PRON
book NOUN
: PUNCT
Vitamin PROPN
A DET
functions NOUN
in ADP
vision NOUN
in ADP
the DET
forrm NOUN
of ADP
retinol NOUN
, PUNCT
it PRON
is AUX
necessay ADJ
for ADP
growth NOUN
and CCONJ
differentation NOUN
of ADP
epithelial ADJ
tissue NOUN
, PUNCT
and CCONJ
is AUX
required VERB
for ADP
reproduction NOUN
, PUNCT
embryonic ADJ
development NOUN
, PUNCT
and CCONJ
bone NOUN
growth NOUN
. PUNCT
  SPACE
Protein NOUN
- PUNCT
calorie NOUN
malnutrition NOUN
and CCONJ
zinc NOUN
deficiency NOUN
may AUX
impair VERB
the DET
absorption NOUN
, PUNCT
transport NOUN
, PUNCT
and CCONJ
metabolism NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
Retinaldehyde PROPN
is AUX
converted VERB
to PART
retinoic VERB
acid NOUN
, PUNCT
which PRON
has AUX
biological ADJ
activity NOUN
in ADP
growth NOUN
and CCONJ
in ADP
cell NOUN
diferentiation NOUN
but CCONJ
not PART
in ADP
reproduction NOUN
or CCONJ
vision NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
procedure NOUN
to PART
evaluate VERB
vitamin NOUN
A DET
status NOUN
is AUX
to PART
measure VERB
the DET
retinol NOUN
level NOUN
in ADP
plasma NOUN
or CCONJ
serum NOUN
. PUNCT
  SPACE
The DET
normal ADJ
range NOUN
for ADP
vitamin NOUN
A DET
content NOUN
for ADP
a DET
child NOUN
is AUX
20 NUM
to PART
90ug NOUN
/ SYM
dl PROPN
. PROPN
  SPACE
Lower ADJ
values NOUN
are AUX
indicators NOUN
of ADP
deficiency NOUN
or CCONJ
depleted VERB
body NOUN
stores NOUN
. PUNCT
  SPACE
Serum PROPN
levels NOUN
greater ADJ
than SCONJ
100ug ADV
/ SYM
dl PROPN
are AUX
indicative ADJ
of ADP
toxic ADJ
levels NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
Dark ADJ
adaptation NOUN
tests NOUN
and CCONJ
electroretinogram NOUN
measurements NOUN
are AUX
also ADV
useful ADJ
but CCONJ
difficult ADJ
to PART
perform VERB
on ADP
young ADJ
children NOUN
. PUNCT
  SPACE
Rapidly ADV
proliferating VERB
tissues NOUN
are AUX
sensitive ADJ
to PART
vitamin NOUN
A DET
deficiency NOUN
and CCONJ
may AUX
revert VERB
to ADP
an DET
undifferentiated ADJ
state NOUN
. PUNCT
  SPACE
The DET
bronchorespiratory ADJ
tract NOUN
, PUNCT
skin NOUN
, PUNCT
genitourinary ADJ
system NOUN
, PUNCT
gastrointestinal ADJ
tract NOUN
and CCONJ
sweat NOUN
glands NOUN
are AUX
adversely ADV
affected ADJ
. PUNCT
  SPACE
A DET
daily ADJ
intake NOUN
of ADP
more ADJ
than SCONJ
7.5mg(about PROPN
37,000IU X
) PUNCT
of ADP
retinol NOUN
is AUX
not PART
advised VERB
and CCONJ
chronic ADJ
use NOUN
of ADP
amounts NOUN
over ADP
20mg(100,000IU NUM
) PUNCT
can AUX
result VERB
in ADP
a DET
dry ADJ
and CCONJ
itching VERB
skin NOUN
, PUNCT
desquamation NOUN
, PUNCT
erythematous ADJ
dermatitis NOUN
, PUNCT
hair NOUN
loss NOUN
, PUNCT
joint ADJ
pain NOUN
, PUNCT
chapped VERB
lips NOUN
, PUNCT
hyperostois(bony PROPN
depositis PROPN
) PUNCT
, PUNCT
headaches PROPN
, PUNCT
anorexia PROPN
, PUNCT
edema PROPN
and CCONJ
fatigue NOUN
. PUNCT
  SPACE
They PRON
recommend VERB
30 NUM
mg NOUN
of ADP
retinol NOUN
via ADP
IM PROPN
injection NOUN
in ADP
children NOUN
for ADP
vitamin NOUN
A DET
deficiency NOUN
but CCONJ
do AUX
not PART
discuss VERB
treatment NOUN
for ADP
adults NOUN
. PUNCT
  SPACE
Their PRON
toxic ADJ
serum ADJ
retinol NOUN
level NOUN
is AUX
very ADV
conservative ADJ
. PUNCT
  SPACE
I PRON
recommend VERB
that SCONJ
my PRON
students NOUN
try VERB
25,000IU NUM
in ADP
adults NOUN
that PRON
are AUX
having VERB
problems NOUN
with ADP
chronic ADJ
infection NOUN
. PUNCT
  SPACE
They PRON
have AUX
to PART
rule VERB
out ADP
a DET
zinc NOUN
deficit NOUN
first ADV
by ADP
getting VERB
an DET
RBC PROPN
zinc NOUN
run(or NOUN
if SCONJ
their PRON
clinical ADJ
lab NOUN
ca AUX
n't PART
run VERB
it PRON
, PUNCT
I PRON
tell VERB
them PRON
to PART
do AUX
what PRON
Weinsier PROPN
and CCONJ
Morgan PROPN
suggest VERB
, PUNCT
give VERB
them PRON
the DET
zinc NOUN
along ADP
with ADP
the DET
vitamin NOUN
A. NOUN
  SPACE
At ADP
25,000IU NUM
per ADP
day NOUN
, PUNCT
toxicity NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
and CCONJ
you PRON
will AUX
not PART
have AUX
to PART
worry VERB
about ADP
pulling VERB
the DET
patient NOUN
into ADP
the DET
office NOUN
on ADP
a DET
regular ADJ
basis NOUN
to PART
run VERB
a DET
serum ADJ
retinol NOUN
. PUNCT
Both CCONJ
Elaine PROPN
and CCONJ
Jon PROPN
found VERB
doctors NOUN
who PRON
used VERB
a DET
much ADV
higher ADJ
dose NOUN
of ADP
vitamin NOUN
A.Recall NOUN
that SCONJ
the DET
PMS PROPN
papers NOUN
were AUX
using VERB
100,000IU NUM
to ADP
200,000IU NUM
of ADP
vitamin NOUN
A.I PROPN
do AUX
n't PART
suggest VERB
that SCONJ
my PRON
students NOUN
use VERB
these DET
high ADJ
doses NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
wanted VERB
to PART
fill VERB
the DET
liver NOUN
up ADP
fast(as PUNCT
part NOUN
of ADP
a DET
clinical ADJ
trial NOUN
) PUNCT
and CCONJ
were AUX
monitoring VERB
the DET
serum NOUN
retinol NOUN
level NOUN
, PUNCT
then ADV
you PRON
would AUX
be AUX
okay ADJ
. PUNCT
  SPACE
But CCONJ
my PRON
knowledge NOUN
of ADP
the DET
vitamin NOUN
A DET
literature NOUN
suggests VERB
to ADP
me PRON
that SCONJ
25,000IU NUM
for ADP
patients NOUN
with ADP
a DET
demonstrated ADJ
vitamin NOUN
A DET
deficit(dark PROPN
adapatation NOUN
test NOUN
or CCONJ
serum ADJ
retinol NOUN
) PUNCT
will AUX
provide VERB
a DET
good ADJ
and CCONJ
steady ADJ
improvement(as NOUN
long ADV
as SCONJ
zinc NOUN
and CCONJ
vitamin NOUN
C NOUN
status NOUN
are AUX
good ADJ
) PUNCT
without ADP
having VERB
to PART
worry VERB
about ADP
toxicity NOUN
. PUNCT
  SPACE
If SCONJ
they PRON
want VERB
to PART
get AUX
more ADV
agressive ADJ
, PUNCT
fine ADJ
if SCONJ
they PRON
follow VERB
my PRON
advise NOUN
to PART
check VERB
the DET
serum NOUN
retinol NOUN
. PUNCT
  SPACE
But CCONJ
vitamin NOUN
A(retinol PROPN
) PUNCT
should AUX
never ADV
be AUX
given VERB
in ADP
high ADJ
dose NOUN
to ADP
women NOUN
who PRON
could AUX
become VERB
pregnant ADJ
since SCONJ
vitamin NOUN
A NOUN
shows VERB
teratogenicity NOUN
towards ADP
the DET
human PROPN
fetus NOUN
. PUNCT
  SPACE
The DET
dose NOUN
needed VERB
to PART
show VERB
this DET
effect NOUN
on ADP
the DET
developing VERB
fetus NOUN
is AUX
18,000IU NUM
of ADP
retinol NOUN
per ADP
day NOUN
. PUNCT
  SPACE
Beta NOUN
- PUNCT
carotene NOUN
will AUX
never ADV
have AUX
this DET
effect NOUN
on ADP
the DET
human ADJ
fetus NOUN
. PUNCT
Could AUX
just ADV
taking VERB
Beta NOUN
- PUNCT
carotene NOUN
instead ADV
of ADP
retinol NOUN
supplements NOUN
help VERB
? PUNCT
  SPACE
Yes INTJ
but CCONJ
the DET
effect NOUN
will AUX
take VERB
a DET
long ADJ
time NOUN
to PART
develop VERB
. PUNCT
  SPACE
My PRON
advise NOUN
is AUX
to PART
use VERB
retinol NOUN
to PART
fill VERB
the DET
liver NOUN
up ADP
and CCONJ
then ADV
switch VERB
to ADP
beta NOUN
- PUNCT
carotene NOUN
to PART
keep VERB
it PRON
full ADJ
. PUNCT
  SPACE
Vitamin PROPN
A PROPN
is AUX
probably ADV
one NUM
nutrient NOUN
that PRON
is AUX
better ADJ
off ADP
left VERB
to ADP
prescription NOUN
by ADP
doctors NOUN
. PUNCT
  SPACE
But CCONJ
when ADV
we PRON
have AUX
the DET
M.D. PROPN
's PART
in ADP
this DET
newsgroup NOUN
jumping VERB
all ADV
over ADP
me PRON
and CCONJ
other ADJ
doctors NOUN
that PRON
propose VERB
the DET
use NOUN
of ADP
vitamin NOUN
A DET
supplements NOUN
for ADP
treating VERB
patients NOUN
with ADP
chronic ADJ
sinus NOUN
and CCONJ
GI PROPN
distress NOUN
, PUNCT
I PRON
think VERB
that SCONJ
the DET
most ADV
prudent ADJ
option NOUN
is AUX
to PART
keep VERB
vitamin NOUN
A NOUN
in ADP
the DET
OTC PROPN
market NOUN
but CCONJ
require VERB
manufactors NOUN
to PART
provide VERB
package NOUN
inserts NOUN
to PART
educate VERB
the DET
general ADJ
public NOUN
about ADP
the DET
dangers NOUN
of ADP
vitamin NOUN
A DET
supplementation NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59555From NUM
: PUNCT
donrm@sr.hp.com X
( PUNCT
Don PROPN
Montgomery)Subject PROPN
: PUNCT
Re ADP
: PUNCT
feverfew ADJ
for ADP
migrainesBrenda PROPN
Bowden PROPN
( PUNCT
brenda@bookhouse NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Does AUX
anyone PRON
know VERB
about ADP
these DET
studies NOUN
? PUNCT
Or CCONJ
have AUX
experience NOUN
with ADP
feverfew?I PRON
keep VERB
an DET
accurate ADJ
log NOUN
of ADP
my PRON
migraine ADJ
attack NOUN
frequency NOUN
; PUNCT
feverfew ADJ
didn'tseem NOUN
to PART
do AUX
anything PRON
for ADP
me PRON
. PUNCT
  SPACE
However ADV
, PUNCT
eliminating VERB
caffeine NOUN
seems VERB
to PART
pre VERB
- VERB
vent VERB
the DET
onset NOUN
of ADP
migraine NOUN
in ADP
my PRON
case NOUN
. PUNCT
  SPACE
In ADP
other ADJ
words NOUN
, PUNCT
no DET
caffeine NOUN
, PUNCT
no DET
migraines NOUN
. PUNCT
Don PROPN
Montgomerydonrm@sr.hp.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59556From NUM
: PUNCT
jhilmer@ruc.dk PROPN
( PUNCT
Jakob PROPN
Hilmer)Subject VERB
: PUNCT
NEED VERB
VALUES NOUN
FOR ADP
AORTA!We NOUN
need VERB
following VERB
data NOUN
for ADP
human ADJ
aorta NOUN
: PUNCT
  SPACE
Tear ADJ
and CCONJ
shear ADJ
stress NOUN
for ADP
aorta PROPN
. PUNCT
  SPACE
A DET
plot NOUN
of ADP
the DET
aortic PROPN
cross ADJ
- ADJ
sectional ADJ
area NOUN
. PUNCT
    SPACE
Stroke NOUN
- PUNCT
volume NOUN
at ADP
the DET
aortic ADJ
root NOUN
. PUNCT
  SPACE
Approximate ADJ
distribution NOUN
of ADP
blood NOUN
through ADP
the DET
major ADJ
arterial ADJ
      SPACE
branches NOUN
of ADP
the DET
aorta NOUN
. PUNCT
  SPACE
Flow NOUN
velocity NOUN
of ADP
blood NOUN
in ADP
aorta PROPN
. PUNCT
  SPACE
We PRON
have AUX
various ADJ
values NOUN
for ADP
flow NOUN
velocity NOUN
, PUNCT
If SCONJ
you PRON
have AUX
any DET
data NOUN
remember VERB
togive ADJ
us PRON
the DET
references NOUN
too ADV
include VERB
in ADP
our PRON
report NOUN
-- PUNCT
Stud PROPN
. PUNCT
Jakob PROPN
Hilmer PROPN
		 SPACE
Fax NOUN
: PUNCT
( PUNCT
+45 PROPN
) PUNCT
45 NUM
93 NUM
34 NUM
34Hus NUM
7.1 NUM
Gr PROPN
. PUNCT
8a PUNCT
			 SPACE
Roskilde PROPN
University PROPN
, PUNCT
DenmarkPostbox PROPN
260DK-4000 NUM
Roskilde PROPN
    SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59557From NUM
: PUNCT
wdw@dragon.acadiau.ca NOUN
( PUNCT
Bill PROPN
Wilder)Subject PROPN
: PUNCT
Seeking VERB
info NOUN
on ADP
retinal ADJ
detachmentI PROPN
am AUX
quite ADV
near ADV
sighted ADJ
. PUNCT
I've PROPN
recently ADV
received VERB
laser NOUN
treatment NOUN
for ADP
both DET
eyes NOUN
to ADP
sealholes NOUN
in ADP
the DET
retinas PROPN
to PART
help VERB
prevent VERB
retinal ADJ
detachment NOUN
. PUNCT
In ADP
myleft PROPN
eye NOUN
a DET
small ADJ
detachment NOUN
had AUX
begun VERB
already ADV
and CCONJ
apparently ADV
thelaser PROPN
was AUX
used VERB
to PART
" PUNCT
weld VERB
" PUNCT
this DET
back ADV
in ADP
place NOUN
as ADV
well ADV
. PUNCT
My PRON
right ADJ
eye NOUN
seems VERB
fine ADJ
. PUNCT
In ADP
my PRON
left ADJ
eye NOUN
I PRON
was AUX
seeing VERB
occasionalflashes NOUN
of ADP
bright ADJ
light NOUN
prior ADV
to ADP
the DET
treatment NOUN
. PUNCT
Since SCONJ
thetreatment NOUN
( PUNCT
two NUM
weeks NOUN
) PUNCT
these DET
flashes NOUN
are AUX
now ADV
occuring VERB
more ADV
often- ADJ
several ADJ
each DET
hour NOUN
. PUNCT
The DET
opthamologist NOUN
explained VERB
the DET
flashes NOUN
are AUX
caused VERB
because SCONJ
thevitreous ADJ
body NOUN
has AUX
attached VERB
to ADP
the DET
retina NOUN
and CCONJ
is AUX
pulling VERB
on ADP
it PRON
. PUNCT
Hesays NOUN
this DET
is AUX
not PART
treatable ADJ
and CCONJ
he PRON
hopes VERB
it PRON
may AUX
go VERB
away ADV
on ADP
its PRON
ownaccord NOUN
- PUNCT
if SCONJ
it PRON
tugs VERB
enough ADV
I PRON
may AUX
well ADV
face VERB
retinal ADJ
detachment NOUN
. PUNCT
I PRON
am AUX
seeking VERB
( PUNCT
via ADP
sci.med VERB
) PUNCT
additional ADJ
info NOUN
on ADP
retinal ADJ
detachments NOUN
. PUNCT
The DET
Dr. PROPN
did AUX
not PART
wish VERB
to PART
spend VERB
much ADJ
time NOUN
with ADP
me PRON
in ADP
explanationsso PROPN
I PRON
appreciate VERB
any DET
further ADJ
details NOUN
anyone PRON
can AUX
provide VERB
. PUNCT
Of ADV
mostinterest ADV
to ADP
me PRON
: PUNCT
If SCONJ
my PRON
retina NOUN
does AUX
detach VERB
what PRON
should AUX
be AUX
my PRON
immediate ADJ
courseof NOUN
action?If PROPN
conventional ADJ
surgery NOUN
is AUX
need NOUN
to PART
repair VERB
the DET
detachment NOUN
what PRON
isthe ADJ
procedure NOUN
like SCONJ
and CCONJ
what PRON
kind NOUN
of ADP
vision NOUN
can AUX
I PRON
expectafterwards NOUN
. PUNCT
Do AUX
the DET
symptoms NOUN
( PUNCT
fairly ADV
frequent ADJ
flashes NOUN
) PUNCT
imply VERB
that SCONJ
detachmentmaybe PROPN
near SCONJ
at ADP
hand NOUN
or CCONJ
is AUX
this DET
not PART
necessarily ADV
cause VERB
for ADP
alarm NOUN
. PUNCT
Many ADJ
thanksBill-- PUNCT
Bill PROPN
Wilder PROPN
, PUNCT
Computer PROPN
Systems PROPN
Manager PROPN
Kentville PROPN
Research PROPN
StationAgriculture PROPN
CanadaKentville PROPN
, PUNCT
Nova PROPN
ScotiaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59558From NUM
: PUNCT
ningeg@leland PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Nick PROPN
Ingegneri)Subject NOUN
: PUNCT
Ethics NOUN
regarding VERB
placebo NOUN
/ SYM
homeopathic ADJ
" PUNCT
medicines"I PROPN
would AUX
like VERB
to PART
know VERB
if SCONJ
their PRON
is AUX
any DET
medical ADJ
consensus(or NOUN
consensus NOUN
within ADP
this DET
group NOUN
) PUNCT
regarding VERB
the DET
ethicsof NOUN
the DET
following VERB
: PUNCT
  SPACE
1 NUM
: PUNCT
Prescription NOUN
of ADP
placebo NOUN
medications NOUN
when ADV
the DET
patient NOUN
     SPACE
did AUX
not PART
specifically ADV
request VERB
any DET
sort NOUN
of ADP
treatment NOUN
. PUNCT
  SPACE
2 X
: PUNCT
Selling VERB
a DET
placebo NOUN
medication NOUN
for ADP
a DET
profit NOUN
. PUNCT
  SPACE
3 NUM
: PUNCT
Prescribing VERB
homeopathic ADJ
remedies NOUN
without ADP
advising VERB
     SPACE
a DET
patient NOUN
of ADP
their PRON
" PUNCT
controversial ADJ
nature NOUN
" PUNCT
. PUNCT
  SPACE
4 NUM
: PUNCT
Representing VERB
homeopathic ADJ
remedies NOUN
as SCONJ
" PUNCT
over ADP
the DET
counter NOUN
" PUNCT
     SPACE
medications NOUN
. PUNCT
Thanks NOUN
, PUNCT
Nick PROPN
IngegneriNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59559From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidIn NOUN
article NOUN
< X
1993Apr29.052044.23918@nmt.edu NUM
> X
houle@nmt.edu NUM
( PUNCT
Paul PROPN
Houle PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
advice NOUN
for ADP
the DET
use NOUN
of ADP
> X
antihistamines NOUN
as SCONJ
sleep PROPN
aids PROPN
, PUNCT
  SPACE
and CCONJ
if SCONJ
there PRON
are AUX
any DET
dangers NOUN
of ADP
such ADJ
use>(Seems NOUN
safe ADJ
to ADP
me PRON
since SCONJ
they PRON
are AUX
used VERB
chronically ADV
for ADP
allergies NOUN
by ADP
> X
millions NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
want VERB
to PART
try VERB
BZs NOUN
, PUNCT
  SPACE
because SCONJ
BZ PROPN
addiction NOUN
seems VERB
to PART
be AUX
> X
a DET
serious ADJ
threat NOUN
, PUNCT
  SPACE
and CCONJ
from ADP
what PRON
I PRON
hear VERB
, PUNCT
  SPACE
BZ PROPN
sleep NOUN
quality NOUN
is AUX
not PART
good,>whereas NOUN
antihistamine ADJ
sleep NOUN
quality NOUN
seems VERB
to PART
be AUX
better ADJ
for ADP
me PRON
. PUNCT
  SPACE
I PRON
have AUX
> X
tried VERB
some DET
dietary ADJ
tryptophan ADJ
loading NOUN
stuff NOUN
, PUNCT
  SPACE
and CCONJ
that SCONJ
also ADV
seems VERB
to PART
> VERB
lower ADJ
sleep NOUN
quality NOUN
, PUNCT
  SPACE
I PRON
seem VERB
to PART
wake VERB
up ADP
around ADV
4:00 NUM
or CCONJ
so ADV
and CCONJ
be AUX
in ADP
some DET
> X
kind NOUN
of ADP
mental ADJ
haze NOUN
until ADP
7:00 NUM
or CCONJ
8:00 NUM
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
I PRON
would AUX
be AUX
interested ADJ
in ADP
> X
any DET
other ADJ
advice NOUN
for ADP
helping VERB
my PRON
problem NOUN
. PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
've AUX
already ADV
tried VERB
> X
many ADJ
of ADP
the DET
non ADJ
- ADJ
pharmacological ADJ
solutions)Well NOUN
, PUNCT
I PRON
think VERB
you PRON
might AUX
want VERB
to PART
visit VERB
a DET
doctor NOUN
who PRON
is AUX
familiar ADJ
withsleep ADJ
disturbances NOUN
, PUNCT
because SCONJ
antihistamines NOUN
only ADV
help VERB
induce VERB
sleep NOUN
whenthey're ADV
used VERB
intermittently ADV
; PUNCT
they PRON
lose VERB
their PRON
sedative ADJ
effect NOUN
if SCONJ
they'reused VERB
on ADP
a DET
nightly ADJ
basis NOUN
. PUNCT
  SPACE
Their PRON
anticholinergic ADJ
effects NOUN
( PUNCT
drying VERB
of ADP
secretions NOUN
, PUNCT
relaxing VERB
effects NOUN
on ADP
smooth ADJ
muscle NOUN
) PUNCT
can AUX
be AUX
problematic ADJ
in ADP
some DET
people NOUN
, PUNCT
such ADJ
asthose VERB
with ADP
glaucoma NOUN
or CCONJ
prostate NOUN
enlargement NOUN
. PUNCT
Antihistamines NOUN
like SCONJ
diphenhydramine NOUN
( PUNCT
Benadryl PROPN
) PUNCT
or CCONJ
doxylamine NOUN
( PUNCT
Unisom)are VERB
potent ADJ
sedatives NOUN
which PRON
are AUX
useful ADJ
occasionally ADV
. PUNCT
  SPACE
Chlorpheniramine(Chlor PROPN
- PUNCT
Trimeton PROPN
) PUNCT
is AUX
said VERB
to PART
be AUX
less ADV
sedative ADJ
, PUNCT
but CCONJ
8 NUM
mg PROPN
seems VERB
to PART
workwell VERB
in ADP
some DET
people NOUN
. PUNCT
  SPACE
Both DET
chlorpheniramine NOUN
and CCONJ
doxylamine NOUN
have AUX
longhalf NOUN
- PUNCT
lives NOUN
compared VERB
to ADP
diphenhydramine NOUN
, PUNCT
and CCONJ
so ADV
may AUX
produce VERB
a DET
residualhangover NOUN
or CCONJ
" PUNCT
drugged VERB
" PUNCT
feeling VERB
the DET
next ADJ
morning.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59560From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
1993Apr30.162636.22327@cc.ic.ac.uk NUM
> X
ewolff@ps.ic.ac.uk PROPN
( PUNCT
Erik PROPN
The DET
Viking PROPN
) PUNCT
writes:>She PROPN
has AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
taken VERB
the DET
ordinary ADJ
( PUNCT
? PUNCT
) PUNCT
> X
tests NOUN
and CCONJ
her PRON
values NOUN
were AUX
regarded VERB
as ADV
low ADJ
. PUNCT
The DET
doctor NOUN
( PUNCT
and CCONJ
my PRON
wife NOUN
) PUNCT
are AUX
> X
not PART
very ADV
interested ADJ
in ADP
starting VERB
medication NOUN
as SCONJ
this DET
" PUNCT
deactivates VERB
" PUNCT
the DET
> X
gland NOUN
, PUNCT
giving VERB
life NOUN
- PUNCT
long ADJ
dependency NOUN
to ADP
the DET
drug NOUN
( PUNCT
hormone?).This PROPN
is AUX
ridiculous ADJ
, PUNCT
and CCONJ
your PRON
doctor NOUN
sounds VERB
like SCONJ
a DET
nut NOUN
, PUNCT
if SCONJ
what PRON
isreported VERB
here ADV
is AUX
what PRON
the DET
doctor NOUN
actually ADV
said VERB
. PUNCT
  SPACE
If SCONJ
your PRON
wife'spancreas NOUN
stops VERB
producing VERB
insulin NOUN
and CCONJ
therefore ADV
becomes VERB
diabetic ADJ
, PUNCT
she'llneed PROPN
insulin NOUN
replacement NOUN
. PUNCT
  SPACE
That DET
does AUX
n't PART
mean VERB
she PRON
's AUX
" PUNCT
dependent ADJ
" PUNCT
oninsulin PROPN
, PUNCT
anymore ADV
than SCONJ
she PRON
was AUX
beforehand ADV
-- PUNCT
if SCONJ
her PRON
body NOUN
does AUX
n't PART
makeenough VERB
, PUNCT
she PRON
'll AUX
have AUX
to PART
get AUX
it PRON
elsewhere ADV
. PUNCT
  SPACE
Oral ADJ
thyroid NOUN
replacementhormone NOUN
therapy NOUN
is AUX
the DET
cornerstone NOUN
of ADP
treatment NOUN
for ADP
hypothyroidism NOUN
, PUNCT
andit PROPN
's AUX
really ADV
the DET
only ADJ
effective ADJ
therapy NOUN
available ADJ
anyway ADV
. PUNCT
  SPACE
Plus CCONJ
, PUNCT
it'scheap PROPN
. PUNCT
  SPACE
Taking VERB
thyroid NOUN
hormone NOUN
when ADV
it PRON
is AUX
n't PART
needed VERB
does NOUN
cause VERB
yourthyroid PROPN
gland PROPN
to PART
reduce VERB
its PRON
own ADJ
production NOUN
of ADP
the DET
hormone NOUN
, PUNCT
but CCONJ
that DET
's AUX
a_feature NOUN
_ ADV
, PUNCT
not PART
a DET
_ PROPN
bug NOUN
_ PROPN
, PUNCT
and CCONJ
it PRON
's AUX
irrelevant ADJ
in ADP
any DET
case NOUN
in ADP
the DET
face NOUN
ofhypothyroidism NOUN
, PUNCT
because SCONJ
her PRON
problem NOUN
that SCONJ
her PRON
gland NOUN
is AUX
n't PART
producingenough ADJ
. PUNCT
  SPACE
There PRON
is AUX
n't PART
a DET
clinical ADJ
phenomenon NOUN
of ADP
" PUNCT
thyroid NOUN
insufficiency"caused VERB
by ADP
a DET
sudden ADJ
discontinuation NOUN
of ADP
exogenous ADJ
thyroid NOUN
hormoneanalogous ADJ
to ADP
adrenal ADJ
insufficiency NOUN
caused VERB
by ADP
the DET
sudden ADJ
cessation NOUN
ofprolonged VERB
administration NOUN
of ADP
corticosteroids NOUN
, PUNCT
so CCONJ
there PRON
should AUX
be AUX
noworry ADJ
about ADP
inappropriately ADV
" PUNCT
suppressing VERB
" PUNCT
the DET
thyroid NOUN
gland.>The ADP
last ADJ
couple NOUN
of ADP
> NUM
monthes NOUN
she PRON
has AUX
been AUX
seeing VERB
a DET
hoemoepath NOUN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
and CCONJ
been AUX
given VERB
> X
some DET
drops NOUN
to PART
re VERB
- VERB
activate VERB
either CCONJ
her PRON
thyroidal ADJ
gland NOUN
and/or CCONJ
the DET
> X
' PART
message NOUN
- PUNCT
center NOUN
' PUNCT
in ADP
the DET
brain NOUN
( PUNCT
sorry ADJ
about ADP
the DET
approximate ADJ
language,>but NOUN
I PRON
have AUX
n't PART
got VERB
many ADJ
clues NOUN
to ADP
what PRON
the DET
english ADJ
terms NOUN
are AUX
, PUNCT
but CCONJ
the DET
> X
brain NOUN
- PUNCT
area NOUN
is AUX
called VERB
the DET
' PUNCT
hypofyse NOUN
' PUNCT
in ADP
norwegian PROPN
. PUNCT
) PUNCT
Homeopathy PROPN
is AUX
nonsense NOUN
. PUNCT
  SPACE
Tell VERB
her PRON
to PART
stop VERB
wasting VERB
her PRON
money NOUN
, PUNCT
health NOUN
and CCONJ
time NOUN
, PUNCT
and CCONJ
get AUX
her PRON
to ADP
a DET
legitimate ADJ
doctor NOUN
who PRON
will AUX
be AUX
in ADP
a DET
position NOUN
to PART
makea VERB
proper ADJ
diagnosis NOUN
and CCONJ
recommend VERB
the DET
right NOUN
therapy.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59561From NUM
: PUNCT
bai@msiadmin.cit.cornell.edu NOUN
( PUNCT
Dov PROPN
Bai PROPN
- PUNCT
MSI PROPN
Visitor)Subject NOUN
: PUNCT
Re ADP
: PUNCT
EarwaxIn PROPN
article NOUN
< X
lu2defINNac7@news.bbn.com PROPN
> X
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin PROPN
) PUNCT
writes:>bobm@Ingres VERB
. PUNCT
COM PROPN
( PUNCT
Bob PROPN
McQueer PROPN
) PUNCT
writes:>|One PROPN
question NOUN
I PRON
do AUX
have AUX
- PUNCT
a DET
doctor NOUN
who PRON
flushed VERB
out ADP
my PRON
ears NOUN
once SCONJ
also ADV
advocated>|a NUM
drop NOUN
of ADP
rubbing VERB
alcohol NOUN
in ADP
them PRON
afterwards ADV
to PART
flush VERB
out ADP
any DET
remaining>|trapped PUNCT
water NOUN
- PUNCT
said VERB
he PRON
told VERB
swimmers NOUN
to PART
do AUX
this DET
after ADP
swimming VERB
, PUNCT
too ADV
. PUNCT
  SPACE
It>|works NOUN
, PUNCT
but CCONJ
it PRON
stings VERB
like SCONJ
the DET
devil NOUN
, PUNCT
so CCONJ
I PRON
've AUX
always ADV
been AUX
content ADJ
to PART
let VERB
any>|water PROPN
in ADP
my PRON
ears NOUN
from ADP
swimming VERB
or CCONJ
flushing VERB
them PRON
out ADP
figure VERB
out ADP
how ADV
to PART
get>|out VERB
by ADP
itself PRON
if SCONJ
shaking VERB
my PRON
head NOUN
a DET
few ADJ
times NOUN
wo AUX
n't PART
do AUX
the DET
trick NOUN
. PUNCT
  SPACE
Any>|comments?Perhaps ADV
diluting VERB
the DET
rubbing VERB
alcohol NOUN
in ADP
some DET
water NOUN
, PUNCT
until ADP
youfeels NOUN
comfortable ADJ
will AUX
do AUX
the DET
trick NOUN
? PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59562From NUM
: PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders)Subject NUM
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidBut NOUN
after ADP
you PRON
have AUX
taken VERB
antihistamines NOUN
for ADP
a DET
few ADJ
nights NOUN
, PUNCT
does AUX
n't PART
it PRON
startto VERB
have AUX
a DET
paradoxical ADJ
effect NOUN
? PUNCT
  SPACE
I PRON
used VERB
to PART
take VERB
one NUM
every DET
night NOUN
forallergies NOUN
and CCONJ
could AUX
n't PART
figure VERB
out ADP
why ADV
I PRON
developed VERB
bad ADJ
insomnia NOUN
. PUNCT
  SPACE
Finallyfigured VERB
out ADP
it PRON
was AUX
the DET
antihistamines NOUN
. PUNCT
  SPACE
I PRON
would AUX
fall VERB
asleep ADJ
for ADP
a DET
fewminutes NOUN
but CCONJ
would AUX
awaken VERB
at ADP
the DET
drop NOUN
of ADP
a DET
pin NOUN
a DET
little ADJ
later ADV
and CCONJ
could AUX
notget VERB
back ADV
to ADP
sleep NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
have AUX
that DET
problem NOUN
since SCONJ
I PRON
stopped VERB
theantihistamines NOUN
at ADP
bedtime PROPN
. PUNCT
  SPACE
? PUNCT
AliceNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59563From NUM
: PUNCT
george@crayola NOUN
. PUNCT
East PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
George PROPN
A. PROPN
Perkins PROPN
  SPACE
Sun PROPN
Microsystems PROPN
  SPACE
Tampa PROPN
FL PROPN
  SPACE
Systems NOUN
Engineer)Subject VERB
: PUNCT
Lithium NOUN
questions NOUN
, PUNCT
Doctor PROPN
wants VERB
my PRON
10 NUM
year NOUN
old ADJ
on ADP
it PRON
... PUNCT
Hi INTJ
sci.med PUNCT
folks NOUN
... PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
anything PRON
you PRON
folks NOUN
can AUX
tell VERB
me PRON
regarding VERB
Lithium PROPN
. PUNCT
I PRON
have AUX
a DET
10 NUM
year NOUN
old ADJ
son NOUN
that PRON
lives VERB
with ADP
my PRON
ex NOUN
- NOUN
wife NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
havingdifficulty VERB
with ADP
his PRON
behavior NOUN
and CCONJ
has AUX
had VERB
him PRON
on ADP
Ritalin PROPN
, PUNCT
Tofranil PROPN
, PUNCT
and CCONJ
nowwants NOUN
to PART
try VERB
Lithuim PROPN
at ADP
the DET
local ADJ
doctors NOUN
suggestion NOUN
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to PART
know VERB
whatever PRON
is AUX
important ADJ
that SCONJ
I PRON
should AUX
know VERB
. PUNCT
  SPACE
I PRON
worry VERB
about ADP
this DET
sort NOUN
ofthing NOUN
and CCONJ
would AUX
like VERB
pros NOUN
/ SYM
cons NOUN
regarding VERB
Lithium PROPN
therapy NOUN
. PUNCT
I PRON
have AUX
a DET
booklet NOUN
from ADP
the DET
" PUNCT
Lithium PROPN
Information PROPN
Center PROPN
" PUNCT
based VERB
at ADP
the DET
University PROPN
of ADP
Wisconsin PROPN
, PUNCT
but CCONJ
feel VERB
that SCONJ
it PRON
is AUX
pro ADJ
- ADJ
lithium ADJ
and CCONJ
would AUX
beinterested VERB
in ADP
comments NOUN
from ADP
the DET
" PUNCT
not PART
necessarily ADV
PRO PROPN
" PUNCT
side NOUN
of ADP
the DET
fence NOUN
. PUNCT
I PRON
am AUX
a DET
concerned ADJ
father NOUN
and CCONJ
just ADV
wish VERB
to PART
be AUX
well ADV
informed ADJ
... PUNCT
Thanks NOUN
for ADP
any DET
information NOUN
you PRON
can AUX
provide VERB
. PUNCT
Please INTJ
email VERB
me PRON
directly ADV
... PUNCT
--- PUNCT
    SPACE
/\ PUNCT
        SPACE
George PROPN
A. PROPN
Perkins PROPN
   SPACE
\\ PROPN
\ PROPN
       SPACE
Systems PROPN
Engineer PROPN
  SPACE
\ PROPN
\\ PROPN
/ SYM
      SPACE
Sun PROPN
Microsystems PROPN
Computer PROPN
Corporation PROPN
/ SYM
\/ PROPN
/ SYM
/ SYM
     SPACE
6200 NUM
Courtney PROPN
Campbell PROPN
Causeway/ PROPN
/ SYM
   SPACE
\//\ PROPN
    SPACE
Suite PROPN
840\//\ NUM
   SPACE
/ SYM
/ SYM
    SPACE
Tampa PROPN
, PUNCT
FL PROPN
  SPACE
33607 NUM
/ SYM
/ SYM
/\ PUNCT
/ SYM
       SPACE
/ SYM
\\ PROPN
\ PROPN
      SPACE
Phone PROPN
: PUNCT
  SPACE
( PUNCT
813 NUM
) PUNCT
289 NUM
- SYM
7228 NUM
   SPACE
\ PUNCT
\\ PROPN
       SPACE
Fax PROPN
: PUNCT
    SPACE
( PUNCT
813 NUM
) PUNCT
281 NUM
- SYM
0219 NUM
    SPACE
\/ SYM
        SPACE
EMail NOUN
: PUNCT
  SPACE
george.perkins@East.Sun.COMNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59564From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?In PROPN
article NOUN
< X
1993Apr30.035235.26613@pbs.org NUM
> X
, PUNCT
jlecher@pbs.org PROPN
writes:>As PROPN
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
just ADV
saw VERB
a DET
dermatologist NOUN
the DET
other ADJ
day NOUN
, PUNCT
andwhile VERB
I PRON
Seeing VERB
a DET
dermatologist NOUN
sounds VERB
like SCONJ
a DET
very ADV
good ADJ
idea NOUN
if SCONJ
you PRON
areworried VERB
about ADP
your PRON
dry ADJ
skin NOUN
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59565From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
insensitive ADJ
techniciansIn PROPN
article NOUN
< X
1rrhi9INN2bq@ceti.cs.unc.edu X
> X
John PROPN
Eyles PROPN
, PUNCT
jge@cs.unc.eduwrites:Friend's PROPN
unpleasant ADJ
experience NOUN
uring VERB
CT PROPN
scan NOUN
deleted VERB
> PUNCT
Is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
about ADP
these DET
pigs NOUN
? PUNCT
I PRON
'd AUX
suggest VERB
writing VERB
a DET
detailed ADJ
letter NOUN
about ADP
the DET
incident NOUN
to ADP
thehospital ADJ
administrator NOUN
. PUNCT
Specify VERB
the DET
date NOUN
and CCONJ
time NOUN
. PUNCT
If SCONJ
possible ADJ
thenames NOUN
of ADP
the DET
technicians NOUN
. PUNCT
Send VERB
a DET
copy NOUN
to ADP
the DET
clinician NOUN
under ADP
whose PRON
care NOUN
your PRON
friend NOUN
wasadmitted VERB
. PUNCT
I PRON
say VERB
this DET
because SCONJ
, PUNCT
though SCONJ
your PRON
friend NOUN
has AUX
no DET
argumentwith NOUN
the DET
doctor NOUN
, PUNCT
I PRON
have AUX
found VERB
that SCONJ
administrators NOUN
sometimes ADV
ignorecomplaints NOUN
until ADP
the DET
patient NOUN
becomes VERB
litigious ADJ
. PUNCT
Clinicians NOUN
may AUX
nothave VERB
been AUX
informed VERB
of ADP
the DET
complaint NOUN
and CCONJ
are AUX
very ADV
surprised ADJ
to ADP
findthemselves NOUN
named VERB
in ADP
a DET
suit NOUN
. PUNCT
If SCONJ
there PRON
is AUX
no DET
response NOUN
within ADP
a DET
week NOUN
send VERB
a DET
follow NOUN
up ADP
letter NOUN
. PUNCT
Attach VERB
a DET
photocopy NOUN
of ADP
the DET
original ADJ
letter NOUN
. PUNCT
Do AUX
this DET
weekly NOUN
until ADP
youdo NOUN
get VERB
a DET
response NOUN
. PUNCT
CAT PROPN
scans NOUN
are AUX
non ADJ
- ADJ
invasive ADJ
but CCONJ
they PRON
can AUX
be AUX
very ADV
scary ADJ
. PUNCT
The DET
scannercan NOUN
be AUX
a DET
bad ADJ
place NOUN
for ADP
the DET
claustrophobic NOUN
. PUNCT
There PRON
was AUX
an DET
interestingstudy NOUN
in ADP
the DET
BMJ PROPN
, PUNCT
about ADV
10 NUM
years NOUN
ago ADV
, PUNCT
which PRON
found VERB
that SCONJ
around ADP
10 NUM
% NOUN
ofpeople NOUN
who PRON
had AUX
CAT NOUN
scans NOUN
found VERB
it PRON
so ADV
unpleasant ADJ
that SCONJ
they PRON
wouldnever VERB
have AUX
another DET
. PUNCT
This DET
compares VERB
with ADP
15 NUM
% NOUN
who PRON
said VERB
the DET
same ADJ
about ADP
alumbar VERB
puncture NOUN
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59566From NUM
: PUNCT
calzone@athena.mit.eduSubject NOUN
: PUNCT
Legality NOUN
of ADP
placebos?How NOUN
is AUX
it PRON
that SCONJ
placebos NOUN
are AUX
legal ADJ
? PUNCT
  SPACE
It PRON
would AUX
seem VERB
to ADP
me PRON
that SCONJ
if SCONJ
, PUNCT
as SCONJ
a DET
patient NOUN
, PUNCT
you PRON
purchase VERB
a DET
drug NOUN
you PRON
've AUX
been AUX
prescribed VERB
and CCONJ
it PRON
's AUX
just ADV
sugar NOUN
( PUNCT
or CCONJ
whatever),there PUNCT
's AUX
a DET
few ADJ
legal ADJ
complications NOUN
that PRON
arise VERB
: PUNCT
	 SPACE
1 NUM
. PUNCT
If SCONJ
you PRON
have AUX
been AUX
diagnosed VERB
with ADP
a DET
condition NOUN
and CCONJ
you PRON
are AUX
n't PART
given VERB
acceptedtreatment NOUN
for ADP
it PRON
, PUNCT
it PRON
seems VERB
like SCONJ
intentional ADJ
medical ADJ
malpractice NOUN
. PUNCT
	 SPACE
2.A NUM
placebo NOUN
should AUX
fall VERB
, PUNCT
legally ADV
, PUNCT
under ADP
the DET
label NOUN
of ADP
quackery PROPN
( PUNCT
why ADV
not PART
? PUNCT
) PUNCT
	 SPACE
3.Getting NUM
what PRON
you PRON
pay VERB
for ADP
. PUNCT
  SPACE
( PUNCT
Deceptive ADJ
" PUNCT
bait NOUN
and CCONJ
switch VERB
" PUNCT
to ADP
an DET
extreme ADJ
... PUNCT
) PUNCT
. PUNCT
  SPACE
Falseadvertising VERB
  SPACE
( PUNCT
what PRON
if SCONJ
McDonalds PROPN
did AUX
n't PART
put VERB
100 NUM
% NOUN
pure ADJ
beef NOUN
in ADP
their PRON
hamburgers NOUN
? PUNCT
) PUNCT
	 SPACE
So ADV
I PRON
'm AUX
mystified VERB
. PUNCT
  SPACE
Are AUX
these DET
assumptions NOUN
erred VERB
? PUNCT
  SPACE
If SCONJ
they PRON
are AUX
n't PART
, PUNCT
why ADV
thehell PROPN
can AUX
a DET
doctor NOUN
knowingly ADV
or CCONJ
unknowingly ADV
prescribe VERB
a DET
placebo?ThankscalzoneNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59567From NUM
: PUNCT
claude@banana.fedex.com X
( PUNCT
claude PROPN
bowie)Subject NOUN
: PUNCT
vitamin NOUN
A NOUN
and CCONJ
hearing VERB
lossi PROPN
heard VERB
a DET
news NOUN
report NOUN
indicating VERB
research NOUN
showing VERB
improved VERB
         SPACE
hearing NOUN
in ADP
people NOUN
taking VERB
vitamin NOUN
A. NOUN
the DET
research NOUN
showed VERB
that SCONJ
new ADJ
    SPACE
growth NOUN
replaced VERB
damaged VERB
" PUNCT
hairlike ADP
" PUNCT
nerves NOUN
. PUNCT
has AUX
anyone PRON
heard VERB
aboutthis PROPN
? PUNCT
thanks NOUN
, PUNCT
claude-- PROPN
claude PROPN
bowie PROPN
			 SPACE
| PROPN
voice NOUN
: PUNCT
  SPACE
( PUNCT
901)797 PROPN
- PUNCT
6332federal PROPN
express PROPN
corp PROPN
		 SPACE
| PROPN
fax PROPN
: PUNCT
    SPACE
( PUNCT
901)797 PROPN
- PUNCT
6388box NUM
727 NUM
- SYM
2891 NUM
, PUNCT
memphis PROPN
, PUNCT
tn PROPN
38194 NUM
| PROPN
email NOUN
: PUNCT
  SPACE
claude@banana.fedex.comNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59568From NUM
: PUNCT
bitn@kimbark.uchicago.edu PROPN
( PUNCT
nathan PROPN
elery NOUN
bitner)Subject PROPN
: PUNCT
Deadly PROPN
NyQuil???I PROPN
originally ADV
posted VERB
this DET
to ADP
alt.suicide.holiday PROPN
but CCONJ
it PRON
was AUX
recommendedthat ADP
I PRON
try VERB
you PRON
guys NOUN
instead ADV
: PUNCT
My PRON
friend NOUN
insists VERB
that SCONJ
Ny PROPN
- PUNCT
Quil PROPN
can AUX
be AUX
deadly ADJ
if SCONJ
enough ADJ
is AUX
taken VERB
-- PUNCT
hesuggested VERB
something PRON
like SCONJ
20 NUM
- SYM
30 NUM
of ADP
the DET
Night PROPN
- PUNCT
time NOUN
gelcaps NOUN
would AUX
do AUX
someonein NOUN
. PUNCT
  SPACE
Being AUX
a DET
NORMAL PROPN
user NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
:) NUM
, PUNCT
I PRON
checked VERB
the DET
' PUNCT
ingredients NOUN
' PUNCT
andhave VERB
a DET
very ADV
hard ADJ
time NOUN
believing VERB
it PRON
. PUNCT
  SPACE
They PRON
are:250 PROPN
g NOUN
acetaminophen30 NOUN
mg PROPN
Pseudoephedrine PROPN
HCl10 NOUN
mg PROPN
Dextromethorphan PROPN
HBr6.25 PROPN
mg PROPN
Doxylamine PROPN
Succinate(per X
softgel)Can PROPN
someone PRON
settle VERB
our PRON
bet NOUN
( PUNCT
a DET
package NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
of ADP
course NOUN
:) PUNCT
-- PUNCT
what PRON
effect NOUN
would AUX
20 NUM
- SYM
30 NUM
of ADP
these DET
babies NOUN
have?*-Nathan-*-- NOUN
------------------------------------------------------------------------| PUNCT
                         SPACE
INTER PROPN
ARMA NOUN
SILENT VERB
LEGES PROPN
                      SPACE
|| PUNCT
" PUNCT
Worship PROPN
Ditka PROPN
NOW ADV
. PUNCT
" PUNCT
                SPACE
email NOUN
: PUNCT
  SPACE
bitn@midway.uchicago.edu PROPN
||______________________________________________________________________| PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59569From NUM
: PUNCT
abruno@adobe NOUN
( PUNCT
Andrea PROPN
Bruno)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
19930430140738SFB2763@MVS.draper.com X
> X
SFB2763@MVS.draper.com SYM
  SPACE
( PUNCT
Eileen PROPN
Bauer PROPN
) PUNCT
writes VERB
: PUNCT
> X
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
> X
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart NOUN
) PUNCT
, PUNCT
> X
changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things NOUN
. PUNCT
Is AUX
there PRON
any DET
relation NOUN
between ADP
thyroid NOUN
deficiency NOUN
and CCONJ
depression?Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59570From NUM
: PUNCT
George PROPN
< X
george_paap@email.sps.mot.com>Subject X
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
80412@cup.portal.com NUM
> X
Mark PROPN
Robert PROPN
Thorson PROPN
, PUNCT
mmm@cup.portal.comwrites VERB
: PUNCT
> X
Colonics NOUN
were AUX
a DET
health NOUN
fad NOUN
of ADP
the DET
19th ADJ
century NOUN
, PUNCT
which PRON
persists VERB
to ADP
thisday NOUN
. PUNCT
> X
Except SCONJ
for ADP
certain ADJ
medical ADJ
conditions NOUN
, PUNCT
there PRON
is AUX
no DET
reason NOUN
to PART
do AUX
this DET
. PUNCT
> X
Certainly ADV
no DET
normal ADJ
person NOUN
should AUX
do AUX
this DET
. PUNCT
In ADP
article NOUN
< X
1993Apr28.023749.9259@informix.com NUM
> X
Robert PROPN
Hartman,hartman@informix.com X
writes VERB
: PUNCT
> X
Also ADV
, PUNCT
insofar ADV
as SCONJ
it PRON
does AUX
n't PART
conform VERB
to ADP
the DET
accepted VERB
medical ADJ
presumption NOUN
> X
that SCONJ
it PRON
just ADV
does AUX
n't PART
matter VERB
what PRON
you PRON
eat VERB
, PUNCT
and CCONJ
that SCONJ
we PRON
can AUX
think VERB
of ADP
the DET
> X
GI PROPN
tract NOUN
as SCONJ
a DET
black ADJ
box NOUN
in ADP
which PRON
nothing PRON
ever ADV
goes VERB
wrong ADJ
( PUNCT
except SCONJ
for ADP
> X
maybe ADV
cancer NOUN
and CCONJ
ulcers NOUN
) PUNCT
, PUNCT
the DET
righteous ADJ
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
too ADV
. PUNCT
Recently ADV
, PUNCT
I PRON
completed VERB
a DET
2 NUM
week NOUN
juice NOUN
fast ADV
( PUNCT
with ADP
3 NUM
days NOUN
of ADP
water NOUN
) PUNCT
and CCONJ
hadtwo VERB
colonics NOUN
as SCONJ
part NOUN
of ADP
it PRON
. PUNCT
  SPACE
My PRON
motivation NOUN
was AUX
primarily ADV
spiritual ADJ
, PUNCT
tode NOUN
- PUNCT
toxify VERB
from ADP
all DET
the DET
crap NOUN
I PRON
've AUX
been AUX
putting VERB
in ADP
my PRON
body NOUN
( PUNCT
not PART
like INTJ
thatsenough VERB
to PART
clean VERB
it PRON
all DET
out ADP
but CCONJ
it PRON
did AUX
have AUX
an DET
effect NOUN
) PUNCT
. PUNCT
  SPACE
Personaly PROPN
, PUNCT
Ididn't PROPN
find VERB
it PRON
an DET
uncomfortable ADJ
experience NOUN
( PUNCT
the DET
colonic NOUN
) PUNCT
, PUNCT
lost VERB
about15lbs NOUN
of ADP
beer NOUN
belly NOUN
( PUNCT
which PRON
has AUX
n't PART
come VERB
back ADV
over ADP
the DET
last ADJ
month NOUN
) PUNCT
, PUNCT
andfeel PROPN
great ADJ
. PUNCT
  SPACE
One NUM
of ADP
the DET
things NOUN
that PRON
prompted VERB
me PRON
to PART
get AUX
the DET
colonic ADJ
wasseeing VERB
my PRON
90 NUM
year NOUN
old ADJ
grandmother NOUN
chair NOUN
ridden VERB
from ADP
colitis NOUN
( PUNCT
? PUNCT
) PUNCT
fromyears NOUN
of ADP
indulgence NOUN
. PUNCT
Not PART
everything PRON
that PRON
goes VERB
in ADV
comes VERB
out ADP
, PUNCT
and CCONJ
personaly NOUN
I PRON
do AUX
n't PART
mind VERB
givingmy NOUN
body NOUN
a DET
hand NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Just ADV
my PRON
experience NOUN
, PUNCT
George PROPN
PaapI PROPN
am AUX
my PRON
beliefs.(which NOUN
almost ADV
certainly ADV
are AUX
not PART
those DET
of ADP
my PRON
employer)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59571From NUM
: PUNCT
jfh@netcom.com PROPN
( PUNCT
Jack PROPN
Hamilton)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Legality NOUN
of ADP
placebos?calzone@athena.mit.edu PROPN
wrote:>>>How PUNCT
is AUX
it PRON
that SCONJ
placebos NOUN
are AUX
legal ADJ
? PUNCT
  SPACE
It PRON
would AUX
seem VERB
to ADP
me PRON
that SCONJ
if SCONJ
, PUNCT
as SCONJ
a DET
patient,>you NOUN
purchase VERB
a DET
drug NOUN
you PRON
've AUX
been AUX
prescribed VERB
and CCONJ
it PRON
's AUX
just ADV
sugar NOUN
( PUNCT
or CCONJ
whatever),>there PROPN
's AUX
a DET
few ADJ
legal ADJ
complications NOUN
that PRON
arise VERB
: PUNCT
> X
> X
	 SPACE
1 NUM
. PUNCT
> X
If SCONJ
you PRON
have AUX
been AUX
diagnosed VERB
with ADP
a DET
condition NOUN
and CCONJ
you PRON
are AUX
n't PART
given VERB
accepted ADJ
> X
treatment NOUN
for ADP
it PRON
, PUNCT
it PRON
seems VERB
like SCONJ
intentional ADJ
medical ADJ
malpractice NOUN
. PUNCT
A DET
placebo NOUN
is AUX
an DET
accepted VERB
treatment NOUN
at ADP
times NOUN
. PUNCT
> X
	 SPACE
2.>A NUM
placebo NOUN
should AUX
fall VERB
, PUNCT
legally ADV
, PUNCT
under ADP
the DET
label NOUN
of ADP
quackery PROPN
( PUNCT
why ADV
not?)Why PROPN
should AUX
it PRON
? PUNCT
  SPACE
Placebos PROPN
are AUX
effective ADJ
under ADP
certain ADJ
circumstances NOUN
. PUNCT
  SPACE
That'swhy PUNCT
they PRON
're AUX
used VERB
. PUNCT
  SPACE
Actually ADV
, PUNCT
I PRON
do AUX
n't PART
know VERB
know VERB
anyone PRON
who PRON
has AUX
actually ADV
gotten VERB
a DET
" PUNCT
sugar NOUN
pill" NOUN
. PUNCT
I PRON
do AUX
n't PART
know VERB
how ADV
it PRON
could AUX
be AUX
done VERB
, PUNCT
since SCONJ
prescription NOUN
drugs NOUN
are AUX
alwayslabeled VERB
, PUNCT
and CCONJ
it PRON
's AUX
easy ADJ
enough ADV
to PART
find VERB
out ADP
what PRON
's AUX
in ADP
a DET
pill NOUN
if SCONJ
you PRON
have AUX
thename NOUN
. PUNCT
It PRON
's AUX
more ADV
common ADJ
to PART
prescribe VERB
a DET
drug NOUN
which PRON
is AUX
effective ADJ
for ADP
something PRON
, PUNCT
justnot ADV
for ADP
what PRON
you PRON
have AUX
. PUNCT
  SPACE
Antibiotics NOUN
for ADP
viral ADJ
infections NOUN
are AUX
the DET
mostcommon ADJ
such ADJ
placebo NOUN
. PUNCT
> X
	 SPACE
3.>Getting NUM
what PRON
you PRON
pay VERB
for ADP
. PUNCT
  SPACE
( PUNCT
Deceptive ADJ
" PUNCT
bait NOUN
and CCONJ
switch VERB
" PUNCT
to ADP
an DET
extreme ADJ
... PUNCT
) PUNCT
. PUNCT
  SPACE
False ADJ
> X
advertising NOUN
  SPACE
( PUNCT
what PRON
if SCONJ
McDonalds PROPN
did AUX
n't PART
put VERB
100 NUM
% NOUN
pure ADJ
beef NOUN
in ADP
their PRON
hamburgers?)I'm PROPN
not PART
sure ADJ
what PRON
you PRON
mean VERB
by ADP
this DET
. PUNCT
  SPACE
What PRON
do AUX
you PRON
think VERB
you PRON
're AUX
paying VERB
for?You're NUM
not PART
entitled VERB
to ADP
a DET
prescription NOUN
drug NOUN
just ADV
because SCONJ
you PRON
pay VERB
for ADP
adoctor NOUN
's PART
appointment NOUN
. PUNCT
  SPACE
-- PUNCT
------------------------------------------------------------------------Jack PROPN
Hamilton PROPN
  SPACE
KD6TTL PROPN
  SPACE
jfh@netcom.com PROPN
  SPACE
PO PROPN
Box PROPN
281107 NUM
  SPACE
SF PROPN
, PUNCT
CA PROPN
  SPACE
94128 NUM
  SPACE
USANewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59572From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
vitamin NOUN
A NOUN
and CCONJ
hearing VERB
lossIn PROPN
article NOUN
< X
1993Apr30.194806.10652@banana.fedex.com PROPN
> X
, PUNCT
claude@banana.fedex.com PROPN
( PUNCT
claude NOUN
bowie NOUN
) PUNCT
writes VERB
: PUNCT
> X
i PRON
heard VERB
a DET
news NOUN
report NOUN
indicating VERB
research NOUN
showing VERB
improved VERB
         SPACE
> X
hearing VERB
in ADP
people NOUN
taking VERB
vitamin NOUN
A. NOUN
the DET
research NOUN
showed VERB
that SCONJ
new ADJ
    SPACE
> X
growth NOUN
replaced VERB
damaged VERB
" PUNCT
hairlike ADP
" PUNCT
nerves NOUN
. PUNCT
has AUX
anyone PRON
heard VERB
about ADP
> X
this DET
? PUNCT
> X
Claude NOUN
, PUNCT
I PRON
've AUX
not PART
heard VERB
or CCONJ
read VERB
anything PRON
that PRON
would AUX
suggest VERB
that SCONJ
vitamin NOUN
A(retinol PROPN
) PUNCT
could AUX
reverse VERB
hearing NOUN
loss NOUN
due ADP
to ADP
nerve NOUN
damage(usually PROPN
caused VERB
by ADP
high ADJ
sound NOUN
levels NOUN
, PUNCT
but CCONJ
also ADV
occassionally ADV
due ADJ
to ADP
severe ADJ
infection NOUN
) PUNCT
. PUNCT
  SPACE
The DET
types NOUN
of ADP
cells NOUN
that PRON
vitamin NOUN
A DET
regulates NOUN
are AUX
the DET
general ADJ
epithelial ADJ
cells NOUN
and CCONJ
these DET
cell NOUN
types NOUN
are AUX
not PART
the DET
ones NOUN
that PRON
function VERB
in ADP
the DET
ear NOUN
hearing NOUN
process NOUN
. PUNCT
  SPACE
The DET
hair NOUN
cell NOUN
nerve NOUN
- PUNCT
like ADJ
epithelial ADJ
cells NOUN
in ADP
the DET
ear NOUN
may AUX
respond VERB
to ADP
vitamin NOUN
A NOUN
during ADP
cellular ADJ
differentiation(embryogenesis NOUN
) PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
they PRON
are AUX
still ADV
capable ADJ
of ADP
responding VERB
in ADP
adults NOUN
. PUNCT
  SPACE
If SCONJ
they PRON
are AUX
capable ADJ
of ADP
responding VERB
with ADP
new ADJ
hair NOUN
growth NOUN
, PUNCT
this DET
would AUX
be AUX
a DET
very ADV
major ADJ
breakthrough NOUN
in ADP
hearing VERB
loss NOUN
. PUNCT
  SPACE
With ADP
all DET
of ADP
the DET
medical ADJ
interest NOUN
in ADP
vitamin NOUN
A NOUN
, PUNCT
it PRON
would AUX
not PART
be AUX
too ADV
surprising ADJ
if SCONJ
a DET
clinical ADJ
study NOUN
was AUX
done VERB
using VERB
vitamin NOUN
A NOUN
to PART
reverse VERB
hearing NOUN
loss NOUN
. PUNCT
  SPACE
But CCONJ
with ADP
only ADV
a DET
news NOUN
announcement NOUN
to PART
go VERB
on(and PUNCT
this DET
type NOUN
of ADP
communication NOUN
is AUX
notoriously ADV
bad ADJ
) PUNCT
, PUNCT
I PRON
ca AUX
n't PART
comment VERB
on ADP
your PRON
question NOUN
anymore ADV
than SCONJ
I PRON
already ADV
have AUX
. PUNCT
  SPACE
If SCONJ
one NUM
study NOUN
has AUX
been AUX
done VERB
, PUNCT
more ADJ
will AUX
need VERB
to PART
follow VERB
to PART
firm VERB
up ADP
a DET
link NOUN
between ADP
vitamin NOUN
A NOUN
and CCONJ
hearing VERB
loss NOUN
if SCONJ
there PRON
really ADV
is AUX
one NUM
. PUNCT
Marty PROPN
B. PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59573From NUM
: PUNCT
SFB2763@MVS.draper.com X
( PUNCT
Eileen PROPN
Bauer)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
1993Apr30.211625.568@adobe.com>,abruno@adobe NUM
( PUNCT
Andrea PROPN
Bruno PROPN
) PUNCT
writes:>>In X
article NOUN
< X
19930430140738SFB2763@MVS.draper.com X
> X
SFB2763@MVS.draper.com>(Eileen PROPN
Bauer PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
> X
> X
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart NOUN
) PUNCT
, PUNCT
> X
> X
changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things.>>Is NOUN
there PRON
any DET
relation NOUN
between ADP
thyroid NOUN
deficiency NOUN
and CCONJ
depression?Perhaps VERB
the DET
listlessness NOUN
caused VERB
by ADP
thyroid NOUN
deficiency NOUN
could AUX
mimicdepression NOUN
, PUNCT
or CCONJ
feeling VERB
unable ADJ
to PART
do AUX
anything PRON
could AUX
cause VERB
one NUM
to ADP
getdepressed VERB
, PUNCT
but CCONJ
I PRON
know VERB
of ADP
no DET
specific ADJ
effect NOUN
on ADP
the DET
brain NOUN
caused VERB
by ADP
thethyroid NOUN
that PRON
would AUX
cause VERB
depression NOUN
. PUNCT
Note VERB
that SCONJ
weight NOUN
gain NOUN
is AUX
usuallya ADJ
symptom NOUN
of ADP
both DET
. PUNCT
Simple ADJ
blood NOUN
tests NOUN
would AUX
indicate VERB
if SCONJ
a DET
thyroidcondition NOUN
is AUX
present ADJ
. PUNCT
I PRON
do AUX
n't PART
know VERB
if SCONJ
depression NOUN
would AUX
cause VERB
a DET
reduction NOUN
in ADP
thyroid NOUN
output NOUN
, PUNCT
but CCONJ
I PRON
would AUX
tend VERB
to PART
doubt VERB
it PRON
. PUNCT
As ADV
far ADV
as SCONJ
I PRON
know VERB
clinical ADJ
depression NOUN
iscaused VERB
by ADP
a DET
chemical ADJ
imbalance NOUN
in ADP
the DET
brain NOUN
, PUNCT
and CCONJ
that SCONJ
chemicalimbalance NOUN
has AUX
no DET
direct ADJ
effect NOUN
on ADP
any DET
other ADJ
part NOUN
of ADP
the DET
body NOUN
. PUNCT
A DET
regulareveryday NOUN
depression NOUN
IMHO PROPN
should AUX
not PART
cause VERB
a DET
chemical NOUN
imbalance NOUN
in ADP
thebody NOUN
at ADV
all ADV
. PUNCT
The DET
pituitary ADJ
bases VERB
its PRON
secretions NOUN
of ADP
Thyroid NOUN
Stimulating PROPN
Hormone NOUN
( PUNCT
TSH)on PUNCT
the DET
level NOUN
of ADP
circulating VERB
Thyroxin NOUN
( PUNCT
there PRON
are AUX
two NUM
types NOUN
T3 PROPN
and CCONJ
T4 PROPN
-one PUNCT
is AUX
used VERB
as SCONJ
a DET
reserve NOUN
and CCONJ
is AUX
changed VERB
into ADP
the DET
other ADJ
-active- PUNCT
form NOUN
inthe NOUN
liver NOUN
) PUNCT
. PUNCT
The DET
ratio NOUN
of ADP
T3 PROPN
& CCONJ
T4 PROPN
can AUX
be AUX
affected VERB
by ADP
a DET
number NOUN
of ADP
otherhormones NOUN
( PUNCT
estrogen PROPN
, PUNCT
for ADP
example NOUN
) PUNCT
. PUNCT
Naturally ADV
, PUNCT
changing VERB
activity NOUN
of ADP
thebody NOUN
's PART
cells NOUN
would AUX
cause VERB
changes NOUN
in ADP
availabilty NOUN
of ADP
free ADJ
thyroxin NOUN
, PUNCT
butthe NOUN
liver NOUN
and CCONJ
a DET
healthy ADJ
thyroid NOUN
should AUX
be AUX
able ADJ
to PART
balance VERB
things NOUN
out ADP
inshort NOUN
order NOUN
. PUNCT
Good ADJ
sources NOUN
for ADP
info NOUN
on ADP
the DET
thyroid NOUN
are AUX
the DET
Merk PROPN
Manual PROPN
( PUNCT
a DET
physician'sreference NOUN
book NOUN
) PUNCT
although SCONJ
reading VERB
it PRON
is AUX
enough ADJ
to PART
get AUX
one NUM
depressed ADJ
: PUNCT
-)and PUNCT
the DET
Encyclopedia PROPN
Brittanica PROPN
( PUNCT
should AUX
be AUX
available ADJ
in ADP
your PRON
locallibrary).I NOUN
hope NOUN
this DET
has AUX
been AUX
of ADP
some DET
help.-Eileen PROPN
BauerNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59574From NUM
: PUNCT
swkirch@sun6850.nrl.navy.mil PROPN
( PUNCT
Steve PROPN
Kirchoefer)Subject PROPN
: PUNCT
RESULT NOUN
: PUNCT
misc.health.diabetes PROPN
passes VERB
155:14Voting NOUN
for ADP
creation NOUN
of ADP
the DET
newsgroup NOUN
misc.health.diabetes PROPN
ended VERB
at23:59 PUNCT
GMT PROPN
on ADP
29 NUM
Apr PROPN
93 NUM
. PUNCT
  SPACE
At ADP
this DET
time NOUN
, PUNCT
the DET
total ADJ
response NOUN
receivedconsisted VERB
of ADP
155 NUM
votes NOUN
for ADP
newsgroup PROPN
creation NOUN
and CCONJ
14 NUM
votes NOUN
againstnewsgroup NOUN
creation NOUN
. PUNCT
  SPACE
Under ADP
the DET
Guidelines PROPN
for ADP
Usenet PROPN
Group PROPN
Creation PROPN
, PUNCT
this DET
response NOUN
constitutes VERB
a DET
passing VERB
vote NOUN
. PUNCT
There PRON
will AUX
be AUX
a DET
delay NOUN
to PART
allow VERB
time NOUN
for ADP
the DET
net NOUN
to PART
respond VERB
to ADP
thisresult NOUN
, PUNCT
after ADP
which PRON
the DET
newsgroup NOUN
misc.health.diabetes PROPN
should AUX
becreated VERB
. PUNCT
Please INTJ
check VERB
the DET
vote NOUN
acknowledgement NOUN
list NOUN
to PART
be AUX
sure ADJ
that SCONJ
your PRON
votewas NOUN
received VERB
and CCONJ
properly ADV
credited VERB
. PUNCT
  SPACE
Any DET
inconsistencies NOUN
or CCONJ
errorsshould NOUN
be AUX
reported VERB
to ADP
swkirch@sun6850.nrl.navy.mil PROPN
by ADP
email NOUN
. PUNCT
I PRON
want VERB
to PART
thank VERB
everyone PRON
who PRON
participated VERB
in ADP
the DET
discussion NOUN
and CCONJ
votefor ADV
this DET
newsgroup NOUN
proposal NOUN
. PUNCT
The DET
following NOUN
is AUX
the DET
voting VERB
summary NOUN
: PUNCT
Votes NOUN
received VERB
against ADP
newsgroup PROPN
creation:cline@usceast.cs.scarolina.edu PROPN
               SPACE
Ernest PROPN
A. PROPN
Clinecoleman@twin.twinsun.com X
                     SPACE
Mike PROPN
Colemanejo@kaja.gi.alaska.edu PROPN
                       SPACE
Eric PROPN
J. PROPN
Olsonelharo@shiva.njit.edu PROPN
                        SPACE
Elliotte PROPN
Rusty PROPN
Haroldemcguire@intellection.com PROPN
                    SPACE
Ed PROPN
McGuirehansenr@ohsu.EDUhmpetro@mosaic.uncc.edu PROPN
                      SPACE
Herbert PROPN
M. PROPN
Petrojjmorris@gandalf.rutgers.edu PROPN
                 SPACE
Joyce PROPN
Morrisjulian@bongo.tele.com NOUN
                        SPACE
Julian ADJ
Macasseyknauer@cs.uiuc.edu PROPN
                           SPACE
Rob PROPN
Knauerhaselau@ai.sri.com PROPN
                               SPACE
Stephen PROPN
Laumacridis_g@kosmos.wcc.govt.nz NOUN
                SPACE
Gerry PROPN
Macridisowens@cookiemonster.cc.buffalo.edu PROPN
           SPACE
Bill PROPN
Owensrick@crick.ssctr.bcm.tmc.edu PROPN
                 SPACE
Richard PROPN
H. PROPN
MillerVotes PROPN
received VERB
for ADP
newsgroup PROPN
creation:9781BMU@VMS.CSD.MU.EDU PROPN
                       SPACE
Bill PROPN
Satterleea2wj@loki.cc.pdx.edu PROPN
                         SPACE
Jim PROPN
Williamsac534@freenet.carleton.ca X
                    SPACE
Colin PROPN
Heneinad@cat.de X
                                    SPACE
Axel PROPN
Dunkelal198723@academ07.mty.itesm.mx NUM
               SPACE
Jesus PROPN
Sanchez PROPN
Pe~aandrea@unity.ncsu.eduanugula@badlands.NoDak.edu PROPN
                   SPACE
RamaKrishna PROPN
Reddy PROPN
Anugulaapps@sneaks NOUN
. PUNCT
Kodak.com PROPN
                        SPACE
Robert PROPN
W. PROPN
Appsarperd00@mik.uky.edu PROPN
                         SPACE
Alicia PROPN
R. PROPN
Perduebaind@gov.on.ca X
                              SPACE
Dave PROPN
Bainbalamut@morris.hac.com PROPN
                       SPACE
Morris PROPN
Balamutbch@Juliet PROPN
. PUNCT
Caltech PROPN
. PUNCT
Edu PROPN
                       SPACE
Bryan ADJ
Hathornbernsteinn@LONEXA.ADMIN.RL.AF.MIL NOUN
            SPACE
Norman PROPN
P. PROPN
BernsteinBGAINES@ollamh.ucd.ie PROPN
                        SPACE
Brian PROPN
Gainesbgeer@beorn.sim.es.com PROPN
                       SPACE
Bob PROPN
GeerBjorn.B.Larsen@delab.sintef.no PROPN
               SPACE
Bjorn PROPN
B. PROPN
Larsenbobw@hpsadwc.sad.hp.com PROPN
                      SPACE
Bob PROPN
Waltenspielbock@VSIKP0.UNI PROPN
- PUNCT
MUENSTER.DE PROPN
                  SPACE
Dirk PROPN
Bockbruce@uxb.liverpool.ac.uk PROPN
                    SPACE
Bruce PROPN
Stephensbspencer@binkley.cs.mcgill.ca PROPN
                SPACE
Brian PROPN
Spencerclaudia@LONEXA.ADMIN.RL.AF.MIL PROPN
               SPACE
Claudia PROPN
Servadio-Coynecompass-da.com!tomd@compass-da.com PROPN
           SPACE
Thomas PROPN
Donnellyconstabiled@LONEXA.ADMIN.RL.AF.MIL NOUN
           SPACE
Diane PROPN
Constabilecsc@coast.ucsd.edu PROPN
                           SPACE
Charles PROPN
Coughrancurtech!sbs@unh.edu PROPN
                          SPACE
Stephanie PROPN
Bradley-Swiftdebrum#m#_brenda@msgate.corp.apple.com PROPN
       SPACE
Brenda PROPN
DeBrumdlb@fanny.wash.inmet.com NOUN
                     SPACE
David PROPN
Bartondlg1@midway.uchicago.edu NUM
                     SPACE
Deborah PROPN
Lynn PROPN
Gillaspiedougb@comm.mot.com PROPN
                           SPACE
Douglas PROPN
Bankdrs@sunsrvr3.cci.com X
                         SPACE
Dale PROPN
R. PROPN
Seimdt4%cs@hub.ucsb.edu NOUN
                          SPACE
David PROPN
E. PROPN
Goggined@titipu.resun.com PROPN
                          SPACE
Edward PROPN
Reidedmoore@hpvclc.vcd.hp.com PROPN
                    SPACE
Ed PROPN
Mooreemilio@Accurate PROPN
. PUNCT
COM PROPN
                          SPACE
Elizabeth PROPN
Milioewc@hplb.hpl.hp.com PROPN
                          SPACE
Enrico PROPN
Coiera"feathr::bluejay"@ampakz.enet.dec.comfranklig@GAS.uug.Arizona.EDU PROPN
                 SPACE
Gregory PROPN
C. PROPN
FranklinFSSPR@acad3.alaska.edugabe@angus.mi.org PROPN
                            SPACE
Gabe PROPN
Helougasp@medg.lcs.mit.edu PROPN
                        SPACE
Isaac PROPN
Kohanegavin@praxis.co.uk PROPN
                           SPACE
Gavin PROPN
FinnieGeir PROPN
. PUNCT
Millstein@TF.tele.no VERB
                    SPACE
Geir PROPN
Millsteinggurman@cory PROPN
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
                    SPACE
Gail PROPN
Gurmanggw@wolves VERB
. PUNCT
Durham PROPN
. PUNCT
NC.US PROPN
                      SPACE
Gregory PROPN
G. PROPN
Woodburygmalet@surfer.win.net PROPN
                        SPACE
Gary PROPN
MaletGONZALEZ@SUHEP.PHY.SYR.EDU PROPN
                   SPACE
Gabriela PROPN
Gonzalezgreenlaw@oasys.dt.navy.mil PROPN
                   SPACE
Leila PROPN
Thomasgrm+@andrew.cmu.edu PROPN
                          SPACE
Gretchen PROPN
Millerhalderc@cs.rpi.edu PROPN
                           SPACE
Carol PROPN
HalderHANDELAP%DUVM.BITNET@pucc NOUN
. PUNCT
Princeton PROPN
. PUNCT
EDU PROPN
      SPACE
Phil PROPN
Handelhc@Nyongwa.cam.orgheddings@chrisco.nrl.navy.mil PROPN
                SPACE
Hubert PROPN
Heddingsherbison@lassie.ucx.lkg.dec.comHOSCH2263@iscsvax.uni.edu PROPN
                    SPACE
Kathleen PROPN
Hoschhrubin@pop.stat.purdue.edu PROPN
                   SPACE
Herman PROPN
RubinHUDSOIB@AUDUCADM.DUC.AUBURN.EDU PROPN
              SPACE
Ingrid PROPN
B. PROPN
Hudsonhuff@MCCLB0.MED.NYU.EDU PROPN
                      SPACE
Edward PROPN
J. PROPN
Huffhuffman@ingres.com PROPN
                           SPACE
Gary PROPN
HuffmanHUYNH_1@ESTD.NRL.NAVY.MIL PROPN
                    SPACE
Minh PROPN
Huynhishbeld@cix.compulink.co.uk PROPN
                  SPACE
Ishbel PROPN
DonkinJames PROPN
. PUNCT
Langdell@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
                   SPACE
James PROPN
Langdelljamie@SSD.intel.com PROPN
                          SPACE
Jamie PROPN
Weisbrodjamyers@netcom.com PROPN
                           SPACE
John PROPN
A. PROPN
Myersjc@crosfield.co.uk PROPN
                           SPACE
Jerry PROPN
Cullingfordjcobbe@garnet.acns.fsu.edu NOUN
                   SPACE
James PROPN
Cobbejesup@cbmvax.cbm.commodore.com X
               SPACE
Randell PROPN
Jesupjoannm@hpcc01.corp.hp.com PROPN
                    SPACE
JoAnn PROPN
McGowanjoep@dap.csiro.au NOUN
                            SPACE
Joe PROPN
PetranovicJohn.Burton@acenet.auburn.edu PROPN
                SPACE
John PROPN
E. PROPN
Burton PROPN
, PUNCT
Jr.johncha@comm.mot.comJORGENSONKE@CC.UVCC.EDU PROPN
                      SPACE
Keith PROPN
Jorgensonjpsum00@mik.uky.edu PROPN
                          SPACE
Joey PROPN
P. PROPN
SumJTM@ucsfvm.ucsf.edu NOUN
                          SPACE
John PROPN
Maynardjulien@skcla.monsanto.comkaminski@netcom.com PROPN
                          SPACE
Peter PROPN
Kaminskikerry@citr.uq.oz.au PROPN
                          SPACE
Kerry PROPN
Raymondkieran@world.std.com PROPN
                         SPACE
Aaron PROPN
L. PROPN
Dickeykolar@spot PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
                      SPACE
Jennifer PROPN
Lynn PROPN
Kolarkriguer@tcs.com X
                              SPACE
Marc PROPN
Kriguerlaurie@LONEXA.ADMIN.RL.AF.MIL NOUN
                SPACE
Laurie PROPN
J. PROPN
Keylee@hal.com PROPN
                                  SPACE
Lee PROPN
Boylanlmt6@po.cwru.edu NUM
                             SPACE
Lia PROPN
M. PROPN
Treffmanlunie@Lehigh PROPN
. PUNCT
EDUlusgr@chili PROPN
. PUNCT
CC.Lehigh X
. PUNCT
EDU PROPN
                    SPACE
Stephen PROPN
G. PROPN
RosemanM.Beamish@ins.gu.edu.au PROPN
                      SPACE
Marilyn PROPN
BeamishM.Rich@ens.gu.edu.au PROPN
                         SPACE
Maurice PROPN
H. PROPN
Richmaas@cdfsga.fnal.gov PROPN
                         SPACE
Peter PROPN
Maasmarilyn@LONEXA.ADMIN.RL.AF.MIL PROPN
               SPACE
Marilyn PROPN
M. PROPN
Tuckermarkv@hpvcivm.vcd.hp.com PROPN
                     SPACE
Mark PROPN
VanderfordMASCHLER@vms.huji.ac.il PROPN
                      SPACE
Michael PROPN
Maschlermcb@net.bio.net NUM
                              SPACE
Michael PROPN
C. PROPN
Berchmcday@ux1.cso.uiuc.edu PROPN
                       SPACE
Marrianne PROPN
C. PROPN
Daymcookson@flute.calpoly.edumelynda@titipu.resun.com X
                     SPACE
Melynda PROPN
Reidmfc@isr.harvard.edu PROPN
                          SPACE
Mauricio PROPN
F. PROPN
Contrerasmg@wpi.edu PROPN
                                   SPACE
Martha PROPN
Gunnarsonmhollowa@libserv1.ic.sunysb.edu NOUN
              SPACE
Michael PROPN
Hollowaymisha@abacus.concordia.ca PROPN
                    SPACE
Misha PROPN
Glouberman PROPN
mjb@cs.brown.edu PROPN
                             SPACE
Manish ADJ
ButteMOFLNGAN@vax1.tcd.ie NOUN
                         SPACE
Margaret PROPN
O PROPN
' PUNCT
Flanaganmuir@idiom.berkeley.ca.us NOUN
                    SPACE
David PROPN
Muir PROPN
SharnoffN.D.Treby@southampton.ac.uk PROPN
                  SPACE
N. PROPN
D. PROPN
TrebyN.J.C.Hookey@durham.ac.uk PROPN
                    SPACE
N. PROPN
J. PROPN
C. PROPN
HookeyNancy PROPN
. PUNCT
Block@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
                      SPACE
Nancy PROPN
Blockndallen@r-node.hub.org PROPN
                       SPACE
Nigel PROPN
Allennlemur@eecs.umich.edu PROPN
                        SPACE
Nigel PROPN
Lemurnlr@B31.nei.nih.gov PROPN
                          SPACE
Nathan PROPN
Rohrerpams@hpfcmp.fc.hp.com SYM
                        SPACE
Pam PROPN
Sullivanpapresco@undergrad.math.uwaterloo.ca NOUN
         SPACE
Paul PROPN
Prescodpaslowp@cs.rpi.edu PROPN
                           SPACE
Pam PROPN
Paslowphil@unet.umn.edu PROPN
                            SPACE
Phil PROPN
Lindbergpillinc@gov.on.ca PROPN
                            SPACE
Christopher PROPN
Pillingpkane@cisco.com PROPN
                              SPACE
Peter PROPN
Kanepmmuggli@midway.ecn.uoknor.edu PROPN
               SPACE
Pauline NOUN
Mugglipopelka@odysseus.uchicago.edu NOUN
                SPACE
Glenn PROPN
Popelkapulkka@cs.washington.edu PROPN
                     SPACE
Aaron PROPN
Pulkkapwatkins@med.unc.edu NUM
                         SPACE
Pat PROPN
Watkinsrbnsn@mosaic.shearson.com X
                    SPACE
Ken PROPN
Robinsonrmasten@magnus.acs.ohio-state.edu PROPN
            SPACE
Roger PROPN
Mastenrobyn@media.mit.edu PROPN
                          SPACE
Robyn PROPN
Kozierokrolf@green.mathematik.uni-stuttgart.de PROPN
       SPACE
Rolf PROPN
Schreibersageman@cup.portal.comsasjcs@unx.sas.com X
                           SPACE
Joan PROPN
Stoutsca@space.physics.uiowa.edu PROPN
                  SPACE
Scott PROPN
AllendorfSCOTTJOR@delphi.comscrl@hplb.hpl.hp.comscs@vectis.demon.co.uk PROPN
                       SPACE
Stuart PROPN
C. PROPN
Squibbshan@techops.cray.com X
                        SPACE
Sharan PROPN
Kalwanisharen@iscnvx.lmsc.lockheed.com PROPN
              SPACE
Sharen PROPN
A. NOUN
Rundshazam@unh.edu PROPN
                               SPACE
Matthew PROPN
T. PROPN
Thompsonshipman@csab.larc.nasa.gov PROPN
                   SPACE
Floyd PROPN
S. PROPN
Shipmanshoppa@ERIN.CALTECH.EDU NOUN
                      SPACE
Tim PROPN
Shoppasjsmith@cs NUM
. PUNCT
UMD.EDU PROPN
                           SPACE
Stephen PROPN
Joseph PROPN
Smithslillie@cs1.bradley.edu PROPN
                      SPACE
Susan PROPN
Lilliesteveo@world.std.com PROPN
                         SPACE
Steven PROPN
W. PROPN
Orrsurendar@ivy PROPN
. PUNCT
WPI.EDU PROPN
                         SPACE
Surendar PROPN
Chandraswkirch@sun6850.nrl.navy.mil PROPN
                 SPACE
Steven PROPN
KirchoeferS_FAGAN@twu.edu PROPN
                              SPACE
Liz PROPN
FaganTARYN@ARIZVM1.ccit.arizona.edu PROPN
               SPACE
Taryn PROPN
L. PROPN
WestergaardThomas.E.Taylor@gagme.chi.il.us PROPN
              SPACE
Thomas PROPN
E. PROPN
Taylortima@CFSMO.Honeywell PROPN
. PUNCT
COM PROPN
                     SPACE
Timothy PROPN
D. PROPN
Aanerudtsamuel%gollum@relay.nswc.navy.mil PROPN
           SPACE
Tony PROPN
SamuelU45301@UICVM.UIC.EDU NOUN
                         SPACE
Mary PROPN
Jacobs PROPN
  SPACE
vstern@gte.com X
                               SPACE
Vanessa PROPN
Sternwahlgren@haida.van.wti.com NUM
                   SPACE
James PROPN
WahlgrenWaldref@tv.tv.tek.com X
                        SPACE
Greg PROPN
Waldrefwaterfal@pyrsea.sea.pyramid.com X
              SPACE
Douglas PROPN
Waterfallweineja1@teomail.jhuapl.eduwgrant@informix.com X
                          SPACE
William PROPN
GrantWINGB@Underdale PROPN
. PUNCT
UniSA.edu.au PROPN
                 SPACE
Brian PROPN
WingYEAGER@mscf.med.upenn.eduyozzo@watson.ibm.com PROPN
                         SPACE
Ralph PROPN
E. PROPN
Yozzoysharma@yamuna.b11.ingr.com PROPN
                  SPACE
Yamuna PROPN
SharmaZ919016@beach.utmb.edu NOUN
                       SPACE
Molly ADV
Hamiltonzulu@iesd.auc.dk PROPN
                             SPACE
Bjoern PROPN
U. PROPN
GregersenThe PROPN
charter NOUN
for ADP
misc.health.diabetes PROPN
appears VERB
below ADV
. PUNCT
-------------------------- PUNCT
Charter NOUN
: PUNCT
   SPACE
misc.health.diabetes PROPN
                            SPACE
unmoderated ADJ
1 NUM
. PUNCT
   SPACE
The DET
purpose NOUN
of ADP
misc.health.diabetes PROPN
is AUX
to PART
provide VERB
a DET
forum NOUN
for ADP
thediscussion NOUN
of ADP
issues NOUN
pertaining VERB
to ADP
diabetes NOUN
management NOUN
, PUNCT
i.e. X
: PUNCT
diet NOUN
, PUNCT
activities NOUN
, PUNCT
medicine NOUN
schedules NOUN
, PUNCT
blood NOUN
glucose NOUN
control NOUN
, PUNCT
exercise NOUN
, PUNCT
medical ADJ
breakthroughs NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
group NOUN
addresses VERB
the DET
issues NOUN
ofmanagement NOUN
of ADP
both DET
Type NOUN
I PRON
( PUNCT
insulin NOUN
dependent ADJ
) PUNCT
and CCONJ
Type PROPN
II PROPN
( PUNCT
non ADJ
- ADJ
insulindependent ADJ
) PUNCT
diabetes VERB
. PUNCT
  SPACE
Both DET
technical ADJ
discussions NOUN
and CCONJ
general ADJ
supportdiscussions NOUN
relevant ADJ
to ADP
diabetes NOUN
are AUX
welcome ADJ
. PUNCT
2 NUM
. PUNCT
   SPACE
Postings NOUN
to ADP
misc.heath.diabetes NOUN
are AUX
intended VERB
to PART
be AUX
for ADP
discussionpurposes NOUN
only ADV
, PUNCT
and CCONJ
are AUX
in ADP
no DET
way NOUN
to PART
be AUX
construed VERB
as SCONJ
medical ADJ
advice NOUN
. PUNCT
Diabetes NOUN
is AUX
a DET
serious ADJ
medical ADJ
condition NOUN
requiring VERB
direct ADJ
supervisionby PROPN
a DET
primary ADJ
health NOUN
care NOUN
physician NOUN
. PUNCT
   SPACE
-----(end PROPN
of ADP
charter)------- NUM
Steve PROPN
Kirchoefer PROPN
                                             SPACE
( PUNCT
202 NUM
) PUNCT
767 NUM
- SYM
2862Code NUM
6851 NUM
                                      SPACE
kirchoefer@estd.nrl.navy.milNaval PROPN
Research PROPN
Laboratory PROPN
                       SPACE
Microwave PROPN
Technology PROPN
BranchWashington PROPN
, PUNCT
DC PROPN
  SPACE
20375 NUM
- SYM
5000 NUM
              SPACE
Electronics PROPN
Sci PROPN
. PUNCT
and CCONJ
Tech PROPN
. PUNCT
DivisionNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59575From NUM
: PUNCT
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant VERB
Edwards)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographyttrusk@its.mcw.edu NOUN
( PUNCT
Thomas PROPN
Trusk PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
: PUNCT
BUT CCONJ
, PUNCT
to PART
say VERB
you PRON
're AUX
an DET
atheist NOUN
is AUX
to PART
suggest VERB
you PRON
have AUX
PROOF PROPN
there PRON
is AUX
NO DET
GOD PROPN
. PUNCT
: PUNCT
To PART
be AUX
a DET
politically ADV
- PUNCT
correct ADJ
skeptic NOUN
, PUNCT
better ADJ
to PART
go VERB
with ADP
agnostic NOUN
, PUNCT
like SCONJ
me PRON
! PUNCT
: PUNCT
) PUNCT
: PUNCT
As SCONJ
a DET
self NOUN
- PUNCT
proclaimed VERB
atheist NOUN
my PRON
position NOUN
is AUX
that SCONJ
I PRON
_ AUX
believe VERB
_ PROPN
that SCONJ
there PRON
isno NOUN
god PROPN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
claim VERB
to PART
have AUX
any DET
proof NOUN
. PUNCT
  SPACE
I PRON
interpret VERB
the DET
agnostic ADJ
position NOUN
as SCONJ
having VERB
no DET
beliefs NOUN
about ADP
god PROPN
's PART
existence.--Grant ADJ
Edwards PROPN
                                 SPACE
|Yow PROPN
! PUNCT
  SPACE
Are AUX
we PRON
THERE ADV
yet ADV
? PUNCT
  SPACE
MyRosemount PROPN
Inc. PROPN
                                SPACE
|MIND PROPN
is AUX
a DET
SUBMARINE PROPN
! PUNCT
! PUNCT
                                              SPACE
|grante@aquarius.rosemount.com PROPN
                 SPACE
|Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59576From NUM
: PUNCT
mavmav@mksol.dseg.ti.com PROPN
( PUNCT
michael PROPN
a DET
vincze)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Chromium NOUN
for ADP
weight NOUN
lossIn PROPN
article NOUN
< X
93119.141946U18183@uicvm.uic.edu NUM
> X
, PUNCT
< X
U18183@uicvm.uic.edu NOUN
> X
writes:| PROPN
> X
   SPACE
There PRON
is AUX
no DET
data NOUN
to PART
show VERB
chromium NOUN
is AUX
effective ADJ
in ADP
promoting VERB
weight NOUN
loss NOUN
. PUNCT
  SPACE
The| PROPN
> X
  SPACE
few ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
using VERB
chromium NOUN
have AUX
been AUX
very ADV
flawed ADJ
and CCONJ
inher| NOUN
> X
ently ADV
biased VERB
( PUNCT
the DET
investigators NOUN
were AUX
making VERB
money NOUN
from ADP
marketing VERB
it).| PROPN
> X
   SPACE
Theoretically ADV
it PRON
really ADV
does AUX
nt PART
make VERB
sense NOUN
either ADV
. PUNCT
The DET
claim NOUN
is AUX
that SCONJ
chromium| NOUN
> X
will AUX
increase VERB
muscle NOUN
mass NOUN
and CCONJ
decrease VERB
fat NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
chromium NOUN
is AUX
also ADV
used VERB
t| PROPN
> X
o X
cure NOUN
diabetes NOUN
, PUNCT
high ADJ
blood NOUN
pressure NOUN
and CCONJ
increase VERB
muscle NOUN
mass NOUN
in ADP
athletes(just| PROPN
> X
as ADV
well ADV
as SCONJ
anabolic ADJ
steroids NOUN
) PUNCT
. PUNCT
Sounds VERB
like SCONJ
snake NOUN
oil NOUN
for ADP
the DET
1990 NUM
's PART
: PUNCT
-)Where PUNCT
are AUX
your PRON
references NOUN
? PUNCT
  SPACE
I PRON
have AUX
been AUX
unable ADJ
to PART
find VERB
studies NOUN
that SCONJ
statethat DET
chromium NOUN
" PUNCT
cures VERB
diabetese PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
can AUX
reduce VERB
the DET
amount NOUN
of ADP
insulin NOUN
youhave PROPN
to PART
take VERB
. PUNCT
  SPACE
" PUNCT
High ADJ
blood NOUN
pressure NOUN
" PUNCT
- PUNCT
I PRON
have AUX
never ADV
heard VERB
of ADP
this DET
claimbefore NOUN
. PUNCT
  SPACE
" PUNCT
... PUNCT
anabolic ADJ
steroids NOUN
" PUNCT
- PUNCT
I PRON
have AUX
also ADV
never ADV
heard VERB
of ADP
this DET
claimbefore NOUN
. PUNCT
  SPACE
Sounds VERB
like SCONJ
you PRON
are AUX
making VERB
things NOUN
up ADP
and CCONJ
stretching VERB
the DET
truthfor NOUN
God PROPN
knows VERB
what PRON
reason NOUN
. PUNCT
  SPACE
Did AUX
somebody PRON
piss VERB
you PRON
off ADP
at ADP
one NUM
time?| NOUN
> X
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
it PRON
really ADV
ca AUX
nt PART
hurt VERB
you PRON
anywhere ADV
but CCONJ
your PRON
wallet NOUN
, PUNCT
and CCONJ
place| PROPN
> X
bo PROPN
effects NOUN
of ADP
anything PRON
can AUX
be AUX
pretty ADV
dramatic ADJ
... PUNCT
I PRON
agree VERB
with ADP
you PRON
that DET
chromium NOUN
picolinate NOUN
by ADP
itself PRON
is AUX
n't PART
likelyto PROPN
make VERB
a DET
fat ADJ
person NOUN
thin ADJ
. PUNCT
  SPACE
But CCONJ
it PRON
can AUX
be AUX
the DET
decisive ADJ
componentof NOUN
an DET
overall ADJ
strategy NOUN
for ADP
long ADJ
- PUNCT
term NOUN
weight NOUN
control NOUN
and CCONJ
make VERB
animportant ADJ
contribution NOUN
to ADP
good ADJ
health NOUN
. PUNCT
  SPACE
It PRON
is AUX
important ADJ
toexercise NOUN
( PUNCT
11 NUM
, PUNCT
12 NUM
) PUNCT
and CCONJ
also ADV
avoid VERB
fat ADJ
calories NOUN
( PUNCT
9 NUM
, PUNCT
10).Chromium NUM
picolinate NOUN
has AUX
shown VERB
to PART
reduce VERB
fat ADJ
and CCONJ
increaselean ADJ
muscle NOUN
( PUNCT
1 NUM
, PUNCT
2 NUM
, PUNCT
3 NUM
) PUNCT
. PUNCT
  SPACE
I PRON
will AUX
not PART
bore VERB
you PRON
with ADP
thestatistics NOUN
. PUNCT
  SPACE
You PRON
would AUX
n't PART
believe VERB
these DET
anyway ADV
. PUNCT
Chromium NOUN
Picolinate PROPN
is AUX
an DET
exceptionally ADV
bioactive ADJ
source NOUN
ofthe DET
essential ADJ
mineral NOUN
chromium NOUN
. PUNCT
  SPACE
Chromium PROPN
plays VERB
a DET
vital ADJ
rolein NOUN
" PUNCT
sensitizing VERB
" PUNCT
the DET
body NOUN
's PART
tissues NOUN
to ADP
the DET
hormone NOUN
insulin NOUN
. PUNCT
Weight NOUN
gain NOUN
in ADP
the DET
form NOUN
of ADP
fat NOUN
tends VERB
to PART
impair VERB
sensitivityto ADJ
insulin NOUN
and CCONJ
thus ADV
, PUNCT
in ADP
turn NOUN
, PUNCT
makes VERB
it PRON
harder ADJ
to PART
loseweight VERB
( PUNCT
4).Insulin NUM
directly ADV
stimulates VERB
protein NOUN
synthesis NOUN
and CCONJ
retardsprotein PROPN
breakdown NOUN
in ADP
muscles NOUN
( PUNCT
5 NUM
, PUNCT
6 NUM
) PUNCT
. PUNCT
  SPACE
This DET
" PUNCT
protein NOUN
sparing"effect NOUN
of ADP
insulin NOUN
tends VERB
to PART
decline VERB
during ADP
low ADJ
calorie PROPN
dietsas PROPN
insulin NOUN
levels NOUN
decline VERB
, PUNCT
which PRON
results VERB
in ADP
loss NOUN
of ADP
muscleand ADJ
organ NOUN
tissue NOUN
. PUNCT
  SPACE
By ADP
" PUNCT
sensitizing VERB
" PUNCT
muscle NOUN
to ADP
insulin NOUN
, PUNCT
chromium NOUN
picolinate NOUN
helps VERB
to PART
preserve VERB
muscle NOUN
in ADP
dietersso PROPN
that SCONJ
they PRON
" PUNCT
burn VERB
" PUNCT
more ADV
fat ADJ
and CCONJ
less ADJ
muscle NOUN
. PUNCT
  SPACE
Preservationof PROPN
lean ADJ
body NOUN
mass NOUN
has AUX
an DET
important ADJ
long ADJ
- PUNCT
term NOUN
positiveeffect NOUN
on ADP
metabolic ADJ
rate NOUN
, PUNCT
helping VERB
dieters NOUN
keep VERB
off ADP
thefat NOUN
they PRON
've AUX
lost VERB
. PUNCT
Chromium NOUN
picolinate NOUN
promotes VERB
efficient ADJ
metabolism NOUN
by ADP
aidingthe PROPN
thermogenic NOUN
( PUNCT
heat NOUN
producing VERB
) PUNCT
effects NOUN
of ADP
insulin NOUN
. PUNCT
Insulin NOUN
levels NOUN
serve VERB
as SCONJ
a DET
rough ADJ
index NOUN
of ADP
the DET
availabilityof PROPN
food NOUN
calories VERB
, PUNCT
so CCONJ
it PRON
's AUX
not PART
at ADV
all ADV
surprising ADJ
that SCONJ
insulin NOUN
stimulates VERB
metabolism NOUN
( PUNCT
4 NUM
, PUNCT
7 NUM
, PUNCT
8) NUM
. PUNCT
  SPACE
Note VERB
that SCONJ
I PRON
did AUX
not PART
saythat VERB
chromium NOUN
picolinate NOUN
increases VERB
metabolism NOUN
. PUNCT
In ADP
summary NOUN
, PUNCT
you PRON
need VERB
to PART
change VERB
your PRON
life NOUN
style NOUN
in ADP
order NOUN
toloose NOUN
weight NOUN
and CCONJ
stay VERB
healthy ADJ
: PUNCT
  SPACE
A. PROPN
Reduce PROPN
dietary ADJ
fat ADJ
consumption NOUN
to ADP
no DET
more ADJ
than SCONJ
20 NUM
% NOUN
of ADP
calories NOUN
. PUNCT
     SPACE
- PUNCT
Eating VERB
fat NOUN
makes VERB
you PRON
fat ADJ
. PUNCT
  SPACE
B. PROPN
Increase PROPN
dietary ADJ
fiber NOUN
     SPACE
- PUNCT
low NOUN
in ADP
calories NOUN
; PUNCT
high ADJ
in ADP
nutrients NOUN
. PUNCT
  SPACE
C. PROPN
Get PROPN
regular ADJ
aerobic ADJ
exercise NOUN
at ADP
least ADJ
3 NUM
times NOUN
a DET
week NOUN
     SPACE
- PUNCT
burn NOUN
calories NOUN
. PUNCT
  SPACE
D. PROPN
Take VERB
chromium NOUN
picolinate NOUN
daily ADJ
     SPACE
- PUNCT
lose NOUN
fat NOUN
; PUNCT
keep VERB
muscleReferences:1 PROPN
. PUNCT
  SPACE
Kaats PROPN
GR PROPN
, PUNCT
Fisher PROPN
JA PROPN
, PUNCT
Blum PROPN
K. PROPN
Abstract PROPN
, PUNCT
American PROPN
Aging PROPN
    SPACE
Association PROPN
, PUNCT
21st ADJ
Annual PROPN
Meeting PROPN
, PUNCT
Denver PROPN
, PUNCT
October PROPN
1991.2 NUM
. PUNCT
  SPACE
Evans PROPN
, PUNCT
GW PROPN
. PUNCT
Int PROPN
J PROPN
Biosoc PROPN
Med PROPN
Res PROPN
1989 NUM
; PUNCT
11 NUM
: SYM
163 NUM
- SYM
180.3 NUM
. PUNCT
  SPACE
Page NOUN
TG PROPN
, PUNCT
Ward PROPN
TL PROPN
, PUNCT
Southern ADJ
LL PROPN
. PUNCT
J PROPN
Animal PROPN
Sci PROPN
69 NUM
, PUNCT
Suppl PROPN
1 NUM
: PUNCT
    SPACE
Abstract PROPN
403 NUM
, PUNCT
1991.4 NUM
. PUNCT
  SPACE
Felig PROPN
P. PROPN
Clin PROPN
Physiol PROPN
1984 NUM
; PUNCT
4 NUM
: SYM
267 NUM
- SYM
273.5 NUM
. PUNCT
  SPACE
Kimball PROPN
SR PROPN
, PUNCT
Jefferson PROPN
LS PROPN
. PUNCT
Diabetes VERB
Metab PROPN
Rev PROPN
4 NUM
: SYM
773 NUM
, PUNCT
1988.6 NUM
. PUNCT
  SPACE
Fukugawa PROPN
NK PROPN
, PUNCT
Minaher PROPN
KL PROPN
, PUNCT
Rowe PROPN
JW PROPN
. PUNCT
et PROPN
al PROPN
. PUNCT
J PROPN
Clin PROPN
Invest PROPN
76 NUM
: PUNCT
    SPACE
2306 NUM
, PUNCT
1985.7 NUM
. PUNCT
  SPACE
Fehlmann PROPN
M PROPN
, PUNCT
Freychet PROPN
P. PROPN
Biol PROPN
Chem PROPN
256 NUM
: PUNCT
7449 NUM
, PUNCT
19818 NUM
. PUNCT
  SPACE
Pittman PROPN
CS PROPN
, PUNCT
Suda PROPN
AK PROPN
, PUNCT
Chambers PROPN
JB PROPN
, PUNCT
Jr. PROPN
, PUNCT
Ray PROPN
GY PROPN
. PUNCT
Metabolism NOUN
    SPACE
28 NUM
: SYM
333 NUM
, PUNCT
1979.9 NUM
. PUNCT
  SPACE
Danforth PROPN
E PROPN
, PUNCT
Jr. PROPN
Am PROPN
J PROPN
Clin PROPN
Nutr PROPN
41 NUM
: SYM
1132 NUM
, PUNCT
1985.10 NUM
. PUNCT
McCarty PROPN
MF PROPN
. PUNCT
Med PROPN
Hypoth PROPN
20 NUM
: SYM
183 NUM
, PUNCT
1986.11 NUM
. PUNCT
Bielinski PROPN
R PROPN
, PUNCT
Schutz PROPN
Y PROPN
, PUNCT
Jequier PROPN
E. PROPN
Am PROPN
J PROPN
Clin PROPN
Nutr PROPN
42:69 NUM
, PUNCT
1985.12 NUM
. PUNCT
Young ADJ
JC PROPN
, PUNCT
Treadway PROPN
JL PROPN
, PUNCT
Balon PROPN
TW PROPN
, PUNCT
Garvas PROPN
HP PROPN
, PUNCT
Ruderman PROPN
NB PROPN
. PUNCT
    SPACE
Metabolism NOUN
35 NUM
: SYM
1048 NUM
, PUNCT
1986.Best NOUN
regards NOUN
, PUNCT
Michael PROPN
Vinczemav@asd470.dseg.ti.comNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59577From NUM
: PUNCT
res4w@galen.med.Virginia.EDU PROPN
( PUNCT
Robert PROPN
E. PROPN
Schmieg)Subject NUM
: PUNCT
Re ADP
: PUNCT
Deadly ADJ
NyQuil???bitn@kimbark.uchicago.edu NOUN
  SPACE
writes VERB
: PUNCT
> X
My PRON
friend NOUN
insists VERB
that SCONJ
Ny PROPN
- PUNCT
Quil PROPN
can AUX
be AUX
deadly ADJ
if SCONJ
enough ADJ
is AUX
taken VERB
-- PUNCT
he PRON
> X
suggested VERB
something PRON
like SCONJ
20 NUM
- SYM
30 NUM
of ADP
the DET
Night PROPN
- PUNCT
time NOUN
gelcaps NOUN
would AUX
do AUX
someone PRON
> X
in ADV
. PUNCT
  SPACE
Being AUX
a DET
NORMAL PROPN
user NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
:) NUM
, PUNCT
I PRON
checked VERB
the DET
' PUNCT
ingredients NOUN
' PUNCT
and CCONJ
> X
have AUX
a DET
very ADV
hard ADJ
time NOUN
believing VERB
it PRON
. PUNCT
  SPACE
They PRON
are AUX
: PUNCT
> X
> X
250 NUM
g NOUN
acetaminophen PROPN
        SPACE
^^^^^^^^^^ PUNCT
> X
30 NUM
mg PROPN
Pseudoephedrine PROPN
HCl NOUN
> X
10 NUM
mg NOUN
Dextromethorphan PROPN
HBr NOUN
> X
6.25 NUM
mg PROPN
Doxylamine PROPN
Succinate PROPN
> X
( PUNCT
per ADP
softgel PROPN
) PUNCT
> X
> X
Can AUX
someone PRON
settle VERB
our PRON
bet NOUN
( PUNCT
a DET
package NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
of ADP
course NOUN
:) PUNCT
-- PUNCT
what PRON
> X
effect NOUN
would AUX
20 NUM
- SYM
30 NUM
of ADP
these DET
babies NOUN
have?The ADJ
acetaminophen PROPN
is AUX
the DET
agent NOUN
of ADP
concern NOUN
in ADP
overdose NOUN
of ADP
thisOTC PROPN
medication NOUN
. PUNCT
  SPACE
A DET
single ADJ
dose NOUN
of ADP
acetaminophen PROPN
of ADP
10 NUM
grams NOUN
or CCONJ
greatercan PROPN
cause VERB
hepatotoxicity NOUN
, PUNCT
and CCONJ
doses NOUN
of ADP
25 NUM
grams NOUN
or CCONJ
more ADV
arepotentially ADV
fatal ADJ
from ADP
hepatic ADJ
necrosis NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
recallcorrectly ADV
, PUNCT
the DET
metabolism NOUN
of ADP
acetaminophen PROPN
at ADP
high ADJ
dosesinvolves NOUN
N PROPN
- PUNCT
hydroxylation NOUN
to ADP
N PROPN
- PUNCT
acetyl ADJ
- PUNCT
benzoquinoneimine NOUN
, PUNCT
whichis X
a DET
highly ADV
reactive ADJ
intermediate NOUN
, PUNCT
which PRON
then ADV
reacts VERB
withsulfhydryl NOUN
groups NOUN
of ADP
proteins NOUN
and CCONJ
glutathione NOUN
. PUNCT
  SPACE
When ADV
hepaticglutathione VERB
is AUX
used VERB
up ADP
, PUNCT
this DET
intermediate ADJ
then ADV
startsattacking VERB
the DET
hepatic ADJ
proteins NOUN
with ADP
resulting VERB
hepaticnecrosis NOUN
. PUNCT
  SPACE
The DET
insidious ADJ
part NOUN
of ADP
acetaminophen PROPN
toxicity PROPN
is AUX
thedelay ADJ
( PUNCT
2 NUM
- SYM
4 NUM
days NOUN
) PUNCT
between ADP
ingestion NOUN
and CCONJ
clinical ADJ
signs NOUN
of ADP
liverdamage NOUN
. PUNCT
  SPACE
This DET
is AUX
NOT ADV
a DET
nice ADJ
way NOUN
to PART
die VERB
. PUNCT
As SCONJ
to ADP
taking VERB
20 NUM
- SYM
30 NUM
of ADP
these DET
tablets NOUN
, PUNCT
that DET
comes VERB
to ADP
5 NUM
- SYM
7.5 NUM
gramsof NOUN
acetaminophen NOUN
. PUNCT
  SPACE
In ADP
a DET
normal ADJ
adult NOUN
, PUNCT
this DET
would AUX
probablycause VERB
nausea NOUN
, PUNCT
vomiting NOUN
, PUNCT
abdominal ADJ
pain NOUN
, PUNCT
and CCONJ
loss NOUN
of ADP
appetite NOUN
. PUNCT
Bob PROPN
SchmiegNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59578From NUM
: PUNCT
brb@falcon.is PROPN
( PUNCT
Bjorn PROPN
R. PROPN
Bjornsson)Subject NUM
: PUNCT
Re ADP
: PUNCT
earwaxhbloom@moose.uvm.edu PROPN
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>You NOUN
can AUX
try VERB
> X
adding VERB
a DET
few ADJ
drops NOUN
of ADP
olive ADJ
oil NOUN
into ADP
the DET
ear NOUN
during ADP
a DET
shower NOUN
to PART
soften VERB
up ADP
> X
the DET
wax NOUN
. PUNCT
  SPACE
Do AUX
this DET
for ADP
a DET
couple NOUN
days NOUN
, PUNCT
then ADV
try VERB
syringing VERB
again ADV
. PUNCT
  SPACE
It PRON
is AUX
also ADV
> X
safe ADJ
to PART
point VERB
your PRON
ear NOUN
up ADP
at ADP
the DET
shower NOUN
head NOUN
, PUNCT
and CCONJ
allow VERB
the DET
water NOUN
to PART
rinse VERB
> X
it PRON
out ADP
. PUNCT
About ADV
six NUM
years NOUN
ago ADV
my PRON
ears NOUN
clogged VERB
up ADP
with ADP
wax NOUN
, PUNCT
probably ADV
as SCONJ
aresult NOUN
of ADP
to PART
much ADJ
headphone NOUN
use NOUN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
the DET
clinic NOUN
that PRON
cleanedthem NOUN
out ADV
used VERB
the DET
following ADJ
procedure:1 NUM
. PUNCT
Inject VERB
olive ADJ
oil NOUN
into ADP
ears.2 PROPN
. PUNCT
Prevent ADJ
leakage NOUN
of ADP
oil NOUN
with ADP
cotton.3 PROPN
. PUNCT
Come VERB
back ADV
in ADP
an DET
hour.4 NOUN
. PUNCT
Rinse ADJ
ears NOUN
with ADP
warm ADJ
vater NOUN
, PUNCT
forcefully ADV
injected VERB
   SPACE
into ADP
ear NOUN
( PUNCT
very ADV
strange ADJ
sensation).5 NOUN
. PUNCT
Done VERB
. PUNCT
They PRON
had AUX
special ADJ
tools NOUN
to PART
do AUX
this DET
, PUNCT
and CCONJ
were AUX
evidently ADV
quitefamiliar ADJ
with ADP
the DET
problem NOUN
: PUNCT
Very ADV
large ADJ
steel NOUN
syringe NOUN
. PUNCT
  SPACE
Specialbowl VERB
with ADP
cutout NOUN
for ADP
ear NOUN
to PART
take VERB
the DET
grime NOUN
coming VERB
out ADP
withoutspillage.>Good PROPN
LuckSeconded PROPN
, PUNCT
Bjorn PROPN
R. PROPN
Bjornssonbrb@falcon.isNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59579From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Legality NOUN
of ADP
placebos?In PROPN
article NOUN
< X
jfhC6BG8y.D2x@netcom.com PROPN
> X
jfh@netcom.com PROPN
( PUNCT
Jack PROPN
Hamilton PROPN
) PUNCT
writes:>>Actually PROPN
, PUNCT
I PRON
do AUX
n't PART
know VERB
know VERB
anyone PRON
who PRON
has AUX
actually ADV
gotten VERB
a DET
" PUNCT
sugar NOUN
pill".[ PROPN
... PUNCT
]>>It PROPN
's PART
more ADV
common ADJ
to PART
prescribe VERB
a DET
drug NOUN
which PRON
is AUX
effective ADJ
for ADP
something PRON
, PUNCT
just ADV
> X
not PART
for ADP
what PRON
you PRON
have AUX
. PUNCT
  SPACE
Antibiotics NOUN
for ADP
viral ADJ
infections NOUN
are AUX
the DET
most ADJ
> X
common ADJ
such ADJ
placebo NOUN
. PUNCT
And CCONJ
presumably ADV
this DET
is AUX
a DET
matter NOUN
of ADP
degree NOUN
; PUNCT
it PRON
must AUX
be AUX
common ADJ
to PART
prescribea PROPN
drug NOUN
that PRON
has AUX
_ PROPN
some DET
_ ADJ
chance NOUN
of ADP
giving VERB
_ PROPN
some DET
_ PROPN
benefit NOUN
, PUNCT
but CCONJ
not PART
a DET
highprobability NOUN
of ADP
it PRON
, PUNCT
and/or CCONJ
not PART
a DET
large ADJ
benefit NOUN
. PUNCT
  SPACE
Right?-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59580From NUM
: PUNCT
sdb@ssr.com X
( PUNCT
Scott PROPN
Ballantyne)Subject NUM
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"In NOUN
article NOUN
< X
93111.145432ICGLN@ASUACAD.BITNET NUM
> X
< X
ICGLN@ASUACAD.BITNET NOUN
> X
writes VERB
: PUNCT
   SPACE
A DET
good ADJ
source NOUN
of ADP
information NOUN
on ADP
Burzynski PROPN
's PART
method NOUN
is AUX
in ADP
* PUNCT
The DET
Cancer PROPN
Industry PROPN
* PUNCT
   SPACE
by ADP
pulitzer PROPN
- PUNCT
prize NOUN
nominee NOUN
Ralph PROPN
Moss PROPN
. PUNCT
Interesting ADJ
. PUNCT
What PRON
book NOUN
got VERB
Moss PROPN
the DET
pulitzer NOUN
nomination NOUN
? PUNCT
None NOUN
of ADP
theflyers NOUN
for ADP
his PRON
books NOUN
mention VERB
this DET
, PUNCT
and CCONJ
none NOUN
of ADP
the DET
Cancer PROPN
ChronicleNewsletters PROPN
that PRON
I PRON
have AUX
mention VERB
this DET
either ADV
. PUNCT
   SPACE
Also ADV
, PUNCT
a DET
non ADJ
- ADJ
profit ADJ
organization NOUN
called VERB
" PUNCT
People NOUN
Against ADP
Cancer NOUN
, PUNCT
" PUNCT
   SPACE
which PRON
was AUX
formed VERB
for ADP
the DET
purpose NOUN
of ADP
allowing VERB
cancer NOUN
patients NOUN
to PART
   SPACE
access NOUN
information NOUN
regarding VERB
cancer NOUN
therapies NOUN
not PART
endorsed VERB
by ADP
the DET
   SPACE
cancer NOUN
industry NOUN
, PUNCT
but CCONJ
which PRON
have AUX
shown VERB
highly ADV
promising ADJ
results NOUN
( PUNCT
all DET
   SPACE
of ADP
which PRON
are AUX
non ADJ
- ADJ
toxic).Moss ADJ
is AUX
People NOUN
Against ADP
Cancer PROPN
's PART
Director PROPN
of ADP
Communications PROPN
. PUNCT
PeopleAgainst PROPN
Cancer NOUN
seems VERB
to PART
offer VERB
pretty ADV
questionable ADJ
information NOUN
, PUNCT
notexactly ADV
the DET
place NOUN
a DET
cancer NOUN
patient NOUN
should AUX
be AUX
advised VERB
to PART
turn VERB
to ADP
. PUNCT
Most(maybe ADV
all DET
) PUNCT
of ADP
the DET
infomation NOUN
in ADP
their PRON
latest ADJ
catalogue NOUN
concerntreatments NOUN
that PRON
have AUX
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
against ADP
cancer NOUN
, PUNCT
andmany NOUN
of ADP
the DET
treatments NOUN
are AUX
quite ADV
dangerous ADJ
as SCONJ
well.sdb---sdb@ssr.comNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59581From NUM
: PUNCT
sdb@ssr.com X
( PUNCT
Scott PROPN
Ballantyne)Subject NUM
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"In NOUN
article NOUN
< X
jschwimmer.123.735362184@wccnet.wcc.wesleyan.edu PROPN
> X
jschwimmer@wccnet.wcc.wesleyan.edu NOUN
( PUNCT
Josh PROPN
Schwimmer PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Any DET
opinions NOUN
on ADP
Burzynski PROPN
's PART
antineoplastons NOUN
or CCONJ
information NOUN
about ADP
the DET
current ADJ
    SPACE
status NOUN
of ADP
his PRON
research NOUN
would AUX
be AUX
appreciated VERB
. PUNCT
Burzynski PROPN
's PART
work NOUN
is AUX
not PART
too ADV
promising ADJ
. PUNCT
None NOUN
of ADP
his PRON
A-1 PROPN
through ADP
A-5antineoplastons NOUN
have AUX
been AUX
shown VERB
to PART
have AUX
antineoplastic ADJ
effects NOUN
againstexperimental ADJ
cancer NOUN
. PUNCT
The DET
NCI PROPN
conducted VERB
tests NOUN
of ADP
A-2 PROPN
and CCONJ
A-5 PROPN
againstleukemia NOUN
in ADP
mice NOUN
, PUNCT
with ADP
the DET
result NOUN
that PRON
doses VERB
high ADJ
enough ADV
to PART
producetoxic VERB
effects NOUN
in ADP
the DET
mice NOUN
were AUX
not PART
effective ADJ
in ADP
inhibiting VERB
the DET
growthof NOUN
the DET
tumor NOUN
or CCONJ
killing VERB
it PRON
. PUNCT
( PUNCT
These DET
were AUX
in ADP
1983 NUM
and CCONJ
1985)Burzynski NUM
claims NOUN
that SCONJ
A-10 PROPN
is AUX
the DET
active ADJ
factor NOUN
common ADJ
to ADP
all DET
of ADP
A-1and NUM
A-5 PROPN
( PUNCT
something PRON
which PRON
he PRON
has AUX
not PART
shown VERB
, PUNCT
A-10 PROPN
has AUX
only ADV
beenextracted VERB
from ADP
A-2 PROPN
. PUNCT
He PRON
also ADV
has AUX
n't PART
shown VERB
that SCONJ
A-1 PROPN
through ADP
A-5 PROPN
are AUX
actuallydistinct ADJ
substances NOUN
) PUNCT
. PUNCT
The DET
NCI PROPN
conducted VERB
a DET
series NOUN
of ADP
tests NOUN
using VERB
A-10against PROPN
a DET
standard ADJ
panel NOUN
of ADP
tumors NOUN
that PRON
included VERB
different ADJ
cell NOUN
linesfrom NOUN
tumors NOUN
in ADP
the DET
following VERB
classes NOUN
: PUNCT
leukemia NOUN
, PUNCT
non ADJ
- ADJ
small ADJ
- PUNCT
cell NOUN
andsmall NOUN
- PUNCT
cell NOUN
lung NOUN
cancer NOUN
, PUNCT
colon NOUN
cancer NOUN
, PUNCT
cancer NOUN
of ADP
the DET
central ADJ
nervoussystem PROPN
, PUNCT
melanoma PROPN
, PUNCT
ovarian ADJ
cancer NOUN
and CCONJ
renal ADJ
cancer NOUN
. PUNCT
A-10 PROPN
exhibitedneither NOUN
growth NOUN
inhibition NOUN
nor CCONJ
cytotoxicity NOUN
at ADP
the DET
dose PROPN
levels NOUN
tested VERB
. PUNCT
It PRON
is AUX
necessary ADJ
to PART
process VERB
A-10 PROPN
since SCONJ
it PRON
is AUX
not PART
soluble ADJ
( PUNCT
Burzynski'stheory NOUN
requires VERB
soluble ADJ
agents NOUN
) PUNCT
, PUNCT
but CCONJ
this DET
basically ADV
hydrolizes VERB
it PRON
toPAG VERB
( PUNCT
which PRON
he PRON
calls VERB
AS ADP
2.5 NUM
) PUNCT
. PUNCT
PAG PROPN
is AUX
not PART
an DET
information NOUN
carryingpeptide NOUN
, PUNCT
something PRON
which PRON
Byrzynski PROPN
claims VERB
is AUX
necessary ADJ
forantineoplastic ADJ
activity NOUN
. PUNCT
AS ADP
2.1 NUM
( PUNCT
also ADV
derived VERB
from ADP
A-10 PROPN
) PUNCT
is AUX
a DET
4:1mixture NUM
of ADP
PA PROPN
and CCONJ
PAG PROPN
. PUNCT
PA PROPN
( PUNCT
also ADV
not PART
a DET
peptide NOUN
) PUNCT
can AUX
be AUX
purchased VERB
at ADP
achemical ADJ
supply NOUN
houses NOUN
for ADP
about ADV
$ SYM
0.09 NUM
a DET
gram NOUN
. PUNCT
A-10 PROPN
is AUX
chemicallyextremely ADV
similar ADJ
to PART
glutithamide VERB
and CCONJ
thalidomide ADV
, PUNCT
both DET
of ADP
which PRON
arehabit VERB
forming VERB
and CCONJ
can AUX
cause VERB
peripheral ADJ
neuropathy NOUN
. PUNCT
The DET
nasty ADJ
effectsof NOUN
thalidomide ADV
are AUX
widely ADV
known VERB
. PUNCT
In ADP
spite NOUN
of ADP
this DET
similarity NOUN
, PUNCT
A-10does PROPN
not PART
appear VERB
to PART
have AUX
been AUX
tested VERB
for ADP
it PRON
's AUX
potential ADJ
to ADP
induceteratogenicity NOUN
or CCONJ
peripheral ADJ
neuropathy NOUN
. PUNCT
Many ADJ
of ADP
Burzynski PROPN
's PART
statements NOUN
about ADP
the DET
origin NOUN
of ADP
his PRON
theory NOUN
, PUNCT
earlyresearch NOUN
, PUNCT
past ADJ
and CCONJ
present ADJ
support NOUN
by ADP
others NOUN
for ADP
his PRON
work NOUN
have AUX
beenshown VERB
to PART
be AUX
untrue.sdb---sdb@ssr.comNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59582From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???In NUM
article NOUN
< X
9304261811.AA07821@DPW.COM NOUN
> X
jprice@dpw.com X
( PUNCT
Janice PROPN
Price PROPN
) PUNCT
writes:>>I NOUN
saw VERB
a DET
printed VERB
up ADP
flyer NOUN
that PRON
stated VERB
the DET
person NOUN
was AUX
a>"licensed VERB
herbologist NOUN
and CCONJ
iridologist">What DET
are AUX
your PRON
opinions?>How NOUN
much ADJ
can AUX
you PRON
tell VERB
about ADP
a DET
person NOUN
's PART
health NOUN
by ADP
looking VERB
into ADP
their PRON
eyes?Its NOUN
bogus ADJ
. PUNCT
  SPACE
See VERB
the DET
sci.skeptic ADJ
FAQ PROPN
( PUNCT
I PRON
edit VERB
it).You NOUN
can AUX
diagnose VERB
some DET
things NOUN
by ADP
looking VERB
at ADP
the DET
eyes NOUN
. PUNCT
  SPACE
Glaucoma PROPN
is AUX
theClassic PROPN
Example PROPN
, PUNCT
but CCONJ
there PRON
are AUX
probably ADV
others NOUN
. PUNCT
Iridology NOUN
maps VERB
parts NOUN
of ADP
the DET
body NOUN
onto ADP
the DET
irises NOUN
of ADP
the DET
eyes NOUN
. PUNCT
  SPACE
Bylooking VERB
at ADP
the DET
patterns NOUN
, PUNCT
striations NOUN
and CCONJ
occasional ADJ
blobs NOUN
in ADP
the DET
irisesyou NOUN
are AUX
supposed VERB
to PART
be AUX
able ADJ
to PART
diagnose VERB
illnesses NOUN
all ADV
over ADP
the DET
body NOUN
. PUNCT
The DET
two NUM
questions NOUN
to PART
ask VERB
any DET
alternative ADJ
therapist NOUN
are:1 NOUN
: PUNCT
How ADV
does AUX
it PRON
work?2 VERB
: PUNCT
What PRON
evidence NOUN
is AUX
there?The ADJ
answer NOUN
to PART
question NOUN
1 NUM
takes VERB
a DET
little ADJ
knowledge NOUN
of ADP
medicine NOUN
toevaluate NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
about ADP
iridology NOUN
, PUNCT
but CCONJ
I PRON
've AUX
read VERB
a DET
book NOUN
onreflexology NOUN
, PUNCT
which PRON
is AUX
a DET
remarkably ADV
similar ADJ
notion NOUN
except SCONJ
that SCONJ
theorgans NOUN
of ADP
the DET
body NOUN
are AUX
mapped VERB
onto ADP
the DET
soles NOUN
of ADP
the DET
feet NOUN
. PUNCT
  SPACE
There PRON
aresupposed VERB
to PART
be AUX
channels NOUN
running VERB
down ADP
the DET
body NOUN
carrying VERB
information NOUN
orenergy NOUN
of ADP
some DET
sort NOUN
. PUNCT
  SPACE
Anatomists NOUN
have AUX
found VERB
no DET
such ADJ
structures.(Always NOUN
beware VERB
the DET
words NOUN
" PUNCT
channel NOUN
" PUNCT
and CCONJ
" PUNCT
energy NOUN
" PUNCT
in ADP
any DET
spiel PROPN
put VERB
outby PROPN
an DET
alternative NOUN
practitioner.)The ADP
answer NOUN
to PART
question NOUN
2 NUM
is AUX
rather ADV
simpler ADJ
. PUNCT
  SPACE
If SCONJ
all DET
they PRON
have AUX
isanecdotal ADJ
evidence NOUN
then ADV
forget VERB
it PRON
. PUNCT
  SPACE
Ask VERB
for ADP
referreed NOUN
papers NOUN
inmainstream PROPN
medical ADJ
journals NOUN
. PUNCT
  SPACE
Ignore VERB
any DET
bull NOUN
about ADP
the DET
conspiracy NOUN
ofrich NOUN
doctors NOUN
suppressing VERB
alternative ADJ
practitioners NOUN
. PUNCT
  SPACE
Studies NOUN
are AUX
doneand NOUN
papers NOUN
are AUX
published VERB
. PUNCT
  SPACE
Some DET
of ADP
them PRON
are AUX
even ADV
positive ADJ
. PUNCT
The DET
word NOUN
" PUNCT
licensed VERB
" PUNCT
in ADP
the DET
flyer NOUN
is AUX
an DET
interesting ADJ
one NOUN
. PUNCT
  SPACE
Licensed VERB
bywhom NOUN
? PUNCT
  SPACE
For ADP
what PRON
? PUNCT
  SPACE
It PRON
is AUX
quite ADV
possible ADJ
that SCONJ
the DET
herbology NOUN
is AUX
real ADJ
andrequires NOUN
a DET
license NOUN
: PUNCT
you PRON
can AUX
kill VERB
someone PRON
by ADP
giving VERB
them PRON
the DET
wrongplants NOUN
to PART
eat VERB
, PUNCT
and CCONJ
many ADJ
plants NOUN
contain VERB
very ADV
powerful ADJ
drugs NOUN
( PUNCT
Foxgloveand PROPN
Willow PROPN
spring NOUN
to ADP
mind NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
is AUX
not PART
clear ADJ
whether SCONJ
the DET
licenseextends NOUN
to ADP
the DET
iridology NOUN
, PUNCT
and CCONJ
I PRON
suspect VERB
that SCONJ
if SCONJ
you PRON
ask VERB
you PRON
will AUX
betold VERB
that SCONJ
it PRON
means VERB
" PUNCT
( PUNCT
Licensed VERB
herbologist NOUN
) PUNCT
and CCONJ
iridologist" NOUN
. PUNCT
BTW ADV
, PUNCT
the DET
usual ADJ
term NOUN
is AUX
" PUNCT
herbalist ADJ
" PUNCT
. PUNCT
  SPACE
Why ADV
use VERB
a DET
different ADJ
word?-- NOUN
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59583From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
cats NOUN
and CCONJ
pregnancy NOUN
> X
Hello,>I PROPN
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
which PRON
> X
can AUX
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
> X
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?See INTJ
the DET
rec.pets.cats NOUN
FAQ PROPN
or CCONJ
any DET
doctor NOUN
or CCONJ
vet NOUN
for ADP
more ADJ
information NOUN
. PUNCT
I PRON
am AUX
not PART
any DET
of ADP
the DET
above ADJ
, PUNCT
but CCONJ
we PRON
do AUX
have AUX
a DET
couple NOUN
of ADP
cats NOUN
. PUNCT
It PRON
is AUX
transmitted VERB
through ADP
the DET
fecal ADJ
matter NOUN
, PUNCT
so SCONJ
a DET
pregnant ADJ
woman NOUN
shouldavoid NOUN
cleaning VERB
the DET
cat NOUN
tray PROPN
and CCONJ
you PRON
should AUX
both DET
wash VERB
hands NOUN
beforepreparing VERB
or CCONJ
eating VERB
meals NOUN
. PUNCT
  SPACE
The DET
latter ADJ
is AUX
sound ADJ
advice NOUN
at ADP
any DET
time NOUN
ofcourse ADJ
. PUNCT
Apart ADV
from ADP
that DET
, PUNCT
its PRON
no DET
great ADJ
problem NOUN
. PUNCT
  SPACE
You PRON
certainly ADV
do AUX
not PART
need VERB
toget ADV
rid VERB
of ADP
your PRON
cats NOUN
. PUNCT
Paul.-- VERB
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59584From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal ADJ
deficiencyabruno@adobe NOUN
( PUNCT
Andrea PROPN
Bruno PROPN
) PUNCT
writes:>In X
article NOUN
< X
19930430140738SFB2763@MVS.draper.com X
> X
SFB2763@MVS.draper.com SYM
  SPACE
> X
( PUNCT
Eileen PROPN
Bauer PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
> X
> X
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart NOUN
) PUNCT
, PUNCT
> X
> X
changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things.>Is PUNCT
there PRON
any DET
relation NOUN
between ADP
thyroid NOUN
deficiency NOUN
and CCONJ
depression NOUN
? PUNCT
There PRON
can AUX
be AUX
. PUNCT
But CCONJ
depression NOUN
is AUX
not PART
diagnositic ADJ
of ADP
thyroid NOUN
deficiency NOUN
. PUNCT
Thyroid NOUN
blood NOUN
tests NOUN
are AUX
easy ADJ
, PUNCT
cheap ADJ
, PUNCT
and CCONJ
effective ADJ
in ADP
diagnosing VERB
thyroiddeficiencies.-Jackie PROPN
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59585From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
1rm29k$i7t@hsdndev.harvard.edu PROPN
> X
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes::In PROPN
article NOUN
< X
enea1-270493135255@enea.apple.com X
> X
: PUNCT
enea1@applelink.apple.com X
( PUNCT
Horace PROPN
Enea PROPN
) PUNCT
writes::>Can VERB
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
disease:>and VERB
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis PROPN
vs ADP
chronic:>hepatitis.::I PROPN
do AUX
n't PART
think VERB
there PRON
is AUX
a DET
general ADJ
distinction NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
there PRON
are AUX
: PUNCT
two NUM
classes NOUN
of ADP
chronic ADJ
hepatitis NOUN
: PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
and CCONJ
chronic PROPN
: PUNCT
persistent PROPN
hepatitis PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
think VERB
of ADP
any DET
other ADJ
disease NOUN
where ADV
the DET
: PUNCT
term NOUN
persistent NOUN
is AUX
used VERB
with ADP
or CCONJ
in ADP
preference NOUN
to ADP
chronic.::Much PROPN
as SCONJ
these DET
two NUM
terms NOUN
" PUNCT
chronic ADJ
active ADJ
" PUNCT
and CCONJ
" PUNCT
chronic ADJ
persistent":sound PROPN
fuzzy NOUN
, PUNCT
the DET
actual ADJ
distinction NOUN
between ADP
the DET
two NUM
conditions NOUN
: PUNCT
is AUX
often ADV
fairly ADV
fuzzy ADJ
as ADV
well ADV
. PUNCT
I PRON
beg VERB
to PART
differ VERB
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
active ADJ
* PUNCT
hepatitis PROPN
implies VERB
that SCONJ
the DET
diseaseremains NOUN
active ADJ
, PUNCT
and CCONJ
generally ADV
leads VERB
to ADP
liver NOUN
failure NOUN
. PUNCT
  SPACE
At ADP
the DET
veryminimum ADJ
, PUNCT
the DET
patient NOUN
has AUX
persistently ADV
elevated VERB
liver NOUN
enzymes NOUN
( PUNCT
what PRON
somecall VERB
" PUNCT
transaminitis NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
persistant ADJ
* PUNCT
hepatitis PROPN
simply ADV
means VERB
thatthe NOUN
patient NOUN
has AUX
HbSag PROPN
in ADP
his PRON
/ SYM
her PRON
blood NOUN
and CCONJ
can AUX
transmit VERB
the DET
infection NOUN
, PUNCT
butshows VERB
no DET
evidence NOUN
of ADP
progressive ADJ
disease NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
had AUX
to PART
choose VERB
, PUNCT
I PRON
'd AUX
muchrather ADV
have AUX
the DET
persistant ADJ
type.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59586From NUM
: PUNCT
kxgst1@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?Len PROPN
Howard PROPN
( PUNCT
tas@pegasus.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Well INTJ
, PUNCT
now ADV
, PUNCT
Doc PROPN
, PUNCT
I PRON
sure ADV
would AUX
not PART
want VERB
to PART
bet VERB
my PRON
life NOUN
on ADP
those DET
little ADJ
: PUNCT
critters NOUN
not PART
being AUX
able ADJ
to PART
get AUX
thru ADP
one NUM
layer NOUN
of ADP
sweat NOUN
- PUNCT
soaked VERB
cotton NOUN
: PUNCT
on ADP
their PRON
way NOUN
to PART
do AUX
their PRON
programmed VERB
task NOUN
. PUNCT
  SPACE
Infrequent PROPN
, PUNCT
yes INTJ
, PUNCT
unlikely ADJ
, PUNCT
: PUNCT
yes INTJ
, PUNCT
but CCONJ
impossible ADJ
? PUNCT
  SPACE
I PRON
learned VERB
a DET
long ADJ
time NOUN
ago ADV
never ADV
to PART
say VERB
never ADV
in ADP
: PUNCT
medicine NOUN
   SPACE
< X
g NOUN
> X
                        SPACE
Len PROPN
Howard PROPN
MD PROPN
, PUNCT
FACOGYes PROPN
, PUNCT
I PRON
suppose VERB
a DET
single ADJ
layer NOUN
of ADP
wet ADJ
cotton NOUN
would AUX
be AUX
feasible ADJ
. PUNCT
  SPACE
After ADV
all ADV
, PUNCT
we PRON
certainly ADV
do AUX
not PART
make VERB
condoms NOUN
out SCONJ
of ADP
cotton NOUN
! PUNCT
] PUNCT
--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PUNCT
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59587From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
Nose NOUN
PickingI PROPN
have AUX
two NUM
quations NOUN
to ADP
ask:1 NOUN
) PUNCT
  SPACE
Does AUX
it PRON
cause VERB
the DET
body NOUN
any DET
harm NOUN
if SCONJ
one NOUN
picks VERB
one PRON
's PART
nose NOUN
? PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
might AUX
it PRON
lead VERB
to ADP
a DET
loss NOUN
of ADP
ability NOUN
to ADP
smell?2 PROPN
) PUNCT
  SPACE
Is AUX
it PRON
harmful ADJ
for ADP
one NUM
to PART
eat VERB
one PRON
's PART
nose NOUN
pickings?StephenNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59588From NUM
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
Brian PROPN
Tao)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
, PUNCT
Harry PROPN
Matthews PROPN
writes VERB
... PUNCT
> X
> X
I PRON
've AUX
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
> X
else ADV
is AUX
going VERB
on ADP
? PUNCT
    SPACE
Do AUX
you PRON
swim VERB
nude ADJ
in ADP
a DET
public ADJ
swimming NOUN
pool NOUN
? PUNCT
  SPACE
:) PUNCT
  SPACE
I PRON
doubt VERB
sperm NOUN
canpenetrate PROPN
swimsuit NOUN
material NOUN
, PUNCT
assuming VERB
they PRON
are AUX
n't PART
immediately ADV
dispersedby ADJ
water NOUN
currents.-- PROPN
Brian PROPN
Tao PROPN
: PUNCT
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
r PROPN
- PUNCT
Node PROPN
BBS PROPN
, PUNCT
416 NUM
- SYM
249 NUM
- PUNCT
5366 NUM
, PUNCT
FREE ADJ
! PUNCT
) PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
90taobri@wave.scar.utoronto.ca NUM
( PUNCT
University PROPN
of ADP
Toronto)Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59589From NUM
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
Brian PROPN
Tao)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
writes VERB
... PUNCT
> X
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
    SPACE
But CCONJ
no DET
one NOUN
( PUNCT
or CCONJ
at ADP
least ADJ
, PUNCT
not PART
many ADJ
people NOUN
) PUNCT
are AUX
trying VERB
to PART
pass VERB
off ADP
Godas PROPN
a DET
scientific ADJ
fact NOUN
. PUNCT
  SPACE
Not PART
so ADV
with ADP
Kirlian ADJ
photography NOUN
. PUNCT
  SPACE
I PRON
'll AUX
admit VERB
thatit PROPN
is AUX
possible ADJ
that SCONJ
some DET
superior ADJ
intelligence NOUN
exists VERB
elsewhere ADV
, PUNCT
and CCONJ
ifpeople NOUN
want VERB
to PART
label VERB
that DET
intelligence NOUN
" PUNCT
God PROPN
" PUNCT
, PUNCT
I PRON
'm AUX
not PART
going VERB
to ADP
stopthem PROPN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
let VERB
's PRON
_ VERB
not PART
_ ADV
turn VERB
this DET
into ADP
a DET
theological ADJ
debate NOUN
. PUNCT
  SPACE
;-) PUNCT
> X
I PRON
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists NOUN
, PUNCT
> X
were AUX
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
    SPACE
Read VERB
alt.fan.robert.mcelwaine PROPN
sometime ADV
. PUNCT
  SPACE
I PRON
've AUX
never ADV
been AUX
soclosed VERB
- PUNCT
minded ADJ
before ADP
subscribing VERB
to ADP
that DET
group NOUN
. PUNCT
  SPACE
: PUNCT
) PUNCT
-- PUNCT
Brian PROPN
Tao PROPN
: PUNCT
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
r PROPN
- PUNCT
Node PROPN
BBS PROPN
, PUNCT
416 NUM
- SYM
249 NUM
- PUNCT
5366 NUM
, PUNCT
FREE ADJ
! PUNCT
) PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
90taobri@wave.scar.utoronto.ca NUM
( PUNCT
University PROPN
of ADP
Toronto)Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59590From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- ADJ
pedesI PROPN
remember VERB
as SCONJ
a DET
kid NOUN
visiting VERB
my PRON
relatives NOUN
on ADP
Kauai PROPN
, PUNCT
and CCONJ
one NUM
of ADP
the DET
thingsthat NOUN
really ADV
frightened VERB
me PRON
was AUX
centipedes NOUN
. PUNCT
  SPACE
I PRON
'd AUX
been AUX
told VERB
they PRON
were AUX
poisonousand VERB
infrequently ADV
one PRON
would AUX
pop VERB
up ADP
and CCONJ
scare VERB
the DET
heck NOUN
out SCONJ
of ADP
me PRON
. PUNCT
  SPACE
Onceone PROPN
came VERB
out SCONJ
of ADP
the DET
vacuum NOUN
cleaner NOUN
and CCONJ
it PRON
seemed VERB
like SCONJ
it PRON
was AUX
at ADP
least ADJ
a DET
footlong ADJ
and CCONJ
moving VERB
at ADP
35 NUM
miles NOUN
an DET
hour!Newsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59591From NUM
: PUNCT
texx@ossi.com X
( PUNCT
" PUNCT
Texx")Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosmenon@boulder NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon PROPN
) PUNCT
writes:>aezpete@deja-vu.aiss.uiuc.edu NOUN
( PUNCT
) PUNCT
writes:>>>The PUNCT
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
be>>>going VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journal>>>or ADJ
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
old>>>Jewish ADJ
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
the>>>cancer NOUN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
like>>>crazy PROPN
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
a>>>little VERB
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung ADJ
up ADP
on>>>the PUNCT
penis NOUN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADJ
like>>>mastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basically>>>unnecessary.>>Peter PROPN
Schlumpf>>University PROPN
of ADP
Illinois PROPN
at ADP
Urbana PROPN
- PUNCT
ChampaignAs PROPN
I PRON
recall VERB
, PUNCT
it PRON
is AUX
a DET
statistical ADJ
anomaly NOUN
because SCONJ
of ADP
the DET
sample NOUN
involved VERB
in ADP
the DET
studies NOUN
. PUNCT
I PRON
am AUX
certain ADJ
that SCONJ
if SCONJ
it PRON
were AUX
true ADJ
the DET
Europeans PROPN
would AUX
be AUX
cutting VERB
kids NOUN
right INTJ
& CCONJ
left.>First PROPN
off ADP
, PUNCT
use VERB
some DET
decent ADJ
terms NOUN
if SCONJ
ya PRON
do AUX
n't PART
mind VERB
. PUNCT
  SPACE
This DET
is AUX
sci.med VERB
, PUNCT
not PART
> X
alt.sex.>Secondly ADV
, PUNCT
how ADV
absolutely ADV
bogus ADJ
to PART
assume VERB
that SCONJ
" PUNCT
American PROPN
's PART
are AUX
just ADV
too ADV
hung ADJ
> X
up ADV
on ADP
the DET
penis PROPN
.... PUNCT
blah INTJ
, PUNCT
blah INTJ
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
most ADJ
American PROPN
's PART
do AUX
n't PART
care VERB
about ADP
> X
anything PRON
so ADV
comlicated VERB
as SCONJ
that DET
. PUNCT
  SPACE
They PRON
just ADV
think VERB
it PRON
" PUNCT
looks VERB
nicer ADV
" PUNCT
. PUNCT
  SPACE
Ask VERB
> X
a DET
few ADJ
of ADP
them PRON
and CCONJ
see VERB
what PRON
response NOUN
you PRON
get VERB
. PUNCT
  SPACE
Others NOUN
still ADV
opt VERB
for ADP
> X
circumcision NOUN
due ADP
to ADP
religious ADJ
traditions NOUN
and CCONJ
beliefs NOUN
. PUNCT
  SPACE
Some DET
think VERB
it PRON
is AUX
> X
easier ADJ
to PART
clean VERB
. PUNCT
  SPACE
Still ADV
others NOUN
do AUX
it PRON
because SCONJ
" PUNCT
Daddy NOUN
was" ADV
. PUNCT
I PRON
think VERB
alot NOUN
do AUX
it PRON
blindly ADV
because SCONJ
" PUNCT
Dad PROPN
" PUNCT
had AUX
it PRON
done VERB
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
manywho ADJ
get VERB
bamboozled VERB
into ADP
it PRON
with ADP
the DET
bogus ADJ
cancer NOUN
thing NOUN
. PUNCT
  SPACE
Awhile ADV
back ADV
somequack PROPN
told VERB
a DET
friend NOUN
of ADP
mine PRON
that SCONJ
it PRON
would AUX
help VERB
prevent VERB
AIDS.Yeah PROPN
... PUNCT
Right INTJ
! PUNCT
( PUNCT
Sarchasm)>Dont INTJ
' PUNCT
be AUX
so ADV
naive ADJ
as SCONJ
to PART
think VERB
American PROPN
's PART
are AUX
afraid ADJ
of ADP
sexuality NOUN
. PUNCT
Oh INTJ
YEAH INTJ
? PUNCT
Scene NOUN
: PUNCT
Navy PROPN
boot NOUN
campDI PROPN
: PUNCT
		 SPACE
" PUNCT
Son PROPN
, PUNCT
you PRON
smel VERB
awful ADJ
! PUNCT
Do AUX
nt PART
you PRON
ever ADV
clean VERB
that SCONJ
thing?"Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
No DET
Sir PROPN
! PUNCT
" PUNCT
DI NOUN
: PUNCT
		 SPACE
" PUNCT
Why ADV
the DET
hell NOUN
NOT!"Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Your PRON
not PART
sposed VERB
to PART
touch VERB
down ADP
there?"DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
? PUNCT
" PUNCT
Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Cause NOUN
that DET
s VERB
the DET
eye NOUN
of ADP
god PROPN
down ADV
there ADV
, PUNCT
an DET
' PUNCT
your PRON
not PART
s'posed VERB
to PART
touch VERB
it PRON
... PUNCT
"This PUNCT
did AUX
not PART
happen VERB
40 NUM
years NOUN
ago ADV
, PUNCT
it PRON
happened VERB
2 NUM
years NOUN
ago ADV
. PUNCT
I PRON
think VERB
Americans PROPN
are AUX
QUITE ADV
hung VERB
up ADP
about ADP
sex NOUN
and CCONJ
the DET
involved VERB
plumbing!Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59592From X
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification PROPN
? PUNCT
> X
Not PART
everything PRON
that PRON
goes VERB
in ADV
comes VERB
out ADP
, PUNCT
and CCONJ
personaly NOUN
I PRON
do AUX
n't PART
mind VERB
giving VERB
> X
my PRON
body NOUN
a DET
hand NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
> X
> X
Just ADV
my PRON
experience NOUN
, PUNCT
> X
> X
George PROPN
PaapI've PROPN
got VERB
a DET
very ADV
nice ADJ
collection NOUN
of ADP
historical ADJ
books NOUN
on ADP
medical ADJ
quackery NOUN
, PUNCT
and CCONJ
on ADP
the DET
topic NOUN
of ADP
massage NOUN
this DET
is AUX
a DET
recurring VERB
theme NOUN
. PUNCT
  SPACE
Ordinary ADJ
massageis NOUN
intended VERB
to PART
make VERB
a DET
person NOUN
feel VERB
better ADJ
, PUNCT
especially ADV
if SCONJ
they PRON
have AUX
muscularor NOUN
joint ADJ
problems NOUN
. PUNCT
  SPACE
But CCONJ
-- PUNCT
like SCONJ
chiropracty NOUN
-- PUNCT
there PRON
are AUX
some DET
practitionerswho PROPN
take VERB
the DET
technique NOUN
to ADP
a DET
far ADV
extreme ADJ
, PUNCT
invoking VERB
what PRON
seems VERB
to ADP
me PRON
to PART
bequack VERB
science NOUN
to PART
justify VERB
their PRON
technique NOUN
. PUNCT
In ADP
the DET
case NOUN
of ADP
massage NOUN
, PUNCT
there PRON
is AUX
a DET
technique NOUN
called VERB
" PUNCT
deep ADJ
abdominal ADJ
massage"in PUNCT
which PRON
the DET
masseur NOUN
is AUX
literally ADV
attempting VERB
to PART
massage VERB
the DET
intestines!The ADJ
notion NOUN
is AUX
that SCONJ
undigested ADJ
food NOUN
adheres NOUN
to ADP
the DET
inner ADJ
surface NOUN
of ADP
theintestines NOUN
and CCONJ
putrifies NOUN
, PUNCT
releasing VERB
poisons NOUN
which PRON
cause VERB
various ADJ
diseasesyndromes NOUN
. PUNCT
  SPACE
By ADP
this DET
vigorous ADJ
and CCONJ
painful ADJ
procedure NOUN
, PUNCT
it PRON
is AUX
alleged VERB
thatthese ADJ
deposits NOUN
can AUX
be AUX
loosened VERB
up ADP
and CCONJ
passed VERB
out ADP
. PUNCT
I PRON
just ADV
ca AUX
n't PART
believe VERB
this DET
idea NOUN
has AUX
any DET
truth NOUN
behind ADP
it PRON
! PUNCT
  SPACE
The DET
human ADJ
intestineis NOUN
not PART
a DET
New PROPN
York PROPN
City PROPN
sewer NOUN
pipe NOUN
! PUNCT
  SPACE
And CCONJ
even ADV
if SCONJ
it PRON
were AUX
, PUNCT
you PRON
eat VERB
half ADV
ofa ADJ
small ADJ
box NOUN
of ADP
Triscuits PROPN
, PUNCT
and CCONJ
there PRON
ai VERB
n't PART
gon VERB
na PART
be AUX
nothin' NOUN
sticking VERB
to ADP
theinner NOUN
surface NOUN
of ADP
your PRON
intestine NOUN
  SPACE
: PUNCT
-)Newsgroup PUNCT
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59593From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Data NOUN
of ADP
skullGT PROPN
> X
From ADP
: PUNCT
gary@concave.cs.wits.ac.za PROPN
( PUNCT
Gary PROPN
Taylor)GT PROPN
> X
Hi INTJ
, PUNCT
We PRON
are AUX
trying VERB
to PART
develop VERB
a DET
image NOUN
reconstruction NOUN
simulation NOUN
for ADP
the DET
skullYou PROPN
could AUX
do AUX
high ADJ
resolution NOUN
CT PROPN
( PUNCT
computed VERB
tomographic ADJ
) PUNCT
scanning NOUN
ofthe NOUN
skull NOUN
. PUNCT
  SPACE
Many ADJ
CT PROPN
scanners NOUN
have AUX
an DET
algorithm NOUN
to PART
do AUX
3-Dreconstructions NOUN
in ADP
any DET
plane NOUN
you PRON
want VERB
. PUNCT
  SPACE
If SCONJ
you PRON
did AUX
reconstructionsevery VERB
2 NUM
degrees NOUN
or CCONJ
so ADV
in ADP
all DET
planes NOUN
, PUNCT
you PRON
could AUX
use VERB
the DET
resultantimages NOUN
to PART
create VERB
user NOUN
- PUNCT
controlled VERB
animation.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                                                                        SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59594From NUM
: PUNCT
draper@umcc.umcc.umich.edu PROPN
( PUNCT
Patrick PROPN
Draper)Subject VERB
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosIn NOUN
article NOUN
< X
1rsvgr$r13@nym.ossi.com NUM
> X
texx@ossi.com X
( PUNCT
" PUNCT
Texx PROPN
" PUNCT
) PUNCT
writes:>Oh ADJ
YEAH NOUN
? PUNCT
> X
> X
Scene NOUN
: PUNCT
Navy PROPN
boot NOUN
camp>>DI PROPN
: PUNCT
		 SPACE
" PUNCT
Son PROPN
, PUNCT
you PRON
smel VERB
awful ADJ
! PUNCT
Do AUX
nt PART
you PRON
ever ADV
clean VERB
that SCONJ
thing?">Recruit NOUN
: PUNCT
	 SPACE
" PUNCT
No DET
Sir PROPN
! PUNCT
" PUNCT
> X
DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
the DET
hell NOUN
NOT!">Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Your PRON
not PART
sposed VERB
to PART
touch VERB
down ADP
there?">DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
? PUNCT
" PUNCT
> X
Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Cause NOUN
that DET
s VERB
the DET
eye NOUN
of ADP
god PROPN
down ADV
there ADV
, PUNCT
an DET
' PUNCT
your PRON
not PART
s'posed VERB
to PART
touch VERB
it PRON
... PUNCT
">>This PUNCT
did AUX
not PART
happen VERB
40 NUM
years NOUN
ago ADV
, PUNCT
it PRON
happened VERB
2 NUM
years NOUN
ago.>>I NOUN
think VERB
Americans PROPN
are AUX
QUITE ADV
hung VERB
up ADP
about ADP
sex NOUN
and CCONJ
the DET
involved ADJ
plumbing!Wow NOUN
that PRON
certainly ADV
CONVINCED VERB
me PRON
that SCONJ
all DET
Americans PROPN
ar PROPN
hung VERB
up ADP
about ADP
sex NOUN
. PUNCT
Just ADV
one NUM
example NOUN
of ADP
something PRON
that PRON
probably ADV
ran VERB
in ADP
a DET
Hustler PROPN
mag NOUN
is AUX
enoughto ADJ
convince VERB
me PRON
. PUNCT
Sarchasm NOUN
off.------------------////////////////////\\\\\\\\\\\\\\\\\\\\------------------| NUM
Patrick PROPN
Draper PROPN
- PUNCT
ZBT PROPN
                 SPACE
We PRON
are AUX
a DET
nation NOUN
of ADP
laws NOUN
, PUNCT
not PART
people NOUN
. PUNCT
  SPACE
|| PROPN
draper@umcc.umich.edu PROPN
                    SPACE
Flames NOUN
> X
/dev PUNCT
/ PUNCT
Koresh PROPN
            SPACE
|| PROPN
                   SPACE
University PROPN
of ADP
Michigan PROPN
Computer PROPN
Club PROPN
                   SPACE
|------------------\\\\\\\\\\\\\\\\\\\\////////////////////------------------Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59595From NUM
: PUNCT
GWGREG01@ukcc.uky.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
C6BotF.137@r-node.hub.org>taob@r-node.hub.org PROPN
( PUNCT
Brian PROPN
Tao PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
, PUNCT
Harry PROPN
Matthews PROPN
writes VERB
... PUNCT
> X
> X
> X
> X
I PRON
've AUX
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
> X
> X
else ADV
is AUX
going VERB
on ADP
? PUNCT
> X
> X
    SPACE
Do AUX
you PRON
swim VERB
nude ADJ
in ADP
a DET
public ADJ
swimming NOUN
pool NOUN
? PUNCT
  SPACE
:) PUNCT
  SPACE
I PRON
doubt VERB
sperm NOUN
can AUX
> X
penetrate PROPN
swimsuit NOUN
material NOUN
, PUNCT
assuming VERB
they PRON
are AUX
n't PART
immediately ADV
dispersed VERB
> X
by ADP
water NOUN
currents.>-->Brian PROPN
Tao PROPN
: PUNCT
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
r PROPN
- PUNCT
Node PROPN
BBS PROPN
, PUNCT
416 NUM
- SYM
249 NUM
- PUNCT
5366 NUM
, PUNCT
FREE ADJ
! PUNCT
) PUNCT
> X
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
90taobri@wave.scar.utoronto.ca NUM
( PUNCT
University PROPN
of ADP
Toronto PROPN
) PUNCT
Here ADV
we PRON
go VERB
again ADV
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
U NOUN
   SPACE
UK PROPN
   SPACE
K PROPN
UNIVERSITY PROPN
                                 SPACE
GARY PROPN
W. PROPN
GREGORYU PROPN
   SPACE
UK PROPN
  SPACE
K PROPN
  SPACE
OF ADP
KENTUCKY PROPN
                          SPACE
GWGREG01@UKCC.UKY.EDUU PROPN
   SPACE
UKKK PROPN
   SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
UU PROPN
UUK PROPN
  SPACE
KK PROPN
UUU PROPN
K PROPN
   SPACE
KK PROPN
                                      SPACE
DEPARTMENT PROPN
OF ADP
OB PROPN
/ SYM
GYN PROPN
                                                SPACE
MS PROPN
335 NUM
MEDICAL PROPN
CENTER PROPN
                                       SPACE
LEXINGTON PROPN
, PUNCT
KENTUCKY PROPN
40536 NUM
- PUNCT
0084=====================================================================Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59596From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Nose NOUN
PickingI NOUN
do AUX
n't PART
know VERB
if SCONJ
it PRON
causes VERB
the DET
body NOUN
any DET
harm NOUN
, PUNCT
but CCONJ
in ADP
the DET
23years NUM
I PRON
've AUX
been AUX
teaching VERB
nine NUM
and CCONJ
ten NUM
years NOUN
olds NOUN
I PRON
've AUX
never ADV
hadone VERB
fall VERB
over ADP
from ADP
eating VERB
" PUNCT
boogers NOUN
" PUNCT
which PRON
many ADJ
kids NOUN
do AUX
on ADP
aregular NOUN
basis NOUN
[ PUNCT
when ADV
they PRON
think VERB
no DET
one NOUN
is AUX
looking VERB
. PUNCT
. PUNCT
.]Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59597From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Meaning NOUN
of ADP
atheism NOUN
, PUNCT
agnosticism NOUN
  SPACE
( PUNCT
was AUX
: PUNCT
Krillean PROPN
Photography)-*----Sci.med VERB
removed VERB
from ADP
followups NOUN
. PUNCT
  SPACE
( PUNCT
And CCONJ
I PRON
do AUX
not PART
read VERB
any DET
of ADP
theother PROPN
newsgroups.)-*----In PROPN
article NOUN
< X
1993Apr30.170233.12510@rosevax.rosemount.com NUM
> X
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant PROPN
Edwards PROPN
) PUNCT
writes VERB
: PUNCT
> X
As SCONJ
a DET
self NOUN
- PUNCT
proclaimed VERB
atheist NOUN
my PRON
position NOUN
is AUX
that SCONJ
I PRON
_ AUX
believe VERB
_ PROPN
that SCONJ
> X
there PRON
is AUX
no DET
god PROPN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
claim VERB
to PART
have AUX
any DET
proof NOUN
. PUNCT
  SPACE
I PRON
interpret VERB
> X
the DET
agnostic ADJ
position NOUN
as SCONJ
having VERB
no DET
beliefs NOUN
about ADP
god PROPN
's PART
existence NOUN
. PUNCT
That DET
's AUX
fine ADJ
. PUNCT
  SPACE
These DET
words NOUN
have AUX
multiple ADJ
meanings NOUN
. PUNCT
As SCONJ
a DET
self NOUN
- PUNCT
proclaimed VERB
atheist NOUN
, PUNCT
I PRON
believe VERB
that SCONJ
* PUNCT
some DET
* PUNCT
conceptionsof PROPN
god PROPN
are AUX
inconsistent ADJ
or CCONJ
in ADP
conflict NOUN
with ADP
fact NOUN
, PUNCT
and CCONJ
I PRON
lackbelief VERB
in ADP
other ADJ
conceptions NOUN
of ADP
god PROPN
merely ADV
because SCONJ
there PRON
is AUX
noreason PROPN
for ADP
me PRON
to PART
believe VERB
in ADP
these DET
. PUNCT
  SPACE
I PRON
usually ADV
use VERB
the DET
wordagnostic NOUN
to PART
mean VERB
someone PRON
who PRON
believes VERB
that SCONJ
the DET
existence NOUN
ofa PROPN
god PROPN
is AUX
unknown ADJ
inherently ADV
unknowable ADJ
. PUNCT
  SPACE
Note VERB
that SCONJ
this DET
is AUX
apositive ADJ
belief NOUN
that PRON
is AUX
quite ADV
different ADJ
from ADP
not PART
believing VERB
in ADP
agod NOUN
; PUNCT
I PRON
do AUX
not PART
believe VERB
in ADP
a DET
god NOUN
, PUNCT
but CCONJ
I PRON
also ADV
do AUX
not PART
believe VERB
theagnostic ADJ
claim NOUN
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59598From NUM
: PUNCT
ceci@lysator.liu.se PROPN
( PUNCT
Cecilia PROPN
Henningsson)Subject VERB
: PUNCT
Q NOUN
: PUNCT
Repelling PROPN
wasps?(This PROPN
is AUX
a DET
cross NOUN
post NOUN
to ADP
rec.gardens NOUN
and CCONJ
sci.med VERB
. PUNCT
Set VERB
the DET
follow NOUN
- PUNCT
up(line NOUN
in ADP
the DET
header NOUN
, PUNCT
depending VERB
on ADP
what PRON
kind NOUN
of ADP
advice NOUN
you PRON
give VERB
, PUNCT
or(e PROPN
- PUNCT
mail NOUN
directly ADV
to ADP
me PRON
: PUNCT
ceci@lysator.liu.se.)I PROPN
have AUX
a DET
problem NOUN
with ADP
wasps NOUN
-- PUNCT
they PRON
seem VERB
to PART
love VERB
me PRON
. PUNCT
Last ADJ
summer NOUN
Icouldn't PROPN
spend VERB
more ADJ
than SCONJ
ten NUM
to ADP
fifteen NUM
minutes NOUN
at ADP
a DET
time NOUN
in ADP
my PRON
gardenbefore NOUN
one NUM
or CCONJ
several ADJ
wasps NOUN
would AUX
come VERB
for ADP
me PRON
. PUNCT
I PRON
am AUX
asking VERB
for ADP
adviceon NOUN
how ADV
to PART
repel VERB
wasps NOUN
. PUNCT
   SPACE
This DET
year NOUN
the DET
wasps NOUN
have AUX
built VERB
their PRON
nest NOUN
under ADP
a DET
stone NOUN
next ADV
to PART
oneof VERB
my PRON
tiny ADJ
ponds NOUN
. PUNCT
The DET
caretaker NOUN
( PUNCT
poor ADJ
fellow NOUN
! PUNCT
) PUNCT
will AUX
have AUX
to PART
take VERB
careof ADV
them PRON
, PUNCT
and CCONJ
that DET
will AUX
give VERB
me PRON
a DET
head NOUN
start VERB
on ADP
them PRON
. PUNCT
Last ADJ
year NOUN
wecouldn't AUX
find VERB
any DET
nest NOUN
. PUNCT
Even ADV
after ADP
the DET
caretaker NOUN
has AUX
gassed VERB
the DET
nestin PROPN
my PRON
tiny ADJ
garden NOUN
of ADP
30 NUM
square ADJ
meter NOUN
, PUNCT
other ADJ
wasps NOUN
will AUX
most ADV
likely ADV
viefor ADP
the DET
territory NOUN
. PUNCT
Is AUX
there PRON
anything PRON
I PRON
can AUX
grow VERB
, PUNCT
rub VERB
on ADP
my PRON
skin NOUN
orspread NOUN
on ADP
the DET
soil NOUN
that PRON
will AUX
repel VERB
the DET
black ADJ
and CCONJ
yellow ADJ
bastards?Never NOUN
mind NOUN
if SCONJ
it PRON
turns VERB
my PRON
skin NOUN
purple NOUN
or CCONJ
kills VERB
off ADP
all DET
my PRON
belovedplants NOUN
, PUNCT
I PRON
want VERB
to PART
be AUX
able ADJ
to PART
spend VERB
time NOUN
in ADP
my PRON
garden NOUN
like SCONJ
everyoneelse NOUN
. PUNCT
   SPACE
Would AUX
it PRON
help VERB
to PART
remove VERB
the DET
ponds NOUN
and CCONJ
the DET
bird NOUN
bath NOUN
? PUNCT
The DET
wasps NOUN
seemto NOUN
come VERB
to PART
drink VERB
at ADP
them PRON
, PUNCT
and CCONJ
I PRON
suppose VERB
that SCONJ
their PRON
prey NOUN
will AUX
breed VERB
inthem NOUN
. PUNCT
The DET
black ADJ
tits NOUN
seem VERB
to PART
be AUX
afraid ADJ
of ADP
the DET
wasps NOUN
, PUNCT
because SCONJ
as SCONJ
soonas PROPN
the DET
wasp PROPN
season NOUN
starts VERB
, PUNCT
they PRON
stop VERB
coming VERB
to PART
have AUX
their PRON
bath NOUN
. PUNCT
Even ADV
when ADV
I PRON
am AUX
not PART
trying VERB
to PART
win VERB
back ADP
my PRON
patio NOUN
from ADP
15 NUM
- SYM
20 NUM
wasps NOUN
, PUNCT
theyseem VERB
to PART
love VERB
me PRON
. PUNCT
The DET
advice NOUN
I PRON
usually ADV
get VERB
when ADV
I PRON
ask VERB
what PRON
to PART
do AUX
aboutwasps PROPN
, PUNCT
is AUX
to PART
stand VERB
still ADV
and CCONJ
not PART
wave VERB
my PRON
arms NOUN
. PUNCT
I PRON
've AUX
got VERB
some DET
painfulstings NOUN
when ADV
trying VERB
to PART
follow VERB
that DET
advice NOUN
. PUNCT
I PRON
have AUX
also ADV
tried VERB
to ADP
usehygienic ADJ
products NOUN
without ADP
perfumes NOUN
, PUNCT
to ADP
no DET
avail NOUN
. PUNCT
They PRON
still ADV
love VERB
me PRON
, PUNCT
and CCONJ
come VERB
for ADP
me PRON
, PUNCT
even ADV
when ADV
I PRON
'm AUX
in ADP
the DET
middle NOUN
of ADP
a DET
crowd NOUN
. PUNCT
So ADV
far ADV
onlytwo NOUN
things NOUN
seem VERB
to PART
work VERB
: PUNCT
To PART
kill VERB
it PRON
dead ADJ
or CCONJ
to PART
run VERB
into ADP
the DET
house NOUN
andclose NOUN
all DET
doors NOUN
and CCONJ
windows NOUN
. PUNCT
NB PROPN
: PUNCT
I PRON
do AUX
n't PART
have AUX
a DET
problem NOUN
with ADP
bees NOUN
or CCONJ
bumble ADJ
- PUNCT
bees NOUN
, PUNCT
just ADV
wasps ADJ
. PUNCT
    SPACE
Patronizing VERB
advice NOUN
redirected VERB
to ADP
/dev PUNCT
/ SYM
null.--Ceci--=====ceci@lysator.liu.se==========================================="The NOUN
number NOUN
of ADP
rational ADJ
hypotheses NOUN
that PRON
can AUX
explain VERB
any DET
given VERB
phenomenon NOUN
is AUX
infinite ADJ
. PUNCT
"Phaedrus PUNCT
' PART
law NOUN
from ADP
RM PROPN
Pirsig PROPN
's PART
_ PROPN
Zen_and_the_Art_of_Motorcycle_Maintenance_Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59599From NUM
: PUNCT
< X
RFM@psuvm.psu.edu>Subject VERB
: PUNCT
Re ADP
: PUNCT
Lithium NOUN
questions NOUN
, PUNCT
Doctor PROPN
wants VERB
my PRON
10 NUM
year NOUN
old ADJ
on ADP
it PRON
... PUNCT
In ADP
article NOUN
< X
1rrv7i$7m7@dr NUM
- PUNCT
pepper NOUN
. PUNCT
East ADJ
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
> X
, PUNCT
george@crayola PROPN
. PUNCT
East PROPN
. PUNCT
Sun PROPN
. PUNCT
COM>>I NOUN
would AUX
like VERB
to PART
know VERB
anything PRON
you PRON
folks NOUN
can AUX
tell VERB
me PRON
regarding VERB
Lithium.>>I NOUN
have AUX
a DET
10 NUM
year NOUN
old ADJ
son NOUN
that PRON
lives VERB
with ADP
my PRON
ex NOUN
- NOUN
wife NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
having VERB
> X
difficulty NOUN
with ADP
his PRON
behavior NOUN
and CCONJ
has AUX
had VERB
him PRON
on ADP
Ritalin PROPN
, PUNCT
Tofranil PROPN
, PUNCT
and CCONJ
now ADV
> X
wants VERB
to PART
try VERB
Lithuim PROPN
at ADP
the DET
local ADJ
doctors NOUN
suggestion NOUN
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to PART
> X
know VERB
whatever PRON
is AUX
important ADJ
that SCONJ
I PRON
should AUX
know VERB
. PUNCT
  SPACE
I PRON
worry VERB
about ADP
this DET
sort NOUN
of ADP
> NUM
thing NOUN
and CCONJ
would AUX
like VERB
pros NOUN
/ SYM
cons NOUN
regarding VERB
Lithium PROPN
therapy.>>I PROPN
have AUX
a DET
booklet NOUN
from ADP
the DET
" PUNCT
Lithium PROPN
Information PROPN
Center PROPN
" PUNCT
based VERB
at ADP
the DET
> X
University PROPN
of ADP
Wisconsin PROPN
, PUNCT
but CCONJ
feel VERB
that SCONJ
it PRON
is AUX
pro ADJ
- ADJ
lithium ADJ
and CCONJ
would AUX
be AUX
> X
interested ADJ
in ADP
comments NOUN
from ADP
the DET
" PUNCT
not PART
necessarily ADV
PRO PROPN
" PUNCT
side NOUN
of ADP
the DET
fence.>>I PROPN
am AUX
a DET
concerned ADJ
father NOUN
and CCONJ
just ADV
wish VERB
to PART
be AUX
well ADV
informed ADJ
... PUNCT
>I NUM
get VERB
" PUNCT
antsy NOUN
" PUNCT
about ADP
posts NOUN
like SCONJ
this DET
. PUNCT
Is AUX
the DET
concern NOUN
more ADJ
for ADP
son NOUN
or CCONJ
about ADP
ex NOUN
- NOUN
wife NOUN
? PUNCT
? PUNCT
? PUNCT
The DET
standard ADJ
impartial ADJ
procedure NOUN
is AUX
to PART
ask VERB
for ADP
a DET
second ADJ
opinionabout NOUN
son NOUN
's PART
condition NOUN
. PUNCT
Then ADV
too ADV
, PUNCT
is AUX
son NOUN
" PUNCT
acting VERB
out ADP
" PUNCT
games NOUN
between ADP
divorced ADJ
parents????Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59600From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lithium NOUN
questions NOUN
, PUNCT
Doctor PROPN
wants VERB
my PRON
10 NUM
year NOUN
old ADJ
on ADP
it PRON
... PUNCT
In ADP
article NOUN
< X
93121.120223RFM@psuvm.psu.edu NUM
> X
< X
RFM@psuvm.psu.edu PROPN
> X
writes:>[Someone NOUN
writes:]>>I NOUN
have AUX
a DET
10 NUM
year NOUN
old ADJ
son NOUN
that PRON
lives VERB
with ADP
my PRON
ex NOUN
- NOUN
wife NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
having>>difficulty ADJ
with ADP
his PRON
behavior NOUN
and CCONJ
has AUX
had VERB
him PRON
on ADP
Ritalin PROPN
, PUNCT
Tofranil PROPN
, PUNCT
and CCONJ
now>>wants NOUN
to PART
try VERB
Lithuim PROPN
at ADP
the DET
local ADJ
doctors NOUN
suggestion NOUN
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to>>know NOUN
whatever PRON
is AUX
important ADJ
that SCONJ
I PRON
should AUX
know VERB
. PUNCT
  SPACE
I PRON
worry VERB
about ADP
this DET
sort NOUN
of>>thing NOUN
and CCONJ
would AUX
like VERB
pros NOUN
/ SYM
cons NOUN
regarding VERB
Lithium PROPN
therapy.>I NOUN
get VERB
" PUNCT
antsy NOUN
" PUNCT
about ADP
posts NOUN
like SCONJ
this DET
. PUNCT
Is AUX
the DET
concern NOUN
more ADJ
for ADP
son NOUN
or CCONJ
about ADP
ex PROPN
- NOUN
w PROPN
> X
ife NOUN
? PUNCT
? PUNCT
? PUNCT
The DET
standard ADJ
impartial ADJ
procedure NOUN
is AUX
to PART
ask VERB
for ADP
a DET
second ADJ
opinion NOUN
> X
about ADP
son PROPN
's PART
condition.>Then PROPN
too ADV
, PUNCT
is AUX
son NOUN
" PUNCT
acting VERB
out ADP
" PUNCT
games NOUN
between ADP
divorced VERB
parents????Precisely ADV
. PUNCT
  SPACE
One NOUN
wonders VERB
what PRON
unusual ADJ
strain VERB
the DET
boy NOUN
might AUX
be AUX
under ADP
thatcould NOUN
be AUX
causing VERB
" PUNCT
difficulty NOUN
with ADP
his PRON
behavior NOUN
" PUNCT
. PUNCT
  SPACE
Standard ADJ
practice NOUN
wouldbe NOUN
to PART
get AUX
a DET
second ADJ
opinion NOUN
from ADP
a DET
child NOUN
psychiatrist NOUN
. PUNCT
  SPACE
One PRON
would AUX
want VERB
torule VERB
out ADP
the DET
possibility NOUN
that SCONJ
the DET
" PUNCT
bad ADJ
behavior NOUN
" PUNCT
is AUX
not PART
psychiatricillness ADJ
at ADP
all.(Disclaimer PROPN
: PUNCT
I PRON
am AUX
not PART
a DET
medic NOUN
. PUNCT
But CCONJ
I PRON
am AUX
a DET
parent.)-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59601From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10535@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1rm29k$i7t@hsdndev.harvard.edu NOUN
> X
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>:In NOUN
article NOUN
< X
enea1-270493135255@enea.apple.com X
> X
> X
: PUNCT
enea1@applelink.apple.com X
( PUNCT
Horace PROPN
Enea PROPN
) PUNCT
writes:>:>Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
disease>:>and CCONJ
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis NOUN
vs ADP
chronic>:>hepatitis.>:>:I PROPN
do AUX
n't PART
think VERB
there PRON
is AUX
a DET
general ADJ
distinction NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
there ADV
are>:two PROPN
classes NOUN
of ADP
chronic ADJ
hepatitis NOUN
: PUNCT
chronic ADJ
active ADJ
hepatitis NOUN
and CCONJ
chronic>:persistent PUNCT
hepatitis PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
think VERB
of ADP
any DET
other ADJ
disease NOUN
where ADV
the>:term ADJ
persistent NOUN
is AUX
used VERB
with ADP
or CCONJ
in ADP
preference NOUN
to ADP
chronic.>:>:Much DET
as SCONJ
these DET
two NUM
terms NOUN
" PUNCT
chronic ADJ
active ADJ
" PUNCT
and CCONJ
" PUNCT
chronic ADJ
persistent">:sound NOUN
fuzzy NOUN
, PUNCT
the DET
actual ADJ
distinction NOUN
between ADP
the DET
two NUM
conditions>:is PROPN
often ADV
fairly ADV
fuzzy ADJ
as SCONJ
well.>>I PROPN
beg VERB
to PART
differ VERB
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
active ADJ
* PUNCT
hepatitis PROPN
implies VERB
that SCONJ
the DET
disease NOUN
> X
remains VERB
active ADJ
, PUNCT
and CCONJ
generally ADV
leads VERB
to ADP
liver NOUN
failure NOUN
. PUNCT
  SPACE
At ADP
the DET
very ADV
> X
minimum NOUN
, PUNCT
the DET
patient NOUN
has AUX
persistently ADV
elevated VERB
liver NOUN
enzymes NOUN
( PUNCT
what PRON
some DET
> X
call NOUN
" PUNCT
transaminitis NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
persistant ADJ
* PUNCT
hepatitis PROPN
simply ADV
means VERB
that SCONJ
> X
the DET
patient NOUN
has AUX
HbSag PROPN
in ADP
his PRON
/ SYM
her PRON
blood NOUN
and CCONJ
can AUX
transmit VERB
the DET
infection NOUN
, PUNCT
but CCONJ
> X
shows VERB
no DET
evidence NOUN
of ADP
progressive ADJ
disease NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
had AUX
to PART
choose VERB
, PUNCT
I PRON
'd AUX
much ADV
> X
rather ADV
have AUX
the DET
persistant ADJ
type NOUN
. PUNCT
Being AUX
a DET
chronic ADJ
HBsAg PROPN
carrier NOUN
does AUX
not PART
necessarily ADV
mean VERB
the DET
patient NOUN
has AUX
chronicpersistent ADJ
anything PRON
. PUNCT
Persons NOUN
who PRON
are AUX
chronic ADJ
carriers NOUN
may AUX
have AUX
no DET
clinical ADJ
, PUNCT
biochemical ADJ
, PUNCT
or CCONJ
histologic ADJ
evidence NOUN
of ADP
liver NOUN
disease NOUN
, PUNCT
or CCONJ
they PRON
may AUX
have AUX
chronicpersistent NOUN
hepatitis PROPN
, PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
, PUNCT
cirrhosis NOUN
, PUNCT
or CCONJ
hepatocellularcarcinoma PROPN
. PUNCT
Most ADJ
cases NOUN
of ADP
chronic ADJ
persistent ADJ
hepatitis PROPN
( PUNCT
CPH PROPN
) PUNCT
are AUX
probably ADV
the DET
result NOUN
ofa PROPN
viral ADJ
infection NOUN
, PUNCT
although SCONJ
in ADP
a DET
good ADJ
number NOUN
of ADP
cases NOUN
the DET
cause NOUN
can AUX
not PART
bedetermined VERB
. PUNCT
The DET
diagnosis NOUN
of ADP
CPH PROPN
is AUX
made VERB
on ADP
the DET
basis NOUN
of ADP
liver NOUN
biopsy NOUN
. PUNCT
Itconsists NOUN
of ADP
findings NOUN
of ADP
portal ADJ
inflammation NOUN
, PUNCT
an DET
intact ADJ
periportal ADJ
limitingplate NOUN
, PUNCT
and CCONJ
on ADP
occasion NOUN
isolated VERB
foci NOUN
of ADP
intralobular ADJ
necrosis NOUN
. PUNCT
But CCONJ
in ADP
contrastto PROPN
chronic PROPN
active ADJ
hepatitis NOUN
( PUNCT
CAH PROPN
) PUNCT
there PRON
is AUX
no DET
periportal ADJ
inflammation NOUN
, PUNCT
bridging VERB
necrosis NOUN
, PUNCT
or CCONJ
fibrosis NOUN
. PUNCT
CPH PROPN
has AUX
, PUNCT
indeed ADV
, PUNCT
an DET
excellent ADJ
prognosis NOUN
. PUNCT
If SCONJ
I PRON
had AUX
to PART
choose VERB
between ADP
CAH PROPN
andCPH NOUN
there PRON
is AUX
no DET
question NOUN
I PRON
would AUX
also ADV
choose VERB
CPH PROPN
. PUNCT
However ADV
, PUNCT
as SCONJ
David PROPN
pointedout NOUN
, PUNCT
the DET
distinction NOUN
between ADP
the DET
two NUM
is AUX
not PART
as ADV
neat ADJ
as SCONJ
some DET
of ADP
us PRON
would AUX
haveit VERB
. PUNCT
The DET
histology NOUN
can AUX
sometimes ADV
be AUX
pretty ADV
equivocal ADJ
, PUNCT
with ADP
biopsies NOUN
showingareas NOUN
compatible ADJ
with ADP
both DET
CPH PROPN
and CCONJ
CAH PROPN
. PUNCT
Maybe ADV
it PRON
is AUX
a DET
sampling ADJ
problem NOUN
. PUNCT
Maybeit PROPN
is AUX
a DET
continuum NOUN
. PUNCT
I PRON
do AUX
n't PART
know.=================================Howard VERB
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59602From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
80651@cup.portal.com NUM
> X
, PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Not PART
everything PRON
that PRON
goes VERB
in ADV
comes VERB
out ADP
, PUNCT
and CCONJ
personaly NOUN
I PRON
do AUX
n't PART
mind VERB
giving VERB
> X
> X
my PRON
body NOUN
a DET
hand NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
> X
> X
> X
> X
Just ADV
my PRON
experience NOUN
, PUNCT
> X
> X
> X
> X
George PROPN
Paap PROPN
> X
> X
I PRON
've AUX
got VERB
a DET
very ADV
nice ADJ
collection NOUN
of ADP
historical ADJ
books NOUN
on ADP
medical ADJ
quackery NOUN
, PUNCT
> X
and CCONJ
on ADP
the DET
topic NOUN
of ADP
massage NOUN
this DET
is AUX
a DET
recurring VERB
theme NOUN
. PUNCT
  SPACE
Ordinary ADJ
massage NOUN
> X
is AUX
intended VERB
to PART
make VERB
a DET
person NOUN
feel VERB
better ADJ
, PUNCT
especially ADV
if SCONJ
they PRON
have AUX
muscular ADJ
> NOUN
or CCONJ
joint ADJ
problems NOUN
. PUNCT
  SPACE
But CCONJ
-- PUNCT
like SCONJ
chiropracty NOUN
-- PUNCT
there PRON
are AUX
some DET
practitioners NOUN
> X
who PRON
take VERB
the DET
technique NOUN
to ADP
a DET
far ADV
extreme ADJ
, PUNCT
invoking VERB
what PRON
seems VERB
to ADP
me PRON
to PART
be AUX
> X
quack ADJ
science NOUN
to PART
justify VERB
their PRON
technique NOUN
. PUNCT
> X
> X
In ADP
the DET
case NOUN
of ADP
massage NOUN
, PUNCT
there PRON
is AUX
a DET
technique NOUN
called VERB
" PUNCT
deep ADJ
abdominal ADJ
massage NOUN
" PUNCT
> X
in ADP
which PRON
the DET
masseur NOUN
is AUX
literally ADV
attempting VERB
to PART
massage VERB
the DET
intestines NOUN
! PUNCT
> X
The DET
notion NOUN
is AUX
that SCONJ
undigested ADJ
food NOUN
adheres NOUN
to ADP
the DET
inner ADJ
surface NOUN
of ADP
the DET
> X
intestines NOUN
and CCONJ
putrifies NOUN
, PUNCT
releasing VERB
poisons NOUN
which PRON
cause VERB
various ADJ
disease NOUN
> X
syndromes NOUN
. PUNCT
  SPACE
By ADP
this DET
vigorous ADJ
and CCONJ
painful ADJ
procedure NOUN
, PUNCT
it PRON
is AUX
alleged VERB
that SCONJ
> X
these DET
deposits NOUN
can AUX
be AUX
loosened VERB
up ADP
and CCONJ
passed VERB
out ADP
. PUNCT
> X
> X
I PRON
just ADV
ca AUX
n't PART
believe VERB
this DET
idea NOUN
has AUX
any DET
truth NOUN
behind ADP
it PRON
! PUNCT
  SPACE
The DET
human ADJ
intestine NOUN
> X
is AUX
not PART
a DET
New PROPN
York PROPN
City PROPN
sewer NOUN
pipe NOUN
! PUNCT
  SPACE
And CCONJ
even ADV
if SCONJ
it PRON
were AUX
, PUNCT
you PRON
eat VERB
half NOUN
of ADP
> X
a DET
small ADJ
box NOUN
of ADP
Triscuits PROPN
, PUNCT
and CCONJ
there PRON
ai VERB
n't PART
gon VERB
na PART
be AUX
nothin' NOUN
sticking VERB
to ADP
the DET
> X
inner ADJ
surface NOUN
of ADP
your PRON
intestine NOUN
  SPACE
: PUNCT
-)Mark PUNCT
, PUNCT
this DET
is AUX
the DET
most ADV
reasonable ADJ
post NOUN
that PRON
I PRON
've AUX
seen VERB
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
on ADP
the DET
topic NOUN
of ADP
Colonic PROPN
Flushing PROPN
. PUNCT
  SPACE
I PRON
'm AUX
in ADP
a DET
profession NOUN
that PRON
uses VERB
manipulation(a PROPN
very ADV
refined ADJ
form NOUN
of ADP
massage NOUN
) PUNCT
to PART
treat VERB
various ADJ
human ADJ
diseases NOUN
. PUNCT
  SPACE
Proving VERB
that SCONJ
manipulation NOUN
works NOUN
has AUX
been AUX
extremely ADV
difficult(as ADJ
the DET
MD PROPN
's PART
delight NOUN
in ADP
pointing VERB
out ADP
) PUNCT
. PUNCT
  SPACE
The DET
Osteopathic PROPN
Profession PROPN
seems VERB
to PART
be AUX
making VERB
better ADJ
progress NOUN
than SCONJ
the DET
chiropractors NOUN
in ADP
proving(scientifically PROPN
) PUNCT
that SCONJ
their PRON
techingues NOUN
work VERB
. PUNCT
  SPACE
The DET
JAOA PROPN
recently ADV
had AUX
a DET
study NOUN
on ADP
the DET
use NOUN
of ADP
manipulation NOUN
to PART
relieve VERB
mensrual ADJ
cramps NOUN
in ADP
women NOUN
with ADP
results NOUN
that PRON
were AUX
as ADV
good ADJ
or CCONJ
better ADJ
than SCONJ
drug NOUN
treatment(using ADJ
physiological ADJ
measurements NOUN
, PUNCT
and CCONJ
not PART
just ADV
the DET
woman NOUN
's PART
preception NOUN
of ADP
improvement NOUN
) PUNCT
. PUNCT
  SPACE
This DET
study NOUN
was AUX
hailed VERB
by ADP
the DET
JAOA PROPN
editors NOUN
as SCONJ
the DET
turning NOUN
point NOUN
in ADP
the DET
profession NOUN
's PART
long ADJ
struggle NOUN
to PART
prove VERB
itself PRON
to ADP
the DET
medical ADJ
community NOUN
. PUNCT
I'm PRON
currently ADV
trying VERB
to PART
get AUX
the DET
AOA(American PROPN
Osteopathic PROPN
Association PROPN
) PUNCT
which PRON
has AUX
supported VERB
most ADJ
of ADP
the DET
Osteopathic ADJ
research NOUN
in ADP
the DET
U.S. PROPN
to PART
also ADV
support VERB
nutrition NOUN
education NOUN
and CCONJ
research NOUN
. PUNCT
  SPACE
I PRON
've AUX
pointed VERB
out ADP
, PUNCT
in ADP
a DET
grant NOUN
proposal NOUN
, PUNCT
that SCONJ
the DET
founder NOUN
of ADP
Osteopathic PROPN
Medicine(A.T. PROPN
Still ADV
) PUNCT
embraced VERB
both DET
diet NOUN
and CCONJ
manipulation NOUN
to PART
set VERB
himself PRON
apart ADV
from ADP
the DET
MD PROPN
's PART
of ADP
his PRON
time NOUN
who PRON
were AUX
pushing VERB
only ADV
drugs(Still PROPN
was AUX
himself PRON
an DET
MD NOUN
who PRON
got VERB
real ADV
dissillusioned VERB
with ADP
drugs NOUN
during ADP
his PRON
service NOUN
in ADP
the DET
Civil PROPN
War PROPN
) PUNCT
. PUNCT
  SPACE
He PRON
decided VERB
that SCONJ
there PRON
had AUX
to PART
be AUX
a DET
better ADJ
way NOUN
to PART
treat VERB
human ADJ
disease NOUN
since SCONJ
he PRON
saw VERB
the DET
cure(drugs NOUN
) PUNCT
as SCONJ
being AUX
worse ADJ
than SCONJ
the DET
disease NOUN
. PUNCT
  SPACE
Through ADP
his PRON
many ADJ
years NOUN
of ADP
study NOUN
of ADP
the DET
human ADJ
body NOUN
, PUNCT
he PRON
developed VERB
his PRON
manipulation NOUN
techniques NOUN
that PRON
he PRON
then ADV
taught VERB
to ADP
his PRON
students NOUN
in ADP
the DET
U.S PROPN
's PART
first ADJ
Osteopathic PROPN
Medical PROPN
school NOUN
. PUNCT
  SPACE
We PRON
now ADV
have AUX
17.Still NUM
used VERB
manipulation NOUN
to ADP
treat(and PROPN
also ADV
diagnose VERB
) PUNCT
human ADJ
disease NOUN
but CCONJ
he PRON
used VERB
diet NOUN
to PART
prevent VERB
human ADJ
disease NOUN
. PUNCT
  SPACE
I PRON
'm AUX
trying VERB
to PART
get AUX
the DET
Osteopathic PROPN
Profession PROPN
to PART
return VERB
to ADP
it PRON
's PART
roots NOUN
and CCONJ
beat VERB
the DET
MD PROPN
's PART
to ADP
the DET
punch(so PROPN
to PART
speak VERB
) PUNCT
. PUNCT
  SPACE
Both DET
DO PROPN
's PART
and CCONJ
MD PROPN
's PART
in ADP
current ADJ
medical ADJ
practice NOUN
have AUX
very ADV
little ADJ
understanding NOUN
of ADP
how ADV
diet PROPN
affects VERB
human PROPN
health NOUN
. PUNCT
  SPACE
This DET
has AUX
to PART
change VERB
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
COllege PROPN
of ADP
Osteopathic PROPN
Medicine"You PROPN
are AUX
what PRON
you PRON
eat VERB
. PUNCT
" PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59603From NUM
: PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf)Subject NUM
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1993Apr29.173817.25867@nntpd2.cxo.dec.com NUM
> X
tung@paaiec.enet.dec.com PROPN
( PUNCT
) PUNCT
writes:>>I NOUN
have AUX
just ADV
started VERB
taking VERB
allergy ADJ
shots NOUN
a DET
month NOUN
ago ADV
and CCONJ
is AUX
> X
still ADV
wondering VERB
what PRON
I PRON
am AUX
getting VERB
into ADP
. PUNCT
A DET
friend NOUN
of ADP
mine NOUN
told VERB
> X
me PRON
that SCONJ
the DET
body NOUN
change VERB
every DET
7 NUM
years NOUN
( PUNCT
whatever PRON
that DET
means)>and NOUN
I PRON
do AUX
n't PART
need VERB
those DET
antibody NOUN
- PUNCT
building VERB
allergy NOUN
shots NOUN
at ADP
all.>Does NOUN
that PRON
make VERB
sense NOUN
to ADP
anyone?>>BTW PROPN
, PUNCT
can AUX
someone PRON
summarize VERB
what PRON
is AUX
in ADP
the DET
Consumer PROPN
Report PROPN
> X
February PROPN
, PUNCT
1988 NUM
article?I PROPN
am AUX
reluctant ADJ
to PART
summarize VERB
it PRON
, PUNCT
for ADP
then ADV
you PRON
will AUX
have AUX
my PRON
opinion NOUN
of ADP
what PRON
thearticle NOUN
says VERB
, PUNCT
rather ADV
than SCONJ
your PRON
own ADJ
opinion NOUN
. PUNCT
  SPACE
I PRON
think VERB
it PRON
is AUX
important ADJ
enoughfor NOUN
you PRON
to PART
take VERB
the DET
trouble NOUN
to PART
go VERB
to ADP
the DET
library NOUN
and CCONJ
get AUX
the DET
article NOUN
. PUNCT
  SPACE
Thetitle PROPN
is AUX
" PUNCT
The DET
shot NOUN
doctors NOUN
" PUNCT
and CCONJ
it PRON
appears VERB
on ADP
Pages PROPN
96 NUM
- PUNCT
100 NUM
of ADP
the DET
February,1988 PROPN
issue NOUN
of ADP
Consumer PROPN
Reports PROPN
. PUNCT
  SPACE
The DET
following VERB
excerpt NOUN
from ADP
the DET
article NOUN
mayentice NOUN
you PRON
to PART
read VERB
the DET
whole ADJ
article NOUN
: PUNCT
     SPACE
Too ADV
often ADV
, PUNCT
shots NOUN
are AUX
overused ADJ
..... PUNCT
"When PUNCT
you PRON
put VERB
a DET
patient NOUN
on ADP
     SPACE
shots NOUN
, PUNCT
you PRON
've AUX
got VERB
an DET
annuity NOUN
for ADP
life NOUN
, PUNCT
" PUNCT
a DET
former ADJ
president NOUN
of ADP
     SPACE
the DET
American PROPN
Academy PROPN
of ADP
Allergy PROPN
and CCONJ
Immunology PROPN
told VERB
CU PROPN
. PUNCT
[ PUNCT
page NOUN
97]Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59604From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prostexx@ossi.com X
( PUNCT
" PUNCT
Texx PROPN
" PUNCT
) PUNCT
writes:>Scene ADV
: PUNCT
Navy PROPN
boot NOUN
camp NOUN
> X
DI PROPN
: PUNCT
		 SPACE
" PUNCT
Son PROPN
, PUNCT
you PRON
smel VERB
awful ADJ
! PUNCT
Do AUX
nt PART
you PRON
ever ADV
clean VERB
that SCONJ
thing?">Recruit NOUN
: PUNCT
	 SPACE
" PUNCT
No DET
Sir PROPN
! PUNCT
" PUNCT
> X
DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
the DET
hell NOUN
NOT!">Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Your PRON
not PART
sposed VERB
to PART
touch VERB
down ADP
there?">DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
? PUNCT
" PUNCT
> X
Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Cause NOUN
that DET
s VERB
the DET
eye NOUN
of ADP
god PROPN
down ADV
there ADV
, PUNCT
an DET
' PUNCT
your PRON
not PART
s'posed VERB
to PART
touch VERB
it PRON
... PUNCT
">This PUNCT
did AUX
not PART
happen VERB
40 NUM
years NOUN
ago ADV
, PUNCT
it PRON
happened VERB
2 NUM
years NOUN
ago.>I PART
think VERB
Americans PROPN
are AUX
QUITE ADV
hung VERB
up ADP
about ADP
sex NOUN
and CCONJ
the DET
involved ADJ
plumbing!Cute PROPN
anecdote NOUN
, PUNCT
but CCONJ
hardly ADV
indicative ADJ
of ADP
the DET
population NOUN
. PUNCT
  SPACE
From ADP
the DET
responsesI've NOUN
received VERB
to ADP
that DET
post NOUN
( PUNCT
all ADV
from ADP
men NOUN
, PUNCT
by ADP
the DET
way NOUN
) PUNCT
I PRON
get VERB
the DET
impressionthat NOUN
unless SCONJ
a DET
person NOUN
is AUX
willing ADJ
to PART
drop VERB
down ADP
and CCONJ
masturbate VERB
whenever ADV
theneed NOUN
or CCONJ
desire NOUN
strikes NOUN
, PUNCT
then ADV
that DET
person NOUN
is AUX
very ADV
hung ADJ
up ADP
on ADP
sex NOUN
. PUNCT
With ADP
tv NOUN
programs NOUN
about ADP
" PUNCT
boobs X
" PUNCT
( PUNCT
Seinfeld PROPN
) PUNCT
and CCONJ
" PUNCT
masturbation NOUN
( PUNCT
again ADV
Seinfeld)and ADJ
with ADP
condoms NOUN
being AUX
handed VERB
out ADP
in ADP
high ADJ
schools NOUN
and CCONJ
with ADP
the DET
teenagepregnancy NOUN
rate NOUN
and CCONJ
the DET
high ADJ
abortion NOUN
rate NOUN
here ADV
in ADP
the DET
States PROPN
, PUNCT
I PRON
wouldnot VERB
assume VERB
that SCONJ
we PRON
American PROPN
's PART
are AUX
frightened ADJ
of ADP
sex NOUN
. PUNCT
  SPACE
Rather ADV
we PRON
are AUX
a DET
bitstupid NOUN
about ADP
it PRON
. PUNCT
  SPACE
Healthy PROPN
sexuality NOUN
does AUX
not PART
require VERB
flamboyance NOUN
orpromiscuity NOUN
. PUNCT
  SPACE
It PRON
requires VERB
responsibility NOUN
. PUNCT
DeanthaNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59605From NUM
: PUNCT
glskiles@carson.u.washington.edu PROPN
( PUNCT
Gary PROPN
Skiles)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Deadly PROPN
NyQuil???In PROPN
article NOUN
< X
C6BK0F.H7I@murdoch.acc.Virginia.EDU PROPN
> X
res4w@galen.med.Virginia.EDU NOUN
( PUNCT
Robert PROPN
E. PROPN
Schmieg PROPN
) PUNCT
writes:[Partial PROPN
deletion]>potentially ADV
fatal ADJ
from ADP
hepatic ADJ
necrosis NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
recall VERB
> X
correctly ADV
, PUNCT
the DET
metabolism NOUN
of ADP
acetaminophen PROPN
at ADP
high ADJ
doses NOUN
> X
involves VERB
N PROPN
- PUNCT
hydroxylation NOUN
to ADP
N PROPN
- PUNCT
acetyl ADJ
- PUNCT
benzoquinoneimine NOUN
, PUNCT
which PRON
> X
is AUX
a DET
highly ADV
reactive ADJ
intermediate NOUN
, PUNCT
which PRON
then ADV
reacts VERB
with ADP
> PROPN
sulfhydryl ADJ
groups NOUN
of ADP
proteins NOUN
and CCONJ
glutathione NOUN
. PUNCT
  SPACE
When ADV
hepatic ADJ
> X
glutathione NOUN
is AUX
used VERB
up ADP
, PUNCT
this DET
intermediate NOUN
then ADV
starts VERB
> X
attacking VERB
the DET
hepatic ADJ
proteins NOUN
with ADP
resulting VERB
hepatic ADJ
> X
necrosis NOUN
. PUNCT
  SPACE
The DET
insidious ADJ
part NOUN
of ADP
acetaminophen PROPN
toxicity NOUN
is AUX
the DET
> X
delay NOUN
( PUNCT
2 NUM
- SYM
4 NUM
days NOUN
) PUNCT
between ADP
ingestion NOUN
and CCONJ
clinical ADJ
signs NOUN
of ADP
liver NOUN
> X
damage NOUN
. PUNCT
  SPACE
This DET
is AUX
NOT ADV
a DET
nice ADJ
way NOUN
to PART
die.>Nice VERB
explanation NOUN
except SCONJ
that SCONJ
it PRON
is AUX
n't PART
N PROPN
- PUNCT
hydroxylation NOUN
that PRON
causes VERB
theformation NOUN
of ADP
the DET
N PROPN
- PUNCT
acetyl ADJ
- PUNCT
p NOUN
- PUNCT
benzoquinone NOUN
imine NOUN
( PUNCT
NAPQI PROPN
) PUNCT
, PUNCT
but CCONJ
rather ADV
adirect VERB
two NUM
- PUNCT
electron NOUN
oxidation NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
there PRON
is AUX
one NUM
school NOUN
of ADP
thoughtthat PRON
contends VERB
that SCONJ
oxidative ADJ
stress NOUN
rather ADV
than SCONJ
arylation NOUN
of ADP
proteinis PROPN
the DET
more ADV
critical ADJ
factor NOUN
in ADP
the DET
hapatotoxcity NOUN
of ADP
acetaminophen PROPN
. PUNCT
  SPACE
As ADV
far ADV
as SCONJ
drug NOUN
toxicities NOUN
go VERB
, PUNCT
acetaminophen PROPN
has AUX
and CCONJ
continues VERB
to PART
be AUX
oneof ADV
the DET
most ADV
intensely ADV
scrutinized VERB
. PUNCT
An DET
excellent ADJ
recent ADJ
review NOUN
of ADP
the DET
topiccan PROPN
be AUX
found VERB
in ADP
: PUNCT
	 SPACE
Vermeulen PROPN
, PUNCT
Bessems PROPN
and CCONJ
Van PROPN
de PROPN
Straat PROPN
. PUNCT
		 SPACE
Molecular PROPN
Aspects PROPN
of ADP
Paracetamol PROPN
- PUNCT
induced VERB
hepatotoxicity NOUN
and CCONJ
its PRON
	 SPACE
Mechanism PROPN
- PUNCT
Based VERB
Prevention PROPN
. PUNCT
Drug NOUN
Metabolism PROPN
Reviews PROPN
, PUNCT
24(3 NUM
) PUNCT
367- NUM
	 SPACE
407 NUM
( PUNCT
1992 NUM
) PUNCT
. PUNCT
	 SPACE
( PUNCT
Acetaminophen PROPN
is AUX
known VERB
as SCONJ
paracetamol PROPN
in ADP
Europe)I PROPN
could AUX
n't PART
agree VERB
with ADP
you PRON
more ADV
about ADP
what PRON
an DET
awful ADJ
way NOUN
to PART
die VERB
a DET
toxicdose NOUN
of ADP
acetaminophen PROPN
causes VERB
. PUNCT
  SPACE
I PRON
've AUX
heard VERB
a DET
number NOUN
of ADP
descriptions NOUN
byphysicians NOUN
associated VERB
with ADP
poison NOUN
control NOUN
centers NOUN
, PUNCT
and CCONJ
they PRON
describe VERB
alingering VERB
very ADV
painful ADJ
death NOUN
. PUNCT
-Gary X
- PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59606From NUM
: PUNCT
chungdan@leland NOUN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Zhong PROPN
Qi PROPN
Iao PROPN
( PUNCT
Daniel))Subject PROPN
: PUNCT
[ PUNCT
sleep NOUN
] PUNCT
the DET
pulse NOUN
of ADP
relaxation NOUN
; PUNCT
roaming VERB
while SCONJ
sleeping VERB
     SPACE
I PRON
posted VERB
about ADP
a DET
" PUNCT
pulse NOUN
of ADP
( PUNCT
relaxation NOUN
) PUNCT
electricity NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
now ADV
thinkit VERB
more ADV
like SCONJ
a DET
pulse NOUN
of ADP
" PUNCT
relaxation NOUN
" PUNCT
or CCONJ
comfort NOUN
than SCONJ
a DET
pulse ADJ
ofelectricity NOUN
. PUNCT
  SPACE
It PRON
is AUX
what PRON
you PRON
feel VERB
if SCONJ
you PRON
are AUX
overwhelmed ADJ
by ADP
a DET
feelingof NOUN
comfort NOUN
, PUNCT
such ADJ
as SCONJ
seeing VERB
or CCONJ
thinking VERB
about ADP
something PRON
beautiful ADJ
. PUNCT
     SPACE
Another DET
thing NOUN
. PUNCT
  SPACE
When ADV
you PRON
sleep VERB
, PUNCT
you PRON
lie VERB
down ADV
facing VERB
up ADP
, PUNCT
with ADP
yourpalms NOUN
aside ADV
of ADP
you PRON
and CCONJ
facing VERB
down ADP
on ADP
the DET
surface NOUN
of ADP
the DET
bed NOUN
. PUNCT
  SPACE
Then ADV
yourelax ADV
, PUNCT
and CCONJ
there PRON
start VERB
involuntary ADJ
nerve NOUN
firings NOUN
inside ADP
your PRON
flesh NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
you PRON
feel VERB
a DET
" PUNCT
shiver NOUN
" PUNCT
below ADP
the DET
surface NOUN
of ADP
the DET
skin NOUN
( PUNCT
not PART
heart NOUN
- PUNCT
beat).Then NOUN
this DET
shiver NOUN
increases VERB
, PUNCT
and CCONJ
comes VERB
up ADP
to ADP
your PRON
head NOUN
, PUNCT
and CCONJ
the DET
roam NOUN
youhear NOUN
loudens PROPN
. PUNCT
  SPACE
( PUNCT
Note VERB
that SCONJ
you PRON
always ADV
hear VERB
a DET
high ADJ
- PUNCT
pitch NOUN
when ADV
you PRON
lie VERB
downin PROPN
bed NOUN
; PUNCT
this DET
is AUX
just ADV
the DET
noise NOUN
of ADP
your PRON
blood NOUN
running VERB
in ADP
your PRON
ear NOUN
. PUNCT
) PUNCT
  SPACE
Thisroam PROPN
is AUX
different ADJ
from ADP
the DET
high ADJ
pitch NOUN
, PUNCT
but CCONJ
follows VERB
the DET
shiver NOUN
of ADP
yourbody PROPN
. PUNCT
     SPACE
" PUNCT
Shiver PROPN
" PUNCT
is AUX
not PART
the DET
word NOUN
. PUNCT
  SPACE
It PRON
may AUX
be AUX
called VERB
a DET
mild ADJ
vibration NOUN
or CCONJ
quake NOUN
. PUNCT
What PRON
is AUX
this DET
shiver NOUN
and CCONJ
roam NOUN
? PUNCT
  SPACE
Can AUX
I PRON
use VERB
this DET
to PART
induce VERB
out SCONJ
- PUNCT
of ADP
- PUNCT
bodyexperience NOUN
? PUNCT
					 SPACE
Daniel PROPN
Chung PROPN
( PUNCT
Mr. PROPN
) PUNCT
, PUNCT
U.S.A.Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59615Subject NUM
: PUNCT
Help VERB
with ADP
antidepressants NOUN
requested VERB
. PUNCT
From ADP
: PUNCT
blubird@penguin.equinox.gen.nz PROPN
( PUNCT
Gordon PROPN
Taylor)Hello PROPN
all DET
, PUNCT
          SPACE
There PRON
is AUX
a DET
small ADJ
problem NOUN
a DET
friend NOUN
of ADP
mine NOUN
is AUX
experiencing VERB
and CCONJ
I PRON
would AUX
appreciate VERB
any DET
help NOUN
at ADV
all ADV
with ADP
it PRON
. PUNCT
My PRON
friend NOUN
has AUX
been AUX
diagnosed VERB
as SCONJ
having VERB
a DET
severe ADJ
case NOUN
of ADP
depression NOUN
requiring VERB
antidepressants NOUN
for ADP
a DET
cure NOUN
. PUNCT
The DET
main ADJ
problem NOUN
is AUX
the DET
side NOUN
effects NOUN
of ADP
these DET
. PUNCT
So ADV
far ADV
she PRON
has AUX
been AUX
prescribed VERB
Prozac PROPN
, PUNCT
Aurorix PROPN
, PUNCT
and CCONJ
tryptanol VERB
all DET
with ADP
different ADJ
but CCONJ
unbearable ADJ
side NOUN
effects NOUN
. PUNCT
The DET
Prozac PROPN
gave VERB
very ADV
bad ADJ
anxiety NOUN
/ SYM
jitters NOUN
and CCONJ
insomina PROPN
, PUNCT
it PRON
was AUX
impossible ADJ
to PART
sit VERB
still ADV
for ADP
more ADJ
than SCONJ
a DET
minute NOUN
or CCONJ
so ADV
. PUNCT
The DET
Aurorix PROPN
whilst SCONJ
having VERB
a DET
calming VERB
effect NOUN
, PUNCT
all DET
feelings NOUN
were AUX
lost VERB
and CCONJ
the DET
body NOUN
co NOUN
- NOUN
ordination NOUN
was AUX
similar ADJ
to ADP
a DET
drunken ADJ
person NOUN
. PUNCT
Her PRON
brain NOUN
was AUX
clouded VERB
over ADP
. PUNCT
The DET
tryptanol NOUN
gave VERB
tremors NOUN
in ADP
the DET
legs NOUN
and CCONJ
panic NOUN
attacks NOUN
along ADP
with ADP
unco- ADJ
ordination NOUN
occurred VERB
. PUNCT
She PRON
did AUX
not PART
know VERB
what PRON
she PRON
was AUX
doing VERB
as SCONJ
her PRON
brain NOUN
was AUX
" PUNCT
closed ADJ
down" NOUN
. PUNCT
Has AUX
anyone PRON
had AUX
similar ADJ
problems NOUN
and/or CCONJ
have AUX
any DET
suggestions NOUN
as SCONJ
to ADP
the DET
next ADJ
step?Thankyou NOUN
in ADP
advance NOUN
. PUNCT
Gordon PROPN
TaylorE PROPN
- PUNCT
mail NOUN
: PUNCT
blubird@penguin.equinox.gen.nzNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59616From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10557@blue.cis.pitt.edu NUM
> X
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R PROPN
Doyle PROPN
) PUNCT
writes::Being VERB
a DET
chronic ADJ
HBsAg PROPN
carrier NOUN
does AUX
not PART
necessarily ADV
mean VERB
the DET
patient NOUN
has AUX
chronic NOUN
: PUNCT
persistent ADJ
anything PRON
. PUNCT
Persons NOUN
who PRON
are AUX
chronic ADJ
carriers NOUN
may AUX
have AUX
no DET
clinical,:biochemical ADJ
, PUNCT
or CCONJ
histologic ADJ
evidence NOUN
of ADP
liver NOUN
disease NOUN
, PUNCT
or CCONJ
they PRON
may AUX
have AUX
chronic NOUN
: PUNCT
persistent PROPN
hepatitis PROPN
, PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
, PUNCT
cirrhosis NOUN
, PUNCT
or CCONJ
hepatocellular NOUN
: PUNCT
carcinoma.::Most ADJ
cases NOUN
of ADP
chronic ADJ
persistent ADJ
hepatitis PROPN
( PUNCT
CPH PROPN
) PUNCT
are AUX
probably ADV
the DET
result NOUN
of ADP
: PUNCT
a DET
viral ADJ
infection NOUN
, PUNCT
although SCONJ
in ADP
a DET
good ADJ
number NOUN
of ADP
cases NOUN
the DET
cause NOUN
can AUX
not PART
be AUX
: PUNCT
determined VERB
. PUNCT
The DET
diagnosis NOUN
of ADP
CPH PROPN
is AUX
made VERB
on ADP
the DET
basis NOUN
of ADP
liver NOUN
biopsy NOUN
. PUNCT
It PRON
: PUNCT
consists VERB
of ADP
findings NOUN
of ADP
portal ADJ
inflammation NOUN
, PUNCT
an DET
intact ADJ
periportal ADJ
limiting NOUN
: PUNCT
plate NOUN
, PUNCT
and CCONJ
on ADP
occasion NOUN
isolated VERB
foci NOUN
of ADP
intralobular ADJ
necrosis NOUN
. PUNCT
But CCONJ
in ADP
contrast NOUN
: PUNCT
to PART
chronic VERB
active ADJ
hepatitis NOUN
( PUNCT
CAH PROPN
) PUNCT
there PRON
is AUX
no DET
periportal ADJ
inflammation NOUN
, PUNCT
: PUNCT
bridging VERB
necrosis NOUN
, PUNCT
or CCONJ
fibrosis NOUN
. PUNCT
: PUNCT
: PUNCT
CPH PROPN
has AUX
, PUNCT
indeed ADV
, PUNCT
an DET
excellent ADJ
prognosis NOUN
. PUNCT
If SCONJ
I PRON
had AUX
to PART
choose VERB
between ADP
CAH PROPN
and CCONJ
: PUNCT
CPH PROPN
there PRON
is AUX
no DET
question NOUN
I PRON
would AUX
also ADV
choose VERB
CPH PROPN
. PUNCT
However ADV
, PUNCT
as SCONJ
David PROPN
pointed VERB
: PUNCT
out ADV
, PUNCT
the DET
distinction NOUN
between ADP
the DET
two NUM
is AUX
not PART
as ADV
neat ADJ
as SCONJ
some DET
of ADP
us PRON
would AUX
have AUX
: PUNCT
it PRON
. PUNCT
The DET
histology NOUN
can AUX
sometimes ADV
be AUX
pretty ADV
equivocal ADJ
, PUNCT
with ADP
biopsies NOUN
showing VERB
: PUNCT
areas NOUN
compatible ADJ
with ADP
both DET
CPH PROPN
and CCONJ
CAH PROPN
. PUNCT
Maybe ADV
it PRON
is AUX
a DET
sampling ADJ
problem NOUN
. PUNCT
Maybe ADV
: PUNCT
it PRON
is AUX
a DET
continuum NOUN
. PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
Darn INTJ
. PUNCT
  SPACE
Just ADV
when ADV
I PRON
think VERB
I PRON
understand VERB
something PRON
someone PRON
who PRON
knows VERB
thepathology NOUN
has AUX
to PART
burst VERB
my PRON
bubble NOUN
:-( PUNCT
  SPACE
We PRON
'd AUX
better ADV
not PART
start VERB
talking VERB
aboutglomerular ADJ
diseases NOUN
, PUNCT
then ADV
I PRON
'll AUX
really ADV
get AUX
depressed ADJ
. PUNCT
Seriously ADV
though ADV
, PUNCT
I PRON
wonder VERB
how ADV
someone PRON
with ADP
CPH PROPN
would AUX
end VERB
up ADP
getting VERB
abiopsy ADJ
in ADP
the DET
first ADJ
place NOUN
? PUNCT
  SPACE
My PRON
understanding NOUN
( PUNCT
and CCONJ
feel VERB
free ADJ
to PART
correct VERB
me)is NOUN
that SCONJ
the DET
enzymes NOUN
are AUX
at ADP
worst ADJ
mildly ADV
elevated VERB
, PUNCT
with ADP
overall ADJ
normalhepatic ADJ
function NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
the DET
only ADJ
clue NOUN
might AUX
be AUX
a DET
history NOUN
ofprior ADJ
HepB PROPN
infection NOUN
and CCONJ
a DET
positive ADJ
HepB PROPN
- PUNCT
sAg PROPN
. PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
indeed ADV
on ADP
acontinuum NOUN
with ADP
CAH PROPN
, PUNCT
and CCONJ
the DET
distinction NOUN
merely ADV
one NUM
of ADP
pathology NOUN
andprognosis NOUN
, PUNCT
but CCONJ
otherwise ADV
identical ADJ
clinical ADJ
features?-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59617From NUM
: PUNCT
werner@soe.berkeley.edu PROPN
( PUNCT
John PROPN
Werner)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Help VERB
with ADP
antidepressants NOUN
requested VERB
. PUNCT
In ADP
article NOUN
< X
736250544snx@penguin.equinox.gen.nz>,blubird@penguin.equinox.gen.nz NUM
( PUNCT
Gordon PROPN
Taylor PROPN
) PUNCT
wrote VERB
: PUNCT
> X
The DET
Prozac PROPN
gave VERB
very ADV
bad ADJ
anxiety NOUN
/ SYM
jitters NOUN
and CCONJ
insomina PROPN
, PUNCT
it PRON
was AUX
impossible ADJ
to PART
> X
sit VERB
still ADV
for ADP
more ADJ
than SCONJ
a DET
minute NOUN
or CCONJ
so ADV
. PUNCT
I PRON
tried VERB
Prozac PROPN
a DET
few ADJ
months NOUN
ago ADV
, PUNCT
and CCONJ
had AUX
some DET
insomnia NOUN
from ADP
it PRON
, PUNCT
but CCONJ
noanxiety NOUN
or CCONJ
jitters NOUN
. PUNCT
  SPACE
I PRON
probably ADV
could AUX
have AUX
lived VERB
with ADP
the DET
insomnia NOUN
if SCONJ
theProzac PROPN
had AUX
done VERB
any DET
good ADJ
, PUNCT
but CCONJ
it PRON
only ADV
provided VERB
a DET
tiny ADJ
benefit NOUN
. PUNCT
  SPACE
Maybebecause VERB
the DET
person NOUN
who PRON
prescribed VERB
it PRON
did AUX
n't PART
know VERB
much ADJ
and CCONJ
gave VERB
up ADP
after ADP
a20 PROPN
mg PROPN
dose PROPN
did AUX
n't PART
work VERB
. PUNCT
Now ADV
I PRON
'm AUX
seeing VERB
a DET
psychiatrist NOUN
who PRON
has AUX
put VERB
me PRON
on ADP
Zoloft PROPN
( PUNCT
another DET
serotoninreuptake NOUN
inhibitor NOUN
like SCONJ
Prozac PROPN
) PUNCT
. PUNCT
  SPACE
One NUM
pill NOUN
/ SYM
day NOUN
( PUNCT
50 NUM
mg PROPN
) PUNCT
seemed VERB
to PART
help VERB
some DET
. PUNCT
Now ADV
I PRON
'm AUX
trying VERB
100mg PROPN
/ SYM
day NOUN
. PUNCT
  SPACE
Zoloft PROPN
has AUX
fewer ADJ
and CCONJ
milder VERB
side NOUN
effects NOUN
thanProzac NOUN
. PUNCT
  SPACE
I PRON
think VERB
my PRON
doctor NOUN
said VERB
that SCONJ
only ADV
4 NUM
% NOUN
of ADP
the DET
people NOUN
taking VERB
Zolofthave PROPN
to PART
discontinue VERB
it PRON
because SCONJ
of ADP
side NOUN
effects NOUN
. PUNCT
  SPACE
The DET
only ADJ
problem NOUN
I'mhaving PROPN
is AUX
some DET
minor ADJ
GI PROPN
distress NOUN
, PUNCT
but CCONJ
nothing PRON
too ADV
annoying ADJ
. PUNCT
  SPACE
Hopefully ADV
theZoloft PROPN
will AUX
work VERB
. PUNCT
  SPACE
Maybe ADV
your PRON
friend NOUN
should AUX
try VERB
this DET
one NOUN
next ADV
. PUNCT
My PRON
psychiatrist NOUN
's PART
strategy NOUN
seems VERB
to PART
be AUX
to PART
first ADV
try VERB
one NUM
of ADP
the DET
serotonindrugs NOUN
, PUNCT
usually ADV
Prozac VERB
. PUNCT
  SPACE
If SCONJ
that DET
works VERB
, PUNCT
great ADJ
. PUNCT
  SPACE
If SCONJ
it PRON
works VERB
but CCONJ
has AUX
too ADV
manyside ADJ
effects NOUN
, PUNCT
try VERB
Zoloft PROPN
or CCONJ
maybe ADV
Paxil PROPN
. PUNCT
  SPACE
If SCONJ
the DET
serotonin NOUN
drugs NOUN
do AUX
n't PART
workat VERB
all DET
, PUNCT
try VERB
one NUM
of ADP
the DET
tricyclics NOUN
like SCONJ
desipramine.> NOUN
... PUNCT
suggestions NOUN
as SCONJ
to ADP
the DET
next ADJ
step?Having NOUN
a DET
doctor NOUN
who PRON
knows VERB
something PRON
about ADP
antidepressants NOUN
can AUX
make VERB
a DET
bigdifference NOUN
. PUNCT
  SPACE
My PRON
psychiatrist NOUN
claims VERB
that SCONJ
most ADJ
GPs NOUN
and CCONJ
FPs NOUN
do AUX
n't PART
have AUX
muchexperience NOUN
in ADP
this DET
area NOUN
, PUNCT
and CCONJ
from ADP
what PRON
I PRON
've AUX
seen VERB
I PRON
'm AUX
inclined ADJ
to ADP
believehim VERB
. PUNCT
  SPACE
I PRON
think VERB
I PRON
know VERB
more ADJ
about ADP
antidepressants NOUN
than SCONJ
the DET
people NOUN
at ADP
myfamily ADV
practitioner PROPN
's PART
office NOUN
. PUNCT
Disclaimer NOUN
: PUNCT
I PRON
'm AUX
not PART
a DET
doctor NOUN
; PUNCT
what PRON
I PRON
know VERB
about ADP
this DET
comes VERB
from ADP
talking VERB
tomy NOUN
psychiatrist NOUN
and CCONJ
reading NOUN
sci.med VERB
. PUNCT
  SPACE
--John PROPN
Werner PROPN
                          SPACE
werner@soe.berkeley.eduUC PROPN
Berkeley PROPN
School PROPN
of ADP
Education PROPN
      SPACE
510 NUM
- PUNCT
596 NUM
- PUNCT
5868Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59619From NUM
: PUNCT
stanley@skyking VERB
. PUNCT
OCE.ORST.EDU PROPN
( PUNCT
John PROPN
Stanley)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C6Bot5.12A@r-node.hub.org PROPN
> X
taob@r-node.hub.org PROPN
writes:>In PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
writes VERB
... PUNCT
> X
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
    SPACE
But CCONJ
no DET
one NOUN
( PUNCT
or CCONJ
at ADP
least ADJ
, PUNCT
not PART
many ADJ
people NOUN
) PUNCT
are AUX
trying VERB
to PART
pass VERB
off ADP
GodWill NOUN
you PRON
please INTJ
keep VERB
this DET
crap NOUN
out SCONJ
of ADP
sci.image.processing?Newsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59620From NUM
: PUNCT
collopy@leland NOUN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Paul PROPN
Dennis PROPN
Collopy)Subject PROPN
: PUNCT
re ADP
: PUNCT
antidepressantsWithout ADV
restating VERB
the DET
thread NOUN
going VERB
here ADV
..... PUNCT
Zoloft NOUN
is AUX
a DET
stimulating ADJ
antidepressant NOUN
. PUNCT
It PRON
is AUX
unfortunate ADJ
that SCONJ
antidepressant ADJ
therapy NOUN
is AUX
trial NOUN
and CCONJ
error NOUN
, PUNCT
butif CCONJ
it PRON
is AUX
any DET
help NOUN
, PUNCT
there PRON
are AUX
a DET
lot NOUN
of ADP
people NOUN
using VERB
the DET
side NOUN
effects NOUN
ofthe VERB
many ADJ
medications NOUN
to PART
help VERB
manage VERB
other ADJ
conditions NOUN
. PUNCT
Hang VERB
in ADV
there ADV
, PUNCT
maybe ADV
someday ADV
a DET
" PUNCT
brain NOUN
chemistry NOUN
set NOUN
" PUNCT
will AUX
be AUX
availableand ADP
all DET
the DET
serotonin NOUN
questions NOUN
will AUX
have AUX
answers NOUN
. PUNCT
Please INTJ
, PUNCT
no DET
flames NOUN
........ PUNCT
I PRON
have AUX
enough ADJ
to PART
deal VERB
with ADP
   SPACE
: PUNCT
) PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59621From NUM
: PUNCT
haynes@cats.ucsc.edu PROPN
( PUNCT
Jim PROPN
Haynes)Subject PROPN
: PUNCT
Is AUX
this DET
a DET
total ADJ
or CCONJ
partial ADJ
scam?There NOUN
's AUX
a DET
chiropractor NOUN
who PRON
has AUX
a DET
stand NOUN
in ADP
the DET
middle NOUN
of ADP
a DET
shoppingmall NOUN
, PUNCT
offering VERB
free ADJ
examinations NOUN
. PUNCT
  SPACE
Part NOUN
of ADP
the DET
process NOUN
involves VERB
amultiple NOUN
- PUNCT
jointed VERB
sensor NOUN
arm NOUN
and CCONJ
a DET
computer NOUN
that PRON
says VERB
in ADP
a DET
computer NOUN
- PUNCT
sounding VERB
voice NOUN
" PUNCT
digitize VERB
left VERB
PSIS NOUN
" PUNCT
" PUNCT
digitize VERB
right ADJ
PSIS NOUN
" PUNCT
" PUNCT
digitizeC7 X
" PUNCT
" PUNCT
please INTJ
stand VERB
with ADP
spine NOUN
in ADP
neutral ADJ
position NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
wonderingwhether NOUN
this DET
does AUX
n't PART
really ADV
measure VERB
anything PRON
and CCONJ
the DET
computer NOUN
voiceis VERB
to PART
impress VERB
the DET
victims NOUN
, PUNCT
or CCONJ
whether SCONJ
it PRON
is AUX
measuring VERB
somethingthat ADP
chiropractors NOUN
think VERB
is AUX
useful ADJ
to ADP
measure.-- PROPN
haynes@cats.ucsc.eduhaynes@cats.bitnet"Ya NOUN
can AUX
talk VERB
all DET
ya PROPN
wanna PROPN
, PUNCT
but CCONJ
it PRON
's AUX
dif'rent ADJ
than SCONJ
it PRON
was!""No VERB
it PRON
ai VERB
nt PART
! PUNCT
  SPACE
But CCONJ
ya PRON
got VERB
ta PART
know VERB
the DET
territory NOUN
! PUNCT
" PUNCT
        SPACE
Meredith PROPN
Willson PROPN
: PUNCT
" PUNCT
The DET
Music PROPN
Man"Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59622From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
IS VERB
THIS DET
A DET
SCAM NOUN
? PUNCT
    SPACE
Jim PROPN
Haynes PROPN
wants VERB
to PART
know VERB
the DET
following NOUN
is AUX
a DET
scam NOUN
.... PUNCT
       SPACE
There PRON
's AUX
a DET
chiropractor NOUN
who PRON
has AUX
a DET
stand NOUN
in ADP
the DET
middle NOUN
of ADP
a DET
shopping NOUN
       SPACE
mall NOUN
, PUNCT
offering VERB
free ADJ
examinations NOUN
. PUNCT
  SPACE
Part NOUN
of ADP
the DET
process NOUN
involves VERB
a DET
       SPACE
multiple NOUN
- PUNCT
jointed VERB
sensor NOUN
arm NOUN
and CCONJ
a DET
computer NOUN
that PRON
says VERB
in ADP
a DET
computer- ADJ
       SPACE
sounding VERB
voice NOUN
" PUNCT
digitize VERB
left VERB
PSIS NOUN
" PUNCT
" PUNCT
digitize VERB
right ADJ
PSIS NOUN
" PUNCT
" PUNCT
digitize VERB
       SPACE
C7 NOUN
" PUNCT
" PUNCT
please INTJ
stand VERB
with ADP
spine NOUN
in ADP
neutral ADJ
position NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
wondering VERB
       SPACE
whether SCONJ
this DET
does AUX
n't PART
really ADV
measure VERB
anything PRON
and CCONJ
the DET
computer NOUN
voice NOUN
       SPACE
is AUX
to PART
impress VERB
the DET
victims NOUN
, PUNCT
or CCONJ
whether SCONJ
it PRON
is AUX
measuring VERB
something PRON
       SPACE
that PRON
chiropractors NOUN
think VERB
is AUX
useful ADJ
to PART
measure VERB
. PUNCT
Earth NOUN
to PART
sci.med....If PROPN
it PRON
looks VERB
like SCONJ
a DET
duck NOUN
... PUNCT
and CCONJ
quacks VERB
like SCONJ
a DET
duck NOUN
...... PUNCT
This DET
is AUX
a DET
TOTAL NOUN
scam NOUN
. PUNCT
Since SCONJ
the DET
beginning NOUN
of ADP
chiropraxis PROPN
, PUNCT
the DET
chiropractor NOUN
has AUX
tried VERB
to PART
sell VERB
The DET
Subluxation PROPN
as SCONJ
The DET
Problem PROPN
and CCONJ
then ADV
sell VERB
themselves PRON
andtheir VERB
Adjustments NOUN
as SCONJ
The DET
Solution PROPN
. PUNCT
The DET
Chiropractic PROPN
Subluxation PROPN
is AUX
a DET
delusional ADJ
diagnosis NOUN
and CCONJ
the DET
Adjustments NOUN
of ADP
Subluxations PROPN
by ADP
extension NOUN
constitute NOUN
a DET
delusional ADJ
medicine NOUN
. PUNCT
The DET
wide ADJ
spectrum NOUN
of ADP
chiropractic ADJ
Techniques NOUN
ALL DET
have AUX
their PRON
own ADJ
methods NOUN
for ADP
detecting VERB
Spinal PROPN
Demons PROPN
and CCONJ
unique ADJ
methodolgies NOUN
for ADP
Excorcizing PROPN
Them PRON
. PUNCT
The DET
computer NOUN
approach NOUN
is AUX
an DET
attempt NOUN
to PART
' PUNCT
sell VERB
with ADP
science NOUN
' PUNCT
but CCONJ
this DET
device NOUN
is AUX
nothing PRON
more ADJ
than SCONJ
a DET
' PUNCT
high ADJ
- PUNCT
tech NOUN
' PUNCT
Subluxation PROPN
Detector PROPN
..... PUNCT
and CCONJ
in ADP
the DET
end NOUN
... PUNCT
AMAZINGLY PROPN
... PUNCT
it PRON
will AUX
show VERB
the DET
potential ADJ
' PUNCT
patient NOUN
' PUNCT
to PART
suffer VERB
from ADP
... PUNCT
VS PROPN
...... PUNCT
Vertebral PROPN
Subluxation PROPN
.... PUNCT
The DET
Silent ADJ
Killer!John NOUN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59623From NUM
: PUNCT
mrbulli@btoy1.rochester.NY.US PROPN
( PUNCT
Mr. PROPN
Bulli PROPN
( PUNCT
private ADJ
account))Subject NOUN
: PUNCT
Re ADP
: PUNCT
Vasectomy NOUN
: PUNCT
Health PROPN
Effects PROPN
on ADP
Women?On SYM
28 NUM
Apr PROPN
93 NUM
20:54:04 NUM
GMT PROPN
joshm@yang.earlham.edu PROPN
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
1993Apr27.110440.5069@nic.csu.net NUM
> X
, PUNCT
eskagerb@nermal.santarosa.edu PROPN
( PUNCT
Eric PROPN
Skagerberg PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
Does AUX
anyone PRON
know VERB
of ADP
any DET
studies NOUN
done VERB
on ADP
the DET
long ADJ
- PUNCT
term NOUN
health NOUN
effects NOUN
of ADP
a DET
: PUNCT
> X
man NOUN
's PART
vasectomy NOUN
on ADP
his PRON
female ADJ
partner NOUN
? PUNCT
: PUNCT
> X
: PUNCT
> X
... PUNCT
: PUNCT
I PRON
've AUX
heard VERB
of ADP
NO DET
studies NOUN
, PUNCT
but CCONJ
speculation NOUN
: PUNCT
: PUNCT
Why ADV
on ADP
_ DET
earth NOUN
_ PROPN
would AUX
there PRON
be AUX
any DET
effect NOUN
on ADP
women NOUN
's PART
health NOUN
? PUNCT
  SPACE
That DET
's AUX
about ADP
: PUNCT
the DET
most ADV
absurd ADJ
idea NOUN
I PRON
've AUX
heard VERB
since SCONJ
Ted PROPN
Kaldis PROPN
's PART
claim NOUN
that SCONJ
no DET
more ADJ
than SCONJ
: PUNCT
35,000 NUM
people NOUN
would AUX
march VERB
on ADP
Washington PROPN
. PUNCT
: PUNCT
Ok INTJ
, PUNCT
_ DET
one PRON
_ PROPN
point NOUN
: PUNCT
  SPACE
Greatly ADV
reduced ADJ
chance NOUN
of ADP
pregnancy NOUN
. PUNCT
  SPACE
But CCONJ
that DET
's AUX
it PRON
. PUNCT
: PUNCT
--JoshWell PUNCT
, PUNCT
there PRON
might AUX
be AUX
another DET
: PUNCT
Since SCONJ
I PRON
'm AUX
sterile ADJ
my PRON
wife NOUN
can AUX
enjoy VERB
sex NOUN
without ADP
fear NOUN
of ADP
getting VERB
pregnant.-- ADV
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
                             SPACE
_ PROPN
_ PROPN
        SPACE
_ PROPN
  SPACE
_ PROPN
    SPACE
/ SYM
   SPACE
/ SYM
                           SPACE
/ SYM
  SPACE
) PUNCT
      SPACE
// SYM
// SYM
                           SPACE
/ SYM
   SPACE
/ SYM
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
. PUNCT
  SPACE
_ PROPN
      SPACE
/-- PUNCT
< X
  SPACE
. PUNCT
. PUNCT
// PUNCT
// SYM
o X
_ NOUN
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
, PUNCT
  SPACE
_ PROPN
  SPACE
_ PROPN
_ PROPN
( PUNCT
_ PROPN
/ SYM
   SPACE
/ PUNCT
/ SYM
_ PROPN
( PUNCT
_ PROPN
) PUNCT
/ SYM
/ SYM
/ SYM
< X
_ PROPN
( PUNCT
_ PROPN
/|_/ PUNCT
_ PROPN
) PUNCT
    SPACE
/___/_(_/_</_</_<_/ PUNCT
/ PUNCT
< X
_ PROPN
( PUNCT
_ PROPN
) PUNCT
_ PROPN
< X
/_/ PUNCT
( PUNCT
_ INTJ
       SPACE
UUCP PROPN
: PUNCT
     SPACE
.. PUNCT
rutgers!ur PROPN
- PUNCT
valhalla!btoy1!mrbulli PROPN
      SPACE
/| PUNCT
  SPACE
Compu$erve NOUN
: PUNCT
       SPACE
Internet NOUN
: PUNCT
       SPACE
mrbulli@btoy1.rochester.NY.US PROPN
     SPACE
|/ PROPN
    SPACE
76535,2221Newsgroup NUM
: PUNCT
sci.meddocument_id X
: PUNCT
59624From NUM
: PUNCT
sdl@linus.mitre.org PROPN
( PUNCT
Steven PROPN
D. PROPN
Litvintchouk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidIn NOUN
article NOUN
< X
1993Apr30.202808.19204@ux1.cts.eiu.edu PROPN
> X
cfaks@ux1.cts.eiu.edu NOUN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes VERB
: PUNCT
> X
But CCONJ
after ADP
you PRON
have AUX
taken VERB
antihistamines NOUN
for ADP
a DET
few ADJ
nights NOUN
, PUNCT
does AUX
n't PART
it PRON
start VERB
> X
to PART
have AUX
a DET
paradoxical ADJ
effect NOUN
? PUNCT
  SPACE
I PRON
used VERB
to PART
take VERB
one NUM
every DET
night NOUN
for ADP
> NUM
allergies NOUN
and CCONJ
could AUX
n't PART
figure VERB
out ADP
why ADV
I PRON
developed VERB
bad ADJ
insomnia NOUN
. PUNCT
  SPACE
Insomnia PROPN
is AUX
a DET
known VERB
, PUNCT
but CCONJ
relatively ADV
infrequent ADJ
, PUNCT
side NOUN
- PUNCT
effect NOUN
ofdiphenhydramine NOUN
. PUNCT
  SPACE
For ADP
most ADJ
people NOUN
, PUNCT
this DET
does AUX
not PART
occur VERB
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
most ADJ
peoplecan NOUN
build VERB
up ADP
a DET
tolerance NOUN
to ADP
an DET
antihistamine NOUN
with ADP
extended ADJ
use.(Allergy ADJ
sufferers NOUN
are AUX
often ADV
switched VERB
from ADP
one NUM
antihistamine NOUN
toanother NOUN
to PART
avoid VERB
this.)--Steven PROPN
LitvintchoukMITRE PROPN
Corporation202 PROPN
Burlington PROPN
RoadBedford PROPN
, PUNCT
MA PROPN
  SPACE
01730 NUM
- SYM
1420Fone NUM
: SYM
  SPACE
( PUNCT
617)271 NUM
- PUNCT
7753ARPA NUM
: PUNCT
  SPACE
sdl@mitre.orgUUCP X
: PUNCT
  SPACE
linus!sdlNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59625From NUM
: PUNCT
sdl@linus.mitre.org PROPN
( PUNCT
Steven PROPN
D. PROPN
Litvintchouk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Nose NOUN
PickingIn PROPN
article NOUN
< X
stephen.736228799@mont PROPN
> X
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes VERB
: PUNCT
> X
1 NUM
) PUNCT
  SPACE
Does AUX
it PRON
cause VERB
the DET
body NOUN
any DET
harm NOUN
if SCONJ
one NOUN
picks VERB
one PRON
's PART
nose NOUN
? PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
> X
might AUX
it PRON
lead VERB
to ADP
a DET
loss NOUN
of ADP
ability NOUN
to ADP
smell?It PROPN
may AUX
be AUX
a DET
good ADJ
way NOUN
to PART
catch VERB
a DET
cold NOUN
. PUNCT
  SPACE
It PRON
's AUX
easy ADJ
to PART
pick VERB
up ADP
coldviruses NOUN
on ADP
your PRON
fingers NOUN
, PUNCT
either CCONJ
from ADP
touching VERB
a DET
contaminated ADJ
surface NOUN
, PUNCT
or CCONJ
by ADP
shaking VERB
hands NOUN
with ADP
someone PRON
that PRON
has AUX
a DET
cold NOUN
. PUNCT
  SPACE
Then ADV
putting VERB
yourfingers NOUN
in ADP
your PRON
nose NOUN
will AUX
transfer VERB
the DET
viruses NOUN
to ADP
your PRON
nose.--Steven VERB
LitvintchoukMITRE PROPN
Corporation202 PROPN
Burlington PROPN
RoadBedford PROPN
, PUNCT
MA PROPN
  SPACE
01730 NUM
- SYM
1420Fone NUM
: SYM
  SPACE
( PUNCT
617)271 NUM
- PUNCT
7753ARPA NUM
: PUNCT
  SPACE
sdl@mitre.orgUUCP X
: PUNCT
  SPACE
linus!sdlNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59626From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10587@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>>Seriously PROPN
though ADV
, PUNCT
I PRON
wonder VERB
how ADV
someone PRON
with ADP
CPH PROPN
would AUX
end VERB
up ADP
getting VERB
a DET
> X
biopsy NOUN
in ADP
the DET
first ADJ
place NOUN
? PUNCT
  SPACE
My PRON
understanding NOUN
( PUNCT
and CCONJ
feel VERB
free ADJ
to PART
correct VERB
me)>is PROPN
that SCONJ
the DET
enzymes NOUN
are AUX
at ADP
worst ADJ
mildly ADV
elevated VERB
, PUNCT
with ADP
overall ADJ
normal ADJ
> NUM
hepatic ADJ
function NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
the DET
only ADJ
clue NOUN
might AUX
be AUX
a DET
history NOUN
of ADP
> X
prior ADJ
HepB NUM
infection NOUN
and CCONJ
a DET
positive ADJ
HepB PROPN
- PUNCT
sAg PROPN
. PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
indeed ADV
on ADP
a DET
> X
continuum NOUN
with ADP
CAH PROPN
, PUNCT
and CCONJ
the DET
distinction NOUN
merely ADV
one NUM
of ADP
pathology NOUN
and CCONJ
> X
prognosis NOUN
, PUNCT
but CCONJ
otherwise ADV
identical ADJ
clinical ADJ
features?>Chronic NUM
persistent ADJ
hepatitis NOUN
is AUX
usually ADV
diagnosed VERB
when ADV
someone PRON
does AUX
a DET
liverbiopsy NOUN
on ADP
a DET
patient NOUN
that PRON
has AUX
persistently ADV
elevated VERB
serum ADJ
transaminases NOUN
monthsafter VERB
a DET
bout NOUN
of ADP
acute ADJ
viral ADJ
hepatitis NOUN
, PUNCT
or CCONJ
when ADV
someone PRON
is AUX
found VERB
to PART
havepersistently ADV
elevated VERB
transaminases NOUN
on ADP
routine ADJ
screening NOUN
tests NOUN
. PUNCT
The DET
degree NOUN
ofelevation NOUN
( PUNCT
in ADP
the DET
serum ADJ
transaminases NOUN
) PUNCT
can AUX
be AUX
trivial ADJ
, PUNCT
or CCONJ
as ADV
much ADJ
as SCONJ
ten NUM
timesnormal NOUN
. PUNCT
Other ADJ
blood NOUN
chemistries NOUN
are AUX
usually ADV
normal ADJ
. PUNCT
As SCONJ
a DET
rule NOUN
, PUNCT
patients NOUN
with ADP
CPH PROPN
have AUX
no DET
clinical ADJ
signs NOUN
of ADP
liver NOUN
disease NOUN
. PUNCT
Chronic ADJ
active ADJ
hepatitis NOUN
can AUX
also ADV
be AUX
asymptomatic ADJ
or CCONJ
minimally ADV
symptomatic ADJ
, PUNCT
atleast ADV
initially ADV
, PUNCT
and CCONJ
that DET
's AUX
why ADV
it PRON
's AUX
important ADJ
to PART
tell VERB
them PRON
apart ADV
by ADP
means NOUN
ofa PROPN
biopsy PROPN
. PUNCT
The DET
patient NOUN
with ADP
CPH PROPN
only ADV
needs VERB
to PART
be AUX
reassured VERB
. PUNCT
The DET
patient ADJ
withCAH NOUN
needs VERB
to PART
be AUX
treated.======================================Howard DET
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59627From NUM
: PUNCT
sjha+@cs.cmu.edu PROPN
( PUNCT
Somesh PROPN
Jha)Subject X
: PUNCT
What PRON
is AUX
intersection NOUN
syndrome NOUN
and CCONJ
Feldene?Hi NUM
: PUNCT
I PRON
went VERB
to ADP
the DET
orthopedist NOUN
on ADP
Tuesday PROPN
. PUNCT
He PRON
diagnosed VERB
me PRON
as SCONJ
having"intersection NOUN
syndrome NOUN
" PUNCT
. PUNCT
He PRON
prescribed VERB
Feldene PROPN
for ADP
me PRON
. PUNCT
I PRON
wantto NOUN
know VERB
more ADJ
about ADP
the DET
disease NOUN
and CCONJ
the DET
drug NOUN
. PUNCT
ThanksSomeshNewsgroup VERB
: PUNCT
sci.meddocument_id X
: PUNCT
59628From NUM
: PUNCT
j.thornton@hawkesbury.uws.EDU.AU X
( PUNCT
Jason PROPN
Thornton PROPN
       SPACE
x640)Subject NOUN
: PUNCT
Cancer NOUN
of ADP
the DET
testisCould NOUN
someone PRON
give VERB
me PRON
some DET
information NOUN
on ADP
the DET
cause NOUN
, PUNCT
pathophysiology NOUN
and CCONJ
clinical ADJ
manifestations NOUN
and CCONJ
treatment NOUN
of ADP
this DET
type NOUN
of ADP
cancer NOUN
. PUNCT
Thank VERB
you PRON
in ADP
advance NOUN
, PUNCT
Jason PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59629From NUM
: PUNCT
ashwin@gatech.edu X
( PUNCT
Ashwin PROPN
Ram)Subject X
: PUNCT
How ADV
often ADV
do AUX
kids NOUN
fall VERB
sick ADJ
? PUNCT
etc X
. PUNCT
Our PRON
20-month NUM
son NOUN
has AUX
started VERB
falling VERB
sick ADJ
quite ADV
often ADV
every DET
since SCONJ
hestarted VERB
going VERB
to ADP
day NOUN
care NOUN
. PUNCT
  SPACE
He PRON
was AUX
at ADP
home NOUN
for ADP
the DET
first ADJ
year NOUN
and CCONJ
he PRON
didnot ADV
fall VERB
sick ADJ
even ADV
once ADV
. PUNCT
  SPACE
Now ADV
it PRON
seems VERB
like SCONJ
he PRON
has AUX
some DET
sort NOUN
of ADP
cold ADJ
orflu NOUN
pretty ADV
much ADV
once SCONJ
a DET
month NOUN
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
time NOUN
the DET
cold ADJ
leads VERB
to ADP
an DET
earinfection NOUN
as ADV
well ADV
, PUNCT
with ADP
the DET
result NOUN
that SCONJ
he PRON
ends VERB
up ADP
being AUX
on ADP
antibiotics3 NOUN
weeks NOUN
out SCONJ
of ADP
4 NUM
. PUNCT
  SPACE
I PRON
know VERB
kids NOUN
in ADP
day NOUN
care NOUN
fall NOUN
sick ADV
more ADV
often ADV
, PUNCT
but CCONJ
weare NOUN
beginning NOUN
to PART
wonder VERB
how ADV
often ADV
" PUNCT
more ADV
often ADV
" PUNCT
really ADV
is AUX
, PUNCT
whether SCONJ
ourson NOUN
is AUX
more ADV
susceptible ADJ
or CCONJ
has AUX
lower ADJ
immunity NOUN
than SCONJ
average ADJ
, PUNCT
what PRON
thelonger NOUN
- PUNCT
term NOUN
effects NOUN
of ADP
constantly ADV
being AUX
sick ADJ
and CCONJ
taking ADJ
antibiotics NOUN
are AUX
, PUNCT
and CCONJ
what PRON
we PRON
can AUX
do AUX
to PART
build VERB
up ADP
his PRON
resistance NOUN
. PUNCT
  SPACE
He PRON
really ADV
enjoys VERB
his PRON
daycare NOUN
and CCONJ
we PRON
think VERB
it PRON
's AUX
great ADJ
too ADV
, PUNCT
but CCONJ
we PRON
are AUX
beginning VERB
to PART
wonder NOUN
whetherwe NOUN
should AUX
think VERB
about ADP
getting VERB
a DET
nanny NOUN
. PUNCT
Are AUX
there PRON
any DET
studies NOUN
that PRON
can AUX
help VERB
answer VERB
some DET
of ADP
these DET
questions?-- NOUN
How ADV
often ADV
do AUX
kids NOUN
in ADP
their PRON
first ADJ
, PUNCT
second ADJ
and CCONJ
third ADJ
years NOUN
fall VERB
sick?How PROPN
often ADV
do AUX
they PRON
get AUX
colds NOUN
, PUNCT
flus NOUN
, PUNCT
ear NOUN
infections NOUN
? PUNCT
  SPACE
Is AUX
there PRON
any DET
data NOUN
onhome NOUN
care NOUN
vs. ADP
day NOUN
care?-- PROPN
Does AUX
being AUX
sick ADJ
" PUNCT
build VERB
immunity NOUN
" PUNCT
( PUNCT
leading VERB
to ADP
less ADJ
illness NOUN
later),does PUNCT
it PRON
make VERB
kids NOUN
" PUNCT
weaker ADJ
" PUNCT
( PUNCT
leading VERB
to ADP
more ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
or CCONJ
does AUX
itnot ADV
have AUX
any DET
long ADJ
term NOUN
effect?-- NOUN
Does AUX
taking VERB
antibiotics NOUN
on ADP
a DET
regular ADJ
basis NOUN
have AUX
any DET
negative ADJ
longterm NOUN
effects?-- PROPN
How ADV
does AUX
one PRON
tell VERB
if SCONJ
a DET
child NOUN
is AUX
more ADV
susceptible ADJ
to ADP
illness NOUN
thannormal PROPN
, PUNCT
and CCONJ
what PRON
does AUX
one PRON
do AUX
about ADP
it?-- NUM
Is AUX
there PRON
any DET
way NOUN
to PART
build VERB
immunity NOUN
and CCONJ
resistance?Any NOUN
data NOUN
, PUNCT
information NOUN
or CCONJ
advice NOUN
relating VERB
to ADP
this DET
would AUX
be AUX
muchappreciated VERB
. PUNCT
  SPACE
Thanks NOUN
a DET
lot NOUN
. PUNCT
Ashwin PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59630From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Athlete PROPN
's PART
HeartI've NOUN
read VERB
that SCONJ
exercise NOUN
makes VERB
the DET
heart NOUN
pump VERB
more ADJ
blood NOUN
at ADP
a DET
stroke NOUN
, PUNCT
andthat ADP
it PRON
also ADV
makes VERB
the DET
heart NOUN
pumb NOUN
slower ADJ
, PUNCT
in ADP
order NOUN
to PART
make VERB
up ADP
for ADP
thegreater NOUN
volume NOUN
. PUNCT
My PRON
Internist PROPN
, PUNCT
who PRON
diagnosed VERB
my PRON
AV NOUN
block NOUN
, PUNCT
slow ADJ
heart NOUN
rateand PROPN
PVC PROPN
's PART
, PUNCT
told VERB
me PRON
something PRON
different ADJ
. PUNCT
She PRON
says VERB
that SCONJ
heart NOUN
rate NOUN
isassociated VERB
with ADP
the DET
electrical ADJ
properties NOUN
of ADP
the DET
hear PROPN
muscle NOUN
, PUNCT
not PART
itssize VERB
. PUNCT
Exercise NOUN
lowers VERB
heart NOUN
rate NOUN
and CCONJ
increases VERB
stroke NOUN
volume NOUN
, PUNCT
but CCONJ
theeffects NOUN
are AUX
unrelated ADJ
except SCONJ
for ADP
their PRON
common ADJ
source NOUN
. PUNCT
The DET
AV PROPN
block NOUN
, PUNCT
sheasserts NOUN
, PUNCT
is AUX
another DET
electrical ADJ
effect NOUN
, PUNCT
which PRON
is AUX
irreversable ADJ
- PUNCT
even ADV
whenexercise NOUN
is AUX
dicontinued VERB
. PUNCT
PVC PROPN
's PART
are AUX
also ADV
common ADJ
in ADP
runners NOUN
. PUNCT
So ADV
my PRON
EKG PROPN
puts VERB
me PRON
in ADP
a DET
class NOUN
with ADP
trained VERB
athletes NOUN
and CCONJ
also ADV
with ADP
heartpatients NOUN
. PUNCT
Is AUX
n't PART
that ADV
strange ADJ
, PUNCT
though ADV
? PUNCT
Are AUX
there PRON
any DET
not PART
- PUNCT
so ADV
- PUNCT
beneficialaspects NOUN
to PART
athlete NOUN
's PART
heart NOUN
? PUNCT
Is AUX
it PRON
all DET
good?Not NOUN
worried ADJ
, PUNCT
just ADV
curious,-Larry PROPN
C. PROPN
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59631From NUM
: PUNCT
Diane PROPN
. PUNCT
Mayronne@f232.n109.z1.cobaka.com PROPN
( PUNCT
Diane PROPN
Mayronne)Subject NOUN
: PUNCT
fever NOUN
blistersCause NOUN
and CCONJ
cures NOUN
for ADP
fever NOUN
blisters NOUN
respectfully ADV
requested VERB
. PUNCT
Thanks NOUN
! PUNCT
            SPACE
:-D PROPN
iane NOUN
* PUNCT
Origin PROPN
: PUNCT
Another DET
PerManNet NUM
Kit NOUN
( PUNCT
1:109/232)Newsgroup NUM
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59632From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
How ADV
often ADV
do AUX
kids NOUN
fall VERB
sick ADJ
? PUNCT
etc X
. PUNCT
In ADP
article NOUN
< X
ASHWIN.93May2131021@leo.gatech.edu ADJ
> X
, PUNCT
ashwin@[Agatech.edu PRON
( PUNCT
Ashwin PROPN
Ram PROPN
) PUNCT
writes VERB
: PUNCT
> X
Our PRON
20-month NUM
son NOUN
has AUX
started VERB
falling VERB
sick ADJ
quite ADV
often ADV
every DET
since SCONJ
he PRON
> X
started VERB
going VERB
to ADP
day NOUN
care NOUN
. PUNCT
  SPACE
He PRON
was AUX
at ADP
home NOUN
for ADP
the DET
first ADJ
year NOUN
and CCONJ
he PRON
did AUX
> X
not PART
fall VERB
sick ADJ
even ADV
once ADV
. PUNCT
  SPACE
Now ADV
it PRON
seems VERB
like SCONJ
he PRON
has AUX
some DET
sort NOUN
of ADP
cold ADJ
or CCONJ
> X
flu NOUN
pretty ADV
much ADV
once SCONJ
a DET
month NOUN
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
time NOUN
the DET
cold ADJ
leads VERB
to ADP
an DET
ear NOUN
> X
infection NOUN
as ADV
well ADV
, PUNCT
with ADP
the DET
result NOUN
that SCONJ
he PRON
ends VERB
up ADP
being AUX
on ADP
antibiotics NOUN
> X
3 NUM
weeks NOUN
out SCONJ
of ADP
4 NUM
. PUNCT
  SPACE
I PRON
know VERB
kids NOUN
in ADP
day NOUN
care NOUN
fall NOUN
sick ADV
more ADV
often ADV
, PUNCT
but CCONJ
we PRON
> X
are AUX
beginning VERB
to PART
wonder VERB
how ADV
often ADV
" PUNCT
more ADV
often ADV
" PUNCT
really ADV
is AUX
, PUNCT
whether SCONJ
our PRON
> X
son NOUN
is AUX
more ADV
susceptible ADJ
or CCONJ
has AUX
lower ADJ
immunity NOUN
than SCONJ
average ADJ
... PUNCT
> X
Are AUX
there PRON
any DET
studies NOUN
that PRON
can AUX
help VERB
answer VERB
some DET
of ADP
these DET
questions?When PROPN
kids NOUN
stayed VERB
in ADP
the DET
home NOUN
until ADP
kindergarden PROPN
or CCONJ
1st ADJ
grade NOUN
, PUNCT
infection NOUN
incidence NOUN
was AUX
much ADV
lower ADJ
because SCONJ
exposure NOUN
was AUX
lower ADJ
. PUNCT
  SPACE
Some DET
studies NOUN
suggest VERB
that SCONJ
early ADJ
exposure NOUN
to ADP
various ADJ
infectious ADJ
diseases NOUN
is AUX
probably ADV
beneficial ADJ
because SCONJ
exposure NOUN
as SCONJ
an DET
adult NOUN
carries VERB
much ADV
more ADJ
risk NOUN
of ADP
morbitity NOUN
and CCONJ
mortality(mumps PROPN
, PUNCT
measles NOUN
. PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
> X
-- PUNCT
How ADV
often ADV
do AUX
kids NOUN
in ADP
their PRON
first ADJ
, PUNCT
second ADJ
and CCONJ
third ADJ
years NOUN
fall VERB
sick ADJ
? PUNCT
> X
How ADV
often ADV
do AUX
they PRON
get AUX
colds NOUN
, PUNCT
flus NOUN
, PUNCT
ear NOUN
infections NOUN
? PUNCT
  SPACE
Is AUX
there PRON
any DET
data NOUN
on ADP
> PROPN
home NOUN
care PROPN
vs. ADP
day NOUN
care?Daycare NOUN
will AUX
always ADV
carry VERB
a DET
higher ADJ
exposure NOUN
risk NOUN
than SCONJ
home NOUN
care NOUN
. PUNCT
> X
-- PUNCT
Does AUX
being AUX
sick ADJ
" PUNCT
build VERB
immunity NOUN
" PUNCT
( PUNCT
leading VERB
to ADP
less ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
> X
does AUX
it PRON
make VERB
kids NOUN
" PUNCT
weaker ADJ
" PUNCT
( PUNCT
leading VERB
to ADP
more ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
or CCONJ
does AUX
it PRON
> X
not PART
have AUX
any DET
long ADJ
term NOUN
effect?Exposure NOUN
to ADP
infectious ADJ
organisms NOUN
does AUX
build VERB
immunity NOUN
. PUNCT
  SPACE
But CCONJ
many ADJ
viruses NOUN
mutate VERB
and CCONJ
reexposure NOUN
to ADP
the DET
new ADJ
strain NOUN
requires VERB
another DET
immune ADJ
response(new PROPN
antibody NOUN
production NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
antibody NOUN
levels NOUN
tend VERB
to PART
decline VERB
with ADP
time NOUN
and CCONJ
re NOUN
- NOUN
innoculation NOUN
is AUX
needed VERB
to PART
keep VERB
the DET
antibody NOUN
levels NOUN
high ADJ
. PUNCT
Chronic ADJ
overstimulation NOUN
of ADP
the DET
immune ADJ
response NOUN
can AUX
lead VERB
to ADP
immunosupression NOUN
but CCONJ
this DET
is AUX
rare ADJ
and CCONJ
very ADV
unlikely ADJ
to PART
occur VERB
in ADP
children NOUN
. PUNCT
> X
-- PUNCT
Does AUX
taking VERB
antibiotics NOUN
on ADP
a DET
regular ADJ
basis NOUN
have AUX
any DET
negative ADJ
long ADJ
> X
term NOUN
effects?Yes PROPN
, PUNCT
chronic ADJ
use NOUN
of ADP
antibiotics NOUN
can AUX
have AUX
an DET
adverse ADJ
effect NOUN
on ADP
the DET
good ADJ
bacteria NOUN
that PRON
are AUX
supposed VERB
to PART
be AUX
present ADJ
in ADP
and CCONJ
on ADP
the DET
body NOUN
. PUNCT
  SPACE
Health PROPN
effects NOUN
of ADP
this DET
depletion NOUN
of ADP
the DET
good ADJ
bacteria NOUN
is AUX
a DET
very ADV
hotly ADV
debated VERB
topic NOUN
in ADP
the DET
medical ADJ
community NOUN
with ADP
most ADJ
physicians NOUN
seeming VERB
to PART
discount VERB
any DET
health NOUN
effects NOUN
of ADP
chronic ADJ
antibiotic ADJ
use NOUN
( PUNCT
a DET
view NOUN
that PRON
I PRON
do AUX
not PART
support VERB
) PUNCT
. PUNCT
> X
-- PUNCT
How ADV
does AUX
one PRON
tell VERB
if SCONJ
a DET
child NOUN
is AUX
more ADV
susceptible ADJ
to ADP
illness NOUN
than SCONJ
> X
normal ADJ
, PUNCT
and CCONJ
what PRON
does AUX
one PRON
do AUX
about ADP
it?Chronic ADJ
infection NOUN
in ADP
an DET
adult NOUN
or CCONJ
a DET
child NOUN
needs VERB
to PART
be AUX
worked VERB
up ADP
( PUNCT
in ADP
my PRON
opinion NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
most ADJ
physicians NOUN
feel VERB
that SCONJ
chronic ADJ
infection NOUN
in ADP
a DET
child NOUN
is AUX
normal ADJ
because SCONJ
of ADP
both DET
exposure NOUN
and CCONJ
lack NOUN
of ADP
prior ADJ
immunity NOUN
to ADP
many ADJ
infectious ADJ
diseases NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
share VERB
this DET
view NOUN
and CCONJ
there PRON
are AUX
some DET
physicians NOUN
who PRON
also ADV
suspect VERB
that SCONJ
diet NOUN
plays VERB
a DET
big ADJ
role NOUN
in ADP
infection NOUN
frequency NOUN
and CCONJ
severity NOUN
. PUNCT
  SPACE
Exposure NOUN
to ADP
an DET
infectious ADJ
agent NOUN
does AUX
not PART
have AUX
to PART
result VERB
in ADP
a DET
severe ADJ
infection NOUN
. PUNCT
  SPACE
A DET
strong ADJ
immune ADJ
response NOUN
can AUX
minimize VERB
the DET
length NOUN
of ADP
time NOUN
needed VERB
to PART
deal VERB
with ADP
the DET
infection NOUN
as ADV
well ADV
as SCONJ
the DET
symptoms NOUN
associated VERB
with ADP
the DET
infection NOUN
. PUNCT
> X
-- PUNCT
Is AUX
there PRON
any DET
way NOUN
to PART
build VERB
immunity NOUN
and CCONJ
resistance?There NOUN
are AUX
five NUM
major ADJ
nutrients NOUN
that PRON
are AUX
responsible ADJ
for ADP
a DET
good ADJ
strong ADJ
immune ADJ
response NOUN
to ADP
infectious ADJ
agents NOUN
. PUNCT
  SPACE
They PRON
are AUX
: PUNCT
protein NOUN
, PUNCT
vitamin NOUN
C NOUN
, PUNCT
vitamin NOUN
A NOUN
, PUNCT
iron NOUN
and CCONJ
zinc NOUN
. PUNCT
  SPACE
The DET
American ADJ
diet NOUN
is AUX
not PART
low ADJ
in ADP
protein NOUN
so ADV
this DET
is AUX
rarely ADV
a DET
problem NOUN
. PUNCT
  SPACE
But CCONJ
vitamin NOUN
A NOUN
, PUNCT
vitamin NOUN
C NOUN
, PUNCT
iron NOUN
and CCONJ
zinc NOUN
are AUX
often ADV
low ADJ
and CCONJ
this DET
lack NOUN
of ADP
an DET
adequate ADJ
pool(nutrient ADJ
reserve NOUN
) PUNCT
can AUX
impair VERB
the DET
immune ADJ
response NOUN
. PUNCT
  SPACE
Iron PROPN
is AUX
know VERB
to PART
be AUX
low ADJ
in ADP
most ADJ
kids(as PROPN
is AUX
vitamin NOUN
A PROPN
) PUNCT
. PUNCT
  SPACE
There PRON
are AUX
distinct ADJ
biochemical ADJ
tests NOUN
that PRON
can AUX
be AUX
run VERB
to PART
check VERB
the DET
status NOUN
of ADP
each DET
of ADP
these DET
nutrients NOUN
in ADP
a DET
patient NOUN
who PRON
is AUX
having VERB
a DET
problem NOUN
with ADP
chronic ADJ
severe ADJ
infection NOUN
. PUNCT
  SPACE
Serum PROPN
ferritin PROPN
for ADP
iron NOUN
status NOUN
, PUNCT
dark ADJ
adaptation NOUN
for ADP
vitamin NOUN
A DET
status NOUN
, PUNCT
red ADJ
blood NOUN
cell NOUN
zinc NOUN
for ADP
zinc NOUN
status NOUN
and CCONJ
leckocyte PROPN
ascorbate NOUN
for ADP
vitamin NOUN
C NOUN
status NOUN
. PUNCT
  SPACE
I PRON
have AUX
attempted VERB
to PART
work VERB
up ADP
posts NOUN
on ADP
these DET
five NUM
nutrients NOUN
and CCONJ
their PRON
role NOUN
in ADP
infection NOUN
for ADP
this DET
news NOUN
group NOUN
as ADV
well ADV
as SCONJ
the DET
others NOUN
that PRON
I PRON
participate VERB
in ADP
. PUNCT
  SPACE
I PRON
can AUX
e NOUN
- NOUN
mail VERB
you PRON
what PRON
I PRON
've AUX
worked VERB
up ADP
so ADV
far ADV
. PUNCT
But CCONJ
my PRON
best ADJ
advice NOUN
to ADP
you PRON
is AUX
to PART
try VERB
to PART
find VERB
a DET
physician NOUN
who PRON
recognizes VERB
the DET
critical ADJ
role NOUN
that PRON
diet NOUN
plays VERB
in ADP
the DET
human ADJ
immune ADJ
response NOUN
. PUNCT
  SPACE
You PRON
may AUX
also ADV
be AUX
able ADJ
to PART
get AUX
help NOUN
from ADP
a DET
nutritionist NOUN
. PUNCT
  SPACE
Anyone PRON
can AUX
call VERB
themselves PRON
a DET
nutritionist NOUN
so SCONJ
you PRON
have AUX
to PART
be AUX
very ADV
carefull ADJ
. PUNCT
  SPACE
You PRON
want VERB
to PART
find VERB
someone(like ADP
myself PRON
) PUNCT
who PRON
has AUX
had VERB
some DET
formal ADJ
training NOUN
and CCONJ
education NOUN
in ADP
nutrition NOUN
. PUNCT
Many ADJ
Ph.D. NOUN
programs NOUN
in ADP
the DET
U.S. PROPN
now ADV
offer VERB
degrees NOUN
in ADP
Nutrition PROPN
and CCONJ
that DET
's AUX
what PRON
you PRON
need VERB
to PART
look VERB
for ADP
. PUNCT
  SPACE
Some DET
dieticians NOUN
will AUX
also ADV
call VERB
themselves PRON
nutritionists NOUN
but CCONJ
most ADJ
dieticians NOUN
have AUX
not PART
had VERB
the DET
biochemical ADJ
training NOUN
needed VERB
to PART
run VERB
specialized ADJ
nutritional ADJ
assessment NOUN
tests NOUN
. PUNCT
  SPACE
They PRON
are AUX
very ADV
good ADJ
for ADP
getting VERB
general ADJ
dietary ADJ
advice NOUN
from ADP
however ADV
. PUNCT
> X
Any DET
data NOUN
, PUNCT
information NOUN
or CCONJ
advice NOUN
relating VERB
to ADP
this DET
would AUX
be AUX
much ADV
> X
appreciated VERB
. PUNCT
  SPACE
Thanks NOUN
a DET
lot NOUN
. PUNCT
> X
> X
Ashwin PROPN
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Graduate NOUN
degree NOUN
in ADP
Biochemistry PROPN
and CCONJ
Nutrition PROPN
from ADP
VPIand PROPN
developer NOUN
of ADP
a DET
course NOUN
on ADP
human ADJ
nutrition NOUN
for ADP
medical PROPN
studentsNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59633From NUM
: PUNCT
< X
ICGLN@ASUACAD.BITNET VERB
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"nnget NUM
93122.1300541In NUM
article NOUN
< X
C6BJyt.A1K@ssr.com NOUN
> X
, PUNCT
sdb@ssr.com X
( PUNCT
Scott PROPN
Ballantyne PROPN
) PUNCT
says:>>In PROPN
article NOUN
< X
93111.145432ICGLN@ASUACAD.BITNET NUM
> X
< X
ICGLN@ASUACAD.BITNET VERB
> X
writes:>>>Moss NOUN
is AUX
People PROPN
Against ADP
Cancer PROPN
's PART
Director PROPN
of ADP
Communications PROPN
. PUNCT
People NOUN
> X
Against ADP
Cancer NOUN
seems VERB
to PART
offer VERB
pretty ADV
questionable ADJ
information NOUN
, PUNCT
not PART
> X
exactly ADV
the DET
place NOUN
a DET
cancer NOUN
patient NOUN
should AUX
be AUX
advised VERB
to PART
turn VERB
to ADP
. PUNCT
And CCONJ
where ADV
do AUX
you PRON
advise VERB
people NOUN
to PART
turn VERB
for ADP
cancer NOUN
information NOUN
? PUNCT
Most>(maybe PROPN
all DET
) PUNCT
of ADP
the DET
infomation NOUN
in ADP
their PRON
latest ADJ
catalogue NOUN
concern NOUN
> X
treatments NOUN
that PRON
have AUX
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
against ADP
cancer NOUN
, PUNCT
and CCONJ
> X
many ADJ
of ADP
the DET
treatments NOUN
are AUX
quite ADV
dangerous ADJ
as ADV
well ADV
. PUNCT
It PRON
seems VERB
to ADP
me PRON
you PRON
've AUX
offered VERB
a DET
circular ADJ
refutation NOUN
of ADP
Moss PROPN
's PART
organization NOUN
. PUNCT
Whohas PROPN
shown VERB
the DET
information NOUN
in ADP
the DET
latest ADJ
book NOUN
of ADP
PAC PROPN
to PART
be AUX
questionable ADJ
? PUNCT
Couldit PROPN
be VERB
those DET
' PUNCT
regulatory ADJ
' PUNCT
agencies NOUN
and CCONJ
medical ADJ
industries NOUN
which PRON
Moss PROPN
is AUX
showingto PROPN
be AUX
operating VERB
with ADP
* PUNCT
major ADJ
* SYM
vested ADJ
interests NOUN
. PUNCT
Whether SCONJ
one NOUN
believes VERB
that SCONJ
thesevested ADJ
interests NOUN
are AUX
real ADJ
or CCONJ
not PART
, PUNCT
or CCONJ
whether SCONJ
or CCONJ
not PART
they PRON
actually ADV
shape VERB
medicalresearch PROPN
is AUX
a DET
seperate ADJ
argument NOUN
. PUNCT
If SCONJ
one PRON
sees VERB
a DET
possibility NOUN
, PUNCT
however ADV
, PUNCT
that SCONJ
theseinterests NOUN
exist VERB
, PUNCT
then ADV
the DET
' PUNCT
fact NOUN
' PUNCT
that SCONJ
some DET
of ADP
the DET
information NOUN
put VERB
out ADP
by ADP
PAChas PROPN
been AUX
refuted VERB
by ADP
the DET
medical ADJ
industry NOUN
does AUX
n't PART
hold VERB
much ADJ
weight NOUN
. PUNCT
As SCONJ
for ADP
the DET
ineffectiveness NOUN
of ADP
antineoplasteons NOUN
, PUNCT
the DET
fact NOUN
that SCONJ
the DET
NIH PROPN
didn'tfind VERB
them PRON
effective ADJ
does AUX
n't PART
make VERB
much ADJ
sense NOUN
here ADV
. PUNCT
Of ADV
course ADV
they PRON
did AUX
n't PART
! PUNCT
Itend VERB
to PART
have AUX
more ADJ
faith NOUN
in ADP
the DET
word NOUN
of ADP
the DET
patients NOUN
who PRON
are AUX
now ADV
alive ADJ
afterbeing NOUN
told VERB
years NOUN
ago ADV
that SCONJ
they PRON
would AUX
be AUX
dead ADJ
of ADP
cancer NOUN
soon ADV
. PUNCT
They PRON
are AUX
fightinglike ADP
hell NOUN
to PART
keep VERB
that DET
clinic NOUN
open ADJ
, PUNCT
and CCONJ
they PRON
credit VERB
his PRON
treatment NOUN
with ADP
theirsurvival NOUN
. PUNCT
Anyone PRON
who PRON
looks VERB
at ADP
the DET
NIH PROPN
's PART
record NOUN
for ADP
investigation NOUN
of ADP
' PUNCT
alterna PROPN
- PUNCT
tive PROPN
' PART
cancer NOUN
therapies NOUN
will AUX
easily ADV
see VERB
that SCONJ
they PRON
have AUX
a DET
strange ADJ
knack NOUN
for ADP
find NOUN
- PUNCT
ing VERB
relatively ADV
cheap ADJ
and CCONJ
nontoxic ADJ
therapies NOUN
dangerous ADJ
or CCONJ
useless.gnNewsgroup ADJ
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59634From NUM
: PUNCT
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco)Subject PROPN
: PUNCT
Help NOUN
. PUNCT
Info NOUN
: PUNCT
CLARITIN PROPN
( PUNCT
Allergies)My PROPN
doc NOUN
handed VERB
me PRON
10 NUM
mg PROPN
samples NOUN
of ADP
CLARITIN PROPN
( PUNCT
brand NOUN
of ADP
Ioratadine PROPN
Tabletfrom PROPN
Schering PROPN
Corp. PROPN
) PUNCT
  SPACE
I PRON
tried VERB
to PART
find VERB
it PRON
in ADP
the DET
PDR PROPN
to ADP
no DET
avail NOUN
. PUNCT
Ido NOUN
remember VERB
she PRON
mentioned VERB
this DET
drug NOUN
was AUX
relatively ADV
new ADJ
to ADP
the DET
US PROPN
butavailable ADJ
overseas ADV
for ADP
quite DET
some DET
time NOUN
. PUNCT
Looking VERB
mostly ADV
for ADP
side NOUN
- PUNCT
effect NOUN
, PUNCT
contraindications NOUN
, PUNCT
and CCONJ
mode NOUN
of ADP
action NOUN
such ADJ
that SCONJ
it PRON
differs VERB
from ADP
Seldane PROPN
and CCONJ
Hismanal PROPN
. PUNCT
Email NOUN
or CCONJ
newsgroup NOUN
is AUX
fine ADJ
. PUNCT
Thanx PROPN
in ADP
advance.-- PROPN
Steve PROPN
Giammarco/5330 PROPN
Peterson PROPN
Lane PROPN
/ SYM
Dallas PROPN
TX PROPN
75240marco@sdf.lonestar.orgloveyameanit.Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59635From NUM
: PUNCT
thomas@mvac23.UUCP X
( PUNCT
Thomas PROPN
Lapp)Subject NUM
: PUNCT
Re ADP
: PUNCT
Nose PROPN
Pickingstephen@mont.cs.missouri.edu PROPN
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes VERB
: PUNCT
> X
1 NUM
) PUNCT
  SPACE
Does AUX
it PRON
cause VERB
the DET
body NOUN
any DET
harm NOUN
if SCONJ
one NOUN
picks VERB
one PRON
's PART
nose NOUN
? PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
> X
might AUX
it PRON
lead VERB
to ADP
a DET
loss NOUN
of ADP
ability NOUN
to PART
smell VERB
? PUNCT
> X
> X
2 NUM
) PUNCT
  SPACE
Is AUX
it PRON
harmful ADJ
for ADP
one NUM
to PART
eat VERB
one PRON
's PART
nose NOUN
pickings?I've NOUN
seen VERB
children NOUN
do AUX
this DET
and CCONJ
wondered VERB
about ADP
something PRON
. PUNCT
  SPACE
If SCONJ
themucus NOUN
in ADP
one PRON
's PART
nose NOUN
collects NOUN
( PUNCT
filters NOUN
) PUNCT
particles VERB
going VERB
into ADP
theairway PROPN
, PUNCT
if SCONJ
a DET
child NOUN
then ADV
picks VERB
and CCONJ
ingests VERB
this DET
material NOUN
, PUNCT
mightit PROPN
have AUX
a DET
vaccinatory ADJ
effect NOUN
, PUNCT
since SCONJ
if SCONJ
the DET
body NOUN
ingests VERB
airbornediseases NOUN
or CCONJ
other ADJ
' PUNCT
stuff NOUN
' PUNCT
on ADP
the DET
mucus NOUN
, PUNCT
the DET
body NOUN
might AUX
generateantibodies NOUN
for ADP
this DET
small ADJ
" PUNCT
invasion"?Maybe NOUN
this DET
is AUX
why ADV
some DET
children NOUN
do AUX
n't PART
get AUX
sick ADJ
very ADV
often ADV
? PUNCT
:-) PUNCT
                         SPACE
- PUNCT
tom PROPN
-- PUNCT
internet NOUN
     SPACE
: PUNCT
mvac23!thomas@udel.edu PROPN
  SPACE
or CCONJ
  SPACE
thomas%mvac23@udel.edu PUNCT
( PUNCT
home NOUN
) PUNCT
             SPACE
: PUNCT
lapp@cdhub1.dnet.dupont.com NOUN
( PUNCT
work)OSI PROPN
          SPACE
: PUNCT
C PROPN
= SYM
US PROPN
/ SYM
A PROPN
= SYM
MCI PROPN
/ SYM
S PROPN
= SYM
LAPP PROPN
/ SYM
D NOUN
= SYM
ID=4398613uucp X
         SPACE
: PUNCT
{ PUNCT
ucbvax PROPN
, PUNCT
mcvax PROPN
, PUNCT
uunet}!udel!mvac23!thomasLocation PROPN
     SPACE
: PUNCT
Newark PROPN
, PUNCT
DE PROPN
, PUNCT
USANewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59636From NUM
: PUNCT
rob.welder@cccbbs.UUCP NOUN
( PUNCT
Rob PROPN
Welder PROPN
) PUNCT
Subject NOUN
: PUNCT
Thermoscan ADJ
ear NOUN
thermometeTo PRON
: PUNCT
ashwin@cc.gatech.edu PROPN
( PUNCT
Ashwin PROPN
Ram)AR NOUN
> X
Does AUX
the DET
" PUNCT
Thermoscan PROPN
" PUNCT
instrument NOUN
really ADV
work VERB
? PUNCT
  SPACE
It PRON
is AUX
supposed VERB
to PART
give VERB
you PRON
aABSOLUTELY!Ya NOUN
do AUX
n't PART
have AUX
to PART
do AUX
the DET
other ADJ
end!(it NUM
is AUX
accurate ADJ
- PUNCT
but CCONJ
technique NOUN
is AUX
important)cccbbs!rob.welder@uceng.uc.edu--- PROPN
. PUNCT
QMPro PROPN
1.02 NUM
41 NUM
- SYM
4771 NUM
. PUNCT
See VERB
? PUNCT
... PUNCT
It PRON
only ADV
hurts VERB
for ADP
a DET
little ADJ
while NOUN
! PUNCT
                                                                      SPACE
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59637From NUM
: PUNCT
wang@ssd.intel.com PROPN
( PUNCT
Wen PROPN
- PUNCT
Lin PROPN
Wang)Subject PROPN
: PUNCT
Re ADP
: PUNCT
How ADV
often ADV
do AUX
kids NOUN
fall VERB
sick ADJ
? PUNCT
etc X
. PUNCT
In ADP
article NOUN
< X
ASHWIN.93May2131021@leo.gatech.edu ADJ
> X
ashwin@cc.gatech.edu PROPN
( PUNCT
Ashwin PROPN
Ram PROPN
) PUNCT
writes:>Our NOUN
20-month NUM
son NOUN
has AUX
started VERB
falling VERB
sick ADJ
quite ADV
often ADV
every DET
since SCONJ
he PRON
> X
started VERB
going VERB
to ADP
day NOUN
care NOUN
. PUNCT
  SPACE
He PRON
was AUX
at ADP
home NOUN
for ADP
the DET
first ADJ
year NOUN
and CCONJ
he PRON
did AUX
> X
not PART
fall VERB
sick ADJ
even ADV
once ADV
. PUNCT
  SPACE
Now ADV
it PRON
seems VERB
like SCONJ
he PRON
has AUX
some DET
sort NOUN
of ADP
cold ADJ
or CCONJ
> X
flu NOUN
pretty ADV
much ADV
once SCONJ
a DET
month NOUN
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
time NOUN
the DET
cold ADJ
leads VERB
to ADP
an DET
ear NOUN
> X
infection NOUN
as ADV
well ADV
, PUNCT
with ADP
the DET
result NOUN
that SCONJ
he PRON
ends VERB
up ADP
being AUX
on ADP
antibiotics>3 ADJ
weeks NOUN
out SCONJ
of ADP
4 NUM
. PUNCT
  SPACE
I PRON
know VERB
kids NOUN
in ADP
day NOUN
care NOUN
fall NOUN
sick ADV
more ADV
often ADV
, PUNCT
but CCONJ
we> NOUN
... PUNCT
Sounds VERB
pretty ADV
familiar ADJ
. PUNCT
  SPACE
I PRON
posted VERB
similar ADJ
cries NOUN
about ADP
last ADJ
September PROPN
whenCaroline NOUN
just ADV
entered VERB
daycare NOUN
. PUNCT
  SPACE
She PRON
was AUX
two NUM
, PUNCT
then ADV
, PUNCT
and CCONJ
have AUX
been AUX
with ADP
continuous ADJ
colds NOUN
since SCONJ
until ADP
last ADJ
March PROPN
. PUNCT
  SPACE
As SCONJ
spring NOUN
approaches NOUN
, PUNCT
her PRON
coldsslowed VERB
down ADP
. PUNCT
  SPACE
Meanwhile ADV
we PRON
grew VERB
more ADJ
and CCONJ
more ADV
relaxed ADJ
about ADP
her PRON
colds NOUN
. PUNCT
Only ADV
once ADV
did AUX
the DET
doctor NOUN
diagnosed VERB
an DET
ear NOUN
infection NOUN
and CCONJ
only ADV
twice DET
shehad ADJ
antibiotics NOUN
. PUNCT
  SPACE
( PUNCT
The DET
other ADJ
time NOUN
was AUX
due ADJ
to ADP
sinus NOUN
infection NOUN
, PUNCT
and CCONJ
I PRON
wishedthat PRON
I PRON
did AUX
not PART
give VERB
her PRON
that DET
awful ADJ
Septra PROPN
. PUNCT
) PUNCT
> X
Are AUX
there PRON
any DET
studies NOUN
that PRON
can AUX
help VERB
answer VERB
some DET
of ADP
these DET
questions?There NOUN
are AUX
the DET
' PUNCT
net ADJ
studies NOUN
' PUNCT
-- PUNCT
that ADV
is ADV
, PUNCT
if SCONJ
you PRON
read VERB
this DET
newsgroup NOUN
often ADV
, PUNCT
there PRON
will AUX
be AUX
a DET
round NOUN
of ADP
questions NOUN
like SCONJ
this DET
every DET
month NOUN
. PUNCT
  SPACE
There PRON
mightbe ADJ
formal ADJ
studies NOUN
like SCONJ
that DET
, PUNCT
but CCONJ
bear VERB
with ADP
my PRON
not PART
so ADV
academic ADJ
experience NOUN
. PUNCT
Okay?>>-- PROPN
How ADV
often ADV
do AUX
kids NOUN
in ADP
their PRON
first ADJ
, PUNCT
second ADJ
and CCONJ
third ADJ
years NOUN
fall VERB
sick?>How NOUN
often ADV
do AUX
they PRON
get AUX
colds NOUN
, PUNCT
flus NOUN
, PUNCT
ear NOUN
infections NOUN
? PUNCT
Gee PROPN
, PUNCT
I PRON
bet VERB
50/50 NUM
you PRON
'll AUX
hear VERB
cases NOUN
in ADP
all DET
these DET
catagories NOUN
. PUNCT
> X
Is AUX
there PRON
any DET
data NOUN
on ADP
home NOUN
care NOUN
vs. ADP
day NOUN
care?I PROPN
am AUX
pretty ADV
sure ADJ
, PUNCT
an DET
insulated ADJ
child NOUN
at ADP
home NOUN
sicks NOUN
less ADV
. PUNCT
  SPACE
But CCONJ
, PUNCT
that DET
child NOUN
still ADV
will AUX
face VERB
the DET
world NOUN
one NUM
day NOUN
. PUNCT
> X
> X
-- PUNCT
Does AUX
being AUX
sick ADJ
" PUNCT
build VERB
immunity NOUN
" PUNCT
( PUNCT
leading VERB
to ADP
less ADJ
illness NOUN
later),That PROPN
's AUX
what PRON
I PRON
believe VERB
and CCONJ
comfort VERB
myself PRON
with ADP
. PUNCT
  SPACE
Caroline PROPN
will AUX
get AUX
moreand NOUN
more ADJ
colds NOUN
for ADP
sure ADJ
before ADP
she PRON
learned VERB
not PART
to PART
stick VERB
her PRON
hand NOUN
in ADP
other ADJ
kid NOUN
's PART
mouth NOUN
nor CCONJ
let VERB
other ADJ
kids NOUN
do AUX
the DET
same ADJ
. PUNCT
  SPACE
Cold ADJ
virus NOUN
mutate NOUN
easily ADV
. PUNCT
However ADV
, PUNCT
I PRON
hope VERB
that SCONJ
her PRON
immune ADJ
system NOUN
will AUX
be AUX
stronger ADJ
to PART
fight VERB
thesediseases NOUN
, PUNCT
so ADV
she PRON
would AUX
be AUX
less ADV
severely ADV
affected VERB
. PUNCT
  SPACE
Everytime ADV
she PRON
has AUX
a DET
cold NOUN
, PUNCT
we PRON
make VERB
sure ADJ
she PRON
blow VERB
her PRON
nose NOUN
frequently ADV
and CCONJ
give VERB
her PRON
Dorcol PROPN
or CCONJ
Dimetapp PROPN
at ADP
night NOUN
so SCONJ
she PRON
can AUX
have AUX
good ADJ
rest NOUN
( PUNCT
thanks NOUN
to ADP
some DET
suggestions NOUN
from ADP
the DET
net).That NOUN
's AUX
about ADP
all DET
the DET
care NOUN
she PRON
needs VERB
from ADP
us PRON
. PUNCT
  SPACE
I PRON
try VERB
very ADV
hard ADV
to PART
keep VERB
heroff NOUN
antibiotics NOUN
. PUNCT
  SPACE
Twice ADV
her PRON
ped VERB
. PUNCT
gave VERB
me PRON
choice NOUN
to PART
decide VERB
whether SCONJ
she PRON
wouldhave VERB
antibiotics NOUN
. PUNCT
  SPACE
I PRON
waited VERB
just ADV
long ADV
enough ADV
( PUNCT
3 NUM
- SYM
4 NUM
days NOUN
) PUNCT
to PART
see VERB
that DET
shefought NOUN
the DET
illness NOUN
off ADP
. PUNCT
  SPACE
I PRON
do AUX
understand VERB
that SCONJ
you PRON
do AUX
n't PART
have AUX
much ADJ
choice NOUN
ifthe NOUN
child NOUN
is AUX
in ADP
pain NOUN
and/or CCONJ
high ADJ
fever NOUN
. PUNCT
> X
does AUX
it PRON
make VERB
kids NOUN
" PUNCT
weaker ADJ
" PUNCT
( PUNCT
leading VERB
to ADP
more ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
or CCONJ
does AUX
it PRON
> X
not PART
have AUX
any DET
long ADJ
term NOUN
effect?If PUNCT
the DET
child NOUN
does AUX
n't PART
rely VERB
on ADP
antibiotics NOUN
to PART
fight VERB
off ADP
the DET
sickness ADJ
everytime NOUN
, PUNCT
then ADV
the DET
child NOUN
should AUX
be AUX
stronger.>>-- X
Does AUX
taking VERB
antibiotics NOUN
on ADP
a DET
regular ADJ
basis NOUN
have AUX
any DET
negative ADJ
long ADJ
> ADJ
term NOUN
effects NOUN
? PUNCT
> X
I PRON
'll AUX
leave VERB
this DET
to ADP
expert.>-- DET
How ADV
does AUX
one PRON
tell VERB
if SCONJ
a DET
child NOUN
is AUX
more ADV
susceptible ADJ
to ADP
illness NOUN
than SCONJ
> X
normal ADJ
, PUNCT
and CCONJ
what PRON
does AUX
one NUM
do AUX
about ADP
it?>If PROPN
your PRON
child NOUN
just ADV
entered VERB
daycare NOUN
, PUNCT
I PRON
'm AUX
pretty ADV
sure ADJ
the DET
first ADJ
6 NUM
months NOUN
will AUX
bethe VERB
hardest ADV
. PUNCT
  SPACE
( PUNCT
Then ADV
, PUNCT
you PRON
get VERB
more ADV
used ADJ
to ADP
it PRON
. PUNCT
  SPACE
Boy INTJ
, PUNCT
do AUX
I PRON
hate VERB
to PART
see VERB
me PRON
typingthis DET
sentence NOUN
. PUNCT
  SPACE
I PRON
recall VERB
when ADV
I PRON
read VERB
something PRON
like SCONJ
this DET
last ADJ
September PROPN
, PUNCT
I PRON
said VERB
to ADP
myself PRON
, PUNCT
' PUNCT
oh INTJ
, PUNCT
sure INTJ
. PUNCT
' PUNCT
  SPACE
But CCONJ
, PUNCT
I PRON
do AUX
get AUX
used ADJ
to ADP
it PRON
, PUNCT
now ADV
. PUNCT
) PUNCT
  SPACE
However ADV
, PUNCT
I PRON
do AUX
hear VERB
people NOUN
say VERB
that SCONJ
it PRON
does AUX
get AUX
better ADJ
after ADP
a DET
year NOUN
or CCONJ
two NUM
. PUNCT
  SPACE
I PRON
am AUX
looking VERB
forward ADV
to ADP
a DET
healthier NOUN
next ADJ
winter NOUN
. PUNCT
  SPACE
As SCONJ
it PRON
gets VERB
warmer ADJ
, PUNCT
I PRON
hope VERB
you PRON
do AUX
get AUX
some DET
break NOUN
soon.>-- NUM
Is AUX
there PRON
any DET
way NOUN
to PART
build VERB
immunity NOUN
and CCONJ
resistance?>Eat X
well INTJ
, PUNCT
sleep VERB
well ADV
. PUNCT
  SPACE
Try VERB
not PART
to PART
use VERB
antibiotics NOUN
if SCONJ
not PART
absolutely ADV
necessary ADJ
. PUNCT
Good ADJ
luck NOUN
. PUNCT
Wen PROPN
- PUNCT
lin-- ADJ
Newsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59638Subject NUM
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?From PROPN
: PUNCT
habersch@husc8.harvard.edu NOUN
( PUNCT
Oren PROPN
Haber-Schaim)jlecher@pbs.org PROPN
writes:>In PROPN
article NOUN
< X
1rmn0c$83v@morrow.stanford.edu PROPN
> X
, PUNCT
mou@nova1.stanford.edu PROPN
( PUNCT
Alex PROPN
Mou PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Hi INTJ
all DET
, PUNCT
> X
> X
> X
> X
My PRON
skin NOUN
is AUX
very ADV
dry ADJ
in ADP
general ADJ
. PUNCT
But CCONJ
the DET
most ADV
serious ADJ
part NOUN
is AUX
located VERB
> X
> X
from ADP
knees NOUN
down ADV
. PUNCT
The DET
skin NOUN
there PRON
looks VERB
like SCONJ
segmented VERB
. PUNCT
The DET
segmentation NOUN
> X
> X
actually ADV
happens VERB
beneath ADP
the DET
skin NOUN
. PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
> X
> X
cure NOUN
for ADP
this DET
. PUNCT
> X
> X
> X
As SCONJ
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
just ADV
saw VERB
a DET
dermatologist NOUN
the DET
other ADJ
day NOUN
, PUNCT
and CCONJ
while SCONJ
I PRON
> X
was AUX
there ADV
, PUNCT
I PRON
asked VERB
him PRON
about ADP
dry ADJ
skin NOUN
. PUNCT
I PRON
'd AUX
been AUX
spending VERB
a DET
small ADJ
fortune NOUN
> X
on ADP
various ADJ
creams NOUN
, PUNCT
lotions NOUN
, PUNCT
and CCONJ
other ADJ
dry ADJ
skin NOUN
treatments.>He PUNCT
said VERB
all DET
I PRON
needed VERB
was AUX
a DET
large ADJ
jar NOUN
of ADP
vaseline NOUN
. PUNCT
Soak VERB
in ADP
a DET
lukewarm ADJ
tub NOUN
> NOUN
of ADP
water NOUN
for ADP
10 NUM
minutes NOUN
( PUNCT
ONLY ADV
10 NUM
minutes NOUN
! PUNCT
) PUNCT
then ADV
massage VERB
in ADP
the DET
vaseline,>to NOUN
trap NOUN
the DET
moisture NOUN
in ADP
. PUNCT
That DET
is AUX
the DET
standard ADJ
advice NOUN
in ADP
dermatology NOUN
texts NOUN
. PUNCT
The DET
soak NOUN
part NOUN
greatly ADV
increases VERB
the DET
inconvenience NOUN
. PUNCT
  SPACE
Do AUX
n't PART
bother VERB
unlessit NOUN
does AUX
n't PART
work VERB
otherwise.>The ADP
hard ADJ
part NOUN
will AUX
be AUX
finding VERB
the DET
time NOUN
to PART
rub VERB
in ADP
the DET
> X
vaseline NOUN
properly ADV
. PUNCT
Exactly ADV
, PUNCT
but CCONJ
it PRON
adds VERB
to ADP
the DET
" PUNCT
ritual ADJ
" PUNCT
aspect NOUN
, PUNCT
which PRON
is AUX
important ADJ
forus ADJ
suggestible ADJ
patients NOUN
. PUNCT
  SPACE
( PUNCT
Posters PROPN
, PUNCT
do AUX
n't PART
bother VERB
to PART
repeat VERB
the DET
rationale NOUN
for ADP
the DET
soak.)>If PROPN
it PRON
's AUX
not PART
done VERB
right ADV
, PUNCT
you PRON
remain VERB
greasy NOUN
and CCONJ
stickGreasy NOUN
no ADV
matter ADV
what PRON
. PUNCT
Vaseline PROPN
( PUNCT
generically ADV
, PUNCT
petrolatum PROPN
) PUNCT
is AUX
famous ADJ
for ADP
that DET
. PUNCT
  SPACE
One NUM
text NOUN
states NOUN
that SCONJ
the DET
more ADJ
greasy NOUN
a DET
dry ADJ
- PUNCT
skincream NOUN
is AUX
, PUNCT
the DET
more ADV
effective ADJ
. PUNCT
  SPACE
> X
Try VERB
it PRON
. PUNCT
It PRON
's AUX
got VERB
to PART
be AUX
cheaper ADJ
then ADV
spending VERB
$ SYM
30 NUM
for ADP
8 NUM
oz PROPN
. PUNCT
of ADP
' PUNCT
natural'>lotion NOUN
. PUNCT
Try VERB
USP PROPN
lanolin NOUN
, PUNCT
at ADP
least ADJ
for ADP
maintenance NOUN
( PUNCT
preventive ADJ
) PUNCT
therapy NOUN
. PUNCT
  SPACE
USPlanolin PROPN
is AUX
natural ADJ
and CCONJ
much ADV
less ADJ
greasy NOUN
AND CCONJ
cheap ADJ
( PUNCT
do AUX
n't PART
buy VERB
the DET
moreexpensive ADJ
perfumed ADJ
lanolin NOUN
mixture NOUN
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
've AUX
commented VERB
before ADV
, PUNCT
petrolatumis VERB
a DET
poorly ADV
characterized ADJ
mixture NOUN
of ADP
hydrocarbons NOUN
which PRON
are AUX
not PART
found VERB
inbiological ADJ
systems NOUN
( PUNCT
that DET
is AUX
not PART
inherently ADV
bad ADJ
, PUNCT
but CCONJ
smell VERB
it PRON
up ADP
close ADV
, PUNCT
even ADV
on ADP
your PRON
hand NOUN
) PUNCT
, PUNCT
are AUX
partially ADV
absorbed VERB
into ADP
the DET
body NOUN
and CCONJ
remain VERB
therefor ADJ
months NOUN
or CCONJ
more ADJ
, PUNCT
and CCONJ
have AUX
associations NOUN
with ADP
cancer NOUN
. PUNCT
  SPACE
Do AUX
n't PART
panic VERB
, PUNCT
butalso ADV
do AUX
n't PART
believe VERB
it PRON
's AUX
God PROPN
's PART
gift NOUN
to ADP
the DET
human ADJ
skin NOUN
. PUNCT
Oren PROPN
Haber PROPN
- PUNCT
SchaimNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59639From NUM
: PUNCT
antonio@qualcom.qualcomm.com X
( PUNCT
Franklin PROPN
Antonio)Subject NUM
: PUNCT
Re ADP
: PUNCT
Thermoscan ADJ
ear NOUN
thermometerIn NUM
article NOUN
< X
ASHWIN.93May1225032@leo.gatech.edu NOUN
> X
ashwin@cc.gatech.edu PROPN
( PUNCT
Ashwin PROPN
Ram PROPN
) PUNCT
writes:>Does VERB
the DET
" PUNCT
Thermoscan PROPN
" PUNCT
instrument NOUN
really ADV
work VERB
? PUNCT
  SPACE
It PRON
is AUX
supposed VERB
to PART
give VERB
you PRON
a DET
> X
fast ADJ
and CCONJ
accurate ADJ
temperature NOUN
reading VERB
in ADP
the DET
ear NOUN
. PUNCT
  SPACE
How ADV
far ADV
in ADP
the DET
ear NOUN
does AUX
> X
one PRON
have AUX
to PART
insert VERB
the DET
instrument NOUN
? PUNCT
  SPACE
Is AUX
it PRON
worth ADJ
the DET
$ SYM
100 NUM
it PRON
is AUX
currently ADV
> X
selling NOUN
for?No NOUN
, PUNCT
they PRON
do AUX
not PART
work VERB
well ADV
. PUNCT
  SPACE
My PRON
doctor NOUN
started VERB
using VERB
one NUM
recently ADV
, PUNCT
and CCONJ
Ithought PROPN
the DET
concept NOUN
was AUX
so ADV
amazing ADJ
that SCONJ
I PRON
bought VERB
one NUM
too ADV
. PUNCT
  SPACE
The DET
thing NOUN
works VERB
by ADP
reading VERB
the DET
infrared ADJ
emissions NOUN
from ADP
the DET
ear NOUN
drum NOUN
. PUNCT
The DET
ear NOUN
drum NOUN
is AUX
hotter ADJ
than SCONJ
the DET
ear PROPN
canal NOUN
walls NOUN
, PUNCT
so ADV
you PRON
have AUX
to PART
pointthe VERB
thing NOUN
very ADV
carefully ADV
. PUNCT
  SPACE
This DET
means VERB
tugging VERB
on ADP
the DET
top NOUN
of ADP
the DET
earto NOUN
straighten VERB
out ADP
the DET
ear NOUN
canal NOUN
, PUNCT
then ADV
inserting VERB
the DET
thing NOUN
snugly ADV
, PUNCT
thenpushing VERB
a DET
button NOUN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
there PRON
are AUX
many ADJ
things NOUN
that PRON
can AUX
go VERB
wrong ADJ
. PUNCT
It PRON
is AUX
almost ADV
impossible ADJ
to PART
aim VERB
the DET
thing NOUN
correctly ADV
when ADV
you PRON
do AUX
it PRON
on ADP
yourself PRON
. PUNCT
  SPACE
I PRON
get VERB
readings NOUN
which PRON
differ VERB
from ADP
each DET
other ADJ
by ADP
up ADP
to PART
2 NUM
degrees NOUN
, PUNCT
and CCONJ
may AUX
differ VERB
from ADP
an DET
oral ADJ
thermometer NOUN
by ADP
up ADP
to PART
2 NUM
degrees NOUN
. PUNCT
  SPACE
I PRON
talked VERB
to ADP
one NUM
of ADP
the DET
nurses NOUN
in ADP
my PRON
doctor NOUN
's PART
office NOUN
recently ADV
about ADP
this DET
, PUNCT
and CCONJ
she PRON
said VERB
she PRON
did AUX
n't PART
like VERB
them PRON
either ADV
, PUNCT
for ADP
same ADJ
reasons NOUN
. PUNCT
  SPACE
She PRON
did AUX
giveme VERB
some DET
instruction NOUN
on ADP
how ADV
to ADP
tug NOUN
on ADP
my PRON
ear NOUN
, PUNCT
and CCONJ
what PRON
correct ADJ
insertionfeels NOUN
like VERB
, PUNCT
but CCONJ
she PRON
said VERB
she PRON
thought VERB
it PRON
was AUX
impossible ADJ
to PART
do AUX
correctlyon NOUN
one NOUN
's PART
self NOUN
. PUNCT
  SPACE
She PRON
also ADV
said VERB
that SCONJ
she PRON
and CCONJ
other ADJ
nurses NOUN
had AUX
complained VERB
tothe DET
company NOUN
about ADP
inaccurate ADJ
readings NOUN
, PUNCT
and CCONJ
that SCONJ
someone PRON
from ADP
the DET
companyhad NOUN
told VERB
them PRON
to PART
take VERB
great ADJ
care NOUN
to PART
clean VERB
the DET
infrared ADJ
window NOUN
at ADP
the DET
endof PROPN
the DET
probe NOUN
with ADP
alcohol NOUN
from ADP
time NOUN
to ADP
time NOUN
. PUNCT
  SPACE
She PRON
demonstrated VERB
this DET
priorto NOUN
reading VERB
my PRON
temperature NOUN
, PUNCT
and CCONJ
managed VERB
to PART
get AUX
a DET
reading NOUN
within ADP
0.5 NUM
degreeof NOUN
the DET
oral ADJ
temperature NOUN
I PRON
took VERB
at ADP
home NOUN
before ADP
driving VERB
to ADP
the DET
Dr PROPN
's PART
office NOUN
. PUNCT
I PRON
have AUX
also ADV
noticed VERB
tha NOUN
some DET
nurses NOUN
click VERB
the DET
button NOUN
, PUNCT
then ADV
remove VERB
theprobe PROPN
immediately ADV
. PUNCT
  SPACE
This DET
causes VERB
wrong ADJ
readings NOUN
. PUNCT
  SPACE
In ADP
my PRON
experience NOUN
, PUNCT
youhave VERB
to PART
leave VERB
the DET
probe NOUN
in ADP
a DET
good ADJ
1 NUM
to ADP
2 NUM
seconds NOUN
after ADP
clicking VERB
the DET
buttonto NOUN
get VERB
a DET
good ADJ
measurement NOUN
. PUNCT
  SPACE
The DET
nurse NOUN
I PRON
talked VERB
with ADP
agreed VERB
. PUNCT
  SPACE
I PRON
suspectthat ADP
many ADJ
people NOUN
do AUX
n't PART
realize VERB
this DET
, PUNCT
and CCONJ
therefore ADV
get AUX
bad ADJ
readings NOUN
foryet ADP
another DET
reason NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
's AUX
a DET
great ADJ
idea NOUN
. PUNCT
  SPACE
It PRON
may AUX
work VERB
for ADP
some DET
folks NOUN
, PUNCT
but CCONJ
I PRON
believeit VERB
does AUX
n't PART
work VERB
well ADV
for ADP
a DET
person NOUN
who PRON
wants VERB
to PART
take VERB
his PRON
own ADJ
temperature NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59640From NUM
: PUNCT
Renee@cup.portal.com X
( PUNCT
Renee PROPN
Linda PROPN
Roberts)Subject VERB
: PUNCT
Muscle NOUN
spasms NOUN
post ADJ
- ADJ
surgicallyI PROPN
had AUX
ankle NOUN
reconstruction NOUN
( PUNCT
grafting VERB
the DET
extensor NOUN
digitorumlongus NOUN
to ADP
the DET
lateral ADJ
side NOUN
of ADP
the DET
ankle NOUN
, PUNCT
along ADP
with ADP
a DET
videoarthroscopy NOUN
of ADP
the DET
ankle NOUN
( PUNCT
interesting ADJ
to PART
watch VERB
, PUNCT
to PART
say VERB
theleast ADV
) PUNCT
. PUNCT
Since SCONJ
then ADV
, PUNCT
I PRON
have AUX
had VERB
periodic ADJ
muscle NOUN
spasms NOUN
( PUNCT
notcramping VERB
, PUNCT
but CCONJ
twitching VERB
that DET
is AUX
very ADV
fast ADJ
) PUNCT
in ADP
some DET
of ADP
themuscle NOUN
groups NOUN
along ADP
the DET
lateral ADJ
side NOUN
, PUNCT
and CCONJ
along ADP
the DET
top ADJ
ofmy PROPN
foot NOUN
. PUNCT
TX PROPN
with ADP
quinine NOUN
sulfate NOUN
produced VERB
ringing VERB
in ADP
my PRON
ears NOUN
, PUNCT
but CCONJ
didhelp NOUN
with ADP
the DET
spasms NOUN
. PUNCT
I PRON
am AUX
on ADP
flexeril PROPN
now ADV
, PUNCT
but CCONJ
no DET
discernable ADJ
help NOUN
with ADP
the DET
spasms NOUN
. PUNCT
Any DET
ideas?One ADJ
thing NOUN
- PUNCT
I PRON
am AUX
in ADP
a DET
short ADJ
leg NOUN
cast NOUN
, PUNCT
so SCONJ
heat NOUN
is AUX
not PART
the DET
answer NOUN
. PUNCT
Renee PROPN
RobertsNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59641From NUM
: PUNCT
bf455@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Bonita PROPN
Kale)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
a DET
previous ADJ
article NOUN
, PUNCT
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
says VERB
: PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes,>by NOUN
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'd NOUN
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
I PRON
've AUX
had VERB
three NUM
children NOUN
and CCONJ
the DET
pain NOUN
was AUX
different ADJ
in ADP
degree NOUN
for ADP
each DET
. PUNCT
  SPACE
Ithink VERB
it PRON
just ADV
depends VERB
. PUNCT
  SPACE
I PRON
was AUX
impressed VERB
by ADP
how ADV
awful ADJ
a DET
kidney NOUN
stone NOUN
seemedto PROPN
be AUX
, PUNCT
when ADV
I PRON
saw VERB
a DET
relative NOUN
with ADP
one NUM
. PUNCT
  SPACE
I PRON
bet VERB
they PRON
depend VERB
, PUNCT
too ADV
-- PUNCT
some DET
areprobably ADV
worse ADJ
than SCONJ
others NOUN
. PUNCT
Pain NOUN
-- PUNCT
yucch PRON
. PUNCT
Bonita PROPN
KaleNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59642From NUM
: PUNCT
bf455@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Bonita PROPN
Kale)Subject PROPN
: PUNCT
arthritis NOUN
and CCONJ
diabetesI PROPN
have AUX
osteoarthritis NOUN
, PUNCT
and CCONJ
my PRON
huband NOUN
has AUX
just ADV
been AUX
diagnosed VERB
with ADP
diabetes(type NOUN
II PROPN
, PUNCT
I PRON
guess VERB
-- PUNCT
no DET
insulin NOUN
) PUNCT
. PUNCT
I PRON
've AUX
been AUX
trying VERB
to PART
read VERB
up ADP
on ADP
these DET
two NUM
conditions NOUN
, PUNCT
and CCONJ
what PRON
reallysurprises VERB
me PRON
is AUX
how ADV
few ADJ
experiments NOUN
have AUX
been AUX
done VERB
and CCONJ
how ADV
little ADJ
is AUX
known VERB
. PUNCT
Losing VERB
weight NOUN
appears VERB
to PART
be AUX
imperative ADJ
for ADP
diabetes NOUN
and CCONJ
advisable ADJ
forarthritis NOUN
( PUNCT
at ADP
least ADJ
, PUNCT
for ADP
-women- PUNCT
with ADP
arthritis NOUN
) PUNCT
, PUNCT
but CCONJ
, PUNCT
of ADP
course NOUN
, PUNCT
the DET
veryconditions NOUN
that PRON
make VERB
weight NOUN
loss NOUN
advisable ADJ
are AUX
part NOUN
of ADP
the DET
reason NOUN
for ADP
theweight NOUN
gain NOUN
. PUNCT
For ADP
myself PRON
, PUNCT
I PRON
'm AUX
almost ADV
afraid ADJ
to PART
lose VERB
weight NOUN
, PUNCT
because SCONJ
no DET
matter ADV
how ADV
gentleand NOUN
sensible VERB
a DET
diet NOUN
I PRON
use VERB
( PUNCT
the DET
last ADJ
one NOUN
was AUX
1800 NUM
- SYM
2000 NUM
calories NOUN
, PUNCT
in ADP
abouteight ADJ
small ADJ
meals NOUN
) PUNCT
, PUNCT
the DET
weight NOUN
wo AUX
n't PART
go VERB
off ADP
gradually ADV
and CCONJ
stay VERB
off ADP
. PUNCT
Instead ADV
, PUNCT
it PRON
drops VERB
off ADP
precipitously ADV
, PUNCT
and CCONJ
then ADV
comes VERB
back ADV
on ADV
with ADP
muchinterest NOUN
, PUNCT
like SCONJ
bread NOUN
on ADP
the DET
waters NOUN
. PUNCT
With ADP
this DET
experience NOUN
, PUNCT
it PRON
's AUX
hard ADJ
to PART
be AUX
encouraging ADJ
to ADP
my PRON
husband NOUN
. PUNCT
  SPACE
All DET
I PRON
cansuggest VERB
is AUX
to PART
make VERB
it PRON
as ADV
gradual ADJ
as SCONJ
possible ADJ
. PUNCT
Meanwhile ADV
, PUNCT
some DET
experts NOUN
recommend VERB
no DET
sugar NOUN
, PUNCT
others NOUN
, PUNCT
no DET
fat NOUN
, PUNCT
others NOUN
, PUNCT
just ADV
abalanced VERB
diet NOUN
. PUNCT
  SPACE
It PRON
's AUX
almost ADV
impossible ADJ
to PART
tell VERB
from ADP
their PRON
writings NOUN
-which NOUN
- PUNCT
parts NOUN
of ADP
their PRON
recommendations NOUN
are AUX
supposed VERB
to PART
help VERB
the DET
condition NOUN
, PUNCT
andwhich PROPN
are AUX
merely ADV
ideas NOUN
the DET
expert NOUN
thinks VERB
are AUX
nifty ADJ
. PUNCT
Is AUX
it PRON
my PRON
imagination NOUN
, PUNCT
or CCONJ
are AUX
these DET
very ADV
old ADJ
conditions NOUN
very ADV
poorlyunderstood ADJ
? PUNCT
  SPACE
Is AUX
it PRON
just ADV
that SCONJ
I PRON
'm AUX
used VERB
to ADP
pediatrician ADJ
- PUNCT
talk NOUN
( PUNCT
" PUNCT
It PRON
's AUX
strep;give VERB
him PRON
this DET
and CCONJ
he PRON
'll AUX
get AUX
well ADJ
. PUNCT
" PUNCT
) PUNCT
and CCONJ
so ADV
my PRON
expectations NOUN
are AUX
too ADV
high ADJ
? PUNCT
Bonita PROPN
KaleNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59643From NUM
: PUNCT
dkibbe@med.unc.edu NOUN
( PUNCT
David PROPN
C. PROPN
Kibbe)Subject PROPN
: PUNCT
quality NOUN
managementNewsgroup NOUN
: PUNCT
sci.meddocument_id NOUN
: PUNCT
59644From NUM
: PUNCT
disraeli@leland NOUN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Jamie PROPN
Lara PROPN
Bronstein)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Bacteria NOUN
invasion NOUN
and CCONJ
swimming NOUN
poolsI PROPN
have AUX
been AUX
struck VERB
down ADP
this DET
past ADJ
week NOUN
by ADP
a DET
stomach NOUN
bug NOUN
and CCONJ
feverwhich PROPN
went VERB
away ADV
quickly ADV
when ADV
treated VERB
with ADP
an DET
antibiotic NOUN
. PUNCT
Thepharmacist PROPN
told VERB
me PRON
the DET
antibiotic ADJ
is AUX
effective ADJ
against ADP
a DET
widevariety NOUN
of ADP
" PUNCT
gram NOUN
- PUNCT
negative ADJ
bacteria NOUN
. PUNCT
" PUNCT
I PRON
was AUX
wondering VERB
where ADV
Imight PROPN
have AUX
acquired VERB
such DET
a DET
bacteria NOUN
. PUNCT
Could AUX
they PRON
hang VERB
out ADP
in ADP
swimming NOUN
- PUNCT
pool NOUN
water NOUN
, PUNCT
or CCONJ
would AUX
the DET
chlorine NOUN
kill VERB
them PRON
? PUNCT
Feeling VERB
better ADJ
, PUNCT
I PRON
amJ. VERB
Bronsteindisraeli@leland.stanford.eduNewsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59645From NUM
: PUNCT
matthews@Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosBULLSHIT NOUN
! PUNCT
! PUNCT
! PUNCT
Newsgroup NOUN
: PUNCT
sci.meddocument_id X
: PUNCT
59646From NUM
: PUNCT
V5113E@VM.TEMPLE.EDU PROPN
( PUNCT
James PROPN
Arbuckle)Subject NUM
: PUNCT
Drop VERB
your PRON
drawers NOUN
and CCONJ
the DET
doctor NOUN
will AUX
see VERB
youOrganization PROPN
: PUNCT
Temple PROPN
UniversityX PROPN
- PUNCT
Newsreader PROPN
: PUNCT
NNR PROPN
/ SYM
VM PROPN
S_1.3.2Last NOUN
week NOUN
I PRON
went VERB
to PART
see VERB
a DET
gastroenterologist NOUN
. PUNCT
I PRON
had AUX
never ADV
met VERB
thisdoctor NOUN
before ADV
, PUNCT
and CCONJ
she PRON
did AUX
not PART
know VERB
what PRON
I PRON
was AUX
there ADV
for ADP
. PUNCT
As ADV
soon ADV
as SCONJ
Iarrived PROPN
, PUNCT
somebody PRON
showed VERB
me PRON
to ADP
an DET
examining VERB
room NOUN
and CCONJ
handed VERB
me PRON
a DET
gown NOUN
. PUNCT
They PRON
told VERB
me PRON
to PART
undress VERB
( PUNCT
from ADP
the DET
waist NOUN
down ADP
, PUNCT
to PART
be AUX
exact ADJ
) PUNCT
and CCONJ
wait VERB
for ADP
thedoctor NOUN
. PUNCT
Is AUX
this DET
the DET
usual ADJ
drill NOUN
when ADV
you PRON
go VERB
to ADP
a DET
doctor NOUN
for ADP
the DET
firsttime NOUN
? PUNCT
I PRON
do AUX
n't PART
have AUX
much ADJ
experience NOUN
going VERB
to ADP
doctors NOUN
( PUNCT
knock VERB
on ADP
wood NOUN
) PUNCT
, PUNCT
buton PROPN
the DET
couple NOUN
of ADP
occasions NOUN
when ADV
I PRON
've AUX
gone VERB
to ADP
a DET
new ADJ
doctor NOUN
, PUNCT
I PRON
met VERB
himwith NOUN
my PRON
clothes NOUN
on ADP
. PUNCT
First ADV
, PUNCT
he PRON
introduced VERB
himself PRON
, PUNCT
asked VERB
what PRON
I PRON
was AUX
therefor ADV
and CCONJ
took VERB
a DET
history NOUN
, PUNCT
all ADV
before ADP
I PRON
undressed VERB
. PUNCT
Are AUX
patients NOUN
usually ADV
expected VERB
to PART
get AUX
naked ADJ
before ADP
meeting VERB
a DET
doctorfor NOUN
the DET
first ADJ
time NOUN
? PUNCT
Personally ADV
, PUNCT
I PRON
'd AUX
prefer VERB
to PART
meet VERB
the DET
doctor NOUN
onsomething VERB
remotely ADV
resembling VERB
a DET
condition NOUN
of ADP
parity NOUN
and CCONJ
to PART
establish VERB
anidentity NOUN
as SCONJ
a DET
person NOUN
who PRON
wears VERB
clothes NOUN
before ADP
dropping VERB
my PRON
drawers NOUN
. PUNCT
Ifnothing VERB
else ADV
, PUNCT
it PRON
minimizes VERB
the DET
time NOUN
that PRON
I PRON
have AUX
to PART
spend VERB
in ADP
the DET
selfconscious ADJ
, PUNCT
ill ADJ
at ADP
ease NOUN
and CCONJ
vulnerable ADJ
condition NOUN
of ADP
a DET
person NOUN
with ADP
a DET
barebottom ADJ
talking VERB
to ADP
somebody PRON
who PRON
is AUX
fully ADV
clothed VERB
. PUNCT
Does AUX
anybody PRON
besides SCONJ
me PRON
regard VERB
this DET
get AUX
- PUNCT
naked ADJ
- PUNCT
first ADJ
- PUNCT
and CCONJ
- PUNCT
then ADV
- PUNCT
we PRON
- PUNCT
can AUX
- PUNCT
talkattitude NOUN
as SCONJ
insensitive ADJ
? PUNCT
Also ADV
, PUNCT
is AUX
it PRON
unusual ADJ
? PUNCT
  SPACE
James PROPN
Arbuckle PROPN
                          SPACE
Email NOUN
: PUNCT
  SPACE
v5113e@vm.temple.eduNewsgroup PROPN
: PUNCT
sci.meddocument_id X
: PUNCT
59648From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10600@blue.cis.pitt.edu NUM
> X
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R PROPN
Doyle PROPN
) PUNCT
writes::Chronic ADJ
persistent ADJ
hepatitis NOUN
is AUX
usually ADV
diagnosed VERB
when ADV
someone PRON
does AUX
a DET
liver NOUN
: PUNCT
biopsy NOUN
on ADP
a DET
patient NOUN
that PRON
has AUX
persistently ADV
elevated VERB
serum ADJ
transaminases NOUN
months NOUN
: PUNCT
after ADP
a DET
bout NOUN
of ADP
acute ADJ
viral ADJ
hepatitis NOUN
, PUNCT
or CCONJ
when ADV
someone PRON
is AUX
found VERB
to PART
have AUX
: PUNCT
persistently ADV
elevated ADJ
transaminases NOUN
on ADP
routine ADJ
screening NOUN
tests NOUN
. PUNCT
The DET
degree NOUN
of ADP
: PUNCT
elevation NOUN
( PUNCT
in ADP
the DET
serum ADJ
transaminases NOUN
) PUNCT
can AUX
be AUX
trivial ADJ
, PUNCT
or CCONJ
as ADV
much ADJ
as SCONJ
ten NUM
times NOUN
: PUNCT
normal ADJ
. PUNCT
Other ADJ
blood NOUN
chemistries NOUN
are AUX
usually ADV
normal ADJ
. PUNCT
: PUNCT
As SCONJ
a DET
rule NOUN
, PUNCT
patients NOUN
with ADP
CPH PROPN
have AUX
no DET
clinical ADJ
signs NOUN
of ADP
liver NOUN
disease NOUN
. PUNCT
: PUNCT
Chronic ADJ
active ADJ
hepatitis NOUN
can AUX
also ADV
be AUX
asymptomatic ADJ
or CCONJ
minimally ADV
symptomatic ADJ
, PUNCT
at ADP
: PUNCT
least ADV
initially ADV
, PUNCT
and CCONJ
that DET
's AUX
why ADV
it PRON
's AUX
important ADJ
to PART
tell VERB
them PRON
apart ADV
by ADP
means NOUN
of ADP
: PUNCT
a DET
biopsy NOUN
. PUNCT
The DET
patient NOUN
with ADP
CPH PROPN
only ADV
needs VERB
to PART
be AUX
reassured VERB
. PUNCT
The DET
patient NOUN
with ADP
: PUNCT
CAH PROPN
needs VERB
to PART
be AUX
treated VERB
. PUNCT
I PRON
just ADV
went VERB
back ADV
to ADP
the DET
chapter NOUN
in ADP
Cecil PROPN
on ADP
chronic PROPN
hepatitis NOUN
. PUNCT
  SPACE
It PRON
seemsthat VERB
indeed ADV
most ADJ
cases NOUN
of ADP
CPH PROPN
are AUX
persistant ADJ
viral ADJ
hepatitis PROPN
, PUNCT
whereasthere ADV
are AUX
a DET
multitude NOUN
of ADP
potential ADJ
and CCONJ
probable ADJ
causes NOUN
for ADP
CAH PROPN
( PUNCT
viral NOUN
, PUNCT
drugs NOUN
, PUNCT
alcohol NOUN
, PUNCT
autoimmune PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
  SPACE
Physicians PROPN
seem VERB
to PART
have AUX
a DET
variety NOUN
of"thresholds NOUN
" PUNCT
for ADP
electing VERB
to ADP
biopsy NOUN
someone PRON
's PART
liver NOUN
. PUNCT
  SPACE
Personally ADV
, PUNCT
I PRON
thinkthat ADP
if SCONJ
the DET
patient NOUN
is AUX
asymptomatic ADJ
, PUNCT
with ADP
only ADJ
slight ADJ
transaminitis NOUN
andnormal NOUN
albumin NOUN
and CCONJ
PT PROPN
, PUNCT
one PRON
can AUX
simply ADV
follow VERB
them PRON
closely ADV
and CCONJ
not PART
add VERB
thepotential ADJ
risks NOUN
of ADP
a DET
biopsy NOUN
. PUNCT
  SPACE
Others NOUN
may AUX
well ADV
biopsy VERB
such DET
a DET
patient NOUN
, PUNCT
thusproviding VERB
these DET
samples NOUN
for ADP
study NOUN
. PUNCT
  SPACE
It PRON
would AUX
be AUX
interesting ADJ
to PART
see VERB
ifanyone NOUN
's AUX
done VERB
any DET
decision NOUN
analysis NOUN
on ADP
this.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.meddocument_id X
: PUNCT
59652From NUM
: PUNCT
bj368@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Mike PROPN
E. PROPN
Romano)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Drop VERB
your PRON
drawers NOUN
and CCONJ
the DET
doctor NOUN
will AUX
see VERB
youThis PUNCT
is AUX
not PART
an DET
unusual ADJ
practice NOUN
if SCONJ
the DET
doctor NOUN
is AUX
also ADV
amember NOUN
of ADP
a DET
nudist NOUN
colony.-- PROPN
Sir PROPN
, PUNCT
I PRON
admit VERB
your PRON
gen'ral NOUN
ruleThat PROPN
every DET
poet NOUN
is AUX
a DET
fool;But PROPN
you PRON
yourself PRON
may AUX
serve VERB
to PART
show VERB
it PRON
, PUNCT
That SCONJ
every DET
fool NOUN
is AUX
not PART
a DET
poet NOUN
. PUNCT
    SPACE
A. NOUN
PopeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
57110From NUM
: PUNCT
bed@intacc.uucp PROPN
( PUNCT
Deb PROPN
Waddington)Subject NOUN
: PUNCT
INFO PROPN
NEEDED PROPN
: PUNCT
Gaucher PROPN
's PART
DiseaseI NUM
have AUX
a DET
42 NUM
yr NOUN
old ADJ
male ADJ
friend NOUN
, PUNCT
misdiagnosed VERB
as SCONJ
having VERB
osteopporosis NOUN
for ADP
two NUM
years NOUN
, PUNCT
who PRON
recently ADV
found VERB
out ADP
that SCONJ
his PRON
illness NOUN
is AUX
the DET
rare ADJ
Gaucher PROPN
's PART
disease NOUN
. PUNCT
Gaucher PROPN
's PART
disease NOUN
symptoms NOUN
include VERB
: PUNCT
brittle PROPN
bones NOUN
( PUNCT
he PRON
lost VERB
9 NUM
  SPACE
inches NOUN
off ADP
his PRON
hieght NOUN
) PUNCT
; PUNCT
enlarged VERB
liver NOUN
and CCONJ
spleen NOUN
; PUNCT
internal ADJ
bleeding NOUN
; PUNCT
and CCONJ
fatigue NOUN
( PUNCT
all DET
the DET
time NOUN
) PUNCT
. PUNCT
The DET
problem NOUN
( PUNCT
in ADP
Type NOUN
1 NUM
) PUNCT
is AUX
attributed VERB
to ADP
a DET
genetic ADJ
mutation NOUN
where ADV
there PRON
is AUX
a DET
lack NOUN
of ADP
the DET
enzyme NOUN
glucocerebroside NOUN
in ADP
macrophages NOUN
so SCONJ
the DET
cells NOUN
swell VERB
up ADP
. PUNCT
This DET
will AUX
eventually ADV
cause VERB
death NOUN
. PUNCT
Enyzme PROPN
replacement NOUN
therapy NOUN
has AUX
been AUX
successfully ADV
developed VERB
and CCONJ
approved VERB
by ADP
the DET
FDA PROPN
in ADP
the DET
last ADJ
few ADJ
years NOUN
so SCONJ
that SCONJ
those DET
patients NOUN
administered VERB
with ADP
this DET
drug NOUN
( PUNCT
called VERB
Ceredase PROPN
) PUNCT
report VERB
a DET
remarkable ADJ
improvement NOUN
in ADP
their PRON
condition NOUN
. PUNCT
Ceredase PROPN
, PUNCT
which PRON
is AUX
manufactured VERB
by ADP
biotech PROPN
biggy PROPN
company NOUN
-- PUNCT
Genzyme PROPN
-- PUNCT
costs VERB
the DET
patient ADJ
$ SYM
380,000 NUM
per ADP
year NOUN
. PUNCT
Gaucher PROPN
's PART
disease NOUN
has AUX
justifyably ADV
been AUX
called VERB
" PUNCT
the DET
most ADV
expensive ADJ
disease NOUN
in ADP
the DET
world" NOUN
. PUNCT
NEED PROPN
INFO PROPN
: PUNCT
I PRON
have AUX
researched VERB
Gaucher PROPN
's PART
disease NOUN
at ADP
the DET
library NOUN
but CCONJ
am AUX
relying VERB
on ADP
netlanders NOUN
to PART
provide VERB
me PRON
with ADP
any DET
additional ADJ
information:**news NOUN
, PUNCT
stories NOUN
, PUNCT
reports**people VERB
you PRON
know VERB
with ADP
this DET
disease**ideas PROPN
, PUNCT
articles NOUN
about ADP
Genzyme PROPN
Corp PROPN
, PUNCT
how ADV
to PART
get AUX
a DET
hold NOUN
of ADP
   SPACE
enough ADJ
money NOUN
to PART
buy VERB
some DET
, PUNCT
programs NOUN
available ADJ
to PART
help VERB
with ADP
   SPACE
costs.**Basically ADV
ANY DET
HELP PROPN
YOU PRON
CAN AUX
OFFERThanks NOUN
so ADV
very ADV
much!Deborah PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58043From NUM
: PUNCT
mcdonald@aries.scs.uiuc.edu PROPN
( PUNCT
J. PROPN
D. PROPN
McDonald)Subject PROPN
: PUNCT
Re ADP
: PUNCT
jiggersIn PROPN
article NOUN
< X
78846@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes:>This PROPN
would AUX
n't PART
happen VERB
to PART
be AUX
the DET
same ADJ
thing NOUN
as SCONJ
chiggers NOUN
, PUNCT
would AUX
it?>A VERB
truly ADV
awful ADJ
parasitic ADJ
affliction NOUN
, PUNCT
as SCONJ
I PRON
understand VERB
it PRON
. PUNCT
  SPACE
Tiny ADJ
bugs NOUN
> X
dig X
deeply ADV
into ADP
the DET
skin NOUN
, PUNCT
burying VERB
themselves PRON
. PUNCT
  SPACE
Yuck PROPN
! PUNCT
  SPACE
They PRON
have AUX
these DET
> X
things NOUN
in ADP
Oklahoma PROPN
. PUNCT
Close ADV
. PUNCT
My PRON
mother NOUN
comes VERB
from ADP
Gainesville PROPN
Tex PROPN
, PUNCT
right ADV
across ADP
the DET
border NOUN
. PUNCT
They PRON
claim VERB
to PART
be AUX
the DET
chigger NOUN
capitol NOUN
of ADP
the DET
world NOUN
, PUNCT
and CCONJ
I PRON
believe VERB
them PRON
. PUNCT
When ADV
I PRON
grew VERB
up ADP
in ADP
Fort PROPN
Worth PROPN
it PRON
was AUX
bad ADJ
enough ADV
, PUNCT
but CCONJ
in ADP
Gainesvillein PROPN
the DET
summer NOUN
an DET
attack NOUN
was AUX
guaranteed VERB
. PUNCT
Doug PROPN
McDonaldNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58045From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Breech PROPN
Baby PROPN
Info PROPN
NeededIn PROPN
article NOUN
< X
1993Apr5.151818.27409@trentu.ca NUM
> X
xtkmg@trentu.ca PUNCT
( PUNCT
Kate PROPN
Gregory PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr3.161757.19612@cs.rochester.edu NUM
> X
fulk@cs.rochester.edu NOUN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>>>Another PROPN
uncommon ADJ
problem NOUN
is AUX
maternal ADJ
hemorrhage NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
the>>incidence PROPN
, PUNCT
but CCONJ
it PRON
is AUX
something PRON
like SCONJ
1 NUM
in ADP
1,000 NUM
or CCONJ
10,000 NUM
births NOUN
. PUNCT
  SPACE
It PRON
is AUX
hard>>to ADJ
see VERB
how ADV
you PRON
could AUX
handle VERB
it PRON
at ADP
home NOUN
, PUNCT
and CCONJ
you PRON
would AUX
n't PART
have AUX
very ADV
much ADJ
time.>>>>thing VERB
you PRON
might AUX
consider VERB
is AUX
that SCONJ
people NOUN
's PART
risk NOUN
tradeoffs NOUN
vary VERB
. PUNCT
  SPACE
I PRON
consider>>a VERB
1/1,000 NUM
risk NOUN
of ADP
loss NOUN
of ADP
a DET
loved VERB
one NOUN
to PART
require VERB
considerable ADJ
effort NOUN
in>>the DET
avoiding.>>Mark PROPN
, PUNCT
you PRON
seem VERB
to PART
be AUX
terrified VERB
of ADP
the DET
birth NOUN
processThat NOUN
's PART
ridiculous!>and PROPN
unable ADJ
to PART
> X
believe VERB
that SCONJ
women NOUN
's PART
bodies NOUN
are AUX
actually ADV
designed VERB
to PART
do AUX
it PRON
. PUNCT
They PRON
are AUX
n't PART
designed VERB
, PUNCT
they PRON
evolved VERB
. PUNCT
  SPACE
And CCONJ
, PUNCT
much ADV
as SCONJ
it PRON
discomforts VERB
us PRON
, PUNCT
inhumans VERB
a DET
trouble NOUN
- PUNCT
free ADJ
birth NOUN
process NOUN
was AUX
sacrificed VERB
to ADP
increased VERB
brain NOUN
andcranial ADJ
size NOUN
. PUNCT
  SPACE
Wild ADJ
animals NOUN
have AUX
a DET
much ADV
easier ADJ
time NOUN
with ADP
birth NOUN
than SCONJ
humans NOUN
do AUX
. PUNCT
Domestic ADJ
horses NOUN
and CCONJ
cows NOUN
typically ADV
have AUX
a DET
worse ADJ
time NOUN
. PUNCT
  SPACE
To PART
give VERB
you PRON
an DET
idea NOUN
: PUNCT
my PRON
family NOUN
tree NOUN
is AUX
complicated VERB
because SCONJ
a DET
few ADJ
of ADP
my PRON
pioneer NOUN
great ADJ
- PUNCT
great ADJ
- PUNCT
grandfathers NOUN
had AUX
several ADJ
wives NOUN
, PUNCT
and CCONJ
we PRON
never ADV
could AUX
figure VERB
out ADP
which PRON
wifehad VERB
each DET
child NOUN
. PUNCT
  SPACE
One PRON
might AUX
ask VERB
why ADV
this DET
happened VERB
. PUNCT
  SPACE
My PRON
great ADJ
- PUNCT
great ADJ
- PUNCT
grandfathers NOUN
were AUX
, PUNCT
by ADP
the DET
time NOUN
they PRON
reached VERB
their PRON
forties NOUN
, PUNCT
quite ADJ
prosperousfarmers NOUN
. PUNCT
  SPACE
Nonetheless ADV
, PUNCT
they PRON
lost VERB
several ADJ
wives NOUN
each DET
to ADP
the DET
rigors NOUN
ofchildbirth ADV
; PUNCT
the DET
graveyards NOUN
in ADP
Spencer PROPN
, PUNCT
Indiana PROPN
, PUNCT
and CCONJ
Boswell PROPN
, PUNCT
North PROPN
Dakota PROPN
, PUNCT
contain VERB
quite DET
a DET
few ADJ
gravestones NOUN
like SCONJ
" PUNCT
Ida PROPN
, PUNCT
wf PROPN
. PROPN
of ADP
Jacob PROPN
Liptrap PROPN
, PUNCT
andbaby NOUN
, PUNCT
May PROPN
6 NUM
, PUNCT
1853.">You PROPN
wanted VERB
> X
to PART
section NOUN
all DET
women NOUN
carrying VERB
breech NOUN
in ADP
case NOUN
one NUM
in ADP
a DET
hundred NUM
or CCONJ
a DET
> X
thousand NUM
breech NOUN
babies NOUN
get VERB
hung VERB
up ADP
in ADP
second ADJ
stage NOUN
, PUNCT
More ADJ
like SCONJ
one NUM
in ADP
ten NUM
. PUNCT
  SPACE
And CCONJ
the DET
consequences NOUN
can AUX
be AUX
devastating ADJ
; PUNCT
I PRON
havedirect VERB
experience NOUN
of ADP
more ADJ
than SCONJ
a DET
dozen NOUN
victims NOUN
of ADP
a DET
fouled VERB
- PUNCT
up ADP
breech NOUN
birth.>and NOUN
now ADV
you PRON
want VERB
> X
all DET
babies NOUN
born VERB
in ADP
hospital NOUN
based VERB
on ADP
a DET
guess NOUN
of ADP
how ADV
likely ADJ
maternal ADJ
> X
hemorrhage NOUN
is AUX
and CCONJ
a DET
false ADJ
belief NOUN
that SCONJ
it PRON
is AUX
fatal ADJ
. PUNCT
It PRON
is AUX
n't PART
always ADV
fatal ADJ
. PUNCT
  SPACE
But CCONJ
it PRON
is AUX
often ADV
fatal ADJ
, PUNCT
when ADV
it PRON
happens VERB
out ADP
ofreach NOUN
of ADP
adequate ADJ
help NOUN
. PUNCT
  SPACE
More ADV
often ADV
, PUNCT
it PRON
permanently ADV
damages VERB
one NUM
's PART
health NOUN
. PUNCT
Clearly ADV
women NOUN
's PART
bodies NOUN
_ PROPN
evolved VERB
_ PROPN
to PART
give VERB
birth NOUN
( PUNCT
I PRON
am AUX
no DET
believer NOUN
in ADP
divinedesign NOUN
) PUNCT
; PUNCT
however ADV
, PUNCT
evolution NOUN
did AUX
not PART
favor VERB
trouble NOUN
- PUNCT
free ADJ
births NOUN
for ADP
humans NOUN
. PUNCT
  SPACE
> X
You PRON
have AUX
your PRON
kids NOUN
where ADV
you PRON
want VERB
. PUNCT
You PRON
encourage VERB
your PRON
wife NOUN
to PART
> X
get AUX
six NUM
inch NOUN
holes NOUN
cut VERB
through ADP
her PRON
stomach NOUN
muscles NOUN
, PUNCT
expose VERB
herself PRON
> X
to ADP
anesthesia PROPN
and CCONJ
infection NOUN
, PUNCT
and CCONJ
whatever PRON
other ADJ
" PUNCT
just ADV
in ADP
case NOUN
" PUNCT
measures NOUN
> X
you PRON
think VERB
are AUX
necessary ADJ
. PUNCT
My PRON
, PUNCT
are AUX
n't PART
we PRON
wroth ADJ
! PUNCT
  SPACE
I PRON
have AUX
n't PART
read VERB
a DET
more ADV
outrageous ADJ
straw NOUN
man NOUN
attackin PROPN
months NOUN
! PUNCT
  SPACE
I PRON
can AUX
practically ADV
see VERB
your PRON
mouth NOUN
foam NOUN
. PUNCT
We're PROPN
statistically ADV
sophisticated VERB
enough ADV
to PART
balance VERB
the DET
risks NOUN
. PUNCT
  SPACE
AlthoughI DET
ca AUX
n't PART
produce VERB
exact ADJ
statistics NOUN
5 NUM
years NOUN
after ADP
the DET
last ADJ
time NOUN
we PRON
lookedthem VERB
up ADP
, PUNCT
rest VERB
assured VERB
that SCONJ
we PRON
balanced VERB
C NOUN
- PUNCT
section NOUN
risks NOUN
against ADP
other ADJ
risks NOUN
. PUNCT
I PRON
would AUX
n't PART
encourage VERB
my PRON
wife NOUN
to PART
have AUX
a DET
Caesarean PROPN
unless SCONJ
it PRON
was AUX
clearlyindicated VERB
; PUNCT
on ADP
the DET
other ADJ
hand NOUN
, PUNCT
I PRON
am AUX
opposed VERB
( PUNCT
on ADP
obvious ADJ
grounds NOUN
) PUNCT
to PART
waitinguntil PROPN
an DET
emergency NOUN
to PART
give VERB
in ADP
. PUNCT
And CCONJ
bear VERB
this DET
in ADP
mind NOUN
: PUNCT
my PRON
wife NOUN
took VERB
the DET
lead NOUN
in ADP
all DET
of ADP
these DET
decisions NOUN
. PUNCT
We PRON
talked VERB
things NOUN
over ADP
, PUNCT
and CCONJ
I PRON
did AUX
a DET
lot NOUN
of ADP
the DET
leg NOUN
work NOUN
, PUNCT
but CCONJ
the DET
maindecisions NOUN
were AUX
really ADV
hers.>But INTJ
I PRON
for ADP
one NUM
am AUX
bothered VERB
by ADP
your PRON
continued VERB
> X
suggestions NOUN
, PUNCT
especially ADV
to ADP
the DET
misc.kidders NOUN
pregnant ADJ
for ADP
the DET
first ADJ
> X
time NOUN
, PUNCT
that DET
birth NOUN
is AUX
dangerous ADJ
, PUNCT
even ADV
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
all DET
these DET
> X
unpleasant ADJ
things NOUN
are AUX
far ADV
better ADJ
than SCONJ
the DET
risks NOUN
you PRON
run VERB
just ADV
doing VERB
> X
it PRON
naturally ADV
. PUNCT
I PRON
do AUX
n't PART
know VERB
of ADP
very ADV
many ADJ
home NOUN
birth NOUN
advocates NOUN
, PUNCT
even ADV
, PUNCT
that PRON
think VERB
thata PROPN
first ADJ
- PUNCT
time NOUN
mother NOUN
should AUX
have AUX
her PRON
baby NOUN
at ADP
home.>I'm PROPN
no DET
Luddite PROPN
. PUNCT
I PRON
've AUX
had VERB
a DET
section NOUN
. PUNCT
I PRON
'm AUX
planning VERB
a DET
hospital NOUN
birth NOUN
> X
this DET
time NOUN
. PUNCT
But CCONJ
for ADP
heaven PROPN
's PART
sake NOUN
, PUNCT
not PART
everyone PRON
needs VERB
that!But PROPN
people NOUN
should AUX
bother VERB
to PART
find VERB
out ADP
the DET
relative ADJ
risks NOUN
. PUNCT
  SPACE
My PRON
wife NOUN
wasunwilling VERB
to PART
take VERB
any DET
significant ADJ
risks NOUN
in ADP
order NOUN
to PART
have AUX
nice ADJ
surroundings NOUN
. PUNCT
In ADP
view NOUN
of ADP
the DET
intensity NOUN
of ADP
the DET
birth NOUN
experience NOUN
, PUNCT
I PRON
doubt VERB
surroundingshave VERB
much ADJ
importance NOUN
anyway ADV
. PUNCT
  SPACE
Somehow ADV
the DET
values NOUN
you PRON
're AUX
advocating VERB
seemall NOUN
lopsided VERB
to ADP
me PRON
: PUNCT
taking VERB
risks NOUN
, PUNCT
even ADV
if SCONJ
fairly ADV
small ADJ
, PUNCT
of ADP
seriouspermanent ADJ
harm NOUN
in ADP
order NOUN
to PART
preserve VERB
something PRON
that PRON
is AUX
, PUNCT
after ADV
all ADV
, PUNCT
an DET
esthetic ADJ
consideration.-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58046From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Analgesics NOUN
with ADP
DiureticsI PROPN
sometimes ADV
see VERB
OTC PROPN
preparations NOUN
for ADP
muscle NOUN
aches NOUN
/ SYM
back NOUN
aches NOUN
thatcombine NOUN
aspirin NOUN
with ADP
a DET
diuretic NOUN
. PUNCT
The DET
idea NOUN
seems VERB
to PART
be AUX
to ADP
reduceinflammation NOUN
by ADP
getting VERB
rid VERB
of ADP
fluid NOUN
. PUNCT
Does AUX
this DET
actually ADV
work VERB
? PUNCT
Thanks,-Larry PROPN
C. PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58047From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lactose PROPN
intoleranceIn PROPN
article NOUN
< X
ng4.733990422@husc.harvard.edu NOUN
> X
, PUNCT
ng4@husc11.harvard.edu X
( PUNCT
HoLeung PROPN
Ng PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
    SPACE
When ADV
I PRON
was AUX
a DET
kid NOUN
in ADP
primary ADJ
school NOUN
, PUNCT
I PRON
used VERB
to PART
drink VERB
tons NOUN
of ADP
milk NOUN
without ADP
> X
any DET
problems NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
nowadays ADV
, PUNCT
I PRON
can AUX
hardly ADV
drink VERB
any DET
at ADV
all ADV
without ADP
> X
experiencing VERB
some DET
discomfort NOUN
. PUNCT
  SPACE
What PRON
could AUX
be AUX
responsible ADJ
for ADP
the DET
change NOUN
? PUNCT
> X
> X
Ho PROPN
Leung PROPN
Ng PROPN
> X
ng4@husc.harvard.eduYou NUM
became VERB
older ADJ
and CCONJ
your PRON
intestine NOUN
normalized VERB
to ADP
the DET
weaned ADJ
state NOUN
. PUNCT
  SPACE
Thatis PROPN
, PUNCT
lactose ADJ
tolerance NOUN
is AUX
an DET
unusual ADJ
state NOUN
for ADP
adults NOUN
of ADP
most ADJ
mammalsexcept VERB
for ADP
h. NOUN
sapiens NOUN
of ADP
northern ADJ
European ADJ
origin NOUN
. PUNCT
  SPACE
As SCONJ
a DET
h. NOUN
sapiens NOUN
of ADP
asian ADJ
descent NOUN
( PUNCT
assumption NOUN
based VERB
on ADP
name NOUN
) PUNCT
the DET
loss NOUN
of ADP
lactase NOUN
is AUX
normalfor ADP
you PRON
. PUNCT
  SPACE
Steve PROPN
Hollandgila005@uabdpo.dpo.uab.eduNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58048From NUM
: PUNCT
bennett@kuhub.cc.ukans.eduSubject PROPN
: PUNCT
Smoker PROPN
's PART
LungsHow PROPN
long ADV
does AUX
it PRON
take VERB
a DET
smoker NOUN
's PART
lungs NOUN
to PART
clear VERB
of ADP
the DET
tar NOUN
after ADP
quitting VERB
? PUNCT
Does AUX
your PRON
chances NOUN
of ADP
getting VERB
lung NOUN
cancer NOUN
decrease NOUN
quickly ADV
or CCONJ
does AUX
it PRON
takea VERB
considerable ADJ
amount NOUN
of ADP
time NOUN
for ADP
that DET
to ADP
happen?Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58049From NUM
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Blood PROPN
Cholesterol PROPN
- PUNCT
  SPACE
Gabe PROPN
Mirkin PROPN
's PART
adviceIn PROPN
article NOUN
< X
1pka0uINNnqa@mojo.eng.umd.edu NUM
> X
, PUNCT
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark PROPN
) PUNCT
writes:| PROPN
> X
Forget VERB
about ADP
total ADJ
cholesterol NOUN
when ADV
assessing VERB
health NOUN
risk NOUN
factors.| PROPN
> X
Instead ADV
, PUNCT
use VERB
a DET
relationship NOUN
between ADP
LDL PROPN
and CCONJ
HDL PROPN
cholesterol:| PROPN
> X
| ADP
> X
If SCONJ
your PRON
LDL PROPN
is AUX
       SPACE
You PRON
need VERB
an DET
HDL NOUN
of ADP
at ADP
least| PROPN
> X
| CCONJ
> X
       SPACE
90 NUM
                 SPACE
35| PROPN
> X
      SPACE
100 NUM
                 SPACE
45| PROPN
> X
      SPACE
110 NUM
                 SPACE
50| NUM
> X
      SPACE
120 NUM
                 SPACE
55| NUM
> X
      SPACE
130 NUM
                 SPACE
60| NUM
> X
      SPACE
140 NUM
                 SPACE
70Gee NUM
, PUNCT
what PRON
do AUX
I PRON
do AUX
? PUNCT
  SPACE
My PRON
LDL PROPN
is AUX
only ADV
50 NUM
- SYM
60 NUM
. PUNCT
( PUNCT
and CCONJ
my PRON
HDL PROPN
is AUX
only ADV
23 NUM
- PUNCT
25)I PROPN
must AUX
be AUX
risking VERB
something PRON
, PUNCT
but CCONJ
Is AUX
it PRON
the DET
same ADJ
risk NOUN
as SCONJ
those DET
with ADP
very ADV
high ADJ
LDL?| NOUN
> X
If SCONJ
your PRON
triglycerides NOUN
are AUX
above ADP
300 NUM
, PUNCT
and CCONJ
your PRON
HDL PROPN
is AUX
below ADP
30 NUM
, PUNCT
the| PROPN
> X
drug NOUN
of ADP
choice NOUN
is AUX
gemfibrozil ADJ
( PUNCT
Lopid PROPN
) PUNCT
taken VERB
as SCONJ
a DET
600 NUM
mg NOUN
tablet| PROPN
> X
thirty NUM
minutes NOUN
before ADP
your PRON
morning NOUN
and CCONJ
evening NOUN
meals NOUN
. PUNCT
What PRON
about ADP
exercise NOUN
and CCONJ
a DET
low ADJ
- PUNCT
fat NOUN
diet NOUN
? PUNCT
  SPACE
What PRON
are AUX
the DET
long ADJ
- PUNCT
term NOUN
effects NOUN
of ADP
this DET
drug?-- PROPN
Doug PROPN
Bank PROPN
                       SPACE
Private PROPN
Systems PROPN
Divisiondougb@ecs.comm.mot.com X
          SPACE
Motorola PROPN
Communications PROPN
Sectordougb@nwu.edu PROPN
                   SPACE
Schaumburg PROPN
, PUNCT
Illinoisdougb@casbah.acns.nwu.edu NOUN
       SPACE
708 NUM
- PUNCT
576 NUM
- SYM
8207 NUM
                    SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58050From NUM
: PUNCT
cliff@buster.stafford.tx.us PROPN
( PUNCT
Cliff PROPN
Tomplait)Subject NUM
: PUNCT
Re ADP
: PUNCT
sex NOUN
problem.ls8139@albnyvms.bitnet NOUN
( PUNCT
larry PROPN
silverberg PROPN
) PUNCT
writes:>I PRON
have AUX
question NOUN
that PRON
I PRON
hope VERB
is AUX
taken VERB
seriously ADV
, PUNCT
despite SCONJ
the DET
subject NOUN
content.>Problem PROPN
: PUNCT
  SPACE
My PRON
long ADJ
time NOUN
girlfriend NOUN
lately ADV
has AUX
not PART
been AUX
initiating VERB
any DET
sexual ADJ
> X
	 SPACE
activity NOUN
. PUNCT
  SPACE
For ADP
the DET
last ADJ
four NUM
months NOUN
things NOUN
have AUX
changed VERB
dramatically ADV
. PUNCT
> X
       SPACE
... PUNCT
> X
	 SPACE
--to NOUN
make VERB
this DET
shorter-- PROPN
Summary PROPN
: PUNCT
nothing PRON
that PRON
I PRON
can AUX
think VERB
of ADP
has AUX
> X
				 SPACE
changed VERB
.... PUNCT
> X
       SPACE
... PUNCT
> X
She PRON
suggested VERB
we PRON
go VERB
to ADP
a DET
sex NOUN
counselor NOUN
, PUNCT
but CCONJ
I PRON
really ADV
do AUX
n't PART
want VERB
to PART
( PUNCT
just ADV
yet).>Any NOUN
suggestions NOUN
would AUX
be AUX
appreciated.>If PUNCT
you PRON
think VERB
you PRON
can AUX
help VERB
me PRON
, PUNCT
please INTJ
contact VERB
me PRON
by ADP
e NOUN
- NOUN
mail NOUN
for ADP
further ADJ
info.>PLEASE PUNCT
serious ADJ
replies NOUN
only.>Thanks PROPN
, PUNCT
LarryLarry PROPN
: PUNCT
The DET
subject ADJ
content NOUN
IS VERB
serious ADJ
; PUNCT
as SCONJ
is AUX
the DET
question NOUN
. PUNCT
On ADP
one NUM
hand NOUN
you PRON
state VERB
that SCONJ
" PUNCT
things NOUN
have AUX
changed VERB
dramatically ADV
" PUNCT
but CCONJ
, PUNCT
at ADP
thesame NOUN
time NOUN
nothing PRON
you PRON
" PUNCT
can AUX
think VERB
of ADP
has AUX
changed VERB
" PUNCT
. PUNCT
  SPACE
Your PRON
girlfriend NOUN
seemsto NOUN
want VERB
to PART
see VERB
a DET
counselor NOUN
, PUNCT
but CCONJ
you PRON
do AUX
n't PART
. PUNCT
  SPACE
I PRON
'd AUX
recommend VERB
that SCONJ
you PRON
examine VERB
your PRON
hesitation NOUN
to PART
see VERB
a DET
counselor NOUN
. PUNCT
  SPACE
It'sa PROPN
very ADV
good ADJ
environment NOUN
to PART
examine VERB
issues NOUN
. PUNCT
  SPACE
The DET
fact NOUN
of ADP
the DET
matter NOUN
is AUX
: PUNCT
  SPACE
your PRON
girlfriend NOUN
has AUX
a DET
different ADJ
perception NOUN
thanyou NOUN
. PUNCT
  SPACE
The DET
TWO PROPN
of ADP
you PRON
need VERB
to PART
address VERB
the DET
issue NOUN
in ADP
order NOUN
to PART
resolve VERB
it PRON
. PUNCT
Please INTJ
consider VERB
going VERB
to ADP
a DET
counselor NOUN
with ADP
your PRON
girlfriend NOUN
. PUNCT
  SPACE
What PRON
could AUX
itpossibly VERB
hurt?Cliff NOUN
  SPACE
( PUNCT
the DET
paramedic)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58051From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Prednisone NOUN
... PUNCT
what PRON
are AUX
the DET
significant ADJ
long ADJ
term NOUN
side NOUN
effects NOUN
? PUNCT
> X
> X
I PRON
have AUX
been AUX
taking VERB
prednisone PROPN
5 NUM
mg PROPN
twice DET
a DET
day NOUN
for ADP
a DET
while NOUN
to PART
control VERB
> X
> X
Ulcerative PROPN
Colitis PROPN
. PUNCT
It PRON
seems VERB
like SCONJ
if SCONJ
I PRON
reduce VERB
the DET
dosage NOUN
, PUNCT
the DET
problem NOUN
> X
> X
becomes VERB
worse ADJ
. PUNCT
At ADP
this DET
point NOUN
, PUNCT
i PRON
see VERB
myself PRON
taking VERB
prednisone NOUN
for ADP
a DET
long ADJ
> X
> X
long ADJ
time NOUN
, PUNCT
perhaps ADV
for ADP
ever ADV
. PUNCT
I PRON
was AUX
wondering VERB
about ADP
long ADJ
term NOUN
major ADJ
side NOUN
> X
> X
effects NOUN
, PUNCT
things NOUN
like SCONJ
potential ADJ
birth NOUN
defects NOUN
, PUNCT
arthritis NOUN
etc X
. PUNCT
I PRON
have AUX
been AUX
> X
> X
putting VERB
on ADP
weight NOUN
, PUNCT
my PRON
face NOUN
looks VERB
puffed VERB
and CCONJ
round ADJ
, PUNCT
experience VERB
sudden ADJ
mood NOUN
> X
> X
swings NOUN
. PUNCT
As SCONJ
I PRON
understand VERB
, PUNCT
these DET
are AUX
all DET
short ADJ
term NOUN
. PUNCT
I PRON
second ADV
what PRON
Spenser PROPN
Aden PROPN
said VERB
in ADP
reply NOUN
. PUNCT
  SPACE
Additionally ADV
, PUNCT
it PRON
is AUX
hard ADJ
to PART
saywhat DET
type NOUN
of ADP
response NOUN
you PRON
ar3e PROPN
having VERB
to PART
prednisone VERB
since SCONJ
you PRON
did AUX
not PART
sayhow VERB
long ADV
you PRON
have AUX
been AUX
on ADP
it PRON
. PUNCT
  SPACE
Patients NOUN
are AUX
generally ADV
kept VERB
on ADP
steroids NOUN
formonths NOUN
before ADP
thinking VERB
about ADP
tapering VERB
. PUNCT
  SPACE
Alternatives NOUN
to ADP
daily ADJ
dosing NOUN
are AUX
every DET
other ADJ
day NOUN
dosing VERB
, PUNCT
in ADP
your PRON
case NOUN
20 NUM
mg PROPN
every DET
other ADJ
day NOUN
would AUX
be AUX
a DET
start NOUN
. PUNCT
Another DET
option NOUN
if SCONJ
it PRON
is AUX
not PART
possible ADJ
to PART
get AUX
you PRON
off ADP
prednisone NOUN
is AUX
to PART
startazathioprine VERB
. PUNCT
  SPACE
Like SCONJ
Spenser PROPN
said VERB
, PUNCT
you PRON
should AUX
generally ADV
be AUX
on ADP
another DET
drugin NOUN
addition NOUN
to ADP
your PRON
prednisone NOUN
, PUNCT
like SCONJ
asulfidine NOUN
. PUNCT
  SPACE
A DET
lot NOUN
of ADP
the DET
specificsabout NOUN
options NOUN
, PUNCT
though ADV
, PUNCT
depends VERB
on ADP
severity NOUN
, PUNCT
location NOUN
, PUNCT
and CCONJ
duration NOUN
of ADP
disease NOUN
, PUNCT
as ADV
well ADV
as SCONJ
histology NOUN
, PUNCT
so ADV
take VERB
advice NOUN
off ADP
the DET
net NOUN
for ADP
what PRON
itis NOUN
worth ADJ
. PUNCT
  SPACE
I PRON
treat VERB
patients NOUN
with ADP
UC PROPN
and CCONJ
Crohn PROPN
's PART
. PUNCT
  SPACE
An DET
educated VERB
patient NOUN
is AUX
a DET
good ADJ
patient NOUN
, PUNCT
but CCONJ
let VERB
your PRON
doctor NOUN
know VERB
where ADV
the DET
advice NOUN
came VERB
from ADP
so ADV
thingscan ADV
be AUX
put VERB
in ADP
context NOUN
. PUNCT
  SPACE
You PRON
should AUX
also ADV
be AUX
a DET
member NOUN
of ADP
the DET
Crohn PROPN
's PART
andColitis PROPN
Foundation PROPN
of ADP
America PROPN
. PUNCT
  SPACE
1 NUM
- PUNCT
800 NUM
- PUNCT
932 NUM
- PUNCT
2423 NUM
office NOUN
/ SYM
1 NUM
- PUNCT
800 NUM
- PUNCT
343 NUM
- PUNCT
3637info NUM
hotline NOUN
. PUNCT
Best ADJ
of ADP
Luck PROPN
to ADP
you PRON
. PUNCT
Steve PROPN
Holland.gila005@uabdpo.dpo.uab.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58054From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Mental PROPN
Illness[reply ADV
to ADP
dabbott@augean.eleceng.adelaide.edu.AU PROPN
( PUNCT
Derek PROPN
Abbott PROPN
) PUNCT
] PUNCT
> X
Are AUX
there PRON
any DET
case NOUN
histories NOUN
of ADP
severe ADJ
mental ADJ
illness NOUN
cases NOUN
remarkably ADV
> X
recovering VERB
after ADP
a DET
tragic ADJ
accident NOUN
or CCONJ
trauma NOUN
( PUNCT
eg PROPN
. PUNCT
through ADP
nobody PRON
's PART
fault,>being NOUN
trapped VERB
in ADP
a DET
fire NOUN
and CCONJ
losing VERB
your PRON
legs NOUN
, PUNCT
say VERB
) PUNCT
? PUNCT
I PRON
know VERB
of ADP
a DET
patient NOUN
who PRON
was AUX
severely ADV
and CCONJ
chronically ADV
depressed ADJ
and CCONJ
triedto PROPN
kill VERB
himself PRON
with ADP
a DET
bullet NOUN
to ADP
the DET
temple PROPN
. PUNCT
  SPACE
He PRON
essentially ADV
gavehimself PRON
a DET
prefrontal ADJ
lobotomy NOUN
, PUNCT
curing VERB
the DET
depression NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58055From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
Breathe[reply ADV
to ADP
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
] PUNCT
> X
While SCONJ
you PRON
're AUX
right ADJ
that SCONJ
the DET
S PROPN
vertebrae NOUN
are AUX
attached VERB
to ADP
each DET
other,>the NOUN
sacrum NOUN
, PUNCT
to ADP
my PRON
knowledge NOUN
, PUNCT
* PUNCT
can AUX
* PUNCT
be AUX
adjusted VERB
either ADV
directly ADV
, PUNCT
or CCONJ
> X
by ADP
applying VERB
pressure NOUN
on ADP
the DET
pubic ADJ
bone NOUN
... PUNCT
Ron PROPN
, PUNCT
you PRON
're AUX
an DET
endless ADJ
source NOUN
of ADP
misinformation NOUN
! PUNCT
  SPACE
There PRON
ARE VERB
no DET
sacralvertebrae NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
bone NOUN
called VERB
the DET
sacrum NOUN
at ADP
the DET
end NOUN
of ADP
the DET
spine NOUN
. PUNCT
It PRON
is AUX
a DET
single ADJ
, PUNCT
solid ADJ
bone NOUN
except SCONJ
in ADP
a DET
few ADJ
patients NOUN
who PRON
have AUX
alumbarized VERB
S1 PROPN
as SCONJ
a DET
normal ADJ
variant NOUN
. PUNCT
  SPACE
How ADV
do AUX
you PRON
adjust VERB
a DET
solid ADJ
bone NOUN
, PUNCT
break VERB
it PRON
? PUNCT
  SPACE
No INTJ
, PUNCT
do AUX
n't PART
tell VERB
me PRON
, PUNCT
I PRON
do AUX
n't PART
want VERB
to PART
know VERB
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58056From NUM
: PUNCT
rousseaua@immunex.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Lactose PROPN
intoleranceIn PROPN
article NOUN
< X
ng4.733990422@husc.harvard.edu NOUN
> X
, PUNCT
ng4@husc11.harvard.edu PROPN
( PUNCT
Ho PROPN
Leung PROPN
Ng PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
    SPACE
When ADV
I PRON
was AUX
a DET
kid NOUN
in ADP
primary ADJ
school NOUN
, PUNCT
I PRON
used VERB
to PART
drink VERB
tons NOUN
of ADP
milk NOUN
without ADP
> X
any DET
problems NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
nowadays ADV
, PUNCT
I PRON
can AUX
hardly ADV
drink VERB
any DET
at ADV
all ADV
without ADP
> X
experiencing VERB
some DET
discomfort NOUN
. PUNCT
  SPACE
What PRON
could AUX
be AUX
responsible ADJ
for ADP
the DET
change NOUN
? PUNCT
> X
> X
Ho PROPN
Leung PROPN
Ng PROPN
> X
ng4@husc.harvard.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58057From NUM
: PUNCT
rousseaua@immunex.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Lactose PROPN
intoleranceIn NUM
article NOUN
< X
1993Apr5.165716.59@immunex.com NUM
> X
, PUNCT
rousseaua@immunex.com X
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
ng4.733990422@husc.harvard.edu NOUN
> X
, PUNCT
ng4@husc11.harvard.edu PROPN
( PUNCT
Ho PROPN
Leung PROPN
Ng PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
    SPACE
When ADV
I PRON
was AUX
a DET
kid NOUN
in ADP
primary ADJ
school NOUN
, PUNCT
I PRON
used VERB
to PART
drink VERB
tons NOUN
of ADP
milk NOUN
without ADP
> X
> X
any DET
problems NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
nowadays ADV
, PUNCT
I PRON
can AUX
hardly ADV
drink VERB
any DET
at ADV
all ADV
without ADP
> X
> X
experiencing VERB
some DET
discomfort NOUN
. PUNCT
  SPACE
What PRON
could AUX
be AUX
responsible ADJ
for ADP
the DET
change NOUN
? PUNCT
> X
> X
> X
> X
Ho PROPN
Leung PROPN
Ng PROPN
> X
> X
ng4@husc.harvard.eduOOPS NOUN
. PUNCT
My PRON
original ADJ
message NOUN
died VERB
. PUNCT
I PRON
'll AUX
try VERB
again ADV
... PUNCT
I PRON
always ADV
understood VERB
( PUNCT
perhaps ADV
wrongly ADV
... PUNCT
: PUNCT
) PUNCT
) PUNCT
that SCONJ
the DET
bacteria NOUN
in ADP
our PRON
digestivetracts NOUN
help VERB
us PRON
break VERB
down ADP
the DET
components NOUN
of ADP
milk NOUN
. PUNCT
Perhaps ADV
the DET
normal ADJ
flora NOUN
of ADP
the DET
intestine NOUN
changes NOUN
as SCONJ
one NUM
passes VERB
from ADP
childhood NOUN
. PUNCT
Is AUX
there PRON
a DET
pathologist NOUN
or CCONJ
microbiologist NOUN
in ADP
the DET
house?Anne PROPN
- PUNCT
Marie PROPN
Rousseaue PROPN
- PUNCT
mail NOUN
: PUNCT
rousseaua@immunex.com(Please NOUN
note NOUN
that SCONJ
these DET
opinions NOUN
are AUX
mine PRON
, PUNCT
and CCONJ
only ADV
mine PRON
. PUNCT
) PUNCT
                                           SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58058From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Smoker PROPN
's PART
LungsIn PROPN
article NOUN
< X
1993Apr5.123315.48837@kuhub.cc.ukans.edu NUM
> X
bennett@kuhub.cc.ukans.edu NUM
writes:>How PROPN
long ADV
does AUX
it PRON
take VERB
a DET
smoker NOUN
's PART
lungs NOUN
to PART
clear VERB
of ADP
the DET
tar NOUN
after ADP
quitting VERB
? PUNCT
> X
Does AUX
your PRON
chances NOUN
of ADP
getting VERB
lung NOUN
cancer NOUN
decrease NOUN
quickly ADV
or CCONJ
does AUX
it PRON
take VERB
> X
a DET
considerable ADJ
amount NOUN
of ADP
time NOUN
for ADP
that DET
to ADP
happen?The PROPN
answer NOUN
to ADP
your PRON
first ADJ
question NOUN
is AUX
rather ADV
difficult ADJ
to PART
answer VERB
withoutdoing VERB
a DET
lot NOUN
of ADP
autopsies NOUN
. PUNCT
  SPACE
The DET
second ADJ
question NOUN
is AUX
something PRON
that PRON
's AUX
beenknown VERB
for ADP
some DET
time NOUN
. PUNCT
  SPACE
It PRON
appears VERB
that SCONJ
within ADP
about ADV
15 NUM
years NOUN
of ADP
quittingsmoking VERB
a DET
person NOUN
's PART
risk NOUN
for ADP
developing VERB
lung NOUN
cancer NOUN
drops VERB
to ADP
that DET
of ADP
theperson PROPN
who PRON
never ADV
smoked VERB
( PUNCT
assuming VERB
you PRON
do AUX
not PART
get AUX
lung NOUN
cancer NOUN
in ADP
theinterim PROPN
! PUNCT
) PUNCT
. PUNCT
  SPACE
The DET
risk NOUN
to ADP
someone PRON
who PRON
smoked VERB
the DET
equivalent NOUN
of ADP
a DET
pack NOUN
perday NOUN
for ADP
40 NUM
years NOUN
is AUX
around ADV
20 NUM
times NOUN
as ADV
high ADJ
as SCONJ
a DET
non ADJ
- NOUN
smoker ADJ
. PUNCT
  SPACE
Stillrather PROPN
low ADJ
overall ADV
, PUNCT
but CCONJ
significant ADJ
. PUNCT
  SPACE
Personally ADV
, PUNCT
I PRON
'd AUX
be AUX
more ADJ
concernedabout NOUN
heart NOUN
disease NOUN
secondary ADJ
to ADP
smoking NOUN
-- PUNCT
it PRON
's AUX
much ADV
more ADV
common ADJ
, PUNCT
andeven ADV
a DET
small ADJ
increase NOUN
in ADP
risk NOUN
is AUX
significant ADJ
there.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58059From NUM
: PUNCT
kxgst1@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
BreatheDavid PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
[ PUNCT
reply NOUN
to ADP
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
] PUNCT
: PUNCT
  SPACE
: PUNCT
> X
While SCONJ
you PRON
're AUX
right ADJ
that SCONJ
the DET
S PROPN
vertebrae NOUN
are AUX
attached VERB
to ADP
each DET
other ADJ
, PUNCT
: PUNCT
> X
the DET
sacrum NOUN
, PUNCT
to ADP
my PRON
knowledge NOUN
, PUNCT
* PUNCT
can AUX
* PUNCT
be AUX
adjusted VERB
either ADV
directly ADV
, PUNCT
or CCONJ
: PUNCT
> X
by ADP
applying VERB
pressure NOUN
on ADP
the DET
pubic ADJ
bone NOUN
... PUNCT
: PUNCT
  SPACE
: PUNCT
Ron PROPN
, PUNCT
you PRON
're AUX
an DET
endless ADJ
source NOUN
of ADP
misinformation NOUN
! PUNCT
  SPACE
There PRON
ARE VERB
no DET
sacral NOUN
: PUNCT
vertebrae PROPN
. PUNCT
  SPACE
There PRON
is AUX
a DET
bone NOUN
called VERB
the DET
sacrum NOUN
at ADP
the DET
end NOUN
of ADP
the DET
spine NOUN
. PUNCT
: PUNCT
It PRON
is AUX
a DET
single ADJ
, PUNCT
solid ADJ
bone NOUN
except SCONJ
in ADP
a DET
few ADJ
patients NOUN
who PRON
have AUX
a DET
: PUNCT
lumbarized VERB
S1 PROPN
as SCONJ
a DET
normal ADJ
variant NOUN
. PUNCT
  SPACE
How ADV
do AUX
you PRON
adjust VERB
a DET
solid ADJ
bone NOUN
, PUNCT
: PUNCT
break VERB
it PRON
? PUNCT
  SPACE
No INTJ
, PUNCT
do AUX
n't PART
tell VERB
me PRON
, PUNCT
I PRON
do AUX
n't PART
want VERB
to PART
know VERB
. PUNCT
: PUNCT
  SPACE
Oh INTJ
come VERB
now ADV
, PUNCT
surely ADV
you PRON
know VERB
he PRON
only ADV
meant VERB
to PART
measure VERB
the DET
flow NOUN
ofelectromagnetic ADJ
energy NOUN
about ADP
the DET
sacrum NOUN
and CCONJ
then ADV
adjust VERB
these DET
flowswith NOUN
a DET
crystal NOUN
of ADP
chromium NOUN
applied VERB
to ADP
the DET
right ADJ
great ADJ
toe NOUN
. PUNCT
  SPACE
Don'tyou PROPN
know VERB
anything?--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NUM
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58060From NUM
: PUNCT
euclid@mrcnext.cso.uiuc.edu PROPN
( PUNCT
Euclid PROPN
K.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Anti ADJ
- ADJ
Viral ADJ
Herbskxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>Unfortunately ADV
it PRON
was AUX
rather ADV
poorly ADV
researched VERB
, PUNCT
and CCONJ
would AUX
not PART
be AUX
available ADJ
> X
today NOUN
if SCONJ
it PRON
were AUX
just ADV
invented VERB
. PUNCT
  SPACE
Keep VERB
in ADP
mind NOUN
however ADV
that SCONJ
those DET
were AUX
> X
the DET
days NOUN
when ADV
a DET
bottle NOUN
of ADP
Coca PROPN
Cola PROPN
really ADV
did AUX
contain VERB
coca NOUN
extract NOUN
and CCONJ
> X
a DET
certain ADJ
amount NOUN
of ADP
active ADJ
cocaine NOUN
. PUNCT
  SPACE
Times PROPN
have AUX
changed VERB
, PUNCT
and CCONJ
our PRON
attitudes NOUN
> X
need VERB
to PART
change VERB
with ADP
them PRON
. PUNCT
Well INTJ
, PUNCT
yes INTJ
. PUNCT
  SPACE
That DET
was AUX
a DET
part NOUN
of ADP
my PRON
point NOUN
. PUNCT
  SPACE
Aspirin PROPN
has AUX
its PRON
problems NOUN
, PUNCT
butin VERB
some DET
situations NOUN
it PRON
is AUX
useful ADJ
. PUNCT
  SPACE
Ditto PROPN
stuff NOUN
like SCONJ
licorice NOUN
root NOUN
. PUNCT
  SPACE
Takinganything VERB
as SCONJ
a DET
drug NOUN
for ADP
theraputic ADJ
purposes NOUN
implicitly ADV
carries VERB
the DET
ideaof NOUN
taking VERB
a DET
dose NOUN
where ADV
the DET
benefits NOUN
are AUX
not PART
exceeded VERB
by ADP
any DET
unwanted ADJ
, PUNCT
additional ADJ
effects NOUN
. PUNCT
  SPACE
Taking VERB
any DET
drug NOUN
when ADV
the DET
potential ADJ
ill ADJ
- PUNCT
effects NOUN
arenot NOUN
known VERB
is AUX
a DET
risk NOUN
assumed VERB
by ADP
the DET
parties NOUN
involved VERB
, PUNCT
and CCONJ
it PRON
may AUX
be AUX
thatin NOUN
a DET
given VERB
situation NOUN
the DET
risk NOUN
is AUX
worthwhile ADJ
. PUNCT
   SPACE
Like SCONJ
Prozac PROPN
, PUNCT
for ADP
instance NOUN
; PUNCT
Prozac PROPN
has AUX
been AUX
shown VERB
to PART
be AUX
theraputic ADJ
insome ADJ
cases NOUN
where ADV
the DET
tri ADJ
- PUNCT
cyclics NOUN
fail NOUN
. PUNCT
  SPACE
But CCONJ
Prozac PROPN
has AUX
n't PART
been AUX
in ADP
usethat DET
long ADV
, PUNCT
and CCONJ
it PRON
really ADV
is AUX
n't PART
clear ADJ
what PRON
if SCONJ
any DET
effects NOUN
it PRON
may AUX
havewhen VERB
taken VERB
over ADP
long ADJ
periods NOUN
of ADP
time NOUN
, PUNCT
even ADV
though SCONJ
it PRON
has AUX
been AUX
testedby ADJ
present ADJ
day NOUN
standards NOUN
. PUNCT
  SPACE
Should AUX
Prozac PROPN
be AUX
taken VERB
off ADP
the DET
market NOUN
becauselong ADJ
- PUNCT
term NOUN
effects NOUN
, PUNCT
if SCONJ
any DET
, PUNCT
are AUX
not PART
known VERB
? PUNCT
  SPACE
IMHO PROPN
, PUNCT
i PRON
'd AUX
say VERB
no.euclid>=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>= PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
                SPACE
| PROPN
          SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
> X
= SYM
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
    SPACE
--*-- PROPN
        SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
             SPACE
= SYM
> X
= SYM
  SPACE
kxgst1+@pitt.edu PROPN
               SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= PUNCT
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>-- PUNCT
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>= PUNCT
  SPACE
Kenneth PROPN
Gilbert PROPN
                SPACE
| PROPN
          SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
> X
= SYM
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
    SPACE
--*-- PROPN
        SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
             SPACE
= SYM
> X
= SYM
  SPACE
kxgst1+@pitt.edu PROPN
               SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
--Euclid PUNCT
K. PROPN
       SPACE
standard ADJ
disclaimers NOUN
apply"It PROPN
is AUX
a DET
bit NOUN
ironic ADJ
that SCONJ
we PRON
need VERB
the DET
wave NOUN
model NOUN
[ PUNCT
of ADP
light NOUN
] PUNCT
to PART
understand VERB
thepropagation NOUN
of ADP
light NOUN
only ADV
through ADP
that DET
part NOUN
of ADP
the DET
system NOUN
where ADV
it PRON
leaves VERB
notrace NOUN
. PUNCT
" PUNCT
  SPACE
--Hudson PROPN
& CCONJ
Nelson PROPN
( PUNCT
_ PROPN
University_Physics_)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58061From NUM
: PUNCT
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare)Subject PROPN
: PUNCT
ringing VERB
earsA PROPN
friend NOUN
of ADP
mine NOUN
has AUX
a DET
trouble NOUN
with ADP
her PRON
ears NOUN
ringing VERB
. PUNCT
  SPACE
The DET
ringing VERB
is AUX
so ADV
loudthat ADP
she PRON
has AUX
great ADJ
difficulty NOUN
sleeping VERB
at ADP
night NOUN
. PUNCT
  SPACE
She PRON
says VERB
that SCONJ
she PRON
has AUX
n't PART
had VERB
a DET
normal ADJ
night NOUN
's PART
sleep NOUN
in ADP
about ADV
6 NUM
months NOUN
( PUNCT
she PRON
looks VERB
like SCONJ
it PRON
too ADV
: PUNCT
-().This PUNCT
is AUX
making VERB
her PRON
depressed ADJ
so SCONJ
her PRON
doctor NOUN
has AUX
put VERB
her PRON
on ADP
anti NOUN
- NOUN
depressants NOUN
. PUNCT
The DET
ringing NOUN
started VERB
rather ADV
suddenly ADV
about ADV
6 NUM
months NOUN
ago ADV
. PUNCT
  SPACE
She PRON
is AUX
quickly ADV
losingsleep ADJ
, PUNCT
social ADJ
life NOUN
and CCONJ
sanity NOUN
over ADP
this DET
. PUNCT
Does AUX
anyone PRON
know VERB
of ADP
any DET
treatments NOUN
for ADP
this DET
? PUNCT
  SPACE
Any DET
experience NOUN
? PUNCT
  SPACE
Copingmechanisms PROPN
? PUNCT
  SPACE
Any DET
opinions NOUN
on ADP
the DET
anti ADJ
- ADJ
depressant ADJ
drugs NOUN
? PUNCT
                                              SPACE
[ PUNCT
J.F.]Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58062From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Twitching VERB
eyelidI'm PROPN
surprised VERB
nobody PRON
mentioned VERB
that SCONJ
twitching NOUN
of ADP
the DET
eyelid NOUN
can AUX
be AUX
asymptom ADP
of ADP
an DET
infection NOUN
, PUNCT
especially ADV
if SCONJ
it PRON
also ADV
itches VERB
or CCONJ
stings.(It PROPN
happened VERB
to ADP
me PRON
, PUNCT
and CCONJ
antibiotic ADJ
eyedrops NOUN
cleared VERB
it PRON
up ADP
nicely.)-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
         SPACE
internet NOUN
mcovingt@ai.uga.edu PROPN
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
       SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
                SPACE
fax NOUN
706 NUM
542 NUM
- PUNCT
0349 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58063From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
fibromyalgiaIn ADV
article NOUN
< X
93Apr5.133521edt.1231@smoke.cs.toronto.edu NUM
> X
craig@cs.toronto.edu PROPN
( PUNCT
Craig PROPN
MacDonald PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
  SPACE
It PRON
may AUX
be AUX
extremely>>common ADJ
, PUNCT
something PRON
like SCONJ
5 NUM
% NOUN
of ADP
the DET
population NOUN
. PUNCT
  SPACE
It PRON
is AUX
treatable ADJ
with>>tricyclic SYM
antidepressant ADJ
- PUNCT
type NOUN
drugs NOUN
( PUNCT
Elavil PROPN
, PUNCT
Pamelor PROPN
) PUNCT
. PUNCT
  SPACE
> X
> X
Why ADV
is AUX
it PRON
treated VERB
with ADP
antidepressants NOUN
? PUNCT
  SPACE
Is AUX
it PRON
considered VERB
a DET
> X
psychogenic ADJ
condition?No PROPN
. PUNCT
  SPACE
That SCONJ
these DET
drugs NOUN
happen VERB
to PART
be AUX
useful ADJ
as SCONJ
antidepressants NOUN
is AUX
neitherhere ADV
nor CCONJ
there.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58064From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Analgesics PROPN
with ADP
DiureticsIn PROPN
article NOUN
< X
ofk=lve00WB2AvUktO@andrew.cmu.edu PROPN
> X
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu NOUN
> X
writes:>I INTJ
sometimes ADV
see VERB
OTC PROPN
preparations NOUN
for ADP
muscle NOUN
aches NOUN
/ SYM
back NOUN
aches NOUN
that SCONJ
> X
combine VERB
aspirin NOUN
with ADP
a DET
diuretic NOUN
. PUNCT
You PRON
certainly ADV
do AUX
not PART
see VERB
OTC PROPN
preparations NOUN
advertised VERB
as SCONJ
such ADJ
. PUNCT
The DET
only ADJ
such ADJ
ridiculous ADJ
concoctions NOUN
are AUX
nostrums ADJ
for ADP
premenstrualsyndrome NOUN
, PUNCT
ostensibly ADV
to PART
treat VERB
headache NOUN
and CCONJ
" PUNCT
bloating VERB
" PUNCT
simultaneously ADV
. PUNCT
They're PROPN
worthless.>The NOUN
idea NOUN
seems VERB
to PART
be AUX
to PART
reduce VERB
> X
inflammation NOUN
by ADP
getting VERB
rid VERB
of ADP
fluid NOUN
. PUNCT
Does AUX
this DET
actually ADV
work VERB
? PUNCT
That DET
's AUX
not PART
the DET
idea NOUN
, PUNCT
and CCONJ
no INTJ
, PUNCT
they PRON
do AUX
n't PART
work.-- VERB
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58065From NUM
: PUNCT
jmilhoan@magnus.acs.ohio-state.edu PROPN
( PUNCT
JT)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
ringing VERB
earsIn NUM
article NOUN
< X
10893@ncrwat NUM
. PUNCT
Waterloo PROPN
. PUNCT
NCR.COM PROPN
> X
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare PROPN
) PUNCT
writes:>>>A DET
friend NOUN
of ADP
mine NOUN
has AUX
a DET
trouble NOUN
with ADP
her PRON
ears NOUN
ringing VERB
. PUNCT
  SPACE
The DET
ringing VERB
is AUX
so ADV
loud ADJ
> X
that SCONJ
she PRON
has AUX
great ADJ
difficulty NOUN
sleeping VERB
at ADP
night NOUN
. PUNCT
  SPACE
She PRON
says VERB
that SCONJ
she PRON
has AUX
n't PART
> X
had AUX
a DET
normal ADJ
night NOUN
's PART
sleep NOUN
in ADP
about ADV
6 NUM
months NOUN
( PUNCT
she PRON
looks VERB
like SCONJ
it PRON
too ADV
: PUNCT
-().>This PRON
is AUX
making VERB
her PRON
depressed ADJ
so SCONJ
her PRON
doctor NOUN
has AUX
put VERB
her PRON
on ADP
anti NOUN
- NOUN
depressants NOUN
. PUNCT
Sometimes ADV
I PRON
have AUX
a DET
problem NOUN
with ADP
doctor NOUN
's PART
prescribing ADJ
medicine NOUN
likethis NOUN
. PUNCT
  SPACE
I PRON
of ADP
course NOUN
do AUX
n't PART
know VERB
the DET
exact ADJ
situation NOUN
, PUNCT
andanti ADJ
- NOUN
depressants NOUN
may AUX
work VERB
, PUNCT
but CCONJ
it PRON
is AUX
n't PART
helping VERB
the DET
ringing NOUN
at ADV
all ADV
, PUNCT
is AUX
it?>The DET
ringing NOUN
started VERB
rather ADV
suddenly ADV
about ADV
6 NUM
months NOUN
ago ADV
. PUNCT
  SPACE
She PRON
is AUX
quickly ADV
losing VERB
> X
sleep NOUN
, PUNCT
social ADJ
life NOUN
and CCONJ
sanity NOUN
over ADP
this DET
. PUNCT
Mine PRON
started VERB
about ADV
three NUM
years NOUN
back ADV
. PUNCT
  SPACE
Turns VERB
out ADP
I PRON
have AUX
tinnitusbilateral ADJ
( PUNCT
translation NOUN
: PUNCT
ringing VERB
in ADP
both DET
ears NOUN
, PUNCT
basically ADV
;) NOUN
. PUNCT
  SPACE
If SCONJ
thisis NOUN
what PRON
it PRON
is AUX
, PUNCT
she PRON
'll AUX
probably ADV
get AUX
used ADJ
to ADP
it PRON
. PUNCT
  SPACE
It PRON
would AUX
keep VERB
me PRON
upand ADJ
drive VERB
me PRON
nuts NOUN
too ADV
, PUNCT
but CCONJ
nowadays ADV
, PUNCT
I PRON
have AUX
to PART
plug VERB
both CCONJ
my PRON
ears NOUN
withmy VERB
fingers NOUN
to PART
check VERB
to PART
see VERB
if SCONJ
they PRON
are AUX
ringing VERB
. PUNCT
  SPACE
Usually ADV
they PRON
are AUX
, PUNCT
butyou ADJ
get VERB
so ADV
used ADJ
to ADP
it PRON
, PUNCT
it PRON
just ADV
gets VERB
tuned VERB
out ADP
. PUNCT
  SPACE
Yes INTJ
, PUNCT
this DET
is AUX
what PRON
I'veread PROPN
about ADP
it PRON
... PUNCT
not PART
just ADV
from ADP
my PRON
own ADJ
personal ADJ
experience.>Does NOUN
anyone PRON
know VERB
of ADP
any DET
treatments NOUN
for ADP
this DET
? PUNCT
  SPACE
Any DET
experience NOUN
? PUNCT
  SPACE
Coping VERB
> X
mechanisms NOUN
? PUNCT
  SPACE
Any DET
opinions NOUN
on ADP
the DET
anti ADJ
- ADJ
depressant ADJ
drugs?Millions NOUN
have AUX
it PRON
, PUNCT
according VERB
to ADP
my PRON
physician NOUN
. PUNCT
  SPACE
You PRON
just ADV
learn VERB
to ADP
copewith PROPN
it PRON
( PUNCT
like SCONJ
I PRON
mentioned VERB
earlier ADV
) PUNCT
by ADP
ignoring VERB
it PRON
. PUNCT
  SPACE
It PRON
eventuallybecomes VERB
unconscious ADJ
. PUNCT
The DET
doc NOUN
also ADV
said VERB
it PRON
could AUX
be AUX
caused VERB
by ADP
diet PROPN
( PUNCT
ie PROPN
: PUNCT
too ADV
much ADJ
caffeine)and PROPN
stress NOUN
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
changed VERB
my PRON
lifestyle NOUN
much ADJ
, PUNCT
and CCONJ
it PRON
just ADV
comesand VERB
goes VERB
( PUNCT
it PRON
is AUX
always ADV
there ADV
somewhat ADV
, PUNCT
but CCONJ
now ADV
I PRON
rarely ADV
notice VERB
it PRON
whenit ADV
really ADV
" PUNCT
kicks NOUN
in").Also ADV
, PUNCT
it PRON
does AUX
n't PART
necessarily ADV
mean VERB
there PRON
is AUX
any DET
hearing NOUN
loss NOUN
, PUNCT
eithercaused VERB
by ADP
it PRON
or CCONJ
causing VERB
it PRON
. PUNCT
  SPACE
I PRON
had AUX
an DET
ENT PROPN
( PUNCT
ear NOUN
/ SYM
nose NOUN
/ SYM
throat NOUN
) PUNCT
exam NOUN
, PUNCT
andpassed VERB
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
my PRON
hearing NOUN
is AUX
quite ADV
good ADJ
considering VERB
I PRON
do AUX
n't PART
take VERB
asgood NOUN
of ADP
care NOUN
of ADP
my PRON
hearing NOUN
as SCONJ
I PRON
should AUX
. PUNCT
Her PRON
reaction NOUN
is AUX
normal ADJ
. PUNCT
  SPACE
If SCONJ
it PRON
is AUX
tinnitus ADJ
, PUNCT
chances NOUN
are AUX
good ADJ
she'llbegin ADV
to PART
not PART
even ADV
notice VERB
it PRON
. PUNCT
  SPACE
This DET
info NOUN
is AUX
taken VERB
mostly ADV
from ADP
a DET
few ADJ
" PUNCT
experts NOUN
" PUNCT
, PUNCT
my PRON
own ADJ
experience NOUN
, PUNCT
andsome ADJ
readings NOUN
( PUNCT
sorry INTJ
, PUNCT
it PRON
was AUX
a DET
few ADJ
years NOUN
back ADV
and CCONJ
do AUX
n't PART
have AUX
anyspecifics NOUN
handy).JTNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58066From NUM
: PUNCT
amigan@cup.portal.com PROPN
( PUNCT
Mike PROPN
- PUNCT
Medwid)Subject PROPN
: PUNCT
Emphysema PROPN
questionA PROPN
friend NOUN
of ADP
mine NOUN
is AUX
going VERB
in ADP
later ADV
this DET
week NOUN
for ADP
tests NOUN
to PART
see VERB
if SCONJ
hasemphysema NOUN
. PUNCT
  SPACE
His PRON
lung NOUN
capacity NOUN
has AUX
decreased VERB
over ADP
time NOUN
. PUNCT
  SPACE
His PRON
father NOUN
diedof VERB
the DET
disease NOUN
. PUNCT
  SPACE
He PRON
works VERB
in ADP
woodworking NOUN
. PUNCT
  SPACE
I PRON
believe VERB
he PRON
has AUX
a DET
veryoccasional ADJ
cigarette NOUN
, PUNCT
perhaps ADV
one NUM
cigarette NOUN
a DET
day NOUN
or CCONJ
even ADV
less ADJ
. PUNCT
  SPACE
He PRON
tellsme VERB
this DET
.. PUNCT
I've PROPN
never ADV
seen VERB
him PRON
light VERB
up ADP
. PUNCT
  SPACE
He PRON
has AUX
some DET
pretty ADJ
healthylife NOUN
style NOUN
habits NOUN
, PUNCT
good ADJ
diet NOUN
, PUNCT
exercise NOUN
, PUNCT
meditation NOUN
, PUNCT
retreats NOUN
, PUNCT
therapyetc PROPN
. PUNCT
  SPACE
Anyhow ADV
.. PUNCT
he PRON
is AUX
very ADV
concerned ADJ
with ADP
this DET
check NOUN
up ADP
. PUNCT
  SPACE
I PRON
know VERB
reallynothing VERB
about ADP
the DET
disease NOUN
. PUNCT
  SPACE
I PRON
believe VERB
it PRON
interferes VERB
with ADP
the DET
liningof NOUN
the DET
lung NOUN
being AUX
able ADJ
to PART
exchange VERB
oxygen NOUN
. PUNCT
  SPACE
Is AUX
a DET
diagnosis NOUN
of ADP
emphysema PROPN
a DET
death NOUN
sentence NOUN
? PUNCT
  SPACE
If SCONJ
he PRON
were AUX
to PART
give VERB
up ADP
smokingentirely ADV
would AUX
that DET
better VERB
his PRON
chances NOUN
for ADP
recovery NOUN
? PUNCT
  SPACE
What PRON
are AUX
some DET
modern ADJ
therapies NOUN
used VERB
in ADP
people NOUN
with ADP
this DET
disease NOUN
? PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
Thanks INTJ
. PUNCT
  SPACE
amigan@cup.portal.comNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58067From NUM
: PUNCT
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare)Subject NUM
: PUNCT
Re ADP
: PUNCT
Oily ADJ
skin NOUN
- PUNCT
problem?In NOUN
article NOUN
< X
1993Apr5.044140.1@vaxc.stevens-tech.edu NUM
> X
u92_hwong@vaxc.stevens-tech.edu NOUN
writes VERB
: PUNCT
> X
	 SPACE
I PRON
have AUX
a DET
very ADV
oily ADJ
skin NOUN
. PUNCT
  SPACE
My PRON
problem NOUN
is AUX
when ADV
I PRON
wash VERB
my PRON
face NOUN
, PUNCT
it PRON
becomes VERB
> X
oily ADV
in ADP
half DET
an DET
hour NOUN
. PUNCT
  SPACE
Especially ADV
in ADP
the DET
nose NOUN
region NOUN
. PUNCT
  SPACE
Is AUX
this DET
an DET
illness NOUN
? PUNCT
  SPACE
How ADV
> X
can AUX
I PRON
prevent VERB
it PRON
from ADP
occuring VERB
in ADP
such ADJ
short ADJ
time NOUN
? PUNCT
  SPACE
Is AUX
there PRON
a DET
cleanser NOUN
out ADP
> X
there ADV
that PRON
will AUX
do AUX
a DET
better ADJ
job NOUN
-- PUNCT
that DET
is AUX
after ADP
cleaning VERB
, PUNCT
my PRON
face NOUN
wo AUX
n't PART
become VERB
> X
oily ADV
in ADP
such DET
a DET
short ADJ
time NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
that DET
's AUX
a DET
problem NOUN
. PUNCT
  SPACE
My PRON
face NOUN
is AUX
quite ADV
oily ADJ
too ADV
. PUNCT
  SPACE
I PRON
had AUX
a DET
moderateacne NOUN
problem NOUN
for ADP
many ADJ
years NOUN
. PUNCT
  SPACE
I PRON
then ADV
found VERB
that SCONJ
if SCONJ
I PRON
vigorously ADV
scrub VERB
my PRON
facewith NOUN
a DET
nail NOUN
brush NOUN
and CCONJ
soap NOUN
( PUNCT
Irish PROPN
Spring PROPN
) PUNCT
twice DET
a DET
day NOUN
the DET
acne NOUN
was AUX
not PART
a DET
problem NOUN
. PUNCT
  SPACE
I PRON
can AUX
still ADV
leave VERB
a DET
pretty ADJ
health NOUN
nose NOUN
print NOUN
on ADP
a DET
mirror NOUN
after ADP
45 NUM
min(don't PROPN
ask VERB
; PUNCT
- PUNCT
> X
) PUNCT
but CCONJ
acne PROPN
is AUX
not PART
a DET
real ADJ
problem NOUN
anymore ADV
. PUNCT
                                           SPACE
[ PUNCT
J.F.]Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58069From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Migraines NOUN
and CCONJ
scansDN PROPN
> X
From ADP
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)DN NOUN
> X
A DET
neurologyDN SYM
> X
consultation NOUN
is AUX
cheaper ADJ
than SCONJ
a DET
scan NOUN
. PUNCT
And CCONJ
also ADV
better ADV
, PUNCT
because SCONJ
a DET
neurologist NOUN
can AUX
make VERB
a DET
differentialdiagnosis NOUN
between ADP
migraine NOUN
, PUNCT
tension NOUN
- PUNCT
type NOUN
headache NOUN
, PUNCT
cluster NOUN
, PUNCT
benignintracranial ADJ
hypertension NOUN
, PUNCT
chronic PROPN
paroxysmal ADJ
hemicrania PROPN
, PUNCT
and CCONJ
otherheadache PROPN
syndromes VERB
that SCONJ
all DET
appear VERB
normal ADJ
on ADP
a DET
scan NOUN
. PUNCT
  SPACE
A DET
neurologistcan PROPN
also ADV
recommend VERB
a DET
course NOUN
of ADP
treatment NOUN
that PRON
is AUX
appropriate ADJ
to ADP
thediagnosis NOUN
. PUNCT
DN PROPN
> X
> X
> X
Also ADV
, PUNCT
since SCONJ
many ADJ
people NOUN
are AUX
convinced ADJ
they PRON
have AUX
brain NOUN
tumors NOUN
or CCONJ
otherDN NOUN
> X
> X
> X
serious ADJ
pathology NOUN
, PUNCT
it PRON
may AUX
be AUX
cheaper ADJ
to PART
just ADV
get AUX
a DET
CT NOUN
scan AUX
then ADV
haveDN PROPN
> X
> X
> X
them PRON
come VERB
into ADP
the DET
ER PROPN
every DET
few ADJ
weeks NOUN
. PUNCT
DN PROPN
> X
And CCONJ
easier ADJ
than SCONJ
taking VERB
the DET
time NOUN
to PART
reassure VERB
the DET
patient NOUN
, PUNCT
right?DN VERB
> X
Personally ADV
, PUNCT
I PRON
do AUX
n't PART
think VERB
this DET
can AUX
ever ADV
be AUX
justified VERB
. PUNCT
Sigh ADJ
. PUNCT
  SPACE
It PRON
may AUX
never ADV
be AUX
justifiable ADJ
, PUNCT
but CCONJ
I PRON
sometimes ADV
do AUX
it PRON
. PUNCT
  SPACE
Evenafter PROPN
I PRON
try VERB
to PART
show VERB
thoroughness NOUN
with ADP
a DET
detailed ADJ
history NOUN
, PUNCT
neurologicexamination NOUN
, PUNCT
and CCONJ
discussion NOUN
with ADP
the DET
patient NOUN
about ADP
my PRON
diagnosis NOUN
, PUNCT
salted VERB
with ADP
lots NOUN
of ADP
reassurance NOUN
, PUNCT
patients NOUN
still ADV
ask VERB
" PUNCT
why ADV
ca AUX
n't PART
youorder VERB
a DET
scan NOUN
, PUNCT
so SCONJ
we PRON
can AUX
be AUX
absolutely ADV
sure ADJ
? PUNCT
" PUNCT
  SPACE
Aunt PROPN
Millie PROPN
often ADV
getsinto VERB
the DET
conversation NOUN
, PUNCT
as SCONJ
in ADP
" PUNCT
they PRON
ignored VERB
Aunt PROPN
Millie PROPN
's PART
headachesfor NOUN
years NOUN
" PUNCT
, PUNCT
and CCONJ
then ADV
she PRON
died VERB
of ADP
a DET
brain NOUN
tumor NOUN
, PUNCT
aneurysm PROPN
, PUNCT
orwhatever NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
away ADV
without ADP
ever ADV
ordering VERB
imaging VERB
for ADP
apatient NOUN
with ADP
an DET
obviously ADV
benign ADJ
headache NOUN
syndrome NOUN
, PUNCT
I PRON
'd AUX
like VERB
to ADP
hearwhat VERB
your PRON
magic NOUN
is AUX
. PUNCT
Every ADV
once ADV
in ADP
a DET
while NOUN
I PRON
am AUX
able ADJ
to PART
bypass VERB
imaging VERB
by ADP
getting VERB
an DET
EEG.Mind NOUN
you PRON
, PUNCT
I PRON
do AUX
n't PART
think VERB
EEG PROPN
is AUX
terribly ADV
sensitive ADJ
for ADP
brain NOUN
tumor NOUN
, PUNCT
but CCONJ
the DET
patient NOUN
feels VERB
like SCONJ
" PUNCT
something PRON
is AUX
being AUX
done VERB
" PUNCT
( PUNCT
as SCONJ
if SCONJ
thehours NOUN
I PRON
spent VERB
talking VERB
with ADP
and CCONJ
examining VERB
the DET
patient NOUN
were"nothing NOUN
" PUNCT
) PUNCT
, PUNCT
the DET
EEG PROPN
has AUX
no DET
ionizing VERB
radiation NOUN
, PUNCT
it PRON
's AUX
* PUNCT
much ADJ
* PUNCT
cheaperthan PROPN
CT PROPN
or CCONJ
MRI PROPN
, PUNCT
and CCONJ
the DET
EEG PROPN
brings VERB
in ADP
some DET
money NOUN
to ADP
my PRON
department.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                         SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58070From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
migraine NOUN
and CCONJ
exerciseJL PROPN
> X
From ADP
: PUNCT
jlecher@pbs.orgJL X
> X
> X
I PRON
would AUX
not PART
classify VERB
a DET
mild ADJ
headache NOUN
that PRON
was AUX
continuous ADJ
for ADP
weeksJL PROPN
> X
> X
as SCONJ
migraine ADJ
, PUNCT
even ADV
if SCONJ
the DET
other ADJ
typical ADJ
features NOUN
were AUX
there ADV
( PUNCT
e.g PROPN
. PROPN
,JL PUNCT
> X
> X
unilateral PROPN
, PUNCT
nausea NOUN
and CCONJ
vomiting NOUN
, PUNCT
photophobia PROPN
) PUNCT
. PUNCT
  SPACE
Migraines NOUN
are AUX
, PUNCT
byJL PROPN
> X
> X
common PROPN
agreement PROPN
, PUNCT
episodic PROPN
rather ADV
than SCONJ
constant ADJ
. PUNCT
JL PROPN
> X
> X
JL PROPN
> X
Well INTJ
, PUNCT
I PRON
'm AUX
glad ADJ
that SCONJ
you PRON
are AUX
n't PART
my PRON
doctor NOUN
, PUNCT
then ADV
, PUNCT
or CCONJ
I PRON
'd AUX
still ADV
be AUX
suffering VERB
. PUNCT
JL PROPN
> X
Remember VERB
, PUNCT
I PRON
was AUX
tested VERB
for ADP
any DET
other ADJ
cause NOUN
, PUNCT
and CCONJ
there PRON
was AUX
nothing PRON
. PUNCT
I'mJL PROPN
> X
otherwise ADV
very ADV
healthy ADJ
. PUNCT
JL PROPN
> X
The DET
nagging ADJ
pain NOUN
has AUX
all DET
of ADP
the DET
qualifications NOUN
: PUNCT
it PRON
's AUX
on ADP
one NUM
side NOUN
, PUNCT
andJL X
> X
frequently ADV
included VERB
my PRON
entire ADJ
right ADJ
side NOUN
: PUNCT
right ADJ
arm NOUN
, PUNCT
right ADJ
leg NOUN
, PUNCT
right ADJ
eye NOUN
, PUNCT
JL PROPN
> X
even ADV
the DET
right ADJ
side NOUN
of ADP
my PRON
tongue NOUN
hurt VERB
or CCONJ
tingled VERB
. PUNCT
Noise NOUN
hurt NOUN
, PUNCT
light ADJ
hurt NOUN
, PUNCT
JL PROPN
> X
thinking NOUN
hurt VERB
. PUNCT
When ADV
it PRON
got VERB
bad ADJ
, PUNCT
I PRON
would AUX
lose VERB
my PRON
ability NOUN
to PART
read VERB
. PUNCT
The DET
differential ADJ
diagnosis NOUN
between ADP
migraine NOUN
and CCONJ
non ADJ
- ADJ
migranous ADJ
painis NOUN
not PART
* PUNCT
always ADV
* PUNCT
important ADJ
, PUNCT
because SCONJ
some DET
therapies NOUN
are AUX
effective ADJ
inboth NOUN
( PUNCT
e.g. ADV
, PUNCT
tricyclic ADJ
antidepressants NOUN
such ADJ
as SCONJ
amitriptyline ADV
, PUNCT
non ADJ
- ADJ
steroidal ADJ
anti ADJ
- ADJ
inflammatory ADJ
drugs NOUN
such ADJ
as SCONJ
ibuprofen PROPN
) PUNCT
. PUNCT
  SPACE
Othertherapies NOUN
may AUX
be AUX
more ADV
specific ADJ
: PUNCT
beta NOUN
- PUNCT
blockers NOUN
such ADJ
as SCONJ
propranololwork NOUN
better ADV
in ADP
migraine NOUN
than SCONJ
tension NOUN
- PUNCT
type NOUN
headache NOUN
. PUNCT
The DET
most ADV
important ADJ
thing NOUN
, PUNCT
from ADP
your PRON
perspective NOUN
, PUNCT
is AUX
that SCONJ
you PRON
gotrelief VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
please INTJ
understand VERB
that SCONJ
a DET
diagnosis NOUN
other ADJ
thanmigraine NOUN
does AUX
not PART
necessarily ADV
mean VERB
" PUNCT
psychogenic ADJ
" PUNCT
; PUNCT
I PRON
suspect VERB
thatorganic NOUN
factors NOUN
play VERB
as SCONJ
large ADJ
a DET
role NOUN
in ADP
tension NOUN
- PUNCT
type NOUN
headache NOUN
as SCONJ
inmigraine.--- ADJ
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58071From NUM
: PUNCT
julkunen@messi.uku.fi PROPN
( PUNCT
Antero NOUN
Julkunen)Subject NUM
: PUNCT
What PRON
about ADP
sci.med.chemistryThere NOUN
is AUX
this DET
newsgroup NOUN
sci.med.physics PROPN
and CCONJ
there PRON
has AUX
been AUX
quite DET
a DET
lotdiscussion NOUN
in ADP
this DET
group NOUN
about ADP
many ADJ
chemical NOUN
items NOUN
e.g. DET
prolactincholesterol NOUN
, PUNCT
TSH ADP
etc X
. PUNCT
Should AUX
there PRON
also ADV
be AUX
a DET
newsgroup NOUN
sci.med.chemistry?-- NOUN
Antero PROPN
Julkunen PROPN
, PUNCT
Dept PROPN
Clinical PROPN
Chemistry PROPN
, PUNCT
University PROPN
of ADP
Kuopio PROPN
, PUNCT
Finlande PROPN
- PUNCT
mail NOUN
: PUNCT
julkunen@messi.uku.fi PROPN
, PUNCT
phone NOUN
+358 PROPN
- PUNCT
71 NUM
- PUNCT
162680 NUM
, PUNCT
fax NOUN
+358 PROPN
- PUNCT
71 NUM
- PUNCT
162020Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58072From NUM
: PUNCT
kturner@copper.denver.colorado.edu NOUN
( PUNCT
Kathleen PROPN
J PROPN
Turner)Subject PROPN
: PUNCT
Mystery NOUN
Illness PROPN
with ADP
eye NOUN
problems NOUN
	 SPACE
A DET
friend NOUN
has AUX
the DET
following VERB
symptoms NOUN
which PRON
have AUX
occurred VERB
periodicallyevery NOUN
few ADJ
months NOUN
for ADP
the DET
last ADJ
3 NUM
years NOUN
. PUNCT
  SPACE
An DET
episode NOUN
begins VERB
with ADP
extremetiredness NOUN
followed VERB
by ADP
: PUNCT
	 SPACE
1 NUM
. PUNCT
traveling VERB
joint ADJ
pains NOUN
and CCONJ
stiffness NOUN
affecting VERB
mostly ADV
the DET
elbows NOUN
, PUNCT
	 SPACE
knees NOUN
, PUNCT
and CCONJ
hips NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
generalized ADJ
muscle NOUN
pains NOUN
	 SPACE
3 NUM
. PUNCT
tinnitus NOUN
and CCONJ
a DET
feeling NOUN
of ADP
pressure NOUN
in ADP
her PRON
ears NOUN
	 SPACE
4 NUM
. PUNCT
severe ADJ
sweating NOUN
occuring VERB
both CCONJ
at ADP
night NOUN
and CCONJ
during ADP
the DET
day NOUN
	 SPACE
5 NUM
. PUNCT
hemorrhaging VERB
in ADP
both DET
eyes NOUN
. PUNCT
  SPACE
Her PRON
opthamologist NOUN
calls VERB
it PRON
peripheral ADJ
   SPACE
retinal ADJ
hemorhages NOUN
and CCONJ
says VERB
it PRON
looks VERB
similar ADJ
to ADP
diabetic ADJ
retinopathy PROPN
. PUNCT
  SPACE
( PUNCT
She PRON
        SPACE
is AUX
n't PART
diabetic ADJ
-- PUNCT
they PRON
checked VERB
. PUNCT
	 SPACE
6 NUM
. PUNCT
distorted VERB
color NOUN
vision NOUN
and CCONJ
distorted VERB
vision NOUN
in ADP
general ADJ
( PUNCT
telephone NOUN
	    SPACE
poles NOUN
do AUX
not PART
appear VERB
to PART
be AUX
straight ADJ
) PUNCT
	 SPACE
7 NUM
. PUNCT
loss NOUN
of ADP
peripheral ADJ
vision NOUN
. PUNCT
		 SPACE
Many ADJ
tests NOUN
have AUX
been AUX
run VERB
and CCONJ
all DET
are AUX
normal ADJ
except SCONJ
for ADP
something PRON
called VERB
unidentified ADJ
bright ADJ
objects NOUN
found VERB
on ADP
a DET
MRI NOUN
of ADP
her PRON
brain NOUN
. PUNCT
  SPACE
The DET
onlything NOUN
that PRON
seems VERB
to PART
alleviate VERB
one NUM
of ADP
these DET
episodes NOUN
is AUX
prednisone ADJ
. PUNCT
  SPACE
Attimes PROPN
she PRON
had AUX
been AUX
on ADP
60 NUM
mg NOUN
per ADP
day NOUN
. PUNCT
  SPACE
Whenever ADV
she PRON
gets VERB
down ADV
to PART
10 NUM
- SYM
15 NUM
mgthe NOUN
symptoms NOUN
become VERB
acute ADJ
again ADV
. PUNCT
	 SPACE
She PRON
is AUX
quite ADV
concerned ADJ
because SCONJ
the DET
retinal ADJ
hemorrhages NOUN
are AUX
becomingworse ADJ
with ADP
each DET
episode NOUN
and CCONJ
her PRON
vision NOUN
is AUX
suffering VERB
. PUNCT
  SPACE
None NOUN
of ADP
the DET
docs PROPN
shehas PROPN
seen VERB
have AUX
any DET
idea NOUN
what PRON
this DET
condition NOUN
is AUX
or CCONJ
what PRON
can AUX
be AUX
done VERB
to PART
stopit VERB
. PUNCT
  SPACE
Any DET
suggestions NOUN
or CCONJ
advice NOUN
would AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
Thanks NOUN
in ADP
advance NOUN
. PUNCT
  SPACE
Kathy PROPN
Turner PROPN
	 SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58073From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr5.191712.7543@inmet.camb.inmet.com PROPN
> X
mazur@bluefin.camb.inmet.com PROPN
( PUNCT
Beth PROPN
Mazur PROPN
) PUNCT
writes:>In PROPN
< X
1993Apr03.1.6627@omen X
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>Gordon PROPN
, PUNCT
your PRON
experience NOUN
is AUX
valid ADJ
for ADP
many ADJ
, PUNCT
but CCONJ
not PART
all DET
. PUNCT
  SPACE
The>>fact VERB
that SCONJ
you PRON
know VERB
a DET
few ADJ
people NOUN
who PRON
have AUX
been AUX
overweight ADJ
and CCONJ
are>>now NOUN
stable ADJ
at ADP
a DET
lower ADJ
( PUNCT
normal ADJ
or CCONJ
just ADV
less ADJ
? PUNCT
) PUNCT
weight NOUN
does AUX
not>>contradict PROPN
the DET
observation NOUN
that PRON
only ADV
5 NUM
- SYM
10 NUM
per NOUN
cent NOUN
can AUX
maintain>>ideal VERB
weight NOUN
with ADP
current ADJ
technology.>>Actually ADV
, PUNCT
the DET
observation NOUN
is AUX
that SCONJ
only ADV
5 NUM
- SYM
10 NUM
% NOUN
of ADP
those DET
who PRON
seek VERB
help NOUN
> X
from ADP
your PRON
so ADV
- PUNCT
called VERB
" PUNCT
diet NOUN
evangelists NOUN
" PUNCT
can AUX
maintain VERB
their PRON
weight NOUN
. PUNCT
  SPACE
I PRON
> X
happen VERB
to PART
agree VERB
with ADP
Keith PROPN
Lynch PROPN
that SCONJ
there PRON
are AUX
many ADJ
people NOUN
who PRON
can AUX
> X
and CCONJ
do AUX
lose VERB
weight NOUN
on ADP
their PRON
own ADJ
, PUNCT
and CCONJ
who PRON
are AUX
not PART
reflected VERB
in ADP
the DET
> X
dismal ADJ
failure NOUN
rate NOUN
that PRON
is AUX
often ADV
quoted.>>Wasn't ADV
there ADV
a DET
study NOUN
where ADV
a DET
researcher NOUN
asked VERB
a DET
more ADV
general ADJ
population,>perhaps NOUN
some DET
part NOUN
of ADP
a DET
university NOUN
community NOUN
, PUNCT
about ADP
weight NOUN
loss NOUN
and CCONJ
he PRON
/ CCONJ
she PRON
> X
found VERB
that SCONJ
a DET
much ADV
higher ADJ
percentage NOUN
had AUX
lost VERB
and CCONJ
maintained VERB
? PUNCT
In ADP
fact NOUN
Adiposity NOUN
101 NUM
mentions VERB
a DET
similar ADJ
study NOUN
( PUNCT
search NOUN
for ADP
" PUNCT
lifeevents NOUN
" PUNCT
in ADP
any DET
recent ADJ
version NOUN
of ADP
Adiposity NOUN
101).The NUM
problem NOUN
with ADP
anecdotal ADJ
reports NOUN
about ADP
individuals NOUN
who PRON
havelost VERB
weight NOUN
and CCONJ
kept VERB
it PRON
off ADP
is AUX
that SCONJ
we PRON
do AUX
n't PART
know VERB
what PRON
causedthe DET
weight NOUN
gain NOUN
in ADP
the DET
first ADJ
place NOUN
. PUNCT
  SPACE
This DET
is AUX
critical ADJ
becausesomeone NOUN
who PRON
gains VERB
weight NOUN
because SCONJ
of ADP
something PRON
temporary ADJ
( PUNCT
drugeffect ADJ
, PUNCT
life NOUN
event NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
may AUX
appear VERB
successful ADJ
at ADP
dieting VERB
whenthe DET
weight NOUN
loss NOUN
was AUX
really ADV
the DET
result NOUN
of ADP
reversing VERB
the DET
temporarycondition NOUN
that PRON
caused VERB
the DET
weight NOUN
gain.-- PROPN
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58074From NUM
: PUNCT
swkirch@sun6850.nrl.navy.mil PROPN
( PUNCT
Steve PROPN
Kirchoefer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
BreatheGetting VERB
back ADV
to ADP
the DET
original ADJ
question NOUN
in ADP
this DET
thread NOUN
: PUNCT
I PRON
experienced VERB
breathing VERB
difficulties NOUN
a DET
few ADJ
years NOUN
ago ADV
similar ADJ
to ADP
thosedescribed NOUN
. PUNCT
  SPACE
In ADP
my PRON
case NOUN
, PUNCT
it PRON
turned VERB
out ADP
that SCONJ
I PRON
was AUX
developing VERB
Type NOUN
Idiabetes NOUN
. PUNCT
  SPACE
Although SCONJ
I PRON
never ADV
sought VERB
direct ADJ
confirmation NOUN
of ADP
this DET
from ADP
mydoctor NOUN
, PUNCT
I PRON
think VERB
that SCONJ
the DET
breathing NOUN
problem NOUN
was AUX
associated VERB
with ADP
thepresence NOUN
of ADP
ketones NOUN
due ADJ
to ADP
the DET
diabetes NOUN
. PUNCT
I PRON
think VERB
that SCONJ
ketosis NOUN
can AUX
occur VERB
in ADP
lesser ADJ
degree NOUN
if SCONJ
one NOUN
is AUX
restrictingtheir NOUN
food NOUN
intake VERB
drastically ADV
. PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
this DET
relevant ADJ
in ADP
thiscase NOUN
, PUNCT
but CCONJ
you PRON
might AUX
ask VERB
your PRON
daughter NOUN
if SCONJ
she PRON
has AUX
been AUX
eatingproperly.-- PROPN
Steve PROPN
Kirchoefer PROPN
                                             SPACE
( PUNCT
202 NUM
) PUNCT
767 NUM
- SYM
2862Code NUM
6851 NUM
                                      SPACE
kirchoefer@estd.nrl.navy.milNaval PROPN
Research PROPN
Laboratory PROPN
                       SPACE
Microwave PROPN
Technology PROPN
BranchWashington PROPN
, PUNCT
DC PROPN
  SPACE
20375 NUM
- SYM
5000 NUM
              SPACE
Electronics PROPN
Sci PROPN
. PUNCT
and CCONJ
Tech PROPN
. PUNCT
DivisionNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58075From NUM
: PUNCT
jperkski@kentcomm.uucp PROPN
( PUNCT
Jim PROPN
Perkowski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
jiggersIn PROPN
article NOUN
< X
1ppae1$bt0@bigboote X
. PUNCT
WPI.EDU PROPN
> X
susan@wpi PROPN
. PUNCT
WPI.EDU PROPN
( PUNCT
susan PROPN
) PUNCT
writes VERB
: PUNCT
> X
a DET
friend NOUN
of ADP
mine NOUN
has AUX
a DET
very ADV
severe ADJ
cause NOUN
of ADP
jiggers NOUN
- PUNCT
> X
for ADP
over ADP
a DET
year NOUN
now ADV
- PUNCT
they PRON
cause VERB
him PRON
a DET
lot NOUN
of ADP
pain NOUN
. PUNCT
> X
> X
i PRON
recently ADV
read VERB
( PUNCT
i PRON
do AUX
n't PART
know VERB
where ADV
) PUNCT
about ADP
a DET
possible ADJ
> X
cure NOUN
for ADP
jiggers NOUN
. PUNCT
  SPACE
does AUX
anyone PRON
have AUX
any DET
information NOUN
on ADP
> X
this DET
? PUNCT
  SPACE
i PRON
ca AUX
n't PART
remember VERB
the DET
name NOUN
of ADP
the DET
treatment NOUN
, PUNCT
or CCONJ
> X
where ADV
i PRON
read VERB
it.>I'll INTJ
probably ADV
get AUX
flamed VERB
for ADP
this DET
, PUNCT
but CCONJ
when ADV
I PRON
was AUX
a DET
kid NOUN
we PRON
would AUX
go VERB
tomy NOUN
uncles NOUN
cabin NOUN
on ADP
Middle PROPN
Bass PROPN
Island PROPN
on ADP
Lake PROPN
Erie PROPN
. PUNCT
We PRON
always ADV
came VERB
homewith PROPN
a DET
nasty ADJ
case NOUN
of ADP
jiggers NOUN
( PUNCT
large ADJ
red ADJ
bumps NOUN
where ADV
the DET
buggers NOUN
hadburrowed VERB
into ADP
the DET
skin NOUN
) PUNCT
. PUNCT
My PRON
mother NOUN
would AUX
paint VERB
the DET
bumps NOUN
with ADP
clearfinger NOUN
nail NOUN
polish NOUN
. PUNCT
This DET
was AUX
repeated VERB
daily ADV
for ADP
about ADV
a DET
week NOUN
or CCONJ
so ADV
. PUNCT
Theapplication NOUN
of ADP
the DET
polish NOUN
is AUX
supposed VERB
to PART
suffocate VERB
them PRON
as SCONJ
it PRON
seals VERB
ofthe DET
skin NOUN
. PUNCT
All DET
I PRON
can AUX
say VERB
is AUX
it PRON
worked VERB
for ADP
us PRON
. PUNCT
One NUM
word NOUN
of ADP
cautionthough NOUN
. PUNCT
Putting VERB
finger NOUN
nail NOUN
polish NOUN
on ADP
a DET
jigger NOUN
bite NOUN
stings NOUN
like SCONJ
hell.(If INTJ
I PRON
do AUX
get AUX
flamed VERB
for ADP
this DET
just ADV
put VERB
jam NOUN
in ADP
my PRON
pockets NOUN
and CCONJ
call VERB
metoast.:)--_______________________________________________________________________________kentcomm!jperkski@aldhfn.akron.oh.us NUM
( PUNCT
and CCONJ
) PUNCT
kentcomm!jperkski@legend.akron.oh.usNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58076Subject NUM
: PUNCT
Teenage ADJ
acneFrom PROPN
: PUNCT
pchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill)My PROPN
14-y PROPN
- PUNCT
o PROPN
son NOUN
has AUX
the DET
usual ADJ
teenage NOUN
spotty ADJ
chin NOUN
and CCONJ
greasy NOUN
nose NOUN
. PUNCT
  SPACE
Ibought VERB
him PRON
Clearasil PROPN
face NOUN
wash NOUN
and CCONJ
ointment NOUN
. PUNCT
  SPACE
I PRON
think VERB
that DET
is AUX
probablyenough ADJ
, PUNCT
along ADP
with ADP
the DET
usual ADJ
good ADJ
diet NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
he PRON
is AUX
on ADP
at ADP
me PRON
toget VERB
some DET
product NOUN
called VERB
Dalacin PROPN
T PROPN
, PUNCT
which PRON
used VERB
to PART
be AUX
adoctor's VERB
- PUNCT
prescription NOUN
only ADJ
treatment NOUN
but CCONJ
is AUX
not PART
available ADJ
over ADP
thechemist NOUN
's PART
counter NOUN
. PUNCT
  SPACE
I PRON
have AUX
asked VERB
a DET
couple NOUN
of ADP
pharmacists NOUN
who PRON
sayeither VERB
his PRON
acne NOUN
is AUX
not PART
severe ADJ
enough ADV
for ADP
Dalacin PROPN
T PROPN
, PUNCT
or CCONJ
that SCONJ
Clearasilis PROPN
OK INTJ
. PUNCT
  SPACE
I PRON
had AUX
the DET
odd ADJ
spots NOUN
as SCONJ
a DET
teenager NOUN
, PUNCT
nothing PRON
serious ADJ
. PUNCT
  SPACE
Hisfather PROPN
was AUX
the DET
same ADJ
, PUNCT
so ADV
I PRON
do AUX
n't PART
figure VERB
his PRON
acne NOUN
is AUX
going VERB
to PART
escalateinto VERB
something PRON
disfiguring VERB
. PUNCT
  SPACE
But CCONJ
I PRON
know VERB
kids NOUN
are AUX
senstitive ADJ
abouttheir NOUN
appearance NOUN
. PUNCT
  SPACE
I PRON
am AUX
wary ADJ
because SCONJ
a DET
neighbour NOUN
's PART
son NOUN
had AUX
this DET
wierdmalady NOUN
that PRON
was AUX
eventually ADV
put VERB
down ADP
to ADP
an DET
overdose NOUN
of ADP
vitamin NOUN
A DET
fromacne ADJ
treatment NOUN
. PUNCT
  SPACE
I PRON
want VERB
to PART
help VERB
- PUNCT
but CCONJ
with ADP
appropriate ADJ
treatment NOUN
. PUNCT
My PRON
son NOUN
also ADV
has AUX
some DET
scaliness NOUN
around ADP
the DET
hairline NOUN
on ADP
his PRON
scalp NOUN
. PUNCT
  SPACE
Sortof PROPN
teenage ADJ
cradle NOUN
cap NOUN
. PUNCT
  SPACE
Any DET
pointers NOUN
/ SYM
advice NOUN
on ADP
this DET
? PUNCT
  SPACE
We PRON
have AUX
tried VERB
acouple NOUN
of ADP
anti PROPN
dandruff PROPN
shampoos NOUN
and CCONJ
some DET
of ADP
these DET
are AUX
inclined VERB
tomake NOUN
the DET
condition NOUN
worse ADV
, PUNCT
not PART
better ADJ
. PUNCT
Shall AUX
I PRON
bury VERB
the DET
kid NOUN
till SCONJ
he PRON
's AUX
21 NUM
: PUNCT
) PUNCT
-- PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
            SPACE
The DET
floggings NOUN
will AUX
continue VERB
until ADP
morale NOUN
improves VERB
                  SPACE
pchurch@swell.actrix.gen.nz PROPN
  SPACE
Pat PROPN
Churchill PROPN
, PUNCT
Wellington PROPN
New PROPN
Zealand PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58077From NUM
: PUNCT
rog@cdc.hp.com PROPN
( PUNCT
Roger PROPN
Haaheim)Subject ADJ
: PUNCT
Re ADP
: PUNCT
sex NOUN
problem.larry NOUN
silverberg PROPN
( PUNCT
ls8139@albnyvms.bitnet PROPN
) PUNCT
wrote VERB
: PUNCT
> X
Hello INTJ
out ADV
there ADV
, PUNCT
> X
She PRON
suggested VERB
we PRON
go VERB
to ADP
a DET
sex NOUN
counselor NOUN
, PUNCT
but CCONJ
I PRON
really ADV
do AUX
n't PART
want VERB
to PART
( PUNCT
just ADV
yet).Interesting VERB
. PUNCT
  SPACE
Does AUX
she PRON
know VERB
you PRON
have AUX
placed VERB
this DET
info NOUN
request NOUN
on ADP
thenet NOUN
for ADP
the DET
world NOUN
to PART
see VERB
? PUNCT
  SPACE
If SCONJ
not PART
, PUNCT
how ADV
do AUX
you PRON
think VERB
she PRON
would AUX
reactif VERB
she PRON
found VERB
out ADP
? PUNCT
  SPACE
Why ADV
would AUX
you PRON
accept VERB
the DET
advice NOUN
of ADP
unknown ADJ
entitiesrather ADV
than SCONJ
a DET
counselor NOUN
? PUNCT
> X
Any DET
suggestions NOUN
would AUX
be AUX
appreciated VERB
. PUNCT
See VERB
the DET
counselor NOUN
. PUNCT
Well INTJ
, PUNCT
you PRON
asked VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58078From NUM
: PUNCT
news&aio.jsc.nasa.gov PROPN
( PUNCT
USENET PROPN
News NOUN
System)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Oily ADJ
skin NOUN
- PUNCT
problem?In NOUN
article NOUN
< X
1993Apr5.044140.1@vaxc.stevens-tech.edu NUM
> X
, PUNCT
u92_hwong@vaxc.stevens-tech.edu PROPN
writes VERB
: PUNCT
> X
> X
Hi INTJ
there ADV
, PUNCT
> X
> X
	 SPACE
I PRON
have AUX
a DET
very ADV
oily ADJ
skin NOUN
. PUNCT
  SPACE
My PRON
problem NOUN
is AUX
when ADV
I PRON
wash VERB
my PRON
face NOUN
, PUNCT
it PRON
becomes VERB
> X
oily ADV
in ADP
half DET
an DET
hour NOUN
. PUNCT
  SPACE
Especially ADV
in ADP
the DET
nose NOUN
region NOUN
. PUNCT
  SPACE
Is AUX
this DET
an DET
illness NOUN
? PUNCT
  SPACE
How ADV
> X
can AUX
I PRON
prevent VERB
it PRON
from ADP
occuring VERB
in ADP
such ADJ
short ADJ
time NOUN
? PUNCT
  SPACE
Is AUX
there PRON
a DET
cleanser NOUN
out ADP
> X
there ADV
that PRON
will AUX
do AUX
a DET
better ADJ
job NOUN
-- PUNCT
that DET
is AUX
after ADP
cleaning VERB
, PUNCT
my PRON
face NOUN
wo AUX
n't PART
become VERB
> X
oily ADV
in ADP
such DET
a DET
short ADJ
time NOUN
. PUNCT
> X
> X
	 SPACE
Thank VERB
you PRON
for ADP
any DET
suggestion NOUN
. PUNCT
> X
> X
if SCONJ
this DET
is AUX
a DET
disease NOUN
, PUNCT
everyone PRON
should AUX
have AUX
it PRON
. PUNCT
  SPACE
My PRON
skin NOUN
has AUX
always ADV
been AUX
oily ADV
-i ADV
used VERB
to PART
say VERB
" PUNCT
if SCONJ
i PRON
were AUX
hot ADJ
enough ADV
, PUNCT
you PRON
could AUX
fry VERB
an DET
egg NOUN
on ADP
my PRON
oily ADJ
face".i NOUN
am AUX
now ADV
50 NUM
yrs PROPN
old ADJ
and CCONJ
my PRON
skin NOUN
looks VERB
younger ADJ
( PUNCT
i PRON
'm AUX
told VERB
) PUNCT
than SCONJ
some DET
people'sskin NOUN
at ADP
30 NUM
( PUNCT
it PRON
's AUX
still ADV
oily ADJ
) PUNCT
. PUNCT
  SPACE
i PRON
have AUX
only ADV
a DET
very ADV
few ADJ
tiny ADJ
wrinkles NOUN
. PUNCT
  SPACE
Thankyour ADJ
lucky ADJ
stars NOUN
for ADP
that DET
skin NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58079From NUM
: PUNCT
jec@watson.ibm.comSubject ADJ
: PUNCT
Contraceptive PROPN
pillA PROPN
very ADV
simple ADJ
question NOUN
: PUNCT
it PRON
seems VERB
to ADP
me PRON
that SCONJ
the DET
contraceptivepill NOUN
just ADV
prevents VERB
the DET
ovule NOUN
to PART
nest VERB
in ADP
the DET
vagina PROPN
and CCONJ
forces NOUN
it PRON
tofall VERB
every DET
month NOUN
. PUNCT
But CCONJ
it PRON
does AUX
not PART
prevent VERB
the DET
fertilzation NOUN
of ADP
the DET
ovule NOUN
. PUNCT
Is AUX
it PRON
true ADJ
? PUNCT
If SCONJ
yes INTJ
, PUNCT
is AUX
there PRON
a DET
risk NOUN
of ADP
extra ADJ
- PUNCT
uterinepregnancy ADJ
, PUNCT
that DET
is AUX
the DET
development NOUN
of ADP
the DET
ovule NOUN
inside ADP
the DET
Fallopiantube PROPN
? PUNCT
J.Cherbonnierjec@zurich.ibm.comNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58080From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Brain PROPN
Tumor PROPN
Treatment PROPN
( PUNCT
thanks)There NOUN
were AUX
a DET
few ADJ
people NOUN
who PRON
responded VERB
to ADP
my PRON
request NOUN
for ADP
info NOUN
ontreatment NOUN
for ADP
astrocytomas NOUN
through ADP
email NOUN
, PUNCT
whom PRON
I PRON
could AUX
n't PART
thankdirectly ADV
because SCONJ
of ADP
mail NOUN
- PUNCT
bouncing VERB
probs NOUN
( PUNCT
Sean PROPN
, PUNCT
Debra PROPN
, PUNCT
and CCONJ
Sharon PROPN
) PUNCT
. PUNCT
  SPACE
SoI PROPN
thought VERB
I PRON
'd AUX
publicly ADV
thank VERB
everyone PRON
. PUNCT
Thanks NOUN
! PUNCT
( PUNCT
I PRON
'm AUX
sure ADJ
glad ADJ
I PRON
accidentally ADV
hit VERB
" PUNCT
rn NOUN
" PUNCT
instead ADV
of ADP
" PUNCT
rm X
" PUNCT
when ADV
I PRON
wastrying VERB
to PART
delete VERB
a DET
file NOUN
last ADJ
September PROPN
. PUNCT
" PUNCT
Hmmm PROPN
... PUNCT
' PUNCT
News NOUN
? PUNCT
' PUNCT
What'sthis?" PROPN
.... PUNCT
)-BrianNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58081Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
Breathe VERB
-- PUNCT
UpdateFrom PROPN
: PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg)Thanks PROPN
to ADP
all DET
those DET
who PRON
responded VERB
to ADP
my PRON
original ADJ
post NOUN
on ADP
this DET
question NOUN
. PUNCT
  SPACE
Thefinal ADJ
diagnosis NOUN
was AUX
Stress PROPN
. PUNCT
  SPACE
I PRON
did AUX
not PART
take VERB
her PRON
for ADP
a DET
chiropractic ADJ
adjustment.(Rachel PROPN
receives VERB
all DET
her PRON
medical ADJ
care NOUN
at ADP
Keller PROPN
Army PROPN
Hospital PROPN
since SCONJ
she PRON
is AUX
amilitary ADJ
dependant ADJ
, PUNCT
and CCONJ
the DET
Army PROPN
does AUX
not PART
yet ADV
provide VERB
chiropractic ADJ
adjustmentsas ADJ
part NOUN
of ADP
its PRON
regular ADJ
health NOUN
care NOUN
. PUNCT
) PUNCT
  SPACE
I PRON
am AUX
hoping VERB
that SCONJ
the DET
arrival NOUN
of ADP
( PUNCT
1)Spring PROPN
Break PROPN
, PUNCT
and CCONJ
( PUNCT
2 X
) PUNCT
College PROPN
Acceptance PROPN
Letters PROPN
, PUNCT
will AUX
help VERB
. PUNCT
  SPACE
* PUNCT
UNFORTUNATELY*she PROPN
was AUX
wait VERB
- PUNCT
listed VERB
at ADP
the DET
college NOUN
she PRON
most ADV
dearly ADV
wanted VERB
to PART
attend VERB
, PUNCT
so ADV
itseems NOUN
as SCONJ
though SCONJ
that DET
stressor NOUN
may AUX
just ADV
continue VERB
for ADP
a DET
while NOUN
. PUNCT
  SPACE
: PUNCT
-(Meanwhile PUNCT
she PRON
is AUX
going VERB
on ADP
a DET
camping NOUN
trip NOUN
with ADP
her PRON
religious ADJ
youth NOUN
group NOUN
forspring VERB
break NOUN
, PUNCT
which PRON
seems VERB
like SCONJ
a DET
good ADJ
stress NOUN
- PUNCT
reliever NOUN
to ADP
me PRON
. PUNCT
Thanks NOUN
again ADV
for ADP
everybody PRON
's PART
help NOUN
/ SYM
advice NOUN
/ SYM
suggestions NOUN
/ SYM
ideas.------------------------Ruth NOUN
Ginzberg PROPN
< X
rginzberg@eagle.wesleyan.edu>Philosophy NOUN
Department;Wesleyan PROPN
University;USANewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58082From NUM
: PUNCT
kaminski@netcom.com X
( PUNCT
Peter PROPN
Kaminski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
What PRON
about ADP
sci.med.chemistryIn PROPN
< X
julkunen.734086202@messi.uku.fi PROPN
> X
julkunen@messi.uku.fi PROPN
( PUNCT
AnteroJulkunen PROPN
) PUNCT
writes:>There ADV
is AUX
this DET
newsgroup NOUN
sci.med.physics PROPN
and CCONJ
there PRON
has AUX
been AUX
quite DET
a DET
lot NOUN
> X
discussion NOUN
in ADP
this DET
group NOUN
about ADP
many ADJ
chemical NOUN
items NOUN
e.g. ADV
prolactin PROPN
> X
cholesterol NOUN
, PUNCT
TSH PROPN
etc X
. PUNCT
Should AUX
there PRON
also ADV
be AUX
a DET
newsgroup NOUN
sci.med.chemistry?It's NOUN
got VERB
potential ADJ
. PUNCT
  SPACE
Instead ADV
of ADP
* PUNCT
.chemistry PUNCT
, PUNCT
how ADV
about ADP
splitting NOUN
theclassification NOUN
into ADP
* PUNCT
.biochemistry PUNCT
( PUNCT
which PRON
are AUX
probably ADV
the DET
topicsyou're ADJ
thinking NOUN
of ADP
) PUNCT
and CCONJ
* PUNCT
.pharmaceutical PUNCT
( PUNCT
which PRON
otherwise ADV
might AUX
end VERB
upin ADJ
* PUNCT
.(bio)chemistry)?(This PUNCT
is AUX
separate ADJ
from ADP
the DET
issue NOUN
of ADP
whether SCONJ
there PRON
is AUX
sufficient ADJ
potentialnews NOUN
volume NOUN
to PART
support VERB
either CCONJ
or CCONJ
both DET
groups.)I'll NOUN
add VERB
'em PRON
to ADP
my PRON
medical ADJ
/ SYM
health NOUN
newsgroup PROPN
wish PROPN
list NOUN
( PUNCT
which PRON
I PRON
'm AUX
lookingforward ADJ
to ADP
posting VERB
and CCONJ
discussing VERB
-- PUNCT
but CCONJ
not PART
for ADP
another DET
10 NUM
days NOUN
or CCONJ
so).PeteNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58083From NUM
: PUNCT
shafer@rigel.dfrf.nasa.gov NOUN
( PUNCT
Mary PROPN
Shafer)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Inner ADJ
Ear NOUN
Problems NOUN
from ADP
Too PROPN
Much PROPN
Flying?On PROPN
5 NUM
Apr PROPN
93 NUM
23:27:26 NUM
GMT PROPN
, PUNCT
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
said VERB
: PUNCT
Vida PROPN
> X
Can AUX
one PRON
develop VERB
inner ADJ
- PUNCT
ear NOUN
problems NOUN
from ADP
too ADV
much ADJ
flying VERB
? PUNCT
  SPACE
I PRON
hearVida PROPN
> X
that SCONJ
pilots NOUN
and CCONJ
steward NOUN
/ SYM
esses NOUN
have AUX
a DET
limit NOUN
as SCONJ
to ADP
the DET
maximumVida PROPN
> X
number NOUN
of ADP
flying VERB
hours NOUN
-- PUNCT
what PRON
are AUX
these DET
limits NOUN
? PUNCT
  SPACE
What PRON
are AUX
theVida PROPN
> X
main ADJ
problems NOUN
associated VERB
with ADP
too ADV
many ADJ
long ADJ
- PUNCT
haul NOUN
( PUNCT
over ADP
4 NUM
hours)Vida X
> X
trips?The ADJ
crew NOUN
rest NOUN
requirements NOUN
are AUX
to PART
prevent VERB
undue ADJ
fatigue NOUN
. PUNCT
  SPACE
The DET
cockpitcrew PROPN
( PUNCT
pilot NOUN
) PUNCT
limits NOUN
are AUX
somewhat ADV
more ADV
stringent ADJ
than SCONJ
the DET
cabin NOUN
crewlimits NOUN
for ADP
this DET
reason NOUN
. PUNCT
  SPACE
Crew PROPN
rest NOUN
requirements NOUN
address VERB
amount NOUN
of ADP
timeon NOUN
duty NOUN
plus CCONJ
rest NOUN
time NOUN
. PUNCT
  SPACE
A DET
tired ADJ
crew NOUN
is AUX
an DET
accident NOUN
- PUNCT
prone ADJ
crew NOUN
. PUNCT
The DET
only ADJ
limits NOUN
I PRON
know VERB
of ADP
for ADP
inner ADJ
- PUNCT
ear NOUN
problems NOUN
are AUX
in ADP
militaryaircraft NOUN
, PUNCT
which PRON
are AUX
frequently ADV
unpressurized ADJ
or CCONJ
less ADV
reliablypressurized VERB
. PUNCT
  SPACE
Not PART
being AUX
able ADJ
to PART
clear VERB
the DET
ears NOUN
renders NOUN
aircrew PROPN
membersDNIF NOUN
( PUNCT
duties NOUN
not PART
involving VERB
flying VERB
) PUNCT
or CCONJ
grounded VERB
until ADP
the DET
ears NOUN
clear ADJ
. PUNCT
Flying VERB
can AUX
accentuate VERB
problems NOUN
if SCONJ
ears NOUN
do AUX
n't PART
clear VERB
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
havebig VERB
pressure NOUN
changes NOUN
, PUNCT
you PRON
may AUX
not PART
know VERB
that SCONJ
you PRON
've AUX
got VERB
a DET
problem NOUN
. PUNCT
  SPACE
Butif ADP
you PRON
zip VERB
up ADP
to PART
5,000 NUM
or CCONJ
6,000 NUM
ft NOUN
( PUNCT
the DET
usual ADJ
cabin NOUN
altitude NOUN
in ADP
anairliner NOUN
) PUNCT
and CCONJ
then ADV
back ADV
down ADP
to ADP
sea NOUN
level NOUN
, PUNCT
you PRON
may AUX
discover VERB
a DET
problem NOUN
. PUNCT
Ears NOUN
do AUX
n't PART
clear VERB
readily ADV
because SCONJ
of ADP
allergies NOUN
, PUNCT
colds NOUN
, PUNCT
infections NOUN
, PUNCT
andanatomical ADJ
problems NOUN
. PUNCT
  SPACE
The DET
last ADJ
wo AUX
n't PART
change VERB
; PUNCT
the DET
first ADJ
three NUM
can NOUN
. PUNCT
Medication NOUN
( PUNCT
decongestants NOUN
or CCONJ
antihistimines NOUN
, PUNCT
usually ADV
) PUNCT
can AUX
help VERB
. PUNCT
Chewing VERB
gum NOUN
, PUNCT
sucking VERB
hard ADJ
candy NOUN
( PUNCT
or CCONJ
a DET
bottle NOUN
for ADP
babies),yawning VERB
-- PUNCT
these DET
will AUX
help VERB
all DET
four NUM
causes.--Mary PROPN
Shafer PROPN
  SPACE
DoD NOUN
# NOUN
0362 NUM
KotFR PROPN
NASA PROPN
Dryden PROPN
Flight PROPN
Research PROPN
Facility PROPN
, PUNCT
Edwards PROPN
, PUNCT
CAshafer@rigel.dfrf.nasa.gov PROPN
                    SPACE
Of ADV
course ADV
I PRON
do AUX
n't PART
speak VERB
for ADP
NASA PROPN
" PUNCT
A DET
MiG NOUN
at ADP
your PRON
six NUM
is AUX
better ADJ
than SCONJ
no DET
MiG NOUN
at ADV
all ADV
. PUNCT
" PUNCT
  SPACE
Unknown ADJ
US PROPN
fighter NOUN
pilotNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58084From NUM
: PUNCT
kxgst1@pitt.edu X
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Contraceptive ADJ
pilljec@watson.ibm.com NOUN
wrote VERB
: PUNCT
: PUNCT
A DET
very ADV
simple ADJ
question NOUN
: PUNCT
it PRON
seems VERB
to ADP
me PRON
that SCONJ
the DET
contraceptive NOUN
: PUNCT
pill NOUN
just ADV
prevents VERB
the DET
ovule NOUN
to PART
nest VERB
in ADP
the DET
vagina PROPN
and CCONJ
forces VERB
it PRON
to PART
: PUNCT
fall VERB
every DET
month NOUN
. PUNCT
But CCONJ
it PRON
does AUX
not PART
prevent VERB
the DET
fertilzation NOUN
of ADP
the DET
: PUNCT
ovule NOUN
. PUNCT
Is AUX
it PRON
true ADJ
? PUNCT
If SCONJ
yes INTJ
, PUNCT
is AUX
there PRON
a DET
risk NOUN
of ADP
extra ADJ
- PUNCT
uterine ADJ
: PUNCT
pregnancy NOUN
, PUNCT
that DET
is AUX
the DET
development NOUN
of ADP
the DET
ovule NOUN
inside ADP
the DET
Fallopian PROPN
: PUNCT
tube NOUN
? PUNCT
Actually ADV
that DET
is AUX
not PART
how ADV
the DET
pill NOUN
works VERB
, PUNCT
but CCONJ
it PRON
* PUNCT
is AUX
* PUNCT
how ADV
the DET
IUD PROPN
works VERB
. PUNCT
The DET
oral ADJ
contraceptive NOUN
pill NOUN
actually ADV
* PUNCT
prevents NOUN
* PUNCT
ovulation NOUN
from ADP
occuringby PROPN
providing VERB
negatve PROPN
feedback NOUN
to ADP
the DET
pituitary ADJ
gland NOUN
, PUNCT
and CCONJ
thus ADV
preventingthe ADJ
LH PROPN
surge VERB
that PRON
normally ADV
occurs VERB
at ADP
the DET
time NOUN
of ADP
ovulation NOUN
. PUNCT
  SPACE
With ADP
the DET
IUDwhat PROPN
happens VERB
is AUX
that DET
fertilization NOUN
may AUX
occur VERB
, PUNCT
but CCONJ
the DET
device NOUN
preventsimplantation NOUN
within ADP
the DET
wall NOUN
of ADP
the DET
uterus NOUN
( PUNCT
* PUNCT
not PART
* PUNCT
the DET
vagina).--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
  SPACE
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58085From NUM
: PUNCT
bytor@cruzio.santa-cruz.ca.usSubject NOUN
: PUNCT
LupusI NOUN
have AUX
a DET
friend NOUN
who PRON
has AUX
just ADV
been AUX
diagnosed VERB
with ADP
Lupus PROPN
, PUNCT
and CCONJ
I PRON
know VERB
nothingabout ADP
this DET
disease NOUN
. PUNCT
The DET
only ADJ
thing NOUN
I PRON
do AUX
know VERB
is AUX
that SCONJ
this DET
is AUX
some DET
sort ADJ
ofskin NOUN
disease NOUN
, PUNCT
and CCONJ
my PRON
friend NOUN
shows VERB
no DET
skin NOUN
rashes NOUN
- PUNCT
in ADP
fact NOUN
, PUNCT
they PRON
used VERB
a DET
blood NOUN
test NOUN
to PART
determine VERB
what PRON
had AUX
been AUX
wrong ADJ
with ADP
an DET
on ADP
going VERB
sacro ADJ
- PUNCT
illiac ADJ
joint ADJ
problem NOUN
. PUNCT
I PRON
am AUX
finding VERB
a DET
hard ADJ
time NOUN
finding VERB
information NOUN
on ADP
this DET
disease NOUN
. PUNCT
Couldanyone NOUN
please INTJ
enlighten VERB
me PRON
as SCONJ
to ADP
the DET
particulars NOUN
of ADP
this DET
disease NOUN
. PUNCT
please INTJ
feel VERB
free ADJ
to ADP
E NOUN
- NOUN
mail VERB
me PRON
at ADP
bytor@cruzio.santa-cruz.ca.usThanks NOUN
in ADP
advance NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58086From NUM
: PUNCT
bbesler@ouchem.chem.oakland.edu NOUN
( PUNCT
Brent PROPN
H. PROPN
Besler)Subject NOUN
: PUNCT
Is AUX
an DET
oral ADJ
form NOUN
of ADP
Imitrex(sumatriptan PROPN
) PUNCT
available ADJ
in ADP
CASumatriptan(Imitrex PROPN
) PUNCT
just ADV
became VERB
available ADJ
in ADP
the DET
US PROPN
in ADP
a DET
subcutaneousinjectable ADJ
form NOUN
. PUNCT
  SPACE
Is AUX
there PRON
an DET
oral ADJ
form NOUN
available ADJ
in ADP
CA PROPN
? PUNCT
  SPACE
A DET
friend(yesreally ADV
not PART
me PRON
! PUNCT
) PUNCT
  SPACE
has AUX
severe ADJ
migranes NOUN
about ADV
2 NUM
- SYM
3 NUM
times NOUN
per ADP
week NOUN
. PUNCT
  SPACE
Welive PROPN
right ADV
by ADP
the DET
CA PROPN
border NOUN
and CCONJ
he PRON
has AUX
gotten VERB
drugs NOUN
for ADP
GERD PROPN
prescribedby NOUN
a DET
US PROPN
physician NOUN
and CCONJ
filled VERB
in ADP
a DET
CA PROPN
pharmacy NOUN
, PUNCT
but CCONJ
not PART
yet ADV
FDA PROPN
approvedin NOUN
the DET
US PROPN
. PUNCT
  SPACE
What PRON
would AUX
be AUX
the DET
cost NOUN
of ADP
the DET
oral ADJ
form NOUN
in ADP
CA$ PROPN
also ADV
ifanyone NOUN
would AUX
have AUX
that DET
info NOUN
? PUNCT
    SPACE
ThanksNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58087From NUM
: PUNCT
jmetz@austin.ibm.com PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Twitching VERB
eye NOUN
? PUNCT
  SPACE
I PRON
had AUX
this DET
one NUM
time NOUN
. PUNCT
  SPACE
I PRON
attributed VERB
it PRON
to ADP
a DET
lack NOUN
of ADP
sleep NOUN
since SCONJ
it PRON
disappearedafter VERB
a DET
few ADJ
nights NOUN
of ADP
good ADJ
zzz's NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58088From NUM
: PUNCT
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas)Subject NOUN
: PUNCT
Inner ADJ
Ear NOUN
Problems NOUN
from ADP
Too PROPN
Much PROPN
Flying?Can PROPN
one PRON
develop VERB
inner ADJ
- PUNCT
ear NOUN
problems NOUN
from ADP
too ADV
much ADJ
flying VERB
? PUNCT
  SPACE
I PRON
hear VERB
that DET
pilotsand PROPN
steward PROPN
/ SYM
esses NOUN
have AUX
a DET
limit NOUN
as SCONJ
to ADP
the DET
maximum ADJ
number NOUN
of ADP
flying VERB
hours NOUN
--what PRON
are AUX
these DET
limits NOUN
? PUNCT
  SPACE
What PRON
are AUX
the DET
main ADJ
problems NOUN
associated VERB
with ADP
too ADV
manylong PROPN
- PUNCT
haul PROPN
( PUNCT
over ADP
4 NUM
hours NOUN
) PUNCT
trips?Frequent ADJ
Flyer PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58089From NUM
: PUNCT
rjb3@cbnewsk.cb.att.com PROPN
( PUNCT
robert.j.brown)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Human ADJ
breast NOUN
- PUNCT
feeding NOUN
: PUNCT
Myths NOUN
or CCONJ
reality NOUN
? PUNCT
In ADP
article NOUN
< X
C4vHwo.HLt@tripos.com X
> X
, PUNCT
homer@tripos.com X
( PUNCT
Webster PROPN
Homer PROPN
) PUNCT
writes VERB
: PUNCT
> X
rjasoar@vnet PROPN
. PUNCT
IBM.COM PROPN
( PUNCT
Robert PROPN
J. PROPN
Alexander PROPN
MD PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
I PRON
have AUX
an DET
additional ADJ
question NOUN
. PUNCT
How ADV
long ADV
should AUX
a DET
mother NOUN
breast NOUN
feed VERB
her PRON
> X
child NOUN
? PUNCT
A DET
friend NOUN
of ADP
mine NOUN
is AUX
still ADV
nursing VERB
her PRON
two NUM
year NOUN
old ADJ
. PUNCT
Is AUX
this DET
beneficial ADJ
? PUNCT
> X
Her PRON
ex NOUN
- NOUN
husband NOUN
is AUX
trying VERB
to PART
use VERB
her PRON
coninued VERB
nursing NOUN
of ADP
a DET
two NUM
year NOUN
old ADJ
as SCONJ
> X
" PUNCT
proof NOUN
" PUNCT
of ADP
her PRON
being AUX
unfit ADJ
to PART
be AUX
a DET
mother NOUN
. PUNCT
What PRON
studies NOUN
have AUX
been AUX
done VERB
> X
on ADP
breast NOUN
feeding NOUN
past ADP
a DET
year NOUN
etc X
... PUNCT
upon SCONJ
the DET
psychological ADJ
health NOUN
of ADP
the DET
> X
child NOUN
? PUNCT
> X
> X
> X
Web NOUN
Homer PROPN
> X
My PRON
wife NOUN
breast NOUN
- PUNCT
fed VERB
my PRON
three NUM
boys NOUN
12 NUM
months NOUN
, PUNCT
16 NUM
months NOUN
, PUNCT
and CCONJ
29 NUM
monthsrespectively ADV
and CCONJ
they PRON
are AUX
18 NUM
, PUNCT
16 NUM
, PUNCT
and CCONJ
10 NUM
years NOUN
old ADJ
respectively ADV
. PUNCT
  SPACE
Sofar PROPN
everybody PRON
seems VERB
fairly ADV
normal ADJ
. PUNCT
  SPACE
I PRON
noticed VERB
a DET
negative ADJ
correlationwith NOUN
ear NOUN
infections NOUN
and CCONJ
length NOUN
of ADP
time NOUN
nursed VERB
in ADP
my PRON
very ADV
small ADJ
sample NOUN
. PUNCT
I PRON
do AUX
notice VERB
that SCONJ
the DET
16 NUM
and CCONJ
18 NUM
year NOUN
old ADJ
seem VERB
to PART
eat VERB
a DET
lot NOUN
, PUNCT
could AUX
thatbe VERB
from ADP
the DET
breast NOUN
feeding NOUN
:-) PUNCT
  SPACE
? PUNCT
I PRON
do AUX
n't PART
understand VERB
the DET
" PUNCT
unfit ADJ
mother NOUN
" PUNCT
charge VERB
other ADJ
than SCONJ
any DET
tactic ADJ
isnot NOUN
too ADV
low ADJ
down ADP
for ADP
some DET
folks NOUN
during ADP
divorce NOUN
/ SYM
child NOUN
custody NOUN
battles NOUN
. PUNCT
Most ADJ
of ADP
the DET
developing VERB
nations NOUN
practice NOUN
breast NOUN
feeding VERB
to ADP
3 NUM
and CCONJ
4 NUM
yearsold NOUN
. PUNCT
  SPACE
Are AUX
they PRON
screwed VERB
up ADP
because SCONJ
of ADP
it PRON
? PUNCT
  SPACE
Would AUX
they PRON
be AUX
much ADV
betteroff ADJ
if SCONJ
they PRON
could AUX
use VERB
cow NOUN
's PART
milk NOUN
or CCONJ
commercial ADJ
formula NOUN
? PUNCT
  SPACE
Doctors PROPN
? PUNCT
Bobby PROPN
- PUNCT
akgua!rjbNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58090From NUM
: PUNCT
jose@csd.uwo.ca PROPN
( PUNCT
Jose PROPN
Thekkumthala)Subject PROPN
: PUNCT
recurrent ADJ
volvulus NOUN
    SPACE
Recurrent PROPN
Volvulus PROPN
    SPACE
------------------- PUNCT
     SPACE
This DET
is AUX
regarding VERB
recurrent ADJ
volvulus NOUN
which PRON
our PRON
little ADJ
boy NOUN
has AUX
been AUX
suffering VERB
from ADP
ever ADV
since SCONJ
he PRON
was AUX
an DET
infant NOUN
. PUNCT
He PRON
had AUX
a DET
surgery NOUN
when ADV
he PRON
was AUX
one NUM
year NOUN
old ADJ
. PUNCT
Another DET
surgery NOUN
had AUX
to PART
be AUX
performed VERB
one NUM
year NOUN
after ADV
, PUNCT
when ADV
he PRON
was AUX
two NUM
years NOUN
old ADJ
. PUNCT
He PRON
turned VERB
three NUM
this DET
February PROPN
and CCONJ
he PRON
is AUX
still ADV
getting VERB
afflicted VERB
by ADP
this DET
illness NOUN
, PUNCT
like SCONJ
having VERB
to PART
get AUX
hospitalised VERB
for ADP
vomitting VERB
and CCONJ
accompanying VERB
stomach NOUN
pain NOUN
. PUNCT
He PRON
managed VERB
not PART
having VERB
a DET
third ADJ
surgery NOUN
so ADV
far ADV
. PUNCT
  SPACE
* PUNCT
 	 SPACE
One NUM
thing NOUN
me PRON
and CCONJ
my PRON
wife NOUN
noticed VERB
is AUX
that SCONJ
his PRON
affliction NOUN
	 SPACE
peaks NOUN
around ADP
the DET
time NOUN
he PRON
was AUX
born VERB
, PUNCT
on ADP
nearabouts NOUN
, PUNCT
like SCONJ
in ADP
	 SPACE
March PROPN
every DET
year NOUN
. PUNCT
  SPACE
Any DET
significance NOUN
to ADP
this DET
? PUNCT
  SPACE
* PUNCT
	 SPACE
Why ADV
does AUX
this DET
recur NOUN
? PUNCT
Me PRON
and CCONJ
my PRON
family NOUN
go VERB
through ADP
severe ADJ
pain NOUN
	 SPACE
when ADV
our PRON
little ADJ
boy NOUN
have AUX
to PART
undergo VERB
surgery NOUN
. PUNCT
Why ADV
does AUX
surgery VERB
	 SPACE
not PART
rectify VERB
the DET
situation NOUN
? PUNCT
   SPACE
* PUNCT
	 SPACE
Also ADV
, PUNCT
which PRON
hospital NOUN
in ADP
US PROPN
or CCONJ
Canada PROPN
specialize VERB
in ADP
this DET
malady NOUN
? PUNCT
  SPACE
* PUNCT
	 SPACE
What PRON
will AUX
be AUX
a DET
good ADJ
book NOUN
explaining VERB
this DET
disease NOUN
in ADP
detail NOUN
? PUNCT
  SPACE
* PUNCT
	 SPACE
Will AUX
keeping VERB
a DET
particular ADJ
diet NOUN
keep VERB
down ADP
the DET
probability NOUN
of ADP
 	 SPACE
recurrence NOUN
? PUNCT
  SPACE
* PUNCT
	 SPACE
As SCONJ
time NOUN
goes VERB
on ADP
, PUNCT
will AUX
the DET
probability NOUN
of ADP
recurrence NOUN
go VERB
down ADP
	 SPACE
considering VERB
he PRON
is AUX
getting VERB
stronger ADJ
and CCONJ
healthier ADJ
and CCONJ
probably ADV
	 SPACE
less ADV
prone ADJ
to ADP
attacks NOUN
? PUNCT
Or CCONJ
is AUX
this DET
assumption NOUN
wrong ADJ
? PUNCT
  SPACE
* PUNCT
	 SPACE
Any DET
help NOUN
throwing VERB
light NOUN
on ADP
these DET
queries NOUN
will AUX
be AUX
highly ADV
appreciated VERB
. PUNCT
	 SPACE
Thanks NOUN
very ADV
much ADV
! PUNCT
  SPACE
jose@csd.uwo.caNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58091From NUM
: PUNCT
mrb@cbnewsj.cb.att.com PROPN
( PUNCT
m PROPN
.. PUNCT
bruncati)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Smoker PROPN
's PART
LungsIn PROPN
article NOUN
< X
1993Apr5.123315.48837@kuhub.cc.ukans.edu NUM
> X
, PUNCT
bennett@kuhub.cc.ukans.edu PROPN
writes VERB
: PUNCT
> X
How ADV
long ADV
does AUX
it PRON
take VERB
a DET
smoker NOUN
's PART
lungs NOUN
to PART
clear VERB
of ADP
the DET
tar NOUN
after ADP
quitting VERB
? PUNCT
> X
Does AUX
your PRON
chances NOUN
of ADP
getting VERB
lung NOUN
cancer NOUN
decrease NOUN
quickly ADV
or CCONJ
does AUX
it PRON
take VERB
> X
a DET
considerable ADJ
amount NOUN
of ADP
time NOUN
for ADP
that DET
to ADP
happen?Seems NOUN
to ADP
me PRON
that SCONJ
I PRON
read VERB
in ADP
either CCONJ
a DET
recent ADJ
NY PROPN
TimesScience PROPN
Times PROPN
or CCONJ
maybe ADV
it PRON
was AUX
Science PROPN
News PROPN
that SCONJ
there PRON
isevidence NOUN
that DET
ex NOUN
- NOUN
smoker PROPN
's PART
risk NOUN
of ADP
lung NOUN
cancer NOUN
never ADV
returnsto VERB
that SCONJ
of ADP
a DET
person NOUN
who PRON
has AUX
never ADV
smoked VERB
( PUNCT
I PRON
think VERB
it PRON
mayget VERB
close ADJ
) PUNCT
. PUNCT
  SPACE
I PRON
'll AUX
find VERB
the DET
article NOUN
and CCONJ
post VERB
it PRON
since SCONJ
mymemory NOUN
is AUX
hazy ADJ
on ADP
the DET
specifics NOUN
- PUNCT
if SCONJ
you PRON
are AUX
interested ADJ
. PUNCT
MichaelNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58092From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
various ADJ
migraine NOUN
therapiesIn PROPN
article NOUN
< X
C4HtMw.H3J@olsen.ch X
> X
lindy@olsen.ch PUNCT
( PUNCT
Lindy PROPN
Foster PROPN
) PUNCT
writes:>I've NOUN
been AUX
treated VERB
to ADP
many ADJ
therapies NOUN
for ADP
migraine ADJ
prophylaxis PROPN
and CCONJ
treatment,>and CCONJ
it PRON
looks VERB
like SCONJ
they PRON
'll AUX
try VERB
a DET
few ADJ
more ADJ
on ADP
me PRON
. PUNCT
  SPACE
I PRON
have AUX
taken VERB
propanolol>(I NOUN
think VERB
it PRON
was AUX
10 NUM
mg PROPN
3xdaily PROPN
) PUNCT
with ADP
no DET
relief NOUN
. PUNCT
  SPACE
I PRON
have AUX
just ADV
been AUX
started30 ADJ
mg PROPN
per ADP
day NOUN
of ADP
propranolol NOUN
is AUX
a DET
homeopathic ADJ
dose NOUN
in ADP
migraine NOUN
. PUNCT
If SCONJ
you PRON
got VERB
fatigued VERB
at ADP
that DET
level NOUN
, PUNCT
it PRON
is AUX
unlikely ADJ
that SCONJ
you PRON
willtolerate VERB
enough ADJ
beta NOUN
blocker NOUN
to PART
help VERB
you PRON
. PUNCT
  SPACE
> X
> X
If SCONJ
we PRON
go VERB
the DET
antidepressant ADJ
route NOUN
, PUNCT
what PRON
is AUX
it PRON
likely ADJ
to PART
be AUX
? PUNCT
  SPACE
How ADV
do AUX
> X
antidepressants NOUN
work NOUN
in ADP
migraine NOUN
prophylaxis?>Probably PUNCT
a DET
single ADJ
nightime NOUN
dose NOUN
. PUNCT
  SPACE
We PRON
do AUX
n't PART
know VERB
how ADV
they PRON
work VERB
in ADP
migraine NOUN
, PUNCT
butit NOUN
probably ADV
has AUX
something PRON
to PART
do AUX
with ADP
seratonin.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58093From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
vangus PROPN
nerve NOUN
( PUNCT
vagus PROPN
nerve)In PROPN
article NOUN
< X
52223@seismo NOUN
. PUNCT
CSS.GOV NOUN
> X
bwb@seismo NOUN
. PUNCT
CSS.GOV PROPN
( PUNCT
Brian PROPN
W. PROPN
Barker PROPN
) PUNCT
writes:>mostly ADV
right ADV
. PUNCT
Is AUX
there PRON
a DET
connection NOUN
between ADP
vomiting VERB
> X
and CCONJ
fainting NOUN
that PRON
has AUX
something PRON
to PART
do AUX
with ADP
the DET
vagus NOUN
nerve?>Stimulation PUNCT
of ADP
the DET
vagus PROPN
nerve NOUN
slows VERB
the DET
heart NOUN
and CCONJ
drops VERB
the DET
bloodpressure.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58094From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
MigrainesIn PROPN
article NOUN
< X
DRAND.93Mar26112932@spinner.osf.org PROPN
> X
drand@spinner.osf.org PROPN
( PUNCT
Douglas PROPN
S. PROPN
Rand PROPN
) PUNCT
writes:>So PROPN
I PRON
'll AUX
ask VERB
this DET
, PUNCT
  SPACE
my PRON
neurologist NOUN
just ADV
prescribed VERB
Cafergot PROPN
and CCONJ
> X
Midrin PROPN
as SCONJ
some DET
alternatives NOUN
for ADP
me PRON
to PART
try VERB
. PUNCT
  SPACE
He PRON
stated VERB
that SCONJ
> X
the DET
sublingual ADJ
tablets NOUN
of ADP
ergotamine NOUN
were AUX
no ADV
longer ADV
available.>Any DET
idea NOUN
why ADV
? PUNCT
  SPACE
He PRON
also ADV
suggested VERB
trying VERB
800 NUM
mg PROPN
ibuprophen.>I PROPN
just ADV
found VERB
out ADP
about ADP
the DET
sublinguals NOUN
disappearing VERB
too ADV
. PUNCT
  SPACE
I PRON
don'tknow VERB
why ADV
. PUNCT
  SPACE
Perhaps ADV
because SCONJ
they PRON
were AUX
n't PART
as ADV
profitable ADJ
as SCONJ
cafergot VERB
. PUNCT
Too ADV
bad ADJ
, PUNCT
since SCONJ
tablets NOUN
are AUX
sometimes ADV
vomited VERB
up ADP
by ADP
migraine NOUN
patientsand NOUN
they PRON
do AUX
n't PART
do AUX
any DET
good ADJ
flushed VERB
down ADP
the DET
toilet NOUN
. PUNCT
  SPACE
I PRON
suspectwe'll AUX
be AUX
moving VERB
those DET
patients NOUN
more ADV
and CCONJ
more ADV
to ADP
the DET
DHE PROPN
nasalspray NOUN
, PUNCT
which PRON
is AUX
far ADV
more ADJ
effective.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58095From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
3 X
AIDS PROPN
Related VERB
QuestionsIn PROPN
article NOUN
< X
93087.011308PXF3@psuvm.psu.edu NUM
> X
PXF3@psuvm.psu.edu NUM
( PUNCT
Paula PROPN
Ford PROPN
) PUNCT
writes:>A PROPN
friend NOUN
of ADP
mine NOUN
was AUX
a DET
regular ADJ
volunteer NOUN
blood NOUN
donor NOUN
. PUNCT
  SPACE
During ADP
surgery NOUN
, PUNCT
he PRON
> X
was AUX
given VERB
five NUM
units NOUN
of ADP
blood NOUN
, PUNCT
and CCONJ
after ADP
a DET
suitable ADJ
recovery NOUN
time NOUN
, PUNCT
he PRON
went VERB
> X
to PART
donate VERB
blood NOUN
at ADP
a DET
" PUNCT
bloodmobile NOUN
. PUNCT
" PUNCT
He PRON
was AUX
HIV+ NUM
, PUNCT
and CCONJ
did AUX
not PART
know VERB
it.>>The PROPN
Red PROPN
Cross PROPN
notified VERB
him PRON
with ADP
a DET
_ PROPN
registered VERB
letter NOUN
_ PROPN
. PUNCT
  SPACE
That DET
's AUX
all DET
. PUNCT
  SPACE
No NOUN
> X
counselling NOUN
, PUNCT
no DET
nothing PRON
. PUNCT
  SPACE
He PRON
died VERB
two NUM
years NOUN
ago ADV
, PUNCT
this DET
week NOUN
. PUNCT
  SPACE
He PRON
left VERB
behindHow PROPN
long ADV
ago ADV
was AUX
this DET
? PUNCT
  SPACE
When ADV
I PRON
said VERB
you PRON
'd AUX
get AUX
counselling NOUN
, PUNCT
I PRON
meant VERB
ifyou NOUN
did AUX
it PRON
now ADV
. PUNCT
  SPACE
Long ADV
ago ADV
, PUNCT
practices NOUN
varied ADJ
and CCONJ
agencies NOUN
had AUX
to PART
gearup VERB
to PART
provide VERB
the DET
counselling.>a PROPN
wife NOUN
and CCONJ
a DET
four NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
. PUNCT
  SPACE
Many ADJ
people NOUN
have AUX
suggested VERB
that SCONJ
his PRON
wife NOUN
> X
should AUX
sue VERB
the DET
Red PROPN
Cross PROPN
, PUNCT
but CCONJ
she PRON
would AUX
not PART
. PUNCT
  SPACE
She PRON
says VERB
that SCONJ
without ADP
the DET
> X
blood NOUN
transfusions NOUN
he PRON
would AUX
have AUX
died VERB
during ADP
the DET
surgery.>Good PROPN
for ADP
her PRON
. PUNCT
  SPACE
What PRON
we PRON
do AUX
n't PART
need VERB
is AUX
everyone PRON
suing VERB
community NOUN
serviceagencies NOUN
that PRON
provide VERB
blood NOUN
that PRON
people NOUN
need VERB
. PUNCT
  SPACE
Testing NOUN
is AUX
not PART
fool NOUN
proof NOUN
. PUNCT
The DET
fact NOUN
that SCONJ
he PRON
got VERB
AIDS PROPN
from ADP
a DET
transfusion NOUN
( PUNCT
if SCONJ
he PRON
really ADV
did AUX
) PUNCT
doesnot ADV
mean VERB
the DET
Red PROPN
Cross PROPN
screwed VERB
up ADP
. PUNCT
  SPACE
Prior ADV
to ADP
1983 NUM
or CCONJ
so ADV
, PUNCT
there PRON
wasn'ta ADJ
good ADJ
test NOUN
and CCONJ
a DET
lot NOUN
of ADP
bad ADJ
blood NOUN
got VERB
through ADP
. PUNCT
  SPACE
This DET
was AUX
n't PART
the DET
faultof NOUN
the DET
Red PROPN
Cross PROPN
. PUNCT
  SPACE
When ADV
did AUX
he PRON
get AUX
the DET
transfusions?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58096From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
health NOUN
care NOUN
reformIn NOUN
article NOUN
< X
LMC001@wrc.wrgrace.com PROPN
> X
custer@wrc.wrgrace.com PROPN
( PUNCT
Linda PROPN
Custer PROPN
) PUNCT
writes:>This PROPN
is AUX
my PRON
first ADJ
post NOUN
, PUNCT
and CCONJ
I PRON
am AUX
not PART
even ADV
sure ADJ
it PRON
will AUX
work VERB
. PUNCT
Here ADV
goes.>>Did PROPN
anyone PRON
read VERB
the DET
editorial NOUN
on ADP
page NOUN
70 NUM
in ADP
the DET
29 NUM
march PROPN
1993 NUM
edition NOUN
of ADP
Time PROPN
> X
Magazine PROPN
, PUNCT
noting VERB
that SCONJ
managed VERB
care NOUN
is AUX
extremely ADV
inefficient ADJ
? PUNCT
  SPACE
Of ADP
all DET
the DET
possible ADJ
> NOUN
clients NOUN
that SCONJ
Billary PROPN
could AUX
be AUX
pandering VERB
to ADP
, PUNCT
the DET
insurance NOUN
industry NOUN
is AUX
the DET
worst!>>Comments NOUN
? PUNCT
I PRON
agree VERB
. PUNCT
Adding VERB
layers NOUN
of ADP
managers NOUN
and CCONJ
bureaucrats NOUN
simply ADV
eat VERB
upmoney PROPN
that PRON
could AUX
be AUX
spent VERB
on ADP
those DET
who PRON
actually ADV
are AUX
doing VERB
the DET
worksuch ADJ
as SCONJ
doctors NOUN
and CCONJ
nurse NOUN
, PUNCT
and CCONJ
supplies NOUN
. PUNCT
  SPACE
The DET
most ADV
efficient ADJ
systemis VERB
probably ADV
one NUM
that PRON
has AUX
limited VERB
management NOUN
and CCONJ
a DET
fixed VERB
budget NOUN
suchas PROPN
England PROPN
's PART
or CCONJ
even ADV
Canada PROPN
's PART
. PUNCT
  SPACE
I PRON
'm AUX
afraid ADJ
we PRON
are AUX
on ADP
the DET
wrongtrack NOUN
. PUNCT
  SPACE
The DET
problem NOUN
may AUX
be AUX
that SCONJ
the DET
insurance NOUN
lobby NOUN
is AUX
too ADV
powerful.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58097From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
health NOUN
care NOUN
reformIn NOUN
article NOUN
< X
1993Mar28.200619.5371@cnsvax.uwec.edu NUM
> X
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye PROPN
) PUNCT
writes:>and PROPN
may AUX
be AUX
a DET
total ADJ
disaster NOUN
and CCONJ
that SCONJ
the DET
Canadian ADJ
model NOUN
is AUX
preferable ADJ
, PUNCT
a DET
> X
position NOUN
with ADP
which PRON
I PRON
agree VERB
. PUNCT
  SPACE
The DET
other ADJ
is AUX
surprising ADJ
sympathy NOUN
for ADP
the DET
> PROPN
physicians NOUN
in ADP
all DET
of ADP
this DET
, PUNCT
to ADP
the DET
effect NOUN
that PRON
beating VERB
up ADP
on ADP
us PRON
won't NOUN
> X
help VERB
anything PRON
. PUNCT
> X
I PRON
'm AUX
not PART
sure ADJ
about ADP
that DET
. PUNCT
  SPACE
Did AUX
you PRON
see VERB
the DET
" PUNCT
poll NOUN
" PUNCT
they PRON
took VERB
that DET
showedthat ADV
most ADJ
people NOUN
thought VERB
physicians NOUN
should AUX
be AUX
paid VERB
$ SYM
80,000 NUM
per ADP
yeartops NOUN
? PUNCT
  SPACE
That DET
's AUX
all DET
I PRON
make VERB
, PUNCT
but CCONJ
I PRON
doubt VERB
that SCONJ
most ADJ
physicians NOUN
are AUX
goingto PROPN
work VERB
very ADV
hard ADV
for ADP
that DET
kind NOUN
of ADP
bread NOUN
. PUNCT
  SPACE
Many ADJ
would AUX
n't PART
be AUX
ableto PROPN
service NOUN
their PRON
med ADJ
school NOUN
debts NOUN
on ADP
that DET
. PUNCT
  SPACE
Mike PROPN
Royko PROPN
had AUX
a DET
goodcolumn NOUN
about ADP
it.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58098From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Mar24.182145.11004@equator.com NUM
> X
jod@equator.com PROPN
( PUNCT
John PROPN
Setel PROPN
O'Donnell PROPN
) PUNCT
writes:>IMHO NOUN
, PUNCT
you PRON
have AUX
Lyme PROPN
disease NOUN
. PUNCT
  SPACE
I PRON
told VERB
you PRON
this DET
in ADP
private ADJ
email NOUN
and CCONJ
predicted VERB
> X
that SCONJ
you PRON
might AUX
next ADV
start VERB
having VERB
the DET
migrating VERB
pains NOUN
and CCONJ
further ADJ
jointIMHO PROPN
, PUNCT
the DET
original ADJ
poster NOUN
has AUX
no DET
business NOUN
soliciting VERB
diagnoses NOUN
off ADP
the DET
net NOUN
, PUNCT
nor CCONJ
does AUX
Dr./Mr PROPN
. PUNCT
  SPACE
O'Donnell PROPN
have AUX
any DET
business NOUN
supplying VERB
same ADJ
. PUNCT
This DET
is AUX
onemajor ADJ
reason NOUN
real ADJ
physicians NOUN
avoid VERB
this DET
newsgroup NOUN
like SCONJ
the DET
plague NOUN
. PUNCT
It PRON
isalso VERB
another DET
example NOUN
of ADP
the DET
double ADJ
standard NOUN
: PUNCT
if SCONJ
I PRON
as SCONJ
a DET
physician NOUN
offeredto NOUN
diagnose NOUN
and CCONJ
treat VERB
on ADP
the DET
net NOUN
, PUNCT
I PRON
can AUX
be AUX
sued VERB
. PUNCT
But CCONJ
people NOUN
withoutqualifications NOUN
are AUX
free ADJ
to PART
do AUX
whatever PRON
they PRON
want VERB
and CCONJ
disclaim VERB
it PRON
all DET
with"I'm VERB
not PART
a DET
doctor NOUN
. PUNCT
"Get PUNCT
and CCONJ
keep VERB
this DET
crap NOUN
off ADP
the DET
net NOUN
. PUNCT
Period.-kmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58099From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Patient ADJ
- PUNCT
Physician ADJ
DiplomacyIn PROPN
article NOUN
< X
C4Hyou.1Iz@mentor.cc.purdue.edu PROPN
> X
hrubin@pop.stat.purdue.edu NOUN
( PUNCT
Herman PROPN
Rubin PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
188@ky3b NUM
. PUNCT
UUCP NOUN
> X
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum PROPN
) PUNCT
writes:>>>Ditto X
. PUNCT
Disease PROPN
is AUX
a DET
great ADJ
leveling NOUN
experience NOUN
, PUNCT
however ADV
. PUNCT
Some DET
people>>are VERB
very ADV
much ADV
afronted VERB
to PART
find VERB
out ADP
that SCONJ
all DET
the DET
money NOUN
in ADP
the DET
world>>does NOUN
not PART
buy VERB
one NUM
health NOUN
. PUNCT
Everyone PRON
looks VERB
the DET
same ADJ
when ADV
they PRON
die.>>If VERB
money NOUN
does AUX
not PART
buy VERB
one NUM
health NOUN
, PUNCT
why ADV
are AUX
we PRON
talking VERB
about ADP
paying VERB
> X
for ADP
medical ADJ
expenses NOUN
for ADP
those DET
not PART
currently ADV
" PUNCT
adequately ADV
covered"?Herman PUNCT
, PUNCT
I PRON
would AUX
think VERB
you PRON
of ADP
all DET
people NOUN
would AUX
/ PUNCT
could AUX
distinguishbetween VERB
" PUNCT
health NOUN
" PUNCT
and CCONJ
" PUNCT
treatment NOUN
of ADP
disease NOUN
. PUNCT
" PUNCT
All DET
the DET
preventionmedicine NOUN
people NOUN
preach VERB
this DET
all DET
the DET
time NOUN
. PUNCT
You PRON
can AUX
not PART
buy VERB
health NOUN
. PUNCT
You PRON
can AUX
buy VERB
treatment NOUN
of ADP
disease NOUN
, PUNCT
assuming VERB
you PRON
are AUX
lucky ADJ
enoughto PROPN
have AUX
a DET
disease NOUN
which PRON
can AUX
be AUX
treated VERB
. PUNCT
A DET
rich ADJ
person NOUN
with ADP
aterminal ADJ
disease NOUN
is AUX
a DET
bit NOUN
out SCONJ
of ADP
luck NOUN
. PUNCT
There PRON
is AUX
no DET
such ADJ
thingas NOUN
" PUNCT
adequately ADV
covered VERB
" PUNCT
and CCONJ
there PRON
never ADV
will AUX
be AUX
. PUNCT
And CCONJ
for ADP
what PRON
it PRON
's AUX
worth ADJ
, PUNCT
I PRON
'll AUX
be AUX
the DET
first ADJ
to PART
admit VERB
that SCONJ
all DET
mypatients NOUN
die.-kmNewsgroup ADJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58100From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Immotile PROPN
Cilia PROPN
SyndromeIn PROPN
article NOUN
< X
1993Mar26.213522.26224@ncsu.edu NUM
> X
andrea@unity.ncsu.edu PROPN
( PUNCT
Andrea PROPN
M PROPN
Free PROPN
- PUNCT
Kwiatkowski PROPN
) PUNCT
writes:>I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
new ADJ
information NOUN
out ADV
there ADV
about ADP
the DET
> X
subject NOUN
or CCONJ
any DET
new ADJ
studies NOUN
being AUX
conducted VERB
. PUNCT
  SPACE
I PRON
am AUX
confident ADJ
in ADP
my PRON
> X
pediatrician NOUN
and CCONJ
her PRON
communication NOUN
with ADP
the DET
people NOUN
in ADP
Chapel PROPN
Hill PROPN
, PUNCT
but CCONJ
> X
since SCONJ
this DET
is AUX
a DET
life NOUN
- PUNCT
long ADJ
disorder NOUN
and CCONJ
genetically ADV
transferred VERB
I PRON
would AUX
> X
like INTJ
keep VERB
current ADJ
. PUNCT
  SPACE
I PRON
do AUX
realize VERB
that SCONJ
since SCONJ
this DET
is AUX
a DET
relatively ADV
new ADJ
> X
disorder NOUN
( PUNCT
first ADV
documented VERB
in ADP
1974 NUM
in ADP
a DET
fertility NOUN
clinic NOUN
in ADP
Scandanavia)>and PROPN
is AUX
therefore ADV
" PUNCT
controversial" X
. PUNCT
I PRON
do AUX
not PART
know VERB
a DET
lot NOUN
about ADP
this DET
, PUNCT
except SCONJ
from ADP
seeing VERB
one NUM
patient NOUN
with"Kartagener PROPN
's PART
syndrome NOUN
" PUNCT
, PUNCT
which PRON
is AUX
a DET
form NOUN
of ADP
immotile PROPN
cilia PROPN
syndromein PROPN
which PRON
there PRON
is AUX
situs NOUN
inversus NOUN
, PUNCT
bronchiectasis NOUN
, PUNCT
and CCONJ
chronicinfections NOUN
. PUNCT
" PUNCT
Situs PROPN
inversus NOUN
" PUNCT
means VERB
that SCONJ
organs NOUN
are AUX
on ADP
the DET
wrongside NOUN
of ADP
the DET
body NOUN
, PUNCT
and CCONJ
can AUX
be AUX
complete ADJ
or CCONJ
partial ADJ
. PUNCT
It PRON
is AUX
interestingmedically ADJ
because SCONJ
the DET
normal ADJ
location NOUN
of ADP
organs NOUN
is AUX
caused VERB
in ADP
partby PROPN
the DET
" PUNCT
normal ADJ
" PUNCT
rotation NOUN
associated VERB
with ADP
ciliary ADJ
motion NOUN
, PUNCT
so SCONJ
that DET
inabsence NOUN
of ADP
this DET
, PUNCT
laterality NOUN
can AUX
be AUX
" PUNCT
random ADJ
. PUNCT
" PUNCT
People NOUN
with ADP
situsinversus NOUN
are AUX
quite ADV
popular ADJ
at ADP
medical ADJ
schools NOUN
, PUNCT
because SCONJ
of ADP
theirrarity NOUN
, PUNCT
and CCONJ
the DET
fact NOUN
that SCONJ
most ADJ
doctors NOUN
get VERB
a DET
bit NOUN
upset ADJ
when ADV
theycan't PROPN
find VERB
the DET
patient NOUN
's PART
heart NOUN
sounds VERB
( PUNCT
because SCONJ
they PRON
're AUX
on ADP
the DET
wrongside NOUN
) PUNCT
. PUNCT
According VERB
to ADP
Harrison PROPN
's PART
, PUNCT
immotile PROPN
cilia PROPN
syndrom PROPN
is AUX
an DET
autosomalrecessive NOUN
, PUNCT
which PRON
should AUX
imply VERB
that SCONJ
on ADP
average ADJ
one NUM
child NOUN
in ADP
fourin PROPN
a DET
family NOUN
would AUX
be AUX
affected VERB
. PUNCT
But CCONJ
there PRON
may AUX
be AUX
much ADV
more ADJ
currentinformation NOUN
on ADP
this DET
, PUNCT
and CCONJ
as ADV
usual ADJ
in ADP
medicine NOUN
, PUNCT
we PRON
may AUX
be AUX
talkingabout ADP
more ADJ
than SCONJ
one NUM
conditiion NOUN
. PUNCT
I PRON
would AUX
suggest VERB
that SCONJ
you PRON
ask VERB
yourpediatrician PROPN
about ADP
contacting VERB
a DET
medical ADJ
geneticics NOUN
specialist NOUN
, PUNCT
ofwhich PROPN
there PRON
is AUX
probably ADV
one NUM
at ADP
NCSU.-kmNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58101From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Lung NOUN
disorders NOUN
and CCONJ
clubbing NOUN
of ADP
fingersIn PROPN
article NOUN
< X
SLAGLE.93Mar26205915@sgi417.msd.lmsc.lockheed.com NOUN
> X
slagle@lmsc.lockheed.com X
writes:>Can VERB
anyone PRON
out ADV
there ADV
enlighten VERB
me PRON
on ADP
the DET
relationship NOUN
between ADP
> PROPN
lung NOUN
disorders NOUN
and CCONJ
" PUNCT
clubbing VERB
" PUNCT
, PUNCT
or CCONJ
swelling VERB
and CCONJ
widening VERB
, PUNCT
of ADP
the DET
> X
fingertips NOUN
? PUNCT
  SPACE
What PRON
is AUX
the DET
mechanism NOUN
and CCONJ
why ADV
would AUX
a DET
physician NOUN
> X
call NOUN
for ADP
chest NOUN
xrays NOUN
to PART
diagnose VERB
the DET
cause NOUN
of ADP
the DET
clubbing?Purists NOUN
often ADV
distinguish VERB
between ADP
" PUNCT
true ADJ
" PUNCT
clubbing NOUN
and CCONJ
" PUNCT
pseudo"clubbing VERB
, PUNCT
the DET
difference NOUN
being AUX
that SCONJ
with ADP
" PUNCT
true ADJ
" PUNCT
clubbing ADJ
theangle NOUN
of ADP
the DET
nail NOUN
when ADV
viewed VERB
from ADP
the DET
side NOUN
is AUX
constantlynegative ADJ
when ADV
proceeding VERB
distally ADV
( PUNCT
towards ADP
the DET
fingertip).With PROPN
" PUNCT
pseudo ADJ
" PUNCT
clubbing NOUN
, PUNCT
the DET
angle NOUN
is AUX
initially ADV
positive ADJ
, PUNCT
thennegative ADJ
, PUNCT
which PRON
is AUX
the DET
normal ADJ
situation NOUN
. PUNCT
" PUNCT
Real ADJ
" PUNCT
internistscan ADJ
talk NOUN
for ADP
hours NOUN
about ADP
clubbing VERB
. PUNCT
I PRON
'm AUX
limited ADJ
to ADP
a DET
coupleof NOUN
minutes NOUN
. PUNCT
Whether SCONJ
this DET
distinction NOUN
has AUX
anything PRON
to PART
do AUX
with ADP
reality NOUN
isentirely ADV
unclear ADJ
, PUNCT
but CCONJ
it PRON
is AUX
one NUM
of ADP
those DET
things NOUN
that PRON
internistslove VERB
to ADP
paw ADV
over ADV
during ADP
rounds NOUN
. PUNCT
Supposedly ADV
, PUNCT
only ADV
" PUNCT
true ADJ
" PUNCT
clubbingis PROPN
associated VERB
with ADP
disease NOUN
. PUNCT
The DET
problem NOUN
is AUX
that SCONJ
the DET
list NOUN
ofdiseases NOUN
associated VERB
with ADP
clubbing NOUN
is AUX
quite ADV
long ADJ
, PUNCT
and CCONJ
includesboth DET
congenital ADJ
conditions NOUN
and CCONJ
acquired VERB
disease NOUN
. PUNCT
Since SCONJ
many ADJ
ofthese ADJ
diseases NOUN
are AUX
associated VERB
with ADP
cardiopulmonary ADJ
problemsleading NOUN
to PART
right VERB
to PART
left VERB
shunts NOUN
and CCONJ
chronic ADJ
hypoxemia NOUN
, PUNCT
it PRON
isvery NOUN
reasonable ADJ
to PART
get AUX
a DET
chest NOUN
xray NOUN
. PUNCT
However ADV
, PUNCT
many ADJ
of ADP
the DET
congenital ADJ
abnormalities NOUN
would AUX
only ADV
be AUX
diagnosed VERB
with ADP
a DET
cardiaccatheterization NOUN
. PUNCT
The DET
cause NOUN
of ADP
clubbing NOUN
is AUX
unclear ADJ
, PUNCT
but CCONJ
presumably ADV
relates VERB
tosome NOUN
factor NOUN
causing VERB
blood NOUN
vessels NOUN
in ADP
the DET
distal ADJ
fingertip NOUN
todilate ADJ
abnormally ADV
. PUNCT
Clubbing NOUN
is AUX
one NUM
of ADP
those DET
things NOUN
from ADP
an DET
examination NOUN
which PRON
isa VERB
tipoff NOUN
to PART
do AUX
more ADV
extensive ADJ
examination NOUN
. PUNCT
Often ADV
, PUNCT
however ADV
, PUNCT
the DET
cause NOUN
of ADP
the DET
clubbing NOUN
is AUX
quite ADV
apparent.-kmNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58102From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Open VERB
letter NOUN
to ADP
Hillary PROPN
Rodham PROPN
Clinton PROPN
( PUNCT
# SYM
7)How PUNCT
about ADP
posting VERB
one NUM
of ADP
her PRON
replies NOUN
to ADP
your PRON
letters?-kmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58103From NUM
: PUNCT
km@cs.pitt.edu PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
Menangitis PROPN
questionIn PROPN
article NOUN
< X
C4nzn6.Mzx@crdnns.crd.ge.com PROPN
> X
brooksby@brigham PROPN
. PUNCT
NoSubdomain PROPN
. PUNCT
NoDomain PROPN
( PUNCT
Glen PROPN
W PROPN
Brooksby PROPN
) PUNCT
writes:>This PROPN
past ADJ
weekend NOUN
a DET
friend NOUN
of ADP
mine NOUN
lost VERB
his PRON
13 NUM
month NOUN
old ADJ
> X
daughter NOUN
in ADP
a DET
matter NOUN
of ADP
hours NOUN
to ADP
a DET
form NOUN
of ADP
menangitis NOUN
. PUNCT
  SPACE
The DET
> X
person NOUN
informing VERB
me PRON
called VERB
it PRON
' PUNCT
Nicereal PROPN
Meningicocis PROPN
' PUNCT
( PUNCT
sp?).>In PROPN
retrospect PROPN
, PUNCT
the DET
disease NOUN
struck VERB
her PRON
probably ADV
sometime ADV
on ADP
> X
Friday PROPN
evening NOUN
and CCONJ
she PRON
passed VERB
away ADP
about ADP
2:30pm NUM
on ADP
Saturday.>The PROPN
symptoms NOUN
seemed VERB
to PART
be AUX
a DET
rash NOUN
that PRON
started VERB
small ADJ
and CCONJ
> X
then ADV
began VERB
progressing VERB
rapidly ADV
. PUNCT
She PRON
began VERB
turning VERB
blue ADJ
> X
eventually ADV
which PRON
was AUX
the DET
tip NOUN
- PUNCT
off NOUN
that SCONJ
this DET
was AUX
serious ADJ
> X
but CCONJ
by ADP
that DET
time NOUN
it PRON
was AUX
too ADV
late ADJ
( PUNCT
this DET
is AUX
all DET
second ADJ
hand NOUN
info.).>>My PROPN
question NOUN
is:>Is ADP
this DET
an DET
unusual ADJ
form NOUN
of ADP
Menangitis PROPN
? PUNCT
  SPACE
How ADV
is AUX
it PRON
transmitted?>How PROPN
does AUX
it PRON
work VERB
( PUNCT
ie X
. PUNCT
how ADV
does AUX
it PRON
kill VERB
so ADV
quickly)?There ADV
are AUX
many ADJ
organisms NOUN
, PUNCT
viral ADJ
, PUNCT
bacterial ADJ
, PUNCT
and CCONJ
fungal PROPN
, PUNCT
which PRON
cancause NOUN
meningitits NOUN
, PUNCT
and CCONJ
the DET
course NOUN
of ADP
these DET
infections NOUN
varieswidely ADV
. PUNCT
The DET
causes NOUN
of ADP
bacterial ADJ
meningitis NOUN
vary VERB
with ADP
age NOUN
: PUNCT
in ADP
adultspneumococcus PROPN
( PUNCT
the DET
same ADJ
organism NOUN
which PRON
causes VERB
pneumococcal ADJ
pneumonia)is NOUN
the DET
most ADV
common ADJ
cause NOUN
, PUNCT
while SCONJ
in ADP
children NOUN
Hemophilus PROPN
influenzaeis VERB
the DET
most ADV
common ADJ
cause NOUN
. PUNCT
What PRON
you PRON
are AUX
describing VERB
is AUX
meningitis NOUN
from ADP
Neisseria PROPN
meningitidis PROPN
, PUNCT
which PRON
is AUX
the DET
second ADJ
most ADV
common ADJ
cause NOUN
of ADP
bacterial ADJ
meningitis NOUN
inboth NOUN
groups NOUN
, PUNCT
but CCONJ
with ADP
lower ADJ
incidence NOUN
in ADP
infants NOUN
. PUNCT
This DET
organismis NOUN
also ADV
called VERB
the DET
" PUNCT
meningococcus NOUN
" PUNCT
, PUNCT
and CCONJ
is AUX
the DET
source NOUN
of ADP
thecommon PROPN
epidemics NOUN
of ADP
meningitis PROPN
that PRON
occur VERB
and CCONJ
are AUX
popularized VERB
inthe DET
press NOUN
. PUNCT
Without ADP
prompt ADJ
treatment NOUN
( PUNCT
and CCONJ
even ADV
WITH ADP
it PRON
in ADP
some DET
cases),the NOUN
organism NOUN
typically ADV
causes VERB
death NOUN
within ADP
a DET
day NOUN
. PUNCT
This DET
organism NOUN
, PUNCT
feared VERB
as SCONJ
it PRON
is AUX
, PUNCT
is AUX
actually ADV
grown VERB
from ADP
the DET
throatsof ADJ
many ADJ
normal ADJ
adults NOUN
. PUNCT
It PRON
can AUX
get AUX
to ADP
the DET
meninges NOUN
by ADP
differentways NOUN
, PUNCT
but CCONJ
blood NOUN
borne PROPN
spread NOUN
is AUX
probably ADV
the DET
usual ADJ
case NOUN
. PUNCT
Rifampin NOUN
( PUNCT
an DET
oral ADJ
antibiotic NOUN
) PUNCT
is AUX
often ADV
given VERB
to ADP
family NOUN
and CCONJ
contactsof PROPN
a DET
case NOUN
of ADP
meningococcal ADJ
meningitis NOUN
, PUNCT
by ADP
the DET
way NOUN
. PUNCT
Sorry INTJ
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
have AUX
time NOUN
for ADP
a DET
more ADV
detailed ADJ
reply NOUN
. PUNCT
Meningitisis VERB
a DET
huge ADJ
topic NOUN
, PUNCT
and CCONJ
sci.med PUNCT
ca AUX
n't PART
do AUX
it PRON
justice.-kmNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58104From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
3 X
AIDS PROPN
Related VERB
QuestionsIn PROPN
article NOUN
< X
93088.130924PXF3@psuvm.psu.edu NUM
> NUM
PXF3@psuvm.psu.edu NUM
( PUNCT
Paula PROPN
Ford PROPN
) PUNCT
writes:>we PROPN
know VERB
ours PRON
is AUX
not PART
HIV+ ADJ
and CCONJ
people NOUN
need VERB
it PRON
. PUNCT
  SPACE
I PRON
think VERB
my PRON
husband NOUN
should AUX
give VERB
> X
blood NOUN
, PUNCT
especially ADV
, PUNCT
because SCONJ
his PRON
is AUX
O+ NOUN
, PUNCT
and CCONJ
I PRON
understand VERB
that DET
's AUX
a DET
very ADV
useful ADJ
> X
blood NOUN
type.>It PUNCT
's PART
O- PROPN
that PRON
is AUX
especially ADV
useful ADJ
. PUNCT
  SPACE
Still ADV
, PUNCT
he PRON
is AUX
n't PART
punishing VERB
theRed NUM
Cross PROPN
but CCONJ
some DET
O+ NOUN
person NOUN
that PRON
needed VERB
his PRON
blood NOUN
and CCONJ
couldn'tget VERB
it PRON
. PUNCT
  SPACE
You PRON
are AUX
right ADJ
, PUNCT
nagging VERB
probably ADV
wo AUX
n't PART
help.-- VERB
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58105From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Mar29.181958.3224@equator.com NUM
> X
jod@equator.com PROPN
( PUNCT
John PROPN
Setel PROPN
O'Donnell PROPN
) PUNCT
writes:>>I NOUN
should AUX
n't PART
have AUX
to PART
be AUX
posting VERB
here ADV
. PUNCT
  SPACE
Physicians PROPN
should AUX
know VERB
the DET
Lyme PROPN
> X
literature NOUN
beyond ADP
Steere PROPN
& CCONJ
co PROPN
's PART
denial ADJ
merry NOUN
- PUNCT
go NOUN
- PUNCT
round NOUN
. PUNCT
  SPACE
Patients NOUN
> X
should AUX
get AUX
correctly ADV
diagnosed VERB
and CCONJ
treated.>Why NOUN
do AUX
you PRON
think VERB
Steere PROPN
is AUX
doing VERB
this DET
? PUNCT
  SPACE
Is AUX
n't PART
he PRON
acting VERB
in ADP
good ADJ
faith?After ADV
all ADV
, PUNCT
as SCONJ
the DET
" PUNCT
discoverer NOUN
" PUNCT
of ADP
Lyme PROPN
for ADP
all DET
intents NOUN
and CCONJ
purposes NOUN
, PUNCT
the DET
more ADV
famous ADJ
Lyme PROPN
gets VERB
, PUNCT
the DET
more ADV
famous ADJ
Steere PROPN
gets VERB
. PUNCT
  SPACE
I PRON
don'tsee VERB
the DET
ulterior ADJ
motive NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
easy ADJ
for ADP
me PRON
to PART
see VERB
it PRON
thethose ADP
physicians NOUN
who PRON
call VERB
everything PRON
lyme NOUN
and CCONJ
treat VERB
everything PRON
. PUNCT
There PRON
is AUX
a DET
lot NOUN
of ADP
money NOUN
involved.>I'm ADP
a DET
computer NOUN
engineer NOUN
, PUNCT
not PART
a DET
doctor NOUN
( PUNCT
, PUNCT
Jim PROPN
) PUNCT
. PUNCT
  SPACE
I PRON
was AUX
building VERB
a DET
> X
computer NOUN
manufacturing NOUN
company NOUN
when ADV
I PRON
got VERB
Lyme PROPN
. PUNCT
I PRON
lost VERB
several ADJ
> X
years NOUN
of ADP
my PRON
life NOUN
to ADP
near ADJ
- PUNCT
total ADJ
disability NOUN
; PUNCT
partially ADV
as SCONJ
a DET
result,>the NOUN
company NOUN
failed VERB
, PUNCT
taking VERB
with ADP
it PRON
over ADP
150 NUM
jobs NOUN
, PUNCT
my PRON
savings,>and INTJ
everything PRON
I PRON
'd AUX
worked VERB
for ADP
for ADP
years NOUN
. PUNCT
  SPACE
I PRON
'm AUX
one NUM
of ADP
the DET
" PUNCT
lucky">ones PROPN
in ADP
that SCONJ
I PRON
found VERB
a DET
physician NOUN
through ADP
the DET
Lyme PROPN
foundation NOUN
> X
and CCONJ
now ADV
can AUX
work VERB
almost ADV
full ADJ
- PUNCT
time NOUN
, PUNCT
although SCONJ
I PRON
have AUX
persistent ADJ
> X
infection NOUN
and CCONJ
still ADV
suffer VERB
a DET
variety NOUN
of ADP
sypmtoms NOUN
. PUNCT
  SPACE
And CCONJ
now ADV
> X
I PRON
try VERB
to PART
follow VERB
the DET
Lyme PROPN
literature.>Well PROPN
, PUNCT
it PRON
is AUX
tragic ADJ
what PRON
has AUX
happened VERB
to ADP
you PRON
, PUNCT
but CCONJ
it PRON
doesn'tnecessarily ADV
make VERB
you PRON
the DET
most ADV
objective ADJ
source NOUN
of ADP
informationabout VERB
it PRON
. PUNCT
  SPACE
If SCONJ
your PRON
whole ADJ
life NOUN
is AUX
focussed VERB
around ADP
this DET
, PUNCT
youmay PROPN
be AUX
too ADV
emotionally ADV
involved VERB
to PART
be AUX
advising VERB
other ADJ
peoplewho PROPN
may AUX
or CCONJ
may AUX
not PART
have AUX
Lyme PROPN
. PUNCT
  SPACE
Certainly ADV
advocacy NOUN
of ADP
more ADJ
researchon NOUN
Lyme PROPN
would AUX
not PART
be AUX
out SCONJ
of ADP
order NOUN
, PUNCT
though ADV
, PUNCT
and CCONJ
people NOUN
like SCONJ
youcan PROPN
be AUX
very ADV
effective ADJ
there.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58106From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
CAN'T NOUN
BREATHEIn NOUN
article NOUN
< X
1p8t1p$mvv@agate.berkeley.edu NUM
> X
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes:>>Re VERB
: PUNCT
the DET
prostate NOUN
treatment NOUN
is AUX
worse ADJ
than SCONJ
the DET
disease NOUN
... PUNCT
In ADP
medicine NOUN
there ADV
> X
really ADV
is AUX
something PRON
histologically ADV
identified VERB
as SCONJ
prostate NOUN
tissue NOUN
and CCONJ
> X
there PRON
are AUX
observable ADJ
changes NOUN
which PRON
take VERB
place NOUN
, PUNCT
that SCONJ
whenever ADV
they PRON
occur VERB
, PUNCT
> X
can AUX
be AUX
identified VERB
as SCONJ
prostate NOUN
cancer NOUN
. PUNCT
What PRON
if SCONJ
I PRON
told VERB
you PRON
that SCONJ
most ADV
chiropractorstreat VERB
Subluxation NOUN
( PUNCT
Spinal PROPN
Demons PROPN
) PUNCT
, PUNCT
which PRON
do AUX
n't PART
exist VERB
at ADV
all ADV
. PUNCT
Therefore ADV
any DET
> X
tissue NOUN
damage NOUN
incurred VERB
in ADP
a DET
chiropractic ADJ
treatment NOUN
performed VERB
> X
in ADP
an DET
effort NOUN
to PART
exorcise VERB
this DET
elusive ADJ
Silent PROPN
Killer PROPN
, PUNCT
such ADJ
as SCONJ
ligamentous ADJ
> X
damage NOUN
and CCONJ
laxity NOUN
, PUNCT
microfracture NOUN
of ADP
the DET
joint ADJ
surfaces NOUN
, PUNCT
rib PROPN
fractures NOUN
, PUNCT
> X
strokes NOUN
, PUNCT
paralysis NOUN
, PUNCT
etc X
. PROPN
, PUNCT
is AUX
by ADP
definition NOUN
worse ADJ
than SCONJ
non ADJ
- ADJ
treatment.>>John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CA PROPN
> X
email NOUN
: PUNCT
romdas@uclink.berkeley.eduWhat DET
does AUX
" PUNCT
DC PROPN
" PUNCT
stand VERB
for ADP
? PUNCT
  SPACE
Could AUX
n't PART
be AUX
an DET
antichiropractic NOUN
postingfrom NOUN
a DET
chiropractor NOUN
, PUNCT
could AUX
it PRON
? PUNCT
  SPACE
My PRON
curiosity NOUN
is AUX
piqued VERB
. PUNCT
Prostate PROPN
CA PROPN
is AUX
an DET
especially ADV
troublesome ADJ
entity NOUN
for ADP
chiropractors NOUN
. PUNCT
It PRON
so ADV
typically ADV
causes VERB
bone NOUN
pain NOUN
due ADP
to ADP
spinal ADJ
metastases NOUN
that PRON
itgets NOUN
manipulated VERB
frequently ADV
. PUNCT
  SPACE
Manipulating VERB
a DET
cancer NOUN
riddled ADJ
boneis NOUN
highly ADV
dangerous ADJ
, PUNCT
since SCONJ
it PRON
can AUX
then ADV
fracture VERB
. PUNCT
  SPACE
I PRON
've AUX
seen VERB
atleast ADV
three NUM
cases NOUN
where ADV
this DET
happened VERB
with ADP
resulting VERB
neurologicdamage NOUN
, PUNCT
including VERB
paraplegia NOUN
. PUNCT
  SPACE
This DET
is AUX
one NUM
instance NOUN
where ADV
knowinghow NOUN
to PART
read VERB
x NOUN
- NOUN
rays NOUN
can AUX
really ADV
help VERB
a DET
chiropractor NOUN
stay VERB
out SCONJ
of ADP
trouble NOUN
. PUNCT
DO VERB
chiropractors NOUN
know VERB
what PRON
bony NOUN
mets NOUN
from ADP
prostate NOUN
look VERB
like?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58107From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Menangitis PROPN
questionIn PROPN
article NOUN
< X
C4nzn6.Mzx@crdnns.crd.ge.com PROPN
> X
brooksby@brigham PROPN
. PUNCT
NoSubdomain PROPN
. PUNCT
NoDomain PROPN
( PUNCT
Glen PROPN
W PROPN
Brooksby PROPN
) PUNCT
writes:>This PROPN
past ADJ
weekend NOUN
a DET
friend NOUN
of ADP
mine NOUN
lost VERB
his PRON
13 NUM
month NOUN
old ADJ
> X
daughter NOUN
in ADP
a DET
matter NOUN
of ADP
hours NOUN
to ADP
a DET
form NOUN
of ADP
menangitis NOUN
. PUNCT
  SPACE
The DET
> X
person NOUN
informing VERB
me PRON
called VERB
it PRON
' PUNCT
Nicereal PROPN
Meningicocis PROPN
' PUNCT
( PUNCT
sp?).>In PROPN
retrospect PROPN
, PUNCT
the DET
disease NOUN
struck VERB
her PRON
probably ADV
sometime ADV
on ADP
> X
Friday PROPN
evening NOUN
and CCONJ
she PRON
passed VERB
away ADP
about ADP
2:30pm NUM
on ADP
Saturday.>The PROPN
symptoms NOUN
seemed VERB
to PART
be AUX
a DET
rash NOUN
that PRON
started VERB
small ADJ
and CCONJ
> X
then ADV
began VERB
progressing VERB
rapidly ADV
. PUNCT
She PRON
began VERB
turning VERB
blue ADJ
> X
eventually ADV
which PRON
was AUX
the DET
tip NOUN
- PUNCT
off NOUN
that SCONJ
this DET
was AUX
serious ADJ
> X
but CCONJ
by ADP
that DET
time NOUN
it PRON
was AUX
too ADV
late ADJ
( PUNCT
this DET
is AUX
all DET
second ADJ
hand NOUN
info.).>>My PROPN
question NOUN
is:>Is ADP
this DET
an DET
unusual ADJ
form NOUN
of ADP
Menangitis PROPN
? PUNCT
  SPACE
How ADV
is AUX
it PRON
transmitted?>How PROPN
does AUX
it PRON
work VERB
( PUNCT
ie X
. PUNCT
how ADV
does AUX
it PRON
kill VERB
so ADV
quickly)?>No PROPN
, PUNCT
the DET
neiseria PROPN
meningococcus NOUN
is AUX
one NUM
of ADP
the DET
most ADJ
commonforms NOUN
of ADP
meningitis NOUN
. PUNCT
  SPACE
It PRON
's AUX
the DET
one NOUN
that PRON
sometimes ADV
sweepsschools PROPN
or CCONJ
boot PROPN
camp NOUN
. PUNCT
  SPACE
It PRON
is AUX
contagious ADJ
and CCONJ
kills NOUN
by ADP
attackingthe NOUN
covering NOUN
of ADP
the DET
brain NOUN
, PUNCT
causing VERB
the DET
blood NOUN
vessels NOUN
to PART
thromboseand VERB
the DET
brain NOUN
to PART
swell VERB
up ADP
. PUNCT
It PRON
is AUX
very ADV
treatable ADJ
if SCONJ
caught VERB
in ADP
time NOUN
. PUNCT
  SPACE
There PRON
is AUX
n't PART
much ADJ
time NOUN
, PUNCT
however ADV
. PUNCT
  SPACE
The DET
rash NOUN
is AUX
the DET
tip NOUN
off ADV
. PUNCT
  SPACE
Infants NOUN
are AUX
very ADV
susceptibleto ADJ
dying VERB
from ADP
bacterial ADJ
meningitis NOUN
. PUNCT
  SPACE
Any DET
infant NOUN
with ADP
a DET
fever NOUN
whobecomes VERB
stiff ADJ
or CCONJ
lethargic ADJ
needs NOUN
to PART
be AUX
rushed VERB
to ADP
a DET
hospital NOUN
wherea ADJ
spinal ADJ
tap PROPN
will AUX
show VERB
if SCONJ
they PRON
have AUX
meningitis PROPN
. PUNCT
  SPACE
Seizures PROPN
can AUX
alsooccur.>Immediate VERB
family NOUN
members NOUN
were AUX
told VERB
to PART
take VERB
some DET
kind NOUN
of ADP
medication NOUN
> X
to PART
prevent VERB
them PRON
from ADP
being AUX
carriers NOUN
, PUNCT
yet CCONJ
they PRON
did AUX
n't PART
have AUX
> X
any DET
concerns NOUN
about ADP
my PRON
wife NOUN
and CCONJ
I PRON
coming VERB
to PART
visit VERB
them.>It PROPN
can AUX
live VERB
in ADP
the DET
throat NOUN
of ADP
carriers NOUN
. PUNCT
  SPACE
Do AUX
n't PART
worry VERB
, PUNCT
you PRON
wo AUX
n't PART
get AUX
it PRON
from ADP
them PRON
, PUNCT
especially ADV
if SCONJ
they PRON
took VERB
the DET
medication.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58108From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
CAN'T PROPN
BREATHE"In ADP
article NOUN
< X
1993Mar29.204003.26952@tijc02.uucp NUM
> X
pjs269@tijc02.uucp PROPN
( PUNCT
Paul PROPN
Schmidt PROPN
) PUNCT
writes:>I INTJ
think VERB
it PRON
is AUX
important ADJ
to PART
verify VERB
all DET
procedures NOUN
with ADP
proper ADJ
studies NOUN
to PART
> X
show VERB
their PRON
worthiness NOUN
and CCONJ
risk NOUN
. PUNCT
  SPACE
I PRON
just ADV
read VERB
an DET
interesting ADJ
tidbit NOUN
that SCONJ
> X
80 NUM
% NOUN
of ADP
the DET
medical ADJ
treatments NOUN
are AUX
unproven ADJ
and CCONJ
not PART
based VERB
on ADP
scientific ADJ
> X
fact NOUN
. PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
many ADJ
treatments NOUN
of ADP
prostate NOUN
cancer NOUN
are AUX
unproven ADJ
and CCONJ
> X
the DET
treatment NOUN
may AUX
be AUX
more ADV
dangerous ADJ
than SCONJ
the DET
disease NOUN
( PUNCT
according VERB
to ADP
the DET
> X
article NOUN
I PRON
read.)Where PROPN
did AUX
you PRON
read VERB
this DET
? PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
this DET
is AUX
true ADJ
. PUNCT
  SPACE
I PRON
think VERB
mostmedical ADJ
treatments NOUN
are AUX
based VERB
on ADP
science NOUN
, PUNCT
although SCONJ
it PRON
is AUX
difficultto ADJ
prove VERB
anything PRON
with ADP
certitude NOUN
. PUNCT
  SPACE
It PRON
is AUX
true ADJ
that SCONJ
there PRON
are AUX
somethings NOUN
that PRON
have AUX
just ADV
been AUX
found VERB
" PUNCT
to PART
work VERB
" PUNCT
, PUNCT
but CCONJ
we PRON
have AUX
no DET
goodexplanation NOUN
for ADP
why ADV
. PUNCT
  SPACE
But CCONJ
almost ADV
everything PRON
does AUX
have AUX
a DET
scientificrationale NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
treatment NOUN
for ADP
prostate NOUN
cancer NOUN
isprobably ADV
hormone NOUN
therapy NOUN
. PUNCT
  SPACE
It PRON
has AUX
been AUX
" PUNCT
proven VERB
" PUNCT
to PART
work VERB
. PUNCT
  SPACE
So ADV
haveradiation NOUN
and CCONJ
chemotherapy NOUN
. PUNCT
  SPACE
What PRON
treatments NOUN
did AUX
the DET
article NOUN
sayare VERB
not PART
proven VERB
? PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58109From NUM
: PUNCT
jer@prefect.cc.bellcore.com PROPN
( PUNCT
rathmann PROPN
, PUNCT
janice PROPN
e)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
vs. ADP
Migraine PROPN
( PUNCT
was AUX
Re ADP
: PUNCT
Sinus NOUN
Endoscopy)I NOUN
noticed VERB
several ADJ
years NOUN
ago ADV
that SCONJ
when ADV
I PRON
took VERB
analgesics NOUN
fairly ADV
regularly,(motrin NOUN
at ADP
the DET
time NOUN
) PUNCT
, PUNCT
I PRON
seemed VERB
to PART
get AUX
a DET
lot NOUN
of ADP
migraines NOUN
. PUNCT
  SPACE
But CCONJ
hadforgotten VERB
about ADP
that DET
until ADP
I PRON
started VERB
reading VERB
some DET
of ADP
the DET
posts NOUN
here ADV
. PUNCT
I PRON
generally ADV
do AUX
n't PART
take VERB
NSAIDS PROPN
or CCONJ
Tylenol PROPN
for ADP
headaches NOUN
, PUNCT
because SCONJ
I'vefound PROPN
them PRON
to PART
be AUX
ineffective ADJ
. PUNCT
  SPACE
However ADV
, PUNCT
I PRON
have AUX
two NUM
other ADJ
pain NOUN
sourcesthat PRON
force VERB
me PRON
to PART
take VERB
NSAIDS PROPN
( PUNCT
currently ADV
Naprosyn PROPN
) PUNCT
. PUNCT
  SPACE
First ADV
, PUNCT
is AUX
somepelvic ADJ
pain NOUN
that PRON
I PRON
get VERB
at ADP
the DET
beginning NOUN
of ADP
my PRON
period NOUN
, PUNCT
and CCONJ
then ADV
muchworse VERB
at ADP
midcycle NOUN
. PUNCT
  SPACE
I PRON
have AUX
had VERB
surgery NOUN
for ADP
endometriosis NOUN
in ADP
the DET
past(~12 NOUN
years NOUN
ago ADV
) PUNCT
, PUNCT
so ADV
the DET
Drs PROPN
. PUNCT
tell VERB
me PRON
that SCONJ
my PRON
pain NOUN
is AUX
probably ADV
dueto VERB
the DET
endometriosis NOUN
coming VERB
back ADV
. PUNCT
  SPACE
I PRON
've AUX
tried VERB
Synarel PROPN
, PUNCT
it PRON
reducedthe DET
pain NOUN
while SCONJ
I PRON
took VERB
it PRON
( PUNCT
3 NUM
mos NOUN
) PUNCT
, PUNCT
but CCONJ
the DET
pain NOUN
returned VERB
immediatelyafter NOUN
I PRON
stopped VERB
. PUNCT
  SPACE
Three NUM
doctors NOUN
have AUX
suggested VERB
hysterectomy NOUN
as SCONJ
theonly ADJ
" PUNCT
real ADJ
solution NOUN
" PUNCT
to ADP
my PRON
problem NOUN
. PUNCT
  SPACE
Although SCONJ
I PRON
do AUX
n't PART
expect VERB
to PART
haveany VERB
more ADJ
children NOUN
, PUNCT
I PRON
do AUX
n't PART
like VERB
the DET
idea NOUN
of ADP
having VERB
my PRON
uterus NOUN
andone NOUN
remaining VERB
ovary ADJ
removed VERB
( PUNCT
the DET
first ADJ
ovary NOUN
was AUX
removed VERB
when ADV
I PRON
hadthe VERB
surgery NOUN
for ADP
endometriosis NOUN
) PUNCT
. PUNCT
  SPACE
One NUM
of ADP
the DET
Drs PROPN
that SCONJ
suggestedI PROPN
get AUX
a DET
hysterectomy NOUN
is AUX
an DET
expert NOUN
in ADP
laser NOUN
surgery NOUN
, PUNCT
but CCONJ
perhaps ADV
thinksthat DET
type NOUN
of ADP
procedure NOUN
is AUX
only ADV
worthwhile ADJ
on ADP
women NOUN
who PRON
still ADV
planto VERB
have AUX
children NOUN
. PUNCT
  SPACE
So ADV
basically ADV
all DET
I PRON
'm AUX
left VERB
with ADP
is AUX
toughing VERB
outthe DET
pain NOUN
. PUNCT
  SPACE
This DET
would AUX
be AUX
impossible ADJ
without ADP
Naprosyn PROPN
( PUNCT
or CCONJ
somethingsimilar NOUN
- PUNCT
but CCONJ
not PART
aspirin NOUN
, PUNCT
that DET
does AUX
n't PART
work VERB
, PUNCT
and CCONJ
Motrin PROPN
gave VERB
mehorrible ADJ
gastritis NOUN
a DET
few ADJ
years NOUN
ago ADV
, PUNCT
so ADV
I PRON
'm AUX
through ADP
with ADP
it PRON
) PUNCT
. PUNCT
  SPACE
Infact PROPN
, PUNCT
Naprosyn PROPN
works VERB
very ADV
well ADV
at ADP
eliminating VERB
the DET
pain NOUN
if SCONJ
I PRON
takeit VERB
regularly ADV
as SCONJ
I PRON
did AUX
when ADV
I PRON
had AUX
severe ADJ
back ADJ
pain NOUN
( PUNCT
and CCONJ
pain NOUN
in ADP
both DET
legs NOUN
) PUNCT
as SCONJ
I PRON
'll AUX
discuss VERB
in ADP
a DET
moment NOUN
. PUNCT
  SPACE
Generally ADV
though ADV
, PUNCT
I PRON
wait VERB
untilI PROPN
have AUX
the DET
pain NOUN
before ADP
I PRON
take VERB
the DET
Naprosyn PROPN
, PUNCT
but CCONJ
then ADV
it PRON
takesseveral ADJ
hours NOUN
for ADP
it PRON
reduce VERB
the DET
pain NOUN
( PUNCT
it PRON
's AUX
actually ADV
quite ADV
effectiveat NOUN
reducing VERB
the DET
pain NOUN
, PUNCT
it PRON
just ADV
takes VERB
quite DET
a DET
while NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
the DET
meantimeI'm PROPN
frequently ADV
in ADP
severe ADJ
pain NOUN
. PUNCT
The DET
other ADJ
pain NOUN
source NOUN
I PRON
have AUX
is AUX
chronic ADJ
lower ADJ
back ADJ
pain NOUN
resulting VERB
inbilateral ADJ
radiculopathy ADJ
. PUNCT
  SPACE
I PRON
've AUX
had VERB
MRIs NOUN
, PUNCT
Xrays PROPN
, PUNCT
CT PROPN
scan NOUN
, PUNCT
and CCONJ
EMGs(I've PROPN
had AUX
2 NUM
of ADP
them PRON
, PUNCT
and CCONJ
do AUX
n't PART
intend VERB
to PART
ever ADV
do AUX
that DET
again ADV
) PUNCT
withnerve VERB
conduction NOUN
tests NOUN
. PUNCT
  SPACE
The DET
tests NOUN
have AUX
not PART
been AUX
conclusive ADJ
as SCONJ
towhat DET
is AUX
causing VERB
my PRON
back NOUN
and CCONJ
leg NOUN
pain NOUN
. PUNCT
  SPACE
The DET
MRI PROPN
reports VERB
both DET
say VERB
I PRON
haveseveral ADJ
bulging VERB
, PUNCT
degeneratig NOUN
disks NOUN
, PUNCT
and CCONJ
from ADP
the DET
Xrays PROPN
( PUNCT
and CCONJ
MRI PROPN
, PUNCT
I PRON
think)it VERB
is AUX
apparent ADJ
that SCONJ
I PRON
have AUX
arthritis NOUN
. PUNCT
  SPACE
The DET
reading NOUN
on ADP
the DET
CT PROPN
scanwas VERB
that SCONJ
there PRON
are AUX
two NUM
herniations NOUN
( PUNCT
L3-L4 PROPN
, PUNCT
and CCONJ
L4-L5 PROPN
) PUNCT
, PUNCT
but CCONJ
othershav PROPN
looked VERB
at ADP
the DET
films NOUN
and CCONJ
concluded VERB
that SCONJ
there PRON
are AUX
no DET
herniations NOUN
. PUNCT
The DET
second ADJ
EMG NOUN
and CCONJ
nerve NOUN
conduction NOUN
studies NOUN
shows VERB
significant ADJ
denervationcompared VERB
to ADP
the DET
first ADJ
EMG PROPN
. PUNCT
  SPACE
Oh INTJ
yeah INTJ
, PUNCT
I PRON
had AUX
some DET
other ADJ
horrible ADJ
test NOUN
, PUNCT
called VERB
something PRON
like SCONJ
Somatic PROPN
Evoked PROPN
Response PROPN
which PRON
showed VERB
that SCONJ
the"internal ADJ
nerves NOUN
" PUNCT
are AUX
working VERB
fine ADV
. PUNCT
   SPACE
Anyway INTJ
, PUNCT
the DET
bottom ADJ
line NOUN
is AUX
thatI PROPN
sometimes ADV
have AUX
severe ADJ
pain NOUN
in ADP
both DET
legs NOUN
and CCONJ
back ADJ
pain NOUN
. PUNCT
  SPACE
The DET
back ADJ
painis NOUN
there ADV
all DET
the DET
time NOUN
, PUNCT
but CCONJ
I PRON
can AUX
live VERB
with ADP
it PRON
. PUNCT
  SPACE
When ADV
the DET
leg NOUN
pain NOUN
is AUX
there ADV
, PUNCT
I PRON
need VERB
some DET
analgesic ADJ
/ SYM
anti ADJ
- ADJ
inflammatory ADJ
medication NOUN
to PART
reduce VERB
the DET
painto NOUN
a DET
level NOUN
where ADV
I PRON
can AUX
work VERB
. PUNCT
  SPACE
So ADV
I PRON
took VERB
Naprosyn PROPN
regulary NOUN
for ADP
6 NUM
- SYM
9months NOUN
( PUNCT
every DET
time NOUN
I PRON
tried VERB
to PART
stop VERB
the DET
leg NOUN
pain NOUN
got VERB
worse ADJ
, PUNCT
so CCONJ
I PRON
'd AUX
always ADV
resume VERB
) PUNCT
. PUNCT
  SPACE
Since SCONJ
last ADJ
November PROPN
I PRON
have AUX
taken VERB
it PRON
much ADV
less ADV
frequently ADV
, PUNCT
and CCONJ
primarily ADV
for ADP
the DET
pelvic ADJ
pain NOUN
. PUNCT
  SPACE
I PRON
have AUX
been AUX
going VERB
to ADP
physicaltherapy NOUN
for ADP
the DET
last ADJ
8 NUM
months NOUN
( PUNCT
2 NUM
- SYM
3 NUM
times NOUN
a DET
week NOUN
) PUNCT
. PUNCT
  SPACE
After ADP
the DET
first ADJ
monthor NOUN
so ADV
, PUNCT
my PRON
therapist NOUN
put VERB
me PRON
on ADP
pelvic ADJ
traction NOUN
( PUNCT
she PRON
had AUX
tried VERB
it PRON
earlier ADV
, PUNCT
but CCONJ
it PRON
had AUX
caused VERB
a DET
lot NOUN
of ADP
pain NOUN
in ADP
my PRON
back NOUN
, PUNCT
this DET
time NOUN
she PRON
tried VERB
it PRON
ata PROPN
lower ADJ
weight NOUN
) PUNCT
. PUNCT
  SPACE
After ADP
a DET
month NOUN
or CCONJ
two NUM
, PUNCT
the DET
pain NOUN
in ADP
my PRON
legs NOUN
began VERB
goingaway ADJ
( PUNCT
but CCONJ
the DET
traction NOUN
aways VERB
caused VERB
discomfort NOUN
in ADP
my PRON
lower ADJ
back ADV
, PUNCT
whichcould AUX
be AUX
reduced VERB
with ADP
ultrasound NOUN
and CCONJ
massage NOUN
) PUNCT
. PUNCT
  SPACE
So ADV
now ADV
, PUNCT
I PRON
do AUX
n't PART
havenearly ADV
as ADV
much ADJ
pain NOUN
in ADP
my PRON
legs NOUN
, PUNCT
in ADP
fact NOUN
my PRON
therapist NOUN
took VERB
me PRON
offtraction NOUN
about ADV
2 NUM
weeks NOUN
ago ADV
. PUNCT
Getting VERB
back ADV
to ADP
my PRON
original ADJ
reason NOUN
for ADP
this DET
post NOUN
... PUNCT
  SPACE
Even ADV
if SCONJ
I PRON
can AUX
avoidtaking VERB
analgesic ADJ
for ADP
headaches NOUN
, PUNCT
I PRON
really ADV
ca AUX
n't PART
avoid VERB
them PRON
entirely ADV
becauseI PROPN
have AUX
other ADJ
pain NOUN
sources NOUN
, PUNCT
that SCONJ
" PUNCT
force NOUN
" PUNCT
me PRON
to PART
use VERB
them PRON
( PUNCT
Oh INTJ
, PUNCT
I PRON
forgotto VERB
mention VERB
that SCONJ
it PRON
has AUX
been AUX
suggested VERB
to ADP
me PRON
that SCONJ
I PRON
have AUX
back NOUN
surgery NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
avoiding VERB
that SCONJ
too ADV
) PUNCT
. PUNCT
  SPACE
I PRON
find VERB
the DET
migraines NOUN
difficult ADJ
to PART
deal VERB
with ADP
, PUNCT
occassionally ADV
I PRON
have AUX
to PART
take VERB
off ADP
work NOUN
, PUNCT
but CCONJ
usually ADV
I PRON
can AUX
work VERB
, PUNCT
but CCONJ
ata PROPN
reduced VERB
capacity NOUN
( PUNCT
I PRON
'm AUX
a DET
systems NOUN
engineer NOUN
and CCONJ
do AUX
a DET
lot NOUN
of ADP
readingand NOUN
writing NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
the DET
pelvic ADJ
pain NOUN
is AUX
bad ADJ
, PUNCT
I PRON
ca AUX
n't PART
concentrate VERB
much ADV
, PUNCT
I PRON
usually ADV
end VERB
up ADP
jumping VERB
out SCONJ
of ADP
my PRON
chair NOUN
every DET
few ADJ
minutes NOUN
, PUNCT
becausethe NOUN
pain NOUN
is AUX
so ADV
bothersome ADJ
. PUNCT
  SPACE
When ADV
the DET
pain NOUN
in ADP
my PRON
back NOUN
is AUX
bad ADJ
, PUNCT
it PRON
cancause VERB
severe ADJ
burning NOUN
in ADP
both DET
legs NOUN
, PUNCT
shooting VERB
pains NOUN
in ADP
my PRON
legs NOUN
, PUNCT
electricshock NOUN
type NOUN
of ADP
pain NOUN
in ADP
my PRON
feet NOUN
and CCONJ
toes NOUN
, PUNCT
and CCONJ
basically ADV
when ADV
it PRON
gets VERB
badI PROPN
ca AUX
n't PART
really ADV
sit VERB
at ADV
all ADV
. PUNCT
  SPACE
Then ADV
I PRON
end VERB
up ADP
spending VERB
most ADJ
of ADP
my PRON
time NOUN
homeand NOUN
in ADP
bed NOUN
. PUNCT
  SPACE
So ADV
even ADV
if SCONJ
the DET
analgesics NOUN
contribute VERB
to ADP
the DET
migraines NOUN
, PUNCT
themigraines NOUN
are AUX
more ADV
tolerable ADJ
than SCONJ
the DET
other ADJ
pain NOUN
sources NOUN
. PUNCT
  SPACE
I PRON
get VERB
a DET
lotof NOUN
migraines NOUN
, PUNCT
an DET
average NOUN
of ADP
3 NUM
to ADP
4 NUM
a DET
month NOUN
, PUNCT
which PRON
last ADJ
1 NUM
- SYM
3 NUM
days NOUN
. PUNCT
I've PROPN
taken VERB
cafergot VERB
( PUNCT
the DET
first ADJ
time NOUN
the DET
caffiene NOUN
really ADV
got VERB
to ADP
me PRON
soI PROPN
reduced VERB
the DET
dosage NOUN
) PUNCT
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
like VERB
the DET
side NOUN
effects NOUN
( PUNCT
if SCONJ
I PRON
takemore VERB
than SCONJ
two NUM
I PRON
get VERB
diahrea ADJ
) PUNCT
. PUNCT
  SPACE
If SCONJ
I PRON
get VERB
a DET
very ADV
bad ADJ
headache NOUN
, PUNCT
I PRON
willeventually ADV
take VERB
the DET
cafergot NOUN
. PUNCT
  SPACE
My PRON
neurologist NOUN
was AUX
n't PART
very ADV
helpful ADJ
whenI PROPN
told VERB
him PRON
my PRON
problems NOUN
with ADP
cafergot PROPN
, PUNCT
he PRON
said VERB
that SCONJ
when ADV
sumatriptanbecomes NOUN
available ADJ
, PUNCT
I PRON
should AUX
try VERB
that DET
. PUNCT
  SPACE
I PRON
've AUX
tried VERB
several ADJ
other ADJ
medications(fiornal PROPN
, PUNCT
midrin PROPN
, PUNCT
fiornal ADJ
with ADP
codeine NOUN
, PUNCT
tegretol PROPN
, PUNCT
and CCONJ
inderal ADJ
) PUNCT
butthey NOUN
either CCONJ
did AUX
n't PART
work VERB
, PUNCT
or CCONJ
I PRON
could AUX
n't PART
tolerate VERB
them PRON
. PUNCT
  SPACE
So ADV
what PRON
can AUX
I PRON
do?My PROPN
doctor NOUN
's PART
seem NOUN
to PART
be AUX
satisfied ADJ
with ADP
me PRON
just ADV
trying VERB
to PART
tolerate VERB
thepain NOUN
, PUNCT
which PRON
I PRON
agree VERB
with ADP
most ADJ
of ADP
the DET
time NOUN
, PUNCT
but CCONJ
not PART
when ADV
I PRON
have AUX
a DET
lot NOUN
ofpain NOUN
. PUNCT
  SPACE
I PRON
've AUX
had VERB
some DET
bad ADJ
experiences NOUN
with ADP
surgery NOUN
( PUNCT
my PRON
heart NOUN
stoppedonce NOUN
from ADP
the DET
anesthesia PROPN
- PUNCT
I PRON
was AUX
told VERB
that SCONJ
it PRON
was AUX
likely ADV
thesuccinylcholine ADJ
) PUNCT
, PUNCT
and CCONJ
I PRON
've AUX
already ADV
had VERB
surgery NOUN
several ADJ
times NOUN
. PUNCT
Anyway INTJ
, PUNCT
the DET
point NOUN
of ADP
what PRON
I PRON
'm AUX
saying VERB
is AUX
that SCONJ
even ADV
if SCONJ
analgesics NOUN
can AUX
contributeto VERB
migraines NOUN
, PUNCT
some DET
people NOUN
NEED VERB
to PART
take VERB
them PRON
to PART
tolerate VERB
other ADJ
pain NOUN
. PUNCT
Janice PROPN
RathmannNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58110From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Teenage ADJ
acnepchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill PROPN
) PUNCT
writes:>My PROPN
14-y PROPN
- PUNCT
o PROPN
son NOUN
has AUX
the DET
usual ADJ
teenage NOUN
spotty ADJ
chin NOUN
and CCONJ
greasy NOUN
nose NOUN
. PUNCT
  SPACE
I PRON
> X
bought VERB
him PRON
Clearasil PROPN
face NOUN
wash NOUN
and CCONJ
ointment NOUN
. PUNCT
  SPACE
I PRON
think VERB
that DET
is AUX
probably ADV
> X
enough ADV
, PUNCT
along ADP
with ADP
the DET
usual ADJ
good ADJ
diet NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
he PRON
is AUX
on ADP
at ADP
me PRON
to PART
> X
get AUX
some DET
product NOUN
called VERB
Dalacin PROPN
T PROPN
, PUNCT
which PRON
used VERB
to PART
be AUX
a DET
> X
doctor's ADJ
- PUNCT
prescription NOUN
only ADJ
treatment NOUN
but CCONJ
is AUX
not PART
available ADJ
over ADP
the DET
> PROPN
chemist NOUN
's PART
counter NOUN
. PUNCT
  SPACE
I PRON
have AUX
asked VERB
a DET
couple NOUN
of ADP
pharmacists NOUN
who PRON
say VERB
> X
either CCONJ
his PRON
acne NOUN
is AUX
not PART
severe ADJ
enough ADV
for ADP
Dalacin PROPN
T PROPN
, PUNCT
or CCONJ
that SCONJ
Clearasil PROPN
> X
is AUX
OK ADJ
. PUNCT
  SPACE
I PRON
had AUX
the DET
odd ADJ
spots NOUN
as SCONJ
a DET
teenager NOUN
, PUNCT
nothing PRON
serious ADJ
. PUNCT
  SPACE
His PRON
> X
father NOUN
was AUX
the DET
same ADJ
, PUNCT
so ADV
I PRON
do AUX
n't PART
figure VERB
his PRON
acne NOUN
is AUX
going VERB
to PART
escalate VERB
> X
into ADP
something PRON
disfiguring VERB
. PUNCT
  SPACE
But CCONJ
I PRON
know VERB
kids NOUN
are AUX
senstitive ADJ
about ADP
> X
their PRON
appearance NOUN
. PUNCT
  SPACE
I PRON
am AUX
wary ADJ
because SCONJ
a DET
neighbour NOUN
's PART
son NOUN
had AUX
this DET
wierd NOUN
> X
malady PROPN
that PRON
was AUX
eventually ADV
put VERB
down ADP
to ADP
an DET
overdose NOUN
of ADP
vitamin NOUN
A NOUN
from ADP
> PROPN
acne PROPN
treatment NOUN
. PUNCT
  SPACE
I PRON
want VERB
to PART
help VERB
- PUNCT
but CCONJ
with ADP
appropriate ADJ
treatment.>My NUM
son NOUN
also ADV
has AUX
some DET
scaliness NOUN
around ADP
the DET
hairline NOUN
on ADP
his PRON
scalp NOUN
. PUNCT
  SPACE
Sort ADV
> PROPN
of ADP
teenage ADJ
cradle PROPN
cap NOUN
. PUNCT
  SPACE
Any DET
pointers NOUN
/ SYM
advice NOUN
on ADP
this DET
? PUNCT
  SPACE
We PRON
have AUX
tried VERB
a DET
> X
couple NOUN
of ADP
anti PROPN
dandruff PROPN
shampoos NOUN
and CCONJ
some DET
of ADP
these DET
are AUX
inclined ADJ
to PART
> X
make VERB
the DET
condition NOUN
worse ADV
, PUNCT
not PART
better.>Shall PROPN
I PRON
bury VERB
the DET
kid NOUN
till SCONJ
he PRON
's AUX
21 NUM
: PUNCT
): PROPN
) PUNCT
No INTJ
... PUNCT
I PRON
was AUX
one NUM
of ADP
the DET
lucky ADJ
ones NOUN
. PUNCT
Very ADV
little ADJ
acne NOUN
as SCONJ
a DET
teenager NOUN
. PUNCT
Ididn't PROPN
have AUX
any DET
luck NOUN
with ADP
clearasil PROPN
. PUNCT
Even ADV
though SCONJ
my PRON
skin NOUN
gets VERB
oily ADV
itreally ADV
only ADV
gets VERB
miserable ADJ
pimples NOUN
when ADV
it PRON
's AUX
dry ADJ
. PUNCT
Frequent ADJ
lukewarm ADJ
water NOUN
rinses VERB
on ADP
the DET
face NOUN
might AUX
help VERB
. PUNCT
Getting VERB
the DET
scalpthing NOUN
under ADP
control NOUN
might AUX
help VERB
( PUNCT
that PRON
could AUX
be AUX
as ADV
simple ADJ
as SCONJ
submerging VERB
underthe PROPN
bathwater PROPN
till SCONJ
it PRON
's AUX
softened VERB
and CCONJ
washing VERB
it PRON
out ADP
) PUNCT
. PUNCT
Taking VERB
a DET
one NOUN
a DET
dayvitamin NOUN
/ SYM
mineral NOUN
might AUX
help VERB
. PUNCT
I PRON
've AUX
heard VERB
iodine NOUN
causes NOUN
trouble NOUN
and CCONJ
that SCONJ
it PRON
  SPACE
is AUX
used VERB
in ADP
fast ADJ
food NOUN
restaurants NOUN
to PART
sterilize VERB
equipment NOUN
which PRON
might AUX
bewhere VERB
the DET
belief NOUN
that SCONJ
greasy NOUN
foods NOUN
cause PROPN
acne PROPN
came VERB
from ADP
. PUNCT
I PRON
notice VERB
grease NOUN
on ADP
my PRON
face NOUN
, PUNCT
not PART
immediately ADV
removed VERB
will AUX
cause VERB
acne PROPN
( PUNCT
even ADV
from ADP
eatingmeat).Keeping VERB
hair NOUN
rinse NOUN
, PUNCT
mousse PROPN
, PUNCT
dip PROPN
, PUNCT
and CCONJ
spray VERB
off ADP
the DET
face NOUN
will AUX
help VERB
. PUNCT
Warmwater NOUN
bath NOUN
soaks VERB
or CCONJ
cloths NOUN
on ADP
the DET
face NOUN
to PART
soften VERB
the DET
oil NOUN
in ADP
the DET
pores NOUN
willhelp NOUN
prevent NOUN
blackheads NOUN
. PUNCT
Body NOUN
oil NOUN
is AUX
hydrophilic ADJ
, PUNCT
loves VERB
water NOUN
and CCONJ
itsoftens NOUN
and CCONJ
washes VERB
off ADP
when ADV
it PRON
has AUX
a DET
chance NOUN
. PUNCT
That DET
's AUX
why ADV
hair NOUN
goes VERB
limp ADJ
withoilyness NOUN
. PUNCT
Becoming VERB
convinced ADJ
that SCONJ
the DET
best ADJ
thing NOUN
to PART
do AUX
witha NOUN
whitehead NOUN
is AUX
leave VERB
it PRON
alone ADJ
will AUX
save VERB
him PRON
days NOUN
of ADP
pimple NOUN
misery NOUN
. PUNCT
Anyprying VERB
of ADP
black ADJ
or CCONJ
whiteheads NOUN
can AUX
cause VERB
infections NOUN
, PUNCT
the DET
red ADJ
spots NOUN
ofpimples NOUN
. PUNCT
Usually ADV
a DET
whitehead NOUN
will AUX
break VERB
naturally ADV
in ADP
a DET
day NOUN
and CCONJ
there ADV
won'tbe CCONJ
an DET
infection NOUN
afterwards ADV
. PUNCT
Tell VERB
him PRON
that SCONJ
it PRON
's AUX
normal ADJ
to PART
have AUX
some DET
pimples NOUN
but CCONJ
the DET
cosmetic NOUN
industrymakes NOUN
it PRON
's AUX
money NOUN
off ADP
of ADP
selling VERB
people NOUN
on ADP
the DET
idea NOUN
that SCONJ
they PRON
are AUX
anincredible ADJ
defect ADJ
to PART
be AUX
hidden VERB
at ADP
any DET
cost NOUN
( PUNCT
even ADV
that DET
of ADP
causing VERB
more ADJ
pimples NOUN
) PUNCT
. PUNCT
-Jackie NUM
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58111From NUM
: PUNCT
Mark PROPN
W. PROPN
DubinSubject PROPN
: PUNCT
Re ADP
: PUNCT
ringing VERB
earsjfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare PROPN
) PUNCT
writes:>A PROPN
friend NOUN
of ADP
mine NOUN
has AUX
a DET
trouble NOUN
with ADP
her PRON
ears NOUN
ringing VERB
. PUNCT
[ PUNCT
etc.]A. PROPN
  SPACE
Folks NOUN
, PUNCT
do AUX
we PRON
have AUX
an DET
FAQ PROPN
on ADP
tinnitus NOUN
yet?B. PROPN
  SPACE
As SCONJ
a DET
lo PROPN
- PUNCT
o NOUN
- PUNCT
o NOUN
- PUNCT
ong ADJ
time NOUN
sufferer NOUN
of ADP
tinnitus PROPN
and CCONJ
as SCONJ
a DET
neuroscientistwho NOUN
has AUX
looked VERB
over ADP
the DET
literature NOUN
carefully ADV
I PRON
believe VERB
the DET
followingare NOUN
reasonable ADJ
conclusions:1 PROPN
. PUNCT
Millions NOUN
of ADP
people NOUN
suffer VERB
from ADP
chronic ADJ
tinnitus.2 NOUN
. PUNCT
The DET
cause NOUN
it PRON
not PART
understood.3 ADV
. PUNCT
There PRON
is AUX
no DET
accepted ADJ
treatment NOUN
that PRON
cures VERB
it.4 PUNCT
. PUNCT
Some DET
experimental ADJ
treatments NOUN
may AUX
have AUX
helped VERB
some DET
people NOUN
a DET
bit NOUN
, PUNCT
butthere ADV
have AUX
be AUX
no DET
reports NOUN
-- PUNCT
even ADV
anecdotal ADJ
-- PUNCT
of ADP
massive ADJ
good ADJ
results NOUN
withany NOUN
of ADP
these DET
experimental ADJ
drugs.5 NOUN
. PUNCT
Some DET
people NOUN
with ADP
chronic ADJ
loud ADJ
tinnitus NOUN
use VERB
noise NOUN
blocking VERB
to PART
get AUX
to ADP
sleep.6 PROPN
. PUNCT
Sudden ADJ
onset NOUN
loud ADJ
tinnitus NOUN
can AUX
be AUX
caused VERB
by ADP
injuries NOUN
and CCONJ
sometimesabates NOUN
or CCONJ
goes VERB
away ADV
after ADP
a DET
few ADJ
months.7 NOUN
. PUNCT
Aspirin NOUN
is AUX
well ADV
known ADJ
to PART
exacerbate VERB
tinnitus NOUN
in ADP
some DET
people.8 PROPN
. PUNCT
There PRON
is AUX
a DET
national ADJ
association NOUN
of ADP
tinnitus PROPN
sufferers NOUN
in ADP
the DET
US.9 PROPN
. PUNCT
One NUM
usually ADV
gets VERB
used VERB
to ADP
it PRON
. PUNCT
  SPACE
Especially ADV
when ADV
concentrating VERB
onsomething VERB
else ADV
the DET
tinnitus NOUN
becomes VERB
unnoticed.10 X
. PUNCT
  SPACE
Stress NOUN
and CCONJ
lack NOUN
of ADP
sleep NOUN
make VERB
tinnitus NOUN
more ADV
annoying ADJ
, PUNCT
sometimes.11 PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
those DET
of ADP
us PRON
who PRON
have AUX
it PRON
wish VERB
there PRON
was AUX
a DET
cure NOUN
, PUNCT
but CCONJ
thereis PROPN
not PART
. PUNCT
Mark PROPN
dubinthe NOUN
ol' ADJ
professorNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58112From NUM
: PUNCT
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
jiggersI PROPN
may AUX
not PART
be AUX
the DET
world NOUN
's PART
greatest ADJ
expert NOUN
on ADP
chiggers NOUN
( PUNCT
a DET
type NOUN
ofmite ADJ
indigenous ADJ
to ADP
the DET
south NOUN
) PUNCT
, PUNCT
but CCONJ
I PRON
certainly ADV
have AUX
spent VERB
a DET
lotof NOUN
time NOUN
contemplating VERB
the DET
little ADJ
buggers NOUN
over ADP
the DET
past ADJ
six NUM
years(since NOUN
we PRON
moved VERB
to ADP
N.C. PROPN
) PUNCT
. PUNCT
  SPACE
Here ADV
are AUX
some DET
observations NOUN
gained VERB
frompainful ADJ
experience NOUN
: PUNCT
  SPACE
1 NUM
. PUNCT
Reactions NOUN
to ADP
chiggers NOUN
vary VERB
greatly ADV
from ADP
person NOUN
to ADP
person NOUN
. PUNCT
     SPACE
Some DET
people NOUN
get VERB
tiny ADJ
red ADJ
bites NOUN
. PUNCT
  SPACE
Others NOUN
( PUNCT
like SCONJ
me PRON
) PUNCT
are AUX
more ADV
     SPACE
sensitive NOUN
and CCONJ
get VERB
fairly ADV
large ADJ
swollen ADJ
sore ADJ
- PUNCT
like ADJ
affairs NOUN
. PUNCT
  SPACE
2 X
. PUNCT
Chigger NOUN
bites NOUN
are AUX
the DET
gift NOUN
that PRON
keeps VERB
on ADP
giving VERB
. PUNCT
  SPACE
I PRON
swear VERB
     SPACE
that SCONJ
these DET
things NOUN
will AUX
itch VERB
for ADP
months NOUN
. PUNCT
  SPACE
3 NUM
. PUNCT
There PRON
is AUX
a DET
lot NOUN
of ADP
folklore NOUN
about ADP
chiggers NOUN
. PUNCT
  SPACE
I PRON
think VERB
most ADJ
of ADP
     SPACE
it PRON
is AUX
fiction NOUN
. PUNCT
  SPACE
I PRON
have AUX
tried VERB
to PART
do AUX
research NOUN
on ADP
the DET
critters NOUN
, PUNCT
     SPACE
since SCONJ
they PRON
have AUX
such DET
an DET
effect NOUN
on ADP
me PRON
. PUNCT
  SPACE
The DET
only ADJ
book NOUN
I PRON
could AUX
     SPACE
find VERB
on ADP
the DET
subject NOUN
was AUX
a DET
* PUNCT
single ADJ
* PUNCT
book NOUN
in ADP
UNC PROPN
's PART
special ADJ
     SPACE
collections NOUN
library NOUN
. PUNCT
  SPACE
I PRON
have AUX
not PART
yet ADV
gone VERB
through ADP
what PRON
is AUX
     SPACE
required VERB
to PART
get AUX
it PRON
. PUNCT
  SPACE
4 NUM
. PUNCT
Based VERB
on ADP
my PRON
experience NOUN
and CCONJ
that DET
of ADP
my PRON
family NOUN
members NOUN
, PUNCT
the DET
old ADJ
     SPACE
folk NOUN
remedy NOUN
of ADP
fingernail NOUN
polish NOUN
simply ADV
does AUX
n't PART
work VERB
. PUNCT
  SPACE
I PRON
recall VERB
     SPACE
reading NOUN
that SCONJ
the DET
theory NOUN
upon SCONJ
which PRON
it PRON
is AUX
based VERB
( PUNCT
that SCONJ
the DET
chiggers NOUN
     SPACE
burrow NOUN
into ADP
your PRON
skin NOUN
and CCONJ
continue VERB
to PART
party NOUN
there ADV
) PUNCT
is AUX
false ADJ
. PUNCT
  SPACE
I PRON
     SPACE
think VERB
it PRON
is AUX
more ADV
likely ADJ
that SCONJ
the DET
reaction NOUN
is AUX
to ADP
toxins NOUN
of ADP
some DET
     SPACE
sort NOUN
the DET
little ADJ
pests NOUN
release VERB
. PUNCT
  SPACE
But CCONJ
this DET
is AUX
speculation NOUN
. PUNCT
  SPACE
5 NUM
. PUNCT
The DET
* PUNCT
best ADJ
* PUNCT
approach NOUN
is AUX
prevention NOUN
. PUNCT
  SPACE
A DET
couple NOUN
of ADP
things NOUN
work VERB
well ADV
. PUNCT
     SPACE
A DET
good ADJ
insect NOUN
repellent NOUN
( PUNCT
DEET PROPN
) PUNCT
such ADJ
as SCONJ
Deep PROPN
Woods PROPN
Off ADP
liberally ADV
     SPACE
applied VERB
to ADP
ankles NOUN
, PUNCT
waistband NOUN
, PUNCT
etc X
. PUNCT
is AUX
a DET
good ADJ
start NOUN
. PUNCT
  SPACE
There PRON
is AUX
     SPACE
another DET
preparation NOUN
called VERB
" PUNCT
Chig PROPN
Away ADV
" PUNCT
that DET
is AUX
a DET
combination NOUN
of ADP
     SPACE
sulfur NOUN
and CCONJ
some DET
kind NOUN
of ADP
cream NOUN
( PUNCT
cortisone PROPN
? PUNCT
) PUNCT
that SCONJ
originally ADV
was AUX
     SPACE
prepared VERB
for ADP
the DET
Army PROPN
and CCONJ
is AUX
not PART
commercially ADV
available ADJ
. PUNCT
  SPACE
In ADP
     SPACE
the DET
summer NOUN
I PRON
put VERB
this DET
on ADP
my PRON
ankles NOUN
every DET
morning NOUN
when ADV
I PRON
get VERB
     SPACE
up ADP
on ADP
weekends NOUN
since SCONJ
I PRON
literally ADV
ca AUX
n't PART
go VERB
outside ADV
where ADV
we PRON
     SPACE
live ADV
( PUNCT
in ADP
the DET
country NOUN
) PUNCT
without ADP
serious ADJ
consequences NOUN
. PUNCT
  SPACE
( PUNCT
They PRON
     SPACE
apparently ADV
do AUX
n't PART
like VERB
sulfur NOUN
much ADV
at ADV
all ADV
. PUNCT
  SPACE
You PRON
can AUX
use VERB
sulfur NOUN
     SPACE
as SCONJ
a DET
dust NOUN
on ADP
your PRON
body NOUN
or CCONJ
clothing NOUN
to PART
repel VERB
them PRON
. PUNCT
) PUNCT
  SPACE
6 NUM
. PUNCT
No DET
amount NOUN
of ADP
prevention NOUN
will AUX
be AUX
* PUNCT
completely ADV
* PUNCT
successful ADJ
. PUNCT
  SPACE
Forget VERB
     SPACE
the DET
fingernail NOUN
polish NOUN
. PUNCT
  SPACE
I PRON
have AUX
finally ADV
settled VERB
upon SCONJ
a DET
treatment NOUN
     SPACE
that PRON
involves VERB
topical ADJ
application NOUN
of ADP
a DET
combination NOUN
of ADP
cortisone NOUN
     SPACE
creme NOUN
( PUNCT
reduces VERB
the DET
inflamation NOUN
and CCONJ
swelling NOUN
) PUNCT
and CCONJ
benzocaine VERB
     SPACE
( PUNCT
relieves VERB
the DET
itch NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
wo AUX
n't PART
tell VERB
you PRON
all DET
the DET
things NOUN
I PRON
've AUX
tried VERB
. PUNCT
     SPACE
Nor CCONJ
will AUX
I PRON
tell VERB
you PRON
some DET
of ADP
the DET
things NOUN
my PRON
wife NOUN
does AUX
since SCONJ
this DET
     SPACE
counts NOUN
as SCONJ
minor ADJ
surgery NOUN
and CCONJ
is AUX
best ADJ
not PART
mentioned VERB
( PUNCT
I PRON
also ADV
think VERB
     SPACE
it PRON
gains VERB
nothing PRON
) PUNCT
. PUNCT
  SPACE
7 NUM
. PUNCT
The DET
swelling VERB
and CCONJ
itching NOUN
can AUX
also ADV
be AUX
significantly ADV
relieved VERB
     SPACE
by ADP
the DET
application NOUN
of ADP
hot ADJ
packs NOUN
, PUNCT
and CCONJ
this DET
seems VERB
to PART
speed VERB
recovery NOUN
     SPACE
as ADV
well ADV
. PUNCT
Doctors NOUN
seem VERB
not PART
to PART
care VERB
much ADJ
about ADP
chiggers NOUN
. PUNCT
  SPACE
The DET
urban ADJ
and CCONJ
suburbandoctors NOUN
apparently ADV
do AUX
n't PART
encounter VERB
them PRON
much ADV
. PUNCT
  SPACE
And CCONJ
the DET
rural ADJ
doctorsseem NOUN
to PART
regard VERB
them PRON
as SCONJ
a DET
force NOUN
of ADP
nature NOUN
that SCONJ
one PRON
must AUX
endure VERB
. PUNCT
  SPACE
Isuspect VERB
that SCONJ
anyone PRON
who PRON
could AUX
come VERB
up ADP
with ADP
a DET
good ADJ
treatment NOUN
for ADP
chiggerswould AUX
make VERB
a DET
* PUNCT
lot NOUN
* PUNCT
of ADP
money.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58113From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Mar27.142431.25188@inmet.camb.inmet.com PROPN
> X
mazur@bluefin.camb.inmet.com NOUN
( PUNCT
Beth PROPN
Mazur PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1ov4toINNh0h@lynx.unm.edu NUM
> X
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
writes:>>On PROPN
the DET
other ADJ
hand NOUN
, PUNCT
we PRON
do AUX
a DET
good ADJ
job NOUN
of ADP
implying VERB
that SCONJ
the DET
person NOUN
who PRON
> X
weighs VERB
400lbs PROPN
is AUX
" PUNCT
overeating VERB
" PUNCT
when ADV
in ADP
fact NOUN
, PUNCT
the DET
body NOUN
probably ADV
doesn't VERB
> X
make VERB
any DET
moral ADJ
judgements NOUN
about ADP
its PRON
composition NOUN
. PUNCT
  SPACE
Conceivably ADV
, PUNCT
the DET
> NOUN
body NOUN
works VERB
just ADV
as SCONJ
hard ADJ
maintaining VERB
its PRON
weight NOUN
at ADP
400 NUM
as SCONJ
someone PRON
else's PROPN
> X
does AUX
at ADP
200.>Undoubtedly NUM
it PRON
does AUX
, PUNCT
to PART
maintain VERB
such ADJ
a DET
weight NOUN
. PUNCT
  SPACE
And CCONJ
it PRON
does AUX
soprimarily ADV
by ADP
overeating VERB
. PUNCT
  SPACE
If SCONJ
it PRON
did AUX
n't PART
, PUNCT
the DET
weight NOUN
would AUX
dropback VERB
to ADP
normal.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58114From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
BlindsightIn PROPN
article NOUN
< X
werner-240393161954@tol7mac15.soe.berkeley.edu PRON
> X
werner@soe.berkeley.edu PROPN
( PUNCT
John PROPN
Werner PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19213@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
> X
Explain PROPN
. PUNCT
  SPACE
I PRON
thought VERB
there PRON
were AUX
3 NUM
types NOUN
of ADP
cones NOUN
, PUNCT
equivalent ADJ
to ADP
RGB.>>You're VERB
basically ADV
right ADJ
, PUNCT
but CCONJ
I PRON
think VERB
there PRON
are AUX
just ADV
2 NUM
types NOUN
. PUNCT
  SPACE
One NUM
is AUX
> X
sensitive ADJ
to ADP
red ADJ
and CCONJ
green ADJ
, PUNCT
and CCONJ
the DET
other ADJ
is AUX
sensitive ADJ
to ADP
blue ADJ
and CCONJ
yellow ADJ
. PUNCT
> X
This DET
is AUX
why ADV
the DET
two NUM
most ADV
common ADJ
kinds NOUN
of ADP
color NOUN
- PUNCT
blindness NOUN
are AUX
red ADJ
- PUNCT
green ADJ
and CCONJ
> X
blue PROPN
- PUNCT
yellow.>Yes PROPN
, PUNCT
I PRON
remember VERB
that DET
now ADV
. PUNCT
  SPACE
Well INTJ
, PUNCT
in ADP
that DET
case NOUN
, PUNCT
the DET
cones NOUN
are AUX
indeedcolor NOUN
sensitive ADJ
, PUNCT
contrary ADJ
to ADP
what PRON
the DET
original ADJ
respondent NOUN
had AUX
claimed.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58115From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
vs. ADP
Migraine PROPN
( PUNCT
was AUX
Re ADP
: PUNCT
Sinus NOUN
Endoscopy)In NOUN
article NOUN
< X
Lauger-240393141539@lauger.mdc.com X
> X
Lauger@ssdgwy.mdc.com PROPN
( PUNCT
John PROPN
Lauger PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19201@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
wrote:>What DET
's AUX
the DET
best ADJ
approach NOUN
to ADP
getting VERB
off ADP
the DET
analgesics NOUN
. PUNCT
  SPACE
Is AUX
there PRON
somethingTwo PROPN
approaches VERB
that SCONJ
I PRON
've AUX
used VERB
: PUNCT
Tofranil NOUN
, PUNCT
50 NUM
mg NOUN
qhs NOUN
, PUNCT
Naproxen PROPN
250 NUM
mg PROPN
bid NOUN
. PUNCT
The DET
Naproxen PROPN
does AUX
n't PART
seem VERB
to PART
be AUX
as ADV
bad ADJ
as SCONJ
things NOUN
like SCONJ
Tylenol PROPN
in ADP
promotingthe PROPN
analgesic ADJ
abuse NOUN
Headache PROPN
. PUNCT
  SPACE
DHE PROPN
IV PROPN
infusions NOUN
for ADP
about ADV
3 NUM
days NOUN
( PUNCT
inhospital ADJ
) PUNCT
. PUNCT
  SPACE
Cold ADJ
turkey PROPN
is AUX
the DET
only ADJ
way NOUN
I PRON
think VERB
. PUNCT
  SPACE
Tapering PROPN
doesn'thelp PUNCT
. PUNCT
I PRON
would AUX
n't PART
know VERB
how ADV
you PRON
can AUX
do AUX
this DET
without ADP
your PRON
doctor NOUN
. PUNCT
  SPACE
I PRON
haven'tseen NUM
anyone PRON
successfully ADV
do AUX
it PRON
alone ADJ
. PUNCT
  SPACE
Does AUX
n't PART
mean VERB
it PRON
ca AUX
n't PART
be AUX
done.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58116From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
vs. ADP
Migraine PROPN
( PUNCT
was AUX
Re ADP
: PUNCT
Sinus NOUN
Endoscopy)In NOUN
article NOUN
< X
1993Mar26.001004.10983@news.eng.convex.com NUM
> X
cash@convex.com X
( PUNCT
Peter PROPN
Cash PROPN
) PUNCT
writes:>>By PROPN
the DET
way NOUN
, PUNCT
does AUX
the DET
brain NOUN
even ADV
have AUX
pain NOUN
receptors NOUN
? PUNCT
I PRON
thought VERB
not PART
-- PUNCT
I PRON
heard VERB
> X
that DET
brain NOUN
surgery NOUN
can AUX
be AUX
performed VERB
while SCONJ
the DET
patient NOUN
is AUX
conscious ADJ
for ADP
> X
precisely ADV
this DET
reason.>No NUM
, PUNCT
no INTJ
, PUNCT
we PRON
are AUX
n't PART
talking VERB
about ADP
receptors NOUN
for ADP
the DET
brain NOUN
's PART
sensory ADJ
innervation NOUN
, PUNCT
but CCONJ
structures NOUN
such ADJ
as SCONJ
the DET
thalamus NOUN
that PRON
handle VERB
painfor ADP
the DET
entire ADJ
organism NOUN
. PUNCT
  SPACE
Apples PROPN
and CCONJ
oranges.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58117From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
1993Mar25.020646.852@news.columbia.edu PROPN
> X
jhl14@cunixa.cc.columbia.edu NOUN
( PUNCT
Jonathan PROPN
H. PROPN
Lin PROPN
) PUNCT
writes:>I PROPN
was AUX
wondering VERB
what PRON
steps NOUN
are AUX
being AUX
taken VERB
to PART
prevent VERB
the DET
spread NOUN
of ADP
> X
multi ADJ
- ADJ
drug ADJ
resistant ADJ
tuberculosis NOUN
. PUNCT
  SPACE
I PRON
've AUX
heard VERB
that SCONJ
some DET
places NOUN
are AUX
> X
thinking VERB
of ADP
incarcerating VERB
those DET
with ADP
the DET
disease NOUN
. PUNCT
  SPACE
Does AUX
n't PART
this DET
violate NOUN
> X
the DET
civil ADJ
rights NOUN
of ADP
these DET
individuals NOUN
? PUNCT
  SPACE
Are AUX
there PRON
any DET
legal ADJ
precedents NOUN
> X
for ADP
such ADJ
action?>Who PROPN
knows VERB
in ADP
this DET
legal ADJ
climate NOUN
, PUNCT
but CCONJ
there PRON
is AUX
tremendous ADJ
legal ADJ
precendentfor NOUN
forcibly ADV
quarantining VERB
TB PROPN
patients NOUN
in ADP
sanitariums NOUN
. PUNCT
  SPACE
100 NUM
yrs PROPN
agoit PROPN
was AUX
done VERB
all DET
the DET
time NOUN
. PUNCT
  SPACE
It PRON
has AUX
been AUX
done VERB
sporadically ADV
all DET
alongin NOUN
patients NOUN
who PRON
wo AUX
n't PART
take VERB
their PRON
medicine NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
TB PROPN
youmay NOUN
find VERB
yourself PRON
under ADP
surveilence NOUN
of ADP
the DET
Public PROPN
Health PROPN
Departmentand PROPN
you PRON
may AUX
find VERB
they PRON
have AUX
the DET
legal ADJ
power NOUN
to PART
insist VERB
you PRON
make VERB
yourclinic ADJ
visits.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58118From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
BlindsightIn PROPN
article NOUN
< X
1993Mar26.185117.21400@cs.rochester.edu NUM
> X
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
33587@castle.ed.ac.uk ADV
> X
hrvoje@castle.ed.ac.uk PROPN
( PUNCT
H PROPN
Hecimovic PROPN
) PUNCT
writes:>compensation PROPN
? PUNCT
  SPACE
Or CCONJ
are AUX
lesions NOUN
localized VERB
to ADP
the DET
SC PROPN
too ADV
rare ADJ
to PART
be AUX
able ADJ
> X
to PART
tell?Extremely ADV
rare ADJ
in ADP
humans NOUN
. PUNCT
  SPACE
Usually ADV
so ADV
much ADJ
else ADV
is AUX
involved VERB
you'djust NUM
have AUX
a DET
mess NOUN
to PART
sort VERB
out ADP
. PUNCT
  SPACE
Birds NOUN
do AUX
all DET
vision NOUN
in ADP
the DET
tectum NOUN
, PUNCT
don't NOUN
they PRON
? PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58119From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Name NOUN
of ADP
MD PROPN
's PART
eyepiece?In PROPN
article NOUN
< X
C4IHM2.Gs9@watson.ibm.com X
> X
clarke@watson.ibm.com PROPN
( PUNCT
Ed PROPN
Clarke PROPN
) PUNCT
writes:>| PUNCT
> X
|It PROPN
's AUX
not PART
an DET
eyepiece NOUN
. PUNCT
  SPACE
It PRON
is AUX
called VERB
a DET
head NOUN
mirror NOUN
. PUNCT
  SPACE
All DET
doctors NOUN
never>>A VERB
speculum?The PROPN
speculum PROPN
is AUX
the DET
little ADJ
cone NOUN
that PRON
fits VERB
on ADP
the DET
end NOUN
of ADP
the DET
otoscope NOUN
. PUNCT
There PRON
are AUX
also ADV
vaginal ADJ
specula NOUN
that PRON
females NOUN
and CCONJ
gynecologists NOUN
areall VERB
too ADV
familiar ADJ
with.-- PROPN
----------------------------------------------------------------------------Gordon PUNCT
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58120From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Patient ADJ
- PUNCT
Physician ADJ
DiplomacyIn PROPN
article NOUN
< X
1993Mar29.130824.16629@aoa.aoa.utc.com X
> X
carl@aoa.aoa.utc.com X
( PUNCT
Carl PROPN
Witthoft PROPN
) PUNCT
writes:>What DET
is AUX
" PUNCT
unacceptable ADJ
" PUNCT
about ADP
this DET
is AUX
that SCONJ
hospitals NOUN
and CCONJ
MDs NOUN
by ADP
law NOUN
> X
have AUX
no DET
choice NOUN
but SCONJ
to PART
treat VERB
you PRON
if SCONJ
you PRON
show VERB
up ADP
sick ADJ
or CCONJ
mangled VERB
from ADP
> X
an DET
accident NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
n't PART
rich ADJ
and CCONJ
have AUX
no DET
insurance NOUN
, PUNCT
who PRON
is AUX
going VERB
> X
to PART
foot VERB
your PRON
bills NOUN
? PUNCT
  SPACE
Do AUX
you PRON
actually ADV
intend VERB
to PART
tell VERB
the DET
ambulance>"No PROPN
, PUNCT
let VERB
me PRON
die VERB
in ADP
the DET
gutter NOUN
because SCONJ
I PRON
ca AUX
n't PART
afford VERB
the DET
treatment"??By PROPN
law NOUN
, PUNCT
they PRON
would AUX
not PART
be AUX
allowed VERB
to PART
do AUX
that DET
anyhow.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58121From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
Exercise NOUN
" PUNCT
HypertensionIn NOUN
article NOUN
< X
93084.140929RFM@psuvm.psu.edu NUM
> X
RFM@psuvm.psu.edu PROPN
writes:>I NUM
took VERB
a DET
stress NOUN
test NOUN
a DET
couple NOUN
weeks NOUN
back ADV
, PUNCT
and CCONJ
results NOUN
came VERB
back ADV
noting>"Exercise PROPN
" PUNCT
Hypertension PROPN
. PUNCT
  SPACE
Fool NOUN
that PRON
I PRON
am AUX
, PUNCT
I PRON
did AUX
n't PART
ask VERB
Doc PROPN
what PRON
this DET
meant,>and PROPN
she PRON
did AUX
n't PART
explain VERB
; PUNCT
and CCONJ
now ADV
I PRON
'm AUX
wondering VERB
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
> X
enlighten VERB
. PUNCT
  SPACE
And CCONJ
I PRON
promise VERB
, PUNCT
next ADJ
time NOUN
I PRON
'll AUX
ask!Probably ADV
she PRON
meant VERB
that SCONJ
your PRON
blood NOUN
pressure NOUN
went VERB
up ADP
while SCONJ
you PRON
were AUX
onthe PROPN
treadmill PROPN
. PUNCT
  SPACE
This DET
is AUX
normal ADJ
. PUNCT
  SPACE
You PRON
'll AUX
have AUX
to PART
ask VERB
her PRON
if SCONJ
this DET
iswhat ADP
she PRON
meant VERB
, PUNCT
since SCONJ
no DET
one NOUN
else ADV
can AUX
answer VERB
for ADP
another DET
person.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58122From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Striato PROPN
Nigral PROPN
DegenerationIn PROPN
article NOUN
< X
9303252134.AA09923@walrus.mvhs.edu NUM
> X
ktodd@walrus.mvhs.edu NOUN
( PUNCT
( PUNCT
Ken PROPN
Todd PROPN
) PUNCT
) PUNCT
writes:>I PROPN
would AUX
like VERB
any DET
information NOUN
available ADJ
on ADP
this DET
rare ADJ
disease NOUN
. PUNCT
  SPACE
I PRON
understand VERB
> X
that SCONJ
an DET
operation NOUN
referred VERB
to ADP
as SCONJ
POLLIDOTOMY PROPN
may AUX
be AUX
in ADP
order NOUN
. PUNCT
  SPACE
Does AUX
anyone PRON
> X
know VERB
of ADP
a DET
physician NOUN
that PRON
performs VERB
this DET
procedure NOUN
. PUNCT
  SPACE
All DET
responses NOUN
will AUX
be AUX
> X
appreciated VERB
. PUNCT
  SPACE
Please INTJ
respond VERB
via ADP
email NOUN
to ADP
ktodd@walrus.mvhs.eduIt PROPN
is AUX
n't PART
that ADV
rare ADJ
, PUNCT
actually ADV
. PUNCT
  SPACE
Many ADJ
cases NOUN
that PRON
are AUX
called VERB
Parkinson'sDisease ADV
turn VERB
out ADP
on ADP
autopsy ADJ
to PART
be AUX
SND PROPN
. PUNCT
  SPACE
It PRON
should AUX
be AUX
suspected VERB
in ADP
anycase NOUN
of ADP
Parkinsonism PROPN
without ADP
tremor NOUN
and CCONJ
which PRON
does AUX
not PART
respond VERB
toL NOUN
- PUNCT
dopa NOUN
therapy NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
pallidotomy NOUN
will AUX
do AUX
much ADJ
for ADP
SND.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58123From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?In PROPN
article NOUN
< X
lindaeC4JGLK.FxM@netcom.com X
> X
lindae@netcom.com X
writes:>>My PRON
biggest ADJ
resentment NOUN
is AUX
the DET
doctor NOUN
who PRON
makes VERB
it PRON
seem VERB
like SCONJ
most ADJ
> X
people NOUN
with ADP
dizziness NOUN
can AUX
be AUX
cured VERB
. PUNCT
  SPACE
That DET
's AUX
definitely ADV
not PART
the DET
> X
case NOUN
. PUNCT
  SPACE
In ADP
most ADJ
cases NOUN
, PUNCT
like SCONJ
I PRON
said VERB
above ADV
, PUNCT
it PRON
is AUX
a DET
long ADJ
, PUNCT
tedious ADJ
> X
process NOUN
that PRON
may AUX
or CCONJ
may AUX
not PART
end VERB
up ADP
in ADP
a DET
partial ADJ
cure NOUN
. PUNCT
  SPACE
> X
Be AUX
sure ADJ
to PART
say VERB
" PUNCT
chronic ADJ
" PUNCT
dizziness NOUN
, PUNCT
not PART
just ADV
dizziness ADJ
. PUNCT
  SPACE
Mostpatients NOUN
with ADP
acute ADJ
or CCONJ
subacute VERB
dizziness NOUN
will AUX
get AUX
better ADJ
. PUNCT
The DET
vertiginous ADJ
spells NOUN
of ADP
Meniere PROPN
's PART
will AUX
also ADV
eventually ADV
goaway ADJ
, PUNCT
however ADV
, PUNCT
the DET
patient NOUN
is AUX
left VERB
with ADP
a DET
deaf ADJ
ear.>To PROPN
anyone PRON
suffering VERB
with ADP
vertigo NOUN
, PUNCT
dizziness NOUN
, PUNCT
or CCONJ
any DET
variation NOUN
> X
thereof ADV
, PUNCT
my PRON
best ADJ
advice NOUN
to ADP
you PRON
( PUNCT
as SCONJ
a DET
fellow NOUN
- PUNCT
sufferer NOUN
) PUNCT
is AUX
this DET
... PUNCT
>just PROPN
keep VERB
searching VERB
... PUNCT
don't NOUN
let VERB
the DET
doctors NOUN
tell VERB
you PRON
there's PUNCT
> X
nothing PRON
that PRON
can AUX
be AUX
done VERB
... PUNCT
do AUX
your PRON
own ADJ
research NOUN
... PUNCT
and CCONJ
let VERB
yourThis PRON
may AUX
have AUX
helped VERB
you PRON
, PUNCT
but CCONJ
I PRON
'm AUX
not PART
sure ADJ
it PRON
is AUX
good ADJ
generaladvice PROPN
. PUNCT
  SPACE
The DET
odds NOUN
that SCONJ
you PRON
are AUX
going VERB
to PART
find VERB
some DET
miracle NOUN
withyour NOUN
own ADJ
research NOUN
that PRON
is AUX
secret ADJ
or CCONJ
hidden VERB
from ADP
general ADJ
knowledgefor CCONJ
this DET
or CCONJ
any DET
other ADJ
disease NOUN
are AUX
slim ADJ
. PUNCT
  SPACE
When ADV
good ADJ
answers NOUN
to ADP
theseproblems NOUN
are AUX
found VERB
, PUNCT
it PRON
is AUX
usually ADV
in ADP
all DET
the DET
newspapers NOUN
. PUNCT
  SPACE
Untilthen PROPN
, PUNCT
spending VERB
a DET
great ADJ
deal NOUN
of ADP
time NOUN
and CCONJ
energy NOUN
on ADP
the DET
medicalproblem NOUN
may AUX
divert VERB
that DET
energy NOUN
from ADP
more ADJ
productive ADJ
thingsin NOUN
life NOUN
. PUNCT
  SPACE
A DET
limited ADJ
amount NOUN
should AUX
be AUX
spent VERB
to PART
assure VERB
yourselfthat DET
your PRON
doctor NOUN
gave VERB
you PRON
the DET
correct ADJ
story NOUN
, PUNCT
but CCONJ
after ADP
it PRON
becomesclear VERB
that SCONJ
you PRON
are AUX
dealing VERB
with ADP
a DET
problem NOUN
for ADP
which PRON
medicinehas VERB
no DET
good ADJ
solution NOUN
, PUNCT
perhaps ADV
the DET
best ADJ
strategy NOUN
is AUX
to ADP
jointhe PROPN
support NOUN
group NOUN
and CCONJ
keep VERB
abreast ADV
of ADP
new ADJ
findings NOUN
but CCONJ
not PART
tomake VERB
a DET
career NOUN
out SCONJ
of ADP
it.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58124From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Donating VERB
organsIn NOUN
article NOUN
< X
1993Mar25.161109.13101@sbcs.sunysb.edu NUM
> X
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>Dr PROPN
. PUNCT
Banks NOUN
, PUNCT
> X
	 SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
you PRON
make VERB
a DET
point NOUN
of ADP
keeping VERB
up ADP
with ADP
liver NOUN
transplant NOUN
> X
research NOUN
but CCONJ
you PRON
're AUX
certainly ADV
in ADP
the DET
right ADJ
place NOUN
for ADP
these DET
questions NOUN
. PUNCT
  SPACE
Has AUX
> X
there PRON
been AUX
anything PRON
recent ADJ
in ADP
" PUNCT
Transplant PROPN
Proceedings NOUN
" PUNCT
or CCONJ
somesuch ADV
, PUNCT
on ADP
> X
xenografts PROPN
? PUNCT
  SPACE
How ADV
about ADP
liver NOUN
section NOUN
transplants NOUN
from ADP
living VERB
donors NOUN
? PUNCT
> X
I PRON
'm AUX
sure ADJ
the DET
Pittsburgh PROPN
group NOUN
has AUX
published VERB
the DET
baboon NOUN
work NOUN
, PUNCT
but CCONJ
Idon't CCONJ
know VERB
where ADV
. PUNCT
  SPACE
In ADP
Chicago PROPN
they PRON
were AUX
doing VERB
lobe NOUN
transplants NOUN
fromliving VERB
donors NOUN
, PUNCT
and CCONJ
I PRON
'm AUX
sure ADJ
they PRON
've AUX
published VERB
. PUNCT
  SPACE
I PRON
do AUX
n't PART
read VERB
thetransplant ADJ
literature NOUN
. PUNCT
  SPACE
I PRON
just ADV
see VERB
the DET
liver NOUN
transplant NOUN
patientswhen NOUN
they PRON
get VERB
into ADP
neurologic ADJ
trouble NOUN
( PUNCT
pretty ADV
frequent ADJ
) PUNCT
, PUNCT
so ADV
thatand ADV
the DET
newspapers NOUN
and CCONJ
scuttlebutt NOUN
is AUX
the DET
way NOUN
I PRON
keep VERB
up ADP
with ADP
whatthey NOUN
are AUX
doing VERB
. PUNCT
  SPACE
Howard PROPN
Doyle PROPN
works VERB
with ADP
them PRON
, PUNCT
and CCONJ
can AUX
tell VERB
you PRON
more.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58125From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Mar24.182145.11004@equator.com NUM
> X
jod@equator.com PROPN
( PUNCT
John PROPN
Setel PROPN
O'Donnell PROPN
) PUNCT
writes:>IMHO NOUN
, PUNCT
you PRON
have AUX
Lyme PROPN
disease NOUN
. PUNCT
> X
I PRON
sent VERB
you PRON
in ADP
private ADJ
email NOUN
a DET
summary NOUN
of ADP
the DET
treatment NOUN
protocols NOUN
put VERB
> X
forth ADV
by ADP
the DET
Lyme PROPN
Disease PROPN
Foundation PROPN
. PUNCT
  SPACE
I PRON
respectfully ADV
suggest VERB
that SCONJ
you PRON
> X
save VERB
yourself PRON
a DET
great ADJ
deal NOUN
of ADP
suffering VERB
by ADP
contacting VERB
them PRON
for ADP
a DET
> X
Lyme NOUN
- PUNCT
knowledgeable ADJ
physician NOUN
referral NOUN
and CCONJ
seek VERB
treatment NOUN
at ADP
once.>You'll X
know VERB
in ADP
2 NUM
weeks NOUN
if SCONJ
you PRON
're AUX
on ADP
the DET
right ADJ
course NOUN
; PUNCT
and CCONJ
the DET
clock NOUN
is AUX
> X
ticking VERB
on ADP
your PRON
6 NUM
weeks NOUN
if SCONJ
you PRON
have AUX
it PRON
. PUNCT
1 NUM
- NUM
800 NUM
- PUNCT
886-LYME.If PROPN
these DET
folks NOUN
are AUX
who PRON
I PRON
think VERB
they PRON
are AUX
, PUNCT
Lyme PROPN
- PUNCT
knowledgeable ADJ
maymean NOUN
a DET
physician NOUN
to ADP
whom PRON
everything PRON
that PRON
walks VERB
in ADP
the DET
door NOUN
islyme PROPN
disease NOUN
, PUNCT
and CCONJ
you PRON
will AUX
be AUX
treated VERB
for ADP
lyme NOUN
, PUNCT
whether SCONJ
or CCONJ
notyou NOUN
have AUX
it PRON
. PUNCT
  SPACE
Hope VERB
you PRON
have AUX
good ADJ
insurance.-- ADP
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58126From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
codine NOUN
in ADP
narcolepsy NOUN
. PUNCT
In ADP
article NOUN
< X
1993Mar26.005148.7899@aio.jsc.nasa.gov NUM
> X
stevel@aio.jsc.nasa.gov NOUN
( PUNCT
Steve PROPN
Lancaster PROPN
) PUNCT
writes:>3 NOUN
) PUNCT
Is AUX
there PRON
any DET
way NOUN
around ADP
the DET
scheduled ADJ
drug NOUN
mess NOUN
so SCONJ
that SCONJ
he PRON
can AUX
use VERB
> X
just ADV
the DET
substance NOUN
that PRON
works VERB
and CCONJ
not PART
one NUM
adulterated VERB
with ADP
Tylenol PROPN
? PUNCT
> X
Can AUX
the DET
MD PROPN
perscribe VERB
a DET
year NOUN
long ADJ
supply NOUN
on ADP
one NUM
script NOUN
? PUNCT
His PRON
doctor NOUN
> X
basically ADV
refused VERB
to PART
prescribe VERB
it PRON
, PUNCT
saying VERB
" PUNCT
His PRON
clinic NOUN
does AUX
not PART
prescribe VERB
> X
controled VERB
substances NOUN
. PUNCT
Its PRON
is AUX
' PUNCT
company NOUN
' PUNCT
rule.!">Short NOUN
of ADP
changes NOUN
by ADP
the DET
feds NOUN
, PUNCT
there PRON
is AUX
no DET
way NOUN
. PUNCT
  SPACE
Codeine PROPN
alone ADV
is AUX
verydifficult NOUN
to PART
prescribe VERB
without ADP
a DET
lot NOUN
of ADP
hassles NOUN
. PUNCT
  SPACE
Tylenol PROPN
# SYM
3 NUM
is AUX
thebest ADJ
compromise NOUN
. PUNCT
  SPACE
That DET
way NOUN
he PRON
can AUX
get AUX
refills NOUN
. PUNCT
  SPACE
The DET
amount NOUN
of ADP
acetominophenhe PROPN
is AUX
getting VERB
with ADP
his PRON
codeine NOUN
wo AUX
n't PART
hurt VERB
him PRON
any.-- NUM
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58127From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Migraines PROPN
and CCONJ
EstrogenIn PROPN
article NOUN
< X
3FB51B6w165w@jupiter.spk.wa.us NUM
> X
pwageman@jupiter.spk.wa.us X
( PUNCT
Peggy PROPN
Wageman PROPN
) PUNCT
writes:>I PRON
read VERB
that SCONJ
hormonal ADJ
fluctuations NOUN
can AUX
contribute VERB
to ADP
migraines NOUN
, PUNCT
could AUX
> X
taking VERB
supplemental ADJ
estrogen PROPN
( PUNCT
ERT PROPN
) PUNCT
cause VERB
migraines NOUN
? PUNCT
  SPACE
Any DET
information NOUN
I PRON
'm AUX
not PART
sure ADJ
it PRON
is AUX
the DET
fluctuation NOUN
so ADV
much ADV
as SCONJ
the DET
estrogen PROPN
level NOUN
. PUNCT
Taking VERB
Premarin PROPN
can AUX
certainly ADV
cause VERB
migraines NOUN
in ADP
some DET
women.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58128From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
migraine NOUN
and CCONJ
exerciseIn NOUN
article NOUN
< X
C4Iozx.7wx@world.std.com PROPN
> X
rsilver@world.std.com NOUN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>I PRON
have AUX
two NUM
questions NOUN
. PUNCT
Is AUX
there PRON
any DET
obvious ADJ
connection NOUN
between ADP
the DET
> X
flushed ADJ
appearance NOUN
and CCONJ
the DET
migraine NOUN
? PUNCT
Was AUX
I PRON
foolish ADJ
to PART
play VERB
through ADP
> X
the DET
migraine NOUN
( PUNCT
aside ADV
from ADP
the DET
visual ADJ
disturbance NOUN
affecting VERB
my PRON
play)?>I NOUN
just ADV
prefer VERB
to PART
ignore VERB
it PRON
when ADV
possible.>The ADJ
flushing NOUN
is AUX
due ADJ
to ADP
vascular ADJ
dilation NOUN
, PUNCT
part NOUN
of ADP
a DET
migraine ADJ
attack NOUN
. PUNCT
Some DET
people NOUN
event VERB
get VERB
puffy NOUN
and CCONJ
swollen ADJ
. PUNCT
  SPACE
As ADV
long ADV
as SCONJ
you PRON
are AUX
carefulyou PROPN
can AUX
see VERB
well ADV
enough ADV
to PART
avoid VERB
getting VERB
hit VERB
in ADP
the DET
face NOUN
or CCONJ
eye NOUN
bythe NOUN
ball NOUN
, PUNCT
migraine NOUN
will AUX
not PART
hurt VERB
your PRON
health.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58129From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
new ADJ
Multiple PROPN
Sclerosis PROPN
drug?In PROPN
article NOUN
< X
12252@news.duke.edu NUM
> X
adm@neuro.duke.edu NOUN
( PUNCT
Alan PROPN
Magid PROPN
) PUNCT
writes:>Disclaimer PROPN
: PUNCT
I PRON
speak VERB
only ADV
for ADP
myself PRON
. PUNCT
So ADV
just ADV
what PRON
was AUX
it PRON
you PRON
wanted VERB
to ADP
say?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58130From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
Info NOUN
on ADP
RSDIn PROPN
article NOUN
< X
1993Mar27.004627.21258@rmtc NUM
. PUNCT
Central ADJ
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
> X
lrd@rmtc NOUN
. PUNCT
Central ADJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
writes:>I NOUN
just ADV
started VERB
working VERB
for ADP
a DET
rehabilitation NOUN
hospital NOUN
and CCONJ
have AUX
seen VERB
RSD PROPN
> X
come VERB
up ADP
as SCONJ
a DET
diagnosis NOUN
several ADJ
times NOUN
. PUNCT
  SPACE
What PRON
exactly ADV
is AUX
RSD PROPN
and CCONJ
what PRON
is AUX
> X
the DET
nature NOUN
of ADP
it PRON
? PUNCT
  SPACE
If SCONJ
there PRON
is AUX
a DET
FAQ PROPN
on ADP
this DET
subject NOUN
, PUNCT
I PRON
'd AUX
really ADV
> X
appreciate VERB
it PRON
if SCONJ
someone PRON
would AUX
mail VERB
it PRON
to ADP
me PRON
. PUNCT
  SPACE
While SCONJ
any DET
and CCONJ
allReflex ADJ
sympathetic ADJ
dystrophy NOUN
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
there PRON
's AUX
an DET
FAQ PROPN
, PUNCT
as SCONJ
I PRON
havemade VERB
at ADP
least ADV
10 NUM
answers NOUN
to ADP
questions NOUN
on ADP
it PRON
in ADP
the DET
last ADJ
year NOUN
or CCONJ
so.-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58131From NUM
: PUNCT
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
1993Mar25.085526.914@news.wesleyan.edu NUM
> X
, PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
But CCONJ
I PRON
'll AUX
be AUX
damned VERB
, PUNCT
his PRON
" PUNCT
rights NOUN
" PUNCT
to PART
be AUX
sick ADJ
& CCONJ
to PART
fail VERB
to PART
treat VERB
his PRON
disease NOUN
& CCONJ
to| X
> X
spread VERB
it PRON
all DET
over ADP
the DET
place NOUN
were AUX
, PUNCT
indeed ADV
preserved VERB
. PUNCT
  SPACE
Happy?Several ADJ
years NOUN
ago ADV
I PRON
tried VERB
to PART
commit VERB
a DET
patient NOUN
who PRON
was AUX
growing VERB
Salmonella PROPN
out SCONJ
of ADP
hisstool NOUN
, PUNCT
blood NOUN
, PUNCT
and CCONJ
an DET
open ADJ
ulcer NOUN
for ADP
treatment NOUN
. PUNCT
The DET
idea NOUN
was AUX
that SCONJ
the DET
guy NOUN
was AUX
awalking VERB
public ADJ
health NOUN
risk NOUN
, PUNCT
and CCONJ
that SCONJ
forcing VERB
him PRON
to PART
receive VERB
IV PROPN
antibiotics NOUN
fora NOUN
few ADJ
days NOUN
was AUX
in ADP
the DET
public ADJ
interest NOUN
. PUNCT
I PRON
will AUX
make VERB
a DET
long ADJ
story NOUN
short ADJ
by ADP
sayingthat PRON
the DET
judge NOUN
laughed VERB
at ADP
my PRON
idea NOUN
, PUNCT
yelled VERB
at ADP
me PRON
for ADP
wasting VERB
his PRON
time NOUN
, PUNCT
and CCONJ
letthe DET
guy NOUN
go VERB
. PUNCT
I PRON
found VERB
out ADP
that SCONJ
tuberculosis NOUN
appears VERB
to PART
be AUX
the DET
only ADJ
MEDICAL PROPN
( PUNCT
as SCONJ
oppsed VERB
to ADP
psychiatric)condition VERB
that SCONJ
one NOUN
can AUX
be AUX
committed VERB
for ADP
, PUNCT
and CCONJ
this DET
is AUX
because SCONJ
very ADV
specific ADJ
laws NOUN
wereenacted VERB
many ADJ
years NOUN
ago ADV
regarding VERB
tb INTJ
. PUNCT
I PRON
am AUX
certain ADJ
these DET
vary VERB
from ADP
state NOUN
to ADP
state NOUN
. PUNCT
Any DET
legal ADJ
experts NOUN
out ADV
there ADV
to PART
help VERB
us PRON
on ADP
this?-kmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58132From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
amitriptylineIn X
article NOUN
< X
1993Mar27.010702.8176@julian.uwo.ca NUM
> X
roberts@gaul.csd.uwo.ca VERB
( PUNCT
Eric PROPN
Roberts PROPN
) PUNCT
writes:>Could AUX
someone PRON
please INTJ
tell VERB
me PRON
, PUNCT
what PRON
effect VERB
an DET
overdose ADJ
( PUNCT
900 NUM
- SYM
1000 NUM
mg PROPN
) PUNCT
of ADP
> PROPN
amitriptyline PROPN
would AUX
have?Probably ADV
would AUX
not PART
be AUX
fatal ADJ
in ADP
an DET
adult NOUN
at ADP
that DET
dose NOUN
, PUNCT
but CCONJ
could AUX
killa PROPN
child NOUN
. PUNCT
  SPACE
Patient PROPN
would AUX
be AUX
very ADV
somnolent ADJ
, PUNCT
with ADP
dilated VERB
pupils NOUN
, PUNCT
lowblood NOUN
pressure NOUN
. PUNCT
  SPACE
Possibly ADV
cardiac ADJ
arrhythmias NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58133From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Medication PROPN
For ADP
ParkinsonsIn PROPN
article NOUN
< X
19621.3049.uupcb@factory.com PROPN
> X
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
writes:>If PROPN
you PRON
want VERB
to PART
throw VERB
around ADP
names NOUN
, PUNCT
Drs PROPN
. PUNCT
Donald PROPN
Calne PROPN
, PUNCT
Terry PROPN
Elizan,>and PROPN
Jesse PROPN
Cedarbaum PROPN
do AUX
n't PART
recommend VERB
selegiline NOUN
( PUNCT
not PART
to PART
mention VERB
Dr.>William PROPN
Landau).>Gosh PROPN
, PUNCT
Jesse PROPN
is AUX
that SCONJ
famous ADJ
now ADV
? PUNCT
  SPACE
He PRON
was AUX
my PRON
intern NOUN
. PUNCT
  SPACE
Landau PROPN
not PART
likingit NOUN
makes VERB
me PRON
like SCONJ
it PRON
out SCONJ
of ADP
spite NOUN
. PUNCT
  SPACE
( PUNCT
Just ADV
kidding VERB
, PUNCT
Bill PROPN
) PUNCT
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58134From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Fingernail PROPN
" PUNCT
moons"In NOUN
article NOUN
< X
733196190.AA00076@calcom.socal.com NUM
> X
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince PROPN
) PUNCT
writes:>I NUM
only ADV
have AUX
lunulas NOUN
on ADP
my PRON
thumbs NOUN
. PUNCT
  SPACE
Is AUX
there PRON
any DET
medical ADJ
> X
significance NOUN
to ADP
that DET
finding NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
> X
replies.>Try PROPN
peeling VERB
the DET
skin NOUN
back ADV
at ADP
the DET
base NOUN
of ADP
your PRON
other ADJ
fingernails(not NOUN
too ADV
hard ADV
, PUNCT
now ADV
, PUNCT
do AUX
n't PART
want VERB
to PART
hurt VERB
yourself PRON
) PUNCT
. PUNCT
  SPACE
You PRON
'll AUX
findnice VERB
little ADJ
lunulas NOUN
there ADV
if SCONJ
you PRON
can AUX
peel VERB
it PRON
back ADV
enough ADV
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58135From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
health NOUN
care NOUN
reformIn NOUN
article NOUN
< X
LMC006@wrc.wrgrace.com PROPN
> X
custer@wrc.wrgrace.com PROPN
( PUNCT
Linda PROPN
Custer PROPN
) PUNCT
writes:>>Also PROPN
, PUNCT
I PRON
'm AUX
not PART
sure ADJ
that SCONJ
physician NOUN
fees NOUN
at ADP
the DET
very ADV
, PUNCT
very ADV
highest ADJ
levels NOUN
> X
don't NOUN
have AUX
to PART
come VERB
down ADP
. PUNCT
( PUNCT
I PRON
'm AUX
not PART
talking VERB
about ADP
the DET
bulk NOUN
of ADP
physicians NOUN
> X
making VERB
good ADJ
but CCONJ
not PART
great ADJ
salaries NOUN
who PRON
have AUX
mega NOUN
- NOUN
loans NOUN
from ADP
medical ADJ
school NOUN
> X
debts NOUN
. PUNCT
) PUNCT
I PRON
'd AUX
also ADV
like VERB
to PART
see VERB
some DET
strong ADJ
ethics NOUN
with ADP
teeth NOUN
for ADP
physiciansI PROPN
agree VERB
that SCONJ
some DET
specialties NOUN
have AUX
gotten VERB
way NOUN
out SCONJ
of ADP
line NOUN
. PUNCT
  SPACE
The DET
mainproblem NOUN
is AUX
the DET
payment NOUN
method NOUN
for ADP
procedures NOUN
rather ADV
than SCONJ
time NOUN
distortsthe NOUN
system NOUN
. PUNCT
  SPACE
I PRON
hope VERB
they PRON
will AUX
fix VERB
that DET
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
afraid ADJ
, PUNCT
as SCONJ
usual ADJ
, PUNCT
the DET
local ADJ
doc NOUN
is AUX
going VERB
to PART
take VERB
the DET
brunt NOUN
. PUNCT
  SPACE
People NOUN
grouse VERB
about ADP
paying$50 PROPN
to PART
see VERB
their PRON
home NOUN
doctor NOUN
in ADP
his PRON
office NOUN
, PUNCT
but CCONJ
do AUX
n't PART
mind VERB
paying$20,000 NOUN
to PART
have AUX
brain NOUN
surgery NOUN
. PUNCT
  SPACE
They PRON
think VERB
their PRON
local ADJ
doc NOUN
is AUX
cheatingthem PROPN
but CCONJ
worship VERB
the DET
feet NOUN
of ADP
the DET
neurosurgeon NOUN
who PRON
saved VERB
their PRON
life NOUN
. PUNCT
What PRON
they PRON
do AUX
n't PART
realize VERB
is AUX
that SCONJ
we PRON
need VERB
more ADV
local ADJ
docs NOUN
and CCONJ
fewer-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58136From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
High ADJ
ProlactinIn PROPN
article NOUN
< X
93088.112203JER4@psuvm.psu.edu NUM
> X
JER4@psuvm.psu.edu PROPN
( PUNCT
John PROPN
E. PROPN
Rodway PROPN
) PUNCT
writes:>Any VERB
comments NOUN
on ADP
the DET
use NOUN
of ADP
the DET
drug NOUN
Parlodel PROPN
for ADP
high ADJ
prolactin NOUN
in ADP
the DET
blood?>It NOUN
can AUX
suppress VERB
secretion NOUN
of ADP
prolactin PROPN
. PUNCT
  SPACE
Is AUX
useful ADJ
in ADP
cases NOUN
of ADP
galactorrhea NOUN
. PUNCT
Some DET
adenomas NOUN
of ADP
the DET
pituitary ADJ
secret NOUN
too ADV
much.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58137From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
ToxoplasmosisIn PROPN
article NOUN
< X
1240002@isoit109.BBN.HP.COM PROPN
> X
sude@isoit109.BBN.HP.COM PUNCT
( PUNCT
# SYM
Susanne PROPN
Denninger PROPN
) PUNCT
writes:>>1 PROPN
. PUNCT
How ADV
dangerous ADJ
is AUX
it PRON
? PUNCT
From ADP
whom PRON
is AUX
it PRON
especially ADV
dangerous ADJ
? PUNCT
> X
Dangerous ADJ
only ADV
to ADP
immune VERB
suppressed ADJ
persons NOUN
and CCONJ
fetuses NOUN
. PUNCT
  SPACE
To ADP
them PRON
, PUNCT
it PRON
is AUX
extremely ADV
dangerous ADJ
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
rest NOUN
of ADP
us PRON
have AUX
already ADV
hadit ADJ
and CCONJ
it PRON
is AUX
n't PART
dangerous ADJ
at ADP
all.>2 PROPN
. PUNCT
How ADV
is AUX
it PRON
transmitted VERB
( PUNCT
I PRON
read VERB
about ADP
raw ADJ
meat NOUN
and CCONJ
cats NOUN
, PUNCT
but CCONJ
I PRON
'd AUX
like VERB
to PART
> X
   SPACE
have AUX
more ADJ
details NOUN
) PUNCT
? PUNCT
> X
Cat ADJ
feces NOUN
are AUX
the DET
worst ADJ
. PUNCT
  SPACE
Pregnant ADJ
women NOUN
should AUX
never ADV
touch VERB
the DET
litter NOUN
box.>3 PROPN
. PUNCT
What PRON
can AUX
be AUX
done VERB
to PART
prevent VERB
infection NOUN
? PUNCT
> X
Cook VERB
your PRON
meat NOUN
. PUNCT
  SPACE
Watch VERB
it PRON
with ADP
pets.>4 PROPN
. PUNCT
What PRON
are AUX
the DET
symptoms NOUN
and CCONJ
long ADJ
- PUNCT
term NOUN
effects NOUN
? PUNCT
> X
You PRON
'll AUX
have AUX
to PART
read VERB
up ADP
on ADP
it PRON
. PUNCT
  SPACE
> X
5 NUM
. PUNCT
What PRON
treatments NOUN
are AUX
availble ADJ
? PUNCT
> X
There PRON
is AUX
an DET
effective ADJ
antibiotic NOUN
that PRON
can AUX
keep VERB
it PRON
in ADP
check NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
it PRON
ca AUX
n't PART
reverse VERB
damage NOUN
already ADV
done VERB
, PUNCT
such ADJ
as SCONJ
ina PROPN
fetus.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58138From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Mar30.030105.26772@omen NUM
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>Sometime ADP
in ADP
the DET
future ADJ
diet NOUN
evangelists NOUN
may AUX
get AUX
off ADP
their PRON
" PUNCT
our PRON
> X
diet NOUN
will AUX
work VERB
if SCONJ
only ADV
the DET
obese PROPN
would AUX
obey VERB
it PRON
" PUNCT
mode NOUN
and CCONJ
do AUX
> X
useful ADJ
research NOUN
to PART
allow VERB
prediction NOUN
of ADP
which PRON
types NOUN
of ADP
diet NOUN
might AUX
> X
be AUX
useful ADJ
to ADP
a DET
given VERB
individual.>"Diet PROPN
Evangelist PROPN
" PUNCT
. PUNCT
  SPACE
Good ADJ
term NOUN
. PUNCT
  SPACE
Fits VERB
Atkins PROPN
to ADP
a DET
" PUNCT
T NOUN
" PUNCT
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58139From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Should AUX
patients NOUN
read VERB
package NOUN
inserts NOUN
( PUNCT
PDR)?In PROPN
article NOUN
< X
1993Mar29.113528.930@news.wesleyan.edu PROPN
> X
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg PROPN
) PUNCT
writes:>Hmmmm PROPN
... PUNCT
here ADV
's AUX
one NUM
place NOUN
where ADV
I PRON
really ADV
think VERB
the DET
patient NOUN
ought AUX
to PART
take VERB
more ADJ
> X
responsibility NOUN
for ADP
him- NOUN
or CCONJ
herself PRON
. PUNCT
  SPACE
There PRON
is AUX
absolutely ADV
no DET
reason NOUN
why ADV
you PRON
> VERB
can't NOUN
ask VERB
the DET
pharmacist NOUN
filling VERB
the DET
prescription NOUN
for ADP
the DET
" PUNCT
Physicians PROPN
' PART
Package NOUN
> X
Insert PROPN
" PUNCT
for ADP
the DET
medication NOUN
when ADV
you PRON
pick VERB
it PRON
up ADP
at ADP
the DET
pharmacy NOUN
. PUNCT
  SPACE
Make VERB
sure ADJ
to PART
> X
tell VERB
the DET
pharmacist NOUN
that PRON
you PRON
want VERB
the DET
" PUNCT
Physicians PROPN
' PART
Package PROPN
Insert PROPN
" PUNCT
* PUNCT
NOT ADV
* PUNCT
theIf NUM
people NOUN
are AUX
going VERB
to PART
do AUX
this DET
, PUNCT
I PRON
really ADV
wish VERB
they PRON
would AUX
tell VERB
me PRON
first ADV
. PUNCT
I'd NOUN
be VERB
happy ADJ
to PART
go VERB
over ADP
the DET
insert NOUN
( PUNCT
in ADP
the DET
PDR PROPN
) PUNCT
with ADP
them PRON
and CCONJ
explaineverything VERB
. PUNCT
  SPACE
All ADV
too ADV
many ADJ
patients NOUN
read VERB
the DET
insert NOUN
and CCONJ
panic NOUN
and CCONJ
thenon PROPN
the DET
next ADJ
visit NOUN
sheepishly ADV
admit VERB
they PRON
were AUX
afraid ADJ
to PART
take VERB
the DET
drugand NOUN
we PRON
are AUX
starting VERB
over ADV
again ADV
at ADP
square PROPN
one NUM
. PUNCT
  SPACE
Some DET
of ADP
them PRON
probablydidn't VERB
even ADV
come VERB
back ADV
for ADP
followup NOUN
because SCONJ
they PRON
did AUX
n't PART
want VERB
to PART
admitthey NOUN
would AUX
n't PART
take VERB
the DET
drug NOUN
or CCONJ
thought VERB
I PRON
was AUX
trying VERB
to PART
kill VERB
them PRON
orsomething VERB
. PUNCT
  SPACE
What PRON
people NOUN
do AUX
n't PART
understand VERB
about ADP
the DET
inserts NOUN
is AUX
that DET
theyreport NOUN
every DET
adverse ADJ
side NOUN
effect NOUN
ever ADV
reported VERB
, PUNCT
without ADP
substantiatingthat ADP
the DET
drug NOUN
was AUX
responsible ADJ
. PUNCT
  SPACE
The DET
insert NOUN
is AUX
a DET
legal ADJ
document NOUN
to ADP
sloughliability NOUN
from ADP
the DET
manufacturer NOUN
to ADP
the DET
physician NOUN
if SCONJ
something PRON
was AUX
tohappen PRON
. PUNCT
  SPACE
If SCONJ
patients NOUN
want VERB
to PART
have AUX
the DET
most ADV
useful ADJ
and CCONJ
reliable ADJ
informationon PROPN
a DET
drug NOUN
they PRON
would AUX
be AUX
so ADV
much ADV
better ADJ
off ADP
getting VERB
hold NOUN
of ADP
one NUM
of ADP
theAMA PROPN
drug NOUN
evaluation NOUN
books NOUN
or CCONJ
something PRON
similar ADJ
that PRON
is AUX
much ADV
more ADV
scientific ADJ
. PUNCT
There PRON
are AUX
very ADV
few ADJ
drugs NOUN
that SCONJ
someone PRON
has AUX
n't PART
reported VERB
a DET
death NOUN
from ADP
taking VERB
. PUNCT
Patients NOUN
do AUX
n't PART
realize VERB
that DET
and CCONJ
do AUX
n't PART
usually ADV
appreciate VERB
the DET
risksto NOUN
themselves PRON
properly ADV
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
Herman PROPN
is AUX
going VERB
to PART
" PUNCT
go VERB
ballistic",but ADV
so ADV
be AUX
it PRON
. PUNCT
  SPACE
Another DET
problem NOUN
is AUX
that SCONJ
probably ADV
most ADJ
drugs NOUN
have AUX
beenreported VERB
to PART
cause VERB
impotence NOUN
. PUNCT
  SPACE
Half DET
the DET
males NOUN
who PRON
read VERB
that DET
will AUX
falsely ADV
assumeit VERB
could AUX
permanently ADV
cause VERB
them PRON
to PART
lose VERB
sexual ADJ
function NOUN
and CCONJ
so ADV
willrefuse NOUN
to PART
take VERB
any DET
drug NOUN
like SCONJ
that DET
. PUNCT
  SPACE
This DET
can AUX
be AUX
a DET
real ADJ
problem NOUN
forPDR PROPN
readers NOUN
. PUNCT
  SPACE
There PRON
needs VERB
to PART
be AUX
some DET
way NOUN
of ADP
providing VERB
patients NOUN
withtools NOUN
geared VERB
to ADP
them PRON
that PRON
allow VERB
them PRON
to PART
get AUX
the DET
information NOUN
they PRON
need VERB
. PUNCT
I PRON
am AUX
involved VERB
in ADP
a DET
research NOUN
project NOUN
to PART
do AUX
that DET
, PUNCT
with ADP
migraine NOUN
as SCONJ
thedomain NOUN
. PUNCT
  SPACE
It PRON
involves VERB
a DET
computer NOUN
system NOUN
that PRON
will AUX
provide VERB
answers NOUN
to PART
questionsabout ADV
migraine NOUN
as ADV
well ADV
as SCONJ
the DET
therapy NOUN
prescribed VERB
for ADP
the DET
patient NOUN
. PUNCT
For ADP
common ADJ
illnesses NOUN
, PUNCT
such ADJ
as SCONJ
migraine NOUN
and CCONJ
hypertension NOUN
, PUNCT
this DET
may AUX
helpquite VERB
a DET
bit NOUN
. PUNCT
  SPACE
The DET
patient NOUN
could AUX
spend VERB
as ADV
much ADJ
time NOUN
as SCONJ
needed VERB
with ADP
thecomputer PROPN
and CCONJ
this DET
would AUX
then ADV
not PART
burden VERB
the DET
physician NOUN
. PUNCT
  SPACE
Clearly ADV
, PUNCT
physicians NOUN
in ADP
large ADJ
part NOUN
fail VERB
to PART
answer VERB
all DET
the DET
questions NOUN
patients NOUN
have AUX
, PUNCT
as SCONJ
is AUX
demonstrated VERB
over ADP
and CCONJ
over ADV
here ADV
on ADP
the DET
net NOUN
where ADV
we PRON
get VERB
askedthings NOUN
that SCONJ
the DET
patients NOUN
should AUX
have AUX
found VERB
out ADP
from ADP
their PRON
physicianbut NOUN
did AUX
n't PART
. PUNCT
  SPACE
Why ADV
they PRON
did AUX
n't PART
is AUX
n't PART
always ADV
the DET
physician NOUN
's PART
fault NOUN
either ADV
. PUNCT
Sometimes ADV
the DET
patients NOUN
are AUX
afraid ADJ
to PART
ask VERB
. PUNCT
  SPACE
They PRON
wo AUX
n't PART
be AUX
as ADV
afraid ADJ
toask NOUN
the DET
system NOUN
, PUNCT
we PRON
hope.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58140From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
206@ky3b NUM
. PUNCT
UUCP NOUN
> X
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum PROPN
) PUNCT
writes:>>I NOUN
found VERB
out ADP
that SCONJ
tuberculosis NOUN
appears VERB
to PART
be AUX
the DET
only ADJ
MEDICAL PROPN
( PUNCT
as SCONJ
oppsed VERB
to ADP
psychiatric)>condition NOUN
that SCONJ
one PRON
can AUX
be AUX
committed VERB
for ADP
, PUNCT
and CCONJ
this DET
is AUX
because SCONJ
very ADV
specific ADJ
laws NOUN
were AUX
> X
enacted VERB
many ADJ
years NOUN
ago ADV
regarding VERB
tb INTJ
. PUNCT
I PRON
am AUX
certain ADJ
these DET
vary VERB
from ADP
state NOUN
to ADP
state NOUN
. PUNCT
I PRON
think VERB
in ADP
Illinois PROPN
venereal NOUN
disease NOUN
( PUNCT
the DET
old ADJ
ones NOUN
, PUNCT
not PART
AIDS PROPN
) PUNCT
was AUX
included VERB
. PUNCT
Syphillis PROPN
was AUX
, PUNCT
for ADP
sure.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58141From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
tuberculosisIn NOUN
article NOUN
< X
1993Mar29.181406.11915@iscsvax.uni.edu NUM
> X
klier@iscsvax.uni.edu PROPN
writes:>>Multiple ADJ
drug NOUN
resistance NOUN
in ADP
TB PROPN
is AUX
a DET
relatively ADV
new ADJ
phenomenon NOUN
, PUNCT
and CCONJ
> X
one NUM
of ADP
the DET
largest ADJ
contributing VERB
factors NOUN
is AUX
that SCONJ
people NOUN
are AUX
no ADV
longer ADV
> X
as SCONJ
scared ADJ
of ADP
TB PROPN
as SCONJ
they PRON
were AUX
before ADP
antibiotics NOUN
. PUNCT
  SPACE
( PUNCT
It PRON
was AUX
roughly ADV
as SCONJ
> X
feared VERB
as SCONJ
HIV PROPN
is AUX
now ADV
... PUNCT
)>Not PUNCT
that SCONJ
new ADJ
. PUNCT
  SPACE
20 NUM
years NOUN
ago ADV
, PUNCT
we PRON
had AUX
drug NOUN
addicts NOUN
harboring VERB
active ADJ
TBthat PROPN
was AUX
resistant ADJ
to ADP
everything PRON
( PUNCT
in ADP
Chicago PROPN
) PUNCT
. PUNCT
  SPACE
The DET
difference NOUN
nowis NOUN
that SCONJ
such ADJ
strains NOUN
have AUX
become VERB
virulent ADJ
. PUNCT
  SPACE
In ADP
the DET
old ADJ
days NOUN
, PUNCT
suchTB PROPN
was AUX
weak ADJ
. PUNCT
  SPACE
It PRON
did AUX
n't PART
spread VERB
to ADP
other ADJ
people NOUN
very ADV
easily ADV
and CCONJ
justinfected VERB
the DET
one NUM
person NOUN
in ADP
whom PRON
it PRON
developed VERB
( PUNCT
because SCONJ
of ADP
non ADJ
- ADJ
compliancewith ADJ
medications NOUN
) PUNCT
. PUNCT
  SPACE
Non ADJ
- ADJ
compliance NOUN
and CCONJ
development NOUN
of ADP
resistant ADJ
strainshas NOUN
been AUX
a DET
problem NOUN
for ADP
a DET
very ADV
long ADJ
time NOUN
. PUNCT
  SPACE
That DET
is AUX
why ADV
we PRON
have AUX
like INTJ
9drugs NUM
against ADP
TB PROPN
. PUNCT
  SPACE
There PRON
is AUX
always ADV
a DET
need NOUN
to PART
develop VERB
new ADJ
ones NOUN
due ADJ
tosuch ADJ
strains NOUN
. PUNCT
  SPACE
Now ADV
, PUNCT
however ADV
, PUNCT
with ADP
a DET
virulent NOUN
resistant ADJ
strain NOUN
, PUNCT
weare NOUN
in ADP
more ADJ
trouble NOUN
, PUNCT
and CCONJ
measures NOUN
to PART
assure VERB
compliance NOUN
may AUX
be AUX
necessaryeven VERB
if SCONJ
they PRON
entail VERB
force.-- ADP
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58142From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Fungus NOUN
" PUNCT
epidemic NOUN
" PUNCT
in ADP
CA?>In PROPN
article NOUN
steward@cup.portal.com PROPN
( PUNCT
John PROPN
Joseph PROPN
Deltuvia PROPN
) PUNCT
writes:>>>There PUNCT
was AUX
a DET
story NOUN
a DET
few ADJ
weeks NOUN
ago ADV
on ADP
a DET
network NOUN
news NOUN
show NOUN
about ADP
some DET
sort>>of NOUN
fungus NOUN
which PRON
supposedly ADV
attacks VERB
the DET
bone NOUN
structure NOUN
and CCONJ
is AUX
somewhat>>widespread ADJ
in ADP
California PROPN
. PUNCT
  SPACE
Anybody PRON
hear VERB
anything PRON
about ADP
this DET
one?>The NOUN
only ADV
fungus NOUN
I PRON
know VERB
of ADP
from ADP
California PROPN
is AUX
Coccidiomycosis PROPN
. PUNCT
  SPACE
Ihadn't PROPN
heard VERB
that SCONJ
it PRON
attacked VERB
bone NOUN
. PUNCT
  SPACE
It PRON
attacks VERB
lung NOUN
and CCONJ
if SCONJ
youare NOUN
especially ADV
unlucky ADJ
, PUNCT
the DET
central ADJ
nervous ADJ
system NOUN
. PUNCT
  SPACE
Nothing PRON
newabout ADP
it PRON
. PUNCT
  SPACE
It PRON
's AUX
been AUX
around ADV
for ADP
years NOUN
. PUNCT
  SPACE
THey PRON
call VERB
it PRON
" PUNCT
valleyfever PROPN
" PUNCT
, PUNCT
since SCONJ
it PRON
is AUX
found VERB
in ADP
the DET
inland ADJ
valleys NOUN
, PUNCT
not PART
on ADP
the DET
coast.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58143From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Travel VERB
outside ADP
US PROPN
( PUNCT
Bangladesh)In NUM
article NOUN
< X
1p7ciqINN3th@tamsun.tamu.edu NUM
> X
covingc@ee.tamu.edu PROPN
( PUNCT
Just ADV
George PROPN
) PUNCT
writes:>I PROPN
will AUX
be AUX
traveling VERB
to ADP
Bangaldesh PROPN
this DET
summer NOUN
, PUNCT
and CCONJ
am AUX
wondering VERB
> X
if SCONJ
there PRON
are AUX
any DET
immunizations NOUN
I PRON
should AUX
get AUX
before ADP
going.>You NOUN
can AUX
probably ADV
get AUX
this DET
information NOUN
by ADP
calling VERB
your PRON
public ADJ
healthdepartment NOUN
in ADP
your PRON
county NOUN
( PUNCT
in ADP
Pittsburgh PROPN
, PUNCT
they PRON
give VERB
the DET
shots NOUN
free ADJ
, PUNCT
as ADV
well ADV
) PUNCT
. PUNCT
  SPACE
There PRON
are AUX
bulletins NOUN
in ADP
medical ADJ
libraries NOUN
that PRON
giverecommendations NOUN
, PUNCT
or CCONJ
you PRON
could AUX
call VERB
the DET
infectious ADJ
diseases NOUN
sectionof VERB
the DET
medicine PROPN
department PROPN
of ADP
your PRON
local ADJ
medical ADJ
school NOUN
. PUNCT
  SPACE
You PRON
alsowill VERB
probably ADV
want VERB
to PART
talk VERB
about ADP
Malaria PROPN
prophylaxis PROPN
. PUNCT
  SPACE
You PRON
willneed VERB
your PRON
doctor NOUN
to PART
get AUX
the DET
prescription NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58144From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
compartment NOUN
syndrome NOUN
- PUNCT
general ADJ
information NOUN
, PUNCT
references NOUN
, PUNCT
etc X
. PUNCT
In ADP
article NOUN
< X
639@cfdd50.boeing.com NUM
> X
lry1219@cfdd50.boeing.com NOUN
( PUNCT
Larry PROPN
Yeagley PROPN
) PUNCT
writes:>I PRON
have AUX
an DET
acquaintance NOUN
who PRON
has AUX
been AUX
diagnosed VERB
as SCONJ
having VERB
blood NOUN
clots NOUN
and>"compartment NUM
syndrome NOUN
" PUNCT
. PUNCT
I PRON
searched VERB
the DET
latest ADJ
edition NOUN
of ADP
the DET
Columbia PROPN
medical ADJ
> X
encyclopedia PROPN
and CCONJ
found VERB
nothing PRON
. PUNCT
Mosby PROPN
's PART
medical ADJ
dictionary NOUN
gives VERB
a DET
very ADV
brief ADJ
> X
description NOUN
which PRON
suggests VERB
it PRON
's AUX
an DET
arterial ADJ
condition NOUN
. PUNCT
Can AUX
someone PRON
point VERB
me PRON
( PUNCT
anCompartment PROPN
syndrome NOUN
occurs VERB
when ADV
swelling VERB
happens VERB
in ADP
a DET
" PUNCT
compartment"bounded VERB
by ADP
fascia PROPN
. PUNCT
  SPACE
The DET
pressure NOUN
rises VERB
in ADP
the DET
compartment NOUN
and CCONJ
bloodsupply ADJ
and CCONJ
nerves NOUN
are AUX
compromised VERB
. PUNCT
  SPACE
The DET
treatment NOUN
is AUX
to PART
open VERB
thecompartment NOUN
surgically ADV
. PUNCT
  SPACE
THe PROPN
most ADV
common ADJ
places NOUN
for ADP
compartmentsyndromes NOUN
are AUX
the DET
forearm NOUN
and CCONJ
calf NOUN
. PUNCT
  SPACE
It PRON
is AUX
an DET
emergency NOUN
, PUNCT
sinceif PROPN
the DET
pressure NOUN
is AUX
not PART
relieved VERB
, PUNCT
stuff NOUN
will AUX
die.-- NUM
----------------------------------------------------------------------------Gordon NUM
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58145From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
x X
- PUNCT
raysIn NOUN
article NOUN
< X
1993Mar30.195242.8070@leland NUM
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
> PROPN
iceskate@leland PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Lin PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
	 SPACE
First ADJ
question NOUN
- PUNCT
how ADV
bad ADJ
is AUX
x NOUN
- PUNCT
ray PROPN
? PUNCT
  SPACE
i PRON
've AUX
heard VERB
that SCONJ
it PRON
's AUX
nothing PRON
> X
compared VERB
to ADP
the DET
amount NOUN
of ADP
time NOUN
spent VERB
under ADP
the DET
sun NOUN
and CCONJ
i PRON
've AUX
also ADV
heard VERB
that SCONJ
it PRON
> X
is AUX
very ADV
harmful ADJ
. PUNCT
  SPACE
second ADJ
question NOUN
- PUNCT
is AUX
there PRON
anyway ADV
out SCONJ
of ADP
this DET
yearly ADJ
test NOUN
for ADP
> X
me?The NUM
yearly PROPN
chest PROPN
x NOUN
- PUNCT
ray PROPN
provides VERB
a DET
minute NOUN
amount NOUN
of ADP
radiation NOUN
. PUNCT
  SPACE
It PRON
isa VERB
drop NOUN
in ADP
the DET
bucket NOUN
as ADV
far ADV
as SCONJ
increased VERB
risk NOUN
is AUX
concerned VERB
. PUNCT
  SPACE
Who PRON
cantell VERB
you PRON
whether SCONJ
you PRON
can AUX
get AUX
out SCONJ
of ADP
it PRON
or CCONJ
not PART
? PUNCT
  SPACE
No DET
one NOUN
here ADV
controlsthat ADV
. PUNCT
  SPACE
It PRON
may AUX
well ADV
be AUX
a DET
matter NOUN
of ADP
the DET
law NOUN
, PUNCT
in ADP
which PRON
case NOUN
, PUNCT
write VERB
yourlegislator NOUN
, PUNCT
but CCONJ
do AUX
n't PART
hold VERB
your PRON
breath.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58146From NUM
: PUNCT
wright@duca.hi.com PROPN
( PUNCT
David PROPN
Wright)Subject NUM
: PUNCT
Re ADP
: PUNCT
Name NOUN
of ADP
MD PROPN
's PART
eyepiece?In PROPN
article NOUN
< X
19387@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
C4IHM2.Gs9@watson.ibm.com X
> X
clarke@watson.ibm.com PROPN
( PUNCT
Ed PROPN
Clarke PROPN
) PUNCT
writes:>>| PROPN
> X
|It PROPN
's AUX
not PART
an DET
eyepiece NOUN
. PUNCT
  SPACE
It PRON
is AUX
called VERB
a DET
head NOUN
mirror NOUN
. PUNCT
  SPACE
All DET
doctors NOUN
never>>>>A PROPN
speculum?>>The PROPN
speculum PROPN
is AUX
the DET
little ADJ
cone NOUN
that PRON
fits VERB
on ADP
the DET
end NOUN
of ADP
the DET
otoscope.>There NOUN
are AUX
also ADV
vaginal ADJ
specula NOUN
that PRON
females NOUN
and CCONJ
gynecologists NOUN
are AUX
> X
all ADV
too ADV
familiar ADJ
with ADP
. PUNCT
In ADP
fairness NOUN
, PUNCT
we PRON
should AUX
note VERB
that SCONJ
if SCONJ
you PRON
look VERB
up ADP
" PUNCT
speculum PROPN
" PUNCT
in ADP
thedictionary NOUN
( PUNCT
which PRON
I PRON
did AUX
when ADV
this DET
question NOUN
first ADV
surfaced VERB
) PUNCT
, PUNCT
the DET
firstdefinition NOUN
is AUX
" PUNCT
a DET
mirror NOUN
or CCONJ
polished VERB
metal NOUN
plate NOUN
used VERB
as SCONJ
a DET
reflector NOUN
inoptical ADJ
instruments NOUN
. PUNCT
"Which PROPN
does AUX
n't PART
mean VERB
the DET
name NOUN
fits VERB
in ADP
this DET
context NOUN
, PUNCT
but CCONJ
it PRON
's AUX
not PART
as SCONJ
faroff NOUN
as SCONJ
you PRON
might AUX
think VERB
. PUNCT
  SPACE
-- PUNCT
David PROPN
Wright PROPN
, PUNCT
Hitachi PROPN
Computer PROPN
Products PROPN
( PUNCT
America PROPN
) PUNCT
, PUNCT
Inc. PROPN
  SPACE
Waltham PROPN
, PUNCT
MA PROPN
     SPACE
wright@hicomb.hi.com PROPN
  SPACE
: PUNCT
: PUNCT
  SPACE
These DET
are AUX
my PRON
opinions NOUN
, PUNCT
not PART
necessarily ADV
      SPACE
Hitachi PROPN
's PART
, PUNCT
though SCONJ
they PRON
are AUX
the DET
opinions NOUN
of ADP
all DET
right ADJ
- PUNCT
thinking VERB
peopleNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58147From NUM
: PUNCT
ritley@uimrl7.mrl.uiuc.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
MYSTERY NOUN
ILLNESS PROPN
WITH ADP
SPOTSI PROPN
attended VERB
high ADJ
school NOUN
in ADP
the DET
San PROPN
Jose PROPN
, PUNCT
California PROPN
area NOUN
in ADP
the DET
early ADJ
1980's NOUN
, PUNCT
and CCONJ
I PRON
remember VERB
a DET
( PUNCT
smallish NOUN
) PUNCT
outbreak NOUN
of ADP
a DET
strange ADJ
illness NOUN
, PUNCT
in ADP
whichpeople ADJ
developed VERB
measles NOUN
- PUNCT
like ADJ
spots NOUN
on ADP
their PRON
bodies NOUN
. PUNCT
  SPACE
This DET
conditionseemed VERB
to PART
last VERB
only ADV
a DET
few ADJ
days NOUN
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
recall VERB
anyone PRON
reporting VERB
any DET
othersymptoms NOUN
. PUNCT
  SPACE
I PRON
seem VERB
to PART
recall VERB
reading VERB
somewhere ADV
that SCONJ
this DET
was AUX
believed VERB
to ADP
havebeen PROPN
viral NOUN
in ADP
nature NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
for ADP
sure ADJ
. PUNCT
However ADV
, PUNCT
I PRON
have AUX
been AUX
curious ADJ
since SCONJ
then ADV
about ADP
this DET
. PUNCT
Anyone PRON
have AUX
any DET
ideas NOUN
about ADP
what PRON
this DET
might AUX
have AUX
been?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58148From NUM
: PUNCT
walkup@cs.washington.edu PROPN
( PUNCT
Elizabeth PROPN
Walkup)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Menangitis PROPN
questionIn PROPN
article NOUN
< X
19439@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
... PUNCT
the DET
neiseria PROPN
meningococcus NOUN
is AUX
one NUM
of ADP
the DET
most ADV
common ADJ
> X
forms NOUN
of ADP
meningitis PROPN
. PUNCT
  SPACE
It PRON
's AUX
the DET
one NOUN
that PRON
sometimes ADV
sweeps VERB
> X
schools NOUN
or CCONJ
boot PROPN
camp NOUN
. PUNCT
  SPACE
It PRON
is AUX
contagious ADJ
and CCONJ
kills VERB
by ADP
attacking VERB
> X
the DET
covering NOUN
of ADP
the DET
brain NOUN
, PUNCT
causing VERB
the DET
blood NOUN
vessels NOUN
to PART
thrombose VERB
> X
and CCONJ
the DET
brain NOUN
to PART
swell VERB
up ADP
. PUNCT
> X
> X
	 SPACE
... PUNCT
> X
> X
It PRON
can AUX
live VERB
in ADP
the DET
throat NOUN
of ADP
carriers NOUN
. PUNCT
  SPACE
Do AUX
n't PART
worry VERB
, PUNCT
you PRON
wo AUX
n't PART
get AUX
> X
it PRON
from ADP
them PRON
, PUNCT
especially ADV
if SCONJ
they PRON
took VERB
the DET
medication NOUN
. PUNCT
Assuming VERB
one NUM
has AUX
been AUX
cultured ADJ
as SCONJ
having VERB
a DET
throat NOUN
laden ADJ
withneiseria PROPN
meningococcus PROPN
and CCONJ
given VERB
( PUNCT
and CCONJ
taken VERB
) PUNCT
a DET
course NOUN
of ADP
ERYC PROPN
without ADP
the DET
culture NOUN
becoming VERB
negative ADJ
, PUNCT
should AUX
one NUM
worry VERB
aboutbeing VERB
a DET
carrier NOUN
? PUNCT
  SPACE
-- PUNCT
Elizabeth PROPN
   SPACE
walkup@cs.washington.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58149From NUM
: PUNCT
ns14@crux3.cit.cornell.edu PROPN
( PUNCT
Nathan PROPN
Otto PROPN
Siemers)Subject NUM
: PUNCT
Re ADP
: PUNCT
Analgesics PROPN
with ADP
Diuretics PROPN
> X
> X
> X
> X
> X
On ADP
Tue PROPN
, PUNCT
6 NUM
Apr PROPN
1993 NUM
03:28:57 NUM
GMT PROPN
, PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
said VERB
: PUNCT
| PROPN
In ADP
article NOUN
< X
ofk=lve00WB2AvUktO@andrew.cmu.edu NOUN
> X
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu NOUN
> X
writes:|>I PUNCT
sometimes ADV
see VERB
OTC PROPN
preparations NOUN
for ADP
muscle NOUN
aches NOUN
/ SYM
back NOUN
aches NOUN
that|>combine NUM
aspirin NOUN
with ADP
a DET
diuretic NOUN
. PUNCT
| INTJ
You PRON
certainly ADV
do AUX
not PART
see VERB
OTC PROPN
preparations NOUN
advertised VERB
as SCONJ
such ADJ
. PUNCT
| PROPN
The DET
only ADJ
such ADJ
ridiculous ADJ
concoctions NOUN
are AUX
nostrums ADJ
for ADP
premenstrual ADJ
| PROPN
syndrome NOUN
, PUNCT
ostensibly ADV
to PART
treat VERB
headache NOUN
and CCONJ
" PUNCT
bloating VERB
" PUNCT
simultaneously ADV
. PUNCT
| ADV
They PRON
're AUX
worthless.|>The NOUN
idea NOUN
seems VERB
to PART
be AUX
to ADP
reduce|>inflammation NOUN
by ADP
getting VERB
rid VERB
of ADP
fluid NOUN
. PUNCT
Does AUX
this DET
actually ADV
work VERB
? PUNCT
  SPACE
| PROPN
That DET
's AUX
not PART
the DET
idea NOUN
, PUNCT
and CCONJ
no INTJ
, PUNCT
they PRON
do AUX
n't PART
work VERB
. PUNCT
	 SPACE
I PRON
* PUNCT
believe VERB
* PUNCT
there PRON
is AUX
a DET
known ADJ
synergism NOUN
between ADP
certainanalgesics NOUN
and CCONJ
caffiene NOUN
. PUNCT
  SPACE
For ADP
treating VERB
pain NOUN
, PUNCT
not PART
inflammation NOUN
. PUNCT
	 SPACE
Now ADV
that SCONJ
I PRON
am AUX
an DET
ibuprofen NOUN
convert NOUN
I PRON
have AUX
n't PART
taken VERB
it PRON
for ADP
sometime ADV
, PUNCT
but CCONJ
excedrin PROPN
really ADV
works VERB
! PUNCT
( PUNCT
grin)Nathan PROPN
| PROPN
-- PUNCT
  SPACE
| PROPN
Steve PROPN
Dyer PROPN
| PROPN
dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyer-- PROPN
  SPACE
...... PUNCT
: PUNCT
bb|`:|| PROPN
, PUNCT
	 SPACE
nathan@chemres.tn.cornell.edu NUM
    SPACE
... PUNCT
  SPACE
.|| PUNCT
: PUNCT
   SPACE
` PUNCT
||bbbbb ADP
   SPACE
.. PUNCT
   SPACE
, PUNCT
: PUNCT
` PUNCT
     SPACE
.``"P$$$ PUNCT
      SPACE
.|| PROPN
. PROPN
, PUNCT
  SPACE
. PUNCT
  SPACE
` PUNCT
  SPACE
.`P$Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58150From NUM
: PUNCT
eb3@world.std.com X
( PUNCT
Edwin PROPN
Barkdoll)Subject NUM
: PUNCT
Re ADP
: PUNCT
BlindsightIn PROPN
article NOUN
< X
19382@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
werner-240393161954@tol7mac15.soe.berkeley.edu PRON
> X
werner@soe.berkeley.edu PROPN
( PUNCT
John PROPN
Werner PROPN
) PUNCT
writes:>>In X
article NOUN
< X
19213@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
> X
> X
> X
Explain PROPN
. PUNCT
  SPACE
I PRON
thought VERB
there PRON
were AUX
3 NUM
types NOUN
of ADP
cones NOUN
, PUNCT
equivalent ADJ
to ADP
RGB.>>>>You're VERB
basically ADV
right ADV
, PUNCT
but CCONJ
I PRON
think VERB
there PRON
are AUX
just ADV
2 NUM
types NOUN
. PUNCT
  SPACE
One NUM
is>>sensitive NOUN
to ADP
red ADJ
and CCONJ
green ADJ
, PUNCT
and CCONJ
the DET
other ADJ
is AUX
sensitive ADJ
to ADP
blue ADJ
and CCONJ
yellow ADJ
. PUNCT
> X
> X
This DET
is AUX
why ADV
the DET
two NUM
most ADV
common ADJ
kinds NOUN
of ADP
color NOUN
- PUNCT
blindness NOUN
are AUX
red ADJ
- PUNCT
green ADJ
and>>blue PROPN
- PUNCT
yellow.>>>>Yes PROPN
, PUNCT
I PRON
remember VERB
that DET
now ADV
. PUNCT
  SPACE
Well INTJ
, PUNCT
in ADP
that DET
case NOUN
, PUNCT
the DET
cones NOUN
are AUX
indeed ADV
> X
color NOUN
sensitive ADJ
, PUNCT
contrary ADJ
to ADP
what PRON
the DET
original ADJ
respondent NOUN
had AUX
claimed VERB
. PUNCT
	 SPACE
I PRON
'm AUX
not PART
sure ADJ
who PRON
the DET
" PUNCT
original ADJ
respondent NOUN
" PUNCT
was AUX
but CCONJ
toreiterate ADJ
cones NOUN
respond VERB
to ADP
particular ADJ
portions NOUN
of ADP
the DET
spectrum NOUN
, PUNCT
justas PROPN
_ PROPN
rods NOUN
_ AUX
respond VERB
to ADP
certain ADJ
parts NOUN
of ADP
the DET
visible ADJ
spectrum NOUN
( PUNCT
bluegreenin NOUN
our PRON
case NOUN
, PUNCT
reddish NOUN
in ADP
certain ADJ
amphibia PROPN
) PUNCT
, PUNCT
just ADV
as SCONJ
the DET
hoseshoe PROPN
crab_Limulus PROPN
polyphemus NOUN
_ PROPN
photoreceptors NOUN
respond VERB
to ADP
a DET
certain ADJ
portion NOUN
ofthe NOUN
spectrum PROPN
etc X
. PUNCT
  SPACE
It PRON
is AUX
a DET
common ADJ
misconception NOUN
to PART
confound VERB
wavelengthspecificity NOUN
with ADP
being AUX
color NOUN
sensitive ADJ
, PUNCT
however ADV
the DET
two NUM
are AUX
notsynonymous ADJ
. PUNCT
	 SPACE
So ADV
in ADP
sum NOUN
and CCONJ
to PART
beat VERB
a DET
dead ADJ
horse NOUN
: PUNCT
	 SPACE
( PUNCT
1 X
) PUNCT
When ADV
the DET
outputs NOUN
of ADP
a DET
cone NOUN
are AUX
matched VERB
for ADP
number NOUN
ofabsorbed NOUN
photons NOUN
_ VERB
irrespective ADJ
_ NOUN
of ADP
the DET
absorbed VERB
photons NOUN
wavelength PROPN
, PUNCT
the DET
cone NOUN
outputs NOUN
are AUX
_ PROPN
indistinguishable ADJ
_ PROPN
. PUNCT
	 SPACE
( PUNCT
2 X
) PUNCT
Cones NOUN
are AUX
simply ADV
detectors NOUN
with ADP
different ADJ
spectralsensitivities NOUN
and CCONJ
are AUX
not PART
any DET
more ADJ
" PUNCT
color NOUN
sensitive ADJ
" PUNCT
than SCONJ
are AUX
rods NOUN
, PUNCT
ommatidia NOUN
or CCONJ
other ADJ
photoreceptors NOUN
. PUNCT
	 SPACE
( PUNCT
3 X
) PUNCT
Color NOUN
vision NOUN
arises VERB
because SCONJ
outputs NOUN
of ADP
receptors NOUN
whichsample VERB
different ADJ
parts NOUN
of ADP
the DET
spectrum NOUN
( PUNCT
cones NOUN
in ADP
this DET
case NOUN
) PUNCT
are"processed VERB
centrally ADV
" PUNCT
. PUNCT
  SPACE
( PUNCT
The DET
handwave NOUN
is AUX
intentional ADJ
) PUNCT
	 SPACE
I PRON
've AUX
worked VERB
and CCONJ
published VERB
research NOUN
on ADP
rods NOUN
and CCONJ
cones NOUN
for ADP
over10 ADJ
years NOUN
so ADV
the DET
adherence NOUN
to ADP
the DET
belief NOUN
that SCONJ
cones NOUN
can AUX
" PUNCT
detect VERB
color"is PROPN
frustrating ADJ
. PUNCT
  SPACE
But CCONJ
do AUX
n't PART
take VERB
my PRON
word NOUN
for ADP
it PRON
. PUNCT
  SPACE
I PRON
'm AUX
reposting VERB
a DET
fewexcellent NOUN
articles NOUN
together ADV
with ADP
two NUM
rather ADV
good ADJ
but CCONJ
oldish ADJ
colorvision NOUN
texts NOUN
. PUNCT
The DET
texts NOUN
: PUNCT
Robert PROPN
Boynton PROPN
( PUNCT
1979 NUM
) PUNCT
_ VERB
Human PROPN
Color PROPN
Vision PROPN
_ PROPN
Holt PROPN
, PUNCT
Rhiehart PROPN
and CCONJ
WinstonLeo PROPN
M. PROPN
Hurvich PROPN
( PUNCT
1981 NUM
) PUNCT
_ VERB
Color PROPN
Vision PROPN
_ PROPN
, PUNCT
Sinauer PROPN
Associates PROPN
. PUNCT
The DET
original ADJ
articles NOUN
: PUNCT
Baylor PROPN
and CCONJ
Hodgkin PROPN
( PUNCT
1973 NUM
) PUNCT
Detection NOUN
and CCONJ
resolution NOUN
of ADP
visual ADJ
stimuli NOUN
byturtle NOUN
phoreceptors NOUN
, PUNCT
_ PROPN
J. PROPN
Physiol PROPN
. PUNCT
_ DET
234 NUM
pp163 PROPN
- PUNCT
198.Baylor NUM
Lamb PROPN
and CCONJ
Yau PROPN
( PUNCT
1978 NUM
) PUNCT
Reponses NOUN
of ADP
retinal ADJ
rods NOUN
to ADP
single ADJ
photons._J. NOUN
Physiol PROPN
. PUNCT
_ PROPN
288 NUM
pp613 PROPN
- PUNCT
634.Schnapf NUM
et PROPN
al PROPN
. PUNCT
( PUNCT
1990 NUM
) PUNCT
Visual ADJ
transduction NOUN
in ADP
cones NOUN
of ADP
the DET
monkey_Macaca PROPN
fascicularis PROPN
_ PROPN
. PUNCT
J. PROPN
Physiol PROPN
. PUNCT
427 NUM
pp681 PROPN
- PUNCT
713.-- PROPN
Edwin PROPN
Barkdollbarkdoll@lepomis.psych.upenn.edueb3@world.std.com-- PROPN
Edwin PROPN
Barkdolleb3@world.std.comNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58151From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Donating VERB
organsIn NOUN
article NOUN
< X
19393@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
1993Mar25.161109.13101@sbcs.sunysb.edu NUM
> X
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>>>there VERB
been AUX
anything PRON
recent ADJ
in ADP
" PUNCT
Transplant PROPN
Proceedings NOUN
" PUNCT
or CCONJ
somesuch ADV
, PUNCT
on ADP
> X
> X
xenografts PROPN
? PUNCT
  SPACE
How ADV
about ADP
liver NOUN
section NOUN
transplants NOUN
from ADP
living VERB
donors NOUN
? PUNCT
> X
> X
> X
> X
I PRON
'm AUX
sure ADJ
the DET
Pittsburgh PROPN
group NOUN
has AUX
published VERB
the DET
baboon NOUN
work NOUN
, PUNCT
but CCONJ
I PRON
> X
don't NOUN
know VERB
where ADV
. PUNCT
  SPACE
In ADP
Chicago PROPN
they PRON
were AUX
doing VERB
lobe NOUN
transplants NOUN
from ADP
> X
living VERB
donors NOUN
, PUNCT
and CCONJ
I PRON
'm AUX
sure ADJ
they PRON
've AUX
published VERB
. PUNCT
  SPACE
The DET
case NOUN
report NOUN
of ADP
the DET
first ADJ
xenotransplant NOUN
was AUX
published VERB
in ADP
Lancet PROPN
1993 NUM
; PUNCT
341:65 NUM
- PUNCT
71.I NOUN
can AUX
send VERB
you PRON
a DET
reprint NOUN
if SCONJ
you PRON
are AUX
interested ADJ
. PUNCT
There PRON
was AUX
  SPACE
another DET
paper NOUN
, PUNCT
sort ADV
of ADV
a DET
tour NOUN
of ADP
the DET
horizon NOUN
, PUNCT
written VERB
by ADP
Starzl PROPN
andpublished VERB
in ADP
the DET
Resident PROPN
's PART
Edition PROPN
of ADP
the DET
Annals PROPN
of ADP
Surgery PROPN
( PUNCT
vol PROPN
216 NUM
, PUNCT
October PROPN
1992).It NOUN
's AUX
in ADP
the DET
Surgical PROPN
Resident PROPN
's PART
Newsletter PROPN
section NOUN
, PUNCT
so ADV
you PRON
wo AUX
n't PART
find VERB
it PRON
in ADP
the DET
regularissue NOUN
of ADP
the DET
Annals PROPN
. PUNCT
I PRON
do AUX
n't PART
have AUX
any DET
reprints NOUN
of ADP
that DET
one NUM
. PUNCT
A DET
paper NOUN
has AUX
been AUX
accepted VERB
for ADP
publication NOUN
by ADP
Immunology PROPN
Today PROPN
, PUNCT
though SCONJ
I PRON
'm AUX
not PART
surewhen ADJ
it PRON
's AUX
coming VERB
out ADP
, PUNCT
describing VERB
our PRON
experience NOUN
with ADP
the DET
two NUM
xenografts NOUN
done VERB
to ADP
date NOUN
. PUNCT
As SCONJ
for ADP
segmental ADJ
liver NOUN
transplants NOUN
from ADP
living VERB
related ADJ
donors NOUN
I PRON
must AUX
confess VERB
to ADP
a DET
totalignorance NOUN
of ADP
that DET
literature NOUN
. PUNCT
We PRON
are AUX
philosophically ADV
opposed VERB
to ADP
those DET
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
keep VERB
up ADP
with ADP
that DET
particular ADJ
field.=====================================================Howard NOUN
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58152From NUM
: PUNCT
mcelwre@cnsvax.uwec.eduSubject NOUN
: PUNCT
NATURAL ADJ
ANTI NOUN
- PUNCT
cancer NOUN
/ SYM
AIDS PROPN
Remedies NOUN
     SPACE
The DET
biggest ADJ
reason NOUN
why ADV
the DET
cost NOUN
of ADP
medical ADJ
care NOUN
is AUX
so ADV
EXTREMELY PROPN
high ADJ
andincreasing ADJ
is AUX
that SCONJ
NATURAL ADJ
methods NOUN
of ADP
treatment NOUN
and CCONJ
even ADV
diagnosis NOUN
are AUX
stillbeing VERB
SYSTEMATICALLY NOUN
IGNORED PROPN
and CCONJ
SUPPRESSED VERB
by ADP
the DET
MONEY NOUN
- PUNCT
GRUBBING NOUN
and CCONJ
POWER NOUN
- PUNCT
MONGERING PROPN
" PUNCT
medical ADJ
" PUNCT
establishment NOUN
. PUNCT
     SPACE
Some DET
examples NOUN
of ADP
very ADV
low ADJ
cost NOUN
NATURAL PROPN
ANTI NOUN
- PUNCT
cancer NOUN
Remedies NOUN
are AUX
listed VERB
inthe NOUN
following ADJ
article NOUN
: PUNCT
                          SPACE
NATURAL PROPN
ANTI PROPN
- PUNCT
CANCER NOUN
REMEDIES NOUN
                                 SPACE
A DET
3RD NUM
OPINION NOUN
                         SPACE
( PUNCT
Some DET
of ADP
these DET
Remedies NOUN
also ADV
work VERB
against ADP
AIDS PROPN
. PUNCT
) PUNCT
          SPACE
DISCLAIMER PROPN
: PUNCT
This DET
list NOUN
was AUX
compiled VERB
from ADP
unorthodox PROPN
sources NOUN
           SPACE
that PRON
have AUX
shown VERB
themselves PRON
to PART
be AUX
reliable ADJ
. PUNCT
  SPACE
The DET
compiler NOUN
of ADP
           SPACE
this DET
list NOUN
is AUX
NOT ADV
a DET
doctor NOUN
of ADP
any DET
kind NOUN
, PUNCT
but CCONJ
is AUX
exercising VERB
his PRON
           SPACE
First PROPN
Amendment PROPN
Constitutional PROPN
RIGHT NOUN
of ADP
FREE ADJ
SPEECH NOUN
on ADP
the DET
           SPACE
subjects NOUN
of ADP
his PRON
choice NOUN
. PUNCT
           SPACE
( PUNCT
MOST ADJ
of ADP
these DET
Remedies NOUN
can AUX
be AUX
found VERB
in ADP
ANY DET
Grocery PROPN
Store PROPN
. PUNCT
            SPACE
MOST ADJ
of ADP
the DET
rest NOUN
of ADP
them PRON
can AUX
be AUX
found VERB
in ADP
ANY DET
Health PROPN
Food PROPN
           SPACE
Store PROPN
. PUNCT
  SPACE
What PRON
is AUX
important ADJ
is AUX
HOW ADV
they PRON
are AUX
used VERB
, PUNCT
and CCONJ
what PRON
           SPACE
else ADV
is AUX
EXCLUDED VERB
DURING ADP
their PRON
use NOUN
. PUNCT
) PUNCT
          SPACE
( PUNCT
1 NUM
) PUNCT
THE DET
7-DAY NOUN
FAST PROPN
. PUNCT
                SPACE
1st ADJ
day NOUN
: PUNCT
Eat VERB
as ADV
much ADJ
fresh ADJ
fruit NOUN
as SCONJ
you PRON
want VERB
, PUNCT
one NUM
kind NOUN
           SPACE
at ADP
a DET
time NOUN
, PUNCT
preferably ADV
grapes NOUN
. PUNCT
                SPACE
2nd ADJ
day NOUN
: PUNCT
Eat VERB
all DET
the DET
vegetables NOUN
you PRON
want VERB
, PUNCT
at ADP
least ADV
half DET
           SPACE
raw ADJ
, PUNCT
including VERB
GARLIC PROPN
; PUNCT
also ADV
, PUNCT
whole ADJ
kernel NOUN
corn NOUN
to PART
help VERB
scrape VERB
           SPACE
clean VERB
the DET
intestinal ADJ
linings NOUN
. PUNCT
                SPACE
3rd ADJ
day NOUN
: PUNCT
Drink VERB
all DET
the DET
fresh ADJ
fruit NOUN
and CCONJ
vegetable NOUN
juice NOUN
           SPACE
you PRON
want VERB
. PUNCT
  SPACE
Preferably ADV
start VERB
with ADP
16 NUM
to PART
32 NUM
ounces NOUN
of ADP
prune NOUN
           SPACE
juice NOUN
WITH ADP
PULP NOUN
, PUNCT
followed VERB
by ADP
a DET
gallon NOUN
of ADP
pure ADJ
( PUNCT
NOT ADV
from ADP
           SPACE
concentrate PROPN
) PUNCT
apple NOUN
juice NOUN
, PUNCT
then ADV
grape PROPN
juice PROPN
. PUNCT
  SPACE
( PUNCT
Stay VERB
close ADJ
to PART
           SPACE
your PRON
home NOUN
bathroom NOUN
. PUNCT
) PUNCT
                SPACE
4th ADJ
day NOUN
: PUNCT
Eat VERB
all DET
the DET
UN PROPN
- PUNCT
salted VERB
nuts NOUN
( PUNCT
NO DET
peanuts NOUN
) PUNCT
and CCONJ
           SPACE
dried VERB
fruit NOUN
you PRON
want VERB
, PUNCT
preferably ADV
raisins NOUN
and CCONJ
almonds NOUN
( PUNCT
ALMONDS PROPN
           SPACE
CONTAIN PROPN
LAETRILE PROPN
. PUNCT
) PUNCT
. PUNCT
                SPACE
5th ADJ
day NOUN
: PUNCT
ONE NUM
GALLON PROPN
OF ADP
LEMONADE PROPN
. PUNCT
  SPACE
Squeeze VERB
the DET
juice NOUN
from ADP
           SPACE
two NUM
lemons NOUN
into ADP
a DET
gallon NOUN
of ADP
water NOUN
( PUNCT
preferably ADV
distilled ADJ
) PUNCT
, PUNCT
and CCONJ
           SPACE
add VERB
2 NUM
to PART
4 NUM
tablespoons NOUN
of ADP
locally ADV
- PUNCT
made VERB
honey NOUN
, PUNCT
( PUNCT
NO DET
sugar NOUN
) PUNCT
. PUNCT
            SPACE
Drink VERB
one NUM
glass NOUN
per ADP
hour NOUN
. PUNCT
          SPACE
[ PUNCT
EVERYone NOUN
, PUNCT
including VERB
healthy ADJ
people NOUN
, PUNCT
should AUX
do AUX
this DET
one NUM
day NOUN
           SPACE
every DET
week NOUN
, PUNCT
preceded VERB
by ADP
a DET
large ADJ
glass NOUN
of ADP
prune NOUN
juice NOUN
WITH ADP
           SPACE
PULP PROPN
. PUNCT
] PUNCT
                SPACE
6th ADJ
day NOUN
: PUNCT
Same ADJ
as SCONJ
5th ADJ
day NOUN
. PUNCT
                SPACE
7th ADJ
day NOUN
: PUNCT
Same ADJ
as SCONJ
6th ADJ
day NOUN
. PUNCT
                SPACE
All DET
7 NUM
days NOUN
, PUNCT
eat VERB
ONLY ADV
the DET
foods NOUN
listed VERB
above ADV
for ADP
each DET
           SPACE
day NOUN
, PUNCT
along ADP
with ADP
your PRON
usual ADJ
vitamin NOUN
and CCONJ
mineral NOUN
supplements NOUN
, PUNCT
           SPACE
plus CCONJ
as ADV
much ADJ
DISTILLED ADJ
WATER NOUN
as SCONJ
you PRON
want VERB
. PUNCT
           SPACE
( PUNCT
2 X
) PUNCT
THE DET
GRAPE NOUN
DIET PROPN
. PUNCT
                SPACE
Eat VERB
2 NUM
to ADP
3 NUM
ounces NOUN
of ADP
fresh ADJ
grapes NOUN
every DET
2 NUM
hours NOUN
, PUNCT
8 NUM
AM NOUN
to ADP
           SPACE
8 NUM
PM NOUN
, PUNCT
every DET
day NOUN
for ADP
six NUM
days NOUN
. PUNCT
  SPACE
Eat VERB
NOTHING NOUN
else ADV
during ADP
the DET
           SPACE
six NUM
days NOUN
, PUNCT
but CCONJ
drink VERB
as ADV
much ADJ
DISTILLED ADJ
WATER NOUN
as SCONJ
you PRON
want VERB
. PUNCT
                 SPACE
( PUNCT
3 X
) PUNCT
APPLE PROPN
CIDER NOUN
VINEGAR NOUN
. PUNCT
               SPACE
Mix VERB
a DET
teaspoon NOUN
of ADP
pure ADJ
apple NOUN
cider NOUN
vinegar NOUN
( PUNCT
NOT ADV
apple PROPN
           SPACE
cider NOUN
" PUNCT
flavored VERB
" PUNCT
vinegar NOUN
. PUNCT
  SPACE
Regular ADJ
vinegar NOUN
is AUX
HARMFUL PROPN
. PUNCT
) PUNCT
in ADP
a DET
           SPACE
glass NOUN
of ADP
water NOUN
( PUNCT
preferably ADV
distilled ADJ
) PUNCT
and CCONJ
drink VERB
all DET
of ADP
it PRON
. PUNCT
            SPACE
Do AUX
this DET
3 NUM
or CCONJ
4 NUM
times NOUN
per ADP
day NOUN
, PUNCT
for ADP
3 NUM
weeks NOUN
; PUNCT
then ADV
stop VERB
for ADP
a DET
           SPACE
week NOUN
. PUNCT
  SPACE
Repeat PROPN
if SCONJ
desired VERB
. PUNCT
  SPACE
Do AUX
this DET
along ADP
with ADP
a DET
normal ADJ
           SPACE
healthy ADJ
diet NOUN
of ADP
natural ADJ
foods NOUN
. PUNCT
  SPACE
This DET
remedy NOUN
is AUX
especially ADV
           SPACE
effective ADJ
against ADP
those DET
types NOUN
of ADP
cancer NOUN
that PRON
resemble VERB
a DET
           SPACE
FUNGUS NOUN
, PUNCT
as ADV
well ADV
as SCONJ
against ADP
other ADJ
kinds NOUN
of ADP
fungus NOUN
infections NOUN
. PUNCT
                   SPACE
( PUNCT
4 NUM
) PUNCT
THE DET
SEA PROPN
- PUNCT
SALT PROPN
& CCONJ
SODA PROPN
BATH PROPN
. PUNCT
  SPACE
[ PUNCT
Please INTJ
keep VERB
an DET
OPEN PROPN
MIND PROPN
. PUNCT
] PUNCT
               SPACE
Fill VERB
a DET
bathtub NOUN
with ADP
moderately ADV
warm ADJ
water NOUN
so SCONJ
the DET
level NOUN
           SPACE
comes VERB
up ADP
almost ADV
to ADP
the DET
overflow ADJ
drain NOUN
when ADV
you PRON
get VERB
in ADP
. PUNCT
            SPACE
Immerse VERB
yourself PRON
in ADP
it PRON
for ADP
a DET
minute NOUN
, PUNCT
and CCONJ
then ADV
completely ADV
           SPACE
dissolve NOUN
in ADP
the DET
bath NOUN
water NOUN
1 NUM
pound NOUN
of ADP
SUN PROPN
- PUNCT
evaporated VERB
SEA PROPN
- PUNCT
salt NOUN
           SPACE
( PUNCT
regular ADJ
salt NOUN
wo AUX
n't PART
work VERB
. PUNCT
) PUNCT
and CCONJ
1 NUM
pound NOUN
of ADP
fresh ADJ
baking NOUN
- PUNCT
soda NOUN
. PUNCT
                SPACE
Soak PROPN
in ADP
this DET
bath NOUN
for ADP
10 NUM
to PART
20 NUM
minutes NOUN
, PUNCT
while SCONJ
exercising VERB
           SPACE
your PRON
fingers NOUN
, PUNCT
toes NOUN
, PUNCT
and CCONJ
limbs NOUN
, PUNCT
turning VERB
sideways ADV
and CCONJ
onto ADP
your PRON
           SPACE
stomach NOUN
, PUNCT
dunking VERB
your PRON
head NOUN
, PUNCT
sitting VERB
up ADP
and CCONJ
laying VERB
back ADV
down ADV
, PUNCT
           SPACE
chomping VERB
your PRON
teeth NOUN
together ADV
, PUNCT
etc X
.. PUNCT
                SPACE
Among ADP
other ADJ
things NOUN
, PUNCT
the DET
SEA PROPN
- PUNCT
salt NOUN
& CCONJ
Soda PROPN
Bath PROPN
neutralizes VERB
           SPACE
the DET
accumulated VERB
effects NOUN
of ADP
X NOUN
- NOUN
rays NOUN
, PUNCT
etc X
. X
, PUNCT
as SCONJ
described VERB
in ADP
the DET
           SPACE
book NOUN
" PUNCT
Born VERB
To PART
Be AUX
Magnetic PROPN
, PUNCT
Vol PROPN
. PROPN
2 NUM
" PUNCT
, PUNCT
by ADP
Frances PROPN
Nixon PROPN
, PUNCT
1973 NUM
. PUNCT
                SPACE
PRECAUTIONS PROPN
: PUNCT
Only ADV
the DET
ONE NUM
person NOUN
using VERB
each DET
bath NOUN
should AUX
           SPACE
prepare VERB
it PRON
and CCONJ
drain VERB
it PRON
. PUNCT
          SPACE
For ADP
at ADV
least ADV
30 NUM
minutes NOUN
after ADP
taking VERB
the DET
bath NOUN
, PUNCT
stay VERB
away ADV
           SPACE
from ADP
, PUNCT
and CCONJ
even ADV
out SCONJ
of ADP
sight NOUN
of ADP
, PUNCT
other ADJ
people NOUN
. PUNCT
  SPACE
( PUNCT
Your PRON
greatly ADV
           SPACE
expanded VERB
Aura PROPN
energy NOUN
- PUNCT
field NOUN
during ADP
that DET
time NOUN
could AUX
disrupt VERB
           SPACE
other ADJ
people NOUN
's PART
fields NOUN
. PUNCT
) PUNCT
  SPACE
Two NUM
hours NOUN
after ADP
the DET
bath NOUN
, PUNCT
eat VERB
at ADP
           SPACE
least ADJ
8 NUM
ounces NOUN
of ADP
yogurt NOUN
containing VERB
ACTIVE PROPN
Yogurt PROPN
Cultures PROPN
. PUNCT
            SPACE
( PUNCT
The DET
bath NOUN
may AUX
kill VERB
FRIENDLY ADJ
bacteria NOUN
also ADV
. PUNCT
) PUNCT
  SPACE
Better ADV
yet ADV
, PUNCT
take VERB
           SPACE
a DET
2-Billion NUM
- PUNCT
bacteria NOUN
" PUNCT
Acidophilus ADJ
" PUNCT
capsule NOUN
, PUNCT
which PRON
is AUX
also ADV
an DET
           SPACE
EXCELLENT ADJ
DAILY PROPN
REMEDY NOUN
AGAINST PROPN
THE DET
EFFECTS NOUN
OF ADP
" PUNCT
A.I.D.S. PROPN
" PUNCT
           SPACE
( PUNCT
because SCONJ
it PRON
kills VERB
all DET
kinds NOUN
of ADP
harmful ADJ
bacteria NOUN
in ADP
the DET
           SPACE
digestive ADJ
tract NOUN
, PUNCT
taking VERB
a DET
big ADJ
load NOUN
off ADP
the DET
remaining VERB
immune ADJ
           SPACE
system NOUN
) PUNCT
. PUNCT
  SPACE
[ PUNCT
Because SCONJ
this DET
external ADJ
bath NOUN
can AUX
kill VERB
IN NOUN
- PUNCT
ternal ADJ
           SPACE
bacteria NOUN
, PUNCT
it PRON
may AUX
also ADV
be AUX
a DET
CURE NOUN
for ADP
" PUNCT
Lyme PROPN
disease NOUN
" PUNCT
. PUNCT
] PUNCT
          SPACE
Do AUX
NOT ADV
take VERB
this DET
bath NOUN
within ADP
a DET
few ADJ
hundred NUM
miles NOUN
of ADP
a DET
thunder NOUN
           SPACE
storm NOUN
, PUNCT
within ADP
3 NUM
days NOUN
of ADP
a DET
full ADJ
moon NOUN
, PUNCT
nor CCONJ
during ADP
" PUNCT
Major ADJ
" PUNCT
or CCONJ
           SPACE
" PUNCT
Minor PROPN
Periods NOUN
" PUNCT
as SCONJ
listed VERB
in ADP
the DET
" PUNCT
Solunar PROPN
Tables PROPN
" PUNCT
published VERB
           SPACE
bimonthly ADV
in ADP
" PUNCT
Field PROPN
& CCONJ
Stream PROPN
" PUNCT
Magazine PROPN
, PUNCT
( PUNCT
because SCONJ
of ADP
the DET
           SPACE
measurable ADJ
disruptive ADJ
ambient NOUN
environmental ADJ
energy NOUN
- PUNCT
fields NOUN
           SPACE
present ADJ
at ADP
those DET
times NOUN
) PUNCT
. PUNCT
          SPACE
Do AUX
NOT ADV
take VERB
this DET
bath NOUN
more ADJ
than SCONJ
four NUM
times NOUN
per ADP
year NOUN
. PUNCT
                  SPACE
( PUNCT
5 NUM
) PUNCT
MISCELLANEOUS PROPN
NATURAL PROPN
ANTI NOUN
- PUNCT
CANCER ADJ
REMEDIES NOUN
: PUNCT
                       SPACE
For ADP
skin NOUN
cancer NOUN
, PUNCT
apply VERB
STABILIZED PROPN
Aloe PROPN
Vera PROPN
Jel PROPN
to ADP
the DET
                SPACE
affected ADJ
skin NOUN
twice ADV
daily ADV
, PUNCT
and CCONJ
take VERB
2 NUM
to PART
4 NUM
tablespoons NOUN
                SPACE
per ADP
day NOUN
of ADP
STABILIZED PROPN
Aloe PROPN
Vera PROPN
Juice PROPN
internally ADV
, PUNCT
for ADP
                SPACE
about ADV
2 NUM
months NOUN
. PUNCT
                        SPACE
D.M.S.O. PROPN
( PUNCT
Dimethyl PROPN
Sulfoxide PROPN
) PUNCT
causes VERB
cancer NOUN
cells NOUN
to PART
                SPACE
perform VERB
NORMAL PROPN
cell NOUN
functions NOUN
. PUNCT
                SPACE
ALMONDS PROPN
( PUNCT
UN PROPN
- PUNCT
blanched VERB
, PUNCT
UN PROPN
- PUNCT
roasted VERB
) PUNCT
CONTAIN PROPN
LAETRILE PROPN
. PUNCT
                 SPACE
To PART
help VERB
prevent VERB
cancer NOUN
, PUNCT
eat VERB
several ADJ
almonds NOUN
every DET
day NOUN
. PUNCT
                 SPACE
To PART
help VERB
cure VERB
cancer NOUN
, PUNCT
eat VERB
several ADJ
OUNCES NOUN
of ADP
almonds NOUN
per ADP
                SPACE
day NOUN
. PUNCT
               SPACE
[ PUNCT
NEVER ADV
take VERB
large ADJ
concentrated ADJ
doses NOUN
of ADP
Laetrile PROPN
orally ADV
. PUNCT
                 SPACE
IT PRON
WILL AUX
KILL VERB
YOU PRON
! PUNCT
  SPACE
Take VERB
it PRON
INTRAVENOUSLY PROPN
ONLY ADV
. PUNCT
  SPACE
( PUNCT
Cancer NOUN
                SPACE
cells NOUN
contain VERB
a DET
certain ADJ
enzyme NOUN
which PRON
converts VERB
Laetrile PROPN
                SPACE
into ADP
cyanide NOUN
, PUNCT
which PRON
then ADV
kills VERB
the DET
cell NOUN
. PUNCT
  SPACE
This DET
enzyme NOUN
is AUX
                SPACE
ALSO PROPN
present ADJ
in ADP
the DET
digestive ADJ
system NOUN
. PUNCT
) PUNCT
] PUNCT
                SPACE
ANTI NOUN
- PUNCT
OXIDANTS NOUN
are AUX
FREE ADJ
- PUNCT
RADICAL NOUN
SCAVENGERS NOUN
, PUNCT
and CCONJ
include VERB
                SPACE
Vitamin NOUN
E NOUN
, PUNCT
Selenium PROPN
( PUNCT
200 NUM
mcg NOUN
. PUNCT
per ADP
day NOUN
is AUX
safe ADJ
for ADP
most ADJ
                SPACE
people NOUN
. PUNCT
) PUNCT
, PUNCT
Chromium NOUN
( PUNCT
up ADP
to PART
100 NUM
mcg PROPN
. PUNCT
per ADP
day NOUN
) PUNCT
, PUNCT
Vitamin PROPN
A PROPN
                SPACE
( PUNCT
25,000 NUM
IU ADV
per ADP
day NOUN
is AUX
safe ADJ
for ADP
most ADJ
people NOUN
. PUNCT
) PUNCT
, PUNCT
Superoxide PROPN
                SPACE
Dismutase PROPN
( PUNCT
up ADP
to PART
4,000,000 NUM
Units NOUN
per ADP
day NOUN
) PUNCT
, PUNCT
Vitamin PROPN
C PROPN
( PUNCT
up ADV
                SPACE
to ADP
3000 NUM
mg PROPN
. PROPN
per ADP
day NOUN
) PUNCT
, PUNCT
and CCONJ
BHT PROPN
( PUNCT
Butylated VERB
Hydroxy- PROPN
               SPACE
toluene NOUN
) PUNCT
, PUNCT
[ PUNCT
1 NUM
to ADP
4 NUM
capsules NOUN
of ADP
BHT PROPN
every DET
night NOUN
at ADP
bedtime ADJ
                SPACE
will AUX
also ADV
MAKE VERB
ONE NUM
IMMUNE ADJ
AGAINST PROPN
HERPES NOUN
( PUNCT
BOTH DET
types NOUN
) PUNCT
, PUNCT
                SPACE
suppress ADJ
herpes NOUN
symptoms NOUN
if SCONJ
one NOUN
already ADV
has AUX
herpes NOUN
, PUNCT
                SPACE
prevent NOUN
spreading VERB
herpes NOUN
to ADP
other ADJ
people NOUN
, PUNCT
but CCONJ
will AUX
not PART
                SPACE
cure VERB
herpes NOUN
. PUNCT
  SPACE
BHT PROPN
MIGHT PROPN
ALSO ADV
DO VERB
THESE DET
THINGS NOUN
AGAINST ADJ
                SPACE
" PUNCT
A.I.D.S. PROPN
" PUNCT
, PUNCT
which PRON
is AUX
really ADV
a DET
form NOUN
of ADP
cancer NOUN
similar ADJ
to ADP
                SPACE
leukemia NOUN
. PUNCT
] PUNCT
  SPACE
( PUNCT
See VERB
the DET
book NOUN
" PUNCT
Life PROPN
Extension PROPN
" PUNCT
, PUNCT
by ADP
Durk PROPN
                SPACE
Pearson PROPN
and CCONJ
Sandy PROPN
Shaw PROPN
. PUNCT
) PUNCT
                SPACE
HYDROGEN PROPN
- PUNCT
PEROXIDE PROPN
. PUNCT
  SPACE
Dilute PROPN
twelve(12 PROPN
) PUNCT
drops NOUN
of ADP
3 NUM
% NOUN
                SPACE
hydrogen NOUN
- PUNCT
peroxide NOUN
in ADP
a DET
glass NOUN
of ADP
pure ADJ
water NOUN
( PUNCT
preferably ADV
                SPACE
DISTILLED PROPN
) PUNCT
and CCONJ
drink VERB
it PRON
. PUNCT
  SPACE
Do AUX
this DET
once ADV
or CCONJ
twice ADV
per ADP
day NOUN
, PUNCT
                SPACE
hours NOUN
before ADV
or CCONJ
after ADP
eating VERB
or CCONJ
drinking VERB
anything PRON
else ADV
. PUNCT
                 SPACE
Apply PROPN
3 NUM
% NOUN
hydrogen NOUN
- PUNCT
peroxide NOUN
directly ADV
to PART
skin NOUN
cancers NOUN
                SPACE
several ADJ
times NOUN
per ADP
day NOUN
. PUNCT
               SPACE
Use PROPN
hydrogen NOUN
- PUNCT
peroxide NOUN
ONLY ADV
if SCONJ
you PRON
are AUX
taking VERB
a DET
good ADJ
                SPACE
daily ADJ
dose NOUN
of ADP
some DET
of ADP
the DET
various ADJ
anti NOUN
- NOUN
oxidants NOUN
                SPACE
described VERB
above ADV
. PUNCT
                SPACE
VITAMIN PROPN
& CCONJ
MINERAL PROPN
SUPPLEMENTS NOUN
are AUX
more ADV
effective ADJ
, PUNCT
and CCONJ
                SPACE
much ADV
less ADV
expensive ADJ
, PUNCT
when ADV
COMBINED PROPN
together ADV
in ADP
MEGA PROPN
                SPACE
doses NOUN
into ADP
SINGLE ADJ
tablets NOUN
made VERB
from ADP
NATURAL PROPN
sources NOUN
. PUNCT
                SPACE
Cancer NOUN
cells NOUN
can AUX
NOT ADV
live VERB
in ADP
a DET
strong ADJ
( PUNCT
100,000 NUM
Maxwell PROPN
) PUNCT
                SPACE
NORTH PROPN
MAGNETIC PROPN
FIELD PROPN
, PUNCT
especially ADV
if SCONJ
it PRON
is AUX
pulsating VERB
on ADP
                SPACE
and CCONJ
off ADV
. PUNCT
  SPACE
[ PUNCT
A DET
strong ADJ
south ADJ
magnetic ADJ
field NOUN
is AUX
an DET
                SPACE
aphrodisiac NOUN
. PUNCT
] PUNCT
  SPACE
In ADP
my PRON
opinion NOUN
, PUNCT
ALL DET
types NOUN
of ADP
ionizing- ADJ
               SPACE
radiation NOUN
treatments NOUN
for ADP
cancer NOUN
should AUX
be AUX
REPLACED NOUN
with ADP
                SPACE
daily ADJ
30-minute NUM
doses NOUN
of ADP
pulsating VERB
100,000-Maxwell NUM
NORTH NOUN
                SPACE
magnetic ADJ
fields NOUN
. PUNCT
                SPACE
Properly ADV
made VERB
and CCONJ
operated VERB
RADIONICS PROPN
/ SYM
PSIONICS PROPN
MACHINES NOUN
                SPACE
can AUX
both CCONJ
diagnose VERB
and CCONJ
cure VERB
all DET
forms NOUN
of ADP
cancer NOUN
, PUNCT
as ADV
well ADV
                SPACE
as SCONJ
most ADJ
other ADJ
medical ADJ
problems NOUN
. PUNCT
  SPACE
Some DET
Radionics PROPN
/ SYM
Psionics PROPN
                SPACE
Machines PROPN
can AUX
even ADV
take VERB
cross ADJ
- ADJ
sectional ADJ
X NOUN
- NOUN
ray NOUN
- PUNCT
like ADJ
photos NOUN
                SPACE
of ADP
cancer NOUN
tumors NOUN
, PUNCT
etc X
. X
, PUNCT
with ADP
- PUNCT
OUT ADP
X NOUN
- NOUN
rays NOUN
! PUNCT
                SPACE
INTERFERON PROPN
tablets NOUN
. PUNCT
               SPACE
TAHEEBO PROPN
TEA NOUN
, PUNCT
( PUNCT
Lapacho PROPN
) PUNCT
. PUNCT
                           SPACE
HOMEOPATHY PROPN
can AUX
cure VERB
cancer NOUN
, PUNCT
and CCONJ
many ADJ
other ADJ
medical ADJ
                SPACE
problems NOUN
( PUNCT
even ADV
drug NOUN
addiction NOUN
! PUNCT
) PUNCT
. PUNCT
                SPACE
50 NUM
mg PROPN
. PUNCT
per ADP
day NOUN
of ADP
CHELATED ADJ
ZINC NOUN
can AUX
help VERB
prevent VERB
or CCONJ
cure VERB
                SPACE
prostate NOUN
trouble NOUN
. PUNCT
                SPACE
This DET
list NOUN
is AUX
NOT ADV
exhaustive ADJ
. PUNCT
           SPACE
The DET
above ADJ
NATURAL PROPN
Remedies NOUN
can AUX
CURE VERB
both CCONJ
diagnosed VERB
AND CCONJ
UN- ADJ
          SPACE
DIAGNOSED PROPN
cancers NOUN
, PUNCT
as ADV
well ADV
as SCONJ
PREVENT PROPN
them PRON
, PUNCT
and CCONJ
also ADV
prevent VERB
           SPACE
and CCONJ
cure VERB
many ADJ
other ADJ
medical ADJ
problems NOUN
including VERB
heart- PROPN
          SPACE
diseases NOUN
. PUNCT
  SPACE
They PRON
are AUX
NOT ADV
too ADV
simple ADJ
and CCONJ
inexpensive ADJ
to PART
work VERB
           SPACE
effectively ADV
. PUNCT
           SPACE
Besides SCONJ
acting VERB
on ADP
a DET
person NOUN
biologically ADV
and CCONJ
chemically ADV
, PUNCT
these DET
           SPACE
remedies NOUN
, PUNCT
especially ADV
The DET
7-Day PROPN
Fast PROPN
and CCONJ
The DET
Grape PROPN
Diet PROPN
, PUNCT
send VERB
           SPACE
a DET
strong ADJ
message NOUN
to ADP
one PRON
's PART
subconscious ADJ
mind NOUN
, PUNCT
PROGRAMMING VERB
it PRON
           SPACE
to PART
CURE VERB
the DET
cancer NOUN
. PUNCT
           SPACE
In ADP
my PRON
opinion NOUN
, PUNCT
if SCONJ
a DET
person NOUN
finds VERB
out ADP
that SCONJ
s PROPN
/ PUNCT
he PRON
has AUX
cancer NOUN
, PUNCT
           SPACE
then ADV
s PROPN
/ PUNCT
he PRON
should AUX
promptly ADV
try VERB
at ADP
least ADJ
the DET
first ADJ
4 NUM
remedies NOUN
           SPACE
described VERB
above ADV
, PUNCT
in ADP
sequence NOUN
( PUNCT
starting VERB
with ADP
The DET
7-Day PROPN
Fast PROPN
) PUNCT
, PUNCT
           SPACE
BEFORE ADP
resorting VERB
to ADP
the DET
UN PROPN
- PUNCT
natural ADJ
and CCONJ
expensive ADJ
mutilations NOUN
           SPACE
and CCONJ
agonies NOUN
[ PUNCT
POISON NOUN
, PUNCT
BURN NOUN
, PUNCT
and CCONJ
MUTILATE PROPN
! PUNCT
] PUNCT
of ADP
orthodox ADJ
cancer NOUN
           SPACE
treatment NOUN
[ PUNCT
organi$ed ADJ
- PUNCT
CRIME NOUN
! PUNCT
] PUNCT
. PUNCT
                               SPACE
DISCLAIMER PROPN
: PUNCT
This DET
list NOUN
was AUX
compiled VERB
from ADP
unorthodox PROPN
sources NOUN
           SPACE
that PRON
have AUX
shown VERB
themselves PRON
to PART
be AUX
reliable ADJ
. PUNCT
  SPACE
The DET
compiler NOUN
of ADP
           SPACE
this DET
list NOUN
is AUX
NOT ADV
a DET
doctor NOUN
of ADP
any DET
kind NOUN
, PUNCT
but CCONJ
is AUX
exercising VERB
his PRON
           SPACE
First PROPN
Amendment PROPN
Constitutional PROPN
RIGHT NOUN
of ADP
FREE ADJ
SPEECH NOUN
on ADP
the DET
           SPACE
subjects NOUN
of ADP
his PRON
choice NOUN
. PUNCT
           SPACE
FOR ADP
MORE ADJ
INFORMATION NOUN
, PUNCT
contact NOUN
Cancer PROPN
Control PROPN
Society PROPN
, PUNCT
2043 NUM
N. PROPN
           SPACE
Berendo PROPN
St. PROPN
, PUNCT
Los PROPN
Angeles PROPN
, PUNCT
CA PROPN
  SPACE
90027 NUM
, PUNCT
and/or CCONJ
other ADJ
organiza- ADJ
          SPACE
tions NOUN
listed VERB
in ADP
the DET
" PUNCT
Alternative PROPN
Medicine PROPN
" PUNCT
and CCONJ
" PUNCT
Holistic PROPN
           SPACE
Medicine PROPN
" PUNCT
portions NOUN
of ADP
the DET
" PUNCT
Health PROPN
and CCONJ
Medical PROPN
Organizations PROPN
" PUNCT
           SPACE
Section PROPN
( PUNCT
Section NOUN
8) NUM
of ADP
the DET
latest ADJ
edition NOUN
of ADP
the DET
" PUNCT
Encyclope- PROPN
          SPACE
dia NOUN
of ADP
Associations PROPN
" PUNCT
reference NOUN
book NOUN
in ADP
your PRON
local ADJ
public NOUN
or CCONJ
           SPACE
university PROPN
library NOUN
. PUNCT
                SPACE
UN PROPN
- PUNCT
altered VERB
REPRODUCTION NOUN
and CCONJ
DISSEMINATION NOUN
of ADP
this DET
           SPACE
IMPORTANT PROPN
Information PROPN
is AUX
ENCOURAGED PROPN
. PUNCT
                                              SPACE
Robert PROPN
E. PROPN
McElwaine PROPN
         SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58153From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Fungus NOUN
" PUNCT
epidemic NOUN
" PUNCT
in ADP
CA?In PROPN
article NOUN
< X
19435@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>In X
article NOUN
steward@cup.portal.com PROPN
( PUNCT
John PROPN
Joseph PROPN
Deltuvia PROPN
) PUNCT
writes:>>>>>There PROPN
was AUX
a DET
story NOUN
a DET
few ADJ
weeks NOUN
ago ADV
on ADP
a DET
network NOUN
news NOUN
show NOUN
about ADP
some DET
sort>>>of NOUN
fungus NOUN
which PRON
supposedly ADV
attacks VERB
the DET
bone NOUN
structure NOUN
and CCONJ
is AUX
somewhat>>>widespread PROPN
in ADP
California PROPN
. PUNCT
  SPACE
Anybody PRON
hear VERB
anything PRON
about ADP
this DET
one?>>>>The VERB
only ADV
fungus NOUN
I PRON
know VERB
of ADP
from ADP
California PROPN
is AUX
Coccidiomycosis PROPN
. PUNCT
  SPACE
I PRON
> X
hadn't ADV
heard VERB
that SCONJ
it PRON
attacked VERB
bone NOUN
. PUNCT
  SPACE
It PRON
attacks VERB
lung NOUN
and CCONJ
if SCONJ
you PRON
> X
are AUX
especially ADV
unlucky ADJ
, PUNCT
the DET
central ADJ
nervous ADJ
system NOUN
. PUNCT
  SPACE
Nothing PRON
new ADJ
> X
about ADP
it PRON
. PUNCT
  SPACE
It PRON
's AUX
been AUX
around ADV
for ADP
years NOUN
. PUNCT
  SPACE
THey PRON
call VERB
it PRON
" PUNCT
valley PROPN
> X
fever PROPN
" PUNCT
, PUNCT
since SCONJ
it PRON
is AUX
found VERB
in ADP
the DET
inland ADJ
valleys NOUN
, PUNCT
not PART
on ADP
the DET
coast NOUN
. PUNCT
There PRON
is AUX
a DET
mini ADJ
- NOUN
epidemic NOUN
of ADP
Coccidiodes PROPN
that PRON
is AUX
occurring VERB
in ADP
, PUNCT
I PRON
believe VERB
, PUNCT
the DET
Owen PROPN
's PART
Valley/ PROPN
Bishop PROPN
area NOUN
east ADV
of ADP
the DET
Sierras PROPN
. PUNCT
I PRON
do AUX
n't PART
believe VERB
there PRON
has AUX
been AUX
any DET
great ADJ
insight NOUN
into ADP
theincreased VERB
incidence NOUN
in ADP
that DET
area NOUN
. PUNCT
There PRON
is AUX
a DET
low ADJ
- PUNCT
levelof NOUN
endemic ADJ
infection NOUN
in ADP
that DET
region NOUN
. PUNCT
Many ADJ
people NOUN
withevidence NOUN
of ADP
past ADJ
exposure NOUN
to ADP
the DET
organism NOUN
did AUX
not PART
haveserious VERB
disease NOUN
. PUNCT
Brian PROPN
> X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58154From NUM
: PUNCT
bshelley@ucs.indiana.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Xanax PROPN
... PUNCT
please INTJ
provide VERB
infoI PROPN
am AUX
currently ADV
doing VERB
a DET
group NOUN
research NOUN
project NOUN
on ADP
the DET
drug NOUN
Xanax PROPN
. PUNCT
  SPACE
I PRON
wouldbe VERB
exponentially ADV
gracious ADJ
to PART
receive VERB
any DET
and CCONJ
all DET
information NOUN
you PRON
couldprovideme VERB
regarding VERB
its PRON
usage NOUN
, PUNCT
history NOUN
, PUNCT
mechanism NOUN
of ADP
reaction NOUN
, PUNCT
side NOUN
effects NOUN
, PUNCT
andother PROPN
pertinent PROPN
information NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
care VERB
how ADV
long ADV
or CCONJ
how ADV
short ADJ
your PRON
response NOUN
is AUX
. PUNCT
Thanks NOUN
in ADP
advance!Brent PROPN
E. PROPN
ShelleyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58155From NUM
: PUNCT
lindae@netcom.comSubject X
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?In PROPN
article NOUN
< X
19392@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
lindaeC4JGLK.FxM@netcom.com X
> X
lindae@netcom.com X
writes:>>>>>My PROPN
biggest ADJ
resentment NOUN
is AUX
the DET
doctor NOUN
who PRON
makes VERB
it PRON
seem VERB
like SCONJ
most>>people NOUN
with ADP
dizziness NOUN
can AUX
be AUX
cured VERB
. PUNCT
  SPACE
That DET
's AUX
definitely ADV
not PART
the>>case NOUN
. PUNCT
  SPACE
In ADP
most ADJ
cases NOUN
, PUNCT
like SCONJ
I PRON
said VERB
above ADV
, PUNCT
it PRON
is AUX
a DET
long ADJ
, PUNCT
tedious>>process NOUN
that PRON
may AUX
or CCONJ
may AUX
not PART
end VERB
up ADP
in ADP
a DET
partial ADJ
cure NOUN
. PUNCT
  SPACE
> X
> X
> X
> X
Be AUX
sure ADJ
to PART
say VERB
" PUNCT
chronic ADJ
" PUNCT
dizziness NOUN
, PUNCT
not PART
just ADV
dizziness ADJ
. PUNCT
  SPACE
Most ADJ
> X
patients NOUN
with ADP
acute ADJ
or CCONJ
subacute VERB
dizziness NOUN
will AUX
get AUX
better.>The DET
vertiginous ADJ
spells NOUN
of ADP
Meniere PROPN
's PART
will AUX
also ADV
eventually ADV
go VERB
> X
away ADV
, PUNCT
however ADV
, PUNCT
the DET
patient NOUN
is AUX
left VERB
with ADP
a DET
deaf ADJ
ear NOUN
. PUNCT
All DET
true ADJ
. PUNCT
  SPACE
And CCONJ
all DET
good ADJ
points.>>>To NOUN
anyone PRON
suffering VERB
with ADP
vertigo NOUN
, PUNCT
dizziness NOUN
, PUNCT
or CCONJ
any DET
variation>>thereof NOUN
, PUNCT
my PRON
best ADJ
advice NOUN
to ADP
you PRON
( PUNCT
as SCONJ
a DET
fellow NOUN
- PUNCT
sufferer NOUN
) PUNCT
is AUX
this DET
... PUNCT
>>just PUNCT
keep VERB
searching VERB
... PUNCT
don't NOUN
let VERB
the DET
doctors NOUN
tell VERB
you PRON
there's>>nothing VERB
that DET
can AUX
be AUX
done VERB
... PUNCT
do AUX
your PRON
own ADJ
research NOUN
... PUNCT
and CCONJ
let VERB
your>>This PRON
may AUX
have AUX
helped VERB
you PRON
, PUNCT
but CCONJ
I PRON
'm AUX
not PART
sure ADJ
it PRON
is AUX
good ADJ
general ADJ
> PROPN
advice NOUN
. PUNCT
  SPACE
The DET
odds NOUN
that SCONJ
you PRON
are AUX
going VERB
to PART
find VERB
some DET
miracle NOUN
with ADP
> X
your PRON
own ADJ
research NOUN
that PRON
is AUX
secret ADJ
or CCONJ
hidden VERB
from ADP
general ADJ
knowledge NOUN
> X
for ADP
this DET
or CCONJ
any DET
other ADJ
disease NOUN
are AUX
slim ADJ
. PUNCT
  SPACE
When ADV
good ADJ
answers NOUN
to ADP
these DET
> X
then ADV
, PUNCT
spending VERB
a DET
great ADJ
deal NOUN
of ADP
time NOUN
and CCONJ
energy NOUN
on ADP
the DET
medical ADJ
> NOUN
problem NOUN
may AUX
divert VERB
that DET
energy NOUN
from ADP
more ADJ
productive ADJ
things NOUN
> X
in ADP
life NOUN
. PUNCT
  SPACE
A DET
limited ADJ
amount NOUN
should AUX
be AUX
spent VERB
to PART
assure VERB
yourself PRON
> X
that SCONJ
your PRON
doctor NOUN
gave VERB
you PRON
the DET
correct ADJ
story NOUN
, PUNCT
but CCONJ
after ADP
it PRON
becomes VERB
> X
clear ADJ
that SCONJ
you PRON
are AUX
dealing VERB
with ADP
a DET
problem NOUN
for ADP
which PRON
medicine NOUN
> X
has AUX
no DET
good ADJ
solution NOUN
, PUNCT
perhaps ADV
the DET
best ADJ
strategy NOUN
is AUX
to PART
join VERB
> X
the DET
support NOUN
group NOUN
and CCONJ
keep VERB
abreast ADV
of ADP
new ADJ
findings NOUN
but CCONJ
not PART
to PART
> X
make VERB
a DET
career NOUN
out SCONJ
of ADP
it PRON
. PUNCT
Well INTJ
, PUNCT
making VERB
a DET
career NOUN
out SCONJ
of ADP
it PRON
is AUX
a DET
bit NOUN
strong ADJ
. PUNCT
  SPACE
I PRON
still ADV
believethat ADP
doing VERB
your PRON
own ADJ
research NOUN
is AUX
very ADV
, PUNCT
very ADV
necessary ADJ
. PUNCT
  SPACE
I PRON
wouldnot ADV
have AUX
progressed VERB
as ADV
much ADV
as SCONJ
I PRON
have AUX
today NOUN
, PUNCT
unless SCONJ
I PRON
had AUX
spentthe NOUN
many ADJ
hours NOUN
in ADP
Stanford PROPN
's PART
Med PROPN
Library PROPN
as SCONJ
I PRON
have AUX
done VERB
. PUNCT
And CCONJ
5 NUM
years NOUN
ago ADV
, PUNCT
it PRON
was AUX
clear ADJ
that SCONJ
there PRON
was AUX
no DET
medicine NOUN
that PRON
would AUX
help VERB
me PRON
. PUNCT
  SPACE
So ADV
should AUX
I PRON
have AUX
stopped VERB
searching VERB
. PUNCT
  SPACE
Thankgoodness PROPN
I PRON
did AUX
n't PART
. PUNCT
  SPACE
Now ADV
I PRON
found VERB
that SCONJ
there PRON
is AUX
indeed ADV
medicinethat NOUN
helps VERB
me PRON
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
what PRON
you PRON
've AUX
said VERB
is AUX
kind ADV
of ADV
idealistic ADJ
. PUNCT
  SPACE
That DET
youwould AUX
go VERB
to ADP
one NUM
doctor NOUN
, PUNCT
get AUX
a DET
diagnosis NOUN
, PUNCT
maybe ADV
get AUX
a DET
secondopinion NOUN
, PUNCT
and CCONJ
then ADV
move VERB
on ADP
with ADP
your PRON
life NOUN
. PUNCT
Just ADV
as SCONJ
an DET
example NOUN
... PUNCT
having VERB
seen VERB
6 NUM
of ADP
the DET
top ADJ
specialists NOUN
in ADP
this DET
field NOUN
in ADP
the DET
country NOUN
, PUNCT
I PRON
have AUX
received VERB
6 NUM
different ADJ
diagnoses NOUN
. PUNCT
These DET
are AUX
the DET
top ADJ
names NOUN
, PUNCT
the DET
ones NOUN
that PRON
people NOUN
come VERB
to ADP
from ADP
all DET
overthe NOUN
country NOUN
. PUNCT
  SPACE
I PRON
have AUX
HAD VERB
to PART
sort VERB
all DET
of ADP
this DET
out ADP
myself PRON
. PUNCT
  SPACE
Goingto PROPN
a DET
support NOUN
group NOUN
( PUNCT
and CCONJ
in ADP
fact NOUN
, PUNCT
HEADING VERB
that SCONJ
support NOUN
group NOUN
) PUNCT
was AUX
helpful ADJ
for ADP
a DET
while NOUN
, PUNCT
but CCONJ
after ADP
a DET
point NOUN
, PUNCT
I PRON
found VERB
it PRON
veryunproductive ADJ
. PUNCT
  SPACE
It PRON
was AUX
much ADV
more ADV
productive ADJ
to PART
do AUX
library NOUN
research NOUN
, PUNCT
make VERB
phone NOUN
calls NOUN
and CCONJ
put VERB
together ADP
the DET
pieces NOUN
of ADP
the DET
puzzle NOUN
myself PRON
. PUNCT
A DET
recent ADJ
movie NOUN
, PUNCT
Lorenzo PROPN
's PART
Oil PROPN
, PUNCT
offers VERB
a DET
perfect ADJ
example NOUN
of ADP
whatI'm PROPN
talking VERB
about ADP
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
n't PART
seen VERB
it PRON
, PUNCT
you PRON
should AUX
. PUNCT
  SPACE
It PRON
's AUX
nota ADV
put VERB
down ADP
of ADP
doctor NOUN
's PART
and CCONJ
neither DET
is AUX
what PRON
I PRON
'm AUX
saying VERB
. PUNCT
  SPACE
Doctors NOUN
areonly ADV
human ADJ
and CCONJ
can AUX
only ADV
do AUX
so ADV
much ADV
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
those DET
of ADP
usout NOUN
here ADV
who PRON
are AUX
intelligent ADJ
and CCONJ
able ADJ
to PART
sometimes ADV
find VERB
a DET
missingpiece NOUN
of ADP
the DET
puzzle NOUN
that PRON
might AUX
have AUX
otherwise ADV
gone VERB
unnoticed ADJ
. PUNCT
I PRON
guess VERB
I PRON
'm AUX
biased ADJ
because SCONJ
dizziness NOUN
is AUX
one NUM
of ADP
those DET
weird ADJ
thingsthat DET
is AUX
still ADV
so ADV
unknown ADJ
. PUNCT
  SPACE
If SCONJ
I PRON
had AUX
a DET
broken ADJ
arm NOUN
, PUNCT
or CCONJ
a DET
weak ADJ
heart NOUN
, PUNCT
or CCONJ
failing VERB
kidneys NOUN
, PUNCT
I PRON
might AUX
not PART
have AUX
the DET
same ADJ
opinion NOUN
. PUNCT
  SPACE
That DET
's AUX
because SCONJ
those DET
things NOUN
are AUX
much ADV
more ADV
tangible ADJ
and CCONJ
have AUX
much ADV
more ADJ
concise ADJ
definitions NOUN
and CCONJ
treatments NOUN
. PUNCT
  SPACE
With ADP
dizziness NOUN
, PUNCT
you PRON
just ADV
have AUX
todecide NOUN
to PART
live VERB
with ADP
it PRON
or CCONJ
decide VERB
to PART
live VERB
with ADP
it PRON
while SCONJ
trying VERB
tofind NOUN
your PRON
way NOUN
out SCONJ
of ADP
it PRON
. PUNCT
I PRON
have AUX
chosen VERB
the DET
latter ADJ
. PUNCT
Lindalindae@netcom.netcom.com>>-- PUNCT
> X
---------------------------------------------------------------------------->Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------Newsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58568From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
3/4 NUM
) PUNCT
: PUNCT
Keyboard PROPN
Alternatives PROPN
[ PUNCT
monthly ADV
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
keyboardsVersion NOUN
: PUNCT
$ SYM
Revision NOUN
: PUNCT
5.11 NUM
$ SYM
$ SYM
Date NOUN
: PUNCT
1993/04/13 NUM
01:20:43 NUM
$ SYM
------------------------------------------------------------------------------- PUNCT
      SPACE
Answers NOUN
To ADP
Frequently ADV
Asked VERB
Questions PROPN
about ADP
Keyboard PROPN
Alternatives-------------------------------------------------------------------------------The PROPN
Alternative PROPN
Keyboard PROPN
FAQCopyright NOUN
1992,1993 NOUN
By ADP
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>The ADJ
opinions NOUN
in ADP
here ADV
are AUX
my PRON
own ADJ
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
and CCONJ
do AUX
notrepresent VERB
the DET
opinions NOUN
of ADP
any DET
organization NOUN
or CCONJ
vendor.[Current PROPN
distribution NOUN
: PUNCT
sci.med.occupational PROPN
, PUNCT
sci.med PUNCT
, PUNCT
comp.human-factors PROPN
, PUNCT
{ PUNCT
news NOUN
, PUNCT
sci PROPN
, PUNCT
comp}.answers PROPN
, PUNCT
and CCONJ
e NOUN
- NOUN
mail NOUN
to ADP
c+health@iubvm.ucs.indiana.edu PROPN
, PUNCT
sorehand@vm.ucsf.edu PROPN
, PUNCT
and CCONJ
cstg-L@vtvm1.cc.vt.edu]Changes NOUN
since SCONJ
previously ADV
distributed VERB
versions NOUN
are AUX
marked VERB
with ADP
change NOUN
        SPACE
||bars NOUN
to ADP
the DET
right NOUN
of ADP
the DET
text NOUN
, PUNCT
as SCONJ
is AUX
this DET
paragraph NOUN
. PUNCT
                        SPACE
||Information NOUN
in ADP
this DET
FAQ PROPN
has AUX
been AUX
pieced VERB
together ADV
from ADP
phone NOUN
conversations NOUN
, PUNCT
e NOUN
- NOUN
mail NOUN
, PUNCT
and CCONJ
product NOUN
literature NOUN
. PUNCT
  SPACE
While SCONJ
I PRON
hope VERB
it PRON
's AUX
useful ADJ
, PUNCT
the DET
informationin NOUN
here ADV
is AUX
neither CCONJ
comprehensive ADJ
nor CCONJ
error NOUN
free ADJ
. PUNCT
  SPACE
If SCONJ
you PRON
find VERB
somethingwrong ADJ
or CCONJ
missing ADJ
, PUNCT
please INTJ
mail VERB
me PRON
, PUNCT
and CCONJ
I PRON
'll AUX
update VERB
my PRON
list NOUN
. PUNCT
  SPACE
Thanks INTJ
. PUNCT
All DET
phone NOUN
numbers NOUN
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
are AUX
U.S.A. PROPN
phone NOUN
numbers NOUN
. PUNCT
All DET
monetary ADJ
figures NOUN
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
are AUX
U.S.A. PROPN
dollars NOUN
. PUNCT
Products NOUN
covered VERB
in ADP
this DET
FAQ PROPN
: PUNCT
    SPACE
Using VERB
a DET
PC NOUN
's PART
keyboard NOUN
on ADP
your PRON
workstation NOUN
/ SYM
compatibility NOUN
issues NOUN
    SPACE
Apple PROPN
Computer PROPN
, PUNCT
Inc. PROPN
    SPACE
Key PROPN
Tronic PROPN
FlexPro PROPN
    SPACE
Dragon PROPN
Systems PROPN
    SPACE
The DET
Bat PROPN
    SPACE
DataHand PROPN
    SPACE
Comfort PROPN
Keyboard PROPN
System PROPN
    SPACE
Kinesis PROPN
Ergonomic PROPN
Keyboard PROPN
    SPACE
Maltron PROPN
    SPACE
The DET
Tony PROPN
! PUNCT
Ergonomic PROPN
KeySystem PROPN
    SPACE
The DET
Vertical ADJ
    SPACE
The DET
MIKey PROPN
    SPACE
The DET
Wave PROPN
    SPACE
The DET
Minimal PROPN
Motion PROPN
Computer PROPN
Access PROPN
System PROPN
    SPACE
Twiddler NOUN
    SPACE
Half PROPN
- PUNCT
QWERTY PROPN
    SPACE
Microwriter PROPN
    SPACE
Braille PROPN
' CCONJ
n CCONJ
Speak PROPN
    SPACE
Octima PROPN
    SPACE
AccuKeyGIF PUNCT
pictures NOUN
of ADP
many ADJ
of ADP
these DET
products NOUN
are AUX
available ADJ
via ADP
anonymous PROPN
ftpfrom PROPN
soda.berkeley.edu:pub/typing-injury PROPN
. PROPN
  SPACE
( PUNCT
128.32.149.19 NUM
) PUNCT
  SPACE
I PRON
highlyrecommend VERB
getting VERB
the DET
pictures NOUN
. PUNCT
  SPACE
They PRON
tell VERB
much ADV
more ADJ
than SCONJ
I PRON
can AUX
fitinto ADP
this DET
file NOUN
. PUNCT
If SCONJ
you PRON
ca AUX
n't PART
ftp VERB
, PUNCT
send VERB
me PRON
mail NOUN
, PUNCT
and CCONJ
I PRON
'll AUX
uuencode VERB
and CCONJ
mail VERB
them PRON
to ADP
you(they're PRON
pretty ADV
big ADJ
... PUNCT
)==============Using VERB
a DET
PC NOUN
's PART
keyboard NOUN
on ADP
your PRON
workstation NOUN
/ SYM
compatibility NOUN
issues NOUN
    SPACE
Mini PROPN
outline NOUN
: PUNCT
        SPACE
1 NUM
. PUNCT
Spoofing VERB
a DET
keyboard NOUN
over ADP
the DET
serial ADJ
port NOUN
        SPACE
2 NUM
. PUNCT
X NOUN
terminals NOUN
        SPACE
3 NUM
. PUNCT
NeXT ADV
        SPACE
4 NUM
. PUNCT
Silicon PROPN
Graphics PROPN
        SPACE
5 NUM
. PUNCT
IBM PROPN
RS/6000 PROPN
	 SPACE
6 NUM
. PUNCT
Other ADJ
stuff NOUN
    SPACE
1 NUM
. PUNCT
Spoofing VERB
a DET
keyboard NOUN
over ADP
the DET
serial ADJ
port NOUN
	 SPACE
If SCONJ
you PRON
've AUX
got VERB
a DET
proprietary ADJ
computer NOUN
which PRON
uses VERB
its PRON
own ADJ
keyboard NOUN
	 SPACE
( PUNCT
Sun PROPN
, PUNCT
HP PROPN
, PUNCT
DEC PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
then ADV
you PRON
're AUX
going VERB
to PART
have AUX
a DET
hard ADJ
time NOUN
finding VERB
	 SPACE
a DET
vendor NOUN
to PART
sell VERB
you PRON
a DET
compatible ADJ
keyboard NOUN
. PUNCT
  SPACE
If SCONJ
your PRON
workstation NOUN
	 SPACE
runs VERB
the DET
X NOUN
window NOUN
system NOUN
, PUNCT
you PRON
're AUX
in ADP
luck NOUN
. PUNCT
  SPACE
You PRON
can AUX
buy VERB
a DET
cheap ADJ
used VERB
	 SPACE
PC NOUN
, PUNCT
hook VERB
your PRON
expensive ADJ
keyboard NOUN
up ADP
to ADP
it PRON
, PUNCT
and CCONJ
run VERB
a DET
serial ADJ
cable NOUN
	 SPACE
to ADP
your PRON
workstation NOUN
. PUNCT
  SPACE
Then ADV
, PUNCT
run VERB
a DET
program NOUN
on ADP
the DET
workstation NOUN
to PART
read VERB
	 SPACE
the DET
serial ADJ
port NOUN
and CCONJ
generate VERB
fake ADJ
X NOUN
keyboard NOUN
events NOUN
. PUNCT
	 SPACE
The DET
two NUM
main ADJ
programs NOUN
I PRON
've AUX
found VERB
to PART
do AUX
this DET
are AUX
KT PROPN
and CCONJ
A2X. PROPN
	 SPACE
a2x PROPN
is AUX
a DET
sophisticated ADJ
program NOUN
, PUNCT
capable ADJ
of ADP
controlling VERB
the DET
mouse NOUN
, PUNCT
and CCONJ
	 SPACE
even ADV
moving VERB
among ADP
widgets NOUN
on ADP
the DET
screen NOUN
. PUNCT
  SPACE
It PRON
requires VERB
a DET
server NOUN
	 SPACE
extension NOUN
( PUNCT
XTEST PROPN
, PUNCT
DEC PROPN
- PUNCT
XTRAP PROPN
, PUNCT
or CCONJ
XTestExtension1 PROPN
) PUNCT
. PUNCT
  SPACE
To PART
find VERB
out ADP
if SCONJ
your PRON
	 SPACE
server NOUN
can AUX
do AUX
this DET
, PUNCT
run VERB
' PUNCT
xdpyinfo PROPN
' PUNCT
and CCONJ
see VERB
if SCONJ
any DET
of ADP
these DET
strings NOUN
	 SPACE
appear VERB
in ADP
the DET
extensions NOUN
list NOUN
. PUNCT
  SPACE
If SCONJ
your PRON
server NOUN
does AUX
n't PART
have AUX
this DET
, PUNCT
	 SPACE
you PRON
may AUX
want VERB
to PART
investigate VERB
compiling VERB
X11R5 NOUN
, PUNCT
patchlevel NOUN
18 NUM
or CCONJ
later ADV
, PUNCT
	 SPACE
or CCONJ
bugging VERB
your PRON
vendor NOUN
. PUNCT
	 SPACE
kt NOUN
is AUX
a DET
simpler ADJ
program NOUN
, PUNCT
which PRON
should AUX
work VERB
with ADP
unextended ADJ
X NOUN
servers NOUN
. PUNCT
	 SPACE
Another DET
program NOUN
called VERB
xsendevent PROPN
also ADV
exists VERB
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
seen VERB
it PRON
. PUNCT
	 SPACE
Both DET
a2x PROPN
and CCONJ
kt NOUN
are AUX
available ADJ
via ADP
anonymous ADJ
ftp NOUN
from ADP
soda.berkeley.edu PROPN
. PUNCT
    SPACE
2 NUM
. PUNCT
X NOUN
terminals NOUN
	 SPACE
Also ADV
, PUNCT
a DET
number NOUN
of ADP
X NOUN
terminals NOUN
( PUNCT
NCD PROPN
, PUNCT
Tektronics PROPN
, PUNCT
to PART
name VERB
a DET
few ADJ
) PUNCT
use NOUN
	 SPACE
PC NOUN
- PUNCT
compatible ADJ
keyboards NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
an DET
X NOUN
terminal NOUN
, PUNCT
you PRON
may AUX
be AUX
all DET
	 SPACE
set VERB
. PUNCT
  SPACE
Try VERB
it PRON
out ADP
with ADP
a DET
normal ADJ
PC NOUN
keyboard NOUN
before ADP
you PRON
go VERB
through ADP
the DET
	 SPACE
trouble NOUN
of ADP
buying VERB
an DET
alternative ADJ
keyboard NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
some DET
X NOUN
terminals NOUN
add VERB
	 SPACE
extra ADJ
buttons NOUN
-- PUNCT
you PRON
may AUX
need VERB
to PART
keep VERB
your PRON
original ADJ
keyboard NOUN
around ADV
	 SPACE
for ADP
the DET
once ADV
- PUNCT
in ADP
- PUNCT
a DET
- PUNCT
blue ADJ
- PUNCT
moon NOUN
that PRON
you PRON
have AUX
to PART
hit VERB
the DET
Setup PROPN
key NOUN
. PUNCT
    SPACE
3 NUM
. PUNCT
NeXT PROPN
	 SPACE
NeXT PROPN
had AUX
announced VERB
that SCONJ
new ADJ
NeXT ADJ
machines NOUN
will AUX
use VERB
the DET
Apple PROPN
Desktop PROPN
	 SPACE
Bus NOUN
, PUNCT
meaning VERB
any DET
Mac PROPN
keyboard NOUN
will AUX
work VERB
. PUNCT
  SPACE
Then ADV
, PUNCT
they PRON
announced VERB
they PRON
	 SPACE
were AUX
cancelling VERB
their PRON
hardware NOUN
production NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
any DET
kind NOUN
of ADP
	 SPACE
upgrade VERB
for ADP
an DET
older ADJ
NeXT ADV
, PUNCT
do AUX
it PRON
now ADV
! PUNCT
    SPACE
4 NUM
. PUNCT
Silicon PROPN
Graphics PROPN
	 SPACE
Silicon PROPN
Graphics PROPN
has AUX
announced VERB
that SCONJ
their PRON
newer ADJ
machines NOUN
( PUNCT
Indigo^2 PROPN
and CCONJ
	 SPACE
beyond ADP
) PUNCT
will AUX
use VERB
standard ADJ
PC NOUN
- PUNCT
compatible ADJ
keyboards NOUN
and CCONJ
mice NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
	 SPACE
believe VERB
this DET
also ADV
applies VERB
to ADP
the DET
Power PROPN
Series PROPN
machines NOUN
. PUNCT
  SPACE
It PRON
's AUX
not PART
	 SPACE
possible ADJ
to PART
upgrade VERB
an DET
older ADJ
SGI NOUN
to PART
use VERB
PC NOUN
keyboards NOUN
, PUNCT
except SCONJ
by ADP
	 SPACE
upgrading VERB
the DET
entire ADJ
machine NOUN
. PUNCT
  SPACE
Contact VERB
your PRON
SGI PROPN
sales NOUN
rep PROPN
for ADP
more ADV
	 SPACE
details NOUN
. PUNCT
    SPACE
5 NUM
. PUNCT
IBM PROPN
RS/6000 PROPN
	 SPACE
IBM PROPN
RS/6000 PROPN
keyboards NOUN
are AUX
actually ADV
similar ADJ
to ADP
normal ADJ
PC NOUN
keyboards NOUN
. PUNCT
  SPACE
|| PROPN
	 SPACE
Unfortunately ADV
, PUNCT
you PRON
ca AUX
n't PART
just ADV
plug VERB
one NUM
in ADP
. PUNCT
  SPACE
You PRON
need VERB
two NUM
things NOUN
: PUNCT
a DET
  SPACE
|| PROPN
	 SPACE
cable NOUN
converter NOUN
to PART
go VERB
from ADP
the DET
large ADJ
PC NOUN
keyboard NOUN
connector NOUN
to ADP
the DET
   SPACE
|| PROPN
	 SPACE
smaller ADJ
PS/2 PROPN
style NOUN
DIN-6 PROPN
, PUNCT
and CCONJ
a DET
new ADJ
device NOUN
driver NOUN
for ADP
AIX PROPN
. PUNCT
  SPACE
Believe PROPN
|| PROPN
	 SPACE
it PRON
or CCONJ
not PART
, PUNCT
IBM PROPN
wrote VERB
this DET
device NOUN
driver NOUN
recently ADV
, PUNCT
I PRON
used VERB
it PRON
, PUNCT
and CCONJ
it PRON
|| PROPN
	 SPACE
works NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
they PRON
do AUX
n't PART
want VERB
me PRON
to PART
redistribute VERB
it PRON
. PUNCT
  SPACE
I PRON
've AUX
been AUX
  SPACE
|| PROPN
	 SPACE
told VERB
Judy PROPN
Hume PROPN
( PUNCT
512 NUM
) PUNCT
823 NUM
- SYM
6337 NUM
is AUX
a DET
potential ADJ
contact NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
learn VERB
|| PROPN
	 SPACE
anything PRON
new ADJ
, PUNCT
please INTJ
send VERB
me PRON
e NOUN
- NOUN
mail NOUN
. PUNCT
				     SPACE
|| PROPN
        SPACE
6 NUM
. PUNCT
Other ADJ
stuff NOUN
	 SPACE
Some DET
vendors NOUN
here ADV
( PUNCT
notably ADV
: PUNCT
Health PROPN
Care PROPN
Keyboard PROPN
Co. PROPN
and CCONJ
AccuCorp PROPN
) PUNCT
	 SPACE
support VERB
some DET
odd ADJ
keyboard NOUN
types NOUN
, PUNCT
and CCONJ
may AUX
be AUX
responsive ADJ
to ADP
your PRON
	 SPACE
queries NOUN
regarding VERB
supporting VERB
your PRON
own ADJ
weird ADJ
computer NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
	 SPACE
get AUX
sufficient ADJ
documention NOUN
about ADP
how ADV
your PRON
keyboard NOUN
works VERB
( PUNCT
either CCONJ
	 SPACE
from ADP
the DET
vendor NOUN
, PUNCT
or CCONJ
with ADP
a DET
storage NOUN
oscilloscope NOUN
) PUNCT
, PUNCT
you PRON
may AUX
be AUX
in ADP
	 SPACE
luck NOUN
. PUNCT
  SPACE
Contact VERB
the DET
companies NOUN
for ADP
more ADJ
details NOUN
. PUNCT
Apple PROPN
Adjustable PROPN
Keyboard PROPN
    SPACE
Apple PROPN
Computer PROPN
, PUNCT
Inc. PROPN
    SPACE
Sales NOUN
offices NOUN
all ADV
over ADP
the DET
place NOUN
. PUNCT
    SPACE
Availability NOUN
: PUNCT
February PROPN
, PUNCT
1993 NUM
    SPACE
Price NOUN
: PUNCT
$ SYM
219 NUM
    SPACE
Supports NOUN
: PUNCT
Mac PROPN
only ADV
    SPACE
Apple PROPN
has AUX
recently ADV
announced VERB
their PRON
new ADJ
split ADJ
- PUNCT
design NOUN
keyboard NOUN
. PUNCT
  SPACE
The DET
    SPACE
keyboard NOUN
has AUX
one NUM
section NOUN
for ADP
each DET
hand NOUN
, PUNCT
and CCONJ
the DET
sections NOUN
rotate VERB
    SPACE
backward ADV
on ADP
a DET
hinge NOUN
. PUNCT
  SPACE
The DET
sections NOUN
do AUX
not PART
tilt VERB
upward ADV
. PUNCT
  SPACE
The DET
keys NOUN
are AUX
    SPACE
arranged VERB
in ADP
a DET
normal ADJ
QWERTY PROPN
fashion NOUN
. PUNCT
    SPACE
The DET
main ADJ
foldable ADJ
keyboard NOUN
resembles VERB
a DET
normal ADJ
Apple PROPN
Keyboard PROPN
. PUNCT
    SPACE
A DET
separate ADJ
keypad NOUN
contains VERB
all DET
the DET
extended ADJ
key ADJ
functions NOUN
. PUNCT
    SPACE
The DET
keyboard NOUN
also ADV
comes VERB
with ADP
matching VERB
wrist NOUN
rests NOUN
, PUNCT
which PRON
are AUX
not PART
    SPACE
directly ADV
attachable ADJ
to ADP
the DET
keyboard NOUN
. PUNCT
    SPACE
As ADV
soon ADV
as SCONJ
soda NOUN
comes VERB
back ADV
up ADV
, PUNCT
I PRON
'll AUX
have AUX
a DET
detailed ADJ
blurb NOUN
from ADP
    SPACE
TidBITS NUM
available ADJ
there ADV
. PUNCT
FlexPro PROPN
Keyboard PROPN
    SPACE
Key PROPN
Tronic PROPN
    SPACE
Phone NOUN
: PUNCT
800 NUM
- PUNCT
262 NUM
- PUNCT
6006 NUM
    SPACE
Possible ADJ
contact NOUN
: PUNCT
Denise PROPN
Razzeto PROPN
, PUNCT
509 NUM
- PUNCT
927 NUM
- PUNCT
5299 NUM
    SPACE
Sold VERB
by ADP
many ADJ
clone NOUN
vendors NOUN
and CCONJ
PC NOUN
shops NOUN
    SPACE
Availability NOUN
: PUNCT
Spring NOUN
, PUNCT
1993 NUM
( PUNCT
? PUNCT
) PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
489 NUM
( PUNCT
? PUNCT
) PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
only ADV
( PUNCT
highly ADV
likely ADJ
) PUNCT
    SPACE
Keytronic PROPN
apparently ADV
showed VERB
a DET
prototype NOUN
keyboard NOUN
at ADP
Comdex PROPN
. PUNCT
  SPACE
It PRON
's AUX
    SPACE
another DET
split ADJ
- PUNCT
design NOUN
. PUNCT
  SPACE
One NUM
thumb ADJ
- PUNCT
wheel NOUN
controls NOUN
the DET
tilt NOUN
of ADP
both DET
    SPACE
the DET
left ADJ
and CCONJ
right ADJ
- PUNCT
hand NOUN
sides NOUN
of ADP
the DET
main ADJ
alphanumeric NOUN
section NOUN
. PUNCT
    SPACE
The DET
arrow NOUN
keys NOUN
and CCONJ
keypad PROPN
resemble VERB
a DET
normal ADJ
101-key NUM
PC NOUN
keyboard NOUN
. PUNCT
    SPACE
Keytronic PROPN
makes VERB
standard ADJ
PC NOUN
keyboards NOUN
, PUNCT
also ADV
, PUNCT
so ADV
this DET
product NOUN
will AUX
    SPACE
probably ADV
be AUX
sold VERB
through ADP
their PRON
standard ADJ
distribution NOUN
channels NOUN
. PUNCT
DragonDictate-30 PUNCT
K NOUN
( PUNCT
and CCONJ
numerous ADJ
other ADJ
Dragon PROPN
products NOUN
) PUNCT
    SPACE
Dragon PROPN
Systems PROPN
, PUNCT
Inc. PROPN
    SPACE
320 NUM
Nevada PROPN
Street PROPN
    SPACE
Newton PROPN
, PUNCT
MA PROPN
  SPACE
02160 NUM
    SPACE
Phone NOUN
: PUNCT
800-TALK NUM
- PUNCT
TYP PROPN
or CCONJ
617 NUM
- PUNCT
965 NUM
- PUNCT
5200 NUM
    SPACE
Fax NOUN
: PUNCT
617 NUM
- PUNCT
527 NUM
- PUNCT
0372 NUM
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Price NOUN
: PUNCT
DragonDictate-30 X
K PROPN
-- PUNCT
$ SYM
4995 NUM
( PUNCT
end NOUN
user NOUN
system NOUN
) PUNCT
	    SPACE
DragonWriter PROPN
1000 NUM
-- PUNCT
$ SYM
1595 NUM
/ SYM
$ SYM
2495 NUM
( PUNCT
end NOUN
user NOUN
/ SYM
developer NOUN
system NOUN
) PUNCT
	    SPACE
various ADJ
other ADJ
prices NOUN
for ADP
service NOUN
contracts NOUN
, PUNCT
site NOUN
licenses NOUN
, PUNCT
etc X
. PUNCT
        SPACE
Compatibility PROPN
: PUNCT
386 NUM
( PUNCT
or CCONJ
higher ADJ
) PUNCT
PC NOUN
only ADV
		    SPACE
( PUNCT
3rd ADJ
party NOUN
support NOUN
for ADP
Mac PROPN
) PUNCT
	 SPACE
Free ADJ
software NOUN
support NOUN
for ADP
X NOUN
windows NOUN
is AUX
also ADV
available ADJ
-- PUNCT
your PRON
	 SPACE
PC NOUN
with ADP
Dragon PROPN
hardware NOUN
talks NOUN
to ADP
your PRON
workstation NOUN
over ADP
a DET
	 SPACE
serial ADJ
cable NOUN
or CCONJ
network NOUN
. PUNCT
  SPACE
The DET
program NOUN
is AUX
called VERB
a2x PROPN
, PUNCT
and CCONJ
is AUX
	 SPACE
available ADJ
via ADP
anonymous ADJ
ftp NOUN
: PUNCT
	 SPACE
soda.berkeley.edu:pub/typing-injury/a2x.tar.Z PROPN
	 SPACE
export.lcs.mit.edu:contrib/a2x.tar.Z NOUN
( PUNCT
most ADV
current ADJ
) PUNCT
	 SPACE
If SCONJ
you PRON
want VERB
to PART
use VERB
your PRON
Dragon PROPN
product NOUN
with ADP
X NOUN
windows NOUN
, PUNCT
you PRON
may AUX
want VERB
	 SPACE
to PART
ask VERB
for ADP
Peter PROPN
Cohen PROPN
, PUNCT
an DET
salesman NOUN
at ADP
Dragon PROPN
who PRON
knows VERB
more ADJ
about ADP
	 SPACE
this DET
sort NOUN
of ADP
thing NOUN
. PUNCT
    SPACE
Dragon PROPN
Systems PROPN
sells VERB
a DET
number NOUN
of ADP
voice NOUN
recognition NOUN
products NOUN
. PUNCT
    SPACE
Most ADJ
( PUNCT
if SCONJ
not PART
all DET
) PUNCT
of ADP
them PRON
seem VERB
to PART
run VERB
on ADP
PC NOUN
's PART
and CCONJ
compatibles VERB
    SPACE
( PUNCT
including VERB
PS/2 PROPN
's PART
and CCONJ
other ADJ
MicroChannel PROPN
boxes NOUN
) PUNCT
. PUNCT
  SPACE
They PRON
sell VERB
you PRON
    SPACE
a DET
hardware NOUN
board NOUN
and CCONJ
software NOUN
which PRON
sits VERB
in ADP
front NOUN
of ADP
a DET
number NOUN
    SPACE
of ADP
popular ADJ
word NOUN
processors NOUN
and CCONJ
spreadsheets NOUN
. PUNCT
    SPACE
Each DET
user NOUN
` PUNCT
trains NOUN
' PART
the DET
system NOUN
to ADP
their PRON
voice NOUN
, PUNCT
and CCONJ
there PRON
are AUX
provisions NOUN
    SPACE
to PART
correct VERB
the DET
system NOUN
when ADV
it PRON
makes VERB
mistakes NOUN
, PUNCT
on ADP
the DET
fly NOUN
. PUNCT
  SPACE
Multiple ADJ
    SPACE
people NOUN
can AUX
use VERB
it PRON
, PUNCT
but CCONJ
you PRON
have AUX
to PART
load VERB
a DET
different ADJ
personality NOUN
file NOUN
    SPACE
for ADP
each DET
person NOUN
. PUNCT
  SPACE
You PRON
still ADV
get VERB
the DET
use NOUN
of ADP
your PRON
normal ADJ
keyboard NOUN
, PUNCT
too ADV
. PUNCT
    SPACE
On ADP
the DET
DragonDictate-30 PUNCT
K NOUN
you PRON
need VERB
to PART
pause VERB
1/10th ADJ
sec PROPN
between ADP
    SPACE
words NOUN
. PUNCT
  SPACE
Dragon PROPN
claims VERB
typical ADJ
input NOUN
speeds NOUN
of ADP
30 NUM
- SYM
40 NUM
words NOUN
per ADP
minute NOUN
. PUNCT
    SPACE
I PRON
do AUX
n't PART
have AUX
specs NOUN
on ADP
the DET
DragonWriter PROPN
1000 NUM
. PUNCT
    SPACE
The DET
DragonDictate-30 PUNCT
K NOUN
can AUX
recognize VERB
30,000 NUM
words NOUN
at ADP
a DET
time NOUN
. PUNCT
    SPACE
The DET
DragonWriter PROPN
1000 NUM
can AUX
recognize VERB
( PUNCT
you PRON
guessed VERB
it PRON
) PUNCT
1000 NUM
words NOUN
at ADP
a DET
time NOUN
. PUNCT
    SPACE
Dragon PROPN
's PART
technology NOUN
is AUX
also ADV
part NOUN
of ADP
the DET
following VERB
products NOUN
    SPACE
( PUNCT
about ADP
which PRON
I PRON
have AUX
no DET
other ADJ
info NOUN
) PUNCT
: PUNCT
	 SPACE
Microsoft PROPN
Windows PROPN
Sound PROPN
System PROPN
( PUNCT
Voice PROPN
Pilot PROPN
) PUNCT
	 SPACE
IBM PROPN
VoiceType PROPN
	 SPACE
Voice PROPN
Navigator PROPN
II PROPN
( PUNCT
by ADP
Articulate PROPN
Systems PROPN
-- PUNCT
for ADP
Macintosh PROPN
) PUNCT
	 SPACE
EMStation NOUN
( PUNCT
by ADP
Lanier PROPN
Voice PROPN
Products PROPN
-- PUNCT
" PUNCT
emergency NOUN
medical ADJ
workstation")The NOUN
Bat PROPN
    SPACE
old ADJ
phone NOUN
number NOUN
: PUNCT
504 NUM
- PUNCT
336 NUM
- PUNCT
0033 NUM
    SPACE
current ADJ
phone NOUN
number NOUN
: PUNCT
504 NUM
- PUNCT
766 NUM
- PUNCT
8082 NUM
    SPACE
Infogrip PROPN
, PUNCT
Inc. PROPN
    SPACE
812 NUM
North PROPN
Blvd PROPN
. PUNCT
    SPACE
Baton PROPN
Rouge PROPN
, PUNCT
Louisiana PROPN
70802 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Ward PROPN
Bond PROPN
( PUNCT
main ADJ
contact NOUN
) PUNCT
    SPACE
David PROPN
Vicknair PROPN
( PUNCT
did AUX
the DET
Unix PROPN
software NOUN
) PUNCT
  SPACE
504 NUM
- PUNCT
766 NUM
- PUNCT
1029 NUM
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
Mac PROPN
, PUNCT
IBM PROPN
PC NOUN
( PUNCT
serial ADJ
port NOUN
-- PUNCT
native ADJ
keyboard PROPN
port PROPN
version PROPN
    SPACE
coming VERB
very ADV
soon ADV
... PUNCT
) PUNCT
. PUNCT
  SPACE
No DET
other ADJ
workstations NOUN
supported VERB
, PUNCT
but CCONJ
serial ADJ
    SPACE
support NOUN
for ADP
Unix PROPN
with ADP
X NOUN
Windows PROPN
has AUX
been AUX
written VERB
. PUNCT
  SPACE
PC PROPN
and CCONJ
Mac PROPN
are AUX
    SPACE
getting VERB
all DET
the DET
real ADJ
attention NOUN
from ADP
the DET
company NOUN
. PUNCT
    SPACE
A DET
chording NOUN
system NOUN
. PUNCT
  SPACE
One NUM
hand NOUN
is AUX
sufficient ADJ
to PART
type VERB
everything PRON
. PUNCT
    SPACE
The DET
second ADJ
hand NOUN
is AUX
for ADP
redundancy NOUN
and CCONJ
increased VERB
speed NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
	 SPACE
$ SYM
495 NUM
( PUNCT
dual ADJ
set NOUN
-- PUNCT
each DET
one NOUN
is AUX
a DET
complete ADJ
keyboard NOUN
by ADP
itself PRON
) PUNCT
	 SPACE
$ SYM
295 NUM
( PUNCT
single ADJ
) PUNCT
	 SPACE
( PUNCT
cheaper ADJ
prices NOUN
were AUX
offered VERB
at ADP
MacWorld PROPN
Expo PROPN
as SCONJ
a DET
show NOUN
- PUNCT
special.)DataHand NUM
   SPACE
602 NUM
- PUNCT
860 NUM
- PUNCT
8584 NUM
    SPACE
Industrial PROPN
Innovations PROPN
, PUNCT
Inc. PROPN
    SPACE
10789 NUM
North PROPN
90th ADJ
Street PROPN
    SPACE
Scottsdale PROPN
, PUNCT
Arizona PROPN
85260 NUM
- SYM
6727 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Mark PROPN
Roggenbuck PROPN
( PUNCT
contact NOUN
) PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
and CCONJ
Mac PROPN
    SPACE
Shipping NOUN
: PUNCT
In ADP
beta NOUN
. PUNCT
  SPACE
" PUNCT
Big ADJ
backlog NOUN
" PUNCT
-- PUNCT
could AUX
take VERB
3 NUM
+ SYM
months NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
2000 NUM
/ SYM
unit NOUN
( PUNCT
1 NUM
unit NOUN
= SYM
= SYM
2 NUM
pods NOUN
) PUNCT
. PUNCT
( PUNCT
new ADJ
price NOUN
! PUNCT
) PUNCT
			     SPACE
|| NUM
    SPACE
Each DET
hand NOUN
has AUX
its PRON
own ADJ
" PUNCT
pod NOUN
" PUNCT
. PUNCT
  SPACE
Each DET
of ADP
the DET
four NUM
main ADJ
fingers NOUN
has AUX
five NUM
    SPACE
switches NOUN
each DET
: PUNCT
forward ADV
, PUNCT
back ADV
, PUNCT
left VERB
, PUNCT
right INTJ
, PUNCT
and CCONJ
down ADV
. PUNCT
  SPACE
The DET
thumbs NOUN
have AUX
    SPACE
a DET
number NOUN
of ADP
switches NOUN
. PUNCT
  SPACE
Despite SCONJ
appearances NOUN
, PUNCT
the DET
key ADJ
layout NOUN
resembles VERB
    SPACE
QWERTY PROPN
, PUNCT
and CCONJ
is AUX
reported VERB
to PART
be AUX
no DET
big ADJ
deal NOUN
to PART
adapt VERB
to ADP
. PUNCT
  SPACE
The DET
idea NOUN
is AUX
    SPACE
that SCONJ
your PRON
hands NOUN
never ADV
have AUX
to PART
move VERB
to PART
use VERB
the DET
keyboard NOUN
. PUNCT
  SPACE
The DET
whole ADJ
pod NOUN
    SPACE
tilts VERB
in ADP
its PRON
base NOUN
, PUNCT
to PART
act VERB
as SCONJ
a DET
mouse NOUN
. PUNCT
    SPACE
( PUNCT
see VERB
also ADV
: PUNCT
the DET
detailed ADJ
review NOUN
, PUNCT
written VERB
by ADP
Cliff PROPN
Lasser PROPN
< X
cal@THINK.COM PROPN
> X
     SPACE
available ADJ
via ADP
anonymous ADJ
ftp NOUN
from ADP
soda.berkeley.edu)Comfort PROPN
Keyboard PROPN
System PROPN
   SPACE
414 NUM
- PUNCT
253 NUM
- PUNCT
4131 NUM
    SPACE
FAX NOUN
: PUNCT
414 NUM
- PUNCT
253 NUM
- PUNCT
4177 NUM
    SPACE
Health PROPN
Care PROPN
Keyboard PROPN
Company PROPN
    SPACE
N82 PROPN
W15340 PROPN
Appleton PROPN
Ave PROPN
    SPACE
Menomonee PROPN
Falls PROPN
, PUNCT
Wisconsin PROPN
53051 NUM
U.S.A. PROPN
    SPACE
Jeffrey PROPN
Szmanda PROPN
( PUNCT
Vice PROPN
President PROPN
-- PUNCT
contact NOUN
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
( PUNCT
and CCONJ
Mac PROPN
? PUNCT
? PUNCT
? PUNCT
) PUNCT
						     SPACE
|| PROPN
        SPACE
Planned VERB
future ADJ
support NOUN
: PUNCT
	 SPACE
IBM PROPN
122-key NUM
layout NOUN
( PUNCT
3270-style NUM
, PUNCT
I PRON
believe VERB
) PUNCT
	 SPACE
Sun PROPN
Sparc PROPN
	 SPACE
Decision PROPN
Data PROPN
	 SPACE
Unisys PROPN
UTS-40 NUM
	 SPACE
Silicon PROPN
Graphics PROPN
	 SPACE
Others NOUN
to PART
be AUX
supported VERB
later ADV
. PUNCT
  SPACE
The DET
hardware NOUN
design NOUN
is AUX
relatively ADV
	 SPACE
easy ADJ
for ADP
the DET
company NOUN
to PART
re VERB
- VERB
configure NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
690 NUM
, PUNCT
including VERB
one NUM
system NOUN
" PUNCT
personality NOUN
module NOUN
" PUNCT
. PUNCT
		     SPACE
|| PROPN
    SPACE
The DET
idea NOUN
is AUX
that SCONJ
one NUM
keyboard NOUN
works VERB
with ADP
everything PRON
. PUNCT
  SPACE
You PRON
purchase VERB
    SPACE
" PUNCT
compatibility NOUN
modules NOUN
" PUNCT
, PUNCT
a DET
new ADJ
cord NOUN
, PUNCT
and CCONJ
possibly ADV
new ADJ
keycaps NOUN
, PUNCT
and CCONJ
    SPACE
then ADV
you PRON
can AUX
move VERB
your PRON
one NUM
keyboard NOUN
around ADV
among ADP
different ADJ
machines NOUN
. PUNCT
    SPACE
It PRON
's AUX
a DET
three NUM
- PUNCT
piece NOUN
folding VERB
keyboard NOUN
. PUNCT
  SPACE
The DET
layout NOUN
resembles VERB
the DET
    SPACE
standard ADJ
101-key NUM
keyboard NOUN
, PUNCT
except SCONJ
sliced VERB
into ADP
three NUM
sections NOUN
. PUNCT
  SPACE
Each DET
    SPACE
section NOUN
is AUX
on ADP
a DET
" PUNCT
custom NOUN
telescoping VERB
universal PROPN
mount PROPN
. PUNCT
" PUNCT
  SPACE
Each DET
section NOUN
    SPACE
independently ADV
adjusts VERB
to ADP
an DET
infinite ADJ
number NOUN
of ADP
positions NOUN
allowing VERB
each DET
    SPACE
individual NOUN
to PART
type VERB
in ADP
a DET
natural ADJ
posture NOUN
. PUNCT
  SPACE
You PRON
can AUX
rearrange VERB
the DET
three NUM
    SPACE
sections NOUN
, PUNCT
too ADV
( PUNCT
have AUX
the DET
keypad PROPN
in ADP
the DET
middle NOUN
if SCONJ
you PRON
want VERB
) PUNCT
. PUNCT
  SPACE
Each DET
    SPACE
section NOUN
is AUX
otherwise ADV
normal ADJ
- PUNCT
shaped ADJ
( PUNCT
i.e. X
: PUNCT
you PRON
put VERB
all DET
three NUM
sections NOUN
    SPACE
flat ADJ
, PUNCT
and CCONJ
you PRON
have AUX
what PRON
looks VERB
like SCONJ
a DET
normal ADJ
101-key NUM
keyboard).Kinesis NOUN
Ergonomic PROPN
Keyboard PROPN
   SPACE
206 NUM
- SYM
455 NUM
- PUNCT
9220 NUM
    SPACE
206 NUM
- SYM
455 NUM
- PUNCT
9233 NUM
( PUNCT
fax NOUN
) PUNCT
    SPACE
Kinesis PROPN
Corporation PROPN
    SPACE
15245 NUM
Pacific PROPN
Highway PROPN
South PROPN
, PUNCT
    SPACE
Seattle PROPN
, PUNCT
Washington PROPN
98188 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Shirley PROPN
Lunde PROPN
( PUNCT
VP PROPN
Marketing PROPN
-- PUNCT
contact NOUN
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
. PUNCT
  SPACE
Mac PROPN
and CCONJ
Sun PROPN
Sparc PROPN
in ADP
the DET
works NOUN
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
690 NUM
. PUNCT
  SPACE
Volume NOUN
discounts NOUN
available ADJ
. PUNCT
  SPACE
The DET
$ SYM
690 NUM
includes VERB
one NUM
foot NOUN
	 SPACE
pedal NOUN
, PUNCT
one NUM
set NOUN
of ADP
adhesive ADJ
wrist NOUN
pads NOUN
, PUNCT
and CCONJ
a DET
TypingTutor PROPN
program NOUN
. PUNCT
	 SPACE
An DET
additional ADJ
foot NOUN
pedal NOUN
and CCONJ
other ADJ
accessories NOUN
are AUX
extra ADJ
. PUNCT
    SPACE
The DET
layout NOUN
has AUX
a DET
large ADJ
blank ADJ
space NOUN
in ADP
the DET
middle NOUN
, PUNCT
even ADV
though SCONJ
the DET
    SPACE
keyboard NOUN
is AUX
about ADP
the DET
size NOUN
of ADP
a DET
normal ADJ
PC NOUN
keyboard NOUN
-- PUNCT
slightly ADV
    SPACE
smaller ADJ
. PUNCT
  SPACE
Each DET
hand NOUN
has AUX
its PRON
own ADJ
set NOUN
of ADP
keys NOUN
, PUNCT
laid VERB
out ADP
to PART
minimize VERB
    SPACE
finger NOUN
travel NOUN
. PUNCT
  SPACE
Thumb ADJ
buttons NOUN
handle VERB
many ADJ
major ADJ
functions NOUN
( PUNCT
enter VERB
, PUNCT
    SPACE
backspace NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
    SPACE
You PRON
can AUX
remap VERB
the DET
keyboard NOUN
in ADP
firmware ADJ
( PUNCT
very ADV
nice ADJ
when ADV
software NOUN
wo AUX
n't PART
    SPACE
allow VERB
the DET
reconfig NOUN
) PUNCT
. PUNCT
    SPACE
Foot PROPN
pedals NOUN
are AUX
also ADV
available ADJ
, PUNCT
and CCONJ
can AUX
be AUX
mapped VERB
to ADP
any DET
key NOUN
on ADP
the DET
    SPACE
keyboard NOUN
( PUNCT
shift NOUN
, PUNCT
control NOUN
, PUNCT
whatever).Maltron PROPN
		 SPACE
( PUNCT
+44 PROPN
) PUNCT
081 NUM
398 NUM
3265 NUM
( PUNCT
United PROPN
Kingdom PROPN
) PUNCT
    SPACE
P.C.D. PROPN
Maltron PROPN
Limited PROPN
    SPACE
15 NUM
Orchard PROPN
Lane PROPN
    SPACE
East PROPN
Molesey PROPN
    SPACE
Surrey PROPN
KT8 PROPN
OBN PROPN
    SPACE
England PROPN
    SPACE
Pamela PROPN
and CCONJ
Stephen PROPN
Hobday PROPN
( PUNCT
contacts NOUN
) PUNCT
    SPACE
U.S. PROPN
Distributor NOUN
: PUNCT
	 SPACE
Jim PROPN
Barrett PROPN
	 SPACE
Applied PROPN
Learning PROPN
Corp. PROPN
	 SPACE
1376 NUM
Glen PROPN
Hardie PROPN
Road PROPN
	 SPACE
Wayne PROPN
, PUNCT
PA PROPN
  SPACE
19087 NUM
	 SPACE
Phone NOUN
: PUNCT
215 NUM
- PUNCT
688 NUM
- SYM
6866 NUM
    SPACE
Supports NOUN
: PUNCT
PC NOUN
's PART
, PUNCT
Amstrad PROPN
1512/1640 NUM
, PUNCT
BBC PROPN
B PROPN
, PUNCT
BBC PROPN
Master PROPN
, PUNCT
	       SPACE
Mac PROPN
apparently ADV
now ADV
also ADV
available ADJ
    SPACE
Price NOUN
: PUNCT
375 NUM
pounds NOUN
	    SPACE
$ SYM
735 NUM
shipped VERB
in ADP
the DET
U.S.A. PROPN
( PUNCT
basically ADV
, PUNCT
converted VERB
price NOUN
+ CCONJ
shipping NOUN
) PUNCT
	    SPACE
The DET
cost NOUN
is AUX
less ADJ
for ADP
BBC PROPN
computers NOUN
, PUNCT
and CCONJ
they PRON
have AUX
a DET
number NOUN
of ADP
	    SPACE
accessories NOUN
, PUNCT
including VERB
carrying VERB
cases NOUN
, PUNCT
switch VERB
boxes NOUN
to PART
use VERB
both DET
	    SPACE
your PRON
normal ADJ
keyboard NOUN
and CCONJ
the DET
Maltron PROPN
, PUNCT
an DET
articulated ADJ
arm NOUN
that SCONJ
	    SPACE
clamps NOUN
on ADP
to ADP
your PRON
table NOUN
, PUNCT
and CCONJ
training NOUN
' PUNCT
courses NOUN
' PUNCT
to PART
help VERB
you PRON
learn VERB
	    SPACE
to PART
type VERB
on ADP
your PRON
Maltron PROPN
. PUNCT
	    SPACE
You PRON
can AUX
also ADV
rent VERB
a DET
keyboard NOUN
for ADP
10 NUM
pounds NOUN
/ SYM
week NOUN
+ CCONJ
taxes NOUN
. PUNCT
	    SPACE
U.S. PROPN
price NOUN
: PUNCT
$ SYM
120 NUM
/ SYM
month NOUN
, PUNCT
and CCONJ
then ADV
$ SYM
60 NUM
off ADP
purchase NOUN
if SCONJ
you PRON
want VERB
it PRON
. PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
( PUNCT
in ADP
your PRON
choice NOUN
of ADP
colors NOUN
: PUNCT
black ADJ
or CCONJ
grey NOUN
) PUNCT
        SPACE
Maltron PROPN
has AUX
four NUM
main ADJ
products NOUN
-- PUNCT
a DET
two NUM
- PUNCT
handed ADJ
keyboard NOUN
, PUNCT
two NUM
one NUM
- PUNCT
handed ADJ
    SPACE
keyboards NOUN
, PUNCT
and CCONJ
a DET
keyboard NOUN
designed VERB
for ADP
handicapped ADJ
people NOUN
to PART
control VERB
with ADP
    SPACE
a DET
mouth NOUN
- PUNCT
stick NOUN
. PUNCT
    SPACE
The DET
layout NOUN
allocates VERB
more ADJ
buttons NOUN
to ADP
the DET
thumbs NOUN
, PUNCT
and CCONJ
is AUX
curved VERB
to ADP
    SPACE
bring VERB
keys NOUN
closer ADV
to ADP
the DET
fingers NOUN
. PUNCT
  SPACE
A DET
separate ADJ
keypad NOUN
is AUX
in ADP
the DET
middle NOUN
. PUNCT
AccuKey PROPN
    SPACE
AccuCorp PROPN
, PUNCT
Inc. PROPN
    SPACE
P.O. PROPN
Box PROPN
66 NUM
    SPACE
Christiansburg PROPN
, PUNCT
VA PROPN
  SPACE
24073 NUM
, PUNCT
U.S.A. PROPN
     SPACE
703 NUM
- PUNCT
961 NUM
- PUNCT
3576 NUM
( PUNCT
Pete PROPN
Rosenquist PROPN
-- PUNCT
Sales NOUN
) PUNCT
    SPACE
703 NUM
- PUNCT
961 NUM
- PUNCT
2001 NUM
( PUNCT
Larry PROPN
Langley PROPN
-- PUNCT
President PROPN
) PUNCT
     SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
, PUNCT
Mac PROPN
, PUNCT
IBM PROPN
3270 NUM
, PUNCT
Sun PROPN
Sparc PROPN
, PUNCT
and CCONJ
TeleVideo PROPN
935 NUM
and CCONJ
955 NUM
. PUNCT
    SPACE
Cost NOUN
: PUNCT
$ SYM
495 NUM
+ CCONJ
shipping NOUN
. PUNCT
     SPACE
Does AUX
n't PART
use VERB
conventional ADJ
push NOUN
- PUNCT
keys NOUN
. PUNCT
  SPACE
Soft ADJ
rubber NOUN
keys NOUN
, PUNCT
which PRON
rock NOUN
    SPACE
forward ADV
and CCONJ
backward ADJ
( PUNCT
each DET
key NOUN
has AUX
three NUM
states NOUN
) PUNCT
, PUNCT
make VERB
chords NOUN
for ADP
    SPACE
typing NOUN
keys NOUN
. PUNCT
  SPACE
Learning VERB
time NOUN
is AUX
estimated VERB
to PART
be AUX
2 NUM
- SYM
3 NUM
hours NOUN
, PUNCT
for ADP
getting VERB
    SPACE
started VERB
, PUNCT
and CCONJ
maybe ADV
two NUM
weeks NOUN
to PART
get AUX
used ADJ
to ADP
it PRON
. PUNCT
    SPACE
Currently ADV
, PUNCT
the DET
thumbs NOUN
do AUX
n't PART
do AUX
anything PRON
, PUNCT
although SCONJ
a DET
thumb NOUN
- PUNCT
trackball NOUN
    SPACE
is AUX
in ADP
the DET
works NOUN
. PUNCT
     SPACE
The DET
company NOUN
claims VERB
it PRON
takes VERB
about ADV
a DET
week NOUN
of ADP
work NOUN
to PART
support VERB
a DET
    SPACE
new ADJ
computer NOUN
. PUNCT
  SPACE
They PRON
will AUX
be AUX
happy ADJ
to PART
adapt VERB
their PRON
keyboard NOUN
to PART
    SPACE
your PRON
computer NOUN
, PUNCT
if SCONJ
possible ADJ
. PUNCT
Twiddler NOUN
	 SPACE
516 NUM
- PUNCT
474 NUM
- PUNCT
4405 NUM
, PUNCT
or CCONJ
800 NUM
- PUNCT
638 NUM
- PUNCT
2352 NUM
    SPACE
Handykey PROPN
    SPACE
141 NUM
Mt. PROPN
Sinai PROPN
Ave PROPN
. PUNCT
    SPACE
Mt. PROPN
Sinai PROPN
, PUNCT
NY PROPN
11766 NUM
    SPACE
Chris PROPN
George PROPN
( PUNCT
President PROPN
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
now ADV
. PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
199 NUM
. PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
only ADV
. PUNCT
  SPACE
Mac PROPN
and CCONJ
X PROPN
Windows NOUN
in ADP
the DET
works NOUN
. PUNCT
    SPACE
The DET
Twiddler PROPN
is AUX
both DET
a DET
keyboard NOUN
and CCONJ
a DET
mouse NOUN
, PUNCT
and CCONJ
it PRON
fits VERB
in ADP
one NUM
hand NOUN
. PUNCT
    SPACE
You PRON
type VERB
via ADP
finger NOUN
chords NOUN
. PUNCT
  SPACE
Shift PROPN
, PUNCT
control NOUN
, PUNCT
etc X
. PUNCT
are AUX
thumb ADJ
buttons NOUN
. PUNCT
    SPACE
When ADV
in ADP
" PUNCT
mouse NOUN
" PUNCT
mode NOUN
, PUNCT
tilting VERB
the DET
Twiddler PROPN
moves VERB
the DET
mouse NOUN
, PUNCT
and CCONJ
mouse NOUN
    SPACE
buttons NOUN
are AUX
on ADP
your PRON
fingers NOUN
. PUNCT
    SPACE
The DET
cabling NOUN
leaves VERB
your PRON
normal ADJ
keyboard NOUN
available ADJ
, PUNCT
also ADV
. PUNCT
    SPACE
Most ADJ
applications NOUN
work VERB
, PUNCT
and CCONJ
Windows PROPN
works VERB
fine ADV
. PUNCT
  SPACE
DESQview PROPN
has AUX
trouble NOUN
. PUNCT
    SPACE
GEOWorks NOUN
also ADV
has AUX
trouble NOUN
-- PUNCT
mouse NOUN
works NOUN
, PUNCT
keyboard NOUN
doesn't PROPN
. PUNCT
Braille PROPN
' PART
n CCONJ
Speak PROPN
     SPACE
301 NUM
- PUNCT
879 NUM
- PUNCT
4944 NUM
    SPACE
Blazie PROPN
Engineering PROPN
    SPACE
3660 NUM
Mill PROPN
Green PROPN
Rd PROPN
. PUNCT
    SPACE
Street PROPN
, PUNCT
Md PROPN
21154 NUM
, PUNCT
U.S.A. PROPN
    SPACE
( PUNCT
information NOUN
provided VERB
by ADP
Doug PROPN
Martin PROPN
< X
martin@nosc.mil NOUN
> X
) PUNCT
    SPACE
The DET
Braille PROPN
N PROPN
Speak PROPN
uses VERB
any DET
of ADP
several ADJ
Braille PROPN
codes NOUN
for ADP
entering VERB
    SPACE
information NOUN
: PUNCT
Grade PROPN
I PROPN
, PUNCT
Grade PROPN
II PROPN
, PUNCT
or CCONJ
computer NOUN
Braille PROPN
. PUNCT
  SPACE
Basically ADV
, PUNCT
    SPACE
letters NOUN
a PROPN
- PUNCT
j PROPN
are AUX
combinations NOUN
of ADP
dots NOUN
1 NUM
, PUNCT
2 NUM
, PUNCT
4 NUM
, PUNCT
and CCONJ
5 NUM
. PUNCT
  SPACE
Letters PROPN
k PROPN
- PUNCT
t PROPN
are AUX
    SPACE
the DET
same ADJ
combinations NOUN
as SCONJ
a X
- PUNCT
j PROPN
with ADP
dot NOUN
3 NUM
added VERB
. PUNCT
Letters NOUN
u PROPN
, PUNCT
v NOUN
, PUNCT
x PROPN
, PUNCT
y PROPN
, PUNCT
and CCONJ
    SPACE
z NOUN
are AUX
like SCONJ
a DET
- PUNCT
e NOUN
with ADP
dots NOUN
3 NUM
and CCONJ
6 NUM
added VERB
. PUNCT
  SPACE
( PUNCT
w PROPN
is AUX
unique ADJ
because SCONJ
Louis PROPN
    SPACE
Braille PROPN
did AUX
n't PART
have AUX
a DET
w NOUN
in ADP
the DET
French ADJ
alphabet.)The PROPN
Tony PROPN
! PUNCT
Ergonomic PROPN
KeySystem PROPN
        SPACE
415 NUM
- PUNCT
969 NUM
- PUNCT
8669 NUM
    SPACE
Tony PROPN
Hodges PROPN
    SPACE
The DET
Tony PROPN
! PUNCT
Corporation NOUN
    SPACE
2332 NUM
Thompson PROPN
Court PROPN
    SPACE
Mountain PROPN
View PROPN
, PUNCT
CA PROPN
  SPACE
94043 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Supports VERB
: PUNCT
Mac PROPN
, PUNCT
PC NOUN
, PUNCT
IBM PROPN
3270 NUM
, PUNCT
Sun PROPN
, PUNCT
and CCONJ
DEC PROPN
. PUNCT
        SPACE
Shipping NOUN
: PUNCT
? PUNCT
? PUNCT
? PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
625 NUM
( PUNCT
you PRON
commit VERB
now ADV
, PUNCT
and CCONJ
then ADV
you PRON
're AUX
in ADP
line NOUN
to PART
buy VERB
the DET
    SPACE
keyboard NOUN
. PUNCT
  SPACE
When ADV
it PRON
ships VERB
, PUNCT
if SCONJ
it PRON
's AUX
cheaper ADJ
, PUNCT
you PRON
pay VERB
the DET
cheaper ADJ
price NOUN
. PUNCT
    SPACE
If SCONJ
it PRON
's AUX
more ADV
expensive ADJ
, PUNCT
you PRON
still ADV
pay VERB
$ SYM
625 NUM
) PUNCT
    SPACE
The DET
Tony PROPN
! PUNCT
should AUX
allow VERB
separate ADJ
positioning NOUN
of ADP
every DET
key NOUN
, PUNCT
to PART
allow VERB
    SPACE
the DET
keyboard NOUN
to PART
be AUX
personally ADV
customized VERB
. PUNCT
  SPACE
A DET
thumb NOUN
- PUNCT
operated VERB
mouse NOUN
    SPACE
will AUX
also ADV
be AUX
available ADJ
. PUNCT
The DET
Vertical ADJ
    SPACE
Contact NOUN
: PUNCT
Jeffrey PROPN
Spencer PROPN
or CCONJ
Stephen PROPN
Albert PROPN
, PUNCT
619 NUM
- PUNCT
454 NUM
- PUNCT
0000 NUM
    SPACE
P.O. PROPN
Box PROPN
2636 NUM
    SPACE
La PROPN
Jolla PROPN
, PUNCT
CA PROPN
  SPACE
92038 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Supports VERB
: PUNCT
no DET
info NOUN
available ADJ
, PUNCT
probably ADV
PC PROPN
's PART
    SPACE
Available ADJ
: PUNCT
Summer NOUN
, PUNCT
1993 NUM
    SPACE
Price NOUN
: PUNCT
$ SYM
249 NUM
    SPACE
The DET
Vertical PROPN
Keyboard PROPN
is AUX
split VERB
in ADP
two NUM
halves NOUN
, PUNCT
each DET
pointing VERB
straight ADV
up ADV
. PUNCT
    SPACE
The DET
user NOUN
can AUX
adjust VERB
the DET
width NOUN
of ADP
the DET
device NOUN
, PUNCT
but CCONJ
not PART
the DET
tilt NOUN
of ADP
each DET
    SPACE
section NOUN
. PUNCT
  SPACE
Side NOUN
- PUNCT
view NOUN
mirrors NOUN
are AUX
installed VERB
to PART
allow VERB
users NOUN
to PART
see VERB
their PRON
    SPACE
fingers NOUN
on ADP
the DET
keys NOUN
. PUNCT
The DET
MIKey PROPN
     SPACE
301 NUM
- PUNCT
933 NUM
- PUNCT
1111 NUM
    SPACE
Dr. PROPN
Alan PROPN
Grant PROPN
    SPACE
3208 NUM
Woodhollow PROPN
Drive PROPN
    SPACE
Chevy PROPN
Chase PROPN
, PUNCT
Maryland PROPN
20815 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Shipping NOUN
: PUNCT
As SCONJ
of ADP
July PROPN
, PUNCT
1992 NUM
: PUNCT
" PUNCT
Should AUX
be AUX
Available ADJ
in ADP
One NUM
Year PROPN
. PUNCT
" PUNCT
    SPACE
Supports NOUN
: PUNCT
PC NOUN
, PUNCT
Mac PROPN
( PUNCT
maybe ADV
) PUNCT
    SPACE
Price NOUN
: PUNCT
$ SYM
200 NUM
( PUNCT
estimated VERB
) PUNCT
    SPACE
The DET
keyboard NOUN
is AUX
at ADP
a DET
fixed VERB
angle NOUN
, PUNCT
and CCONJ
incorporates VERB
a DET
built VERB
- PUNCT
in ADP
mouse NOUN
    SPACE
operated VERB
by ADP
the DET
thumbs NOUN
. PUNCT
  SPACE
Function NOUN
keys NOUN
are AUX
arranged VERB
in ADP
a DET
circle NOUN
at ADP
    SPACE
the DET
keyboard NOUN
's PART
left VERB
. PUNCT
The DET
Wave PROPN
	 SPACE
( PUNCT
was AUX
: PUNCT
213- X
) PUNCT
  SPACE
310 NUM
- PUNCT
644 NUM
- PUNCT
6100 NUM
    SPACE
FAX NOUN
: PUNCT
310 NUM
- PUNCT
644 NUM
- PUNCT
6068 NUM
    SPACE
Iocomm PROPN
International PROPN
Technology PROPN
    SPACE
12700 NUM
Yukon PROPN
Avenue PROPN
    SPACE
Hawthorne PROPN
, PUNCT
California PROPN
90250 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Robin PROPN
Hunter PROPN
( PUNCT
contact NOUN
-- PUNCT
in ADP
sales NOUN
) PUNCT
    SPACE
Cost NOUN
: PUNCT
$ SYM
99.95 NUM
+ SYM
$ SYM
15 NUM
for ADP
a DET
set NOUN
of ADP
cables NOUN
    SPACE
Supports NOUN
: PUNCT
PC NOUN
only ADV
. PUNCT
    SPACE
Shipping NOUN
: PUNCT
now ADV
. PUNCT
    SPACE
Iocomm PROPN
also ADV
manufactures VERB
" PUNCT
ordinary ADJ
" PUNCT
101-key NUM
keyboard NOUN
( PUNCT
PC PROPN
/ SYM
AT PROPN
) PUNCT
and CCONJ
    SPACE
84-key NUM
keyboard NOUN
( PUNCT
PC PROPN
/ SYM
XT PROPN
) PUNCT
, PUNCT
so ADV
make VERB
sure ADJ
you PRON
get VERB
the DET
right ADJ
one NOUN
. PUNCT
    SPACE
The DET
one NUM
- PUNCT
piece NOUN
keyboard NOUN
has AUX
a DET
built VERB
- PUNCT
in ADP
wrist NOUN
- PUNCT
rest NOUN
. PUNCT
  SPACE
It PRON
looks VERB
* PUNCT
exactly ADV
* PUNCT
    SPACE
like SCONJ
a DET
normal ADJ
101-key NUM
PC NOUN
keyboard NOUN
, PUNCT
with ADP
two NUM
inches NOUN
of ADP
built VERB
- PUNCT
in ADP
wrist NOUN
    SPACE
rest NOUN
. PUNCT
  SPACE
The DET
key ADJ
switch NOUN
feel NOUN
is AUX
reported VERB
to PART
be AUX
greatly ADV
improved VERB
. PUNCT
    SPACE
The DET
Minimal PROPN
Motion PROPN
Computer PROPN
Access PROPN
System PROPN
	 SPACE
508 NUM
- SYM
263 NUM
- PUNCT
6437 NUM
    SPACE
508 NUM
- PUNCT
263 NUM
- PUNCT
6537 NUM
( PUNCT
fax NOUN
) PUNCT
    SPACE
Equal PROPN
Access PROPN
Computer PROPN
Technology PROPN
    SPACE
Dr. PROPN
Michael PROPN
Weinreigh PROPN
    SPACE
39 NUM
Oneida PROPN
Rd PROPN
. PROPN
    SPACE
Acton PROPN
, PUNCT
MA PROPN
  SPACE
01720 NUM
, PUNCT
U.S.A. PROPN
    SPACE
Price NOUN
: PUNCT
InfoGrip PROPN
- PUNCT
compatible ADJ
: PUNCT
" PUNCT
a DET
few ADJ
hundred NUM
dollars NOUN
" PUNCT
+ CCONJ
a DET
one NUM
- PUNCT
handed VERB
Bat PROPN
	   SPACE
For ADP
their PRON
own ADJ
system NOUN
: PUNCT
$ SYM
300 NUM
( PUNCT
DOS PROPN
software NOUN
) PUNCT
+ PUNCT
" PUNCT
a DET
few ADJ
hundred NUM
dollars NOUN
" PUNCT
        SPACE
Shipping NOUN
: PUNCT
these DET
are AUX
custom NOUN
- PUNCT
made VERB
, PUNCT
so ADV
an DET
occupational ADJ
therapist NOUN
would AUX
	   SPACE
make VERB
moulds NOUN
/ SYM
do AUX
whatever PRON
to PART
make VERB
it PRON
for ADP
you PRON
. PUNCT
  SPACE
You PRON
can AUX
buy VERB
one NOUN
now ADV
. PUNCT
        SPACE
Supports PROPN
: PUNCT
PC NOUN
only ADV
, PUNCT
although SCONJ
the DET
InfoGrip PROPN
- PUNCT
compatible ADJ
version NOUN
might AUX
	   SPACE
work VERB
with ADP
a DET
Mac PROPN
. PROPN
    SPACE
In ADP
a DET
one NUM
- PUNCT
handed ADJ
version NOUN
, PUNCT
there PRON
is AUX
exactly ADV
one NUM
button NOUN
per ADP
finger NOUN
. PUNCT
  SPACE
In ADP
a DET
    SPACE
two NUM
- PUNCT
handed ADJ
version NOUN
, PUNCT
you PRON
get VERB
four NUM
buttons NOUN
per ADP
finger NOUN
, PUNCT
and CCONJ
the DET
thumbs NOUN
    SPACE
do AUX
n't PART
do AUX
anything PRON
. PUNCT
  SPACE
You PRON
can AUX
also ADV
get AUX
one NUM
- PUNCT
handed ADJ
versions NOUN
with ADP
three NUM
    SPACE
thumb NOUN
buttons NOUN
-- PUNCT
compatible ADJ
with ADP
the DET
InfoGrip PROPN
Bat PROPN
. PUNCT
  SPACE
Basically ADV
, PUNCT
get AUX
it PRON
    SPACE
any DET
way NOUN
you PRON
want VERB
. PUNCT
    SPACE
They PRON
also ADV
have AUX
a DET
software NOUN
tutorial ADJ
to PART
help VERB
you PRON
learn VERB
the DET
chording NOUN
. PUNCT
    SPACE
Works VERB
on ADP
a DET
PC NOUN
under ADP
DOS PROPN
, PUNCT
not PART
Windows PROPN
. PUNCT
  SPACE
Planning VERB
on ADP
Macintosh PROPN
and CCONJ
    SPACE
PC PROPN
/ SYM
Windows PROPN
support NOUN
. PUNCT
  SPACE
No DET
work NOUN
has AUX
been AUX
done VERB
on ADP
a DET
Unix PROPN
version NOUN
, PUNCT
yet ADV
. PUNCT
Half PROPN
- PUNCT
QWERTY PROPN
	 SPACE
( PUNCT
Canada PROPN
) PUNCT
416 NUM
- SYM
749 NUM
- PUNCT
3124 NUM
    SPACE
The DET
Matias PROPN
Corporation PROPN
    SPACE
178 NUM
Thistledown PROPN
Boulevard PROPN
    SPACE
Rexdale PROPN
, PUNCT
Ontario PROPN
, PUNCT
Canada PROPN
    SPACE
M9V PROPN
1K1 NUM
    SPACE
E NOUN
- NOUN
mail NOUN
: PUNCT
ematias@dgp.toronto.edu PROPN
    SPACE
Supports VERB
: PUNCT
Mac PROPN
and CCONJ
PC PROPN
( PUNCT
but CCONJ
, PUNCT
not PART
Windows PROPN
) PUNCT
    SPACE
Demo VERB
for ADP
anonymous ADJ
ftp NOUN
: PUNCT
explorer.dgp.toronto.edu:/pub/Half-QWERTY PROPN
	     SPACE
|| PROPN
    SPACE
Price NOUN
: PUNCT
   SPACE
$ SYM
129.95 NUM
( PUNCT
higher ADJ
in ADP
Canada PROPN
, PUNCT
quantity NOUN
discounts NOUN
available ADJ
) PUNCT
    SPACE
Shipping NOUN
: PUNCT
Now ADV
. PUNCT
        SPACE
This DET
thing NOUN
is AUX
purely ADV
software NOUN
. PUNCT
  SPACE
No DET
hardware NOUN
at ADV
all ADV
. PUNCT
    SPACE
The DET
software NOUN
will AUX
mirror VERB
the DET
keyboard NOUN
when ADV
you PRON
hold VERB
down ADP
the DET
space NOUN
    SPACE
bar NOUN
, PUNCT
allowing VERB
you PRON
type VERB
one NUM
- PUNCT
handed ADJ
. PUNCT
Octima NOUN
	 SPACE
( PUNCT
Israel PROPN
) PUNCT
972 NUM
- SYM
4 NUM
- SYM
5322844 NUM
    SPACE
FAX NOUN
: PUNCT
( PUNCT
+972 PROPN
) PUNCT
3 NUM
5322970 NUM
    SPACE
Ergoplic PROPN
Keyboards PROPN
Ltd. PROPN
    SPACE
P.O. PROPN
Box PROPN
31 NUM
    SPACE
Kiryat PROPN
Ono PROPN
55100 NUM
, PUNCT
Israel PROPN
    SPACE
( PUNCT
info NOUN
from ADP
Mandy PROPN
Jaffe PROPN
- PUNCT
Katz PROPN
< X
RXHFUN@HAIFAUVM.BITNET PROPN
> X
) PUNCT
    SPACE
A DET
one NUM
- PUNCT
handed ADJ
keyboard NOUN
. PUNCT
Microwriter PROPN
AgendA PROPN
( PUNCT
U.K. PROPN
) PUNCT
( PUNCT
+44 PROPN
) PUNCT
276 NUM
692 NUM
084 NUM
    SPACE
FAX NOUN
: PUNCT
( PUNCT
+44 PROPN
) PUNCT
276 NUM
691 NUM
826 NUM
    SPACE
Microwriter PROPN
Systems PROPN
plc PROPN
    SPACE
M.S.A. PROPN
House PROPN
    SPACE
2 NUM
Albany PROPN
Court PROPN
    SPACE
Albany PROPN
Park PROPN
    SPACE
Frimley PROPN
    SPACE
Surrey PROPN
GU15 PROPN
2XA NUM
, PUNCT
United PROPN
Kingdom PROPN
    SPACE
( PUNCT
Info PROPN
from ADP
Carroll PROPN
Morgan PROPN
< X
Carroll.Morgan@prg.oxford.ac.uk ADV
> X
) PUNCT
    SPACE
The DET
AgendA PROPN
is AUX
a DET
personal ADJ
desktop NOUN
assistant NOUN
( PUNCT
PDA PROPN
) PUNCT
style NOUN
machine NOUN
. PUNCT
  SPACE
You PRON
    SPACE
can AUX
carry VERB
it PRON
along ADP
with ADP
you PRON
. PUNCT
  SPACE
It PRON
has AUX
chording VERB
input NOUN
. PUNCT
  SPACE
You PRON
can AUX
also ADV
    SPACE
hook VERB
it PRON
up ADP
to ADP
your PRON
PC NOUN
, PUNCT
or CCONJ
even ADV
program VERB
it PRON
. PUNCT
    SPACE
It PRON
costs VERB
just ADV
under ADP
200 NUM
pounds NOUN
, PUNCT
with ADP
128 NUM
K NOUN
memory.===========Thanks NOUN
go VERB
to ADP
Chris PROPN
Bekins PROPN
< X
AS.CCB@forsythe.stanford.edu PROPN
> X
for ADP
providingthe ADJ
basis NOUN
for ADP
this DET
information NOUN
. PUNCT
Thanks NOUN
to ADP
the DET
numerous ADJ
contributors NOUN
: PUNCT
Doug PROPN
Martin PROPN
< X
martin@nosc.mil>Carroll ADJ
Morgan PROPN
< X
Carroll.Morgan@prg.oxford.ac.uk>Mandy PROPN
Jaffe PROPN
- PUNCT
Katz PROPN
< X
RXHFUN@HAIFAUVM.BITNET NOUN
> X
Wes PROPN
Hunter PROPN
< X
Wesley PROPN
. PUNCT
Hunter@AtlantaGA.NCR.com PROPN
> X
Paul PROPN
Schwartz PROPN
< X
pschwrtz@cs.washington.edu PROPN
> X
H.J. PROPN
Woltring PROPN
< X
WOLTRING@NICI.KUN.NL X
> X
Dan PROPN
Sorenson PROPN
< X
viking@iastate.edu>Chris PROPN
VanHaren NOUN
< X
vanharen@MIT.EDU PUNCT
> X
Ravi PROPN
Pandya PROPN
< X
ravi@xanadu.com>Leonard PROPN
H. PROPN
Tower PROPN
Jr. PROPN
< X
tower@ai.mit.edu>Dan PROPN
Jacobson PROPN
< X
Dan_Jacobson@ATT.COM NOUN
> X
Jim PROPN
Cheetham PROPN
  SPACE
< X
jim@oasis.icl.co.uk>Cliff PROPN
Lasser PROPN
< X
cal@THINK.COM PROPN
> X
Richard PROPN
Donkin PROPN
< X
richardd@hoskyns.co.uk>Paul PROPN
Rubin PROPN
< X
phr@napa PRON
. PUNCT
Telebit NOUN
. PUNCT
COM NOUN
> X
David PROPN
Erb PROPN
< X
erb@fullfeed.com>Bob ADJ
Scheifler NOUN
< X
rws@expo.lcs.mit.edu>Chris PROPN
Grant NOUN
< X
Chris.Grant@um.cc.umich.edu>Scott PUNCT
Mandell PROPN
< X
sem1@postoffice.mail.cornell.edu>and ADV
everybody PRON
else ADV
who PRON
I PRON
've AUX
probably ADV
managed VERB
to PART
forget VERB
. PUNCT
The DET
opinions NOUN
in ADP
here ADV
are AUX
my PRON
own ADJ
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
and CCONJ
do AUX
notrepresent VERB
the DET
opinions NOUN
of ADP
any DET
organization NOUN
or CCONJ
vendor.-- PROPN
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58569From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
4/4 NUM
) PUNCT
: PUNCT
Software NOUN
Monitoring PROPN
Tools PROPN
[ PUNCT
monthly ADJ
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
softwareVersion NOUN
: PUNCT
1.8 NUM
, PUNCT
7th ADJ
December PROPN
1992This NUM
FAQ PROPN
is AUX
actually ADV
maintained VERB
by ADP
Richard PROPN
Donkin PROPN
< X
richardd@hoskyns.co.uk>.I INTJ
post VERB
it PRON
, PUNCT
along ADP
with ADP
the DET
other ADJ
FAQ PROPN
stuff NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
questions NOUN
, PUNCT
you PRON
wantto NOUN
send VERB
mail NOUN
to ADP
Richard PROPN
, PUNCT
not PART
me PRON
. PUNCT
  SPACE
-- PUNCT
Dan PROPN
 		     SPACE
Software PROPN
Tools PROPN
to PART
help VERB
with ADP
RSI PROPN
		     SPACE
------------------------------- PUNCT
This DET
file NOUN
describes VERB
tools NOUN
, PUNCT
primarily ADV
software NOUN
, PUNCT
to PART
help VERB
prevent VERB
or CCONJ
manage VERB
RSI.This X
version NOUN
now ADV
includes VERB
information NOUN
on ADP
such ADJ
diverse ADJ
tools NOUN
as SCONJ
calendarprograms NOUN
and CCONJ
digital ADJ
watches NOUN
... PUNCT
Please INTJ
let VERB
me PRON
know VERB
if SCONJ
you PRON
know VERB
any DET
other ADJ
tools NOUN
, PUNCT
or CCONJ
if SCONJ
you PRON
have AUX
informationor NOUN
opinions NOUN
on ADP
these DET
ones NOUN
, PUNCT
and CCONJ
I PRON
will AUX
update VERB
this DET
FAQ.I PROPN
am AUX
especially ADV
interested ADJ
in ADP
getting VERB
reviews NOUN
of ADP
these DET
products NOUN
from ADP
peoplewho PROPN
have AUX
evaluated VERB
them PRON
or CCONJ
are AUX
using VERB
them PRON
. PUNCT
   SPACE
Richard PROPN
Donkin PROPN
                           SPACE
Internet NOUN
mail NOUN
: PUNCT
richardd@hoskyns.co.uk PUNCT
              SPACE
Tel PROPN
: PUNCT
+44 PROPN
71 NUM
814 NUM
5708 NUM
( PUNCT
direct)Fax NOUN
: PUNCT
+44 PROPN
71 NUM
251 NUM
2853Changes NUM
in ADP
this DET
version NOUN
: PUNCT
     SPACE
Added VERB
information NOUN
on ADP
StressFree PROPN
, PUNCT
another DET
typing NOUN
management NOUN
tool NOUN
      SPACE
for ADP
Windows PROPN
. PUNCT
TYPING NOUN
MANAGEMENT NOUN
TOOLS NOUN
: PUNCT
these DET
aim VERB
to PART
help VERB
you PRON
manage VERB
your PRON
keyboard NOUN
use NOUN
, PUNCT
by ADP
warning VERB
you PRON
to PART
take VERB
a DET
break NOUN
every DET
so ADV
often ADV
. PUNCT
  SPACE
The DET
better ADJ
ones NOUN
also ADV
includeadvice VERB
on ADP
exercises NOUN
, PUNCT
posture NOUN
and CCONJ
workstation NOUN
setup NOUN
. PUNCT
  SPACE
Some DET
use VERB
sound ADJ
hardware NOUN
to PART
warn VERB
of ADP
a DET
break NOUN
, PUNCT
others NOUN
use VERB
beeps NOUN
or CCONJ
screen NOUN
messages NOUN
. PUNCT
Often ADV
, PUNCT
RSI PROPN
appears VERB
only ADV
after ADP
many ADJ
years NOUN
of ADP
typing NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
hasa PROPN
delayed VERB
action NOUN
in ADP
the DET
short ADJ
term NOUN
too ADV
: PUNCT
frequently ADV
you PRON
can AUX
be AUX
typingall NUM
day NOUN
with ADP
little ADJ
problem NOUN
and CCONJ
the DET
pain NOUN
gets VERB
worse ADJ
in ADP
the DET
evening NOUN
. PUNCT
These DET
tools NOUN
act VERB
as SCONJ
an DET
early ADJ
warning NOUN
system NOUN
: PUNCT
by ADP
listening VERB
to ADP
theirwarnings NOUN
and CCONJ
taking VERB
breaks NOUN
with ADP
exercises NOUN
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
wait VERB
for ADP
your PRON
body NOUN
to PART
give VERB
you PRON
a DET
more ADV
serious ADJ
and CCONJ
painful ADJ
warning NOUN
- PUNCT
that ADV
is ADV
, PUNCT
getting VERB
RSI PROPN
. PUNCT
     SPACE
Tool NOUN
: PUNCT
At ADP
Your PRON
Service NOUN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Bright PROPN
Star PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
206 NUM
) PUNCT
451 NUM
3697 NUM
    SPACE
Platforms NOUN
: PUNCT
Mac PROPN
( PUNCT
System PROPN
6.0.4 PROPN
) PUNCT
, PUNCT
Windows PROPN
    SPACE
Description NOUN
: PUNCT
	 SPACE
Provides VERB
calendar NOUN
, PUNCT
keyboard NOUN
watch NOUN
, PUNCT
email NOUN
watch NOUN
, PUNCT
and CCONJ
system NOUN
info NOUN
. PUNCT
	 SPACE
Warns PROPN
when ADV
to PART
take VERB
a DET
break NOUN
( PUNCT
configurable NOUN
) PUNCT
. PUNCT
  SPACE
Has AUX
a DET
few ADJ
recommendations NOUN
	 SPACE
on ADP
posture NOUN
, PUNCT
and CCONJ
exercises NOUN
. PUNCT
  SPACE
Sound NOUN
- PUNCT
oriented VERB
, PUNCT
will AUX
probably ADV
work VERB
best ADV
	 SPACE
with ADP
sound NOUN
card NOUN
( PUNCT
PC NOUN
) PUNCT
or CCONJ
with ADP
microphone NOUN
( PUNCT
Mac PROPN
) PUNCT
. PUNCT
  SPACE
Should AUX
be AUX
possible ADJ
	 SPACE
to PART
record VERB
your PRON
own ADJ
messages NOUN
to PART
warn VERB
of ADP
break NOUN
. PUNCT
     SPACE
Tool PROPN
: PUNCT
AudioPort PROPN
( PUNCT
sound NOUN
card NOUN
and CCONJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Media NOUN
Vision PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
510 NUM
) PUNCT
226 NUM
2563 NUM
    SPACE
Platforms NOUN
: PUNCT
PC NOUN
    SPACE
Description NOUN
: PUNCT
	 SPACE
A DET
sound NOUN
card NOUN
to PART
plug VERB
into ADP
your PRON
PC NOUN
parallel ADJ
port NOUN
. PUNCT
	 SPACE
Includes VERB
' PUNCT
At ADP
Your PRON
Service NOUN
' PUNCT
. PUNCT
     SPACE
Tool PROPN
: PUNCT
Computer PROPN
Health PROPN
Break PROPN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Escape PROPN
Ergonomics PROPN
, PUNCT
Inc PROPN
	 SPACE
1111 NUM
W. PROPN
El PROPN
Camino PROPN
Real PROPN
	 SPACE
Suite NOUN
109 NUM
	 SPACE
Mailstop PROPN
403 NUM
	 SPACE
Sunnyvale PROPN
, PUNCT
CA PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
408 NUM
) PUNCT
730 NUM
8410 NUM
    SPACE
Platforms NOUN
: PUNCT
DOS PROPN
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
, PUNCT
this DET
program NOUN
warns VERB
you PRON
to PART
take VERB
	 SPACE
breaks NOUN
after ADP
a DET
configurable ADJ
interval NOUN
, PUNCT
based VERB
on ADP
clock NOUN
time NOUN
, PUNCT
or CCONJ
	 SPACE
after ADP
a DET
set VERB
number NOUN
of ADP
keystrokes NOUN
-- PUNCT
whichever PRON
is AUX
earlier ADJ
. PUNCT
	 SPACE
It PRON
gives VERB
you PRON
3 NUM
exercises NOUN
to PART
do AUX
each DET
time NOUN
, PUNCT
randomly ADV
selected VERB
from ADP
	 SPACE
a DET
set NOUN
of ADP
70 NUM
. PUNCT
  SPACE
Exercises NOUN
are AUX
apparently ADV
tuned VERB
to ADP
the DET
type NOUN
of ADP
work NOUN
	 SPACE
you PRON
do AUX
- PUNCT
data NOUN
entry NOUN
, PUNCT
word NOUN
processing NOUN
, PUNCT
information NOUN
processing NOUN
. PUNCT
	 SPACE
Exercises NOUN
are AUX
illustrated VERB
and CCONJ
include VERB
quite DET
a DET
lot NOUN
of ADP
text NOUN
on ADP
	 SPACE
how ADV
to PART
do AUX
the DET
exercise NOUN
and CCONJ
on ADP
what PRON
exactly ADV
the DET
exercise NOUN
does AUX
. PUNCT
	 SPACE
CHB PROPN
includes VERB
hypertext ADJ
information NOUN
on ADP
RSI PROPN
that SCONJ
you PRON
can AUX
use VERB
	 SPACE
to PART
learn VERB
more ADJ
about ADP
RSI PROPN
and CCONJ
how ADV
to PART
prevent VERB
it PRON
. PUNCT
  SPACE
Other ADJ
information NOUN
	 SPACE
on ADP
non ADJ
- ADJ
RSI ADJ
topics NOUN
can AUX
be AUX
plugged VERB
into ADP
this DET
hypertext ADJ
viewer NOUN
. PUNCT
	 SPACE
A DET
full ADJ
glossary NOUN
of ADP
medical ADJ
terms NOUN
and CCONJ
jargon PROPN
is AUX
included VERB
. PUNCT
	 SPACE
CHB PROPN
can AUX
be AUX
run VERB
in ADP
a DET
DOS PROPN
box NOUN
under ADP
Windows PROPN
, PUNCT
but CCONJ
does AUX
not PART
then ADV
	 SPACE
warn VERB
you PRON
when ADV
to PART
take VERB
a DET
break NOUN
; PUNCT
it PRON
does AUX
not PART
therefore ADV
appear VERB
	 SPACE
useful ADJ
when ADV
used VERB
with ADP
Windows PROPN
. PUNCT
	 SPACE
Cost NOUN
: PUNCT
$ SYM
79.95 NUM
; PUNCT
quantity NOUN
discounts NOUN
, PUNCT
site NOUN
licenses NOUN
. PUNCT
    SPACE
Comments NOUN
: PUNCT
	 SPACE
The DET
keystroke NOUN
- PUNCT
counting VERB
approach NOUN
looks VERB
good ADJ
: PUNCT
it PRON
seems VERB
better ADV
	 SPACE
to PART
measure VERB
the DET
activity NOUN
that PRON
is AUX
causing VERB
you PRON
problems NOUN
than SCONJ
to ADP
	 SPACE
measure NOUN
clock NOUN
time NOUN
or CCONJ
even ADV
typing NOUN
time NOUN
. PUNCT
  SPACE
The DET
marketing NOUN
stuff NOUN
	 SPACE
is AUX
very ADV
good ADJ
and CCONJ
includes VERB
some DET
summaries NOUN
of ADP
research NOUN
papers NOUN
, PUNCT
	 SPACE
as ADV
well ADV
as SCONJ
lots NOUN
of ADP
arguments NOUN
you PRON
can AUX
use VERB
to PART
get AUX
your PRON
company NOUN
	 SPACE
to PART
pay VERB
up ADP
for ADP
RSI PROPN
management NOUN
tools NOUN
. PUNCT
      SPACE
Tool PROPN
: PUNCT
EyerCise NOUN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
RAN PROPN
Enterprises PROPN
	 SPACE
One NUM
Woodland PROPN
Park PROPN
Dr. PROPN
	 SPACE
Haverhill PROPN
, PUNCT
MA PROPN
  SPACE
01830 NUM
, PUNCT
US PROPN
	 SPACE
Tel NOUN
: PUNCT
800 NUM
- NUM
451 NUM
- PUNCT
4487 NUM
( PUNCT
US PROPN
only ADV
) PUNCT
    SPACE
Platforms NOUN
: PUNCT
Windows PROPN
( PUNCT
3.0/3.1 PROPN
) PUNCT
, PUNCT
OS/2 PROPN
PM PROPN
( PUNCT
1.3/2.0 PROPN
) PUNCT
[ PUNCT
Not PART
DOS PROPN
] PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
and CCONJ
eye NOUN
strain NOUN
, PUNCT
this DET
program NOUN
warns VERB
you PRON
to PART
take VERB
	 SPACE
breaks NOUN
after ADP
a DET
configurable ADJ
interval NOUN
( PUNCT
or CCONJ
at ADP
fixed VERB
times NOUN
) PUNCT
. PUNCT
Optionally ADV
	 SPACE
displays NOUN
descriptions NOUN
and CCONJ
pictures NOUN
of ADP
exercises NOUN
- PUNCT
pictures NOUN
are AUX
	 SPACE
animated VERB
and CCONJ
program NOUN
beeps NOUN
you PRON
to PART
help VERB
you PRON
do AUX
exercises NOUN
at ADP
the DET
	 SPACE
correct ADJ
rate NOUN
. PUNCT
  SPACE
Includes VERB
19 NUM
stretches NOUN
and CCONJ
4 NUM
visual ADJ
training NOUN
	 SPACE
exercises NOUN
, PUNCT
can AUX
configure VERB
which PRON
are AUX
included VERB
and CCONJ
how ADV
many ADJ
repetitions NOUN
	 SPACE
you PRON
do AUX
- PUNCT
breaks NOUN
last ADJ
from ADP
3 NUM
to ADP
7 NUM
minutes NOUN
. PUNCT
  SPACE
Also ADV
includes VERB
online ADJ
help NOUN
	 SPACE
on ADP
workplace ADJ
ergonomics NOUN
. PUNCT
 	 SPACE
Quote INTJ
from ADP
their PRON
literature NOUN
: PUNCT
	 SPACE
" PUNCT
EyerCise NOUN
is AUX
a DET
Windows PROPN
program NOUN
that PRON
breaks VERB
up ADP
your PRON
day NOUN
with ADP
periodic ADJ
	 SPACE
sets NOUN
of ADP
stretches NOUN
and CCONJ
visual ADJ
training NOUN
exercises NOUN
. PUNCT
  SPACE
The DET
stretches NOUN
work NOUN
	 SPACE
all DET
parts NOUN
of ADP
your PRON
body NOUN
, PUNCT
relieving VERB
tension NOUN
and CCONJ
helping VERB
to PART
prevent VERB
	 SPACE
Repetitive PROPN
Strain PROPN
Injury PROPN
. PUNCT
  SPACE
The DET
visual ADJ
training NOUN
exercises NOUN
will AUX
improve VERB
	 SPACE
your PRON
peripheral ADJ
vision NOUN
and CCONJ
help VERB
to PART
relieve VERB
eye NOUN
strain NOUN
. PUNCT
  SPACE
Together ADV
these DET
	 SPACE
help VERB
you PRON
to PART
become VERB
more ADV
relaxed ADJ
and CCONJ
productive ADJ
. PUNCT
" PUNCT
	 SPACE
" PUNCT
The DET
package NOUN
includes VERB
the DET
book NOUN
_ ADP
Computers PROPN
& CCONJ
Visual PROPN
Stress PROPN
_ PROPN
by ADP
Edward PROPN
C. PROPN
	 SPACE
Godnig PROPN
, PUNCT
O.D. PROPN
and CCONJ
John PROPN
S. PROPN
Hacunda PROPN
, PUNCT
which PRON
describes VERB
the DET
ergonomic ADJ
setup NOUN
	 SPACE
for ADP
a DET
computer NOUN
workstation NOUN
and CCONJ
provides VERB
procedures NOUN
and CCONJ
exercises NOUN
to PART
	 SPACE
promote VERB
healthy ADJ
and CCONJ
efficient ADJ
computer NOUN
use NOUN
. PUNCT
		 SPACE
Cost NOUN
: PUNCT
$ SYM
69.95 NUM
including VERB
shipping NOUN
and CCONJ
handling NOUN
, PUNCT
quantity NOUN
discounts NOUN
	 SPACE
for ADP
resellers NOUN
. PUNCT
  SPACE
Free ADJ
demo NOUN
( PUNCT
$ SYM
5 NUM
outside ADP
US PROPN
) PUNCT
. PUNCT
     SPACE
Comments NOUN
: PUNCT
	 SPACE
I PRON
have AUX
a DET
copy NOUN
of ADP
this DET
, PUNCT
and CCONJ
it PRON
works VERB
as SCONJ
advertised VERB
: PUNCT
I PRON
would AUX
say VERB
	 SPACE
it PRON
is AUX
better ADJ
for ADP
RSI PROPN
prevention NOUN
than SCONJ
RSI PROPN
management NOUN
, PUNCT
because SCONJ
it PRON
	 SPACE
does AUX
not PART
allow VERB
breaks NOUN
at ADP
periods NOUN
less ADJ
than SCONJ
30 NUM
minutes NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
	 SPACE
interrupts NOUN
you PRON
based VERB
on ADP
clock NOUN
time NOUN
rather ADV
than SCONJ
typing VERB
time NOUN
, PUNCT
which PRON
	 SPACE
is AUX
not PART
so ADV
helpful ADJ
unless SCONJ
you PRON
use VERB
the DET
keyboard NOUN
all DET
day NOUN
. PUNCT
  SPACE
Worked VERB
OK INTJ
on ADP
	 SPACE
Windows PROPN
3.0 NUM
though SCONJ
it PRON
did AUX
occasionally ADV
crash VERB
with ADP
a DET
UAE PROPN
- PUNCT
not PART
sure ADJ
	 SPACE
why ADV
. PUNCT
Also ADV
refused VERB
to PART
work VERB
with ADP
the DET
space NOUN
bar NOUN
on ADP
one NUM
PC NOUN
, PUNCT
and CCONJ
has AUX
	 SPACE
one NUM
window NOUN
without ADP
window NOUN
controls NOUN
. PUNCT
  SPACE
Very ADV
usable ADJ
though ADV
, PUNCT
and CCONJ
does AUX
not PART
	 SPACE
require VERB
any DET
sound ADJ
hardware NOUN
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Lifeguard PROPN
( PUNCT
commercial ADJ
software NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Visionary PROPN
Software PROPN
	 SPACE
P.O. PROPN
Box PROPN
69447 NUM
	 SPACE
Portland PROPN
, PUNCT
OR CCONJ
  SPACE
97201 NUM
, PUNCT
US PROPN
	 SPACE
Tel NOUN
: PUNCT
+1 PROPN
( PUNCT
503 NUM
) PUNCT
246 NUM
- SYM
6200 NUM
    SPACE
Platforms NOUN
: PUNCT
Mac PROPN
, PUNCT
DOS PROPN
( PUNCT
Windows PROPN
version NOUN
underway ADV
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
. PUNCT
  SPACE
Warns VERB
you PRON
to PART
take VERB
a DET
break NOUN
	 SPACE
with ADP
dialog NOUN
box NOUN
and CCONJ
sound NOUN
. PUNCT
  SPACE
Includes VERB
a DET
list NOUN
of ADP
exercises NOUN
	 SPACE
to PART
do AUX
during ADP
breaks NOUN
, PUNCT
and CCONJ
information NOUN
on ADP
configuring VERB
your PRON
	 SPACE
workstation NOUN
in ADP
an DET
ergonomic ADJ
manner NOUN
. PUNCT
  SPACE
Price NOUN
: PUNCT
$ SYM
59 NUM
; PUNCT
	 SPACE
quantity NOUN
discounts NOUN
and CCONJ
site NOUN
licenses NOUN
. PUNCT
  SPACE
The DET
DOS PROPN
product NOUN
is AUX
	 SPACE
bought VERB
in ADP
from ADP
another DET
company NOUN
, PUNCT
apparently ADV
; PUNCT
not PART
sure ADJ
how ADV
	 SPACE
equivalent ADJ
this DET
is AUX
to ADP
the DET
Mac PROPN
version NOUN
. PUNCT
		 SPACE
The DET
Mac PROPN
version NOUN
got VERB
a DET
good ADJ
review NOUN
in ADP
Desktop PROPN
Publisher PROPN
	 SPACE
Magazine PROPN
( PUNCT
Feb PROPN
1991 NUM
) PUNCT
. PUNCT
  SPACE
Good ADJ
marketing NOUN
stuff NOUN
with ADP
useful ADJ
	 SPACE
2-page NUM
summaries NOUN
of ADP
RSI PROPN
problems NOUN
and CCONJ
solutions NOUN
, PUNCT
with ADP
	 SPACE
references NOUN
. PUNCT
     SPACE
Tool PROPN
: PUNCT
StressFree PROPN
( PUNCT
commercial ADJ
software NOUN
, PUNCT
free ADJ
usable ADJ
demo NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
LifeTime PROPN
Software PROPN
	 SPACE
P.O. PROPN
Box PROPN
87522 NUM
	 SPACE
Houston PROPN
	 SPACE
Texas PROPN
77287 NUM
- SYM
7522 NUM
, PUNCT
US PROPN
	 SPACE
Tel NOUN
: PUNCT
800 NUM
- NUM
947 NUM
- PUNCT
2178 NUM
( PUNCT
US PROPN
only ADV
) PUNCT
	 SPACE
Fax NOUN
: PUNCT
+1 NOUN
( PUNCT
713 NUM
) PUNCT
474 NUM
- SYM
2067 NUM
	 SPACE
Mail NOUN
: PUNCT
70412.727@compuserve.com NUM
	 SPACE
Demo PROPN
( PUNCT
working VERB
program NOUN
but CCONJ
reduced ADJ
functions NOUN
) PUNCT
available ADJ
from ADP
: PUNCT
	     SPACE
Compuserve NOUN
: PUNCT
Windows PROPN
Advanced PROPN
Forum PROPN
, PUNCT
New PROPN
Uploads PROPN
section NOUN
, PUNCT
or CCONJ
			 SPACE
Health PROPN
and CCONJ
Fitness PROPN
Forum PROPN
, PUNCT
Issues PROPN
At ADP
Work NOUN
section NOUN
. PUNCT
	     SPACE
Anon PROPN
FTP PROPN
: PUNCT
   SPACE
ftp.cica.indiana.edu NUM
( PUNCT
and CCONJ
mirroring NOUN
sites NOUN
) PUNCT
    SPACE
Platforms NOUN
: PUNCT
Windows PROPN
( PUNCT
3.0/3.1 PROPN
) PUNCT
( PUNCT
Mac PROPN
and CCONJ
DOS PROPN
versions NOUN
underway ADV
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Aimed VERB
at ADP
preventing VERB
RSI PROPN
, PUNCT
this DET
program NOUN
warns VERB
you PRON
to PART
take VERB
	 SPACE
breaks NOUN
after ADP
a DET
configurable ADJ
interval NOUN
( PUNCT
or CCONJ
at ADP
fixed VERB
times NOUN
) PUNCT
. PUNCT
	 SPACE
Displays NOUN
descriptions NOUN
and CCONJ
pictures NOUN
of ADP
exercises NOUN
- PUNCT
pictures NOUN
are AUX
	 SPACE
animated VERB
and CCONJ
program NOUN
paces NOUN
you PRON
to PART
help VERB
you PRON
do AUX
exercises NOUN
at ADP
the DET
	 SPACE
correct ADJ
rate NOUN
. PUNCT
  SPACE
Quite DET
a DET
few ADJ
exercises NOUN
, PUNCT
can AUX
configure VERB
which PRON
ones NOUN
	 SPACE
are AUX
included VERB
to ADP
some DET
extent NOUN
. PUNCT
  SPACE
Online ADJ
help NOUN
. PUNCT
	 SPACE
Version PROPN
2.0 NUM
is AUX
out ADV
soon ADV
, PUNCT
Mac PROPN
and CCONJ
DOS PROPN
versions NOUN
will AUX
be AUX
based VERB
	 SPACE
on ADP
this DET
. PUNCT
	 SPACE
Cost NOUN
: PUNCT
$ SYM
29.95 NUM
if SCONJ
support NOUN
via ADP
CompuServe PROPN
or CCONJ
Internet PROPN
, PUNCT
otherwise ADV
$ SYM
39.95 NUM
. PUNCT
                SPACE
Site NOUN
license NOUN
for ADP
3 NUM
or CCONJ
more ADJ
copies NOUN
is AUX
$ SYM
20.00 NUM
each DET
. PUNCT
	       SPACE
( PUNCT
NOTE NOUN
: PUNCT
prices NOUN
may AUX
have AUX
gone VERB
up ADP
for ADP
V2.0 PROPN
) PUNCT
. PUNCT
     SPACE
Comments NOUN
: PUNCT
	 SPACE
I PRON
have AUX
had VERB
a DET
play NOUN
with ADP
this DET
, PUNCT
and CCONJ
it PRON
works VERB
OK ADJ
. PUNCT
  SPACE
Its PRON
user NOUN
interface NOUN
	 SPACE
design NOUN
is AUX
much ADV
better ADJ
in ADP
2.0 NUM
, PUNCT
though SCONJ
still ADV
a DET
bit NOUN
unusual ADJ
. PUNCT
	 SPACE
expensive ADJ
tool NOUN
around ADV
and CCONJ
it PRON
does AUX
the DET
job NOUN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
the DET
only ADJ
	 SPACE
tool NOUN
with ADP
a DET
redistributable ADJ
demo NOUN
, PUNCT
so CCONJ
if SCONJ
you PRON
do AUX
get AUX
the DET
demo NOUN
, PUNCT
post VERB
it PRON
	 SPACE
on ADP
your PRON
local ADJ
bulletin NOUN
boards NOUN
, PUNCT
FTP PROPN
servers NOUN
and CCONJ
Bitnet PROPN
servers NOUN
! PUNCT
	 SPACE
Does AUX
not PART
include VERB
general ADJ
info NOUN
on ADP
RSI PROPN
and CCONJ
ergonomics NOUN
, PUNCT
but CCONJ
it PRON
does AUX
	 SPACE
have AUX
the DET
ability NOUN
to PART
step VERB
backward ADV
in ADP
the DET
exercise NOUN
sequence NOUN
, PUNCT
	 SPACE
which PRON
is AUX
good ADJ
for ADP
repeating VERB
the DET
most ADV
helpful ADJ
exercises NOUN
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Typewatch NOUN
( PUNCT
freeware NOUN
) PUNCT
, PUNCT
version NOUN
3.8 NUM
( PUNCT
October PROPN
1992 NUM
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Email NOUN
to ADP
richardd@hoskyns.co.uk PUNCT
	 SPACE
Anonymous ADJ
ftp NOUN
: PUNCT
soda.berkeley.edu:pub/typing-injury/typewatch.shar ADJ
    SPACE
Platforms NOUN
: PUNCT
UNIX PROPN
( PUNCT
tested VERB
on ADP
SCO PROPN
, PUNCT
SunOS PROPN
, PUNCT
Mach PROPN
; PUNCT
character NOUN
and CCONJ
X NOUN
Window PROPN
mode NOUN
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
This DET
is AUX
a DET
shell ADJ
script NOUN
that PRON
runs VERB
in ADP
the DET
background NOUN
and CCONJ
warns VERB
you PRON
	 SPACE
to PART
stop VERB
typing NOUN
, PUNCT
based VERB
on ADP
how ADV
long ADV
you PRON
have AUX
been AUX
continuously ADV
	 SPACE
typing NOUN
. PUNCT
  SPACE
It PRON
does AUX
not PART
provide VERB
exercises NOUN
, PUNCT
but CCONJ
it PRON
does AUX
check VERB
	 SPACE
that SCONJ
you PRON
really ADV
do AUX
take VERB
a DET
break NOUN
, PUNCT
and CCONJ
tells VERB
you PRON
when ADV
you PRON
	 SPACE
can AUX
start VERB
typing VERB
again ADV
. PUNCT
 	 SPACE
Typewatch PROPN
now ADV
tells VERB
you PRON
how ADV
many ADJ
minutes NOUN
you PRON
have AUX
been AUX
typing VERB
	 SPACE
today NOUN
, PUNCT
each DET
time NOUN
it PRON
warns VERB
you PRON
, PUNCT
which PRON
is AUX
useful ADJ
so SCONJ
you PRON
	 SPACE
know VERB
how ADV
much ADJ
you PRON
* PUNCT
really ADV
* PUNCT
type NOUN
. PUNCT
  SPACE
It PRON
also ADV
logs VERB
information NOUN
	 SPACE
to ADP
a DET
file NOUN
that PRON
you PRON
can AUX
analyse VERB
or CCONJ
simply ADV
print VERB
out ADP
. PUNCT
 	 SPACE
The DET
warning NOUN
message NOUN
appears VERB
on ADP
your PRON
screen NOUN
( PUNCT
in ADP
character NOUN
mode NOUN
) PUNCT
, PUNCT
	 SPACE
in ADP
a DET
pop VERB
- PUNCT
up ADP
window NOUN
( PUNCT
for ADP
X PROPN
Windows PROPN
) PUNCT
, PUNCT
or CCONJ
as SCONJ
a DET
Zephyr PROPN
message NOUN
	 SPACE
( PUNCT
for ADP
those DET
with ADP
Athena PROPN
stuff NOUN
) PUNCT
. PUNCT
   SPACE
Tim PROPN
Freeman PROPN
< X
tsf@cs.cmu.edu NOUN
> X
	 SPACE
has AUX
put VERB
in ADP
a DET
lot NOUN
of ADP
bug NOUN
fixes NOUN
, PUNCT
extra ADJ
features NOUN
and CCONJ
support NOUN
for ADP
	 SPACE
X NOUN
, PUNCT
Zephyr PROPN
and CCONJ
Mach PROPN
. PUNCT
	 SPACE
Not PART
formally ADV
supported VERB
, PUNCT
but CCONJ
email NOUN
richardd@hoskyns.co.uk PUNCT
	 SPACE
( PUNCT
for ADP
SCO PROPN
, PUNCT
SunOS PROPN
, PUNCT
character NOUN
mode NOUN
) PUNCT
or CCONJ
tsf@cs.cmu.edu PROPN
( PUNCT
for ADP
Mach PROPN
, PUNCT
	 SPACE
X NOUN
Window PROPN
mode NOUN
, PUNCT
Zephyr PROPN
) PUNCT
if SCONJ
you PRON
have AUX
problems NOUN
or CCONJ
want VERB
to PART
give VERB
	 SPACE
feedback NOUN
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Various ADJ
calendar NOUN
/ SYM
batch NOUN
queue NOUN
programs NOUN
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Various ADJ
sources NOUN
    SPACE
Platforms NOUN
: PUNCT
Various ADJ
    SPACE
Description NOUN
: PUNCT
	 SPACE
Any DET
calendar NOUN
/ SYM
reminder NOUN
program NOUN
that PRON
warns VERB
you PRON
of ADP
an DET
upcoming ADJ
	 SPACE
appointment NOUN
can AUX
be AUX
turned VERB
into ADP
an DET
ad X
hoc X
RSI PROPN
management NOUN
tool NOUN
. PUNCT
	 SPACE
Or CCONJ
, PUNCT
any DET
batch NOUN
queue NOUN
submission NOUN
program NOUN
that PRON
lets VERB
you PRON
submit VERB
	 SPACE
a DET
program NOUN
to PART
run VERB
at ADP
a DET
specific ADJ
time NOUN
to PART
display VERB
a DET
message NOUN
to ADP
	 SPACE
the DET
screen NOUN
. PUNCT
	 SPACE
Using VERB
Windows PROPN
as SCONJ
an DET
example NOUN
: PUNCT
create VERB
a DET
Calendar NOUN
file NOUN
, PUNCT
and CCONJ
	 SPACE
include VERB
this DET
filename NOUN
in ADP
your PRON
WIN.INI NOUN
's PART
' PUNCT
load= NOUN
' PUNCT
line NOUN
so ADV
	 SPACE
you PRON
get VERB
it PRON
on ADP
every DET
startup NOUN
of ADP
Windows PROPN
. PUNCT
  SPACE
Suppose VERB
you PRON
	 SPACE
want VERB
to PART
have AUX
breaks NOUN
every DET
30 NUM
minutes NOUN
, PUNCT
starting VERB
from ADP
9 NUM
am NOUN
. PUNCT
	 SPACE
Press PROPN
F7 PROPN
( PUNCT
Special PROPN
Time PROPN
... PUNCT
) PUNCT
to PART
enter VERB
an DET
appointment NOUN
, PUNCT
enter VERB
	 SPACE
9:30 NUM
, PUNCT
hit VERB
Enter NOUN
, PUNCT
and CCONJ
type VERB
some DET
text NOUN
in ADP
saying VERB
what PRON
the DET
break NOUN
	 SPACE
is AUX
for ADP
. PUNCT
  SPACE
Then ADV
press VERB
F5 PROPN
to PART
set VERB
an DET
alarm NOUN
on ADP
this DET
entry NOUN
, PUNCT
and CCONJ
repeat VERB
	 SPACE
for ADP
the DET
next ADJ
appointment NOUN
. PUNCT
	 SPACE
By ADP
using VERB
Windows PROPN
Recorder PROPN
, PUNCT
you PRON
can AUX
record VERB
the DET
keystrokes NOUN
	 SPACE
that PRON
set VERB
up ADP
breaks NOUN
throughout ADP
a DET
day NOUN
in ADP
a DET
.REC NOUN
file NOUN
. PUNCT
  SPACE
Put VERB
this DET
	 SPACE
file NOUN
on ADP
your PRON
' PUNCT
run= ADJ
' PUNCT
line NOUN
, PUNCT
as SCONJ
above ADV
, PUNCT
and CCONJ
you PRON
will AUX
then ADV
, PUNCT
with ADP
	 SPACE
a DET
single ADJ
keypress NOUN
, PUNCT
be AUX
able ADJ
to PART
set VERB
up ADP
your PRON
daily ADJ
appointments NOUN
	 SPACE
with ADP
RSI PROPN
exercises NOUN
. PUNCT
	 SPACE
The DET
above ADJ
method NOUN
should AUX
be AUX
adaptable ADJ
to ADP
most ADJ
calendar NOUN
programs NOUN
. PUNCT
	 SPACE
An DET
example NOUN
using VERB
batch NOUN
jobs NOUN
would AUX
be AUX
to PART
submit VERB
a DET
simple ADJ
job NOUN
	 SPACE
that PRON
runs VERB
at ADP
9:30 NUM
am NOUN
and CCONJ
warns VERB
you PRON
to PART
take VERB
a DET
break NOUN
; PUNCT
this DET
will AUX
	 SPACE
depend VERB
a DET
lot NOUN
on ADP
your PRON
operating NOUN
system NOUN
. PUNCT
	 SPACE
While SCONJ
these DET
approaches NOUN
are AUX
not PART
ideal ADJ
, PUNCT
they PRON
are AUX
a DET
good ADJ
way NOUN
of ADP
forcing VERB
	 SPACE
yourself PRON
to PART
take VERB
a DET
break NOUN
if SCONJ
you PRON
ca AUX
n't PART
get AUX
hold NOUN
of ADP
a DET
suitable ADJ
RSI PROPN
	 SPACE
management NOUN
tool NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
techie ADJ
enough ADV
you PRON
might AUX
want VERB
to PART
	 SPACE
write VERB
a DET
version NOUN
of ADP
Typewatch PROPN
( PUNCT
see VERB
above ADV
) PUNCT
for ADP
your PRON
operating NOUN
	 SPACE
system NOUN
, PUNCT
using VERB
batch NOUN
jobs NOUN
or CCONJ
whatever PRON
fits VERB
best ADV
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Digital PROPN
watches VERB
with ADP
count NOUN
- PUNCT
down NOUN
timers NOUN
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Various ADJ
sources NOUN
, PUNCT
e.g. DET
Casio PROPN
BP-100 PROPN
. PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Many ADJ
digital ADJ
watches NOUN
have AUX
timers NOUN
that PRON
count VERB
down ADP
from ADP
a DET
settable NOUN
	 SPACE
number NOUN
of ADP
minutes NOUN
; PUNCT
they PRON
usually ADV
reset VERB
easily ADV
to ADP
that DET
number NOUN
, PUNCT
either CCONJ
	 SPACE
manually ADV
or CCONJ
automatically ADV
. PUNCT
 	 SPACE
While SCONJ
these DET
are AUX
a DET
very ADV
basic ADJ
tool NOUN
, PUNCT
they PRON
are AUX
very ADV
useful ADJ
if SCONJ
you PRON
	 SPACE
are AUX
writing VERB
, PUNCT
reading VERB
, PUNCT
driving NOUN
, PUNCT
or CCONJ
doing VERB
anything PRON
away ADV
from ADP
	 SPACE
a DET
computer NOUN
which PRON
can AUX
still ADV
cause VERB
or CCONJ
aggravate VERB
RSI PROPN
. PUNCT
  SPACE
The DET
great ADJ
	 SPACE
advantage NOUN
is AUX
that SCONJ
they PRON
remind VERB
you PRON
to PART
break VERB
from ADP
whatever PRON
you PRON
	 SPACE
are AUX
doing VERB
. PUNCT
	     SPACE
Comments PROPN
: PUNCT
	 SPACE
My PRON
own ADJ
experience NOUN
was AUX
that SCONJ
cutting VERB
down ADP
a DET
lot NOUN
on ADP
my PRON
typing NOUN
led VERB
to ADP
	 SPACE
my PRON
writing NOUN
a DET
lot NOUN
more ADJ
, PUNCT
and CCONJ
still ADV
reading VERB
as ADV
much ADV
as SCONJ
ever ADV
, PUNCT
which PRON
	 SPACE
actually ADV
aggravated VERB
the DET
RSI PROPN
in ADP
my PRON
right ADJ
arm NOUN
though SCONJ
the DET
left NOUN
	 SPACE
arm NOUN
improved VERB
. PUNCT
  SPACE
Getting VERB
a DET
count VERB
- PUNCT
down ADP
timer NOUN
watch NOUN
has AUX
been AUX
	 SPACE
very ADV
useful ADJ
on ADP
some DET
occasions NOUN
where ADV
I PRON
write VERB
a DET
lot NOUN
in ADP
a DET
day NOUN
. PUNCT
	 SPACE
I PRON
have AUX
tried VERB
an DET
old ADJ
fashioned ADJ
hour NOUN
- PUNCT
glass NOUN
type NOUN
egg NOUN
timer NOUN
, PUNCT
but CCONJ
	 SPACE
these DET
are AUX
not PART
much ADV
good ADJ
because SCONJ
they PRON
do AUX
not PART
give VERB
an DET
audible ADJ
	 SPACE
warning NOUN
of ADP
the DET
end NOUN
of ADP
the DET
time NOUN
period!KEYBOARD NOUN
REMAPPING NOUN
TOOLS NOUN
: PUNCT
these DET
enable VERB
you PRON
to PART
change VERB
your PRON
keyboard NOUN
mappingso PUNCT
you PRON
can AUX
type VERB
one NUM
- PUNCT
handedly ADV
or CCONJ
with ADP
a DET
different ADJ
two NUM
- PUNCT
handed ADJ
layout NOUN
. PUNCT
  SPACE
One NUM
- PUNCT
handed ADJ
typing NOUN
tools NOUN
may AUX
help VERB
, PUNCT
but CCONJ
be AUX
VERY ADV
careful ADJ
about ADP
how ADV
you PRON
use VERB
them PRON
-- PUNCT
if SCONJ
you PRON
keep VERB
the DET
same ADJ
overall ADJ
typing NOUN
workload NOUN
youare NOUN
simply ADV
doubling VERB
your PRON
hand NOUN
use NOUN
for ADP
the DET
hand NOUN
that PRON
you PRON
use VERB
for ADP
typing NOUN
, PUNCT
and CCONJ
may AUX
therefore ADV
make VERB
matters NOUN
worse ADJ
. PUNCT
    SPACE
Tool NOUN
: PUNCT
hsh PROPN
( PUNCT
public ADJ
domain NOUN
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Anonymous ADJ
ftp NOUN
: PUNCT
soda.berkeley.edu:pub/typing-injury/hsh.shar PROPN
    SPACE
Platforms NOUN
: PUNCT
UNIX NOUN
( PUNCT
do AUX
n't PART
know VERB
which PRON
ones NOUN
) PUNCT
    SPACE
Description NOUN
: PUNCT
	 SPACE
Allows VERB
one NUM
- PUNCT
handed ADJ
typing NOUN
and CCONJ
other ADJ
general ADJ
keyboard NOUN
remappings NOUN
. PUNCT
	 SPACE
Only ADV
works VERB
through ADP
tty NOUN
's PART
( PUNCT
so ADV
, PUNCT
you PRON
can AUX
use VERB
it PRON
with ADP
a DET
terminal NOUN
or CCONJ
	 SPACE
an DET
xterm NOUN
, PUNCT
but CCONJ
not PART
most ADJ
X NOUN
programs NOUN
) PUNCT
. PUNCT
    SPACE
Tool NOUN
: PUNCT
Dvorak PROPN
keyboard NOUN
tools NOUN
( PUNCT
various ADJ
) PUNCT
    SPACE
Available ADJ
from ADP
: PUNCT
	 SPACE
Anonymous ADJ
ftp NOUN
: PUNCT
soda.berkeley.edu:pub/typing-injury/xdvorak.c PROPN
	 SPACE
Also ADV
built VERB
into ADP
Windows PROPN
3.x PROPN
. PUNCT
     SPACE
Description NOUN
: PUNCT
	 SPACE
The DET
Dvorak PROPN
keyboard NOUN
apparently ADV
uses VERB
a DET
more ADV
rational ADJ
layout NOUN
	 SPACE
that DET
involves VERB
more ADV
balanced ADJ
hand NOUN
use NOUN
. PUNCT
   SPACE
It PRON
* PUNCT
may AUX
* PUNCT
help VERB
prevent VERB
	 SPACE
RSI PROPN
a DET
bit NOUN
, PUNCT
but CCONJ
you PRON
can AUX
also ADV
use VERB
it PRON
if SCONJ
you PRON
have AUX
RSI PROPN
, PUNCT
since SCONJ
	 SPACE
it PRON
will AUX
slow VERB
down ADP
your PRON
typing NOUN
a DET
* PUNCT
lot NOUN
* PUNCT
:-) PUNCT
  SPACE
-- PUNCT
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58570From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
lsj4gnINNl6c@saltillo.cs.utexas.edu NOUN
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>-*----->I PROPN
wrote VERB
: PUNCT
> X
> X
> X
... PUNCT
Or CCONJ
, PUNCT
to PART
use VERB
a DET
phrasing NOUN
that PRON
I PRON
think VERB
is AUX
more ADV
accurate ADJ
, PUNCT
science NOUN
> X
> X
> X
is AUX
the DET
investigation NOUN
of ADP
phenomena PROPN
that PRON
avoids VERB
methods NOUN
and CCONJ
reasoning VERB
> X
> X
> X
that PRON
are AUX
known VERB
to PART
be AUX
erroneous ADJ
from ADP
past ADJ
foul ADJ
- PUNCT
ups NOUN
. PUNCT
> X
> X
In ADP
article NOUN
< X
C57Iu2.HBn@bunyip.cc.uq.oz.au NUM
> X
bd@psych.psy.uq.oz.au PROPN
writes VERB
: PUNCT
> X
> X
I PRON
can AUX
agree VERB
with ADP
this DET
if SCONJ
you PRON
are AUX
talking VERB
about ADP
the DET
less ADV
fundamental ADJ
> X
> X
aspects NOUN
of ADP
scientific ADJ
method NOUN
. PUNCT
... PUNCT
> X
    SPACE
... PUNCT
> X
> X
... PUNCT
In ADP
fact NOUN
, PUNCT
I PRON
do AUX
n't PART
see VERB
the DET
alternative NOUN
, PUNCT
as SCONJ
I PRON
do AUX
n't PART
think VERB
that SCONJ
the DET
> X
> X
fundamentals NOUN
are AUX
capable ADJ
of ADP
experimental ADJ
investigation NOUN
. PUNCT
  SPACE
In ADP
saying VERB
> X
> X
this DET
I PRON
am AUX
agreeing VERB
with ADP
the DET
work NOUN
of ADP
people NOUN
like SCONJ
Kuhn PROPN
( PUNCT
1970 NUM
) PUNCT
, PUNCT
> X
> X
Feyerabend NOUN
( PUNCT
1981 NUM
) PUNCT
and CCONJ
Lakatos PROPN
( PUNCT
1972 NUM
) PUNCT
. PUNCT
> X
      SPACE
.... PUNCT
> X
While SCONJ
methodology NOUN
can AUX
not PART
be AUX
subject ADJ
to ADP
the DET
same ADJ
kind NOUN
of ADP
" PUNCT
experimental ADJ
> PROPN
investigation NOUN
, PUNCT
" PUNCT
as SCONJ
that DET
to PART
which PRON
it PRON
is AUX
applied VERB
, PUNCT
it PRON
* PUNCT
can AUX
* PUNCT
be AUX
critically ADV
> X
appraised VERB
. PUNCT
  SPACE
Methodologies NOUN
can AUX
be AUX
compared VERB
to ADP
each DET
other ADJ
, PUNCT
sometimes ADV
by ADP
> X
the DET
conflicting ADJ
results NOUN
they PRON
produce VERB
. PUNCT
  SPACE
This DET
kind NOUN
of ADP
critical ADJ
appraisal NOUN
> X
and CCONJ
comparison NOUN
, PUNCT
together ADV
with ADP
the DET
inappropriateness NOUN
of ADP
existing VERB
> X
methodologies NOUN
for ADP
new ADJ
fields NOUN
of ADP
study NOUN
, PUNCT
is AUX
what PRON
drives VERB
the DET
evolution NOUN
of ADP
> X
methodologies NOUN
and CCONJ
how ADV
we PRON
think VERB
about ADP
them PRON
. PUNCT
  SPACE
As SCONJ
usual ADJ
, PUNCT
you PRON
are AUX
missing VERB
the DET
whole ADJ
point NOUN
, PUNCT
Russell PROPN
, PUNCT
because SCONJ
you PRON
are AUX
notwilling VERB
to PART
even ADV
consider VERB
questionning VERB
your PRON
basic ADJ
article NOUN
of ADP
faith NOUN
, PUNCT
whichis ADJ
that SCONJ
science NOUN
is AUX
merely ADV
a DET
matter NOUN
of ADP
methodology NOUN
and CCONJ
that SCONJ
the DET
highestpurpose NOUN
of ADP
science NOUN
is AUX
to PART
avoid VERB
making VERB
mistakes NOUN
. PUNCT
  SPACE
This DET
is AUX
like SCONJ
saying VERB
that SCONJ
the DET
most ADV
important ADJ
aspect NOUN
of ADP
business NOUN
managementis NOUN
accurate ADJ
bookkeeping NOUN
. PUNCT
  SPACE
If SCONJ
science NOUN
were AUX
no ADV
more ADJ
than SCONJ
methodology NOUN
and CCONJ
not PART
making VERB
mistakes NOUN
, PUNCT
itwould AUX
be AUX
a DET
poor ADJ
thing NOUN
indeed ADV
. PUNCT
  SPACE
What PRON
was AUX
the DET
methodology NOUN
of ADP
Darwin PROPN
? PUNCT
  SPACE
Whatwas VERB
the DET
methodology NOUN
of ADP
Einstein PROPN
? PUNCT
  SPACE
What PRON
was AUX
, PUNCT
for ADP
that DET
matter NOUN
, PUNCT
themethodology NOUN
of ADP
Jenner PROPN
and CCONJ
Pasteur PROPN
? PUNCT
  SPACE
In ADP
an DET
earlier ADJ
article NOUN
, PUNCT
Russell PROPN
Turpin PROPN
writes VERB
: PUNCT
  SPACE
> X
None NOUN
of ADP
the DET
foregoing NOUN
should AUX
be AUX
read VERB
as SCONJ
meaning VERB
that SCONJ
we PRON
should AUX
> X
open VERB
the DET
door NOUN
to ADP
practitioners NOUN
of ADP
quackery NOUN
and CCONJ
psuedo ADJ
- PUNCT
science.>Modern NOUN
advocates NOUN
of ADP
homeopathy NOUN
, PUNCT
chiropracty PROPN
, PUNCT
and CCONJ
traditional ADJ
> X
Chinese ADJ
medicine NOUN
receive VERB
little ADJ
respect NOUN
because SCONJ
, PUNCT
for ADP
the DET
most ADJ
> X
part NOUN
, PUNCT
they PRON
use VERB
methods NOUN
and CCONJ
reasoning VERB
that SCONJ
the DET
kind NOUN
of ADP
research NOUN
> X
Lee PROPN
Lady PROPN
recommends VERB
has AUX
shown VERB
to PART
be AUX
terribly ADV
faulty ADJ
. PUNCT
  SPACE
( PUNCT
This DET
does>*not PROPN
* PUNCT
imply VERB
that SCONJ
all DET
their PRON
treatments NOUN
are AUX
ineffective ADJ
. PUNCT
  SPACE
It PRON
* PUNCT
does*>imply ADV
that SCONJ
those DET
who PRON
rely VERB
on ADP
faulty ADJ
methodology NOUN
and CCONJ
reasoning NOUN
are AUX
> X
incapable ADJ
of ADP
discovering VERB
* PUNCT
which PRON
* PUNCT
treatments NOUN
are AUX
effective ADJ
and CCONJ
> X
which PRON
are AUX
not.)First ADV
of ADP
all DET
, PUNCT
I PRON
think VERB
you PRON
are AUX
arguing VERB
against ADP
a DET
straw NOUN
man NOUN
, PUNCT
because SCONJ
Idon't PRON
think VERB
that SCONJ
anyone PRON
here ADV
is AUX
arguing VERB
that DET
quackery NOUN
, PUNCT
pseudo NOUN
- PUNCT
science NOUN
, PUNCT
homeopathy NOUN
, PUNCT
chiropracty PROPN
, PUNCT
and CCONJ
traditional ADJ
Chinese ADJ
medicine NOUN
should AUX
beaccepted VERB
as SCONJ
science NOUN
. PUNCT
  SPACE
I PRON
, PUNCT
in ADP
particular ADJ
, PUNCT
think VERB
the DET
basic ADJ
ideas NOUN
ofhomeopathy ADJ
and CCONJ
chiropracty NOUN
seem VERB
extremely ADV
flaky ADJ
. PUNCT
  SPACE
What PRON
some DET
of ADP
us PRON
do AUX
believe VERB
, PUNCT
however ADV
, PUNCT
is AUX
that SCONJ
some DET
of ADP
these DET
things(including PROPN
some DET
of ADP
the DET
flaky ADJ
ideas NOUN
) PUNCT
are AUX
deserving VERB
of ADP
serious ADJ
scientificattention NOUN
. PUNCT
  SPACE
If SCONJ
in ADP
fact NOUN
it PRON
were AUX
true ADJ
, PUNCT
as SCONJ
you PRON
have AUX
stated VERB
above ADV
, PUNCT
that SCONJ
those DET
who PRON
do AUX
notuse VERB
the DET
currently ADV
fashionable ADJ
methodology NOUN
can AUX
have AUX
no DET
idea NOUN
what PRON
iseffective NOUN
and CCONJ
what PRON
is AUX
not PART
, PUNCT
then ADV
science NOUN
today NOUN
would AUX
not PART
exist VERB
. PUNCT
  SPACE
For ADP
allof ADJ
current ADJ
science NOUN
is AUX
based VERB
on ADP
the DET
past ADJ
work NOUN
of ADP
scientists NOUN
whosemethodology NOUN
, PUNCT
by ADP
current ADJ
standards NOUN
, PUNCT
was AUX
seriously ADV
flawed ADJ
. PUNCT
  SPACE
It PRON
is AUX
certainly ADV
true ADJ
that SCONJ
as SCONJ
methodology NOUN
improves VERB
, PUNCT
we PRON
need VERB
to PART
re VERB
- VERB
examinethose ADJ
results NOUN
derived VERB
in ADP
the DET
past NOUN
using VERB
less ADV
perfect ADJ
methodologies NOUN
. PUNCT
  SPACE
It PRON
isalso ADV
true ADJ
that SCONJ
the DET
results NOUN
obtained VERB
by ADP
people NOUN
today NOUN
who PRON
still ADV
rely VERB
on ADP
those DET
early ADJ
methodologies NOUN
needs VERB
to PART
be AUX
re VERB
- VERB
examined VERB
in ADP
a DET
more ADV
rigorous ADJ
fashion NOUN
by ADP
those DET
qualified ADJ
to PART
do AUX
so ADV
credibly ADV
. PUNCT
  SPACE
But CCONJ
to PART
say VERB
that SCONJ
nobody PRON
who PRON
fails VERB
to PART
do AUX
elaborate VERB
double ADJ
- PUNCT
blind ADJ
studies NOUN
iscapable ADJ
of ADP
knowing VERB
their PRON
ass NOUN
from ADP
a DET
hole NOUN
in ADP
the DET
ground NOUN
and CCONJ
to PART
say VERB
that SCONJ
noideas NOUN
that PRON
come VERB
from ADP
outside ADP
the DET
scientific ADJ
establishment NOUN
could AUX
possiblybe VERB
worthy ADJ
of ADP
serious ADJ
investigation NOUN
... PUNCT
this DET
truly ADV
marks VERB
one PRON
's PART
attitude NOUN
asdoctrinaire NOUN
, PUNCT
cultist PROPN
. PUNCT
  SPACE
This DET
attitude NOUN
is AUX
not PART
compatible ADJ
with ADP
a DET
belief NOUN
inreason NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58577From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
1/4 NUM
) PUNCT
: PUNCT
Changes NOUN
since SCONJ
last ADJ
month NOUN
[ PUNCT
monthly ADV
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
changesVersion NOUN
: PUNCT
$ SYM
Revision NOUN
: PUNCT
1.3 NUM
$ SYM
$ SYM
Date NOUN
: PUNCT
1993/04/13 NUM
04:12:33 NUM
$ SYM
This DET
file NOUN
details NOUN
changes VERB
to ADP
the DET
soda.berkeley.edu PROPN
archive ADJ
and CCONJ
summarizeswhat DET
's AUX
new ADJ
in ADP
the DET
various ADJ
FAQ PROPN
( PUNCT
frequently ADV
asked VERB
questions NOUN
) PUNCT
documents NOUN
. PUNCT
This DET
will AUX
be AUX
posted VERB
monthly ADV
, PUNCT
along ADP
with ADP
the DET
full ADJ
FAQ PROPN
to ADP
the DET
various ADJ
netgroups NOUN
. PUNCT
  SPACE
The DET
various ADJ
mailing NOUN
lists NOUN
will AUX
either CCONJ
receive VERB
the DET
full ADJ
FAQevery PROPN
month NOUN
, PUNCT
or CCONJ
every DET
third ADJ
month NOUN
, PUNCT
but CCONJ
will AUX
always ADV
get AUX
this DET
file NOUN
, PUNCT
onceper ADJ
month NOUN
. PUNCT
  SPACE
Phew!============================================================================Changes NOUN
to ADP
the DET
Typing NOUN
Injuries PROPN
FAQ PROPN
and CCONJ
soda.berkeley.edu PROPN
archive NOUN
, PUNCT
this DET
month============================================================================a NUM
few ADJ
new ADJ
files NOUN
on ADP
the DET
soda.berkeley.edu PROPN
archive NOUN
    SPACE
the DET
TidBITS PROPN
" PUNCT
Caring VERB
for ADP
your PRON
wrists NOUN
" PUNCT
document NOUN
    SPACE
RSI PROPN
Network PROPN
# SYM
11 NUM
    SPACE
Advice NOUN
about ADP
" PUNCT
adverse ADJ
mechanical ADJ
tension NOUN
" PUNCT
    SPACE
More ADJ
details NOUN
about ADP
the DET
new ADJ
Apple PROPN
keyboard NOUN
    SPACE
more ADJ
info NOUN
about ADP
carpal ADJ
tunnel PROPN
syndrome NOUN
( PUNCT
carpal.explained PROPN
) PUNCT
    SPACE
more ADJ
general ADJ
info NOUN
about ADP
RSI PROPN
( PUNCT
rsi.details PROPN
, PUNCT
rsi.physical PROPN
) PUNCT
    SPACE
marketing NOUN
info NOUN
on ADP
the DET
Vertical ADJ
    SPACE
MacWeek PROPN
article NOUN
the DET
Batnew ADJ
details NOUN
on ADP
hooking VERB
a DET
normal ADJ
PC NOUN
keyboard NOUN
to ADP
an DET
RS/6000updated ADJ
pricing NOUN
info NOUN
on ADP
the DET
DataHand PROPN
and CCONJ
ComfortHalf PROPN
- PUNCT
QWERTY PROPN
now ADV
available ADJ
for ADP
anonymous ADJ
ftp NOUN
on ADP
explorer.dgp.toronto.edunew PRON
GIF PROPN
picutures NOUN
! PUNCT
    SPACE
The DET
Apple PROPN
Adjustable PROPN
Keyboard PROPN
    SPACE
The DET
Key PROPN
Tronic PROPN
FlexPro PROPN
    SPACE
another DET
picture NOUN
of ADP
the DET
Kinesis PROPN
    SPACE
The DET
Vertical ADJ
    SPACE
The DET
Tony!============================================================================If NOUN
you PRON
'd AUX
like VERB
to PART
receive VERB
a DET
copy NOUN
of ADP
the DET
FAQ PROPN
and CCONJ
you PRON
did AUX
n't PART
find VERB
it PRON
in ADP
thesame ADJ
place NOUN
you PRON
found VERB
this DET
document NOUN
, PUNCT
you PRON
can AUX
either CCONJ
send VERB
e NOUN
- NOUN
mail NOUN
to ADP
dwallach@cs.berkeley.edu PROPN
, PUNCT
or CCONJ
you PRON
can AUX
anonymous VERB
ftp NOUN
to ADP
soda.berkeley.edu(128.32.149.19 PROPN
) PUNCT
and CCONJ
look VERB
in ADP
the DET
pub NOUN
/ SYM
typing NOUN
- PUNCT
injury NOUN
directory NOUN
. PUNCT
Enjoy!-- PROPN
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58578From NUM
: PUNCT
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Subject X
: PUNCT
FAQ PROPN
: PUNCT
Typing NOUN
Injuries PROPN
( PUNCT
2/4 NUM
) PUNCT
: PUNCT
General PROPN
Info PROPN
[ PUNCT
monthly ADJ
posting]Archive ADJ
- PUNCT
name NOUN
: PUNCT
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
generalVersion NOUN
: PUNCT
$ SYM
Revision NOUN
: PUNCT
4.28 NUM
$ SYM
$ SYM
Date NOUN
: PUNCT
1993/04/13 NUM
04:17:58 NUM
$ SYM
------------------------------------------------------------------------------- PUNCT
         SPACE
Answers NOUN
To ADP
Frequently ADV
Asked VERB
Questions PROPN
about ADP
Typing VERB
Injuries-------------------------------------------------------------------------------The PROPN
Typing PROPN
Injury PROPN
FAQ PROPN
-- PUNCT
sources NOUN
of ADP
information NOUN
for ADP
people NOUN
with ADP
typinginjuries NOUN
, PUNCT
repetitive ADJ
stress NOUN
injuries NOUN
, PUNCT
carpal ADJ
tunnel PROPN
syndrome NOUN
, PUNCT
etc X
. PUNCT
Copyright NOUN
1992,1993 NOUN
by ADP
Dan PROPN
Wallach PROPN
< X
dwallach@cs.berkeley.edu>Many NOUN
FAQs NOUN
, PUNCT
including VERB
this DET
one NOUN
, PUNCT
are AUX
available ADJ
on ADP
the DET
archive ADJ
sitepit-manager.mit.edu PROPN
( PUNCT
alias PROPN
rtfm.mit.edu PROPN
) PUNCT
[ PUNCT
18.172.1.27 NUM
] PUNCT
in ADP
the DET
directorypub NOUN
/ SYM
usenet PROPN
/ SYM
news.answers NOUN
. PUNCT
  SPACE
The DET
name NOUN
under ADP
which PRON
a DET
FAQ PROPN
is AUX
archived VERB
appearsin PROPN
the DET
Archive ADJ
- PUNCT
name NOUN
line NOUN
at ADP
the DET
top NOUN
of ADP
the DET
article NOUN
. PUNCT
  SPACE
This DET
FAQ PROPN
is AUX
archivedas ADV
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ SYM
general NOUN
. PUNCT
ZThere PROPN
's AUX
a DET
mail NOUN
server NOUN
also ADV
. PUNCT
  SPACE
Just ADV
e ADJ
- PUNCT
mail NOUN
mail-server@pit-manager.mit.eduwith NOUN
the DET
word NOUN
' PUNCT
help NOUN
' PUNCT
on ADP
a DET
line NOUN
by ADP
itself PRON
in ADP
the DET
body NOUN
. PUNCT
The DET
opinions NOUN
in ADP
here ADV
are AUX
my PRON
own ADJ
, PUNCT
unless SCONJ
otherwise ADV
mentioned VERB
, PUNCT
and CCONJ
do AUX
notrepresent VERB
the DET
opinions NOUN
of ADP
any DET
organization NOUN
or CCONJ
vendor NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
a DET
medicaldoctor NOUN
, PUNCT
so CCONJ
my PRON
advice NOUN
should AUX
be AUX
taken VERB
with ADP
many ADJ
grains NOUN
of ADP
salt.[Current NUM
distribution NOUN
: PUNCT
sci.med.occupational PROPN
, PUNCT
sci.med PUNCT
, PUNCT
comp.human-factors PROPN
, PUNCT
{ PUNCT
news NOUN
, PUNCT
sci PROPN
, PUNCT
comp}.answers PROPN
, PUNCT
and CCONJ
e NOUN
- NOUN
mail NOUN
to ADP
c+health@iubvm.ucs.indiana.edu PROPN
, PUNCT
sorehand@vm.ucsf.edu PROPN
, PUNCT
and CCONJ
cstg-L@vtvm1.cc.vt.edu]Changes NOUN
since SCONJ
previously ADV
distributed VERB
versions NOUN
are AUX
marked VERB
with ADP
change NOUN
        SPACE
||bars NOUN
to ADP
the DET
right NOUN
of ADP
the DET
text NOUN
, PUNCT
as SCONJ
is AUX
this DET
paragraph NOUN
. PUNCT
                        SPACE
||Table ADJ
of ADP
Contents NOUN
: PUNCT
    SPACE
= SYM
= PUNCT
1== NUM
Mailing PROPN
lists NOUN
, PUNCT
newsgroups NOUN
, PUNCT
etc X
. PUNCT
    SPACE
= PUNCT
= PUNCT
2== NUM
The DET
soda.berkeley.edu PROPN
archive ADJ
    SPACE
= PUNCT
= SYM
3== NUM
General ADJ
info NOUN
on ADP
injuries NOUN
    SPACE
= PUNCT
= PUNCT
4== NUM
Typing NOUN
posture NOUN
, PUNCT
ergonomics NOUN
, PUNCT
prevention NOUN
, PUNCT
treatment NOUN
    SPACE
= PUNCT
= PUNCT
5== NUM
Requests PROPN
for ADP
more ADJ
info NOUN
    SPACE
= PUNCT
= PUNCT
6== NOUN
References==1== VERB
Mailing PROPN
lists NOUN
, PUNCT
newsgroups NOUN
, PUNCT
etc X
. PUNCT
USENET PROPN
News:-----------comp.human NOUN
- PUNCT
factors NOUN
occasionally ADV
has AUX
discussion NOUN
about ADP
alternative ADJ
input NOUN
devices.comp.risks PROPN
has AUX
an DET
occasional ADJ
posting NOUN
relevant ADJ
to ADP
injuries NOUN
via ADP
computers.sci.med PROPN
and CCONJ
misc.handicap PROPN
also ADV
tend VERB
to PART
have AUX
relevant ADJ
traffic NOUN
. PUNCT
There PRON
's AUX
a DET
Brand PROPN
New ADJ
newsgroup NOUN
, PUNCT
sci.med.occupational PROPN
, PUNCT
chartered VERB
specificallyto PROPN
discuss VERB
these DET
things NOUN
. PUNCT
  SPACE
This DET
would AUX
be AUX
the DET
recommended VERB
place NOUN
to PART
post VERB
. PUNCT
Mailing VERB
lists:-------------The NUM
RSI PROPN
Network PROPN
: PUNCT
Available ADJ
both DET
on ADP
paper NOUN
and CCONJ
via ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
this DET
publication NOUN
    SPACE
covers VERB
issues NOUN
relevant ADJ
to ADP
those DET
with ADP
repetitive ADJ
stress NOUN
injuries NOUN
. PUNCT
  SPACE
For ADP
    SPACE
a DET
sample NOUN
issue NOUN
and CCONJ
subscription NOUN
information NOUN
, PUNCT
send VERB
a DET
stamped VERB
, PUNCT
self- ADJ
    SPACE
addressed VERB
business NOUN
envelope NOUN
to ADP
Caroline PROPN
Rose PROPN
, PUNCT
970 NUM
Paradise PROPN
Way PROPN
, PUNCT
Palo PROPN
    SPACE
Alto PROPN
CA PROPN
94306 NUM
. PUNCT
    SPACE
E NOUN
- NOUN
mail NOUN
to ADP
< X
crose@applelink.apple.com X
> X
    SPACE
$ SYM
2 NUM
donation NOUN
, PUNCT
requested VERB
. PUNCT
    SPACE
All DET
RSI PROPN
Network PROPN
newsletters NOUN
are AUX
available ADJ
via ADP
anonymous ADJ
ftp NOUN
from ADP
    SPACE
soda.berkeley.edu NOUN
( PUNCT
see VERB
below ADV
for ADP
details).c+health PROPN
and CCONJ
sorehand PROPN
are AUX
both DET
IBM PROPN
Listserv PROPN
things NOUN
. PUNCT
  SPACE
For ADP
those DET
familiar ADJ
    SPACE
with ADP
Listserv PROPN
, PUNCT
here ADV
's AUX
the DET
quick ADJ
info NOUN
: PUNCT
    SPACE
c+health NOUN
-- PUNCT
subscribe NOUN
to ADP
listserv@iubvm.ucs.indiana.edu PROPN
		 SPACE
post PROPN
to ADP
c+health@iubvm.ucs.indiana.edu PROPN
    SPACE
sorehand NOUN
-- PUNCT
subscribe VERB
to ADP
listserv@vm.ucsf.edu PROPN
		 SPACE
post NOUN
to ADP
sorehand@vm.ucsf.eduQuick VERB
tutorial NOUN
on ADP
subscribing VERB
to ADP
a DET
Listserv PROPN
: PUNCT
    SPACE
% NOUN
mail NOUN
listserv@vm.ucsf.edu PROPN
    SPACE
Subject NOUN
: PUNCT
Total ADJ
Listserv PROPN
Mania PROPN
! PUNCT
    SPACE
SUBSCRIBE PROPN
SOREHAND PROPN
J. PROPN
Random PROPN
Hacker PROPN
    SPACE
INFO PROPN
? PUNCT
    SPACE
.That PROPN
's AUX
all DET
there PRON
is AUX
to ADP
it PRON
. PUNCT
  SPACE
You PRON
'll AUX
get AUX
bunches NOUN
of ADP
mail NOUN
back ADV
from ADP
the DET
Listserv PROPN
, PUNCT
including VERB
a DET
list NOUN
of ADP
other ADJ
possible ADJ
commands NOUN
you PRON
can AUX
mail VERB
. PUNCT
  SPACE
Cool INTJ
, PUNCT
huh INTJ
? PUNCT
  SPACE
What'llthose NOUN
BITNET NOUN
people NOUN
think VERB
of ADP
, PUNCT
next?==2== ADP
The DET
soda.berkeley.edu PROPN
archiveI've PROPN
started VERB
an DET
archive ADJ
site NOUN
for ADP
info NOUN
related VERB
to ADP
typing NOUN
injuries NOUN
. PUNCT
  SPACE
Justanonymous ADJ
ftp NOUN
to ADP
soda.berkeley.edu:pub/typing-injury PROPN
. PROPN
  SPACE
( PUNCT
128.32.149.19)Currently ADV
, PUNCT
you PRON
'll AUX
find VERB
: PUNCT
Informative ADJ
files NOUN
: PUNCT
    SPACE
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq/ PROPN
        SPACE
general ADJ
           SPACE
-- PUNCT
information NOUN
about ADP
typing NOUN
injuries NOUN
        SPACE
keyboards NOUN
         SPACE
-- PUNCT
products NOUN
to PART
replace VERB
your PRON
keyboard NOUN
        SPACE
software NOUN
          SPACE
-- PUNCT
software NOUN
to PART
watch VERB
your PRON
keyboard NOUN
usage NOUN
	 SPACE
changes NOUN
		   SPACE
-- PUNCT
changes NOUN
since SCONJ
last ADJ
month NOUN
's PART
edition NOUN
( PUNCT
new ADJ
! PUNCT
) PUNCT
	     SPACE
|| PROPN
    SPACE
keyboard NOUN
- PUNCT
commentary NOUN
   SPACE
-- PUNCT
Dan PROPN
's PART
opinions NOUN
on ADP
the DET
keyboard NOUN
replacements VERB
    SPACE
amt.advice ADJ
		   SPACE
-- PUNCT
about ADP
Adverse ADJ
Mechanical PROPN
Tension PROPN
    SPACE
caringforwrists.sit.hqx PROPN
-- PUNCT
PageMaker4 NUM
document NOUN
about ADP
your PRON
wrists NOUN
    SPACE
caringforwrists.ps PROPN
	   SPACE
-- PUNCT
PostScript PROPN
converted VERB
version NOUN
of ADP
above ADV
... PUNCT
    SPACE
carpal.info PROPN
           SPACE
-- PUNCT
info NOUN
on ADP
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
    SPACE
carpal.explained VERB
	   SPACE
-- PUNCT
very ADV
detailed ADJ
information NOUN
about ADP
CTS PROPN
    SPACE
carpal.surgery NOUN
	   SPACE
-- PUNCT
JAMA PROPN
article NOUN
on ADP
CTS PROPN
surgery NOUN
    SPACE
carpal.tidbits NOUN
	   SPACE
-- PUNCT
TidBITS NUM
article NOUN
on ADP
CTS PROPN
    SPACE
tendonitis.info PROPN
       SPACE
-- PUNCT
info NOUN
on ADP
Tendonitis PROPN
    SPACE
rsi.biblio NOUN
		   SPACE
-- PUNCT
bibliography NOUN
of ADP
RSI PROPN
- PUNCT
related VERB
publications NOUN
    SPACE
rsi PROPN
- PUNCT
network/ PROPN
* PUNCT
         SPACE
-- PUNCT
archive ADJ
of ADP
the DET
RSI PROPN
Network PROPN
newsletter NOUN
			      SPACE
( PUNCT
currently ADV
, PUNCT
containing VERB
issues NOUN
1 NUM
through ADP
11 NUM
) PUNCT
    SPACE
|| NUM
        SPACE
rsi.details PROPN
		   SPACE
-- PUNCT
long ADJ
detailed ADJ
information NOUN
about ADP
RSI PROPN
    SPACE
rsi.physical PROPN
	   SPACE
-- PUNCT
study NOUN
showing VERB
RSI PROPN
is AUX
n't PART
just ADV
psychological ADJ
    SPACE
Various ADJ
product NOUN
literature NOUN
: PUNCT
    SPACE
apple NOUN
- PUNCT
press NOUN
		   SPACE
-- PUNCT
press NOUN
release NOUN
on ADP
the DET
Apple PROPN
Adjustable PROPN
Keyboard PROPN
    SPACE
apple NOUN
- PUNCT
tidbits PROPN
	   SPACE
-- PUNCT
extensive ADJ
info NOUN
about ADP
Apple PROPN
's PART
Adjustable PROPN
Keybd PROPN
    SPACE
bat NOUN
- PUNCT
info NOUN
		   SPACE
-- PUNCT
MacWeek PROPN
review NOUN
on ADP
the DET
Bat PROPN
			     SPACE
|| PROPN
    SPACE
comfort- NOUN
* PUNCT
		   SPACE
-- PUNCT
marketing NOUN
info NOUN
on ADP
the DET
Comfort PROPN
Keyboard PROPN
    SPACE
datahand NOUN
- PUNCT
review NOUN
	   SPACE
-- PUNCT
detailed ADJ
opinions NOUN
of ADP
the DET
DataHand PROPN
    SPACE
datahand NOUN
- PUNCT
review2 NOUN
	   SPACE
-- PUNCT
follow VERB
- PUNCT
up NOUN
to ADP
above ADP
    SPACE
datahand ADJ
- PUNCT
desc NOUN
	   SPACE
-- PUNCT
description NOUN
of ADP
the DET
DataHand PROPN
's PART
appearance NOUN
    SPACE
kinesis NOUN
- PUNCT
review NOUN
	   SPACE
-- PUNCT
one NUM
user NOUN
's PART
personal ADJ
opinions NOUN
    SPACE
maltron- NOUN
* PUNCT
		   SPACE
-- PUNCT
marketing NOUN
info NOUN
on ADP
various ADJ
Maltron PROPN
products NOUN
    SPACE
maltron NOUN
- PUNCT
review PROPN
	   SPACE
-- PUNCT
one NUM
user NOUN
's PART
personal ADJ
opinions NOUN
    SPACE
vertical ADJ
- PUNCT
info NOUN
	   SPACE
-- PUNCT
marketing NOUN
info NOUN
on ADP
the DET
Vertical ADJ
( PUNCT
new ADJ
! PUNCT
) PUNCT
	     SPACE
||Programs PROPN
: PUNCT
    SPACE
( PUNCT
With ADP
the DET
exception NOUN
of ADP
accpak.exe PROPN
, PUNCT
everything PRON
here ADV
is AUX
distributed VERB
as SCONJ
     SPACE
source NOUN
to PART
be AUX
compiled VERB
with ADP
a DET
Unix PROPN
system NOUN
. PUNCT
  SPACE
Some DET
programs NOUN
take VERB
advantage NOUN
     SPACE
of ADP
the DET
X NOUN
window NOUN
system NOUN
, PUNCT
also ADV
. PUNCT
) PUNCT
    SPACE
hsh.shar NOUN
		   SPACE
-- PUNCT
a DET
program NOUN
for ADP
one NUM
- PUNCT
handed ADJ
usage NOUN
of ADP
normal ADJ
keyboards NOUN
    SPACE
typewatch.shar NOUN
	   SPACE
-- PUNCT
tells VERB
you PRON
when ADV
to PART
take VERB
a DET
break NOUN
    SPACE
xdvorak.c NUM
		   SPACE
-- PUNCT
turns VERB
your PRON
QWERTY PROPN
keyboard NOUN
into ADP
Dvorak PROPN
    SPACE
xidle.shar PROPN
		   SPACE
-- PUNCT
keeps VERB
track NOUN
of ADP
how ADV
long ADV
you PRON
've AUX
been AUX
typing VERB
    SPACE
rest-reminder.sh PROPN
      SPACE
-- PUNCT
yet ADV
another DET
idle ADJ
watcher NOUN
    SPACE
kt15.tar PUNCT
 		   SPACE
-- PUNCT
generates VERB
fake ADJ
X NOUN
keyboard NOUN
events NOUN
from ADP
the DET
			      SPACE
serial ADJ
port NOUN
-- PUNCT
use VERB
a DET
PC NOUN
keyboard NOUN
on ADP
anything PRON
! PUNCT
			      SPACE
( PUNCT
new ADJ
improved ADJ
version NOUN
! PUNCT
) PUNCT
    SPACE
accpak.exe PUNCT
		   SPACE
-- PUNCT
a DET
serial ADJ
port NOUN
keyboard NOUN
spoofer NOUN
for ADP
MS PROPN
Windows PROPN
    SPACE
( PUNCT
Note VERB
: PUNCT
a2x.tar PROPN
and CCONJ
rk.tar PROPN
are AUX
both DET
from ADP
export.lcs.mit.edu:contrib/ PUNCT
     SPACE
so ADV
they PRON
may AUX
have AUX
a DET
more ADV
current ADJ
version NOUN
than SCONJ
soda PROPN
. PUNCT
) PUNCT
    SPACE
a2x.tar PROPN
 		   SPACE
-- PUNCT
a DET
more ADV
sophisticated ADJ
X NOUN
keyboard NOUN
/ SYM
mouse NOUN
spoofing NOUN
			      SPACE
program NOUN
. PUNCT
  SPACE
Supports PROPN
DragonDictate PROPN
. PUNCT
			      SPACE
( PUNCT
note NOUN
: PUNCT
a DET
new ADJ
version NOUN
is AUX
now ADV
available ADJ
) PUNCT
	     SPACE
|| NUM
    SPACE
rk.tar NOUN
 		   SPACE
-- PUNCT
the DET
reactive NOUN
keyboard NOUN
-- PUNCT
predicts VERB
what PRON
you PRON
'll AUX
			      SPACE
type VERB
next ADV
-- PUNCT
saves VERB
typingPictures NOUN
( PUNCT
in ADP
the DET
gifs NOUN
subdirectory NOUN
) PUNCT
: PUNCT
    SPACE
howtosit.gif PROPN
	   SPACE
-- PUNCT
picture NOUN
of ADP
good ADJ
sitting VERB
posture NOUN
			      SPACE
( PUNCT
the DET
caringforwrists NOUN
document NOUN
is AUX
better ADJ
for ADP
this DET
) PUNCT
    SPACE
accukey1.gif PROPN
	   SPACE
-- PUNCT
fuzzy ADJ
picture NOUN
    SPACE
accukey2.gif PROPN
	   SPACE
-- PUNCT
fuzzy ADJ
picture NOUN
with ADP
somebody PRON
using VERB
it PRON
    SPACE
apple.gif PROPN
		   SPACE
-- PUNCT
the DET
Apple PROPN
Adjustable PROPN
Keyboard PROPN
		     SPACE
|| NOUN
    SPACE
bat.gif NOUN
               SPACE
-- PUNCT
the DET
InfoGrip PROPN
Bat PROPN
    SPACE
comfort.gif PROPN
           SPACE
-- PUNCT
the DET
Health PROPN
Care PROPN
Comfort PROPN
Keyboard PROPN
    SPACE
datahand1.gif PROPN
	   SPACE
-- PUNCT
fuzzy ADJ
picture NOUN
    SPACE
datahand2.gif PROPN
	   SPACE
-- PUNCT
key ADJ
layout NOUN
schematic NOUN
    SPACE
datahand3.gif PROPN
	   SPACE
-- PUNCT
a DET
much ADV
better ADJ
picture NOUN
of ADP
the DET
datahand NOUN
    SPACE
flexpro.gif PUNCT
		   SPACE
-- PUNCT
the DET
Key PROPN
Tronic PROPN
FlexPro PROPN
keyboard NOUN
		     SPACE
|| NUM
    SPACE
kinesis1.gif PROPN
          SPACE
-- PUNCT
the DET
Kinesis PROPN
Ergonomic PROPN
Keyboard PROPN
    SPACE
kinesis2.gif PROPN
	   SPACE
-- PUNCT
multiple ADJ
views NOUN
of ADP
the DET
Kinesis PROPN
		     SPACE
|| NOUN
    SPACE
maltron[1 PROPN
- PUNCT
4].gif NUM
      SPACE
-- PUNCT
several ADJ
pictures NOUN
of ADP
Maltron PROPN
products NOUN
    SPACE
mikey1.gif PROPN
            SPACE
-- PUNCT
the DET
MIKey PROPN
    SPACE
mikey2.gif PROPN
            SPACE
-- PUNCT
Schematic PROPN
Picture PROPN
of ADP
the DET
MIKey PROPN
    SPACE
tony.gif PROPN
		   SPACE
-- PUNCT
The DET
Tony PROPN
! PUNCT
Ergonomic PROPN
Keysystem PROPN
		     SPACE
|| PROPN
    SPACE
twiddler1.gif PROPN
	   SPACE
-- PUNCT
" PUNCT
front ADJ
" PUNCT
view NOUN
    SPACE
twiddler2.gif PROPN
	   SPACE
-- PUNCT
" PUNCT
side NOUN
" PUNCT
view NOUN
    SPACE
vertical.gif PROPN
	   SPACE
-- PUNCT
the DET
Vertical ADJ
keyboard NOUN
			     SPACE
|| NUM
    SPACE
wave.gif PROPN
		   SPACE
-- PUNCT
the DET
Iocomm PROPN
` PUNCT
Wave PROPN
' PUNCT
keyboardMany ADJ
files NOUN
are AUX
compressed VERB
( PUNCT
have AUX
a DET
.Z PUNCT
ending VERB
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
ca AUX
n't PART
uncompress VERB
a DET
filelocally ADV
, PUNCT
soda NOUN
will AUX
do AUX
it PRON
. PUNCT
  SPACE
Just ADV
ask VERB
for ADP
the DET
file NOUN
, PUNCT
without ADP
the DET
.Z PUNCT
extension NOUN
. PUNCT
If SCONJ
you PRON
're AUX
unable ADJ
to PART
ftp VERB
to ADP
soda NOUN
, PUNCT
send VERB
me PRON
e NOUN
- NOUN
mail NOUN
and CCONJ
we PRON
'll AUX
see VERB
what PRON
wecan PROPN
arrange.==3== VERB
General ADJ
info NOUN
on ADP
injuriesFirst ADV
, PUNCT
and CCONJ
foremost ADV
of ADP
importance NOUN
: PUNCT
if SCONJ
you PRON
experience VERB
pain NOUN
at ADV
all ADV
, PUNCT
thenyou NOUN
absolutely ADV
need VERB
to PART
go VERB
see VERB
a DET
doctor NOUN
. PUNCT
  SPACE
As ADV
soon ADV
as SCONJ
you PRON
possibly ADV
can AUX
. PUNCT
  SPACE
Thedifference NOUN
of ADP
a DET
day NOUN
or CCONJ
two NUM
can AUX
mean VERB
the DET
difference NOUN
between ADP
a DET
short ADJ
recoveryand NOUN
a DET
long ADJ
, PUNCT
drawn VERB
- PUNCT
out ADP
ordeal NOUN
. PUNCT
  SPACE
GO PROPN
SEE PROPN
A DET
DOCTOR PROPN
. PUNCT
  SPACE
Now ADV
, PUNCT
your PRON
garden NOUN
- PUNCT
varietydoctor NOUN
may AUX
not PART
necessarily ADV
be AUX
familiar ADJ
with ADP
this DET
sort NOUN
of ADP
injury NOUN
. PUNCT
  SPACE
Generally ADV
, PUNCT
any DET
hospital NOUN
with ADP
an DET
occupational ADJ
therapy NOUN
clinic NOUN
will AUX
offer VERB
specialists NOUN
inthese ADJ
kinds NOUN
of ADP
problems NOUN
. PUNCT
  SPACE
DON'T VERB
WAIT PROPN
, PUNCT
THOUGH PROPN
. PUNCT
  SPACE
GO PROPN
SEE PROPN
A DET
DOCTOR.The ADP
remainder NOUN
of ADP
this DET
information NOUN
is AUX
paraphrased ADJ
, PUNCT
without ADP
permission NOUN
, PUNCT
froma ADJ
wonderful ADJ
report NOUN
by ADP
New PROPN
Zealand PROPN
's PART
Department PROPN
of ADP
Labour PROPN
( PUNCT
OccupationalSafety PROPN
and CCONJ
Health PROPN
Service PROPN
) PUNCT
: PUNCT
" PUNCT
Occupational PROPN
Overuse PROPN
Syndrome PROPN
. PUNCT
Treatment NOUN
andRehabilitation PROPN
: PUNCT
A DET
Practitioner PROPN
's PART
Guide" PROPN
. PUNCT
First ADV
, PUNCT
a DET
glossary NOUN
( PUNCT
or CCONJ
, PUNCT
fancy ADJ
names NOUN
for ADP
how ADV
you PRON
should AUX
n't PART
have AUX
your PRON
hands):(note NOUN
: PUNCT
you PRON
're AUX
likely ADJ
to PART
hear VERB
these DET
terms NOUN
from ADP
doctors NOUN
and CCONJ
keyboard NOUN
vendors NOUN
:) PUNCT
  SPACE
RSI PROPN
: PUNCT
Repetitive PROPN
Strain PROPN
Injury PROPN
- PUNCT
a DET
general ADJ
term NOUN
for ADP
many ADJ
kinds NOUN
of ADP
injuries NOUN
  SPACE
OOS PROPN
: PUNCT
Occupational PROPN
Overuse PROPN
Syndrome PROPN
-- PUNCT
synonym NOUN
for ADP
RSI PROPN
  SPACE
CTD PROPN
: PUNCT
Cumulative PROPN
Trauma PROPN
Disorder PROPN
-- PUNCT
another DET
synonym NOUN
for ADP
RSI PROPN
  SPACE
WRULD PROPN
: PUNCT
Work NOUN
- PUNCT
Related VERB
Upper PROPN
Limb PROPN
Disorders PROPN
-- PUNCT
yet ADV
another DET
synonym NOUN
for ADP
RSI PROPN
  SPACE
CTS PROPN
: PUNCT
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
( PUNCT
see VERB
below ADV
) PUNCT
  SPACE
Hyperextension NOUN
: PUNCT
  SPACE
Marked VERB
bending VERB
at ADP
a DET
joint NOUN
. PUNCT
  SPACE
Pronation NOUN
: PUNCT
Turning VERB
the DET
palm NOUN
down ADV
. PUNCT
  SPACE
Wrist NOUN
extension NOUN
: PUNCT
Bending VERB
the DET
wrist NOUN
up ADP
. PUNCT
  SPACE
Supination NOUN
: PUNCT
Turning VERB
the DET
palm NOUN
up ADP
. PUNCT
  SPACE
Wrist NOUN
flexion NOUN
: PUNCT
Bending VERB
the DET
wrist NOUN
down ADV
. PUNCT
  SPACE
Pinch ADJ
grip NOUN
: PUNCT
The DET
grip NOUN
used VERB
for ADP
a DET
pencil NOUN
. PUNCT
  SPACE
Ulnar ADJ
deviation NOUN
: PUNCT
Bending VERB
the DET
wrist NOUN
towards ADP
the DET
little ADJ
finger NOUN
. PUNCT
  SPACE
Power NOUN
grip NOUN
: PUNCT
The DET
grip NOUN
used VERB
for ADP
a DET
hammer NOUN
. PUNCT
  SPACE
Radial PROPN
Deviation PROPN
: PUNCT
Bending VERB
the DET
wrist NOUN
toward ADP
the DET
thumb NOUN
. PUNCT
  SPACE
Abduction NOUN
: PUNCT
Moving VERB
away ADV
from ADP
the DET
body NOUN
. PUNCT
  SPACE
Overspanning VERB
: PUNCT
Opening VERB
the DET
fingers NOUN
out ADV
wide ADV
. PUNCT
Now ADV
then ADV
, PUNCT
problems NOUN
come VERB
in ADP
two NUM
main ADJ
types NOUN
: PUNCT
Local ADJ
conditions NOUN
and CCONJ
diffuseconditions NOUN
. PUNCT
  SPACE
Local ADJ
problems NOUN
are AUX
what PRON
you PRON
'd AUX
expect VERB
: PUNCT
specific ADJ
muscles NOUN
, PUNCT
tendons NOUN
, PUNCT
tendon NOUN
sheaths NOUN
, PUNCT
nerves NOUN
, PUNCT
etc X
. PUNCT
being AUX
inflamed VERB
or CCONJ
otherwise ADV
hurt VERB
. PUNCT
Diffuse NOUN
conditions NOUN
, PUNCT
often ADV
mistaken VERB
for ADP
local ADJ
problems NOUN
, PUNCT
can AUX
involve VERB
musclediscomfort NOUN
, PUNCT
pain NOUN
, PUNCT
burning VERB
and/or CCONJ
tingling NOUN
; PUNCT
with ADP
identifiable ADJ
areas NOUN
oftenderness NOUN
in ADP
muscles NOUN
, PUNCT
although SCONJ
they PRON
're AUX
not PART
necessarily ADV
" PUNCT
the DET
problem NOUN
. PUNCT
"--- PUNCT
Why ADV
does AUX
Occupational PROPN
Overuse PROPN
Syndrome PROPN
occur VERB
? PUNCT
  SPACE
Here ADV
's AUX
the DET
theory NOUN
. PUNCT
Normally ADV
, PUNCT
your PRON
muscles NOUN
and CCONJ
tendons NOUN
get VERB
blood NOUN
through ADP
capillaries NOUN
whichpass VERB
among ADP
the DET
muscle NOUN
fibers NOUN
. PUNCT
  SPACE
When ADV
you PRON
tense VERB
a DET
muscle NOUN
, PUNCT
you PRON
restrictthe VERB
blood NOUN
flow NOUN
. PUNCT
  SPACE
By ADP
the DET
time NOUN
you PRON
're AUX
exerting VERB
50 NUM
% NOUN
of ADP
your PRON
full ADJ
power NOUN
, PUNCT
you're PRON
completely ADV
restricting VERB
your PRON
blood NOUN
flow NOUN
. PUNCT
Without ADP
fresh ADJ
blood NOUN
, PUNCT
your PRON
muscles NOUN
use VERB
stored VERB
energy NOUN
until ADP
they PRON
run VERB
out ADP
, PUNCT
then ADV
they PRON
switch VERB
to ADP
anaerobic PROPN
( PUNCT
without ADP
oxygen NOUN
) PUNCT
metabolism NOUN
, PUNCT
which PRON
generatesnasty PROPN
by ADP
- PUNCT
products NOUN
like SCONJ
lactic ADJ
acid NOUN
, PUNCT
which PRON
cause VERB
pain NOUN
. PUNCT
Once ADV
one NUM
muscle NOUN
hurts VERB
, PUNCT
all DET
its PRON
neighbors NOUN
tense ADJ
up ADP
, PUNCT
perhaps ADV
to PART
relieve VERB
theload NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
for ADP
your PRON
normal ADJ
sort NOUN
of ADP
injury NOUN
, PUNCT
but CCONJ
it PRON
only ADV
makesthings VERB
worse ADJ
with ADP
repetitive ADJ
motion NOUN
. PUNCT
  SPACE
More ADJ
tension NOUN
means VERB
less ADJ
blood NOUN
flow NOUN
, PUNCT
and CCONJ
the DET
cycle NOUN
continues VERB
. PUNCT
Another DET
by ADP
- PUNCT
product NOUN
of ADP
the DET
lack NOUN
of ADP
blood NOUN
flow NOUN
is AUX
tingling VERB
and CCONJ
numbness ADJ
fromyour ADJ
nerves NOUN
. PUNCT
  SPACE
They PRON
need VERB
blood NOUN
too ADV
. PUNCT
Anyway INTJ
, PUNCT
when ADV
you PRON
're AUX
typing VERB
too ADV
much ADV
, PUNCT
you PRON
're AUX
never ADV
really ADV
giving VERB
a DET
changefor NOUN
the DET
blood NOUN
to PART
get AUX
back ADV
where ADV
it PRON
belongs VERB
, PUNCT
because SCONJ
your PRON
muscles NOUN
neverrelax ADJ
enough ADV
to PART
let VERB
the DET
blood NOUN
through ADP
. PUNCT
  SPACE
Stress PROPN
, PUNCT
poor ADJ
posture NOUN
, PUNCT
and CCONJ
poorergonomics NOUN
, PUNCT
only ADV
make VERB
things NOUN
worse.--- PROPN
Specific ADJ
injuries NOUN
you PRON
may AUX
have AUX
heard VERB
of:(note NOUN
: PUNCT
most ADJ
injuries NOUN
come VERB
in ADP
two NUM
flavors NOUN
: PUNCT
acute ADJ
and CCONJ
chronic ADJ
. PUNCT
  SPACE
Acuteinjuries NOUN
are AUX
severely ADV
painful ADJ
and CCONJ
noticable ADJ
. PUNCT
  SPACE
Chronic PROPN
conditions NOUN
haveless VERB
pronounced ADJ
symptoms NOUN
but CCONJ
are AUX
every DET
bit NOUN
as SCONJ
real.)Tenosynovitis PROPN
-- PUNCT
an DET
inflamation NOUN
of ADP
the DET
tendon NOUN
sheath NOUN
. PUNCT
  SPACE
Chronic PROPN
tenosynovitisoccurs NOUN
when ADV
the DET
repetitive ADJ
activity NOUN
is AUX
mild ADJ
or CCONJ
intermittent ADJ
: PUNCT
not PART
enough ADJ
tocause NOUN
acute ADJ
inflamation NOUN
, PUNCT
but CCONJ
enough ADV
to PART
exceed VERB
the DET
tendon NOUN
sheath NOUN
's PART
abilityto PROPN
lubricate VERB
the DET
tendon NOUN
. PUNCT
  SPACE
As SCONJ
a DET
result NOUN
, PUNCT
the DET
tendon PROPN
sheath PROPN
thickens PROPN
, PUNCT
getsinflamed VERB
, PUNCT
and CCONJ
you PRON
've AUX
got VERB
your PRON
problem NOUN
. PUNCT
Tendonitis PROPN
-- PUNCT
an DET
inflammation NOUN
of ADP
a DET
tendon NOUN
. PUNCT
  SPACE
Repeated VERB
tensing NOUN
of ADP
a DET
tendoncan ADJ
cause NOUN
inflamation NOUN
. PUNCT
  SPACE
Eventually ADV
, PUNCT
the DET
fibers NOUN
of ADP
the DET
tendon NOUN
start VERB
separating VERB
, PUNCT
and CCONJ
can AUX
even ADV
break VERB
, PUNCT
leaving VERB
behind ADP
debris NOUN
which PRON
induces VERB
more ADJ
friction NOUN
, PUNCT
moreswelling NOUN
, PUNCT
and CCONJ
more ADJ
pain NOUN
. PUNCT
  SPACE
" PUNCT
Sub ADJ
- PUNCT
acute ADJ
" PUNCT
tendonitis NOUN
is AUX
more ADV
common ADJ
, PUNCT
which PRON
entailsa PROPN
dull ADJ
ache PROPN
over ADP
the DET
wrist NOUN
and CCONJ
forearm NOUN
, PUNCT
some DET
tenderness NOUN
, PUNCT
and CCONJ
it PRON
gets VERB
worsewith ADJ
repetitive ADJ
activity NOUN
. PUNCT
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
-- PUNCT
the DET
nerves NOUN
that PRON
run VERB
through ADP
your PRON
wrist NOUN
into ADP
yourfingers NOUN
get VERB
trapped VERB
by ADP
the DET
inflamed ADJ
muscles NOUN
around ADP
them PRON
. PUNCT
  SPACE
Symptoms NOUN
includefeeling VERB
" PUNCT
pins NOUN
and CCONJ
needles NOUN
" PUNCT
, PUNCT
tingling NOUN
, PUNCT
numbness NOUN
, PUNCT
and CCONJ
even ADV
loss NOUN
of ADP
sensation NOUN
. PUNCT
CTS PROPN
is AUX
often ADV
confused ADJ
for ADP
a DET
diffuse NOUN
condition NOUN
. PUNCT
Adverse ADJ
Mechanical PROPN
Tension PROPN
-- PUNCT
also ADV
known VERB
as SCONJ
' PUNCT
neural ADJ
tension NOUN
' PUNCT
, PUNCT
this DET
is AUX
wherethe NOUN
nerves NOUN
running VERB
down ADV
to ADP
your PRON
arm NOUN
have AUX
become VERB
contracted VERB
and CCONJ
possiblycompressed VERB
as SCONJ
a DET
result NOUN
of ADP
muscle NOUN
spasms NOUN
in ADP
the DET
shoulders NOUN
and CCONJ
elsewhere ADV
. PUNCT
AMT PROPN
can AUX
often ADV
misdiagnosed VERB
as SCONJ
or CCONJ
associated VERB
with ADP
one NUM
of ADP
the DET
other ADJ
OOS PROPN
disorders NOUN
. PUNCT
  SPACE
It PRON
is AUX
largely ADV
reversible ADJ
and CCONJ
can AUX
be AUX
treated VERB
with ADP
physiotherapy NOUN
( PUNCT
brachial ADJ
plexus NOUN
stretches NOUN
and CCONJ
trigger NOUN
point NOUN
therapy).Others NOUN
: PUNCT
for ADP
just ADV
about ADV
every DET
part NOUN
of ADP
your PRON
body NOUN
, PUNCT
there PRON
's AUX
a DET
fancy ADJ
name NOUN
fora PROPN
way NOUN
to PART
injure VERB
it PRON
. PUNCT
  SPACE
By ADP
now ADV
, PUNCT
you PRON
should AUX
be AUX
getting VERB
an DET
idea NOUN
of ADP
how ADV
OOSconditions NOUN
occur VERB
and CCONJ
why ADV
. PUNCT
  SPACE
Just ADV
be AUX
careful ADJ
: PUNCT
many ADJ
inexperienced VERB
doctorsmisdiagnose NOUN
problems NOUN
as SCONJ
Carpal PROPN
Tunnel PROPN
Syndrome PROPN
, PUNCT
when ADV
in ADP
reality NOUN
, PUNCT
youmay PROPN
have AUX
a DET
completely ADV
different ADJ
problem NOUN
. PUNCT
  SPACE
Always ADV
get AUX
a DET
second ADJ
opinionbefore ADJ
somebody PRON
does AUX
something PRON
drastic ADJ
to ADP
you PRON
( PUNCT
like SCONJ
surgery).==4== PROPN
Typing PROPN
posture NOUN
, PUNCT
ergonomics NOUN
, PUNCT
prevention NOUN
, PUNCT
treatmentThe PROPN
most ADV
important ADJ
element NOUN
of ADP
both DET
prevention NOUN
and CCONJ
recovery NOUN
is AUX
to ADP
reducetension NOUN
in ADP
the DET
muscles NOUN
and CCONJ
tendons NOUN
. PUNCT
  SPACE
This DET
requires VERB
learning VERB
how ADV
to PART
relax VERB
. PUNCT
If SCONJ
you PRON
're AUX
under ADP
a DET
load NOUN
of ADP
stress NOUN
, PUNCT
this DET
is AUX
doubly ADV
important ADJ
. PUNCT
  SPACE
Tune PROPN
outthe ADJ
world NOUN
and CCONJ
breath NOUN
deep ADJ
and CCONJ
regular ADJ
. PUNCT
  SPACE
Relaxing VERB
should AUX
become VERB
a DET
guidingprinciple NOUN
in ADP
your PRON
work NOUN
: PUNCT
every DET
three NUM
minutes NOUN
take VERB
a DET
three NUM
second ADJ
break NOUN
. PUNCT
EVERY DET
THREE NUM
MINUTES NOUN
, PUNCT
TAKE VERB
A DET
THREE NUM
SECOND NOUN
BREAK PROPN
. PUNCT
  SPACE
Really ADV
, PUNCT
do AUX
it PRON
everythree VERB
minutes NOUN
. PUNCT
  SPACE
It PRON
's AUX
also ADV
helpful ADJ
to PART
work VERB
in ADP
comfortable ADJ
surroundings NOUN
, PUNCT
calm VERB
down ADP
, PUNCT
and CCONJ
relax VERB
. PUNCT
If SCONJ
you PRON
ca AUX
n't PART
sleep VERB
, PUNCT
you PRON
really ADV
need VERB
to PART
focus VERB
on ADP
this DET
. PUNCT
  SPACE
Rest NOUN
, PUNCT
sleep NOUN
, PUNCT
andrelaxation NOUN
are AUX
really ADV
a DET
big ADJ
deal NOUN
. PUNCT
There PRON
are AUX
all DET
kinds NOUN
of ADP
other ADJ
treatments NOUN
, PUNCT
of ADP
course NOUN
. PUNCT
  SPACE
Drugs NOUN
can AUX
reduceinflamation NOUN
and CCONJ
pain NOUN
. PUNCT
  SPACE
Custom NOUN
- PUNCT
molded VERB
splints NOUN
can AUX
forcefully ADV
prevent VERB
badposture NOUN
. PUNCT
  SPACE
Surgery NOUN
can AUX
fix VERB
some DET
problems NOUN
. PUNCT
  SPACE
Exercise NOUN
can AUX
help VERB
strengthenyour VERB
muscles NOUN
. PUNCT
  SPACE
Regular ADJ
stretching NOUN
can AUX
help VERB
prevent VERB
injury NOUN
. PUNCT
  SPACE
Good ADJ
postureand NOUN
a DET
good ADJ
ergonomic ADJ
workspace NOUN
promote VERB
reduced VERB
tension NOUN
. PUNCT
  SPACE
Ice NOUN
or CCONJ
hot ADJ
- PUNCT
coldcontrast ADJ
baths NOUN
also ADV
reduce VERB
swelling VERB
. PUNCT
  SPACE
Only ADV
your PRON
doctor NOUN
can AUX
say VERB
what PRON
's AUX
bestfor ADP
you.--- PROPN
Posture PROPN
-- PUNCT
here ADV
are AUX
some DET
basic ADJ
guidelines NOUN
. PUNCT
  SPACE
[ PUNCT
I PRON
so ADV
liked VERB
the DET
way NOUN
this DET
waswritten VERB
in ADP
the DET
New PROPN
Zealand PROPN
book NOUN
that PRON
I PRON
'm AUX
lifting VERB
it PRON
almost ADV
verbatim ADV
fromAppendix PROPN
10 NUM
. PUNCT
-- PUNCT
dwallach NOUN
] PUNCT
. PUNCT
Let VERB
your PRON
shoulders NOUN
relax VERB
.. PUNCT
Let VERB
your PRON
elbows NOUN
swing VERB
free ADJ
.. PUNCT
Keep VERB
your PRON
wrists NOUN
straight ADV
.. PUNCT
Pull VERB
your PRON
chin NOUN
in ADP
to PART
look VERB
down ADV
- PUNCT
do AUX
n't PART
flop VERB
your PRON
head NOUN
forward ADV
.. PUNCT
Keep VERB
the DET
hollow ADJ
in ADP
the DET
base NOUN
of ADP
your PRON
spine NOUN
.. PUNCT
Try VERB
leaning VERB
back ADV
in ADP
the DET
chair NOUN
.. PUNCT
Do AUX
n't PART
slouch VERB
or CCONJ
slump VERB
forward ADV
.. PUNCT
Alter VERB
your PRON
posture NOUN
from ADP
time NOUN
to ADP
time NOUN
.. PUNCT
Every DET
20 NUM
minutes NOUN
, PUNCT
get AUX
up ADP
and CCONJ
bend VERB
your PRON
spine NOUN
backward ADV
. PUNCT
Set VERB
the DET
seat NOUN
height NOUN
, PUNCT
first ADV
. PUNCT
  SPACE
Your PRON
feet NOUN
should AUX
be AUX
flat ADJ
on ADP
the DET
floor NOUN
. PUNCT
  SPACE
There PRON
should AUX
be AUX
no DET
undue ADJ
pressure NOUN
on ADP
the DET
underside NOUN
of ADP
your PRON
thighs NOUN
near SCONJ
the DET
knees NOUN
, PUNCT
and CCONJ
your PRON
thighs NOUN
should AUX
not PART
slope VERB
too ADV
much ADV
. PUNCT
Now ADV
, PUNCT
draw VERB
yourself PRON
up ADP
to ADP
your PRON
desk NOUN
and CCONJ
see VERB
that SCONJ
its PRON
height NOUN
is AUX
comfortableto PROPN
work VERB
at ADP
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
short ADJ
, PUNCT
this DET
may AUX
be AUX
impossible ADJ
. PUNCT
  SPACE
The DET
beest ADJ
remedyis VERB
to PART
raise VERB
the DET
seat NOUN
height NOUN
and CCONJ
prevent VERB
your PRON
legs NOUN
from ADP
dangling VERB
by ADP
using VERB
afootrest NOUN
. PUNCT
Now ADV
, PUNCT
adjust VERB
the DET
backrest ADJ
height NOUN
so SCONJ
that SCONJ
your PRON
buttocks NOUN
fit VERB
into ADP
the DET
spacebetween NOUN
the DET
backrest ADJ
and CCONJ
the DET
seat NOUN
pan PROPN
. PUNCT
  SPACE
The DET
backrest ADJ
should AUX
support VERB
you PRON
inthe ADV
hollow ADJ
of ADP
your PRON
back NOUN
, PUNCT
so ADV
adjust VERB
its PRON
tilt NOUN
to PART
give VERB
firm ADJ
support NOUN
in ADP
thisarea NOUN
. PUNCT
If SCONJ
you PRON
operate VERB
a DET
keyboard NOUN
, PUNCT
you PRON
will AUX
be AUX
able ADJ
to PART
spend VERB
more ADJ
time NOUN
leaningback NOUN
, PUNCT
so CCONJ
experiment NOUN
with ADP
a DET
chair NOUN
with ADP
a DET
taller ADJ
backrest NOUN
, PUNCT
if SCONJ
available.[Now NUM
, PUNCT
I PRON
diverge VERB
a DET
little ADJ
from ADP
the DET
text]A ADJ
good ADJ
chair NOUN
makes VERB
a DET
big ADJ
difference NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
like VERB
your PRON
chair NOUN
, PUNCT
gofind VERB
a DET
better ADJ
one NUM
. PUNCT
  SPACE
You PRON
really ADV
want VERB
adjustments NOUN
for ADP
height NOUN
, PUNCT
back ADJ
angle NOUN
, PUNCT
back ADV
height NOUN
, PUNCT
and CCONJ
maybe ADV
even ADV
seat NOUN
tilt NOUN
. PUNCT
  SPACE
Most ADJ
arm NOUN
rests NOUN
seem VERB
to PART
get AUX
inthe DET
way NOUN
, PUNCT
although SCONJ
some DET
more ADV
expensive ADJ
chairs NOUN
have AUX
height VERB
adjustable ADJ
armrests NOUN
which PRON
you PRON
can AUX
also ADV
rotate VERB
out SCONJ
of ADP
the DET
way NOUN
. PUNCT
  SPACE
You PRON
should AUX
find VERB
a DET
goodstore NOUN
and CCONJ
play VERB
with ADP
all DET
these DET
chairs NOUN
-- PUNCT
pick VERB
one NUM
that PRON
's AUX
right ADJ
for ADP
you PRON
. PUNCT
In ADP
the DET
San PROPN
Francisco PROPN
Bay PROPN
Area PROPN
, PUNCT
I PRON
highly ADV
recommend VERB
" PUNCT
Just ADV
Chairs PROPN
. PUNCT
" PUNCT
  SPACE
Thename PROPN
says VERB
it PRON
all.--- PROPN
Keyboard PROPN
drawers NOUN
, PUNCT
wrist NOUN
pads NOUN
, PUNCT
and CCONJ
keyboard NOUN
replacements NOUN
: PUNCT
There PRON
is AUX
a DET
fair ADJ
amount NOUN
of ADP
controvery NOUN
on ADP
how ADV
to PART
get AUX
this DET
right NOUN
. PUNCT
  SPACE
For ADP
somepeople NOUN
, PUNCT
wrist NOUN
pads NOUN
seem VERB
to PART
work VERB
wonders NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
with ADP
good ADJ
posture NOUN
, PUNCT
youshouldn't CCONJ
be AUX
resting VERB
your PRON
wrists NOUN
on ADP
anything PRON
-- PUNCT
you PRON
would AUX
prefer VERB
yourkeyboard ADJ
to PART
be AUX
" PUNCT
right ADV
there ADV
" PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
drop VERB
your PRON
arms NOUN
at ADP
your PRON
side NOUN
and CCONJ
thenlift VERB
your PRON
hands NOUN
up ADP
at ADP
the DET
elbow NOUN
, PUNCT
you PRON
want VERB
your PRON
keyboard NOUN
under ADP
your PRON
handswhen NOUN
your PRON
elbows NOUN
are AUX
at ADP
about ADV
90 NUM
degrees NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
you PRON
want VERB
to ADP
avoidpronation NOUN
, PUNCT
wrist NOUN
extension NOUN
, PUNCT
and CCONJ
ulnar NOUN
deviation NOUN
at ADP
all DET
costs NOUN
. PUNCT
  SPACE
Wrist NOUN
padsmay NOUN
or CCONJ
may AUX
not PART
help VERB
at ADP
this DET
. PUNCT
  SPACE
You PRON
should AUX
get AUX
somebody PRON
else ADV
to PART
come VERB
andlook NOUN
at ADP
how ADV
you PRON
work VERB
: PUNCT
how ADV
you PRON
sit VERB
, PUNCT
how ADV
you PRON
type VERB
, PUNCT
and CCONJ
how ADV
you PRON
relax VERB
. PUNCT
  SPACE
It'soften ADV
easier ADJ
for ADP
somebody PRON
else ADV
to PART
notice VERB
your PRON
hunched ADJ
shoulders NOUN
ordeviated VERB
hands NOUN
. PUNCT
Some DET
argue VERB
that SCONJ
the DET
normal ADJ
, PUNCT
flat ADJ
keyboard NOUN
is AUX
antiquated VERB
and CCONJ
poorlydesigned VERB
. PUNCT
  SPACE
A DET
number NOUN
of ADP
replacements NOUN
are AUX
available ADJ
, PUNCT
on ADP
the DET
market NOUN
, PUNCT
today NOUN
. PUNCT
Check VERB
out ADP
the DET
accompanying ADJ
typing NOUN
- PUNCT
injury NOUN
- PUNCT
faq NOUN
/ PUNCT
keyboards NOUN
for ADP
much ADJ
detail.==5== ADJ
Requests NOUN
for ADP
more ADV
infoClearly ADV
, PUNCT
the DET
above ADJ
information NOUN
is AUX
incomplete ADJ
. PUNCT
  SPACE
The DET
typing NOUN
- PUNCT
injury NOUN
archiveis PROPN
incomplete ADJ
. PUNCT
  SPACE
There PRON
's AUX
always ADV
more ADJ
information NOUN
out ADV
there ADV
. PUNCT
  SPACE
If SCONJ
you PRON
'd AUX
liketo PROPN
submit VERB
something PRON
, PUNCT
please INTJ
send VERB
me PRON
mail NOUN
, PUNCT
and CCONJ
I PRON
'll AUX
gladly ADV
throw VERB
it PRON
in ADP
. PUNCT
If SCONJ
you PRON
'd AUX
like VERB
to PART
maintain VERB
a DET
list NOUN
of ADP
products NOUN
or CCONJ
vendors NOUN
, PUNCT
that PRON
would AUX
bewonderful VERB
! PUNCT
  SPACE
I PRON
'd AUX
love VERB
somebody PRON
to PART
make VERB
a DET
list NOUN
of ADP
chair NOUN
/ SYM
desk NOUN
vendors NOUN
. PUNCT
  SPACE
I'dlove PROPN
somebody PRON
to PART
make VERB
a DET
list NOUN
of ADP
doctors NOUN
. PUNCT
  SPACE
I PRON
'd AUX
love VERB
somebody PRON
to PART
edit VERB
theabove NOUN
sections NOUN
, PUNCT
looking VERB
for ADP
places NOUN
where ADV
I PRON
've AUX
obviously ADV
goofed.==6== VERB
ReferencesI NOUN
completely ADV
rewrote VERB
the DET
information NOUN
section NOUN
here ADV
, PUNCT
using VERB
a DET
wonderfulguide NOUN
produced VERB
in ADP
New PROPN
Zealand PROPN
by ADP
their PRON
Occupational PROPN
Safety PROPN
& CCONJ
HealthService PROPN
, PUNCT
a DET
service NOUN
of ADP
their PRON
Department PROPN
of ADP
Labour PROPN
. PUNCT
  SPACE
Special PROPN
thanksto VERB
the DET
authors NOUN
: PUNCT
Wigley PROPN
, PUNCT
Turner PROPN
, PUNCT
Blake PROPN
, PUNCT
Darby PROPN
, PUNCT
McInnes PROPN
, PUNCT
and CCONJ
Harding PROPN
. PUNCT
Semi ADJ
- ADJ
bibliographic ADJ
reference NOUN
: PUNCT
    SPACE
. PUNCT
Occupational PROPN
Overuse PROPN
Syndrome PROPN
    SPACE
. PUNCT
Treatment NOUN
and CCONJ
Rehabilitation PROPN
: PUNCT
      SPACE
A DET
Practitioner PROPN
's PART
Guide PROPN
        SPACE
Published VERB
by ADP
the DET
Occupational PROPN
Safety PROPN
and CCONJ
Health PROPN
Service PROPN
    SPACE
Department PROPN
of ADP
Labour PROPN
    SPACE
Wellington PROPN
, PUNCT
    SPACE
New PROPN
Zealand PROPN
. PUNCT
    SPACE
First PROPN
Edition PROPN
: PUNCT
June PROPN
1992 NUM
    SPACE
ISBN ADJ
0 NUM
- SYM
477 NUM
- PUNCT
3499 NUM
- SYM
3 NUM
    SPACE
Price NOUN
: PUNCT
$ SYM
9.95 NUM
( PUNCT
New PROPN
Zealand PROPN
$ PROPN
's PART
, PUNCT
of ADP
course)Thanks NOUN
to ADP
Richard PROPN
Donkin PROPN
< X
richardd@hoskyns.co.uk ADP
> X
for ADP
reviewing VERB
this DET
posting.-- ADP
Dan PROPN
Wallach PROPN
               SPACE
" PUNCT
One NUM
of ADP
the DET
most ADV
attractive ADJ
features NOUN
of ADP
a DET
Connectiondwallach@cs.berkeley.edu PROPN
  SPACE
Machine PROPN
is AUX
the DET
array NOUN
of ADP
blinking VERB
lights NOUN
on ADP
the DET
facesOffice NOUN
# NOUN
: PUNCT
510 NUM
- PUNCT
642 NUM
- PUNCT
9585 NUM
     SPACE
of ADP
its PRON
cabinet NOUN
. PUNCT
" PUNCT
-- PUNCT
CM PROPN
Paris PROPN
Ref PROPN
. PUNCT
Manual PROPN
, PUNCT
v6.0 PROPN
, PUNCT
p48.Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58719From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
MethodologyIn PROPN
article NOUN
< X
1993Apr11.015518.21198@sbcs.sunysb.edu INTJ
> X
mhollowa@ic.sunysb.edu PROPN
     SPACE
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C552Jv NOUN
. PUNCT
GGB@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
     SPACE
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes:>>I NOUN
would AUX
also ADV
like VERB
to PART
point VERB
out ADP
that SCONJ
most ADJ
of ADP
the DET
arguments NOUN
about ADP
science>>in PROPN
sci.med VERB
, PUNCT
sci.psychology PROPN
, PUNCT
etc X
. PUNCT
are AUX
not PART
about ADP
cases NOUN
where ADV
people NOUN
are>>rejecting VERB
scientific ADJ
argument NOUN
/ SYM
evidence NOUN
/ SYM
proof NOUN
. PUNCT
  SPACE
They PRON
are AUX
about ADP
cases NOUN
where>>no VERB
adequate ADJ
scientific ADJ
research NOUN
has AUX
been AUX
done VERB
. PUNCT
   SPACE
( PUNCT
In ADP
some DET
cases NOUN
, PUNCT
there ADV
is>>quite NOUN
a DET
bit NOUN
of ADP
evidence NOUN
, PUNCT
but CCONJ
it PRON
is AUX
n't PART
in ADP
a DET
format NOUN
to PART
fit VERB
doctrinaire>>conceptions NOUN
of ADP
what PRON
science NOUN
is AUX
. PUNCT
) PUNCT
  SPACE
> X
> X
Here ADV
it PRON
is AUX
again ADV
. PUNCT
  SPACE
This DET
indicates VERB
confusion NOUN
between ADP
" PUNCT
proof NOUN
" PUNCT
and CCONJ
the DET
process NOUN
> X
of ADP
doing VERB
science NOUN
. PUNCT
  SPACE
You PRON
are AUX
making VERB
precisely ADV
one NUM
of ADP
the DET
points NOUN
I PRON
wanted VERB
to PART
make VERB
. PUNCT
I PRON
fully ADV
agree VERB
with ADP
you PRON
that SCONJ
there PRON
is AUX
a DET
big ADJ
distinction NOUN
between ADP
the*process NUM
* PUNCT
of ADP
science NOUN
and CCONJ
the DET
end NOUN
result NOUN
. PUNCT
  SPACE
As SCONJ
an DET
end NOUN
result NOUN
of ADP
science NOUN
, PUNCT
one PRON
wants VERB
to PART
get AUX
results NOUN
that PRON
areobjectively ADV
verifiable ADJ
. PUNCT
  SPACE
But CCONJ
there PRON
is AUX
nothing PRON
objective ADJ
about ADP
the*process NUM
* PUNCT
of ADP
science NOUN
. PUNCT
  SPACE
If SCONJ
good ADJ
empirical ADJ
research NOUN
were AUX
done VERB
and CCONJ
showed VERB
that SCONJ
there PRON
is AUX
some DET
meritto NOUN
homeopathic ADJ
remedies NOUN
, PUNCT
this DET
would AUX
certainly ADV
be AUX
valuable ADJ
information NOUN
. PUNCT
But CCONJ
it PRON
would AUX
still ADV
not PART
mean VERB
that SCONJ
homeopathy NOUN
qualifies NOUN
as SCONJ
a DET
science NOUN
. PUNCT
  SPACE
Thisis NOUN
where ADV
you PRON
and CCONJ
I PRON
disagree VERB
with ADP
Turpin PROPN
. PUNCT
  SPACE
In ADP
order NOUN
to PART
have AUX
science NOUN
, PUNCT
onemust ADV
have AUX
a DET
theoretical ADJ
structure NOUN
that PRON
makes VERB
sense NOUN
, PUNCT
not PART
a DET
merecollection NOUN
of ADP
empirically ADV
validated VERB
random ADJ
hypotheses NOUN
. PUNCT
Experiment NOUN
and CCONJ
empirical ADJ
studies NOUN
are AUX
an DET
important ADJ
part NOUN
of ADP
science NOUN
, PUNCT
butthey NOUN
are AUX
merely ADV
the DET
culmination NOUN
of ADP
scientific ADJ
research NOUN
. PUNCT
  SPACE
The DET
mostimportant ADJ
part NOUN
of ADP
true ADJ
scientific ADJ
methodology NOUN
is AUX
SCIENTIFIC PROPN
THINKING NOUN
. PUNCT
  SPACE
Without ADP
this DET
, PUNCT
one PRON
does AUX
not PART
have AUX
any DET
hypotheses NOUN
worth ADJ
testing VERB
. PUNCT
  SPACE
( PUNCT
No INTJ
, PUNCT
hypotheses NOUN
do AUX
not PART
just ADV
leap VERB
out ADP
at ADP
you PRON
after ADP
you PRON
look VERB
at ADP
enough ADJ
data NOUN
. PUNCT
Nor CCONJ
do AUX
they PRON
simply ADV
come VERB
to ADP
you PRON
in ADP
a DET
flash NOUN
one NUM
day NOUN
while SCONJ
you PRON
're AUX
shaving VERB
orlooking VERB
out ADP
the DET
window NOUN
. PUNCT
  SPACE
At ADP
least ADJ
not PART
unless SCONJ
you PRON
've AUX
done VERB
a DET
lot NOUN
of ADP
reallygood NOUN
thinking VERB
beforehand ADV
. PUNCT
) PUNCT
  SPACE
The DET
difference NOUN
between ADP
a DET
Nobel PROPN
Prize PROPN
level NOUN
scientist NOUN
and CCONJ
a DET
mediocrescientist NOUN
does AUX
not PART
lie VERB
in ADP
the DET
quality NOUN
of ADP
their PRON
empirical ADJ
methodology NOUN
. PUNCT
  SPACE
It PRON
depends VERB
on ADP
the DET
quality NOUN
of ADP
their PRON
THINKING NOUN
. PUNCT
  SPACE
It PRON
really ADV
bothers VERB
me PRON
that SCONJ
so ADV
many ADJ
graduate NOUN
students NOUN
seem VERB
to PART
believe VERB
thatthey PRON
are AUX
doing VERB
science NOUN
merely ADV
because SCONJ
they PRON
are AUX
conducting VERB
empiricalstudies NOUN
. PUNCT
  SPACE
And CCONJ
it PRON
bothers VERB
me PRON
even ADV
more ADV
that SCONJ
there PRON
are AUX
many ADJ
fields NOUN
, PUNCT
such ADJ
ascertain NOUN
parts NOUN
of ADP
psychology NOUN
, PUNCT
where ADV
there PRON
seems VERB
to PART
be AUX
no DET
thinking NOUN
at ADV
all ADV
, PUNCT
but CCONJ
mere ADJ
studies NOUN
testing VERB
ad X
hoc X
hypotheses VERB
. PUNCT
  SPACE
And CCONJ
I PRON
'm AUX
especially ADV
offended VERB
by ADP
Russell PROPN
Turpin PROPN
's PART
repeated VERB
assertion NOUN
thatscience NOUN
amounts VERB
to ADP
nothing PRON
more ADJ
than SCONJ
avoiding VERB
mistakes NOUN
. PUNCT
  SPACE
Simply ADV
avoidingmistakes NOUN
does AUX
n't PART
get AUX
you PRON
anywhere ADV
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58758From NUM
: PUNCT
wright@duca.hi.com PROPN
( PUNCT
David PROPN
Wright)Subject NUM
: PUNCT
Re ADP
: PUNCT
NATURAL ADJ
ANTI NOUN
- PUNCT
cancer NOUN
/ SYM
AIDS PROPN
RemediesIn NOUN
article NOUN
< X
19604@pitt PROPN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:|In ADJ
article NOUN
< X
1993Apr6.165840.5703@cnsvax.uwec.edu NUM
> X
mcelwre@cnsvax.uwec.edu PROPN
writes:| NOUN
> X
     SPACE
The DET
biggest ADJ
reason NOUN
why ADV
the DET
cost NOUN
of ADP
medical ADJ
care NOUN
is AUX
so ADV
EXTREMELY PROPN
high ADJ
and|>increasing NOUN
is AUX
that SCONJ
NATURAL ADJ
methods NOUN
of ADP
treatment NOUN
and CCONJ
even ADV
diagnosis NOUN
are AUX
still|>being VERB
SYSTEMATICALLY NOUN
IGNORED NOUN
and CCONJ
SUPPRESSED VERB
by ADP
the DET
MONEY NOUN
- PUNCT
GRUBBING NOUN
and CCONJ
POWER-|>MONGERING ADP
" PUNCT
medical ADJ
" PUNCT
establishment.|That DET
's AUX
not PART
the DET
half NOUN
of ADP
it PRON
. PUNCT
  SPACE
Did AUX
you PRON
realize VERB
that SCONJ
all DET
medical ADJ
doctors NOUN
have|now X
been AUX
replaced VERB
by ADP
aliens?Yup NOUN
. PUNCT
  SPACE
By ADP
the DET
way NOUN
, PUNCT
what PRON
planet NOUN
are AUX
you PRON
from ADP
, PUNCT
and CCONJ
once SCONJ
you PRON
got VERB
here ADV
, PUNCT
didyou NOUN
encounter VERB
those DET
prejudices NOUN
against ADP
foreign ADJ
medical ADJ
graduates NOUN
? PUNCT
  SPACE
-- PUNCT
David PROPN
Wright PROPN
, PUNCT
Hitachi PROPN
Computer PROPN
Products PROPN
( PUNCT
America PROPN
) PUNCT
, PUNCT
Inc. PROPN
  SPACE
Waltham PROPN
, PUNCT
MA PROPN
     SPACE
wright@hicomb.hi.com PROPN
  SPACE
: PUNCT
: PUNCT
  SPACE
These DET
are AUX
my PRON
opinions NOUN
, PUNCT
not PART
necessarily ADV
      SPACE
Hitachi PROPN
's PART
, PUNCT
though SCONJ
they PRON
are AUX
the DET
opinions NOUN
of ADP
all DET
right ADJ
- PUNCT
thinking VERB
peopleNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58759From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qi2h1INNr3o@roundup.crhc.uiuc.edu NUM
> X
, PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Two NUM
different ADJ
Tuesdays PROPN
( PUNCT
two NUM
weeks NOUN
apart ADV
we PRON
used VERB
the DET
same ADJ
day NOUN
of ADP
the| PROPN
> X
week NOUN
just ADV
for ADP
consistancies NOUN
sake NOUN
) PUNCT
we PRON
ordered VERB
food NOUN
from ADP
the DET
local ADJ
| NOUN
> X
Chinese PROPN
take VERB
out ADV
- PUNCT
same ADJ
exact ADJ
food NOUN
except SCONJ
ONE NUM
of ADP
the DET
days NOUN
we PRON
had AUX
them| PROPN
> X
hold VERB
the DET
MSG PROPN
. PUNCT
  SPACE
I PRON
did AUX
not PART
know VERB
which PRON
time NOUN
the DET
food NOUN
was AUX
ordered VERB
without| PROPN
> X
the DET
MSG PROPN
but CCONJ
one NUM
time NOUN
I PRON
had AUX
the DET
reaction NOUN
and CCONJ
one NUM
time NOUN
I PRON
did AUX
not PART
. PUNCT
  SPACE
| ADP
> X
| ADP
> X
NOW ADV
- PUNCT
you PRON
can AUX
TRY VERB
to PART
tell VERB
me PRON
that SCONJ
it PRON
was AUX
n't PART
" PUNCT
scientific ADJ
" PUNCT
enough ADJ
and| PROPN
> X
that PRON
I PRON
have AUX
not PART
PROVEN ADJ
beyond ADP
the DET
shadow NOUN
of ADP
a DET
doubt NOUN
that PRON
I PRON
have AUX
a| VERB
> X
reaction NOUN
to ADP
MSG PROPN
- PUNCT
but CCONJ
it PRON
was AUX
proof ADJ
enough ADV
for ADP
ME PROPN
and CCONJ
I PRON
'll AUX
have AUX
you| PROPN
> X
know VERB
that SCONJ
I PRON
do AUX
NOT ADV
wish VERB
to PART
get AUX
sick ADJ
from ADP
eating VERB
food NOUN
thank VERB
you PRON
very| PROPN
> X
much ADV
. PUNCT
  SPACE
| ADP
> X
If SCONJ
you PRON
could AUX
not PART
tell VERB
which PRON
one NOUN
had AUX
MSG PROPN
, PUNCT
why ADV
restaurants NOUN
bother VERB
touse ADP
it PRON
at ADV
all ADV
? PUNCT
If SCONJ
you PRON
can AUX
taste VERB
the DET
difference NOUN
, PUNCT
psychological ADJ
reaction NOUN
might AUX
play VERB
a DET
role NOUN
. PUNCT
The DET
fact NOUN
is AUX
, PUNCT
MSG PROPN
is AUX
part NOUN
of ADP
natural ADJ
substance NOUN
. PUNCT
Everyone PRON
, PUNCT
I PRON
mean VERB
EVERYONE NOUN
, PUNCT
consumes VERB
certain ADJ
amount NOUN
of ADP
MSG PROPN
every DET
day NOUN
through ADP
regular ADJ
diet NOUN
withoutthe NOUN
synthesized VERB
MSG PROPN
additive NOUN
. PUNCT
Chinese PROPN
, PUNCT
and CCONJ
many ADJ
other ADJ
Asians PROPN
( PUNCT
Japanese PROPN
, PUNCT
Koreans PROPN
, PUNCT
etc X
) PUNCT
have AUX
usedMSG NUM
as SCONJ
flavor NOUN
enhancer NOUN
for ADP
two NUM
thousand NUM
years NOUN
. PUNCT
Do AUX
you PRON
believe VERB
thatthey PRON
knew VERB
how ADV
to PART
make VERB
MSG PROPN
from ADP
chemical NOUN
processes NOUN
? PUNCT
Not PART
. PUNCT
They PRON
justextracted VERB
it PRON
from ADP
natural ADJ
food NOUN
such ADJ
sea NOUN
food NOUN
and CCONJ
meat NOUN
broth NOUN
. PUNCT
Baring VERB
MSG PROPN
is AUX
just ADV
like SCONJ
baring VERB
sugar NOUN
which PRON
many ADJ
people NOUN
react VERB
to ADP
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58760From NUM
: PUNCT
cdm@pmafire.inel.gov PROPN
( PUNCT
Dale PROPN
Cook)Subject PROPN
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?In PROPN
article NOUN
< X
19607@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>A ADJ
recent ADJ
movie NOUN
, PUNCT
Lorenzo PROPN
's PART
Oil PROPN
, PUNCT
offers VERB
a DET
perfect ADJ
example NOUN
of ADP
what>>I'm NOUN
talking VERB
about ADP
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
n't PART
seen VERB
it PRON
, PUNCT
you PRON
should AUX
. PUNCT
  SPACE
It PRON
's AUX
not>>I NOUN
saw VERB
it PRON
. PUNCT
  SPACE
It PRON
is AUX
almost ADV
a DET
unique ADJ
case NOUN
in ADP
history NOUN
. PUNCT
  SPACE
First ADV
, PUNCT
ALD PROPN
> X
is AUX
a DET
rare ADJ
but CCONJ
fatal ADJ
disease NOUN
. PUNCT
[ PUNCT
... PUNCT
] PUNCT
> X
Their PRON
accomplishment NOUN
was AUX
significant ADJ
. PUNCT
  SPACE
( PUNCT
Of ADV
course ADV
, PUNCT
it PRON
was AUX
overplayed VERB
> X
in ADP
the DET
movie NOUN
for ADP
dramatic ADJ
effect NOUN
. PUNCT
  SPACE
The DET
oil NOUN
is AUX
not PART
curative ADJ
, PUNCT
and CCONJ
does AUX
n't PART
even ADV
> X
prevent VERB
progression NOUN
, PUNCT
only ADV
slows VERB
it PRON
. PUNCT
) PUNCT
There PRON
's AUX
a DET
pretty ADV
good ADJ
article NOUN
in ADP
the DET
the DET
March PROPN
6 NUM
, PUNCT
1993 NUM
New PROPN
Scientist PROPN
titled"Pouring VERB
cold ADJ
water NOUN
on ADP
Lorenzo PROPN
's PART
oil NOUN
" PUNCT
. PUNCT
  SPACE
The DET
article NOUN
states VERB
that SCONJ
researchhas PROPN
shown VERB
that SCONJ
the DET
oil NOUN
has AUX
no DET
discernable ADJ
effect NOUN
on ADP
the DET
progression NOUN
of ADP
thedisease NOUN
in ADP
patients NOUN
in ADP
which PRON
demyelination NOUN
has AUX
begun VERB
. PUNCT
  SPACE
In ADP
patients NOUN
withAMN PUNCT
( PUNCT
a DET
less ADV
acute ADJ
form NOUN
of ADP
the DET
same ADJ
disease NOUN
) PUNCT
there PRON
is AUX
some DET
improvementseen NOUN
in ADP
the DET
ability NOUN
of ADP
nerve NOUN
fibres NOUN
to PART
conduct VERB
impulses NOUN
. PUNCT
  SPACE
In ADP
ALD PROPN
patientswho NOUN
have AUX
not PART
yet ADV
begun VERB
demyelination NOUN
, PUNCT
the DET
jury NOUN
is AUX
still ADV
out.---Dale ADJ
CookNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58761From NUM
: PUNCT
ls8139@albnyvms.bitnet PROPN
( PUNCT
larry PROPN
silverberg)Subject PROPN
: PUNCT
podiatry NOUN
School PROPN
info?Hello INTJ
, PUNCT
I PRON
am AUX
planning VERB
on ADP
attending VERB
Podiatry PROPN
School PROPN
next ADJ
year NOUN
. PUNCT
I PRON
have AUX
narrowed VERB
my PRON
choices NOUN
to ADP
the DET
Pennsylvania PROPN
College PROPN
of ADP
PodiatricMedicine PROPN
, PUNCT
in ADP
Philadelphia PROPN
, PUNCT
or CCONJ
the DET
California PROPN
College PROPN
of ADP
PodiatricMedicine PROPN
in ADP
San PROPN
Francisco PROPN
. PUNCT
  SPACE
If SCONJ
anyone PRON
has AUX
any DET
information NOUN
or CCONJ
oppinions NOUN
about ADP
these DET
two NUM
schools NOUN
, PUNCT
pleasetell VERB
me PRON
. PUNCT
  SPACE
I PRON
am AUX
having VERB
a DET
hard ADJ
time NOUN
deciding VERB
which PRON
one NOUN
to PART
attend VERB
, PUNCT
and CCONJ
mustmake VERB
a DET
decision NOUN
very ADV
soon ADV
. PUNCT
  SPACE
thank VERB
you PRON
, PUNCT
Larry~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Live PROPN
From ADP
New PROPN
York PROPN
, PUNCT
It PRON
's AUX
SATURDAY PROPN
NIGHT PROPN
... PUNCT
Tonight NOUN
's PART
special ADJ
guest NOUN
: PUNCT
Lawrence PROPN
Silverberg PROPN
from ADP
The DET
State PROPN
University PROPN
of ADP
New PROPN
York PROPN
@ ADP
Albanyaka PROPN
: PUNCT
ls8139@gemini PROPN
. PUNCT
Albany.edu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58762From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?I PROPN
am AUX
posting VERB
to ADP
this DET
group NOUN
in ADP
hopes NOUN
of ADP
finding VERB
someone PRON
out SCONJ
there ADV
innetwork NOUN
newsland NOUN
who PRON
has AUX
heard VERB
of ADP
something PRON
similar ADJ
to ADP
what PRON
I PRON
am AUX
goingto PROPN
describe VERB
here ADV
. PUNCT
  SPACE
I PRON
have AUX
a DET
fourteen NUM
year NOUN
old ADJ
daugter NOUN
who PRON
experienceda VERB
seizure NOUN
on ADP
November PROPN
3 NUM
, PUNCT
1992 NUM
at ADP
6:45AM NUM
after ADP
eating VERB
Kellog PROPN
's PART
FrostedFlakes PROPN
. PUNCT
  SPACE
She PRON
is AUX
perfectly ADV
healthy ADJ
, PUNCT
had AUX
never ADV
experienced VERB
anything PRON
likethis ADV
before ADV
, PUNCT
and CCONJ
there PRON
is AUX
no DET
history NOUN
of ADP
seizures NOUN
in ADP
either DET
side NOUN
of ADP
thefamily PROPN
. PUNCT
  SPACE
All DET
the DET
tests NOUN
( PUNCT
EEG PROPN
, PUNCT
MRI PROPN
, PUNCT
EKG PROPN
) PUNCT
came VERB
out ADP
negative ADJ
so ADV
the DET
decisionwas NOUN
made VERB
to PART
do AUX
nothing PRON
and CCONJ
just ADV
wait VERB
to PART
see VERB
if SCONJ
it PRON
happened VERB
again ADV
. PUNCT
Well INTJ
, PUNCT
we PRON
were AUX
going VERB
along ADP
fine ADJ
and CCONJ
the DET
other ADJ
morning NOUN
, PUNCT
April PROPN
5 NUM
, PUNCT
she PRON
hada PROPN
bowl PROPN
of ADP
another DET
Kellog PROPN
's PART
frosted ADJ
kind NOUN
of ADP
cereal NOUN
, PUNCT
Fruit PROPN
Loops PROPN
( PUNCT
I PRON
amembarrassed VERB
to PART
admit VERB
that SCONJ
I PRON
even ADV
bought VERB
that DET
junk NOUN
but CCONJ
every DET
oncein NOUN
a DET
while NOUN
... PUNCT
) PUNCT
So ADV
I PRON
pour VERB
it PRON
in ADP
her PRON
bowl NOUN
and CCONJ
think VERB
" PUNCT
Oh INTJ
, PUNCT
oh INTJ
, PUNCT
this DET
is AUX
thesame ADJ
kind NOUN
of ADP
junk NOUN
she PRON
was AUX
eating VERB
when ADV
she PRON
had AUX
that DET
seizure NOUN
. PUNCT
" PUNCT
  SPACE
Ten NUM
minutes NOUN
later ADV
she PRON
had AUX
a DET
full ADJ
blown VERB
seizures NOUN
. PUNCT
This DET
was AUX
her PRON
first ADJ
exposureto NOUN
a DET
sugar NOUN
coated VERB
cereal NOUN
since SCONJ
the DET
last ADJ
seizure NOUN
. PUNCT
When ADV
I PRON
mentioned VERB
what PRON
she PRON
ate VERB
the DET
first ADJ
time NOUN
as SCONJ
a DET
possible ADJ
reason NOUN
forthe NOUN
seizure NOUN
the DET
neurologist NOUN
basically ADV
negated VERB
that SCONJ
as SCONJ
an DET
idea NOUN
. PUNCT
  SPACE
Nowafter PROPN
this DET
second ADJ
episode NOUN
, PUNCT
so ADV
similar ADJ
in ADP
nature NOUN
to ADP
the DET
first ADJ
, PUNCT
evenhe VERB
is AUX
scratching VERB
his PRON
head NOUN
. PUNCT
  SPACE
Once ADV
again ADV
her PRON
EEG PROPN
looks VERB
normal ADJ
which PRON
Iunderstand PROPN
can AUX
happen VERB
even ADV
when ADV
a DET
person NOUN
has AUX
a DET
seizure NOUN
. PUNCT
Once ADV
again ADV
we PRON
are AUX
waiting VERB
. PUNCT
I PRON
have AUX
been AUX
thinking VERB
that SCONJ
it PRON
would AUX
be AUX
goodto ADJ
get AUX
to ADP
as ADV
large ADJ
a DET
group NOUN
as SCONJ
possible ADJ
to PART
see VERB
if SCONJ
anyone PRON
has AUX
anyexperience NOUN
with ADP
this DET
kind NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
members NOUN
of ADP
the DET
medicalcommunity NOUN
are AUX
sometimes ADV
loathe VERB
to PART
admit VERB
the DET
importance NOUN
that SCONJ
diet NOUN
andfoods NOUN
play VERB
in ADP
our PRON
general ADJ
health NOUN
and CCONJ
well NOUN
- PUNCT
being NOUN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
as SCONJ
you PRON
canguess VERB
, PUNCT
I PRON
am AUX
worried ADJ
sick ADJ
about ADP
this DET
, PUNCT
and CCONJ
would AUX
appreciate VERB
any DET
ideasanyone NOUN
out ADV
there ADV
has AUX
. PUNCT
  SPACE
Sorry ADJ
to PART
be AUX
so ADV
wordy ADJ
but CCONJ
I PRON
wanted VERB
to PART
really ADV
getacross VERB
what PRON
is AUX
going VERB
on ADP
here ADV
. PUNCT
Thanks.--Sharon PROPN
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58763From NUM
: PUNCT
rogers@calamari.hi.com PROPN
( PUNCT
Andrew PROPN
Rogers)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.153729.13738@walter.bellcore.com PROPN
> X
jchen@ctt.bellcore.com X
writes:>Chinese NUM
, PUNCT
and CCONJ
many ADJ
other ADJ
Asians PROPN
( PUNCT
Japanese PROPN
, PUNCT
Koreans PROPN
, PUNCT
etc X
) PUNCT
have AUX
used VERB
> X
MSG PROPN
as SCONJ
flavor NOUN
enhancer NOUN
for ADP
two NUM
thousand NUM
years NOUN
. PUNCT
Do AUX
you PRON
believe VERB
that SCONJ
> X
they PRON
knew VERB
how ADV
to PART
make VERB
MSG PROPN
from ADP
chemical NOUN
processes NOUN
? PUNCT
Not PART
. PUNCT
They PRON
just ADV
> X
extracted VERB
it PRON
from ADP
natural ADJ
food NOUN
such ADJ
sea NOUN
food NOUN
and CCONJ
meat NOUN
broth NOUN
. PUNCT
And CCONJ
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
thatthe DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
notcause VERB
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
-extracted PROPN
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese PROPN
RestaurantSyndrome PROPN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it?AndrewNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58764From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes:>>What ADP
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene NOUN
rings NOUN
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic PROPN
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of ADP
> X
hypothesizing NOUN
. PUNCT
And CCONJ
has AUX
been AUX
rather ADV
thoroughly ADV
demolished VERB
as SCONJ
myth NOUN
by ADP
Robert PROPN
Scott PROPN
Root PROPN
- PUNCT
Bernstein PROPN
. PUNCT
  SPACE
See VERB
his PRON
book NOUN
, PUNCT
" PUNCT
Discovering VERB
" PUNCT
. PUNCT
  SPACE
Ring NOUN
structures NOUN
for ADP
benzenehad PROPN
been AUX
proposed VERB
before ADP
Kekule PROPN
' PUNCT
, PUNCT
after ADP
him PRON
, PUNCT
and CCONJ
at ADP
the DET
same ADJ
time NOUN
as SCONJ
him PRON
. PUNCT
The DET
current ADJ
models NOUN
do AUX
not PART
resemble VERB
Kekule PROPN
's PART
. PUNCT
  SPACE
Many ADJ
of ADP
the DET
predecessorsof NOUN
Kekule PROPN
's PART
structure NOUN
resemble VERB
the DET
modern ADJ
model NOUN
more ADJ
. PUNCT
I PRON
do AUX
n't PART
think VERB
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
is AUX
a DET
very ADV
useful ADJ
phrase NOUN
in ADP
a DET
discussionof NOUN
the DET
boundaries NOUN
of ADP
science NOUN
, PUNCT
except SCONJ
as SCONJ
a DET
proposed VERB
definiens NOUN
. PUNCT
  SPACE
Extra PROPN
- PUNCT
rationalis X
a DET
better ADJ
phrase NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
number NOUN
of ADP
well ADV
- PUNCT
known VERB
casesof ADJ
extra ADJ
- ADJ
rational ADJ
considerations NOUN
driving VERB
science NOUN
in ADP
a DET
useful ADJ
direction NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
Pasteur PROPN
discovered VERB
that SCONJ
racemic ADJ
acid NOUN
was AUX
a DET
mixture NOUN
ofenantiomers NOUN
( PUNCT
the DET
origin NOUN
of ADP
stereochemistry NOUN
) PUNCT
partly ADV
because SCONJ
he PRON
liked VERB
afriend PROPN
's PART
crank ADJ
theory NOUN
of ADP
chemical NOUN
action NOUN
. PUNCT
  SPACE
The DET
friend NOUN
was AUX
wrong ADJ
, PUNCT
butPasteur PROPN
's PART
discovery NOUN
stood VERB
. PUNCT
  SPACE
A DET
prior ADJ
investigator NOUN
( PUNCT
Mitscherlich PROPN
) PUNCT
, PUNCT
lookingat VERB
the DET
same ADJ
phenomenon NOUN
, PUNCT
had AUX
missed VERB
a DET
crucial ADJ
detail NOUN
; PUNCT
presumably ADV
because SCONJ
helacked VERB
Pasteur PROPN
's PART
motivation NOUN
to PART
find VERB
something PRON
that PRON
distinguished VERB
racemicacid VERB
from ADP
tartaric NOUN
( PUNCT
now ADV
we PRON
say VERB
: PUNCT
d X
- PUNCT
tartaric ADJ
) PUNCT
acid NOUN
. PUNCT
Again ADV
, PUNCT
Pasteur PROPN
discovered VERB
the DET
differential ADJ
fermentation NOUN
of ADP
enantiomers(tartaric ADJ
acid NOUN
again ADV
) PUNCT
not PART
because SCONJ
of ADP
some DET
rational ADJ
conviction NOUN
, PUNCT
but CCONJ
becausehe PROPN
was AUX
trying VERB
to PART
produce VERB
yeast NOUN
that PRON
lived VERB
on ADP
l NOUN
- PUNCT
tartaric NOUN
acid NOUN
. PUNCT
  SPACE
His PRON
notebookscontained VERB
fantasies NOUN
of ADP
becoming VERB
the DET
" PUNCT
Newton PROPN
of ADP
mirror NOUN
- PUNCT
image NOUN
life NOUN
, PUNCT
" PUNCT
whichhe PROPN
never ADV
admitted VERB
publically ADV
. PUNCT
Perhaps ADV
the DET
best ADJ
example NOUN
is AUX
the DET
discovery NOUN
that PRON
DNA PROPN
carries VERB
genes NOUN
. PUNCT
  SPACE
Averystarted VERB
this DET
work NOUN
because SCONJ
of ADP
one NUM
of ADP
his PRON
students NOUN
, PUNCT
and CCONJ
ardent ADJ
Anglophileand PROPN
Francophobe PROPN
Canadian PROPN
, PUNCT
defended VERB
Fred PROPN
Griffiths PROPN
' PART
discoveries NOUN
in ADP
mice NOUN
. PUNCT
Most ADJ
of ADP
Griffiths NOUN
' PART
critics NOUN
were AUX
French PROPN
, PUNCT
which PRON
decided VERB
the DET
issue NOUN
for ADP
thestudent NOUN
. PUNCT
  SPACE
Avery PROPN
told VERB
him PRON
to PART
replicate VERB
Griffiths NOUN
' PART
work NOUN
in ADP
vitro PROPN
, PUNCT
which PRON
thestudent NOUN
eventually ADV
did AUX
, PUNCT
whereupon DET
Avery PROPN
was AUX
convinced VERB
and CCONJ
started VERB
theresearch NOUN
program NOUN
which PRON
, PUNCT
in ADP
15 NUM
or CCONJ
so ADV
years NOUN
, PUNCT
produced VERB
the DET
famous ADJ
discovery(Avery NOUN
, PUNCT
MacLeod PROPN
, PUNCT
and CCONJ
McCarty PROPN
, PUNCT
JEM PROPN
1944).-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58765From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
1993Apr7.221357.12533@lamont.ldgo.columbia.edu NUM
> X
brenner@ldgo.columbia.edu PROPN
( PUNCT
carl PROPN
brenner PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
see VERB
the DET
ulterior ADJ
motive NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
easy ADJ
for ADP
me PRON
to PART
see VERB
it PRON
the DET
> X
> X
those DET
physicians NOUN
who PRON
call VERB
everything PRON
lyme NOUN
and CCONJ
treat VERB
everything PRON
. PUNCT
> X
> X
There PRON
is AUX
a DET
lot NOUN
of ADP
money NOUN
involved VERB
. PUNCT
> X
> X
	 SPACE
You PRON
keep VERB
bringing VERB
this DET
up ADP
. PUNCT
But CCONJ
I PRON
do AUX
n't PART
understand VERB
what PRON
's AUX
in ADP
it PRON
> X
financially ADV
for ADP
the DET
physician NOUN
to PART
go VERB
ahead ADV
and CCONJ
treat VERB
. PUNCT
Unless SCONJ
the DET
physician NOUN
> X
has AUX
an DET
investment NOUN
in ADP
( PUNCT
or CCONJ
is AUX
involved VERB
in ADP
some DET
kickback NOUN
scheme NOUN
with ADP
) PUNCT
the DET
> X
home PROPN
infusion NOUN
company NOUN
, PUNCT
where ADV
is AUX
the DET
financial ADJ
gain NOUN
for ADP
the DET
doctor?Well PROPN
, PUNCT
let VERB
me PRON
put VERB
it PRON
this DET
way NOUN
, PUNCT
based VERB
on ADP
my PRON
own ADJ
experience NOUN
. PUNCT
  SPACE
Ageneral ADJ
practitioner NOUN
with ADP
no DET
training NOUN
in ADP
infectious ADJ
diseases NOUN
, PUNCT
by ADP
establishing VERB
links NOUN
to ADP
the DET
" PUNCT
Lyme PROPN
community NOUN
" PUNCT
, PUNCT
treating VERB
patientswho PROPN
come VERB
to ADP
him PRON
wondering VERB
about ADP
lyme NOUN
or CCONJ
having VERB
decided VERB
theyhave ADJ
lyme NOUN
as SCONJ
if SCONJ
they PRON
did AUX
, PUNCT
saying VERB
that SCONJ
diseases NOUN
such ADJ
as SCONJ
MSare PROPN
probably ADV
spirochetal ADJ
, PUNCT
if SCONJ
not PART
Lyme PROPN
, PUNCT
giving VERB
talks NOUN
at ADP
meetingsof ADJ
users NOUN
groups NOUN
, PUNCT
validating VERB
the DET
feelings NOUN
of ADP
even ADJ
delusionalpatients NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
GP PROPN
can AUX
go VERB
from ADP
being AUX
a DET
run NOUN
- PUNCT
of ADP
- PUNCT
the DET
- PUNCT
mill$100K NOUN
/ SYM
yr INTJ
GP PROPN
to ADP
someone PRON
with ADP
lots NOUN
of ADP
patients NOUN
in ADP
the DET
hospitaland NOUN
getting VERB
expensive ADJ
infusions NOUN
that PRON
need VERB
monitoring NOUN
in ADP
hisoffice NOUN
, PUNCT
and CCONJ
making VERB
lots NOUN
of ADP
bread NOUN
. PUNCT
  SPACE
Also ADV
getting VERB
the DET
adulationof NOUN
many ADJ
who PRON
believe VERB
his PRON
is AUX
their PRON
only ADJ
hope NOUN
( PUNCT
if SCONJ
not PART
of ADP
cure NOUN
, PUNCT
then ADV
of ADP
control NOUN
) PUNCT
and CCONJ
seeing VERB
his PRON
name NOUN
in ADP
publications NOUN
put VERB
outby ADJ
support NOUN
groups NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
is AUX
a DET
definite ADJ
temptation.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58766From NUM
: PUNCT
ndallen@r-node.hub.org PROPN
( PUNCT
Nigel PROPN
Allen)Subject PROPN
: PUNCT
Water NOUN
supplies NOUN
vulnerable ADJ
to ADP
Milwaukee PROPN
- PUNCT
type NOUN
disease NOUN
outbreakHere NOUN
is AUX
a DET
press NOUN
release NOUN
from ADP
the DET
Natural PROPN
Resources PROPN
Defense PROPN
Council PROPN
. PUNCT
New PROPN
Data PROPN
Show PROPN
About ADV
100 NUM
Major ADJ
U.S. PROPN
Water PROPN
Supplies VERB
Vulnerable PROPN
ToMilwaukee PROPN
- PUNCT
Type PROPN
Disease PROPN
Outbreak PROPN
To ADP
: PUNCT
National PROPN
Desk PROPN
, PUNCT
Environment PROPN
Writer PROPN
Contact PROPN
: PUNCT
Erik PROPN
Olson PROPN
or CCONJ
Sarah PROPN
Silver PROPN
, PUNCT
202 NUM
- PUNCT
783 NUM
- PUNCT
7800 NUM
, PUNCT
both DET
          SPACE
of ADP
the DET
Natural PROPN
Resources PROPN
Defense PROPN
Council PROPN
   SPACE
WASHINGTON PROPN
, PUNCT
April PROPN
14 NUM
  SPACE
-- PUNCT
Internal ADJ
EPA PROPN
data NOUN
releasedtoday NOUN
by ADP
the DET
Natural PROPN
Resources PROPN
Defense PROPN
Council PROPN
reveals VERB
that SCONJ
about100 VERB
large ADJ
water NOUN
systems NOUN
-- PUNCT
serving VERB
cities NOUN
from ADP
Boston PROPN
to ADP
SanFrancisco PROPN
-- PUNCT
do AUX
not PART
filter VERB
to PART
remove VERB
disease NOUN
- PUNCT
carrying VERB
organismsleaving VERB
those DET
communities NOUN
potentially ADV
vulnerable ADJ
to ADP
a DET
diseaseoutbreak NOUN
similar ADJ
to ADP
the DET
one NOUN
affecting VERB
Milwaukee PROPN
. PUNCT
   SPACE
The DET
EPA PROPN
list NOUN
is AUX
attached VERB
. PUNCT
   SPACE
" PUNCT
These DET
internal ADJ
EPA PROPN
documents NOUN
reveal VERB
that SCONJ
the DET
safety NOUN
of ADP
watersupplies NOUN
in ADP
many ADJ
American ADJ
cities NOUN
is AUX
threatened VERB
by ADP
inadequatepollution NOUN
controls NOUN
or CCONJ
filtration NOUN
, PUNCT
" PUNCT
said VERB
Erik PROPN
Olson PROPN
, PUNCT
a DET
seniorattorney NOUN
with ADP
NRDC PROPN
. PUNCT
  SPACE
" PUNCT
Water NOUN
contamination NOUN
is AUX
n't PART
just ADV
a DET
problem NOUN
inBangladesh NOUN
, PUNCT
it PRON
's AUX
also ADV
a DET
problem NOUN
in ADP
Bozeman PROPN
and CCONJ
Boston PROPN
. PUNCT
" PUNCT
   SPACE
" PUNCT
As SCONJ
of ADP
June PROPN
29 NUM
, PUNCT
1993 NUM
, PUNCT
about ADV
100 NUM
large ADJ
surface NOUN
water NOUN
systems NOUN
onEPA PROPN
's PART
list NOUN
probably ADV
will AUX
be AUX
breaking VERB
the DET
law NOUN
. PUNCT
  SPACE
The DET
1986 NUM
SafeDrinking PROPN
Water PROPN
Act PROPN
requires VERB
all DET
surface NOUN
water NOUN
systems NOUN
to PART
eitherfilter VERB
their PRON
water NOUN
or CCONJ
fully ADV
protect VERB
the DET
rivers NOUN
or CCONJ
lakes VERB
they PRON
usefrom ADP
pollution NOUN
, PUNCT
" PUNCT
Olson PROPN
continued VERB
. PUNCT
  SPACE
Some DET
systems NOUN
are AUX
movingtowards NOUN
eventually ADV
implementing VERB
filtration NOUN
systems NOUN
but CCONJ
areexpected VERB
to PART
miss VERB
the DET
law NOUN
's PART
deadline NOUN
. PUNCT
   SPACE
Olson PROPN
pointed VERB
out ADP
that SCONJ
the DET
threat NOUN
of ADP
contamination NOUN
is AUX
alreadya PROPN
reality NOUN
in ADP
other ADJ
cities NOUN
. PUNCT
  SPACE
A DET
1991 NUM
survey NOUN
of ADP
66 NUM
U.S. PROPN
surfacewater NOUN
systems NOUN
by ADP
water NOUN
utility NOUN
scientists NOUN
found VERB
that SCONJ
87 NUM
percentof NOUN
raw ADJ
water NOUN
samples NOUN
contained VERB
the DET
Milwaukee PROPN
organismcryptosporidium NOUN
, PUNCT
and CCONJ
81 NUM
percent NOUN
contained VERB
a DET
similar ADJ
parasitecalled VERB
giardia PROPN
. PUNCT
   SPACE
Adding VERB
to ADP
the DET
level NOUN
of ADP
concern NOUN
, PUNCT
a DET
General PROPN
Accounting PROPN
Officestudy PROPN
released VERB
today NOUN
by ADP
House PROPN
Health PROPN
and CCONJ
Environment PROPN
SubcommitteeChairman PROPN
Henry PROPN
Waxman PROPN
indicates VERB
serious ADJ
deficiencies NOUN
in ADP
thenation NOUN
's PART
system NOUN
for ADP
conducting VERB
and CCONJ
following VERB
through ADP
on ADP
sanitarysurveys NOUN
of ADP
water NOUN
systems NOUN
. PUNCT
   SPACE
" PUNCT
This DET
new ADJ
information NOUN
raises VERB
a DET
huge ADJ
warning NOUN
sign NOUN
that SCONJ
millionsof ADJ
Americans PROPN
can AUX
no ADV
longer ADV
simply ADV
turn VERB
on ADP
their PRON
taps NOUN
and CCONJ
beassured VERB
that SCONJ
their PRON
water NOUN
is AUX
safe ADJ
to PART
drink VERB
. PUNCT
  SPACE
We PRON
must AUX
immediatelyput VERB
into ADP
place NOUN
programs NOUN
to PART
protect VERB
water NOUN
sources NOUN
fromcontamination NOUN
and CCONJ
where ADV
this DET
is AUX
not PART
assured VERB
, PUNCT
filtration NOUN
equipmentmust NOUN
be AUX
installed VERB
to PART
protect VERB
the DET
public NOUN
, PUNCT
" PUNCT
Olson PROPN
noted VERB
. PUNCT
  SPACE
" PUNCT
The DET
timehas NOUN
come VERB
for ADP
many ADJ
of ADP
the DET
nation NOUN
's PART
water NOUN
utilities NOUN
to PART
stopdragging VERB
their PRON
feet NOUN
and CCONJ
to PART
aggressively ADV
protect VERB
their PRON
water NOUN
fromcontamination NOUN
; PUNCT
consumers NOUN
are AUX
prepared ADJ
to PART
pay VERB
the DET
modest ADJ
costsneeded VERB
to PART
assure VERB
their PRON
water NOUN
is AUX
safe ADJ
to PART
drink VERB
. PUNCT
" PUNCT
   SPACE
NRDC PROPN
is AUX
a DET
national ADJ
non ADJ
- ADJ
profit ADJ
environmental ADJ
advocacy NOUN
organization PROPN
. PUNCT
   SPACE
Systems PROPN
EPA PROPN
Indicates VERB
Require VERB
Filtration PROPN
and CCONJ
Do AUX
Not PART
AdequatelyProtect VERB
Watersheds PROPN
CONNECTICUT PROPN
Bridgeport PROPN
            SPACE
Bridgeport PROPN
Hydraulic PROPN
Co. PROPN
MASSACHUSETTS PROPN
Boston PROPN
                SPACE
H2O PROPN
Resource PROPN
Author PROPN
( PUNCT
MWRA PROPN
) PUNCT
Medford PROPN
               SPACE
MWRA PROPN
- PUNCT
Medford PROPN
Water PROPN
Dept PROPN
Melrose PROPN
               SPACE
MWRA PROPN
- PUNCT
Melrose PROPN
Water PROPN
Dept PROPN
Hilton PROPN
                SPACE
MWRA PROPN
- PUNCT
Hilton PROPN
Water PROPN
Dept PROPN
Needham PROPN
               SPACE
MWRA PROPN
- PUNCT
Needham PROPN
Water PROPN
Division PROPN
Newtoncenter PROPN
          SPACE
MWRA PROPN
- PUNCT
Newton PROPN
Water PROPN
Dept PROPN
. PUNCT
Marblehead PROPN
            SPACE
MWRA PROPN
- PUNCT
Marblehead PROPN
Water PROPN
Dept PROPN
Quincy PROPN
                SPACE
MWRA PROPN
- PUNCT
Quincy PROPN
Water PROPN
Dept PROPN
Norwood PROPN
               SPACE
MWRA PROPN
- PUNCT
Norwood PROPN
Water PROPN
Dept PROPN
Framingham PROPN
            SPACE
MWRA PROPN
- PUNCT
Framingham PROPN
Water PROPN
Div PROPN
Cambridge PROPN
             SPACE
MWRA PROPN
- PUNCT
Cambridge PROPN
Water PROPN
Dept PROPN
Canton PROPN
                SPACE
MWRA PROPN
- PUNCT
Canton PROPN
Water PROPN
Div PROPN
- PUNCT
DPW PROPN
Chelsea PROPN
               SPACE
MWRA PROPN
- PUNCT
Chelsea PROPN
Water PROPN
Dept PROPN
Everett PROPN
               SPACE
MWRA PROPN
- PUNCT
Everett PROPN
Water PROPN
Dept PROPN
Lexington PROPN
             SPACE
MWRA-201 PROPN
Bedford PROPN
( PUNCT
PUO PROPN
WRKS NOUN
) PUNCT
Lynn VERB
                  SPACE
MWRA PROPN
- PUNCT
Lynn PROPN
Water PROPN
& CCONJ
Sewer PROPN
Co PROPN
Malden PROPN
                SPACE
MWRA PROPN
- PUNCT
Malden PROPN
Water PROPN
Division PROPN
Revere PROPN
                SPACE
MWRA PROPN
- PUNCT
Revere PROPN
Water PROPN
Dept PROPN
Woburn PROPN
                SPACE
MWRA PROPN
- PUNCT
Woburn PROPN
Water PROPN
Dept PROPN
Swampscott PROPN
            SPACE
MWRA PROPN
- PUNCT
Swampscott PROPN
Water PROPN
Dept PROPN
Saugus PROPN
                SPACE
MWRA PROPN
- PUNCT
Saugus PROPN
Water PROPN
Dept PROPN
Somerville PROPN
            SPACE
MWRA PROPN
- PUNCT
Somerville PROPN
Water PROPN
Dept PROPN
Stoneman PROPN
              SPACE
MWRA PROPN
- PUNCT
Stoneman PROPN
Water PROPN
Dept PROPN
Brookline PROPN
             SPACE
MWRA PROPN
- PUNCT
Brookline PROPN
Water PROPN
Dept PROPN
Wakefield PROPN
             SPACE
MWRA PROPN
- PUNCT
Same ADJ
as SCONJ
Above ADV
Waltham PROPN
               SPACE
MWRA PROPN
- PUNCT
Waltham PROPN
Water PROPN
Division PROPN
Watertown PROPN
             SPACE
MWRA PROPN
- PUNCT
Watertown PROPN
Water PROPN
Division PROPN
Weston PROPN
                SPACE
MWRA PROPN
- PUNCT
Weston PROPN
Water PROPN
Dept PROPN
Dedham PROPN
                SPACE
MWRA PROPN
- PUNCT
Dedham PROPN
- PUNCT
Westwood PROPN
District PROPN
Winchester PROPN
            SPACE
MWRA PROPN
- PUNCT
Winchester PROPN
Water PROPN
& CCONJ
Sewer PROPN
Winthrop PROPN
              SPACE
MWRA PROPN
- PUNCT
Winthrop PROPN
Water PROPN
Dept PROPN
Boston PROPN
                SPACE
MWRA PROPN
- PUNCT
Boston PROPN
Water PROPN
& CCONJ
Sewer PROPN
Co PROPN
S. PROPN
Hadley PROPN
             SPACE
MWRA PROPN
- PUNCT
South PROPN
Hadley PROPN
Fire PROPN
Dist PROPN
Arlington PROPN
             SPACE
MWRA PROPN
- PUNCT
Arlington PROPN
Water PROPN
Dept PROPN
Belmont PROPN
               SPACE
MWRA PROPN
- PUNCT
Belmont PROPN
Water PROPN
Dept PROPN
Clinton PROPN
               SPACE
MWRA PROPN
- PUNCT
Clinton PROPN
Water PROPN
Dept PROPN
Attleboro PROPN
             SPACE
Attleboro PROPN
Water PROPN
Dept PROPN
Fitchburg PROPN
             SPACE
Fitchburg PROPN
Water PROPN
Dept PROPN
Northampton PROPN
           SPACE
Northampton PROPN
Water PROPN
Dept PROPN
North PROPN
Adams PROPN
           SPACE
North PROPN
Adams PROPN
Water PROPN
Dept PROPN
Amherst PROPN
               SPACE
Amherst PROPN
Water PROPN
Division PROPN
DPW PROPN
Gardner PROPN
               SPACE
Gardner PROPN
Water PROPN
Dept PROPN
Worcester PROPN
             SPACE
Worcester PROPN
DPW PROPN
, PUNCT
Water PROPN
Oper PROPN
Westboro PROPN
              SPACE
Westboro PROPN
Water PROPN
Dept PROPN
Southbridge PROPN
           SPACE
Southbridge PROPN
Water PROPN
Supply PROPN
Co PROPN
Newburyport PROPN
           SPACE
Newburyport PROPN
Water PROPN
Dept PROPN
Hingham PROPN
               SPACE
Hingham PROPN
Water PROPN
Co PROPN
Brockton PROPN
              SPACE
Brockton PROPN
Water PROPN
Dept PROPN
MAINE PROPN
Rockland PROPN
              SPACE
Camden PROPN
& CCONJ
Rockland PROPN
Water PROPN
Co PROPN
Bath PROPN
                  SPACE
Bath PROPN
Water PROPN
District PROPN
NEW PROPN
HAMPSHIRE PROPN
Keene PROPN
                 SPACE
City PROPN
of ADP
Keene PROPN
Salem PROPN
                 SPACE
Salem PROPN
Water PROPN
Dept PROPN
VERMONT PROPN
Barre PROPN
City PROPN
            SPACE
Barre PROPN
City PROPN
Water PROPN
System PROPN
Rutland PROPN
City PROPN
          SPACE
Rutland PROPN
City PROPN
Water PROPN
Dept PROPN
NEW PROPN
YORK PROPN
Glens PROPN
Falls PROPN
           SPACE
Glens PROPN
Falls PROPN
City PROPN
Yorktown PROPN
Hts PROPN
          SPACE
Yorktown PROPN
Water PROPN
Storage PROPN
& CCONJ
Dist PROPN
Rochester PROPN
             SPACE
Rochester PROPN
City PROPN
Henrietta PROPN
             SPACE
Henrietta PROPN
WD PROPN
Rochester PROPN
             SPACE
MCWA PROPN
Upland PROPN
System PROPN
Rochester PROPN
             SPACE
Greece PROPN
Consolidated PROPN
New PROPN
York PROPN
              SPACE
NYC PROPN
- PUNCT
Aquaduct PROPN
Sys PROPN
( PUNCT
Croton PROPN
) PUNCT
Chappaqua PROPN
             SPACE
New PROPN
Castle PROPN
/ SYM
Stanwood PROPN
WD PROPN
Beacon PROPN
                SPACE
Beacon PROPN
City PROPN
Mamaronek PROPN
             SPACE
Westchester PROPN
Joint PROPN
Water PROPN
Works VERB
PENNSYLVANIA PROPN
Bethlehem PROPN
             SPACE
Bethlehem PROPN
Public PROPN
Water PROPN
Sys PROPN
Johnstown PROPN
             SPACE
Greater PROPN
Johnstown PROPN
Water PROPN
Auth PROPN
Lock PROPN
Haven PROPN
            SPACE
City PROPN
of ADP
Lock PROPN
Haven PROPN
- PUNCT
Water PROPN
Dept PROPN
Shamokin PROPN
              SPACE
Roaring VERB
Creek PROPN
Water PROPN
Comp PROPN
Harrisburg PROPN
            SPACE
Harrisburg PROPN
City PROPN
Hazleton PROPN
              SPACE
Hazleton PROPN
City PROPN
Water PROPN
Dept PROPN
Wind PROPN
Gap PROPN
              SPACE
Blue PROPN
Mt PROPN
Consolidated PROPN
Apollo PROPN
                SPACE
Westmoreland PROPN
Auth PROPN
Fayettville PROPN
           SPACE
Guilford PROPN
Water PROPN
Auth PROPN
Humlock PROPN
Creek PROPN
         SPACE
PG&W PROPN
- PUNCT
Ceasetown PROPN
Reservoir PROPN
Springbrook PROPN
           SPACE
PG&W PROPN
- PUNCT
Waters PROPN
Reservoir PROPN
Wilkes PROPN
Barre PROPN
          SPACE
PG&W PROPN
- PUNCT
Gardners PROPN
Creek PROPN
Wilkes PROPN
Barre PROPN
          SPACE
PG&W PROPN
- PUNCT
Hill PROPN
Creek PROPN
Wilkes PROPN
Barre PROPN
          SPACE
PG&W PROPN
- PUNCT
Plymouth PROPN
Relief PROPN
Altoona PROPN
               SPACE
Altoona PROPN
City PROPN
Auth PROPN
Tamaqua PROPN
               SPACE
Tamaqua PROPN
Municipal ADJ
water NOUN
Waynesboro PROPN
            SPACE
Waynesboro PROPN
Borough PROPN
Auth PROPN
Pottsville PROPN
            SPACE
Schuykill PROPN
Co PROPN
Mun PROPN
Auth PROPN
VIRGINIA PROPN
Covington PROPN
             SPACE
City PROPN
of ADP
Covington PROPN
Fishersville PROPN
          SPACE
South PROPN
River PROPN
Sa PROPN
Dist PROPN
- PUNCT
ACSA PROPN
SOUTH PROPN
CAROLINA VERB
Greenville PROPN
            SPACE
Greenville PROPN
Water PROPN
Sys PROPN
MICHIGAN PROPN
Sault PROPN
Ste PROPN
Marie PROPN
       SPACE
Sault PROPN
Ste PROPN
Marie PROPN
Marquette PROPN
             SPACE
Marquette PROPN
MONTANA PROPN
Butte PROPN
                 SPACE
Butte PROPN
Water PROPN
Co PROPN
Bozeman PROPN
               SPACE
Bozeman PROPN
City PROPN
CALIFORNIA PROPN
San PROPN
Francisco PROPN
         SPACE
City PROPN
& CCONJ
County PROPN
of ADP
San PROPN
Fran PROPN
NEVADA PROPN
Reno PROPN
                  SPACE
Westpac PROPN
IDAHO PROPN
Twin PROPN
Falls PROPN
            SPACE
Twin PROPN
Falls PROPN
City PROPN
WASHINGTON PROPN
Aberdeen PROPN
              SPACE
Aberdeen PROPN
Water PROPN
Dept PROPN
Centralia PROPN
             SPACE
Centralia PROPN
Water PROPN
Dept PROPN
-30 PROPN
- PUNCT
-- PUNCT
Nigel PROPN
Allen PROPN
, PUNCT
Toronto PROPN
, PUNCT
Ontario PROPN
, PUNCT
Canada PROPN
    SPACE
ndallen@r-node.hub.orgNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58767From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)-*-----In PUNCT
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes VERB
: PUNCT
> X
What PRON
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene NOUN
rings NOUN
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic PROPN
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of ADP
> X
hypothesizing NOUN
. PUNCT
I PRON
think VERB
the DET
question NOUN
is AUX
: PUNCT
What PRON
is AUX
extra ADJ
- ADJ
scientific ADJ
about ADP
this DET
? PUNCT
  SPACE
It PRON
has AUX
been AUX
a DET
long ADJ
time NOUN
since SCONJ
anyone PRON
has AUX
proposed VERB
restrictions NOUN
onwhere ADJ
one NOUN
comes VERB
up ADP
with ADP
ideas NOUN
in ADP
order NOUN
for ADP
them PRON
to PART
be AUX
consideredlegitimate ADJ
hypotheses NOUN
. PUNCT
  SPACE
The DET
point NOUN
, PUNCT
in ADP
short ADJ
, PUNCT
is AUX
this DET
: PUNCT
hypotheses NOUN
andspeculation NOUN
in ADP
science NOUN
may AUX
come VERB
from ADP
wild ADJ
flights NOUN
of ADP
fancy PROPN
, PUNCT
daydreams PROPN
, PUNCT
ancient ADJ
traditions NOUN
, PUNCT
modern ADJ
quackery NOUN
, PUNCT
or CCONJ
anywhere ADV
else ADV
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58768From NUM
: PUNCT
janet@ntmtv.com X
( PUNCT
Janet PROPN
Jakstys)Subject NUM
: PUNCT
Exercise NOUN
and CCONJ
MigraineWe PROPN
were AUX
talking VERB
about ADP
Migraine PROPN
and CCONJ
Exercise NOUN
( PUNCT
I PRON
'm AUX
the DET
one NUM
who PRON
can'tfathom VERB
the DET
thought NOUN
of ADP
exercise NOUN
during ADP
migraine NOUN
... PUNCT
) PUNCT
. PUNCT
  SPACE
Anyway ADV
, PUNCT
turningthe DET
thread NOUN
around ADV
, PUNCT
the DET
other ADJ
day NOUN
I PRON
played VERB
tennis NOUN
during ADP
my PRON
lunchhour NOUN
. PUNCT
  SPACE
I PRON
'm AUX
out SCONJ
of ADP
tennis NOUN
shape NOUN
so ADV
it PRON
was AUX
very ADV
intense ADJ
exercise NOUN
. PUNCT
  SPACE
Igot PROPN
overheated VERB
, PUNCT
and CCONJ
dehydrated VERB
. PUNCT
  SPACE
Afterwards ADV
, PUNCT
I PRON
noticed VERB
a DET
tinglingsensation NOUN
all ADV
over ADP
my PRON
head NOUN
then ADV
about ADV
2 NUM
hours NOUN
later ADV
, PUNCT
I PRON
could AUX
feela PROPN
migraine ADJ
start NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
continued VERB
to PART
drink VERB
water NOUN
in ADP
the DET
afternoon.)I NOUN
took VERB
cafergot VERB
, PUNCT
but CCONJ
it PRON
did AUX
n't PART
help VERB
and CCONJ
the DET
pain NOUN
started VERB
althoughit NOUN
was AUX
n't PART
as ADV
intense ADJ
as SCONJ
it PRON
usually ADV
is AUX
and CCONJ
about ADV
9 NUM
pm NOUN
that DET
night NOUN
, PUNCT
thepain NOUN
subsided VERB
. PUNCT
This DET
is AUX
n't PART
the DET
first ADJ
time NOUN
that PRON
I PRON
've AUX
had VERB
a DET
migraine ADJ
occur NOUN
after ADP
exercise NOUN
. PUNCT
I'm PRON
wondering VERB
if SCONJ
anyone PRON
else ADV
has AUX
had VERB
the DET
same ADJ
experience NOUN
and CCONJ
I PRON
wonderwhat PRON
triggers VERB
the DET
migraine NOUN
in ADP
this DET
situation NOUN
( PUNCT
heat NOUN
buildup NOUN
? PUNCT
dehydration?).I'm PROPN
not PART
giving VERB
up ADP
tennis NOUN
so ADV
is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
( PUNCT
besides ADV
get AUX
into ADP
shape NOUN
and CCONJ
do AUX
n't PART
play VERB
at ADP
high ADJ
noon NOUN
) PUNCT
to PART
prevent VERB
this?Thanks,-- PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Janet PROPN
Jakstys PROPN
         SPACE
UUCP:{ames PROPN
, PUNCT
mcdcup}!ntmtv!janetNorthern PROPN
Telecom PROPN
      SPACE
INTERNET:janet@ntmtv.comMtn PRON
. PUNCT
View NOUN
, PUNCT
CA.**********************************************************************Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58769From NUM
: PUNCT
wsun@jeeves.ucsd.edu NOUN
( PUNCT
Fiberman)Subject NOUN
: PUNCT
erythromycinIs NOUN
erythromycin NOUN
effective ADJ
in ADP
treating VERB
pneumonia?-fmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58770From NUM
: PUNCT
colby@oahu.cs.ucla.edu PROPN
( PUNCT
Kenneth PROPN
Colby)Subject NUM
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibiotics VERB
     SPACE
If SCONJ
the DET
nose NOUN
culture NOUN
shows VERB
Staph PROPN
, PUNCT
then ADV
Ceftin PROPN
or CCONJ
even ADV
Ceclor PROPN
     SPACE
are AUX
better ADJ
. PUNCT
Suprax NOUN
does AUX
not PART
kill VERB
Staph PROPN
. PUNCT
Treating VERB
bacterial ADJ
     SPACE
infections NOUN
involves VERB
a DET
lot NOUN
of ADP
try VERB
- PUNCT
and CCONJ
- PUNCT
fail VERB
because SCONJ
the DET
     SPACE
infections NOUN
often ADV
involve VERB
multiple ADJ
organisms NOUN
with ADP
many ADJ
resistant ADJ
     SPACE
strains NOUN
. PUNCT
Some DET
60 NUM
% NOUN
of ADP
Hemophilus PROPN
Influenza PROPN
strains NOUN
are AUX
now ADV
     SPACE
resistant ADJ
. PUNCT
What PRON
works VERB
for ADP
me PRON
and CCONJ
my PRON
organisms NOUN
may AUX
not PART
work VERB
     SPACE
for ADP
you PRON
and CCONJ
yours PRON
. PUNCT
Keep VERB
experimenting VERB
. PUNCT
	        SPACE
Ken PROPN
ColbyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58771From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?| NOUN
article NOUN
< X
1qjc0fINN841@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:|| NOUN
Now ADV
, PUNCT
if SCONJ
instead ADV
of ADP
using VERB
the DET
MSG PROPN
as SCONJ
a DET
food NOUN
additive ADJ
, PUNCT
you PRON
put VERB
the DET
MSG PROPN
|| PROPN
in ADP
gelatin PROPN
capsules NOUN
or CCONJ
whatever PRON
, PUNCT
there PRON
may AUX
not|| NOUN
be AUX
a DET
reaction NOUN
, PUNCT
becasue VERB
the DET
_ PROPN
sensory_response NOUN
_ PROPN
might AUX
be|| VERB
a DET
necessary ADJ
element NOUN
in ADP
the DET
creation NOUN
of ADP
the DET
MSG PROPN
reaction NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
'll AUX
bet VERB
|| PROPN
the DET
bogus ADJ
medical ADJ
researchers NOUN
never ADV
even ADV
thought VERB
about ADP
|| PROPN
that SCONJ
obvious ADJ
fact.)| PROPN
Gee PROPN
. PUNCT
  SPACE
He PRON
means VERB
" PUNCT
placebo NOUN
effect NOUN
. PUNCT
" PUNCT
  SPACE
Sorry INTJ
, PUNCT
but CCONJ
the DET
researchers NOUN
DO VERB
know VERB
about| PROPN
this DET
. PUNCT
Carl PROPN
, PUNCT
it PRON
is AUX
not PART
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
if SCONJ
as SCONJ
hypothesised VERB
the DET
sensory ADJ
response NOUN
to ADP
MSG PROPN
's PART
effect NOUN
on ADP
flavor NOUN
is AUX
responsiblefor ADP
the DET
MSG PROPN
reaction NOUN
. PUNCT
SteveNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58772From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
Gordon PROPN
Banks:>a PROPN
lot NOUN
to PART
keep VERB
from ADP
going VERB
back ADV
to ADP
morbid PROPN
obesity NOUN
. PUNCT
  SPACE
I PRON
think VERB
all DET
> X
of ADP
us PROPN
cycle NOUN
. PUNCT
  SPACE
One NOUN
's PART
success NOUN
depends VERB
on ADP
how ADV
large ADJ
the DET
fluctuations NOUN
> X
in ADP
the DET
cycle NOUN
are AUX
. PUNCT
  SPACE
Some DET
people NOUN
can AUX
cycle VERB
only ADV
5 NUM
pounds NOUN
. PUNCT
  SPACE
Unfortunately,>I'm ADV
not PART
one NUM
of ADP
them.>>This PROPN
certainly ADV
describes VERB
my PRON
situation NOUN
perfectly ADV
. PUNCT
For ADP
me PRON
there ADV
isa VERB
constant ADJ
dynamic NOUN
between ADP
my PRON
tendency NOUN
to PART
eat VERB
, PUNCT
which PRON
appears VERB
tobe NOUN
totally ADV
limitless VERB
, PUNCT
and CCONJ
the DET
purely ADV
conscious ADJ
desire NOUN
to PART
notput VERB
on ADP
too ADV
much ADJ
weight NOUN
. PUNCT
When ADV
I PRON
get VERB
too ADV
fat ADJ
, PUNCT
I PRON
just ADV
diet VERB
/ SYM
exercisemore NOUN
( PUNCT
with ADP
varying VERB
degrees NOUN
of ADP
success NOUN
) PUNCT
to PART
take VERB
off ADP
theextra ADJ
weight NOUN
. PUNCT
Usually ADV
I PRON
cycle VERB
within ADP
a DET
15 NUM
lb PROPN
range NOUN
, PUNCT
butsmaller NOUN
and CCONJ
larger ADJ
cycles NOUN
occur VERB
as ADV
well ADV
. PUNCT
I PRON
'm AUX
always ADV
afraidthat ADP
this DET
method NOUN
will AUX
stop VERB
working VERB
someday ADV
, PUNCT
but CCONJ
usuallyI PROPN
seem VERB
to PART
be AUX
able ADJ
to PART
hold VERB
the DET
weight NOUN
gain NOUN
in ADP
check NOUN
. PUNCT
This DET
is AUX
one NUM
reason NOUN
I PRON
have AUX
a DET
hard ADJ
time NOUN
accepting VERB
the DET
notionof PROPN
some DET
metabolic ADJ
derangement NOUN
associated VERB
with ADP
cycle NOUN
dieting(that PRON
results VERB
in ADP
long ADJ
- PUNCT
term NOUN
weight NOUN
gain NOUN
) PUNCT
. PUNCT
I PRON
have AUX
been AUX
cycle NOUN
- PUNCT
dieting VERB
for ADP
at ADV
least ADV
20 NUM
years NOUN
without ADP
seeing VERB
such DET
a DET
change NOUN
. PUNCT
I PRON
think VERB
a DET
vigorous ADJ
exercise NOUN
program NOUN
can AUX
go VERB
a DET
long ADJ
way NOUN
towardkeeping VERB
the DET
cycles NOUN
smaller ADJ
and CCONJ
the DET
baseline ADJ
weight NOUN
low ADJ
. PUNCT
BrianNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58773From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
EugenicsProbably PROPN
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
willthen ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
geneticengineering VERB
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want VERB
. PUNCT
No DET
breeding NOUN
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
shouldwe NOUN
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADV
- PUNCT
lived VERB
, PUNCT
Arnold PROPN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can.-- VERB
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58774From NUM
: PUNCT
dmp1@ukc.ac.uk ADJ
( PUNCT
D.M.Procida)Subject NUM
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
19609@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
Not PART
by ADP
scientists NOUN
. PUNCT
  SPACE
There PRON
are AUX
people NOUN
> X
in ADP
every DET
country NOUN
who PRON
waste VERB
time NOUN
and CCONJ
money NOUN
on ADP
quackery.>In PROPN
Britain PROPN
and CCONJ
Scandanavia PROPN
, PUNCT
where ADV
I PRON
have AUX
worked VERB
, PUNCT
it PRON
was AUX
not PART
paid VERB
for.>What PUNCT
are AUX
" PUNCT
most ADJ
of ADP
these DET
countries NOUN
? PUNCT
" PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
you PRON
. PUNCT
I PRON
am AUX
told VERB
( PUNCT
by ADP
the DET
person NOUN
who PRON
I PRON
care VERB
a DET
lot NOUN
about ADP
and CCONJ
who PRON
I PRON
am AUX
worriedis NOUN
going VERB
to PART
start VERB
putting VERB
his PRON
health NOUN
and CCONJ
money NOUN
into ADP
homeopathy NOUN
withoutreally ADV
knowing VERB
what PRON
he PRON
is AUX
getting VERB
into ADP
and CCONJ
who PRON
is AUX
the DET
reason NOUN
I PRON
postedin VERB
the DET
first ADJ
place NOUN
about ADP
homeopathy NOUN
) PUNCT
that SCONJ
in ADP
Britain PROPN
homeopathy NOUN
isavailable NOUN
on ADP
the DET
National PROPN
Health PROPN
Service PROPN
and CCONJ
that SCONJ
there PRON
are AUX
about ADV
6000GPs NUM
who PRON
use VERB
homeopathic ADJ
practices NOUN
. PUNCT
True ADJ
? PUNCT
False ADJ
? PUNCT
What?Have PUNCT
there PRON
been AUX
any DET
important ADJ
and CCONJ
documented ADJ
investigations NOUN
intohomeopathic ADJ
principles?I NOUN
was AUX
reading VERB
a DET
book NOUN
on ADP
homeopathy NOUN
over ADP
the DET
weekend NOUN
. PUNCT
I PRON
turned VERB
to ADP
thesection NOUN
on ADP
the DET
principles NOUN
behind ADP
homeopathic ADJ
medicine NOUN
, PUNCT
and CCONJ
twoparagraphs NOUN
informed VERB
me PRON
that SCONJ
homeopaths NOUN
do AUX
n't PART
feel VERB
obliged VERB
to PART
provideany VERB
sort ADV
of ADP
explanation NOUN
. PUNCT
The DET
author NOUN
stated VERB
this DET
with ADP
pride NOUN
, PUNCT
as SCONJ
thoughit NOUN
were AUX
some DET
sort NOUN
of ADP
virtue NOUN
! PUNCT
Why ADV
am AUX
I PRON
sceptical ADJ
about ADP
homeopathy NOUN
? PUNCT
Isit NOUN
because SCONJ
I PRON
am AUX
a DET
narrow ADJ
- PUNCT
minded ADJ
bigot NOUN
, PUNCT
or CCONJ
is AUX
it PRON
because SCONJ
homeopathyreally ADV
looks VERB
more ADJ
like SCONJ
witch NOUN
- PUNCT
doctory NOUN
than SCONJ
anything PRON
else?Daniele NOUN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58775From NUM
: PUNCT
tomca@microsoft.com X
( PUNCT
Tom PROPN
B. PROPN
Carey)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>ted@marvin.dgbt.doc.ca PROPN
( PUNCT
Ted PROPN
Grusec PROPN
) PUNCT
writes:>| PUNCT
> X
Gary PROPN
: PUNCT
By ADP
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
I PRON
did AUX
not PART
mean VERB
to PART
imply VERB
that SCONJ
hypothesis>| NOUN
> X
generation NOUN
was AUX
not PART
, PUNCT
in ADP
most ADJ
cases NOUN
extremely ADV
closely ADV
tied VERB
to ADP
the>| PROPN
> X
state NOUN
of ADP
knowledge NOUN
within ADP
a DET
scientific ADJ
area NOUN
. PUNCT
  SPACE
I PRON
meant VERB
was AUX
that SCONJ
there>| PROPN
> X
was AUX
no DET
" PUNCT
scientific ADJ
logic NOUN
" PUNCT
involved VERB
in ADP
the DET
process NOUN
. PUNCT
  SPACE
It PRON
is AUX
inductive,>| PROPN
> X
not PART
deductive ADJ
. PUNCT
  SPACE
> X
> X
I PRON
am AUX
further ADV
puzzled VERB
by ADP
the DET
proposed VERB
distinction NOUN
between ADP
" PUNCT
scientific ADJ
> X
logic NOUN
" PUNCT
and CCONJ
" PUNCT
inductive ADJ
logic NOUN
" PUNCT
. PUNCT
  SPACE
At ADP
this DET
point NOUN
I PRON
do AUX
n't PART
have AUX
a DET
clue NOUN
> X
what PRON
you PRON
mean VERB
by ADP
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
-- PUNCT
unless SCONJ
you PRON
mean VERB
that SCONJ
at ADP
* PUNCT
some*>times VERB
someone PRON
seems VERB
to PART
come VERB
up ADP
with ADP
an DET
idea NOUN
that SCONJ
we PRON
ca AUX
n't PART
trace VERB
to ADP
> X
prior ADJ
theories NOUN
, PUNCT
concepts NOUN
, PUNCT
knowledge NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
is AUX
a DET
fairly ADV
common ADJ
> NOUN
observation NOUN
, PUNCT
but CCONJ
just ADV
for ADP
grins NOUN
I PRON
'd AUX
like VERB
to PART
see VERB
some DET
genuine ADJ
examples NOUN
. PUNCT
OK INTJ
, PUNCT
just ADV
for ADP
grins:- PROPN
Kekule PROPN
hypothesized VERB
a DET
resonant ADJ
structure NOUN
for ADP
the DET
aromatic ADJ
benzenering NOUN
after ADP
waking VERB
from ADP
a DET
dream NOUN
in ADP
which PRON
a DET
snake NOUN
was AUX
swallowing VERB
his PRON
tail.- PROPN
Archimedes PROPN
formalized VERB
the DET
principle NOUN
of ADP
buoyancy NOUN
while SCONJ
meditating VERB
inhis ADJ
bath NOUN
. PUNCT
In ADP
neither DET
case NOUN
was AUX
there ADV
" PUNCT
no DET
connection NOUN
to ADP
prior ADJ
theories NOUN
, PUNCT
concepts NOUN
, PUNCT
etc X
. PUNCT
"as PUNCT
you PRON
stipulated VERB
above ADV
. PUNCT
What PRON
there PRON
was AUX
was AUX
an DET
intuitive ADJ
leap PROPN
beyondthe PROPN
current ADJ
way NOUN
of ADP
thinking NOUN
, PUNCT
to PART
develop VERB
ideas NOUN
which PRON
subsequently ADV
provedto ADJ
have AUX
predictive ADJ
power NOUN
( PUNCT
e.g. ADV
, PUNCT
they PRON
stood VERB
the DET
test NOUN
of ADP
experimentalverification).pardon PROPN
my PRON
kibbutzing NOUN
... PUNCT
TomNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58776From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1qk4qqINNgvs@im4u.cs.utexas.edu NUM
> X
, PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:| PROPN
> X
-*-----| NOUN
> X
In ADP
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes:| PROPN
> X
> X
What PRON
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene PROPN
rings| PROPN
> X
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this| PROPN
> X
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic| PROPN
> X
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of| ADP
> X
> X
hypothesizing NOUN
. PUNCT
| ADV
> X
| INTJ
> X
I PRON
think VERB
the DET
question NOUN
is AUX
: PUNCT
What PRON
is AUX
extra ADJ
- ADJ
scientific ADJ
about ADP
this DET
? PUNCT
  SPACE
| ADP
> X
| X
> X
It PRON
has AUX
been AUX
a DET
long ADJ
time NOUN
since SCONJ
anyone PRON
has AUX
proposed VERB
restrictions NOUN
on| ADP
> X
where ADV
one PRON
comes VERB
up ADP
with ADP
ideas NOUN
in ADP
order NOUN
for ADP
them PRON
to PART
be AUX
considered| PROPN
> X
legitimate ADJ
hypotheses NOUN
. PUNCT
  SPACE
The DET
point NOUN
, PUNCT
in ADP
short ADJ
, PUNCT
is AUX
this DET
: PUNCT
hypotheses NOUN
and| PROPN
> X
speculation NOUN
in ADP
science NOUN
may AUX
come VERB
from ADP
wild ADJ
flights NOUN
of ADP
fancy ADJ
, PUNCT
| PROPN
> X
daydreams NOUN
, PUNCT
ancient ADJ
traditions NOUN
, PUNCT
modern ADJ
quackery NOUN
, PUNCT
or CCONJ
anywhere ADV
else.| PROPN
> X
| NOUN
> X
Russell| X
> X
Yes INTJ
, PUNCT
but CCONJ
typically ADV
they PRON
* PUNCT
do AUX
n't PART
* PUNCT
. PUNCT
  SPACE
Not PART
every DET
wild ADJ
flight NOUN
of ADP
fancy ADJ
serves(or NOUN
can AUX
serve VERB
) PUNCT
in ADP
the DET
appropriate ADJ
relation NOUN
to ADP
a DET
hypothesis NOUN
. PUNCT
  SPACE
It PRON
issomewhat ADV
interesting ADJ
that SCONJ
when ADV
anyone PRON
is AUX
challanged VERB
to PART
provide VERB
anexample NOUN
of ADP
this DET
sort NOUN
the DET
* PUNCT
only ADV
* PUNCT
one NUM
they PRON
come VERB
up ADP
with ADP
is AUX
the DET
one NUM
aboutKekule NOUN
. PUNCT
  SPACE
Surely ADV
, PUNCT
there PRON
must AUX
be AUX
others NOUN
. PUNCT
  SPACE
But CCONJ
apparently ADV
this DET
is AUX
regardedas PROPN
an DET
* PUNCT
extreme ADJ
* PUNCT
example NOUN
of ADP
a DET
" PUNCT
non ADJ
- ADJ
rational ADJ
" PUNCT
process NOUN
in ADP
science NOUN
wherebya PROPN
successful ADJ
hypothesis NOUN
was AUX
proposed VERB
. PUNCT
  SPACE
But CCONJ
how ADV
non ADJ
- ADJ
rational ADJ
is AUX
it?Of ADV
course NOUN
we PRON
ca AUX
n't PART
hope VERB
( PUNCT
currently ADV
at ADP
least ADJ
) PUNCT
to PART
explain VERB
how ADV
or CCONJ
whyKekule PROPN
had AUX
the DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
. PUNCT
Surely ADV
it PRON
was AUX
n't PART
the DET
* PUNCT
only ADV
* PUNCT
daydream NOUN
he PRON
had AUX
. PUNCT
  SPACE
What PRON
was AUX
special ADJ
about*this DET
* PUNCT
one NUM
? PUNCT
  SPACE
Could AUX
it PRON
have AUX
had VERB
something PRON
to PART
do AUX
with ADP
a DET
perceived*analogy NOUN
* PUNCT
between ADP
the DET
geometry NOUN
of ADP
the DET
snakes NOUN
and CCONJ
problems NOUN
concerninggeometry NOUN
of ADP
molecules NOUN
? PUNCT
  SPACE
Is AUX
such ADJ
analogical ADJ
reasoning NOUN
" PUNCT
extra ADJ
- PUNCT
scientific"?Or ADJ
is AUX
it PRON
rather ADV
at ADP
the DET
very ADJ
heart NOUN
of ADP
science NOUN
( PUNCT
Perice PROPN
's PART
notion NOUN
of ADP
abduction NOUN
, PUNCT
the DET
use NOUN
of ADP
models NOUN
within ADP
and CCONJ
across ADP
disciplines NOUN
) PUNCT
? PUNCT
  SPACE
Upon SCONJ
close ADJ
examination NOUN
, PUNCT
is AUX
there PRON
a DET
non ADJ
- ADJ
rational ADJ
mystical ADJ
leap NOUN
taking VERB
place NOUN
, PUNCT
or CCONJ
is AUX
it PRON
perhapscloser VERB
to ADP
a DET
formal ADJ
( PUNCT
though SCONJ
often ADV
incomplete ADJ
) PUNCT
analogy NOUN
or CCONJ
model?-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58777From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Emphysema PROPN
questionThanks NOUN
for ADP
all DET
your PRON
assistance NOUN
. PUNCT
I PRON
'll AUX
see VERB
if SCONJ
he PRON
can AUX
try VERB
adifferent NOUN
brand NOUN
of ADP
patches NOUN
, PUNCT
although SCONJ
he PRON
's AUX
tried VERB
two NUM
brandsalready NOUN
. PUNCT
Are AUX
there PRON
more ADJ
than SCONJ
two?Melissa--- PUNCT
                        SPACE
mmatusev@radford.vak12ed.edu"After NOUN
a DET
time NOUN
you PRON
may AUX
find VERB
that SCONJ
having VERB
is AUX
not PART
so ADV
pleasing ADJ
a DET
thingafter NOUN
all ADV
as SCONJ
wanting VERB
. PUNCT
It PRON
is AUX
not PART
logical ADJ
, PUNCT
but CCONJ
it PRON
is AUX
often ADV
true ADJ
. PUNCT
"Spock PUNCT
to ADP
StonnNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58778From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science PROPN
and CCONJ
Methodology-*----In PROPN
article NOUN
< X
C5I2Bo PROPN
. PUNCT
CG9@news X
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
The DET
difference NOUN
between ADP
a DET
Nobel PROPN
Prize PROPN
level NOUN
scientist NOUN
and CCONJ
a DET
mediocre ADJ
> X
scientist NOUN
does AUX
not PART
lie VERB
in ADP
the DET
quality NOUN
of ADP
their PRON
empirical ADJ
methodology NOUN
. PUNCT
  SPACE
> X
It PRON
depends VERB
on ADP
the DET
quality NOUN
of ADP
their PRON
THINKING NOUN
. PUNCT
  SPACE
> X
> X
It PRON
really ADV
bothers VERB
me PRON
that SCONJ
so ADV
many ADJ
graduate NOUN
students NOUN
seem VERB
to PART
believe VERB
that SCONJ
> X
they PRON
are AUX
doing VERB
science NOUN
merely ADV
because SCONJ
they PRON
are AUX
conducting VERB
empirical ADJ
> PROPN
studies NOUN
. PUNCT
... PUNCT
> X
> X
And CCONJ
I PRON
'm AUX
especially ADV
offended VERB
by ADP
Russell PROPN
Turpin PROPN
's PART
repeated VERB
assertion NOUN
that SCONJ
> X
science NOUN
amounts VERB
to ADP
nothing PRON
more ADJ
than SCONJ
avoiding VERB
mistakes NOUN
. PUNCT
  SPACE
Simply ADV
avoiding VERB
> X
mistakes NOUN
does AUX
n't PART
get AUX
you PRON
anywhere ADV
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
Lee PROPN
Lady PROPN
and CCONJ
I PRON
are AUX
talking VERB
at ADP
cross NOUN
purposes NOUN
. PUNCT
Above ADV
, PUNCT
Lady PROPN
seems VERB
concerned ADJ
with ADP
the DET
contrast NOUN
between ADP
greatscience NOUN
that PRON
makes VERB
big ADJ
advances NOUN
in ADP
our PRON
knowledge NOUN
and CCONJ
mediocrescience NOUN
that PRON
makes VERB
smaller ADJ
steps NOUN
. PUNCT
  SPACE
In ADP
most ADJ
of ADP
this DET
thread NOUN
, PUNCT
I PRON
havebeen VERB
concerned VERB
with ADP
the DET
difference NOUN
between ADP
what PRON
is AUX
science NOUN
andwhat PROPN
is AUX
not PART
. PUNCT
Lee PROPN
Lady PROPN
is AUX
correct ADJ
when ADV
she PRON
asserts VERB
that SCONJ
the DET
difference NOUN
betweenEinstein NOUN
and CCONJ
the DET
average ADJ
post ADJ
- ADJ
doc ADJ
physicist NOUN
is AUX
the DET
quality NOUN
oftheir NOUN
thought VERB
. PUNCT
  SPACE
But CCONJ
what PRON
is AUX
the DET
difference NOUN
between ADP
Einstein PROPN
and CCONJ
agenius NOUN
who PRON
would AUX
be AUX
a DET
great ADJ
scientist NOUN
but CCONJ
whose PRON
great ADJ
thoughtsare NOUN
scientifically ADV
screwy PROPN
? PUNCT
  SPACE
( PUNCT
Some DET
would AUX
give VERB
Velikovsky PROPN
orKorzybski PROPN
as SCONJ
examples NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
like VERB
these DET
, PUNCT
choose VERB
yourown VERB
. PUNCT
) PUNCT
  SPACE
I PRON
say VERB
it PRON
is AUX
the DET
same ADJ
as SCONJ
the DET
difference NOUN
between ADP
the DET
mediocrephysicist NOUN
and CCONJ
the DET
mediocre ADJ
proponent NOUN
of ADP
qi PROPN
. PUNCT
  SPACE
Both DET
Einstein PROPN
andthe DET
mediocre ADJ
physcists NOUN
have AUX
disciplined VERB
their PRON
work NOUN
from ADP
thecumulative ADJ
knowledge NOUN
of ADP
how ADV
previous ADJ
researchers NOUN
went VERB
wrong ADJ
. PUNCT
Both CCONJ
Velikovsky PROPN
and CCONJ
the DET
mediocre ADJ
proponent NOUN
of ADP
qi PROPN
have AUX
failed VERB
todo NOUN
this DET
. PUNCT
  SPACE
Let VERB
me PRON
approach VERB
this DET
from ADP
a DET
second ADJ
direction NOUN
. PUNCT
  SPACE
When ADV
one NOUN
is AUX
askedto PROPN
review VERB
a DET
paper NOUN
for ADP
a DET
journal NOUN
or CCONJ
conference NOUN
, PUNCT
there PRON
are AUX
manykinds NOUN
of ADP
criticism NOUN
that SCONJ
one PRON
can AUX
make VERB
. PUNCT
  SPACE
One NUM
kind NOUN
of ADP
criticism NOUN
isthat ADP
the DET
work NOUN
is AUX
just ADV
wrong ADJ
or CCONJ
misinformed VERB
. PUNCT
  SPACE
Another DET
kind ADJ
ofcriticism NOUN
is AUX
that SCONJ
the DET
work NOUN
, PUNCT
while SCONJ
technically ADV
correct ADJ
, PUNCT
is AUX
eithernot ADV
important ADJ
or CCONJ
not PART
interesting ADJ
. PUNCT
  SPACE
The DET
first ADJ
difference NOUN
is AUX
theone NOUN
that PRON
I PRON
have AUX
been AUX
pointing VERB
to ADP
. PUNCT
  SPACE
The DET
second ADJ
difference NOUN
is AUX
theone NOUN
that SCONJ
Lee PROPN
Lady PROPN
seems VERB
to PART
be AUX
discussing VERB
. PUNCT
> X
If SCONJ
good ADJ
empirical ADJ
research NOUN
were AUX
done VERB
and CCONJ
showed VERB
that SCONJ
there PRON
is AUX
some DET
merit NOUN
> X
to ADP
homeopathic ADJ
remedies NOUN
, PUNCT
this DET
would AUX
certainly ADV
be AUX
valuable ADJ
information NOUN
. PUNCT
> X
But CCONJ
it PRON
would AUX
still ADV
not PART
mean VERB
that SCONJ
homeopathy NOUN
qualifies NOUN
as SCONJ
a DET
science NOUN
. PUNCT
  SPACE
This DET
> X
is AUX
where ADV
you PRON
and CCONJ
I PRON
disagree VERB
with ADP
Turpin PROPN
. PUNCT
  SPACE
I PRON
have AUX
often ADV
pointed VERB
out ADP
that SCONJ
for ADP
homeopathy NOUN
to PART
be AUX
considered VERB
scientific ADJ
, PUNCT
what PRON
is AUX
needed VERB
is AUX
a DET
test NOUN
of ADP
its PRON
theoretical ADJ
claims NOUN
, PUNCT
not PART
just ADV
of ADP
some DET
of ADP
its PRON
proposed VERB
remedies NOUN
. PUNCT
  SPACE
Similarly ADV
, PUNCT
I PRON
suspectthat ADV
traditional ADJ
Chinese ADJ
medicine NOUN
has AUX
many ADJ
remedies NOUN
that PRON
work;what ADP
it PRON
lacks VERB
( PUNCT
as SCONJ
one NUM
example NOUN
) PUNCT
is AUX
any DET
experiment NOUN
that PRON
tests VERB
thepresence NOUN
of ADP
qi PROPN
. PUNCT
> X
... PUNCT
In ADP
order NOUN
to PART
have AUX
science NOUN
, PUNCT
one PRON
must AUX
have AUX
a DET
theoretical ADJ
> X
structure NOUN
that PRON
makes VERB
sense NOUN
, PUNCT
not PART
a DET
mere ADJ
collection NOUN
of ADP
empirically ADV
> X
validated VERB
random ADJ
hypotheses NOUN
. PUNCT
Certainly ADV
a DET
" PUNCT
theoretical ADJ
structure NOUN
that PRON
makes VERB
sense NOUN
" PUNCT
is AUX
the DET
goal NOUN
. PUNCT
In ADP
areas NOUN
where ADV
we PRON
do AUX
not PART
yet ADV
have AUX
this DET
, PUNCT
I PRON
see VERB
nothing PRON
wrong ADJ
withforming NOUN
and CCONJ
testing VERB
smaller ADJ
hypotheses NOUN
. PUNCT
  SPACE
Let VERB
's PRON
face VERB
it PRON
: PUNCT
we PRON
cannotalways NOUN
wait VERB
for ADP
an DET
Einstein PROPN
to PART
come VERB
along ADP
and CCONJ
make VERB
everythingclear NOUN
for ADP
us PRON
. PUNCT
  SPACE
Sometimes ADV
those DET
of ADP
us PRON
who PRON
are AUX
not PART
Einstein PROPN
have AUX
toplug VERB
along ADP
and CCONJ
make VERB
small ADJ
amounts NOUN
of ADP
progress NOUN
as SCONJ
best ADV
we PRON
can AUX
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58779From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.161112.21772@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> X
I PRON
do AUX
n't PART
think VERB
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
is AUX
a DET
very ADV
useful ADJ
phrase NOUN
in ADP
a DET
discussion| PROPN
> X
of ADP
the DET
boundaries NOUN
of ADP
science NOUN
, PUNCT
except SCONJ
as SCONJ
a DET
proposed VERB
definiens NOUN
. PUNCT
  SPACE
Extra PROPN
- PUNCT
rational| PROPN
> X
is AUX
a DET
better ADJ
phrase NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
number NOUN
of ADP
well ADV
- PUNCT
known VERB
cases| PROPN
> X
of ADP
extra ADJ
- ADJ
rational ADJ
considerations NOUN
driving VERB
science NOUN
in ADP
a DET
useful ADJ
direction NOUN
. PUNCT
Yeah INTJ
, PUNCT
but CCONJ
the DET
problem NOUN
with ADP
holding VERB
up ADP
the DET
" PUNCT
extra ADJ
- ADJ
rational ADJ
" PUNCT
examples NOUN
asexemplars NOUN
, PUNCT
or CCONJ
as SCONJ
refutations NOUN
of ADP
well ADV
founded VERB
methodology NOUN
, PUNCT
is AUX
that DET
yourun NOUN
smack VERB
up ADP
against ADP
such ADJ
unuseful ADJ
directions NOUN
as SCONJ
Lysenko PROPN
. PUNCT
  SPACE
Such ADJ
" PUNCT
extra ADJ
- ADJ
rational ADJ
" PUNCT
cases NOUN
are AUX
curiosities NOUN
-- PUNCT
not PART
guides VERB
to ADP
methodology.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58780From NUM
: PUNCT
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark)Subject PROPN
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibioticsYou PROPN
can AUX
also ADV
swab VERB
the DET
inside NOUN
of ADP
your PRON
nose NOUN
with ADP
Bacitracin PROPN
using VERB
aQ DET
tip NOUN
. PUNCT
Bacitracin PROPN
is AUX
an DET
antibiotic ADJ
that PRON
can AUX
be AUX
bought VERB
OTC PROPN
as SCONJ
anointment NOUN
in ADP
a DET
tube NOUN
. PUNCT
The DET
doctor NOUN
I PRON
listen VERB
to ADP
on ADP
the DET
radio NOUN
says VERB
to ADP
applyit NOUN
for ADP
30 NUM
days NOUN
, PUNCT
while SCONJ
you PRON
are AUX
taking VERB
other ADJ
antibiotics NOUN
by ADP
mouth NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58781From NUM
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com NUM
> X
, PUNCT
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:| PROPN
> X
cnavarro@cymbal.calpoly.edu ADJ
( PUNCT
CLAIRE PROPN
) PUNCT
writes:| PROPN
> X
> X
> X
Is AUX
there PRON
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?| PROPN
> X
> X
> X
I PRON
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
| PROPN
> X
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG PROPN
sensitivity NOUN
are| PROPN
> X
> X
> X
superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
| ADV
> X
> X
> X
| CCONJ
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least| PROPN
> X
> X
> X
a DET
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the| PROPN
> X
> X
> X
" PUNCT
Chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has| PROPN
> X
> X
> X
always ADV
used VERB
it.| PROPN
> X
So ADV
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but| PROPN
> X
no DET
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
| PROPN
> X
work NOUN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study| NOUN
> X
using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
Here ADV
is AUX
another DET
anecdotal ADJ
story NOUN
. PUNCT
  SPACE
I PRON
am AUX
a DET
picky ADJ
eater NOUN
and CCONJ
never ADV
wanted VERB
to PART
try VERB
chinese ADJ
food NOUN
, PUNCT
however ADV
, PUNCT
I PRON
finally ADV
tried VERB
some DET
in ADP
order NOUN
to PART
please VERB
agirl NOUN
I PRON
was AUX
seeing VERB
at ADP
the DET
time NOUN
. PUNCT
  SPACE
I PRON
had AUX
never ADV
heard VERB
of ADP
Chinese ADJ
restaurantsyndrome NOUN
. PUNCT
  SPACE
A DET
group NOUN
of ADP
us PRON
went VERB
to ADP
the DET
restaurant NOUN
and CCONJ
all DET
shared VERB
6 NUM
differentdishes NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
taste VERB
great ADJ
, PUNCT
but CCONJ
I PRON
decided VERB
it PRON
was AUX
n't PART
so ADV
bad ADJ
. PUNCT
  SPACE
We PRON
wenthome VERB
and CCONJ
went VERB
to ADP
bed NOUN
early ADV
. PUNCT
  SPACE
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs NOUN
. PUNCT
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
inmy PROPN
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'mnot PROPN
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
Suffice VERB
to PART
say VERB
that SCONJ
I PRON
wo AUX
nt PART
go VERB
into ADP
a DET
chinese ADJ
restaurant NOUN
unless SCONJ
I PRON
am AUX
physically ADV
threatened VERB
. PUNCT
  SPACE
The DET
smell NOUN
of ADP
the DET
food NOUN
makes VERB
me PRON
ill ADJ
( PUNCT
and CCONJ
that SCONJ
* PUNCT
is*a ADJ
psycholgical ADJ
reaction NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
I PRON
have AUX
been AUX
dragged VERB
in ADP
to ADP
sufferthrough ADJ
beef NOUN
and CCONJ
broccoli NOUN
without ADP
any DET
sauces NOUN
, PUNCT
I PRON
insist VERB
on ADP
no DET
MSG NOUN
. PUNCT
  SPACE
I PRON
have AUX
n't PART
gotten VERB
sick ADJ
yet.-- NUM
Doug PROPN
Bank PROPN
                       SPACE
Private PROPN
Systems PROPN
Divisiondougb@ecs.comm.mot.com X
          SPACE
Motorola PROPN
Communications PROPN
Sectordougb@nwu.edu PROPN
                   SPACE
Schaumburg PROPN
, PUNCT
Illinoisdougb@casbah.acns.nwu.edu NOUN
       SPACE
708 NUM
- PUNCT
576 NUM
- SYM
8207 NUM
                    SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58782From NUM
: PUNCT
vilok@bmerh322.bnr.ca PUNCT
( PUNCT
Vilok PROPN
Kusumakar)Subject ADJ
: PUNCT
Future NOUN
of ADP
methanolI PROPN
hope VERB
this DET
is AUX
the DET
correct ADJ
newsgroup NOUN
for ADP
this DET
. PUNCT
What PRON
is AUX
the DET
scoop NOUN
on ADP
Methanol PROPN
and CCONJ
its PRON
future NOUN
as SCONJ
an DET
alternative ADJ
fuel NOUN
forvehicles NOUN
? PUNCT
  SPACE
How ADV
does AUX
it PRON
compare VERB
to ADP
ethanol VERB
? PUNCT
There PRON
was AUX
some DET
news NOUN
about ADP
health NOUN
risks NOUN
involved VERB
. PUNCT
  SPACE
Anybody PRON
know VERB
aboutthat DET
. PUNCT
  SPACE
How ADV
does AUX
the DET
US PROPN
Clean PROPN
Air PROPN
act NOUN
impact VERB
the DET
use NOUN
of ADP
Methanol PROPN
by ADP
theyear NOUN
1995 NUM
? PUNCT
I PRON
think VERB
its PRON
Methyl PROPN
Tertiary PROPN
butyl NOUN
ether NOUN
which PRON
the DET
future ADJ
industries NOUN
willuse NOUN
as SCONJ
a DET
substitute NOUN
for ADP
conventional ADJ
fuels NOUN
. PUNCT
There PRON
is AUX
company NOUN
Methanex PROPN
which PRON
produces VERB
12 NUM
% NOUN
of ADP
the DET
world NOUN
's PART
supply NOUN
ofMethanol NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Please INTJ
reply VERB
by ADP
e NOUN
- NOUN
mail NOUN
as SCONJ
I PRON
do AUX
not PART
read VERB
these DET
newsgroups NOUN
. PUNCT
Thanks NOUN
in ADP
advance.--Vilok NUM
Kusumakar PROPN
                    SPACE
OSI PROPN
Protocols PROPN
for ADP
tomorrow......vilok@bnr.ca PROPN
                       SPACE
Bell PROPN
- PUNCT
Northern PROPN
Research PROPN
, PUNCT
Ltd PROPN
. PUNCT
Phone NOUN
: PUNCT
( PUNCT
613 NUM
) PUNCT
763 NUM
- PUNCT
2273 NUM
              SPACE
P.O. PROPN
Box PROPN
3511 NUM
, PUNCT
Station PROPN
C PROPN
Fax PROPN
: PUNCT
   SPACE
( PUNCT
613 NUM
) PUNCT
765 NUM
- SYM
4777 NUM
              SPACE
Ottawa PROPN
, PUNCT
Ontario PROPN
, PUNCT
K1Y PROPN
4H7Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58783From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.163923.25120@microsoft.com NUM
> X
, PUNCT
tomca@microsoft.com X
( PUNCT
Tom PROPN
B. PROPN
Carey PROPN
) PUNCT
writes:| PROPN
> X
OK INTJ
, PUNCT
just ADV
for ADP
grins:| PROPN
> X
- PUNCT
Kekule PROPN
hypothesized VERB
a DET
resonant ADJ
structure NOUN
for ADP
the DET
aromatic ADJ
benzene| NOUN
> X
ring NOUN
after ADP
waking VERB
from ADP
a DET
dream NOUN
in ADP
which PRON
a DET
snake NOUN
was AUX
swallowing VERB
his PRON
tail.| PROPN
> X
- PUNCT
Archimedes NOUN
formalized VERB
the DET
principle NOUN
of ADP
buoyancy NOUN
while SCONJ
meditating VERB
in| PROPN
> X
his PRON
bath NOUN
. PUNCT
Well INTJ
, PUNCT
certainly ADV
in ADP
Archimedes PROPN
case NOUN
the DET
description NOUN
" PUNCT
while SCONJ
observing VERB
thephenomena PROPN
in ADP
his PRON
bath NOUN
" PUNCT
seems VERB
more ADV
accurate ADJ
than SCONJ
" PUNCT
while SCONJ
meditating VERB
inhis ADJ
bath NOUN
" PUNCT
-- PUNCT
it PRON
was AUX
, PUNCT
after ADV
all ADV
, PUNCT
a DET
rather ADV
buoyancy NOUN
intense ADJ
environment.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58784From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:| PROPN
> X
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs.| PROPN
> X
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in| ADP
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'm| PROPN
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
The DET
funny ADJ
thing NOUN
is AUX
the DET
personaly ADJ
stories NOUN
about ADP
reactions NOUN
to ADP
MSG PROPN
vary VERB
sogreatly ADV
. PUNCT
Some DET
said VERB
that SCONJ
their PRON
heart NOUN
beat VERB
speeded VERB
up ADP
with ADP
flush ADJ
face NOUN
. PUNCT
Someclaim VERB
their PRON
heart NOUN
" PUNCT
skipped VERB
" PUNCT
beats NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Some DET
reacted VERB
withheadache PROPN
, PUNCT
some DET
stomach NOUN
ache NOUN
. PUNCT
Some DET
had AUX
watery ADJ
eyes NOUN
or CCONJ
running VERB
nose NOUN
, PUNCT
somehad VERB
itchy ADJ
skin NOUN
or CCONJ
rashes NOUN
. PUNCT
More ADV
serious ADJ
accusations NOUN
include VERB
respiration NOUN
difficulty NOUN
and CCONJ
brain NOUN
damage NOUN
. PUNCT
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
onesuspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
Butif ADP
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it PRON
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58785From NUM
: PUNCT
mossman@cea X
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
( PUNCT
Amy PROPN
Mossman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Here ADV
is AUX
another DET
anecdotal ADJ
story NOUN
. PUNCT
  SPACE
I PRON
am AUX
a DET
picky ADJ
eater NOUN
and CCONJ
never ADV
wanted VERB
to ADP
| PROPN
> X
try VERB
chinese ADJ
food NOUN
, PUNCT
however ADV
, PUNCT
I PRON
finally ADV
tried VERB
some DET
in ADP
order NOUN
to PART
please VERB
a| VERB
> X
girl NOUN
I PRON
was AUX
seeing VERB
at ADP
the DET
time NOUN
. PUNCT
  SPACE
I PRON
had AUX
never ADV
heard VERB
of ADP
Chinese ADJ
restaurant| PROPN
> X
syndrome NOUN
. PUNCT
  SPACE
A DET
group NOUN
of ADP
us PRON
went VERB
to ADP
the DET
restaurant NOUN
and CCONJ
all DET
shared VERB
6 NUM
different| NOUN
> X
dishes NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
taste VERB
great ADJ
, PUNCT
but CCONJ
I PRON
decided VERB
it PRON
was AUX
n't PART
so ADV
bad ADJ
. PUNCT
  SPACE
We PRON
went| NOUN
> X
home ADV
and CCONJ
went VERB
to ADP
bed NOUN
early ADV
. PUNCT
  SPACE
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs.| PROPN
> X
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in| ADP
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'm| PROPN
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
| X
> X
| ADV
> X
Suffice VERB
to PART
say VERB
that SCONJ
I PRON
wo AUX
nt PART
go VERB
into ADP
a DET
chinese ADJ
restaurant NOUN
unless SCONJ
I PRON
am AUX
| ADJ
> X
physically ADV
threatened VERB
. PUNCT
  SPACE
The DET
smell NOUN
of ADP
the DET
food NOUN
makes VERB
me PRON
ill ADJ
( PUNCT
and CCONJ
that DET
* PUNCT
is*| NUM
> X
a DET
psycholgical ADJ
reaction NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
I PRON
have AUX
been AUX
dragged VERB
in ADP
to ADP
suffer| PROPN
> X
through ADP
beef NOUN
and CCONJ
broccoli NOUN
without ADP
any DET
sauces NOUN
, PUNCT
I PRON
insist VERB
on ADP
no DET
MSG NOUN
. PUNCT
  SPACE
| NOUN
> X
I PRON
have AUX
n't PART
gotten VERB
sick ADJ
yet.| PUNCT
> X
| ADP
> X
-- PUNCT
I PRON
had AUX
a DET
similar ADJ
reaction NOUN
to ADP
Chinese ADJ
food NOUN
but CCONJ
came VERB
to ADP
a DET
completly ADV
differentconclusion NOUN
. PUNCT
I PRON
've AUX
eaten VERB
Chinese ADJ
food NOUN
for ADP
ages NOUN
and CCONJ
never ADV
had AUX
problems NOUN
. PUNCT
I PRON
wentwith VERB
some DET
Chinese ADJ
Malaysian ADJ
friends NOUN
to ADP
a DET
swanky ADJ
Chinses PROPN
rest NOUN
. PUNCT
and CCONJ
they PRON
orderedlots VERB
of ADP
stuff NOUN
I PRON
had AUX
never ADV
seen VERB
before ADV
. PUNCT
The DET
only ADJ
thing NOUN
I PRON
can AUX
remember VERB
of ADP
thatmeal NOUN
was AUX
the DET
first ADJ
course NOUN
, PUNCT
scallops NOUN
served VERB
in ADP
the DET
shell NOUN
with ADP
a DET
soy NOUN
- PUNCT
type NOUN
sauce NOUN
. PUNCT
I PRON
thought VERB
, PUNCT
" PUNCT
Well INTJ
, PUNCT
I PRON
've AUX
only ADV
had VERB
scallops NOUN
once ADV
and CCONJ
I PRON
was AUX
sick ADJ
after ADP
but CCONJ
thatcould NOUN
have AUX
been AUX
a DET
coincidence NOUN
" PUNCT
. PUNCT
That DET
night NOUN
as SCONJ
I PRON
sat VERB
on ADP
the DET
bathroom NOUN
floor NOUN
, PUNCT
sweating VERB
and CCONJ
emptying VERB
my PRON
stomach NOUN
the DET
hard ADJ
way NOUN
, PUNCT
I PRON
decided VERB
I PRON
would AUX
never ADV
touchanother VERB
scallop VERB
. PUNCT
I PRON
may AUX
not PART
be AUX
allergic ADJ
but CCONJ
I PRON
do AUX
n't PART
want VERB
to PART
take VERB
the DET
chance NOUN
. PUNCT
Amy PROPN
MossmanNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58786From NUM
: PUNCT
snichols@adobe.com X
( PUNCT
Sherri ADJ
Nichols)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Exercise NOUN
and CCONJ
MigraineIn PROPN
article NOUN
< X
1993Apr15.163133.25634@ntmtv NUM
> X
janet@ntmtv.com X
( PUNCT
Janet PROPN
Jakstys PROPN
) PUNCT
writes:>This NOUN
is AUX
n't PART
the DET
first ADJ
time NOUN
that PRON
I PRON
've AUX
had VERB
a DET
migraine ADJ
occur NOUN
after ADP
exercise.>I'm PROPN
wondering VERB
if SCONJ
anyone PRON
else ADV
has AUX
had VERB
the DET
same ADJ
experience NOUN
and CCONJ
I PRON
wonder VERB
> X
what PRON
triggers VERB
the DET
migraine NOUN
in ADP
this DET
situation NOUN
( PUNCT
heat NOUN
buildup NOUN
? PUNCT
dehydration?).>I'm ADV
not PART
giving VERB
up ADP
tennis NOUN
so ADV
is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
( PUNCT
besides ADV
get AUX
into ADP
> X
shape NOUN
and CCONJ
do AUX
n't PART
play VERB
at ADP
high ADJ
noon NOUN
) PUNCT
to PART
prevent VERB
this?I've NOUN
gotten VERB
migraines NOUN
after ADP
exercise NOUN
, PUNCT
though ADV
for ADP
me PRON
it PRON
seems VERB
to PART
be AUX
relatedto NOUN
exercising VERB
without ADP
having VERB
eaten VERB
recently ADV
. PUNCT
  SPACE
Sherri PROPN
Nicholssnichols@adobe.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58787From NUM
: PUNCT
hrubin@pop.stat.purdue.edu PROPN
( PUNCT
Herman PROPN
Rubin)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
MethodologyIn PROPN
article NOUN
< X
1qk92lINNl55@im4u.cs.utexas.edu NUM
> X
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C5I2Bo PROPN
. PUNCT
CG9@news X
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
The DET
difference NOUN
between ADP
a DET
Nobel PROPN
Prize PROPN
level NOUN
scientist NOUN
and CCONJ
a DET
mediocre ADJ
> X
> X
scientist NOUN
does AUX
not PART
lie VERB
in ADP
the DET
quality NOUN
of ADP
their PRON
empirical ADJ
methodology NOUN
. PUNCT
  SPACE
> X
> X
It PRON
depends VERB
on ADP
the DET
quality NOUN
of ADP
their PRON
THINKING NOUN
. PUNCT
 			 SPACE
.................... PUNCT
> X
Lee PROPN
Lady PROPN
is AUX
correct ADJ
when ADV
she PRON
asserts VERB
that SCONJ
the DET
difference NOUN
between ADP
> X
Einstein PROPN
and CCONJ
the DET
average ADJ
post ADJ
- ADJ
doc ADJ
physicist NOUN
is AUX
the DET
quality NOUN
of ADP
> X
their PRON
thought NOUN
. PUNCT
  SPACE
But CCONJ
what PRON
is AUX
the DET
difference NOUN
between ADP
Einstein PROPN
and CCONJ
a DET
> X
genius NOUN
who PRON
would AUX
be AUX
a DET
great ADJ
scientist NOUN
but CCONJ
whose PRON
great ADJ
thoughts NOUN
> X
are AUX
scientifically ADV
screwy?This PROPN
example NOUN
is AUX
probably ADV
wrong ADJ
. PUNCT
  SPACE
There PRON
is AUX
the DET
case NOUN
of ADP
one NUM
famousphysicist NOUN
telling VERB
another DET
that SCONJ
he PRON
was AUX
probably ADV
wrong ADJ
. PUNCT
  SPACE
As SCONJ
I PRON
recallthe VERB
quote INTJ
: PUNCT
	 SPACE
Your PRON
ideas NOUN
are AUX
crazy ADJ
, PUNCT
to PART
be AUX
sure ADJ
. PUNCT
  SPACE
But CCONJ
they PRON
are AUX
not PART
crazy ADJ
	 SPACE
enough ADJ
to PART
be AUX
right ADJ
. PUNCT
The DET
typical ADJ
screwball NOUN
is AUX
only ADV
somewhat ADV
screwy.-- PROPN
Herman PROPN
Rubin PROPN
, PUNCT
Dept PROPN
. PROPN
of ADP
Statistics PROPN
, PUNCT
Purdue PROPN
Univ PROPN
. PROPN
, PUNCT
West PROPN
Lafayette PROPN
IN47907 PROPN
- PUNCT
1399Phone NUM
: PUNCT
( PUNCT
317)494-6054hrubin@snap.stat.purdue.edu NUM
( PUNCT
Internet NOUN
, PUNCT
bitnet NOUN
) PUNCT
  SPACE
{ PUNCT
purdue PROPN
, PUNCT
pur NOUN
- PUNCT
ee}!snap.stat!hrubin(UUCP)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58788From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5JE94.KrL@unx.sas.com PROPN
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr15.161112.21772@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>| VERB
> X
I PRON
do AUX
n't PART
think VERB
" PUNCT
extra ADJ
- PUNCT
scientific ADJ
" PUNCT
is AUX
a DET
very ADV
useful ADJ
phrase NOUN
in ADP
a DET
discussion>| NOUN
> X
of ADP
the DET
boundaries NOUN
of ADP
science NOUN
, PUNCT
except SCONJ
as SCONJ
a DET
proposed VERB
definiens.>| NUM
> X
Extra PROPN
- PUNCT
rational>| PROPN
> X
is AUX
a DET
better ADJ
phrase NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
number NOUN
of ADP
well ADV
- PUNCT
known VERB
cases>| NOUN
> X
of ADP
extra ADJ
- ADJ
rational ADJ
considerations NOUN
driving VERB
science NOUN
in ADP
a DET
useful ADJ
direction.>>Yeah PROPN
, PUNCT
but CCONJ
the DET
problem NOUN
with ADP
holding VERB
up ADP
the DET
" PUNCT
extra ADJ
- ADJ
rational ADJ
" PUNCT
examples NOUN
as SCONJ
> X
exemplars NOUN
, PUNCT
or CCONJ
as SCONJ
refutations NOUN
of ADP
well ADV
founded VERB
methodology NOUN
, PUNCT
is AUX
that SCONJ
you PRON
> X
run VERB
smack ADV
up ADV
against ADP
such ADJ
unuseful ADJ
directions NOUN
as SCONJ
Lysenko PROPN
. PUNCT
  SPACE
Such ADJ
" PUNCT
extra->rational ADJ
" PUNCT
cases NOUN
are AUX
curiosities NOUN
-- PUNCT
not PART
guides VERB
to PART
methodology NOUN
. PUNCT
As SCONJ
has AUX
been AUX
noted VERB
before ADV
, PUNCT
there PRON
is AUX
the DET
distinction NOUN
between ADP
_ PROPN
motivation_and PROPN
_ PROPN
method NOUN
_ PROPN
. PUNCT
  SPACE
No DET
experimental ADJ
result NOUN
should AUX
be AUX
accepted VERB
unless SCONJ
it PRON
isdescribed VERB
in ADP
sufficient ADJ
detail NOUN
to PART
be AUX
replicated VERB
, PUNCT
and CCONJ
the DET
replicationsdo NOUN
indeed ADV
reproduce VERB
the DET
result NOUN
. PUNCT
  SPACE
No DET
theoretical ADJ
argument NOUN
should AUX
beaccepted VERB
unless SCONJ
it PRON
is AUX
presented VERB
in ADP
sufficient ADJ
detail NOUN
to PART
be AUX
followed VERB
, PUNCT
andreasonable ADJ
, PUNCT
knowlegeable ADJ
, PUNCT
people NOUN
agree VERB
with ADP
the DET
force NOUN
of ADP
the DET
logic NOUN
. PUNCT
But CCONJ
people NOUN
try VERB
experiments NOUN
, PUNCT
and CCONJ
pursue VERB
arguments NOUN
, PUNCT
for ADP
all DET
sorts NOUN
of ADP
crazyreasons NOUN
. PUNCT
  SPACE
Irrational ADJ
motivations NOUN
are AUX
not PART
just ADV
curiousities NOUN
; PUNCT
they PRON
are AUX
alarge ADJ
part NOUN
of ADP
the DET
history NOUN
of ADP
science NOUN
. PUNCT
There PRON
are AUX
a DET
couple NOUN
of ADP
negative ADJ
points NOUN
to PART
make VERB
here:1 NUM
) PUNCT
A DET
theory NOUN
of ADP
qi PROPN
could AUX
, PUNCT
conceivably ADV
, PUNCT
become VERB
accepted VERB
without ADP
directverification NOUN
of ADP
the DET
existence NOUN
of ADP
qi PROPN
. PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
quarks NOUN
are AUX
an DET
acceptedpart NOUN
of ADP
the DET
standard ADJ
model NOUN
of ADP
physics NOUN
, PUNCT
with ADP
no DET
direct ADJ
verification NOUN
. PUNCT
  SPACE
Whatwould AUX
be AUX
needed VERB
would AUX
be AUX
a DET
theory NOUN
, PUNCT
based VERB
on ADP
qi PROPN
, PUNCT
that PRON
predicted VERB
medicalreality NOUN
better ADV
than SCONJ
the DET
alternatives NOUN
. PUNCT
  SPACE
The DET
central ADJ
theoretical ADJ
claim NOUN
couldlie NOUN
forever ADV
beyond ADP
experiment NOUN
, PUNCT
as ADV
long ADV
as SCONJ
there PRON
was AUX
a DET
sufficient ADJ
body NOUN
ofexperimental ADJ
data NOUN
that PRON
the DET
qi PROPN
theory NOUN
predicted VERB
better ADV
than SCONJ
any DET
other.(I NOUN
would AUX
n't PART
hold VERB
my PRON
breath NOUN
waiting VERB
for ADP
the DET
triumph NOUN
of ADP
qi PROPN
, PUNCT
though ADV
. PUNCT
I PRON
do AUX
n't PART
think VERB
that SCONJ
there PRON
is AUX
even ADV
a DET
coherent ADJ
theory NOUN
based VERB
on ADP
it PRON
, PUNCT
much ADJ
lessa NOUN
theory NOUN
that PRON
explains VERB
anything PRON
at ADV
all ADV
better ADJ
than SCONJ
modern ADJ
biology NOUN
. PUNCT
  SPACE
And CCONJ
itis VERB
hard ADJ
to PART
imagine VERB
a DET
qi PROPN
theory NOUN
that PRON
would AUX
not PART
predict VERB
some DET
way NOUN
of ADP
ratherdirectly ADV
verifying VERB
the DET
existence NOUN
of ADP
qi.)2 NOUN
) PUNCT
Science NOUN
has AUX
not PART
historically ADV
progressed VERB
in ADP
any DET
sort NOUN
of ADP
rationalexperiment NOUN
- PUNCT
data NOUN
- PUNCT
theory NOUN
sequence NOUN
. PUNCT
  SPACE
Most ADJ
experiments NOUN
are AUX
carried VERB
out ADP
, PUNCT
andinterpreted VERB
, PUNCT
in ADP
pre ADJ
- ADJ
existing VERB
theoretical ADJ
frameworks NOUN
. PUNCT
  SPACE
The DET
theoreticalcontroversies NOUN
of ADP
the DET
day NOUN
determine NOUN
which PRON
experiments NOUN
get VERB
done VERB
. PUNCT
  SPACE
Overall PROPN
, PUNCT
there PRON
is AUX
a DET
huge ADJ
messy ADJ
affair NOUN
of ADP
personal ADJ
jealousies NOUN
, PUNCT
crazy ADJ
motivations NOUN
, PUNCT
petty ADJ
hatreds NOUN
, PUNCT
and CCONJ
the DET
like ADJ
that DET
determines VERB
which PRON
experiments NOUN
, PUNCT
and CCONJ
whichcomputations NOUN
, PUNCT
get VERB
done VERB
. PUNCT
  SPACE
What PRON
keeps VERB
it PRON
going VERB
forward ADV
is AUX
the DET
criticalfunction NOUN
of ADP
science NOUN
: PUNCT
results NOUN
do AUX
n't PART
count VERB
unless SCONJ
they PRON
can AUX
be AUX
replicated VERB
. PUNCT
The DET
whole ADJ
system NOUN
is AUX
a DET
sort NOUN
of ADP
mechanism NOUN
for ADP
generate NOUN
- PUNCT
and CCONJ
- PUNCT
test NOUN
. PUNCT
  SPACE
The DET
generatepart NOUN
can AUX
be AUX
totally ADV
irrational ADJ
, PUNCT
as ADV
long ADV
as SCONJ
the DET
test NOUN
part NOUN
works VERB
properly ADV
. PUNCT
Pasteur PROPN
could AUX
believe VERB
whatever PRON
he PRON
liked VERB
about ADP
chemical NOUN
activity NOUN
and CCONJ
crystals;but CCONJ
even ADV
Mitscherlich PROPN
had AUX
to PART
agree VERB
that SCONJ
racemic ADJ
acid NOUN
crystals NOUN
were AUX
handed;that VERB
when ADV
you PRON
separate VERB
them PRON
by ADP
handedness NOUN
, PUNCT
you PRON
get VERB
two NUM
chemicals NOUN
that PRON
rotatepolarized VERB
light NOUN
in ADP
opposite ADJ
directions NOUN
; PUNCT
and CCONJ
the DET
right ADV
- PUNCT
rotating VERB
version NOUN
wasindistinguishable ADJ
from ADP
tartaric ADJ
acid NOUN
. PUNCT
  SPACE
Pasteur PROPN
's PART
irrational ADJ
motivation NOUN
hadled VERB
to ADP
a DET
replicable ADJ
, PUNCT
and CCONJ
important ADJ
, PUNCT
result VERB
. PUNCT
This DET
is AUX
where ADV
Lysenko PROPN
, PUNCT
creationists NOUN
, PUNCT
etc X
. PUNCT
fail VERB
. PUNCT
  SPACE
They PRON
have AUX
usually ADV
noteven ADV
produced VERB
coherent ADJ
theories NOUN
that PRON
predict VERB
much ADJ
of ADP
anything PRON
. PUNCT
  SPACE
When ADV
theirtheories NOUN
do AUX
predict VERB
, PUNCT
and CCONJ
are AUX
contradicted VERB
by ADP
experiment NOUN
, PUNCT
they PRON
do AUX
notconcede VERB
the DET
point NOUN
and CCONJ
modify VERB
their PRON
theories NOUN
; PUNCT
rather ADV
they PRON
try VERB
to PART
suppressthe DET
results NOUN
( PUNCT
Lysenko PROPN
) PUNCT
or CCONJ
try VERB
to PART
divert VERB
attention NOUN
to ADP
other ADJ
evidence NOUN
theythink NOUN
supports VERB
their PRON
position NOUN
( PUNCT
creationists).-- ADJ
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58789From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Steve PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Crohn PROPN
's PART
DiseaseIn PROPN
article NOUN
< X
1993Apr14.174824.12295@westminster.ac.uk PROPN
> X
, PUNCT
kxaec@sun.pcl.ac.uk(David PROPN
Watters PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
Dear INTJ
all DET
, PUNCT
> X
> X
I PRON
am AUX
a DET
Crohn PROPN
's PART
Disease PROPN
sufferer NOUN
and CCONJ
I PRON
'm AUX
interested ADJ
if SCONJ
anyone PRON
knows VERB
of ADP
any DET
current ADJ
research NOUN
that PRON
is AUX
going VERB
on ADP
into ADP
the DET
subject NOUN
. PUNCT
I PRON
've AUX
done VERB
some DET
investigation NOUN
myself PRON
so ADV
you PRON
do AUX
n't PART
need VERB
to PART
spare VERB
me PRON
any DET
details NOUN
. PUNCT
I PRON
've AUX
had VERB
the DET
fistulas NOUN
, PUNCT
the DET
ileostomy NOUN
, PUNCT
etc X
.. PUNCT
> X
> X
Is AUX
a DET
" PUNCT
cure NOUN
" PUNCT
on ADP
the DET
horizon NOUN
? PUNCT
> X
> X
I PRON
am AUX
not PART
in ADP
the DET
medical ADJ
profession NOUN
so SCONJ
if SCONJ
you PRON
do AUX
reply VERB
I PRON
would AUX
appreciate VERB
plain ADJ
speak VERB
. PUNCT
> X
> X
I PRON
'd AUX
prefer VERB
to PART
be AUX
mailed VERB
direct ADJ
as SCONJ
I PRON
do AUX
n't PART
always ADV
get AUX
a DET
chance NOUN
to PART
read VERB
the DET
news NOUN
. PUNCT
> X
> X
Thank VERB
you PRON
in ADP
advance NOUN
. PUNCT
> X
> X
Dave PROPN
. PUNCT
The DET
best ADJ
group NOUN
to PART
keep VERB
you PRON
informed ADJ
is AUX
the DET
Crohn PROPN
's PART
and CCONJ
Colitis PROPN
Foundationof PROPN
America PROPN
. PUNCT
  SPACE
I PRON
do AUX
not PART
know VERB
if SCONJ
the DET
UK PROPN
has AUX
a DET
similar ADJ
organization NOUN
. PUNCT
  SPACE
Theaddress PROPN
ofthe NOUN
CCFA PROPN
is AUX
CCFA444 PROPN
Park PROPN
Avenue PROPN
South11th NOUN
FloorNew PROPN
York PROPN
, PUNCT
NY PROPN
  SPACE
10016 NUM
- PUNCT
7374USAThey NOUN
have AUX
a DET
lot NOUN
of ADP
information NOUN
available ADJ
and CCONJ
have AUX
a DET
number NOUN
of ADP
newsletters NOUN
. PUNCT
Good ADJ
Luck PROPN
. PUNCT
SteveNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58790From NUM
: PUNCT
sue@netcom.com PROPN
( PUNCT
Sue PROPN
Miller)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EugenicsIn PROPN
article NOUN
< X
19617@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>we PUNCT
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADJ
- PUNCT
lived,>Arnold NOUN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can.>Sure VERB
, PUNCT
as ADV
long ADV
as SCONJ
they PRON
'll AUX
make VERB
one NUM
for ADP
me PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58791From NUM
: PUNCT
lehr@austin.ibm.com PROPN
( PUNCT
Ted PROPN
Lehr)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)Gary PROPN
Merrill PROPN
writes VERB
: PUNCT
> X
.. PUNCT
Not PART
every DET
wild ADJ
flight NOUN
of ADP
fancy ADJ
serves NOUN
> X
( PUNCT
or CCONJ
can AUX
serve VERB
) PUNCT
in ADP
the DET
appropriate ADJ
relation NOUN
to ADP
a DET
hypothesis NOUN
. PUNCT
  SPACE
It PRON
is AUX
> X
somewhat ADV
interesting ADJ
that SCONJ
when ADV
anyone PRON
is AUX
challanged VERB
to PART
provide VERB
an DET
> X
example NOUN
of ADP
this DET
sort NOUN
the DET
* PUNCT
only ADV
* PUNCT
one NUM
they PRON
come VERB
up ADP
with ADP
is AUX
the DET
one NOUN
about ADP
> X
Kekule PROPN
. PUNCT
  SPACE
Surely ADV
, PUNCT
there PRON
must AUX
be AUX
others NOUN
. PUNCT
  SPACE
But CCONJ
apparently ADV
this DET
is AUX
regarded VERB
> X
as SCONJ
an DET
* PUNCT
extreme ADJ
* PUNCT
example NOUN
of ADP
a DET
" PUNCT
non ADJ
- ADJ
rational ADJ
" PUNCT
process NOUN
in ADP
science NOUN
whereby ADV
> X
a DET
successful ADJ
hypothesis NOUN
was AUX
proposed VERB
. PUNCT
  SPACE
But CCONJ
how ADV
non ADJ
- ADJ
rational ADJ
is AUX
it?Indeed VERB
, PUNCT
an DET
extreme ADJ
example NOUN
. PUNCT
  SPACE
It PRON
came VERB
" PUNCT
out SCONJ
of ADP
nowhere ADV
. PUNCT
" PUNCT
  SPACE
The DET
connectionKekule NOUN
saw VERB
between ADP
it PRON
and CCONJ
his PRON
problem NOUN
is AUX
fortunate ADJ
but CCONJ
not PART
extraordinary ADJ
. PUNCT
I PRON
, PUNCT
for ADP
example NOUN
, PUNCT
often ADV
receive VERB
/ SYM
conjure NOUN
solutions NOUN
( PUNCT
hypotheses NOUN
for ADP
solutions NOUN
) PUNCT
to ADP
my PRON
everyday ADJ
problems NOUN
at ADP
moments NOUN
when ADV
I PRON
appear VERB
to ADP
myself PRON
to PART
be AUX
occupied VERB
with ADP
activities NOUN
quite ADV
removed VERB
. PUNCT
  SPACE
Algorithms PROPN
for ADP
that DET
new ADJ
software NOUN
feature NOUN
comewhen ADV
I PRON
trample VERB
the DET
meadow NOUN
on ADP
my PRON
occasional ADJ
runs NOUN
. PUNCT
  SPACE
Alternative PROPN
( PUNCT
better ADJ
> X
) PUNCT
ways NOUN
to PART
instruct VERB
and CCONJ
rear VERB
my PRON
sons NOUN
arrive VERB
while SCONJ
I PRON
weed VERB
the DET
garden NOUN
. PUNCT
  SPACE
I PRON
'll AUX
swear VERB
I PRON
am AUX
not PART
thinking VERB
about ADP
any DET
of ADP
it PRON
when ADV
ideas NOUN
come VERB
. PUNCT
   SPACE
These DET
ideas NOUN
are AUX
not PART
the DET
stuff NOUN
of ADP
" PUNCT
great ADJ
" PUNCT
discoveries NOUN
, PUNCT
of ADP
course NOUN
, PUNCT
but CCONJ
myconnecting VERB
them PRON
to ADP
particular ADJ
problems NOUN
is AUX
fraught ADJ
with ADP
deliberation NOUN
andoccasional ADJ
fits NOUN
of ADP
rationality NOUN
. PUNCT
> X
Surely ADV
it PRON
was AUX
n't PART
the DET
* PUNCT
only ADV
* PUNCT
daydream NOUN
[ PUNCT
Kekule PROPN
] PUNCT
had AUX
. PUNCT
  SPACE
What PRON
was AUX
special ADJ
about ADP
> X
* PUNCT
this DET
* PUNCT
one NUM
? PUNCT
  SPACE
Could AUX
it PRON
have AUX
had VERB
something PRON
to PART
do AUX
with ADP
a DET
perceived VERB
> X
* PUNCT
analogy NOUN
* PUNCT
between ADP
the DET
geometry NOUN
of ADP
the DET
snakes NOUN
and CCONJ
problems NOUN
concerning VERB
> X
geometry NOUN
of ADP
molecules NOUN
? PUNCT
  SPACE
Yes INTJ
. PUNCT
  SPACE
And CCONJ
he PRON
was AUX
lucky ADJ
to PART
have AUX
such DET
a DET
colorful ADJ
, PUNCT
vivid ADJ
image NOUN
. PUNCT
  SPACE
I PRON
, PUNCT
alas INTJ
, PUNCT
willnever NOUN
figure VERB
out ADP
why ADV
returning VERB
worms NOUN
to ADP
the DET
loose ADJ
soil NOUN
of ADP
my PRON
garden NOUN
brought VERB
, PUNCT
" PUNCT
have AUX
him PRON
count NOUN
objects NOUN
instead ADV
of ADP
merely ADV
count VERB
" PUNCT
to ADP
mind NOUN
regarding VERB
my PRON
2 NUM
year NOUN
- PUNCT
old ADJ
's PART
fledging ADJ
arithmetic ADJ
skills NOUN
. PUNCT
> X
... PUNCT
Upon SCONJ
close ADJ
examination NOUN
, PUNCT
> X
is AUX
there PRON
a DET
non ADJ
- ADJ
rational ADJ
mystical ADJ
leap NOUN
taking VERB
place NOUN
, PUNCT
or CCONJ
is AUX
it PRON
perhaps ADV
> X
closer ADV
to ADP
a DET
formal ADJ
( PUNCT
though SCONJ
often ADV
incomplete ADJ
) PUNCT
analogy NOUN
or CCONJ
model?The PROPN
latter ADV
. PUNCT
  SPACE
Worms PROPN
wiggling VERB
around ADV
in ADP
the DET
dirt NOUN
fascinate NOUN
my PRON
son NOUN
. PUNCT
Regards PROPN
, PUNCT
Ted PROPN
-- PUNCT
Ted PROPN
Lehr PROPN
                             SPACE
| NOUN
" PUNCT
... PUNCT
my PRON
thoughts NOUN
, PUNCT
opinions NOUN
and CCONJ
questions NOUN
... PUNCT
"Future PROPN
Systems PROPN
Technology PROPN
Group PROPN
, PUNCT
AWS PROPN
| PROPN
   SPACE
IBM PROPN
				      SPACE
| PROPN
Internet PROPN
: PUNCT
lehr@futserv.austin.ibm.comAustin PROPN
, PUNCT
TX PROPN
  SPACE
78758 NUM
		      SPACE
| DET
   SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58792From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)Avoiding PROPN
mistakes NOUN
is AUX
certainly ADV
highly ADV
desirable ADJ
. PUNCT
  SPACE
However ADV
it PRON
is AUX
also ADV
widely ADV
acknowledged VERB
that SCONJ
perfectionism NOUN
is AUX
inimicable ADJ
to ADP
creativity NOUN
. PUNCT
And CCONJ
in ADP
ordinary ADJ
life NOUN
, PUNCT
perfectionism NOUN
carried VERB
beyond ADP
a DET
certain ADJ
point NOUN
is AUX
indicative ADJ
of ADP
a DET
psychological ADJ
disorder NOUN
. PUNCT
  SPACE
In ADP
the DET
extreme ADJ
case NOUN
, PUNCT
a DET
  SPACE
perfectionist NOUN
becomes VERB
so ADV
paralyzed ADJ
by ADP
all DET
the DET
possible ADJ
mistakes NOUN
he PRON
might AUX
make VERB
that SCONJ
he PRON
is AUX
unable ADJ
to PART
even ADV
leave VERB
the DET
house NOUN
. PUNCT
  SPACE
In ADP
science NOUN
, PUNCT
we PRON
want VERB
to PART
discover VERB
as ADV
much ADJ
truth NOUN
about ADP
the DET
world NOUN
as SCONJ
possible ADJ
and CCONJ
we PRON
also ADV
want VERB
to PART
have AUX
as ADV
much ADJ
certainty NOUN
as SCONJ
possible ADJ
about ADP
these DET
discoveries NOUN
. PUNCT
  SPACE
Usually ADV
there PRON
is AUX
some DET
trade NOUN
- PUNCT
off NOUN
between ADP
these DET
two NUM
desiderata NOUN
--- PUNCT
the DET
search NOUN
for ADP
scope NOUN
and CCONJ
the DET
search NOUN
for ADP
certainty NOUN
. PUNCT
  SPACE
If SCONJ
18th ADJ
century NOUN
mathematicians PROPN
had AUX
demanded VERB
total ADJ
rigor NOUN
from ADP
Newton PROPN
and CCONJ
Leibniz PROPN
then ADV
there PRON
would AUX
probably ADV
be AUX
no DET
calculus NOUN
today NOUN
, PUNCT
because SCONJ
neither DET
of ADP
the DET
two NUM
could AUX
explain VERB
calculus NOUN
in ADP
a DET
way NOUN
that PRON
really ADV
made VERB
sense NOUN
, PUNCT
since SCONJ
they PRON
lacked VERB
the DET
concept NOUN
of ADP
a DET
limit NOUN
. PUNCT
  SPACE
And CCONJ
in ADP
fact NOUN
, PUNCT
because SCONJ
of ADP
the DET
lack NOUN
of ADP
a DET
rigorous ADJ
foundation NOUN
, PUNCT
they PRON
made VERB
a DET
number NOUN
of ADP
errors NOUN
in ADP
their PRON
use NOUN
of ADP
calculus NOUN
. PUNCT
It PRON
was AUX
only ADV
a DET
hundred NUM
years NOUN
later ADV
that SCONJ
Weistrass PROPN
was AUX
able ADJ
to PART
give VERB
a DET
solid ADJ
grounding NOUN
for ADP
the DET
ideas NOUN
of ADP
Newton PROPN
and CCONJ
Leibniz PROPN
. PUNCT
  SPACE
Nonetheless ADV
, PUNCT
what PRON
Newton PROPN
and CCONJ
Leibniz PROPN
did AUX
was AUX
undoubtedly ADV
science NOUN
and CCONJ
mathematics NOUN
gained VERB
a DET
great ADJ
deal NOUN
more ADV
from ADP
the DET
application NOUN
of ADP
their PRON
important ADJ
ideas NOUN
than SCONJ
it PRON
lost VERB
through ADP
the DET
mistakes NOUN
they PRON
made VERB
. PUNCT
  SPACE
In ADP
article NOUN
< X
1993Apr14.171230.16138@kestrel.edu NUM
> X
king@reasoning.com X
     SPACE
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes VERB
: PUNCT
> X
  SPACE
[ PUNCT
Somebody PRON
writes VERB
: PUNCT
] PUNCT
> X
> X
I PRON
doubt VERB
if SCONJ
Einstein PROPN
used VERB
any DET
formal ADJ
methodology NOUN
. PUNCT
  SPACE
.... PUNCT
> X
  SPACE
.... PUNCT
> X
He PRON
also ADV
proposed VERB
numerous ADJ
experiments NOUN
which PRON
if SCONJ
performed VERB
would AUX
distinguish VERB
a DET
> X
universe NOUN
in ADP
which PRON
special ADJ
relativity NOUN
holds VERB
from ADP
one NUM
in ADP
which PRON
it PRON
does AUX
not PART
. PUNCT
> X
         SPACE
.... PUNCT
> X
Einstein PROPN
played VERB
by ADP
the DET
rules NOUN
, PUNCT
which PRON
demand VERB
that SCONJ
hypotheses VERB
only ADV
be AUX
put VERB
out ADP
> X
there ADV
if SCONJ
there PRON
exists VERB
a DET
specific ADJ
experiment NOUN
that PRON
could AUX
disprove VERB
them PRON
. PUNCT
These DET
are AUX
not PART
the DET
rules NOUN
according VERB
to ADP
many ADJ
who PRON
post VERB
to ADP
sci.med ADJ
andsci.psychology NOUN
. PUNCT
  SPACE
According VERB
to ADP
these DET
posters NOUN
  SPACE
" PUNCT
If SCONJ
it PRON
's AUX
not PART
supported VERB
bycarefully ADV
designed VERB
controlled VERB
studies NOUN
then ADV
it PRON
's AUX
not PART
science NOUN
. PUNCT
"Taken PUNCT
to ADP
the DET
extreme NOUN
, PUNCT
I PRON
believe VERB
that SCONJ
the DET
attitude NOUN
that SCONJ
empirical ADJ
studies NOUN
are AUX
everything PRON
and CCONJ
ideas NOUN
are AUX
nothing PRON
results NOUN
in ADP
a DET
complete ADJ
stultification NOUN
of ADP
science NOUN
. PUNCT
  SPACE
For ADP
one NUM
thing NOUN
, PUNCT
an DET
insistence NOUN
on ADP
an DET
elaborate ADJ
and CCONJ
expensive ADJ
methodology NOUN
results NOUN
in ADP
a DET
sort NOUN
of ADP
scientific ADJ
trade NOUN
- PUNCT
unionism NOUN
, PUNCT
where ADV
those DET
outside ADP
the DET
establishment NOUN
and CCONJ
lacking VERB
institutional ADJ
or CCONJ
corporate ADJ
support NOUN
have AUX
no DET
chance NOUN
to PART
obtain VERB
a DET
hearing NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
do AUX
n't PART
in ADP
the DET
least ADJ
believe VERB
that SCONJ
this DET
is AUX
the DET
intention NOUN
of ADP
the DET
arbiters NOUN
of ADP
scientific ADJ
methodology NOUN
. PUNCT
  SPACE
Nonetheless ADV
, PUNCT
it PRON
is AUX
one NUM
of ADP
the DET
results NOUN
. PUNCT
) PUNCT
   SPACE
And CCONJ
although SCONJ
institutional ADJ
science NOUN
has AUX
certainly ADV
produced VERB
many ADJ
wonderful ADJ
results NOUN
, PUNCT
I PRON
think VERB
it PRON
is AUX
a DET
foolish ADJ
arrogance NOUN
for ADP
scientists NOUN
to PART
believe VERB
that SCONJ
no DET
one NOUN
outside ADP
the DET
establishment NOUN
--- PUNCT
and CCONJ
using VERB
less ADJ
than SCONJ
perfect ADJ
empirical ADJ
methodology NOUN
--- PUNCT
will AUX
ever ADV
come VERB
with ADP
anything PRON
worthwhile ADJ
. PUNCT
  SPACE
Furthermore ADV
, PUNCT
the DET
big ADJ
bucks NOUN
approach VERB
to ADP
science NOUN
promotes NOUN
what PRON
I PRON
think VERB
isone NOUN
of ADP
the DET
most ADV
significant ADJ
errors NOUN
in ADP
science NOUN
: PUNCT
  SPACE
choosing VERB
to ADP
investigatequestions NOUN
because SCONJ
they PRON
can AUX
be AUX
readily ADV
handled VERB
by ADP
the DET
currentlyfashionable ADJ
methodology NOUN
( PUNCT
or CCONJ
because SCONJ
one PRON
can AUX
readily ADV
get AUX
institutionalor ADJ
corporate ADJ
sponsorship NOUN
for ADP
them PRON
) PUNCT
instead ADV
of ADP
directing VERB
attention NOUN
tothose NOUN
questions NOUN
which PRON
seem VERB
to PART
have AUX
fundamental ADJ
significance NOUN
. PUNCT
For ADP
instance NOUN
, PUNCT
certain ADJ
questions NOUN
can AUX
not PART
be AUX
easily ADV
investigated VERB
withstatistical ADJ
methods NOUN
because SCONJ
the DET
relevant ADJ
factors NOUN
are AUX
not PART
quantitative.(One VERB
could AUX
argue VERB
that SCONJ
this DET
is AUX
the DET
case NOUN
for ADP
almost ADV
all DET
questions NOUN
in ADP
manyareas NOUN
of ADP
psychology NOUN
. PUNCT
  SPACE
In ADP
my PRON
opinion NOUN
, PUNCT
a DET
perusal NOUN
of ADP
many ADJ
of ADP
the DET
papersresulting VERB
from ADP
the DET
attempt NOUN
by ADP
psychologists NOUN
to PART
force VERB
these DET
questionsinto PROPN
a DET
statistical ADJ
framework NOUN
gives VERB
the DET
lie NOUN
to ADP
Russell PROPN
Turpin'sassertion PROPN
that SCONJ
current ADJ
scientific ADJ
methods NOUN
" PUNCT
avoid VERB
all DET
known VERB
errors NOUN
. PUNCT
")I PUNCT
think VERB
that SCONJ
asking VERB
the DET
wrong ADJ
question NOUN
is AUX
probably ADV
the DET
most ADV
fundamental ADJ
error NOUN
in ADP
science NOUN
. PUNCT
  SPACE
( PUNCT
Ignoring VERB
potentially ADV
valuable ADJ
ideas NOUN
is AUX
one NUM
of ADP
the DET
others NOUN
. PUNCT
) PUNCT
  SPACE
And CCONJ
I PRON
think VERB
that SCONJ
scientific ADJ
journals NOUN
are AUX
full ADJ
of ADP
all DET
too ADV
many ADJ
studies NOUN
done VERB
with ADP
impeccable ADJ
empirical ADJ
methods NOUN
but CCONJ
which PRON
are AUX
worthless ADJ
because SCONJ
the DET
wrong ADJ
question NOUN
was AUX
asked VERB
in ADP
the DET
first ADJ
place NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58793From NUM
: PUNCT
johnf@HQ.Ileaf PROPN
. PUNCT
COM PROPN
( PUNCT
John PROPN
Finlayson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Exercise NOUN
and CCONJ
MigraineIn PROPN
article NOUN
< X
1993Apr15.163133.25634@ntmtv NUM
> X
janet@ntmtv.com X
( PUNCT
Janet PROPN
Jakstys PROPN
) PUNCT
writes VERB
: PUNCT
> X
               SPACE
... PUNCT
the DET
other ADJ
day NOUN
I PRON
played VERB
tennis NOUN
during ADP
my PRON
lunch NOUN
> X
hour NOUN
. PUNCT
  SPACE
I PRON
'm AUX
out SCONJ
of ADP
tennis NOUN
shape NOUN
so ADV
it PRON
was AUX
very ADV
intense ADJ
exercise NOUN
. PUNCT
  SPACE
I PRON
> X
got VERB
overheated VERB
, PUNCT
and CCONJ
dehydrated VERB
. PUNCT
  SPACE
Afterwards ADV
, PUNCT
I PRON
noticed VERB
a DET
tingling NOUN
> X
sensation NOUN
all ADV
over ADP
my PRON
head NOUN
then ADV
about ADV
2 NUM
hours NOUN
later ADV
, PUNCT
I PRON
could AUX
feel VERB
> X
a DET
migraine ADJ
start NOUN
. PUNCT
  SPACE
( PUNCT
I PRON
continued VERB
to PART
drink VERB
water NOUN
in ADP
the DET
afternoon.)>I NOUN
took VERB
cafergot VERB
, PUNCT
but CCONJ
it PRON
did AUX
n't PART
help VERB
and CCONJ
the DET
pain NOUN
started VERB
although SCONJ
> X
it PRON
was AUX
n't PART
as ADV
intense ADJ
as SCONJ
it PRON
usually ADV
is AUX
and CCONJ
about ADV
9 NUM
pm NOUN
that DET
night NOUN
, PUNCT
the DET
> X
pain NOUN
subsided.>>This PROPN
is AUX
n't PART
the DET
first ADJ
time NOUN
that PRON
I PRON
've AUX
had VERB
a DET
migraine ADJ
occur NOUN
after ADP
exercise.>I'm PROPN
wondering VERB
if SCONJ
anyone PRON
else ADV
has AUX
had VERB
the DET
same ADJ
experience NOUN
and CCONJ
I PRON
wonder VERB
> X
what PRON
triggers VERB
the DET
migraine NOUN
in ADP
this DET
situation NOUN
( PUNCT
heat NOUN
buildup NOUN
? PUNCT
dehydration?).>I'm ADV
not PART
giving VERB
up ADP
tennis NOUN
so ADV
is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
( PUNCT
besides ADV
get AUX
into ADP
> X
shape NOUN
and CCONJ
do AUX
n't PART
play VERB
at ADP
high ADJ
noon NOUN
) PUNCT
to PART
prevent VERB
this?Hi PROPN
Janet PROPN
, PUNCT
Sounds VERB
exactly ADV
like SCONJ
mine PRON
. PUNCT
  SPACE
Same ADJ
circumstance NOUN
, PUNCT
same ADJ
onset NOUN
symptoms NOUN
, PUNCT
same ADJ
cafergot ADJ
uselessness ADJ
, PUNCT
same ADJ
duration NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
of ADP
all DET
the DET
peopleI PROPN
know VERB
who PRON
have AUX
migraines NOUN
, PUNCT
none NOUN
have AUX
been AUX
so ADV
similar ADJ
. PUNCT
  SPACE
There PRON
is AUX
sucha ADJ
wide ADJ
variation NOUN
between ADP
people NOUN
with ADP
respect NOUN
to ADP
what PRON
causes VERB
theirheadaches NOUN
, PUNCT
that SCONJ
I PRON
generally ADV
do AUX
n't PART
bother VERB
sharing VERB
what PRON
I PRON
've AUX
learnedabout VERB
mine PRON
, PUNCT
but CCONJ
since SCONJ
ours NOUN
seem VERB
to PART
be AUX
alike ADJ
, PUNCT
here ADV
are AUX
my PRON
observations NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
it PRON
's AUX
heat NOUN
, PUNCT
per X
se X
( PUNCT
I PRON
've AUX
had VERB
more ADJ
in ADP
winter NOUN
than SCONJ
summer).Dehydration NOUN
could AUX
conceivably ADV
figure VERB
, PUNCT
though ADV
. PUNCT
  SPACE
Try VERB
tanking VERB
up ADP
beforeplaying VERB
rather ADV
than SCONJ
after ADV
. PUNCT
Being AUX
in ADP
shape NOUN
does AUX
n't PART
seem VERB
to PART
help VERB
me PRON
much ADJ
, PUNCT
either ADV
. PUNCT
I've PROPN
identified VERB
four NUM
factors NOUN
that PRON
do AUX
make VERB
a DET
difference NOUN
( PUNCT
listed VERB
in ADP
descending VERB
order NOUN
of ADP
importance):1 NOUN
) PUNCT
Heavy ADJ
exercise2 NOUN
) PUNCT
Sleep NOUN
deprivation3 NOUN
) PUNCT
Fasting VERB
		 SPACE
( PUNCT
e.g. ADV
, PUNCT
skipped VERB
breakfast)4 PROPN
) PUNCT
Physical ADJ
trauma NOUN
	 SPACE
( PUNCT
e.g. ADV
, PUNCT
head NOUN
bonk)Heavy PROPN
exercise NOUN
has AUX
preceded VERB
all DET
of ADP
my PRON
post ADJ
- ADJ
adolescent ADJ
migraines NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
get AUX
migraines NOUN
after ADP
every DET
heavy ADJ
exercise NOUN
session NOUN
. PUNCT
  SPACE
One NUM
or CCONJ
more ADJ
of ADP
the DET
other ADJ
factors NOUN
* PUNCT
must AUX
* PUNCT
be AUX
present ADJ
( PUNCT
usually ADV
# SYM
2 NUM
) PUNCT
. PUNCT
  SPACE
Since SCONJ
I PRON
discovered VERB
this DET
, PUNCT
I PRON
've AUX
been AUX
nearly ADV
migraine NOUN
- PUNCT
free ADJ
-- PUNCT
relapsing VERB
only ADV
once ADV
every DET
two NUM
or CCONJ
three NUM
years NOUN
when ADV
I PRON
get VERB
cocky ADJ
( PUNCT
" PUNCT
It PRON
's AUX
been AUX
so ADV
long ADV
, PUNCT
maybe ADV
I PRON
just ADV
do AUX
n't PART
get AUX
them PRON
anymore ADV
" PUNCT
) PUNCT
and CCONJ
stop VERB
being AUX
careful ADJ
. PUNCT
Hope PROPN
this DET
is AUX
helpful ADJ
. PUNCT
John PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58794From NUM
: PUNCT
kxgst1+@pitt.edu NOUN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
erythromycinIn X
article NOUN
< X
47974@sdcc12.ucsd.edu NUM
> X
wsun@jeeves.ucsd.edu PROPN
( PUNCT
Fiberman PROPN
) PUNCT
writes::Is PROPN
erythromycin PROPN
effective ADJ
in ADP
treating VERB
pneumonia?::-fmNot PROPN
only ADV
is AUX
it PRON
effective ADJ
, PUNCT
it PRON
is AUX
in ADP
fact NOUN
the DET
drug NOUN
of ADP
choice NOUN
foruncomplicated VERB
cases NOUN
of ADP
community NOUN
- PUNCT
acquired VERB
penumonia.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58795From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Emphysema PROPN
questionIn PROPN
article NOUN
< X
1993Apr15.180621.29465@radford.vak12ed.edu NUM
> X
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich PROPN
) PUNCT
writes::Thanks VERB
for ADP
all DET
your PRON
assistance NOUN
. PUNCT
I PRON
'll AUX
see VERB
if SCONJ
he PRON
can AUX
try VERB
a DET
: PUNCT
different ADJ
brand NOUN
of ADP
patches NOUN
, PUNCT
although SCONJ
he PRON
's AUX
tried VERB
two NUM
brands NOUN
: PUNCT
already ADV
. PUNCT
Are AUX
there PRON
more ADJ
than SCONJ
two?The PROPN
brands NOUN
I PRON
can AUX
come VERB
up ADP
with ADP
off ADP
the DET
top NOUN
of ADP
my PRON
head NOUN
are AUX
Nicotrol PROPN
, PUNCT
Nicoderm PROPN
and CCONJ
Habitrol PROPN
. PUNCT
  SPACE
There PRON
may AUX
be AUX
a DET
fourth ADJ
as SCONJ
well.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58796From NUM
: PUNCT
dmp@fig.citib.com PROPN
( PUNCT
Donna PROPN
M. PROPN
Paino)Subject PROPN
: PUNCT
Psoriatic PROPN
Arthritis PROPN
- PUNCT
Info PROPN
Needed PROPN
Please!A PROPN
friend NOUN
of ADP
mine NOUN
has AUX
been AUX
diagnosed VERB
with ADP
Psoriatic PROPN
Arthritis PROPN
, PUNCT
as SCONJ
a DET
result NOUN
oftrauma NOUN
sustained VERB
in ADP
a DET
car NOUN
accident NOUN
several ADJ
years NOUN
ago ADV
. PUNCT
  SPACE
The DET
psoriasis NOUN
is AUX
undercontrol ADJ
but CCONJ
the DET
arthritis NOUN
part NOUN
of ADP
the DET
illness NOUN
is AUX
not PART
. PUNCT
Ansaid NOUN
( PUNCT
non ADJ
- ADJ
steroidal ADJ
anti ADJ
- ADJ
inflammatory ADJ
) PUNCT
worked VERB
pretty ADV
well ADV
for ADP
three NUM
years NOUN
butisn't VERB
helping VERB
much ADV
now ADV
. PUNCT
  SPACE
My PRON
friend NOUN
is AUX
now ADV
taking VERB
Meclomen PROPN
( PUNCT
another DET
NSAID PROPN
) PUNCT
butthis PROPN
is AUX
n't PART
helping VERB
control VERB
the DET
pain NOUN
at ADV
all ADV
. PUNCT
  SPACE
In ADP
the DET
past ADJ
two NUM
months NOUN
my PRON
friendhas NOUN
also ADV
started VERB
taking VERB
Azulfadine PROPN
along ADP
with ADP
the DET
NSAID PROPN
medicines NOUN
, PUNCT
but CCONJ
theeffects NOUN
of ADP
the DET
combined VERB
drugs NOUN
are AUX
n't PART
supposed VERB
to PART
be AUX
realized VERB
for ADP
several ADJ
months NOUN
. PUNCT
As SCONJ
a DET
result NOUN
of ADP
the DET
pain NOUN
, PUNCT
my PRON
friend NOUN
is AUX
having VERB
problems NOUN
sleeping VERB
. PUNCT
  SPACE
Staying VERB
inone NOUN
position NOUN
too ADV
long ADJ
is AUX
an DET
ordeal NOUN
. PUNCT
  SPACE
Another DET
major ADJ
contributor NOUN
to ADP
pain NOUN
is AUX
thattendonitis PROPN
has AUX
now ADV
developed VERB
( PUNCT
left VERB
thumb NOUN
and CCONJ
hand NOUN
with ADP
numbness NOUN
at ADP
the DET
base NOUN
ofthe PROPN
palm NOUN
; PUNCT
bottom NOUN
of ADP
feet NOUN
; PUNCT
shoulders NOUN
and CCONJ
outer ADJ
thighs NOUN
) PUNCT
. PUNCT
  SPACE
The DET
tendonitis NOUN
isquite VERB
painful ADJ
yet CCONJ
my PRON
friend NOUN
's PART
doctor NOUN
has AUX
not PART
recommended VERB
any DET
form NOUN
of ADP
treatmentto NOUN
relieve VERB
it PRON
. PUNCT
The DET
latest ADJ
twist NOUN
is AUX
that SCONJ
the DET
doctor NOUN
has AUX
dropped VERB
the DET
anti NOUN
- ADJ
inflammatories NOUN
and CCONJ
isnow ADP
recommending VERB
Prednisone PROPN
. PUNCT
  SPACE
The DET
hope NOUN
is AUX
that SCONJ
the DET
Prednisone PROPN
will AUX
relieve VERB
someof NOUN
the DET
pain NOUN
from ADP
the DET
tendonitis NOUN
. PUNCT
My PRON
friend NOUN
is AUX
a DET
41 NUM
year NOUN
old ADJ
male NOUN
who PRON
feels VERB
like SCONJ
he PRON
's AUX
80 NUM
( PUNCT
his PRON
words NOUN
, PUNCT
not PART
mine).If VERB
anyone PRON
is AUX
aware ADJ
of ADP
any DET
new ADJ
treatments NOUN
for ADP
Psoriatic PROPN
Arthritis PROPN
, PUNCT
alternativecourses NOUN
of ADP
action NOUN
, PUNCT
support NOUN
groups NOUN
or CCONJ
literature NOUN
on ADP
it PRON
, PUNCT
I PRON
would AUX
be AUX
extremelygrateful ADJ
if SCONJ
you PRON
could AUX
e NOUN
- NOUN
mail NOUN
to ADP
me PRON
. PUNCT
  SPACE
If SCONJ
anyone PRON
is AUX
interested ADJ
, PUNCT
I PRON
'll AUX
post VERB
asummary ADJ
to ADP
this DET
newsgroup.thanks NOUN
in ADP
advance,Donnadmp@fig.citib.comNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58797From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
erythromycinIn X
article NOUN
< X
47974@sdcc12.ucsd.edu NUM
> X
wsun@jeeves.ucsd.edu PROPN
( PUNCT
Fiberman PROPN
) PUNCT
writes:>Is PROPN
erythromycin VERB
effective ADJ
in ADP
treating VERB
pneumonia?It PROPN
depends VERB
on ADP
the DET
cause NOUN
of ADP
the DET
pneumonia NOUN
. PUNCT
  SPACE
For ADP
treating VERB
bacterialpneumonia NOUN
in ADP
young ADJ
otherwise ADV
- PUNCT
healthy ADJ
non NOUN
- NOUN
smokers NOUN
, PUNCT
erythromycinis PROPN
usually ADV
considered VERB
the DET
antibiotic NOUN
of ADP
choice NOUN
, PUNCT
since SCONJ
it PRON
coversthe NOUN
two NUM
most ADV
- PUNCT
common ADJ
pathogens NOUN
: PUNCT
strep VERB
pneumoniae NOUN
and CCONJ
mycoplasmapneumoniae.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58798From NUM
: PUNCT
slyx0@cc.usu.eduSubject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.190711.22190@walter.bellcore.com NUM
> X
, PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
| ADV
> X
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs NOUN
. PUNCT
> X
| ADV
> X
I PRON
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in ADP
> X
| CCONJ
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I PRON
'm AUX
> X
| ADV
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
> X
> X
The DET
funny ADJ
thing NOUN
is AUX
the DET
personaly ADJ
stories NOUN
about ADP
reactions NOUN
to ADP
MSG PROPN
vary VERB
so ADV
> X
greatly ADV
. PUNCT
Some DET
said VERB
that SCONJ
their PRON
heart NOUN
beat VERB
speeded VERB
up ADP
with ADP
flush ADJ
face NOUN
. PUNCT
Some DET
> PUNCT
claim VERB
their PRON
heart NOUN
" PUNCT
skipped VERB
" PUNCT
beats NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Some DET
reacted VERB
with ADP
> PROPN
headache PROPN
, PUNCT
some DET
stomach NOUN
ache NOUN
. PUNCT
Some DET
had AUX
watery ADJ
eyes NOUN
or CCONJ
running VERB
nose NOUN
, PUNCT
some DET
> X
had AUX
itchy ADJ
skin NOUN
or CCONJ
rashes NOUN
. PUNCT
More ADV
serious ADJ
accusations NOUN
include VERB
respiration NOUN
> X
difficulty NOUN
and CCONJ
brain NOUN
damage NOUN
. PUNCT
> X
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one NUM
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But CCONJ
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it PRON
. PUNCT
Surprise NOUN
surprise NOUN
, PUNCT
different ADJ
people NOUN
react VERB
differently ADV
to ADP
different ADJ
things NOUN
. PUNCT
Oneslightly ADV
off ADP
the DET
subject ADJ
case NOUN
in ADP
point NOUN
. PUNCT
My PRON
brother NOUN
got VERB
stung VERB
by ADP
a DET
bee NOUN
. PUNCT
I PRON
knowhe VERB
is AUX
allergic ADJ
to ADP
bee PROPN
stings NOUN
, PUNCT
but CCONJ
that SCONJ
his PRON
reaction NOUN
is AUX
severe ADJ
localizedswelling NOUN
, PUNCT
not PART
anaphylactic ADJ
shock NOUN
. PUNCT
I PRON
could AUX
not PART
convince VERB
the DET
doctors NOUN
of ADP
that DET
, PUNCT
however ADV
, PUNCT
because SCONJ
that DET
's AUX
not PART
written VERB
in ADP
their PRON
little ADJ
rule NOUN
book NOUN
. PUNCT
I PRON
would AUX
not PART
be AUX
surprised ADJ
in ADP
the DET
least ADJ
to PART
find VERB
out ADP
the DET
SOME PROPN
people NOUN
have AUX
badreactions NOUN
to ADP
MSG PROPN
, PUNCT
including VERB
headaches NOUN
, PUNCT
stomachaches NOUN
and CCONJ
even ADV
vomiting VERB
. PUNCT
Not PART
thatthe DET
stuff NOUN
is AUX
BAD ADJ
or CCONJ
POISON NOUN
and CCONJ
needs VERB
to PART
be AUX
banned VERB
, PUNCT
but CCONJ
people NOUN
need VERB
to PART
be AUX
awarethat ADP
it PRON
can AUX
have AUX
a DET
bad ADJ
effect NOUN
on ADP
SOME DET
people NOUN
. PUNCT
Lone PROPN
Wolf PROPN
                                      SPACE
Happy PROPN
are AUX
they PRON
who PRON
dream VERB
dreams NOUN
, PUNCT
Ed PROPN
Philips PROPN
                            SPACE
And CCONJ
pay VERB
the DET
price NOUN
to PART
see VERB
them PRON
come VERB
true.slyx0@cc.usu.edu PROPN
                                                                                                            SPACE
-unknown PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58799From NUM
: PUNCT
milsh@nmr-z.mgh.harvard.edu X
( PUNCT
Alex PROPN
Milshteyn)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
C5H74z.9v4@crdnns.crd.ge.com X
> X
meltsner@crd.ge.com X
writes:>>>I NOUN
would AUX
n't PART
call VERB
it PRON
a DET
double ADJ
- PUNCT
blind ADJ
, PUNCT
but CCONJ
one NUM
local ADJ
restaurant NOUN
's PART
soup NOUN
> X
provokes VERB
an DET
impressive ADJ
migraine NOUN
headache NOUN
for ADP
my PRON
wife NOUN
-- PUNCT
that SCONJ
one NOUN
> X
take VERB
- PUNCT
out NOUN
and CCONJ
no DET
other ADJ
... PUNCT
Nothing PRON
unisual ADJ
. PUNCT
Quote:"Chinese ADJ
Restaurant PROPN
Syndrome PROPN
( PUNCT
CRS):a PROPN
transient ADJ
syndrome NOUN
, PUNCT
associated VERB
with ADP
arterial ADJ
dilatation NOUN
, PUNCT
due ADP
to ADP
ingestionof PROPN
monosodium PROPN
glutamate PROPN
, PUNCT
which PRON
is AUX
used VERB
liberally ADV
in ADP
seasoning VERB
chinesefood NOUN
; PUNCT
it PRON
is AUX
characterized VERB
by ADP
throbbing NOUN
of ADP
the DET
head NOUN
, PUNCT
lightheadedness NOUN
, PUNCT
tightness NOUN
of ADP
the DET
jaw NOUN
, PUNCT
neck NOUN
and CCONJ
shoulders NOUN
, PUNCT
and CCONJ
bachache PROPN
. PUNCT
"End PUNCT
quote INTJ
. PUNCT
Source NOUN
: PUNCT
Dorland PROPN
's PART
Illustrated PROPN
Medical PROPN
Dictionary PROPN
, PUNCT
27th ADJ
edition NOUN
, PUNCT
1988 NUM
, PUNCT
W.B. PROPN
Saunders PROPN
, PUNCT
p NOUN
1632.This NOUN
was AUX
known VERB
long ADV
ago ADV
. PUNCT
  SPACE
Brain PROPN
produces VERB
and CCONJ
uses VERB
some DET
MSG NOUN
naturally ADV
, PUNCT
but CCONJ
not PART
in ADP
doses NOUN
it PRON
is AUX
served VERB
at ADP
some DET
chinese ADJ
places NOUN
. PUNCT
Having VERB
said VERB
that DET
, PUNCT
i PRON
might AUX
add VERB
, PUNCT
that SCONJ
in ADP
MHO PROPN
, PUNCT
MSG PROPN
does AUX
not PART
enhanceflavor VERB
enoughf VERB
for ADP
me PRON
to PART
miss VERB
it PRON
. PUNCT
  SPACE
When ADV
I PRON
go VERB
to ADP
chinese ADJ
places NOUN
, PUNCT
I PRON
order VERB
food NOUN
without ADP
MSG PROPN
. PUNCT
  SPACE
Goos PROPN
places NOUN
will AUX
do AUX
it PRON
for ADP
you PRON
. PUNCT
A DET
prerequisite NOUN
for ADP
such DET
a DET
service NOUN
would AUX
be AUX
a DET
waiter NOUN
, PUNCT
capable ADJ
ofunderstanding NOUN
, PUNCT
what PRON
you PRON
want VERB
. PUNCT
Good ADJ
Luck.am-- PROPN
Alexander PROPN
M. PROPN
Milshteyn PROPN
M.D. PROPN
   SPACE
< X
milsh@cipr-server.mgh.harvard.edu>CIPR PROPN
, PUNCT
MGH PROPN
in ADP
Boston PROPN
, PUNCT
MA PROPN
. PUNCT
     SPACE
( PUNCT
617)724 NUM
- PUNCT
9507 NUM
Vox PROPN
  SPACE
( PUNCT
617)726 NUM
- PUNCT
7830 NUM
FaxNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58800From NUM
: PUNCT
neal@cmptrc.lonestar.org PROPN
( PUNCT
Neal PROPN
Howard)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.150550.15347@ecsvax.uncecs.edu ADJ
> X
ccreegan@ecsvax.uncecs.edu PROPN
( PUNCT
Charles PROPN
L. PROPN
Creegan PROPN
) PUNCT
writes:>>What ADP
about ADP
Kekule PROPN
's PART
infamous ADJ
derivation NOUN
of ADP
the DET
idea NOUN
of ADP
benzene NOUN
rings NOUN
> X
from ADP
a DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
specific ADJ
enough ADV
to PART
count VERB
? PUNCT
  SPACE
Certainly ADV
it PRON
turns VERB
up ADP
repeatedly ADV
in ADP
basic PROPN
> X
phil PROPN
. PUNCT
of ADP
sci PROPN
. PUNCT
texts NOUN
as SCONJ
an DET
example NOUN
of ADP
the DET
inventive ADJ
component NOUN
of ADP
> X
hypothesizing NOUN
. PUNCT
I PRON
sometimes ADV
wonder VERB
if SCONJ
Kekule PROPN
's PART
dream NOUN
was AUX
n't PART
just ADV
a DET
wee ADJ
bit NOUN
influenced VERB
byaromatic ADJ
solvent NOUN
vapors NOUN
;-) PUNCT
heh PROPN
heh.-- NUM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
Neal PROPN
Howard PROPN
   SPACE
' PART
91 NUM
XLH-1200 PROPN
      SPACE
DoD PROPN
# SYM
686 NUM
      SPACE
CompuTrac PROPN
, PUNCT
Inc PROPN
( PUNCT
Richardson PROPN
, PUNCT
TX PROPN
) PUNCT
	       SPACE
doh VERB
# SYM
0000001200 NUM
   SPACE
|355o33| PROPN
      SPACE
neal@cmptrc.lonestar.org PROPN
	       SPACE
Std PROPN
disclaimer NOUN
: PUNCT
My PRON
opinions NOUN
are AUX
mine ADJ
, PUNCT
not PART
CompuTrac PROPN
's PART
. PUNCT
         SPACE
" PUNCT
Let VERB
us PRON
learn VERB
to PART
dream VERB
, PUNCT
gentlemen NOUN
, PUNCT
and CCONJ
then ADV
perhaps ADV
          SPACE
we PRON
shall AUX
learn VERB
the DET
truth NOUN
. PUNCT
" PUNCT
-- PUNCT
August PROPN
Kekule PROPN
' PUNCT
( PUNCT
1890)=============================================================================Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58801From NUM
: PUNCT
dwebb@unl.edu NUM
( PUNCT
dale PROPN
webb)Subject PROPN
: PUNCT
Re ADP
: PUNCT
THE DET
BACK ADJ
MACHINE PROPN
- PUNCT
Update NOUN
   SPACE
I PRON
have AUX
a DET
BACK ADJ
MACHINE NOUN
and CCONJ
have AUX
had VERB
one NUM
since SCONJ
January PROPN
. PUNCT
  SPACE
While SCONJ
I PRON
have AUX
not PART
found VERB
it PRON
to PART
be AUX
a DET
panacea NOUN
for ADP
my PRON
back NOUN
pain NOUN
, PUNCT
I PRON
think VERB
it PRON
has AUX
helped VERB
somewhat ADV
. PUNCT
It PRON
MAINLY VERB
acts VERB
to PART
stretch VERB
muscles NOUN
in ADP
the DET
back NOUN
and CCONJ
prevent VERB
spasms PROPN
associatedwith PROPN
pain PROPN
. PUNCT
  SPACE
I PRON
am AUX
taking VERB
less ADJ
pain NOUN
medication NOUN
than SCONJ
I PRON
was AUX
previously ADV
. PUNCT
     SPACE
The DET
folks NOUN
at ADP
BACK PROPN
TECHNOLOGIES NOUN
are AUX
VERY ADV
reluctant ADJ
to PART
honor VERB
their PRON
return NOUN
policy NOUN
. PUNCT
  SPACE
They PRON
extended VERB
my PRON
" PUNCT
warranty NOUN
" PUNCT
period NOUN
rather ADV
than SCONJ
allow VERB
me PRON
to PART
return VERB
the DET
machine NOUN
when ADV
, PUNCT
after ADP
the DET
first ADJ
month NOUN
or CCONJ
so ADV
, PUNCT
I PRON
was AUX
not PART
thrilled VERB
with ADP
it PRON
. PUNCT
They PRON
encouraged VERB
me PRON
to PART
continue VERB
to PART
use VERB
it PRON
, PUNCT
abeit ADV
less ADV
vigourously ADV
. PUNCT
    SPACE
Like INTJ
I PRON
said VERB
, PUNCT
I PRON
ca AUX
n't PART
say VERB
it PRON
is AUX
a DET
cure NOUN
- PUNCT
all DET
, PUNCT
but CCONJ
it PRON
keeps VERB
me PRON
stretched VERB
outand NOUN
I PRON
am AUX
in ADP
less ADJ
pain.--***********************************************************************Dale VERB
M. PROPN
Webb PROPN
, PUNCT
DVM PROPN
, PUNCT
PhD NOUN
           SPACE
* PUNCT
  SPACE
97 NUM
% NOUN
of ADP
the DET
body NOUN
is AUX
water NOUN
. PUNCT
  SPACE
TheVeterinary PROPN
Diagnostic PROPN
Center PROPN
     SPACE
* PUNCT
  SPACE
other ADJ
3 NUM
% NOUN
keeps VERB
you PRON
from ADP
drowning VERB
. PUNCT
University PROPN
of ADP
Nebraska PROPN
, PUNCT
Lincoln PROPN
  SPACE
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58802From NUM
: PUNCT
rjf@lzsc.lincroftnj.ncr.com PROPN
( PUNCT
51351[efw]-Robert NUM
Feddeler(MT4799)T343)Subject PROPN
: PUNCT
Re ADP
: PUNCT
centrifugeMr PROPN
. PUNCT
Blue PROPN
( PUNCT
car@access.digex.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Could AUX
somebody PRON
explain VERB
to ADP
me PRON
what PRON
a DET
centrifuge NOUN
is AUX
and CCONJ
what PRON
it PRON
is AUX
: PUNCT
used VERB
for ADP
? PUNCT
I PRON
vaguely ADV
remembre VERB
it PRON
being AUX
something PRON
that PRON
spins VERB
test NOUN
tubes NOUN
: PUNCT
around ADP
really ADV
fast ADV
but CCONJ
I PRON
ca AUX
nt PART
remember VERB
why ADV
you PRON
d AUX
want VERB
to PART
do AUX
that?Purely ADV
recreational ADJ
. PUNCT
  SPACE
They PRON
get VERB
bored ADJ
sitting NOUN
in ADP
thatrack NOUN
all DET
the DET
time.--bob NOUN
. PUNCT
					    SPACE
| INTJ
I PRON
only ADV
smile VERB
when ADV
I PRON
lie VERB
, PUNCT
You PRON
can AUX
learn VERB
more ADJ
in ADP
a DET
bar NOUN
		    SPACE
| PROPN
And CCONJ
I PRON
'll AUX
tell VERB
you PRON
why ADV
... PUNCT
	 SPACE
than SCONJ
you PRON
can AUX
in ADP
a DET
lawyer NOUN
's PART
office NOUN
. PUNCT
|Were DET
these DET
more ADV
than SCONJ
just ADV
my PRON
opinions NOUN
, PUNCT
they PRON
would AUX
have AUX
cost VERB
a DET
bit NOUN
more ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58803From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1qk6v3INNrm6@lynx.unm.edu NUM
> X
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
writes:>>Gordon PROPN
Banks:>>>a PROPN
lot NOUN
to PART
keep VERB
from ADP
going VERB
back ADV
to ADP
morbid PROPN
obesity NOUN
. PUNCT
  SPACE
I PRON
think VERB
all>>of PROPN
us PROPN
cycle NOUN
. PUNCT
  SPACE
One NOUN
's PART
success NOUN
depends VERB
on ADP
how ADV
large ADJ
the DET
fluctuations>>in NOUN
the DET
cycle NOUN
are AUX
. PUNCT
  SPACE
Some DET
people NOUN
can AUX
cycle VERB
only ADV
5 NUM
pounds NOUN
. PUNCT
  SPACE
Unfortunately,>>I'm ADP
not PART
one NUM
of ADP
them.>>>>>This DET
certainly ADV
describes VERB
my PRON
situation NOUN
perfectly ADV
. PUNCT
For ADP
me PRON
there PRON
is AUX
> X
a DET
constant ADJ
dynamic NOUN
between ADP
my PRON
tendency NOUN
to PART
eat VERB
, PUNCT
which PRON
appears VERB
to PART
> X
be AUX
totally ADV
limitless ADJ
, PUNCT
and CCONJ
the DET
purely ADV
conscious ADJ
desire NOUN
to PART
not PART
> X
put VERB
on ADP
too ADV
much ADJ
weight NOUN
. PUNCT
When ADV
I PRON
get VERB
too ADV
fat ADJ
, PUNCT
I PRON
just ADV
diet VERB
/ SYM
exercise NOUN
> X
more ADJ
( PUNCT
with ADP
varying VERB
degrees NOUN
of ADP
success NOUN
) PUNCT
to PART
take VERB
off ADP
the DET
> X
extra ADJ
weight NOUN
. PUNCT
Usually ADV
I PRON
cycle VERB
within ADP
a DET
15 NUM
lb NOUN
range NOUN
, PUNCT
but CCONJ
> X
smaller ADJ
and CCONJ
larger ADJ
cycles NOUN
occur VERB
as ADV
well ADV
. PUNCT
I PRON
'm AUX
always ADV
afraid ADJ
> X
that SCONJ
this DET
method NOUN
will AUX
stop VERB
working VERB
someday ADV
, PUNCT
but CCONJ
usually ADV
> X
I PRON
seem VERB
to PART
be AUX
able ADJ
to PART
hold VERB
the DET
weight NOUN
gain NOUN
in ADP
check.>This PROPN
is AUX
one NUM
reason NOUN
I PRON
have AUX
a DET
hard ADJ
time NOUN
accepting VERB
the DET
notion NOUN
> X
of ADP
some DET
metabolic ADJ
derangement NOUN
associated VERB
with ADP
cycle NOUN
dieting>(that ADP
results NOUN
in ADP
long ADJ
- PUNCT
term NOUN
weight NOUN
gain NOUN
) PUNCT
. PUNCT
I PRON
have AUX
been AUX
cycle->dieting VERB
for ADP
at ADV
least ADV
20 NUM
years NOUN
without ADP
seeing VERB
such DET
a DET
change NOUN
. PUNCT
As SCONJ
mentioned VERB
in ADP
Adiposity NOUN
101 NUM
, PUNCT
only ADV
some DET
experience NOUN
weightrebound NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
you PRON
do AUX
n't PART
does AUX
n't PART
prove VERB
it PRON
doesn'thappen PUNCT
to ADP
others.-- ADJ
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58804From NUM
: PUNCT
smithmc@mentor.cc.purdue.edu NUM
( PUNCT
Lost VERB
Boy)Subject X
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?In PROPN
article NOUN
< X
noringC5Fnx2.2v2@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
Tammy.Vandenboom@launchpad.unc.edu NUM
( PUNCT
Tammy PROPN
Vandenboom PROPN
) PUNCT
writes:>>>Here PROPN
's AUX
a DET
potentially ADV
stupid ADJ
question NOUN
to ADP
possibly ADV
the DET
wrong PROPN
news NOUN
group NOUN
, PUNCT
but CCONJ
. PUNCT
.>>>>Can PUNCT
men NOUN
get VERB
yeast NOUN
infections NOUN
? PUNCT
Spread VERB
them PRON
? PUNCT
What PRON
kind NOUN
of ADV
symptoms?>>Similar ADJ
as SCONJ
women NOUN
's PART
? PUNCT
  SPACE
I PRON
have AUX
a DET
yeast NOUN
infection NOUN
and CCONJ
my PRON
husband NOUN
( PUNCT
who PRON
is AUX
a>>natural ADJ
paranoid NOUN
on ADP
a DET
good ADJ
day NOUN
) PUNCT
is AUX
sure ADJ
he PRON
's AUX
gon VERB
na PART
catch VERB
it PRON
and CCONJ
keeps>>asking VERB
me PRON
what PRON
it PRON
's AUX
like SCONJ
. PUNCT
  SPACE
I PRON
'm AUX
not PART
sure ADJ
what PRON
his PRON
symptoms NOUN
would AUX
be AUX
. PUNCT
. PUNCT
> X
> X
The DET
answer NOUN
is AUX
yes INTJ
and CCONJ
no INTJ
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
others NOUN
on ADP
sci.med VERB
can AUX
expand VERB
on ADP
this.>>JonI DET
know VERB
from ADP
personal ADJ
experience NOUN
that PRON
men NOUN
CAN AUX
get AUX
yeast NOUN
infections NOUN
. PUNCT
I PRON
get VERB
rather ADV
nasty ADJ
ones NOUN
from ADP
time NOUN
to ADP
time NOUN
, PUNCT
mostly ADV
in ADP
the DET
area NOUN
of ADP
thescrotum NOUN
and CCONJ
the DET
base NOUN
of ADP
the DET
penis NOUN
. PUNCT
They PRON
're AUX
nowhere ADV
near ADV
as SCONJ
dangerousfor NOUN
me PRON
as SCONJ
for ADP
many ADJ
women NOUN
, PUNCT
but CCONJ
goddamn NOUN
does AUX
it PRON
hurt VERB
in ADP
the DET
summertime!Even PROPN
in ADP
the DET
wintertime NOUN
, PUNCT
when ADV
I PRON
sweat VERB
I PRON
get VERB
really ADV
uncomfy ADJ
down ADP
there ADV
. PUNCT
Thebest NOUN
thing NOUN
I PRON
can AUX
do AUX
to PART
keep VERB
it PRON
under ADP
control NOUN
is AUX
keep VERB
my PRON
weight NOUN
down ADP
andkeep ADV
cool ADJ
down ADV
there ADV
. PUNCT
Shorts NOUN
in ADP
60 NUM
degree NOUN
weather NOUN
, PUNCT
that DET
kind NOUN
of ADP
thing NOUN
. PUNCT
Andof ADJ
course NOUN
some DET
occasional ADJ
sun NOUN
. PUNCT
Lost ADJ
BoyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58805From NUM
: PUNCT
black@sybase.com X
( PUNCT
Chris PROPN
Black)Subject PROPN
: PUNCT
cystic ADJ
breast NOUN
diseaseMy PROPN
mom NOUN
has AUX
just ADV
been AUX
diagnosed VERB
with ADP
cystic ADJ
breast NOUN
disease NOUN
-- PUNCT
a DET
bigrelief NOUN
, PUNCT
as SCONJ
it PRON
was AUX
a DET
lump NOUN
that PRON
could AUX
have AUX
been AUX
cancer NOUN
. PUNCT
  SPACE
Her PRON
doctor NOUN
saysshe NOUN
should AUX
go VERB
off ADP
caffeine NOUN
and CCONJ
chocolate VERB
for ADP
6 NUM
months NOUN
, PUNCT
as ADV
well ADV
asstopping VERB
the DET
estrogen PROPN
she PRON
's AUX
been AUX
taking VERB
for ADP
menopause NOUN
- PUNCT
related VERB
reasons NOUN
. PUNCT
She PRON
's AUX
not PART
thrilled VERB
with ADP
this DET
, PUNCT
I PRON
think VERB
especially ADV
because SCONJ
she PRON
just ADV
gaveup VERB
cigarettes NOUN
-- PUNCT
soon ADV
she PRON
wo AUX
n't PART
have AUX
any DET
pleasures NOUN
left VERB
! PUNCT
  SPACE
Now ADV
, PUNCT
I PRON
thoughtI'd ADV
heard VERB
that SCONJ
cystic ADJ
breasts NOUN
were AUX
common ADJ
and CCONJ
not PART
really ADV
a DET
health NOUN
risk NOUN
. PUNCT
Is AUX
this DET
accurate ADJ
? PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
why ADV
is AUX
she PRON
being AUX
told VERB
to PART
make VERB
varioussacrifices NOUN
to PART
treat VERB
something PRON
that PRON
's AUX
not PART
that ADV
big ADJ
of ADP
a DET
deal?Thanks NOUN
for ADP
any DET
information.-- PROPN
Chris-- PROPN
black@sybase.comNote PUNCT
: PUNCT
  SPACE
My PRON
mailer NOUN
tends VERB
to PART
garble ADJ
subject ADJ
lines NOUN
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58806From NUM
: PUNCT
naomi@rock.concert.net PROPN
( PUNCT
Naomi PROPN
T NOUN
Courter)Subject NOUN
: PUNCT
Endometriosiscan ADJ
anyone PRON
give VERB
me PRON
more ADJ
information NOUN
regarding VERB
endometriosis NOUN
? PUNCT
   SPACE
i PRON
heardit VERB
's AUX
a DET
very ADV
common ADJ
disease NOUN
among ADP
women NOUN
and CCONJ
if SCONJ
anyone PRON
can AUX
provide VERB
namesof PROPN
a DET
specialist NOUN
/ SYM
surgeon NOUN
in ADP
  SPACE
the DET
north PROPN
carolina PROPN
research NOUN
triangle PROPN
  SPACE
parkarea PROPN
( PUNCT
raleigh PROPN
/ SYM
durham PROPN
/ SYM
chapel PROPN
  SPACE
hill PROPN
) PUNCT
who PRON
is AUX
familiar ADJ
with ADP
the DET
condition NOUN
, PUNCT
i PRON
would AUX
really ADV
appreciate VERB
it.thanks NOUN
. PUNCT
--Naomi-- PROPN
Naomi PROPN
L.T. PROPN
CourterNetwork PROPN
Services PROPN
SpecialistMCNC PROPN
- PUNCT
Center PROPN
for ADP
CommunicationsCONCERT PROPN
Network PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58807From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Migraines NOUN
and CCONJ
scans[reply NOUN
to ADP
geb@cs.pitt.edu VERB
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
] PUNCT
> X
> X
If SCONJ
you PRON
can AUX
get AUX
away ADV
without ADP
ever ADV
ordering VERB
imaging VERB
for ADP
a DET
patient ADJ
with>>an NOUN
obviously ADV
benign ADJ
headache NOUN
syndrome NOUN
, PUNCT
I PRON
'd AUX
like VERB
to PART
hear VERB
what PRON
your PRON
magic>>is NOUN
. PUNCT
> X
I PRON
certainly ADV
ca AUX
n't PART
always ADV
avoid VERB
it PRON
( PUNCT
unless SCONJ
I PRON
want VERB
to PART
be AUX
rude ADJ
, PUNCT
I PRON
suppose VERB
) PUNCT
. PUNCT
I PRON
made VERB
a DET
decision NOUN
a DET
while NOUN
back ADV
that SCONJ
I PRON
will AUX
not PART
be AUX
bullied VERB
into ADP
gettingstudies NOUN
like SCONJ
a DET
CT PROPN
or CCONJ
MRI PROPN
when ADV
I PRON
do AUX
n't PART
think VERB
they PRON
are AUX
indicated VERB
. PUNCT
  SPACE
If SCONJ
thepatient ADJ
wo AUX
n't PART
accept VERB
my PRON
explanation NOUN
of ADP
why ADV
I PRON
think VERB
the DET
study NOUN
would AUX
be AUX
awaste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
, PUNCT
I PRON
suggest VERB
a DET
second ADJ
opinion NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58808From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
klonopin NOUN
and CCONJ
pregnancyA PROPN
( PUNCT
> X
From ADP
: PUNCT
adwright@iastate.edu X
( PUNCT
) PUNCT
A NOUN
( PUNCT
> X
A DET
woman NOUN
I PRON
know VERB
is AUX
tapering VERB
off ADP
klonopin NOUN
. PUNCT
I PRON
believe VERB
that DET
is AUX
one NUM
of ADP
theA NOUN
( PUNCT
> X
benzodiazopines NOUN
. PUNCT
She PRON
is AUX
taking VERB
a DET
very ADV
minimal ADJ
dose NOUN
right ADV
now ADV
, PUNCT
half DET
a DET
tabletA PROPN
( PUNCT
> X
a DET
day NOUN
. PUNCT
She PRON
is AUX
also ADV
pregnant ADJ
. PUNCT
My PRON
question NOUN
is AUX
Are AUX
there PRON
any DET
known VERB
cases NOUN
whereA PROPN
( PUNCT
> X
klonopin NOUN
or CCONJ
similar ADJ
drug NOUN
has AUX
caused VERB
harmful ADJ
effects NOUN
to ADP
the DET
fetus?A PROPN
( PUNCT
> X
  SPACE
How ADV
about ADP
cases NOUN
where ADV
the DET
mother NOUN
took VERB
klonopin NOUN
or CCONJ
similar ADJ
substance NOUN
and CCONJ
hadA PROPN
( PUNCT
> X
normal ADJ
baby NOUN
. PUNCT
Any DET
information NOUN
is AUX
appreciated VERB
. PUNCT
She PRON
wants VERB
to PART
get AUX
a DET
feel NOUN
forA NOUN
( PUNCT
> X
what PRON
sort NOUN
of ADP
risk NOUN
she PRON
is AUX
taking VERB
. PUNCT
She PRON
is AUX
in ADP
her PRON
first ADJ
month NOUN
of ADP
pregnancy NOUN
. PUNCT
Klonopin PROPN
, PUNCT
according VERB
to ADP
the DET
PDR PROPN
( PUNCT
Physician PROPN
's PART
Desk PROPN
Reference PROPN
) PUNCT
, PUNCT
is AUX
not PART
aproven VERB
teratogen NOUN
. PUNCT
  SPACE
There PRON
are AUX
isolated VERB
case NOUN
reports NOUN
of ADP
malformations NOUN
, PUNCT
but CCONJ
it PRON
is AUX
impossible ADJ
to PART
establish VERB
cause NOUN
- PUNCT
effect NOUN
relationships NOUN
. PUNCT
  SPACE
Theoverwhelming VERB
majority NOUN
of ADP
women NOUN
that PRON
take VERB
Klonopin PROPN
while SCONJ
pregnant ADJ
havenormal PROPN
babies.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                               SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58809From NUM
: PUNCT
C599143@mizzou1.missouri.edu PROPN
( PUNCT
Matthew PROPN
Q PROPN
Keeler PROPN
de X
la PROPN
Mancha)Subject NUM
: PUNCT
Infant NOUN
Immune PROPN
Development PROPN
QuestionAs PROPN
an DET
animal NOUN
science NOUN
student NOUN
, PUNCT
I PRON
know VERB
that SCONJ
a DET
number NOUN
of ADP
animals NOUN
transferimmunoglobin ADV
to ADP
thier ADJ
young ADJ
through ADP
thier PRON
milk NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
a DET
calf NOUN
_ NOUN
must_have VERB
a DET
sufficient ADJ
amount NOUN
of ADP
colostrum NOUN
( PUNCT
early ADJ
milk NOUN
) PUNCT
within ADP
12 NUM
hours NOUN
toeffectively ADV
develop VERB
the DET
immune ADJ
system NOUN
, PUNCT
since SCONJ
for ADP
the DET
first ADJ
( PUNCT
less ADJ
than)24 ADJ
hours NOUN
the DET
intestines NOUN
are AUX
" PUNCT
open ADJ
" PUNCT
to ADP
the DET
IG PROPN
passage NOUN
. PUNCT
  SPACE
My PRON
question NOUN
is AUX
, PUNCT
does AUX
this DET
apply VERB
to ADP
human ADJ
infants NOUN
to ADP
any DET
degree NOUN
? PUNCT
Thanks NOUN
for ADP
your PRON
time NOUN
responding VERB
, PUNCT
Matthew PROPN
Keelerc599143@mizzou1.missouri.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58810From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.173902.66278@cc.usu.edu PROPN
> X
, PUNCT
slyx0@cc.usu.edu ADV
writes:=Surprise NOUN
surprise NOUN
, PUNCT
different ADJ
people NOUN
react VERB
differently ADV
to ADP
different ADJ
things NOUN
. PUNCT
One NUM
= SYM
slightly ADV
off ADP
the DET
subject ADJ
case NOUN
in ADP
point NOUN
. PUNCT
My PRON
brother NOUN
got VERB
stung VERB
by ADP
a DET
bee NOUN
. PUNCT
I PRON
know VERB
= PUNCT
he PRON
is AUX
allergic ADJ
to ADP
bee PROPN
stings NOUN
, PUNCT
but CCONJ
that SCONJ
his PRON
reaction NOUN
is AUX
severe ADJ
localized ADJ
= SYM
swelling VERB
, PUNCT
not PART
anaphylactic ADJ
shock NOUN
. PUNCT
I PRON
could AUX
not PART
convince VERB
the DET
doctors NOUN
of ADP
that,=however PROPN
, PUNCT
because SCONJ
that DET
's AUX
not PART
written VERB
in ADP
their PRON
little ADJ
rule NOUN
book NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
bee PROPN
venom PROPN
is AUX
n't PART
a DET
single ADJ
chemical NOUN
. PUNCT
  SPACE
Could AUX
be AUX
your PRON
brother NOUN
isreacting VERB
to ADP
a DET
different ADJ
component NOUN
than SCONJ
the DET
one NOUN
that PRON
causes VERB
anaphylactic ADJ
shockin NOUN
other ADJ
people NOUN
. PUNCT
Similarly ADV
, PUNCT
Chinese ADJ
food NOUN
is AUX
n't PART
just ADV
MSG PROPN
. PUNCT
  SPACE
There PRON
are AUX
a DET
lot NOUN
of ADP
other ADJ
ingredientsin NOUN
it PRON
. PUNCT
  SPACE
Why ADV
, PUNCT
when ADV
someone PRON
eats VERB
something PRON
with ADP
lots NOUN
of ADP
ingredients NOUN
they PRON
don'tnormally ADV
consume VERB
, PUNCT
one NUM
of ADP
which PRON
happens VERB
to PART
be AUX
MSG PROPN
, PUNCT
do AUX
they PRON
immediately ADV
concludethat VERB
any DET
negative ADJ
reaction NOUN
is AUX
to ADP
the DET
MSG?=I NOUN
would AUX
not PART
be AUX
surprised ADJ
in ADP
the DET
least ADJ
to PART
find VERB
out ADP
the DET
SOME PROPN
people NOUN
have AUX
bad ADJ
= X
reactions NOUN
to ADP
MSG PROPN
, PUNCT
including VERB
headaches NOUN
, PUNCT
stomachaches NOUN
and CCONJ
even ADV
vomiting VERB
. PUNCT
I'd NOUN
be AUX
surprised ADJ
if SCONJ
some DET
of ADP
these DET
reactions NOUN
were AUX
n't PART
due ADJ
to ADP
other ADJ
ingredients.--------------------------------------------------------------------------------Carl ADP
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58811From NUM
: PUNCT
texx@ossi.com X
( PUNCT
Robert PROPN
" PUNCT
Texx PROPN
" PUNCT
Woodworth)Subject VERB
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?noring@netcom.com PROPN
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
Tammy.Vandenboom@launchpad.unc.edu NUM
( PUNCT
Tammy PROPN
Vandenboom PROPN
) PUNCT
writes:>>Here PROPN
's AUX
a DET
potentially ADV
stupid ADJ
question NOUN
to ADP
possibly ADV
the DET
wrong PROPN
news NOUN
group NOUN
, PUNCT
but CCONJ
. PUNCT
.>>>>Can PUNCT
men NOUN
get VERB
yeast NOUN
infections NOUN
? PUNCT
Spread VERB
them PRON
? PUNCT
What PRON
kind NOUN
of ADV
symptoms?>>Similar ADJ
as SCONJ
women NOUN
's PART
? PUNCT
  SPACE
I PRON
have AUX
a DET
yeast NOUN
infection NOUN
and CCONJ
my PRON
husband NOUN
( PUNCT
who PRON
is AUX
a>>natural ADJ
paranoid NOUN
on ADP
a DET
good ADJ
day NOUN
) PUNCT
is AUX
sure ADJ
he PRON
's AUX
gon VERB
na PART
catch VERB
it PRON
and CCONJ
keeps>>asking VERB
me PRON
what PRON
it PRON
's AUX
like SCONJ
. PUNCT
  SPACE
I PRON
'm AUX
not PART
sure ADJ
what PRON
his PRON
symptoms NOUN
would AUX
be AUX
. PUNCT
. PUNCT
> X
The DET
answer NOUN
is AUX
yes INTJ
and CCONJ
no INTJ
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
others NOUN
on ADP
sci.med VERB
can AUX
expand VERB
on ADP
this DET
. PUNCT
Recently ADV
someone PRON
posted VERB
an DET
account NOUN
of ADP
this DET
. PUNCT
Unfortunately ADV
it PRON
was AUX
posted VERB
to ADP
alt.tasteless ADV
so ADV
the DET
gross ADJ
details NOUN
were AUX
emphasizedinstead ADJ
of ADP
th ADP
e PROPN
actual ADJ
scientific ADJ
facts NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58812From NUM
: PUNCT
dfitts@carson.u.washington.edu PROPN
( PUNCT
Douglas PROPN
Fitts)Subject PROPN
: PUNCT
Re ADP
: PUNCT
RA NOUN
treatment NOUN
questioneulenbrg@carson.u.washington.edu PROPN
( PUNCT
Julia PROPN
Eulenberg PROPN
) PUNCT
writes:>I'm PROPN
assuming VERB
that SCONJ
you PRON
mean VERB
Rheumatoid PROPN
Arthritis PROPN
( PUNCT
RA PROPN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
never ADV
heard VERB
> X
of ADP
the DET
" PUNCT
cold ADJ
treatment NOUN
" PUNCT
you PRON
mentioned VERB
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
imagine VERB
how ADV
it PRON
would AUX
> X
work VERB
, PUNCT
since SCONJ
most ADJ
of ADP
us PRON
who PRON
have AUX
Rh PROPN
. PUNCT
Arthr./RA PROPN
seem VERB
to PART
have AUX
more ADJ
problems NOUN
> X
in ADP
cold ADJ
weather NOUN
than SCONJ
in ADP
warm ADJ
weather NOUN
. PUNCT
  SPACE
Would AUX
be AUX
interested ADJ
to PART
hear VERB
more!>Z PROPN
> X
ZNo NOUN
, PUNCT
obviously ADV
talking VERB
about ADP
Research PROPN
Assistants PROPN
. PUNCT
  SPACE
I PRON
favor VERB
a DET
high ADJ
protein NOUN
, PUNCT
low ADJ
fat NOUN
diet NOUN
, PUNCT
barely ADV
adequate ADJ
salary NOUN
on ADP
a DET
fixed VERB
time NOUN
schedule NOUN
, PUNCT
four NUM
hoursof NOUN
sleep NOUN
a DET
night NOUN
, PUNCT
continuous ADJ
infusion NOUN
of ADP
latte NOUN
, PUNCT
unpredictable ADJ
praise NOUN
mixed VERB
randomly ADV
with ADP
anxiety NOUN
- PUNCT
provoking VERB
, PUNCT
everpresent NOUN
glances NOUN
with ADP
lowered VERB
eyebrows NOUN
, PUNCT
unrealistic ADJ
promises NOUN
of ADP
rapid ADJ
publication NOUN
, PUNCT
and CCONJ
every DET
three NUM
months NOUN
a DET
dinner NOUN
consisting VERB
of ADP
nothing PRON
but SCONJ
microbrewery NOUN
aleand CCONJ
free ADJ
pretzels NOUN
. PUNCT
  SPACE
Actually ADV
, PUNCT
mine NOUN
hails NOUN
from ADP
San PROPN
Diego PROPN
, PUNCT
and CCONJ
indeed ADV
has AUX
more ADJ
problems NOUN
in ADP
Seattle PROPN
in ADP
cold ADJ
weather NOUN
than SCONJ
in ADP
warm ADJ
. PUNCT
Doug PROPN
Fittsdfitts@u.washington.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58813From NUM
: PUNCT
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field))Subject PROPN
: PUNCT
Ca AUX
n't PART
wear VERB
contacts NOUN
after ADP
RK PROPN
/ SYM
PRK?I NOUN
love VERB
the DET
FAQ PROPN
. PUNCT
       SPACE
The DET
comment NOUN
about ADP
contact NOUN
lenses NOUN
not PART
being AUX
an DET
option NOUN
for ADP
any DET
remainingcorrection NOUN
after ADP
RK PROPN
and CCONJ
possibly ADV
after ADP
PRK PROPN
is AUX
interresting VERB
. PUNCT
  SPACE
Why ADV
isthis DET
? PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
for ADP
sure ADJ
whether SCONJ
this DET
applies VERB
to ADP
PRK PROPN
as SCONJ
well?Also PROPN
, PUNCT
why ADV
is AUX
it PRON
possible ADJ
to PART
get AUX
a DET
correction NOUN
in ADP
PRK PROPN
with ADP
involvement NOUN
ofonly ADV
about ADV
5 NUM
% NOUN
of ADP
the DET
corneal ADJ
depth NOUN
, PUNCT
while SCONJ
RK PROPN
is AUX
done VERB
to ADP
a DET
depth NOUN
of ADP
up ADJ
to95 PROPN
% NOUN
? PUNCT
  SPACE
Why ADV
such DET
a DET
difference NOUN
? PUNCT
  SPACE
I PRON
thought VERB
the DET
proceedures NOUN
were AUX
simmilarwith ADP
the DET
exception NOUN
of ADP
a DET
laser NOUN
being AUX
the DET
cutting VERB
tool NOUN
in ADP
PRK PROPN
. PUNCT
  SPACE
I PRON
must AUX
notbe VERB
understanding NOUN
all DET
of ADP
the DET
differences NOUN
. PUNCT
In ADP
the DET
FAQ PROPN
, PUNCT
the DET
vision NOUN
was AUX
considered VERB
less ADV
clear ADJ
after ADP
the DET
surgery NOUN
thanwith NOUN
glasses NOUN
alone ADV
. PUNCT
  SPACE
If SCONJ
this DET
is AUX
completly ADV
attributable ADJ
to ADP
theintentional ADJ
slight ADJ
undercorrection NOUN
, PUNCT
then ADV
it PRON
can AUX
be AUX
compensated VERB
for ADP
whennecessary NOUN
with ADP
glasses NOUN
( PUNCT
or CCONJ
contacts NOUN
, PUNCT
if SCONJ
they PRON
CAN AUX
be AUX
worn VERB
afterall NOUN
! PUNCT
) PUNCT
. PUNCT
  SPACE
Itis PROPN
important ADJ
to PART
know VERB
if SCONJ
that DET
is AUX
not PART
the DET
case NOUN
, PUNCT
however ADV
, PUNCT
and CCONJ
some DET
otherconsequence NOUN
of ADP
the DET
surgery NOUN
would AUX
often ADV
interfere VERB
with ADP
clear ADJ
vision NOUN
. PUNCT
  SPACE
Thefirst PROPN
thing NOUN
that PRON
came VERB
to ADP
my PRON
mind NOUN
was AUX
a DET
fogging NOUN
of ADP
the DET
lense NOUN
, PUNCT
whichglasses NOUN
could AUX
n't PART
help VERB
. PUNCT
would AUX
not PART
help.-- VERB
| PROPN
Daniel PROPN
R. PROPN
Field PROPN
, PUNCT
AKA PROPN
InfoSpunj PROPN
| PROPN
I PRON
'm AUX
just ADV
a DET
lowly ADJ
phlebe NOUN
. PUNCT
              SPACE
|| PROPN
dfield@oboe.calpoly.edu NUM
        SPACE
| PROPN
                                       SPACE
|| PROPN
Biochemistry PROPN
, PUNCT
Biotechnology PROPN
    SPACE
| INTJ
I PRON
'm AUX
at ADP
the DET
phlebottom NOUN
                 SPACE
|| PROPN
California PROPN
Polytechnic PROPN
State PROPN
U PROPN
| PROPN
of ADP
the DET
medical ADJ
totem NOUN
pole NOUN
. PUNCT
            SPACE
| PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58814From NUM
: PUNCT
ghilardi@urz.unibas.chSubject NOUN
: PUNCT
left VERB
side NOUN
painsHello ADV
to ADP
everybody PRON
, PUNCT
I PRON
write VERB
here ADV
because SCONJ
I PRON
am AUX
kind ADV
of ADV
desperate ADJ
. PUNCT
For ADP
about ADV
six NUM
weeks NOUN
, PUNCT
I PRON
've AUX
beensuffering VERB
on ADP
pains NOUN
in ADP
my PRON
left ADJ
head NOUN
side NOUN
, PUNCT
the DET
left ADJ
leg NOUN
and CCONJ
sometimes ADV
the DET
left ADJ
arm NOUN
. PUNCT
I PRON
made VERB
many ADJ
tests NOUN
( PUNCT
e.g. ADV
computer NOUN
tomography NOUN
, PUNCT
negative ADJ
, PUNCT
lyme NOUN
borreliosis NOUN
, PUNCT
negative ADJ
, PUNCT
all DET
electrolytes NOUN
in ADP
the DET
blood NOUN
in ADP
their PRON
correct ADJ
range NOUN
) PUNCT
, PUNCT
they'reall INTJ
o INTJ
. PUNCT
K. PROPN
, PUNCT
so ADV
I PRON
should AUX
be AUX
healthy ADJ
. PUNCT
As SCONJ
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
am AUX
not PART
feeling VERB
so ADV
. PUNCT
I PRON
was AUX
also ADV
at ADP
a DET
Neurologist PROPN
's PART
too ADV
, PUNCT
he PRON
considered VERB
me PRON
healthy ADJ
too ADV
. PUNCT
The DET
blood NOUN
tests NOUN
have AUX
shown VERB
that SCONJ
I PRON
have AUX
little ADJ
too ADV
much ADJ
of ADP
Hemoglobin PROPN
( PUNCT
17.5,common NUM
range NOUN
is AUX
14 NUM
to PART
17 NUM
, PUNCT
I PRON
unfortunately ADV
do AUX
not PART
know VERB
about ADP
the DET
units).Could NOUN
these DET
hemi ADJ
- PUNCT
sided ADJ
pains NOUN
be VERB
the DET
result NOUN
of ADP
this DET
or CCONJ
of ADP
a DET
also ADV
possibleblock NOUN
of ADP
the DET
neck NOUN
muscles NOUN
? PUNCT
I PRON
have AUX
no DET
fever NOUN
, PUNCT
and CCONJ
I PRON
am AUX
not PART
feeling VERB
entirely ADV
sick ADJ
, PUNCT
but CCONJ
neither DET
entirely ADV
healthy ADJ
. PUNCT
Please INTJ
answer VERB
by ADP
direct ADJ
email NOUN
on ADP
< X
ghilardi@urz.unibas.ch>Thanks NOUN
for ADP
every DET
hintNicoNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58815From NUM
: PUNCT
Nigel@dataman.demon.co.uk PROPN
( PUNCT
Nigel PROPN
Ballard)Subject VERB
: PUNCT
Re ADP
: PUNCT
Sarchoidosis NOUN
> X
> X
       SPACE
Hello,>>Does PROPN
anybody PRON
know VERB
if SCONJ
sarchoidosis NOUN
is AUX
a DET
mortem ADJ
desease NOUN
? PUNCT
> X
> X
( PUNCT
i.e PROPN
if SCONJ
someone PRON
who PRON
tooke VERB
this DET
desease NOUN
can AUX
be AUX
kill>>bye PUNCT
this DET
one NUM
? PUNCT
) PUNCT
> X
> X
People NOUN
have AUX
died VERB
from ADP
sarcoid ADJ
, PUNCT
but CCONJ
usually ADV
it PRON
is AUX
not PART
> X
fatal ADJ
and CCONJ
is AUX
treatable.>---------------------------------------------------------------------------->Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------Hi PUNCT
thereI'm PROPN
suffering VERB
from ADP
Sarcoidosis PROPN
at ADP
present NOUN
. PUNCT
  SPACE
Although SCONJ
it PRON
's AUX
shown VERB
as SCONJ
achronic ADJ
& CCONJ
rare ADJ
tissue NOUN
disorder NOUN
, PUNCT
it PRON
is AUX
thankfully ADV
NOT ADV
life NOUN
threatening VERB
. PUNCT
The DET
very ADV
worsed ADJ
thing NOUN
that PRON
can AUX
happen VERB
to ADP
a DET
non ADJ
- ADJ
treated VERB
sufferer PROPN
isglaucoma PROPN
. PUNCT
  SPACE
My PRON
specialists NOUN
are AUX
bombarding VERB
me PRON
with ADP
Prednisolone PROPN
E.C. PROPN
( PUNCT
acortico PROPN
- PUNCT
steriod PROPN
) PUNCT
and CCONJ
after ADP
four NUM
months NOUN
at ADP
20 NUM
mg NOUN
a DET
day NOUN
, PUNCT
it PRON
's AUX
totally ADV
doneaway ADJ
with ADP
my PRON
enlarged ADJ
lymph NOUN
glands NOUN
, PUNCT
so SCONJ
somethings NOUN
happening VERB
for ADP
thegood!Cheers PROPN
Nigel PROPN
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
* PUNCT
NIGEL PROPN
BALLARD PROPN
  SPACE
| ADP
INT PROPN
: PUNCT
nigel@dataman.demon.co.uk PROPN
  SPACE
| PROPN
MEXICAN PROPN
FOOD PROPN
      SPACE
* PUNCT
   SPACE
* PUNCT
BOURNEMOUTH PROPN
    SPACE
| PROPN
CIS PROPN
: PUNCT
100015.2644 NUM
   SPACE
RADIO PROPN
- PUNCT
G1HOI PROPN
  SPACE
| ADJ
GUINNESS PROPN
ON ADP
TAP NOUN
   SPACE
* PUNCT
   SPACE
* PUNCT
UNITED PROPN
KINGDOM PROPN
| PROPN
AMAZING PROPN
! PUNCT
and CCONJ
all DET
down ADV
two NUM
wires NOUN
| ADJ
TALL PROPN
SKINNY NOUN
WOMEN NOUN
* PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
Two NUM
penguins NOUN
are AUX
walking VERB
along ADP
an DET
iceberg NOUN
. PUNCT
The DET
first ADJ
penguin NOUN
turns VERB
to PART
    SPACE
the DET
second ADJ
penguin NOUN
and CCONJ
says VERB
" PUNCT
it PRON
looks VERB
like SCONJ
you PRON
are AUX
wearing VERB
a DET
tuxedo NOUN
. PUNCT
" PUNCT
    SPACE
The DET
second ADJ
penguin NOUN
turns VERB
to ADP
the DET
first ADJ
penguin NOUN
and CCONJ
says VERB
, PUNCT
" PUNCT
maybe ADV
I PRON
am AUX
. PUNCT
" PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58816From NUM
: PUNCT
ken@sugra.uucp PROPN
( PUNCT
Kenneth PROPN
Ng)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
szikopou.734725851@cunews PROPN
: PUNCT
szikopou@superior.carleton.ca PROPN
( PUNCT
Steven PROPN
Zikopoulos PROPN
) PUNCT
writes::In PROPN
< X
1993Apr13.144340.3549@news.cs.brandeis.edu NUM
> X
reynold@binah.cc.brandeis.edu NUM
( PUNCT
" PUNCT
Susan PROPN
Reynold PROPN
( PUNCT
w PROPN
/ SYM
out SCONJ
the DET
s NOUN
) PUNCT
" PUNCT
) PUNCT
writes::>I PROPN
think VERB
the DET
scientists NOUN
are AUX
biased ADJ
towards ADP
the DET
food NOUN
industry NOUN
or CCONJ
something.:>Was NOUN
the DET
article NOUN
long ADV
? PUNCT
Would AUX
anyone PRON
be AUX
interested ADJ
in ADP
posting VERB
it?:a NUM
neuroscientist NOUN
told VERB
me PRON
that SCONJ
MSG PROPN
is AUX
used VERB
as SCONJ
a DET
neurotoxin NOUN
... PUNCT
that's PUNCT
: PUNCT
right INTJ
... PUNCT
some DET
labs NOUN
use VERB
it PRON
to PART
" PUNCT
kill VERB
" PUNCT
neurons NOUN
in ADP
mice NOUN
and CCONJ
ratsVitamin NOUN
A NOUN
( PUNCT
and CCONJ
I PRON
think VERB
vitamin NOUN
D NOUN
) PUNCT
in ADP
strong ADJ
enough ADJ
amounts NOUN
can AUX
kill VERB
. PUNCT
  SPACE
The DET
keywords NOUN
are AUX
DOSAGE VERB
and CCONJ
EXPOSURE PROPN
MECHANISM.-- PROPN
Kenneth PROPN
NgPlease PROPN
reply NOUN
to ADP
ken@blue.njit.edu PROPN
for ADP
now ADV
. PUNCT
"All PUNCT
this DET
might AUX
be AUX
an DET
elaborate ADJ
simulation NOUN
running VERB
in ADP
a DET
little ADJ
device NOUN
sittingon NOUN
someone PRON
's PART
table NOUN
" PUNCT
-- PUNCT
J.L. PROPN
Picard PROPN
: PUNCT
ST PROPN
: PUNCT
TNGNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58817From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
pointer NOUN
for ADP
info NOUN
( PUNCT
long PROPN
shot)In PROPN
article NOUN
< X
ZONKER.93Apr14174640@splinter.coe.northeastern.edu PROPN
> X
, PUNCT
Regis PROPN
M PROPN
Donovan PROPN
< X
zonker@silver.lcs.mit.edu NUM
> X
writes VERB
: PUNCT
> X
This DET
is AUX
something PRON
of ADP
a DET
long ADJ
shot NOUN
... PUNCT
but CCONJ
what PRON
the DET
hell NOUN
. PUNCT
  SPACE
the DET
net NOUN
is AUX
> X
full ADJ
of ADP
people NOUN
with ADP
strange ADJ
knowledge NOUN
... PUNCT
> X
> X
I PRON
'm AUX
looking VERB
for ADP
suggestions NOUN
as SCONJ
to ADP
what PRON
could AUX
be AUX
causing VERB
health NOUN
> X
problems NOUN
one NUM
of ADP
my PRON
relatives NOUN
is AUX
having VERB
. PUNCT
> X
> X
One NUM
of ADP
my PRON
cousins NOUN
has AUX
had VERB
health NOUN
problems NOUN
for ADP
much ADJ
of ADP
her PRON
life NOUN
. PUNCT
> X
Around ADP
the DET
age NOUN
of ADP
10 NUM
she PRON
had AUX
some DET
gynecological ADJ
problems NOUN
. PUNCT
  SPACE
Now ADV
she PRON
's AUX
> X
in ADP
her PRON
early ADJ
/ SYM
mid ADJ
twenties NOUN
and CCONJ
she PRON
is AUX
going VERB
blind ADJ
. PUNCT
> X
> X
Her PRON
eyes NOUN
are AUX
not PART
producing VERB
enough ADV
( PUNCT
if SCONJ
any DET
) PUNCT
moisture NOUN
. PUNCT
  SPACE
She PRON
's AUX
been AUX
going VERB
> X
to ADP
Mass PROPN
Eye PROPN
and CCONJ
Ear PROPN
and CCONJ
the DET
doctors NOUN
there ADV
have AUX
no DET
clue NOUN
what PRON
the DET
actual ADJ
> X
cause NOUN
is AUX
. PUNCT
  SPACE
THey PRON
have AUX
apparently ADV
tried VERB
eyedrops NOUN
and CCONJ
such ADJ
. PUNCT
  SPACE
She PRON
is AUX
just ADV
> X
about ADP
completely ADV
blind ADJ
in ADP
one NUM
eye NOUN
and CCONJ
the DET
other ADJ
is AUX
massively ADV
> ADV
deteriorated VERB
. PUNCT
Sjogren PROPN
's PART
syndrome NOUN
has AUX
been AUX
known VERB
to PART
induce VERB
dryness NOUN
in ADP
vaginal ADJ
tissue NOUN
as SCONJ
wellas NOUN
induce VERB
primary ADJ
biliary ADJ
cirrhosis NOUN
. PUNCT
Otherwise ADV
the DET
abdominal ADJ
swelling NOUN
could AUX
bedue PROPN
to ADP
a DET
complication NOUN
of ADP
Sjogren PROPN
's PART
known VERB
as SCONJ
pseudolymphoma NOUN
which PRON
* PUNCT
can AUX
* PUNCT
producea PROPN
splenomegaly PROPN
( PUNCT
enlarged VERB
spleen NOUN
) PUNCT
. PUNCT
She PRON
should AUX
definitely ADV
see VERB
a DET
rheumatologist NOUN
. PUNCT
Since SCONJ
you PRON
do AUX
n't PART
mention VERB
skin NOUN
disorder NOUN
, PUNCT
anemia NOUN
, PUNCT
or CCONJ
joint ADJ
pain NOUN
you PRON
'd AUX
probablyrule VERB
out ADP
erythema NOUN
nodosum NOUN
or CCONJ
scleroderma PROPN
. PUNCT
Joshbackon@VMS.HUJI.AC.IL X
> X
> X
Also ADV
, PUNCT
and CCONJ
this DET
may AUX
or CCONJ
may AUX
not PART
be AUX
related VERB
, PUNCT
she PRON
is AUX
having VERB
some DET
changes NOUN
> X
in ADP
her PRON
abdomen NOUN
. PUNCT
  SPACE
her PRON
stomach NOUN
has AUX
swelled VERB
( PUNCT
i PRON
'm AUX
not PART
sure ADJ
if SCONJ
this DET
is AUX
> X
stomach NOUN
the DET
organ NOUN
or CCONJ
stomach NOUN
teh NOUN
area NOUN
of ADP
the DET
body NOUN
) PUNCT
. PUNCT
> X
> X
I PRON
guess VERB
the DET
step NOUN
they PRON
're AUX
going VERB
to PART
take VERB
next ADJ
is AUX
to PART
do AUX
a DET
whole ADJ
battery NOUN
> X
of ADP
tests NOUN
to PART
check VERB
all DET
the DET
other ADJ
internal ADJ
systmes NOUN
besides SCONJ
just ADV
the DET
> X
eyes NOUN
... PUNCT
> X
> X
but CCONJ
just ADV
because SCONJ
the DET
net NOUN
is AUX
a DET
source NOUN
of ADP
large ADJ
amounts NOUN
of ADP
bizarre ADJ
> X
knowledge NOUN
, PUNCT
i PRON
'm AUX
going VERB
to PART
ask VERB
: PUNCT
has AUX
anyone PRON
ever ADV
heard VERB
of ADP
anything PRON
like SCONJ
> X
this DET
? PUNCT
  SPACE
suggestions NOUN
of ADP
things NOUN
to PART
ask VERB
about ADP
( PUNCT
since SCONJ
much ADJ
of ADP
my PRON
knowledge NOUN
> X
about ADP
her PRON
state NOUN
comes VERB
second ADJ
or CCONJ
third ADJ
hand NOUN
) PUNCT
? PUNCT
> X
> X
Thanks INTJ
. PUNCT
> X
--Regis PUNCT
> X
   SPACE
zonker@silver.lcs.mit.edu>Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58818From NUM
: PUNCT
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr15.200344.28013@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> PROPN
2 X
) PUNCT
Science NOUN
has AUX
not PART
historically ADV
progressed VERB
in ADP
any DET
sort NOUN
of ADP
rational| PROPN
> X
experiment NOUN
- PUNCT
data NOUN
- PUNCT
theory NOUN
sequence NOUN
. PUNCT
  SPACE
Most ADJ
experiments NOUN
are AUX
carried VERB
out ADP
, PUNCT
and| PROPN
> PROPN
interpreted VERB
, PUNCT
in ADP
pre ADJ
- ADJ
existing VERB
theoretical ADJ
frameworks NOUN
. PUNCT
  SPACE
The DET
theoretical| PROPN
> X
controversies NOUN
of ADP
the DET
day NOUN
determine NOUN
which PRON
experiments NOUN
get VERB
done VERB
. PUNCT
  SPACE
Overall,| ADJ
> X
there PRON
is AUX
a DET
huge ADJ
messy ADJ
affair NOUN
of ADP
personal ADJ
jealousies NOUN
, PUNCT
crazy ADJ
motivations,| NOUN
> X
petty ADJ
hatreds NOUN
, PUNCT
and CCONJ
the DET
like ADJ
that DET
determines VERB
which PRON
experiments NOUN
, PUNCT
and CCONJ
which| PROPN
> X
computations NOUN
, PUNCT
get AUX
done VERB
. PUNCT
  SPACE
What PRON
keeps VERB
it PRON
going VERB
forward ADV
is AUX
the DET
critical| PROPN
> X
function NOUN
of ADP
science NOUN
: PUNCT
results NOUN
do AUX
n't PART
count VERB
unless SCONJ
they PRON
can AUX
be AUX
replicated.| PROPN
> X
| ADP
> X
The DET
whole ADJ
system NOUN
is AUX
a DET
sort NOUN
of ADP
mechanism NOUN
for ADP
generate NOUN
- PUNCT
and CCONJ
- PUNCT
test NOUN
. PUNCT
  SPACE
The DET
generate| PROPN
> X
part NOUN
can AUX
be AUX
totally ADV
irrational ADJ
, PUNCT
as ADV
long ADV
as SCONJ
the DET
test NOUN
part NOUN
works VERB
properly ADV
. PUNCT
I PRON
think VERB
we PRON
agree VERB
on ADP
much ADJ
. PUNCT
  SPACE
However ADV
the DET
paragraphs NOUN
above ADV
seem VERB
to PART
repeatuncritically ADV
the DET
standard ADJ
Kuhn PROPN
/ SYM
Lakatos PROPN
/ SYM
Feyerabend PROPN
view NOUN
of ADP
" PUNCT
progress NOUN
" PUNCT
and"rationality NOUN
" PUNCT
in ADP
science NOUN
. PUNCT
  SPACE
Since SCONJ
I PRON
've AUX
addressed VERB
these DET
issues NOUN
in ADP
thisnewsgroup NOUN
in ADP
the DET
not PART
too ADV
distant ADJ
past ADV
, PUNCT
I PRON
wo AUX
n't PART
go VERB
into ADP
them PRON
again ADV
now ADV
. PUNCT
What PRON
is AUX
wrong ADJ
with ADP
the DET
above ADJ
observation NOUN
is AUX
that SCONJ
it PRON
explicitly ADV
gives VERB
theimpression NOUN
( PUNCT
and CCONJ
you PRON
may AUX
not PART
in ADP
fact NOUN
hold VERB
this DET
view NOUN
) PUNCT
that SCONJ
the DET
common ADJ
( PUNCT
perhapseven VERB
the DET
" PUNCT
correct ADJ
" PUNCT
) PUNCT
approach NOUN
for ADP
a DET
scientist NOUN
to PART
follow VERB
is AUX
to PART
sit VERB
aroundhaving NOUN
flights NOUN
of ADP
fancy ADJ
and CCONJ
scheming VERB
on ADP
the DET
basis NOUN
of ADP
his PRON
jealousies NOUN
andpetty ADV
hatreds NOUN
. PUNCT
  SPACE
It PRON
further ADV
at ADV
least ADV
implicitly ADV
advances VERB
the DET
position NOUN
thatsciences NOUN
goes VERB
" PUNCT
forward ADV
" PUNCT
( PUNCT
and CCONJ
it PRON
is AUX
not PART
clear ADJ
what PRON
this DET
means VERB
given VERB
thecontext ADV
in ADP
which PRON
it PRON
occurs VERB
) PUNCT
by ADP
generating VERB
in ADP
a DET
completely ADV
non ADJ
- ADJ
rationaland VERB
even ADV
random ADJ
way NOUN
a DET
plethora NOUN
of ADP
hypotheses NOUN
and CCONJ
theories NOUN
that PRON
are AUX
thenweeded VERB
out ADP
via ADP
the DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
of ADP
science NOUN
. PUNCT
  SPACE
( PUNCT
Though SCONJ
why ADV
this DET
criticalfunction NOUN
should AUX
be AUX
less ADV
subject ADJ
to ADP
the DET
non ADJ
- ADJ
rational ADJ
forces NOUN
is AUX
a DET
mystery NOUN
. PUNCT
If SCONJ
experimental ADJ
design NOUN
, PUNCT
hypotheses NOUN
creation NOUN
, PUNCT
and CCONJ
theory NOUN
construction NOUN
aresubject NOUN
to ADP
jealousies NOUN
and CCONJ
petty ADJ
hatreds NOUN
, PUNCT
then ADV
this DET
must AUX
be AUX
equally ADV
trueof VERB
the DET
application NOUN
of ADP
any DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
concerning VERB
replication NOUN
. PUNCT
This DET
is AUX
what PRON
leads VERB
one NUM
( PUNCT
ala PROPN
Feyerabend PROPN
) PUNCT
to ADP
an DET
" PUNCT
anything PRON
goes VERB
" PUNCT
view.)True PUNCT
, PUNCT
the DET
generation NOUN
part NOUN
* PUNCT
can AUX
* PUNCT
be AUX
totally ADV
irrational ADJ
. PUNCT
  SPACE
But CCONJ
typically ADV
it PRON
is*not ADV
* PUNCT
. PUNCT
  SPACE
Anecdotes VERB
concerning VERB
instances NOUN
where ADV
a DET
hypothesis NOUN
seems VERB
to PART
haveresulted VERB
in ADP
some DET
way NOUN
from ADP
a DET
dream NOUN
or CCONJ
from ADP
one PRON
's PART
political ADJ
views NOUN
simplydo VERB
not PART
generalize VERB
well ADV
to ADP
the DET
actual ADJ
history NOUN
of ADP
science.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58819From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Seeking VERB
advice NOUN
/ SYM
experience NOUN
with ADP
back ADJ
problemIn NOUN
article NOUN
< X
C5FI9r.7yz@cbnewsk.cb.att.com NOUN
> X
janet.m.cooper,jmcooper@cbnewsk.cb.att.com X
writes:>The DET
mother NOUN
of ADP
a DET
friend NOUN
of ADP
mine NOUN
is AUX
experiencing VERB
a DET
disabling VERB
back ADP
> X
pain NOUN
. PUNCT
  SPACE
After ADP
MRIs NOUN
, PUNCT
CT PROPN
scans VERB
, PUNCT
and CCONJ
doctors NOUN
visits NOUN
she PRON
has AUX
beenpresented VERB
> X
with ADP
2 NUM
alternatives NOUN
: PUNCT
> X
( PUNCT
1 X
) PUNCT
live VERB
with ADP
the DET
pain NOUN
> X
or CCONJ
( PUNCT
2 X
) PUNCT
undergo VERB
a DET
somewhat ADV
> X
risky ADJ
operation NOUN
which PRON
may AUX
leave VERB
her PRON
paralyzed ADJ
. PUNCT
  SPACE
She PRON
also ADV
has AUX
a DET
Since SCONJ
her PRON
symptoms NOUN
are AUX
only ADV
pain NOUN
she PRON
would AUX
do AUX
weel NOUN
to PART
seek VERB
theadvice NOUN
of ADP
a DET
good ADJ
, PUNCT
multi ADJ
- ADJ
disciplinary ADJ
pain NOUN
clinic NOUN
. PUNCT
It PRON
is AUX
distressingto PROPN
think VERB
that SCONJ
people NOUN
are AUX
stll ADJ
being NOUN
told VERB
they PRON
have AUX
to PART
" PUNCT
live VERB
with ADP
thepain NOUN
" PUNCT
when ADV
many ADJ
options NOUN
for ADP
pain NOUN
management NOUN
( PUNCT
rather ADV
than SCONJ
treatingMRI DET
findings NOUN
) PUNCT
are AUX
available ADJ
. PUNCT
A DET
good ADJ
pain NOUN
clinic NOUN
will AUX
accept VERB
thatthis DET
lady NOUN
's PART
problem NOUN
is AUX
her PRON
pain NOUN
and CCONJ
set VERB
about ADP
finding VERB
ways NOUN
ofrelieveing VERB
that DET
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsUM PROPN
Anesthesiology PROPN
will AUX
disavow VERB
... PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58820From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
options NOUN
before ADP
back ADJ
surgery NOUN
for ADP
protruding VERB
disc NOUN
at ADP
L4-L5Subject NOUN
: PUNCT
options NOUN
before ADP
back ADJ
surgery NOUN
for ADP
protruding VERB
disc NOUN
at ADP
L4-L5From PROPN
: PUNCT
Alex PROPN
Miller PROPN
, PUNCT
amiller@almaden.ibm.comDate PROPN
: PUNCT
13 NUM
Apr PROPN
93 NUM
18:30:42 NUM
GMTIn NOUN
article NOUN
< X
2241@coyote NOUN
. PUNCT
UUCP NOUN
> X
Alex PROPN
Miller PROPN
, PUNCT
amiller@almaden.ibm.comwrites:>After NOUN
two NUM
weeks NOUN
of ADP
limping VERB
around ADP
with ADP
an DET
acute ADJ
pain NOUN
in ADP
my PRON
low ADJ
back ADV
> CCONJ
and CCONJ
right ADJ
leg NOUN
, PUNCT
my PRON
osteopath NOUN
sent VERB
me PRON
to PART
get AUX
an DET
MRI PROPN
which PRON
revealed VERB
> X
a DET
protruding NOUN
( PUNCT
and CCONJ
extruded VERB
) PUNCT
disc NOUN
at ADP
L4-L5 PROPN
. PUNCT
  SPACE
I PRON
went VERB
to ADP
a DET
neurosurgeon NOUN
> X
who PRON
prescribed VERB
prednisole NOUN
( PUNCT
a DET
steroidal NOUN
anti ADJ
- ADJ
inflamitory ADJ
) PUNCT
and CCONJ
bedrest VERB
> X
for ADP
several ADJ
days NOUN
. PUNCT
  SPACE
It PRON
's AUX
been AUX
nearly ADV
a DET
week NOUN
and CCONJ
overall NOUN
I PRON
feel VERB
> X
slightly ADV
worse ADJ
- PUNCT
I PRON
take VERB
darvocet NOUN
three NUM
times NOUN
a DET
day NOUN
so ADV
I PRON
can AUX
> X
deal VERB
with ADP
daily ADJ
activities NOUN
like SCONJ
preparing VERB
food NOUN
and CCONJ
help VERB
me PRON
> X
get AUX
to ADP
sleep NOUN
. PUNCT
  SPACE
> X
> X
I PRON
'll AUX
see VERB
the DET
neurosurgeon NOUN
tomorrow NOUN
and CCONJ
of ADP
course NOUN
I PRON
'll AUX
be AUX
asking VERB
> X
whether SCONJ
or CCONJ
not PART
this DET
rest NOUN
is AUX
helpful ADJ
or CCONJ
if SCONJ
surgery NOUN
is AUX
the DET
next ADJ
> X
step NOUN
. PUNCT
  SPACE
What PRON
are AUX
my PRON
non ADJ
- ADJ
surgical ADJ
options NOUN
if SCONJ
my PRON
goal NOUN
is AUX
to PART
resume VERB
> X
full ADJ
activity NOUN
, PUNCT
including VERB
competitive ADJ
cycling NOUN
. PUNCT
  SPACE
I PRON
should AUX
add VERB
this DET
> ADJ
condition NOUN
is AUX
, PUNCT
in ADP
my PRON
opinion NOUN
, PUNCT
the DET
result NOUN
of ADP
commulative ADJ
wear NOUN
and CCONJ
> X
tear NOUN
- PUNCT
I PRON
've AUX
had VERB
chronic ADJ
low ADJ
- PUNCT
back NOUN
pain NOUN
for ADP
years NOUN
- PUNCT
but CCONJ
I PRON
managedYou PROPN
do AUX
n't PART
say VERB
whether SCONJ
or CCONJ
not PART
you PRON
have AUX
any DET
symptoms NOUN
other ADJ
than SCONJ
pain NOUN
. PUNCT
If SCONJ
you PRON
have AUX
numbness NOUN
, PUNCT
weakness NOUN
or CCONJ
bladder NOUN
problems NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
these DET
would AUX
suggest VERB
a DET
need NOUN
for ADP
surgery NOUN
. PUNCT
If SCONJ
pain NOUN
is AUX
your PRON
only ADJ
symptomyou NOUN
might AUX
do AUX
well ADV
to PART
find VERB
a DET
reputable ADJ
, PUNCT
multi ADJ
- ADJ
disciplinary ADJ
painclinic NOUN
in ADP
your PRON
area NOUN
. PUNCT
Chronic ADJ
low ADJ
back NOUN
pain NOUN
generally ADV
does AUX
n't PART
do AUX
wellwith NOUN
surgery NOUN
, PUNCT
acute ADJ
on ADP
chronic ADJ
pain NOUN
( PUNCT
as SCONJ
only ADJ
symptom NOUN
) PUNCT
does AUX
n't PART
faremuch VERB
better.e PROPN
correlation NOUN
between ADP
MRI PROPN
findings NOUN
and CCONJ
symptoms NOUN
is AUX
controversial ADJ
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
  SPACE
his PRON
opinionsUM PROPN
will AUX
disavow VERB
... PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58821From NUM
: PUNCT
rcj2@cbnewsd.cb.att.com PROPN
( PUNCT
ray.c.jender)Subject NOUN
: PUNCT
Looking VERB
for ADP
a DET
doctor NOUN
	 SPACE
I PRON
was AUX
kind ADV
of ADV
half ADV
watching VERB
Street PROPN
Stories PROPN
last ADJ
night NOUN
	 SPACE
and CCONJ
one NUM
of ADP
the DET
segments NOUN
was AUX
about ADP
this DET
doctor NOUN
in ADP
	 SPACE
S.F. PROPN
who PRON
provides VERB
a DET
service NOUN
of ADP
investigating VERB
treatment NOUN
	 SPACE
for ADP
various ADJ
diseases NOUN
. PUNCT
I PRON
'm AUX
pretty ADV
sure ADJ
his PRON
name NOUN
is AUX
	 SPACE
Dr. PROPN
Mark PROPN
Renniger PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
or CCONJ
close ADV
to ADP
that DET
. PUNCT
	 SPACE
Did AUX
anyone PRON
else ADV
watch VERB
this DET
? PUNCT
I PRON
'd AUX
like VERB
to PART
get AUX
his PRON
	 SPACE
correct ADJ
name NOUN
and CCONJ
address NOUN
/ SYM
phone NOUN
number NOUN
if SCONJ
possible ADJ
. PUNCT
	 SPACE
Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58822From NUM
: PUNCT
dbc@welkin.gsfc.nasa.gov PROPN
( PUNCT
David PROPN
Considine)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.180459.17852@nmr-z.mgh.harvard.edu NUM
> X
milsh@nmr-z.mgh.harvard.edu PUNCT
( PUNCT
Alex PROPN
Milshteyn PROPN
) PUNCT
writes:>This PROPN
was AUX
known VERB
long ADV
ago ADV
. PUNCT
  SPACE
Brain PROPN
produces VERB
and CCONJ
uses VERB
some DET
MSG NOUN
naturally,>but ADP
not PART
in ADP
doses NOUN
it PRON
is AUX
served VERB
at ADP
some DET
chinese ADJ
places NOUN
. PUNCT
> X
Having VERB
said VERB
that DET
, PUNCT
i PRON
might AUX
add VERB
, PUNCT
that SCONJ
in ADP
MHO PROPN
, PUNCT
MSG PROPN
does AUX
not PART
enhance VERB
> X
flavor NOUN
enoughf VERB
for ADP
me PRON
to PART
miss VERB
it PRON
. PUNCT
  SPACE
When ADV
I PRON
go VERB
to ADP
chinese ADJ
places,>I PROPN
order NOUN
food NOUN
without ADP
MSG PROPN
. PUNCT
  SPACE
Goos PROPN
places NOUN
will AUX
do AUX
it PRON
for ADP
you PRON
. PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
	 SPACE
I PRON
just ADV
wanted VERB
to PART
point VERB
out ADP
that SCONJ
some DET
of ADP
the DET
food NOUN
, PUNCT
particularly ADV
	 SPACE
the DET
soups NOUN
, PUNCT
are AUX
prepared VERB
in ADP
a DET
big ADJ
batch NOUN
, PUNCT
so ADV
the DET
restaurant NOUN
	 SPACE
wo AUX
n't PART
be AUX
able ADJ
to PART
take VERB
the DET
MSG PROPN
out SCONJ
of ADP
it PRON
. PUNCT
  SPACE
Sometimes ADV
its PRON
	 SPACE
pretty ADV
hard ADV
to PART
find VERB
out ADP
if SCONJ
this DET
is AUX
the DET
case NOUN
or CCONJ
not.>Alexander PROPN
M. PROPN
Milshteyn PROPN
M.D. PROPN
   SPACE
< X
milsh@cipr-server.mgh.harvard.edu>>CIPR PROPN
, PUNCT
MGH PROPN
in ADP
Boston PROPN
, PUNCT
MA PROPN
. PUNCT
     SPACE
( PUNCT
617)724 NUM
- PUNCT
9507 NUM
Vox PROPN
  SPACE
( PUNCT
617)726 NUM
- PUNCT
7830 NUM
FaxDavid PROPN
B. PROPN
Considinedbc@welkin.gsfc.nasa.govNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58823From NUM
: PUNCT
debbie@csd4.csd.uwm.edu PROPN
( PUNCT
Debbie PROPN
Forest)Subject NUM
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?In PROPN
article NOUN
< X
1993Apr14.184444.24065@galileo.cc.rochester.edu NUM
> X
jkis_ltd@uhura.cc.rochester.edu NOUN
( PUNCT
Da PROPN
' PUNCT
Beave NOUN
) PUNCT
writes:>>Well PROPN
folks NOUN
, PUNCT
I PRON
currently ADV
have AUX
a DET
yeast NOUN
infection NOUN
. PUNCT
I PRON
am AUX
male ADJ
. PUNCT
> X
[ PUNCT
... PUNCT
] PUNCT
your PRON
best ADJ
bet NOUN
( PUNCT
or CCONJ
at ADP
least ADJ
your PRON
husband's)>is NOUN
to PART
treat VERB
and CCONJ
cure VERB
your PRON
infection NOUN
before ADP
any DET
intercourse NOUN
. PUNCT
If SCONJ
you PRON
must AUX
, PUNCT
use VERB
> X
a DET
condom NOUN
. PUNCT
Also ADV
, PUNCT
consider VERB
other ADJ
forms NOUN
of ADP
sexual ADJ
release NOUN
( PUNCT
ie X
. PROPN
handjobs PROPN
) PUNCT
until ADP
> X
you PRON
are AUX
cured VERB
. PUNCT
Though SCONJ
I PRON
ca AUX
n't PART
imagine VERB
WANTING NOUN
to PART
have AUX
intercourse NOUN
during ADP
a DET
full ADJ
- PUNCT
blownyeast NOUN
infection NOUN
:-) PUNCT
chances NOUN
of ADP
it PRON
being AUX
transmitted VERB
to ADP
the DET
male NOUN
are AUX
quitelow ADJ
, PUNCT
especially ADV
if SCONJ
he PRON
's AUX
circumcised VERB
. PUNCT
  SPACE
But CCONJ
it PRON
can AUX
happen VERB
. PUNCT
At ADP
one NUM
point NOUN
I PRON
was AUX
getting VERB
recurrent ADJ
yeast NOUN
infections NOUN
and CCONJ
the DET
Dr PROPN
suspectedmy ADJ
boyfriend NOUN
might AUX
have AUX
gotten VERB
it PRON
from ADP
me PRON
and CCONJ
be AUX
reinfecting VERB
me PRON
. PUNCT
  SPACE
Theprescription PROPN
was AUX
interesting ADJ
. PUNCT
  SPACE
For ADP
each DET
day NOUN
of ADP
the DET
medication NOUN
( PUNCT
a DET
week NOUN
) PUNCT
I PRON
was AUX
to PART
insert VERB
the DET
medication NOUN
, PUNCT
then ADV
to PART
have AUX
intercourse NOUN
. PUNCT
  SPACE
The DET
resulting VERB
action NOUN
would AUX
help VERB
the DET
medicine NOUN
be AUX
spread VERB
around ADV
in ADP
me PRON
better ADV
, PUNCT
and CCONJ
would AUX
simultaneously ADV
treat VERB
him PRON
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58824From NUM
: PUNCT
sdbsd5@cislabs.pitt.edu PROPN
( PUNCT
Stephen PROPN
D PROPN
Brener)Subject PROPN
: PUNCT
Intensive ADJ
Japanese PROPN
at ADP
PittIn NOUN
article NOUN
< X
C5KxIx.5Ct@cbnewsd.cb.att.com X
> X
rcj2@cbnewsd.cb.att.com NOUN
( PUNCT
ray.c.jender PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
	 SPACE
I PRON
was AUX
kind ADV
of ADV
half ADV
watching VERB
Street PROPN
Stories PROPN
last ADJ
night NOUN
> X
	 SPACE
and CCONJ
one NUM
of ADP
the DET
segments NOUN
was AUX
about ADP
this DET
doctor NOUN
in ADP
> X
	 SPACE
S.F. PROPN
who PRON
provides VERB
a DET
service NOUN
of ADP
investigating VERB
treatment NOUN
> X
	 SPACE
for ADP
various ADJ
diseases NOUN
. PUNCT
I PRON
'm AUX
pretty ADV
sure ADJ
his PRON
name NOUN
is AUX
> X
	 SPACE
Dr. PROPN
Mark PROPN
Renniger PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
or CCONJ
close ADV
to ADP
that DET
. PUNCT
> X
	 SPACE
Did AUX
anyone PRON
else ADV
watch VERB
this DET
? PUNCT
I PRON
'd AUX
like VERB
to PART
get AUX
his PRON
> X
	 SPACE
correct ADJ
name NOUN
and CCONJ
address NOUN
/ SYM
phone NOUN
number NOUN
if SCONJ
possible ADJ
. PUNCT
> X
	 SPACE
Thanks NOUN
. PUNCT
    SPACE
INTENSIVE VERB
JAPANESE ADJ
AT ADP
THE DET
UNIVERSITY NOUN
OF ADP
PITTSBURGH PROPN
THIS PROPN
SUMMER NOUN
    SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^The PUNCT
University PROPN
of ADP
Pittsburgh PROPN
is AUX
offering VERB
two NUM
intensive ADJ
Japanese ADJ
languagecourses NOUN
this DET
summer NOUN
. PUNCT
  SPACE
Both DET
courses NOUN
, PUNCT
Intensive ADJ
Elementary PROPN
Japanese ADJ
and CCONJ
Intensive ADJ
Intermediate PROPN
Japanese PROPN
, PUNCT
are AUX
ten NUM
week NOUN
, PUNCT
ten NUM
credit NOUN
courses NOUN
each DET
equivalent ADJ
to ADP
one NUM
full ADJ
year NOUN
of ADP
Japanese ADJ
language NOUN
study NOUN
. PUNCT
  SPACE
They PRON
begin VERB
June PROPN
7 NUM
and CCONJ
end VERB
August PROPN
13 NUM
. PUNCT
  SPACE
The DET
courses NOUN
meet VERB
five NUM
days NOUN
per ADP
week NOUN
, PUNCT
five NUM
hours NOUN
per ADP
day NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
flat ADJ
rate NOUN
tuition NOUN
charge NOUN
of ADP
$ SYM
1600 NUM
per ADP
course NOUN
. PUNCT
  SPACE
Fellowships NOUN
available ADJ
for ADP
science NOUN
and CCONJ
engineering NOUN
students NOUN
. PUNCT
  SPACE
Contact PROPN
Steven PROPN
Brener PROPN
, PUNCT
Program PROPN
Manager PROPN
of ADP
the DET
Japanese PROPN
Science PROPN
and CCONJ
TechnologyManagement PROPN
Program PROPN
, PUNCT
at ADP
the DET
University PROPN
of ADP
Pittsburgh PROPN
at ADP
the DET
number NOUN
oraddress ADV
below ADV
. PUNCT
  SPACE
ALL DET
INTERESTED ADJ
INDIVIDUALS NOUN
ARE VERB
ENCOURAGED VERB
TO PART
APPLY VERB
, PUNCT
THIS DET
IS VERB
NOT ADV
LIMITED ADJ
TO PART
UNIVERSITY VERB
STUDENTS NOUN
. PUNCT
  SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
   SPACE
New PROPN
Program PROPN
Announcement PROPN
   SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
            SPACE
JAPANESE ADJ
SCIENCE PROPN
AND CCONJ
TECHNOLOGY PROPN
MANAGEMENT PROPN
PROGRAMThe ADJ
Japanese PROPN
Science PROPN
and CCONJ
Technology PROPN
Management PROPN
Program PROPN
( PUNCT
JSTMP PROPN
) PUNCT
is AUX
a DET
newprogram NOUN
jointly ADV
developed VERB
by ADP
the DET
University PROPN
of ADP
Pittsbugh PROPN
and CCONJ
Carnegie PROPN
Mellon PROPN
University PROPN
. PUNCT
  SPACE
Students NOUN
and CCONJ
professionals NOUN
in ADP
the DET
engineering NOUN
and CCONJ
scientific ADJ
communitites NOUN
are AUX
encouraged VERB
to PART
apply VERB
for ADP
classes NOUN
commencing VERB
in ADP
June PROPN
1993 NUM
and CCONJ
January PROPN
1994.PROGRAM PUNCT
OBJECTIVESThe ADJ
program NOUN
intends VERB
to PART
promote VERB
technology NOUN
transfer NOUN
between ADP
Japan PROPN
and CCONJ
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
designed VERB
to PART
let VERB
scientists NOUN
, PUNCT
engineers NOUN
, PUNCT
and CCONJ
managersexperience VERB
how ADV
the DET
Japanese PROPN
proceed VERB
with ADP
technological ADJ
development NOUN
. PUNCT
  SPACE
This DET
is AUX
facilitated VERB
by ADP
extended ADJ
internships NOUN
in ADP
Japanese ADJ
research NOUN
facilities NOUN
andlaboratories NOUN
that PRON
provide VERB
participants NOUN
with ADP
the DET
opportunity NOUN
to ADP
developlong ADJ
- PUNCT
term NOUN
professional ADJ
relationships NOUN
with ADP
their PRON
Japanese ADJ
counterparts NOUN
. PUNCT
PROGRAM NOUN
DESIGNTo NOUN
fulfill VERB
the DET
objectives NOUN
of ADP
the DET
program NOUN
, PUNCT
participants NOUN
will AUX
be AUX
required VERB
to PART
develop VERB
advanced ADJ
language NOUN
capability NOUN
and CCONJ
a DET
deep ADJ
understanding NOUN
of ADP
Japan PROPN
andits VERB
culture NOUN
. PUNCT
  SPACE
Correspondingly ADV
, PUNCT
JSTMP PROPN
consists VERB
of ADP
three NUM
major ADJ
components:1 PROPN
. PUNCT
TRAINING NOUN
IN ADP
THE DET
JAPANESE ADJ
LANGUAGESeveral ADJ
Japanese ADJ
language NOUN
courses NOUN
will AUX
be AUX
offered VERB
, PUNCT
including VERB
intensive ADJ
coursesdesigned VERB
to ADP
expedite ADJ
language NOUN
preparation NOUN
for ADP
scientists NOUN
and CCONJ
engineers NOUN
in ADP
arelatively ADV
short ADJ
time.2 NOUN
. PUNCT
EDUCATION PROPN
IN ADP
JAPANESE ADJ
BUSINESS NOUN
AND CCONJ
SOCIAL PROPN
CULTUREA VERB
particular ADJ
enphasis NOUN
is AUX
placed VERB
on ADP
attaining VERB
a DET
deep ADJ
understanding NOUN
of ADP
thecultural ADJ
and CCONJ
educational ADJ
basis NOUN
of ADP
Japanese ADJ
management NOUN
approaches NOUN
in ADP
manufacturing NOUN
and CCONJ
information NOUN
technology NOUN
. PUNCT
  SPACE
Courses NOUN
will AUX
be AUX
available ADJ
in ADP
a DET
variety NOUN
of ADP
departments NOUN
throughout ADP
both DET
universities NOUN
including VERB
Anthropology PROPN
, PUNCT
Sociology NOUN
, PUNCT
History NOUN
, PUNCT
and CCONJ
Political PROPN
Science PROPN
. PUNCT
  SPACE
Moreover ADV
, PUNCT
seminars NOUN
and CCONJ
colloquiumswill ADV
be AUX
conducted VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
a DET
field NOUN
trip NOUN
to ADP
Japanese ADJ
manufacturing NOUN
or CCONJ
research NOUN
facilities NOUN
in ADP
the DET
United PROPN
States PROPN
will AUX
be AUX
scheduled.3 PROPN
. PUNCT
AN DET
INTERNSHIP NOUN
OR CCONJ
A DET
STUDY NOUN
MISSION NOUN
IN ADP
JAPANUpon ADJ
completion NOUN
of ADP
their PRON
language NOUN
and CCONJ
cultural ADJ
training NOUN
at ADP
PITT PROPN
and CCONJ
CMU PROPN
, PUNCT
participants NOUN
will AUX
have AUX
the DET
opportunity NOUN
to PART
go VERB
to ADP
Japan PROPN
and CCONJ
observe VERB
, PUNCT
and CCONJ
participate VERB
in ADP
the DET
management NOUN
of ADP
technology NOUN
. PUNCT
  SPACE
Internships PROPN
in ADP
Japanwill PROPN
generally ADV
run VERB
for ADP
one NUM
year NOUN
; PUNCT
however ADV
, PUNCT
shorter ADJ
ones NOUN
are AUX
possible ADJ
. PUNCT
FELLOWSHIPS PROPN
COVERING VERB
TUITION NOUN
FOR ADP
LANGUAGE PROPN
AND CCONJ
CULTURE NOUN
COURSES NOUN
, PUNCT
AS ADP
WELL NOUN
ASSTIPENDS VERB
FOR ADP
LIVING NOUN
EXPENSES NOUN
ARE VERB
AVAILABLE ADJ
. PUNCT
        SPACE
FOR ADP
MORE ADJ
INFORMATION NOUN
AND CCONJ
APPLICATION NOUN
MATERIALS NOUN
CONTACTSTEVEN VERB
BRENER NOUN
				 SPACE
SUSIE ADJ
BROWNJSTMP PROPN
					 SPACE
Carnegie PROPN
Mellon PROPN
University PROPN
, PUNCT
GSIAUniversity NOUN
of ADP
Pittsburgh PROPN
		 SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
15213 NUM
- PUNCT
38904E25 NOUN
Forbes PROPN
Quadrangle PROPN
			 SPACE
Telephone NOUN
: PUNCT
( PUNCT
412 NUM
) PUNCT
268 NUM
- SYM
7806Pittsburgh PROPN
, PUNCT
PA PROPN
15260 NUM
			 SPACE
FAX NOUN
: PUNCT
	    SPACE
( PUNCT
412 NUM
) PUNCT
268 NUM
- PUNCT
8163Telephone NUM
: PUNCT
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
7414 NUM
		 SPACE
FAX PROPN
: PUNCT
       SPACE
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
2199 NUM
		 SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# NOUN
Interested ADJ
individuals NOUN
, PUNCT
companies NOUN
and CCONJ
institutions NOUN
should AUX
respond VERB
by ADP
phone NOUN
ormail NOUN
. PUNCT
  SPACE
Please INTJ
do AUX
not PART
inquire VERB
via ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
Please INTJ
note VERB
that SCONJ
this DET
is AUX
directed VERB
at ADP
grads NOUN
and CCONJ
professionals NOUN
, PUNCT
however ADV
, PUNCT
advancedundergrads NOUN
will AUX
be AUX
considered VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
funding NOUN
is AUX
resticted VERB
to ADP
US PROPN
citizensand NOUN
permanent ADJ
residents NOUN
of ADP
the DET
US.Steve PROPN
BrenerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58825From NUM
: PUNCT
anello@adcs00.fnal.gov PROPN
( PUNCT
Anthony PROPN
Anello)Subject NUM
: PUNCT
HYPOGLYCEMIACan ADV
anyone PRON
tell VERB
me PRON
if SCONJ
a DET
bloodcount NOUN
of ADP
40 NUM
when ADV
diagnosed VERB
as SCONJ
hypoglycemic PROPN
isdangerous PROPN
, PUNCT
i.e. X
indicates VERB
a DET
possible ADJ
pancreatic ADJ
problem NOUN
? PUNCT
  SPACE
One NUM
Dr. PROPN
says VERB
no DET
, PUNCT
theother NOUN
( PUNCT
not PART
his PRON
specialty NOUN
) PUNCT
says VERB
the DET
first ADJ
is AUX
negligent ADJ
and CCONJ
that SCONJ
another DET
bloodtest NOUN
should AUX
be AUX
done VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
what PRON
is AUX
a DET
good ADJ
diet NOUN
( PUNCT
what PRON
has AUX
worked VERB
) PUNCT
for ADP
a DET
hypo ADV
- PUNCT
glycemic ADJ
? PUNCT
  SPACE
TIA.Anthony PROPN
AnelloFermilabBatavia PROPN
, PUNCT
Illinois-- PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58826From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com X
> X
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
13APR199308003715@delphi.gsfc.nasa.gov NUM
> X
, PUNCT
packer@delphi.gsfc.nasa.gov NOUN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>>>Is VERB
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>>I NOUN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG NOUN
sensitivity NOUN
are>>>superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
> X
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least>>>a PROPN
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the>>>"Chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has>>>always VERB
used VERB
it.>>So NOUN
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but CCONJ
> X
no DET
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
> X
work NOUN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study NOUN
> X
using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
Check VERB
out ADP
# SYM
27903 NUM
, PUNCT
just ADV
some DET
20 NUM
posts NOUN
before ADP
your PRON
own ADJ
. PUNCT
Maybe ADV
you PRON
missedit VERB
amidst ADP
the DET
flurry NOUN
of ADP
responses NOUN
? PUNCT
Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
thisnewsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
mattersthey NOUN
have AUX
substantial ADJ
knowledge NOUN
of ADP
. PUNCT
For ADP
cites NOUN
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
atoxicologist NOUN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
ondevelopment NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
anexcitotoxic ADJ
food NOUN
additive ADJ
, PUNCT
and CCONJ
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamateis PROPN
essentially ADV
the DET
premierie PROPN
neurotransmitter PROPN
in ADP
the DET
mammalian PROPN
brain(humans PROPN
included VERB
) PUNCT
. PUNCT
  SPACE
Too ADV
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrownoff NOUN
. PUNCT
  SPACE
Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
insmall ADJ
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amountsadded VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
beencountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
  SPACE
By ADP
eating VERB
lots NOUN
of ADP
junk NOUN
food NOUN
, PUNCT
packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to PART
jack VERB
yourblood PROPN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
thesecompounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical ADJ
effects NOUN
. PUNCT
Read VERB
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*sources PUNCT
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
                    SPACE
--Dianne PUNCT
Murray PROPN
    SPACE
wcsbeau@ccs.carleton.caNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58827From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5Kv7p.JM3@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr15.200344.28013@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>What DET
is AUX
wrong ADJ
with ADP
the DET
above ADJ
observation NOUN
is AUX
that SCONJ
it PRON
explicitly ADV
gives VERB
the DET
> X
impression NOUN
( PUNCT
and CCONJ
you PRON
may AUX
not PART
in ADP
fact NOUN
hold VERB
this DET
view NOUN
) PUNCT
that SCONJ
the DET
common ADJ
( PUNCT
perhaps ADV
> X
even ADV
the DET
" PUNCT
correct ADJ
" PUNCT
) PUNCT
approach NOUN
for ADP
a DET
scientist NOUN
to PART
follow VERB
is AUX
to PART
sit VERB
around ADP
> X
having VERB
flights NOUN
of ADP
fancy ADJ
and CCONJ
scheming VERB
on ADP
the DET
basis NOUN
of ADP
his PRON
jealousies NOUN
and CCONJ
> X
petty ADJ
hatreds NOUN
. PUNCT
Flights NOUN
of ADP
fancy ADJ
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucialthing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
useunless NOUN
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
I PRON
've AUX
known VERB
a DET
lot NOUN
of ADP
scientistswhose ADJ
fantasies NOUN
lead VERB
them PRON
on ADP
to ADP
creative ADJ
work NOUN
; PUNCT
usually ADV
they PRON
wo AUX
n't PART
admitout VERB
loud ADJ
what PRON
the DET
fantasy NOUN
was AUX
, PUNCT
prior ADV
to ADP
the DET
consumption NOUN
of ADP
a DET
few ADJ
beers.(Simple PROPN
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNAelectrophoresis ADJ
gel NOUN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
hoping VERB
thathe'd PROPN
seen VERB
some DET
essential ADJ
part NOUN
of ADP
the DET
control NOUN
mechanism NOUN
for ADP
eukaryoticgenes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
outbinding ADJ
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequencethat DET
occurs VERB
about ADV
500,000 NUM
times NOUN
in ADP
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
Unfortunately ADV
forWarren PROPN
's PART
fantasy NOUN
, PUNCT
it PRON
turns VERB
out ADP
to PART
be AUX
a DET
transposon NOUN
that PRON
is AUX
present ADJ
inso NOUN
many ADJ
copies NOUN
because SCONJ
it PRON
replicates VERB
itself PRON
and CCONJ
copies NOUN
itself PRON
back ADV
intothe PROPN
genome PROPN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
the DET
characteristics NOUN
of ADP
transposons NOUN
weremuch ADV
elucidated VERB
; PUNCT
the DET
necessity NOUN
of ADP
a DET
cellular ADJ
reverse NOUN
transcriptase NOUN
wasrecognized VERB
; PUNCT
and CCONJ
the DET
standard ADJ
method NOUN
of ADP
recognizing VERB
human ADJ
DNA PROPN
was AUX
created VERB
. PUNCT
Other ADJ
species NOUN
have AUX
different ADJ
sets NOUN
of ADP
transposons NOUN
. PUNCT
  SPACE
Fortunately ADV
for ADP
me PRON
, PUNCT
Warren PROPN
and CCONJ
I PRON
used VERB
to PART
eat VERB
dinner NOUN
at ADP
T.G.I. PROPN
Fridays VERB
all DET
the DET
time.)>It PROPN
further ADV
at ADP
least ADV
implicitly ADV
advances VERB
the DET
position NOUN
that SCONJ
> PRON
sciences PROPN
goes VERB
" PUNCT
forward ADV
" PUNCT
( PUNCT
and CCONJ
it PRON
is AUX
not PART
clear ADJ
what PRON
this DET
means VERB
given VERB
the DET
> X
context NOUN
in ADP
which PRON
it PRON
occurs VERB
) PUNCT
by ADP
generating VERB
in ADP
a DET
completely ADV
non ADJ
- ADJ
rational ADJ
> X
and CCONJ
even ADV
random ADJ
way NOUN
a DET
plethora NOUN
of ADP
hypotheses NOUN
and CCONJ
theories NOUN
that PRON
are AUX
then ADV
> X
weeded VERB
out ADP
via ADP
the DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
of ADP
science NOUN
. PUNCT
I'm PRON
not PART
sure ADJ
that SCONJ
it PRON
's AUX
random ADJ
. PUNCT
  SPACE
But CCONJ
there PRON
is AUX
no DET
known VERB
rational ADJ
mechanismfor NOUN
generating VERB
a DET
rich ADJ
set NOUN
of ADP
interesting ADJ
hypotheses NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
reallyworking VERB
in ADP
an DET
unknown ADJ
area NOUN
, PUNCT
it PRON
is AUX
unlikely ADJ
that SCONJ
you PRON
will AUX
have AUX
much ADJ
senseof ADJ
what PRON
might AUX
or CCONJ
might AUX
not PART
be AUX
true ADJ
; PUNCT
under ADP
those DET
circumstances NOUN
, PUNCT
the DET
bestthing NOUN
to PART
do AUX
is AUX
just ADV
follow VERB
whatever PRON
instincts NOUN
you PRON
have AUX
. PUNCT
  SPACE
If SCONJ
they PRON
are AUX
wrong ADJ
, PUNCT
you PRON
will AUX
find VERB
out ADP
soon ADV
enough ADV
; PUNCT
but CCONJ
at ADP
least ADJ
, PUNCT
you PRON
will AUX
find VERB
out ADP
_ PUNCT
something_.If NOUN
you PRON
try VERB
to PART
do AUX
experiments NOUN
at ADP
random ADJ
, PUNCT
with ADP
no DET
prior ADJ
conceptions NOUN
at ADP
allin PROPN
mind PROPN
, PUNCT
you PRON
will AUX
probably ADV
get AUX
nowhere.>(Though ADJ
why ADV
this DET
critical ADJ
> X
function NOUN
should AUX
be AUX
less ADV
subject ADJ
to ADP
the DET
non ADJ
- ADJ
rational ADJ
forces NOUN
is AUX
a DET
mystery NOUN
. PUNCT
Unfortunately ADV
, PUNCT
the DET
critical ADJ
function NOUN
does AUX
sometimes ADV
become VERB
hostage NOUN
tonon ADJ
- PUNCT
rational ADJ
forces NOUN
. PUNCT
  SPACE
Then ADV
we PRON
get VERB
varieties NOUN
of ADP
pathological ADJ
science NOUN
: PUNCT
Lysenko PROPN
, PUNCT
Mirsky PROPN
's PART
opposition NOUN
to ADP
DNA PROPN
- PUNCT
as SCONJ
- PUNCT
gene NOUN
, PUNCT
cold ADJ
fusion NOUN
, PUNCT
and CCONJ
so ADV
forth.>If ADJ
experimental ADJ
design NOUN
, PUNCT
hypotheses NOUN
creation NOUN
, PUNCT
and CCONJ
theory NOUN
construction NOUN
are AUX
> X
subject ADJ
to ADP
jealousies NOUN
and CCONJ
petty ADJ
hatreds NOUN
, PUNCT
then ADV
this DET
must AUX
be AUX
equally ADV
true ADJ
> X
of ADP
the DET
application NOUN
of ADP
any DET
" PUNCT
critical ADJ
function NOUN
" PUNCT
concerning VERB
replication.>This PROPN
is AUX
what PRON
leads VERB
one NUM
( PUNCT
ala PROPN
Feyerabend PROPN
) PUNCT
to ADP
an DET
" PUNCT
anything PRON
goes VERB
" PUNCT
view.)I PROPN
do AUX
n't PART
agree VERB
that SCONJ
this DET
follows VERB
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
this DET
is AUX
_ PROPN
exactly ADV
_ ADP
the DET
point NOUN
atwhich PUNCT
I PRON
disagree VERB
with ADP
Feyerabend PROPN
. PUNCT
  SPACE
It PRON
is AUX
a DET
most ADV
important ADJ
part NOUN
of ADP
theculture NOUN
of ADP
science NOUN
that PRON
one PRON
keeps VERB
one PRON
's PART
jealousies NOUN
out SCONJ
of ADP
the DET
refereeingprocess NOUN
. PUNCT
  SPACE
Failures NOUN
there PRON
are AUX
aplenty ADJ
, PUNCT
but CCONJ
, PUNCT
on ADP
the DET
whole NOUN
, PUNCT
things NOUN
work VERB
out ADP
. PUNCT
Another DET
point NOUN
: PUNCT
there PRON
are AUX
a DET
couple NOUN
of ADP
senses NOUN
of ADP
the DET
phrase NOUN
` PUNCT
` PUNCT
experimentaldesign NOUN
' PUNCT
' PUNCT
. PUNCT
  SPACE
I PRON
'd AUX
say VERB
that SCONJ
the DET
less ADV
rational ADJ
part NOUN
is AUX
in ADP
experimental ADJ
_ PROPN
choice_,not PROPN
design NOUN
. PUNCT
  SPACE
Alexander PROPN
Fleming PROPN
( PUNCT
Proc PROPN
. PUNCT
Royal PROPN
Soc PROPN
. PROPN
, PUNCT
1922 NUM
) PUNCT
chose VERB
to PART
look VERB
forbacteriophage NOUN
in ADP
his PRON
own ADJ
mucus NOUN
for ADP
strange ADJ
reasons NOUN
( PUNCT
Phage NOUN
had AUX
previouslybeen NOUN
found VERB
in ADP
locust NOUN
diarrhea NOUN
; PUNCT
Fleming VERB
probably ADV
thought VERB
runny ADJ
bottom NOUN
, PUNCT
runnynose PROPN
, PUNCT
what PRON
the DET
hell NOUN
, PUNCT
it PRON
's AUX
worth ADJ
a DET
try NOUN
. PUNCT
) PUNCT
but CCONJ
his PRON
method NOUN
of ADP
looking VERB
for ADP
phagewas PROPN
well ADV
- PUNCT
designed VERB
to PART
detect VERB
anything PRON
phage NOUN
- PUNCT
like INTJ
; PUNCT
in ADP
fact NOUN
, PUNCT
he PRON
found VERB
lysozyme.>True PROPN
, PUNCT
the DET
generation NOUN
part NOUN
* PUNCT
can AUX
* PUNCT
be AUX
totally ADV
irrational ADJ
. PUNCT
  SPACE
But CCONJ
typically ADV
it PRON
is>*not VERB
* PUNCT
. PUNCT
  SPACE
Anecdotes VERB
concerning VERB
instances NOUN
where ADV
a DET
hypothesis NOUN
seems VERB
to PART
have AUX
> X
resulted VERB
in ADP
some DET
way NOUN
from ADP
a DET
dream NOUN
or CCONJ
from ADP
one PRON
's PART
political ADJ
views NOUN
simply ADV
> X
do AUX
not PART
generalize VERB
well ADV
to ADP
the DET
actual ADJ
history NOUN
of ADP
science NOUN
. PUNCT
It PRON
is AUX
not PART
clear ADJ
to ADP
me PRON
what PRON
you PRON
mean VERB
by ADP
rational ADJ
vs. CCONJ
irrational ADJ
. PUNCT
  SPACE
Perhapsyou NOUN
can AUX
give VERB
a DET
few ADJ
examples NOUN
of ADP
surprising ADJ
experiments NOUN
that PRON
were AUX
tried VERB
outfor ADP
perfectly ADV
rational ADJ
reasons NOUN
, PUNCT
or CCONJ
interesting ADJ
new ADJ
theories NOUN
that PRON
were AUX
firstadvanced VERB
from ADP
logical ADJ
grounds NOUN
. PUNCT
  SPACE
The DET
main ADJ
examples NOUN
I PRON
can AUX
think VERB
of ADP
are AUX
frommodern ADJ
high ADJ
- PUNCT
energy NOUN
physics NOUN
which PRON
is AUX
not PART
typical ADJ
of ADP
science NOUN
as SCONJ
a DET
whole.-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58828From NUM
: PUNCT
cab@col.hp.com PROPN
( PUNCT
Chris PROPN
Best)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?Jason NOUN
Chen PROPN
writes VERB
: PUNCT
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one NUM
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But CCONJ
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it.----------Yeah PROPN
, PUNCT
it PRON
might AUX
, PUNCT
if SCONJ
you PRON
only ADV
read VERB
the DET
part NOUN
you PRON
quoted VERB
. PUNCT
  SPACE
You PRON
somehow ADV
left VERB
out ADP
the DET
part NOUN
about ADP
" PUNCT
we PRON
all DET
ate VERB
the DET
same ADJ
thing NOUN
. PUNCT
" PUNCT
  SPACE
Changes VERB
things NOUN
a DET
bit NOUN
, PUNCT
eh?You X
complain VERB
that SCONJ
people NOUN
blame VERB
MSG PROPN
automatically ADV
, PUNCT
since SCONJ
it PRON
's AUX
an DET
unknown NOUN
andtherefore ADV
must AUX
be AUX
the DET
cause NOUN
. PUNCT
  SPACE
It PRON
is AUX
equally ADV
( PUNCT
if SCONJ
not PART
more ADJ
) PUNCT
unreasonable ADJ
todefend NOUN
it PRON
, PUNCT
automatically ADV
assuming VERB
that SCONJ
it PRON
CAN'T ADV
be AUX
the DET
culprit NOUN
. PUNCT
Pepper PROPN
makes VERB
me PRON
sneeze VERB
. PUNCT
  SPACE
If SCONJ
it PRON
does AUX
n't PART
affect VERB
you PRON
the DET
same ADJ
way NOUN
, PUNCT
fine ADJ
. PUNCT
Just ADV
do AUX
n't PART
tell VERB
me PRON
I PRON
'm AUX
wrong ADJ
for ADP
saying VERB
so ADV
. PUNCT
These DET
people NOUN
are AUX
n't PART
condemning VERB
Chinese ADJ
food NOUN
, PUNCT
Mr. PROPN
Chen PROPN
- PUNCT
just ADV
one NUM
of ADP
its PRON
( PUNCT
optional ADJ
) PUNCT
ingredients NOUN
. PUNCT
  SPACE
Try VERB
not PART
to PART
take VERB
it PRON
so ADV
personally ADV
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58829From NUM
: PUNCT
francis@ircam.fr X
( PUNCT
Joseph PROPN
Francis)Subject NUM
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
wear VERB
contacts NOUN
after ADP
RK PROPN
/ SYM
PRK?In PROPN
article NOUN
< X
1993Apr16.063425.163999@zeus.calpoly.edu NUM
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>I NUM
love VERB
the DET
FAQ PROPN
. PUNCT
       SPACE
> X
> X
The DET
comment NOUN
about ADP
contact NOUN
lenses NOUN
not PART
being AUX
an DET
option NOUN
for ADP
any DET
remaining VERB
> X
correction NOUN
after ADP
RK PROPN
and CCONJ
possibly ADV
after ADP
PRK PROPN
is AUX
interresting VERB
. PUNCT
  SPACE
Why ADV
is AUX
> X
this DET
? PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
for ADP
sure ADJ
whether SCONJ
this DET
applies VERB
to ADP
PRK PROPN
as SCONJ
well?I've NOUN
had AUX
PRK.I PROPN
would AUX
suggest VERB
asking VERB
a DET
doctor NOUN
about ADP
contacts NOUN
. PUNCT
Mine PRON
said VERB
yes INTJ
tocontacts NOUN
. PUNCT
I PRON
think VERB
the DET
scars NOUN
from ADP
RK PROPN
would AUX
preclude VERB
contacts.>Also NOUN
, PUNCT
why ADV
is AUX
it PRON
possible ADJ
to PART
get AUX
a DET
correction NOUN
in ADP
PRK PROPN
with ADP
involvement NOUN
of ADP
> X
only ADV
about ADV
5 NUM
% NOUN
of ADP
the DET
corneal ADJ
depth NOUN
, PUNCT
while SCONJ
RK PROPN
is AUX
done VERB
to ADP
a DET
depth NOUN
of ADP
up ADJ
to>95 NUM
% NOUN
? PUNCT
  SPACE
Why ADV
such DET
a DET
difference NOUN
? PUNCT
  SPACE
I PRON
thought VERB
the DET
proceedures NOUN
were AUX
simmilar ADJ
> X
with ADP
the DET
exception NOUN
of ADP
a DET
laser NOUN
being AUX
the DET
cutting VERB
tool NOUN
in ADP
PRK PROPN
. PUNCT
  SPACE
I PRON
must AUX
not PART
> X
be AUX
understanding VERB
all DET
of ADP
the DET
differences NOUN
. PUNCT
No INTJ
. PUNCT
RK PROPN
makes VERB
radial ADJ
cuts NOUN
around ADP
the DET
circumference NOUN
of ADP
the DET
cornea NOUN
, PUNCT
up ADV
to8 DET
I PRON
think VERB
, PUNCT
and CCONJ
these DET
change VERB
the DET
curvature NOUN
of ADP
the DET
cornea NOUN
through ADP
stresschages NOUN
. PUNCT
PRK PROPN
vaporizes VERB
( PUNCT
burns NOUN
) PUNCT
away ADV
a DET
thin ADJ
layer NOUN
from ADP
the DET
front NOUN
of ADP
thecornea NOUN
making VERB
the DET
optical ADJ
axis NOUN
of ADP
the DET
eye NOUN
shorter ADJ
. PUNCT
The DET
laser NOUN
doesn'tcut VERB
in ADP
PRK PROPN
, PUNCT
it PRON
vaporizes VERB
. PUNCT
In ADP
RK PROPN
, PUNCT
the DET
eye NOUN
is AUX
cut VERB
into.>In PROPN
the DET
FAQ PROPN
, PUNCT
the DET
vision NOUN
was AUX
considered VERB
less ADV
clear ADJ
after ADP
the DET
surgery NOUN
than SCONJ
> X
with ADP
glasses NOUN
alone ADV
. PUNCT
  SPACE
If SCONJ
this DET
is AUX
completly ADV
attributable ADJ
to ADP
the DET
> X
intentional ADJ
slight ADJ
undercorrection NOUN
, PUNCT
then ADV
it PRON
can AUX
be AUX
compensated VERB
for ADP
when ADV
> X
necessary ADJ
with ADP
glasses NOUN
( PUNCT
or CCONJ
contacts NOUN
, PUNCT
if SCONJ
they PRON
CAN AUX
be AUX
worn VERB
afterall NOUN
! PUNCT
) PUNCT
. PUNCT
  SPACE
It PRON
> X
is AUX
important ADJ
to PART
know VERB
if SCONJ
that DET
is AUX
not PART
the DET
case NOUN
, PUNCT
however ADV
, PUNCT
and CCONJ
some DET
other ADJ
> X
consequence NOUN
of ADP
the DET
surgery NOUN
would AUX
often ADV
interfere VERB
with ADP
clear ADJ
vision NOUN
. PUNCT
  SPACE
The DET
> X
first ADJ
thing NOUN
that PRON
came VERB
to ADP
my PRON
mind NOUN
was AUX
a DET
fogging NOUN
of ADP
the DET
lense NOUN
, PUNCT
which PRON
> X
glasses NOUN
could AUX
n't PART
help VERB
. PUNCT
> X
> X
would AUX
not PART
help VERB
. PUNCT
I PRON
find VERB
my PRON
vision NOUN
is AUX
more ADV
clear ADJ
for ADP
some DET
things NOUN
, PUNCT
and CCONJ
less ADV
clear ADJ
forothers NOUN
, PUNCT
only ADV
at ADP
night NOUN
. PUNCT
I PRON
notice VERB
a DET
definite ADJ
haloing NOUN
at ADP
night NOUN
in ADP
thedarkness NOUN
when ADV
I PRON
look VERB
at ADP
automobile NOUN
headlamps NOUN
, PUNCT
though SCONJ
this DET
is AUX
notsomething VERB
I PRON
spend VERB
inordinate ADJ
amounts NOUN
of ADP
time NOUN
doing VERB
. PUNCT
For ADP
ordinarythings NOUN
, PUNCT
my PRON
vision NOUN
, PUNCT
in ADP
particular ADJ
having VERB
a DET
fully ADV
- PUNCT
operating VERB
peripheralvision NOUN
, PUNCT
is AUX
clearer ADJ
than SCONJ
with ADP
glasses NOUN
, PUNCT
or CCONJ
contacts.-- ADV
| PROPN
Le PROPN
Jojo PROPN
: PUNCT
Fresh PROPN
' CCONJ
n CCONJ
' PUNCT
Clean ADJ
, PUNCT
speaking VERB
out SCONJ
to ADP
the DET
way NOUN
you PRON
want VERB
to PART
live| VERB
today NOUN
; PUNCT
American PROPN
- PUNCT
All DET
American PROPN
; PUNCT
doing VERB
, PUNCT
a DET
bit NOUN
so ADV
, PUNCT
and CCONJ
even ADV
more ADV
so ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58830From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5JDuo.K13@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>Of ADV
course NOUN
we PRON
ca AUX
n't PART
hope VERB
( PUNCT
currently ADV
at ADP
least ADJ
) PUNCT
to PART
explain VERB
how ADV
or CCONJ
why ADV
> X
Kekule PROPN
had AUX
the DET
daydream NOUN
of ADP
snakes NOUN
in ADP
the DET
fire NOUN
biting VERB
their PRON
tails.>Surely ADV
it PRON
was AUX
n't PART
the DET
* PUNCT
only ADV
* PUNCT
daydream NOUN
he PRON
had AUX
. PUNCT
  SPACE
What PRON
was AUX
special ADJ
about>*this PROPN
* PUNCT
one NUM
? PUNCT
  SPACE
Could AUX
it PRON
have AUX
had VERB
something PRON
to PART
do AUX
with ADP
a DET
perceived>*analogy NOUN
* PUNCT
between ADP
the DET
geometry NOUN
of ADP
the DET
snakes NOUN
and CCONJ
problems NOUN
concerning VERB
> X
geometry NOUN
of ADP
molecules NOUN
? PUNCT
  SPACE
Is AUX
such ADJ
analogical ADJ
reasoning NOUN
" PUNCT
extra ADJ
- PUNCT
scientific"?>Or ADJ
is AUX
it PRON
rather ADV
at ADP
the DET
very ADJ
heart NOUN
of ADP
science NOUN
( PUNCT
Perice PROPN
's PART
notion NOUN
of ADP
abduction,>the DET
use NOUN
of ADP
models NOUN
within ADP
and CCONJ
across ADP
disciplines NOUN
) PUNCT
? PUNCT
  SPACE
Upon SCONJ
close ADJ
examination,>is ADV
there PRON
a DET
non ADJ
- ADJ
rational ADJ
mystical ADJ
leap NOUN
taking VERB
place NOUN
, PUNCT
or CCONJ
is AUX
it PRON
perhaps ADV
> X
closer ADV
to ADP
a DET
formal ADJ
( PUNCT
though SCONJ
often ADV
incomplete ADJ
) PUNCT
analogy NOUN
or CCONJ
model?I PROPN
feel VERB
the DET
need NOUN
to PART
repeat VERB
myself PRON
: PUNCT
Kekule PROPN
's PART
dream NOUN
is AUX
a DET
rather ADV
bad ADJ
exampleof NOUN
much ADJ
of ADP
anything PRON
. PUNCT
  SPACE
Read PROPN
Root PROPN
- PUNCT
Bernstein PROPN
's PART
book NOUN
on ADP
the DET
history NOUN
of ADP
thebenzene NOUN
ring.-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58831From NUM
: PUNCT
turner@reed.edu PART
( PUNCT
Havok PROPN
impersonated)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qlgdrINN79b@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>In PROPN
article NOUN
< X
1993Apr15.173902.66278@cc.usu.edu PROPN
> X
, PUNCT
slyx0@cc.usu.edu ADV
writes:>=Surprise PROPN
surprise VERB
, PUNCT
different ADJ
people NOUN
react VERB
differently ADV
to ADP
different ADJ
things NOUN
. PUNCT
One>=slightly ADV
off ADP
the DET
subject ADJ
case NOUN
in ADP
point NOUN
. PUNCT
My PRON
brother NOUN
got VERB
stung VERB
by ADP
a DET
bee NOUN
. PUNCT
I PRON
know>=he VERB
is AUX
allergic ADJ
to ADP
bee PROPN
stings NOUN
, PUNCT
but CCONJ
that SCONJ
his PRON
reaction NOUN
is AUX
severe ADJ
localized>=swelling NOUN
, PUNCT
not PART
anaphylactic ADJ
shock NOUN
. PUNCT
I PRON
could AUX
not PART
convince VERB
the DET
doctors NOUN
of ADP
that,>=however PROPN
, PUNCT
because SCONJ
that DET
's AUX
not PART
written VERB
in ADP
their PRON
little ADJ
rule NOUN
book.>Of PROPN
course NOUN
, PUNCT
bee PROPN
venom PROPN
is AUX
n't PART
a DET
single ADJ
chemical NOUN
. PUNCT
  SPACE
Could AUX
be AUX
your PRON
brother NOUN
is AUX
> X
reacting VERB
to ADP
a DET
different ADJ
component NOUN
than SCONJ
the DET
one NOUN
that PRON
causes VERB
anaphylactic ADJ
shock NOUN
> X
in ADP
other ADJ
people NOUN
. PUNCT
Hmmm INTJ
. PUNCT
  SPACE
The DET
last ADJ
time NOUN
I PRON
got VERB
stung VERB
by ADP
a DET
bee NOUN
I PRON
experienced VERB
the DET
same ADJ
reactionthe NOUN
first ADJ
poster NOUN
's PART
brother NOUN
did AUX
. PUNCT
  SPACE
We PRON
went VERB
off ADP
to ADP
the DET
doctor NOUN
to PART
see VERB
if SCONJ
Ishould PROPN
worry VERB
about ADP
the DET
fact NOUN
that SCONJ
my PRON
foot NOUN
was AUX
now ADV
about ADV
3 NUM
times NOUN
it PRON
's AUX
normalsize VERB
. PUNCT
  SPACE
( PUNCT
And CCONJ
itched VERB
! PUNCT
! PUNCT
! PUNCT
  SPACE
Ow INTJ
! PUNCT
) PUNCT
  SPACE
He PRON
basically ADV
said VERB
I PRON
should AUX
n't PART
this DET
time NOUN
, PUNCT
butthat PROPN
bee PROPN
sting VERB
allergy NOUN
was AUX
not PART
something PRON
you PRON
tended VERB
to PART
get AUX
aclimatized VERB
to ADP
, PUNCT
but CCONJ
were AUX
something PRON
that PRON
each DET
time NOUN
got VERB
progressively ADV
worse ADJ
generally ADV
and CCONJ
thatnext NOUN
time NOUN
could AUX
be AUX
the DET
time NOUN
I PRON
go VERB
into ADP
anaphylactic ADJ
shock NOUN
. PUNCT
  SPACE
Admittedly ADV
thiswas VERB
many ADJ
years NOUN
ago ADV
when ADV
I PRON
was AUX
young ADJ
. PUNCT
  SPACE
Since SCONJ
then ADV
I PRON
just ADV
make VERB
sure ADJ
I PRON
don'tget VERB
stung ADJ
. PUNCT
  SPACE
I PRON
also ADV
should AUX
carry VERB
a DET
bee PROPN
sting NOUN
kit NOUN
with ADP
me PRON
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
. PUNCT
  SPACE
This DET
is AUX
n't PART
scientific ADJ
or CCONJ
proof ADJ
, PUNCT
but CCONJ
this DET
would AUX
lead VERB
me PRON
to PART
believe VERB
it PRON
's AUX
not PART
adifferent ADJ
reaction NOUN
, PUNCT
just ADV
a DET
different ADJ
degree NOUN
of ADP
reaction NOUN
. PUNCT
  SPACE
Allergies NOUN
workthat DET
way NOUN
. PUNCT
  SPACE
People NOUN
have AUX
various ADJ
reactions NOUN
. PUNCT
  SPACE
Sort ADV
of ADV
like SCONJ
diabetes NOUN
, PUNCT
somepeople PROPN
can AUX
get AUX
by ADP
with ADP
just ADV
monitoring VERB
their PRON
diet NOUN
, PUNCT
others NOUN
have AUX
to PART
monitortheir VERB
diet NOUN
and CCONJ
use VERB
insulin NOUN
sometimes ADV
while SCONJ
others NOUN
have AUX
to PART
watch VERB
their PRON
dietlike NOUN
a DET
hawk NOUN
and CCONJ
use VERB
insulin NOUN
regularly ADV
. PUNCT
  SPACE
I PRON
think VERB
MSG PROPN
is AUX
probably ADV
similar ADJ
... PUNCT
some DET
people NOUN
have AUX
allergic ADJ
reactions NOUN
toit PROPN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
allergic ADJ
to ADP
fermented VERB
things NOUN
and CCONJ
ca AUX
n't PART
use VERB
soysauce NOUN
... PUNCT
but CCONJ
the DET
chinese PROPN
have AUX
been AUX
using VERB
it PRON
for ADP
centuries NOUN
... PUNCT
that DET
doesn'tnecessarily ADV
mean VERB
that SCONJ
it PRON
's AUX
safe ADJ
for ADP
everyone PRON
. PUNCT
 	 SPACE
Johannaturner@reed.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58832From NUM
: PUNCT
DEHP@calvin.edu PROPN
( PUNCT
Phil PROPN
de PROPN
Haan)Subject NOUN
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibioticsIn NOUN
article NOUN
< X
1qk708INNa12@mojo.eng.umd.edu NUM
> X
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark PROPN
) PUNCT
writes:>You PROPN
can AUX
also ADV
swab VERB
the DET
inside NOUN
of ADP
your PRON
nose NOUN
with ADP
Bacitracin PROPN
using VERB
a DET
> X
Q NOUN
tip NOUN
. PUNCT
Bacitracin PROPN
is AUX
an DET
antibiotic ADJ
that PRON
can AUX
be AUX
bought VERB
OTC PROPN
as SCONJ
an DET
> X
ointment NOUN
in ADP
a DET
tube NOUN
. PUNCT
The DET
doctor NOUN
I PRON
listen VERB
to ADP
on ADP
the DET
radio NOUN
says VERB
to PART
apply VERB
> X
it PRON
for ADP
30 NUM
days NOUN
, PUNCT
while SCONJ
you PRON
are AUX
taking VERB
other ADJ
antibiotics NOUN
by ADP
mouth NOUN
. PUNCT
I PRON
have AUX
a DET
new ADJ
doctor NOUN
who PRON
gave VERB
me PRON
a DET
prescription NOUN
today NOUN
for ADP
something PRON
called VERB
Septra PROPN
DS PROPN
. PUNCT
  SPACE
He PRON
said VERB
it PRON
may AUX
cause VERB
GI PROPN
problems NOUN
and CCONJ
I PRON
have AUX
a DET
sensitive ADJ
stomach NOUN
to PART
begin VERB
with ADP
. PUNCT
  SPACE
Anybody PRON
ever ADV
taken VERB
this DET
antibiotic ADJ
. PUNCT
  SPACE
Any DET
good ADJ
? PUNCT
  SPACE
Suggestions NOUN
for ADP
avoiding VERB
an DET
upset ADJ
stomach NOUN
? PUNCT
  SPACE
Other ADJ
tips NOUN
? PUNCT
       SPACE
Phil PROPN
de PROPN
Haan PROPN
( PUNCT
DoD NOUN
# NOUN
0578 NUM
) PUNCT
Why ADV
yes INTJ
. PUNCT
  SPACE
That DET
is AUX
my PRON
1974 NUM
Honda PROPN
CL360.============================================================================= PROPN
  SPACE
" PUNCT
That DET
's AUX
the DET
nature NOUN
of ADP
being AUX
an DET
executive NOUN
in ADP
America PROPN
. PUNCT
  SPACE
You PRON
have AUX
to PART
rely VERB
on ADP
    SPACE
other ADJ
people NOUN
to PART
do AUX
something PRON
you PRON
used VERB
to PART
do AUX
yourself PRON
. PUNCT
" PUNCT
-- PUNCT
Donald PROPN
Fehr PROPN
, PUNCT
        SPACE
executive ADJ
director NOUN
, PUNCT
Major PROPN
League PROPN
Baseball PROPN
Players PROPN
Association.=============================================================================Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58833From NUM
: PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick PROPN
) PUNCT
writes:>Of PROPN
course NOUN
, PUNCT
bee PROPN
venom PROPN
is AUX
n't PART
a DET
single ADJ
chemical NOUN
. PUNCT
  SPACE
Could AUX
be AUX
your PRON
brother NOUN
is AUX
> X
reacting VERB
to ADP
a DET
different ADJ
component NOUN
than SCONJ
the DET
one NOUN
that PRON
causes VERB
anaphylactic ADJ
shock NOUN
> X
in ADP
other ADJ
people.>Similarly PROPN
, PUNCT
Chinese ADJ
food NOUN
is AUX
n't PART
just ADV
MSG PROPN
. PUNCT
  SPACE
There PRON
are AUX
a DET
lot NOUN
of ADP
other ADJ
> NUM
ingredients NOUN
in ADP
it PRON
. PUNCT
  SPACE
Why ADV
, PUNCT
when ADV
someone PRON
eats VERB
something PRON
with ADP
lots NOUN
of ADP
> NOUN
ingredients NOUN
they PRON
do AUX
n't PART
normally ADV
consume VERB
, PUNCT
one NUM
of ADP
which PRON
happens VERB
to PART
be AUX
> X
MSG PROPN
, PUNCT
do AUX
they PRON
immediately ADV
conclude VERB
that SCONJ
any DET
negative ADJ
reaction NOUN
is AUX
to PART
> X
the DET
MSG PROPN
? PUNCT
ARGHHHHHHHHHhREAD VERB
THE DET
MEMOS!!!!I PROPN
said VERB
that SCONJ
I PRON
PERSONALLY PROPN
had AUX
other ADJ
people NOUN
order VERB
the DET
EXACT PROPN
SAME PROPN
FOOD PROPN
atTWO PRON
DIFFERENT ADJ
TIMES NOUN
from ADP
the DET
SAME PROPN
RESTAURANT PROPN
and CCONJ
the DET
people NOUN
thatordered VERB
the DET
food NOUN
for ADP
me PRON
did AUX
NOT ADV
TELL VERB
ME PROPN
which PRON
time NOUN
the DET
MSG PROPN
was AUX
in ADP
thefood NOUN
and CCONJ
which PRON
time NOUN
it PRON
was AUX
not PART
in ADP
the DET
food NOUN
. PUNCT
ONE NUM
TIME NOUN
I PRON
HAD VERB
A DET
REACTIONONE NOUN
TIME NOUN
I PRON
DID VERB
NOTTHE PROPN
REACTION NOUN
CAME VERB
THE DET
TIME NOUN
THE DET
MSG NOUN
WAS VERB
IN ADP
THE DET
FOODTHAT PROPN
WAS VERB
THE DET
ONLY ADJ
DIFFERENCESAME PROPN
RESTAURANT PROPN
- PUNCT
SAME PROPN
INGREDIENTS!!!>Why NUM
, PUNCT
when ADV
someone PRON
eats VERB
something PRON
with ADP
lots NOUN
of ADP
ingredients NOUN
they PRON
don't VERB
> X
normally ADV
consume VERB
, PUNCT
one NUM
of ADP
which PRON
happens VERB
to PART
be AUX
MSG PROPN
, PUNCT
do AUX
they PRON
immediately ADV
> X
conclude VERB
that SCONJ
any DET
negative ADJ
reaction NOUN
is AUX
to ADP
the DET
MSG PROPN
? PUNCT
I PRON
eat VERB
lots NOUN
of ADP
Chinese ADJ
food NOUN
- PUNCT
I PRON
LOVE VERB
Chinese ADJ
food NOUN
. PUNCT
  SPACE
I PRON
've AUX
just ADV
learnedthe ADJ
followingIF PROPN
I PRON
get VERB
food NOUN
at ADP
one NUM
of ADP
the DET
restaurants NOUN
that PRON
DOES VERB
NOT ADV
USE VERB
MSG NOUN
orIF NOUN
I PRON
prepare VERB
the DET
food NOUN
myself PRON
without ADP
MSG PROPN
or CCONJ
IF ADP
I PRON
order VERB
the DET
food NOUN
from ADP
a DET
restaurant NOUN
that PRON
will AUX
hold VERB
the DET
MSG NOUN
( PUNCT
and CCONJ
Inever PROPN
get AUX
soup NOUN
unless SCONJ
it PRON
's AUX
from ADP
a DET
restaurant NOUN
that PRON
cooks NOUN
without ADP
theMSG)I PUNCT
DO VERB
NOT ADV
GET VERB
A DET
REACTION!!!!OKAYDO NOUN
YOU PRON
UNDERSTAND!!!!I PROPN
GET VERB
A DET
REACTION NOUN
FROM ADP
MSGI PROPN
DO VERB
NOT ADV
GET VERB
A DET
REACTION NOUN
WHEN ADV
THERE PRON
IS VERB
NO DET
MSGIf NOUN
you PRON
're AUX
having VERB
trouble NOUN
understand VERB
this DET
, PUNCT
please INTJ
tell VERB
me PRON
which PRON
of ADP
thewords NOUN
you PRON
do AUX
not PART
understand VERB
and CCONJ
I PRON
'll AUX
look VERB
them PRON
up ADP
in ADP
the DET
dictionaryfor NOUN
you.--The ADJ
great ADJ
secret NOUN
of ADP
successful ADJ
marriage NOUN
is AUX
to PART
treat VERB
all DET
disastersas ADJ
incidents NOUN
and CCONJ
none NOUN
of ADP
the DET
incidents NOUN
as SCONJ
disasters NOUN
. PUNCT
      SPACE
-- PUNCT
Harold PROPN
Nicholson PROPN
    SPACE
Mary PROPN
Allison PROPN
( PUNCT
mary@uicsl.csl.uiuc.edu PROPN
) PUNCT
Urbana PROPN
, PUNCT
IllinoisNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58834From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qmlgaINNjab@hp-col.col.hp.com X
> X
, PUNCT
cab@col.hp.com PROPN
( PUNCT
Chris PROPN
Best PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Jason PROPN
Chen PROPN
writes:| PROPN
> X
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one| ADV
> X
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But| PROPN
> X
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it.| PROPN
> X
| ADP
> X
----------| NUM
> X
| X
> X
Yeah INTJ
, PUNCT
it PRON
might AUX
, PUNCT
if SCONJ
you PRON
only ADV
read VERB
the DET
part NOUN
you PRON
quoted VERB
. PUNCT
  SPACE
You PRON
somehow ADV
left VERB
| PROPN
> X
out SCONJ
the DET
part NOUN
about ADP
" PUNCT
we PRON
all DET
ate VERB
the DET
same ADJ
thing NOUN
. PUNCT
" PUNCT
  SPACE
Changes VERB
things NOUN
a DET
bit NOUN
, PUNCT
eh?Food NOUN
poisoning NOUN
is AUX
only ADV
one NUM
of ADP
the DET
many ADJ
possible ADJ
causes NOUN
. PUNCT
Yes INTJ
, PUNCT
even ADV
other ADJ
peopleshare VERB
the DET
food NOUN
. PUNCT
| ADP
> X
| INTJ
> X
You PRON
complain VERB
that SCONJ
people NOUN
blame VERB
MSG PROPN
automatically ADV
, PUNCT
since SCONJ
it PRON
's AUX
an DET
unknown ADJ
and| PROPN
> X
therefore ADV
must AUX
be AUX
the DET
cause NOUN
. PUNCT
  SPACE
It PRON
is AUX
equally ADV
( PUNCT
if SCONJ
not PART
more ADJ
) PUNCT
unreasonable ADJ
to| X
> X
defend VERB
it PRON
, PUNCT
automatically ADV
assuming VERB
that SCONJ
it PRON
CAN'T ADV
be AUX
the DET
culprit NOUN
. PUNCT
Boy INTJ
, PUNCT
you PRON
computer NOUN
people NOUN
only ADV
know VERB
1s NOUN
and CCONJ
0s INTJ
, PUNCT
but CCONJ
not PART
much ADJ
about ADP
logic NOUN
. PUNCT
: PUNCT
-)No PROPN
. PUNCT
I PRON
did AUX
not PART
said VERB
MSG PROPN
was AUX
not PART
the DET
culprit NOUN
. PUNCT
What PRON
I PRON
argued VERB
was AUX
that SCONJ
thatthere NOUN
was AUX
enough ADJ
reasonable ADJ
doubt NOUN
to PART
convict VERB
MSG PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
convict VERB
MSG NOUN
, PUNCT
show VERB
me PRON
the DET
evidence NOUN
, PUNCT
not PART
quilty NOUN
by ADP
suspicion.| PROPN
> X
Pepper PROPN
makes VERB
me PRON
sneeze VERB
. PUNCT
  SPACE
If SCONJ
it PRON
does AUX
n't PART
affect VERB
you PRON
the DET
same ADJ
way NOUN
, PUNCT
fine.| PROPN
> X
Just ADV
do AUX
n't PART
tell VERB
me PRON
I PRON
'm AUX
wrong ADJ
for ADP
saying VERB
so ADV
. PUNCT
Nobody PRON
is AUX
forcing VERB
you PRON
to PART
change VERB
what PRON
you PRON
believe VERB
. PUNCT
  SPACE
But CCONJ
I PRON
certainly ADV
don'twant VERB
to PART
see VERB
somebody PRON
preach VERB
to PART
ban VERB
pepper NOUN
because SCONJ
that DET
makes VERB
him PRON
/ SYM
hersneeze PROPN
. PUNCT
That DET
is AUX
exactly ADV
what PRON
some DET
anti ADJ
- ADJ
MSG ADJ
activitiests NOUN
are AUX
doing| NOUN
> X
These DET
people NOUN
are AUX
n't PART
condemning VERB
Chinese ADJ
food NOUN
, PUNCT
Mr. PROPN
Chen PROPN
- PUNCT
just ADV
one NUM
of ADP
its PRON
| PROPN
> X
( PUNCT
optional ADJ
) PUNCT
ingredients NOUN
. PUNCT
  SPACE
Try VERB
not PART
to PART
take VERB
it PRON
so ADV
personally ADV
. PUNCT
Look VERB
, PUNCT
people NOUN
with ADP
a DET
last ADJ
Chen PROPN
do AUX
n't PART
necessarily ADV
own VERB
a DET
Chinese ADJ
restaurant NOUN
. PUNCT
I PRON
am AUX
not PART
interested ADJ
if SCONJ
you PRON
enjoy VERB
Chinese ADJ
food NOUN
or CCONJ
not PART
. PUNCT
Exploiting VERB
my PRON
lastname NOUN
to PART
discredit VERB
me PRON
on ADP
the DET
issue NOUN
is AUX
hitting VERB
below ADP
the DET
belt NOUN
. PUNCT
What PRON
I PRON
am AUX
interested ADJ
in ADP
is AUX
the DET
truth NOUN
. PUNCT
Let VERB
me PRON
give VERB
you PRON
an DET
excert ADJ
froma NOUN
recent ADJ
FDA PROPN
hearing NOUN
: PUNCT
           SPACE
` PUNCT
` PUNCT
There PRON
is AUX
no DET
evidence NOUN
orally ADV
consumed VERB
glutamate NOUN
has AUX
any DET
effecton PROPN
the DET
brain NOUN
, PUNCT
' PUNCT
' PUNCT
said VERB
Dr. PROPN
Richard PROPN
Wurtman PROPN
of ADP
Massachusetts PROPN
Instituteof PROPN
Technology PROPN
. PUNCT
The DET
anecdotal ADJ
experiences NOUN
of ADP
individuals NOUN
is``superstition NUM
, PUNCT
not PART
science NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
` PUNCT
` PUNCT
I PRON
do AUX
n't PART
think VERB
glutamatehas PROPN
made VERB
them PRON
sick ADJ
. PUNCT
''And VERB
Dr. PROPN
Robert PROPN
Kenney PROPN
of ADP
George PROPN
Washington PROPN
University PROPN
conducted VERB
an DET
doubleblind NOUN
test NOUN
in ADP
1980 NUM
showing VERB
that SCONJ
the DET
35 NUM
people NOUN
who PRON
reacted VERB
to ADP
MSG PROPN
alsohad NOUN
similar ADJ
reaction NOUN
when ADV
they PRON
thought VERB
they PRON
had AUX
MSG PROPN
but CCONJ
actually ADV
not PART
. PUNCT
Although SCONJ
there PRON
are AUX
many ADJ
contradicting VERB
personal ADJ
stories NOUN
told VERB
in ADP
this DET
group NOUN
, PUNCT
some DET
of ADP
them PRON
might AUX
have AUX
been AUX
due ADJ
to ADP
other ADJ
causes NOUN
. PUNCT
But CCONJ
because SCONJ
the DET
anti ADJ
MSGemotion NOUN
runs VERB
so ADV
high ADJ
, PUNCT
that SCONJ
some DET
blame VERB
it PRON
for ADP
anything PRON
and CCONJ
everything PRON
. PUNCT
My PRON
purpose NOUN
is AUX
to PART
present VERB
a DET
balance NOUN
view NOUN
on ADP
the DET
issue NOUN
, PUNCT
although SCONJ
I PRON
am AUX
probably20 NOUN
- PUNCT
1 NUM
outnumbered VERB
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58835From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Ca AUX
n't PART
wear VERB
contacts NOUN
after ADP
RK PROPN
/ SYM
PRK?In PROPN
article NOUN
< X
1993Apr16.063425.163999@zeus.calpoly.edu NUM
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>I NUM
love VERB
the DET
FAQ PROPN
. PUNCT
       SPACE
> X
> X
The DET
comment NOUN
about ADP
contact NOUN
lenses NOUN
not PART
being AUX
an DET
option NOUN
for ADP
any DET
remaining VERB
> X
correction NOUN
after ADP
RK PROPN
and CCONJ
possibly ADV
after ADP
PRK PROPN
is AUX
interresting VERB
. PUNCT
  SPACE
Why ADV
is AUX
> X
this DET
? PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
for ADP
sure ADJ
whether SCONJ
this DET
applies VERB
to ADP
PRK PROPN
as SCONJ
well?>>Also PROPN
, PUNCT
why ADV
is AUX
it PRON
possible ADJ
to PART
get AUX
a DET
correction NOUN
in ADP
PRK PROPN
with ADP
involvement NOUN
of ADP
> X
only ADV
about ADV
5 NUM
% NOUN
of ADP
the DET
corneal ADJ
depth NOUN
, PUNCT
while SCONJ
RK PROPN
is AUX
done VERB
to ADP
a DET
depth NOUN
of ADP
up ADJ
to>95 NUM
% NOUN
? PUNCT
  SPACE
Why ADV
such DET
a DET
difference?In PROPN
myopia NOUN
the DET
cornea NOUN
is AUX
too ADV
curved ADJ
. PUNCT
  SPACE
There PRON
is AUX
too ADV
much ADJ
of ADP
a DET
bulge NOUN
in ADP
thecenter NOUN
. PUNCT
In ADP
PRK PROPN
the DET
laser NOUN
removes VERB
a DET
small ADJ
amount NOUN
of ADP
material NOUN
from ADP
the DET
center NOUN
. PUNCT
In ADP
RK PROPN
the DET
surgeon NOUN
cuts VERB
incisions NOUN
near SCONJ
the DET
edge NOUN
. PUNCT
  SPACE
They PRON
heal VERB
, PUNCT
and CCONJ
the DET
scarringreshapes NOUN
the DET
cornea NOUN
. PUNCT
Entirely ADV
different ADJ
mechanisms NOUN
, PUNCT
and CCONJ
the DET
action NOUN
is AUX
in ADP
a DET
different ADJ
place.-dkNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58836From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qmlgaINNjab@hp-col.col.hp.com X
> X
, PUNCT
cab@col.hp.com PROPN
( PUNCT
Chris PROPN
Best ADV
) PUNCT
writes:==Jason PROPN
Chen PROPN
writes:= PROPN
> X
Now ADV
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one= ADP
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
food NOUN
poisoning NOUN
. PUNCT
But= INTJ
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it.==----------==Yeah PUNCT
, PUNCT
it PRON
might AUX
, PUNCT
if SCONJ
you PRON
only ADV
read VERB
the DET
part NOUN
you PRON
quoted VERB
. PUNCT
  SPACE
You PRON
somehow ADV
left VERB
= NOUN
out SCONJ
the DET
part NOUN
about ADP
" PUNCT
we PRON
all DET
ate VERB
the DET
same ADJ
thing NOUN
. PUNCT
" PUNCT
  SPACE
Changes VERB
things NOUN
a DET
bit NOUN
, PUNCT
eh?Perhaps NOUN
. PUNCT
  SPACE
Now ADV
, PUNCT
just ADV
what PRON
leads VERB
you PRON
to PART
believe VERB
that SCONJ
it PRON
was AUX
MSG PROPN
and CCONJ
not PART
someother PROPN
ingredient NOUN
in ADP
the DET
food NOUN
that PRON
made VERB
you PRON
ill?=These ADJ
people NOUN
are AUX
n't PART
condemning VERB
Chinese ADJ
food NOUN
, PUNCT
Mr. PROPN
Chen PROPN
- PUNCT
just ADV
one NUM
of ADP
its PRON
= SYM
( PUNCT
optional ADJ
) PUNCT
ingredients NOUN
. PUNCT
  SPACE
Try VERB
not PART
to PART
take VERB
it PRON
so ADV
personally ADV
. PUNCT
And CCONJ
you PRON
're AUX
condemning VERB
one NUM
particular ADJ
ingredient NOUN
without ADP
any DET
evidence NOUN
thatthat PRON
's AUX
the DET
ingredient NOUN
to PART
which PRON
you PRON
reacted.--------------------------------------------------------------------------------Carl ADJ
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58837Subject NUM
: PUNCT
prozacFrom ADP
: PUNCT
agilmet@eis.calstate.edu PROPN
( PUNCT
Adriana PROPN
Gilmete)Can VERB
anyone PRON
help VERB
me PRON
find VERB
any DET
information NOUN
on ADP
the DET
drug NOUN
Prozac PROPN
? PUNCT
  SPACE
I PRON
am AUX
writinga ADJ
report NOUN
on ADP
the DET
inventors NOUN
, PUNCT
Eli PROPN
Lilly PROPN
and CCONJ
Co. PROPN
, PUNCT
and CCONJ
the DET
product NOUN
. PUNCT
  SPACE
I PRON
need VERB
asmuch ADJ
help NOUN
as SCONJ
I PRON
can AUX
get AUX
. PUNCT
   SPACE
Thanks INTJ
a DET
lot NOUN
, PUNCT
Adriana PROPN
Gilmete PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58838From NUM
: PUNCT
libman@hsc.usc.edu PROPN
( PUNCT
Marlena PROPN
Libman)Subject NOUN
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemI PROPN
need VERB
advice NOUN
with ADP
a DET
situation NOUN
which PRON
occurred VERB
between ADP
me PRON
and CCONJ
a DET
physicanwhich PROPN
upset VERB
me PRON
. PUNCT
  SPACE
I PRON
saw VERB
this DET
doctor NOUN
for ADP
a DET
problem NOUN
with ADP
recurring VERB
pain NOUN
. PUNCT
He PRON
suggested VERB
medication NOUN
and CCONJ
a DET
course NOUN
of ADP
treatment NOUN
, PUNCT
and CCONJ
told VERB
me PRON
that SCONJ
Ineed PROPN
to PART
call VERB
him PRON
7 NUM
days NOUN
after ADP
I PRON
begin VERB
the DET
medication NOUN
so SCONJ
that SCONJ
he PRON
maymonitor VERB
its PRON
effectiveness NOUN
, PUNCT
as ADV
well ADV
as SCONJ
my PRON
general ADJ
health NOUN
. PUNCT
I PRON
did AUX
exactly ADV
as SCONJ
he PRON
asked VERB
, PUNCT
and CCONJ
made VERB
the DET
call NOUN
( PUNCT
reaching VERB
his PRON
secretary).I NOUN
explained VERB
to ADP
her PRON
that SCONJ
I PRON
was AUX
following VERB
up ADP
at ADP
the DET
doctor NOUN
's PART
request NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
was AUX
worried ADJ
because SCONJ
the DET
pain NOUN
episodes NOUN
were AUX
becoming VERB
morefrequent NOUN
and CCONJ
the DET
medication NOUN
did AUX
not PART
seem VERB
effective ADJ
. PUNCT
The DET
doctor NOUN
called VERB
me PRON
back ADP
, PUNCT
and CCONJ
his PRON
first ADJ
words NOUN
were AUX
, PUNCT
" PUNCT
Whatever PRON
you PRON
want VERB
, PUNCT
you'd NOUN
better ADV
make VERB
it PRON
quick ADJ
. PUNCT
  SPACE
I PRON
'm AUX
very ADV
busy ADJ
and CCONJ
do AUX
n't PART
have AUX
time NOUN
to PART
chit VERB
- PUNCT
chat NOUN
with ADP
you PRON
! PUNCT
" PUNCT
  SPACE
I PRON
told VERB
him PRON
I PRON
was AUX
simply ADV
following VERB
his PRON
instructions NOUN
tocall NOUN
on ADP
the DET
7th ADJ
day NOUN
to PART
status VERB
him PRON
, PUNCT
and CCONJ
that SCONJ
I PRON
was AUX
feeling VERB
worse ADJ
. PUNCT
  SPACE
I PRON
then ADV
asked VERB
if SCONJ
perhaps ADV
there PRON
was AUX
a DET
better ADJ
time NOUN
for ADP
us PRON
to PART
talk VERB
when ADV
hehad VERB
more ADJ
time NOUN
. PUNCT
  SPACE
He PRON
responded VERB
, PUNCT
" PUNCT
Just ADV
spit VERB
it PRON
out ADP
now ADV
because SCONJ
no DET
time NOUN
isa PROPN
good ADJ
time NOUN
. PUNCT
" PUNCT
  SPACE
( PUNCT
Said VERB
in ADP
a DET
raised VERB
voice NOUN
. PUNCT
) PUNCT
  SPACE
I PRON
started VERB
to PART
feel VERB
upset ADJ
andtried VERB
to PART
explain VERB
quickly ADV
what PRON
was AUX
going VERB
on ADP
with ADP
my PRON
condition NOUN
but CCONJ
mynervousness NOUN
interfered VERB
with ADP
my PRON
choice NOUN
of ADP
words NOUN
and CCONJ
I PRON
kind ADV
of ADV
stutteredand NOUN
then ADV
said VERB
" PUNCT
well INTJ
, PUNCT
never ADV
mind VERB
" PUNCT
and CCONJ
he PRON
said VERB
he PRON
'll AUX
talk VERB
to ADP
variouscolleagues NOUN
about ADP
other ADJ
medications NOUN
and CCONJ
he PRON
'll AUX
call VERB
me PRON
some DET
other ADJ
time NOUN
. PUNCT
This DET
doctor NOUN
called VERB
me PRON
that DET
evening NOUN
and CCONJ
said VERB
because SCONJ
I PRON
did AUX
n't PART
expressmyself PRON
well ADV
, PUNCT
he PRON
was AUX
confused ADJ
about ADP
what PRON
I PRON
wanted VERB
. PUNCT
  SPACE
At ADP
this DET
point NOUN
Iwas PROPN
pretty ADV
upset ADJ
and CCONJ
I PRON
told VERB
him PRON
( PUNCT
in ADP
an DET
amazingly ADV
polite ADJ
voice NOUN
consideringhow NOUN
angry ADJ
I PRON
felt VERB
) PUNCT
that SCONJ
his PRON
earlier ADJ
manner NOUN
had AUX
hurt VERB
my PRON
feelings NOUN
. PUNCT
  SPACE
He PRON
toldme VERB
that SCONJ
he PRON
just ADV
does AUX
n't PART
have AUX
time NOUN
to PART
" PUNCT
rap VERB
with ADP
patients NOUN
" PUNCT
and CCONJ
thoughtthat DET
was AUX
what PRON
I PRON
wanted VERB
. PUNCT
  SPACE
I PRON
told VERB
him PRON
that SCONJ
to PART
assume VERB
I PRON
was AUX
calling VERB
to"rap PROPN
" PUNCT
was AUX
insulting VERB
, PUNCT
and CCONJ
said VERB
again ADV
that SCONJ
I PRON
was AUX
just ADV
following VERB
throughon PROPN
his PRON
orders NOUN
. PUNCT
  SPACE
He PRON
responded VERB
that SCONJ
he PRON
resented VERB
the DET
implication NOUN
that SCONJ
he PRON
felt VERB
I PRON
was AUX
making VERB
that SCONJ
he PRON
was AUX
not PART
interested ADJ
in ADP
learning VERB
about ADP
what PRON
hispatients NOUN
have AUX
to PART
say VERB
about ADP
their PRON
condition NOUN
status NOUN
. PUNCT
  SPACE
He PRON
then ADV
gave VERB
methis ADJ
apology NOUN
: PUNCT
" PUNCT
I PRON
am AUX
sorry ADJ
that SCONJ
there PRON
was AUX
a DET
miscommunication NOUN
and CCONJ
youmistakenly ADV
thought VERB
I PRON
was AUX
insulting VERB
. PUNCT
  SPACE
I PRON
am AUX
not PART
trying VERB
to PART
insult VERB
youbut NOUN
I PRON
am AUX
not PART
that ADV
knowledgeable ADJ
about ADP
pain NOUN
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
have AUX
a DET
lot NOUN
oftime NOUN
to PART
deal VERB
with ADP
that DET
. PUNCT
" PUNCT
  SPACE
He PRON
then ADV
told VERB
me PRON
to PART
call VERB
him PRON
the DET
next ADJ
dayfor NOUN
further ADJ
instructions NOUN
on ADP
how ADV
do AUX
deal VERB
with ADP
my PRON
pain NOUN
and CCONJ
medication NOUN
. PUNCT
I PRON
am AUX
still ADV
upset ADJ
and CCONJ
have AUX
not PART
yet ADV
called VERB
. PUNCT
My PRON
questions NOUN
: PUNCT
( PUNCT
1 X
) PUNCT
Should AUX
I PRON
continue VERB
to PART
have AUX
this DET
doctor NOUN
manage VERB
my PRON
care?(2 NOUN
) PUNCT
Since SCONJ
I PRON
am AUX
in ADP
pain NOUN
off ADV
and CCONJ
on ADV
, PUNCT
I PRON
realize VERB
that SCONJ
this DET
may AUX
cause VERB
me PRON
tobe VERB
more ADV
anxietous ADJ
so CCONJ
am AUX
I PRON
perhaps ADV
over ADV
- PUNCT
reacting VERB
or CCONJ
overly ADV
sensitive?If PROPN
this DET
doctor NOUN
refers VERB
me PRON
to ADP
his PRON
colleague NOUN
who PRON
knows VERB
more ADJ
about ADP
the DET
typeof NOUN
pain NOUN
I PRON
have AUX
, PUNCT
he PRON
still ADV
wants VERB
me PRON
to PART
status VERB
him PRON
on ADP
my PRON
condition NOUN
butnow ADV
I PRON
am AUX
afraid ADJ
to PART
call VERB
him PRON
. PUNCT
			 SPACE
--MarlenaNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58839From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
sore ADJ
throatIn NOUN
article NOUN
< X
47835@sdcc12.ucsd.edu NUM
> X
wsun@jeeves.ucsd.edu PROPN
( PUNCT
Fiberman PROPN
) PUNCT
writes:>I PRON
have AUX
had VERB
a DET
sore ADJ
throat NOUN
for ADP
almost ADV
a DET
week NOUN
. PUNCT
  SPACE
When ADV
I PRON
look VERB
into ADP
> X
the DET
mirror NOUN
with ADP
the DET
aid NOUN
of ADP
a DET
flash NOUN
light NOUN
, PUNCT
I PRON
see VERB
white ADJ
plaques NOUN
in ADP
> X
the DET
very ADJ
back NOUN
of ADP
my PRON
throat NOUN
( PUNCT
on ADP
the DET
sides NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
went VERB
to ADP
a DET
health NOUN
> X
center NOUN
to PART
have AUX
a DET
throat NOUN
culture NOUN
taken VERB
. PUNCT
  SPACE
They PRON
said VERB
that SCONJ
I PRON
do AUX
not PART
> X
have AUX
strep NOUN
throat NOUN
. PUNCT
  SPACE
Could AUX
a DET
viral ADJ
infection NOUN
cause SCONJ
white ADJ
plaques NOUN
> X
on ADP
the DET
sides NOUN
of ADP
my PRON
throat?First NOUN
, PUNCT
I PRON
am AUX
not PART
a DET
doctor NOUN
. PUNCT
  SPACE
I PRON
know VERB
about ADP
this DET
because SCONJ
I PRON
have AUX
beenthrough ADP
it PRON
. PUNCT
It PRON
sounds VERB
like SCONJ
tonsilitis NOUN
( PUNCT
lit PROPN
. PROPN
swollen PROPN
tonsils NOUN
) PUNCT
. PUNCT
  SPACE
Feel VERB
under ADP
your PRON
jawhinge NOUN
for ADP
a DET
swelling NOUN
on ADP
each DET
side NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
find VERB
them PRON
, PUNCT
its PRON
tonsilitis NOUN
. PUNCT
I've PROPN
had AUX
this DET
a DET
couple NOUN
of ADP
times NOUN
in ADP
the DET
past NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
prescribed VERB
aweeks PROPN
course NOUN
of ADP
penicillin NOUN
and CCONJ
that PRON
cleared VERB
it PRON
up ADP
. PUNCT
In ADP
my PRON
case NOUN
it PRON
was AUX
associated VERB
with ADP
glandular ADJ
fever NOUN
, PUNCT
which PRON
is AUX
a DET
viralinfection NOUN
which PRON
( PUNCT
from ADP
my PRON
point NOUN
of ADP
view NOUN
) PUNCT
resembled VERB
flu PROPN
and CCONJ
tonsilitisthat PRON
kept VERB
coming VERB
back ADV
for ADP
a DET
year NOUN
or CCONJ
so ADV
. PUNCT
  SPACE
There PRON
is AUX
a DET
blood NOUN
test NOUN
forthis NOUN
. PUNCT
In ADP
conclusion NOUN
, PUNCT
see VERB
a DET
doctor NOUN
( PUNCT
if SCONJ
you PRON
have AUX
not PART
done VERB
so ADV
already).Paul.-- ADP
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58840From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
centrifugeIn PROPN
article NOUN
< X
C5JsM5.Hrs@lznj.lincroftnj.ncr.com PROPN
> X
rjf@lzsc.lincroftnj.ncr.com PROPN
( PUNCT
51351[efw]-Robert NUM
Feddeler(MT4799)T343 PROPN
) PUNCT
writes VERB
: PUNCT
> X
: PUNCT
Could AUX
somebody PRON
explain VERB
to ADP
me PRON
what PRON
a DET
centrifuge NOUN
is AUX
and CCONJ
what PRON
it PRON
is AUX
> X
: PUNCT
used VERB
for ADP
? PUNCT
I PRON
vaguely ADV
remembre VERB
it PRON
being AUX
something PRON
that PRON
spins VERB
test VERB
tubes NOUN
> X
: PUNCT
around ADP
really ADV
fast ADV
but CCONJ
I PRON
ca AUX
nt PART
remember VERB
why ADV
you PRON
d AUX
want VERB
to PART
do AUX
that?>Purely ADV
recreational ADJ
. PUNCT
  SPACE
They PRON
get VERB
bored ADJ
sitting NOUN
in ADP
that DET
> X
rack VERB
all DET
the DET
time NOUN
. PUNCT
No INTJ
, PUNCT
this DET
is AUX
wrong ADJ
. PUNCT
  SPACE
The DET
purpose NOUN
is AUX
to PART
preserve VERB
the DET
substances NOUN
inthe ADP
tubes NOUN
longer ADV
by ADP
creating VERB
relativistic ADJ
speeds NOUN
and CCONJ
thustime NOUN
dilatation NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
by ADP
slowing VERB
the DET
subjective ADJ
time NOUN
ofthe NOUN
test NOUN
tubes NOUN
they PRON
get VERB
less ADV
bored ADJ
, PUNCT
which PRON
is AUX
probably ADV
what PRON
youwere ADV
thinking VERB
of.-- INTJ
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58841From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemSounds NOUN
as SCONJ
though SCONJ
his PRON
heart NOUN
's PART
in ADP
the DET
right ADJ
place NOUN
, PUNCT
but CCONJ
he PRON
is AUX
not PART
adept ADJ
atexpressing VERB
it PRON
. PUNCT
  SPACE
What PRON
you PRON
received VERB
was AUX
_ PROPN
meant VERB
_ PROPN
to PART
be AUX
a DET
profound ADJ
apology NOUN
. PUNCT
Apologies NOUN
delivered VERB
by ADP
overworked ADJ
shy ADJ
people NOUN
often ADV
come VERB
out ADP
like SCONJ
that DET
... PUNCT
-- PUNCT
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58842From NUM
: PUNCT
jimj@contractor NOUN
. PUNCT
EBay PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Jim PROPN
Jones)Subject PROPN
: PUNCT
Post ADJ
- ADJ
fever ADJ
rashes NOUN
: PUNCT
  SPACE
I PRON
get VERB
'em PRON
every DET
timeThe PROPN
subject NOUN
- PUNCT
line NOUN
says VERB
it PRON
: PUNCT
  SPACE
every DET
time NOUN
I PRON
run VERB
a DET
fever NOUN
, PUNCT
I PRON
get VERB
an DET
amazingrosy ADJ
rash NOUN
over ADP
my PRON
torso NOUN
and CCONJ
arms NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
it PRON
does AUX
n't PART
itch VERB
. PUNCT
The DET
rash NOUN
  SPACE
always ADV
comes VERB
on ADP
the DET
day NOUN
after ADP
thefever NOUN
breaks NOUN
and CCONJ
no ADV
matter ADV
what PRON
the DET
illness NOUN
was AUX
: PUNCT
  SPACE
cold PROPN
, PUNCT
flu NOUN
, PUNCT
whatever PRON
. PUNCT
It PRON
started VERB
happening VERB
about ADP
four NUM
years NOUN
ago ADV
after ADP
I PRON
moved VERB
to ADP
my PRON
currenttown NOUN
, PUNCT
although SCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
that DET
has AUX
anything PRON
to PART
do AUX
with ADP
anything PRON
. PUNCT
Severity NOUN
and CCONJ
persistance NOUN
of ADP
the DET
rash NOUN
seems VERB
to PART
vary VERB
with ADP
the DET
fever NOUN
: PUNCT
a DET
severe ADJ
or CCONJ
long ADV
- PUNCT
lasting VERB
fever NOUN
brings VERB
a DET
long ADV
- PUNCT
lasting VERB
rash NOUN
. PUNCT
  SPACE
A DET
mild ADJ
feverseems NOUN
to PART
bring VERB
rashes NOUN
that PRON
go VERB
away ADV
faster ADV
. PUNCT
  SPACE
Anybody PRON
know VERB
what PRON
might AUX
be AUX
causing VERB
this DET
? PUNCT
  SPACE
It PRON
's AUX
no DET
more ADJ
than SCONJ
an DET
embarassment NOUN
, PUNCT
but CCONJ
I PRON
'd AUX
be AUX
curious ADJ
to PART
know VERB
what PRON
's AUX
going VERB
on ADP
. PUNCT
  SPACE
Am AUX
I PRON
carryingsome ADJ
kind ADV
of ADP
fever NOUN
- PUNCT
resistant ADJ
bug NOUN
that PRON
goes VERB
wild ADJ
when ADV
fever NOUN
knocks VERB
outits VERB
competition?Jim PROPN
JonesNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58843From NUM
: PUNCT
pan@panda PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Doug PROPN
Pan)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qkdpk$5k6@agate.berkeley.edu NUM
> X
mossman@cea NUM
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
( PUNCT
Amy PROPN
Mossman PROPN
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
I PRON
had AUX
a DET
similar ADJ
reaction NOUN
to ADP
Chinese ADJ
food NOUN
but CCONJ
came VERB
to ADP
a DET
completly ADV
different ADJ
> X
   SPACE
conclusion NOUN
. PUNCT
I PRON
've AUX
eaten VERB
Chinese ADJ
food NOUN
for ADP
ages NOUN
and CCONJ
never ADV
had AUX
problems NOUN
. PUNCT
I PRON
went VERB
> X
   SPACE
with ADP
some DET
Chinese ADJ
Malaysian ADJ
friends NOUN
to ADP
a DET
swanky ADJ
Chinses PROPN
rest NOUN
. PUNCT
and CCONJ
they PRON
ordered VERB
> X
   SPACE
lots NOUN
of ADP
stuff NOUN
I PRON
had AUX
never ADV
seen VERB
before ADV
. PUNCT
The DET
only ADJ
thing NOUN
I PRON
can AUX
remember VERB
of ADP
that DET
> X
   SPACE
meal PROPN
was AUX
the DET
first ADJ
course NOUN
, PUNCT
scallops NOUN
served VERB
in ADP
the DET
shell NOUN
with ADP
a DET
soy NOUN
- PUNCT
type NOUN
sauce NOUN
. PUNCT
> X
   SPACE
I PRON
thought VERB
, PUNCT
" PUNCT
Well INTJ
, PUNCT
I PRON
've AUX
only ADV
had VERB
scallops NOUN
once ADV
and CCONJ
I PRON
was AUX
sick ADJ
after ADP
but CCONJ
that SCONJ
> X
   SPACE
could AUX
have AUX
been AUX
a DET
coincidence NOUN
" PUNCT
. PUNCT
That DET
night NOUN
as SCONJ
I PRON
sat VERB
on ADP
the DET
bathroom NOUN
floor NOUN
, PUNCT
> X
   SPACE
sweating VERB
and CCONJ
emptying VERB
my PRON
stomach NOUN
the DET
hard ADJ
way NOUN
, PUNCT
I PRON
decided VERB
I PRON
would AUX
never ADV
touch VERB
> X
   SPACE
another DET
scallop NOUN
. PUNCT
I PRON
may AUX
not PART
be AUX
allergic ADJ
but CCONJ
I PRON
do AUX
n't PART
want VERB
to PART
take VERB
the DET
chance NOUN
. PUNCT
I PRON
do AUX
n't PART
react VERB
to ADP
scallops NOUN
, PUNCT
but CCONJ
did AUX
have AUX
discomforts NOUN
with ADP
clam PROPN
juiceserved VERB
at ADP
( PUNCT
American ADJ
) PUNCT
waterfront NOUN
seafood NOUN
bars NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
whetherthe NOUN
juice NOUN
is AUX
homemade ADJ
or CCONJ
from ADP
cans NOUN
. PUNCT
The DET
following NOUN
is AUX
my PRON
first ADJ
encounter NOUN
with ADP
the DET
Chinese PROPN
RestaurantSyndrome PROPN
. PUNCT
  SPACE
Ten NUM
years NOUN
ago ADV
, PUNCT
about ADV
an DET
hour NOUN
after ADP
having VERB
Won PROPN
Ton PROPN
Soup PROPN
Icollapsed PROPN
in ADP
a DET
chair NOUN
with ADP
my PRON
face NOUN
feeling VERB
puffed VERB
up ADP
, PUNCT
my PRON
scalptingling NOUN
, PUNCT
my PRON
feet NOUN
too ADV
weak ADJ
to PART
stand VERB
up ADP
. PUNCT
  SPACE
The DET
symptoms NOUN
lasted VERB
for ADP
about20 ADJ
minutes NOUN
. PUNCT
  SPACE
Determined VERB
to PART
find VERB
out ADP
the DET
cause NOUN
of ADP
my PRON
first ADJ
reaction NOUN
, PUNCT
Iwent PROPN
back ADV
to ADP
the DET
Chinese ADJ
restuarant NOUN
and CCONJ
ordered VERB
the DET
same ADJ
dish NOUN
. PUNCT
  SPACE
Thesame PROPN
thing NOUN
happened VERB
. PUNCT
  SPACE
A DET
quick ADJ
look NOUN
inside ADP
the DET
kitchen NOUN
revealed VERB
nothingout ADV
of ADP
the DET
ordinary ADJ
. PUNCT
I've PROPN
also ADV
had AUX
a DET
mild ADJ
attack NOUN
after ADP
having VERB
soup NOUN
at ADP
a DET
Thai PROPN
restuarant ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58844From NUM
: PUNCT
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> X
Flights NOUN
of ADP
fancy ADJ
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucial| PROPN
> X
thing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
use| PROPN
> X
unless SCONJ
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
I PRON
've AUX
known VERB
a DET
lot NOUN
of ADP
scientists| PROPN
> X
whose PRON
fantasies NOUN
lead VERB
them PRON
on ADP
to ADP
creative ADJ
work NOUN
; PUNCT
usually ADV
they PRON
wo AUX
n't PART
admit| ADV
> X
out ADV
loud ADV
what PRON
the DET
fantasy NOUN
was AUX
, PUNCT
prior ADV
to ADP
the DET
consumption NOUN
of ADP
a DET
few ADJ
beers.| PROPN
> X
| NOUN
> X
( PUNCT
Simple ADJ
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNA| PROPN
> X
electrophoresis NOUN
gel NOUN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
hoping VERB
that| PROPN
> X
he PRON
'd AUX
seen VERB
some DET
essential ADJ
part NOUN
of ADP
the DET
control NOUN
mechanism NOUN
for ADP
eukaryotic| PROPN
> X
genes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
out| PROPN
> X
binding PROPN
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequenceBut PROPN
why ADV
do AUX
you PRON
characterize VERB
this DET
as SCONJ
a DET
" PUNCT
flight NOUN
of ADP
fancy NOUN
" PUNCT
or CCONJ
a DET
" PUNCT
fantasy"?While NOUN
I PRON
am AUX
unfamiliar ADJ
with ADP
the DET
scientific ADJ
context NOUN
here ADV
, PUNCT
it PRON
appears VERB
obviousthat ADP
his PRON
speculation NOUN
( PUNCT
for ADP
lack NOUN
of ADP
a DET
better ADJ
or CCONJ
more ADV
neutral ADJ
word NOUN
) PUNCT
wasat NOUN
least ADV
in ADP
significant ADJ
part NOUN
a DET
consequence NOUN
of ADP
his PRON
knowledge NOUN
of ADP
and CCONJ
acceptanceof VERB
current ADJ
theory NOUN
coupled VERB
with ADP
his PRON
observations NOUN
. PUNCT
  SPACE
It PRON
would AUX
appear VERB
thatsomething VERB
quite ADV
rational ADJ
was AUX
going VERB
on ADP
as SCONJ
he PRON
attempted VERB
to PART
fit VERB
his PRON
observationinto NOUN
that DET
theory NOUN
( PUNCT
or CCONJ
to PART
tailor VERB
the DET
theory NOUN
to PART
cover VERB
the DET
observation NOUN
) PUNCT
. PUNCT
  SPACE
Thisdoes PROPN
not PART
seem VERB
like SCONJ
an DET
example NOUN
of ADP
what PRON
most ADJ
would AUX
normally ADV
call VERB
a DET
flight NOUN
offancy NOUN
or CCONJ
a DET
fantasy.| PROPN
> X
| ADP
> X
It PRON
is AUX
not PART
clear ADJ
to ADP
me PRON
what PRON
you PRON
mean VERB
by ADP
rational ADJ
vs. CCONJ
irrational PROPN
. PUNCT
  SPACE
Perhaps| PROPN
> X
you PRON
can AUX
give VERB
a DET
few ADJ
examples NOUN
of ADP
surprising ADJ
experiments NOUN
that PRON
were AUX
tried VERB
out| PROPN
> X
for ADP
perfectly ADV
rational ADJ
reasons NOUN
, PUNCT
or CCONJ
interesting ADJ
new ADJ
theories NOUN
that PRON
were AUX
first| PROPN
> X
advanced VERB
from ADP
logical ADJ
grounds NOUN
. PUNCT
  SPACE
The DET
main ADJ
examples NOUN
I PRON
can AUX
think VERB
of ADP
are AUX
from| PROPN
> X
modern ADJ
high ADJ
- PUNCT
energy NOUN
physics NOUN
which PRON
is AUX
not PART
typical ADJ
of ADP
science NOUN
as SCONJ
a DET
whole NOUN
. PUNCT
Well INTJ
, PUNCT
I PRON
think VERB
someone PRON
else ADV
in ADP
this DET
thread NOUN
was AUX
the DET
first ADJ
to PART
use VERB
the DET
word NOUN
( PUNCT
also,"extra NOUN
- PUNCT
scientific ADJ
" PUNCT
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
  SPACE
Nor CCONJ
am AUX
I PRON
prepared ADJ
to PART
give VERB
a DET
general ADJ
account NOUN
ofrationality NOUN
. PUNCT
  SPACE
In ADP
terms NOUN
of ADP
examples NOUN
, PUNCT
there PRON
is AUX
some DET
danger NOUN
of ADP
beginning VERB
to PART
quibbleover VERB
what PRON
a DET
" PUNCT
surprising ADJ
" PUNCT
experiment NOUN
is AUX
, PUNCT
what PRON
counts VERB
as SCONJ
" PUNCT
surprising ADJ
" PUNCT
, PUNCT
etc X
. PUNCT
The DET
same ADJ
may AUX
be AUX
said VERB
about ADP
" PUNCT
logical ADJ
grounds NOUN
" PUNCT
. PUNCT
  SPACE
My PRON
point NOUN
is AUX
that SCONJ
quite ADV
frequently(perhaps ADV
even ADV
most ADV
frequently ADV
) PUNCT
the DET
roots NOUN
of ADP
a DET
new ADJ
theory NOUN
can AUX
be AUX
traced VERB
topreviously ADV
existing VERB
theories NOUN
( PUNCT
or CCONJ
even ADV
to PART
previously ADV
rejected VERB
hypotheses NOUN
ofsome VERB
other ADJ
theory NOUN
or CCONJ
domain NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
would AUX
offer VERB
some DET
rather ADV
well ADV
known VERB
examplessuch NOUN
as SCONJ
Toricelli PROPN
's PART
Puy PROPN
de X
Dome PROPN
experiment NOUN
done VERB
for ADP
the DET
sake NOUN
of ADP
his PRON
" PUNCT
sea PROPN
of ADP
air"hypothesis NOUN
. PUNCT
  SPACE
Was AUX
this DET
theory NOUN
( PUNCT
and CCONJ
the DET
resulting VERB
experimental ADJ
test NOUN
) PUNCT
" PUNCT
surprising"?Well INTJ
, PUNCT
given VERB
the DET
* PUNCT
prior ADJ
* PUNCT
explanations NOUN
of ADP
the DET
phenomena NOUN
involved VERB
it PRON
certainly ADV
mustbe ADV
counted VERB
as SCONJ
so ADV
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
constructed VERB
( PUNCT
and CCONJ
the DET
experiment NOUN
designed)out PROPN
of ADP
" PUNCT
perfectly ADV
rational ADJ
grounds NOUN
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
there PRON
was AUX
a DET
pretty ADV
successful ADJ
andwell NOUN
know VERB
theory NOUN
of ADP
fluids NOUN
. PUNCT
  SPACE
The DET
analogy NOUN
to ADP
fluids NOUN
by ADP
Toricelli PROPN
is AUX
explicit ADJ
. PUNCT
The DET
novelty NOUN
was AUX
in ADP
thinking NOUN
of ADP
air NOUN
as SCONJ
a DET
fluid NOUN
( PUNCT
but CCONJ
this DET
was AUX
* PUNCT
quite ADV
* PUNCT
a DET
noveltyat NOUN
the DET
time NOUN
) PUNCT
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
interesting ADJ
? PUNCT
  SPACE
Yes INTJ
. PUNCT
  SPACE
Was AUX
it PRON
" PUNCT
new ADJ
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
onecould AUX
argue VERB
that SCONJ
it PRON
was AUX
merely ADV
the DET
extension NOUN
of ADP
an DET
existing VERB
theory NOUN
to ADP
a DET
newdomain NOUN
, PUNCT
but CCONJ
I PRON
think VERB
this DET
begs VERB
certain ADJ
questions NOUN
. PUNCT
  SPACE
We PRON
can AUX
debate VERB
that SCONJ
if SCONJ
youlike.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58845Subject NUM
: PUNCT
EXPERTS NOUN
on ADP
PENICILLIN PROPN
... PUNCT
LOOK!From PROPN
: PUNCT
ndacumo@eis.calstate.edu PROPN
( PUNCT
Noah PROPN
Dacumos)My PROPN
name NOUN
is AUX
Noah PROPN
Dacumos PROPN
and CCONJ
I PRON
am AUX
a DET
student NOUN
at ADP
San PROPN
Leandro PROPN
High PROPN
. PUNCT
  SPACE
I PRON
amdoing VERB
a DET
project NOUN
for ADP
my PRON
physics NOUN
class NOUN
and CCONJ
I PRON
would AUX
like VERB
some DET
info NOUN
on ADP
thediscovery NOUN
of ADP
penicillin NOUN
, PUNCT
its PRON
discoverer(Sir NOUN
Alexander PROPN
Fleming PROPN
) PUNCT
, PUNCT
and CCONJ
how ADV
ithelps ADJ
people NOUN
with ADP
many ADJ
incurable ADJ
bacterias NOUN
. PUNCT
  SPACE
Also ADV
how ADV
it PRON
effects VERB
those DET
whoare VERB
allergic ADJ
to ADP
it PRON
. PUNCT
  SPACE
Any DET
info NOUN
will AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
					 SPACE
Noah PROPN
DacumosNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58846From NUM
: PUNCT
jfare@53iss6.Waterloo PROPN
. PUNCT
NCR.COM PROPN
( PUNCT
Jim PROPN
Fare)Subject NUM
: PUNCT
Re ADP
: PUNCT
EndometriosisIn PROPN
article NOUN
< X
1993Apr16.032251.6606@rock.concert.net NUM
> X
naomi@rock.concert.net PROPN
( PUNCT
Naomi PROPN
T PROPN
Courter PROPN
) PUNCT
writes:>can ADJ
anyone PRON
give VERB
me PRON
more ADJ
information NOUN
regarding VERB
endometriosis NOUN
? PUNCT
   SPACE
i PRON
heard VERB
> X
it PRON
's AUX
a DET
very ADV
common ADJ
disease NOUN
among ADP
women NOUN
and CCONJ
if SCONJ
anyone PRON
can AUX
provide VERB
names> PROPN
... PUNCT
>--NaomiEndometriosis NOUN
is AUX
where ADV
cells NOUN
that PRON
would AUX
normally ADV
be AUX
lining VERB
the DET
uteris PROPN
existoutside VERB
the DET
uteris PROPN
. PUNCT
  SPACE
Sometimes ADV
this DET
causes VERB
problems NOUN
, PUNCT
often ADV
it PRON
doesn't VERB
. PUNCT
There PRON
is AUX
generally ADV
no DET
need NOUN
to PART
remove VERB
pockets NOUN
of ADP
endometriosis NOUN
unless SCONJ
they PRON
arecausing VERB
other ADJ
problems NOUN
. PUNCT
  SPACE
One NUM
lady NOUN
I PRON
know VERB
had AUX
Endometriosis NOUN
in ADP
an DET
ovary NOUN
. PUNCT
  SPACE
This DET
caused VERB
her PRON
a DET
_ NOUN
great ADJ
_ PROPN
deal NOUN
of ADP
pain NOUN
. PUNCT
  SPACE
Another DET
lady NOUN
I PRON
know VERB
has AUX
an DET
     SPACE
endometrial ADJ
cyst NOUN
in ADP
her PRON
abdominal ADJ
wall NOUN
; PUNCT
she PRON
is AUX
not PART
having VERB
it PRON
removed VERB
. PUNCT
The DET
American PROPN
Fertility PROPN
Society PROPN
has AUX
information NOUN
on ADP
this DET
and CCONJ
they PRON
probably ADV
maintain VERB
a DET
list NOUN
of ADP
physicians NOUN
in ADP
all DET
parts NOUN
of ADP
the DET
continent NOUN
that PRON
deal VERB
withendometriosis NOUN
. PUNCT
  SPACE
You PRON
can AUX
reach VERB
them PRON
at ADP
: PUNCT
The DET
American PROPN
Fertility PROPN
Society2140 PROPN
11th NOUN
Ave PROPN
SouthSuite PROPN
200Birmingham NUM
, PUNCT
Alabama PROPN
35205 NUM
- PUNCT
2800(205)933 NUM
- PUNCT
8494 NUM
                                     SPACE
[ PUNCT
J.F.]Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58847From NUM
: PUNCT
szikopou@superior.carleton.ca NOUN
( PUNCT
Steven PROPN
Zikopoulos)Subject NUM
: PUNCT
Re ADP
: PUNCT
prozacIn VERB
< X
C5L2x5.4B7@eis.calstate.edu NOUN
> X
agilmet@eis.calstate.edu PROPN
( PUNCT
Adriana PROPN
Gilmete PROPN
) PUNCT
writes:>Can VERB
anyone PRON
help VERB
me PRON
find VERB
any DET
information NOUN
on ADP
the DET
drug NOUN
Prozac PROPN
? PUNCT
  SPACE
I PRON
am AUX
writing VERB
> X
a DET
report NOUN
on ADP
the DET
inventors NOUN
, PUNCT
Eli PROPN
Lilly PROPN
and CCONJ
Co. PROPN
, PUNCT
and CCONJ
the DET
product NOUN
. PUNCT
  SPACE
I PRON
need VERB
as SCONJ
> X
much ADJ
help NOUN
as SCONJ
I PRON
can AUX
get AUX
. PUNCT
   SPACE
Thanks INTJ
a DET
lot NOUN
, PUNCT
Adriana PROPN
Gilmete PROPN
. PUNCT
PDR PROPN
and CCONJ
CPS PROPN
are AUX
good ADJ
places NOUN
to ADP
starts.do PROPN
a DET
medline ADJ
search NOUN
... PUNCT
lots NOUN
of ADP
interesting ADJ
debates NOUN
going VERB
on ADP
( PUNCT
rememberwhen PROPN
Prozac PROPN
was AUX
impicated VERB
in ADP
suicidal ADJ
behaviour?)steve PROPN
zNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58848From NUM
: PUNCT
mdf0@shemesh X
. PUNCT
GTE.com PROPN
( PUNCT
Mark PROPN
Feblowitz)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qhu7s$d3u@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
It PRON
's AUX
worse ADJ
than SCONJ
that DET
-- PUNCT
there PRON
* PUNCT
is AUX
* PUNCT
no DET
such ADJ
thing NOUN
as SCONJ
   SPACE
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
on ADP
the DET
effects NOUN
of ADP
MSG PROPN
, PUNCT
by ADP
   SPACE
virtue NOUN
of ADP
the DET
fact NOUN
that SCONJ
MSG PROPN
changes VERB
the DET
taste NOUN
of ADP
food NOUN
in ADP
   SPACE
a DET
characteristic ADJ
way NOUN
that PRON
is AUX
detectable ADJ
by ADP
the DET
subject NOUN
and CCONJ
   SPACE
that PRON
can AUX
not PART
be AUX
duplicated VERB
by ADP
a DET
placebo NOUN
. PUNCT
Common ADJ
! PUNCT
You PRON
can AUX
easily ADV
disguise VERB
  SPACE
to ADP
flavor NOUN
of ADP
  SPACE
MSG PROPN
by ADP
putting VERB
  SPACE
it PRON
in ADP
acapsule NOUN
. PUNCT
Then ADV
, PUNCT
  SPACE
the DET
  SPACE
study NOUN
  SPACE
becomes VERB
  SPACE
a DET
  SPACE
double ADJ
  SPACE
blind ADJ
of ADP
  SPACE
MSG PROPN
capsulesagainst NOUN
control NOUN
  SPACE
capsules NOUN
( PUNCT
containing VERB
exactly ADV
  SPACE
the DET
same ADJ
contents NOUN
minusthe NOUN
MSG).---------------------------------------------------------------------------Mark NOUN
Feblowitz PROPN
, PUNCT
   SPACE
GTE PROPN
Laboratories PROPN
Inc. PROPN
, PUNCT
40 NUM
Sylvan PROPN
Rd PROPN
. PROPN
  SPACE
Waltham PROPN
, PUNCT
MA PROPN
02254mfeblowitz@GTE.com NOUN
, PUNCT
( PUNCT
617 NUM
) PUNCT
466 NUM
- SYM
2947 NUM
, PUNCT
fax NOUN
: PUNCT
( PUNCT
617 NUM
) PUNCT
890 NUM
- PUNCT
9320Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58849From NUM
: PUNCT
tong@ohsu.edu ADP
( PUNCT
Gong PROPN
Tong)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG ADJ
) PUNCT
writes:>In NOUN
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com X
> X
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:>>>>In PROPN
article NOUN
< X
13APR199308003715@delphi.gsfc.nasa.gov NUM
> X
, PUNCT
packer@delphi.gsfc.nasa.gov NOUN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>>>>Is NOUN
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate NOUN
) PUNCT
sensitivity?>>>>I NOUN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
> X
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG PROPN
sensitivity NOUN
are>>>>superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
> X
> X
> X
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least>>>>a PROPN
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the>>>>"Chinese NUM
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has>>>>always PROPN
used VERB
it.>>>>So PROPN
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but>>no PROPN
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
> X
> X
work PROPN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study>>using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
> X
> X
Check VERB
out ADP
# SYM
27903 NUM
, PUNCT
just ADV
some DET
20 NUM
posts NOUN
before ADP
your PRON
own ADJ
. PUNCT
Maybe ADV
you PRON
missed VERB
> X
it PRON
amidst ADP
the DET
flurry NOUN
of ADP
responses NOUN
? PUNCT
Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
this DET
> X
newsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
matters NOUN
> X
they PRON
have AUX
substantial ADJ
knowledge NOUN
of.>>For PRON
cites VERB
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a DET
> X
toxicologist NOUN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on ADP
> NUM
development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an DET
> X
excitotoxic DET
food NOUN
additive ADJ
, PUNCT
and CCONJ
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamate NOUN
> X
is AUX
essentially ADV
the DET
premierie PROPN
neurotransmitter NOUN
in ADP
the DET
mammalian ADJ
brain>(humans NOUN
included VERB
) PUNCT
. PUNCT
  SPACE
Too ADV
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown VERB
> X
off ADV
. PUNCT
  SPACE
Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in ADP
> X
small ADJ
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts NOUN
> X
added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be AUX
> X
encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
  SPACE
By ADP
eating VERB
lots NOUN
of ADP
junk NOUN
food,>packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to PART
jack VERB
your PRON
> X
blood NOUN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
these DET
> X
compounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical PROPN
effects NOUN
. PUNCT
> X
Read VERB
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>sources NOUN
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
> X
> X
                    SPACE
--Dianne PUNCT
Murray PROPN
    SPACE
wcsbeau@ccs.carleton.caIn ADV
order NOUN
to PART
excitotoxin VERB
effects NOUN
of ADP
MSG PROPN
, PUNCT
MSG PROPN
that SCONJ
in ADP
blood NOUN
must AUX
go VERB
through ADP
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
that PRON
I PRON
am AUX
not PART
sure ADJ
MSG NOUN
can AUX
go VERB
through ADV
or CCONJ
not PART
. PUNCT
In ADP
normal ADJ
condition NOUN
, PUNCT
the DET
concentration NOUN
of ADP
glutamate NOUN
in ADP
the DET
cerebrospinal ADJ
fluid NOUN
is AUX
about ADV
2 NUM
uM NOUN
that PRON
is AUX
high ADJ
enough ADV
to PART
activate VERB
one NUM
type NOUN
of ADP
glutamate NOUN
receptor NOUN
- PUNCT
the DET
NMDAreceptor NOUN
. PUNCT
But CCONJ
the DET
question NOUN
is AUX
Neuron PROPN
and CCONJ
glial ADJ
cell NOUN
in ADP
the DET
brain NOUN
have AUX
a DET
lots NOUN
of ADP
transport NOUN
to PART
get AUX
glutamate NOUN
into ADP
Neuron PROPN
or CCONJ
glial NOUN
. PUNCT
So ADV
no DET
one NOUN
know VERB
exact ADJ
concentration NOUN
of ADP
glutamate NOUN
is AUX
around ADP
neurons NOUN
. PUNCT
Glutamate PROPN
is AUX
most ADV
important ADJ
neurotransmitter NOUN
in ADP
the DET
central ADJ
nervous ADJ
system NOUN
. PUNCT
It PRON
is AUX
involved VERB
in ADP
not PART
only ADV
in ADP
daily ADJ
life NOUN
like SCONJ
the DET
controling NOUN
of ADP
movement NOUN
, PUNCT
it PRON
is AUX
alsoinvolved VERB
in ADP
develpoment NOUN
, PUNCT
memory NOUN
and CCONJ
learn VERB
( PUNCT
it PRON
is AUX
involved VERB
in ADP
Logn NOUN
- PUNCT
term NOUN
potentialtion NOUN
that PRON
be AUX
thought VERB
is AUX
the DET
basis NOUN
of ADP
learning NOUN
) PUNCT
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58850From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>So NUM
far ADV
, PUNCT
I PRON
've AUX
seen VERB
about ADP
a DET
dozen NOUN
posts NOUN
of ADP
anecdotal ADJ
evidence NOUN
, PUNCT
but>>no PROPN
facts NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
there PRON
is AUX
a DET
strong ADJ
psychological ADJ
effect NOUN
at ADP
> X
> X
work PROPN
here ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
results NOUN
from ADP
a DET
scientific ADJ
study>>using VERB
double ADJ
- PUNCT
blind ADJ
trials NOUN
? PUNCT
  SPACE
> X
> X
Check VERB
out ADP
# SYM
27903 NUM
, PUNCT
just ADV
some DET
20 NUM
posts NOUN
before ADP
your PRON
own ADJ
. PUNCT
Um INTJ
, PUNCT
I PRON
hate VERB
to PART
break VERB
this DET
to ADP
you PRON
, PUNCT
but CCONJ
article NOUN
numbers NOUN
are AUX
unique ADJ
per ADP
site NOUN
. PUNCT
They PRON
have AUX
no DET
meaning NOUN
on ADP
other ADJ
machines.>Maybe PROPN
you PRON
missed VERB
it PRON
amidst ADP
the DET
flurry NOUN
of ADP
responses?You NOUN
mean VERB
the DET
responses NOUN
some DET
of ADP
which PRON
pointed VERB
to ADP
double ADJ
- PUNCT
blind ADJ
testswhich NOUN
show VERB
no DET
such ADJ
" PUNCT
chinese ADJ
restaurant NOUN
effect NOUN
" PUNCT
unique ADJ
to ADP
MSG(it PROPN
's PART
elicited VERB
by ADP
the DET
placebo NOUN
as SCONJ
well.)>Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
this DET
> X
newsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
matters NOUN
> X
they PRON
have AUX
substantial ADJ
knowledge NOUN
of ADP
. PUNCT
Like SCONJ
youself PRON
? PUNCT
  SPACE
Someone PRON
who PRON
can AUX
read VERB
a DET
scientific ADJ
paper NOUN
and CCONJ
apparentlycome VERB
away ADV
from ADP
it PRON
with ADP
bizarrely ADV
cracked VERB
ideas NOUN
which PRON
have AUX
nothing PRON
todo NOUN
with ADP
the DET
use NOUN
of ADP
this DET
substance NOUN
in ADP
human PROPN
nutrition?>For NOUN
cites NOUN
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a DET
> X
toxicologist NOUN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on ADP
> NUM
development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an DET
> X
excitotoxic DET
food NOUN
additive ADJ
, PUNCT
No INTJ
, PUNCT
it PRON
's AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
glutamate NOUN
is AUX
an DET
amino NOUN
acidwhich PROPN
is AUX
an DET
excitatory ADJ
neurotransmitter NOUN
. PUNCT
  SPACE
There PRON
is AUX
also ADV
evidence NOUN
thatexcessive ADJ
release NOUN
of ADP
glutamate NOUN
may AUX
be AUX
involved VERB
in ADP
the DET
pathology NOUN
of ADP
certainconditions NOUN
like SCONJ
stroke NOUN
, PUNCT
drowning NOUN
and CCONJ
Lou PROPN
Gehrig PROPN
's PART
disease NOUN
, PUNCT
just ADV
to PART
name VERB
a DET
few ADJ
. PUNCT
This DET
is AUX
a DET
completely ADV
different ADJ
issue NOUN
than SCONJ
the DET
use NOUN
of ADP
this DET
ubiquitous ADJ
amino ADJ
acidin PROPN
foods NOUN
. PUNCT
  SPACE
People NOUN
are AUX
not PART
receiving VERB
intra ADJ
- ADJ
ventricular ADJ
injections NOUN
of ADP
glutamate.>and NUM
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamate NOUN
> X
is AUX
essentially ADV
the DET
premierie PROPN
neurotransmitter NOUN
in ADP
the DET
mammalian PROPN
brain>(humans PROPN
included).I PART
do AUX
n't PART
know VERB
about ADP
premier NOUN
, PUNCT
but CCONJ
it PRON
's AUX
certainly ADV
an DET
important ADJ
one.>Too NOUN
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown VERB
off ADP
. PUNCT
Sez ADV
you PRON
. PUNCT
  SPACE
Such DET
an DET
effect NOUN
in ADP
humans NOUN
has AUX
not PART
been AUX
demonstrated VERB
in ADP
anycontrolled VERB
studies NOUN
. PUNCT
  SPACE
Infant NOUN
mice NOUN
and CCONJ
other ADJ
models NOUN
are AUX
useful ADJ
as SCONJ
faras NOUN
they PRON
go VERB
, PUNCT
but CCONJ
they PRON
're AUX
not PART
relevant ADJ
to ADP
the DET
matter NOUN
at ADP
hand NOUN
. PUNCT
  SPACE
Which PRON
isnot NOUN
to PART
say VERB
that SCONJ
I PRON
favor VERB
its PRON
use NOUN
in ADP
things NOUN
like SCONJ
baby NOUN
food NOUN
-- PUNCT
a DET
patentlyridiculous ADJ
use NOUN
of ADP
the DET
additive ADJ
. PUNCT
  SPACE
But CCONJ
we PRON
have AUX
no DET
reason NOUN
to ADP
believethat DET
MSG PROPN
in ADP
the DET
diet NOUN
effects NOUN
humans NOUN
adversely.>Glutamate VERB
and CCONJ
aspartate VERB
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in ADP
> X
small ADJ
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts NOUN
> X
added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be AUX
> X
encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
Wrong ADJ
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
much ADJ
aspartate NOUN
or CCONJ
phenylalanine NOUN
is AUX
in ADP
a DET
soft ADJ
drink?Milligrams PROPN
worth ADJ
. PUNCT
  SPACE
Compare VERB
that DET
to ADP
a DET
glass NOUN
of ADP
milk NOUN
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
muchglutamate NOUN
is AUX
present ADJ
in ADP
most ADJ
protein NOUN
- PUNCT
containing VERB
foods NOUN
compared VERB
to ADP
thatadded VERB
by ADP
the DET
use NOUN
of ADP
MSG?>By PROPN
eating VERB
lots NOUN
of ADP
junk NOUN
food,>packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to PART
jack VERB
your PRON
> X
blood NOUN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
these DET
> X
compounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical ADJ
effects NOUN
. PUNCT
Notice VERB
the DET
subtle ADJ
covering NOUN
of ADP
her PRON
ass NOUN
here ADV
: PUNCT
" PUNCT
anyone PRON
_ VERB
with ADP
a DET
sensitivity_ PROPN
... PUNCT
"We're PUNCT
disputing VERB
the DET
size NOUN
of ADP
that DET
class.>Read PROPN
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>sources NOUN
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
Impeccable ADJ
. PUNCT
  SPACE
There PRON
most ADV
certainly ADV
is AUX
a DET
dispute.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58851From NUM
: PUNCT
drand@spinner.osf.org PROPN
( PUNCT
Douglas PROPN
S. PROPN
Rand)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
chronic ADJ
sinus NOUN
and CCONJ
antibioticsIn NOUN
article NOUN
< X
DEHP.117@calvin.edu PROPN
> X
DEHP@calvin.edu ADJ
( PUNCT
Phil PROPN
de PROPN
Haan PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
In ADP
article NOUN
< X
1qk708INNa12@mojo.eng.umd.edu NUM
> X
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
You PRON
can AUX
also ADV
swab VERB
the DET
inside NOUN
of ADP
your PRON
nose NOUN
with ADP
Bacitracin PROPN
using VERB
a DET
   SPACE
> X
Q NOUN
tip NOUN
. PUNCT
Bacitracin PROPN
is AUX
an DET
antibiotic ADJ
that PRON
can AUX
be AUX
bought VERB
OTC PROPN
as SCONJ
an DET
   SPACE
> X
ointment NOUN
in ADP
a DET
tube NOUN
. PUNCT
The DET
doctor NOUN
I PRON
listen VERB
to ADP
on ADP
the DET
radio NOUN
says VERB
to PART
apply VERB
   SPACE
> X
it PRON
for ADP
30 NUM
days NOUN
, PUNCT
while SCONJ
you PRON
are AUX
taking VERB
other ADJ
antibiotics NOUN
by ADP
mouth NOUN
. PUNCT
   SPACE
I PRON
have AUX
a DET
new ADJ
doctor NOUN
who PRON
gave VERB
me PRON
a DET
prescription NOUN
today NOUN
for ADP
something PRON
called VERB
    SPACE
Septra PROPN
DS PROPN
. PUNCT
  SPACE
He PRON
said VERB
it PRON
may AUX
cause VERB
GI PROPN
problems NOUN
and CCONJ
I PRON
have AUX
a DET
sensitive ADJ
stomach NOUN
    SPACE
to PART
begin VERB
with ADP
. PUNCT
  SPACE
Anybody PRON
ever ADV
taken VERB
this DET
antibiotic ADJ
. PUNCT
  SPACE
Any DET
good ADJ
? PUNCT
  SPACE
Suggestions NOUN
    SPACE
for ADP
avoiding VERB
an DET
upset ADJ
stomach NOUN
? PUNCT
  SPACE
Other ADJ
tips?I've NOUN
taken VERB
Septra PROPN
. PUNCT
  SPACE
My PRON
daughter NOUN
has AUX
taken VERB
it PRON
many ADJ
times NOUN
for ADP
earinfections NOUN
. PUNCT
  SPACE
It PRON
works VERB
sometimes ADV
. PUNCT
  SPACE
It PRON
is AUX
a DET
sulfa ADJ
drug NOUN
. PUNCT
  SPACE
About ADP
the DET
onlyproblem NOUN
I PRON
found VERB
was AUX
that SCONJ
I PRON
'm AUX
sensitive ADJ
and CCONJ
developed VERB
a DET
rash NOUN
after ADP
ninedays NOUN
of ADP
a DET
ten NUM
day NOUN
course NOUN
. PUNCT
  SPACE
No DET
more ADJ
Septra PROPN
for ADP
me PRON
. PUNCT
  SPACE
My PRON
doctor NOUN
wasremiss VERB
in ADP
not PART
telling VERB
me PRON
to PART
watch VERB
out ADP
for ADP
a DET
rash NOUN
. PUNCT
  SPACE
I PRON
was AUX
quite ADV
in ADP
thedark NOUN
and CCONJ
did AUX
n't PART
realize VERB
that SCONJ
it PRON
could AUX
be AUX
a DET
drug NOUN
reaction NOUN
. PUNCT
  SPACE
No ADV
harmdone NOUN
though ADV
. PUNCT
Doug PROPN
-- PUNCT
Douglas PROPN
S. PROPN
Rand PROPN
< X
drand@osf.org NUM
> X
		 SPACE
OSF PROPN
/ SYM
Motif PROPN
Dev PROPN
. PUNCT
Snail NOUN
: PUNCT
         SPACE
11 NUM
Cambridge PROPN
Center PROPN
, PUNCT
  SPACE
Cambridge PROPN
, PUNCT
  SPACE
MA PROPN
  SPACE
02142Disclaimer NUM
: PUNCT
    SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
OSF PROPN
agrees VERB
with ADP
me PRON
... PUNCT
let VERB
's PRON
vote VERB
on ADP
it PRON
. PUNCT
Amateur PROPN
Radio PROPN
: PUNCT
KC1KJNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58852From NUM
: PUNCT
richard@tis.com X
( PUNCT
Richard PROPN
Clark)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>packer@delphi.gsfc.nasa.gov PROPN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>>>Is VERB
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>I NOUN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG NOUN
sensitivity NOUN
are>>superstition PROPN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
> X
I PRON
'm AUX
old ADJ
enough ADV
to PART
remember VERB
that SCONJ
the DET
issue NOUN
has AUX
come VERB
up ADP
at ADP
least>>a NUM
couple NOUN
of ADP
times NOUN
since SCONJ
the DET
1960s NOUN
. PUNCT
Then ADV
it PRON
was AUX
called VERB
the>>"Chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
because SCONJ
Chinese ADJ
cuisine NOUN
has>>always PROPN
used VERB
it PRON
. PUNCT
> X
	 SPACE
My PRON
blood NOUN
pressure NOUN
soars NOUN
, PUNCT
my PRON
heart NOUN
pounds NOUN
, PUNCT
and CCONJ
I PRON
ca AUX
n't PART
get AUX
to ADP
sleepfor NOUN
the DET
life NOUN
of ADP
me PRON
... PUNCT
feels VERB
about ADP
like INTJ
I PRON
just ADV
drank VERB
8 NUM
cups NOUN
of ADP
coffee NOUN
. PUNCT
	 SPACE
I PRON
avoid VERB
it PRON
, PUNCT
and CCONJ
beet NOUN
sugar NOUN
, PUNCT
flavor NOUN
enhancers NOUN
, PUNCT
beet NOUN
powder NOUN
, PUNCT
andwhatever VERB
other ADJ
names NOUN
it PRON
may AUX
go VERB
under ADV
. PUNCT
Basicaly PROPN
I PRON
read VERB
the DET
ingredients NOUN
, PUNCT
andif PROPN
I PRON
do AUX
n't PART
know VERB
what PRON
they PRON
all DET
are AUX
, PUNCT
I PRON
do AUX
n't PART
buy VERB
the DET
product NOUN
. PUNCT
	 SPACE
MSG NOUN
sensitivity NOUN
is AUX
definately ADV
* PUNCT
real*.-----------------------Relativity NOUN
Schmelativity----------------------------- PROPN
Richard PROPN
H. PROPN
Clark PROPN
				 SPACE
My PRON
opinions NOUN
are AUX
my PRON
own ADJ
, PUNCT
and CCONJ
LUNATIK PROPN
- PUNCT
watch VERB
for ADP
me PRON
on ADP
the DET
road NOUN
... PUNCT
		 SPACE
ought AUX
to PART
be AUX
yours PRON
, PUNCT
but CCONJ
under ADP
It PRON
's AUX
not PART
my PRON
fault NOUN
... PUNCT
I PRON
voted VERB
PEROT PROPN
! PUNCT
		 SPACE
no DET
circumstances NOUN
are AUX
they PRON
richard@tis.com X
				 SPACE
those DET
of ADP
my PRON
company NOUN
... PUNCT
-----------------------------------------------------------------------------Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58853From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)-*----I INTJ
agree VERB
with ADP
everything PRON
that PRON
Lee PROPN
Lady PROPN
wrote VERB
in ADP
her PRON
previous ADJ
post NOUN
inthis NOUN
thread NOUN
. PUNCT
  SPACE
In ADP
case NOUN
this DET
puzzles VERB
people NOUN
, PUNCT
I PRON
would AUX
like VERB
to PART
expandon VERB
two NUM
of ADP
her PRON
comments NOUN
. PUNCT
In ADP
article NOUN
< X
C5JoDH.9IG@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
Avoiding NOUN
mistakes NOUN
is AUX
certainly ADV
highly ADV
desirable ADJ
. PUNCT
  SPACE
However ADV
it PRON
is AUX
also ADV
> X
widely ADV
acknowledged VERB
that SCONJ
perfectionism NOUN
is AUX
inimicable ADJ
to ADP
creativity NOUN
. PUNCT
> X
... PUNCT
In ADP
the DET
extreme ADJ
case NOUN
, PUNCT
a DET
perfectionist NOUN
becomes VERB
so ADV
paralyzed ADJ
by ADP
all DET
> X
the DET
possible ADJ
mistakes NOUN
he PRON
might AUX
make VERB
that SCONJ
he PRON
is AUX
unable ADJ
to PART
even ADV
leave VERB
> X
the DET
house NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
most ADV
important ADJ
( PUNCT
and CCONJ
difficult ADJ
) PUNCT
aspects NOUN
of ADP
reasoningabout NOUN
empirical ADJ
investigation NOUN
lies VERB
in ADP
understanding VERB
the DET
context NOUN
, PUNCT
scope NOUN
, PUNCT
and CCONJ
importance NOUN
of ADP
the DET
various ADJ
arguments NOUN
and CCONJ
pieces NOUN
ofevidence NOUN
that PRON
are AUX
marshalled VERB
for ADP
a DET
claim NOUN
. PUNCT
  SPACE
Some DET
errors NOUN
break VERB
theback NOUN
of ADP
a DET
piece NOUN
of ADP
research NOUN
, PUNCT
some DET
leave VERB
a DET
hole NOUN
that PRON
needs VERB
to PART
befilled VERB
in ADV
, PUNCT
and CCONJ
some DET
are AUX
trivial ADJ
in ADP
their PRON
importance NOUN
. PUNCT
  SPACE
It PRON
is AUX
agrave VERB
mistake NOUN
to PART
confuse VERB
these DET
. PUNCT
Past ADJ
snippets NOUN
from ADP
this DET
thread NOUN
: PUNCT
> X
> X
> X
I PRON
doubt VERB
if SCONJ
Einstein PROPN
used VERB
any DET
formal ADJ
methodology NOUN
. PUNCT
  SPACE
.... PUNCT
> X
> X
He PRON
also ADV
proposed VERB
numerous ADJ
experiments NOUN
which PRON
if SCONJ
performed VERB
would AUX
> X
> X
distinguish VERB
a DET
universe NOUN
in ADP
which PRON
special ADJ
relativity NOUN
holds VERB
from ADP
> X
> X
one NUM
in ADP
which PRON
it PRON
does AUX
not PART
. PUNCT
... PUNCT
Back ADV
to ADP
Lee PROPN
Lady PROPN
: PUNCT
> X
These DET
are AUX
not PART
the DET
rules NOUN
according VERB
to ADP
many ADJ
who PRON
post VERB
to ADP
sci.med PUNCT
and CCONJ
> X
sci.psychology NOUN
. PUNCT
  SPACE
According VERB
to ADP
these DET
posters NOUN
  SPACE
" PUNCT
If SCONJ
it PRON
's AUX
not PART
supported VERB
by ADP
> PROPN
carefully ADV
designed VERB
controlled VERB
studies NOUN
then ADV
it PRON
's AUX
not PART
science NOUN
. PUNCT
"These ADJ
posters NOUN
are AUX
making VERB
the DET
mistake NOUN
that PRON
I PRON
have AUX
previouslycriticized VERB
of ADP
adhering VERB
to ADP
a DET
methodological ADJ
recipe NOUN
. PUNCT
  SPACE
A DET
" PUNCT
carefullydesigned VERB
and CCONJ
controlled VERB
study NOUN
" PUNCT
is AUX
neither DET
always ADV
possible ADJ
noralways NOUN
important ADJ
. PUNCT
  SPACE
( PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
if SCONJ
someone PRON
is AUX
proposing VERB
aremedy NOUN
that PRON
supposedly ADV
alleviates VERB
a DET
chronic ADJ
medical ADJ
problem NOUN
, PUNCT
wehave VERB
enough ADJ
knowledge NOUN
of ADP
the DET
errors NOUN
that PRON
have AUX
plagued VERB
* PUNCT
this DET
* PUNCT
kindof NOUN
claim VERB
to PART
ask VERB
for ADP
a DET
" PUNCT
carefully ADV
designed VERB
and CCONJ
controlled VERB
study"to PROPN
alleviate VERB
our PRON
skepticism.)Rules PROPN
such ADJ
as SCONJ
" PUNCT
support VERB
the DET
hypothesis NOUN
by ADP
a DET
carefully ADV
designed VERB
andcontrolled VERB
study NOUN
" PUNCT
are AUX
too ADV
narrow ADJ
to PART
apply VERB
to ADP
* PUNCT
all DET
* PUNCT
investigation NOUN
. PUNCT
I PRON
think VERB
that SCONJ
the DET
requirements NOUN
for ADP
particular ADJ
reasoning NOUN
to ADP
beconvincing NOUN
depends VERB
greatly ADV
on ADP
the DET
kinds NOUN
of ADP
mistakes NOUN
that PRON
haveoccurred VERB
in ADP
past ADJ
reasoning NOUN
about ADP
the DET
same ADJ
kinds NOUN
of ADP
things NOUN
. PUNCT
  SPACE
( PUNCT
Toreuse VERB
the DET
previous ADJ
example NOUN
, PUNCT
we PRON
know VERB
that SCONJ
conclusions NOUN
fromuncontrolled VERB
observations NOUN
of ADP
the DET
treatment NOUN
of ADP
chronic ADJ
medicalproblems NOUN
are AUX
notoriously ADV
problematic ADJ
. PUNCT
) PUNCT
  SPACE
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58854From NUM
: PUNCT
Mark-Tarbell@suite.comSubject ADJ
: PUNCT
Amniocentesis NOUN
, PUNCT
et PROPN
. PUNCT
al PROPN
. PUNCT
Is AUX
there PRON
some DET
difference NOUN
between ADP
the DET
purposes NOUN
behindamniocentesis NOUN
and CCONJ
chorionic ADJ
villi NOUN
sampling NOUN
? PUNCT
They PRON
soundsimilar ADJ
to ADP
me PRON
, PUNCT
but CCONJ
are AUX
intended VERB
to PART
detect VERB
differentthings?Thanks.Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58855Subject VERB
: PUNCT
Need VERB
Help NOUN
in ADP
Steroid PROPN
ResearchFrom PROPN
: PUNCT
tthomps@eis.calstate.edu PROPN
( PUNCT
Thomas PROPN
Thompson PROPN
) PUNCT
     SPACE
I PRON
am AUX
doing VERB
a DET
term NOUN
paper NOUN
on ADP
steroids NOUN
, PUNCT
actually ADV
the DET
scientist NOUN
whohelped VERB
crate VERB
the DET
drug NOUN
. PUNCT
I PRON
discovered VERB
that SCONJ
Joseph PROPN
Fruton PROPN
is AUX
one NUM
of ADP
theresearchers NOUN
who PRON
helped VERB
create VERB
anabolic ADJ
steroids NOUN
. PUNCT
The DET
only ADJ
information NOUN
on ADP
this DET
person NOUN
I PRON
know VERB
is AUX
he PRON
was AUX
a DET
biochemist NOUN
that PRON
did AUX
research NOUN
in ADP
the DET
1930's NOUN
. PUNCT
I PRON
already ADV
did AUX
research NOUN
at ADP
my PRON
local ADJ
libraries NOUN
, PUNCT
but CCONJ
I PRON
still ADV
need VERB
moreinformation NOUN
. PUNCT
My PRON
instructor NOUN
is AUX
requiring VERB
resources NOUN
from ADP
the DET
computernetworks NOUN
. PUNCT
Please INTJ
write VERB
back ADV
concerning VERB
my PRON
subject NOUN
, PUNCT
any DET
books NOUN
, PUNCT
articles NOUN
, PUNCT
etc X
. PROPN
, PUNCT
will AUX
be AUX
appreciated VERB
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58856From NUM
: PUNCT
brein@jplpost.jpl.nasa.gov PROPN
( PUNCT
Barry PROPN
S. PROPN
Rein)Subject PROPN
: PUNCT
Need VERB
survival NOUN
data NOUN
on ADP
colon NOUN
cancerA PROPN
relative NOUN
of ADP
mine NOUN
was AUX
recently ADV
diagnosed VERB
with ADP
colon NOUN
cancer NOUN
. PUNCT
  SPACE
I PRON
would AUX
liketo VERB
know VERB
the DET
best ADJ
source NOUN
of ADP
survival NOUN
statistics NOUN
for ADP
this DET
disease NOUN
whendiscovered VERB
at ADP
its PRON
various ADJ
stages NOUN
. PUNCT
I PRON
would AUX
prefer VERB
to PART
be AUX
directed VERB
to ADP
a DET
recent ADJ
source NOUN
of ADP
this DET
data NOUN
, PUNCT
rather ADV
thanreceive VERB
the DET
data NOUN
itself PRON
. PUNCT
Thank VERB
you PRON
, PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                              SPACE
Barry PROPN
Rein PROPN
                                 SPACE
* PUNCT
* PUNCT
                       SPACE
brein@jplpost.jpl.nasa.gov NUM
                        SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                            SPACE
No DET
clever ADJ
comment NOUN
. PUNCT
                           SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58857From NUM
: PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk)Subject NUM
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5L9ws.Jn2@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>| PUNCT
> X
genes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
out>| ADP
> X
binding NOUN
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequence>>But PROPN
why ADV
do AUX
you PRON
characterize VERB
this DET
as SCONJ
a DET
" PUNCT
flight NOUN
of ADP
fancy NOUN
" PUNCT
or CCONJ
a DET
" PUNCT
fantasy"?The NUM
fantasy NOUN
was AUX
that SCONJ
he PRON
had AUX
found VERB
something PRON
of ADP
fundamental ADJ
importance NOUN
toone NOUN
of ADP
the DET
hot ADJ
questions NOUN
of ADP
the DET
day NOUN
( PUNCT
' NUM
77 NUM
) PUNCT
. PUNCT
  SPACE
He PRON
really ADV
had AUX
very ADV
littlereason NOUN
to PART
believe VERB
it PRON
, PUNCT
other ADJ
than SCONJ
raw ADJ
hope NOUN
. PUNCT
  SPACE
By ADP
fantasy NOUN
, PUNCT
I PRON
certainly ADV
don'tmean VERB
Velikovskian ADJ
manias.>some PROPN
other ADJ
theory NOUN
or CCONJ
domain NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
would AUX
offer VERB
some DET
rather ADV
well ADV
known VERB
examples NOUN
> X
such ADJ
as SCONJ
Toricelli PROPN
's PART
Puy PROPN
de X
Dome PROPN
experiment NOUN
done VERB
for ADP
the DET
sake NOUN
of ADP
his>"sea PROPN
of ADP
air NOUN
" PUNCT
hypothesis NOUN
. PUNCT
I'm PRON
not PART
familiar ADJ
with ADP
the DET
history NOUN
of ADP
this DET
experiment NOUN
, PUNCT
although SCONJ
, PUNCT
arguably ADV
, PUNCT
I PRON
should AUX
be.>"surprising"?>Well PROPN
, PUNCT
given VERB
the DET
* PUNCT
prior ADJ
* PUNCT
explanations NOUN
of ADP
the DET
phenomena NOUN
involved VERB
it PRON
certainly ADV
> X
be AUX
counted VERB
as SCONJ
so ADV
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
constructed VERB
( PUNCT
and CCONJ
the DET
experiment NOUN
designed)>out ADP
of ADP
" PUNCT
perfectly ADV
rational ADJ
grounds NOUN
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
there PRON
was AUX
a DET
pretty ADV
successful ADJ
and CCONJ
> X
well INTJ
know VERB
theory NOUN
of ADP
fluids NOUN
. PUNCT
  SPACE
The DET
analogy NOUN
to ADP
fluids NOUN
by ADP
Toricelli PROPN
is AUX
explicit.>The ADP
novelty NOUN
was AUX
in ADP
thinking NOUN
of ADP
air NOUN
as SCONJ
a DET
fluid NOUN
( PUNCT
but CCONJ
this DET
was AUX
* PUNCT
quite ADV
* PUNCT
a DET
novelty NOUN
> X
at ADP
the DET
time NOUN
) PUNCT
. PUNCT
  SPACE
Was AUX
the DET
theory NOUN
interesting ADJ
? PUNCT
  SPACE
Yes INTJ
. PUNCT
  SPACE
Was AUX
it PRON
" PUNCT
new ADJ
" PUNCT
? PUNCT
  SPACE
Well INTJ
, PUNCT
one NOUN
> X
could AUX
argue VERB
that SCONJ
it PRON
was AUX
merely ADV
the DET
extension NOUN
of ADP
an DET
existing VERB
theory NOUN
to ADP
a DET
new ADJ
> X
domain NOUN
, PUNCT
but CCONJ
I PRON
think VERB
this DET
begs VERB
certain ADJ
questions NOUN
. PUNCT
  SPACE
We PRON
can AUX
debate VERB
that SCONJ
if SCONJ
you PRON
> X
like INTJ
. PUNCT
I PRON
think VERB
that SCONJ
it PRON
is AUX
enough ADJ
if SCONJ
his PRON
contemporaries NOUN
found VERB
the DET
result NOUN
surprising ADJ
. PUNCT
That DET
's AUX
not PART
what PRON
I PRON
'd AUX
quibble VERB
about ADP
. PUNCT
  SPACE
What PRON
I PRON
'd AUX
like VERB
to PART
know VERB
are AUX
Toricelli'sreasons NOUN
for ADP
doing VERB
his PRON
experiment NOUN
; PUNCT
not PART
the DET
post X
hoc X
_ PROPN
constructed VERB
_ PROPN
reasons NOUN
, PUNCT
but CCONJ
the DET
thoughts NOUN
in ADP
his PRON
head NOUN
as SCONJ
he PRON
considered VERB
the DET
problem NOUN
. PUNCT
  SPACE
It PRON
may AUX
beimpossible VERB
to PART
know VERB
much ADJ
about ADP
Toricelli PROPN
's PART
thoughts NOUN
; PUNCT
that DET
's AUX
too ADV
bad ADJ
ifit NOUN
is AUX
so ADV
. PUNCT
  SPACE
One NUM
of ADP
Root PROPN
- PUNCT
Bernstein PROPN
's PART
services NOUN
to ADP
science NOUN
is AUX
that SCONJ
he PRON
has AUX
gonerooting VERB
about ADP
in ADP
Pasteur PROPN
's PART
and CCONJ
Fleming PROPN
's PART
( PUNCT
and CCONJ
other ADJ
people NOUN
's PART
) PUNCT
notes NOUN
, PUNCT
and CCONJ
hasdiscovered VERB
some DET
surprising ADJ
clues NOUN
about ADP
their PRON
motivations NOUN
. PUNCT
  SPACE
Pasteur PROPN
neverpublicly ADV
admitted VERB
his PRON
plan NOUN
to PART
create VERB
mirror NOUN
- PUNCT
image NOUN
life NOUN
, PUNCT
but CCONJ
the DET
dreams NOUN
areright NOUN
there ADV
in ADP
his PRON
notebooks NOUN
( PUNCT
finally ADV
public ADJ
after ADP
many ADJ
years NOUN
) PUNCT
, PUNCT
ready ADJ
foranyone NOUN
to PART
read VERB
. PUNCT
  SPACE
And CCONJ
I PRON
and CCONJ
my PRON
friends NOUN
often ADV
have AUX
the DET
most ADJ
ridiculousreasons NOUN
for ADP
pursuing VERB
results NOUN
; PUNCT
one NUM
of ADP
my PRON
best ADJ
came VERB
because SCONJ
I PRON
was AUX
mad ADJ
ata NOUN
colleague NOUN
for ADP
a DET
poorly ADV
- PUNCT
written VERB
claim NOUN
( PUNCT
I PRON
disproved VERB
the DET
claim).Of ADJ
course NOUN
, PUNCT
Toricelli PROPN
's PART
case NOUN
may AUX
be AUX
an DET
example NOUN
of ADP
a DET
rarety NOUN
: PUNCT
where ADV
thefantasy NOUN
not PART
only ADV
motivates VERB
the DET
experiment NOUN
, PUNCT
but CCONJ
turns VERB
out ADP
to PART
be AUX
rightin PROPN
the DET
end NOUN
. PUNCT
Mark-- PROPN
Mark PROPN
A. PROPN
Fulk PROPN
			 SPACE
University PROPN
of ADP
RochesterComputer PROPN
Science PROPN
Department PROPN
	 SPACE
fulk@cs.rochester.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58858From NUM
: PUNCT
sdbsd5@cislabs.pitt.edu PROPN
( PUNCT
Stephen PROPN
D PROPN
Brener)Subject PROPN
: PUNCT
Japanese ADJ
for ADP
Scientists PROPN
and CCONJ
Engineers PROPN
    SPACE
INTENSIVE VERB
JAPANESE ADJ
AT ADP
THE DET
UNIVERSITY NOUN
OF ADP
PITTSBURGH PROPN
THIS PROPN
SUMMER NOUN
    SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^The PUNCT
University PROPN
of ADP
Pittsburgh PROPN
is AUX
offering VERB
two NUM
intensive ADJ
Japanese ADJ
languagecourses NOUN
this DET
summer NOUN
. PUNCT
  SPACE
Both DET
courses NOUN
, PUNCT
Intensive ADJ
Elementary PROPN
Japanese ADJ
and CCONJ
Intensive ADJ
Intermediate PROPN
Japanese PROPN
, PUNCT
are AUX
ten NUM
week NOUN
, PUNCT
ten NUM
credit NOUN
courses NOUN
each DET
equivalent ADJ
to ADP
one NUM
full ADJ
year NOUN
of ADP
Japanese ADJ
language NOUN
study NOUN
. PUNCT
  SPACE
They PRON
begin VERB
June PROPN
7 NUM
and CCONJ
end VERB
August PROPN
13 NUM
. PUNCT
  SPACE
The DET
courses NOUN
meet VERB
five NUM
days NOUN
per ADP
week NOUN
, PUNCT
five NUM
hours NOUN
per ADP
day NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
flat ADJ
rate NOUN
tuition NOUN
charge NOUN
of ADP
$ SYM
1600 NUM
per ADP
course NOUN
. PUNCT
  SPACE
Fellowships NOUN
available ADJ
for ADP
science NOUN
and CCONJ
engineering NOUN
students NOUN
. PUNCT
  SPACE
Contact PROPN
Steven PROPN
Brener PROPN
, PUNCT
Program PROPN
Manager PROPN
of ADP
the DET
Japanese PROPN
Science PROPN
and CCONJ
TechnologyManagement PROPN
Program PROPN
, PUNCT
at ADP
the DET
University PROPN
of ADP
Pittsburgh PROPN
at ADP
the DET
number NOUN
oraddress ADV
below ADV
. PUNCT
  SPACE
ALL DET
INTERESTED ADJ
INDIVIDUALS NOUN
ARE VERB
ENCOURAGED VERB
TO PART
APPLY VERB
, PUNCT
THIS DET
IS VERB
NOT ADV
LIMITED ADJ
TO PART
UNIVERSITY VERB
STUDENTS NOUN
. PUNCT
  SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
   SPACE
New PROPN
Program PROPN
Announcement PROPN
   SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
            SPACE
JAPANESE ADJ
SCIENCE PROPN
AND CCONJ
TECHNOLOGY PROPN
MANAGEMENT PROPN
PROGRAMThe ADJ
Japanese PROPN
Science PROPN
and CCONJ
Technology PROPN
Management PROPN
Program PROPN
( PUNCT
JSTMP PROPN
) PUNCT
is AUX
a DET
newprogram NOUN
jointly ADV
developed VERB
by ADP
the DET
University PROPN
of ADP
Pittsbugh PROPN
and CCONJ
Carnegie PROPN
Mellon PROPN
University PROPN
. PUNCT
  SPACE
Students NOUN
and CCONJ
professionals NOUN
in ADP
the DET
engineering NOUN
and CCONJ
scientific ADJ
communitites NOUN
are AUX
encouraged VERB
to PART
apply VERB
for ADP
classes NOUN
commencing VERB
in ADP
June PROPN
1993 NUM
and CCONJ
January PROPN
1994.PROGRAM PUNCT
OBJECTIVESThe ADJ
program NOUN
intends VERB
to PART
promote VERB
technology NOUN
transfer NOUN
between ADP
Japan PROPN
and CCONJ
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
designed VERB
to PART
let VERB
scientists NOUN
, PUNCT
engineers NOUN
, PUNCT
and CCONJ
managersexperience VERB
how ADV
the DET
Japanese PROPN
proceed VERB
with ADP
technological ADJ
development NOUN
. PUNCT
  SPACE
This DET
is AUX
facilitated VERB
by ADP
extended ADJ
internships NOUN
in ADP
Japanese ADJ
research NOUN
facilities NOUN
andlaboratories NOUN
that PRON
provide VERB
participants NOUN
with ADP
the DET
opportunity NOUN
to ADP
developlong ADJ
- PUNCT
term NOUN
professional ADJ
relationships NOUN
with ADP
their PRON
Japanese ADJ
counterparts NOUN
. PUNCT
PROGRAM NOUN
DESIGNTo NOUN
fulfill VERB
the DET
objectives NOUN
of ADP
the DET
program NOUN
, PUNCT
participants NOUN
will AUX
be AUX
required VERB
to PART
develop VERB
advanced ADJ
language NOUN
capability NOUN
and CCONJ
a DET
deep ADJ
understanding NOUN
of ADP
Japan PROPN
andits VERB
culture NOUN
. PUNCT
  SPACE
Correspondingly ADV
, PUNCT
JSTMP PROPN
consists VERB
of ADP
three NUM
major ADJ
components:1 PROPN
. PUNCT
TRAINING NOUN
IN ADP
THE DET
JAPANESE ADJ
LANGUAGESeveral ADJ
Japanese ADJ
language NOUN
courses NOUN
will AUX
be AUX
offered VERB
, PUNCT
including VERB
intensive ADJ
coursesdesigned VERB
to ADP
expedite ADJ
language NOUN
preparation NOUN
for ADP
scientists NOUN
and CCONJ
engineers NOUN
in ADP
arelatively ADV
short ADJ
time.2 NOUN
. PUNCT
EDUCATION PROPN
IN ADP
JAPANESE ADJ
BUSINESS NOUN
AND CCONJ
SOCIAL PROPN
CULTUREA VERB
particular ADJ
enphasis NOUN
is AUX
placed VERB
on ADP
attaining VERB
a DET
deep ADJ
understanding NOUN
of ADP
thecultural ADJ
and CCONJ
educational ADJ
basis NOUN
of ADP
Japanese ADJ
management NOUN
approaches NOUN
in ADP
manufacturing NOUN
and CCONJ
information NOUN
technology NOUN
. PUNCT
  SPACE
Courses NOUN
will AUX
be AUX
available ADJ
in ADP
a DET
variety NOUN
of ADP
departments NOUN
throughout ADP
both DET
universities NOUN
including VERB
Anthropology PROPN
, PUNCT
Sociology NOUN
, PUNCT
History NOUN
, PUNCT
and CCONJ
Political PROPN
Science PROPN
. PUNCT
  SPACE
Moreover ADV
, PUNCT
seminars NOUN
and CCONJ
colloquiumswill ADV
be AUX
conducted VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
a DET
field NOUN
trip NOUN
to ADP
Japanese ADJ
manufacturing NOUN
or CCONJ
research NOUN
facilities NOUN
in ADP
the DET
United PROPN
States PROPN
will AUX
be AUX
scheduled.3 PROPN
. PUNCT
AN DET
INTERNSHIP NOUN
OR CCONJ
A DET
STUDY NOUN
MISSION NOUN
IN ADP
JAPANUpon ADJ
completion NOUN
of ADP
their PRON
language NOUN
and CCONJ
cultural ADJ
training NOUN
at ADP
PITT PROPN
and CCONJ
CMU PROPN
, PUNCT
participants NOUN
will AUX
have AUX
the DET
opportunity NOUN
to PART
go VERB
to ADP
Japan PROPN
and CCONJ
observe VERB
, PUNCT
and CCONJ
participate VERB
in ADP
the DET
management NOUN
of ADP
technology NOUN
. PUNCT
  SPACE
Internships PROPN
in ADP
Japanwill PROPN
generally ADV
run VERB
for ADP
one NUM
year NOUN
; PUNCT
however ADV
, PUNCT
shorter ADJ
ones NOUN
are AUX
possible ADJ
. PUNCT
FELLOWSHIPS PROPN
COVERING VERB
TUITION NOUN
FOR ADP
LANGUAGE PROPN
AND CCONJ
CULTURE NOUN
COURSES NOUN
, PUNCT
AS ADP
WELL NOUN
ASSTIPENDS VERB
FOR ADP
LIVING NOUN
EXPENSES NOUN
ARE VERB
AVAILABLE ADJ
. PUNCT
        SPACE
FOR ADP
MORE ADJ
INFORMATION NOUN
AND CCONJ
APPLICATION NOUN
MATERIALS NOUN
CONTACTSTEVEN VERB
BRENER NOUN
				 SPACE
SUSIE ADJ
BROWNJSTMP PROPN
					 SPACE
Carnegie PROPN
Mellon PROPN
University PROPN
, PUNCT
GSIAUniversity NOUN
of ADP
Pittsburgh PROPN
		 SPACE
Pittsburgh PROPN
, PUNCT
PA PROPN
15213 NUM
- PUNCT
38904E25 NOUN
Forbes PROPN
Quadrangle PROPN
			 SPACE
Telephone NOUN
: PUNCT
( PUNCT
412 NUM
) PUNCT
268 NUM
- SYM
7806Pittsburgh PROPN
, PUNCT
PA PROPN
15260 NUM
			 SPACE
FAX NOUN
: PUNCT
	    SPACE
( PUNCT
412 NUM
) PUNCT
268 NUM
- PUNCT
8163Telephone NUM
: PUNCT
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
7414 NUM
		 SPACE
FAX PROPN
: PUNCT
       SPACE
( PUNCT
412 NUM
) PUNCT
648 NUM
- SYM
2199 NUM
		 SPACE
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# NOUN
Interested ADJ
individuals NOUN
, PUNCT
companies NOUN
and CCONJ
institutions NOUN
should AUX
respond VERB
by ADP
phone NOUN
ormail NOUN
. PUNCT
  SPACE
Please INTJ
do AUX
not PART
inquire VERB
via ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
Please INTJ
note VERB
that SCONJ
this DET
is AUX
directed VERB
at ADP
grads NOUN
and CCONJ
professionals NOUN
, PUNCT
however ADV
, PUNCT
advancedundergrads NOUN
will AUX
be AUX
considered VERB
. PUNCT
  SPACE
Further ADV
, PUNCT
funding NOUN
is AUX
resticted VERB
to ADP
US PROPN
citizensand NOUN
permanent ADJ
residents NOUN
of ADP
the DET
US.Steve PROPN
BrenerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58859From NUM
: PUNCT
georgec@eng.umd.edu PROPN
( PUNCT
George PROPN
B. PROPN
Clark)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EndometriosisYou PROPN
may AUX
want VERB
to PART
inquire VERB
about ADP
taking VERB
Lupron PROPN
as SCONJ
a DET
medication NOUN
. PUNCT
It'ssupposed VERB
to PART
be AUX
a DET
new ADJ
treatment NOUN
, PUNCT
and CCONJ
it PRON
's AUX
described VERB
in ADP
Nov. PROPN
1992issue NUM
of ADP
J. PROPN
of ADP
Obst PROPN
. PUNCT
and CCONJ
Gyn PROPN
. PUNCT
Lupron PROPN
is AUX
taken VERB
as SCONJ
a DET
monthly ADJ
injection NOUN
, PUNCT
whereas SCONJ
other ADJ
drugs NOUN
suchas PROPN
danazol PROPN
are AUX
taken VERB
daily ADV
as SCONJ
pills NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58860From NUM
: PUNCT
cps@generali.harvard.edu PROPN
( PUNCT
Chris PROPN
Schaeffer)Subject NUM
: PUNCT
Re ADP
: PUNCT
EugenicsIn PROPN
article NOUN
< X
19617@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible.>[ NOUN
... PUNCT
should AUX
] PUNCT
we PRON
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADJ
- PUNCT
lived,>Arnold NOUN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can.>---------------------------------------------------------------------------->Gordon VERB
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
---------------------------------------------------------------------------- PUNCT
	 SPACE
Two NUM
thoughts NOUN
. PUNCT
	 SPACE
- PUNCT
I PRON
think VERB
that SCONJ
psychologically ADV
it PRON
will AUX
be AUX
easier ADJ
for ADP
the DET
next ADJ
generation NOUN
to PART
accept VERB
genetic ADJ
manipulation NOUN
. PUNCT
  SPACE
It PRON
seems VERB
that SCONJ
people NOUN
frownupon ADP
' PUNCT
messing NOUN
with ADP
Nature PROPN
' PUNCT
, PUNCT
ignoring VERB
our PRON
eons NOUN
- PUNCT
old ADJ
practice NOUN
of ADP
doing VERB
just ADV
that DET
. PUNCT
Any DET
new ADJ
human ADJ
intervention NOUN
is AUX
' PUNCT
arrogance NOUN
and CCONJ
hubris PROPN
' PUNCT
and CCONJ
manipulationwe PROPN
routinely ADV
do AUX
is AUX
' PUNCT
natural ADJ
' PUNCT
and CCONJ
certainly ADV
' PUNCT
not PART
a DET
big ADJ
deal NOUN
' PUNCT
. PUNCT
	 SPACE
- PUNCT
Most ADV
interesting ADJ
human ADJ
traits NOUN
will AUX
probably ADV
be AUX
massivelypolygenetic ADJ
and CCONJ
be AUX
full ADJ
of ADP
trade NOUN
- PUNCT
offs NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
without ADP
a DET
positivesocial ADJ
environment NOUN
for ADP
the DET
cultivation NOUN
of ADP
genetic ADJ
gifts NOUN
, PUNCT
having VERB
them PRON
won'tbe ADV
the DET
advantage NOUN
it PRON
's AUX
made VERB
out ADP
to PART
be AUX
. PUNCT
  SPACE
Some DET
people NOUN
will AUX
certainly ADV
pursue VERB
itas PROPN
if SCONJ
it PRON
is AUX
the DET
Grail PROPN
, PUNCT
but CCONJ
we PRON
know VERB
how ADV
most ADJ
of ADP
those DET
quests NOUN
turn VERB
out ADP
. PUNCT
Chris PROPN
Schaeffer PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58861From NUM
: PUNCT
akins@cbnewsd.cb.att.com PROPN
( PUNCT
kay.a.akins)Subject NOUN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
PAULSON.93Apr15082558@cmb00.larc.nasa.gov NUM
> X
, PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
am AUX
posting VERB
to ADP
this DET
group NOUN
in ADP
hopes NOUN
of ADP
finding VERB
someone PRON
out ADV
there ADV
in ADP
> NUM
network NOUN
newsland NOUN
who PRON
has AUX
heard VERB
of ADP
something PRON
similar ADJ
to ADP
what PRON
I PRON
am AUX
going VERB
> X
to PART
describe VERB
here ADV
. PUNCT
  SPACE
I PRON
have AUX
a DET
fourteen NUM
year NOUN
old ADJ
daugter ADV
who PRON
experienced VERB
> X
a DET
seizure NOUN
on ADP
November PROPN
3 NUM
, PUNCT
1992 NUM
at ADP
6:45AM NUM
after ADP
eating VERB
Kellog PROPN
's PART
Frosted PROPN
> X
Flakes PROPN
. PUNCT
  SPACE
She PRON
is AUX
perfectly ADV
healthy ADJ
, PUNCT
had AUX
never ADV
experienced VERB
anything PRON
like SCONJ
> X
this DET
before ADV
, PUNCT
and CCONJ
there PRON
is AUX
no DET
history NOUN
of ADP
seizures NOUN
in ADP
either DET
side NOUN
of ADP
the DET
> PROPN
family NOUN
. PUNCT
  SPACE
All DET
the DET
tests NOUN
( PUNCT
EEG PROPN
, PUNCT
MRI PROPN
, PUNCT
EKG PROPN
) PUNCT
came VERB
out ADP
negative ADJ
so SCONJ
the DET
decision NOUN
> X
was AUX
made VERB
to PART
do AUX
nothing PRON
and CCONJ
just ADV
wait VERB
to PART
see VERB
if SCONJ
it PRON
happened VERB
again ADV
. PUNCT
> X
> X
Well INTJ
, PUNCT
we PRON
were AUX
going VERB
along ADP
fine ADJ
and CCONJ
the DET
other ADJ
morning NOUN
, PUNCT
April PROPN
5 NUM
, PUNCT
she PRON
had AUX
> X
a DET
bowl NOUN
of ADP
another DET
Kellog PROPN
's PART
frosted ADJ
kind NOUN
of ADP
cereal NOUN
, PUNCT
Fruit PROPN
Loops PROPN
( PUNCT
I PRON
am AUX
> X
embarrassed VERB
to PART
admit VERB
that SCONJ
I PRON
even ADV
bought VERB
that DET
junk NOUN
but CCONJ
every DET
once ADV
> X
in ADP
a DET
while NOUN
... PUNCT
) PUNCT
So ADV
I PRON
pour VERB
it PRON
in ADP
her PRON
bowl NOUN
and CCONJ
think VERB
" PUNCT
Oh INTJ
, PUNCT
oh INTJ
, PUNCT
this DET
is AUX
the DET
> X
same ADJ
kind NOUN
of ADP
junk NOUN
she PRON
was AUX
eating VERB
when ADV
she PRON
had AUX
that DET
seizure NOUN
. PUNCT
" PUNCT
  SPACE
Ten NUM
> X
minutes NOUN
later ADV
she PRON
had AUX
a DET
full ADJ
blown VERB
seizures NOUN
. PUNCT
This DET
was AUX
her PRON
first ADJ
exposure NOUN
> X
to ADP
a DET
sugar NOUN
coated VERB
cereal NOUN
since SCONJ
the DET
last ADJ
seizure NOUN
....... PUNCT
My PRON
daughter NOUN
has AUX
Epilepsy PROPN
and CCONJ
I PRON
attend VERB
a DET
monthly ADJ
parent NOUN
support NOUN
group NOUN
. PUNCT
Just ADV
Wednesday PROPN
night NOUN
, PUNCT
a DET
mother NOUN
was AUX
telling VERB
how ADV
she PRON
decided VERB
to PART
throwall VERB
the DET
junk NOUN
food NOUN
out ADP
and CCONJ
see VERB
if SCONJ
it PRON
made VERB
a DET
difference NOUN
in ADP
her PRON
13 NUM
year NOUN
- PUNCT
old'sseizures NOUN
. PUNCT
  SPACE
He PRON
was AUX
having VERB
about ADP
one NUM
seizure NOUN
per ADP
week NOUN
. PUNCT
  SPACE
She PRON
reported VERB
thatshe PRON
did AUX
this DET
on ADP
Thursday PROPN
( PUNCT
3/11 NUM
) PUNCT
, PUNCT
he PRON
had AUX
a DET
seizure NOUN
on ADP
Saturday PROPN
and CCONJ
thenwent NOUN
4 NUM
weeks NOUN
without ADP
a DET
seizure NOUN
! PUNCT
! PUNCT
  SPACE
On ADP
Easter PROPN
he PRON
went VERB
to ADP
Grandma PROPN
's PART
and CCONJ
ate VERB
candy NOUN
, PUNCT
pop NOUN
- PUNCT
anything PRON
he PRON
wanted VERB
. PUNCT
  SPACE
He PRON
had AUX
a DET
seizure NOUN
the DET
next ADJ
day NOUN
. PUNCT
  SPACE
She PRON
sees VERB
sensitivity NOUN
to ADP
nutrasweet PROPN
, PUNCT
sugar NOUN
, PUNCT
colors NOUN
, PUNCT
caffine NOUN
and CCONJ
corn NOUN
. PUNCT
  SPACE
Withcorn PROPN
she PRON
says VERB
, PUNCT
he PRON
gets VERB
very ADV
nervous ADJ
and CCONJ
aggresive ADJ
. PUNCT
  SPACE
With ADP
my PRON
own ADJ
daughter NOUN
( PUNCT
age NOUN
7 NUM
) PUNCT
, PUNCT
I PRON
think VERB
she PRON
is AUX
also ADV
sensitive ADJ
and CCONJ
staysaway NOUN
from ADP
those DET
foods NOUN
on ADP
her PRON
own ADJ
. PUNCT
  SPACE
She PRON
has AUX
never ADV
had VERB
gum NOUN
, PUNCT
wo AUX
n't PART
eatcandy VERB
, PUNCT
prefers VERB
an DET
apple NOUN
to ADP
a DET
cookie NOUN
, PUNCT
does AUX
n't PART
like VERB
chocolate NOUN
and CCONJ
won'teven NUM
use VERB
toothpaste NOUN
! PUNCT
! PUNCT
! PUNCT
  SPACE
Her PRON
brother NOUN
, PUNCT
on ADP
the DET
other ADJ
hand NOUN
, PUNCT
is AUX
a DET
junk NOUN
foodaddict NOUN
! PUNCT
  SPACE
Hope PROPN
this DET
helps VERB
. PUNCT
  SPACE
Good PROPN
Luck PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58862From NUM
: PUNCT
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel)Subject NUM
: PUNCT
Bouncing VERB
LymeNet PROPN
newsletters NOUN
... PUNCT
The DET
following VERB
4 NUM
addresses NOUN
are AUX
on ADP
the DET
LymeNet PROPN
mailing NOUN
list NOUN
, PUNCT
but CCONJ
are AUX
rejectingmail ADJ
. PUNCT
  SPACE
Since SCONJ
the DET
list NOUN
server NOUN
originally ADV
accepted VERB
these DET
addresses NOUN
successfully ADV
, PUNCT
I PRON
assume VERB
these DET
addresses NOUN
have AUX
since SCONJ
been AUX
eliminated VERB
. PUNCT
  SPACE
Improperly ADJ
functioningmail NOUN
gateways NOUN
might AUX
also ADV
be AUX
responsible ADJ
. PUNCT
If SCONJ
you PRON
are AUX
listed VERB
here ADV
and CCONJ
would AUX
still ADV
like VERB
to PART
remain VERB
on ADP
the DET
list NOUN
, PUNCT
pleasewrite VERB
to ADP
me PRON
. PUNCT
  SPACE
Otherwise ADV
, PUNCT
I PRON
will AUX
remove VERB
these DET
addresses NOUN
from ADP
the DET
list NOUN
before ADP
thenext NOUN
newsletter NOUN
goes VERB
out ADP
. PUNCT
As SCONJ
a DET
general ADJ
rule NOUN
, PUNCT
please INTJ
remember VERB
to PART
* PUNCT
unsubscribe VERB
* PUNCT
from ADP
all DET
your PRON
mailinglists NOUN
before ADP
your PRON
account NOUN
is AUX
closed ADJ
. PUNCT
  SPACE
This DET
will AUX
save VERB
the DET
listserv ADJ
maintainerfrom ADP
many ADJ
headaches NOUN
. PUNCT
Lezliel@Sitka NOUN
. PUNCT
Sun PROPN
. PUNCT
COMKenneth_R_Hall@Roch817.Xerox PROPN
. PUNCT
COMWestmx!ayoub@uunet.uu.netAbsol.absol.com!rsb@panix PROPN
. PUNCT
COM-- NOUN
----------------------------------------------------------------------- PUNCT
              SPACE
Marc PROPN
C. PROPN
Gabriel PROPN
        SPACE
- PUNCT
  SPACE
U.C. PROPN
Box PROPN
545 NUM
  SPACE
- PUNCT
              SPACE
( PUNCT
215 NUM
) PUNCT
882 NUM
- SYM
0138 NUM
         SPACE
Lehigh PROPN
UniversityNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58863From NUM
: PUNCT
andersom@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Marc PROPN
Anderson)Subject NUM
: PUNCT
Miracle NOUN
Berries PROPN
anyone?[From ADP
Kalat PROPN
, PUNCT
J.W PROPN
.. PUNCT
( PUNCT
1992 NUM
) PUNCT
: PUNCT
  SPACE
_ PROPN
Biological PROPN
Psychology PROPN
_ PROPN
. PUNCT
Wadsworth PROPN
Publishing PROPN
Co PROPN
. PUNCT
Belmont PROPN
, PUNCT
CA PROPN
. PUNCT
  SPACE
Pg PROPN
. PROPN
219 NUM
. PUNCT
  SPACE
Reproduced VERB
without ADP
permission.]Digression NOUN
6.1 NUM
: PUNCT
  SPACE
Miracle PROPN
Berries PROPN
and CCONJ
the DET
Modification PROPN
of ADP
Taste PROPN
ReceptorsAlthough PROPN
the DET
_ PROPN
miracle NOUN
berry PROPN
_ PROPN
, PUNCT
a DET
plant NOUN
native ADJ
to ADP
West PROPN
Africa PROPN
is AUX
practicallytasteless NOUN
, PUNCT
it PRON
temporarily ADV
changes VERB
the DET
taste NOUN
of ADP
other ADJ
substances NOUN
. PUNCT
  SPACE
Miracleberries PROPN
contain VERB
a DET
protein NOUN
, PUNCT
_ PROPN
miraculin PROPN
_ PROPN
, PUNCT
that SCONJ
modifies VERB
sweet ADJ
receptors NOUN
insuch ADP
a DET
way NOUN
that PRON
they PRON
can AUX
be AUX
stimulated VERB
by ADP
acids NOUN
( PUNCT
Bartoshuk PROPN
, PUNCT
Gentile PROPN
, PUNCT
Moskowitz PROPN
, PUNCT
& CCONJ
Meiselman PROPN
, PUNCT
1974 NUM
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
ever ADV
get VERB
a DET
chance NOUN
to PART
chew VERB
a DET
miracleberry NOUN
( PUNCT
and CCONJ
I PRON
do AUX
recommend VERB
it PRON
) PUNCT
, PUNCT
for ADP
about ADP
the DET
next ADJ
half DET
an DET
hour NOUN
all DET
acids NOUN
( PUNCT
which PRON
are AUX
normally ADV
sour ADJ
) PUNCT
will AUX
taste VERB
sweet PROPN
. PUNCT
  SPACE
They PRON
will AUX
continue VERB
to PART
tastesour VERB
as ADV
well ADV
. PUNCT
Miraculin PROPN
was AUX
, PUNCT
for ADP
a DET
time NOUN
, PUNCT
commercially ADV
available ADJ
in ADP
the DET
United PROPN
States PROPN
as SCONJ
adiet ADJ
aid NOUN
. PUNCT
  SPACE
The DET
idea NOUN
was AUX
that SCONJ
dieters NOUN
could AUX
coat VERB
their PRON
tongue NOUN
with ADP
a DET
miraculinpill NOUN
and CCONJ
then ADV
eat VERB
and CCONJ
drink VERB
unsweetened ADJ
, PUNCT
slightly ADV
acidic ADJ
substances NOUN
. PUNCT
  SPACE
Suchsubstances NOUN
would AUX
taste VERB
sweet PROPN
without ADP
providing VERB
many ADJ
calories NOUN
. PUNCT
A DET
colleague NOUN
and CCONJ
I PRON
once ADV
spent VERB
an DET
evening NOUN
experimenting VERB
with ADP
miracle NOUN
berries NOUN
. PUNCT
We PRON
drank VERB
straight ADJ
lemon NOUN
juice NOUN
, PUNCT
sauerkraut NOUN
juice PROPN
, PUNCT
even ADV
vinegar NOUN
. PUNCT
  SPACE
All DET
tastedextremely ADV
sweet ADJ
. PUNCT
  SPACE
Somehow ADV
we PRON
forgot VERB
how ADV
acidic ADJ
these DET
substances NOUN
are AUX
. PUNCT
  SPACE
We PRON
awoke VERB
the DET
next ADJ
day NOUN
to PART
find VERB
our PRON
mouths NOUN
full ADJ
of ADP
ulcers NOUN
. PUNCT
[ PUNCT
... PUNCT
continued VERB
discussion NOUN
of ADP
a DET
couple NOUN
other ADJ
taste NOUN
- PUNCT
altering VERB
substances NOUN
... PUNCT
] PUNCT
Refs NOUN
: PUNCT
  SPACE
Bartoshuk PROPN
, PUNCT
L.M. PROPN
, PUNCT
Gentile PROPN
, PUNCT
R.L. PROPN
, PUNCT
Moskowitz PROPN
, PUNCT
H.R. PROPN
, PUNCT
& CCONJ
Meiselman PROPN
, PUNCT
H.L. PROPN
  SPACE
( PUNCT
1974 NUM
) PUNCT
: PUNCT
   SPACE
Sweet PROPN
taste NOUN
induced VERB
by ADP
miracle NOUN
fruit NOUN
( PUNCT
_ DET
Synsephalum PROPN
dulcificum NOUN
_ PROPN
) PUNCT
. PUNCT
    SPACE
_ PROPN
Physiology PROPN
& CCONJ
Behavior PROPN
_ PROPN
. PUNCT
  SPACE
12(6):449 NUM
- PUNCT
456.-------------Anyone NUM
ever ADV
hear VERB
of ADP
these DET
things NOUN
or CCONJ
know VERB
where ADV
to PART
get AUX
them?-marcandersom@spot.colorado.eduNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58864From NUM
: PUNCT
vonwaadn@kuhub.cc.ukans.eduSubject NOUN
: PUNCT
Panic NOUN
Disorder NOUN
- PUNCT
more ADJ
success NOUN
storiesI PROPN
posted VERB
this DET
to ADP
sci.psychology PROPN
on ADP
April PROPN
3 NUM
, PUNCT
and CCONJ
after ADP
seeingyour ADJ
post NOUN
here ADV
on ADP
panice NOUN
disorder NOUN
thought VERB
it PRON
would AUX
berelevant.-----My VERB
research NOUN
indicates VERB
that SCONJ
two NUM
schools NOUN
of ADP
thought NOUN
exist.the PROPN
literature PROPN
promoting VERB
medication NOUN
says VERB
it PRON
's AUX
the DET
superiortreatment NOUN
. PUNCT
  SPACE
Not PART
surprisingly ADV
, PUNCT
literature VERB
promoting VERB
cognitivetherapy NOUN
also ADV
claims VERB
to PART
be AUX
superior ADJ
. PUNCT
What PRON
are AUX
the DET
facts NOUN
? PUNCT
  SPACE
Early ADV
in ADP
my PRON
research NOUN
I PRON
did AUX
n't PART
have AUX
abias NOUN
towards ADP
either DET
medication NOUN
or CCONJ
cognitive ADJ
therapy NOUN
. PUNCT
  SPACE
Iwas PROPN
interested ADJ
in ADP
a DET
treatment NOUN
that PRON
worked VERB
. PUNCT
  SPACE
After ADP
readingjournals NOUN
published VERB
after ADP
1986 NUM
, PUNCT
the DET
cognitive ADJ
therapy NOUN
campclaims VERB
a DET
higher ADJ
success NOUN
rate NOUN
( PUNCT
approx NOUN
80 NUM
% NOUN
) PUNCT
, PUNCT
a DET
lower ADJ
drop NOUN
- PUNCT
outrate NOUN
, PUNCT
and CCONJ
no DET
side NOUN
effects NOUN
associated VERB
with ADP
medication NOUN
. PUNCT
Lars PROPN
- PUNCT
Goran PROPN
Ost PROPN
published VERB
an DET
excellent ADJ
article NOUN
titled"Applied ADJ
Relaxation NOUN
: PUNCT
Description NOUN
of ADP
a DET
coping VERB
technique NOUN
anda NOUN
review NOUN
of ADP
controlled VERB
studies NOUN
. PUNCT
" PUNCT
  SPACE
This DET
is AUX
from ADP
Behav PROPN
. PUNCT
Res INTJ
. PUNCT
Ther PROPN
. PUNCT
,vol PROPN
. PUNCT
25 NUM
, PUNCT
no INTJ
. PROPN
5 NUM
, PUNCT
pp PROPN
. PROPN
397 NUM
- SYM
409 NUM
, PUNCT
1987 NUM
. PUNCT
  SPACE
The DET
article NOUN
providesinstructions NOUN
on ADP
how ADV
to PART
perform VERB
applied ADJ
relaxation NOUN
( PUNCT
AR).Briefly INTJ
, PUNCT
you PRON
start VERB
with ADP
two NUM
15 NUM
minute NOUN
sessions NOUN
daily ADV
, PUNCT
andprogress NOUN
in ADP
8 NUM
- SYM
12 NUM
weeks NOUN
to ADP
performing VERB
10 NUM
- SYM
15 NUM
thirty NUM
second ADJ
sessionsdaily ADV
. PUNCT
I'll PROPN
snail ADJ
mail NOUN
this DET
article NOUN
to ADP
anyone PRON
interested ADJ
( PUNCT
USA PROPN
only ADV
please;International ADJ
please INTJ
pay VERB
for ADP
postage).Markvonwaadn@kuhub.cc.ukans.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58865From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?I'm PROPN
told VERB
that DET
corn NOUN
allergy NOUN
is AUX
fairly ADV
common ADJ
. PUNCT
  SPACE
My PRON
wife NOUN
has AUX
it PRON
and CCONJ
it PRON
seemsto NOUN
be AUX
exacerbated VERB
if SCONJ
sugar NOUN
is AUX
eaten VERB
with ADP
the DET
corn NOUN
. PUNCT
I PRON
suppose VERB
that SCONJ
in ADP
a DET
person NOUN
just ADV
on ADP
the DET
verge NOUN
of ADP
having VERB
epilepsy NOUN
, PUNCT
anallergic ADJ
reaction NOUN
might AUX
cause VERB
a DET
seizure NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
really ADV
know VERB
. PUNCT
Gordon?-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58866Subject NUM
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
From ADP
: PUNCT
keith@actrix.gen.nz PROPN
( PUNCT
Keith PROPN
Stewart)My VERB
wife NOUN
has AUX
become VERB
interested ADJ
through ADP
an DET
acquaintance NOUN
in ADP
Post PROPN
- PROPN
Polio PROPN
SyndromeThis PROPN
apparently ADV
is AUX
not PART
recognised VERB
in ADP
New PROPN
Zealand PROPN
and CCONJ
different ADJ
symptons NOUN
( PUNCT
egchest ADJ
complaints NOUN
) PUNCT
are AUX
treated VERB
separately ADV
. PUNCT
Does AUX
anone NOUN
have AUX
any DET
information NOUN
onitThanksKeithNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58867From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?Carl PROPN
Lydick PROPN
: PUNCT
> X
And CCONJ
you PRON
're AUX
condemning VERB
one NUM
particular ADJ
ingredient NOUN
without ADP
any DET
> X
evidence NOUN
that SCONJ
that DET
's AUX
the DET
ingredient NOUN
to PART
which PRON
you PRON
reacted VERB
. PUNCT
Believe VERB
what PRON
you PRON
will AUX
. PUNCT
The DET
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
ofa NOUN
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disprovingthe NOUN
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
themost NOUN
likely ADJ
explanation NOUN
for ADP
events NOUN
. PUNCT
SteveNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58868From NUM
: PUNCT
Simon.N.McRae@dartmouth.edu PROPN
( PUNCT
Simon PROPN
N PROPN
McRae)Subject PROPN
: PUNCT
re ADP
: PUNCT
hepatitis PROPN
- PUNCT
bIn PROPN
article NOUN
< X
1993Apr14.4274.32512@dosgate>russell.sinclair-day@canrem.com X
( PUNCT
russell PROPN
sinclair PROPN
- PUNCT
day NOUN
) PUNCT
writes VERB
: PUNCT
> X
What PRON
we PRON
are AUX
really ADV
worried ADJ
about ADP
is AUX
not PART
knowing VERB
the DET
facts NOUN
. PUNCT
The DET
doctor NOUN
> X
has AUX
stated VERB
that SCONJ
things NOUN
will AUX
not PART
be AUX
good ADJ
if SCONJ
she PRON
is AUX
a DET
carrier NOUN
and CCONJ
avoids NOUN
> X
further ADJ
questions NOUN
on ADP
the DET
subject NOUN
. PUNCT
We PRON
really ADV
would AUX
like VERB
to PART
know VERB
so ADV
we PRON
> X
can AUX
take VERB
steps NOUN
and CCONJ
plan VERB
in ADP
advance NOUN
for ADP
any DET
eventualities NOUN
. PUNCT
> X
> X
Thank VERB
- PUNCT
you PRON
for ADP
your PRON
very ADV
informative ADJ
post NOUN
. PUNCT
Right ADV
now ADV
I PRON
am AUX
just ADV
trying VERB
> X
to PART
find VERB
out ADP
everything PRON
that PRON
I PRON
can AUX
. PUNCT
> X
> X
                         SPACE
Russ PROPN
. PUNCT
Unfortunately ADV
, PUNCT
Hep PROPN
B PROPN
infection NOUN
can AUX
eventuate VERB
in ADP
chronic ADJ
hepatitis NOUN
andsubsequent NOUN
cirrhosis NOUN
. PUNCT
  SPACE
Although SCONJ
not PART
many ADJ
patients NOUN
with ADP
Hep PROPN
B PROPN
go VERB
on ADP
tochronic ADJ
hepatitis NOUN
, PUNCT
it PRON
does AUX
still ADV
occur VERB
in ADP
a DET
good ADJ
number NOUN
( PUNCT
20 NUM
% NOUN
? PUNCT
) PUNCT
and CCONJ
issomething VERB
to PART
keep VERB
in ADP
mind NOUN
. PUNCT
  SPACE
Hepatitis PROPN
C PROPN
( PUNCT
was AUX
: PUNCT
non ADJ
- ADJ
A NOUN
, PUNCT
non ADJ
- ADJ
B PROPN
Hep PROPN
) PUNCT
muchmore ADV
frequently ADV
leads VERB
to ADP
chronic ADJ
hep NOUN
and CCONJ
cirrhosis NOUN
. PUNCT
  SPACE
There PRON
is AUX
also ADV
anautimmune PROPN
chronic ADJ
hepatitis NOUN
that PRON
affects VERB
mostly ADV
younger ADJ
women NOUN
whichalso PRON
leads VERB
to ADP
cirrhosis NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
cirrhosis NOUN
is AUX
a DET
most ADV
unkind ADJ
disease NOUN
. PUNCT
  SPACE
The DET
most ADJ
dangerouseffects NOUN
relate VERB
to ADP
portal ADJ
hypertension NOUN
and CCONJ
loss NOUN
of ADP
liver NOUN
function NOUN
. PUNCT
Patients NOUN
develop VERB
life NOUN
- PUNCT
threatening VERB
variceal NOUN
bleeds NOUN
and CCONJ
hepatic ADJ
comas NOUN
, PUNCT
among ADP
many ADJ
other ADJ
problems NOUN
, PUNCT
as SCONJ
a DET
result NOUN
of ADP
disturbances NOUN
in ADP
hepaticcirculation NOUN
. PUNCT
  SPACE
Less ADV
ominously ADV
, PUNCT
they PRON
can AUX
exhibit VERB
the DET
effects NOUN
ofhyperestrogenemia PROPN
which PRON
often ADV
characterize VERB
patients NOUN
with ADP
cirrhosis NOUN
. PUNCT
These DET
effects NOUN
include VERB
telangiactasias PROPN
( PUNCT
small ADJ
red ADJ
skin NOUN
lesions NOUN
) PUNCT
and CCONJ
, PUNCT
inmen NOUN
, PUNCT
gynecomastia PROPN
( PUNCT
breast NOUN
development NOUN
) PUNCT
. PUNCT
  SPACE
The DET
only ADJ
real ADJ
treatment NOUN
forcirrhosis NOUN
is AUX
liver NOUN
transplant NOUN
. PUNCT
Keep VERB
in ADP
mind NOUN
that SCONJ
cirrhosis NOUN
is AUX
not PART
expected VERB
, PUNCT
at ADP
least ADJ
statistically ADV
, PUNCT
inyour ADJ
friend NOUN
's PART
case NOUN
. PUNCT
  SPACE
Nevertheless ADV
you PRON
might AUX
want VERB
to PART
bring VERB
up ADP
thesubject NOUN
of ADP
chronic ADJ
disease NOUN
and CCONJ
cirrhosis NOUN
with ADP
the DET
doctor NOUN
. PUNCT
  SPACE
Hopefully ADV
heor VERB
she PRON
can AUX
then ADV
carefully ADV
explain VERB
these DET
sequelae NOUN
of ADP
Hep PROPN
B PROPN
infection NOUN
toyou NOUN
, PUNCT
and CCONJ
offer VERB
you PRON
support VERB
. PUNCT
Simon PROPN
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58869From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?SP NOUN
> X
From ADP
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)SP VERB
> X
to PART
describe VERB
here ADV
. PUNCT
  SPACE
I PRON
have AUX
a DET
fourteen NUM
year NOUN
old ADJ
daugter NOUN
who PRON
experiencedSP VERB
> X
a DET
seizure NOUN
on ADP
November PROPN
3 NUM
, PUNCT
1992 NUM
at ADP
6:45AM NUM
after ADP
eating VERB
Kellog PROPN
's PART
FrostedSP PROPN
> X
Flakes NOUN
. PUNCT
SP NOUN
> X
Well INTJ
, PUNCT
we PRON
were AUX
going VERB
along ADP
fine ADJ
and CCONJ
the DET
other ADJ
morning NOUN
, PUNCT
April PROPN
5 NUM
, PUNCT
she PRON
hadSP PROPN
> X
a DET
bowl NOUN
of ADP
another DET
Kellog PROPN
's PART
frosted ADJ
kind NOUN
of ADP
cereal NOUN
, PUNCT
Fruit PROPN
Loops PROPN
( PUNCT
I PRON
amSP VERB
> X
When ADV
I PRON
mentioned VERB
what PRON
she PRON
ate VERB
the DET
first ADJ
time NOUN
as SCONJ
a DET
possible ADJ
reason NOUN
forSP NOUN
> X
the DET
seizure NOUN
the DET
neurologist NOUN
basically ADV
negated VERB
that SCONJ
as SCONJ
an DET
idea NOUN
. PUNCT
  SPACE
NowSP PROPN
> X
after ADP
this DET
second ADJ
episode NOUN
, PUNCT
so ADV
similar ADJ
in ADP
nature NOUN
to ADP
the DET
first ADJ
, PUNCT
evenSP ADV
> X
he PRON
is AUX
scratching VERB
his PRON
head NOUN
. PUNCT
There PRON
's AUX
no DET
data NOUN
that PRON
sugar NOUN
- PUNCT
coated VERB
cereals NOUN
cause VERB
seizures NOUN
. PUNCT
  SPACE
I PRON
haven'teven VERB
seen VERB
anything PRON
anecdotal ADJ
on ADP
it PRON
. PUNCT
  SPACE
Given VERB
how ADV
common ADJ
they PRON
are AUX
eaten- VERB
do AUX
you PRON
know VERB
any DET
child NOUN
or CCONJ
adolescent NOUN
who PRON
* PUNCT
does AUX
n't PART
* PUNCT
eat VERB
the DET
stuff NOUN
? PUNCT
-I PROPN
think VERB
that SCONJ
if SCONJ
there PRON
were AUX
a DET
relationship NOUN
we PRON
would AUX
know VERB
it PRON
by ADP
now ADV
. PUNCT
Also ADV
, PUNCT
there PRON
's AUX
nothing PRON
weird ADJ
in ADP
those DET
cereals NOUN
. PUNCT
  SPACE
As ADV
far ADV
as SCONJ
the DET
brainis PROPN
concerned VERB
( PUNCT
except SCONJ
for ADP
a DET
few ADJ
infantile ADJ
metabolic ADJ
disorders NOUN
such ADJ
asgalactosemia NOUN
) PUNCT
, PUNCT
sugar NOUN
is AUX
sugar NOUN
, PUNCT
regardless ADV
if SCONJ
it PRON
is AUX
coated VERB
on ADP
cereal NOUN
, PUNCT
sprinkled VERB
onto ADP
cereal NOUN
, PUNCT
or CCONJ
dissolved VERB
in ADP
soda NOUN
, PUNCT
coffee NOUN
or CCONJ
whatever PRON
. PUNCT
There PRON
was AUX
some DET
interest NOUN
a DET
few ADJ
years NOUN
ago ADV
in ADP
aspartame PROPN
loweringseizure NOUN
thresholds VERB
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
believe VERB
anything PRON
ever ADV
came VERB
of ADP
it.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                         SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58870From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Could AUX
this DET
be AUX
a DET
migraine????GB X
> X
From ADP
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)GB NOUN
> X
The DET
HMO PROPN
would AUX
stop VERB
the DET
over ADP
- PUNCT
ordering NOUN
, PUNCT
but CCONJ
in ADP
HMOs PROPN
, PUNCT
tests VERB
areGB PROPN
> X
under ADV
- PUNCT
ordered VERB
. PUNCT
That DET
's AUX
a DET
somewhat ADV
overbroad ADJ
statement NOUN
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
there PRON
are AUX
HMOs PROPN
inwhich PROPN
the DET
fees NOUN
for ADP
lab NOUN
tests NOUN
are AUX
subtracted VERB
from ADP
the DET
doctor'sincome NUM
. PUNCT
  SPACE
In ADP
most ADV
, PUNCT
however ADV
, PUNCT
including VERB
the DET
one NOUN
I PRON
work VERB
for ADP
, PUNCT
there PRON
is AUX
nodirect NOUN
incentive NOUN
to ADP
under NOUN
- PUNCT
order NOUN
. PUNCT
  SPACE
Profits NOUN
of ADP
the DET
group NOUN
are AUX
sharedamong ADJ
all DET
partners NOUN
, PUNCT
but CCONJ
the DET
group NOUN
is AUX
so ADV
large ADJ
that SCONJ
an DET
individual'sgenerated VERB
costs NOUN
have AUX
a DET
miniscule ADJ
effect NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
that SCONJ
weunder NOUN
- PUNCT
order NOUN
. PUNCT
  SPACE
Then ADV
again ADV
, PUNCT
I PRON
'm AUX
not PART
really ADV
sure ADJ
what PRON
the DET
right ADJ
amountof NOUN
ordering NOUN
is AUX
or CCONJ
should AUX
be AUX
. PUNCT
  SPACE
Relative ADJ
to ADP
the DET
average ADJ
Britishneurologist PROPN
, PUNCT
I PRON
suspect VERB
that SCONJ
I PRON
rather ADV
drastically ADV
over ADP
- PUNCT
order.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                            SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58871From NUM
: PUNCT
npm@netcom.com PROPN
( PUNCT
Nancy PROPN
P. PROPN
Milligan)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemI'd PART
dump VERB
him PRON
. PUNCT
  SPACE
Rude PROPN
is AUX
rude ADJ
and CCONJ
it PRON
seems VERB
he PRON
enjoys VERB
belittling VERB
andhumiliating VERB
you PRON
. PUNCT
  SPACE
But CCONJ
do AUX
n't PART
just ADV
dump VERB
him PRON
, PUNCT
write VERB
to ADP
him PRON
and CCONJ
tellhim VERB
why ADV
you PRON
are AUX
firing VERB
him PRON
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
, PUNCT
think VERB
about ADP
sending VERB
a DET
copyof NOUN
your PRON
letter NOUN
to ADP
whoever PRON
is AUX
in ADP
charge NOUN
of ADP
the DET
clinic NOUN
where ADV
he PRON
works VERB
, PUNCT
if SCONJ
applicable ADJ
, PUNCT
or CCONJ
maybe ADV
even ADV
to ADP
the DET
AMA PROPN
. PUNCT
  SPACE
Do AUX
n't PART
be AUX
vindictive ADJ
inyour ADJ
letter NOUN
, PUNCT
be AUX
truthful ADJ
but CCONJ
VERY ADV
firm ADJ
. PUNCT
But CCONJ
do AUX
n't PART
be AUX
a DET
victim NOUN
and CCONJ
just ADV
put VERB
up ADP
with ADP
it PRON
. PUNCT
  SPACE
Take VERB
control NOUN
! PUNCT
  SPACE
It'llmake NOUN
you PRON
feel VERB
great!Nancy PROPN
M.-- PROPN
Nancy PROPN
P. PROPN
Milligan PROPN
					 SPACE
npm@netcom.com PROPN
							       SPACE
or CCONJ
							 SPACE
npm@dale.cts.comNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58872From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
C5HLBu.I3A@tripos.com X
> X
homer@tripos.com X
( PUNCT
Webster PROPN
Homer PROPN
) PUNCT
writes:>mhollowa@ic.sunysb.edu NOUN
( PUNCT
Michael PROPN
Holloway PROPN
) PUNCT
writes:>>>Here PROPN
's PART
your PRON
error NOUN
. PUNCT
  SPACE
I PRON
really ADV
do AUX
think VERB
this DET
shows VERB
some DET
confusion NOUN
on ADP
your>>part NOUN
. PUNCT
  SPACE
( PUNCT
Drum PROPN
roll NOUN
please INTJ
) PUNCT
  SPACE
Science NOUN
is AUX
n't PART
so ADV
much ADV
the DET
gathering NOUN
of ADP
evidence>>to PROPN
support VERB
an DET
" PUNCT
assertion NOUN
" PUNCT
( PUNCT
read VERB
: PUNCT
hypothesis NOUN
) PUNCT
as SCONJ
it PRON
is AUX
the DET
gathering VERB
of>>empirical ADJ
observations NOUN
IN ADP
ORDER NOUN
TO PART
MAKE VERB
AN DET
HYPOTHESIS NOUN
. PUNCT
  SPACE
What PRON
should>>convince PUNCT
you PRON
( PUNCT
or CCONJ
not PART
) PUNCT
should AUX
n't PART
be AUX
the DET
final ADJ
product NOUN
so ADV
much ADV
as SCONJ
* PUNCT
HOW ADV
* PUNCT
the>>product PROPN
was AUX
made VERB
. PUNCT
> X
> X
> X
Here ADV
's AUX
your PRON
error NOUN
. PUNCT
There PRON
is AUX
no DET
observation NOUN
or CCONJ
hypothesis NOUN
that PRON
is AUX
not PART
tainted VERB
> X
by ADP
theory NOUN
. PUNCT
I PRON
have AUX
a DET
theory NOUN
, PUNCT
I PRON
make VERB
observations NOUN
, PUNCT
those DET
observations NOUN
will AUX
be AUX
> X
made VERB
with ADP
my PRON
theory NOUN
in ADP
mind NOUN
. PUNCT
Yes INTJ
, PUNCT
absolutely ADV
, PUNCT
though SCONJ
I PRON
'd AUX
make VERB
the DET
observation NOUN
in ADP
a DET
more ADV
general ADJ
sense NOUN
ofall ADJ
observations NOUN
are AUX
made VERB
by ADP
human ADJ
beings NOUN
and CCONJ
therefore ADV
made VERB
with ADP
variousbiases NOUN
. PUNCT
But CCONJ
here ADV
your PRON
message NOUN
leaves VERB
talk NOUN
of ADP
hypothesis NOUN
and CCONJ
gets VERB
back ADV
, PUNCT
once ADV
again ADV
, PUNCT
to ADP
equating VERB
the DET
business NOUN
of ADP
science NOUN
with ADP
the DET
end NOUN
result NOUN
, PUNCT
the DET
gizmo PROPN
produced.>Science PROPN
works VERB
very ADV
well ADV
at ADP
developing VERB
theories NOUN
> X
within ADP
paradigms NOUN
, PUNCT
but CCONJ
is AUX
very ADV
poor ADJ
at ADP
dealing VERB
with ADP
paradigm NOUN
shifts NOUN
. PUNCT
If SCONJ
I PRON
> X
develop VERB
a DET
novel ADJ
paradigm NOUN
that PRON
explains VERB
homeopathy NOUN
, PUNCT
chinese ADJ
medicine NOUN
, PUNCT
or CCONJ
> X
spontaneous ADJ
combustion NOUN
. PUNCT
If SCONJ
the DET
paradigm NOUN
is AUX
useful ADJ
it PRON
will AUX
show VERB
me PRON
the DET
way NOUN
> X
to PART
make VERB
observations NOUN
that SCONJ
" PUNCT
prove VERB
" PUNCT
or CCONJ
" PUNCT
disprove VERB
" PUNCT
it PRON
. PUNCT
My PRON
point NOUN
is AUX
n't PART
so ADV
much ADJ
whether SCONJ
or CCONJ
not PART
you PRON
have AUX
a DET
novel ADJ
paradigm NOUN
but CCONJ
* PUNCT
how ADV
* PUNCT
you PRON
come VERB
about ADP
developing VERB
it.>The ADP
paradigm NOUN
of ADP
modern ADJ
medicine NOUN
is AUX
that SCONJ
the DET
body NOUN
can AUX
be AUX
reduced VERB
to ADP
a DET
set NOUN
of ADP
> X
essentially ADV
mechanical ADJ
operations NOUN
wherein ADV
disease NOUN
is AUX
seen VERB
as SCONJ
malfunctions NOUN
in ADP
> X
the DET
machinery NOUN
, PUNCT
essentially ADV
the DET
old ADJ
Newtonian ADJ
model NOUN
of ADP
the DET
world NOUN
. PUNCT
It PRON
seems VERB
> X
likely ADJ
that SCONJ
theories NOUN
based VERB
upon SCONJ
this DET
paradigm NOUN
do AUX
not PART
give VERB
a DET
complete ADJ
> X
discription NOUN
of ADP
the DET
universe NOUN
, PUNCT
medicine NOUN
, PUNCT
healing NOUN
etc X
... PUNCT
Indeed ADV
we PRON
now ADV
> X
recognize VERB
an DET
important ADJ
psychological ADJ
component NOUN
to ADP
healing NOUN
. PUNCT
Perhaps ADV
you PRON
'd AUX
admit VERB
that SCONJ
this DET
is AUX
an DET
oversimplification NOUN
on ADP
your PRON
part NOUN
( PUNCT
the DET
topicof NOUN
the DET
philosophy NOUN
of ADP
science NOUN
is AUX
made VERB
for ADP
them PRON
, PUNCT
I PRON
'm AUX
making VERB
them PRON
too ADV
) PUNCT
but CCONJ
Ithink VERB
that SCONJ
it PRON
also ADV
summarizes VERB
popular ADJ
misconceptions NOUN
of ADP
science NOUN
and CCONJ
the DET
business NOUN
of ADP
doing VERB
science NOUN
. PUNCT
  SPACE
Biomedical ADJ
research NOUN
does AUX
n't PART
make VERB
any DET
basic ADJ
assumptions NOUN
that PRON
are AUX
n't PART
the DET
same ADJ
as SCONJ
any DET
other ADJ
discipline NOUN
of ADP
scientificresearch NOUN
. PUNCT
  SPACE
That ADV
is ADV
, PUNCT
that SCONJ
you PRON
make VERB
empirical ADJ
observations NOUN
, PUNCT
form VERB
an DET
hypothesisand NOUN
test NOUN
it PRON
. PUNCT
  SPACE
Modern ADJ
medicine NOUN
has AUX
much ADV
more ADJ
to PART
do AUX
with ADP
biochemistry NOUN
than SCONJ
" PUNCT
the DET
old ADJ
Newtonian ADJ
model NOUN
of ADP
the DET
world NOUN
" PUNCT
. PUNCT
  SPACE
And CCONJ
I PRON
doubt VERB
that SCONJ
many ADJ
psychologistswould AUX
appreciate VERB
being AUX
put VERB
outside ADP
this DET
empirical ADJ
" PUNCT
world NOUN
view NOUN
" PUNCT
. PUNCT
  SPACE
Psychologyalso PROPN
has AUX
more ADJ
to PART
do AUX
with ADP
biochemistry NOUN
than SCONJ
spoon VERB
bending NOUN
. PUNCT
> X
It PRON
is AUX
also ADV
important ADJ
to PART
distinguish VERB
reason NOUN
from ADP
science NOUN
. PUNCT
Science NOUN
may AUX
be AUX
> X
reasonable ADJ
, PUNCT
but CCONJ
so ADV
are AUX
many ADJ
non ADJ
- ADJ
scientific ADJ
methodologies NOUN
. PUNCT
Aristotle PROPN
reasoned VERB
> X
that SCONJ
frogs NOUN
came VERB
from ADP
mud NOUN
by ADP
observing VERB
one NUM
hop NOUN
out SCONJ
of ADP
a DET
puddle NOUN
. PUNCT
Oversimplified ADJ
, PUNCT
of ADP
course NOUN
, PUNCT
but CCONJ
a DET
good ADJ
example NOUN
. PUNCT
  SPACE
This DET
is AUX
an DET
empirical ADJ
observa NOUN
- PUNCT
tion NOUN
. PUNCT
  SPACE
It PRON
was AUX
then ADV
tested VERB
, PUNCT
though SCONJ
perhaps ADV
not PART
by ADP
Aristotle PROPN
, PUNCT
and CCONJ
eventually ADV
found VERB
wanting VERB
. PUNCT
  SPACE
In ADP
the DET
meantime NOUN
, PUNCT
some DET
folk NOUN
will AUX
have AUX
continued VERB
to PART
believe VERB
in ADP
the DET
spontaneous ADJ
generation NOUN
of ADP
animal NOUN
life NOUN
. PUNCT
  SPACE
There PRON
's AUX
nothing PRON
at ADV
all ADV
surprising ADJ
about ADP
this DET
, PUNCT
it PRON
's AUX
the DET
way NOUN
the DET
gathering VERB
ofknowledge NOUN
works VERB
. PUNCT
  SPACE
There PRON
are AUX
probably ADV
more ADJ
than SCONJ
a DET
few ADJ
things NOUN
in ADP
my PRON
own ADJ
discipline NOUN
of ADP
molecular ADJ
biology NOUN
that PRON
will AUX
be AUX
found VERB
to PART
be AUX
totally ADV
off ADP
- PUNCT
base NOUN
, PUNCT
even ADV
idiotic ADJ
, PUNCT
to ADP
someone PRON
in ADP
the DET
future NOUN
. PUNCT
  SPACE
These DET
future ADJ
people NOUN
wo AUX
n't PART
have AUX
cometo VERB
these DET
relevations NOUN
because SCONJ
they PRON
had AUX
suddenly ADV
gone VERB
all DET
Zen PROPN
- PUNCT
like ADJ
and CCONJ
had AUX
a DET
vision NOUN
in ADP
an DET
LSD PROPN
trip NOUN
. PUNCT
  SPACE
Someone PRON
will AUX
have AUX
thought VERB
of ADP
something PRON
new ADJ
and CCONJ
tested VERB
it PRON
. PUNCT
  SPACE
This DET
is AUX
the DET
bit NOUN
that PRON
people NOUN
who PRON
seem VERB
to PART
relish VERB
misrepresentingscience NOUN
and CCONJ
research NOUN
ca AUX
n't PART
seem VERB
to PART
wrap VERB
their PRON
minds NOUN
around ADV
. PUNCT
  SPACE
Science NOUN
is AUX
a DET
creative ADJ
process NOUN
. PUNCT
  SPACE
What PRON
I PRON
think VERB
of ADP
as ADV
factual ADJ
and CCONJ
good ADJ
research NOUN
can AUX
be AUX
totallyturned VERB
on ADP
its PRON
head NOUN
tommorrow NOUN
by ADP
new ADJ
results NOUN
and CCONJ
theories NOUN
. PUNCT
  SPACE
Again ADV
, PUNCT
I PRON
think VERB
it PRON
gets VERB
down ADV
to ADP
defining VERB
what PRON
you PRON
mean VERB
by ADP
" PUNCT
science PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
oftendon't ADV
recognize VERB
what PRON
it PRON
is AUX
that SCONJ
I PRON
do AUX
, PUNCT
and CCONJ
am AUX
involved VERB
in ADP
, PUNCT
in ADP
the DET
way NOUN
scienceis NOUN
portrayed VERB
by ADP
popular ADJ
media NOUN
or CCONJ
writings NOUN
of ADP
people NOUN
in ADP
the DET
humanities NOUN
. PUNCT
  SPACE
Theyportray ADJ
science NOUN
as SCONJ
a DET
collection NOUN
of ADP
immutable ADJ
facts NOUN
, PUNCT
pronouncements NOUN
of ADP
TRUTHin NOUN
big ADJ
gold NOUN
letters NOUN
. PUNCT
  SPACE
That DET
's AUX
silly ADJ
. PUNCT
  SPACE
Its PRON
as SCONJ
though SCONJ
we PRON
just ADV
go VERB
into ADP
the DET
lab NOUN
, PUNCT
turn VERB
over ADP
a DET
stone NOUN
, PUNCT
and CCONJ
come VERB
up ADP
with ADP
a DET
mechanism NOUN
for ADP
transcriptional ADJ
regula NOUN
- PUNCT
tion NOUN
. PUNCT
  SPACE
Its PRON
much ADV
more ADV
interesting ADJ
than SCONJ
that DET
. PUNCT
  SPACE
It PRON
really ADV
is AUX
a DET
very ADV
humanprocess NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58873From NUM
: PUNCT
ak949@yfn.ysu.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
ORGAN PROPN
DONATION NOUN
AND CCONJ
TRANSPLANTATION ADJ
FACT NOUN
SHEETIn NOUN
a DET
previous ADJ
article NOUN
, PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
says:>In PROPN
article NOUN
< X
1993Apr12.205726.10679@sbcs.sunysb.edu NUM
> X
, PUNCT
mhollowa@ic.sunysb.edu PROPN
> X
| ADP
> X
Organ PROPN
donors NOUN
are AUX
healthy ADJ
people NOUN
who PRON
have AUX
died VERB
suddenly ADV
, PUNCT
usually ADV
> X
| ADP
> X
through ADP
accident NOUN
or CCONJ
head NOUN
injury NOUN
. PUNCT
  SPACE
They PRON
are AUX
brain NOUN
dead ADJ
. PUNCT
  SPACE
The DET
> X
| ADP
> X
organs NOUN
are AUX
kept VERB
alive ADJ
through ADP
mechanical ADJ
means.>>OK PROPN
, PUNCT
so ADV
how ADV
do AUX
you PRON
define VERB
healthy ADJ
people?>>My NOUN
wife NOUN
can AUX
not PART
donate VERB
blood NOUN
because SCONJ
she PRON
has AUX
been AUX
to ADP
a DET
malarial ADJ
region NOUN
> X
in ADP
the DET
past ADJ
three NUM
years NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
she PRON
tried VERB
to PART
have AUX
her PRON
bone NOUN
marrow NOUN
> X
typed VERB
and CCONJ
they PRON
would AUX
n't PART
even ADV
do AUX
that DET
! PUNCT
  SPACE
Why?>>I VERB
ca AUX
n't PART
donate VERB
blood NOUN
either CCONJ
because SCONJ
not PART
only ADV
have AUX
I PRON
been AUX
to ADP
a DET
malarial ADJ
> X
region NOUN
, PUNCT
but CCONJ
I PRON
have AUX
also ADV
been AUX
diagnosed VERB
( PUNCT
and CCONJ
surgically ADV
treated VERB
) PUNCT
for ADP
> X
testicular ADJ
cancer NOUN
. PUNCT
  SPACE
The DET
blood NOUN
bank NOUN
wo AUX
nt PART
accept VERB
blood NOUN
from ADP
me PRON
for ADP
10 NUM
> X
years NOUN
. PUNCT
  SPACE
Obviously ADV
, PUNCT
it PRON
would AUX
n't PART
be AUX
of ADP
much ADJ
help NOUN
to PART
treat VERB
one NUM
problem NOUN
by ADP
knowingly ADV
introducing VERB
another DET
. PUNCT
  SPACE
Cancer NOUN
mestastizes NOUN
. PUNCT
  SPACE
My PRON
imperfect ADJ
understanding NOUN
of ADP
the DET
facts NOUN
are AUX
that DET
gonadal NOUN
cancer NOUN
is AUX
particularly ADV
dangerous ADJ
in ADP
this DET
regard NOUN
. PUNCT
I PRON
have AUX
n't PART
done VERB
the DET
research NOUN
on ADP
it PRON
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
recall VERB
ever ADV
hearing VERB
of ADP
a DET
case NOUN
of ADP
cancer NOUN
being AUX
transmitted VERB
by ADP
a DET
blood NOUN
transfusion NOUN
. PUNCT
  SPACE
Probably ADV
just ADV
a DET
common ADJ
sense NOUN
kind ADV
of ADP
arbitrary ADJ
precaution NOUN
. PUNCT
  SPACE
Transmissable ADJ
diseases NOUN
like SCONJ
malaria PROPN
though ADV
are AUX
obviously ADV
another DET
story.-- PROPN
Michael PROPN
HollowayE PROPN
- PUNCT
mail NOUN
: PUNCT
mhollowa@ccmail.sunysb.edu PROPN
( PUNCT
mail NOUN
to PART
freenet NOUN
is AUX
forwarded)phone NOUN
: PUNCT
( PUNCT
516)444 NUM
- PUNCT
3090Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58874From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.194316.25522@ohsu.edu NUM
> X
tong@ohsu.edu ADP
( PUNCT
Gong PROPN
Tong PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>>>For X
cites VERB
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a>>toxicologist PROPN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on>>development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an>>excitotoxic PROPN
food NOUN
additive ADJ
, PUNCT
and CCONJ
that SCONJ
its PRON
major ADJ
constituent NOUN
, PUNCT
glutamate>>is PROPN
essentially ADV
the DET
premierie PROPN
neurotransmitter PROPN
in ADP
the DET
mammalian ADJ
brain>>(humans PROPN
included VERB
) PUNCT
. PUNCT
  SPACE
Too ADV
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown>>off NOUN
. PUNCT
  SPACE
Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in>>small ADP
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts>>added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be>>encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food NOUN
. PUNCT
  SPACE
By ADP
eating VERB
lots NOUN
of ADP
junk NOUN
food,>>packaged VERB
soups NOUN
, PUNCT
and CCONJ
diet VERB
soft ADJ
drinks NOUN
, PUNCT
it PRON
is AUX
possible ADJ
to ADP
jack PROPN
your>>blood PROPN
levels NOUN
so ADV
high ADJ
, PUNCT
that SCONJ
anyone PRON
with ADP
a DET
sensitivity NOUN
to ADP
these>>compounds NOUN
will AUX
suffer VERB
numerous ADJ
* PUNCT
real ADJ
* PUNCT
physi9logical PROPN
effects NOUN
. PUNCT
> X
> X
Read VERB
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>>sources X
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute NOUN
. PUNCT
> X
> X
> X
> X
                    SPACE
--Dianne PUNCT
Murray PROPN
    SPACE
wcsbeau@ccs.carleton.ca>>In PROPN
order NOUN
to PART
excitotoxin VERB
effects NOUN
of ADP
MSG PROPN
, PUNCT
MSG PROPN
that SCONJ
in ADP
blood NOUN
must AUX
go VERB
through ADP
> PRON
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
that PRON
I PRON
am AUX
not PART
sure ADJ
MSG NOUN
can AUX
go VERB
through ADV
or CCONJ
not PART
. PUNCT
Elevated ADJ
levels NOUN
of ADP
Glu PROPN
and CCONJ
Asp PROPN
in ADP
the DET
blood NOUN
are AUX
able ADJ
to PART
bypass VERB
theBlood NOUN
- PUNCT
brain NOUN
barrier NOUN
through ADP
the DET
circumventricular ADJ
organs NOUN
( PUNCT
or CCONJ
CVO PROPN
) PUNCT
, PUNCT
inparticular ADJ
the DET
adeno PROPN
and CCONJ
neurohypophysis PROPN
( PUNCT
pituitary ADJ
gland NOUN
) PUNCT
areas NOUN
. PUNCT
  SPACE
Thearcuate ADJ
nucleus NOUN
of ADP
the DET
hypothalamus NOUN
, PUNCT
and CCONJ
the DET
median ADJ
eminence NOUN
regionsare PROPN
particularly ADV
effected VERB
. PUNCT
  SPACE
CVO NOUN
areas NOUN
are AUX
not PART
subject ADJ
to ADP
theblood NOUN
- PUNCT
brain NOUN
barrier NOUN
. PUNCT
These DET
areas NOUN
control VERB
the DET
release NOUN
of ADP
gonadotropin NOUN
, PUNCT
which PRON
controls VERB
the DET
release NOUN
and CCONJ
flux NOUN
of ADP
steroids NOUN
governing VERB
development NOUN
, PUNCT
especially ADV
sexual ADJ
development NOUN
. PUNCT
Changes NOUN
in ADP
adult NOUN
rats NOUN
, PUNCT
which PRON
are AUX
lesssensitive ADJ
to ADP
Glu PROPN
than SCONJ
humans NOUN
, PUNCT
have AUX
been AUX
observed VERB
: PUNCT
after ADP
ingesting VERB
Glu PROPN
, PUNCT
on ADP
a DET
chronic ADJ
basis NOUN
, PUNCT
cycles NOUN
of ADP
several ADJ
steroids NOUN
are AUX
disrupted VERB
. PUNCT
Bloodlevels NOUN
of ADP
somatostatin NOUN
are AUX
significantly ADV
reduced VERB
, PUNCT
and CCONJ
cyclic ADJ
releaseof ADJ
steroids NOUN
becomes VERB
flattened VERB
. PUNCT
                    SPACE
Hope NOUN
this DET
helps VERB
. PUNCT
                    SPACE
--Dianne PUNCT
Murray PROPN
: PUNCT
wcsbeau@ccs.carleton.caNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58875From NUM
: PUNCT
lindae@netcom.comSubject X
: PUNCT
Friend NOUN
Needs VERB
Advice PROPN
... PUNCT
A DET
friend NOUN
of ADP
mine NOUN
is AUX
having VERB
some DET
symptoms NOUN
and CCONJ
has AUX
asked VERB
me PRON
to PART
postthe VERB
following VERB
information NOUN
. PUNCT
A DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
she PRON
noticed VERB
that SCONJ
some DET
of ADP
her PRON
hair NOUN
was AUX
startingto NOUN
fall VERB
out ADP
. PUNCT
  SPACE
She PRON
would AUX
touch VERB
her PRON
head NOUN
and CCONJ
strands NOUN
of ADP
hair NOUN
wouldjust NOUN
fall VERB
right ADV
out ADV
. PUNCT
( PUNCT
by ADP
the DET
way NOUN
, PUNCT
she PRON
is AUX
29 NUM
or CCONJ
30 NUM
years NOUN
old ADJ
) PUNCT
. PUNCT
  SPACE
It PRON
continued VERB
to PART
occur VERB
until ADP
she PRON
had AUX
a DET
bald ADJ
spot NOUN
about ADP
thesize NOUN
of ADP
a DET
half ADJ
dollar NOUN
. PUNCT
  SPACE
Since SCONJ
that DET
time NOUN
, PUNCT
she PRON
  SPACE
has AUX
gotten VERB
twomore ADV
bald ADJ
spots NOUN
of ADP
the DET
same ADJ
size NOUN
. PUNCT
  SPACE
Other ADJ
symptoms NOUN
she'sdescribed PROPN
include VERB
: PUNCT
  SPACE
several ADJ
months NOUN
of ADP
an DET
irregular ADJ
menstrualcycle NOUN
( PUNCT
which PRON
is AUX
strange ADJ
for ADP
her PRON
, PUNCT
because SCONJ
she PRON
has AUX
always ADV
beenextremely ADV
regular ADJ
) PUNCT
; PUNCT
laryngitis PROPN
every DET
few ADJ
days NOUN
-- PUNCT
she PRON
will AUX
wakeup VERB
one NUM
morning NOUN
and CCONJ
have AUX
almost ADV
no DET
voice NOUN
, PUNCT
and CCONJ
then ADV
the DET
next ADJ
dayit PROPN
's PART
fine NOUN
; PUNCT
dizzy ADJ
spells NOUN
-- PUNCT
she PRON
claims VERB
that SCONJ
she PRON
's AUX
had VERB
4 NUM
or CCONJ
5very NUM
bad ADJ
dizzy ADJ
spells NOUN
early ADV
in ADP
the DET
morning NOUN
, PUNCT
including VERB
one NUM
thatknocked VERB
her PRON
to ADP
the DET
ground NOUN
; PUNCT
and CCONJ
general ADJ
fatigue NOUN
. PUNCT
She PRON
went VERB
to ADP
a DET
dermatologist NOUN
first ADV
who PRON
could AUX
n't PART
find VERB
any DET
reasonfor NOUN
the DET
symptoms NOUN
and CCONJ
sent VERB
her PRON
to ADP
an DET
internist NOUN
who PRON
suspectedthyroid VERB
problems NOUN
. PUNCT
  SPACE
He PRON
did AUX
the DET
blood NOUN
work NOUN
and CCONJ
claims VERB
that PRON
everythingcame VERB
back ADV
normal ADJ
. PUNCT
  SPACE
She PRON
's AUX
very ADV
concerned ADJ
and CCONJ
very ADV
confused ADJ
. PUNCT
  SPACE
Does AUX
anyone PRON
have AUX
anyideas NOUN
or CCONJ
suggestions NOUN
? PUNCT
  SPACE
I PRON
told VERB
her PRON
that SCONJ
I PRON
thought VERB
she PRON
shouldsee VERB
an DET
endocrinologist NOUN
. PUNCT
  SPACE
Does AUX
that DET
sound VERB
like SCONJ
the DET
right ADJ
idea NOUN
? PUNCT
* PUNCT
* PUNCT
By ADP
the DET
way NOUN
, PUNCT
in ADP
case NOUN
you PRON
are AUX
going VERB
to PART
ask VERB
... PUNCT
no INTJ
, PUNCT
she PRON
has AUX
recentlytaken VERB
any DET
medications NOUN
that PRON
would AUX
cause VERB
these DET
symptoms NOUN
... PUNCT
no INTJ
, PUNCT
she PRON
hasn'trecently ADV
changed VERB
her PRON
hair NOUN
products NOUN
and CCONJ
she PRON
has AUX
n't PART
gotten VERB
a DET
perm NOUN
, PUNCT
coloring NOUN
, PUNCT
or CCONJ
other ADJ
chemical NOUN
process NOUN
that PRON
might AUX
cause VERB
hair NOUN
to PART
fallout VERB
. PUNCT
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
help!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58876From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject PROPN
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics NOUN
) PUNCT
> X
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
> X
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
will AUX
> X
then ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
genetic ADJ
> X
engineering NOUN
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want VERB
. PUNCT
> X
No DET
breeding NOUN
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
should AUX
> X
we PRON
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADV
- PUNCT
lived VERB
, PUNCT
> X
Arnold PROPN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can AUX
. PUNCT
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
it PRON
will AUX
be AUX
possible ADJ
to PART
disassemble VERB
andre NOUN
- PUNCT
assemble VERB
our PRON
bodies NOUN
at ADP
the DET
molecular ADJ
level NOUN
. PUNCT
  SPACE
Not PART
only ADV
will AUX
flawlesscosmetic ADJ
surgery NOUN
be AUX
possible ADJ
, PUNCT
but CCONJ
flawless ADJ
cosmetic NOUN
PSYCHOSURGERY.What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
store VERB
all DET
the DET
prices NOUN
of ADP
shelf NOUN
- PUNCT
priced VERB
bar NOUN
- PUNCT
codedgoods NOUN
in ADP
your PRON
head NOUN
, PUNCT
and CCONJ
catch VERB
all DET
the DET
errors NOUN
they PRON
make VERB
in ADP
the DET
store'sfavor NOUN
at ADP
SAFEWAY PROPN
? PUNCT
  SPACE
What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
mentally ADV
edit VERB
and CCONJ
spell NOUN
- PUNCT
check VERB
your PRON
responses NOUN
to ADP
the DET
questions NOUN
posed VERB
by ADP
a DET
phone NOUN
caller NOUN
sellingVACATION PUNCT
TIME PROPN
- PUNCT
SHARE PROPN
OPTIONS?Indeed X
, PUNCT
we PRON
are AUX
today NOUN
a DET
nation NOUN
at ADP
risk NOUN
! PUNCT
  SPACE
The DET
threat NOUN
is AUX
not PART
from ADP
bad ADJ
genes NOUN
, PUNCT
but CCONJ
bad ADJ
memes NOUN
! PUNCT
  SPACE
Memes PROPN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
geneswhich PROPN
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
We PRON
stand VERB
on ADP
the DET
brink NOUN
of ADP
new ADJ
meme ADJ
- PUNCT
amplification NOUN
technologies NOUN
! PUNCT
  SPACE
Harmfulmemes NOUN
which PRON
formerly ADV
were AUX
restricted VERB
in ADP
their PRON
destructive ADJ
power NOUN
willrun NOUN
rampant ADJ
over ADP
the DET
countryside NOUN
, PUNCT
laying VERB
waste NOUN
to ADP
the DET
real ADJ
benefits NOUN
thatfuture NOUN
technology NOUN
has AUX
to PART
offer VERB
. PUNCT
For ADP
example NOUN
, PUNCT
Jeremy PROPN
Rifkin PROPN
has AUX
been AUX
busy ADJ
trying VERB
to PART
whip VERB
up ADP
emotionsagainst ADP
the DET
new ADJ
genetically ADV
engineered VERB
tomatoes NOUN
under ADP
development NOUN
atCALGENE NOUN
. PUNCT
  SPACE
This DET
guy NOUN
is AUX
inventing VERB
harmful ADJ
memes NOUN
, PUNCT
a DET
virtual ADJ
memetic ADJ
TyphoidMary PROPN
. PUNCT
We PRON
must AUX
expand VERB
the DET
public ADJ
- PUNCT
health NOUN
laws NOUN
to PART
include VERB
quarantine NOUN
of ADP
peoplewith PROPN
harmful PROPN
memes NOUN
. PUNCT
  SPACE
They PRON
should AUX
not PART
be AUX
allowed VERB
to PART
infect VERB
other ADJ
peoplewith NOUN
their PRON
memes NOUN
against ADP
genetically ADV
- PUNCT
engineered VERB
food NOUN
, PUNCT
electromagneticfields PROPN
, PUNCT
and CCONJ
the DET
Space PROPN
Shuttle PROPN
solid ADJ
rocket NOUN
boosters NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58877From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problem[reply NOUN
to ADP
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
] PUNCT
> X
Sounds VERB
as SCONJ
though SCONJ
his PRON
heart NOUN
's PART
in ADP
the DET
right ADJ
place NOUN
, PUNCT
but CCONJ
he PRON
is AUX
not PART
adept ADJ
at ADP
> X
expressing VERB
it PRON
. PUNCT
  SPACE
What PRON
you PRON
received VERB
was AUX
_ PROPN
meant VERB
_ PROPN
to PART
be AUX
a DET
profound ADJ
apology.>Apologies NOUN
delivered VERB
by ADP
overworked ADJ
shy ADJ
people NOUN
often ADV
come VERB
out ADP
like SCONJ
that DET
... PUNCT
The DET
guy NOUN
did AUX
n't PART
sound VERB
too ADV
shy ADJ
to ADP
me PRON
. PUNCT
  SPACE
He PRON
sounded VERB
like SCONJ
a DET
jerk NOUN
. PUNCT
  SPACE
I PRON
say VERB
ditchhim NOUN
for ADP
someone PRON
more ADV
knowledgeable ADJ
and CCONJ
empathetic ADJ
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58878From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5JoDH.9IG@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes:>>Furthermore PROPN
, PUNCT
the DET
big ADJ
bucks NOUN
approach VERB
to ADP
science NOUN
promotes NOUN
what PRON
I PRON
think VERB
is AUX
> X
one NUM
of ADP
the DET
most ADV
significant ADJ
errors NOUN
in ADP
science NOUN
: PUNCT
  SPACE
choosing VERB
to PART
investigate VERB
> PUNCT
questions NOUN
because SCONJ
they PRON
can AUX
be AUX
readily ADV
handled VERB
by ADP
the DET
currently ADV
> X
fashionable ADJ
methodology NOUN
( PUNCT
or CCONJ
because SCONJ
one PRON
can AUX
readily ADV
get AUX
institutional ADJ
> X
or CCONJ
corporate ADJ
sponsorship NOUN
for ADP
them PRON
) PUNCT
instead ADV
of ADP
directing VERB
attention NOUN
to ADP
> X
those DET
questions NOUN
which PRON
seem VERB
to PART
have AUX
fundamental ADJ
significance NOUN
. PUNCT
Shades NOUN
of ADP
James PROPN
Watson PROPN
! PUNCT
  SPACE
That DET
's AUX
exactly ADV
the DET
way NOUN
many ADJ
workers NOUN
have AUX
describedtheir ADJ
misgivings NOUN
about ADP
the DET
Human PROPN
Genome PROPN
Project PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
take VERB
a DET
rigid ADJ
definition NOUN
of ADP
scientific ADJ
research NOUN
, PUNCT
the DET
mere ADJ
accumulation NOUN
of ADP
data NOUN
is AUX
not PART
doing VERB
science NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
early ADJ
arguments NOUN
against ADP
the DET
project NOUN
were AUX
that SCONJ
the DET
resources NOUN
would AUX
be AUX
better ADV
used VERB
to PART
focus VERB
on ADP
specific ADJ
genetics NOUN
- PUNCT
related VERB
problems NOUN
rather ADV
than SCONJ
just ADV
going VERB
off ADV
and CCONJ
collecting VERB
maps NOUN
and CCONJ
sequence NOUN
. PUNCT
  SPACE
The DET
project NOUN
ca AUX
n't PART
be AUX
so ADV
narrowly ADV
defined VERB
or CCONJ
easily ADV
described VERB
now ADV
though ADV
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58879From NUM
: PUNCT
mckay@alcor.concordia.ca X
( PUNCT
John PROPN
McKay)Subject PROPN
: PUNCT
Lasers NOUN
for ADP
dermatologistsHaving NOUN
had AUX
limited VERB
tinea NOUN
pedis NOUN
for ADP
more ADJ
than SCONJ
30 NUM
years NOUN
, PUNCT
and CCONJ
findingit VERB
resistant ADJ
to ADP
ALL DET
creams NOUN
and CCONJ
powders NOUN
I PRON
have AUX
tried VERB
, PUNCT
I PRON
wonder VERB
whydermatologists NOUN
do AUX
not PART
use VERB
lasers NOUN
to PART
destroy VERB
the DET
fungus NOUN
. PUNCT
It PRON
wouldseem VERB
likely ADJ
to PART
be AUX
effective ADJ
and CCONJ
inexpensive ADJ
. PUNCT
Are AUX
there PRON
good ADJ
reasonsfor NOUN
not PART
using VERB
lasers?I PROPN
was AUX
told VERB
that SCONJ
dermatology NOUN
had AUX
not PART
yet ADV
reached VERB
the DET
laser NOUN
age NOUN
. PUNCT
John PROPN
McKayvax2.concordia.ca-- PROPN
Deep PROPN
ideas NOUN
are AUX
simple ADJ
. PUNCT
                      SPACE
Odd PROPN
groups NOUN
are AUX
even ADV
. PUNCT
                                           SPACE
Even ADV
simples NOUN
are AUX
not PART
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58880From NUM
: PUNCT
mjliu@csie.nctu.edu.tw PROPN
( PUNCT
Ming PROPN
- PUNCT
zhou PROPN
Liu)Subject VERB
: PUNCT
H NOUN
E NOUN
L NOUN
P NOUN
   SPACE
M NOUN
E NOUN
   SPACE
--- PUNCT
> X
desperate ADJ
with ADP
some DET
VDI PROPN
have AUX
bad ADJ
luck NOUN
and CCONJ
got VERB
a DET
VD PROPN
called VERB
< X
Granuloma PROPN
ingunale NOUN
> X
, PUNCT
which PRON
involvesthe ADJ
growth NOUN
of ADP
granules NOUN
in ADP
the DET
groin NOUN
. PUNCT
  SPACE
I PRON
found VERB
out ADP
about ADP
it PRON
by ADP
checking VERB
medicinebooks NOUN
and CCONJ
I PRON
found VERB
the DET
prescriptions NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
I PRON
can AUX
just ADV
go VERB
to ADP
a DET
clinic NOUN
toget NOUN
it PRON
cured VERB
. PUNCT
  SPACE
BUT CCONJ
unfortunately ADV
I PRON
am AUX
serving VERB
my PRON
duty NOUN
in ADP
the DET
army NOUN
right ADV
now ADV
andI INTJ
think VERB
it PRON
's AUX
impossible ADJ
to PART
prevent VERB
anyone PRON
from ADP
knowing VERB
this DET
if SCONJ
I PRON
take VERB
leaves NOUN
every DET
day NOUN
for ADP
two NUM
weeks NOUN
for ADP
treatment NOUN
. PUNCT
  SPACE
Thus ADV
I PRON
bought VERB
the DET
prescribed NOUN
tabletsat NOUN
some DET
drugstore NOUN
, PUNCT
but CCONJ
to PART
cure VERB
it PRON
I PRON
must AUX
get AUX
INJECTION NOUN
of ADP
< X
Streptomycin PROPN
> X
, PUNCT
witha PROPN
dose PROPN
of ADP
1 NUM
g NOUN
every DET
12 NUM
hours NOUN
, PUNCT
for ADP
at ADV
least ADV
10 NUM
days NOUN
. PUNCT
  SPACE
I PRON
can AUX
probably ADV
buy VERB
the DET
tools NOUN
and CCONJ
this DET
solution NOUN
somewhere ADV
but CCONJ
I PRON
DON'T VERB
KNOW VERB
HOW ADV
TO PART
DO VERB
INJECTION NOUN
BY ADP
MYSELF!Can VERB
any DET
kind ADJ
people NOUN
here ADV
tell VERB
me PRON
: PUNCT
If SCONJ
it PRON
's AUX
possible ADJ
to PART
do AUX
it PRON
? PUNCT
Can AUX
I PRON
do AUX
it PRON
on ADP
my PRON
arm NOUN
? PUNCT
or CCONJ
it PRON
must AUX
be AUX
done VERB
on ADP
the DET
hiponly NOUN
? PUNCT
? PUNCT
  SPACE
Any DET
info NOUN
is AUX
welcome ADJ
and CCONJ
please INTJ
write VERB
me PRON
or CCONJ
post VERB
your PRON
help NOUN
SOON PROPN
! PUNCT
! PUNCT
( PUNCT
I PRON
amalready VERB
taking VERB
the DET
tablets NOUN
.. PUNCT
and CCONJ
I PRON
ca AUX
n't PART
wait!!)Please VERB
do AUX
n't PART
flame VERB
me PRON
for ADP
posting VERB
this DET
, PUNCT
and CCONJ
do AUX
n't PART
judge VERB
me PRON
. PUNCT
I PRON
've AUX
learned VERB
a DET
lesson NOUN
and CCONJ
all DET
I PRON
need VERB
now ADV
is AUX
REAL ADV
MEDICAL VERB
HELP.Desperate NOUN
from ADP
Taipei PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58881From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective PROPN
Placebo PROPN
From ADP
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
JB PROPN
> X
    SPACE
RR NOUN
> X
" PUNCT
I PRON
do AUX
n't PART
doubt VERB
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
alive ADJ
and CCONJ
well ADJ
withJB PUNCT
> X
    SPACE
RR NOUN
> X
  SPACE
EVERY DET
medical ADJ
modality NOUN
- PUNCT
estimated VERB
by ADP
some DET
to PART
be AUX
around ADV
20+%,JB NUM
> X
    SPACE
RR PROPN
> X
  SPACE
but CCONJ
why ADV
would AUX
it PRON
be AUX
higher ADJ
with ADP
alternative NOUN
versus ADP
conventionalJB PROPN
> X
    SPACE
RR PROPN
> X
  SPACE
medicine?"JB PROPN
> X
  SPACE
JB PROPN
> X
  SPACE
Because SCONJ
most ADJ
the DET
the DET
time NOUN
, PUNCT
closer ADJ
to ADP
90 NUM
% NOUN
in ADP
my PRON
experience NOUN
, PUNCT
there PRON
is AUX
noJB PROPN
> X
  SPACE
substance NOUN
to ADP
the DET
' PUNCT
alternative NOUN
' PUNCT
intervention NOUN
beyond ADP
the DET
good ADJ
intentions NOUN
of ADP
theJB PROPN
> X
  SPACE
practitioner PROPN
, PUNCT
which PRON
in ADP
itself PRON
is AUX
quite ADV
therapeutic ADJ
. PUNCT
[ PUNCT
....... PUNCT
] PUNCT
JB PROPN
> X
JB PROPN
> X
  SPACE
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAJB PROPN
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
   SPACE
Well INTJ
, PUNCT
if SCONJ
that DET
's AUX
the DET
case NOUN
in ADP
YOUR PRON
practice NOUN
, PUNCT
I PRON
have AUX
a DET
hard ADJ
time NOUN
    SPACE
figuring VERB
out ADP
how ADV
you PRON
even ADV
managed VERB
to PART
make VERB
it PRON
into ADP
the DET
bottom ADJ
half NOUN
   SPACE
of ADP
your PRON
class NOUN
, PUNCT
or CCONJ
did AUX
you PRON
create VERB
your PRON
diplomas NOUN
with ADP
crayons NOUN
? PUNCT
    SPACE
If SCONJ
someone PRON
runs VERB
a DET
medical ADJ
practice NOUN
with ADP
only ADV
a DET
10 NUM
% NOUN
success NOUN
rate NOUN
, PUNCT
   SPACE
they PRON
either CCONJ
tackle VERB
problems NOUN
for ADP
which PRON
they PRON
are AUX
not PART
qualified ADJ
to PART
   SPACE
treat NOUN
, PUNCT
or CCONJ
they PRON
have AUX
no DET
conscience NOUN
and CCONJ
are AUX
only ADV
in ADP
business NOUN
for ADP
   SPACE
fraudulent ADJ
purposes NOUN
. PUNCT
   SPACE
OTOH PROPN
, PUNCT
who PRON
are AUX
we PRON
kidding VERB
, PUNCT
the DET
New PROPN
England PROPN
Medical PROPN
Journal PROPN
in ADP
1984 NUM
   SPACE
ran VERB
the DET
heading NOUN
: PUNCT
" PUNCT
Ninety PROPN
Percent PROPN
of ADP
Diseases NOUN
are AUX
not PART
Treatable ADJ
by ADP
   SPACE
Drugs NOUN
or CCONJ
Surgery PROPN
, PUNCT
" PUNCT
which PRON
has AUX
been AUX
echoed VERB
by ADP
several ADJ
other ADJ
reports NOUN
. PUNCT
   SPACE
No DET
wonder NOUN
MDs NOUN
are AUX
not PART
amused VERB
with ADP
alternative ADJ
medicine NOUN
, PUNCT
since SCONJ
   SPACE
the DET
20 NUM
% NOUN
magic NOUN
of ADP
the DET
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
would AUX
award VERB
alternative ADJ
    SPACE
practitioners NOUN
twice DET
the DET
success NOUN
rate NOUN
of ADP
conventional ADJ
medicine NOUN
... PUNCT
   SPACE
--Ron----- PROPN
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
Purranoia PROPN
: PUNCT
the DET
fear NOUN
your PRON
cat NOUN
is AUX
up ADP
to ADP
something PRON
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58882From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Scientific PROPN
Yawn PROPN
     SPACE
Gordon PROPN
Rubenfeld PROPN
responds VERB
to ADP
Ron PROPN
Roth PROPN
: PUNCT
GR PROPN
> X
  SPACE
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
wrote VERB
: PUNCT
GR PROPN
> X
GR PROPN
> X
RR PROPN
> X
Well INTJ
, PUNCT
Gordon PROPN
, PUNCT
I PRON
look VERB
at ADP
the DET
RESULTS NOUN
, PUNCT
not PART
at ADP
anyone PRON
's PART
* PUNCT
scientific*GR NOUN
> X
RR PROPN
> X
stamp NOUN
of ADP
approval NOUN
. PUNCT
GR NOUN
> X
  SPACE
GR PROPN
> NUM
    SPACE
If SCONJ
you PRON
and CCONJ
your PRON
patients NOUN
( PUNCT
followers NOUN
? PUNCT
) PUNCT
are AUX
convinced VERB
( PUNCT
as SCONJ
you PRON
've AUX
written)GR PROPN
> X
  SPACE
by ADP
your PRON
methods NOUN
of ADP
uncontrolled ADJ
, PUNCT
undocumented ADJ
, PUNCT
unreported ADJ
, PUNCT
unsubstantiated ADJ
, PUNCT
GR PROPN
> X
  SPACE
subjective ADJ
endpoint PROPN
research NOUN
- PUNCT
great ADJ
. PUNCT
  SPACE
But CCONJ
, PUNCT
why ADV
should AUX
the DET
rest NOUN
of ADP
us PRON
care VERB
? PUNCT
Gordon PROPN
, PUNCT
even ADV
if SCONJ
you PRON
are AUX
trying VERB
to PART
beat VERB
this DET
issue NOUN
to ADP
death NOUN
, PUNCT
you PRON
'll AUX
  SPACE
never ADV
get AUX
more ADJ
than SCONJ
a DET
stalemate NOUN
out SCONJ
of ADP
this DET
one NOUN
! PUNCT
I PRON
have AUX
never ADV
tried VERB
to PART
force VERB
my PRON
type NOUN
of ADP
medicine NOUN
on ADP
any DET
of ADP
you PRON
. PUNCT
Why ADV
  SPACE
should AUX
I PRON
? PUNCT
  SPACE
My PRON
patients NOUN
are AUX
happy ADJ
. PUNCT
I PRON
'm AUX
happy ADJ
. PUNCT
You PRON
and CCONJ
your PRON
peers NOUN
seem VERB
  SPACE
to PART
be AUX
the DET
only ADJ
miserable ADJ
ones NOUN
around ADP
bemoaning VERB
the DET
steady ADJ
loss NOUN
of ADP
  SPACE
patients NOUN
to ADP
the DET
alternative ADJ
camp NOUN
. PUNCT
Just ADV
look VERB
at ADP
Europe PROPN
. PUNCT
There PRON
has AUX
been AUX
a DET
steady ADJ
exodus NOUN
from ADP
' PUNCT
synthetic ADJ
' PUNCT
  SPACE
medicine NOUN
for ADP
over ADP
a DET
decade NOUN
now ADV
, PUNCT
and CCONJ
it PRON
'll AUX
be AUX
just ADV
a DET
matter NOUN
of ADP
time NOUN
before ADP
more ADJ
people NOUN
on ADP
this DET
continent NOUN
will AUX
abandon VERB
their PRON
drug NOUN
and CCONJ
white ADJ
  SPACE
coat NOUN
worship NOUN
as ADV
well ADV
and CCONJ
visit VERB
different ADJ
doctors NOUN
for ADP
different ADJ
needs NOUN
. PUNCT
GR NOUN
> X
     SPACE
You PRON
see VERB
Ron PROPN
, PUNCT
the DET
point NOUN
is AUX
n't PART
whether SCONJ
YOU PRON
and CCONJ
your PRON
patients NOUN
areGR NOUN
> X
  SPACE
convinced VERB
that SCONJ
whatever PRON
it PRON
is AUX
you PRON
do AUX
works NOUN
; PUNCT
it PRON
's AUX
whether SCONJ
what PRON
you PRON
do AUX
isGR PROPN
> X
  SPACE
MORE ADV
effective ADJ
in ADP
similar ADJ
cases NOUN
( PUNCT
of ADP
whatever PRON
it PRON
is AUX
you PRON
think VERB
you PRON
areGR NOUN
> X
  SPACE
treating VERB
) PUNCT
than SCONJ
cupping VERB
, PUNCT
bloodletting VERB
, PUNCT
and CCONJ
placebo NOUN
. PUNCT
This DET
is AUX
very ADV
interesting ADJ
. PUNCT
I PRON
have AUX
come VERB
exactly ADV
to ADP
the DET
same ADJ
conclusions NOUN
but CCONJ
in ADP
regards NOUN
to ADP
* PUNCT
conventional ADJ
* PUNCT
medicine NOUN
. PUNCT
You PRON
see VERB
, PUNCT
I PRON
do AUX
n't PART
just ADV
treat VERB
little ADJ
old ADJ
ladies NOUN
that PRON
would AUX
n't PART
know VERB
any DET
different ADJ
of ADP
what PRON
is AUX
being AUX
done VERB
, PUNCT
but CCONJ
a DET
bulk NOUN
of ADP
my PRON
patients NOUN
consist VERB
of ADP
teachers NOUN
, PUNCT
lawyers NOUN
, PUNCT
judges NOUN
, PUNCT
nurses NOUN
, PUNCT
accountants NOUN
, PUNCT
university NOUN
graduates NOUN
, PUNCT
and CCONJ
various ADJ
health NOUN
practitioners NOUN
. PUNCT
If SCONJ
these DET
people NOUN
have AUX
gotten VERB
results NOUN
with ADP
my PRON
method NOUN
after ADP
having VERB
been AUX
unsuccessful ADJ
with ADP
yours PRON
or CCONJ
their PRON
own ADJ
, PUNCT
I PRON
certainly ADV
would AUX
n't PART
lose VERB
any DET
  SPACE
sleep NOUN
over ADP
whether SCONJ
you PRON
or CCONJ
your PRON
peers NOUN
approve VERB
of ADP
my PRON
treatments NOUN
--- PUNCT
  SPACE
let VERB
's PRON
face VERB
it PRON
, PUNCT
with ADP
all DET
the DET
blunders NOUN
committed VERB
by ADP
" PUNCT
scientific ADJ
" PUNCT
MDs NOUN
  SPACE
over ADP
the DET
years NOUN
, PUNCT
I PRON
know VERB
a DET
lot NOUN
of ADP
people NOUN
who PRON
hold VERB
your PRON
* PUNCT
scientific ADJ
* PUNCT
  SPACE
method NOUN
in ADP
much ADV
lower ADJ
esteem NOUN
than SCONJ
they PRON
hold VERB
mine!GR PROPN
> X
  SPACE
As ADV
far ADV
as SCONJ
we PRON
know VERB
ayurveda NOUN
= SYM
crystals NOUN
= SYM
homeopathy NOUN
= PUNCT
Ron PROPN
RothGR PROPN
> X
  SPACE
which PRON
may AUX
all DET
equal ADJ
placebo NOUN
administered VERB
with ADP
appropriateGR NOUN
> X
  SPACE
trappings NOUN
... PUNCT
       SPACE
Sorry INTJ
, PUNCT
but CCONJ
I PRON
'm AUX
not PART
familiar ADJ
OR CCONJ
interested ADJ
with ADP
what PRON
appears VERB
to PART
be AUX
  SPACE
' PUNCT
NEW PROPN
AGE PROPN
' PART
medicine NOUN
( PUNCT
ayurveda PROPN
, PUNCT
crystals NOUN
) PUNCT
, PUNCT
with ADP
the DET
exception NOUN
of ADP
homeo- PROPN
pathy NOUN
, PUNCT
of ADP
which PRON
I PRON
took VERB
a DET
course NOUN
. PUNCT
But CCONJ
Gordon PROPN
, PUNCT
you PRON
already ADV
knew VERB
that SCONJ
- PUNCT
you PRON
just ADV
wanted VERB
to PART
make VERB
my PRON
system NOUN
look VERB
a DET
bit NOUN
more ADV
far ADV
out ADV
, PUNCT
right ADJ
? PUNCT
  SPACE
I PRON
use VERB
homeopathy NOUN
very ADV
little ADJ
, PUNCT
since SCONJ
my PRON
cellular ADJ
test NOUN
( PUNCT
EMR PROPN
) PUNCT
is AUX
hard ADJ
to PART
beat VERB
for ADP
accuracy NOUN
and CCONJ
minerals NOUN
are AUX
more ADV
predictable ADJ
, PUNCT
while SCONJ
homeopathy NOUN
does AUX
have AUX
a DET
problem NOUN
with ADP
reliability NOUN
, PUNCT
especially ADV
in ADP
acute ADJ
conditions NOUN
. PUNCT
An DET
exception NOUN
perhaps ADV
are AUX
homeopathic ADJ
nosodes NOUN
which PRON
act VERB
fairly ADV
quickly ADV
and CCONJ
are AUX
more ADV
dependable ADJ
in ADP
certain ADJ
viral ADJ
or CCONJ
bacterial ADJ
situations NOUN
. PUNCT
GR NOUN
> X
  SPACE
My PRON
colleagues NOUN
and CCONJ
I PRON
spend VERB
hours NOUN
debating VERB
study NOUN
designGR SYM
> X
  SPACE
and CCONJ
results NOUN
, PUNCT
even ADV
of ADP
therapies NOUN
currently ADV
accepted VERB
as SCONJ
" PUNCT
standard" NOUN
. PUNCT
GR NOUN
> X
  SPACE
As ADV
good ADJ
( PUNCT
well INTJ
, PUNCT
adequate ADJ
) PUNCT
scientists NOUN
, PUNCT
we PRON
are AUX
prepared ADJ
, PUNCT
* PUNCT
if SCONJ
GR PROPN
> X
  SPACE
presented VERB
with ADP
appropriate ADJ
data NOUN
* PUNCT
, PUNCT
to PART
abandon VERB
our PRON
most ADV
deeply ADV
held VERB
GR PROPN
> X
  SPACE
beliefs NOUN
in ADP
favor NOUN
of ADP
new ADJ
ideas NOUN
. PUNCT
I PRON
have AUX
met VERB
the DET
challenges NOUN
of ADP
hundreds NOUN
of ADP
sceptics NOUN
by ADP
verifying VERB
the DET
accuracy NOUN
of ADP
measuring VERB
their PRON
mineral NOUN
status NOUN
to ADP
their PRON
total ADJ
satisfac- ADJ
tion NOUN
--- PUNCT
in ADP
other ADJ
words NOUN
EVERYONE NOUN
INVOLVED PROPN
is AUX
happy ADJ
! PUNCT
If SCONJ
you PRON
were AUX
to PART
cook VERB
a DET
meal NOUN
, PUNCT
would AUX
you PRON
worry VERB
over ADP
whether SCONJ
EVERYONE PROPN
  SPACE
in ADP
this DET
world NOUN
would AUX
find VERB
it PRON
to ADP
their PRON
liking NOUN
, PUNCT
or CCONJ
only ADV
those DET
that PRON
end VERB
  SPACE
up ADP
eating VERB
it PRON
? PUNCT
Since SCONJ
I PRON
have AUX
financed VERB
every DET
research NOUN
project NOUN
that PRON
I PRON
have AUX
undertaken VERB
  SPACE
entirely ADV
myself PRON
, PUNCT
I PRON
do AUX
n't PART
need VERB
to PART
follow VERB
any DET
of ADP
your PRON
rules NOUN
or CCONJ
guide- ADJ
lines NOUN
to PART
satisfy VERB
any DET
aspects NOUN
of ADP
a DET
grant NOUN
application NOUN
, PUNCT
which PRON
YOU PRON
may AUX
  SPACE
have AUX
to PART
; PUNCT
neither CCONJ
am AUX
I PRON
concerned ADJ
of ADP
whether SCONJ
or CCONJ
not PART
my PRON
study NOUN
designs NOUN
  SPACE
meet VERB
your PRON
or CCONJ
anyone PRON
else ADV
's PART
criteria NOUN
or CCONJ
acceptance NOUN
. PUNCT
GR NOUN
> X
    SPACE
Sorry INTJ
Ron PROPN
, PUNCT
if SCONJ
conviction NOUN
were AUX
the DET
ruler NOUN
of ADP
truth NOUN
, PUNCT
a DET
flat ADJ
Earth PROPN
wouldGR PROPN
> X
  SPACE
still ADV
be AUX
the DET
center NOUN
of ADP
the DET
Universe PROPN
and CCONJ
epilepsy NOUN
a DET
curse NOUN
of ADP
the DET
gods NOUN
. PUNCT
                          SPACE
I PRON
think VERB
there PRON
would AUX
be AUX
more ADJ
justification NOUN
for ADP
an DET
uneducated ADJ
person NOUN
growing VERB
up ADP
in ADP
an DET
uncivilized ADJ
environment NOUN
to PART
believe VERB
in ADP
a DET
flat ADJ
earth NOUN
, PUNCT
than SCONJ
for ADP
a DET
civilized ADJ
, PUNCT
well INTJ
educated VERB
and CCONJ
scientifically ADV
trained VERB
mind NOUN
to PART
follow VERB
the DET
doctrine NOUN
of ADP
evolution NOUN
. PUNCT
Genetic ADJ
engineering NOUN
of ADP
course NOUN
is AUX
now ADV
the DET
final ADJ
frontier NOUN
to PART
show VERB
God PROPN
how ADV
it PRON
is AUX
( PUNCT
properly ADV
) PUNCT
done VERB
. PUNCT
Now ADV
we PRON
've AUX
become VERB
capable ADJ
of ADP
creating VERB
our PRON
own ADJ
paradise NOUN
and CCONJ
give VERB
disease NOUN
( PUNCT
and CCONJ
God PROPN
) PUNCT
the DET
boot NOUN
, PUNCT
right ADJ
? PUNCT
But CCONJ
just ADV
before ADP
we PRON
get VERB
rid VERB
of ADP
Him PRON
for ADP
good ADJ
, PUNCT
perhaps ADV
He PRON
could AUX
leave VERB
us PRON
some DET
pointers NOUN
on ADP
how ADV
to PART
solve VERB
a DET
couple NOUN
of ADP
tiny ADJ
problems NOUN
, PUNCT
such ADJ
as SCONJ
war NOUN
, PUNCT
  SPACE
poverty NOUN
, PUNCT
racism NOUN
, PUNCT
crime NOUN
, PUNCT
riots NOUN
, PUNCT
substance NOUN
abuse NOUN
... PUNCT
And CCONJ
one NUM
last ADJ
thing NOUN
, PUNCT
  SPACE
could AUX
He PRON
also ADV
give VERB
us PRON
a DET
hint NOUN
on ADP
how ADV
to PART
control VERB
natural ADJ
disasters NOUN
, PUNCT
the DET
weather NOUN
, PUNCT
and CCONJ
last ADJ
, PUNCT
but CCONJ
not PART
least ADJ
--- PUNCT
peace NOUN
? PUNCT
   SPACE
--Ron----- PROPN
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
  SPACE
The DET
Lab PROPN
called VERB
: PUNCT
Your PRON
brain NOUN
is AUX
ready ADJ
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58883From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboT PROPN
( PUNCT
> X
Russell PROPN
Turpin PROPN
responds VERB
to ADP
article NOUN
by ADP
Ron PROPN
Roth PROPN
: PUNCT
T(>T NOUN
( PUNCT
> X
R NOUN
> X
... PUNCT
I PRON
do AUX
n't PART
doubt VERB
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
alive ADJ
and CCONJ
well ADV
withT PROPN
( PUNCT
> X
R NOUN
> X
EVERY DET
medical ADJ
modality NOUN
- PUNCT
estimated VERB
by ADP
some DET
to PART
be AUX
around ADV
20+%,T NUM
( PUNCT
> X
R NOUN
> X
but CCONJ
why ADV
would AUX
it PRON
be AUX
higher ADJ
with ADP
alternative NOUN
versus ADP
conventional ADJ
T PROPN
( PUNCT
> X
R NOUN
> X
medicine?"T NOUN
( PUNCT
> X
  SPACE
T PROPN
( PUNCT
> X
  SPACE
How ADV
do AUX
you PRON
know VERB
that SCONJ
it PRON
is AUX
? PUNCT
  SPACE
If SCONJ
you PRON
could AUX
show VERB
this DET
by ADP
careful ADJ
T PROPN
( PUNCT
> X
  SPACE
measurement NOUN
, PUNCT
I PRON
suspect VERB
you PRON
would AUX
have AUX
a DET
paper NOUN
worthy ADJ
of ADP
publicationT PROPN
( PUNCT
> X
  SPACE
in ADP
a DET
variety NOUN
of ADP
medical ADJ
journals NOUN
. PUNCT
  SPACE
T PROPN
( PUNCT
> X
  SPACE
T PROPN
( PUNCT
> X
  SPACE
Russell PROPN
  SPACE
If SCONJ
you PRON
notice VERB
the DET
question NOUN
mark NOUN
at ADP
the DET
end NOUN
of ADP
the DET
sentence NOUN
, PUNCT
I PRON
was AUX
addressing VERB
that DET
very ADJ
question NOUN
to ADP
that DET
person NOUN
( PUNCT
who PRON
has AUX
a DET
dog NOUN
named VERB
sugar NOUN
) PUNCT
and CCONJ
a DET
few ADJ
other ADJ
people NOUN
who PRON
seem VERB
to PART
be AUX
of ADP
the DET
same ADJ
opinion NOUN
. PUNCT
I PRON
would AUX
love VERB
to PART
have AUX
anyone PRON
come VERB
up ADP
with ADP
a DET
study NOUN
to PART
support VERB
their PRON
claims NOUN
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
more ADV
prevalent ADJ
with ADP
alternative NOUN
compared VERB
to ADP
conventional ADJ
medicine NOUN
. PUNCT
Perhaps ADV
the DET
study NOUN
could AUX
also ADV
include VERB
how ADV
patients NOUN
respond VERB
if SCONJ
they PRON
are AUX
dissatisfied ADJ
with ADP
a DET
conventional ADJ
versus ADP
an DET
alternative ADJ
doctor NOUN
, PUNCT
i.e. X
which PRON
practitioner NOUN
is AUX
more ADV
likely ADJ
to PART
get AUX
punched VERB
in ADP
the DET
face NOUN
when ADV
the DET
success NOUN
of ADP
the DET
treatment NOUN
does AUX
n't PART
meet VERB
the DET
expectations NOUN
of ADP
  SPACE
the DET
patient NOUN
! PUNCT
  SPACE
--Ron-- PROPN
--- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
When ADV
in ADP
doubt NOUN
, PUNCT
make VERB
it PRON
sound VERB
convincing ADJ
! PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58884From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics)-*----Cross X
- PUNCT
posted VERB
and CCONJ
with ADP
followups NOUN
directed VERB
to ADP
talk.politics.theory.-*----In PROPN
article NOUN
< X
79700@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
Indeed ADV
, PUNCT
we PRON
are AUX
today NOUN
a DET
nation NOUN
at ADP
risk NOUN
! PUNCT
  SPACE
The DET
threat NOUN
is AUX
not PART
from ADP
bad ADJ
genes NOUN
, PUNCT
> X
but CCONJ
bad ADJ
memes NOUN
! PUNCT
  SPACE
Memes PROPN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
genes NOUN
> X
which PRON
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
> X
> X
We PRON
must AUX
expand VERB
the DET
public ADJ
- PUNCT
health NOUN
laws NOUN
to PART
include VERB
quarantine NOUN
of ADP
people NOUN
> X
with ADP
harmful ADJ
memes NOUN
. PUNCT
... PUNCT
In ADP
other ADJ
words NOUN
, PUNCT
we PRON
should AUX
jail VERB
people NOUN
who PRON
say VERB
the DET
wrong ADJ
things NOUN
. PUNCT
  SPACE
In ADP
this DET
advocacy NOUN
, PUNCT
we PRON
can AUX
see VERB
a DET
truly ADV
ugly ADJ
meme NOUN
. PUNCT
Does AUX
Mark PROPN
Robert PROPN
Thorson PROPN
advocate NOUN
jailing NOUN
himself?RussellNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58885From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
H NOUN
E NOUN
L NOUN
P NOUN
   SPACE
M NOUN
E NOUN
   SPACE
--- PUNCT
> X
desperate ADJ
with ADP
some DET
VD-*----In PROPN
article NOUN
< X
1993Apr17.115716.19963@debbie.cc.nctu.edu.tw NUM
> X
mjliu@csie.nctu.edu.tw PROPN
( PUNCT
Ming PROPN
- PUNCT
zhou PROPN
Liu PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
have AUX
bad ADJ
luck NOUN
and CCONJ
got VERB
a DET
VD PROPN
called VERB
< X
Granuloma PROPN
ingunale NOUN
> X
, PUNCT
which PRON
involves VERB
> X
the DET
growth NOUN
of ADP
granules NOUN
in ADP
the DET
groin NOUN
. PUNCT
  SPACE
I PRON
found VERB
out ADP
about ADP
it PRON
by ADP
checking VERB
> X
medicine NOUN
books NOUN
and CCONJ
I PRON
found VERB
the DET
prescriptions NOUN
. PUNCT
... PUNCT
Ming PROPN
- PUNCT
zhou PROPN
Liu PROPN
's PART
main ADJ
problem NOUN
is AUX
that SCONJ
he PRON
has AUX
an DET
incompetentphysician PROPN
-- PUNCT
himself PRON
. PUNCT
  SPACE
This DET
physician NOUN
has AUX
diagnosed VERB
a DET
problem NOUN
, PUNCT
even ADV
though SCONJ
he PRON
probably ADV
has AUX
never ADV
seen VERB
the DET
diagnosed VERB
diseasebefore NOUN
and CCONJ
has AUX
no DET
idea NOUN
of ADP
what PRON
kinds NOUN
of ADP
problems NOUN
can AUX
presentsimilar VERB
symptoms NOUN
. PUNCT
  SPACE
This DET
physician NOUN
now ADV
wants VERB
to PART
treat VERB
his PRON
firstcase NOUN
of ADP
this DET
disease NOUN
without ADP
any DET
help NOUN
from ADP
the DET
medical ADJ
community NOUN
. PUNCT
The DET
best ADJ
thing NOUN
Ming PROPN
- PUNCT
zhou PROPN
Liu PROPN
could AUX
do AUX
is AUX
fire VERB
his PRON
currentphysician NOUN
and CCONJ
seek VERB
out ADP
a DET
better ADJ
one NUM
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58886From NUM
: PUNCT
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver)Subject NUM
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskSome NOUN
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that SCONJ
carcinogens NOUN
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58887From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
[ PUNCT
reply VERB
to ADP
keith@actrix.gen.nz PROPN
( PUNCT
Keith PROPN
Stewart PROPN
) PUNCT
] PUNCT
> X
My PRON
wife NOUN
has AUX
become VERB
interested ADJ
through ADP
an DET
acquaintance NOUN
in ADP
Post PROPN
- PROPN
Polio PROPN
> X
Syndrome PROPN
This DET
apparently ADV
is AUX
not PART
recognised VERB
in ADP
New PROPN
Zealand PROPN
and CCONJ
different ADJ
> X
symptons NOUN
( PUNCT
eg PROPN
chest PROPN
complaints NOUN
) PUNCT
are AUX
treated VERB
separately ADV
. PUNCT
Does AUX
anone NOUN
have AUX
> X
any DET
information NOUN
on ADP
it PRON
It PRON
would AUX
help VERB
if SCONJ
you PRON
( PUNCT
and CCONJ
anyone PRON
else ADV
asking VERB
for ADP
medical ADJ
information NOUN
onsome PROPN
subject NOUN
) PUNCT
could AUX
ask VERB
specific ADJ
questions NOUN
, PUNCT
as SCONJ
no DET
one NOUN
is AUX
likely ADJ
to PART
typein VERB
a DET
textbook NOUN
chapter NOUN
covering VERB
all DET
aspects NOUN
of ADP
the DET
subject NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
arelooking VERB
for ADP
a DET
comprehensive ADJ
review NOUN
, PUNCT
ask VERB
your PRON
local ADJ
hospital NOUN
librarian NOUN
. PUNCT
Most ADJ
are AUX
happy ADJ
to PART
help VERB
with ADP
a DET
request NOUN
of ADP
this DET
sort NOUN
. PUNCT
Briefly ADV
, PUNCT
this DET
is AUX
a DET
condition NOUN
in ADP
which PRON
patients NOUN
who PRON
have AUX
significantresidual ADJ
weakness NOUN
from ADP
childhood NOUN
polio NOUN
notice NOUN
progression NOUN
of ADP
theweakness NOUN
as SCONJ
they PRON
get VERB
older ADJ
. PUNCT
  SPACE
One NUM
theory NOUN
is AUX
that SCONJ
the DET
remaining VERB
motorneurons NOUN
have AUX
to PART
work VERB
harder ADV
and CCONJ
so ADV
die VERB
sooner ADV
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58888From NUM
: PUNCT
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
about ADP
a DET
crash NOUN
program NOUN
in ADP
basic ADJ
immunological ADJ
research?In PROPN
article NOUN
< X
93099.141148C09630GK@wuvmd.wustl.edu NUM
> X
, PUNCT
C09630GK@WUVMD PROPN
( PUNCT
Gary PROPN
Kronk PROPN
) PUNCT
writes:| PROPN
> X
I PRON
have AUX
been AUX
contemplating VERB
this DET
idea NOUN
for ADP
some DET
time NOUN
as ADV
well ADV
. PUNCT
I PRON
am AUX
not PART
a| VERB
> X
doctor NOUN
, PUNCT
but CCONJ
my PRON
wife NOUN
is AUX
a DET
nurse NOUN
and CCONJ
I PRON
know VERB
a DET
lot NOUN
of ADP
doctors NOUN
and CCONJ
nurses.| PROPN
> X
The DET
point NOUN
here ADV
being AUX
that SCONJ
doctors NOUN
and CCONJ
nurses NOUN
do AUX
not PART
seem VERB
to PART
get AUX
sick| PROPN
> X
nearly ADV
as ADV
much ADV
as SCONJ
people NOUN
outside ADP
the DET
medical ADJ
profession NOUN
. PUNCT
This DET
is AUX
a DET
lovely ADJ
area NOUN
for ADP
anecdotes NOUN
, PUNCT
but CCONJ
I PRON
am AUX
sure ADJ
you PRON
are AUX
on ADP
to ADP
something PRON
. PUNCT
As SCONJ
a DET
physician NOUN
, PUNCT
I PRON
almost ADV
never ADV
get VERB
sick ADJ
: PUNCT
usually ADV
, PUNCT
when ADV
something PRON
horrendousis NOUN
going VERB
around ADV
, PUNCT
I PRON
either CCONJ
do AUX
n't PART
get AUX
it PRON
at ADV
all ADV
or CCONJ
get AUX
a DET
very ADV
mild ADJ
case NOUN
. PUNCT
When ADV
I PRON
do AUX
get AUX
really ADV
sick ADJ
, PUNCT
it PRON
is AUX
always ADV
something PRON
unusual ADJ
. PUNCT
This DET
was AUX
not PART
the DET
situation NOUN
when ADV
I PRON
was AUX
in ADP
medical ADJ
school NOUN
, PUNCT
particularly ADV
onpediatrics NOUN
. PUNCT
I PRON
never ADV
had AUX
younger ADJ
siblings NOUN
myself PRON
, PUNCT
and CCONJ
when ADV
I PRON
went VERB
on ADP
thepediatric ADJ
wards NOUN
I PRON
suddenly ADV
found VERB
myself PRON
confronting VERB
all DET
sorts NOUN
of ADP
infectiouschallenges NOUN
that SCONJ
my PRON
body NOUN
was AUX
not PART
ready ADJ
for ADP
. PUNCT
Pediatrics NOUN
for ADP
me PRON
was AUX
three NUM
solidmonths NOUN
of ADP
illness NOUN
, PUNCT
and CCONJ
I PRON
had AUX
a DET
temp NOUN
of ADP
104 NUM
when ADV
I PRON
took VERB
the DET
final ADJ
exam!I NOUN
think VERB
what PRON
happens VERB
is AUX
that SCONJ
during ADP
training NOUN
, PUNCT
and CCONJ
beyond ADP
, PUNCT
we PRON
are AUX
constantlyexposed VERB
to ADP
new ADJ
things NOUN
, PUNCT
and CCONJ
we PRON
have AUX
the DET
usual ADJ
reactions NOUN
to ADP
them PRON
, PUNCT
so SCONJ
that SCONJ
lateron PROPN
, PUNCT
when ADV
challenged VERB
with ADP
something PRON
, PUNCT
it PRON
is AUX
more ADV
likely ADJ
a DET
re NOUN
- NOUN
exposure NOUN
for ADP
us PRON
, PUNCT
so ADV
we PRON
deal VERB
with ADP
it PRON
well INTJ
and CCONJ
get AUX
a DET
mild ADJ
illness NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
it PRON
is AUX
thatthe DET
immune ADJ
system NOUN
is AUX
hyped VERB
up ADP
in ADP
any DET
way NOUN
. PUNCT
Also ADV
, PUNCT
do AUX
n't PART
forget VERB
that SCONJ
thehospital ADJ
flora PROPN
is AUX
very ADV
different ADJ
from ADP
the DET
home NOUN
, PUNCT
and CCONJ
we PRON
carry VERB
a DET
lot NOUN
of ADP
thataround.-kmNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58889From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C5Kv7p.JM3@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>>>In PROPN
article NOUN
< X
1993Apr15.200344.28013@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>What DET
is AUX
wrong ADJ
with ADP
the DET
above ADJ
observation NOUN
is AUX
that SCONJ
it PRON
explicitly ADV
gives VERB
the>>impression PROPN
( PUNCT
and CCONJ
you PRON
may AUX
not PART
in ADP
fact NOUN
hold VERB
this DET
view NOUN
) PUNCT
that SCONJ
the DET
common ADJ
( PUNCT
perhaps>>even PUNCT
the DET
" PUNCT
correct ADJ
" PUNCT
) PUNCT
approach NOUN
for ADP
a DET
scientist NOUN
to PART
follow VERB
is AUX
to PART
sit VERB
around>>having VERB
flights NOUN
of ADP
fancy ADJ
and CCONJ
scheming VERB
on ADP
the DET
basis NOUN
of ADP
his PRON
jealousies NOUN
and>>petty PROPN
hatreds.>>Flights NOUN
of ADP
fancy NOUN
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucial ADJ
> NOUN
thing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
use NOUN
> X
unless SCONJ
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
I PRON
've AUX
known VERB
a DET
lot NOUN
of ADP
scientists NOUN
> X
whose PRON
fantasies NOUN
lead VERB
them PRON
on ADP
to ADP
creative ADJ
work NOUN
; PUNCT
usually ADV
they PRON
wo AUX
n't PART
admit VERB
> X
out ADV
loud ADV
what PRON
the DET
fantasy NOUN
was AUX
, PUNCT
prior ADV
to ADP
the DET
consumption NOUN
of ADP
a DET
few ADJ
beers NOUN
. PUNCT
The DET
danger NOUN
in ADP
philosophizing VERB
about ADP
science NOUN
is AUX
that DET
theory NOUN
and CCONJ
generalization NOUN
can AUX
end VERB
up ADP
being AUX
far ADV
removed VERB
from ADP
the DET
actual ADJ
day NOUN
- PUNCT
to ADP
- PUNCT
day NOUN
of ADP
the DET
grunt NOUN
at ADP
thebench PROPN
. PUNCT
  SPACE
Yes INTJ
, PUNCT
its PRON
great ADJ
to PART
be AUX
involved VERB
in ADP
a DET
process NOUN
were AUX
I PRON
can AUX
walk VERB
into ADP
thelab NOUN
after ADP
a DET
heavy ADJ
night NOUN
of ADP
dreaming NOUN
and CCONJ
just ADV
do AUX
something PRON
for ADP
the DET
hell NOUN
of ADP
it(as NOUN
long ADV
as SCONJ
my PRON
advisor NOUN
does AUX
n't PART
catch VERB
me PRON
- PUNCT
which PRON
is AUX
easy ADJ
enough ADV
to PART
do AUX
) PUNCT
, PUNCT
but CCONJ
stamping VERB
out ADP
such ADJ
behavior NOUN
seems VERB
to PART
be AUX
the DET
purpose NOUN
in ADP
life NOUN
of ADP
grant NOUN
review NOUN
committees NOUN
and CCONJ
the DET
peer NOUN
review NOUN
process NOUN
in ADP
general ADJ
. PUNCT
  SPACE
In ADP
today NOUN
's PART
world NOUN
that DET
's AUX
what PRON
determines VERB
what PRON
science NOUN
is AUX
: PUNCT
what PRON
gets VERB
funded ADJ
. PUNCT
  SPACE
And CCONJ
a DET
damn ADV
good ADJ
thing NOUN
to ADP
. PUNCT
Flights NOUN
of ADP
fantasy NOUN
just ADV
do AUX
n't PART
have AUX
much ADJ
chance NOUN
of ADP
producing VERB
anything PRON
, PUNCT
at ADP
least ADJ
not PART
in ADP
biomedical ADJ
research NOUN
. PUNCT
  SPACE
The DET
surest ADJ
way NOUN
for ADP
a DET
graduate NOUN
student NOUN
toruin VERB
their PRON
life NOUN
is AUX
to PART
work VERB
in ADP
a DET
lab NOUN
where ADV
the DET
boss NOUN
is AUX
more ADV
concerned ADJ
with ADP
fleshing VERB
out ADP
his PRON
/ SYM
her PRON
fantasies NOUN
than SCONJ
with ADP
having VERB
the DET
student NOUN
work NOUN
on ADP
a DET
projectthat NOUN
actually ADV
has AUX
a DET
good ADJ
chance NOUN
of ADP
producing VERB
some DET
results NOUN
. PUNCT
  SPACE
MD PROPN
's PART
seem VERB
to PART
be AUX
particularly ADV
prone ADJ
to ADP
this DET
aberrant ADJ
behavior NOUN
. PUNCT
  SPACE
> X
( PUNCT
Simple ADJ
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNA NOUN
> X
electrophoresis NOUN
gel NOUN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
hoping VERB
that SCONJ
> X
he'd PUNCT
seen VERB
some DET
essential ADJ
part NOUN
of ADP
the DET
control NOUN
mechanism NOUN
for ADP
eukaryotic ADJ
> PROPN
genes NOUN
. PUNCT
  SPACE
This DET
fantasy NOUN
led VERB
him PRON
to PART
sequence VERB
samples NOUN
of ADP
the DET
band NOUN
and CCONJ
carry VERB
out ADP
> X
binding VERB
assays NOUN
. PUNCT
  SPACE
The DET
result NOUN
was AUX
a DET
well ADV
- PUNCT
conserved VERB
, PUNCT
400 NUM
or CCONJ
so ADV
bp PROPN
, PUNCT
sequence NOUN
> X
that PRON
occurs VERB
about ADV
500,000 NUM
times NOUN
in ADP
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
Unfortunately ADV
for ADP
> X
Warren PROPN
's PART
fantasy NOUN
, PUNCT
it PRON
turns VERB
out ADP
to PART
be AUX
a DET
transposon NOUN
that PRON
is AUX
present ADJ
in ADP
> X
so ADV
many ADJ
copies NOUN
because SCONJ
it PRON
replicates VERB
itself PRON
and CCONJ
copies NOUN
itself PRON
back ADV
into ADP
> X
the DET
genome NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
the DET
characteristics NOUN
of ADP
transposons NOUN
were AUX
> X
much ADV
elucidated VERB
; PUNCT
the DET
necessity NOUN
of ADP
a DET
cellular ADJ
reverse NOUN
transcriptase NOUN
was AUX
> X
recognized VERB
; PUNCT
and CCONJ
the DET
standard ADJ
method NOUN
of ADP
recognizing VERB
human ADJ
DNA PROPN
was AUX
created.>Other PROPN
species NOUN
have AUX
different ADJ
sets NOUN
of ADP
transposons NOUN
. PUNCT
  SPACE
Fortunately ADV
for ADP
me,>Warren PROPN
and CCONJ
I PRON
used VERB
to PART
eat VERB
dinner NOUN
at ADP
T.G.I. PROPN
Fridays VERB
all DET
the DET
time.)I NOUN
have AUX
to PART
agree VERB
with ADP
Gary PROPN
Merrill PROPN
's PART
response NOUN
to ADP
this DET
. PUNCT
  SPACE
I PRON
've AUX
read VERB
alot NOUN
of ADP
theAlu NOUN
and CCONJ
middle ADJ
repetitive ADJ
sequence NOUN
work NOUN
and CCONJ
it PRON
's AUX
really ADV
very ADV
interesting ADJ
, PUNCT
good ADJ
work NOUN
with ADP
implications NOUN
for ADP
many ADJ
fields NOUN
in ADP
molecular ADJ
genetics NOUN
. PUNCT
  SPACE
It PRON
's AUX
really ADV
an DET
example NOUN
of ADP
how ADV
a DET
well ADV
reasoned VERB
project NOUN
turned VERB
up ADP
interesting ADJ
results NOUN
that PRON
were AUX
unexpected ADJ
. PUNCT
MikeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58890From NUM
: PUNCT
jeffp@vetmed.wsu.edu PROPN
( PUNCT
Jeff PROPN
Parke)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lyme NOUN
vaccinekathleen NOUN
richards NOUN
( PUNCT
kilty@ucrengr NOUN
) PUNCT
wrote VERB
: PUNCT
> X
My PRON
nearly-13 NUM
year NOUN
old ADJ
Pomeranian PROPN
had AUX
a DET
nasty ADJ
reaction NOUN
to ADP
this DET
vaccination NOUN
. PUNCT
> X
... PUNCT
  SPACE
Suffice VERB
it PRON
to PART
say VERB
, PUNCT
we PRON
will AUX
not PART
> X
vaccinate VERB
her PRON
for ADP
Lyme PROPN
disease NOUN
again ADV
. PUNCT
  SPACE
She PRON
's AUX
been AUX
camping VERB
through ADP
some DET
6 NUM
> X
states NOUN
and CCONJ
has AUX
backpacked VERB
with ADP
us PRON
as ADV
well ADV
and CCONJ
we PRON
are AUX
used VERB
to ADP
watching VERB
for ADP
ticks NOUN
> X
and CCONJ
dealing VERB
with ADP
them PRON
and CCONJ
we PRON
simply ADV
wo AUX
n't PART
take VERB
her PRON
to PART
really ADV
active ADJ
Lyme PROPN
> X
disease NOUN
areas NOUN
.... PUNCT
Not PART
to PART
drag VERB
this DET
out ADP
anymore ADV
, PUNCT
but CCONJ
.... PUNCT
Many ADJ
veterinarians NOUN
feel VERB
that SCONJ
Lyme PROPN
Disease PROPN
in ADP
dogs NOUN
is AUX
so ADV
easy ADJ
to PART
treat VERB
thatin NOUN
an DET
endemic ADJ
area NOUN
, PUNCT
they PRON
often ADV
just ADV
give VERB
the DET
appropriate ADJ
antibiotics NOUN
to ADP
dogspresenting VERB
with ADP
lameness NOUN
, PUNCT
swollen ADJ
joints NOUN
, PUNCT
+ X
/- PUNCT
fever NOUN
. PUNCT
A DET
recent ADJ
paper NOUN
( PUNCT
March PROPN
1993 NUM
) PUNCT
has AUX
finally ADV
established VERB
that SCONJ
Lyme PROPN
disease NOUN
in ADP
dogscan PROPN
be AUX
reproduced VERB
in ADP
a DET
controlled VERB
experimentaly ADJ
setting NOUN
. PUNCT
  SPACE
This DET
has AUX
beenan PROPN
ellusive ADJ
matter NOUN
for ADP
researchers NOUN
, PUNCT
and CCONJ
is AUX
one NUM
of ADP
the DET
fundamental ADJ
requirementsfor NOUN
many ADJ
to PART
acknowledge VERB
an DET
agent NOUN
as SCONJ
being AUX
causitive ADJ
of ADP
a DET
particular ADJ
disease NOUN
. PUNCT
Up ADP
to ADP
now ADV
, PUNCT
only ADV
the DET
vaccine NOUN
manufacturer NOUN
has AUX
been AUX
able ADJ
to PART
" PUNCT
prove VERB
" PUNCT
thatthe ADJ
disease NOUN
exists VERB
. PUNCT
This DET
paper NOUN
is AUX
noteworthy ADJ
in ADP
two NUM
other ADJ
regards:1 NUM
) PUNCT
None NOUN
of ADP
the DET
animals NOUN
they PRON
infected VERB
were AUX
treated VERB
in ADP
any DET
way NOUN
. PUNCT
  SPACE
The DET
dogshad NOUN
episodes NOUN
of ADP
lameness NOUN
during ADP
a DET
6 NUM
- SYM
8 NUM
week NOUN
period NOUN
which PRON
occurred VERB
2 NUM
- SYM
5months NUM
after ADP
exposure NOUN
. PUNCT
  SPACE
After ADP
this DET
period NOUN
, PUNCT
none NOUN
showed VERB
any DET
furtherclinical ADJ
signs NOUN
up ADP
to ADP
the DET
17 NUM
month NOUN
observation NOUN
period NOUN
of ADP
the DET
study NOUN
. PUNCT
  SPACE
Sothese PROPN
are AUX
proven VERB
, PUNCT
clinically ADV
sick ADJ
Lyme PROPN
patients NOUN
showing VERB
spontaneousrecovery NOUN
without ADP
the DET
benefit NOUN
of ADP
drug NOUN
treatment NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
observationslonger NOUN
than SCONJ
17 NUM
months NOUN
will AUX
be AUX
necessary ADJ
to PART
be AUX
sure ADJ
the DET
disease NOUN
doesn'thave VERB
the DET
same ADJ
chronicity NOUN
that PRON
some DET
see VERB
in ADP
humans.2 PROPN
) PUNCT
  SPACE
The DET
addendum NOUN
to ADP
the DET
paper NOUN
calls VERB
into ADP
question NOUN
the DET
techniques NOUN
used VERB
by ADP
thevaccine ADJ
manufacturer NOUN
to PART
validate VERB
the DET
vaccine NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
they PRON
wantthe VERB
world NOUN
to PART
use VERB
the DET
model NOUN
they PRON
developed VERB
in ADP
order NOUN
to PART
test VERB
vaccineefficacy NOUN
. PUNCT
Anyway INTJ
, PUNCT
maybe ADV
we PRON
will AUX
see VERB
some DET
independent ADJ
, PUNCT
scientifically ADV
sound VERB
evaluationsof NOUN
this DET
vaccine NOUN
in ADP
the DET
next ADJ
year NOUN
or CCONJ
so.--Jeff ADV
Parke PROPN
< X
jeffp@pgavin1.vetmed.wsu.edu>also NOUN
: PUNCT
   SPACE
jeffp@WSUVM1.bitnet PUNCT
    SPACE
AOL PROPN
: PUNCT
JeffParkeWashington PROPN
State PROPN
University PROPN
College PROPN
of ADP
Veterinary PROPN
Medicine PROPN
class NOUN
of ADP
1994Pullman NUM
, PUNCT
WA PROPN
  SPACE
99164 NUM
- PUNCT
7012Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58891From NUM
: PUNCT
kfl@access.digex.com PROPN
( PUNCT
Keith PROPN
F. PROPN
Lynch)Subject PROPN
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
19600@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
Keith PROPN
is AUX
the DET
only ADJ
person NOUN
I PRON
have AUX
ever ADV
heard VERB
of ADP
that DET
keeps VERB
the DET
weight NOUN
> X
off ADV
without ADP
any DET
conscious ADJ
effort NOUN
to PART
control VERB
eating VERB
behavior NOUN
. PUNCT
  SPACE
... PUNCT
most ADJ
> X
of ADP
us PRON
have AUX
to PART
diet VERB
a DET
lot NOUN
to PART
keep VERB
from ADP
going VERB
back ADV
to ADP
morbid NOUN
obesity NOUN
. PUNCT
I PRON
attribute VERB
my PRON
success NOUN
to ADP
several ADJ
factors NOUN
: PUNCT
Very ADV
low ADJ
fat NOUN
. PUNCT
  SPACE
Except SCONJ
when ADV
someone PRON
else ADV
has AUX
cooked VERB
a DET
meal NOUN
for ADP
me PRON
, PUNCT
I PRON
only ADV
eat VERB
fruit NOUN
, PUNCT
vegetables NOUN
, PUNCT
and CCONJ
whole ADJ
grain NOUN
or CCONJ
bran NOUN
cereals NOUN
. PUNCT
  SPACE
Iestimate PROPN
I PRON
only ADV
get VERB
about ADV
5 NUM
to PART
10 NUM
percent NOUN
of ADP
my PRON
calories NOUN
from ADP
fat NOUN
. PUNCT
Very ADV
little ADJ
sugar NOUN
or CCONJ
salt NOUN
. PUNCT
Very ADV
high ADJ
fiber NOUN
. PUNCT
  SPACE
Most ADJ
Americans PROPN
get VERB
about ADV
10 NUM
grams NOUN
. PUNCT
  SPACE
25 NUM
to PART
35 NUM
arerecommended VERB
. PUNCT
  SPACE
I PRON
get VERB
between ADP
50 NUM
and CCONJ
150 NUM
. PUNCT
  SPACE
Sometimes ADV
200 NUM
. PUNCT
  SPACE
( PUNCT
I PRON
've AUX
heardof ADJ
people NOUN
taking VERB
fiber NOUN
pills NOUN
. PUNCT
  SPACE
It PRON
seems VERB
unlikely ADJ
that SCONJ
pills NOUN
cancontain VERB
enough ADJ
fiber NOUN
to PART
make VERB
a DET
difference NOUN
. PUNCT
  SPACE
It PRON
would AUX
be AUX
about ADV
aslikely ADV
as SCONJ
someone PRON
getting VERB
fat ADJ
by ADP
popping VERB
fat ADJ
pills NOUN
. PUNCT
  SPACE
Tablets NOUN
arejust ADV
too ADV
small ADJ
, PUNCT
unless SCONJ
you PRON
snarf VERB
down ADP
hundreds NOUN
of ADP
them PRON
daily.)My PROPN
" PUNCT
clean VERB
your PRON
plate NOUN
" PUNCT
conditioning NOUN
works NOUN
* PUNCT
for ADP
* PUNCT
me PRON
. PUNCT
  SPACE
Eating VERB
the DET
last10 NOUN
% NOUN
takes VERB
half DET
my PRON
eating VERB
time NOUN
, PUNCT
and CCONJ
gives VERB
satiety NOUN
a DET
chance NOUN
to PART
catchup VERB
, PUNCT
so ADV
I PRON
do AUX
n't PART
still ADV
feel VERB
hungry ADJ
and CCONJ
go VERB
start VERB
eating VERB
something PRON
else ADV
. PUNCT
I PRON
do AUX
n't PART
eat VERB
when ADV
I PRON
'm AUX
not PART
hungry ADJ
( PUNCT
unless SCONJ
I PRON
'm AUX
sure ADJ
I PRON
'll AUX
get AUX
hungryshortly ADV
, PUNCT
and CCONJ
eating VERB
wo AUX
n't PART
be AUX
practical ADJ
then).I NUM
bike NOUN
to PART
work VERB
, PUNCT
22 NUM
miles NOUN
a DET
day NOUN
, PUNCT
year NOUN
round NOUN
. PUNCT
  SPACE
Fast ADV
. PUNCT
  SPACE
I PRON
also ADV
bike VERB
tostores NOUN
, PUNCT
movies NOUN
, PUNCT
and CCONJ
everywhere ADV
else ADV
, PUNCT
as SCONJ
I PRON
've AUX
never ADV
owned VERB
a DET
car NOUN
. PUNCT
I PRON
estimate VERB
this DET
burns VERB
about ADV
1000 NUM
calories NOUN
a DET
day NOUN
. PUNCT
  SPACE
It PRON
also ADV
helpsbuild VERB
and CCONJ
maintain VERB
muscle NOUN
mass NOUN
, PUNCT
prevent VERB
insulin NOUN
resistance NOUN
( PUNCT
diabetesruns NOUN
in ADP
my PRON
family NOUN
) PUNCT
, PUNCT
and CCONJ
increase VERB
my PRON
metabolism NOUN
. PUNCT
  SPACE
( PUNCT
Even ADV
so ADV
, PUNCT
mymetabolism NOUN
is AUX
so ADV
low ADJ
that SCONJ
when ADV
I PRON
'm AUX
at ADP
rest NOUN
I PRON
'm AUX
most ADV
comfortablewith X
a DET
temperature NOUN
in ADP
the DET
90s NOUN
( PUNCT
F PROPN
) PUNCT
, PUNCT
and CCONJ
usually ADV
wear VERB
a DET
sweater NOUN
ifit NOUN
drops NOUN
to ADP
80 NUM
. PUNCT
) PUNCT
  SPACE
Cycling PROPN
also ADV
motivates VERB
me PRON
to PART
avoid VERB
every DET
excessounce NOUN
. PUNCT
  SPACE
( PUNCT
Cyclists NOUN
routinely ADV
pay VERB
a DET
premium NOUN
for ADP
cycling NOUN
products NOUN
thatweigh VERB
slightly ADV
less ADJ
than SCONJ
others NOUN
. PUNCT
  SPACE
But CCONJ
it PRON
's AUX
easier ADJ
and CCONJ
cheaper ADJ
to PART
trimweight VERB
from ADP
the DET
rider NOUN
than SCONJ
from ADP
the DET
vehicle.)There PROPN
's AUX
no DET
question NOUN
in ADP
my PRON
mind NOUN
that SCONJ
my PRON
metabolism NOUN
is AUX
radicallydifferent ADJ
from ADP
that DET
of ADP
most ADJ
people NOUN
who PRON
have AUX
never ADV
been AUX
fat ADJ
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
it PRON
is AUX
n't PART
different ADJ
in ADP
a DET
way NOUN
that PRON
precludes VERB
excellent ADJ
health NOUN
. PUNCT
Obviously ADV
, PUNCT
I PRON
ca AUX
n't PART
swear VERB
that SCONJ
every DET
obese ADJ
person NOUN
who PRON
does AUX
what PRON
I'vedone PROPN
will AUX
have AUX
the DET
success NOUN
I PRON
did AUX
. PUNCT
  SPACE
But CCONJ
I PRON
've AUX
never ADV
yet ADV
heard VERB
of ADP
one NOUN
whodid ADV
try VERB
it PRON
and CCONJ
did AUX
n't PART
succeed VERB
. PUNCT
> X
I PRON
think VERB
all DET
of ADP
us PROPN
cycle NOUN
. PUNCT
  SPACE
One NOUN
's PART
success NOUN
depends VERB
on ADP
how ADV
large ADJ
the DET
> X
fluctuations NOUN
in ADP
the DET
cycle NOUN
are AUX
. PUNCT
  SPACE
Some DET
people NOUN
can AUX
cycle VERB
only ADV
5 NUM
pounds NOUN
. PUNCT
I'm PRON
sure ADJ
everyone PRON
's PART
weight NOUN
cycles NOUN
, PUNCT
whether SCONJ
or CCONJ
not PART
they PRON
've AUX
ever ADV
been AUX
fat ADJ
. PUNCT
I PRON
usually ADV
eat VERB
extremely ADV
little ADJ
salt NOUN
. PUNCT
  SPACE
When ADV
I PRON
do AUX
eat VERB
something PRON
salty ADJ
, PUNCT
my PRON
weight NOUN
can AUX
increase VERB
overnight ADV
by ADP
as ADV
much ADJ
as SCONJ
ten NUM
pounds NOUN
. PUNCT
  SPACE
It PRON
comesoff VERB
again ADV
over ADP
a DET
week NOUN
or CCONJ
two.-- NUM
Keith PROPN
Lynch PROPN
, PUNCT
kfl@access.digex.comf PROPN
p=2,3:2 PROPN
s PROPN
q=1 NOUN
x NOUN
" PUNCT
f PROPN
f=3:2 PROPN
q PROPN
: PUNCT
f*f PROPN
> PROPN
p!'q PROPN
  SPACE
s PROPN
q PROPN
= SYM
p#f NOUN
" PUNCT
w PROPN
: PUNCT
q PROPN
p,?$x\8 PROPN
+ SYM
1 NUM
* PUNCT
8Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58892From NUM
: PUNCT
amigan@cup.portal.com PROPN
( PUNCT
Mike PROPN
- PUNCT
Medwid)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Emphysema PROPN
questionThanks NOUN
to ADP
all DET
who PRON
replied VERB
to ADP
my PRON
initial ADJ
question NOUN
. PUNCT
  SPACE
I PRON
've AUX
been AUX
away ADV
in ADP
New PROPN
Jersey PROPN
all DET
week NOUN
and CCONJ
was AUX
surprised ADJ
to PART
see VERB
all DET
the DET
responseswhen NOUN
I PRON
got VERB
back ADV
. PUNCT
  SPACE
To ADP
the DET
person NOUN
asking VERB
about ADP
nicotine ADJ
patches NOUN
, PUNCT
there PRON
are AUX
four NUM
on ADP
themarket NOUN
: PUNCT
Habitrol PROPN
- PUNCT
Ciba PROPN
PharmaceuticalsNicoderm PROPN
- PUNCT
Marion PROPN
Merill PROPN
Dow PROPN
( PUNCT
Alza PROPN
made)Nicotrol PROPN
- PUNCT
Warner PROPN
Lambert PROPN
( PUNCT
Cygnus PROPN
made)ProStep NOUN
- PUNCT
Made VERB
by ADP
Elan PROPN
and CCONJ
marketed VERB
by ADP
? PUNCT
? PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58893From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?I NOUN
remember VERB
hearing VERB
a DET
few ADJ
years NOUN
back ADV
about ADP
a DET
new ADJ
therapy NOUN
for ADP
hyperactivitywhich PROPN
involved VERB
aggressively ADV
eliminating VERB
artificial ADJ
coloring NOUN
and CCONJ
flavoringfrom ADP
the DET
diet NOUN
. PUNCT
  SPACE
The DET
theory NOUN
-- PUNCT
which PRON
was AUX
backed VERB
up ADP
by ADP
interesting ADJ
anecdotalresults NOUN
-- PUNCT
is AUX
that SCONJ
certain ADJ
people NOUN
are AUX
just ADV
way ADV
more ADV
sensitive ADJ
to ADP
thesechemicals NOUN
than SCONJ
other ADJ
people NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
any DET
connection NOUN
being AUX
madewith PROPN
seizures NOUN
, PUNCT
but CCONJ
it PRON
certainly ADV
could AUX
n't PART
hurt VERB
to PART
try VERB
an DET
all ADV
- PUNCT
natural ADJ
diet NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58894From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
What PRON
are AUX
the DET
problems NOUN
with ADP
Nutrasweet PROPN
( PUNCT
Aspartame)?Phenylketonuria PROPN
is AUX
a DET
disease NOUN
in ADP
which PRON
the DET
body NOUN
can AUX
not PART
process VERB
phenylalanine NOUN
. PUNCT
It PRON
can AUX
build VERB
up ADP
in ADP
the DET
blood NOUN
and CCONJ
cause VERB
seizures NOUN
and CCONJ
neurological ADJ
damage NOUN
. PUNCT
An DET
odd ADJ
side NOUN
effect NOUN
is AUX
that SCONJ
the DET
urine NOUN
can AUX
be AUX
deeply ADV
colored VERB
, PUNCT
like SCONJ
red ADJ
wine NOUN
. PUNCT
People NOUN
with ADP
the DET
condition NOUN
must AUX
avoid VERB
Nutrasweet PROPN
, PUNCT
chocolate NOUN
, PUNCT
and CCONJ
anythingelse ADV
rich ADJ
in ADP
phenylalanine NOUN
. PUNCT
Aspartame PROPN
is AUX
accused VERB
of ADP
having VERB
caused VERB
various ADJ
vague ADJ
neurological ADJ
symptoms NOUN
. PUNCT
Pat PROPN
Robertson PROPN
's PART
program NOUN
_ ADP
The_700_Club PROPN
_ PROPN
was AUX
beating VERB
the DET
drum NOUN
againstaspartame NOUN
rather ADV
vigorously ADV
for ADP
about ADV
a DET
year NOUN
, PUNCT
but CCONJ
that DET
issue NOUN
seems VERB
tohave ADP
been AUX
pushed VERB
to ADP
the DET
back ADJ
burner NOUN
for ADP
the DET
last ADJ
year NOUN
or CCONJ
so ADV
. PUNCT
  SPACE
Apparently ADV
, PUNCT
the DET
evidence NOUN
is AUX
not PART
very ADV
strong ADJ
, PUNCT
or CCONJ
Pat PROPN
would AUX
still ADV
be AUX
flailing VERB
away ADV
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58895From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>The PROPN
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of ADP
> X
a DET
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving VERB
> X
the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the DET
> X
most ADV
likely ADJ
explanation NOUN
for ADP
events NOUN
. PUNCT
You PRON
forgot VERB
the DET
smiley NOUN
- PUNCT
face NOUN
. PUNCT
I PRON
ca AUX
n't PART
believe VERB
this DET
is AUX
what PRON
they PRON
turn VERB
out ADP
at ADP
Berkeley PROPN
. PUNCT
  SPACE
Tell VERB
meyou're X
an DET
aberration.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58896From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
Blood NOUN
Glucose PROPN
test NOUN
stripsIn PROPN
article NOUN
< X
1993Apr12.151035.22555@omen NUM
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr11.192644.29219@clpd.kodak.com NUM
> X
young@serum.kodak.com PROPN
writes VERB
: PUNCT
> X
> X
> X
> X
	 SPACE
Human ADJ
glucose NOUN
: PUNCT
70 NUM
- SYM
110 NUM
mg./dL. NOUN
( PUNCT
fasting VERB
) PUNCT
[ PUNCT
2]>>Are NUM
these DET
numbers NOUN
for ADP
whole ADJ
blood NOUN
, PUNCT
or CCONJ
plasma NOUN
? PUNCT
	 SPACE
Serum PROPN
, PUNCT
actually ADV
, PUNCT
but CCONJ
plasma NOUN
numbers NOUN
are AUX
the DET
same ADJ
. PUNCT
  SPACE
Whole ADJ
blood NOUN
	 SPACE
numbers NOUN
for ADP
humans NOUN
tend VERB
to PART
be AUX
somewhat ADV
lower ADJ
( PUNCT
roughly ADV
5 NUM
to ADP
10 NUM
	 SPACE
percent NOUN
lower ADV
) PUNCT
. PUNCT
  SPACE
I PRON
find VERB
the DET
following ADJ
range NOUN
for ADP
whole ADJ
blood NOUN
in ADP
	 SPACE
FUNDAMENTALS NOUN
OF ADP
CLINICAL PROPN
CHEMISTRY NOUN
: PUNCT
N. PROPN
W. PROPN
Teitz PROPN
, PUNCT
editor NOUN
; PUNCT
W. PROPN
B. PROPN
	 SPACE
Saunders PROPN
, PUNCT
1987 NUM
: PUNCT
	 SPACE
Human ADJ
glucose NOUN
( PUNCT
whole ADJ
blood NOUN
, PUNCT
fasting VERB
levels NOUN
) PUNCT
-- PUNCT
> X
60 NUM
- SYM
95 NUM
mg./dL.>Which PROPN
are AUX
the DET
strips NOUN
calibrated VERB
for ADP
? PUNCT
  SPACE
( PUNCT
Obviously ADV
they PRON
measure VERB
whole ADJ
blood NOUN
) PUNCT
	 SPACE
Indeed ADV
, PUNCT
they PRON
do AUX
measure VERB
whole ADJ
blood NOUN
levels NOUN
, PUNCT
although SCONJ
they PRON
are AUX
not PART
	 SPACE
as ADV
accurate ADJ
as SCONJ
a DET
serum ADJ
test NOUN
done VERB
in ADP
a DET
laboratory NOUN
. PUNCT
  SPACE
One NUM
problem NOUN
is AUX
	 SPACE
that SCONJ
cells NOUN
in ADP
the DET
sample NOUN
continue VERB
to PART
metabolize VERB
glucose NOUN
after ADP
the DET
	 SPACE
sample NOUN
is AUX
drawn VERB
, PUNCT
reducing VERB
the DET
apparent ADJ
level NOUN
. PUNCT
  SPACE
According VERB
to ADP
Teitz PROPN
, PUNCT
	 SPACE
however ADV
, PUNCT
results NOUN
compare VERB
" PUNCT
reasonably ADV
well ADV
" PUNCT
with ADP
laboratory NOUN
results NOUN
, PUNCT
	 SPACE
although SCONJ
" PUNCT
values NOUN
below ADP
80 NUM
mg./dL. NOUN
tend VERB
to PART
be AUX
lower ADJ
with ADP
strip NOUN
tests NOUN
, PUNCT
	 SPACE
whereas SCONJ
values NOUN
above ADP
240 NUM
mg./dL. NOUN
can AUX
be AUX
very ADV
erratic ADJ
. PUNCT
">What PUNCT
is AUX
the DET
conversion NOUN
factor NOUN
between ADP
human ADJ
plasma NOUN
glucose NOUN
and CCONJ
> X
whole ADJ
blood NOUN
( PUNCT
pin NOUN
prick NOUN
) PUNCT
glucose NOUN
concentration NOUN
? PUNCT
	 SPACE
As SCONJ
stated VERB
above ADV
, PUNCT
whole ADJ
blood NOUN
levels NOUN
tend VERB
to PART
be AUX
roughly ADV
5 NUM
to ADP
10 NUM
	 SPACE
percent NOUN
lower ADJ
than SCONJ
serum ADJ
levels NOUN
. PUNCT
  SPACE
Sample NOUN
freshness NOUN
will AUX
affect VERB
	 SPACE
whole ADJ
blood NOUN
levels NOUN
, PUNCT
however ADV
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
there PRON
is AUX
a DET
well- NOUN
	 SPACE
defined VERB
" PUNCT
conversion NOUN
factor NOUN
, PUNCT
" PUNCT
since SCONJ
cell NOUN
metabolism NOUN
will AUX
affect VERB
	 SPACE
samples NOUN
to ADP
varying VERB
degrees NOUN
. PUNCT
  SPACE
The DET
serum NOUN
/ SYM
plasma NOUN
test NOUN
is AUX
much ADV
	 SPACE
preferred VERB
for ADP
any DET
except SCONJ
general ADJ
" PUNCT
ball NOUN
park NOUN
" PUNCT
testing.-Rich NUM
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58897From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr16.190447.8242@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr16.155123.447@cunews.carleton.ca>wcsbeau@alfred.carleton.ca X
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>>Maybe PUNCT
you PRON
missed VERB
it PRON
amidst ADP
the DET
flurry NOUN
of ADP
responses?>>You NOUN
mean VERB
the DET
responses NOUN
some DET
of ADP
which PRON
pointed VERB
to ADP
double ADJ
- PUNCT
blind ADJ
tests NOUN
> X
which PRON
show VERB
no DET
such ADJ
" PUNCT
chinese ADJ
restaurant NOUN
effect NOUN
" PUNCT
unique ADJ
to ADP
MSG>(it PROPN
's PART
elicited VERB
by ADP
the DET
placebo NOUN
as SCONJ
well.)Many SYM
people NOUN
responded VERB
with ADP
more ADV
anecdotal ADJ
stories NOUN
; PUNCT
I PRON
think VERB
its PRON
safe ADJ
tosay NOUN
the DET
original ADJ
poster NOUN
is AUX
already ADV
familiar ADJ
with ADP
such ADJ
stories NOUN
. PUNCT
Presumably ADV
, PUNCT
he PRON
wants VERB
hard ADJ
info NOUN
to PART
substantiate VERB
or CCONJ
refute VERB
claims NOUN
aboutMSG DET
making VERB
people NOUN
ill ADJ
. PUNCT
Similarly ADV
, PUNCT
debunking VERB
such ADJ
claims NOUN
without ADP
doing VERB
research NOUN
( PUNCT
whetherliterature NOUN
and CCONJ
lab NOUN
) PUNCT
, PUNCT
is AUX
equally ADV
beside ADP
the DET
point NOUN
. PUNCT
The DET
original ADJ
posterno NOUN
doubt NOUN
already ADV
knows VERB
that SCONJ
some DET
people NOUN
think VERB
' PUNCT
Chinese PROPN
RestaurantSyndrome PROPN
' PUNCT
is AUX
bogus ADJ
. PUNCT
Placebos NOUN
are AUX
all DET
very ADV
interesting ADJ
, PUNCT
but CCONJ
irrelevant ADJ
to ADP
the DET
question NOUN
ofwhat ADP
effects VERB
MSG PROPN
has AUX
. PUNCT
You PRON
could AUX
have AUX
real ADJ
effects NOUN
* PUNCT
and CCONJ
* PUNCT
placeboeffects NOUN
; PUNCT
people NOUN
may AUX
have AUX
allergies NOUN
in ADP
addition NOUN
. PUNCT
> X
> X
> X
Yet ADV
again ADV
, PUNCT
the DET
use NOUN
of ADP
this>>newsgroup NOUN
is AUX
hampered VERB
by ADP
people NOUN
not PART
restricting VERB
their PRON
posts NOUN
to ADP
matters>>they NOUN
have AUX
substantial ADJ
knowledge NOUN
of.>>Like VERB
youself PRON
? PUNCT
  SPACE
Someone PRON
who PRON
can AUX
read VERB
a DET
scientific ADJ
paper NOUN
and CCONJ
apparently ADV
> X
come VERB
away ADV
from ADP
it PRON
with ADP
bizarrely ADV
cracked VERB
ideas NOUN
which PRON
have AUX
nothing PRON
to PART
> X
do AUX
with ADP
the DET
use NOUN
of ADP
this DET
substance NOUN
in ADP
human ADJ
nutrition?Have NOUN
you PRON
read VERB
Olney PROPN
's PART
work NOUN
? PUNCT
I PRON
fail VERB
to PART
see VERB
how ADV
citing VERB
results VERB
frompeer PROPN
- PUNCT
reviewed VERB
studies NOUN
qualifies VERB
as SCONJ
" PUNCT
bizarrely ADV
cracked".>>For PROPN
cites NOUN
on ADP
MSG PROPN
, PUNCT
look VERB
up ADP
almost ADV
anything PRON
by ADP
John PROPN
W. PROPN
Olney PROPN
, PUNCT
a>>toxicologist PROPN
who PRON
has AUX
studied VERB
the DET
effects NOUN
of ADP
MSG PROPN
on ADP
the DET
brain NOUN
and CCONJ
on>>development NOUN
. PUNCT
  SPACE
It PRON
is AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
MSG PROPN
is AUX
an>>excitotoxic PROPN
food NOUN
additive,>>No NUM
, PUNCT
it PRON
's AUX
undisputed ADJ
in ADP
the DET
literature NOUN
that PRON
glutamate NOUN
is AUX
an DET
amino ADJ
acid NOUN
> X
which PRON
is AUX
an DET
excitatory ADJ
neurotransmitter NOUN
. PUNCT
  SPACE
There PRON
is AUX
also ADV
evidence NOUN
that SCONJ
> X
excessive ADJ
release NOUN
of ADP
glutamate NOUN
may AUX
be AUX
involved VERB
in ADP
the DET
pathology NOUN
of ADP
certain ADJ
> X
conditions NOUN
like SCONJ
stroke NOUN
, PUNCT
drowning NOUN
and CCONJ
Lou PROPN
Gehrig PROPN
's PART
disease NOUN
, PUNCT
just ADV
to PART
name VERB
a DET
few.>This NOUN
is AUX
a DET
completely ADV
different ADJ
issue NOUN
than SCONJ
the DET
use NOUN
of ADP
this DET
ubiquitous ADJ
amino NOUN
acid NOUN
> X
in ADP
foods NOUN
. PUNCT
  SPACE
People NOUN
are AUX
not PART
receiving VERB
intra ADJ
- ADJ
ventricular ADJ
injections NOUN
of ADP
glutamate NOUN
. PUNCT
Tests NOUN
have AUX
been AUX
done VERB
on ADP
Rhesus PROPN
monkeys NOUN
, PUNCT
as ADV
well ADV
. PUNCT
I PRON
have AUX
never ADV
seen VERB
astudy NOUN
where ADV
the DET
mode NOUN
of ADP
administration NOUN
was AUX
intra ADJ
- ADJ
ventricular ADJ
. PUNCT
  SPACE
The DET
Gluand PROPN
Asp PROPN
were AUX
administered VERB
orally ADV
. PUNCT
Some DET
studies NOUN
used VERB
IV PROPN
and CCONJ
SC.Intra PROPN
- PUNCT
ventricular PROPN
is AUX
not PART
a DET
normal ADJ
admin NOUN
. PUNCT
method NOUN
for ADP
food NOUN
tox NOUN
. PUNCT
studies NOUN
, PUNCT
for ADP
obvious ADJ
reasons NOUN
. PUNCT
You PRON
must AUX
not PART
have AUX
read VERB
the DET
peer NOUN
- PUNCT
reviewed VERB
worksthat ADP
I PRON
referred VERB
to ADP
or CCONJ
you PRON
would AUX
never ADV
have AUX
come VERB
up ADP
with ADP
this DET
braininjection NOUN
bunk.>>Too NOUN
much ADJ
in ADP
the DET
diet NOUN
, PUNCT
and CCONJ
the DET
system NOUN
gets VERB
thrown VERB
off.>>Sez ADP
you PRON
. PUNCT
  SPACE
Such DET
an DET
effect NOUN
in ADP
humans NOUN
has AUX
not PART
been AUX
demonstrated VERB
in ADP
any DET
> X
controlled VERB
studies NOUN
. PUNCT
  SPACE
Infant NOUN
mice NOUN
and CCONJ
other ADJ
models NOUN
are AUX
useful ADJ
as ADV
far ADV
> X
as SCONJ
they PRON
go VERB
, PUNCT
but CCONJ
they PRON
're AUX
not PART
relevant ADJ
to ADP
the DET
matter NOUN
at ADP
hand NOUN
. PUNCT
  SPACE
Which PRON
is AUX
> X
not PART
to PART
say VERB
that SCONJ
I PRON
favor VERB
its PRON
use NOUN
in ADP
things NOUN
like SCONJ
baby NOUN
food NOUN
-- PUNCT
a DET
patently ADV
> X
ridiculous ADJ
use NOUN
of ADP
the DET
additive ADJ
. PUNCT
  SPACE
But CCONJ
we PRON
have AUX
no DET
reason NOUN
to PART
believe VERB
> X
that SCONJ
MSG PROPN
in ADP
the DET
diet NOUN
effects NOUN
humans NOUN
adversely ADV
. PUNCT
Pardon VERB
me PRON
, PUNCT
but CCONJ
where ADV
are AUX
you PRON
getting VERB
this DET
from ADP
? PUNCT
Have AUX
you PRON
read VERB
thejournals NOUN
? PUNCT
Have AUX
you PRON
done VERB
a DET
thorough ADJ
literature NOUN
search?But NOUN
, PUNCT
you PRON
're AUX
right ADJ
, PUNCT
mice NOUN
are AUX
n't PART
the DET
best ADJ
to PART
study VERB
this DET
on ADP
. PUNCT
They PRON
're AUX
fourtimes NOUN
less ADV
sensitive ADJ
than SCONJ
humans NOUN
to ADP
MSG.>>Glutamate PROPN
and CCONJ
aspartate NOUN
, PUNCT
also ADV
an DET
excitotoxin NOUN
are AUX
necessary ADJ
in>>small ADP
amounts NOUN
, PUNCT
and CCONJ
are AUX
freely ADV
available ADJ
in ADP
many ADJ
foods NOUN
, PUNCT
but CCONJ
the DET
amounts>>added VERB
by ADP
industry NOUN
are AUX
far ADV
above ADP
the DET
amounts NOUN
that PRON
would AUX
normally ADV
be>>encountered VERB
in ADP
a DET
ny PROPN
single ADJ
food.>>Wrong PROPN
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
much ADJ
aspartate NOUN
or CCONJ
phenylalanine NOUN
is AUX
in ADP
a DET
soft ADJ
drink?>Milligrams NUM
worth ADJ
. PUNCT
  SPACE
Compare VERB
that DET
to ADP
a DET
glass NOUN
of ADP
milk NOUN
. PUNCT
  SPACE
Do AUX
you PRON
know VERB
how ADV
much ADJ
> X
glutamate NOUN
is AUX
present ADJ
in ADP
most ADJ
protein NOUN
- PUNCT
containing VERB
foods NOUN
compared VERB
to ADP
that DET
> X
added VERB
by ADP
the DET
use NOUN
of ADP
MSG?The NOUN
point NOUN
is AUX
exceeding VERB
the DET
window NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
they PRON
're AUX
amino ADJ
acids NOUN
. PUNCT
Note VERB
that SCONJ
people NOUN
with ADP
PKU PROPN
can AUX
not PART
tolerate VERB
any DET
phenylalanine NOUN
. PUNCT
Olney PROPN
's PART
research NOUN
compared VERB
infant NOUN
human ADJ
diets NOUN
. PUNCT
Specifically ADV
, PUNCT
the DET
amountof NOUN
freely ADV
available ADJ
Glu PROPN
in ADP
mother NOUN
's PART
milk NOUN
versus ADP
commercial ADJ
baby NOUN
foods NOUN
, PUNCT
vs PROPN
. PROPN
typical ADJ
lunch NOUN
items NOUN
from ADP
the DET
Standard PROPN
American PROPN
Diet PROPN
such ADJ
as SCONJ
packagedsoup NOUN
mixes NOUN
. PUNCT
He PRON
found VERB
that SCONJ
one PRON
could AUX
exceed VERB
the DET
projected VERB
safety NOUN
marginfor ADP
infant NOUN
humans NOUN
by ADP
at ADV
least ADV
four NUM
- ADV
fold NOUN
in ADP
a DET
single ADJ
meal NOUN
of ADP
processedfoods NOUN
. PUNCT
Mother PROPN
's PART
milk NOUN
was AUX
well ADV
below ADP
the DET
effective ADJ
dose.>>Read PROPN
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>>sources X
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute.>>Impeccable ADJ
. PUNCT
  SPACE
There PRON
most ADV
certainly ADV
is AUX
a DET
dispute NOUN
. PUNCT
Between ADP
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
youprovide ADJ
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to PART
articlesdisputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
> X
> X
Steve PROPN
Dyer>dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerHmm PROPN
. PUNCT
" PUNCT
.com PUNCT
" PUNCT
. PUNCT
Why ADV
am AUX
I PRON
not PART
surprised?- NOUN
Dianne PROPN
Murray PROPN
   SPACE
wcsbeau@ccs.carleton.caNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58898From NUM
: PUNCT
hbloom@moose.uvm.edu PROPN
( PUNCT
* PUNCT
Heather*)Subject PUNCT
: PUNCT
re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)Nutrasweet PROPN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
thansugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
tofor ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehydeproduced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
toliving VERB
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
Phenylalanine NOUN
isnothing VERB
for ADP
you PRON
to PART
worry VERB
about ADP
. PUNCT
  SPACE
It PRON
is AUX
an DET
amino ADJ
acid NOUN
, PUNCT
and CCONJ
everyone PRON
uses VERB
smallquantities NOUN
of ADP
it PRON
for ADP
protein NOUN
synthesis NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
Some DET
people NOUN
have AUX
a DET
diseaseknown NOUN
as SCONJ
phenylketoneurea NOUN
, PUNCT
and CCONJ
they PRON
are AUX
missing VERB
the DET
enzyme NOUN
necessary ADJ
to PART
degrade VERB
this DET
compound NOUN
and CCONJ
eliminate VERB
it PRON
from ADP
the DET
body NOUN
. PUNCT
  SPACE
For ADP
them PRON
, PUNCT
it PRON
will AUX
accumulate VERB
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
in ADP
high ADJ
levels NOUN
this DET
is AUX
toxic ADJ
to ADP
growing VERB
nervecells NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
it PRON
is AUX
Only ADV
a DET
major ADJ
problem NOUN
in ADP
young ADJ
children NOUN
( PUNCT
until ADP
aroundage NOUN
10 NUM
or CCONJ
so ADV
) PUNCT
or CCONJ
women NOUN
who PRON
are AUX
pregnant ADJ
and CCONJ
have AUX
this DET
disorder NOUN
. PUNCT
  SPACE
It PRON
used VERB
tobe NOUN
a DET
leading ADJ
cause NOUN
of ADP
brain NOUN
damage NOUN
in ADP
infants NOUN
, PUNCT
but CCONJ
now ADV
it PRON
can AUX
be AUX
easily ADV
detected VERB
at ADP
birth NOUN
, PUNCT
and CCONJ
then ADV
one PRON
must AUX
simply ADV
avoid VERB
comsumption NOUN
of ADP
phenylalanineas NOUN
a DET
child NOUN
, PUNCT
or CCONJ
when ADV
pregnant ADJ
. PUNCT
  SPACE
-heatherNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58899From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
79727@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes:>I AUX
remember VERB
hearing VERB
a DET
few ADJ
years NOUN
back ADV
about ADP
a DET
new ADJ
therapy NOUN
for ADP
hyperactivity NOUN
> X
which PRON
involved VERB
aggressively ADV
eliminating VERB
artificial ADJ
coloring NOUN
and CCONJ
flavoring NOUN
> X
from ADP
the DET
diet NOUN
. PUNCT
  SPACE
The DET
theory NOUN
-- PUNCT
which PRON
was AUX
backed VERB
up ADP
by ADP
interesting ADJ
anecdotal ADJ
> X
results NOUN
-- PUNCT
is AUX
that SCONJ
certain ADJ
people NOUN
are AUX
just ADV
way ADV
more ADV
sensitive ADJ
to ADP
these DET
> X
chemicals NOUN
than SCONJ
other ADJ
people NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
any DET
connection NOUN
being AUX
made VERB
> X
with ADP
seizures NOUN
, PUNCT
but CCONJ
it PRON
certainly ADV
could AUX
n't PART
hurt VERB
to PART
try VERB
an DET
all ADV
- PUNCT
natural ADJ
diet NOUN
. PUNCT
Yeah INTJ
, PUNCT
the DET
" PUNCT
Feingold PROPN
Diet PROPN
" PUNCT
is AUX
a DET
load NOUN
of ADP
crap NOUN
. PUNCT
  SPACE
Children NOUN
diagnosed VERB
with ADP
ADDwho PROPN
are AUX
placed VERB
on ADP
this DET
diet NOUN
show VERB
no DET
improvement NOUN
in ADP
their PRON
intellectual ADJ
andsocial ADJ
skills NOUN
, PUNCT
which PRON
in ADP
fact NOUN
continue VERB
to PART
decline VERB
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
parentswho PROPN
are AUX
enthusiastic ADJ
about ADP
this DET
approach NOUN
lap VERB
it PRON
up ADP
at ADP
the DET
expense NOUN
of ADP
theirchildren PROPN
's PART
development NOUN
. PUNCT
  SPACE
So ADV
much ADJ
for ADP
the DET
value NOUN
of ADP
" PUNCT
interesting ADJ
anecdotalresults NOUN
" PUNCT
. PUNCT
  SPACE
People NOUN
will AUX
believe VERB
anything PRON
if SCONJ
they PRON
want VERB
to.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58900From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
C5L9ws.Jn2@unx.sas.com X
> X
sasghm@theseus.unx.sas.com X
     SPACE
( PUNCT
Gary PROPN
Merrill PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
1993Apr16.155919.28040@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
     SPACE
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:>>| VERB
> X
Flights NOUN
of ADP
fancy ADJ
, PUNCT
and CCONJ
other ADJ
irrational ADJ
approaches NOUN
, PUNCT
are AUX
common ADJ
. PUNCT
  SPACE
The DET
crucial>| NOUN
> X
thing NOUN
is AUX
not PART
to PART
sit VERB
around ADP
just ADV
having VERB
fantasies NOUN
; PUNCT
they PRON
are AUX
n't PART
of ADP
any DET
use>| PROPN
> X
unless SCONJ
they PRON
make VERB
you PRON
do AUX
some DET
experiments NOUN
. PUNCT
  SPACE
.... PUNCT
> X
| ADV
> X
> X
| NOUN
> X
( PUNCT
Simple ADJ
example NOUN
: PUNCT
Warren PROPN
Jelinek PROPN
noticed VERB
an DET
extremely ADV
heavy ADJ
band NOUN
on ADP
a DET
DNA>| PROPN
> X
electrophoresis PROPN
gel PROPN
of ADP
human ADJ
ALU PROPN
fragments NOUN
. PUNCT
  SPACE
He PRON
got VERB
very ADV
excited ADJ
, PUNCT
..... PUNCT
> X
> X
But CCONJ
why ADV
do AUX
you PRON
characterize VERB
this DET
as SCONJ
a DET
" PUNCT
flight NOUN
of ADP
fancy NOUN
" PUNCT
or CCONJ
a DET
" PUNCT
fantasy"?>While NOUN
I PRON
am AUX
unfamiliar ADJ
with ADP
the DET
scientific ADJ
context NOUN
here ADV
, PUNCT
it PRON
appears VERB
obvious ADJ
> X
that SCONJ
his PRON
speculation NOUN
( PUNCT
for ADP
lack NOUN
of ADP
a DET
better ADJ
or CCONJ
more ADV
neutral ADJ
word NOUN
) PUNCT
was AUX
> X
at ADP
least ADJ
in ADP
significant ADJ
part NOUN
a DET
consequence NOUN
of ADP
his PRON
knowledge NOUN
of ADP
and CCONJ
acceptance NOUN
> X
of ADP
current ADJ
theory NOUN
coupled VERB
with ADP
his PRON
observations NOUN
. PUNCT
  SPACE
It PRON
would AUX
appear VERB
that SCONJ
> X
something PRON
quite ADV
rational ADJ
was AUX
going VERB
on ADP
as SCONJ
he PRON
attempted VERB
to PART
fit VERB
his PRON
observation NOUN
> X
into ADP
that DET
theory NOUN
( PUNCT
or CCONJ
to PART
tailor VERB
the DET
theory NOUN
to PART
cover VERB
the DET
observation NOUN
) PUNCT
. PUNCT
  SPACE
... PUNCT
Whether SCONJ
a DET
scientific ADJ
idea NOUN
comes VERB
while SCONJ
one PRON
is AUX
staring VERB
out ADP
the DET
window NOUN
, PUNCT
ordreaming NOUN
, PUNCT
or CCONJ
having VERB
a DET
fantasy NOUN
, PUNCT
  SPACE
or CCONJ
watching VERB
an DET
apple NOUN
fall NOUN
( PUNCT
Newton PROPN
) PUNCT
, PUNCT
orsitting VERB
in ADP
a DET
bath NOUN
( PUNCT
Archimedes PROPN
) PUNCT
... PUNCT
it PRON
is AUX
ultimately ADV
the DET
result NOUN
of ADP
a DET
lot NOUN
ofintense NOUN
scientific ADJ
thinking NOUN
done VERB
beforehand ADV
. PUNCT
  SPACE
Letting VERB
one PRON
's PART
mind NOUN
roamfreely ADV
and CCONJ
giving VERB
rein NOUN
to ADP
one NOUN
's PART
intuition NOUN
can AUX
be AUX
a DET
useful ADJ
way NOUN
of ADP
comingup NOUN
with ADP
new ADJ
ideas NOUN
, PUNCT
but CCONJ
only ADV
when ADV
one PRON
has AUX
done VERB
a DET
lot NOUN
of ADP
rational ADJ
analysisof NOUN
the DET
problem NOUN
first ADV
. PUNCT
  SPACE
Scientific ADJ
intuition NOUN
is AUX
not PART
something PRON
one NUM
is AUX
born VERB
with ADP
. PUNCT
  SPACE
It PRON
is AUX
somethingthat ADP
one NOUN
learns VERB
. PUNCT
  SPACE
Maybe ADV
we PRON
do AUX
n't PART
understand VERB
completely ADV
how ADV
it PRON
is AUX
learned VERB
, PUNCT
but CCONJ
training VERB
in ADP
systematic ADJ
scientific ADJ
thinking NOUN
is AUX
certainly ADV
one NUM
of ADP
the DET
key ADJ
elements NOUN
in ADP
developing VERB
it PRON
. PUNCT
  SPACE
Informal ADJ
exploration NOUN
is AUX
also ADV
often ADV
an DET
important ADJ
element NOUN
in ADP
finding VERB
newscientific ADJ
ideas NOUN
. PUNCT
  SPACE
One NOUN
thinks VERB
, PUNCT
for ADP
instance NOUN
, PUNCT
of ADP
Darwin PROPN
's PART
naturalisticstudies NOUN
in ADP
the DET
Galapagos PROPN
islands NOUN
, PUNCT
which PRON
led VERB
him PRON
to ADP
the DET
ideas NOUN
for ADP
the DET
theory NOUN
of ADP
evolution NOUN
. PUNCT
  SPACE
This DET
is AUX
why ADV
I PRON
am AUX
offended VERB
by ADP
a DET
definition NOUN
of ADP
science NOUN
that DET
emphasizesempirical ADJ
verification NOUN
and CCONJ
does AUX
not PART
recognize VERB
thinking NOUN
and CCONJ
informalexploration NOUN
as SCONJ
important ADJ
scientific ADJ
work NOUN
. PUNCT
  SPACE
I PRON
agree VERB
that SCONJ
mere ADJ
speculationdoes NOUN
not PART
deserve VERB
to PART
be AUX
called VERB
science NOUN
. PUNCT
  SPACE
I PRON
also ADV
think VERB
that SCONJ
mere ADJ
empiricalstudies NOUN
not PART
directed VERB
by ADP
good ADJ
scientific ADJ
thinking NOUN
are AUX
at ADP
best ADJ
a DET
verypoor NOUN
kind NOUN
of ADP
science NOUN
. PUNCT
  SPACE
In ADP
article NOUN
< X
1qk92lINNl55@im4u.cs.utexas.edu NUM
> X
turpin@cs.utexas.edu PROPN
     SPACE
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes VERB
: PUNCT
> X
    SPACE
... PUNCT
> X
I PRON
think VERB
that SCONJ
Lee PROPN
Lady PROPN
and CCONJ
I PRON
are AUX
talking VERB
at ADP
cross NOUN
purposes NOUN
. PUNCT
> X
  SPACE
... PUNCT
Lady PROPN
seems VERB
concerned ADJ
with ADP
the DET
contrast NOUN
between ADP
great ADJ
> X
science NOUN
that PRON
makes VERB
big ADJ
advances NOUN
in ADP
our PRON
knowledge NOUN
and CCONJ
mediocre NOUN
> X
science NOUN
that PRON
makes VERB
smaller ADJ
steps NOUN
. PUNCT
  SPACE
In ADP
most ADJ
of ADP
this DET
thread NOUN
, PUNCT
I PRON
have AUX
> X
been AUX
concerned VERB
with ADP
the DET
difference NOUN
between ADP
what PRON
is AUX
science NOUN
and CCONJ
> X
what PRON
is AUX
not PART
. PUNCT
I PRON
do AUX
n't PART
think VERB
that SCONJ
science NOUN
should AUX
be AUX
defined VERB
in ADP
a DET
way NOUN
that PRON
some DET
of ADP
theactivities NOUN
that PRON
lead VERB
to ADP
really ADV
important ADJ
science NOUN
--- PUNCT
namely ADV
thinking VERB
andinformal ADJ
exploration NOUN
--- PUNCT
are AUX
not PART
recognized VERB
as SCONJ
scientific ADJ
work NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58901From NUM
: PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison)Subject NUM
: PUNCT
Bursitis PROPN
and CCONJ
laser NOUN
treatmentMy PROPN
family NOUN
doctor NOUN
and CCONJ
the DET
physiotherapist NOUN
( PUNCT
PT PROPN
) PUNCT
she PRON
sent VERB
me PRON
to PART
agree VERB
that DET
thepain NOUN
in ADP
my PRON
left ADJ
shoulder NOUN
is AUX
bursitis NOUN
. PUNCT
I PRON
have AUX
an DET
appointment NOUN
with ADP
an DET
orthpod(I ADJ
love NOUN
that PRON
, PUNCT
it PRON
's AUX
short ADJ
for ADP
' PUNCT
orthopedic ADJ
surgeon NOUN
, PUNCT
apparently ADV
) PUNCT
but CCONJ
while SCONJ
I'mwaiting VERB
the DET
PT PROPN
is AUX
treating VERB
me PRON
. PUNCT
She PRON
's AUX
using VERB
hot ADJ
packs NOUN
, PUNCT
ultrasound NOUN
, PUNCT
and CCONJ
lasers NOUN
, PUNCT
but CCONJ
there PRON
's AUX
no DET
improvementyet NOUN
. PUNCT
In ADP
fact NOUN
, PUNCT
I PRON
almost ADV
suspect VERB
it PRON
's AUX
getting VERB
worse ADJ
. PUNCT
My PRON
real ADJ
question NOUN
is AUX
about ADP
the DET
laser NOUN
treatment NOUN
. PUNCT
I PRON
ca AUX
n't PART
easily ADV
imagine VERB
whatthe ADJ
physical ADJ
effect NOUN
that PRON
could AUX
have AUX
on ADP
a DET
deep ADJ
tissue NOUN
problem NOUN
. PUNCT
Can AUX
anyoneshed VERB
some DET
light NOUN
( PUNCT
so ADV
to PART
speak VERB
) PUNCT
on ADP
the DET
matter?-- PROPN
Robert PROPN
AllisonOttawa PROPN
, PUNCT
Ontario PROPN
CANADANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58902From NUM
: PUNCT
dpc47852@uxa.cso.uiuc.edu PROPN
( PUNCT
Daniel PROPN
Paul PROPN
Checkman)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?dyer@spdcc.com NOUN
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>>The NUM
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of>>a NOUN
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving>>the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the>>most PROPN
likely ADJ
explanation NOUN
for ADP
events.>You NOUN
forgot VERB
the DET
smiley ADJ
- PUNCT
face.>I PROPN
ca AUX
n't PART
believe VERB
this DET
is AUX
what PRON
they PRON
turn VERB
out ADP
at ADP
Berkeley PROPN
. PUNCT
  SPACE
Tell VERB
me PRON
> X
you're X
an NOUN
aberration.>-- X
> X
Steve PROPN
Dyer>dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyer PROPN
HEY PROPN
, PUNCT
KEEP VERB
YOUR PRON
FU PROPN
--- PUNCT
NG PROPN
FLAMING VERB
OUT ADP
OF ADP
THIS PROPN
GROUP- PUNCT
THAT DET
GOES VERB
FOR ADP
YOU PRON
, PUNCT
MR.DYER PROPN
, PUNCT
AS ADV
WELL ADV
AS ADP
SEVERAL ADJ
OTHER ADJ
NASTY NOUN
, PUNCT
SARCASTIC PROPN
PEOPLE NOUN
, PUNCT
REGARDING PROPN
THISSUBJECT NOUN
. PUNCT
  SPACE
Shoot PROPN
, PUNCT
now ADV
I PRON
'm AUX
all DET
riled VERB
up ADP
, PUNCT
too ADV
, PUNCT
and CCONJ
I PRON
was AUX
just ADV
going VERB
to PART
ask VERB
ifwe ADJ
can AUX
keep VERB
our PRON
discussion NOUN
about ADP
MSG PROPN
a DET
little ADJ
more ADV
civil ADJ
; PUNCT
blasting VERB
a DET
schoolor NOUN
an DET
idea NOUN
through ADP
simple ADJ
insults NOUN
as SCONJ
demonstrated VERB
above ADV
is AUX
not PART
necessary ADJ
, PUNCT
and CCONJ
otherwise ADV
out SCONJ
of ADP
line NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
continue VERB
your PRON
insult NOUN
war NOUN
, PUNCT
takeit ADP
elsewhere ADV
and CCONJ
stop VERB
wasting VERB
everyone PRON
else ADV
's PART
time NOUN
. PUNCT
Most ADV
sincerely ADV
, PUNCT
	 SPACE
Dan PROPN
CheckmanNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58903From NUM
: PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison)Subject NUM
: PUNCT
Frequent ADJ
nosebleedsI PROPN
have AUX
between ADP
15 NUM
and CCONJ
25 NUM
nosebleeds NOUN
each DET
week NOUN
, PUNCT
as SCONJ
a DET
result NOUN
of ADP
a DET
geneticpredisposition NOUN
to ADP
weak ADJ
capillary ADJ
walls NOUN
( PUNCT
Osler PROPN
- PUNCT
Weber PROPN
- PUNCT
Rendu PROPN
) PUNCT
. PUNCT
Fortunately ADV
, PUNCT
each DET
nosebleed NOUN
is AUX
of ADP
short ADJ
duration NOUN
. PUNCT
Does AUX
anyone PRON
know VERB
of ADP
any DET
method NOUN
to PART
reduce VERB
this DET
frequency NOUN
? PUNCT
My PRON
younger ADJ
brotherseach NOUN
tried VERB
a DET
skin NOUN
transplant NOUN
( PUNCT
thigh NOUN
to PART
nose NOUN
lining NOUN
) PUNCT
, PUNCT
but CCONJ
their PRON
nosebleedssoon NOUN
returned VERB
. PUNCT
I PRON
've AUX
seen VERB
a DET
reference NOUN
to ADP
an DET
herb NOUN
called VERB
Rutin PROPN
that PRON
issupposed VERB
to PART
help VERB
, PUNCT
and CCONJ
I PRON
'd AUX
like VERB
to PART
hear VERB
of ADP
experiences NOUN
with ADP
it PRON
, PUNCT
or CCONJ
othertechniques.-- ADP
Robert PROPN
AllisonOttawa PROPN
, PUNCT
Ontario PROPN
CANADANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58904From NUM
: PUNCT
brenner@ldgo.columbia.edu PROPN
( PUNCT
carl PROPN
brenner)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Update NOUN
( PUNCT
Help NOUN
! PUNCT
) PUNCT
[ PUNCT
was AUX
" PUNCT
What PRON
is AUX
This DET
[ PUNCT
Is AUX
it PRON
Lyme's?]"]In NOUN
article NOUN
< X
19613@pitt NUM
. PUNCT
UUCP NOUN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr7.221357.12533@lamont.ldgo.columbia.edu NUM
> X
brenner@ldgo.columbia.edu PROPN
( PUNCT
carl PROPN
brenner PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
see VERB
the DET
ulterior ADJ
motive NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
easy ADJ
for ADP
me PRON
to PART
see VERB
it PRON
the DET
> X
> X
> X
those DET
physicians NOUN
who PRON
call VERB
everything PRON
lyme NOUN
and CCONJ
treat VERB
everything PRON
. PUNCT
> X
> X
> X
There PRON
is AUX
a DET
lot NOUN
of ADP
money NOUN
involved VERB
. PUNCT
> X
> X
> X
> X
	 SPACE
You PRON
keep VERB
bringing VERB
this DET
up ADP
. PUNCT
But CCONJ
I PRON
do AUX
n't PART
understand VERB
what PRON
's AUX
in ADP
it PRON
> X
> X
financially ADV
for ADP
the DET
physician NOUN
to PART
go VERB
ahead ADV
and CCONJ
treat VERB
. PUNCT
Unless SCONJ
the DET
physician NOUN
> X
> X
has AUX
an DET
investment NOUN
in ADP
( PUNCT
or CCONJ
is AUX
involved VERB
in ADP
some DET
kickback NOUN
scheme NOUN
with ADP
) PUNCT
the DET
> X
> X
home PROPN
infusion NOUN
company NOUN
, PUNCT
where ADV
is AUX
the DET
financial ADJ
gain NOUN
for ADP
the DET
doctor NOUN
? PUNCT
> X
> X
Well INTJ
, PUNCT
let VERB
me PRON
put VERB
it PRON
this DET
way NOUN
, PUNCT
based VERB
on ADP
my PRON
own ADJ
experience NOUN
. PUNCT
  SPACE
A DET
> X
general ADJ
practitioner NOUN
with ADP
no DET
training NOUN
in ADP
infectious ADJ
diseases NOUN
, PUNCT
> X
by ADP
establishing VERB
links NOUN
to ADP
the DET
" PUNCT
Lyme PROPN
community NOUN
" PUNCT
, PUNCT
treating VERB
patients NOUN
> X
who PRON
come VERB
to ADP
him PRON
wondering VERB
about ADP
lyme NOUN
or CCONJ
having VERB
decided VERB
they PRON
> X
have AUX
lyme VERB
as SCONJ
if SCONJ
they PRON
did AUX
, PUNCT
saying VERB
that SCONJ
diseases NOUN
such ADJ
as SCONJ
MS PROPN
> X
are AUX
probably ADV
spirochetal ADJ
, PUNCT
if SCONJ
not PART
Lyme PROPN
, PUNCT
giving VERB
talks NOUN
at ADP
meetings NOUN
> X
of ADP
users NOUN
groups NOUN
, PUNCT
validating VERB
the DET
feelings NOUN
of ADP
even ADV
delusional ADJ
> X
patients NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
GP PROPN
can AUX
go VERB
from ADP
being AUX
a DET
run NOUN
- PUNCT
of ADP
- PUNCT
the DET
- PUNCT
mill NOUN
> X
$ SYM
100K NUM
/ SYM
yr NOUN
GP PROPN
to ADP
someone PRON
with ADP
lots NOUN
of ADP
patients NOUN
in ADP
the DET
hospital NOUN
> X
and CCONJ
getting VERB
expensive ADJ
infusions NOUN
that PRON
need VERB
monitoring NOUN
in ADP
his PRON
> X
office NOUN
, PUNCT
and CCONJ
making VERB
lots NOUN
of ADP
bread NOUN
. PUNCT
  SPACE
Also ADV
getting VERB
the DET
adulation NOUN
> X
of ADP
many ADJ
who PRON
believe VERB
his PRON
is AUX
their PRON
only ADJ
hope NOUN
( PUNCT
if SCONJ
not PART
of ADP
cure NOUN
, PUNCT
> X
then ADV
of ADP
control NOUN
) PUNCT
and CCONJ
seeing VERB
his PRON
name NOUN
in ADP
publications NOUN
put VERB
out ADP
> X
by ADP
support NOUN
groups NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
is AUX
a DET
definite ADJ
temptation NOUN
. PUNCT
	 SPACE
Harumph PROPN
. PUNCT
Getting VERB
published VERB
in ADP
these DET
newsletters NOUN
is AUX
hardly ADV
somethingto PROPN
aspire PROPN
to ADP
. PUNCT
:-) PUNCT
	 SPACE
I PRON
ca AUX
n't PART
really ADV
argue VERB
with ADP
your PRON
logic NOUN
, PUNCT
though SCONJ
I PRON
think VERB
you PRON
may AUX
beextrapolating VERB
a DET
bit NOUN
recklessly ADV
from ADP
what PRON
appears VERB
to PART
be AUX
a DET
sample NOUN
size NOUN
ofone NOUN
. PUNCT
Even ADV
if SCONJ
what PRON
you PRON
say VERB
about ADP
this DET
local ADJ
Pittsburgh PROPN
guy NOUN
is AUX
true ADJ
, PUNCT
it PRON
isnot VERB
logical ADJ
or CCONJ
fair ADJ
to PART
conclude VERB
that SCONJ
this DET
is AUX
true ADJ
of ADP
all DET
doctors NOUN
whotreat VERB
Lyme PROPN
disease NOUN
. PUNCT
	 SPACE
By ADP
your PRON
logic NOUN
, PUNCT
I PRON
could AUX
conclude VERB
that SCONJ
all DET
of ADP
the DET
physicians NOUN
whoconsult NOUN
for ADP
insurance NOUN
companies NOUN
and CCONJ
make VERB
money NOUN
by ADP
denying VERB
benefits NOUN
toLyme NOUN
patients NOUN
are AUX
doing VERB
it PRON
for ADP
the DET
money NOUN
, PUNCT
rather ADV
than SCONJ
because SCONJ
they PRON
believethey PRON
are AUX
encouraging VERB
good ADJ
medicine NOUN
. PUNCT
I PRON
have AUX
no DET
idea NOUN
how ADV
sincere ADJ
these DET
guysare NOUN
, PUNCT
but CCONJ
their PRON
motives NOUN
are AUX
as ADV
suspect ADJ
as SCONJ
the DET
physicians NOUN
you PRON
excoriate VERB
forwhat ADP
you PRON
believe VERB
to PART
be AUX
indiscriminate ADJ
treatment NOUN
. PUNCT
	 SPACE
I PRON
would AUX
really ADV
feel VERB
more ADV
comfortable ADJ
discussing VERB
the DET
medical ADJ
issuesin NOUN
Lyme PROPN
, PUNCT
rather ADV
than SCONJ
speculating VERB
as SCONJ
to ADP
the DET
motives NOUN
of ADP
the DET
various ADJ
partiesinvolved VERB
. PUNCT
> X
---------------------------------------------------------------------------- PUNCT
> X
Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and CCONJ
> X
geb@cadre.dsl.pitt.edu ADJ
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------Carl PROPN
BrennerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58905From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Transplant PROPN
Recipients PROPN
Newsletter PROPN
, PUNCT
April PROPN
` PUNCT
93[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[D[DInternational PROPN
Newsletter PROPN
, PUNCT
April PROPN
` PART
93This NUM
will AUX
be AUX
the DET
first ADJ
of ADP
monthly ADJ
postings NOUN
of ADP
the DET
newsletter NOUN
of ADP
the DET
Long PROPN
Island PROPN
Chapter PROPN
of ADP
the DET
Transplant PROPN
Recipients PROPN
International PROPN
Organization PROPN
( PUNCT
TRIO PROPN
) PUNCT
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
I PRON
was AUX
unable ADJ
to PART
post VERB
it PRON
before ADP
the DET
date NOUN
of ADP
this DET
month NOUN
's PART
meeting NOUN
. PUNCT
  SPACE
I PRON
'm AUX
posting VERB
it PRON
anyway ADV
, PUNCT
and CCONJ
posting VERB
it PRON
world NOUN
- PUNCT
wide ADV
instead ADV
of ADP
regional ADJ
, PUNCT
in ADP
the DET
hopes NOUN
that SCONJ
some DET
of ADP
the DET
information NOUN
may AUX
be AUX
useful ADJ
or CCONJ
illustrative ADJ
. PUNCT
  SPACE
Also ADV
, PUNCT
I PRON
hope VERB
it PRON
can AUX
be AUX
used VERB
as SCONJ
an DET
example NOUN
and CCONJ
inspiration NOUN
for ADP
the DET
posting NOUN
of ADP
other ADJ
newsletters NOUN
and CCONJ
data NOUN
related VERB
to ADP
organ NOUN
transplantation NOUN
and CCONJ
donation NOUN
. PUNCT
  SPACE
MikeTransplant PROPN
RecipientsInternational PROPN
OrganizationLong PROPN
Island PROPN
ChapterP.O. PROPN
Box PROPN
922Huntington NUM
, PUNCT
NY PROPN
11743 NUM
- SYM
0922 NUM
		  SPACE
NEWSLETTER516/421 PROPN
- PUNCT
3258 NUM
                                         SPACE
APRIL PROPN
1993 NUM
                                          SPACE
VOLUME NOUN
IV PROPN
   SPACE
No NOUN
. PROPN
8NEXT PROPN
MEETINGThe PROPN
next ADJ
meeting NOUN
is AUX
WEDNESDAY PROPN
APRIL PROPN
14 NUM
at ADP
8 NUM
pm NOUN
at ADP
the DET
Knights PROPN
of ADP
Columbus PROPN
Emerald PROPN
Manor PROPN
, PUNCT
517 NUM
Uniondale PROPN
Avenue PROPN
in ADP
Uniondale PROPN
. PUNCT
  SPACE
Our PRON
guest NOUN
speaker NOUN
will AUX
be AUX
Dr. PROPN
Lewis PROPN
Teperman PROPN
. PUNCT
  SPACE
Dr. PROPN
Teperman PROPN
trained VERB
in ADP
Pittsburgh PROPN
under ADP
Dr. PROPN
Starzl PROPN
and CCONJ
is AUX
now ADV
the DET
Assistant PROPN
Director PROPN
of ADP
the DET
Liver PROPN
Transplant PROPN
Program PROPN
at ADP
New PROPN
York PROPN
University PROPN
Medical PROPN
Center PROPN
. PUNCT
  SPACE
Dr. PROPN
Teperman PROPN
will AUX
discuss VERB
current ADJ
trends NOUN
in ADP
transplantation NOUN
and CCONJ
treatment NOUN
and CCONJ
will AUX
answer VERB
questions NOUN
. PUNCT
  SPACE
He PRON
is AUX
a DET
long ADJ
time NOUN
friend NOUN
of ADP
TRIO NOUN
, PUNCT
surgeon NOUN
to ADP
many ADJ
of ADP
our PRON
members NOUN
, PUNCT
and CCONJ
always ADV
a DET
gracious ADJ
and CCONJ
delightful ADJ
guest NOUN
. PUNCT
   SPACE
It PRON
is AUX
sure ADJ
to PART
be AUX
a DET
very ADV
informative ADJ
, PUNCT
interesting ADJ
and CCONJ
engaging ADJ
evening NOUN
. PUNCT
  SPACE
Our PRON
hospitality NOUN
committee NOUN
, PUNCT
  SPACE
Bette PROPN
and CCONJ
Vito PROPN
Suglia PROPN
and CCONJ
Jim PROPN
Spence PROPN
will AUX
be AUX
well ADV
prepared ADJ
, PUNCT
and CCONJ
at ADP
last ADJ
the DET
weather NOUN
should AUX
be AUX
cooperative ADJ
. PUNCT
We PRON
hope VERB
to PART
see VERB
a DET
very ADV
large ADJ
gathering NOUN
to PART
welcome VERB
Dr. PROPN
Teperman PROPN
. PUNCT
           SPACE
WEDNESDAY PROPN
    SPACE
APRIL PROPN
14 NUM
  SPACE
K PROPN
of ADP
C PROPN
   SPACE
UNIONDALELAST PROPN
MEETINGIt NOUN
has AUX
been AUX
noted VERB
here ADV
before ADP
that SCONJ
the DET
Long PROPN
Island PROPN
Chapter PROPN
of ADP
TRIO PROPN
has AUX
extraordinary ADJ
power NOUN
in ADP
predicting VERB
bad ADJ
weather NOUN
, PUNCT
being AUX
able ADJ
to PART
forecast VERB
rain NOUN
, PUNCT
sleet NOUN
and CCONJ
snow NOUN
fully ADV
a DET
month NOUN
in ADP
advance NOUN
. PUNCT
  SPACE
No DET
TV NOUN
weatherman NOUN
can AUX
match VERB
us PRON
. PUNCT
This DET
time NOUN
we PRON
not PART
only ADV
scored VERB
again ADV
, PUNCT
but CCONJ
we PRON
were AUX
also ADV
able ADJ
to PART
disable VERB
the DET
Long PROPN
Island PROPN
Railroad PROPN
, PUNCT
making VERB
travel NOUN
REALLY PROPN
difficult ADJ
. PUNCT
  SPACE
None NOUN
the DET
less ADJ
, PUNCT
many ADJ
braved VERB
the DET
snow NOUN
and CCONJ
we PRON
had AUX
an DET
interesting ADJ
meeting NOUN
and CCONJ
good ADJ
conversation NOUN
. PUNCT
  SPACE
Our PRON
scheduled VERB
speaker NOUN
, PUNCT
Mrs. PROPN
Elizabeth PROPN
Linnehan PROPN
, PUNCT
a DET
professional ADJ
nutritionist NOUN
, PUNCT
had AUX
a DET
family NOUN
emergency NOUN
and CCONJ
was AUX
not PART
able ADJ
to PART
attend VERB
. PUNCT
  SPACE
She PRON
hope VERB
she PRON
will AUX
be AUX
with ADP
us PRON
in ADP
the DET
fall NOUN
to PART
discuss VERB
diet NOUN
and CCONJ
medications NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
  SPACE
Ms. PROPN
Jennifer PROPN
Friedman PROPN
, PUNCT
an DET
image NOUN
consultant NOUN
and CCONJ
sister NOUN
of ADP
a DET
liver NOUN
transplant NOUN
recipient NOUN
was AUX
kind ADJ
enough ADV
to PART
step VERB
in ADP
on ADP
very ADV
short ADJ
notice NOUN
. PUNCT
  SPACE
Ms. PROPN
Friedman PROPN
gave VERB
us PRON
a DET
lot NOUN
of ADP
good ADJ
advice NOUN
about ADP
choosing VERB
clothes NOUN
and CCONJ
makeup NOUN
, PUNCT
( PUNCT
even ADV
a DET
bit NOUN
for ADP
men NOUN
) PUNCT
to PART
help VERB
us PRON
look VERB
well ADJ
and CCONJ
healthy ADJ
and CCONJ
to PART
minimize VERB
some DET
of ADP
the DET
cosmetic ADJ
effects NOUN
of ADP
some DET
of ADP
the DET
medicine NOUN
and CCONJ
drugs NOUN
we PRON
take VERB
. PUNCT
  SPACE
We PRON
are AUX
most ADV
grateful ADJ
to ADP
Jennifer PROPN
and CCONJ
thank VERB
her PRON
for ADP
an DET
entertaining ADJ
evening NOUN
. PUNCT
ANNUAL PROPN
MEETINGIn PROPN
addition NOUN
to ADP
welcoming VERB
Dr. PROPN
Teperman PROPN
, PUNCT
the DET
April PROPN
meeting NOUN
is AUX
also ADV
the DET
Annual ADJ
meeting NOUN
of ADP
the DET
Chapter NOUN
. PUNCT
  SPACE
This DET
is AUX
the DET
official ADJ
notice NOUN
of ADP
the DET
meeting NOUN
as SCONJ
required VERB
by ADP
our PRON
By PROPN
- PUNCT
Laws PROPN
. PUNCT
The DET
main ADJ
purpose NOUN
of ADP
the DET
meeting NOUN
is AUX
to PART
review VERB
the DET
past ADJ
year NOUN
, PUNCT
solicit NOUN
member NOUN
views NOUN
and CCONJ
ideas NOUN
for ADP
better ADJ
ways NOUN
to PART
meet VERB
their PRON
needs NOUN
, PUNCT
and CCONJ
to PART
elect VERB
members NOUN
of ADP
the DET
Board PROPN
of ADP
Directors PROPN
for ADP
the DET
coming VERB
two NUM
year NOUN
term NOUN
. PUNCT
  SPACE
The DET
nominating VERB
committee NOUN
has AUX
prepared VERB
the DET
following VERB
slate NOUN
for ADP
the DET
Board PROPN
. PUNCT
         SPACE
Anne PROPN
( PUNCT
Liver PROPN
Recipient PROPN
) PUNCT
and CCONJ
Don PROPN
Treffeisen PROPN
         SPACE
Robert PROPN
( PUNCT
Heart PROPN
Recipient PROPN
) PUNCT
and CCONJ
Eulene PROPN
Smith PROPN
         SPACE
Vito PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
and CCONJ
Bette PROPN
Suglia PROPN
         SPACE
Kay PROPN
Grenzig PROPN
( PUNCT
Liver PROPN
Recipient PROPN
) PUNCT
         SPACE
Jan PROPN
Schichtel PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
         SPACE
Larry PROPN
Juliano PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
         SPACE
David PROPN
Bekofsky PROPN
( PUNCT
Director PROPN
Public PROPN
Education PROPN
LITP)Those PROPN
remaining VERB
on ADP
the DET
Board PROPN
for ADP
another DET
year NOUN
are AUX
: PUNCT
         SPACE
Robert PROPN
Carroll PROPN
( PUNCT
Liver PROPN
, PUNCT
Kidney PROPN
& CCONJ
Pancreas PROPN
Recipient PROPN
) PUNCT
         SPACE
Jerry PROPN
( PUNCT
Kidney PROPN
Recipient PROPN
) PUNCT
and CCONJ
Jeanne PROPN
Eichhorn PROPN
         SPACE
Ron PROPN
( PUNCT
Kidney PROPN
Donor PROPN
) PUNCT
and CCONJ
Marie PROPN
Healy PROPN
         SPACE
Peter PROPN
Smith PROPN
( PUNCT
Bone PROPN
Marrow PROPN
Recipient PROPN
) PUNCT
         SPACE
Patricia PROPN
Ann PROPN
Yankus PROPN
( PUNCT
Kidney PROPN
and CCONJ
Pancreas PROPN
Recipient PROPN
) PUNCT
         SPACE
Walter PROPN
Ruzak PROPN
( PUNCT
Kidney PROPN
Recipient)This PROPN
may AUX
seem VERB
to PART
be AUX
a DET
big ADJ
Board PROPN
, PUNCT
but CCONJ
many ADJ
hands NOUN
make VERB
light ADJ
work NOUN
and CCONJ
with ADP
our PRON
various ADJ
medical ADJ
uncertainties NOUN
, PUNCT
it PRON
is AUX
good ADJ
to PART
have AUX
backups NOUN
for ADP
all DET
the DET
jobs NOUN
on ADP
the DET
Board PROPN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
in ADP
addition NOUN
to ADP
the DET
slate NOUN
being AUX
presented VERB
for ADP
voting NOUN
, PUNCT
nominations NOUN
will AUX
also ADV
be AUX
accepted VERB
from ADP
the DET
floor NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
set ADJ
number NOUN
of ADP
Board PROPN
members NOUN
and CCONJ
there PRON
is AUX
plenty NOUN
of ADP
work NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
  SPACE
brief PROPN
treasurer PROPN
's PART
and CCONJ
membership NOUN
reports NOUN
will AUX
be AUX
given VERB
and CCONJ
the DET
floor NOUN
will AUX
be AUX
open ADJ
for ADP
any DET
new ADJ
business NOUN
, PUNCT
suggestions NOUN
, PUNCT
or CCONJ
comments NOUN
anyone PRON
would AUX
like VERB
to PART
bring VERB
up ADP
. PUNCT
We PRON
will AUX
keep VERB
the DET
formal ADJ
meeting NOUN
short ADJ
so SCONJ
that SCONJ
we PRON
can AUX
spend VERB
the DET
majority NOUN
of ADP
the DET
time NOUN
with ADP
Dr. PROPN
Teperman PROPN
. PUNCT
FUTURE ADJ
MEETINGSRemember PROPN
the DET
scheduled VERB
guests NOUN
for ADP
the DET
rest NOUN
of ADP
the DET
year NOUN
. PUNCT
       SPACE
May PROPN
  SPACE
12 NUM
      SPACE
Dr. PROPN
Peter PROPN
Shaprio PROPN
, PUNCT
Chief PROPN
of ADP
Psychiatry PROPN
                  SPACE
Columbia PROPN
Presbyterian PROPN
Medical PROPN
Center PROPN
     SPACE
June PROPN
  SPACE
9 NUM
      SPACE
Dr. PROPN
Felix PROPN
Rappaport PROPN
, PUNCT
Director PROPN
of ADP
the DET
Stony PROPN
                   SPACE
Brook PROPN
Kidney PROPN
Transplant PROPN
Program PROPN
. PUNCT
Plan NOUN
on ADP
being AUX
with ADP
us PRON
the DET
second ADJ
Wednesday PROPN
of ADP
each DET
month NOUN
. PUNCT
NOTDAWThe ADJ
week NOUN
of ADP
April PROPN
18 NUM
- SYM
24 NUM
is AUX
National PROPN
Organ PROPN
and CCONJ
Tissue PROPN
Donor PROPN
Awareness PROPN
Week PROPN
. PUNCT
NOTDAW PROPN
. PUNCT
While SCONJ
we PRON
are AUX
planning VERB
news NOUN
releases NOUN
, PUNCT
speaking VERB
engagements NOUN
and CCONJ
meetings NOUN
with ADP
Supervisors PROPN
Gullata PROPN
and CCONJ
Gaffney PROPN
, PUNCT
we PRON
have AUX
decided VERB
not PART
to PART
have AUX
our PRON
softball ADJ
game NOUN
   SPACE
because SCONJ
of ADP
two NUM
year NOUN
's PART
experience NOUN
with ADP
miserable ADJ
weather NOUN
. PUNCT
We PRON
all DET
can AUX
help VERB
spread VERB
the DET
word NOUN
on ADP
donor NOUN
awareness NOUN
, PUNCT
however ADV
. PUNCT
We PRON
have AUX
found VERB
it PRON
effective ADJ
to PART
ask VERB
your PRON
pastor NOUN
, PUNCT
or CCONJ
rabbi NOUN
to PART
publish VERB
a DET
letter NOUN
or CCONJ
announcement NOUN
in ADP
the DET
parish ADJ
bulletin NOUN
, PUNCT
allow VERB
you PRON
to PART
address VERB
the DET
congregation NOUN
, PUNCT
or CCONJ
include VERB
mention NOUN
of ADP
the DET
gift NOUN
of ADP
life NOUN
in ADP
his PRON
sermon NOUN
. PUNCT
  SPACE
Attached VERB
to ADP
this DET
Newsletter PROPN
is AUX
a DET
sample NOUN
letter NOUN
and CCONJ
fact NOUN
sheet NOUN
you PRON
can AUX
use VERB
. PUNCT
   SPACE
Thank VERB
you PRON
. PUNCT
DR PROPN
. PUNCT
STARZL NOUN
TO PART
BE VERB
HONORED PROPN
The DET
Long PROPN
Island PROPN
Chapter PROPN
of ADP
the DET
American PROPN
Liver PROPN
Foundation PROPN
will AUX
hold VERB
its PRON
annual ADJ
Auction NOUN
and CCONJ
Dinner PROPN
Dance PROPN
on ADP
May PROPN
7th NOUN
at ADP
the DET
Fountainbleu PROPN
  SPACE
on ADP
Jericho PROPN
Turnpike PROPN
in ADP
Jericho PROPN
. PUNCT
  SPACE
Dr. PROPN
Thomas PROPN
Starzl PROPN
will AUX
be AUX
the DET
honored VERB
guest NOUN
. PUNCT
  SPACE
Tickets NOUN
are AUX
$ SYM
50 NUM
person NOUN
and CCONJ
are AUX
going VERB
fast ADV
. PUNCT
  SPACE
If SCONJ
you PRON
'd AUX
like VERB
to PART
meet VERB
Dr. PROPN
Starzl PROPN
, PUNCT
  SPACE
call VERB
Anne PROPN
Treffeisen PROPN
at ADP
( PUNCT
516 NUM
) PUNCT
421 NUM
- PUNCT
3258 NUM
for ADP
details NOUN
. PUNCT
MEMBERSHIP PROPN
NEWS PROPN
Congratulations NOUN
to ADP
Al PROPN
Reese PROPN
. PUNCT
  SPACE
Al PROPN
received VERB
his PRON
heart NOUN
transplant NOUN
in ADP
Pittsburgh PROPN
after ADP
waiting VERB
3 NUM
1/2 NUM
years NOUN
. PUNCT
  SPACE
He PRON
is AUX
home ADV
and CCONJ
doing VERB
well ADV
after ADP
only ADV
12 NUM
days NOUN
in ADP
hospital NOUN
. PUNCT
Arthur PROPN
Michaels PROPN
, PUNCT
liver NOUN
recipient NOUN
, PUNCT
is AUX
planning VERB
to PART
run VERB
the DET
Boston PROPN
Marathon PROPN
in ADP
April PROPN
. PUNCT
What PRON
fantastic ADJ
proof NOUN
that SCONJ
transplantation NOUN
works VERB
! PUNCT
  SPACE
We PRON
hope VERB
the DET
national ADJ
press NOUN
notices NOUN
. PUNCT
      SPACE
Bob PROPN
McCormack PROPN
, PUNCT
after ADP
a DET
persistent ADJ
bout NOUN
with ADP
infection NOUN
, PUNCT
had AUX
his PRON
transplanted VERB
kidney NOUN
removed VERB
. PUNCT
  SPACE
He PRON
is AUX
home ADV
now ADV
, PUNCT
back ADV
on ADP
dialysis NOUN
and CCONJ
feeling VERB
better ADJ
. PUNCT
  SPACE
Nicole PROPN
Healy PROPN
, PUNCT
kidney NOUN
recipient NOUN
and CCONJ
daughter NOUN
of ADP
Ron PROPN
and CCONJ
Marie PROPN
, PUNCT
spent VERB
the DET
past ADJ
several ADJ
weeks NOUN
in ADP
hospital NOUN
in ADP
Miami PROPN
with ADP
problems NOUN
encountered VERB
on ADP
vacation NOUN
. PUNCT
  SPACE
Marie PROPN
has AUX
been AUX
with ADP
her PRON
in ADP
Florida PROPN
. PUNCT
  SPACE
They PRON
are AUX
back ADV
in ADP
New PROPN
York PROPN
where ADV
Nicole PROPN
's PART
treatment NOUN
will AUX
continue VERB
. PUNCT
  SPACE
We PRON
wish VERB
Nicole PROPN
a DET
speedy ADJ
recovery NOUN
. PUNCT
Kay PROPN
Grenzig PROPN
, PUNCT
liver NOUN
recipient NOUN
, PUNCT
is AUX
mending VERB
now ADV
after ADP
a DET
bad ADJ
fall NOUN
that PRON
resulted VERB
in ADP
a DET
broken ADJ
arm NOUN
and CCONJ
a DET
broken ADJ
leg NOUN
. PUNCT
Kay PROPN
is AUX
a DET
candidate NOUN
for ADP
the DET
Board PROPN
so SCONJ
we PRON
need VERB
her PRON
well ADV
soon ADV
. PUNCT
And CCONJ
best ADJ
wishes NOUN
to ADP
all DET
coming VERB
out SCONJ
of ADP
the DET
flu NOUN
. PUNCT
It PRON
was AUX
a DET
tough ADJ
winter NOUN
for ADP
many ADJ
, PUNCT
but CCONJ
the DET
tulips NOUN
are AUX
just ADV
under ADP
the DET
snow NOUN
. PUNCT
SEE VERB
YOU PRON
...... PUNCT
WEDNESDAY PROPN
   SPACE
APRIL PROPN
14 NUM
  SPACE
8 NUM
PM NOUN
   SPACE
K PROPN
of ADP
C PROPN
UNIONDALE PROPN
                               SPACE
DR PROPN
. PUNCT
LEWIS PROPN
TEPERMANNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58906From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)In PROPN
article NOUN
< X
1993Apr17.181013.3743@uvm.edu NUM
> X
hbloom@moose.uvm.edu ADJ
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>Nutrasweet NOUN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
than SCONJ
> X
sugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
> X
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
to ADP
> X
for ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
> X
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehyde NOUN
> X
produced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
to ADP
> VERB
living NOUN
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
Aspartame PROPN
is AUX
the DET
methyl ADJ
ester NOUN
of ADP
a DET
dipeptide NOUN
, PUNCT
so ADV
a DET
product NOUN
of ADP
itshydrolysis NOUN
is AUX
going VERB
to PART
be AUX
methanol NOUN
, PUNCT
which PRON
can AUX
then ADV
be AUX
oxidized VERB
toformaldehyde NOUN
. PUNCT
  SPACE
The DET
amounts NOUN
of ADP
methanol NOUN
formed VERB
from ADP
the DET
ingestion NOUN
ofaspartame NOUN
- PUNCT
containing VERB
foods NOUN
are AUX
completely ADV
in ADP
the DET
metabolic ADJ
noise NOUN
, PUNCT
since SCONJ
you PRON
're AUX
forming VERB
equally ADV
minute ADJ
amounts NOUN
of ADP
methanol NOUN
from ADP
othercomponents NOUN
of ADP
food NOUN
all DET
the DET
time NOUN
. PUNCT
  SPACE
In ADP
studies NOUN
involving VERB
administrationof PROPN
high ADJ
doses NOUN
of ADP
the DET
additive ADJ
, PUNCT
blood NOUN
methanol NOUN
levels NOUN
were AUX
undetectable ADJ
. PUNCT
Methanol NOUN
is AUX
a DET
poison NOUN
only ADV
in ADP
quantities NOUN
seen VERB
in ADP
human ADJ
poisonings NOUN
, PUNCT
say VERB
5ml ADJ
and CCONJ
above ADV
. PUNCT
  SPACE
This DET
is AUX
a DET
consequence NOUN
of ADP
its PRON
oxidation NOUN
to PART
formaldehydeand VERB
formic PROPN
acid NOUN
, PUNCT
two NUM
quite ADV
reactive ADJ
compounds NOUN
which PRON
at ADP
high ADJ
enough ADJ
levelscan ADJ
damage NOUN
tissues NOUN
like SCONJ
the DET
retina NOUN
and CCONJ
kidney NOUN
, PUNCT
because SCONJ
at ADP
such ADJ
high ADJ
dosesthe NOUN
body NOUN
's PART
detoxification NOUN
system NOUN
is AUX
overwhelmed ADJ
. PUNCT
  SPACE
Interestingly ADV
, PUNCT
onetreatment NOUN
for ADP
early ADJ
methanol NOUN
poisoning NOUN
is AUX
to PART
get AUX
the DET
person NOUN
drunk ADJ
onethyl ADJ
alcohol NOUN
-- PUNCT
vodka NOUN
or CCONJ
an DET
equivalent NOUN
. PUNCT
  SPACE
That DET
's AUX
because SCONJ
ethanol NOUN
ismetabolized VERB
preferentially ADV
over ADP
methanol NOUN
by ADP
the DET
enzymes NOUN
in ADP
the DET
liver NOUN
. PUNCT
If SCONJ
the DET
methanol NOUN
stays VERB
as SCONJ
methanol NOUN
and CCONJ
is AUX
n't PART
metabolized VERB
to PART
formaldehyde VERB
, PUNCT
it PRON
is AUX
actually ADV
relatively ADV
non ADJ
- ADJ
toxic.-- ADJ
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58907From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr17.184435.19725@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG ADJ
) PUNCT
writes:>Many ADJ
people NOUN
responded VERB
with ADP
more ADV
anecdotal ADJ
stories NOUN
; PUNCT
I PRON
think VERB
its PRON
safe ADJ
to ADP
> X
say VERB
the DET
original ADJ
poster NOUN
is AUX
already ADV
familiar ADJ
with ADP
such ADJ
stories.>Presumably ADV
, PUNCT
he PRON
wants VERB
hard ADJ
info NOUN
to PART
substantiate VERB
or CCONJ
refute VERB
claims NOUN
about ADP
> X
MSG NOUN
making VERB
people NOUN
ill ADJ
. PUNCT
There PRON
has AUX
been AUX
NO DET
hard ADJ
info NOUN
provided VERB
about ADP
MSG PROPN
making VERB
people NOUN
ill ADJ
. PUNCT
That DET
's AUX
the DET
point NOUN
, PUNCT
after ADP
all.>>Like PROPN
youself PRON
? PUNCT
  SPACE
Someone PRON
who PRON
can AUX
read VERB
a DET
scientific ADJ
paper NOUN
and CCONJ
apparently>>come NOUN
away ADV
from ADP
it PRON
with ADP
bizarrely ADV
cracked VERB
ideas NOUN
which PRON
have AUX
nothing PRON
to>>do PROPN
with ADP
the DET
use NOUN
of ADP
this DET
substance NOUN
in ADP
human ADJ
nutrition?>Have NOUN
you PRON
read VERB
Olney PROPN
's PART
work NOUN
? PUNCT
I PRON
fail VERB
to PART
see VERB
how ADV
citing VERB
results NOUN
from ADP
> PROPN
peer NOUN
- PUNCT
reviewed VERB
studies NOUN
qualifies VERB
as SCONJ
" PUNCT
bizarrely ADV
cracked" NOUN
. PUNCT
That DET
's AUX
because SCONJ
these DET
" PUNCT
peer NOUN
- PUNCT
reviewed VERB
" PUNCT
studies NOUN
are AUX
not PART
addressingthe NOUN
effects NOUN
of ADP
MSG NOUN
in ADP
people NOUN
, PUNCT
they PRON
're AUX
looking VERB
at ADP
animal NOUN
models NOUN
. PUNCT
You PRON
ca AUX
n't PART
walk VERB
away ADV
from ADP
this DET
and CCONJ
start VERB
ranting VERB
about ADP
gloom NOUN
anddoom VERB
as SCONJ
if SCONJ
there PRON
were AUX
any DET
documented VERB
deleterious ADJ
health NOUN
effectsdemonstrated VERB
in ADP
humans NOUN
. PUNCT
  SPACE
Note VERB
that SCONJ
I PRON
would AUX
n't PART
have AUX
any DET
argumentwith NOUN
a DET
statement NOUN
like SCONJ
" PUNCT
noting VERB
that SCONJ
animal NOUN
administration NOUN
has AUX
pro ADJ
- VERB
duced VERB
the DET
following VERB
[ PUNCT
blah INTJ
, PUNCT
blah INTJ
] PUNCT
, PUNCT
we PRON
must AUX
be AUX
careful ADJ
about ADP
itsuse NOUN
in ADP
humans NOUN
. PUNCT
" PUNCT
  SPACE
This DET
is AUX
precisely ADV
NOT ADV
what PRON
you PRON
said.>Tests VERB
have AUX
been AUX
done VERB
on ADP
Rhesus PROPN
monkeys NOUN
, PUNCT
as ADV
well ADV
. PUNCT
I PRON
have AUX
never ADV
seen VERB
a DET
> X
study NOUN
where ADV
the DET
mode NOUN
of ADP
administration NOUN
was AUX
intra ADJ
- ADJ
ventricular ADJ
. PUNCT
  SPACE
The DET
Glu PROPN
> X
and CCONJ
Asp PROPN
were AUX
administered VERB
orally ADV
. PUNCT
Some DET
studies NOUN
used VERB
IV PROPN
and CCONJ
SC.>Intra PROPN
- PUNCT
ventricular ADJ
is AUX
not PART
a DET
normal ADJ
admin NOUN
. PUNCT
method NOUN
for ADP
food NOUN
tox NOUN
. PUNCT
studies,>for ADP
obvious ADJ
reasons NOUN
. PUNCT
You PRON
must AUX
not PART
have AUX
read VERB
the DET
peer NOUN
- PUNCT
reviewed VERB
works NOUN
> X
that PRON
I PRON
referred VERB
to ADP
or CCONJ
you PRON
would AUX
never ADV
have AUX
come VERB
up ADP
with ADP
this DET
brain NOUN
> X
injection NOUN
bunk NOUN
. PUNCT
It PRON
most ADV
certainly ADV
is AUX
for ADP
neurotoxicology PROPN
. PUNCT
  SPACE
You PRON
know VERB
, PUNCT
studies NOUN
ofglutamate VERB
involve VERB
more ADJ
than SCONJ
" PUNCT
food NOUN
science".>Pardon NOUN
me PRON
, PUNCT
but CCONJ
where ADV
are AUX
you PRON
getting VERB
this DET
from ADP
? PUNCT
Have AUX
you PRON
read VERB
the DET
> X
journals NOUN
? PUNCT
Have AUX
you PRON
done VERB
a DET
thorough ADJ
literature NOUN
search?So NOUN
, PUNCT
point VERB
us PRON
to ADP
the DET
studies NOUN
in ADP
humans NOUN
, PUNCT
please INTJ
. PUNCT
  SPACE
I PRON
'm AUX
familiar ADJ
withthe NOUN
literature NOUN
, PUNCT
and CCONJ
I PRON
've AUX
never ADV
seen VERB
any DET
which PRON
relate VERB
at ADV
all ADV
toOlney NOUN
's PART
work NOUN
in ADP
animals NOUN
and CCONJ
the DET
effects NOUN
of ADP
glutamate NOUN
on ADP
neurons.>The PROPN
point NOUN
is AUX
exceeding VERB
the DET
window NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
they PRON
're AUX
amino ADJ
acids.>Note PROPN
that SCONJ
people NOUN
with ADP
PKU PROPN
can AUX
not PART
tolerate VERB
any DET
phenylalanine NOUN
. PUNCT
Well INTJ
, PUNCT
actually ADV
, PUNCT
they PRON
HAVE VERB
to PART
tolerate VERB
some DET
phenylalanine NOUN
; PUNCT
it PRON
's AUX
aessential ADJ
amino ADJ
acid NOUN
. PUNCT
  SPACE
They PRON
just ADV
try VERB
to PART
get AUX
as ADV
little ADJ
as SCONJ
is AUX
healthywithout ADP
producing VERB
dangerous ADJ
levels NOUN
of ADP
phenylalanine NOUN
and CCONJ
its PRON
metabolitesin NOUN
the DET
blood.>Olney NOUN
's PART
research NOUN
compared VERB
infant NOUN
human ADJ
diets NOUN
. PUNCT
Specifically ADV
, PUNCT
the DET
amount NOUN
> X
of ADP
freely ADV
available ADJ
Glu PROPN
in ADP
mother NOUN
's PART
milk NOUN
versus ADP
commercial ADJ
baby NOUN
foods,>vs PROPN
. PUNCT
typical ADJ
lunch NOUN
items NOUN
from ADP
the DET
Standard PROPN
American PROPN
Diet PROPN
such ADJ
as SCONJ
packaged VERB
> X
soup NOUN
mixes NOUN
. PUNCT
He PRON
found VERB
that SCONJ
one PRON
could AUX
exceed VERB
the DET
projected VERB
safety NOUN
margin NOUN
> X
for ADP
infant NOUN
humans NOUN
by ADP
at ADV
least ADV
four NUM
- ADV
fold NOUN
in ADP
a DET
single ADJ
meal NOUN
of ADP
processed VERB
> NOUN
foods NOUN
. PUNCT
Mother PROPN
's PART
milk NOUN
was AUX
well ADV
below ADP
the DET
effective ADJ
dose NOUN
. PUNCT
Goodness INTJ
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
it PRON
's AUX
good ADJ
to PART
feed VERB
infants NOUN
a DET
lot NOUN
ofglutamate NOUN
- PUNCT
supplemented VERB
foods NOUN
. PUNCT
  SPACE
It PRON
's AUX
just ADV
that SCONJ
this DET
" PUNCT
projected VERB
safetymargin NOUN
" PUNCT
is AUX
a DET
construct NOUN
derived VERB
from ADP
animal NOUN
models NOUN
and CCONJ
given VERB
that DET
, PUNCT
you PRON
can AUX
" PUNCT
prove VERB
" PUNCT
anything PRON
you PRON
like VERB
. PUNCT
  SPACE
We PRON
're AUX
talking VERB
prudent ADJ
policy NOUN
ininfant ADJ
nutrition NOUN
here ADV
, PUNCT
yet CCONJ
you PRON
're AUX
misrepresenting VERB
it PRON
as SCONJ
received VERB
wisdom.>>>Read PROPN
Olney PROPN
's PART
review NOUN
paper NOUN
in ADP
Prog PROPN
. PUNCT
Brain NOUN
Res PROPN
, PUNCT
1988 NUM
, PUNCT
and CCONJ
check VERB
* PUNCT
his*>>>sources NOUN
. PUNCT
They PRON
are AUX
impecable ADJ
. PUNCT
There PRON
is AUX
no DET
dispute.>>>>Impeccable ADJ
. PUNCT
  SPACE
There PRON
most ADV
certainly ADV
is AUX
a DET
dispute.>>Between NOUN
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
you PRON
> X
provide VERB
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to ADP
articles NOUN
> X
disputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
You PRON
mean VERB
" PUNCT
asserting VERB
" PUNCT
. PUNCT
  SPACE
You PRON
're AUX
being AUX
intellectually ADV
dishonest ADJ
( PUNCT
or CCONJ
justplain PROPN
confused ADJ
) PUNCT
, PUNCT
because SCONJ
you PRON
're AUX
conflating VERB
reports NOUN
which PRON
do AUX
not PART
necessarilyhave VERB
anything PRON
to PART
do AUX
with ADP
each DET
other ADJ
. PUNCT
  SPACE
Olney PROPN
's PART
reports NOUN
would AUX
argue VERB
a DET
potentialfor NOUN
problems NOUN
in ADP
human ADJ
infants NOUN
, PUNCT
but CCONJ
that DET
's AUX
not PART
to PART
say VERB
that SCONJ
this DET
says VERB
anythingwhatsoever ADP
about ADP
the DET
use NOUN
of ADP
MSG NOUN
in ADP
most ADJ
foods NOUN
, PUNCT
nor CCONJ
does AUX
he PRON
provide VERB
anystudies NOUN
in ADP
humans NOUN
which PRON
indicate VERB
any DET
deleterious ADJ
effects NOUN
( PUNCT
for ADP
obviousreasons NOUN
. PUNCT
) PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
MSG PROPN
's PART
contribtion NOUN
to ADP
the DET
phenomenonof NOUN
the DET
" PUNCT
Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
the DET
frequentinability NOUN
to PART
replicate VERB
anecdotal ADJ
reports NOUN
of ADP
MSG NOUN
sensitivity NOUN
in ADP
the DET
lab.>>dyer@ursa-major.spdcc.com NOUN
> X
Hmm INTJ
. PUNCT
" PUNCT
.com PUNCT
" PUNCT
. PUNCT
Why ADV
am AUX
I PRON
not PART
surprised?>- NUM
Dianne PROPN
Murray PROPN
   SPACE
wcsbeau@ccs.carleton.caProbably ADV
one NUM
of ADP
the DET
dumber ADJ
remarks NOUN
you PRON
've AUX
made.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58908From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Frequent ADJ
nosebleedsIn PROPN
article NOUN
< X
1993Apr17.195202.28921@freenet.carleton.ca ADJ
> X
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison PROPN
) PUNCT
writes:>Does VERB
anyone PRON
know VERB
of ADP
any DET
method NOUN
to PART
reduce VERB
this DET
frequency NOUN
? PUNCT
My PRON
younger ADJ
brothers NOUN
> X
each DET
tried VERB
a DET
skin NOUN
transplant NOUN
( PUNCT
thigh NOUN
to PART
nose NOUN
lining NOUN
) PUNCT
, PUNCT
but CCONJ
their PRON
nosebleeds NOUN
> X
soon ADV
returned VERB
. PUNCT
I PRON
've AUX
seen VERB
a DET
reference NOUN
to ADP
an DET
herb NOUN
called VERB
Rutin PROPN
that PRON
is AUX
> X
supposed VERB
to PART
help VERB
, PUNCT
and CCONJ
I PRON
'd AUX
like VERB
to PART
hear VERB
of ADP
experiences NOUN
with ADP
it PRON
, PUNCT
or CCONJ
other ADJ
> PUNCT
techniques NOUN
. PUNCT
Rutin PROPN
is AUX
a DET
bioflavonoid NOUN
, PUNCT
compounds NOUN
found VERB
( PUNCT
among ADP
other ADJ
places NOUN
) PUNCT
in ADP
therinds NOUN
of ADP
citrus NOUN
fruits NOUN
. PUNCT
  SPACE
These DET
have AUX
been AUX
popular ADJ
, PUNCT
especially ADV
in ADP
Europe PROPN
, PUNCT
to PART
treat VERB
" PUNCT
capillary ADJ
fragility NOUN
" PUNCT
, PUNCT
and CCONJ
seemingly ADV
in ADP
even ADV
more ADV
extreme ADJ
cases NOUN
-- PUNCT
a DET
few ADJ
months NOUN
ago ADV
, PUNCT
a DET
friend NOUN
was AUX
visiting VERB
from ADP
Italy PROPN
, PUNCT
and CCONJ
he PRON
said VERB
that SCONJ
he'dhad PROPN
hemorrhoids NOUN
, PUNCT
but CCONJ
his PRON
pharmacist ADJ
friend NOUN
sold VERB
him PRON
some DET
pills NOUN
. PUNCT
  SPACE
Incredulously ADV
, PUNCT
I PRON
asked VERB
to PART
look VERB
at ADP
them PRON
, PUNCT
and CCONJ
sure ADV
enough ADV
these DET
contained VERB
rutin PROPN
as SCONJ
the DET
activeingredient NOUN
. PUNCT
  SPACE
I PRON
probably ADV
destroyed VERB
the DET
placebo NOUN
effect NOUN
from ADP
my PRON
skepticalsputtering NOUN
. PUNCT
  SPACE
I PRON
have AUX
no DET
idea NOUN
how ADV
he PRON
's AUX
doing VERB
hemorrhoid NOUN
- PUNCT
wise ADJ
these DET
days NOUN
. PUNCT
The DET
studies NOUN
which PRON
attempted VERB
to PART
look VERB
at ADP
the DET
effect NOUN
of ADP
these DET
compounds NOUN
inhuman PROPN
disease NOUN
and CCONJ
nutrition NOUN
were AUX
never ADV
very ADV
well ADV
controlled VERB
, PUNCT
so SCONJ
thereports NOUN
of ADP
positive ADJ
results NOUN
with ADP
them PRON
is AUX
mostly ADV
anecdotal ADJ
. PUNCT
This DET
stuff NOUN
is AUX
pretty ADV
much ADJ
non ADJ
- ADJ
toxic ADJ
, PUNCT
and CCONJ
probably ADV
inexpensive ADJ
, PUNCT
so CCONJ
there'slittle NUM
risk NOUN
of ADP
trying VERB
it PRON
, PUNCT
but CCONJ
I PRON
would AUX
n't PART
expect VERB
much ADJ
of ADP
a DET
result.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58909From NUM
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>>Is NOUN
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>Superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
> X
> X
As SCONJ
a DET
person NOUN
who PRON
is AUX
very ADV
sensitive ADJ
to ADP
msg NOUN
and CCONJ
whose PRON
wife NOUN
and CCONJ
kids NOUN
aretoo VERB
, PUNCT
I PRON
WANT VERB
TO PART
KNOW VERB
WHY ADV
THE DET
FOOD NOUN
INDUSTRY NOUN
WANTS VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
FOOD!!!Somebody NUM
in ADP
the DET
industry NOUN
GIVE VERB
ME PROPN
SOME DET
REASONS NOUN
WHY ADV
! PUNCT
  SPACE
IS VERB
IT NOUN
AN PROPN
INDUSTRIAL PROPN
BYPRODUCT NOUN
THAT ADP
NEEDS NOUN
GETTING NOUN
GET VERB
RID VERB
OF?IS PRON
IT PRON
TO PART
COVER VERB
UP ADP
THE DET
FACT NOUN
THAT PRON
THE DET
RECIPES NOUN
ARE VERB
NOT ADV
VERY ADV
GOOD ADJ
OR CCONJ
THE DET
FOOD NOUN
IS VERB
POOR VERB
QUALITY?DO PROPN
SOME DET
OF ADP
YOU PRON
GET VERB
A DET
SADISTIC NOUN
PLEASURE VERB
OUT ADP
OF ADP
MAKING VERB
SOME DET
OF ADP
US PROPN
SICK?DO PUNCT
THE DET
TASTE NOUN
TESTERS NOUN
HAVE VERB
SOME DET
DEFECT NOUN
IN ADP
THEIR PRON
FLAVOR NOUN
SENSORS PROPN
( PUNCT
MOUTH PROPN
etc X
... PUNCT
) PUNCT
  SPACE
THAT ADP
MSG PROPN
CORRECTS?I PROPN
REALLY PROPN
DON'T VERB
UNDERSTAND!!!ALSO NOUN
... PUNCT
Nitrosiamines PROPN
( PUNCT
sp PROPN
) PUNCT
and CCONJ
sulfites NOUN
... PUNCT
   SPACE
Why ADV
them PRON
? PUNCT
  SPACE
There PRON
are AUX
safer ADJ
ways NOUN
to PART
preserve VERB
food NOUN
, PUNCT
wines PROPN
, PUNCT
and CCONJ
beers!I NOUN
think VERB
1 X
) PUNCT
outlaw VERB
the DET
use NOUN
of ADP
these DET
substances NOUN
without ADP
warning VERB
labels NOUN
aslarge VERB
as SCONJ
those DET
on ADP
cig NOUN
. PUNCT
packages.2 ADV
) PUNCT
Require NOUN
30 NUM
% NOUN
of ADP
comparable ADJ
products NOUN
on ADP
the DET
market NOUN
to PART
be AUX
free ADJ
of ADP
thesesubstances NOUN
and CCONJ
state NOUN
that SCONJ
they PRON
are AUX
free ADJ
of ADP
MSG PROPN
, PUNCT
DYES PROPN
, PUNCT
NITROSIAMINES PROPN
and CCONJ
SULFITES NOUN
on ADP
the DET
package.3 PROPN
) PUNCT
While SCONJ
at ADP
it PRON
outlaw VERB
yellow ADJ
dye NOUN
# PROPN
5 NUM
. PUNCT
  SPACE
For ADP
that DET
matter NOUN
why ADV
dye NOUN
food NOUN
? PUNCT
  SPACE
4 X
) PUNCT
Take VERB
the DET
dyes NOUN
and CCONJ
flavorings NOUN
out SCONJ
of ADP
vitamins NOUN
. PUNCT
  SPACE
( PUNCT
In ADP
my PRON
OSCO PROPN
only ADV
StressTabs PROPN
( PUNCT
tm PROPN
) PUNCT
did AUX
n't PART
have AUX
yellow ADJ
dye NOUN
# SYM
5 NUM
) PUNCT
  SPACE
{ PUNCT
My PRON
doctor NOUN
says VERB
Yellow PROPN
Dye PROPN
# SYM
5 NUM
isresponsible ADJ
for ADP
1/2 NUM
of ADP
all DET
nasal ADJ
polyps NOUN
! PUNCT
! PUNCT
! PUNCT
} PUNCT
KEEP VERB
FOOD PROPN
FOOD NOUN
! PUNCT
  SPACE
QUIT VERB
PUTTING NOUN
IN ADP
JUNK!JUST NOUN
MY PROPN
TWO NUM
CENTS NOUN
WORTH.Sig NOUN
: PUNCT
  SPACE
A DET
person NOUN
tired ADJ
of ADP
getting VERB
sick ADJ
from ADP
this DET
junk!-- PROPN
Walter PROPN
Lundby-- NOUN
Walter PROPN
LundbyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58910From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
lsu7q7INNia5@saltillo.cs.utexas.edu PROPN
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>-*---->I PROPN
agree VERB
with ADP
everything PRON
that PRON
Lee PROPN
Lady PROPN
wrote VERB
in ADP
her PRON
previous ADJ
post NOUN
in ADP
> X
this DET
thread NOUN
. PUNCT
  SPACE
Gee PROPN
! PUNCT
  SPACE
Maybe ADV
I PRON
've AUX
misjudged VERB
you PRON
, PUNCT
Russell PROPN
. PUNCT
  SPACE
Anyone PRON
who PRON
agrees VERB
with ADP
something PRON
I PRON
say VERB
ca AUX
n't PART
be AUX
all ADV
bad ADJ
. PUNCT
  SPACE
; PUNCT
-)Seriously ADV
, PUNCT
I PRON
'm AUX
not PART
sure ADJ
whether SCONJ
I PRON
misjudged VERB
you PRON
or CCONJ
not PART
, PUNCT
in ADP
one NUM
respect NOUN
. PUNCT
  SPACE
I PRON
still ADV
have AUX
a DET
major ADJ
problem NOUN
, PUNCT
though ADV
, PUNCT
with ADP
your PRON
insistence NOUN
that SCONJ
science NOUN
is AUX
mainly ADV
about ADP
avoiding VERB
mistakes NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
still ADV
disagree VERB
with ADP
your PRON
contention NOUN
that SCONJ
nobody PRON
who PRON
does AUX
n't PART
use VERB
methods NOUN
deemed VERB
" PUNCT
scientific ADJ
" PUNCT
can AUX
possibly ADV
know VERB
what PRON
's AUX
true ADJ
and CCONJ
what PRON
's AUX
not PART
. PUNCT
  SPACE
> X
  SPACE
[ PUNCT
Deleted VERB
material NOUN
which PRON
I PRON
agree VERB
with ADP
. PUNCT
] PUNCT
  SPACE
> X
> X
Back ADV
to ADP
Lee PROPN
Lady PROPN
: PUNCT
> X
> X
> X
These DET
are AUX
not PART
the DET
rules NOUN
according VERB
to ADP
many ADJ
who PRON
post VERB
to ADP
sci.med PUNCT
and CCONJ
> X
> X
sci.psychology PROPN
. PUNCT
  SPACE
According VERB
to ADP
these DET
posters NOUN
  SPACE
" PUNCT
If SCONJ
it PRON
's AUX
not PART
supported VERB
by ADP
> X
> X
carefully ADV
designed VERB
controlled VERB
studies NOUN
then ADV
it PRON
's AUX
not PART
science ADJ
. PUNCT
">>These ADJ
posters NOUN
are AUX
making VERB
the DET
mistake NOUN
that PRON
I PRON
have AUX
previously ADV
> X
criticized VERB
of ADP
adhering VERB
to ADP
a DET
methodological ADJ
recipe NOUN
. PUNCT
  SPACE
A DET
" PUNCT
carefully ADV
... PUNCT
> X
     SPACE
.... PUNCT
  SPACE
> X
Rules NOUN
such ADJ
as SCONJ
" PUNCT
support VERB
the DET
hypothesis NOUN
by ADP
a DET
carefully ADV
designed VERB
and CCONJ
> X
controlled VERB
study NOUN
" PUNCT
are AUX
too ADV
narrow ADJ
to PART
apply VERB
to ADP
* PUNCT
all DET
* PUNCT
investigation.>I NOUN
think VERB
that SCONJ
the DET
requirements NOUN
for ADP
particular ADJ
reasoning NOUN
to PART
be AUX
> X
convincing ADJ
depends VERB
greatly ADV
on ADP
the DET
kinds NOUN
of ADP
mistakes NOUN
that PRON
have AUX
> X
occurred VERB
in ADP
past ADJ
reasoning NOUN
about ADP
the DET
same ADJ
kinds NOUN
of ADP
things NOUN
. PUNCT
  SPACE
( PUNCT
To PART
> X
reuse VERB
the DET
previous ADJ
example NOUN
, PUNCT
we PRON
know VERB
that SCONJ
conclusions NOUN
from ADP
> X
uncontrolled ADJ
observations NOUN
of ADP
the DET
treatment NOUN
of ADP
chronic ADJ
medical ADJ
> NOUN
problems NOUN
are AUX
notoriously ADV
problematic ADJ
. PUNCT
) PUNCT
  SPACE
Okay INTJ
, PUNCT
so ADV
let VERB
's PRON
see VERB
if SCONJ
we PRON
agree VERB
on ADP
this DET
: PUNCT
FIRST ADJ
of ADP
all DET
, PUNCT
there PRON
are AUX
degrees NOUN
of ADP
certainty NOUN
. PUNCT
  SPACE
It PRON
might AUX
be AUX
appropriate ADJ
, PUNCT
for ADP
instance NOUN
, PUNCT
to PART
demand VERB
carefully ADV
controlled VERB
trials NOUN
before ADP
we PRON
accept VERB
as SCONJ
absolute ADJ
scientific ADJ
truth NOUN
( PUNCT
to ADP
the DET
extent NOUN
that SCONJ
there PRON
is AUX
any DET
such ADJ
thing NOUN
) PUNCT
the DET
effectiveness NOUN
of ADP
a DET
certain ADJ
treatment NOUN
. PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
highly ADV
favorable ADJ
clinical ADJ
experience NOUN
, PUNCT
even ADV
if SCONJ
uncontrolled ADJ
, PUNCT
can AUX
be AUX
adequate ADJ
to PART
justify VERB
a DET
* PUNCT
preliminary ADJ
* PUNCT
judgement PROPN
thata PROPN
treatment NOUN
is AUX
useful ADJ
. PUNCT
  SPACE
This DET
is AUX
often ADV
the DET
best ADJ
evidence NOUN
we PRON
can AUX
hope VERB
forfrom ADP
investigators NOUN
who PRON
do AUX
not PART
have AUX
institutional ADJ
or CCONJ
corporate ADJ
support NOUN
. PUNCT
In ADP
this DET
case NOUN
, PUNCT
it PRON
makes VERB
sense NOUN
to PART
tentatively ADV
treat VERB
claims NOUN
as SCONJ
crediblebut NOUN
to PART
reserve VERB
final ADJ
judgement NOUN
until ADP
establishment NOUN
scientists NOUN
who PRON
arequalified VERB
and CCONJ
have AUX
the DET
necessary ADJ
resources NOUN
can AUX
do AUX
more ADV
careful ADJ
testing NOUN
. PUNCT
SECONDLY PROPN
, PUNCT
it PRON
makes VERB
sense NOUN
to PART
be AUX
more ADV
tolerant ADJ
in ADP
our PRON
standards NOUN
of ADP
evidence NOUN
for ADP
a DET
pronounced ADJ
effect NOUN
than SCONJ
for ADP
one NUM
that PRON
is AUX
marginal ADJ
. PUNCT
  SPACE
I PRON
come VERB
to ADP
this DET
dispute NOUN
about ADP
what PRON
science NOUN
is AUX
  SPACE
not PART
only ADV
as SCONJ
amathematician ADJ
but CCONJ
as SCONJ
a DET
veteran NOUN
of ADP
many ADJ
arguments NOUN
in ADP
sci.psychology PROPN
( PUNCT
andoccasionally ADV
in ADP
sci.med VERB
) PUNCT
about ADP
NLP PROPN
( PUNCT
Neurolinguistic PROPN
Programming PROPN
) PUNCT
. PUNCT
  SPACE
Muchof ADP
the DET
work NOUN
done VERB
to ADP
date NOUN
by ADP
NLPers PROPN
can AUX
be AUX
better ADV
categorized VERB
asinformal ADJ
exploration NOUN
than SCONJ
as SCONJ
careful ADJ
scientific ADJ
research NOUN
. PUNCT
  SPACE
For ADP
yearsnow NOUN
I PRON
have AUX
been AUX
trying VERB
to PART
get AUX
scientific ADJ
and CCONJ
clinical ADJ
psychologists NOUN
tojust NOUN
take VERB
a DET
look NOUN
at ADP
it PRON
, PUNCT
to PART
read VERB
a DET
few ADJ
of ADP
the DET
books NOUN
and CCONJ
watch VERB
some DET
ofthe ADJ
videotapes NOUN
( PUNCT
courtesy NOUN
of ADP
your PRON
local ADJ
university NOUN
library NOUN
) PUNCT
. PUNCT
  SPACE
Not PART
forthe ADJ
purpose NOUN
of ADP
making VERB
a DET
definitive ADJ
judgement NOUN
, PUNCT
but CCONJ
simply ADV
to PART
look VERB
at ADP
theNLP PROPN
methodology NOUN
( PUNCT
especially ADV
the DET
approach NOUN
to ADP
eliciting VERB
information NOUN
fromsubjects NOUN
) PUNCT
and CCONJ
look VERB
for ADP
ideas NOUN
and CCONJ
hypotheses NOUN
which PRON
might AUX
be AUX
ofscientific ADJ
interest NOUN
. PUNCT
  SPACE
And CCONJ
most ADV
especially ADV
to PART
be AUX
aware ADJ
of ADP
the*questions NOUN
* PUNCT
NLP PROPN
suggests VERB
which PRON
might AUX
be AUX
worthy ADJ
of ADP
scientificinvestigation NOUN
. PUNCT
Over ADV
and CCONJ
over ADV
again ADV
the DET
response NOUN
I PRON
get VERB
in ADP
sci.pychology NOUN
is AUX
  SPACE
" PUNCT
If SCONJ
thishasn't DET
been AUX
thoroughly ADV
validated VERB
by ADP
the DET
accepted VERB
form NOUN
of ADP
empiricalresearch NOUN
then ADV
it PRON
ca AUX
n't PART
be AUX
of ADP
any DET
interest NOUN
to ADP
us PRON
. PUNCT
" PUNCT
  SPACE
To ADP
me PRON
, PUNCT
the DET
ultimate ADJ
reducio NOUN
ad NOUN
absurdum NOUN
of ADP
the DET
extreme ADJ
" PUNCT
There PRON
've AUX
got VERB
tobe NOUN
controlled VERB
studies NOUN
" PUNCT
position NOUN
is AUX
an DET
NLP PROPN
technique NOUN
called VERB
the DET
FastPhobia PROPN
/ SYM
Trauma PROPN
Cure PROPN
. PUNCT
Simple ADJ
phobias NOUN
( PUNCT
as SCONJ
opposed VERB
to ADP
agoraphobia PROPN
) PUNCT
may AUX
not PART
be AUX
the DET
world NOUN
's PART
most ADV
important ADJ
psychological ADJ
disorder NOUN
, PUNCT
but CCONJ
the DET
nice ADJ
thing NOUN
about ADP
them PRON
is AUX
that SCONJ
it PRON
does AUX
n't PART
take VERB
a DET
sophisticated ADJ
instrument NOUN
to PART
diagnose VERB
them PRON
or CCONJ
tell VERB
when ADV
someone PRON
is AUX
cured VERB
of ADP
one NUM
. PUNCT
  SPACE
The DET
NLP PROPN
phobia PROPN
cure NOUN
is AUX
a DET
simple ADJ
visualization NOUN
which PRON
requires VERB
less ADJ
than SCONJ
15 NUM
minutes NOUN
. PUNCT
  SPACE
( PUNCT
NLPers PROPN
claim NOUN
thatit NOUN
can AUX
also ADV
be AUX
used VERB
to PART
neutralize VERB
a DET
traumatic ADJ
memory NOUN
, PUNCT
and CCONJ
hence ADV
isuseful ADJ
in ADP
treating VERB
Post ADJ
- ADJ
traumatic ADJ
Stress PROPN
Syndrome PROPN
. PUNCT
) PUNCT
  SPACE
It PRON
is AUX
essentiallya ADJ
variation NOUN
on ADP
the DET
classic ADJ
desensitization NOUN
process NOUN
used VERB
by ADP
behavioraltherapists NOUN
. PUNCT
  SPACE
A DET
subject NOUN
only ADV
needs VERB
to PART
be AUX
taken VERB
through ADP
the DET
technique NOUN
once(or NOUN
, PUNCT
in ADP
the DET
case NOUN
of ADP
PTSD PROPN
, PUNCT
once ADV
for ADP
each DET
traumatic ADJ
incident NOUN
) PUNCT
. PUNCT
  SPACE
Theprocess NOUN
does AUX
n't PART
need VERB
to PART
be AUX
repeated VERB
and CCONJ
the DET
subject NOUN
does AUX
n't PART
need VERB
topractice VERB
it PRON
over ADP
again ADV
at ADP
home NOUN
. PUNCT
Now ADV
to ADP
me PRON
, PUNCT
it PRON
seems VERB
pretty ADV
easy ADJ
to PART
test VERB
the DET
effectiveness NOUN
of ADP
this DET
cure NOUN
. PUNCT
( PUNCT
Especially ADV
if SCONJ
, PUNCT
as SCONJ
NLPers PROPN
claim NOUN
, PUNCT
the DET
success NOUN
rate NOUN
is AUX
extremely ADV
high ADJ
. PUNCT
) PUNCT
  SPACE
Take VERB
someone PRON
with ADP
a DET
fear NOUN
of ADP
heights NOUN
( PUNCT
as SCONJ
I PRON
used VERB
to PART
have AUX
) PUNCT
. PUNCT
  SPACE
Take VERB
them PRON
up ADP
to ADP
a DET
balcony NOUN
on ADP
the DET
20th ADJ
floor NOUN
and CCONJ
observe VERB
their PRON
response NOUN
. PUNCT
  SPACE
Spend VERB
15 NUM
minutes NOUN
to PART
have AUX
them PRON
do AUX
the DET
simple ADJ
visualization NOUN
. PUNCT
  SPACE
Send VERB
them PRON
back ADV
up ADP
to ADP
the DET
balcony NOUN
and CCONJ
see VERB
if SCONJ
things NOUN
have AUX
changed VERB
. PUNCT
  SPACE
Check VERB
back ADV
with ADP
them PRON
in ADP
a DET
few ADJ
weeks NOUN
to PART
see VERB
if SCONJ
the DET
cure NOUN
seems VERB
to PART
be AUX
lasting VERB
. PUNCT
  SPACE
( PUNCT
More ADV
long ADJ
term NOUN
follow NOUN
- PUNCT
up NOUN
is AUX
certainly ADV
desirable ADJ
, PUNCT
but CCONJ
from ADP
a DET
scientific ADJ
point NOUN
of ADP
view NOUN
even ADV
a DET
cure NOUN
that PRON
lasts VERB
several ADJ
weeks NOUN
has AUX
significance NOUN
. PUNCT
  SPACE
In ADP
any DET
case NOUN
, PUNCT
there PRON
are AUX
many ADJ
known VERB
cases NOUN
where ADV
the DET
cure NOUN
has AUX
lasted VERB
years NOUN
. PUNCT
  SPACE
To ADP
the DET
best ADJ
of ADP
my PRON
knowledge NOUN
, PUNCT
there PRON
is AUX
no DET
known VERB
case NOUN
where ADV
the DET
cure NOUN
has AUX
been AUX
reversed VERB
after ADP
holding VERB
for ADP
a DET
few ADJ
weeks NOUN
. PUNCT
) PUNCT
  SPACE
( PUNCT
My PRON
own ADJ
cure NOUN
, PUNCT
incidentally ADV
, PUNCT
was AUX
donewith VERB
a DET
slightly ADV
different ADJ
NLP NOUN
technique NOUN
, PUNCT
before ADP
I PRON
learned VERB
of ADP
the DET
Fast PROPN
Phobia PROPN
/ SYM
Trauma PROPN
Cure PROPN
. PUNCT
  SPACE
Ten NUM
years NOUN
later ADV
now ADV
, PUNCT
I PRON
enjoy VERB
living VERB
on ADP
the DET
17thfloor NUM
of ADP
my PRON
building NOUN
and CCONJ
having VERB
a DET
large ADJ
balcony NOUN
. PUNCT
) PUNCT
  SPACE
The DET
folks NOUN
over ADP
in ADP
sci.psychology PROPN
have AUX
a DET
hundred NUM
and CCONJ
one NOUN
excuses NOUN
not PART
tomake VERB
this DET
simple ADJ
test NOUN
. PUNCT
  SPACE
They PRON
claim VERB
that SCONJ
only ADV
an DET
elaborate ADJ
outcome NOUN
studywill NOUN
be AUX
satisfactory ADJ
--- PUNCT
a DET
study NOUN
of ADP
the DET
sort NOUN
that PRON
NLP PROPN
practitioners NOUN
, PUNCT
many DET
of ADP
whom PRON
make VERB
a DET
barely ADV
marginal ADJ
living NOUN
from ADP
their PRON
practice NOUN
, PUNCT
can AUX
ill ADV
afford VERB
to PART
do AUX
. PUNCT
  SPACE
( PUNCT
Most ADJ
of ADP
them PRON
are AUX
also ADV
just ADV
plain ADJ
not PART
interested ADJ
, PUNCT
because SCONJ
the DET
whole ADJ
idea NOUN
seems VERB
frivolous ADJ
. PUNCT
  SPACE
And CCONJ
since SCONJ
they PRON
're AUX
not PART
part NOUN
of ADP
thescientific ADJ
establishment NOUN
, PUNCT
they PRON
have AUX
no DET
tangible ADJ
rewards NOUN
to PART
gain VERB
from ADP
scientific ADJ
acceptance NOUN
. PUNCT
) PUNCT
The DET
Fast PROPN
Phobia PROPN
/ SYM
Trauma PROPN
Cure PROPN
is AUX
over ADP
ten NUM
years NOUN
old ADJ
now ADV
and CCONJ
the DET
clinical ADJ
psychology NOUN
establishment NOUN
is AUX
still ADV
saying VERB
" PUNCT
We PRON
do AUX
n't PART
have AUX
any DET
way NOUN
of ADP
knowing VERB
that SCONJ
it PRON
's AUX
effective ADJ
. PUNCT
" PUNCT
  SPACE
These DET
academics NOUN
themselves PRON
have AUX
the DET
resources NOUN
to PART
do AUX
a DET
study NOUN
as ADV
elaborate ADJ
as SCONJ
anyone PRON
could AUX
want VERB
, PUNCT
of ADP
course NOUN
, PUNCT
but CCONJ
they PRON
say VERB
  SPACE
" PUNCT
Why ADV
should AUX
I PRON
prove VERB
your PRON
theory NOUN
? PUNCT
" PUNCT
  SPACE
and CCONJ
  SPACE
" PUNCT
The DET
burden NOUN
of ADP
proof NOUN
is AUX
on ADP
the DET
one NOUN
making VERB
the DET
claim NOUN
. PUNCT
" PUNCT
  SPACE
One NUM
academic NOUN
in ADP
sci.psychology PROPN
said VERB
that SCONJ
it PRON
would AUX
be AUX
completely ADV
unscientific ADJ
for ADP
him PRON
to PART
test VERB
the DET
phobia PROPN
cure NOUN
since SCONJ
it PRON
has AUX
n't PART
been AUX
described VERB
in ADP
a DET
scientific ADJ
journal NOUN
. PUNCT
  SPACE
( PUNCT
It PRON
's AUX
described VERB
in ADP
a DET
number NOUN
of ADP
books NOUN
and CCONJ
I PRON
've AUX
posted VERB
articles NOUN
in ADP
sci.psychology PROPN
describing VERB
it PRON
in ADP
as ADV
much ADJ
detail NOUN
as SCONJ
I PRON
'm AUX
capable ADJ
of ADP
. PUNCT
) PUNCT
  SPACE
Actually ADV
, PUNCT
at ADV
least ADV
one NUM
fairly ADV
careful ADJ
academic ADJ
study NOUN
has AUX
been AUX
done VERB
( PUNCT
with ADP
favorable ADJ
results NOUN
) PUNCT
, PUNCT
but CCONJ
it PRON
's AUX
apparently ADV
not PART
acceptable ADJ
because SCONJ
it PRON
's AUX
adoctoral ADJ
dissertation NOUN
and CCONJ
not PART
published VERB
in ADP
a DET
refereed NOUN
journal NOUN
. PUNCT
To ADP
me PRON
, PUNCT
this DET
sort NOUN
of ADP
attitude NOUN
does AUX
not PART
advance VERB
science NOUN
but CCONJ
hinders VERB
it PRON
. PUNCT
  SPACE
This DET
is AUX
the DET
kind NOUN
of ADP
thing NOUN
I PRON
have AUX
in ADP
mind NOUN
when ADV
I PRON
talk VERB
about ADP
" PUNCT
doctrinnaire NOUN
" PUNCT
attitudes NOUN
about ADP
science NOUN
. PUNCT
  SPACE
Now ADV
maybe ADV
I PRON
have AUX
been AUX
unfair ADJ
in ADP
imputing VERB
such ADJ
attitudes NOUN
to ADP
you PRON
, PUNCT
Russell PROPN
. PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
I PRON
apologize VERB
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58911From NUM
: PUNCT
steveo@world.std.com NOUN
( PUNCT
Steven PROPN
W PROPN
Orr)Subject ADP
: PUNCT
Need VERB
to PART
find VERB
information NOUN
about ADP
current ADJ
trends NOUN
in ADP
diabetes NOUN
. PUNCT
I PRON
looked VERB
for ADP
diab PROPN
in ADP
my PRON
.newsrc NOUN
and CCONJ
came VERB
up ADP
with ADP
nuthin NOUN
. PUNCT
Anyone PRON
haveany ADJ
good ADJ
sources NOUN
for ADP
where ADV
I PRON
can AUX
read VERB
? PUNCT
In ADP
particular ADJ
, PUNCT
I PRON
'm AUX
interestedin PROPN
finding VERB
out ADP
more ADV
about ADP
intravenous ADJ
insulin NOUN
injection NOUN
for ADP
hepaticvein PROPN
liver NOUN
activation NOUN
. PUNCT
( PUNCT
Whew INTJ
! PUNCT
Wotta VERB
mouthful!)Anything VERB
that DET
smells VERB
like SCONJ
a DET
pointer NOUN
would AUX
be AUX
helpful ADJ
: PUNCT
newsgroup PROPN
, PUNCT
mailinglist NOUN
, PUNCT
etc X
.... PUNCT
Many ADJ
thanks.-- NUM
----------Time ADJ
flies NOUN
like SCONJ
the DET
wind NOUN
. PUNCT
Fruit NOUN
flies NOUN
like SCONJ
bananas.------------------Steven PROPN
W. PROPN
Orr PROPN
      SPACE
steveo@world.std.com PROPN
     SPACE
uunet!world!steveo----------Everybody NOUN
repeat NOUN
after ADP
me PRON
: PUNCT
" PUNCT
We PRON
are AUX
all DET
individuals NOUN
. PUNCT
"-----------------Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58912From NUM
: PUNCT
Mark PROPN
W. PROPN
DubinSubject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskrsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>Some ADJ
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
> X
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that DET
carcinogens VERB
> X
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
> X
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
> X
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
> X
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
I PRON
recall VERB
that SCONJ
the DET
issue NOUN
is AUX
that SCONJ
fat NOUN
on ADP
the DET
meat NOUN
liquifies NOUN
and CCONJ
thendrips NOUN
down ADP
onto ADP
the DET
hot ADJ
elements NOUN
-- PUNCT
whatever PRON
they PRON
are AUX
-- PUNCT
that SCONJ
the DET
extremeheat NOUN
then ADV
catalyzes VERB
something PRON
in ADP
the DET
fat NOUN
into ADP
one NUM
or CCONJ
morecarcinogens NOUN
which PRON
then ADV
are AUX
carried VERB
back ADP
up ADP
onto ADP
the DET
meat NOUN
in ADP
the DET
smoke.--the DET
ol' ADJ
professorNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58913From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskThis PROPN
reminds VERB
me PRON
of ADP
the DET
last ADJ
Graham PROPN
Kerr PROPN
cooking NOUN
show NOUN
I PRON
saw VERB
. PUNCT
  SPACE
Today NOUN
hesmoked VERB
meat NOUN
on ADP
the DET
stovetop NOUN
in ADP
a DET
big ADJ
pot NOUN
! PUNCT
  SPACE
He PRON
used VERB
a DET
strange ADJ
techniqueI'd PUNCT
never ADV
seen VERB
before ADV
. PUNCT
He PRON
took VERB
a DET
big ADJ
pot NOUN
with ADP
lid NOUN
, PUNCT
and CCONJ
placed VERB
a DET
tray NOUN
in ADP
it PRON
made VERB
from ADP
aluminum NOUN
foil NOUN
. PUNCT
The DET
tray NOUN
was AUX
about ADP
the DET
size NOUN
and CCONJ
shape NOUN
of ADP
a DET
typical ADJ
coffee NOUN
- PUNCT
table NOUN
ash NOUN
tray NOUN
, PUNCT
made VERB
by ADP
crumpling VERB
a DET
sheet NOUN
of ADP
foil NOUN
around ADP
the DET
edges NOUN
. PUNCT
In ADP
the DET
tray NOUN
, PUNCT
he PRON
placed VERB
a DET
couple NOUN
spoonfuls NOUN
of ADP
brown ADJ
sugar NOUN
, PUNCT
a DET
similarquantity NOUN
of ADP
brown ADJ
rice PROPN
( PUNCT
he PRON
said VERB
any DET
rice NOUN
will AUX
do AUX
) PUNCT
, PUNCT
the DET
contents NOUN
of ADP
twoteabags NOUN
of ADP
Earl PROPN
Grey PROPN
tea NOUN
, PUNCT
and CCONJ
a DET
few ADJ
cloves NOUN
. PUNCT
On ADP
top NOUN
of ADP
this DET
was AUX
placed VERB
an DET
ordinary ADJ
aluminum NOUN
basket NOUN
- PUNCT
type NOUN
steamer NOUN
, PUNCT
withtwo VERB
chicken NOUN
breasts NOUN
in ADP
it PRON
. PUNCT
  SPACE
The DET
lid NOUN
was AUX
put VERB
on ADP
, PUNCT
and CCONJ
the DET
whole ADJ
assemblywent NOUN
on ADP
the DET
stovetop NOUN
at ADP
high ADJ
heat NOUN
for ADP
10 NUM
or CCONJ
12 NUM
minutes NOUN
. PUNCT
Later ADV
, PUNCT
he PRON
removed VERB
what PRON
looked VERB
like SCONJ
smoked VERB
chicken NOUN
breasts NOUN
. PUNCT
  SPACE
What PRON
surprisesand NOUN
concerns VERB
me PRON
are:1 INTJ
) PUNCT
  SPACE
No DET
wood NOUN
chips NOUN
. PUNCT
  SPACE
Where ADV
does AUX
the DET
smoke NOUN
flavor NOUN
come VERB
from?2 PROPN
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
hearing VERB
that SCONJ
carmel PROPN
color NOUN
    SPACE
( PUNCT
obtained VERB
by ADP
caramelizing VERB
sugar NOUN
-- PUNCT
a DET
common ADJ
coloring NOUN
and CCONJ
flavoring VERB
    SPACE
agent NOUN
) PUNCT
had AUX
been AUX
found VERB
to PART
be AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
believe VERB
they PRON
injected VERB
    SPACE
it PRON
under ADP
the DET
skin NOUN
of ADP
rats NOUN
, PUNCT
or CCONJ
something PRON
. PUNCT
  SPACE
If SCONJ
the DET
results NOUN
were AUX
conclusive ADJ
, PUNCT
    SPACE
caramel NOUN
color NOUN
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
, PUNCT
yet CCONJ
it PRON
is AUX
still ADV
being AUX
    SPACE
used VERB
. PUNCT
  SPACE
Was AUX
the DET
initial ADJ
research NOUN
result NOUN
found VERB
to PART
be AUX
incorrect ADJ
, PUNCT
or CCONJ
what?3 PROPN
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
Earl PROPN
Grey PROPN
tea NOUN
being AUX
implicated VERB
    SPACE
as SCONJ
carcinogenic ADJ
, PUNCT
because SCONJ
it PRON
contains VERB
oil NOUN
of ADP
bergamot NOUN
( PUNCT
an DET
extract NOUN
    SPACE
from ADP
the DET
skin NOUN
of ADP
a DET
type NOUN
of ADP
citrus ADJ
fruit NOUN
) PUNCT
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
whatever PRON
    SPACE
happened VERB
with ADP
that DET
story NOUN
? PUNCT
  SPACE
If SCONJ
it PRON
were AUX
carcinogenic ADJ
, PUNCT
Earl PROPN
Grey PROPN
tea NOUN
    SPACE
could AUX
not PART
have AUX
it PRON
as SCONJ
an DET
additive ADJ
, PUNCT
yet CCONJ
it PRON
apparently ADV
continues VERB
to PART
do AUX
    SPACE
so ADV
. PUNCT
WRT PROPN
natural ADJ
wood NOUN
smoke NOUN
( PUNCT
I PRON
've AUX
smoking VERB
a DET
duck NOUN
right ADV
now ADV
, PUNCT
as SCONJ
it PRON
happens),I've VERB
noticed VERB
that SCONJ
a DET
heavily ADV
- PUNCT
smoked VERB
food NOUN
item NOUN
will AUX
have AUX
an DET
unpleasant ADJ
tangytaste NOUN
when ADV
eaten VERB
directly ADV
out SCONJ
of ADP
the DET
smoker NOUN
if SCONJ
the DET
smoke NOUN
has AUX
only ADV
recentlystopped VERB
flowing VERB
. PUNCT
  SPACE
I PRON
find VERB
the DET
best ADJ
taste NOUN
to PART
be AUX
had VERB
by ADP
using VERB
dry ADJ
wood NOUN
chips NOUN
, PUNCT
getting VERB
lots NOUN
of ADP
smoke NOUN
right ADV
up ADV
at ADP
the DET
beginning NOUN
of ADP
the DET
cooking NOUN
process NOUN
, PUNCT
then ADV
slowly ADV
barbequing VERB
for ADP
hours NOUN
and CCONJ
hours NOUN
without ADP
adding VERB
additional ADJ
wood NOUN
chips NOUN
. PUNCT
My PRON
theory NOUN
is AUX
that SCONJ
the DET
unpleasant ADJ
tangy ADJ
molecules NOUN
are AUX
low ADJ
- PUNCT
molecular ADJ
weightstuff PROPN
, PUNCT
like SCONJ
terpenes NOUN
, PUNCT
and CCONJ
that SCONJ
the DET
smoky ADJ
flavor NOUN
molecules NOUN
are AUX
some DET
sortof NOUN
larger ADJ
molecule VERB
more ADV
similar ADJ
to ADP
tar PROPN
. PUNCT
  SPACE
The DET
long ADJ
barbeque NOUN
time NOUN
afterthe PROPN
initial ADJ
intensive ADJ
smoke NOUN
drives VERB
off ADP
the DET
low ADJ
- PUNCT
molecular ADJ
weight NOUN
stuff NOUN
, PUNCT
just ADV
leaving VERB
the DET
flavor NOUN
behind ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
if SCONJ
my PRON
theory NOUN
is AUX
correct?I PROPN
also ADV
remember VERB
hearing VERB
that SCONJ
the DET
combustion NOUN
products NOUN
of ADP
fat NOUN
drippingon NOUN
the DET
charcoal NOUN
and CCONJ
burning NOUN
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
For ADP
that DET
reason NOUN
, PUNCT
and CCONJ
becauseit NOUN
covers VERB
the DET
product NOUN
with ADP
soot NOUN
and CCONJ
some DET
unpleasant ADJ
tanginess NOUN
, PUNCT
I PRON
only ADV
grillnon ADJ
- ADJ
drippy ADJ
meats NOUN
like SCONJ
prawns NOUN
directly ADV
over ADP
hot ADJ
coals NOUN
. PUNCT
  SPACE
I PRON
do AUX
stuff NOUN
like SCONJ
thisduck NOUN
by ADP
indirect ADJ
heat NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
long ADJ
rectangular ADJ
Weber PROPN
, PUNCT
and CCONJ
I PRON
put VERB
the DET
coalsat NOUN
one NUM
end NOUN
and CCONJ
the DET
meat NOUN
at ADP
the DET
other ADJ
end NOUN
. PUNCT
  SPACE
The DET
fat NOUN
drops VERB
directly ADV
on ADP
thefloor NOUN
below ADP
the DET
meat NOUN
, PUNCT
and CCONJ
next ADJ
time NOUN
I PRON
use VERB
the DET
barbeque NOUN
I PRON
make VERB
the DET
firein NOUN
that DET
end NOUN
to PART
burn VERB
off ADP
the DET
fat NOUN
and CCONJ
help VERB
ignite VERB
the DET
coals NOUN
. PUNCT
And CCONJ
yet ADV
another DET
reason NOUN
I PRON
've AUX
heard VERB
not PART
to PART
smoke VERB
or CCONJ
barbeque NOUN
meat NOUN
is AUX
thatsmoked VERB
cured VERB
meat NOUN
, PUNCT
like SCONJ
pork NOUN
sausage NOUN
and CCONJ
bacon NOUN
, PUNCT
containsnitrosamines NOUN
, PUNCT
which PRON
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
'm AUX
pretty ADV
sure ADJ
this DET
claim NOUN
actuallyhas VERB
some DET
standing NOUN
, PUNCT
do AUX
n't PART
know VERB
about ADP
the DET
others NOUN
. PUNCT
An DET
amusing ADJ
incident NOUN
I PRON
recall VERB
was AUX
the DET
Duncan PROPN
Hines PROPN
scandal NOUN
, PUNCT
when ADV
it PRON
wasdiscovered VERB
that SCONJ
the DET
people NOUN
who PRON
make VERB
Duncan PROPN
Hines PROPN
cake NOUN
mix NOUN
were AUX
puttinga PROPN
lot NOUN
of ADP
ethylene NOUN
dibromide NOUN
( PUNCT
EDB PROPN
) PUNCT
into ADP
the DET
cake NOUN
mix NOUN
to PART
suppress VERB
weevils NOUN
. PUNCT
This DET
is AUX
a DET
fumigant NOUN
which PRON
is AUX
known VERB
to PART
be AUX
carcinogenic ADJ
. PUNCT
The DET
guy NOUN
who PRON
represented VERB
the DET
company NOUN
in ADP
the DET
press NOUN
conference NOUN
defendedhimself PRON
by ADP
saying VERB
that SCONJ
the DET
risk NOUN
from ADP
eating VERB
Duncan PROPN
Hines PROPN
products NOUN
every DET
dayfor NOUN
a DET
year NOUN
would AUX
be AUX
equal ADJ
to ADP
the DET
cancer NOUN
risk NOUN
from ADP
eating VERB
two NUM
charcoal NOUN
- PUNCT
broiled VERB
steaks NOUN
. PUNCT
  SPACE
What PRON
a DET
great ADJ
analogy NOUN
! PUNCT
  SPACE
When ADV
I PRON
first ADV
heard VERB
that SCONJ
, PUNCT
myimmediate NOUN
reaction NOUN
was AUX
we PRON
should AUX
make VERB
that SCONJ
a DET
standard ADJ
unit NOUN
! PUNCT
  SPACE
One NUM
charcoalbroiled VERB
steak NOUN
would AUX
be AUX
equivalent ADJ
to ADP
0.5 NUM
Duncans!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58914From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
Brain NOUN
abscess ADV
" PUNCT
definition NOUN
neededIn PROPN
article NOUN
< X
1993Apr8.123213.1@tardis.mdcorp.ksc.nasa.gov PROPN
> X
fresa@tardis.mdcorp.ksc.nasa.gov PROPN
writes:>Could AUX
someone PRON
please INTJ
define VERB
a DET
" PUNCT
brain NOUN
abscess NOUN
" PUNCT
for ADP
me PRON
? PUNCT
A DET
relative NOUN
has AUX
one NUM
near SCONJ
> X
his PRON
cerebellum NOUN
. PUNCT
A DET
brain NOUN
abscess ADV
is AUX
an DET
infection NOUN
deep ADJ
in ADP
the DET
brain NOUN
substance NOUN
. PUNCT
  SPACE
It PRON
ishard VERB
to PART
cure VERB
with ADP
antibiotics NOUN
, PUNCT
since SCONJ
it PRON
gets VERB
walled VERB
off ADP
, PUNCT
and CCONJ
usually ADV
, PUNCT
it PRON
needs VERB
surgical ADJ
drainage.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58915From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
HYPOGLYCEMIA PROPN
> X
From ADP
: PUNCT
anello@adcs00.fnal.gov PROPN
( PUNCT
Anthony PROPN
Anello)>Can PROPN
anyone PRON
tell VERB
me PRON
if SCONJ
a DET
bloodcount NOUN
of ADP
40 NUM
when ADV
diagnosed VERB
as SCONJ
hypoglycemic PROPN
is AUX
> PROPN
dangerous ADJ
, PUNCT
i.e. X
indicates VERB
a DET
possible ADJ
pancreatic ADJ
problem NOUN
? PUNCT
  SPACE
One NUM
Dr. PROPN
says VERB
no INTJ
, PUNCT
the DET
> X
other ADJ
( PUNCT
not PART
his PRON
specialty NOUN
) PUNCT
says VERB
the DET
first ADJ
is AUX
negligent ADJ
and CCONJ
that SCONJ
another DET
bloodBlood NOUN
glucose NOUN
levels NOUN
of ADP
40 NUM
or CCONJ
so ADV
are AUX
common ADJ
several ADJ
hours NOUN
after ADP
abig PROPN
meal PROPN
. PUNCT
  SPACE
This DET
level NOUN
will AUX
usually ADV
not PART
cause VERB
symptoms.>test ADJ
should AUX
be AUX
done VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
what PRON
is AUX
a DET
good ADJ
diet NOUN
( PUNCT
what PRON
has AUX
worked VERB
) PUNCT
for ADP
a DET
hypo->glycemic?If NOUN
you PRON
mean VERB
" PUNCT
reactive VERB
" PUNCT
hypoglycemia NOUN
, PUNCT
there PRON
are AUX
usually ADV
no DET
symptoms NOUN
, PUNCT
hence ADV
there PRON
is AUX
no DET
disease NOUN
, PUNCT
hence ADV
the DET
dietary ADJ
recommendations NOUN
are AUX
thesame ADJ
as SCONJ
for ADP
anyone PRON
else ADV
. PUNCT
  SPACE
If SCONJ
a DET
patient NOUN
complains VERB
of ADP
dizziness NOUN
, PUNCT
faintness NOUN
, PUNCT
sweating NOUN
, PUNCT
palpitations NOUN
, PUNCT
etc X
. PUNCT
reliably ADV
several ADJ
hours NOUN
aftera PROPN
big ADJ
meal PROPN
, PUNCT
the DET
recommendations NOUN
are AUX
obvious ADJ
- PUNCT
eat VERB
smaller ADJ
meals.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                                                             SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58916From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemML NOUN
> X
From ADP
: PUNCT
libman@hsc.usc.edu PROPN
( PUNCT
Marlena PROPN
Libman)ML NOUN
> X
I PRON
need VERB
advice NOUN
with ADP
a DET
situation NOUN
which PRON
occurred VERB
between ADP
me PRON
and CCONJ
a DET
physicanML PROPN
> X
which PRON
upset VERB
me PRON
. PUNCT
ML PROPN
> X
My PRON
questions NOUN
: PUNCT
( PUNCT
1 X
) PUNCT
Should AUX
I PRON
continue VERB
to PART
have AUX
this DET
doctor NOUN
manage VERB
my PRON
care?That PROPN
's PART
easy ADJ
: PUNCT
  SPACE
No INTJ
. PUNCT
  SPACE
You PRON
would AUX
n't PART
take VERB
your PRON
computer NOUN
into ADP
a DET
repairshop NOUN
where ADV
they PRON
were AUX
rude ADJ
to ADP
you PRON
, PUNCT
even ADV
if SCONJ
they PRON
were AUX
competent ADJ
intheir PROPN
business NOUN
. PUNCT
  SPACE
Why ADV
would AUX
you PRON
take VERB
your PRON
own ADJ
body NOUN
into ADP
a DET
" PUNCT
repairshop NOUN
" PUNCT
where ADV
the DET
" PUNCT
repairman NOUN
" PUNCT
has AUX
such DET
a DET
bad ADJ
attitude?--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                              SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58917From NUM
: PUNCT
slyx0@cc.usu.eduSubject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>>Between NOUN
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
you>>provide PROPN
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to ADP
articles>>disputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
> X
> X
You PRON
mean VERB
" PUNCT
asserting VERB
" PUNCT
. PUNCT
  SPACE
You PRON
're AUX
being AUX
intellectually ADV
dishonest ADJ
( PUNCT
or CCONJ
just ADV
> X
plain ADV
confused ADJ
) PUNCT
, PUNCT
because SCONJ
you PRON
're AUX
conflating VERB
reports NOUN
which PRON
do AUX
not PART
necessarily ADV
> X
have AUX
anything PRON
to PART
do AUX
with ADP
each DET
other ADJ
. PUNCT
  SPACE
Olney PROPN
's PART
reports NOUN
would AUX
argue VERB
a DET
potential ADJ
> X
for ADP
problems NOUN
in ADP
human ADJ
infants NOUN
, PUNCT
but CCONJ
that DET
's AUX
not PART
to PART
say VERB
that SCONJ
this DET
says VERB
anything PRON
> X
whatsoever ADV
about ADP
the DET
use NOUN
of ADP
MSG NOUN
in ADP
most ADJ
foods NOUN
, PUNCT
nor CCONJ
does AUX
he PRON
provide VERB
any DET
> NUM
studies NOUN
in ADP
humans NOUN
which PRON
indicate VERB
any DET
deleterious ADJ
effects NOUN
( PUNCT
for ADP
obvious ADJ
> X
reasons NOUN
. PUNCT
) PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
MSG PROPN
's PART
contribtion NOUN
to ADP
the DET
phenomenon NOUN
> X
of ADP
the DET
" PUNCT
Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
the DET
frequent ADJ
> X
inability NOUN
to PART
replicate VERB
anecdotal ADJ
reports NOUN
of ADP
MSG NOUN
sensitivity NOUN
in ADP
the DET
lab NOUN
. PUNCT
Okay INTJ
Mr. PROPN
Dyer PROPN
, PUNCT
we PRON
're AUX
properly ADV
impressed ADJ
with ADP
your PRON
philosophical ADJ
skills NOUN
andability NOUN
to PART
insult VERB
people NOUN
. PUNCT
You PRON
're AUX
a DET
wonderful ADJ
speaker NOUN
and CCONJ
an DET
adept ADJ
politician NOUN
. PUNCT
However ADV
, PUNCT
I PRON
believe VERB
that SCONJ
all DET
you PRON
were AUX
asked VERB
to PART
do AUX
, PUNCT
was AUX
simply ADV
provide VERB
scientificresearch NOUN
refuting VERB
the DET
work NOUN
of ADP
Olney PROPN
. PUNCT
I PRON
do AUX
n't PART
think VERB
the DET
original ADJ
poster NOUN
soughtto NOUN
start VERB
a DET
philisophical ADJ
debate NOUN
. PUNCT
she PRON
wanted VERB
some DET
information NOUN
. PUNCT
Given VERB
a DET
littleeffort NOUN
one PRON
could AUX
justify VERB
that SCONJ
shooting VERB
oneself PRON
with ADP
a DET
.45 NUM
before ADP
breakfast NOUN
is AUX
ahealthy ADJ
practice NOUN
. PUNCT
But CCONJ
we PRON
're AUX
not PART
particularily ADV
interested ADJ
in ADP
what PRON
you PRON
canverbally ADV
prove VERB
/ SYM
disprove VERB
or CCONJ
rationalize VERB
. PUNCT
Where ADV
's AUX
the DET
research NOUN
? PUNCT
Where ADV
are AUX
thestudies?I NOUN
appoligize VERB
if SCONJ
this DET
sounds VERB
flamish ADJ
. PUNCT
I PRON
simply ADV
would AUX
like VERB
to PART
see VERB
the DET
thread NOUN
getback VERB
on ADP
track NOUN
. PUNCT
Lone PROPN
Wolf PROPN
                                      SPACE
Happy PROPN
are AUX
they PRON
who PRON
dream VERB
dreams NOUN
, PUNCT
Ed PROPN
Philips PROPN
                            SPACE
And CCONJ
pay VERB
the DET
price NOUN
to PART
see VERB
them PRON
come VERB
true.slyx0@cc.usu.edu PROPN
                                                                                                            SPACE
-unknownNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58918From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
dubin.735083450@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
> X
dubin@spot.colorado.edu PROPN
writes:>>I NOUN
recall NOUN
that SCONJ
the DET
issue NOUN
is AUX
that SCONJ
fat NOUN
on ADP
the DET
meat NOUN
liquifies NOUN
and CCONJ
then ADV
> X
drips VERB
down ADP
onto ADP
the DET
hot ADJ
elements NOUN
-- PUNCT
whatever PRON
they PRON
are AUX
-- PUNCT
that SCONJ
the DET
extreme ADJ
> X
heat NOUN
then ADV
catalyzes VERB
something PRON
in ADP
the DET
fat NOUN
into ADP
one NUM
or CCONJ
more ADJ
> X
carcinogens NOUN
which PRON
then ADV
are AUX
carried VERB
back ADP
up ADP
onto ADP
the DET
meat NOUN
in ADP
the DET
smoke NOUN
. PUNCT
> X
Hmmm PROPN
. PUNCT
Care VERB
to PART
be AUX
more ADJ
vague?=======================================Howard NOUN
  SPACE
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58919From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sleeping VERB
Pill PROPN
ODIn NOUN
article NOUN
< X
1993Apr9.051039.715@scott.skidmore.edu NUM
> X
dfederma@scott.skidmore.edu PROPN
( PUNCT
daniel PROPN
federman PROPN
) PUNCT
writes:>>A PROPN
friend NOUN
of ADP
mine NOUN
took VERB
appoximately ADV
60 NUM
CVS PROPN
sleeping NOUN
pills NOUN
, PUNCT
each DET
> X
containing VERB
25 NUM
mg NOUN
of ADP
diphenhydramine PROPN
, PUNCT
I PRON
think VERB
. PUNCT
  SPACE
That DET
's AUX
1500 NUM
mg NOUN
, PUNCT
total ADJ
. PUNCT
> X
	 SPACE
I PRON
'm AUX
worried ADJ
, PUNCT
though ADV
, PUNCT
about ADP
the DET
long ADJ
- PUNCT
term NOUN
effects NOUN
. PUNCT
  SPACE
Since SCONJ
he PRON
> X
never ADV
had AUX
his PRON
stomach NOUN
pumped VERB
, PUNCT
will AUX
he PRON
have AUX
liver NOUN
or CCONJ
brain NOUN
damage NOUN
? PUNCT
  SPACE
Any DET
> ADJ
information NOUN
would AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
Shouldn't NOUN
have AUX
. PUNCT
  SPACE
But CCONJ
he PRON
may AUX
need VERB
to PART
see VERB
the DET
shrink NOUN
about ADP
why ADV
hewanted VERB
to PART
kill VERB
himself PRON
. PUNCT
  SPACE
Depressed ADJ
people NOUN
can AUX
be AUX
succesfully ADV
treatedusually.-- ADP
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58920From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
request NOUN
for ADP
information NOUN
on ADP
" PUNCT
essential ADJ
tremor NOUN
" PUNCT
and CCONJ
Indrol?In PUNCT
article NOUN
< X
1q1tbnINNnfn@life.ai.mit.edu NUM
> X
sundar@ai.mit.edu NUM
writes VERB
: PUNCT
Essential ADJ
tremor NOUN
is AUX
a DET
progressive ADJ
hereditary ADJ
tremor NOUN
that PRON
gets VERB
worsewhen PROPN
the DET
patient NOUN
tries VERB
to PART
use VERB
the DET
effected ADJ
member NOUN
. PUNCT
  SPACE
All DET
limbs NOUN
, PUNCT
vocalcords NOUN
, PUNCT
and CCONJ
head NOUN
can AUX
be AUX
involved VERB
. PUNCT
  SPACE
Inderal PROPN
is AUX
a DET
beta NOUN
- PUNCT
blocker NOUN
andis PROPN
usually ADV
effective ADJ
in ADP
diminishing VERB
the DET
tremor NOUN
. PUNCT
  SPACE
Alcohol PROPN
and CCONJ
mysolineare NOUN
also ADV
effective ADJ
, PUNCT
but CCONJ
alcohol NOUN
is AUX
too ADV
toxic ADJ
to PART
use VERB
as SCONJ
a DET
treatment.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58921From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)hbloom@moose.uvm.edu PUNCT
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>Nutrasweet NOUN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
than SCONJ
> X
sugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
> X
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
to ADP
> X
for ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
> X
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehyde NOUN
> X
produced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
to ADP
> VERB
living NOUN
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
> X
Phenylalanine PROPN
is AUX
> X
nothing PRON
for ADP
you PRON
to PART
worry VERB
about ADP
. PUNCT
  SPACE
It PRON
is AUX
an DET
amino ADJ
acid NOUN
, PUNCT
and CCONJ
everyone PRON
uses VERB
small ADJ
> X
quantities NOUN
of ADP
it PRON
for ADP
protein NOUN
synthesis NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
Some DET
people NOUN
have AUX
a DET
disease NOUN
> X
known VERB
as SCONJ
phenylketoneurea NOUN
, PUNCT
and CCONJ
they PRON
are AUX
missing VERB
the DET
enzyme NOUN
necessary ADJ
to PART
> X
degrade VERB
this DET
compound NOUN
and CCONJ
eliminate VERB
it PRON
from ADP
the DET
body NOUN
. PUNCT
  SPACE
For ADP
them PRON
, PUNCT
it PRON
will AUX
> X
accumulate VERB
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
in ADP
high ADJ
levels NOUN
this DET
is AUX
toxic ADJ
to ADP
growing VERB
nerve NOUN
> X
cells NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
it PRON
is AUX
Only ADV
a DET
major ADJ
problem NOUN
in ADP
young ADJ
children NOUN
( PUNCT
until ADP
around ADP
> X
age NOUN
10 NUM
or CCONJ
so ADV
) PUNCT
or CCONJ
women NOUN
who PRON
are AUX
pregnant ADJ
and CCONJ
have AUX
this DET
disorder NOUN
. PUNCT
  SPACE
It PRON
used VERB
to PART
> X
be AUX
a DET
leading VERB
cause NOUN
of ADP
brain NOUN
damage NOUN
in ADP
infants NOUN
, PUNCT
but CCONJ
now ADV
it PRON
can AUX
be AUX
easily ADV
> X
detected VERB
at ADP
birth NOUN
, PUNCT
and CCONJ
then ADV
one PRON
must AUX
simply ADV
avoid VERB
comsumption NOUN
of ADP
phenylalanine NOUN
> X
as SCONJ
a DET
child NOUN
, PUNCT
or CCONJ
when ADV
pregnant ADJ
. PUNCT
  SPACE
> X
-heatherIf PUNCT
I PRON
remember VERB
rightly ADV
PKU PROPN
syndrome NOUN
in ADP
infants NOUN
is AUX
about ADP
1/1200 NUM
? PUNCT
They PRON
lacktwo VERB
genes NOUN
. PUNCT
And CCONJ
people NOUN
who PRON
lack VERB
one NUM
gene NOUN
are AUX
supposed VERB
to PART
be AUX
1/56 NUM
persons?Those NOUN
with ADP
PKU PROPN
have AUX
to PART
avoid VERB
naturally ADV
occuring VERB
phenylalanine NOUN
. PUNCT
And CCONJ
thosewho ADP
only ADV
have AUX
one NUM
gene NOUN
and CCONJ
underproduce NOUN
whatever PRON
it PRON
is AUX
they PRON
are AUX
supposed VERB
tobe NOUN
producing VERB
are AUX
supposed VERB
to PART
be AUX
less ADV
tolerant ADJ
of ADP
aspartame NOUN
. PUNCT
The DET
methol NOUN
, PUNCT
formaldahyde NOUN
thing NOUN
was AUX
supposed VERB
to PART
occur VERB
with ADP
heating?I PROPN
do AUX
n't PART
drink VERB
it PRON
. PUNCT
I PRON
figure VERB
sugar NOUN
was AUX
made VERB
for ADP
a DET
reason NOUN
. PUNCT
To PART
quickly ADV
andeasily ADV
satiate VERB
hungry ADJ
people NOUN
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
need VERB
the DET
calories NOUN
it PRON
's AUX
just ADV
aseasy NOUN
to PART
drink VERB
water NOUN
. PUNCT
  SPACE
Used VERB
to PART
drink VERB
a DET
six NUM
pack NOUN
a DET
aday NOUN
of ADP
aspartame PROPN
soda NOUN
. PUNCT
Don'teven NUM
drink VERB
one NUM
coke NOUN
a DET
day NOUN
when ADV
sugared VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58922From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
NIH PROPN
offers VERB
" PUNCT
Exploratory PROPN
Grants PROPN
For ADP
Alternative PROPN
Medicine"In PROPN
article NOUN
< X
1993Apr9.172945.4578@island NUM
. PUNCT
COM NOUN
> X
green@island NOUN
. PUNCT
COM PROPN
( PUNCT
Robert PROPN
Greenstein PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19493@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>One NUM
problem NOUN
is AUX
very ADV
few ADJ
scientists NOUN
are AUX
interested ADJ
in ADP
alternative ADJ
medicine.>>So PROPN
Gordon PROPN
, PUNCT
why ADV
do AUX
you PRON
think VERB
this DET
is AUX
so?>-- PUNCT
Probably ADV
because SCONJ
most ADJ
of ADP
them PRON
come VERB
packaged VERB
with ADP
some DET
absurd ADJ
theorybehind NOUN
them PRON
. PUNCT
  SPACE
E.G. PROPN
homoeopathy NOUN
: PUNCT
like SCONJ
cures NOUN
like SCONJ
. PUNCT
  SPACE
The DET
more ADV
you PRON
dilutethings NOUN
, PUNCT
the DET
more ADV
powerful ADJ
they PRON
get VERB
, PUNCT
even ADV
if SCONJ
you PRON
dilute VERB
them PRON
so ADV
muchthere PROPN
is AUX
no DET
ingredient NOUN
but CCONJ
water NOUN
left VERB
. PUNCT
  SPACE
Chiropractic NOUN
: PUNCT
all DET
illnessstems NOUN
from ADP
compressions NOUN
of ADP
nerves NOUN
by ADP
misaligned PROPN
vertebrae PROPN
. PUNCT
  SPACE
Suchsystems NOUN
are AUX
so ADV
patently ADV
absurd ADJ
, PUNCT
that SCONJ
any DET
good ADJ
they PRON
do AUX
is AUX
accidentaland NOUN
not PART
related VERB
to ADP
the DET
theory NOUN
. PUNCT
  SPACE
The DET
only ADJ
exception NOUN
is AUX
probably ADV
herbalism ADJ
, PUNCT
because SCONJ
scientists NOUN
recognize VERB
the DET
potent ADJ
drugs NOUN
that PRON
derive VERB
from ADP
plantsand PROPN
are AUX
always ADV
interested ADJ
in ADP
seeing VERB
if SCONJ
they PRON
can AUX
find VERB
new ADJ
plantsthat PRON
have AUX
active ADJ
and CCONJ
useful ADJ
substances NOUN
. PUNCT
  SPACE
But CCONJ
that DET
is AUX
n't PART
what PRON
is AUX
meant VERB
by ADP
alternative ADJ
medicine NOUN
, PUNCT
usually ADV
. PUNCT
  SPACE
If SCONJ
you PRON
get VERB
into ADP
the DET
Qi PROPN
, PUNCT
accupuntunce NOUN
charts NOUN
, PUNCT
etc X
, PUNCT
you PRON
are AUX
now ADV
back ADV
to ADP
silly ADJ
theories NOUN
thatprobably ADV
have AUX
nothing PRON
to PART
do AUX
with ADP
why ADV
accupuncture NOUN
works VERB
in ADP
some DET
cases NOUN
. PUNCT
Perhaps ADV
another DET
reason NOUN
they PRON
are AUX
reluctant ADJ
is AUX
the DET
Rhine ADJ
experience NOUN
. PUNCT
Rhine NOUN
was AUX
a DET
scientist NOUN
who PRON
wanted VERB
to PART
investigate VERB
the DET
paranormaland NOUN
his PRON
lab NOUN
was AUX
filled VERB
with ADP
so ADV
much ADJ
chacanery NOUN
and CCONJ
fakery NOUN
that SCONJ
people NOUN
do AUX
n't PART
want VERB
to PART
be AUX
associated VERB
with ADP
that DET
sort NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58923From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Dislocated PROPN
ShoulderIn PROPN
article NOUN
< X
1993Apr9.181944.5353@e2big.mko.dec.com NUM
> X
steve@caboom.cbm.dec.com X
( PUNCT
Steve PROPN
Katz PROPN
) PUNCT
writes:>>Recently ADV
I PRON
managed VERB
to PART
dislocate VERB
my PRON
shoulder NOUN
while SCONJ
> X
sking NOUN
. PUNCT
  SPACE
The DET
injury NOUN
also ADV
seems VERB
to PART
have AUX
damaged VERB
the DET
nerves NOUN
> X
in ADP
my PRON
arm NOUN
. PUNCT
  SPACE
I PRON
was AUX
wondering VERB
if SCONJ
someone PRON
could AUX
point VERB
me PRON
towards ADP
> X
some DET
literature NOUN
that PRON
would AUX
give VERB
me PRON
some DET
background NOUN
into ADP
> X
these DET
types NOUN
of ADP
injuries NOUN
. PUNCT
  SPACE
Please INTJ
respond VERB
by ADP
EMAIL PROPN
if SCONJ
possible.>Your PROPN
medical ADJ
school NOUN
library NOUN
should AUX
have AUX
books NOUN
on ADP
peripheral ADJ
nerveinjuries NOUN
. PUNCT
  SPACE
Probably ADV
it PRON
was AUX
your PRON
brachial ADJ
plexus NOUN
, PUNCT
so ADV
look VERB
that SCONJ
up.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58924From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?In PUNCT
article NOUN
< X
1q6rie$mo2@access.digex.net NUM
> X
kfl@access.digex.com NOUN
( PUNCT
Keith PROPN
F. PROPN
Lynch PROPN
) PUNCT
writes:>So PROPN
, PUNCT
why ADV
are AUX
the DET
scans PROPN
so ADV
expensive ADJ
, PUNCT
and CCONJ
what PRON
can AUX
be AUX
done VERB
to PART
reduce VERB
the DET
> X
expense NOUN
? PUNCT
  SPACE
Is AUX
n't PART
it PRON
just ADV
a DET
box NOUN
with ADP
some DET
big ADJ
magnets NOUN
, PUNCT
a DET
radio NOUN
transmitter,>and CCONJ
an DET
attached ADJ
PC?The NOUN
magnets NOUN
are AUX
huge ADJ
! PUNCT
  SPACE
Good ADJ
MRI PROPN
sets VERB
with ADP
big ADJ
( PUNCT
> X
1.5 NUM
Tesla PROPN
) PUNCT
magnetscost NOUN
millions NOUN
of ADP
dollars NOUN
. PUNCT
  SPACE
Then ADV
, PUNCT
the DET
radiologist NOUN
wants VERB
$ SYM
400 NUM
forreading VERB
each DET
scan.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58925From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Helium NOUN
non ADJ
- ADJ
renewable ADJ
? PUNCT
? PUNCT
  SPACE
( PUNCT
was AUX
: PUNCT
Too ADV
many ADJ
MRIs?)In NOUN
article NOUN
< X
lsj1gdINNkor@saltillo.cs.utexas.edu X
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>-*---->How PRON
does AUX
the DET
helium NOUN
get AUX
consumed VERB
? PUNCT
  SPACE
I PRON
would AUX
have AUX
thought VERB
that DET
failure NOUN
> X
to PART
contain VERB
it PRON
perfectly ADV
would AUX
result VERB
in ADP
its PRON
evaporation NOUN
.. PUNCT
back ADV
into ADP
> X
the DET
atmosphere NOUN
. PUNCT
  SPACE
Sounds VERB
like SCONJ
a DET
cycle NOUN
to ADP
me PRON
. PUNCT
  SPACE
Obviously ADV
, PUNCT
it PRON
takes VERB
> X
energy NOUN
to PART
run VERB
the DET
cycle NOUN
, PUNCT
but CCONJ
I PRON
seriously ADV
doubt VERB
that SCONJ
helium NOUN
consumption NOUN
> X
is AUX
a DET
resource NOUN
issue.>It PROPN
's AUX
not PART
a DET
cycle NOUN
. PUNCT
  SPACE
Free ADJ
helium NOUN
will AUX
escape VERB
from ADP
the DET
atmosphere NOUN
due ADJ
toits ADJ
high ADJ
velocity NOUN
. PUNCT
  SPACE
It PRON
wo AUX
n't PART
be AUX
practical ADJ
to PART
recover VERB
it PRON
. PUNCT
  SPACE
It PRON
hasto VERB
be AUX
mined.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58926From NUM
: PUNCT
kaminski@netcom.com X
( PUNCT
Peter PROPN
Kaminski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
to PART
find VERB
information NOUN
about ADP
current ADJ
trends NOUN
in ADP
diabetes NOUN
. PUNCT
In ADP
< X
C5nF2r.KpJ@world.std.com NOUN
> X
steveo@world.std.com NOUN
( PUNCT
Steven PROPN
W PROPN
Orr PROPN
) PUNCT
writes:>I PROPN
looked VERB
for ADP
diab PROPN
in ADP
my PRON
.newsrc NOUN
and CCONJ
came VERB
up ADP
with ADP
nuthin NOUN
. PUNCT
Anyone PRON
have AUX
> X
any DET
good ADJ
sources NOUN
for ADP
where ADV
I PRON
can AUX
read?Check VERB
out ADP
the DET
DIABETIC PROPN
mailing NOUN
list NOUN
-- PUNCT
a DET
knowledgable ADJ
, PUNCT
helpful ADJ
, PUNCT
friendly ADJ
, PUNCT
voluminous ADJ
bunch NOUN
. PUNCT
  SPACE
Send VERB
email NOUN
to ADP
LISTSERV@PCCVM.BITNET NOUN
, PUNCT
with ADP
this DET
linein VERB
the DET
body NOUN
: PUNCT
SUBSCRIBE NOUN
DIABETIC PROPN
< X
your PRON
name NOUN
here ADV
> X
Also ADV
, PUNCT
the DET
vote NOUN
for ADP
misc.health.diabetes PROPN
, PUNCT
a DET
newsgroup NOUN
for ADP
general ADJ
discussionof PROPN
diabetes PROPN
, PUNCT
is AUX
currently ADV
underway ADJ
, PUNCT
and CCONJ
will AUX
close VERB
on ADP
29 NUM
April PROPN
. PUNCT
  SPACE
From ADP
the2nd PROPN
CFV PROPN
, PUNCT
posted VERB
to ADP
news.announce.newgroups PROPN
, PUNCT
news.groups NOUN
, PUNCT
and CCONJ
sci.med,message PROPN
< X
1q1jshINN4v1@rodan NUM
. PUNCT
UU.NET>:>To PROPN
place VERB
a DET
vote NOUN
FOR ADP
the DET
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
an DET
> X
email NOUN
message NOUN
to ADP
yes@sun6850.nrl.navy.mil>>To NOUN
place VERB
a DET
vote NOUN
AGAINST ADJ
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
an DET
> X
email NOUN
message NOUN
to ADP
no@sun6850.nrl.navy.mil>>The ADJ
contents NOUN
of ADP
the DET
message NOUN
should AUX
contain VERB
the DET
line NOUN
" PUNCT
I PRON
vote VERB
> X
for ADP
/ SYM
against ADP
misc.health.diabetes PROPN
as SCONJ
proposed VERB
" PUNCT
. PUNCT
  SPACE
Email NOUN
messages NOUN
sent VERB
to ADP
> X
the DET
above ADJ
addresses NOUN
must AUX
constitute VERB
unambiguous ADJ
and CCONJ
unconditional ADJ
> NUM
votes NOUN
for ADP
/ SYM
against ADP
newsgroup PROPN
creation NOUN
as SCONJ
proposed VERB
. PUNCT
  SPACE
Conditional ADJ
votes NOUN
> X
will AUX
not PART
be AUX
accepted VERB
. PUNCT
  SPACE
Only ADV
votes NOUN
emailed VERB
to ADP
the DET
above ADJ
addresses NOUN
will AUX
> X
be AUX
counted VERB
; PUNCT
mailed VERB
replies NOUN
to ADP
this DET
posting NOUN
will AUX
be AUX
returned VERB
. PUNCT
  SPACE
In ADP
the DET
> X
event NOUN
that SCONJ
more ADJ
than SCONJ
one NUM
vote NOUN
is AUX
placed VERB
by ADP
an DET
individual NOUN
, PUNCT
only ADV
the DET
> X
most ADV
recent ADJ
vote NOUN
will AUX
be AUX
counted VERB
. PUNCT
  SPACE
One NUM
additional ADJ
CFV PROPN
will AUX
be AUX
posted VERB
> X
during ADP
the DET
course NOUN
of ADP
the DET
vote NOUN
, PUNCT
along ADP
with ADP
an DET
acknowledgment NOUN
of ADP
those DET
> X
votes NOUN
received VERB
to ADP
date NOUN
. PUNCT
  SPACE
No DET
information NOUN
will AUX
be AUX
supplied VERB
as SCONJ
to ADP
how ADV
> X
people NOUN
are AUX
voting VERB
until ADP
the DET
final ADJ
acknowledgment NOUN
is AUX
made VERB
at ADP
the DET
end,>at PROPN
which PRON
time NOUN
the DET
full ADJ
vote NOUN
will AUX
be AUX
made VERB
public.>>Voting VERB
will AUX
continue VERB
until ADP
23:59 NUM
GMT PROPN
, PUNCT
29 NUM
Apr PROPN
93.>Votes PROPN
will AUX
not PART
be AUX
accepted VERB
after ADP
this DET
date.>>Any PROPN
administrative ADJ
inquiries NOUN
pertaining VERB
to ADP
this DET
CFV PROPN
may AUX
be AUX
made VERB
by ADP
> X
email NOUN
to ADP
swkirch@sun6850.nrl.navy.mil>>The ADP
proposed VERB
charter NOUN
appears VERB
below.>>-------------------------->>Charter PROPN
: PUNCT
  SPACE
> X
> X
misc.health.diabetes PROPN
                            SPACE
unmoderated>>1 PROPN
. PUNCT
   SPACE
The DET
purpose NOUN
of ADP
misc.health.diabetes PROPN
is AUX
to PART
provide VERB
a DET
forum NOUN
for ADP
the DET
> X
discussion NOUN
of ADP
issues NOUN
pertaining VERB
to ADP
diabetes NOUN
management NOUN
, PUNCT
i.e. X
: PUNCT
diet,>activities NOUN
, PUNCT
medicine NOUN
schedules NOUN
, PUNCT
blood NOUN
glucose NOUN
control NOUN
, PUNCT
exercise,>medical ADJ
breakthroughs NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
group NOUN
addresses VERB
the DET
issues NOUN
of ADP
> NUM
management NOUN
of ADP
both DET
Type NOUN
I PRON
( PUNCT
insulin NOUN
dependent ADJ
) PUNCT
and CCONJ
Type PROPN
II PROPN
( PUNCT
non ADJ
- ADJ
insulin ADJ
> X
dependent ADJ
) PUNCT
diabetes NOUN
. PUNCT
  SPACE
Both DET
technical ADJ
discussions NOUN
and CCONJ
general ADJ
support NOUN
> X
discussions NOUN
relevant ADJ
to PART
diabetes VERB
are AUX
welcome.>>2 VERB
. PUNCT
   SPACE
Postings NOUN
to ADP
misc.heath.diabetes NOUN
are AUX
intended VERB
to PART
be AUX
for ADP
discussion NOUN
> X
purposes NOUN
only ADV
, PUNCT
and CCONJ
are AUX
in ADP
no DET
way NOUN
to PART
be AUX
construed VERB
as SCONJ
medical ADJ
advice.>Diabetes PROPN
is AUX
a DET
serious ADJ
medical ADJ
condition NOUN
requiring VERB
direct ADJ
supervision NOUN
> X
by ADP
a DET
primary ADJ
health NOUN
care NOUN
physician NOUN
. PUNCT
  SPACE
> X
> X
-----(end PUNCT
of ADP
charter)-----Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58927From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Foreskin PROPN
TroublesWhat PROPN
can AUX
be AUX
done VERB
, PUNCT
short ADJ
of ADP
circumcision NOUN
, PUNCT
for ADP
an DET
adult NOUN
malewhose ADJ
foreskin NOUN
will AUX
not PART
retract?Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58928From NUM
: PUNCT
joel@cs.mcgill.ca PROPN
( PUNCT
Joel PROPN
MALARD)Subject PROPN
: PUNCT
Bone NOUN
marrow NOUN
sclerosis NOUN
. PUNCT
I PRON
am AUX
looking VERB
for ADP
information NOUN
on ADP
possible ADJ
causes NOUN
and CCONJ
long ADJ
term NOUN
effectsof PROPN
bone NOUN
marrow NOUN
sclerosis NOUN
. PUNCT
I PRON
would AUX
also ADV
be AUX
thankful ADJ
if SCONJ
anyone PRON
readingthis ADP
newsgroup PROPN
could AUX
list VERB
some DET
recognized VERB
treatment NOUN
centers NOUN
if SCONJ
anythingelse ADV
than SCONJ
massive ADJ
blood NOUN
transfusion NOUN
can AUX
be AUX
effective ADJ
. PUNCT
If SCONJ
you PRON
plan VERB
ona VERB
" PUNCT
go VERB
to ADP
the DET
library"-style PROPN
reply NOUN
, PUNCT
please INTJ
be AUX
kind ADJ
enough ADV
to PART
add VERB
a DET
list NOUN
of ADP
suggested VERB
topics NOUN
or CCONJ
readings NOUN
: PUNCT
Medicine NOUN
is AUX
not PART
my PRON
field NOUN
. PUNCT
Regards NOUN
, PUNCT
Joel PROPN
Malard.joel@cs.mcgill.caNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58929From NUM
: PUNCT
< X
U19250@uicvm.uic.edu>Subject NOUN
: PUNCT
quality NOUN
control NOUN
in ADP
medicineDoes PROPN
anybody PRON
know VERB
of ADP
any DET
information NOUN
regarding VERB
the DET
implementaion NOUN
of ADP
total ADJ
quality NOUN
management NOUN
, PUNCT
quality NOUN
control NOUN
, PUNCT
quality NOUN
assurance NOUN
in ADP
the DET
delivery NOUN
of ADP
health NOUN
care NOUN
service NOUN
. PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
is AUX
enoughinterest ADJ
, PUNCT
I PRON
will AUX
post VERB
the DET
responses NOUN
. PUNCT
        SPACE
Thank VERB
You PRON
        SPACE
Abhin PROPN
Singla PROPN
MS PROPN
BioE PROPN
, PUNCT
MBA PROPN
, PUNCT
MD PROPN
        SPACE
President PROPN
AC PROPN
Medcomp PROPN
IncNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58930From NUM
: PUNCT
kilty@ucrengr NOUN
( PUNCT
kathleen PROPN
richards)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lyme PROPN
vaccineJeff PROPN
, PUNCT
If SCONJ
you PRON
have AUX
time NOUN
to PART
type VERB
it PRON
in ADP
I PRON
'd AUX
love VERB
to PART
have AUX
the DET
reference NOUN
for ADP
thatpaper PROPN
! PUNCT
  SPACE
thanks!--kathleen X
richards PROPN
   SPACE
email NOUN
: PUNCT
  SPACE
karicha@eis.calstate.edu PROPN
   SPACE
~Sometimes PUNCT
you PRON
're AUX
the DET
windshield NOUN
, PUNCT
sometimes ADV
you PRON
're AUX
the DET
bug!~ PROPN
                                                  SPACE
-dire PROPN
straitsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58931From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
quality NOUN
control NOUN
in ADP
medicineIn PROPN
article NOUN
< X
93108.003258U19250@uicvm.uic.edu NUM
> X
U19250@uicvm.uic.edu NUM
writes::Does PROPN
anybody PRON
know VERB
of ADP
any DET
information NOUN
regarding VERB
the DET
implementaion NOUN
of ADP
total ADJ
: PUNCT
quality NOUN
management NOUN
, PUNCT
quality NOUN
control NOUN
, PUNCT
quality NOUN
assurance NOUN
in ADP
the DET
delivery NOUN
of ADP
: PUNCT
health NOUN
care PROPN
service PROPN
. PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
is AUX
enough ADJ
: PUNCT
interest NOUN
, PUNCT
I PRON
will AUX
post VERB
the DET
responses NOUN
. PUNCT
This DET
is AUX
in ADP
fact NOUN
a DET
hot ADJ
topic NOUN
in ADP
medicine NOUN
these DET
days NOUN
, PUNCT
and CCONJ
much ADJ
of ADP
themedical ADJ
literature NOUN
is AUX
devoted ADJ
to ADP
this DET
. PUNCT
  SPACE
The DET
most ADV
heavily ADV
funded VERB
studiesthese ADJ
days NOUN
are AUX
for ADP
outcome NOUN
research NOUN
, PUNCT
and CCONJ
physicians PROPN
( PUNCT
and CCONJ
others NOUN
! PUNCT
) PUNCT
areconstantly ADV
questionning VERB
whether SCONJ
what PRON
we PRON
do AUX
it PRON
truly ADV
effective ADJ
in ADP
any DET
givensituation NOUN
. PUNCT
  SPACE
QA PROPN
activities NOUN
are AUX
a DET
routine ADJ
part NOUN
of ADP
every DET
hospital'sadministrative ADJ
function NOUN
and CCONJ
are AUX
required VERB
by ADP
accreditation NOUN
agencies NOUN
. PUNCT
  SPACE
Thereare PROPN
even ADV
entire ADJ
publications NOUN
devoted VERB
to ADP
QA PROPN
issues.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58932From NUM
: PUNCT
rgasch@nl.oracle.com X
( PUNCT
Robert PROPN
Gasch)Subject NUM
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?Gordon NOUN
Banks NOUN
( PUNCT
geb@cs.pitt.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
3794@nlsun1.oracle.nl NUM
> X
rgasch@nl.oracle.com NOUN
( PUNCT
Robert PROPN
Gasch PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
: PUNCT
> X
: PUNCT
From ADP
a DET
business NOUN
point NOUN
of ADP
view NOUN
, PUNCT
it PRON
might AUX
make VERB
sense NOUN
. PUNCT
  SPACE
It PRON
depends VERB
on ADP
: PUNCT
> X
: PUNCT
the DET
personality NOUN
of ADP
the DET
practitioner NOUN
. PUNCT
  SPACE
If SCONJ
he PRON
can AUX
charm VERB
the DET
patients NOUN
: PUNCT
> X
: PUNCT
into ADP
coming VERB
, PUNCT
homeopathy NOUN
can AUX
be AUX
very ADV
profitable ADJ
. PUNCT
  SPACE
It PRON
wo AUX
n't PART
be AUX
covered VERB
: PUNCT
> X
: PUNCT
by ADP
insurance NOUN
, PUNCT
however ADV
. PUNCT
  SPACE
Just ADV
keep VERB
that DET
in ADP
mind NOUN
. PUNCT
  SPACE
Myself PRON
, PUNCT
I PRON
'd AUX
have AUX
: PUNCT
> X
^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
: PUNCT
> X
: PUNCT
> X
In ADP
many ADJ
European ADJ
countries NOUN
Homepathy PROPN
is AUX
accepted VERB
as SCONJ
a DET
method NOUN
of ADP
curing VERB
: PUNCT
> X
( PUNCT
or CCONJ
at ADP
least ADJ
alleiating VERB
) PUNCT
many ADJ
conditions NOUN
to ADP
which PRON
modern ADJ
medicine NOUN
has AUX
: PUNCT
> X
no DET
answer NOUN
. PUNCT
In ADP
most ADJ
of ADP
these DET
countries NOUN
insurance NOUN
pays VERB
for ADP
the DET
: PUNCT
> X
treatments NOUN
. PUNCT
: PUNCT
> X
: PUNCT
Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
Not PART
by ADP
scientists NOUN
. PUNCT
  SPACE
There PRON
are AUX
people NOUN
: PUNCT
in ADP
every DET
country NOUN
who PRON
waste VERB
time NOUN
and CCONJ
money NOUN
on ADP
quackery NOUN
. PUNCT
: PUNCT
In ADP
Britain PROPN
and CCONJ
Scandanavia PROPN
, PUNCT
where ADV
I PRON
have AUX
worked VERB
, PUNCT
it PRON
was AUX
not PART
paid VERB
for ADP
. PUNCT
: PUNCT
What PRON
are AUX
" PUNCT
most ADJ
of ADP
these DET
countries NOUN
? PUNCT
" PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
you PRON
. PUNCT
In ADP
Holland PROPN
insurences NOUN
pay VERB
for ADP
Homeopathic ADJ
treatment NOUN
. PUNCT
In ADP
Germany PROPN
they PRON
doso VERB
as ADV
well ADV
. PUNCT
I PRON
Austria PROPN
they PRON
do AUX
if SCONJ
you PRON
have AUX
a DET
condition NOUN
which PRON
can AUX
not PART
be AUX
helped VERB
by ADP
" PUNCT
normal ADJ
" PUNCT
medicine NOUN
( PUNCT
happened VERB
to ADP
me PRON
) PUNCT
. PUNCT
Switzerland PROPN
seems VERB
to PART
be AUX
the DET
same ADJ
as SCONJ
Austria PROPN
( PUNCT
I PRON
have AUX
direct ADJ
experience NOUN
in ADP
the DET
Swiss ADJ
case).At NOUN
the DET
Univeristy PROPN
of ADP
Vienna PROPN
( PUNCT
I PRON
believe VERB
Innsbruck PROPN
as ADV
well ADV
) PUNCT
homeopathycan PROPN
be AUX
taken VERB
in ADP
Med PROPN
. PUNCT
school NOUN
. PUNCT
I PRON
found VERB
that SCONJ
in ADP
combination NOUN
with ADP
Acupuncture NOUN
it PRON
changed VERB
my PRON
life NOUN
fromliving VERB
hell NOUN
to ADP
a DET
condition NOUN
which PRON
enables VERB
me PRON
to PART
lead VERB
a DET
relatively ADV
normal ADJ
life NOUN
. PUNCT
I PRON
found VERB
that SCONJ
modern ADJ
medicine NOUN
was AUX
powerless ADJ
to PART
cure VERB
meof NOUN
a DET
* PUNCT
severe ADJ
* PUNCT
case NOUN
of ADP
Neurodermitis PROPN
( PUNCT
Note VERB
: PUNCT
I PRON
mean VERB
cure NOUN
, PUNCT
not PART
surpress VERB
the DET
symptoms NOUN
, PUNCT
which PRON
is AUX
what PRON
modern ADJ
medicine NOUN
attempts VERB
to PART
do AUX
in ADP
the DET
case NOUN
of ADP
Neurodermitis PROPN
) PUNCT
. PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
Homeopathy PROPN
is AUX
scientific ADJ
, PUNCT
but CCONJ
that SCONJ
it PRON
can AUX
offer VERB
help NOUN
in ADP
areas NOUN
in ADP
which PRON
modern ADJ
medicine NOUN
is AUX
absolutely ADV
helpless ADJ
. PUNCT
From ADP
reading VERB
your PRON
aritcle NOUN
it PRON
seems VERB
that SCONJ
your PRON
have AUX
some DET
deeply ADV
rootedbeliefs NOUN
about ADP
this DET
issue NOUN
( PUNCT
this DET
is AUX
not PART
intended VERB
to PART
be AUX
offensive ADJ
or CCONJ
sarcastic ADJ
- PUNCT
it PRON
just ADV
sounded VERB
like SCONJ
that DET
to ADP
me PRON
) PUNCT
which PRON
makes VERB
me PRON
doubt VERB
if SCONJ
you PRON
can AUX
read VERB
this DET
with ADP
an DET
open ADJ
mind NOUN
. PUNCT
If SCONJ
you PRON
do AUX
/ SYM
can AUX
, PUNCT
please INTJ
excusemy PROPN
last ADJ
comment.--- PROPN
> X
Robertrgasch@nl.oracle.comNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58933From NUM
: PUNCT
  SPACE
Gia PROPN
Kiria PROPN
< X
gkiria@kiria.kheta.georgia.su>Subject NOUN
: PUNCT
help VERB
  SPACE
HELP!Maybe X
anybody PRON
know VERB
names NOUN
of ADP
conferences NOUN
inPlease AUX
help VERB
Me PRON
find VERB
any DET
information NOUN
for ADP
next ADJ
keywords NOUN
: PUNCT
echocardiography NOUN
and CCONJ
cardiology+doplerI PROPN
hawe PROPN
no DET
informatins NOUN
on ADP
this DET
subjects NOUN
2 NUM
years NOUN
becouse VERB
i PRON
leave VERB
inTbilisy.sorry PROPN
for ADP
my PRON
bad ADJ
english!MY PROPN
adress NOUN
: PUNCT
irina@kiria.kheta.georgia.suNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58934From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
HYPOGLYCEMIA PROPN
     SPACE
anello@adcs00.fnal.gov X
( PUNCT
Anthony PROPN
Anello PROPN
) PUNCT
writes VERB
: PUNCT
A NOUN
( PUNCT
> X
  SPACE
Can AUX
anyone PRON
tell VERB
me PRON
if SCONJ
a DET
bloodcount NOUN
of ADP
40 NUM
when ADV
diagnosed VERB
as SCONJ
hypoglycemic ADJ
isA NOUN
( PUNCT
> X
  SPACE
dangerous ADJ
, PUNCT
i.e. X
indicates VERB
a DET
possible ADJ
pancreatic ADJ
problem NOUN
? PUNCT
  SPACE
One NUM
Dr. PROPN
says VERB
no INTJ
, PUNCT
theA PROPN
( PUNCT
> X
  SPACE
other ADJ
( PUNCT
not PART
his PRON
specialty NOUN
) PUNCT
says VERB
the DET
first ADJ
is AUX
negligent ADJ
and CCONJ
that SCONJ
another DET
bloodA PROPN
( PUNCT
> X
  SPACE
test NOUN
should AUX
be AUX
done VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
what PRON
is AUX
a DET
good ADJ
diet NOUN
( PUNCT
what PRON
has AUX
worked VERB
) PUNCT
for ADP
a DET
hypo ADJ
- PUNCT
A NOUN
( PUNCT
> X
  SPACE
glycemic PROPN
? PUNCT
  SPACE
TIA.A NOUN
( PUNCT
> X
  SPACE
A NOUN
( PUNCT
> X
  SPACE
A NOUN
( PUNCT
> X
  SPACE
Anthony PROPN
AnelloA PROPN
( PUNCT
> X
  SPACE
FermilabA PROPN
( PUNCT
> X
  SPACE
Batavia PROPN
, PUNCT
Illinois PROPN
   SPACE
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED ADV
through ADP
the DET
proper ADJ
    SPACE
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
ther NOUN
following VERB
: PUNCT
   SPACE
1 NUM
) PUNCT
Chelated VERB
Manganese PROPN
   SPACE
25 NUM
- PUNCT
50mg NOUN
/ SYM
day NOUN
. PUNCT
   SPACE
2 NUM
) PUNCT
Chelated VERB
Chromium PROPN
    SPACE
400 NUM
- PUNCT
600mcg NUM
/ SYM
day NOUN
. PUNCT
   SPACE
3 X
) PUNCT
Increase VERB
protein NOUN
through ADP
foods NOUN
or CCONJ
supplements NOUN
. PUNCT
   SPACE
4 NUM
) PUNCT
Avoid VERB
supplements NOUN
/ SYM
foods NOUN
high ADV
in ADP
Potassium PROPN
, PUNCT
Calcium PROPN
, PUNCT
Zinc PROPN
. PUNCT
   SPACE
5 NUM
) PUNCT
Avoid VERB
Vit PROPN
C PROPN
supplements NOUN
in ADP
excess NOUN
of ADP
100 NUM
mg PROPN
. PROPN
   SPACE
6 NUM
) PUNCT
Avoid VERB
honey NOUN
and CCONJ
foods NOUN
high ADV
in ADP
simple ADJ
sugars NOUN
. PUNCT
   SPACE
7 NUM
) PUNCT
Enjoy VERB
breads NOUN
, PUNCT
cereals NOUN
, PUNCT
grains NOUN
... PUNCT
   SPACE
Discuss VERB
the DET
above ADJ
with ADP
your PRON
health NOUN
practitioner NOUN
for ADP
compatibility NOUN
   SPACE
with ADP
your PRON
body NOUN
chemistry NOUN
and CCONJ
safety NOUN
. PUNCT
   SPACE
--Ron----- PROPN
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
BEER NOUN
- PUNCT
It PRON
's AUX
not PART
just ADV
for ADP
breakfast NOUN
anymore ADV
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58935From NUM
: PUNCT
kfl@access.digex.com PROPN
( PUNCT
Keith PROPN
F. PROPN
Lynch)Subject PROPN
: PUNCT
GlutamateIn PROPN
article NOUN
< X
lso15qINNkpr@news.bbn.com PROPN
> X
sher@bbn.com X
( PUNCT
Lawrence PROPN
D. PROPN
Sher PROPN
) PUNCT
writes VERB
: PUNCT
> X
From ADP
the DET
N.E.J.Med PROPN
. PROPN
  SPACE
editorial NOUN
: PUNCT
  SPACE
" PUNCT
The DET
dicarboxylic ADJ
amino NOUN
acid PROPN
glutamate PROPN
> X
is AUX
not PART
only ADV
an DET
essential ADJ
amino NOUN
acid NOUN
... PUNCT
Glutamate PROPN
is AUX
not PART
an DET
essential ADJ
amino NOUN
acid NOUN
. PUNCT
  SPACE
People NOUN
can AUX
survive VERB
quite ADV
wellwithout NOUN
ever ADV
eating VERB
any.-- NUM
Keith PROPN
Lynch PROPN
, PUNCT
kfl@access.digex.comf PROPN
p=2,3:2 PROPN
s PROPN
q=1 NOUN
x NOUN
" PUNCT
f PROPN
f=3:2 PROPN
q PROPN
: PUNCT
f*f PROPN
> PROPN
p!'q PROPN
  SPACE
s PROPN
q PROPN
= SYM
p#f NOUN
" PUNCT
w PROPN
: PUNCT
q PROPN
p,?$x\8 PROPN
+ SYM
1 NUM
* PUNCT
8Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58936From NUM
: PUNCT
jeffp@vetmed.wsu.edu PROPN
( PUNCT
Jeff PROPN
Parke)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lyme NOUN
vaccinekathleen NOUN
richards NOUN
( PUNCT
kilty@ucrengr NOUN
) PUNCT
wrote VERB
: PUNCT
> X
If SCONJ
you PRON
have AUX
time NOUN
to PART
type VERB
it PRON
in ADP
I PRON
'd AUX
love VERB
to PART
have AUX
the DET
reference NOUN
for ADP
that DET
> X
paper NOUN
! PUNCT
  SPACE
thanks!Experimental PROPN
Lyme PROPN
Disease PROPN
in ADP
Dogs PROPN
Produces VERB
Arthritis PROPN
and CCONJ
Persistant PROPN
Infection PROPN
, PUNCT
The DET
Journal PROPN
of ADP
Infectious PROPN
Diseases PROPN
, PUNCT
March PROPN
1993 NUM
, PUNCT
167:651 NUM
- PUNCT
664 NUM
- PUNCT
-Jeff PROPN
Parke PROPN
< X
jeffp@pgavin1.vetmed.wsu.edu>also NOUN
: PUNCT
   SPACE
jeffp@WSUVM1.bitnet PUNCT
    SPACE
AOL PROPN
: PUNCT
JeffParkeWashington PROPN
State PROPN
University PROPN
College PROPN
of ADP
Veterinary PROPN
Medicine PROPN
class NOUN
of ADP
1994Pullman NUM
, PUNCT
WA PROPN
  SPACE
99164 NUM
- PUNCT
7012Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58937From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Selective ADJ
PlaceboIn NOUN
article NOUN
< X
1993Apr17.125545.22457@rose.com NUM
> X
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
   SPACE
OTOH PROPN
, PUNCT
who PRON
are AUX
we PRON
kidding VERB
, PUNCT
the DET
New PROPN
England PROPN
Medical PROPN
Journal PROPN
in ADP
1984 NUM
> X
   SPACE
ran VERB
the DET
heading NOUN
: PUNCT
" PUNCT
Ninety PROPN
Percent PROPN
of ADP
Diseases NOUN
are AUX
not PART
Treatable ADJ
by ADP
> X
   SPACE
Drugs PROPN
or CCONJ
Surgery PROPN
, PUNCT
" PUNCT
which PRON
has AUX
been AUX
echoed VERB
by ADP
several ADJ
other ADJ
reports NOUN
. PUNCT
> X
   SPACE
No DET
wonder NOUN
MDs NOUN
are AUX
not PART
amused VERB
with ADP
alternative ADJ
medicine NOUN
, PUNCT
since SCONJ
> X
   SPACE
the DET
20 NUM
% NOUN
magic NOUN
of ADP
the DET
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
would AUX
award VERB
alternative PROPN
> X
   SPACE
practitioners NOUN
twice DET
the DET
success NOUN
rate NOUN
of ADP
conventional ADJ
medicine NOUN
... PUNCT
1 NUM
: PUNCT
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
" PUNCT
is AUX
not PART
the DET
same ADJ
thing NOUN
as SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
patients NOUN
" PUNCT
. PUNCT
   SPACE
In ADP
a DET
world NOUN
with ADP
one NUM
curable ADJ
disease NOUN
that PRON
strikes VERB
100 NUM
people NOUN
, PUNCT
and CCONJ
nine NUM
   SPACE
incurable ADJ
diseases NOUN
which PRON
strikes VERB
one NUM
person NOUN
each DET
, PUNCT
medical ADJ
science NOUN
will AUX
cure VERB
   SPACE
91 NUM
% NOUN
of ADP
the DET
patients NOUN
and CCONJ
report VERB
that SCONJ
90 NUM
% NOUN
of ADP
diseases NOUN
have AUX
no DET
therapy.2 PROPN
: PUNCT
A DET
disease NOUN
would AUX
be AUX
counted VERB
among ADP
the DET
90 NUM
% NOUN
untreatable ADJ
if SCONJ
nothing PRON
better ADJ
than SCONJ
   SPACE
a DET
placebo NOUN
were AUX
known VERB
. PUNCT
  SPACE
Of ADV
course NOUN
MDs NOUN
are AUX
ethically ADV
bound VERB
to PART
not PART
knowingly ADV
   SPACE
dispense NOUN
placebos NOUN
... PUNCT
-dkNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58938From NUM
: PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen)Subject NUM
: PUNCT
Re ADP
: PUNCT
GlutamateIn PROPN
article NOUN
< X
1qrsr6$d59@access.digex.net NUM
> X
kfl@access.digex.com PROPN
( PUNCT
Keith PROPN
F. PROPN
Lynch PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
lso15qINNkpr@news.bbn.com PROPN
> X
sher@bbn.com X
( PUNCT
Lawrence PROPN
D. PROPN
Sher PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
From ADP
the DET
N.E.J.Med PROPN
. PROPN
  SPACE
editorial NOUN
: PUNCT
  SPACE
" PUNCT
The DET
dicarboxylic ADJ
amino NOUN
acid PROPN
glutamate PROPN
> X
> X
is AUX
not PART
only ADV
an DET
essential ADJ
amino NOUN
acid NOUN
... PUNCT
> X
> X
Glutamate PROPN
is AUX
not PART
an DET
essential ADJ
amino NOUN
acid NOUN
. PUNCT
  SPACE
People NOUN
can AUX
survive VERB
quite ADV
well ADV
> X
without ADP
ever ADV
eating VERB
any DET
. PUNCT
There PRON
is AUX
no DET
contradiction NOUN
here ADV
. PUNCT
It PRON
is AUX
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
yourbody PROPN
needs VERB
it PRON
. PUNCT
It PRON
is AUX
non ADJ
- ADJ
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
your PRON
body NOUN
canproduce NOUN
enough ADV
of ADP
it PRON
without ADP
supplement NOUN
. PUNCT
Jason PROPN
ChenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58939From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
GlutamateIn PROPN
article NOUN
< X
1993Apr18.163212.9577@walter.bellcore.com NUM
> X
, PUNCT
jchen@wind.bellcore.com PROPN
( PUNCT
Jason PROPN
Chen PROPN
) PUNCT
writes:=There PUNCT
is AUX
no DET
contradiction NOUN
here ADV
. PUNCT
It PRON
is AUX
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
your PRON
= SYM
body NOUN
needs VERB
it PRON
. PUNCT
It PRON
is AUX
non ADJ
- ADJ
essential ADJ
in ADP
the DET
sense NOUN
that SCONJ
your PRON
body NOUN
can AUX
= PUNCT
produce VERB
enough ADJ
of ADP
it PRON
without ADP
supplement NOUN
. PUNCT
And CCONJ
when ADV
you PRON
're AUX
in ADP
a DET
technical ADJ
discussion NOUN
of ADP
amino ADJ
acids NOUN
, PUNCT
it PRON
's AUX
the DET
latterdefinition NOUN
that PRON
's AUX
used VERB
almost ADV
universally.--------------------------------------------------------------------------------Carl ADP
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58940From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5Mv3v.2o5@world.std.com NOUN
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>>Some ADP
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
> X
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that DET
carcinogens VERB
> X
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
> X
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
> X
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
> X
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
    SPACE
From ADP
THE DET
TUFTS PROPN
UNIVERSITY NOUN
GUIDE NOUN
TO ADP
TOTAL NOUN
NUTRITION NOUN
: PUNCT
Stanley PROPN
Gershoff PROPN
, PUNCT
    SPACE
Ph.D. NOUN
, PUNCT
Dean PROPN
of ADP
Tufts PROPN
University PROPN
School PROPN
of ADP
Nutrition PROPN
; PUNCT
HarperPerennial PROPN
, PUNCT
1991 NUM
   SPACE
( PUNCT
ISBN PROPN
# SYM
0 NUM
- SYM
06 NUM
- PUNCT
272007 NUM
- SYM
4 NUM
) PUNCT
: PUNCT
	 SPACE
" PUNCT
The DET
greatest ADJ
hazard NOUN
of ADP
barbecuing NOUN
is AUX
that SCONJ
the DET
cook NOUN
will AUX
not PART
use VERB
	  SPACE
enough ADJ
caution NOUN
and CCONJ
get AUX
burned VERB
. PUNCT
  SPACE
Some DET
people NOUN
suggest VERB
that SCONJ
the DET
	  SPACE
barbecuing NOUN
itself PRON
is AUX
dangerous ADJ
, PUNCT
because SCONJ
the DET
smoke NOUN
, PUNCT
which PRON
is AUX
	  SPACE
absorbed VERB
by ADP
the DET
meat NOUN
, PUNCT
contains VERB
benzopyrene PROPN
, PUNCT
which PRON
, PUNCT
in ADP
its PRON
pure ADJ
form NOUN
, PUNCT
	  SPACE
has AUX
been AUX
known VERB
to PART
cause VERB
cancer NOUN
in ADP
laboratory NOUN
animals NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
	  SPACE
in ADP
order NOUN
to PART
experience VERB
the DET
same ADJ
results NOUN
, PUNCT
people NOUN
would AUX
have AUX
to PART
	  SPACE
consume VERB
unrealistically ADV
large ADJ
quantities NOUN
of ADP
barbecued VERB
meat NOUN
at ADP
a DET
	  SPACE
time NOUN
. PUNCT
"-Rich PUNCT
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58941From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
what PRON
are AUX
the DET
problems NOUN
with ADP
nutrasweet PROPN
( PUNCT
aspartame)In PROPN
article NOUN
< X
1993Apr17.181013.3743@uvm.edu NUM
> X
hbloom@moose.uvm.edu ADJ
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>Nutrasweet NOUN
is AUX
a DET
synthetic ADJ
sweetener NOUN
a DET
couple NOUN
thousand NUM
times NOUN
sweeter ADJ
than SCONJ
> X
sugar NOUN
. PUNCT
  SPACE
Some DET
people NOUN
are AUX
concerned ADJ
about ADP
the DET
chemicals NOUN
that SCONJ
the DET
  SPACE
body NOUN
produces VERB
> X
when ADV
it PRON
degrades VERB
nutrasweet PROPN
. PUNCT
  SPACE
It PRON
is AUX
thought VERB
to PART
form VERB
formaldehyde NOUN
and CCONJ
known VERB
to ADP
> X
for ADP
methanol NOUN
in ADP
the DET
degredation NOUN
pathway NOUN
that PRON
the DET
body NOUN
uses VERB
to PART
eliminate VERB
> X
substances NOUN
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
whether SCONJ
the DET
levels NOUN
of ADP
methanol NOUN
and CCONJ
formaldehyde NOUN
> X
produced VERB
are AUX
high ADJ
enough ADV
to PART
cause VERB
significant ADJ
damage NOUN
, PUNCT
as SCONJ
both DET
are AUX
toxic ADJ
to ADP
> VERB
living NOUN
cells NOUN
. PUNCT
  SPACE
All DET
I PRON
can AUX
say VERB
is AUX
that SCONJ
I PRON
will AUX
not PART
consume VERB
it PRON
. PUNCT
  SPACE
[ PUNCT
... PUNCT
] PUNCT
   SPACE
In ADP
the DET
September PROPN
1992 NUM
issue NOUN
of ADP
THE DET
TUFTS PROPN
UNIVERSITY NOUN
DIET NOUN
AND CCONJ
NUTRITION PROPN
   SPACE
LETTER PROPN
, PUNCT
there PRON
is AUX
a DET
three NUM
page NOUN
article NOUN
about ADP
artificial ADJ
sweeteners NOUN
. PUNCT
  SPACE
What PRON
   SPACE
follows VERB
are AUX
those DET
excerpts NOUN
which PRON
deal VERB
specifically ADV
with ADP
Nutrasweet PROPN
. PUNCT
   SPACE
[ PUNCT
Reproduced VERB
without ADP
permission NOUN
] PUNCT
	    SPACE
The DET
controversy NOUN
[ PUNCT
over ADP
aspartame PROPN
] PUNCT
began VERB
six NUM
years NOUN
ago ADV
in ADP
England PROPN
, PUNCT
	 SPACE
where ADV
a DET
group NOUN
of ADP
researchers NOUN
found VERB
that DET
aspartame PROPN
, PUNCT
marketed VERB
under ADP
	 SPACE
the DET
tradename NOUN
Nutrasweet PROPN
, PUNCT
appears VERB
to PART
stimulate VERB
appetite NOUN
and CCONJ
, PUNCT
	 SPACE
presumably ADV
, PUNCT
the DET
eating NOUN
of ADP
more ADJ
calories NOUN
in ADP
the DET
long ADJ
run NOUN
than SCONJ
if SCONJ
	 SPACE
a DET
person NOUN
simply ADV
consumed VERB
sugar NOUN
. PUNCT
  SPACE
When ADV
researchers NOUN
asked VERB
a DET
group NOUN
	 SPACE
of ADP
95 NUM
people NOUN
to PART
drink VERB
plain ADJ
water NOUN
, PUNCT
aspartame NOUN
- PUNCT
sweetened VERB
water NOUN
, PUNCT
and CCONJ
	 SPACE
sugared VERB
water NOUN
, PUNCT
they PRON
said VERB
that SCONJ
overall ADV
they PRON
felt VERB
hungriest ADJ
after ADP
	 SPACE
drinking VERB
the DET
artificially ADV
sweetened VERB
beverage NOUN
. PUNCT
	    SPACE
The DET
study NOUN
received VERB
widespread ADJ
media NOUN
attention NOUN
and CCONJ
stirred VERB
a DET
	 SPACE
good ADJ
deal NOUN
of ADP
concern NOUN
among ADP
the DET
artificial ADJ
- PUNCT
sweetener NOUN
- PUNCT
using VERB
public NOUN
. PUNCT
	 SPACE
However ADV
, PUNCT
its PRON
results NOUN
were AUX
questionable ADJ
at ADP
best ADJ
, PUNCT
since SCONJ
the DET
researchers NOUN
	 SPACE
did AUX
not PART
go VERB
on ADP
to PART
measure VERB
whether SCONJ
the DET
increase NOUN
in ADP
appetite PROPN
did AUX
	 SPACE
actually ADV
translate VERB
into ADP
an DET
increase NOUN
in ADP
eating VERB
. PUNCT
  SPACE
The DET
two NUM
do AUX
not PART
	 SPACE
necessarily ADV
go VERB
hand NOUN
in ADP
hand NOUN
. PUNCT
	    SPACE
In ADP
the DET
years NOUN
that PRON
followed VERB
, PUNCT
more ADJ
than SCONJ
a DET
dozen NOUN
studies NOUN
examining VERB
	 SPACE
the DET
effect NOUN
of ADP
aspartame NOUN
on ADP
appetite PROPN
-- PUNCT
and CCONJ
eating VERB
-- PUNCT
were AUX
conducted VERB
. PUNCT
	 SPACE
And CCONJ
after ADP
reviewing VERB
every DET
one NUM
of ADP
them PRON
, PUNCT
the DET
director NOUN
of ADP
the DET
	 SPACE
Laboratory NOUN
of ADP
the DET
Study PROPN
of ADP
Human PROPN
Ingestive PROPN
Behavior PROPN
at ADP
Johns PROPN
Hopkins PROPN
	 SPACE
University PROPN
, PUNCT
Barbara PROPN
Rolls PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
concluded VERB
that SCONJ
consuming VERB
aspartame- NOUN
	 SPACE
sweetened VERB
foods NOUN
and CCONJ
drinks NOUN
is AUX
not PART
associated VERB
with ADP
any DET
increase NOUN
in ADP
	 SPACE
the DET
amount NOUN
of ADP
food NOUN
eaten VERB
afterward ADV
. PUNCT
	    SPACE
One NUM
artificial ADJ
sweetener NOUN
that PRON
is AUX
not PART
typically ADV
accused VERB
of ADP
causing VERB
	 SPACE
cancer NOUN
is AUX
aspartame PROPN
. PUNCT
  SPACE
But CCONJ
it PRON
most ADV
certainly ADV
has AUX
been AUX
blamed VERB
for ADP
a DET
	 SPACE
host NOUN
of ADP
other ADJ
ills NOUN
. PUNCT
  SPACE
Since SCONJ
its PRON
introduction NOUN
in ADP
1981 NUM
, PUNCT
the DET
government NOUN
	 SPACE
has AUX
received VERB
thousands NOUN
of ADP
complaints NOUN
accusing VERB
it PRON
of ADP
causing VERB
	 SPACE
everything PRON
from ADP
headaches NOUN
to ADP
nausea NOUN
to ADP
mood NOUN
swings NOUN
to ADP
anxiety NOUN
. PUNCT
	 SPACE
Still ADV
, PUNCT
years NOUN
of ADP
careful ADJ
scientific ADJ
study NOUN
conducted VERB
both CCONJ
before ADV
and CCONJ
	 SPACE
after ADP
the DET
sweetener NOUN
's PART
entering VERB
the DET
market NOUN
have AUX
failed VERB
to PART
confirm VERB
	 SPACE
that SCONJ
it PRON
can AUX
bring VERB
about ADP
adverse ADJ
health NOUN
effects NOUN
. PUNCT
  SPACE
That DET
's AUX
why ADV
the DET
	 SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
( PUNCT
the DET
government NOUN
agency NOUN
charged VERB
with ADP
	 SPACE
monitoring VERB
public ADJ
health NOUN
) PUNCT
, PUNCT
the DET
American PROPN
Medical PROPN
Association PROPN
's PART
	 SPACE
Council PROPN
on ADP
Scientific PROPN
Affairs PROPN
, PUNCT
and CCONJ
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
	 SPACE
have AUX
given VERB
aspartame NOUN
, PUNCT
one NUM
of ADP
the DET
most ADV
studied ADJ
food NOUN
additives NOUN
, PUNCT
a DET
	 SPACE
clean ADJ
bill NOUN
of ADP
health PROPN
. PUNCT
	    SPACE
Granted PROPN
, PUNCT
the DET
FDA PROPN
has AUX
set VERB
forth ADP
an DET
" PUNCT
acceptable ADJ
daily ADJ
intake NOUN
" PUNCT
of ADP
	 SPACE
50 NUM
milligrams NOUN
of ADP
aspartame PROPN
per ADP
kilogram PROPN
of ADP
body NOUN
weight NOUN
. PUNCT
  SPACE
To PART
exceed VERB
	 SPACE
the DET
limit NOUN
, PUNCT
however ADV
, PUNCT
a DET
120-pound NUM
( PUNCT
55 NUM
kg NOUN
. PUNCT
) PUNCT
woman NOUN
would AUX
have AUX
to PART
take VERB
	 SPACE
in ADP
2,750 NUM
milligrams NOUN
of ADP
aspartame NOUN
-- PUNCT
the DET
amount NOUN
in ADP
15 NUM
cans NOUN
of ADP
	 SPACE
aspartame NOUN
- PUNCT
sweetened VERB
soda NOUN
pop NOUN
, PUNCT
14 NUM
cups NOUN
of ADP
gelatin PROPN
, PUNCT
22 NUM
cups NOUN
of ADP
yogurt PROPN
, PUNCT
	 SPACE
or CCONJ
55 NUM
six NUM
- PUNCT
ounce NOUN
servings NOUN
of ADP
aspartame NOUN
- PUNCT
containing VERB
hot ADJ
cocoa NOUN
, PUNCT
... PUNCT
	 SPACE
A DET
175-pound NUM
( PUNCT
80 NUM
kg NOUN
. PUNCT
) PUNCT
man NOUN
would AUX
have AUX
to PART
consume VERB
some DET
4,000 NUM
milligrams NOUN
	 SPACE
of ADP
the DET
sweetener NOUN
-- PUNCT
the DET
amount NOUN
in ADP
22 NUM
cans NOUN
of ADP
soda NOUN
pop NOUN
or CCONJ
32 NUM
cups NOUN
	 SPACE
of ADP
yogurt PROPN
-- PUNCT
to PART
go VERB
over ADP
the DET
limit NOUN
. PUNCT
  SPACE
[ PUNCT
chart VERB
with ADP
aspartame PROPN
content NOUN
	 SPACE
of ADP
selected VERB
foods NOUN
omitted VERB
] PUNCT
	    SPACE
Only ADV
one NUM
small ADJ
group NOUN
of ADP
people NOUN
must AUX
be AUX
certain ADJ
to PART
stay VERB
away ADV
	 SPACE
from ADP
aspartame PROPN
: PUNCT
those DET
born VERB
with ADP
a DET
rare ADJ
metabolic ADJ
disorder NOUN
called VERB
	 SPACE
phenylketonuria PROPN
, PUNCT
or CCONJ
PKU PROPN
. PUNCT
  SPACE
The DET
estimated VERB
one NUM
person NOUN
in ADP
every DET
12,000 NUM
	 SPACE
to ADP
15,000 NUM
who PRON
has AUX
it PRON
is AUX
unable ADJ
to PART
properly ADV
metabolize VERB
an DET
essential ADJ
	 SPACE
amino ADJ
acid NOUN
in ADP
aspartame PROPN
called VERB
phenylalanine NOUN
. PUNCT
  SPACE
Once ADV
a DET
child NOUN
	 SPACE
consumes VERB
it PRON
, PUNCT
it PRON
builds VERB
up ADP
in ADP
the DET
body NOUN
and CCONJ
can AUX
ultimately ADV
cause VERB
	 SPACE
such ADJ
severe ADJ
problems NOUN
as SCONJ
mental ADJ
retardation NOUN
. PUNCT
  SPACE
To PART
help VERB
people NOUN
with ADP
	 SPACE
PKU PROPN
avoid VERB
the DET
substance NOUN
, PUNCT
labels NOUN
on ADP
cans NOUN
of ADP
soda NOUN
pop NOUN
and CCONJ
other ADJ
	 SPACE
aspartame NOUN
- PUNCT
sweetened VERB
foods NOUN
must AUX
carry VERB
the DET
warning NOUN
" PUNCT
Phenylketonurics NOUN
: PUNCT
	 SPACE
Contains VERB
Phenylalanine PROPN
. PUNCT
"-Rich PUNCT
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58942From NUM
: PUNCT
Isabelle PROPN
. PUNCT
Rosso@Dartmouth.edu PROPN
( PUNCT
Isabelle PROPN
Rosso)Subject PROPN
: PUNCT
HunchbackI X
have AUX
a DET
friend NOUN
who PRON
has AUX
a DET
very ADV
pronounced ADJ
slouch NOUN
of ADP
his PRON
upper ADJ
back NOUN
. PUNCT
Healways NOUN
walks VERB
and CCONJ
sits VERB
this DET
way NOUN
so ADV
I PRON
have AUX
concluded VERB
that SCONJ
he PRON
ishunchback VERB
. PUNCT
Is AUX
this DET
a DET
genetic ADJ
disorder NOUN
, PUNCT
or CCONJ
is AUX
it PRON
something PRON
that PRON
people NOUN
can AUX
correct.i.e PUNCT
. PUNCT
is AUX
it PRON
just ADV
bad ADJ
posture NOUN
that PRON
can AUX
be AUX
changed VERB
with ADP
a DET
bit NOUN
of ADP
willpower?Isabelle NOUN
. PUNCT
Rosso@Dartmouth.edu PUNCT
               SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58943From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
KS PROPN
> X
From ADP
: PUNCT
keith@actrix.gen.nz PROPN
( PUNCT
Keith PROPN
Stewart)KS ADP
> X
My PRON
wife NOUN
has AUX
become VERB
interested ADJ
through ADP
an DET
acquaintance NOUN
in ADP
Post PROPN
- PROPN
Polio PROPN
SyndromeKS PROPN
> X
This DET
apparently ADV
is AUX
not PART
recognised VERB
in ADP
New PROPN
Zealand PROPN
and CCONJ
different ADJ
symptons NOUN
( PUNCT
egKS PROPN
> X
chest NOUN
complaints NOUN
) PUNCT
are AUX
treated VERB
separately ADV
. PUNCT
Does AUX
anone NOUN
have AUX
any DET
informationI'm ADP
not PART
sure ADJ
that SCONJ
this DET
condition NOUN
is AUX
" PUNCT
recognised VERB
" PUNCT
anywhere ADV
( PUNCT
in ADP
thesense NOUN
of ADP
a DET
disease NOUN
with ADP
diagnostic ADJ
criteria NOUN
, PUNCT
clear ADJ
boundariesbetween NOUN
it PRON
and CCONJ
other ADJ
diseases NOUN
, PUNCT
unique ADJ
pathologic NOUN
or CCONJ
physiologicfeatures NOUN
, PUNCT
etc X
) PUNCT
, PUNCT
but CCONJ
here ADV
goes VERB
with ADP
what PRON
many ADJ
neurologists NOUN
agree VERB
on ADP
. PUNCT
Post ADJ
- ADJ
polio PROPN
syndrome NOUN
patients NOUN
have AUX
evidence NOUN
of ADP
motor PROPN
neuron PROPN
diseaseby PROPN
clinical ADJ
examination NOUN
, PUNCT
EMG PROPN
, PUNCT
and CCONJ
muscle NOUN
biopsy NOUN
. PUNCT
  SPACE
The DET
abnormalitiesare PROPN
mostly ADV
chronic NOUN
( PUNCT
due ADP
to ADP
old ADJ
polio NOUN
) PUNCT
but CCONJ
there PRON
is AUX
evidence NOUN
ofongoing VERB
deterioration NOUN
. PUNCT
  SPACE
Clinically ADV
, PUNCT
the DET
patients NOUN
complain VERB
ofdeclining VERB
strength NOUN
and CCONJ
endurance NOUN
with ADP
everyday ADJ
motor NOUN
tasks NOUN
. PUNCT
Musculoskeletal ADJ
pain NOUN
is AUX
a DET
nearly ADV
universal ADJ
feature NOUN
that PRON
doubtlesscontributes VERB
to ADP
the DET
impaired ADJ
performance NOUN
. PUNCT
  SPACE
The DET
examination NOUN
showsmuscle NOUN
weakness NOUN
and CCONJ
atrophy PROPN
. PUNCT
  SPACE
The DET
EMG PROPN
shows VERB
evidence NOUN
of ADP
olddenervation NOUN
with ADP
reinnervation NOUN
( PUNCT
giant ADJ
and CCONJ
long ADJ
- PUNCT
duration NOUN
motor NOUN
unitaction NOUN
potentials NOUN
) PUNCT
* PUNCT
and CCONJ
* PUNCT
evidence NOUN
of ADP
active ADJ
denervation(fibrillation PROPN
potentials NOUN
) PUNCT
. PUNCT
  SPACE
The DET
biopsy NOUN
also ADV
shows VERB
old ADJ
denervationwith PROPN
reinnervation NOUN
( PUNCT
fiber NOUN
- PUNCT
type NOUN
grouping NOUN
) PUNCT
* PUNCT
and CCONJ
* PUNCT
evidence NOUN
of ADP
activedenervation NOUN
( PUNCT
small ADJ
, PUNCT
angulated VERB
fibers NOUN
with ADP
dense ADJ
oxidative ADJ
enzymestaining VERB
) PUNCT
- PUNCT
but CCONJ
curiously ADV
, PUNCT
little ADJ
or CCONJ
no DET
group NOUN
atrophy NOUN
. PUNCT
Post ADJ
- ADJ
polio NOUN
patients NOUN
do AUX
not PART
have AUX
ALS PROPN
. PUNCT
  SPACE
In ADP
ALS PROPN
, PUNCT
there PRON
is AUX
clinicallyevident ADJ
deterioration NOUN
from ADP
one NUM
month NOUN
to ADP
the DET
next ADJ
. PUNCT
  SPACE
In ADP
post ADJ
- NOUN
polio NOUN
, PUNCT
the DET
patients NOUN
are AUX
remarkably ADV
stable ADJ
in ADP
objective ADJ
findings NOUN
from ADP
oneyear NOUN
to ADP
the DET
next ADJ
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
there PRON
are AUX
patients NOUN
who PRON
had AUX
poliobefore VERB
who PRON
develop VERB
genuine ADJ
ALS PROPN
, PUNCT
but CCONJ
ALS PROPN
is AUX
no DET
more ADV
common ADJ
amongpolio NOUN
survivors NOUN
than SCONJ
among ADP
people NOUN
who PRON
never ADV
had AUX
polio NOUN
. PUNCT
The DET
cause NOUN
of ADP
post ADJ
- ADJ
polio ADJ
syndrome NOUN
is AUX
unknown ADJ
. PUNCT
  SPACE
There PRON
is AUX
littleevidence NOUN
that SCONJ
post ADJ
- ADJ
polio NOUN
patients NOUN
have AUX
active ADJ
polio NOUN
virus NOUN
ordestructive ADJ
immunologic ADJ
response NOUN
to ADP
virus NOUN
antigen NOUN
. PUNCT
There PRON
is AUX
no DET
solid ADJ
evidence NOUN
that SCONJ
patients NOUN
with ADP
post ADJ
- ADJ
polio ADJ
haveanything VERB
different ADJ
happening VERB
to ADP
the DET
motor NOUN
unit NOUN
( PUNCT
anterior PROPN
horn PROPN
cells NOUN
, PUNCT
motor NOUN
axons NOUN
, PUNCT
neuromuscular ADJ
junctions NOUN
, PUNCT
and CCONJ
muscle NOUN
fibers NOUN
) PUNCT
thanpatients NOUN
with ADP
old ADJ
polio NOUN
who PRON
are AUX
not PART
complaining VERB
of ADP
deterioration NOUN
. PUNCT
Both DET
groups NOUN
can AUX
have AUX
the DET
same ADJ
EMG NOUN
and CCONJ
biopsy NOUN
findings NOUN
. PUNCT
  SPACE
The DET
reasonfor NOUN
these DET
" PUNCT
acute ADJ
" PUNCT
changes NOUN
in ADP
a DET
" PUNCT
chronic ADJ
" PUNCT
disease NOUN
( PUNCT
old ADJ
polio NOUN
) PUNCT
isunknown PROPN
. PUNCT
  SPACE
Possibly ADV
spinal ADJ
motor NOUN
neurons NOUN
( PUNCT
that PRON
have AUX
reinnervated VERB
hugenumbers NOUN
of ADP
muscle NOUN
fibers NOUN
) PUNCT
start VERB
shedding VERB
the DET
load NOUN
after ADP
severalyears NOUN
. PUNCT
There PRON
are AUX
a DET
couple NOUN
of ADP
clinical ADJ
features NOUN
that PRON
distinguish VERB
post ADJ
- ADJ
poliosyndrome ADJ
patients NOUN
from ADP
patients NOUN
with ADP
old ADJ
polio NOUN
who PRON
denydeterioration VERB
. PUNCT
  SPACE
The DET
PPS PROPN
patients NOUN
are AUX
more ADV
likely ADJ
to PART
have AUX
had VERB
severepolio NOUN
. PUNCT
  SPACE
The DET
PPS PROPN
patients NOUN
are AUX
* PUNCT
much ADJ
* PUNCT
more ADV
likely ADJ
to PART
complain VERB
of ADP
pain NOUN
. PUNCT
They PRON
also ADV
tend VERB
to PART
score VERB
higher ADV
on ADP
depression NOUN
scales VERB
ofneuropsychologic ADJ
tests NOUN
. PUNCT
My PRON
take VERB
on ADP
this DET
( PUNCT
I PRON
'm AUX
sure ADJ
some DET
will AUX
disagree VERB
) PUNCT
: PUNCT
  SPACE
after ADP
recovery NOUN
fromsevere ADJ
polio NOUN
there PRON
can AUX
be AUX
abnormal ADJ
loading NOUN
on ADP
muscles NOUN
, PUNCT
tendons NOUN
, PUNCT
ligaments NOUN
, PUNCT
bones NOUN
, PUNCT
and CCONJ
joints NOUN
, PUNCT
that PRON
leads VERB
to ADP
inflammatory ADJ
and CCONJ
/ SYM
ordegenerative ADJ
conditions NOUN
affecting VERB
these DET
structures NOUN
. PUNCT
  SPACE
The DET
increasingpain NOUN
, PUNCT
superimposed VERB
on ADP
the DET
chronic NOUN
( PUNCT
but CCONJ
unchanging ADJ
) PUNCT
weakness NOUN
, PUNCT
leadsto PROPN
progressive PROPN
impairment NOUN
of ADP
motor NOUN
performance NOUN
and CCONJ
ADL PROPN
. PUNCT
  SPACE
I PRON
amperhaps NOUN
biased VERB
by ADP
personal ADJ
experience NOUN
of ADP
having VERB
never ADV
seen VERB
a DET
PPSpatient NOUN
who PRON
was AUX
not PART
limited VERB
in ADP
some DET
way NOUN
by ADP
pain NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believethat VERB
PPS PROPN
patients NOUN
have AUX
more ADJ
rapid ADJ
deterioration NOUN
of ADP
motor PROPN
units VERB
thannon PROPN
- PUNCT
PPS PROPN
patients NOUN
( PUNCT
i.e. X
, PUNCT
those DET
with ADP
old ADJ
polio NOUN
of ADP
similar ADJ
severity NOUN
butwithout NOUN
PPS PROPN
complaints).--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                            SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58944From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Post PROPN
Polio PROPN
Syndrome PROPN
Information PROPN
Needed PROPN
Please INTJ
! PUNCT
! PUNCT
! PUNCT
DN NOUN
> X
From ADP
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)DN NOUN
> X
Briefly PROPN
, PUNCT
this DET
is AUX
a DET
condition NOUN
in ADP
which PRON
patients NOUN
who PRON
have AUX
significantDN PROPN
> X
residual ADJ
weakness NOUN
from ADP
childhood NOUN
polio NOUN
notice NOUN
progression NOUN
of ADP
theDN PROPN
> X
weakness NOUN
as SCONJ
they PRON
get VERB
older ADJ
. PUNCT
  SPACE
One NUM
theory NOUN
is AUX
that SCONJ
the DET
remaining VERB
motorDN PROPN
> X
neurons NOUN
have AUX
to PART
work VERB
harder ADV
and CCONJ
so ADV
die VERB
sooner ADV
. PUNCT
If SCONJ
this DET
theory NOUN
were AUX
true ADJ
, PUNCT
the DET
muscle NOUN
biopsy NOUN
would AUX
show VERB
group NOUN
atrophy(evidence NOUN
of ADP
acute ADJ
loss NOUN
of ADP
enlarged VERB
motor NOUN
units NOUN
) PUNCT
; PUNCT
it PRON
doesn't VERB
. PUNCT
Instead ADV
, PUNCT
the DET
biopsy NOUN
shows NOUN
scattered VERB
, PUNCT
angulated VERB
, PUNCT
atrophic ADJ
fibers NOUN
. PUNCT
This DET
is AUX
more ADV
consistent ADJ
with ADP
load NOUN
- PUNCT
shedding VERB
by ADP
chronically ADV
overworkedmotor NOUN
neurons NOUN
- PUNCT
the DET
neurons NOUN
survive VERB
, PUNCT
at ADP
the DET
expense NOUN
of ADP
increasinglydenervated VERB
muscle.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                                                            SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58945From NUM
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?Sharon NOUN
Paulson PROPN
( PUNCT
paulson@tab00.larc.nasa.gov PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
: PUNCT
Once ADV
again ADV
we PRON
are AUX
waiting VERB
. PUNCT
I PRON
have AUX
been AUX
thinking VERB
that SCONJ
it PRON
would AUX
be AUX
good ADJ
: PUNCT
to PART
get AUX
to ADP
as ADV
large ADJ
a DET
group NOUN
as SCONJ
possible ADJ
to PART
see VERB
if SCONJ
anyone PRON
has AUX
any DET
: PUNCT
experience NOUN
with ADP
this DET
kind NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
members NOUN
of ADP
the DET
medical ADJ
: PUNCT
community NOUN
are AUX
sometimes ADV
loathe VERB
to PART
admit VERB
the DET
importance NOUN
that PRON
diet NOUN
and CCONJ
: PUNCT
foods NOUN
play VERB
in ADP
our PRON
general ADJ
health NOUN
and CCONJ
well NOUN
- PUNCT
being NOUN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
as SCONJ
you PRON
can AUX
: PUNCT
guess VERB
, PUNCT
I PRON
am AUX
worried ADJ
sick ADJ
about ADP
this DET
, PUNCT
and CCONJ
would AUX
appreciate VERB
any DET
ideas NOUN
: PUNCT
anyone PRON
out ADV
there PRON
has AUX
. PUNCT
  SPACE
Sorry ADJ
to PART
be AUX
so ADV
wordy ADJ
but CCONJ
I PRON
wanted VERB
to PART
really ADV
get AUX
: PUNCT
across ADP
what PRON
is AUX
going VERB
on ADP
here ADV
. PUNCT
: PUNCT
: PUNCT
I PRON
do AUX
n't PART
know VERB
anything PRON
specifically ADV
, PUNCT
but CCONJ
I PRON
have AUX
one NUM
further ADJ
anecdote NOUN
. PUNCT
Acolleague NOUN
of ADP
mine NOUN
had AUX
a DET
child NOUN
with ADP
a DET
serious ADJ
congenital ADJ
disease NOUN
, PUNCT
tuberoussclerosis NOUN
. PUNCT
Along ADP
with ADP
mental ADJ
retardation NOUN
comes VERB
a DET
serious ADJ
seizure NOUN
disorder NOUN
. PUNCT
The DET
parents NOUN
noticed VERB
that SCONJ
one NUM
thing NOUN
that PRON
would AUX
precipitate VERB
a DET
seizure NOUN
wasa PROPN
meal NOUN
with ADP
corn NOUN
in ADP
it PRON
. PUNCT
I PRON
have AUX
always ADV
wondered VERB
about ADP
the DET
connection NOUN
, PUNCT
andfurther NOUN
about ADP
other ADJ
dietary ADJ
ingredients NOUN
that PRON
might AUX
precipitate VERB
seizures NOUN
. PUNCT
Other ADJ
experiences NOUN
would AUX
be AUX
interesting ADJ
to PART
hear VERB
about ADP
from ADP
netters.--David ADJ
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Healthdozonoff@med-itvax1.bu.edu PROPN
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C(617 PROPN
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58946From NUM
: PUNCT
ruegg@med.unc.edu PROPN
( PUNCT
Robert PROPN
G. PROPN
Ruegg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EugenicsSubject VERB
: PUNCT
Re ADP
: PUNCT
Eugenics(Gordon PROPN
Banks NOUN
) PUNCT
writes:/;Probably CCONJ
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
; PUNCT
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
will AUX
; PUNCT
then ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
genetic;engineering PROPN
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want.;No VERB
breeding VERB
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
should;we PROPN
? PUNCT
Two NUM
past ADJ
problems NOUN
with ADP
eugenics NOUN
have AUX
been AUX
1 NUM
) PUNCT
reducing VERB
the DET
gene NOUN
pool NOUN
and CCONJ
2 X
) PUNCT
defining VERB
the DET
status NOUN
of ADP
the DET
eugenized NOUN
. PUNCT
Inserting VERB
genes NOUN
would AUX
not PART
seem VERB
to PART
reduce VERB
the DET
gene NOUN
pool NOUN
unless SCONJ
the DET
insertedgenes NOUN
later ADV
became VERB
transmissible ADJ
to ADP
progeny NOUN
. PUNCT
Then ADV
they PRON
may AUX
be AUX
able ADJ
tocrowd NOUN
out ADP
" PUNCT
garbage NOUN
genes NOUN
. PUNCT
" PUNCT
This DET
may AUX
in ADP
the DET
future NOUN
become VERB
possible ADJ
. PUNCT
Even ADV
ifit NOUN
does AUX
, PUNCT
awareness NOUN
of ADP
the DET
need NOUN
to PART
maintain VERB
the DET
gene NOUN
pool NOUN
would AUX
hopefullymean VERB
provisions NOUN
will AUX
be AUX
made VERB
for ADP
saving VERB
genes NOUN
that PRON
may AUX
come VERB
in ADP
handylater NOUN
. PUNCT
Evidently ADV
the DET
genes NOUN
for ADP
sickle ADJ
cell NOUN
disease NOUN
in ADP
equatorial ADJ
Africaand PROPN
for ADP
diabetes NOUN
in ADP
the DET
Hopi PROPN
* PUNCT
promoted VERB
* PUNCT
survival NOUN
in ADP
some DET
conditions NOUN
. PUNCT
Wedon't NOUN
really ADV
know VERB
what PRON
the DET
future NOUN
may AUX
hold VERB
for ADP
our PRON
environment NOUN
. PUNCT
Thereduced ADJ
wilderness- NOUN
and CCONJ
disease NOUN
- PUNCT
survival NOUN
capacity NOUN
of ADP
our PRON
relatively ADV
inbreddomesticated ADJ
animals NOUN
comes VERB
to ADP
mind NOUN
. PUNCT
Vulcanism NOUN
, PUNCT
nuclear ADJ
winter NOUN
, PUNCT
ice NOUN
age NOUN
, PUNCT
meteor ADV
impact NOUN
, PUNCT
new ADJ
microbiological ADJ
threats NOUN
, PUNCT
famine NOUN
, PUNCT
global ADJ
warming NOUN
, PUNCT
etc X
. PUNCT
,etc X
. PROPN
, PUNCT
are AUX
all ADV
conceivable ADJ
. PUNCT
Therefore ADV
, PUNCT
having VERB
as ADV
many ADJ
genes NOUN
as SCONJ
possibleavailable ADJ
is AUX
a DET
good ADJ
strategy NOUN
for ADP
species PROPN
survival NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
status NOUN
of ADP
genetically ADV
altered VERB
individuals NOUN
would AUX
start VERB
outas NOUN
no ADV
different ADJ
than SCONJ
anyone PRON
else ADV
's PART
. PUNCT
But CCONJ
if SCONJ
we PRON
could AUX
make"philosopher NOUN
- PUNCT
kings NOUN
" PUNCT
with ADP
great ADJ
bodies NOUN
and CCONJ
long ADJ
lives NOUN
, PUNCT
would AUX
we PRON
( PUNCT
or CCONJ
they)want VERB
to PART
give VERB
them PRON
elevated ADJ
status NOUN
? PUNCT
We PRON
could AUX
. PUNCT
The DET
Romans PROPN
did AUX
it PRON
with ADP
theirkings NOUN
* PUNCT
without ADP
* PUNCT
the DET
benefits NOUN
of ADP
such ADJ
eugenics NOUN
. PUNCT
The DET
race NOUN
eventuallyrealized VERB
and CCONJ
dealt VERB
with ADP
the DET
problems NOUN
which PRON
that PRON
caused VERB
, PUNCT
but CCONJ
for ADP
a DET
while NOUN
, PUNCT
it PRON
was AUX
a DET
problem NOUN
. PUNCT
Orwell PROPN
introduced VERB
us PRON
to ADP
the DET
notion NOUN
of ADP
what PRON
might AUX
happento PROPN
persons NOUN
genetically ADV
altered VERB
for ADP
more ADJ
menial ADJ
tasks NOUN
. PUNCT
But CCONJ
there PRON
is AUX
nothingnew VERB
under ADP
the DET
sun NOUN
. PUNCT
We PRON
treated VERB
slaves NOUN
the DET
same ADJ
way NOUN
for ADP
millennia PROPN
before"1984 PROPN
. PUNCT
" PUNCT
    SPACE
I PRON
see VERB
no DET
inherent ADJ
problem NOUN
with ADP
gene NOUN
therapy NOUN
which PRON
avoids VERB
at ADP
least ADJ
these DET
2problems NUM
. PUNCT
Humans NOUN
have AUX
always ADV
had VERB
trouble NOUN
having VERB
the DET
virtue NOUN
and CCONJ
wisdom NOUN
touse NOUN
any DET
power NOUN
that PRON
falls VERB
into ADP
their PRON
hands NOUN
to ADP
good ADJ
ends NOUN
all DET
the DET
time NOUN
. PUNCT
Thathasn't PROPN
stopped VERB
the DET
race NOUN
as SCONJ
a DET
whole NOUN
yet ADV
. PUNCT
Many ADJ
are AUX
the DET
civilizations NOUN
whichhave NOUN
died VERB
from ADP
inability NOUN
to PART
adapt VERB
to ADP
environmental ADJ
change NOUN
. PUNCT
However ADV
, PUNCT
alsomany PRON
are AUX
the DET
civilizations NOUN
which PRON
have AUX
died VERB
from ADP
the DET
abuse NOUN
of ADP
their PRON
ownpower NOUN
. PUNCT
The DET
ones NOUN
which PRON
survived VERB
have AUX
hopefully ADV
learned VERB
a DET
lesson NOUN
from ADP
thefates NOUN
of ADP
others NOUN
, PUNCT
and CCONJ
have AUX
survived VERB
by ADP
making VERB
better ADJ
choices NOUN
when ADV
theirturns NOUN
came VERB
. PUNCT
Not PART
that SCONJ
I PRON
do AUX
n't PART
think VERB
that SCONJ
this DET
gene NOUN
altering VERB
power NOUN
could AUX
n't PART
wipe VERB
us PRON
offthe DET
face NOUN
of ADP
the DET
earth NOUN
or CCONJ
cause VERB
endless ADJ
suffering NOUN
. PUNCT
Nuclear ADJ
power NOUN
or CCONJ
globalwarming NOUN
or CCONJ
whatever PRON
could AUX
and CCONJ
may AUX
still ADV
do AUX
that DET
, PUNCT
too ADV
. PUNCT
  SPACE
The DET
real ADJ
issue NOUN
is AUX
an DET
issue NOUN
of ADP
wisdom NOUN
and CCONJ
virtue NOUN
. PUNCT
I PRON
personally ADV
do AUX
n't PART
thinkman VERB
has AUX
enough ADJ
wisdom NOUN
and CCONJ
virtue NOUN
to PART
pull VERB
this DET
next ADJ
challenge NOUN
off ADP
anybetter NOUN
than SCONJ
he PRON
did AUX
the DET
for ADP
last ADJ
few ADJ
. PUNCT
We PRON
, PUNCT
as SCONJ
eugenists NOUN
, PUNCT
may AUX
make VERB
it PRON
, PUNCT
an DET
wemay NOUN
not PART
. PUNCT
If SCONJ
we PRON
do AUX
n't PART
, PUNCT
I PRON
hope VERB
there PRON
are AUX
reservoirs NOUN
of ADP
" PUNCT
garbage NOUN
" PUNCT
people NOUN
outin VERB
some DET
backwater NOUN
with ADP
otherwise ADV
long ADV
discarded VERB
" PUNCT
garbage NOUN
" PUNCT
genes NOUN
which PRON
willpull VERB
us PRON
through ADP
. PUNCT
  SPACE
I PRON
believe VERB
that SCONJ
the DET
real ADJ
problem NOUN
is AUX
and CCONJ
will AUX
probably ADV
always ADV
be AUX
the DET
same ADJ
. PUNCT
Man NOUN
needs VERB
to PART
accept VERB
input NOUN
from ADP
the DET
great ADJ
spirit NOUN
of ADP
God PROPN
to PART
overcome VERB
hislacks NOUN
in ADP
the DET
area NOUN
of ADP
knowing VERB
how ADV
to PART
use VERB
the DET
power NOUN
he PRON
has AUX
. PUNCT
Some DET
men NOUN
have AUX
, PUNCT
and CCONJ
I PRON
believe VERB
all DET
men NOUN
may AUX
, PUNCT
listen VERB
to ADP
and CCONJ
obey VERB
the DET
still ADV
small ADJ
voice NOUN
of ADP
Godin PROPN
their PRON
hearts NOUN
. PUNCT
This DET
is AUX
the DET
way NOUN
to PART
begin VERB
to PART
recieve VERB
the DET
wisdom NOUN
and CCONJ
virtueneeded VERB
to PART
escape VERB
the DET
problems NOUN
consequent ADJ
to ADP
poor ADJ
choices NOUN
. PUNCT
Peoples NOUN
havedied VERB
out ADP
for ADP
many ADJ
reasons NOUN
. PUNCT
The DET
societies NOUN
which PRON
failed VERB
to PART
accept VERB
enoughinput NOUN
from ADP
God PROPN
to PART
safely ADV
use VERB
the DET
power NOUN
they PRON
had AUX
developed VERB
have AUX
destroyedthemselves NOUN
, PUNCT
and CCONJ
often ADV
others NOUN
in ADP
the DET
process NOUN
. PUNCT
It PRON
is AUX
self NOUN
- PUNCT
evident ADJ
that PRON
theones NOUN
which PRON
survive VERB
today NOUN
have AUX
either CCONJ
accepted VERB
enough ADJ
input NOUN
from ADP
the DET
Spiritto PROPN
use VERB
their PRON
powers NOUN
wisely ADV
enough ADV
to PART
avoid VERB
or CCONJ
survive VERB
their PRON
own ADJ
mistakesthus NOUN
far ADV
, PUNCT
or CCONJ
else ADV
have AUX
n't PART
had VERB
enough ADJ
power NOUN
for ADP
long ADJ
enough ADV
. PUNCT
  SPACE
In ADP
summary NOUN
, PUNCT
I PRON
would AUX
say VERB
that SCONJ
the DET
question NOUN
of ADP
whether SCONJ
to PART
use VERB
this DET
newtechnology NOUN
is AUX
really ADV
an DET
ancient ADJ
one NOUN
. PUNCT
And CCONJ
the DET
answer NOUN
, PUNCT
in ADP
some DET
ways NOUN
hard ADV
, PUNCT
insome ADJ
ways NOUN
easy ADV
, PUNCT
is AUX
the DET
same ADJ
ancient ADJ
answer NOUN
. PUNCT
It PRON
is AUX
n't PART
the DET
power NOUN
, PUNCT
it PRON
is AUX
theSpirit PROPN
. PUNCT
Sorry ADJ
for ADP
the DET
long ADJ
post NOUN
. PUNCT
Got PROPN
carried VERB
away ADV
. PUNCT
Bob PROPN
( PUNCT
ruegg@med.unc.edu)Newsgroup INTJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58947From NUM
: PUNCT
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
  SPACE
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
ls8lnvINNrtb@saltillo.cs.utexas.edu NOUN
> X
turpin@cs.utexas.edu PROPN
     SPACE
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes VERB
: PUNCT
> X
            SPACE
... PUNCT
> X
* PUNCT
not PART
* PUNCT
imply VERB
that SCONJ
all DET
their PRON
treatments NOUN
are AUX
ineffective ADJ
. PUNCT
  SPACE
It PRON
* PUNCT
does*>imply ADV
that SCONJ
those DET
who PRON
rely VERB
on ADP
faulty ADJ
methodology NOUN
and CCONJ
reasoning NOUN
are AUX
> X
incapable ADJ
of ADP
discovering VERB
* PUNCT
which PRON
* PUNCT
treatments NOUN
are AUX
effective ADJ
and CCONJ
> X
which PRON
are AUX
not.)To VERB
start VERB
with ADP
, PUNCT
no DET
methodology NOUN
or CCONJ
form NOUN
of ADP
reasoning NOUN
is AUX
infallible ADJ
. PUNCT
  SPACE
Sothere PROPN
's AUX
a DET
question NOUN
of ADP
how ADV
much ADJ
certainty NOUN
we PRON
are AUX
willing ADJ
to PART
pay VERB
for ADP
in ADP
agiven PROPN
context NOUN
. PUNCT
  SPACE
Insistence NOUN
on ADP
too ADV
much ADJ
rigor NOUN
bogs NOUN
science NOUN
down ADP
completelyand NOUN
makes VERB
progress NOUN
impossible ADJ
. PUNCT
  SPACE
( PUNCT
Expenditure NOUN
of ADP
sufficiently ADV
large ADJ
sumsof NOUN
money NOUN
and CCONJ
amounts NOUN
of ADP
time NOUN
can AUX
sometimes ADV
overcome VERB
this DET
. PUNCT
) PUNCT
  SPACE
On ADP
the DET
otherhand NOUN
, PUNCT
with ADP
too ADV
little ADJ
rigor NOUN
much ADV
is AUX
lost VERB
by ADP
basing VERB
work NOUN
on ADP
results NOUN
whicheventually ADV
turn VERB
out ADP
to PART
be AUX
false ADJ
. PUNCT
  SPACE
There PRON
is AUX
a DET
morass NOUN
of ADP
studiescontradicting VERB
other ADJ
studies NOUN
and CCONJ
outsiders NOUN
start VERB
saying VERB
  SPACE
" PUNCT
You PRON
people NOUN
callTHIS PUNCT
science NOUN
? PUNCT
" PUNCT
   SPACE
( PUNCT
My PRON
opinion NOUN
, PUNCT
for ADP
what PRON
it PRON
's AUX
worth ADJ
, PUNCT
is AUX
that SCONJ
one PRON
sees VERB
boththese ADJ
phenomena NOUN
happening VERB
simultaneously ADV
in ADP
some DET
parts NOUN
of ADP
psychology NOUN
. PUNCT
) PUNCT
  SPACE
Some DET
subjective ADJ
judgement NOUN
is AUX
required VERB
to PART
decide VERB
on ADP
the DET
level NOUN
of ADP
rigorappropriate NOUN
for ADP
a DET
particular ADJ
investigation NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
it PRON
is AUX
ever ADV
possible ADJ
to PART
banish VERB
subjective ADJ
judgement NOUN
from ADP
science NOUN
. PUNCT
  SPACE
My PRON
second ADJ
point NOUN
, PUNCT
though ADV
, PUNCT
is AUX
that DET
highly ADV
capable ADJ
people NOUN
can AUX
often ADV
makeextremely ADV
reliable ADJ
judgements NOUN
about ADP
scientific ADJ
validity NOUN
even ADV
when ADV
usingmethodology NOUN
considered VERB
inadequate ADJ
by ADP
the DET
usual ADJ
standards NOUN
. PUNCT
  SPACE
I PRON
think VERB
thisis NOUN
true ADJ
of ADP
many ADJ
scientists NOUN
and CCONJ
I PRON
think VERB
it PRON
is AUX
true ADJ
of ADP
many ADJ
who PRON
approachtheir VERB
discipline NOUN
in ADP
a DET
way NOUN
that PRON
is AUX
not PART
generally ADV
recognized VERB
as SCONJ
scientific ADJ
. PUNCT
Within ADP
mathematics NOUN
, PUNCT
I PRON
think VERB
there PRON
are AUX
several ADJ
examples NOUN
, PUNCT
especially ADV
beforethe PROPN
twentieth ADJ
century NOUN
. PUNCT
  SPACE
One NUM
conspicuous ADJ
case NOUN
is AUX
that DET
of ADP
Riemann PROPN
, PUNCT
who PRON
isfamous ADJ
for ADP
many ADJ
theorems NOUN
he PRON
stated VERB
but CCONJ
did AUX
not PART
prove VERB
. PUNCT
  SPACE
( PUNCT
Later ADV
mathematicians NOUN
did AUX
prove VERB
them PRON
, PUNCT
of ADP
course NOUN
. PUNCT
) PUNCT
  SPACE
I PRON
think VERB
that SCONJ
for ADP
a DET
good ADJ
scientist NOUN
, PUNCT
empirical ADJ
investigation NOUN
is AUX
often ADV
notso VERB
much ADV
a DET
matter NOUN
of ADP
determining VERB
what PRON
is AUX
true ADJ
and CCONJ
what PRON
's AUX
not PART
  SPACE
as SCONJ
it PRON
is AUX
a DET
matter NOUN
of ADP
convincing VERB
other ADJ
people NOUN
. PUNCT
  SPACE
( PUNCT
People NOUN
have AUX
proposed VERB
lots NOUN
of ADP
incompatible ADJ
definitions NOUN
of ADP
science NOUN
here ADV
, PUNCT
but CCONJ
I PRON
think VERB
the DET
ability NOUN
to PART
objectively ADV
convince VERB
others NOUN
of ADP
the DET
validity NOUN
of ADP
one NOUN
's PART
results NOUN
is AUX
anessential ADJ
element NOUN
. PUNCT
  SPACE
Not PART
that SCONJ
one PRON
can AUX
necessarily ADV
do AUX
that DET
at ADP
every DET
step NOUN
of ADP
the DET
scientific ADJ
process NOUN
, PUNCT
but CCONJ
I PRON
think VERB
that SCONJ
if SCONJ
one NUM
is AUX
not PART
moving VERB
toward ADP
that DET
goal NOUN
then ADV
one NUM
is AUX
not PART
doing VERB
science.)When PROPN
a DET
person NOUN
other ADJ
than SCONJ
a DET
scientist NOUN
is AUX
quite ADV
good ADJ
at ADP
what PRON
he PRON
does AUX
andseems NOUN
to PART
be AUX
very ADV
successful ADJ
at ADP
it PRON
, PUNCT
I PRON
think VERB
that SCONJ
his PRON
judgements NOUN
are AUX
alsoworthy ADJ
of ADP
respect NOUN
and CCONJ
that SCONJ
his PRON
assertions NOUN
are AUX
well ADV
worth ADJ
furtherinvestigation NOUN
. PUNCT
  SPACE
In ADP
article NOUN
< X
C53By5.HD@news PROPN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
I PRON
wrote VERB
: PUNCT
> X
Namely ADV
, PUNCT
is AUX
there PRON
really ADV
justification NOUN
for ADP
the DET
belief NOUN
that SCONJ
> X
science PROPN
is AUX
a DET
superior ADJ
path NOUN
to ADP
truth NOUN
than SCONJ
non ADJ
- ADJ
scientific ADJ
approaches NOUN
? PUNCT
  SPACE
Admittedly ADV
, PUNCT
my PRON
question NOUN
was AUX
not PART
at ADV
all ADV
well ADV
posed VERB
. PUNCT
  SPACE
A DET
considerableamount NOUN
of ADP
effort NOUN
in ADP
a DET
" PUNCT
serious ADJ
scholarly ADJ
investigation NOUN
" PUNCT
such ADJ
as SCONJ
Isuggested PROPN
would AUX
be AUX
required VERB
simply ADV
to PART
formulate VERB
an DET
appropriately ADV
specific ADJ
question NOUN
to PART
try VERB
and CCONJ
answer VERB
. PUNCT
  SPACE
The DET
" PUNCT
science NOUN
" PUNCT
I PRON
was AUX
thinking VERB
of ADP
in ADP
my PRON
question NOUN
is AUX
the DET
actual ADJ
science NOUN
currently ADV
practiced VERB
now ADV
in ADP
the DET
last ADJ
decade NOUN
of ADP
the DET
twentieth ADJ
century NOUN
. PUNCT
  SPACE
I PRON
certainly ADV
was AUX
n't PART
thinking VERB
of ADP
some DET
idealized VERB
science NOUN
or CCONJ
the DET
mere ADJ
use NOUN
of ADP
" PUNCT
reason NOUN
and CCONJ
observation NOUN
. PUNCT
"One PUNCT
thing NOUN
I PRON
had AUX
in ADP
mind NOUN
in ADP
my PRON
suggestion NOUN
was AUX
the DET
question NOUN
as SCONJ
to PART
whetherin VERB
many ADJ
cases NOUN
the DET
subjective ADJ
judgements NOUN
of ADP
skilled ADJ
and CCONJ
experiencedpractitioners NOUN
might AUX
be AUX
more ADV
reliable ADJ
than SCONJ
statistical ADJ
studies NOUN
. PUNCT
  SPACE
Since SCONJ
Russell PROPN
Turpin PROPN
seems VERB
to PART
be AUX
much ADV
more ADV
familiar ADJ
than SCONJ
I PRON
am AUX
withthe DET
study NOUN
of ADP
scientific ADJ
methodology NOUN
, PUNCT
perhaps ADV
he PRON
can AUX
tell VERB
us PRON
if SCONJ
there PRON
is AUX
any DET
existing VERB
research NOUN
related VERB
to ADP
this DET
question NOUN
. PUNCT
  SPACE
--In PUNCT
the DET
arguments NOUN
between ADP
behaviorists NOUN
and CCONJ
cognitivists NOUN
, PUNCT
psychology NOUN
seems VERB
less ADV
like SCONJ
a DET
science NOUN
than SCONJ
a DET
collection NOUN
of ADP
competing VERB
religious ADJ
sects NOUN
. PUNCT
   SPACE
lady@uhunix.uhcc.hawaii.edu PROPN
         SPACE
lady@uhunix.bitnetNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58948From NUM
: PUNCT
ruegg@med.unc.edu NOUN
( PUNCT
Robert PROPN
G. PROPN
Ruegg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EugenicsThanks PROPN
to PART
Tarl PROPN
Neustaedter PROPN
of ADP
MA PROPN
for ADP
kindly ADV
letting VERB
me PRON
know VERB
that SCONJ
myreference NOUN
in ADP
prior ADJ
post NOUN
to ADP
Orwell NOUN
and CCONJ
" PUNCT
1984 NUM
" PUNCT
should AUX
probably ADV
have AUX
been AUX
toHuxley NOUN
and CCONJ
" PUNCT
Brave PROPN
New PROPN
World PROPN
. PUNCT
" PUNCT
Sorry INTJ
, PUNCT
Al PROPN
. PUNCT
Bob PROPN
( PUNCT
ruegg@med.unc.edu)Newsgroup INTJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58949From NUM
: PUNCT
marcbg@feenix.metronet.com X
( PUNCT
Marc PROPN
Grant)Subject NUM
: PUNCT
Adult PROPN
Chicken PROPN
PoxI PROPN
am AUX
35 NUM
and CCONJ
am AUX
recovering VERB
from ADP
a DET
case NOUN
of ADP
Chicken PROPN
Pox PROPN
which PRON
I PRON
contractedfrom VERB
my PRON
5 NUM
year NOUN
old ADJ
daughter NOUN
. PUNCT
  SPACE
I PRON
have AUX
quite ADV
a DET
few ADJ
of ADP
these DET
little ADJ
puppiesall NOUN
over ADP
my PRON
bod NOUN
. PUNCT
  SPACE
At ADP
what PRON
point NOUN
am AUX
I PRON
no ADV
longer ADV
infectious ADJ
? PUNCT
  SPACE
My PRON
physician'soffice NOUN
says VERB
when ADV
they PRON
are AUX
all DET
scabbed VERB
over ADV
. PUNCT
  SPACE
Is AUX
this DET
true?Is PROPN
there PRON
any DET
medications NOUN
which PRON
can AUX
promote VERB
healing NOUN
of ADP
the DET
pox NOUN
? PUNCT
  SPACE
Speed NOUN
uphealing VERB
? PUNCT
  SPACE
Please INTJ
e NOUN
- NOUN
mail NOUN
replies NOUN
, PUNCT
and CCONJ
thanks NOUN
in ADP
advance.-- PROPN
|Marc PROPN
Grant PROPN
          SPACE
| PROPN
Internet PROPN
: PUNCT
marcbg@feenix.metronet.com X
||POB PROPN
850472 NUM
          SPACE
| PROPN
Amateur PROPN
Radio PROPN
Station PROPN
N5MEI PROPN
          SPACE
||Richardson NOUN
, PUNCT
TX PROPN
75085| PROPN
Voice PROPN
/ SYM
Fax PROPN
: PUNCT
214 NUM
- SYM
231 NUM
- PUNCT
3998 NUM
              SPACE
| PROPN
    SPACE
- PUNCT
.... PUNCT
.- PUNCT
- PUNCT
... PUNCT
  SPACE
.- PUNCT
.- PUNCT
.. PUNCT
.- PUNCT
.. PUNCT
    SPACE
.. PUNCT
- PUNCT
. PUNCT
--- PUNCT
.- PUNCT
.. PUNCT
-.- PUNCT
... PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58950From NUM
: PUNCT
< X
U19250@uicvm.uic.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Foreskin PROPN
TroublesThis PROPN
is AUX
generally ADV
called VERB
phimosis NOUN
.. PUNCT
usually ADV
it PRON
is AUX
due ADJ
to ADP
an DET
inflammation NOUN
, PUNCT
and CCONJ
can AUX
be AUX
retracted VERB
in ADP
the DET
physician NOUN
's PART
offfice NOUN
rather ADV
eaaasily ADV
. PUNCT
  SPACE
One PRON
should AUX
see VERB
a DET
GP PROPN
, PUNCT
or CCONJ
in ADP
complicated ADJ
cases NOUN
, PUNCT
a DET
urologist NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58951From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
Re ADP
: PUNCT
Selective ADJ
Placebo PROPN
  SPACE
Ron PROPN
Roth PROPN
recommends VERB
: PUNCT
" PUNCT
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED ADV
through ADP
the DET
                         SPACE
proper ADJ
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
ther NOUN
following VERB
: PUNCT
... PUNCT
" PUNCT
                        SPACE
[ PUNCT
diet PROPN
omitted]1 PROPN
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
this DET
sounds VERB
suspiciouslylike ADP
a DET
blood NOUN
chemistry NOUN
... PUNCT
glucose NOUN
tolerance NOUN
and CCONJ
the DET
like ADJ
... PUNCT
suddenly ADV
chemistry NOUN
exists VERB
? PUNCT
You PRON
know VERB
perfectly ADV
well ADV
that SCONJ
this DET
person NOUN
can AUX
be AUX
saved VERB
needless ADJ
trouble NOUN
and CCONJ
expense NOUN
with ADP
simple ADJ
muscle NOUN
testing NOUN
and CCONJ
hair NOUN
analysis NOUN
to PART
diagnose VERB
... PUNCT
no"CONFIRM PUNCT
" PUNCT
any DET
aberrant ADJ
physiology NOUN
... PUNCT
but CCONJ
then ADV
again ADV
... PUNCT
maybe ADV
that DET
's AUX
what PRON
you PRON
meantby VERB
" PUNCT
proper ADJ
channels NOUN
. PUNCT
"2 PUNCT
) PUNCT
Were AUX
you PRON
able ADJ
to PART
understand VERB
Dick PROPN
King PROPN
's PART
post NOUN
that SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
is AUX
not PART
thesame ADJ
thing NOUN
as SCONJ
90 NUM
% NOUN
of ADP
patients NOUN
" PUNCT
which PRON
was AUX
a DET
reply NOUN
to ADP
your PRON
inability NOUN
to PART
criticallyevaluate VERB
the DET
statistic NOUN
you PRON
cited VERB
from ADP
the DET
New PROPN
England PROPN
Journal PROPN
of ADP
Medicine PROPN
. PUNCT
Couldyou NOUN
figure VERB
out ADP
what PRON
is AUX
implied VERB
by ADP
the DET
remark NOUN
" PUNCT
Of ADP
course NOUN
MDs NOUN
are AUX
ethically ADV
bound VERB
to PART
not PART
knowingly ADV
dispense NOUN
placebos NOUN
... PUNCT
"?3 PUNCT
) PUNCT
Ron PROPN
... PUNCT
have AUX
you PRON
ever ADV
thought VERB
about ADP
why ADV
you PRON
never ADV
post VERB
in ADP
misc.health.alterna-tive...and PROPN
insist VERB
instead ADV
upon SCONJ
insinuating VERB
your PRON
untrained ADJ
, PUNCT
non ADJ
- ADJ
medical ADJ
, PUNCT
often ADV
delusional ADJ
notions NOUN
of ADP
health NOUN
and CCONJ
disease NOUN
into ADP
this DET
forum NOUN
? PUNCT
I PRON
suspect VERB
from ADP
yourapparent NOUN
anger NOUN
toward ADP
MDs NOUN
and CCONJ
heteropathic ADJ
medicine NOUN
that SCONJ
there PRON
may AUX
be AUX
anunderlying VERB
' PUNCT
father NOUN
problem' NOUN
... PUNCT
of ADP
course NOUN
I PRON
can AUX
CONFIRM VERB
this DET
by ADP
surrogate ADJ
muscletesting VERB
one NUM
of ADP
my PRON
patients NOUN
while SCONJ
they PRON
ponder VERB
my PRON
theory NOUN
to PART
see VERB
if SCONJ
one NUM
of ADP
their PRON
  SPACE
previously ADV
weak ADJ
' PUNCT
indicator NOUN
' PUNCT
muscles NOUN
strengthens VERB
... PUNCT
or CCONJ
do AUX
you PRON
have AUX
reservationsabout NOUN
my PRON
unique ADJ
methods NOUN
of ADP
diagnosis NOUN
? PUNCT
Oh INTJ
.. PUNCT
I PRON
forgot VERB
what PRON
you PRON
said VERB
in ADP
an DET
earlierpost NOUN
.. PUNCT
"neither PRON
am AUX
I PRON
concerned ADJ
of ADP
whether SCONJ
or CCONJ
not PART
my PRON
study NOUN
designs NOUN
meet VERB
your PRON
oranyone NOUN
else ADV
's PART
criteria NOUN
of ADP
acceptance NOUN
. PUNCT
" PUNCT
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.edu PROPN
ideas NOUN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58952From NUM
: PUNCT
twong@civil.ubc.ca PROPN
( PUNCT
Thomas PROPN
Wong)Subject VERB
: PUNCT
Image NOUN
processing NOUN
software NOUN
for ADP
PCI PROPN
am AUX
posting VERB
the DET
following NOUN
for ADP
my PRON
brother NOUN
. PUNCT
Please INTJ
post VERB
your PRON
replies NOUN
orsend VERB
him PRON
email NOUN
to ADP
his PRON
address NOUN
at ADP
the DET
end NOUN
of ADP
his PRON
message NOUN
. PUNCT
Thank VERB
you.____________________________________________________________________My PROPN
supervisor NOUN
is AUX
looking VERB
for ADP
a DET
image NOUN
analysis NOUN
software NOUN
forMS PROPN
DOS PROPN
. PUNCT
We PRON
need VERB
something PRON
to PART
measure VERB
lengths NOUN
and CCONJ
areas NOUN
onmicrographs NOUN
. PUNCT
Sometime ADV
in ADP
the DET
future NOUN
, PUNCT
we PRON
may AUX
expand VERB
to PART
dosome VERB
densitometry NOUN
for ADP
gels NOUN
, PUNCT
etc X
. PUNCT
We PRON
've AUX
found VERB
lots NOUN
of ADP
ads NOUN
andinfo VERB
for ADP
the DET
Jandel PROPN
Scientific PROPN
products NOUN
: PUNCT
SigmaScan PROPN
and CCONJ
Java PROPN
. PUNCT
But CCONJ
we PRON
have AUX
not PART
been AUX
able ADJ
to PART
find VERB
any DET
competing VERB
products NOUN
. PUNCT
Wewould AUX
appreciate VERB
any DET
comments NOUN
on ADP
these DET
products NOUN
andsuggestions NOUN
/ SYM
comments NOUN
on ADP
other ADJ
products NOUN
we PRON
should AUX
consider VERB
. PUNCT
Thanks NOUN
. PUNCT
DonaldUserDONO@MTSG.UBC.CANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58953From NUM
: PUNCT
robin@ntmtv.com X
( PUNCT
Robin PROPN
Coutellier)Subject NUM
: PUNCT
Critique NOUN
of ADP
Pressure PROPN
Point PROPN
MassagerAs PROPN
promised VERB
, PUNCT
below ADV
is AUX
a DET
personal ADJ
critique NOUN
of ADP
a DET
Pressure PROPN
Point PROPN
Massager PROPN
I PRON
recently ADV
bought VERB
from ADP
the DET
Self PROPN
Care PROPN
Catalog PROPN
. PUNCT
  SPACE
I PRON
am AUX
very ADV
pleased ADJ
with ADP
the DET
results NOUN
. PUNCT
  SPACE
The DET
catalog NOUN
description NOUN
is AUX
as SCONJ
follows VERB
: PUNCT
	 SPACE
The DET
Pressure PROPN
Point PROPN
Massager PROPN
is AUX
an DET
aggressive ADJ
physical ADJ
massager NOUN
	 SPACE
that PRON
actually ADV
kneads VERB
the DET
tension NOUN
out SCONJ
of ADP
muscles NOUN
... PUNCT
much ADV
like SCONJ
a DET
	 SPACE
professional ADJ
shiatsu PROPN
masseur NOUN
. PUNCT
  SPACE
The DET
powerful ADJ
motor NOUN
drives VERB
two NUM
	 SPACE
counter NOUN
- ADJ
rotating VERB
" PUNCT
thumbs NOUN
" PUNCT
that PRON
move VERB
in ADP
one NUM
- PUNCT
inch NOUN
orbits NOUN
-- PUNCT
	 SPACE
releasing VERB
tension NOUN
in ADP
the DET
neck NOUN
, PUNCT
back ADV
, PUNCT
legs NOUN
and CCONJ
arms NOUN
. PUNCT
	 SPACE
Pressure PROPN
Point PROPN
Massager PROPN
    SPACE
A2623 PROPN
   SPACE
$ SYM
109To NUM
order NOUN
or CCONJ
receive VERB
a DET
catalog NOUN
, PUNCT
call NOUN
( PUNCT
24 NUM
hours NOUN
, PUNCT
7 NUM
days NOUN
) PUNCT
1 NUM
- NUM
800 NUM
- PUNCT
345 NUM
- PUNCT
3371 NUM
orfax NOUN
at ADP
1 NUM
- SYM
800 NUM
- PUNCT
345 NUM
- PUNCT
4021.********NOTE PROPN
: PUNCT
When ADV
I PRON
ordered VERB
the DET
massager NOUN
, PUNCT
the DET
item NOUN
number NOUN
was AUX
different ADJ
, PUNCT
and CCONJ
the DET
pricewas ADJ
$ SYM
179 NUM
, PUNCT
not PART
$ SYM
109 NUM
. PUNCT
  SPACE
When ADV
I PRON
received VERB
it PRON
, PUNCT
I PRON
glanced VERB
thru ADP
the DET
newer NOUN
catalogenclosed VERB
with ADP
it PRON
to PART
see VERB
anything PRON
was AUX
different ADJ
from ADP
the DET
first ADJ
one NUM
. PUNCT
  SPACE
I PRON
was AUX
  SPACE
QUITE PROPN
annoyed VERB
to PART
see VERB
a DET
$ SYM
70 NUM
difference NOUN
in ADP
price NOUN
. PUNCT
  SPACE
I PRON
called VERB
them PRON
about ADP
it PRON
, PUNCT
and CCONJ
the DET
cust NOUN
rep PROPN
said VERB
that SCONJ
they PRON
had AUX
switched VERB
manufacturers NOUN
, PUNCT
although SCONJ
itlooks NOUN
and CCONJ
works VERB
exactly ADV
the DET
same ADJ
. PUNCT
  SPACE
He PRON
told VERB
me PRON
to PART
go VERB
ahead ADV
and CCONJ
return VERB
thefirst PROPN
one NUM
and CCONJ
order VERB
the DET
cheaper ADJ
one NOUN
, PUNCT
using VERB
the DET
price NOUN
difference NOUN
as SCONJ
areason PROPN
for ADP
return NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
since SCONJ
the DET
newer ADJ
ones NOUN
might AUX
take VERB
a DET
while NOUN
toship NOUN
from ADP
the DET
factory NOUN
( PUNCT
I PRON
received VERB
this DET
one NUM
in ADP
3 NUM
days NOUN
) PUNCT
, PUNCT
he PRON
told VERB
me PRON
I PRON
could AUX
use VERB
the DET
one NOUN
I PRON
already ADV
have AUX
until ADP
the DET
new ADJ
one NOUN
arrives VERB
, PUNCT
then ADV
return VERB
the DET
old ADJ
one NUM
. PUNCT
  SPACE
VERY ADV
reasonable ADJ
people.********I NOUN
have AUX
long ADJ
- PUNCT
term NOUN
neck NOUN
, PUNCT
shoulder VERB
and CCONJ
back ADJ
pain NOUN
( PUNCT
if SCONJ
I PRON
were AUX
a DET
building NOUN
, PUNCT
I PRON
would AUX
be AUX
described VERB
as SCONJ
" PUNCT
structurally ADV
unsound ADJ
:-) PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
have AUX
stretches NOUN
and CCONJ
exercises NOUN
to PART
do AUX
that DET
help NOUN
, PUNCT
but CCONJ
the DET
problem NOUN
never ADV
really ADV
goes VERB
away ADV
. PUNCT
  SPACE
If SCONJ
, PUNCT
for ADP
whatever PRON
reason NOUN
, PUNCT
I PRON
do AUX
not PART
exercise VERB
for ADP
a DET
while NOUN
( PUNCT
illness NOUN
, PUNCT
not PART
enoughtime NOUN
, PUNCT
lazy ADJ
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
the DET
muscles NOUN
become VERB
quite ADV
stiff ADJ
and CCONJ
painful ADJ
and CCONJ
, PUNCT
thus ADV
, PUNCT
more ADV
prone ADJ
to ADP
further ADJ
strain VERB
. PUNCT
  SPACE
Even ADV
with ADP
exercise NOUN
, PUNCT
I PRON
sometimes ADV
require VERB
physical ADJ
therapy NOUN
to PART
get AUX
back ADV
on ADP
track NOUN
, PUNCT
which PRON
1st NOUN
requires VERB
a DET
doctor NOUN
visit NOUN
to PART
get AUX
the DET
prescription NOUN
for ADP
p.t PROPN
. PROPN
  SPACE
The DET
tension NOUN
in ADP
my PRON
neck NOUN
, PUNCT
if SCONJ
not PART
released VERB
, PUNCT
eventually ADV
causes VERB
a DET
headache(sometimes PROPN
confused VERB
with ADP
a DET
sinus NOUN
headache NOUN
) PUNCT
over ADP
my PRON
left ADJ
eye NOUN
. PUNCT
  SPACE
When ADV
my PRON
physical ADJ
therapist NOUN
has AUX
massaged VERB
my PRON
neck NOUN
, PUNCT
and CCONJ
the DET
sub ADJ
- ADJ
occipital ADJ
muscles NOUN
in ADP
particular ADJ
( PUNCT
the DET
2 NUM
knobby PROPN
areas NOUN
near SCONJ
the DET
base NOUN
of ADP
the DET
skull PROPN
) PUNCT
, PUNCT
the DET
headache NOUN
usually ADV
eased VERB
within ADP
a DET
day NOUN
, PUNCT
although SCONJ
it PRON
hurts VERB
like SCONJ
hell PROPN
to PART
while SCONJ
it PRON
is AUX
being AUX
massaged VERB
. PUNCT
I PRON
ordered VERB
this DET
device NOUN
because SCONJ
it PRON
seemed VERB
to PART
be AUX
exactly ADV
what PRON
I PRON
was AUX
wishingsomeone NOUN
would AUX
invent VERB
--a PROPN
machine NOUN
that PRON
would AUX
massage VERB
, PUNCT
NOT PROPN
VIBRATE PROPN
, PUNCT
my PRON
neck NOUN
and CCONJ
sub ADJ
- ADJ
occipital ADJ
muscles NOUN
like SCONJ
my PRON
physical ADJ
therapist NOUN
has AUX
done VERB
in ADP
the DET
past NOUN
, PUNCT
that SCONJ
I PRON
could AUX
use VERB
by ADP
myself PRON
. PUNCT
  SPACE
No DET
doctor NOUN
visit NOUN
or CCONJ
inconvenient ADJ
p.t PROPN
. PROPN
appts PROPN
for ADP
a DET
week NOUN
later ADV
would AUX
be AUX
needed VERB
to PART
use VERB
it PRON
. PUNCT
  SPACE
I PRON
could AUX
get AUX
up ADP
in ADP
the DET
middle NOUN
of ADP
the DET
night NOUN
and CCONJ
use VERB
it PRON
, PUNCT
if SCONJ
necessary ADJ
. PUNCT
I PRON
have AUX
been AUX
using VERB
it PRON
for ADP
about ADV
a DET
week NOUN
or CCONJ
so ADV
now ADV
, PUNCT
and CCONJ
LOVE VERB
it PRON
. PUNCT
  SPACE
The DET
baseunit NOUN
is AUX
about ADP
a DET
14 NUM
" PUNCT
x SYM
9 NUM
" PUNCT
rectangle NOUN
, PUNCT
about ADV
3 NUM
- PUNCT
3/4 NUM
" PUNCT
high ADJ
, PUNCT
with ADP
handles NOUN
on ADP
eachside NOUN
, PUNCT
and CCONJ
it PRON
plugs VERB
into ADP
an DET
average ADJ
outlet NOUN
. PUNCT
  SPACE
The DET
two NUM
metal NOUN
" PUNCT
thumbs NOUN
" PUNCT
are AUX
about ADV
1 NUM
- PUNCT
1/2 NUM
" PUNCT
in ADP
diameter NOUN
and CCONJ
protrude NOUN
about ADV
2 NUM
- PUNCT
1/2 NUM
" PUNCT
above ADP
the DET
base NOUN
. PUNCT
  SPACE
The DET
thumbs NOUN
are AUX
covered VERB
with ADP
a DET
gray ADJ
cloth NOUN
that PRON
is AUX
non ADJ
- ADJ
removable ADJ
. PUNCT
  SPACE
They PRON
are AUX
located VERB
more ADV
toward ADP
one NUM
end NOUN
, PUNCT
rather ADV
than SCONJ
centered VERB
( PUNCT
see VERB
figure NOUN
below ADV
) PUNCT
. PUNCT
  SPACE
They PRON
move VERB
in ADP
either DET
clockwise NOUN
or CCONJ
counter ADJ
- ADJ
clockwise ADJ
directions NOUN
, PUNCT
depending VERB
on ADP
which PRON
side NOUN
of ADP
the DET
switch NOUN
is AUX
pushed VERB
, PUNCT
and CCONJ
are AUX
very ADV
quiet ADJ
. PUNCT
  SPACE
It PRON
can AUX
be AUX
used VERB
from ADP
eitherside NOUN
. PUNCT
  SPACE
For ADP
instance NOUN
, PUNCT
the DET
thumbs NOUN
can AUX
be AUX
positioned VERB
at ADP
the DET
base NOUN
of ADP
the DET
neckor NOUN
the DET
top NOUN
of ADP
the DET
neck NOUN
, PUNCT
depending VERB
on ADP
which PRON
direction NOUN
you PRON
approach VERB
it PRON
. PUNCT
                 SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
                SPACE
| PROPN
  SPACE
_ PROPN
_ PROPN
    SPACE
_ VERB
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
    SPACE
_ VERB
_ PROPN
  SPACE
| ADP
                SPACE
| PROPN
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
		 SPACE
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| ADP
  SPACE
| ADP
  SPACE
\^^/ NUM
   SPACE
\^^/ NUM
  SPACE
| ADP
  SPACE
| ADP
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
   SPACE
|| PROPN
     SPACE
|| SYM
   SPACE
| PROPN
  SPACE
| ADP
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
		 SPACE
| PROPN
  SPACE
| PROPN
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
| PROPN
  SPACE
| NOUN
  SPACE
|_______________| PROPN
  SPACE
| NOUN
  SPACE
| PROPN
| PROPN
                SPACE
| PROPN
|__| PROPN
			    SPACE
|__| PROPN
| PROPN
                SPACE
|_______________________________|For PUNCT
the DET
neck NOUN
/ SYM
head NOUN
, PUNCT
the DET
user NOUN
varies VERB
the DET
amount NOUN
of ADP
pressure NOUN
used VERB
by ADP
( PUNCT
if SCONJ
laying VERB
down ADP
) PUNCT
allowing VERB
all DET
or CCONJ
part NOUN
of ADP
the DET
full ADJ
weight NOUN
of ADP
the DET
head NOUN
and/or CCONJ
neck NOUN
to PART
rest VERB
on ADP
the DET
thumbs NOUN
. PUNCT
  SPACE
The DET
handles NOUN
can AUX
also ADV
be AUX
used VERB
if SCONJ
sitting VERB
orstanding VERB
, PUNCT
applying VERB
pressure NOUN
with ADP
the DET
arms NOUN
/ SYM
wrists NOUN
. PUNCT
  SPACE
Since SCONJ
my PRON
wrists NOUN
arealso ADV
impaired VERB
( PUNCT
I PRON
'm AUX
typing VERB
this DET
over ADP
an DET
extended ADJ
period NOUN
of ADP
time NOUN
) PUNCT
, PUNCT
and CCONJ
I PRON
do AUX
n't PART
have AUX
someone PRON
living VERB
with ADP
me PRON
who PRON
can AUX
apply VERB
it PRON
, PUNCT
laying VERB
down ADP
works NOUN
well ADV
for ADP
me PRON
. PUNCT
For ADP
my PRON
back NOUN
, PUNCT
I PRON
sit VERB
in ADP
a DET
high ADV
- PUNCT
backed VERB
kitchen NOUN
chair NOUN
, PUNCT
position VERB
the DET
massagerbehind NOUN
me PRON
at ADP
whatever PRON
point NOUN
I PRON
want VERB
massaged VERB
, PUNCT
and CCONJ
lean VERB
back ADV
lightly ADV
( PUNCT
ornot ADV
so ADV
lightly ADV
) PUNCT
against ADP
it PRON
. PUNCT
  SPACE
The DET
pressure NOUN
of ADP
leaning VERB
back ADV
holds VERB
it PRON
in ADP
place NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
want VERB
to PART
massage VERB
the DET
entire ADJ
spine NOUN
, PUNCT
I PRON
simply ADV
move VERB
it PRON
down ADP
a DET
few ADJ
inches NOUN
whenever ADV
I PRON
feel VERB
like SCONJ
it PRON
. PUNCT
  SPACE
For ADP
my PRON
back NOUN
, PUNCT
this DET
machine NOUN
is AUX
far ADV
superior ADJ
to PART
use VERB
than SCONJ
the DET
commonly ADV
used VERB
" PUNCT
home NOUN
- PUNCT
made VERB
" PUNCT
massager NOUN
of ADP
2 NUM
tennis NOUN
balls NOUN
taped VERB
together ADV
( PUNCT
with ADP
the DET
balls NOUN
, PUNCT
position NOUN
( PUNCT
against ADP
a DET
wall NOUN
or CCONJ
door NOUN
) PUNCT
them PRON
over ADP
the DET
spine NOUN
and CCONJ
move VERB
the DET
body NOUN
up ADV
and CCONJ
down ADV
against ADP
them PRON
) PUNCT
. PUNCT
  SPACE
The DET
tennis NOUN
balls NOUN
are AUX
better ADJ
than SCONJ
nothing PRON
, PUNCT
but CCONJ
difficult ADJ
to PART
use VERB
for ADP
very ADV
long ADJ
, PUNCT
especially ADV
if SCONJ
your PRON
quads NOUN
are AUX
not PART
in ADP
good ADJ
shape NOUN
, PUNCT
and CCONJ
my PRON
long ADJ
hair NOUN
gets VERB
( PUNCT
painfully ADV
) PUNCT
in ADP
the DET
way NOUN
if SCONJ
I PRON
do AUX
n't PART
pin VERB
it PRON
up ADP
first ADV
. PUNCT
  SPACE
As ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
the DET
easier ADJ
something PRON
like SCONJ
this DET
is AUX
to PART
use VERB
, PUNCT
the DET
more ADV
likely ADJ
I PRON
'll AUX
use VERB
/ SYM
do AUX
it PRON
. PUNCT
  SPACE
If SCONJ
there PRON
are AUX
multiple ADJ
considerations NOUN
/ SYM
hassles NOUN
, PUNCT
I PRON
'm AUX
more ADV
likely ADJ
to PART
not PART
bother VERB
with ADP
it PRON
. PUNCT
Not PART
only ADV
has AUX
this DET
machine NOUN
helped VERB
with ADP
my PRON
headaches NOUN
, PUNCT
but CCONJ
my PRON
range NOUN
of ADP
motion NOUN
for ADP
my PRON
neck NOUN
and CCONJ
back NOUN
are AUX
greatly ADV
increased VERB
. PUNCT
  SPACE
The DET
first ADJ
time NOUN
I PRON
used VERB
it PRON
on ADP
myneck NOUN
/ SYM
sub ADJ
- ADJ
occipital ADJ
muscles NOUN
, PUNCT
however ADV
, PUNCT
I PRON
overdid VERB
it PRON
and CCONJ
pressed VERB
too ADV
hardagainst ADJ
it PRON
, PUNCT
which PRON
resulted VERB
in ADP
a DET
very ADV
tender ADJ
, PUNCT
almost ADV
bruised VERB
area NOUN
for ADP
afew ADJ
days NOUN
. PUNCT
  SPACE
I PRON
laid VERB
off ADP
it PRON
for ADP
about ADV
3 NUM
days NOUN
and CCONJ
applied VERB
ice NOUN
, PUNCT
which PRON
helped VERB
. PUNCT
  SPACE
After ADP
that DET
, PUNCT
I PRON
was AUX
more ADV
gradual ADJ
about ADP
applying VERB
pressure NOUN
. PUNCT
  SPACE
At ADP
this DET
point NOUN
, PUNCT
the DET
pain NOUN
in ADP
the DET
sub ADJ
- ADJ
occipital ADJ
area NOUN
is AUX
now ADV
minimal ADJ
while SCONJ
being AUX
massaged VERB
. PUNCT
  SPACE
I PRON
also ADV
learned VERB
to PART
use VERB
VERY ADJ
LIGHT NOUN
pressure NOUN
on ADP
my PRON
lower ADJ
back ADV
, PUNCT
which PRON
is AUX
the DET
most ADV
vulnerable ADJ
point NOUN
for ADP
me PRON
. PUNCT
It PRON
also ADV
eased VERB
some DET
painful ADJ
knots NOUN
of ADP
tension NOUN
between ADP
my PRON
shoulder NOUN
blades NOUN
, PUNCT
although SCONJ
, PUNCT
again ADV
, PUNCT
it PRON
took VERB
a DET
few ADJ
days NOUN
of ADP
massaging VERB
( PUNCT
just ADV
a DET
few ADJ
minutes NOUN
ata NOUN
time NOUN
) PUNCT
to PART
really ADV
work VERB
it PRON
out ADP
. PUNCT
I PRON
highly ADV
recommend VERB
this DET
product NOUN
if SCONJ
you PRON
have AUX
similar ADJ
problems NOUN
, PUNCT
although SCONJ
Icannot PROPN
vouch ADJ
for ADP
its PRON
durability NOUN
( PUNCT
it PRON
seems VERB
pretty ADV
sturdy ADJ
) PUNCT
, PUNCT
since SCONJ
I PRON
've AUX
hadit NOUN
such DET
a DET
short ADJ
time NOUN
. PUNCT
  SPACE
I PRON
plan VERB
to PART
use VERB
it PRON
not PART
only ADV
to PART
ease VERB
tension NOUN
, PUNCT
but CCONJ
also ADV
to PART
loosen VERB
the DET
muscls NOUN
BEFORE ADP
exercising VERB
( PUNCT
and CCONJ
maybe ADV
after ADV
, PUNCT
too ADV
) PUNCT
. PUNCT
  SPACE
I PRON
havebeen VERB
ill ADV
recently ADV
and CCONJ
not PART
able ADJ
to PART
exercise VERB
much ADJ
for ADP
a DET
few ADJ
weeks NOUN
, PUNCT
so CCONJ
this DET
was AUX
very ADV
timely ADJ
  SPACE
for ADP
me PRON
. PUNCT
This DET
is AUX
the DET
1st ADJ
product NOUN
I PRON
've AUX
ordered VERB
from ADP
this DET
company NOUN
and CCONJ
only ADV
recentlybecame NOUN
aware ADJ
of ADP
it PRON
thru ADP
a DET
co NOUN
- NOUN
worker NOUN
. PUNCT
  SPACE
The DET
catalog NOUN
states NOUN
they PRON
have AUX
beenin NOUN
business NOUN
since SCONJ
1976 NUM
. PUNCT
  SPACE
It PRON
contains VERB
quite DET
a DET
few ADJ
health NOUN
care NOUN
products NOUN
and CCONJ
, PUNCT
while SCONJ
they PRON
appear VERB
to PART
be AUX
more ADV
expensive ADJ
than SCONJ
the DET
average ADJ
health NOUN
care NOUN
catalogproducts NOUN
, PUNCT
they PRON
also ADV
appear VERB
to PART
be AUX
of ADP
much ADV
higher ADJ
quality NOUN
with ADP
more ADJ
thoughtput NOUN
into ADP
what PRON
they PRON
actually ADV
do AUX
. PUNCT
  SPACE
Definitely ADV
a DET
step NOUN
above ADP
some DET
other ADJ
onesI've NOUN
seen VERB
such ADJ
as SCONJ
" PUNCT
Dr. PROPN
Leonards PROPN
Health PROPN
Care PROPN
Catalog PROPN
" PUNCT
or CCONJ
" PUNCT
Mature PROPN
Wisdom" PROPN
. PUNCT
I'm PRON
only ADV
37 NUM
, PUNCT
but CCONJ
have AUX
ended VERB
up ADP
on ADP
some DET
geriatric NOUN
- PUNCT
type NOUN
mailing NOUN
lists NOUN
( PUNCT
nobig PROPN
surprise VERB
here ADV
:-) PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
consider VERB
many ADJ
of ADP
those DET
products NOUN
to PART
be AUX
rip NOUN
- PUNCT
offs NOUN
, PUNCT
particularly ADV
targeted VERB
toward ADP
the DET
elderly ADJ
, PUNCT
with ADP
dubious ADJ
health NOUN
benefits NOUN
. PUNCT
I PRON
apologize VERB
for ADP
the DET
length NOUN
of ADP
this DET
, PUNCT
but CCONJ
it PRON
's AUX
the DET
kind NOUN
of ADP
info NOUN
_ VERB
I PRON
_ VERB
would AUX
like VERB
to PART
know VERB
before ADP
ordering VERB
something PRON
thru ADP
the DET
mail NOUN
. PUNCT
Robin PROPN
Coutellier PROPN
                   SPACE
Northern PROPN
Telecom PROPN
, PUNCT
Mountain PROPN
View PROPN
, PUNCT
CAINTERNET VERB
: PUNCT
robin@ntmtv.comUUCP:portal!ntmtv!robinNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58954From NUM
: PUNCT
cash@convex.com X
( PUNCT
Peter PROPN
Cash)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
advice NOUN
with ADP
doctor NOUN
- PUNCT
patient NOUN
relationship NOUN
problemIn NOUN
article NOUN
< X
C5L9qB.4y5@athena.cs.uga.edu NOUN
> X
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
writes:>Sounds VERB
as SCONJ
though SCONJ
his PRON
heart NOUN
's PART
in ADP
the DET
right ADJ
place NOUN
, PUNCT
but CCONJ
he PRON
is AUX
not PART
adept ADJ
at ADP
> X
expressing VERB
it PRON
. PUNCT
  SPACE
What PRON
you PRON
received VERB
was AUX
_ PROPN
meant VERB
_ PROPN
to PART
be AUX
a DET
profound ADJ
apology.>Apologies NOUN
delivered VERB
by ADP
overworked ADJ
shy ADJ
people NOUN
often ADV
come VERB
out ADP
like SCONJ
that DET
... PUNCT
His PRON
_ NOUN
heart NOUN
_ VERB
? PUNCT
This DET
jerk NOUN
does AUX
n't PART
have AUX
a DET
heart NOUN
, PUNCT
and CCONJ
it PRON
beats VERB
me PRON
why ADV
you'reapologizing VERB
for ADP
him PRON
. PUNCT
In ADP
my PRON
book NOUN
, PUNCT
behavior NOUN
like SCONJ
this DET
is AUX
unprofessional ADJ
, PUNCT
inexcusable ADJ
, PUNCT
and CCONJ
beyond ADP
the DET
pale NOUN
. PUNCT
If SCONJ
he PRON
's AUX
overworked VERB
, PUNCT
it PRON
's AUX
because SCONJ
he PRON
's AUX
toobusy VERB
raking VERB
in ADP
the DET
bucks NOUN
. PUNCT
More ADV
likely ADJ
, PUNCT
he PRON
just ADV
likes VERB
to PART
push VERB
women NOUN
around ADV
. PUNCT
I'd NOUN
fire VERB
the DET
s.o.b PROPN
. PROPN
, PUNCT
and CCONJ
get AUX
myself PRON
another DET
doctor.-- PROPN
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PUNCT
             SPACE
| PROPN
      SPACE
Die PROPN
Welt PROPN
ist NOUN
alles NOUN
, PUNCT
was AUX
Zerfall PROPN
ist NOUN
. PUNCT
     SPACE
|Peter PROPN
Cash NOUN
   SPACE
| PROPN
       SPACE
( PUNCT
apologies NOUN
to ADP
Ludwig PROPN
Wittgenstein PROPN
) PUNCT
      SPACE
|cash@convex.com~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58955From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Placebo PROPN
effectsI PROPN
know VERB
that SCONJ
the DET
placebo NOUN
effect NOUN
is AUX
where ADV
a DET
patient NOUN
feels VERB
better ADV
or CCONJ
even ADV
gets VERB
better ADJ
because SCONJ
of ADP
his PRON
/ SYM
her PRON
belief NOUN
in ADP
the DET
medicine NOUN
and CCONJ
the DET
doctor NOUN
administering VERB
it PRON
. PUNCT
  SPACE
Is AUX
there PRON
also ADV
an DET
anti ADJ
- ADJ
placebo ADJ
effect NOUN
where ADV
the DET
patient NOUN
dislikes VERB
/ SYM
distrusts VERB
doctors NOUN
and CCONJ
medicine NOUN
and CCONJ
therefore ADV
does AUX
n't PART
get AUX
better ADJ
or CCONJ
feel VERB
better ADJ
in ADP
spite NOUN
of ADP
the DET
medicine?Is PROPN
there ADV
an DET
effect NOUN
where ADV
the DET
doctor NOUN
believes VERB
so ADV
strongly ADV
in ADP
a DET
medicine NOUN
that SCONJ
he PRON
/ SYM
she PRON
sees VERB
improvement NOUN
where ADV
the DET
is AUX
none NOUN
or CCONJ
sees VERB
more ADJ
improvement NOUN
than SCONJ
there PRON
is AUX
? PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
what PRON
is AUX
this DET
effect NOUN
called VERB
? PUNCT
  SPACE
Is AUX
there PRON
a DET
reverse NOUN
of ADP
the DET
above ADJ
effect NOUN
where ADV
the DET
doctor NOUN
does AUX
n't PART
believe VERB
in ADP
a DET
medicine NOUN
and CCONJ
then ADV
sees VERB
less ADJ
improvement NOUN
than SCONJ
there PRON
is AUX
? PUNCT
  SPACE
What PRON
would AUX
this DET
effect NOUN
be AUX
called VERB
? PUNCT
  SPACE
Have AUX
these DET
effects NOUN
ever ADV
been AUX
studied VERB
? PUNCT
  SPACE
How ADV
common ADJ
are AUX
these DET
effects NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
. PUNCT
... PUNCT
Information NOUN
is AUX
very ADV
valuable ADJ
but CCONJ
dis ADJ
- PUNCT
information NOUN
is AUX
MUCH ADV
more ADV
common ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58956From NUM
: PUNCT
GAnderson@Cmutual.com.au NOUN
  SPACE
( PUNCT
Gavin PROPN
Anderson)Subject NUM
: PUNCT
Help VERB
- PUNCT
Looking VERB
for ADP
a DET
Medical PROPN
Journal PROPN
Article PROPN
- PUNCT
Whiplash PROPN
/ SYM
Cervical PROPN
PainHi PROPN
, PUNCT
I PRON
am AUX
not PART
sure ADJ
where ADV
to PART
post VERB
this DET
message NOUN
, PUNCT
please INTJ
contact VERB
me PRON
if SCONJ
I PRON
'm AUX
way ADV
offthe NOUN
mark NOUN
. PUNCT
On ADP
19.3.93 PROPN
my PRON
wife NOUN
went VERB
to ADP
her PRON
General PROPN
Practitioner PROPN
( PUNCT
Doctor PROPN
) PUNCT
. PUNCT
He PRON
mentionedan NOUN
article NOUN
from ADP
a DET
medical ADJ
journal NOUN
that PRON
is AUX
of ADP
great ADJ
interest NOUN
to ADP
us PRON
. PUNCT
He PRON
hadread VERB
it PRON
in ADP
the DET
previous ADJ
three NUM
months NOUN
but CCONJ
has AUX
been AUX
unable ADJ
to PART
find VERB
it PRON
again ADV
. PUNCT
The DET
article NOUN
was AUX
about ADP
Whiplash PROPN
Injury PROPN
/ SYM
Cervical PROPN
Pain PROPN
. PUNCT
It PRON
mentions VERB
the DET
use NOUN
ofa NOUN
MRI PROPN
( PUNCT
Magnetic PROPN
Resonance PROPN
Imagery PROPN
) PUNCT
machine NOUN
as SCONJ
a DET
diagnostic ADJ
tool NOUN
and CCONJ
the DET
workof NOUN
a DET
neurosurgeon NOUN
who PRON
relived VERB
cervical ADJ
pain NOUN
. PUNCT
This DET
article NOUN
is AUX
most ADV
likely ADJ
in ADP
an DET
Australian ADJ
medical ADJ
journal NOUN
. PUNCT
I PRON
very ADV
muchwant ADJ
to PART
obtain VERB
the DET
name NOUN
of ADP
the DET
article NOUN
, PUNCT
journal NOUN
and CCONJ
author NOUN
because SCONJ
the DET
casematches NOUN
my PRON
wife NOUN
. PUNCT
We PRON
would AUX
very ADV
much ADV
appreciate VERB
anyone PRON
's PART
help NOUN
in ADP
this DET
mattervia NOUN
email NOUN
preferably.---------------------------------------------------------------------------Gavin PROPN
Anderson PROPN
                              SPACE
email NOUN
: PUNCT
GAnderson@cmutual.com.auAnalyst/Programmer PROPN
. PUNCT
                         SPACE
phone NOUN
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
607 NUM
- PUNCT
6299Colonial PROPN
Mutual PROPN
Life PROPN
Aust PROPN
. PUNCT
( PUNCT
ACN PROPN
004021809 NUM
) PUNCT
  SPACE
fax PROPN
  SPACE
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
283 NUM
- PUNCT
1095 NUM
- PUNCT
----------Some ADJ
people NOUN
never ADV
consciously ADV
discover VERB
their PRON
antipodes-------------------------------------------------------------------------------------Gavin PROPN
Anderson PROPN
                              SPACE
email NOUN
: PUNCT
GAnderson@cmutual.com.auAnalyst/Programmer PROPN
. PUNCT
                         SPACE
phone NOUN
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
607 NUM
- PUNCT
6299Colonial PROPN
Mutual PROPN
Life PROPN
Aust PROPN
. PUNCT
( PUNCT
ACN PROPN
004021809 NUM
) PUNCT
  SPACE
fax PROPN
  SPACE
: PUNCT
+61 PROPN
- PUNCT
3 NUM
- PUNCT
283 NUM
- PUNCT
1095 NUM
- PUNCT
--------------------------------------------------------------------------Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58957From NUM
: PUNCT
dhartung@chinet.chi.il.us PROPN
( PUNCT
Dan PROPN
Hartung)Subject NUM
: PUNCT
_ PROPN
The DET
Andromeda PROPN
Strain_Just PROPN
had AUX
the DET
opportunity NOUN
to PART
watch VERB
this DET
flick NOUN
on ADP
A&E PROPN
-- PUNCT
some DET
15 NUM
yearssince NOUN
I PRON
saw VERB
it PRON
last ADJ
. PUNCT
  SPACE
I PRON
was AUX
very ADV
interested ADJ
in ADP
the DET
technology NOUN
demonstrated VERB
in ADP
this DET
filmfor NOUN
handling VERB
infectious ADJ
diseases NOUN
( PUNCT
and CCONJ
similar ADJ
toxic ADJ
substances).Clearly ADV
they PRON
" PUNCT
faked VERB
" PUNCT
a DET
lot NOUN
of ADP
the DET
computer NOUN
& CCONJ
robotic PROPN
technology;certainly PROPN
at ADP
the DET
time NOUN
it PRON
was AUX
made VERB
most ADJ
of ADP
that DET
was AUX
science NOUN
fictionitself NOUN
, PUNCT
let VERB
alone ADV
the DET
idea NOUN
of ADP
a DET
" PUNCT
space NOUN
germ NOUN
" PUNCT
. PUNCT
  SPACE
Quite ADJ
coincidentally ADV
[ PUNCT
actually ADV
this DET
is AUX
what PRON
got VERB
me PRON
wanted VERB
to PART
seethe VERB
movie NOUN
again ADV
] PUNCT
I PRON
watched VERB
a DET
segment NOUN
on ADP
the DET
otherwise ADV
awful ADJ
_ ADP
How'dThey PRON
Do AUX
That DET
? PUNCT
_ DET
dealing VERB
with ADP
a DET
disease NOUN
researcher NOUN
at ADP
the DET
CDC PROPN
's PART
toplab NOUN
. PUNCT
  SPACE
There PRON
was AUX
description NOUN
of ADP
the DET
elaborate ADJ
security NOUN
measures NOUN
takenso NOUN
that SCONJ
building NOUN
will AUX
never ADV
be AUX
" PUNCT
cracked VERB
" PUNCT
so ADV
to PART
speak VERB
by ADP
man NOUN
ornature PROPN
( PUNCT
short ADJ
of ADP
deliberate ADJ
bombing NOUN
from ADP
the DET
air NOUN
, PUNCT
perhaps ADV
) PUNCT
. PUNCT
  SPACE
Andthe DET
researchers NOUN
used VERB
" PUNCT
spacesuits NOUN
" PUNCT
similar ADJ
to ADP
that DET
in ADP
the DET
film NOUN
. PUNCT
I'm PRON
curious ADJ
what PRON
people NOUN
think VERB
about ADP
this DET
film NOUN
-- PUNCT
short ADJ
of ADP
" PUNCT
silly" NOUN
. PUNCT
Is AUX
such DET
a DET
facility NOUN
technically ADV
feasible ADJ
today NOUN
? PUNCT
  SPACE
As ADV
far ADV
as SCONJ
the DET
plot NOUN
, PUNCT
and CCONJ
the DET
crystalline ADJ
structure NOUN
that PRON
is AUX
not PART
LifeAs NOUN
We PRON
Know VERB
It PRON
, PUNCT
that DET
's AUX
a DET
whole ADJ
' PUNCT
nother NOUN
argument NOUN
for ADP
rec.arts.sf.techor PROPN
something.-- PROPN
  SPACE
| PROPN
Next PROPN
: PUNCT
a DET
Waco PROPN
update NOUN
... PUNCT
an DET
Ohio PROPN
prison NOUN
update NOUN
... PUNCT
a DET
Bosnia PROPN
update NOUN
... PUNCT
a DET
  SPACE
| X
| ADJ
Russian ADJ
update NOUN
... PUNCT
an DET
abortion NOUN
update NOUN
... PUNCT
and CCONJ
a DET
Congressional ADJ
update NOUN
... PUNCT
| INTJ
| PROPN
here ADV
on ADP
SNN PROPN
: PUNCT
The DET
Standoff PROPN
News PROPN
Network PROPN
. PUNCT
  SPACE
All DET
news NOUN
, PUNCT
all DET
standoff NOUN
, PUNCT
all DET
day NOUN
| PROPN
Daniel PROPN
A. PROPN
Hartung PROPN
  SPACE
-- PUNCT
  SPACE
dhartung@chinet.chinet.com X
  SPACE
-- PUNCT
  SPACE
Ask VERB
me PRON
about ADP
RotaractNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58958From NUM
: PUNCT
ls8139@albnyvms.bitnet PROPN
( PUNCT
larry PROPN
silverberg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
H NOUN
E NOUN
L NOUN
P NOUN
   SPACE
M NOUN
E NOUN
   SPACE
--- PUNCT
> X
desperate ADJ
with ADP
some DET
VD PROPN
> X
I PRON
can AUX
probably ADV
buy VERB
the DET
> X
tools NOUN
and CCONJ
this DET
solution NOUN
somewhere ADV
but CCONJ
I PRON
DON'T VERB
KNOW VERB
HOW ADV
TO PART
DO VERB
INJECTION NOUN
BY ADP
> X
MYSELFYou NOUN
may AUX
also ADV
want VERB
to PART
buy VERB
a DET
' PUNCT
self NOUN
injector NOUN
' PUNCT
or CCONJ
something PRON
like SCONJ
that DET
. PUNCT
My PRON
friend NOUN
is AUX
diabetic ADJ
. PUNCT
  SPACE
You PRON
load VERB
the DET
hyperdermic PROPN
, PUNCT
put VERB
it PRON
in ADP
a DET
plastic ADJ
caseand NOUN
set VERB
a DET
spring NOUN
to PART
automatically ADV
push VERB
the DET
needle NOUN
into ADP
the DET
skin NOUN
and CCONJ
depressthe NOUN
plunger.~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Live PROPN
From ADP
New PROPN
York PROPN
, PUNCT
It PRON
's AUX
SATURDAY PROPN
NIGHT PROPN
... PUNCT
Tonight NOUN
's PART
special ADJ
guest NOUN
: PUNCT
Lawrence PROPN
Silverberg PROPN
from ADP
The DET
State PROPN
University PROPN
of ADP
New PROPN
York PROPN
@ ADP
Albanyaka PROPN
: PUNCT
ls8139@gemini PROPN
. PUNCT
Albany.edu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58959From NUM
: PUNCT
markmc@halcyon.com X
( PUNCT
Mark PROPN
McWiggins)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskAlso NOUN
, PUNCT
do AUX
n't PART
forget VERB
that SCONJ
it PRON
's AUX
better ADJ
for ADP
your PRON
health NOUN
to PART
enjoy VERB
your PRON
steakthan NOUN
to PART
resent VERB
your PRON
sprouts NOUN
... PUNCT
-- PUNCT
Mark PROPN
McWiggins PROPN
        SPACE
Hermes PROPN
& CCONJ
Associates PROPN
		 SPACE
+1 PROPN
206 NUM
632 NUM
1905 NUM
( PUNCT
voice)markmc@halcyon.com PROPN
    SPACE
Box PROPN
31356 NUM
, PUNCT
Seattle PROPN
WA PROPN
98103 NUM
- SYM
1356 NUM
  SPACE
+1 PROPN
206 NUM
632 NUM
1738 NUM
( PUNCT
fax)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58960From NUM
: PUNCT
sandy@nmr1.pt.cyanamid.COM PROPN
( PUNCT
Sandy PROPN
Silverman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskFrom PROPN
my PRON
reading NOUN
of ADP
the DET
popular ADJ
, PUNCT
and CCONJ
scientific ADJ
, PUNCT
literature NOUN
, PUNCT
  SPACE
I PRON
think VERB
that SCONJ
thebenzopyrene NOUN
- PUNCT
from ADP
- PUNCT
burned VERB
- PUNCT
fat NOUN
problem NOUN
is AUX
probably ADV
real ADJ
but CCONJ
very ADV
small ADJ
compared VERB
toother ADP
kinds NOUN
of ADP
risks NOUN
. PUNCT
  SPACE
( PUNCT
This DET
type NOUN
of ADP
problem NOUN
also ADV
occurs VERB
with ADP
stove NOUN
- PUNCT
top NOUN
pangrilling NOUN
. PUNCT
) PUNCT
  SPACE
One NUM
possible ADJ
remedy NOUN
I PRON
have AUX
read VERB
about ADP
is AUX
to PART
take VERB
some DET
vitamin NOUN
C NOUN
with ADP
your PRON
meal NOUN
of ADP
barbecue NOUN
( PUNCT
or CCONJ
bacon NOUN
, PUNCT
e.g. ADV
) PUNCT
. PUNCT
  SPACE
This DET
MAY AUX
make VERB
sense NOUN
because SCONJ
vit NOUN
. PUNCT
Cis PROPN
an DET
antioxidant NOUN
which PRON
could AUX
counteract VERB
the DET
adverse ADJ
affect NOUN
of ADP
some DET
of ADP
the DET
chemicals NOUN
in ADP
question NOUN
. PUNCT
  SPACE
Bon PROPN
Apetit PROPN
! PUNCT
     SPACE
--Sanford PUNCT
Silverman PROPN
                      SPACE
> X
Opinions NOUN
expressed VERB
here ADV
are AUX
my PRON
own ADJ
< PUNCT
American PROPN
Cyanamid PROPN
  SPACE
sandy@pt.cyanamid.com PROPN
, PUNCT
silvermans@pt.cyanamid.com PROPN
     SPACE
" PUNCT
Yeast NOUN
is AUX
Best"Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58961From NUM
: PUNCT
gmiller@worldbank.org X
( PUNCT
Gene PROPN
C. PROPN
Miller)Subject PROPN
: PUNCT
Immunotherapy PROPN
for ADP
Recurrent PROPN
Miscarriage PROPN
     SPACE
Following VERB
a DET
series NOUN
of ADP
miscarriages NOUN
, PUNCT
my PRON
wife NOUN
was AUX
given VERB
a DET
transfusion NOUN
ofmy PROPN
white ADJ
cells NOUN
. PUNCT
( PUNCT
The DET
theory NOUN
as SCONJ
I PRON
understand VERB
it PRON
is AUX
that SCONJ
there PRON
is AUX
some DET
kindof NOUN
immune NOUN
blocking VERB
that PRON
prevents VERB
the DET
body NOUN
from ADP
attacking VERB
the DET
pregnancy NOUN
asit NOUN
normally ADV
would AUX
a DET
" PUNCT
foreign ADJ
" PUNCT
body NOUN
. PUNCT
Where ADV
this DET
blocking NOUN
is AUX
deficient ADJ
, PUNCT
thebody NOUN
evicts VERB
the DET
" PUNCT
intruder NOUN
" PUNCT
, PUNCT
resulting VERB
in ADP
a DET
miscarriage NOUN
. PUNCT
The DET
white ADJ
cellsapparently ADV
enhance VERB
the DET
blocking VERB
capability NOUN
. PUNCT
) PUNCT
Following VERB
the DET
transfusion NOUN
, PUNCT
shesuccessfully ADV
carried VERB
the DET
next ADJ
pregnancy NOUN
to ADP
term NOUN
, PUNCT
and CCONJ
Jake PROPN
is AUX
now ADV
an DET
active9 NOUN
month NOUN
- PUNCT
old ADJ
who PRON
can AUX
not PART
wait VERB
to PART
walk VERB
. PUNCT
     SPACE
We PRON
're AUX
now ADV
thinking VERB
about ADP
having VERB
another DET
child NOUN
, PUNCT
but CCONJ
no DET
one NOUN
( PUNCT
includingthe X
OBGYN PROPN
who PRON
supervised VERB
the DET
first ADJ
transfusion NOUN
) PUNCT
really ADV
seems VERB
to ADP
knowwhether PROPN
or CCONJ
not PART
the DET
transfusion NOUN
process NOUN
needs VERB
to PART
be AUX
repeated VERB
for ADP
successivepregnancies NOUN
. PUNCT
     SPACE
Is AUX
there ADV
anyone PRON
in ADP
net ADJ
- PUNCT
land NOUN
who PRON
has AUX
experience NOUN
with ADP
this?Thanks NOUN
... PUNCT
Gene NOUN
( PUNCT
and CCONJ
Jane PROPN
and CCONJ
Jake)P.S. PROPN
I PRON
've AUX
also ADV
posted VERB
this DET
in ADP
misc.kids.Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58962From NUM
: PUNCT
harvey@oasys.dt.navy.mil PROPN
( PUNCT
Betty PROPN
Harvey)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
rec.food.cooking NOUN
, PUNCT
packer@delphi.gsfc.nasa.gov NOUN
( PUNCT
Charles PROPN
Packer PROPN
) PUNCT
writes:>Is ADP
there PRON
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>I PROPN
saw VERB
in ADP
the DET
NY PROPN
Times PROPN
Sunday PROPN
that SCONJ
scientists NOUN
have AUX
testified VERB
before ADP
> X
an DET
FDA PROPN
advisory NOUN
panel NOUN
that SCONJ
complaints NOUN
about ADP
MSG PROPN
sensitivity NOUN
are AUX
> X
superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary?>I PROPN
know VERB
that SCONJ
there PRON
is AUX
MSG PROPN
sensitivity NOUN
. PUNCT
  SPACE
When ADV
I PRON
eat VERB
foods NOUN
with ADP
MSG PROPN
I PRON
getvery VERB
thirsty ADJ
and CCONJ
my PRON
hands NOUN
swell VERB
and CCONJ
get AUX
a DET
terrible ADJ
itchy ADJ
rash NOUN
. PUNCT
I PRON
firstexperienced VERB
this DET
problem NOUN
when ADV
I PRON
worked VERB
close ADV
to ADP
Chinatown PROPN
and CCONJ
ate VERB
Chinesefood PROPN
almost ADV
everyday ADV
for ADP
lunch NOUN
. PUNCT
  SPACE
Now ADV
I PRON
ca AUX
n't PART
tolerate VERB
MSG PROPN
at ADV
all ADV
. PUNCT
  SPACE
I PRON
cannotice VERB
immediately ADV
when ADV
I PRON
have AUX
eaten VERB
any DET
. PUNCT
  SPACE
I PRON
try VERB
to PART
avoid VERB
MSG PROPN
completely ADV
. PUNCT
Interesting ADJ
fact NOUN
though ADV
is AUX
that SCONJ
all DET
three NUM
of ADP
my PRON
children NOUN
started VERB
experiencingthe ADV
exact ADJ
same ADJ
rash NOUN
on ADP
their PRON
hands NOUN
. PUNCT
  SPACE
I PRON
could AUX
n't PART
understand VERB
why ADV
because SCONJ
Idon't PROPN
MSG PROPN
in ADP
cooking NOUN
and CCONJ
we PRON
ask VERB
for ADP
no DET
MSG NOUN
when ADV
we PRON
do AUX
eat VERB
Chinese PROPN
( PUNCT
I PRON
stilllove VERB
it PRON
) PUNCT
. PUNCT
  SPACE
After ADP
some DET
investigation NOUN
I PRON
knew VERB
that SCONJ
Oodles PROPN
of ADP
Noodles PROPN
whereone VERB
of ADP
their PRON
favorite ADJ
foods NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
main ADJ
ingredients NOUN
in ADP
the DET
flavorpackets NOUN
is AUX
MSG PROPN
. PUNCT
  SPACE
Now ADV
I PRON
look VERB
at ADP
all DET
labels NOUN
. PUNCT
  SPACE
You PRON
would AUX
be AUX
surprised ADJ
atplaces NOUN
you PRON
find VERB
MSG./\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/Betty PROPN
Harvey PROPN
  SPACE
< X
harvey@oasys.dt.navy.mil X
> X
     SPACE
| PROPN
David PROPN
Taylor PROPN
Model PROPN
BasinADP PROPN
, PUNCT
Networking PROPN
and CCONJ
Communication PROPN
Assessment PROPN
| PROPN
Carderock PROPN
Division PROPN
     SPACE
Branch PROPN
                                  SPACE
| PROPN
Naval PROPN
Surface PROPN
WarfareCode PROPN
1221 NUM
                                    SPACE
| PROPN
   SPACE
CenterBethesda PROPN
, PUNCT
Md. PROPN
  SPACE
20084 NUM
- SYM
5000 NUM
                    SPACE
| PROPN
DTMB PROPN
, PUNCT
CD PROPN
, PUNCT
NSWC PROPN
                                                SPACE
| ADJ
   SPACE
( PUNCT
301)227 NUM
- SYM
3379 NUM
   SPACE
FAX PROPN
( PUNCT
301)227 NUM
- SYM
3343 NUM
            SPACE
| PROPN
          SPACE
/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\\/\/Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58963From NUM
: SYM
sasghm@theseus.unx.sas.com X
( PUNCT
Gary PROPN
Merrill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1993Apr16.210916.6958@cs.rochester.edu NUM
> X
, PUNCT
fulk@cs.rochester.edu PROPN
( PUNCT
Mark PROPN
Fulk PROPN
) PUNCT
writes:| PROPN
> X
I PRON
'm AUX
not PART
familiar ADJ
with ADP
the DET
history NOUN
of ADP
this DET
experiment NOUN
, PUNCT
although SCONJ
, PUNCT
arguably,| PROPN
> X
I PRON
should AUX
be AUX
. PUNCT
For ADP
a DET
brief NOUN
, PUNCT
but CCONJ
pretty ADV
detailed ADJ
account NOUN
, PUNCT
try VERB
Hempel PROPN
's PART
_ DET
Philosophy PROPN
ofNatural PROPN
Science_.| PROPN
> X
I PRON
think VERB
that SCONJ
it PRON
is AUX
enough ADJ
if SCONJ
his PRON
contemporaries NOUN
found VERB
the DET
result NOUN
surprising.| PROPN
> X
That DET
's AUX
not PART
what PRON
I PRON
'd AUX
quibble VERB
about ADP
. PUNCT
  SPACE
What PRON
I PRON
'd AUX
like VERB
to PART
know VERB
are AUX
Toricelli's| PROPN
> X
reasons NOUN
for ADP
doing VERB
his PRON
experiment NOUN
; PUNCT
not PART
the DET
post X
hoc X
_ PROPN
constructed VERB
_ PROPN
reasons,| PROPN
> X
but CCONJ
the DET
thoughts NOUN
in ADP
his PRON
head NOUN
as SCONJ
he PRON
considered VERB
the DET
problem NOUN
. PUNCT
  SPACE
It PRON
may AUX
beThis VERB
smacks VERB
a DET
bit NOUN
of ADP
ideology NOUN
-- PUNCT
the DET
supposition NOUN
being AUX
that SCONJ
Toricelli'ssubsequent NUM
descriptions NOUN
of ADP
his PRON
reasoning NOUN
are AUX
not PART
veridical ADJ
. PUNCT
  SPACE
It PRON
gets VERB
dangerouslyclose NOUN
to ADP
an DET
unfalsifiable ADJ
view NOUN
of ADP
the DET
history NOUN
and CCONJ
methodology NOUN
of ADP
science NOUN
ifwe NOUN
deny VERB
that SCONJ
no DET
subsequent ADJ
reports NOUN
of ADP
experimenters NOUN
are AUX
reliable ADJ
descriptionsof ADJ
their PRON
" PUNCT
real ADJ
" PUNCT
reasons.| PROPN
> X
impossible ADJ
to PART
know VERB
much ADJ
about ADP
Toricelli PROPN
's PART
thoughts NOUN
; PUNCT
that DET
's AUX
too ADV
bad ADJ
if| PUNCT
> X
it PRON
is AUX
so ADV
. PUNCT
  SPACE
One NUM
of ADP
Root PROPN
- PUNCT
Bernstein PROPN
's PART
services NOUN
to ADP
science NOUN
is AUX
that SCONJ
he PRON
has AUX
gone| NOUN
> X
rooting VERB
about ADP
in ADP
Pasteur PROPN
's PART
and CCONJ
Fleming PROPN
's PART
( PUNCT
and CCONJ
other ADJ
people NOUN
's PART
) PUNCT
notes NOUN
, PUNCT
and CCONJ
has| PROPN
> PROPN
discovered VERB
some DET
surprising ADJ
clues NOUN
about ADP
their PRON
motivations NOUN
. PUNCT
  SPACE
Pasteur PROPN
never| PROPN
> X
publicly ADV
admitted VERB
his PRON
plan NOUN
to PART
create VERB
mirror NOUN
- PUNCT
image NOUN
life NOUN
, PUNCT
but CCONJ
the DET
dreams NOUN
are| PROPN
> X
right ADV
there ADV
in ADP
his PRON
notebooks NOUN
( PUNCT
finally ADV
public ADJ
after ADP
many ADJ
years NOUN
) PUNCT
, PUNCT
ready ADJ
for| NOUN
> X
anyone PRON
to PART
read VERB
. PUNCT
  SPACE
And CCONJ
I PRON
and CCONJ
my PRON
friends NOUN
often ADV
have AUX
the DET
most ADV
ridiculous| ADJ
> X
reasons NOUN
for ADP
pursuing VERB
results NOUN
; PUNCT
one NUM
of ADP
my PRON
best ADJ
came VERB
because SCONJ
I PRON
was AUX
mad ADJ
at| ADP
> X
a DET
colleague NOUN
for ADP
a DET
poorly ADV
- PUNCT
written VERB
claim NOUN
( PUNCT
I PRON
disproved VERB
the DET
claim).| NOUN
> X
| ADV
> X
Of ADV
course ADV
, PUNCT
Toricelli PROPN
's PART
case NOUN
may AUX
be AUX
an DET
example NOUN
of ADP
a DET
rarety NOUN
: PUNCT
where ADV
the| PROPN
> X
fantasy NOUN
not PART
only ADV
motivates VERB
the DET
experiment NOUN
, PUNCT
but CCONJ
turns VERB
out ADP
to PART
be AUX
right| NOUN
> X
in ADP
the DET
end NOUN
. PUNCT
But CCONJ
my PRON
point NOUN
is AUX
that SCONJ
this DET
type NOUN
of ADP
case NOUN
is AUX
* PUNCT
not PART
* PUNCT
a DET
rarity NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
I PRON
wasgoing VERB
to PART
point VERB
to ADP
Pasteur PROPN
as SCONJ
yet ADV
another DET
rather ADV
common ADJ
example NOUN
-- PUNCT
particularlythe VERB
studies NOUN
on ADP
spontaneous ADJ
generation NOUN
and CCONJ
fermentation NOUN
. PUNCT
  SPACE
I PRON
will AUX
readilyconcede VERB
that SCONJ
" PUNCT
ridiculous ADJ
reasons NOUN
" PUNCT
can AUX
play VERB
an DET
important ADJ
role NOUN
in ADP
howscientists NOUN
spend VERB
their PRON
time NOUN
. PUNCT
  SPACE
But CCONJ
one PRON
should AUX
not PART
confuse VERB
motivation NOUN
withmethodology NOUN
nor CCONJ
suppose VERB
that SCONJ
ridiculous ADJ
reasons NOUN
provide VERB
the DET
impetus NOUN
in ADP
themajority NOUN
of ADP
cases NOUN
based VERB
on ADP
relatively ADV
infrequent ADJ
anecdotal ADJ
evidence.-- PROPN
Gary PROPN
H. PROPN
Merrill PROPN
  SPACE
[ PUNCT
Principal PROPN
Systems PROPN
Developer PROPN
, PUNCT
C PROPN
Compiler PROPN
Development]SAS PROPN
Institute PROPN
Inc. PROPN
/ SYM
SAS PROPN
Campus PROPN
Dr. PROPN
/ SYM
Cary PROPN
, PUNCT
NC PROPN
  SPACE
27513 NUM
/ SYM
( PUNCT
919 NUM
) PUNCT
677-8000sasghm@theseus.unx.sas.com NUM
... PUNCT
! PUNCT
mcnc!sas!sasghmNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58964From NUM
: PUNCT
sbrenner@cbnewsb.cb.att.com X
( PUNCT
scott.d.brenner)Subject X
: PUNCT
What PRON
's AUX
the DET
Difference PROPN
Between ADP
an DET
M.D. PROPN
and CCONJ
a DET
D.O.?My PROPN
wife NOUN
and CCONJ
I PRON
are AUX
in ADP
the DET
process NOUN
of ADP
selecting VERB
a DET
pediatrician NOUN
for ADP
ourfirst ADJ
child NOUN
( PUNCT
due ADJ
June PROPN
15th NOUN
) PUNCT
. PUNCT
  SPACE
We PRON
interviewed VERB
a DET
young ADJ
doctor NOUN
last ADJ
weekand NOUN
were AUX
very ADV
impressed ADJ
with ADP
her PRON
. PUNCT
  SPACE
However ADV
, PUNCT
I PRON
discovered VERB
that SCONJ
she PRON
isactually ADV
not PART
an DET
Medical PROPN
Doctor PROPN
( PUNCT
M.D. PROPN
) PUNCT
but CCONJ
rather ADV
a DET
" PUNCT
Doctor PROPN
of ADP
Osteopathy PROPN
" PUNCT
( PUNCT
D.O. PROPN
) PUNCT
. PUNCT
  SPACE
What PRON
's AUX
the DET
difference NOUN
? PUNCT
  SPACE
I PRON
believe VERB
the DET
pediatrician*I NOUN
* PUNCT
went VERB
to ADP
for ADP
many ADJ
years NOUN
was AUX
a DET
D.O. PROPN
and CCONJ
he PRON
did AUX
n't PART
seem VERB
different ADJ
fromany NOUN
other ADJ
doctor NOUN
I PRON
've AUX
seen VERB
over ADP
the DET
years NOUN
. PUNCT
My PRON
dictionary NOUN
says VERB
that SCONJ
osteopathy PROPN
is AUX
" PUNCT
a DET
medical ADJ
therapy NOUN
that SCONJ
emphasizesmanipulative ADJ
techniques NOUN
for ADP
correcting VERB
somatic ADJ
abnormalities NOUN
thoughtto NOUN
cause VERB
disease NOUN
and CCONJ
inhibit VERB
recovery NOUN
. PUNCT
"Jeez PUNCT
, PUNCT
this DET
sounds VERB
like SCONJ
chiropractic ADJ
. PUNCT
  SPACE
I PRON
remember VERB
getting VERB
shots NOUN
andmedicine VERB
from ADP
* PUNCT
my PRON
* PUNCT
pediatrician NOUN
D.O. PROPN
, PUNCT
and CCONJ
do AUX
n't PART
remember VERB
any DET
" PUNCT
manipulative ADJ
techniques NOUN
" PUNCT
. PUNCT
  SPACE
Perhaps ADV
someone PRON
could AUX
enlighten VERB
me PRON
as SCONJ
tothe DET
real ADJ
, PUNCT
practical ADJ
difference NOUN
between ADP
an DET
M.D. PROPN
and CCONJ
a DET
D.O. PROPN
  SPACE
Also ADV
, PUNCT
I'minteresting PROPN
in ADP
hearing VERB
any DET
opinions NOUN
on ADP
choosing VERB
a DET
pediatrician ADJ
whofollows VERB
one NUM
or CCONJ
the DET
other ADJ
medical ADJ
philosophy NOUN
. PUNCT
Readers NOUN
of ADP
sci.med NOUN
: PUNCT
  SPACE
Please INTJ
respond VERB
directly ADV
to PART
sbrenner@attmail.com;I VERB
do AUX
not PART
read VERB
this DET
group NOUN
regularly ADV
and CCONJ
probably ADV
wo AUX
n't PART
see VERB
your PRON
responseif NOUN
you PRON
just ADV
post VERB
it PRON
here ADV
. PUNCT
  SPACE
Sorry ADJ
for ADP
the DET
cross ADJ
- ADJ
posting ADJ
, PUNCT
but CCONJ
I PRON
'm AUX
hopingthere ADJ
's AUX
some DET
expertise NOUN
here.a X
T NOUN
d NOUN
H NOUN
v NOUN
A NOUN
a NOUN
N PROPN
n NOUN
K PROPN
c PROPN
S PROPN
e~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Scott PROPN
D. PROPN
Brenner PROPN
                  SPACE
AT&T PROPN
Consumer PROPN
Communications PROPN
Servicessbrenner@attmail.com PROPN
                          SPACE
Basking PROPN
Ridge PROPN
, PUNCT
New PROPN
Jersey~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58965From NUM
: PUNCT
davallen@vms.macc.wisc.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
79738@cup.portal.com NUM
> X
, PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
... PUNCT
>This PRON
reminds VERB
me PRON
of ADP
the DET
last ADJ
Graham PROPN
Kerr PROPN
cooking NOUN
show NOUN
I PRON
saw VERB
. PUNCT
  SPACE
Today NOUN
he PRON
> X
smoked VERB
meat NOUN
on ADP
the DET
stovetop NOUN
in ADP
a DET
big ADJ
pot NOUN
! PUNCT
  SPACE
He PRON
used VERB
a DET
strange ADJ
technique NOUN
> X
I'd NOUN
never ADV
seen VERB
before ADV
. PUNCT
> X
> X
He PRON
took VERB
a DET
big ADJ
pot NOUN
with ADP
lid NOUN
, PUNCT
and CCONJ
placed VERB
a DET
tray NOUN
in ADP
it PRON
made VERB
from ADP
aluminum NOUN
foil.>The NOUN
tray NOUN
was AUX
about ADP
the DET
size NOUN
and CCONJ
shape NOUN
of ADP
a DET
typical ADJ
coffee NOUN
- PUNCT
table NOUN
ash NOUN
tray,>made NOUN
by ADP
crumpling VERB
a DET
sheet NOUN
of ADP
foil NOUN
around ADP
the DET
edges NOUN
. PUNCT
> X
> X
In ADP
the DET
tray NOUN
, PUNCT
he PRON
placed VERB
a DET
couple NOUN
spoonfuls NOUN
of ADP
brown ADJ
sugar NOUN
, PUNCT
a DET
similar ADJ
> X
quantity NOUN
of ADP
brown ADJ
rice NOUN
( PUNCT
he PRON
said VERB
any DET
rice NOUN
will AUX
do AUX
) PUNCT
, PUNCT
the DET
contents NOUN
of ADP
two NUM
> X
teabags NOUN
of ADP
Earl PROPN
Grey PROPN
tea NOUN
, PUNCT
and CCONJ
a DET
few ADJ
cloves NOUN
. PUNCT
> X
> X
On ADP
top NOUN
of ADP
this DET
was AUX
placed VERB
an DET
ordinary ADJ
aluminum NOUN
basket NOUN
- PUNCT
type NOUN
steamer NOUN
, PUNCT
with ADP
> X
two NUM
chicken NOUN
breasts NOUN
in ADP
it PRON
. PUNCT
  SPACE
The DET
lid NOUN
was AUX
put VERB
on ADP
, PUNCT
and CCONJ
the DET
whole ADJ
assembly NOUN
> X
went VERB
on ADP
the DET
stovetop NOUN
at ADP
high ADJ
heat NOUN
for ADP
10 NUM
or CCONJ
12 NUM
minutes NOUN
. PUNCT
> X
> X
Later ADV
, PUNCT
he PRON
removed VERB
what PRON
looked VERB
like SCONJ
smoked VERB
chicken NOUN
breasts NOUN
. PUNCT
  SPACE
What PRON
surprises VERB
> X
and CCONJ
concerns NOUN
me PRON
are AUX
: PUNCT
> X
> X
1 NUM
) PUNCT
  SPACE
No DET
wood NOUN
chips NOUN
. PUNCT
  SPACE
Where ADV
does AUX
the DET
smoke NOUN
flavor NOUN
come VERB
from ADP
? PUNCT
> X
> X
2 NUM
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
hearing VERB
that SCONJ
carmel PROPN
color NOUN
> X
    SPACE
( PUNCT
obtained VERB
by ADP
caramelizing VERB
sugar NOUN
-- PUNCT
a DET
common ADJ
coloring NOUN
and CCONJ
flavoring NOUN
> X
    SPACE
agent NOUN
) PUNCT
had AUX
been AUX
found VERB
to PART
be AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
believe VERB
they PRON
injected VERB
> X
    SPACE
it PRON
under ADP
the DET
skin NOUN
of ADP
rats NOUN
, PUNCT
or CCONJ
something PRON
. PUNCT
  SPACE
If SCONJ
the DET
results NOUN
were AUX
conclusive ADJ
, PUNCT
> X
    SPACE
caramel NOUN
color NOUN
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
, PUNCT
yet CCONJ
it PRON
is AUX
still ADV
being AUX
> X
    SPACE
used VERB
. PUNCT
  SPACE
Was AUX
the DET
initial ADJ
research NOUN
result NOUN
found VERB
to PART
be AUX
incorrect ADJ
, PUNCT
or CCONJ
what PRON
? PUNCT
> X
> X
3 NUM
) PUNCT
  SPACE
About ADV
5 NUM
or CCONJ
10 NUM
years NOUN
ago ADV
, PUNCT
I PRON
remember VERB
Earl PROPN
Grey PROPN
tea NOUN
being AUX
implicated VERB
> NUM
    SPACE
as SCONJ
carcinogenic ADJ
, PUNCT
because SCONJ
it PRON
contains VERB
oil NOUN
of ADP
bergamot NOUN
( PUNCT
an DET
extract NOUN
> X
    SPACE
from ADP
the DET
skin NOUN
of ADP
a DET
type NOUN
of ADP
citrus ADJ
fruit NOUN
) PUNCT
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
whatever PRON
> X
    SPACE
happened VERB
with ADP
that DET
story NOUN
? PUNCT
  SPACE
If SCONJ
it PRON
were AUX
carcinogenic ADJ
, PUNCT
Earl PROPN
Grey PROPN
tea NOUN
> X
    SPACE
could AUX
not PART
have AUX
it PRON
as SCONJ
an DET
additive ADJ
, PUNCT
yet CCONJ
it PRON
apparently ADV
continues VERB
to PART
do AUX
> X
    SPACE
so ADV
. PUNCT
> X
> X
WRT PROPN
natural ADJ
wood NOUN
smoke NOUN
( PUNCT
I PRON
've AUX
smoking VERB
a DET
duck NOUN
right ADV
now ADV
, PUNCT
as SCONJ
it PRON
happens),>I've PROPN
noticed VERB
that SCONJ
a DET
heavily ADV
- PUNCT
smoked VERB
food NOUN
item NOUN
will AUX
have AUX
an DET
unpleasant ADJ
tangy NOUN
> X
taste NOUN
when ADV
eaten VERB
directly ADV
out SCONJ
of ADP
the DET
smoker NOUN
if SCONJ
the DET
smoke NOUN
has AUX
only ADV
recently ADV
> X
stopped VERB
flowing VERB
. PUNCT
  SPACE
I PRON
find VERB
the DET
best ADJ
taste NOUN
to PART
be AUX
had VERB
by ADP
using VERB
dry ADJ
wood NOUN
chips,>getting VERB
lots NOUN
of ADP
smoke NOUN
right ADV
up ADV
at ADP
the DET
beginning NOUN
of ADP
the DET
cooking NOUN
process,>then NOUN
slowly ADV
barbequing VERB
for ADP
hours NOUN
and CCONJ
hours NOUN
without ADP
adding VERB
additional ADJ
wood NOUN
chips NOUN
. PUNCT
> X
> X
My PRON
theory NOUN
is AUX
that SCONJ
the DET
unpleasant ADJ
tangy ADJ
molecules NOUN
are AUX
low ADJ
- PUNCT
molecular ADJ
weight NOUN
> X
stuff NOUN
, PUNCT
like SCONJ
terpenes NOUN
, PUNCT
and CCONJ
that SCONJ
the DET
smoky ADJ
flavor NOUN
molecules NOUN
are AUX
some DET
sort ADJ
> X
of ADP
larger ADJ
molecule VERB
more ADV
similar ADJ
to ADP
tar PROPN
. PUNCT
  SPACE
The DET
long ADJ
barbeque NOUN
time NOUN
after ADP
> X
the DET
initial ADJ
intensive ADJ
smoke NOUN
drives VERB
off ADP
the DET
low ADJ
- PUNCT
molecular ADJ
weight NOUN
stuff,>just PUNCT
leaving VERB
the DET
flavor NOUN
behind ADV
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
if SCONJ
my PRON
theory NOUN
is AUX
correct ADJ
? PUNCT
> X
> X
I PRON
also ADV
remember VERB
hearing VERB
that SCONJ
the DET
combustion NOUN
products NOUN
of ADP
fat ADJ
dripping NOUN
> X
on ADP
the DET
charcoal NOUN
and CCONJ
burning NOUN
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
For ADP
that DET
reason NOUN
, PUNCT
and CCONJ
because SCONJ
> X
it PRON
covers VERB
the DET
product NOUN
with ADP
soot NOUN
and CCONJ
some DET
unpleasant ADJ
tanginess NOUN
, PUNCT
I PRON
only ADV
grill VERB
> X
non ADJ
- ADJ
drippy ADJ
meats NOUN
like SCONJ
prawns NOUN
directly ADV
over ADP
hot ADJ
coals NOUN
. PUNCT
  SPACE
I PRON
do AUX
stuff NOUN
like SCONJ
this DET
> ADJ
duck NOUN
by ADP
indirect ADJ
heat NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
long ADJ
rectangular ADJ
Weber PROPN
, PUNCT
and CCONJ
I PRON
put VERB
the DET
coals NOUN
> X
at ADP
one NUM
end NOUN
and CCONJ
the DET
meat NOUN
at ADP
the DET
other ADJ
end NOUN
. PUNCT
  SPACE
The DET
fat NOUN
drops VERB
directly ADV
on ADP
the DET
> X
floor NOUN
below ADP
the DET
meat NOUN
, PUNCT
and CCONJ
next ADJ
time NOUN
I PRON
use VERB
the DET
barbeque NOUN
I PRON
make VERB
the DET
fire NOUN
> X
in ADP
that DET
end NOUN
to PART
burn VERB
off ADP
the DET
fat NOUN
and CCONJ
help VERB
ignite VERB
the DET
coals NOUN
. PUNCT
> X
> X
And CCONJ
yet ADV
another DET
reason NOUN
I PRON
've AUX
heard VERB
not PART
to PART
smoke VERB
or CCONJ
barbeque NOUN
meat NOUN
is AUX
that SCONJ
> X
smoked VERB
cured VERB
meat NOUN
, PUNCT
like SCONJ
pork NOUN
sausage NOUN
and CCONJ
bacon NOUN
, PUNCT
contains VERB
> X
nitrosamines NOUN
, PUNCT
which PRON
are AUX
carcinogenic ADJ
. PUNCT
  SPACE
I PRON
'm AUX
pretty ADV
sure ADJ
this DET
claim NOUN
actually ADV
> X
has AUX
some DET
standing NOUN
, PUNCT
do AUX
n't PART
know VERB
about ADP
the DET
others NOUN
. PUNCT
> X
> X
An DET
amusing ADJ
incident NOUN
I PRON
recall VERB
was AUX
the DET
Duncan PROPN
Hines PROPN
scandal NOUN
, PUNCT
when ADV
it PRON
was AUX
> X
discovered VERB
that SCONJ
the DET
people NOUN
who PRON
make VERB
Duncan PROPN
Hines PROPN
cake NOUN
mix NOUN
were AUX
putting VERB
> X
a DET
lot NOUN
of ADP
ethylene NOUN
dibromide NOUN
( PUNCT
EDB PROPN
) PUNCT
into ADP
the DET
cake NOUN
mix NOUN
to PART
suppress VERB
weevils.>This PROPN
is AUX
a DET
fumigant NOUN
which PRON
is AUX
known VERB
to PART
be AUX
carcinogenic.>The PROPN
guy NOUN
who PRON
represented VERB
the DET
company NOUN
in ADP
the DET
press NOUN
conference NOUN
defended VERB
> X
himself PRON
by ADP
saying VERB
that SCONJ
the DET
risk NOUN
from ADP
eating VERB
Duncan PROPN
Hines PROPN
products NOUN
every DET
day NOUN
> X
for ADP
a DET
year NOUN
would AUX
be AUX
equal ADJ
to ADP
the DET
cancer NOUN
risk NOUN
from ADP
eating VERB
two NUM
charcoal->broiled ADJ
steaks NOUN
. PUNCT
  SPACE
What PRON
a DET
great ADJ
analogy NOUN
! PUNCT
  SPACE
When ADV
I PRON
first ADV
heard VERB
that DET
, PUNCT
my PRON
> X
immediate ADJ
reaction NOUN
was AUX
we PRON
should AUX
make VERB
that SCONJ
a DET
standard ADJ
unit NOUN
! PUNCT
  SPACE
One NUM
charcoal NOUN
> X
broiled VERB
steak NOUN
would AUX
be AUX
equivalent ADJ
to ADP
0.5 NUM
Duncans!I NOUN
do AUX
n't PART
understand VERB
the DET
assumption NOUN
that SCONJ
because SCONJ
something PRON
is AUX
found VERB
tobe NOUN
carcinogenic NOUN
that SCONJ
" PUNCT
it PRON
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
thatnaturally ADV
occuring VERB
substances NOUN
( PUNCT
excluding VERB
" PUNCT
controlled VERB
" PUNCT
substances NOUN
) PUNCT
arepretty ADV
much ADJ
unregulated ADJ
in ADP
terms NOUN
of ADP
their PRON
use NOUN
as SCONJ
food NOUN
, PUNCT
food NOUN
additivesor VERB
other ADJ
" PUNCT
consumption NOUN
" PUNCT
. PUNCT
  SPACE
It PRON
's AUX
only ADV
when ADV
the DET
chemists NOUN
concoct PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
aningredient NOUN
that SCONJ
it PRON
falls VERB
under ADP
FDA PROPN
regulations NOUN
. PUNCT
  SPACE
Otherwise ADV
, PUNCT
if SCONJ
they PRON
really ADV
looked VERB
closely ADV
they PRON
would AUX
find VERB
a DET
reason NOUN
to PART
ban VERB
almost ADV
everything PRON
. PUNCT
How ADV
in ADP
the DET
world NOUN
do AUX
you PRON
suppose VERB
it PRON
's AUX
legal ADJ
to PART
" PUNCT
consume VERB
" PUNCT
tobacco NOUN
products(which PROPN
probably ADV
SHOULD AUX
be AUX
banned VERB
) PUNCT
? PUNCT
	 SPACE
Dave PROPN
Allen PROPN
	 SPACE
Space PROPN
Science PROPN
& CCONJ
Engr PROPN
. PUNCT
Ctr PROPN
. PUNCT
	 SPACE
UW PROPN
- PUNCT
MadisonNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58966From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Placebo PROPN
effects-*-----In PROPN
article NOUN
< X
735157066.AA00449@calcom.socal.com X
> X
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince PROPN
) PUNCT
writes VERB
: PUNCT
> X
Is AUX
there PRON
an DET
effect NOUN
where ADV
the DET
doctor NOUN
believes VERB
so ADV
strongly ADV
in ADP
a DET
> X
medicine NOUN
that SCONJ
he PRON
/ SYM
she PRON
sees VERB
improvement NOUN
where ADV
the DET
is AUX
none NOUN
or CCONJ
sees VERB
> X
more ADJ
improvement NOUN
than SCONJ
there PRON
is AUX
? PUNCT
  SPACE
If SCONJ
so ADV
, PUNCT
what PRON
is AUX
this DET
effect NOUN
> X
called VERB
? PUNCT
  SPACE
Is AUX
there PRON
a DET
reverse NOUN
of ADP
the DET
above ADJ
effect NOUN
where ADV
the DET
doctor NOUN
> X
does AUX
n't PART
believe VERB
in ADP
a DET
medicine NOUN
and CCONJ
then ADV
sees VERB
less ADJ
improvement NOUN
than SCONJ
> X
there PRON
is AUX
? PUNCT
  SPACE
What PRON
would AUX
this DET
effect NOUN
be AUX
called VERB
? PUNCT
  SPACE
Have AUX
these DET
effects NOUN
> X
ever ADV
been AUX
studied VERB
? PUNCT
  SPACE
How ADV
common ADJ
are AUX
these DET
effects NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
> X
advance NOUN
for ADP
all DET
replies NOUN
. PUNCT
These DET
effects NOUN
are AUX
a DET
very ADV
real ADJ
concern NOUN
in ADP
conducting VERB
studies NOUN
of ADP
newtreatments NOUN
. PUNCT
  SPACE
Researchers NOUN
try VERB
to PART
limit VERB
this DET
kind NOUN
of ADP
effect NOUN
by ADP
performing VERB
studies NOUN
that PRON
are AUX
" PUNCT
blind ADJ
" PUNCT
in ADP
various ADJ
ways NOUN
. PUNCT
  SPACE
Some DET
of ADP
theseare NOUN
: PUNCT
  SPACE
o X
  SPACE
The DET
subjects NOUN
of ADP
the DET
study NOUN
do AUX
not PART
know VERB
whether SCONJ
they PRON
receive VERB
a DET
      SPACE
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
, PUNCT
i.e. X
, PUNCT
whether SCONJ
they PRON
are AUX
in ADP
the DET
     SPACE
control NOUN
group NOUN
or CCONJ
the DET
test NOUN
group NOUN
. PUNCT
  SPACE
o INTJ
  SPACE
Those DET
administering VERB
the DET
treatment NOUN
do AUX
not PART
know VERB
which PRON
subjects NOUN
      SPACE
receive VERB
a DET
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
. PUNCT
  SPACE
o INTJ
  SPACE
Those DET
evaluating VERB
individual ADJ
results NOUN
do AUX
not PART
know VERB
which PRON
subjects VERB
     SPACE
receive VERB
a DET
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
. PUNCT
Obviously ADV
, PUNCT
at ADP
the DET
point NOUN
at ADP
which PRON
the DET
data NOUN
is AUX
analyzed VERB
, PUNCT
one PRON
has AUX
to PART
differentiate VERB
the DET
test NOUN
group NOUN
from ADP
the DET
control NOUN
group NOUN
. PUNCT
  SPACE
But CCONJ
the DET
analysisis NOUN
quasi VERB
- ADJ
public ADJ
: PUNCT
the DET
researcher NOUN
describes VERB
it PRON
and CCONJ
presents VERB
the DET
data NOUN
onwhich NOUN
it PRON
is AUX
based VERB
so SCONJ
that SCONJ
others NOUN
can AUX
verify VERB
it PRON
. PUNCT
  SPACE
It PRON
is AUX
worth ADJ
noting VERB
that SCONJ
in ADP
biological ADJ
studies NOUN
where ADV
the DET
subjects NOUN
areanimals VERB
, PUNCT
such ADJ
as SCONJ
mice NOUN
, PUNCT
there PRON
were AUX
many ADJ
cases NOUN
of ADP
skewed ADJ
results NOUN
becausethose ADV
who PRON
performed VERB
the DET
study NOUN
did AUX
not PART
" PUNCT
blind ADJ
" PUNCT
themselves PRON
. PUNCT
  SPACE
It PRON
is AUX
notconsidered VERB
so ADV
important ADJ
to PART
make VERB
mice NOUN
more ADV
ignorant ADJ
than SCONJ
they PRON
alreadyare VERB
, PUNCT
though SCONJ
it PRON
is AUX
important ADJ
that SCONJ
in ADP
all DET
respects NOUN
except SCONJ
the DET
one NOUN
tested VERB
, PUNCT
the DET
control NOUN
and CCONJ
test NOUN
groups NOUN
are AUX
treated VERB
alike ADV
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58967From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>>Is PROPN
there ADV
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> PUNCT
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this?There PRON
is AUX
eye NOUN
dominance NOUN
same ADJ
as SCONJ
handedness NOUN
( PUNCT
and CCONJ
usually ADV
for ADP
thesame ADJ
side NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
refractive ADJ
error NOUN
, PUNCT
however.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58968From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Surgery NOUN
of ADP
damaged VERB
tendons NOUN
and CCONJ
median ADJ
nerveIn PROPN
article NOUN
< X
BHATT.93Apr12161425@wesley.src.honeywell.com PROPN
> X
bhatt@src.honeywell.com PROPN
writes:>I NUM
thought VERB
I PRON
will AUX
explore VERB
the DET
net ADJ
wisdom NOUN
with ADP
the DET
following VERB
questions NOUN
: PUNCT
> X
> X
  SPACE
Is AUX
there PRON
any DET
better ADJ
way NOUN
to PART
control VERB
the DET
pain NOUN
than SCONJ
what PRON
the DET
surgeon NOUN
suggested VERB
? PUNCT
> X
  SPACE
How ADV
long ADV
will AUX
such ADJ
pain NOUN
last ADJ
? PUNCT
  SPACE
Will AUX
the DET
pain NOUN
recur NOUN
in ADP
the DET
future?>No NOUN
one NOUN
can AUX
answer VERB
that DET
. PUNCT
  SPACE
If SCONJ
she PRON
gets VERB
reflex ADJ
sympathetic ADJ
dystrophy NOUN
, PUNCT
it PRON
could AUX
last VERB
forever ADV
. PUNCT
  SPACE
Just ADV
hope VERB
she PRON
does AUX
not PART
. PUNCT
  SPACE
Most ADJ
do AUX
n't PART
. PUNCT
> X
  SPACE
Do AUX
damaged VERB
( PUNCT
partially ADV
cut VERB
) PUNCT
tendons NOUN
heal VERB
completely ADV
and CCONJ
is AUX
all DET
of ADP
the DET
finger NOUN
> X
  SPACE
strength NOUN
regained VERB
? PUNCT
  SPACE
How ADV
long ADV
does AUX
it PRON
take VERB
for ADP
the DET
complete ADJ
healing NOUN
process?>Sometimes PUNCT
they PRON
do AUX
and CCONJ
sometimes ADV
they PRON
do AUX
n't PART
. PUNCT
  SPACE
You PRON
just ADV
have AUX
to PART
do AUX
thebest NOUN
job NOUN
you PRON
can AUX
reattaching VERB
and CCONJ
hope VERB
. PUNCT
  SPACE
You PRON
should AUX
know VERB
in ADP
a DET
fewmonths.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58969From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
1993Apr17.184305.18758@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Newsgroups PROPN
: PUNCT
sci.med VERB
   SPACE
Path PROPN
: PUNCT
news.larc.nasa.gov!saimiri.primate.wisc.edu!zaphod.mps.ohio-state.edu!uwm.edu!cs.utexas.edu!uunet!think.com!hsdndev!spdcc!dyer NUM
   SPACE
From ADP
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
   SPACE
Organization PROPN
: PUNCT
S.P. PROPN
Dyer PROPN
Computer PROPN
Consulting PROPN
, PUNCT
Cambridge PROPN
MA PROPN
   SPACE
References NOUN
: PUNCT
< X
20996.3049.uupcb@factory.com NUM
> X
< X
79727@cup.portal.com NUM
> X
   SPACE
Date NOUN
: PUNCT
Sat PROPN
, PUNCT
17 NUM
Apr PROPN
1993 NUM
18:43:05 NUM
GMT PROPN
   SPACE
Lines NOUN
: PUNCT
18 NUM
   SPACE
In ADP
article NOUN
< X
79727@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
I PRON
remember VERB
hearing VERB
a DET
few ADJ
years NOUN
back ADV
about ADP
a DET
new ADJ
therapy NOUN
for ADP
hyperactivity NOUN
   SPACE
> X
which PRON
involved VERB
aggressively ADV
eliminating VERB
artificial ADJ
coloring NOUN
and CCONJ
flavoring ADJ
   SPACE
> X
from ADP
the DET
diet NOUN
. PUNCT
  SPACE
The DET
theory NOUN
-- PUNCT
which PRON
was AUX
backed VERB
up ADP
by ADP
interesting ADJ
anecdotal ADJ
   SPACE
> X
results NOUN
-- PUNCT
is AUX
that SCONJ
certain ADJ
people NOUN
are AUX
just ADV
way ADV
more ADV
sensitive ADJ
to ADP
these DET
   SPACE
> X
chemicals NOUN
than SCONJ
other ADJ
people NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
remember VERB
any DET
connection NOUN
being AUX
made VERB
   SPACE
> X
with ADP
seizures NOUN
, PUNCT
but CCONJ
it PRON
certainly ADV
could AUX
n't PART
hurt VERB
to PART
try VERB
an DET
all ADV
- PUNCT
natural ADJ
diet NOUN
. PUNCT
   SPACE
Yeah INTJ
, PUNCT
the DET
" PUNCT
Feingold PROPN
Diet PROPN
" PUNCT
is AUX
a DET
load NOUN
of ADP
crap NOUN
. PUNCT
  SPACE
Children NOUN
diagnosed VERB
with ADP
ADD PROPN
   SPACE
who PRON
are AUX
placed VERB
on ADP
this DET
diet NOUN
show VERB
no DET
improvement NOUN
in ADP
their PRON
intellectual ADJ
and CCONJ
   SPACE
social ADJ
skills NOUN
, PUNCT
which PRON
in ADP
fact NOUN
continue VERB
to PART
decline VERB
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
parents NOUN
   SPACE
who PRON
are AUX
enthusiastic ADJ
about ADP
this DET
approach NOUN
lap VERB
it PRON
up ADP
at ADP
the DET
expense NOUN
of ADP
their PRON
   SPACE
children NOUN
's PART
development NOUN
. PUNCT
  SPACE
So ADV
much ADJ
for ADP
the DET
value NOUN
of ADP
" PUNCT
interesting ADJ
anecdotal ADJ
   SPACE
results NOUN
" PUNCT
. PUNCT
  SPACE
People NOUN
will AUX
believe VERB
anything PRON
if SCONJ
they PRON
want VERB
to PART
. PUNCT
   SPACE
-- PUNCT
    SPACE
Steve PROPN
Dyer PROPN
   SPACE
dyer@ursa-major.spdcc.com PROPN
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerThanks NOUN
for ADP
all DET
the DET
interest NOUN
in ADP
this DET
problem NOUN
of ADP
mine PRON
. PUNCT
I PRON
do AUX
n't PART
think VERB
itis NOUN
a DET
reaction NOUN
to ADP
sugar NOUN
or CCONJ
junk NOUN
food NOUN
per X
se X
since SCONJ
Kathryn PROPN
has AUX
never ADV
shownany VERB
signs NOUN
of ADP
hyperactivity NOUN
or CCONJ
changes NOUN
in ADP
behavior NOUN
in ADP
response NOUN
to ADP
food NOUN
. PUNCT
She PRON
has AUX
always ADV
been AUX
very ADV
calm ADJ
and CCONJ
dare VERB
I PRON
say VERB
, PUNCT
a DET
neat ADJ
, PUNCT
smart ADJ
kid NOUN
. PUNCT
The DET
fact NOUN
that SCONJ
this DET
happened VERB
while SCONJ
eating VERB
two NUM
sugar NOUN
coated VERB
cereals NOUN
madeby PROPN
Kellog PROPN
's PART
makes VERB
me PRON
think VERB
she PRON
might AUX
be AUX
having VERB
an DET
allergic ADJ
reaction NOUN
tosomething VERB
in ADP
the DET
coating NOUN
or CCONJ
the DET
cereals NOUN
. PUNCT
  SPACE
Of ADP
the DET
four NUM
of ADP
us PRON
in ADP
ourimmediate ADJ
family NOUN
, PUNCT
Kathryn PROPN
shows VERB
the DET
least ADJ
signs NOUN
of ADP
the DET
hay NOUN
fever NOUN
, PUNCT
runningnose VERB
, PUNCT
itchy ADJ
eyes NOUN
, PUNCT
etc X
. PUNCT
but CCONJ
we PRON
have AUX
a DET
lot NOUN
of ADP
allergies NOUN
in ADP
our PRON
family NOUN
historyincluding VERB
some DET
weird ADJ
food NOUN
allergies NOUN
- PUNCT
nuts NOUN
, PUNCT
mushrooms NOUN
. PUNCT
Anyway INTJ
, PUNCT
our PRON
next ADJ
trip NOUN
is AUX
to ADP
an DET
endocrinologist NOUN
to PART
check VERB
out ADP
the DET
bodychemistry NOUN
. PUNCT
  SPACE
But CCONJ
so ADV
far ADV
, PUNCT
no DET
more ADJ
sugar NOUN
coated VERB
cereals NOUN
and CCONJ
no DET
more ADJ
seizureseither NOUN
. PUNCT
  SPACE
Every DET
day NOUN
that PRON
goes VERB
by ADV
without ADP
one NOUN
makes VERB
me PRON
heave VERB
a DET
sigh ADJ
ofrelief NOUN
. PUNCT
  SPACE
Thanks INTJ
again.--Sharon ADP
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58970From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
ORGAN PROPN
DONATION NOUN
AND CCONJ
TRANSPLANTATION ADJ
FACT NOUN
SHEETIn NOUN
article NOUN
< X
1993Apr13.150018.641@lmpsbbs.comm.mot.com NUM
> X
dougb@ecs.comm.mot.com PROPN
writes:>My PROPN
wife NOUN
can AUX
not PART
donate VERB
blood NOUN
because SCONJ
she PRON
has AUX
been AUX
to ADP
a DET
malarial ADJ
region NOUN
> X
in ADP
the DET
past ADJ
three NUM
years NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
she PRON
tried VERB
to PART
have AUX
her PRON
bone NOUN
marrow NOUN
> X
typed VERB
and CCONJ
they PRON
would AUX
n't PART
even ADV
do AUX
that DET
! PUNCT
  SPACE
Why?>The PROPN
FDA PROPN
, PUNCT
I PRON
believe VERB
. PUNCT
  SPACE
Rules NOUN
say VERB
no DET
blood NOUN
or CCONJ
blood NOUN
products NOUN
donationsfrom ADP
anyone PRON
who PRON
has AUX
been AUX
in ADP
a DET
malarial ADJ
area NOUN
for ADP
3 NUM
years NOUN
. PUNCT
  SPACE
I PRON
was AUX
a DET
plateletdonor NOUN
until ADP
my PRON
Thailand PROPN
trip NOUN
and CCONJ
my PRON
blood NOUN
bank NOUN
was AUX
very ADV
disappointedto ADJ
find VERB
out ADP
they PRON
could AUX
n't PART
use VERB
me PRON
for ADP
3 NUM
years.>>When ADV
the DET
secretary PROPN
of ADP
state PROPN
asked VERB
me PRON
if SCONJ
I PRON
wanted VERB
to PART
donate VERB
my PRON
> X
organs NOUN
I PRON
said VERB
no INTJ
because SCONJ
I PRON
figured VERB
that SCONJ
no DET
one PRON
would AUX
want VERB
them PRON
> X
given VERB
my PRON
history NOUN
. PUNCT
  SPACE
Was AUX
I PRON
correct?>Not PRON
necessarily ADV
. PUNCT
  SPACE
The DET
same ADJ
rules NOUN
may AUX
not PART
apply VERB
to ADP
organ NOUN
donationas NOUN
to ADP
blood NOUN
donation NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
I PRON
'm AUX
sure ADJ
they PRON
don't.-- ADV
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58971From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Mississippi PROPN
River PROPN
water NOUN
and CCONJ
catfish NOUN
: PUNCT
safe?In PROPN
article NOUN
< X
1993Apr12.204033.126645@zeus.calpoly.edu NOUN
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>I've NOUN
been AUX
invited VERB
to PART
spend VERB
a DET
couple NOUN
weeks NOUN
this DET
summer NOUN
rafting VERB
down ADP
the DET
> X
Mississippi PROPN
. PUNCT
  SPACE
My PRON
journey NOUN
partners NOUN
want VERB
to PART
live VERB
off ADP
of ADP
river NOUN
water NOUN
and CCONJ
> X
catfish NOUN
along ADP
the DET
route NOUN
. PUNCT
  SPACE
Should AUX
I PRON
have AUX
any DET
concerns NOUN
about ADP
pollution NOUN
or CCONJ
> X
health NOUN
risks NOUN
in ADP
doing VERB
this?You'd PROPN
have AUX
to PART
purify VERB
the DET
river NOUN
water NOUN
first ADV
. PUNCT
  SPACE
I PRON
'm AUX
not PART
sure ADJ
how ADV
practicalthat ADJ
is AUX
with ADP
the DET
Mississippi PROPN
. PUNCT
  SPACE
You PRON
'd AUX
better ADV
check VERB
with ADP
health NOUN
agenciesalong PROPN
the DET
way NOUN
to PART
see VERB
if SCONJ
there PRON
are AUX
toxic ADJ
chemicals NOUN
in ADP
the DET
river NOUN
. PUNCT
  SPACE
Ifit PROPN
is AUX
just ADV
microorganisms NOUN
, PUNCT
those DET
can AUX
be AUX
filtered VERB
or CCONJ
killed VERB
, PUNCT
but CCONJ
youmay PROPN
need VERB
activated VERB
charcoal NOUN
or CCONJ
other ADJ
means NOUN
to PART
purify VERB
from ADP
chemicals NOUN
. PUNCT
Better ADV
be AUX
same ADJ
than SCONJ
sorry ADJ
. PUNCT
  SPACE
Obviously ADV
, PUNCT
drinking VERB
the DET
river NOUN
withoutprocessing VERB
it PRON
is AUX
likely ADJ
to PART
make VERB
you PRON
sick ADJ
from ADP
bacteria NOUN
and CCONJ
parasites.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58972From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residencyIn PROPN
article NOUN
< X
1993Apr12.231544.5990@cnsvax.uwec.edu ADJ
> X
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
I PRON
believe VERB
it PRON
is AUX
illegal ADJ
for ADP
a DET
residency NOUN
to PART
discriminate VERB
against ADP
FMGs PROPN
. PUNCT
  SPACE
IIs PROPN
that SCONJ
true ADJ
? PUNCT
  SPACE
I PRON
know VERB
some DET
that PRON
wo AUX
n't PART
even ADV
interview VERB
FMGs PROPN
. PUNCT
  SPACE
Most ADJ
programs NOUN
discriminate VERB
, PUNCT
in ADP
that DET
given VERB
an DET
FMG PROPN
equallyqualified VERB
as SCONJ
an DET
American ADJ
they PRON
will AUX
take VERB
the DET
American PROPN
. PUNCT
  SPACE
Whatrights NOUN
do AUX
they PRON
actually ADV
have AUX
? PUNCT
  SPACE
Does AUX
it PRON
matter VERB
if SCONJ
they PRON
areUS PROPN
citizens NOUN
( PUNCT
most ADJ
are AUX
not PART
) PUNCT
? PUNCT
  SPACE
We PRON
have AUX
had VERB
good ADJ
luck NOUN
with ADP
FMGsand NUM
bad ADJ
luck NOUN
. PUNCT
  SPACE
SOme DET
of ADP
our PRON
very ADV
best ADJ
residents NOUN
have AUX
been AUX
FMGs PROPN
. PUNCT
Also ADV
, PUNCT
our PRON
very ADV
worst ADJ
. PUNCT
  SPACE
As SCONJ
it PRON
turns VERB
out ADP
, PUNCT
the DET
worst ADJ
FMGs NOUN
are AUX
oftenUS VERB
citizens NOUN
that PRON
studied VERB
in ADP
off ADJ
- PUNCT
shore NOUN
medical ADJ
schools NOUN
. PUNCT
  SPACE
Of ADP
the5 PROPN
residents NOUN
fired VERB
for ADP
incompetence NOUN
in ADP
the DET
12 NUM
years NOUN
I PRON
've AUX
been AUX
here ADV
in ADP
my PRON
department NOUN
, PUNCT
all DET
have AUX
been AUX
FMGs PROPN
. PUNCT
  SPACE
3 NUM
were AUX
US PROPN
citizens NOUN
who PRON
studied VERB
in ADP
Guadalajara PROPN
, PUNCT
1 NUM
was AUX
a DET
US PROPN
citizen NOUN
but CCONJ
was AUX
trained VERB
in ADP
the DET
Soviet PROPN
Union PROPN
, PUNCT
and CCONJ
one NUM
was AUX
Philipina PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
all DET
are AUX
now ADV
practicing VERB
medicinesomewhere ADV
, PUNCT
3 NUM
of ADP
them PRON
in ADP
Neurology PROPN
after ADP
having VERB
been AUX
picked VERB
up ADP
by ADP
other ADJ
programs NOUN
, PUNCT
1 NUM
in ADP
psychiatry NOUN
, PUNCT
and CCONJ
the DET
other ADJ
in ADP
emergency NOUN
medicine.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58973From NUM
: PUNCT
cash@convex.com X
( PUNCT
Peter PROPN
Cash)Subject PROPN
: PUNCT
" PUNCT
liver NOUN
" PUNCT
spotsWhat NOUN
causes VERB
those DET
little ADJ
brown ADJ
spots NOUN
on ADP
older ADJ
people NOUN
's PART
hands NOUN
? PUNCT
Are AUX
theycalled VERB
" PUNCT
liver ADJ
spots NOUN
" PUNCT
because SCONJ
they PRON
're AUX
sort ADV
of ADV
liver NOUN
- PUNCT
colored ADJ
, PUNCT
or CCONJ
do AUX
theyindicate VERB
some DET
actual ADJ
liver NOUN
dysfunction?-- PROPN
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PUNCT
             SPACE
| PROPN
      SPACE
Die PROPN
Welt PROPN
ist NOUN
alles NOUN
, PUNCT
was AUX
Zerfall PROPN
ist NOUN
. PUNCT
     SPACE
|Peter PROPN
Cash NOUN
   SPACE
| PROPN
       SPACE
( PUNCT
apologies NOUN
to ADP
Ludwig PROPN
Wittgenstein PROPN
) PUNCT
      SPACE
|cash@convex.com~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58974From NUM
: PUNCT
thomasd@tps X
. PUNCT
COM PROPN
( PUNCT
Thomas PROPN
W. PROPN
Day)Subject PROPN
: PUNCT
Re ADP
: PUNCT
_ PROPN
The DET
Andromeda PROPN
Strain_In PROPN
article NOUN
< X
C5pvp5.82L@chinet.chi.il.us PROPN
> X
dhartung@chinet.chi.il.us NOUN
( PUNCT
Dan PROPN
Hartung PROPN
) PUNCT
writes:>Just PROPN
had AUX
the DET
opportunity NOUN
to PART
watch VERB
this DET
flick NOUN
on ADP
A&E PROPN
-- PUNCT
some DET
15 NUM
years NOUN
> X
since SCONJ
I PRON
saw VERB
it PRON
last ADJ
. PUNCT
  SPACE
Wow INTJ
, PUNCT
the DET
WWII PROPN
channel NOUN
did AUX
something PRON
not PART
- PUNCT
WWII?>I PROPN
was AUX
very ADV
interested ADJ
in ADP
the DET
technology NOUN
demonstrated VERB
in ADP
this DET
film NOUN
> X
for ADP
handling VERB
infectious ADJ
diseases NOUN
( PUNCT
and CCONJ
similar ADJ
toxic ADJ
substances).>Clearly ADV
they PRON
" PUNCT
faked VERB
" PUNCT
a DET
lot NOUN
of ADP
the DET
computer NOUN
& CCONJ
robotic NOUN
technology;>certainly ADV
at ADP
the DET
time NOUN
it PRON
was AUX
made VERB
most ADJ
of ADP
that DET
was AUX
science NOUN
fiction NOUN
> X
itself PRON
, PUNCT
let VERB
alone ADV
the DET
idea NOUN
of ADP
a DET
" PUNCT
space NOUN
germ NOUN
" PUNCT
. PUNCT
  SPACE
The DET
graphics NOUN
capabilities NOUN
of ADP
the DET
computers NOUN
were AUX
very ADV
faked ADJ
for ADP
movie NOUN
audiences NOUN
who PRON
have AUX
not PART
ability NOUN
or CCONJ
patience NOUN
with ADP
numbers NOUN
. PUNCT
  SPACE
The DET
book NOUN
was AUX
more ADV
realistic ADJ
in ADP
that DET
respect NOUN
. PUNCT
  SPACE
In ADP
all DET
respects NOUN
, PUNCT
actually ADV
. PUNCT
  SPACE
The DET
robotics NOUN
are AUX
still ADV
out SCONJ
of ADP
range NOUN
, PUNCT
but CCONJ
not PART
impossible.>Quite PROPN
coincidentally ADV
[ PUNCT
actually ADV
this DET
is AUX
what PRON
got VERB
me PRON
wanted VERB
to PART
see VERB
> X
the DET
movie NOUN
again ADV
] PUNCT
I PRON
watched VERB
a DET
segment NOUN
on ADP
the DET
otherwise ADV
awful ADJ
_ PROPN
How'd NOUN
> X
They PRON
Do AUX
That DET
? PUNCT
_ DET
dealing VERB
with ADP
a DET
disease NOUN
researcher NOUN
at ADP
the DET
CDC PROPN
's PART
top ADJ
> X
lab NOUN
. PUNCT
  SPACE
There PRON
was AUX
description NOUN
of ADP
the DET
elaborate ADJ
security NOUN
measures NOUN
taken VERB
> X
so SCONJ
that DET
building NOUN
will AUX
never ADV
be AUX
" PUNCT
cracked VERB
" PUNCT
so ADV
to PART
speak VERB
by ADP
man NOUN
or CCONJ
> X
nature NOUN
( PUNCT
short ADJ
of ADP
deliberate ADJ
bombing NOUN
from ADP
the DET
air NOUN
, PUNCT
perhaps ADV
) PUNCT
. PUNCT
  SPACE
And CCONJ
> X
the DET
researchers NOUN
used VERB
" PUNCT
spacesuits NOUN
" PUNCT
similar ADJ
to ADP
that DET
in ADP
the DET
film NOUN
. PUNCT
SF PROPN
( PUNCT
and CCONJ
I"ve PROPN
always ADV
wondered VERB
how ADV
Crichton PROPN
escapes VERB
this DET
classification NOUN
) PUNCT
is AUX
usually ADV
ahead ADV
of ADP
science NOUN
in ADP
both CCONJ
prediction NOUN
and CCONJ
precaution NOUN
. PUNCT
  SPACE
NASA PROPN
's PART
decontaimination NOUN
processes NOUN
were AUX
supposedly ADV
taken VERB
to PART
prevent VERB
SF PROPN
story NOUN
disasters NOUN
. PUNCT
  SPACE
I PRON
mean VERB
, PUNCT
NASA PROPN
scientists NOUN
were AUX
often ADV
SF PROPN
readers NOUN
( PUNCT
and CCONJ
sometimes ADV
writers NOUN
) PUNCT
and CCONJ
felt VERB
pre ADJ
- VERB
warned VERB
by ADP
their PRON
reading.>I'm PROPN
curious ADJ
what PRON
people NOUN
think VERB
about ADP
this DET
film NOUN
-- PUNCT
short ADJ
of ADP
" PUNCT
silly".>Is PROPN
such DET
a DET
facility NOUN
technically ADV
feasible ADJ
today NOUN
? PUNCT
  SPACE
I PRON
think VERB
the DET
film NOUN
still ADV
holds VERB
up ADP
among ADP
the DET
best ADJ
of ADP
SF PROPN
films NOUN
, PUNCT
but CCONJ
that DET
is AUX
n't PART
saying VERB
a DET
whole ADJ
lot.>As PROPN
far ADV
as SCONJ
the DET
plot NOUN
, PUNCT
and CCONJ
the DET
crystalline ADJ
structure NOUN
that PRON
is AUX
not PART
Life NOUN
> X
As SCONJ
We PRON
Know VERB
It PRON
, PUNCT
that DET
's AUX
a DET
whole ADJ
' PUNCT
nother NOUN
argument NOUN
for ADP
rec.arts.sf.tech>or PROPN
something PRON
. PUNCT
Yep INTJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58975From NUM
: PUNCT
calzone@athena.mit.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics)>Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
it PRON
will AUX
be AUX
possible ADJ
to PART
disassemble VERB
and CCONJ
> X
re VERB
- VERB
assemble VERB
our PRON
bodies NOUN
at ADP
the DET
molecular ADJ
level NOUN
. PUNCT
  SPACE
Not PART
only ADV
will AUX
flawless VERB
> X
cosmetic ADJ
surgery NOUN
be AUX
possible ADJ
, PUNCT
but CCONJ
flawless ADJ
cosmetic ADJ
PSYCHOSURGERY.>>What NUM
will AUX
it PRON
be AUX
like SCONJ
to PART
store VERB
all DET
the DET
prices NOUN
of ADP
shelf NOUN
- PUNCT
priced VERB
bar NOUN
- PUNCT
coded VERB
> X
goods NOUN
in ADP
your PRON
head NOUN
, PUNCT
and CCONJ
catch VERB
all DET
the DET
errors NOUN
they PRON
make VERB
in ADP
the DET
store's NOUN
> X
favor NOUN
at ADP
SAFEWAY PROPN
? PUNCT
  SPACE
What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
mentally ADV
edit VERB
and CCONJ
spell->check PROPN
your PRON
responses NOUN
to ADP
the DET
questions NOUN
posed VERB
by ADP
a DET
phone NOUN
caller NOUN
selling NOUN
> X
VACATION PROPN
TIME PROPN
- PUNCT
SHARE NOUN
OPTIONS?You PUNCT
are AUX
absolutely ADV
daft ADJ
. PUNCT
  SPACE
No DET
flame NOUN
required VERB
. PUNCT
  SPACE
You PRON
lack VERB
a DET
brain NOUN
. PUNCT
> X
... PUNCT
[ PUNCT
sic] NOUN
... PUNCT
>Memes NOUN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
genes NOUN
> X
which PRON
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
Well INTJ
... PUNCT
at ADP
least ADJ
you PRON
're AUX
educated VERB
, PUNCT
it PRON
seems VERB
. PUNCT
  SPACE
But CCONJ
give VERB
creditwhere ADV
credit NOUN
is AUX
due ADJ
: PUNCT
to ADP
Richard PROPN
Dawkin(s PROPN
? PUNCT
) PUNCT
( PUNCT
the DET
meme NOUN
is AUX
a DET
meme NOUN
he PRON
invented)-zoneNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58976From NUM
: PUNCT
sheffner@encore.com X
( PUNCT
Steve PROPN
Heffner)Subject PROPN
: PUNCT
HerniaA PROPN
bit NOUN
more ADJ
than SCONJ
a DET
year NOUN
ago ADV
, PUNCT
a DET
hernia NOUN
in ADP
my PRON
right ADJ
groin NOUN
wasdiscovered VERB
. PUNCT
  SPACE
It PRON
had AUX
produced VERB
a DET
dull ADJ
pain NOUN
in ADP
that DET
area NOUN
. PUNCT
  SPACE
The DET
herniawas NOUN
repaired VERB
using VERB
the DET
least ADV
intrusive ADJ
( PUNCT
orthoscopic PROPN
? PUNCT
) PUNCT
method NOUN
and CCONJ
a"plug PROPN
and CCONJ
patch" ADV
. PUNCT
The DET
doctor NOUN
considered VERB
the DET
procedure NOUN
a DET
success NOUN
. PUNCT
A DET
few ADJ
months NOUN
later ADV
the DET
same ADJ
pain NOUN
returned VERB
. PUNCT
  SPACE
The DET
doctor NOUN
said VERB
thathe DET
could AUX
find VERB
nothing PRON
wrong ADJ
in ADP
the DET
area NOUN
of ADP
the DET
hernia PROPN
repair NOUN
. PUNCT
Now ADV
the DET
pain NOUN
occurs VERB
more ADV
often ADV
. PUNCT
  SPACE
My PRON
GP PROPN
could AUX
n't PART
identify VERB
anyspecific ADJ
problem NOUN
. PUNCT
  SPACE
The DET
surgen NOUN
who PRON
performed VERB
the DET
original ADJ
procedurenow NOUN
says VERB
that SCONJ
yes INTJ
there PRON
is AUX
a DET
" PUNCT
new ADJ
" PUNCT
hernia NOUN
in ADP
the DET
same ADJ
area NOUN
and CCONJ
hesaid VERB
that SCONJ
he PRON
has AUX
to PART
cut VERB
into ADP
the DET
area NOUN
for ADP
the DET
repair NOUN
this DET
time NOUN
. PUNCT
My PRON
question NOUN
to ADP
the DET
net NOUN
: PUNCT
  SPACE
Is AUX
there PRON
a DET
nonintrusive ADJ
method NOUN
todetermine NOUN
if SCONJ
in ADP
fact NOUN
there PRON
is AUX
a DET
hernia NOUN
or CCONJ
if SCONJ
the DET
pain NOUN
is AUX
fromsomething VERB
else?Steve NOUN
HeffnerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58977From NUM
: PUNCT
davpa@ida.liu.se PROPN
( PUNCT
David PROPN
Partain)Subject PROPN
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?Someone NOUN
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
somethingto NOUN
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highlyallergic ADJ
to ADP
yeast NOUN
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADV
about ADP
it?Thanks.-- ADV
David PROPN
Partain PROPN
                   SPACE
| PROPN
  SPACE
davpa@ida.liu.seIDA PROPN
, PUNCT
University PROPN
of ADP
Link\"oping PROPN
  SPACE
| ADP
  SPACE
work NOUN
phone NOUN
: PUNCT
  SPACE
+46 PROPN
( PUNCT
013 NUM
) PUNCT
28 NUM
26 NUM
08S-581 NUM
83 NUM
Link\"oping NOUN
, PUNCT
Sweden PROPN
    SPACE
| CCONJ
  SPACE
telefax NOUN
: PUNCT
     SPACE
+46 NOUN
( PUNCT
013 NUM
) PUNCT
28 NUM
26 NUM
66Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58978From NUM
: PUNCT
jil@donuts0.uucp PROPN
( PUNCT
Jamie PROPN
Lubin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
19671@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:>>>>Is PROPN
there ADV
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an>>overall DET
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most>>people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the>>other PROPN
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this?>>There NOUN
is AUX
eye NOUN
dominance NOUN
same ADJ
as SCONJ
handedness NOUN
( PUNCT
and CCONJ
usually ADV
for ADP
the DET
> X
same ADJ
side NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
refractive ADJ
error NOUN
, PUNCT
however ADV
. PUNCT
I PRON
recall VERB
reading VERB
/ PUNCT
seeing VERB
that SCONJ
former ADJ
baseball NOUN
star NOUN
Chris PROPN
Chambliss PROPN
' PART
hittingabilities NOUN
were AUX
( PUNCT
in ADP
part NOUN
) PUNCT
attributed VERB
to ADP
a DET
combination NOUN
of ADP
left ADJ
- PUNCT
handedness NOUN
& CCONJ
right ADJ
- PUNCT
eye NOUN
dominance NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58979From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
1993Apr18.175802.28548@clpd.kodak.com CCONJ
> X
Rich PROPN
Young,young@serum.kodak.com PROPN
writes VERB
: PUNCT
Stuff NOUN
deleted VERB
> X
	  SPACE
... PUNCT
have AUX
to PART
> X
	  SPACE
consume VERB
unrealistically ADV
large ADJ
quantities NOUN
of ADP
barbecued VERB
meat NOUN
at ADP
a DET
> X
	  SPACE
time NOUN
. PUNCT
"I NOUN
have AUX
to PART
confess VERB
that SCONJ
this DET
is AUX
one NUM
of ADP
my PRON
few ADJ
unfulfilled ADJ
ambitions NOUN
. PUNCT
No ADV
matter ADV
how ADV
much ADV
I PRON
eat VERB
, PUNCT
it PRON
still ADV
seems VERB
realistic ADJ
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58980From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
quality NOUN
control NOUN
in ADP
medicineIn PROPN
article NOUN
< X
9307@blue.cis.pitt.edu NUM
> X
Kenneth PROPN
Gilbert,kxgst1+@pitt.edu PROPN
writes:>situation PROPN
. PUNCT
  SPACE
QA PROPN
activities NOUN
are AUX
a DET
routine ADJ
part NOUN
of ADP
every DET
hospital's PROPN
> X
administrative ADJ
function NOUN
and CCONJ
are AUX
required VERB
by ADP
accreditation NOUN
agencies NOUN
. PUNCT
There ADV
> X
are AUX
even ADV
entire ADJ
publications NOUN
devoted VERB
to ADP
QA PROPN
issues NOUN
. PUNCT
Indeed ADV
. PUNCT
I PRON
spend VERB
about ADV
60 NUM
% NOUN
of ADP
my PRON
time NOUN
dealing VERB
with ADP
quality NOUN
stuff NOUN
. PUNCT
Itis VERB
a DET
hot ADJ
number NOUN
. PUNCT
Two NUM
journals NOUN
worth ADJ
looking VERB
at ADP
are:-Quality PROPN
Review PROPN
Bulletin PROPN
. PUNCT
Pub PROPN
: PUNCT
Joint PROPN
Commission PROPN
on ADP
Accreditation PROPN
ofHealthcare PROPN
Organizations PROPN
, PUNCT
one NUM
Renaissance PROPN
boulevard NOUN
, PUNCT
OakbrookTerrace PROPN
, PUNCT
IL PROPN
60181Quality PROPN
in ADP
Health PROPN
Care PROPN
. PUNCT
BMJ PROPN
Publishing PROPN
Group PROPN
, PUNCT
Box PROPN
No NOUN
. PUNCT
560B NUM
, PUNCT
Kennebunkport PROPN
, PUNCT
ME PROPN
04046Don NUM
Mackie NOUN
- PUNCT
his PRON
opinionsUM PROPN
Anesthesiology PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58981From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)-*----I PUNCT
think VERB
that SCONJ
part NOUN
of ADP
the DET
problem NOUN
is AUX
that SCONJ
I PRON
have AUX
proposed VERB
adefinition NOUN
of ADP
science NOUN
that PRON
I PRON
intended VERB
to PART
be AUX
interpreted VERB
broadlyand NOUN
that PRON
Lee PROPN
Lady PROPN
has AUX
interpreted VERB
fairly ADV
narrowly ADV
. PUNCT
  SPACE
My PRON
definitionis NOUN
this DET
: PUNCT
Science NOUN
is AUX
the DET
investigation NOUN
of ADP
the DET
empirical NOUN
that PRON
avoidsmistakes VERB
in ADP
reasoning NOUN
and CCONJ
methodology NOUN
discovered VERB
from ADP
previouswork NOUN
. PUNCT
  SPACE
Lee PROPN
Lady PROPN
writes VERB
: PUNCT
> X
I PRON
do AUX
n't PART
think VERB
that SCONJ
science NOUN
should AUX
be AUX
defined VERB
in ADP
a DET
way NOUN
that PRON
some DET
> NOUN
of ADP
the DET
activities NOUN
that PRON
lead VERB
to ADP
really ADV
important ADJ
science NOUN
--- PUNCT
namely ADV
> X
thinking NOUN
and CCONJ
informal ADJ
exploration NOUN
--- PUNCT
are AUX
not PART
recognized VERB
as SCONJ
> X
scientific ADJ
work NOUN
. PUNCT
  SPACE
Unless SCONJ
one NUM
classifies VERB
" PUNCT
thinking VERB
and CCONJ
informal ADJ
exploration NOUN
" PUNCT
as SCONJ
amistake ADJ
, PUNCT
they PRON
fall VERB
under ADP
my PRON
definition NOUN
. PUNCT
  SPACE
I PRON
hope VERB
no DET
one NUM
wouldconsider NOUN
speculation NOUN
, PUNCT
thinking NOUN
, PUNCT
and CCONJ
informal ADJ
exploration NOUN
asunscientific NOUN
. PUNCT
  SPACE
In ADP
article NOUN
< X
C5nAsF.MH7@news NOUN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
lady@uhunix.uhcc.Hawaii.Edu NOUN
( PUNCT
Lee PROPN
Lady PROPN
) PUNCT
writes VERB
: PUNCT
> X
Seriously ADV
, PUNCT
I PRON
'm AUX
not PART
sure ADJ
whether SCONJ
I PRON
misjudged VERB
you PRON
or CCONJ
not PART
, PUNCT
in ADP
one NUM
respect NOUN
. PUNCT
  SPACE
> X
I PRON
still ADV
have AUX
a DET
major ADJ
problem NOUN
, PUNCT
though ADV
, PUNCT
with ADP
your PRON
insistence NOUN
that SCONJ
science NOUN
> X
is AUX
mainly ADV
about ADP
avoiding VERB
mistakes NOUN
. PUNCT
... PUNCT
Here ADV
is AUX
where ADV
I PRON
think VERB
we PRON
are AUX
talking VERB
at ADP
cross NOUN
- NOUN
purposes NOUN
. PUNCT
  SPACE
It PRON
is AUX
notclear ADJ
to ADP
me PRON
that SCONJ
the DET
kind NOUN
of ADP
definition NOUN
I PRON
have AUX
proposed VERB
should AUX
betaken VERB
as SCONJ
describing VERB
what PRON
" PUNCT
science NOUN
is AUX
mainly ADV
about ADP
. PUNCT
" PUNCT
  SPACE
Consider VERB
, PUNCT
for ADP
example NOUN
, PUNCT
a DET
definition NOUN
of ADP
invertebrates NOUN
as SCONJ
all DET
animals NOUN
lackinga PROPN
backbone NOUN
. PUNCT
  SPACE
This DET
fairly ADV
tells VERB
what PRON
is AUX
an DET
invertebrate NOUN
andwhat NOUN
is AUX
not PART
an DET
invertebrate NOUN
, PUNCT
but CCONJ
it PRON
hardly ADV
tells VERB
you PRON
whatinvertebrates NOUN
are AUX
all ADV
about ADP
. PUNCT
  SPACE
One PRON
can AUX
read VERB
this DET
definition NOUN
andstill ADV
not PART
know VERB
that SCONJ
95 NUM
% NOUN
of ADP
all DET
animal NOUN
species NOUN
are AUX
invertebrates NOUN
, PUNCT
that PRON
invertebrates NOUN
possess VERB
a DET
remarkably ADV
broad ADJ
range NOUN
of ADP
form NOUN
, PUNCT
thatsome NOUN
invertebrate NOUN
groups NOUN
-- PUNCT
such ADJ
as SCONJ
insects NOUN
and CCONJ
nematodes NOUN
-- PUNCT
areubiquitous ADJ
in ADP
all DET
ecosystems NOUN
, PUNCT
etc X
. PUNCT
  SPACE
In ADP
short ADJ
, PUNCT
knowing VERB
thedefinition NOUN
of ADP
invertebrates NOUN
does AUX
* PUNCT
not PART
* PUNCT
tell VERB
one NUM
what PRON
they PRON
are"mainly ADV
about ADP
. PUNCT
"The PUNCT
misunderstanding NOUN
here ADV
is AUX
my PRON
fault NOUN
. PUNCT
  SPACE
I PRON
did AUX
not PART
give VERB
sufficientcontext VERB
for ADP
people NOUN
to PART
understand VERB
my PRON
proposed VERB
definition NOUN
. PUNCT
> X
Okay INTJ
, PUNCT
so ADV
let VERB
's PRON
see VERB
if SCONJ
we PRON
agree VERB
on ADP
this DET
: PUNCT
FIRST ADJ
of ADP
all DET
, PUNCT
there PRON
are AUX
degrees NOUN
> X
of ADP
certainty PROPN
. PUNCT
  SPACE
It PRON
might AUX
be AUX
appropriate ADJ
, PUNCT
for ADP
instance NOUN
, PUNCT
to PART
demand VERB
carefully ADV
> X
controlled VERB
trials NOUN
before ADP
we PRON
accept VERB
as SCONJ
absolute ADJ
scientific ADJ
truth NOUN
( PUNCT
to ADP
the DET
> X
extent NOUN
that SCONJ
there PRON
is AUX
any DET
such ADJ
thing NOUN
) PUNCT
the DET
effectiveness NOUN
of ADP
a DET
certain ADJ
> X
treatment NOUN
. PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
highly ADV
favorable ADJ
clinical ADJ
experience NOUN
, PUNCT
even ADV
> X
if SCONJ
uncontrolled ADJ
, PUNCT
can AUX
be AUX
adequate ADJ
to PART
justify VERB
a DET
* PUNCT
preliminary ADJ
* PUNCT
judgement NOUN
that SCONJ
> X
a DET
treatment NOUN
is AUX
useful ADJ
. PUNCT
... PUNCT
> X
> X
SECONDLY PROPN
, PUNCT
it PRON
makes VERB
sense NOUN
to PART
be AUX
more ADV
tolerant ADJ
in ADP
our PRON
standards NOUN
of ADP
> X
evidence NOUN
for ADP
a DET
pronounced ADJ
effect NOUN
than SCONJ
for ADP
one NUM
that PRON
is AUX
marginal ADJ
. PUNCT
  SPACE
I PRON
agree VERB
on ADP
both DET
counts NOUN
. PUNCT
  SPACE
As SCONJ
an DET
example NOUN
of ADP
the DET
second ADJ
, PUNCT
it PRON
would AUX
onlytake VERB
a DET
few ADJ
cases NOUN
of ADP
curing VERB
rabies NOUN
to PART
convince VERB
most ADV
veterinariansthat ADP
a DET
treatment NOUN
was AUX
effective ADJ
, PUNCT
despite SCONJ
a DET
lack NOUN
of ADP
controls NOUN
. PUNCT
  SPACE
As SCONJ
to ADP
the DET
first ADJ
, PUNCT
I PRON
do AUX
not PART
think VERB
it PRON
is AUX
useful ADJ
to PART
talk VERB
about"absolute ADJ
scientific ADJ
truth NOUN
. PUNCT
" PUNCT
  SPACE
I PRON
think VERB
it PRON
is AUX
more ADV
useful ADJ
to PART
talkabout VERB
the DET
kinds NOUN
of ADP
evidence NOUN
that SCONJ
various ADJ
claims NOUN
have AUX
and CCONJ
thekinds NOUN
of ADP
evidence NOUN
IN ADP
PARTICULAR NOUN
FIELDS PROPN
that SCONJ
in ADP
the DET
past ADJ
haveproven PROPN
faulty ADJ
or CCONJ
reliable ADJ
. PUNCT
  SPACE
The DET
latter ADJ
is AUX
obviously ADV
a DET
matter NOUN
ofdegree NOUN
, PUNCT
and CCONJ
in ADP
each DET
field NOUN
, PUNCT
practitioners NOUN
try VERB
to PART
discover VERB
therelevance NOUN
of ADP
different ADJ
kinds NOUN
of ADP
evidence NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
primary ADJ
mistakes NOUN
that PRON
marks VERB
the DET
advocacy NOUN
of ADP
an DET
idea NOUN
aspsuedo NOUN
- PUNCT
science PROPN
is AUX
that SCONJ
the DET
advocacy NOUN
lacks VERB
any DET
sense NOUN
of ADP
proportionregarding VERB
the DET
kinds NOUN
of ADP
evidence NOUN
related VERB
to ADP
the DET
proposed VERB
claim NOUN
, PUNCT
the DET
kinds NOUN
of ADP
evidence NOUN
that PRON
are AUX
actually ADV
relevant ADJ
to ADP
it PRON
, PUNCT
and CCONJ
thehistorical ADJ
reasons NOUN
in ADP
the DET
field NOUN
that SCONJ
certain ADJ
kinds NOUN
of ADP
evidenceare NOUN
given VERB
more ADJ
weight NOUN
than SCONJ
others NOUN
. PUNCT
  SPACE
It PRON
is AUX
perfectly ADV
alright ADJ
tospeculate NOUN
. PUNCT
  SPACE
I PRON
have AUX
read VERB
quite DET
a DET
few ADJ
refereed NOUN
papers NOUN
thatspeculated VERB
left ADJ
and CCONJ
right ADJ
. PUNCT
  SPACE
But CCONJ
the DET
authors NOUN
were AUX
careful ADJ
toidentify VERB
the DET
notions NOUN
as SCONJ
speculative ADJ
, PUNCT
to PART
list VERB
what PRON
little ADJ
evidencewas NOUN
presently ADV
available ADJ
for ADP
them PRON
, PUNCT
and CCONJ
to PART
describe VERB
how ADV
researchcould ADV
proceed VERB
to PART
either CCONJ
put VERB
the DET
notion NOUN
on ADP
more ADJ
firm ADJ
footing NOUN
or CCONJ
touncover VERB
its PRON
problems NOUN
. PUNCT
  SPACE
Often ADV
what PRON
distinguishes VERB
whether SCONJ
a DET
paperof NOUN
this DET
sort NOUN
passes VERB
muster NOUN
is AUX
the DET
thoughtfulness NOUN
with ADP
which PRON
theauthor NOUN
sets VERB
the DET
context NOUN
and CCONJ
paves VERB
the DET
way NOUN
for ADP
future ADJ
work NOUN
. PUNCT
  SPACE
( PUNCT
Itis NOUN
in ADP
this DET
area NOUN
that SCONJ
many ADJ
proponents NOUN
of ADP
speculative ADJ
ideas NOUN
fail VERB
. PUNCT
) PUNCT
> X
The DET
folks NOUN
over ADP
in ADP
sci.psychology PROPN
have AUX
a DET
hundred NUM
and CCONJ
one NOUN
excuses NOUN
not PART
to PART
> X
make VERB
this DET
simple ADJ
test NOUN
. PUNCT
  SPACE
They PRON
claim VERB
that SCONJ
only ADV
an DET
elaborate ADJ
outcome NOUN
study NOUN
> X
will AUX
be AUX
satisfactory ADJ
--- PUNCT
a DET
study NOUN
of ADP
the DET
sort NOUN
that PRON
NLP PROPN
practitioners NOUN
, PUNCT
> X
many ADJ
of ADP
whom PRON
make VERB
a DET
barely ADV
marginal ADJ
living NOUN
from ADP
their PRON
practice NOUN
, PUNCT
can AUX
ill VERB
> X
afford VERB
to PART
do AUX
. PUNCT
  SPACE
( PUNCT
Most ADJ
of ADP
them PRON
are AUX
also ADV
just ADV
plain ADJ
not PART
interested ADJ
, PUNCT
because SCONJ
> X
the DET
whole ADJ
idea NOUN
seems VERB
frivolous ADJ
. PUNCT
  SPACE
And CCONJ
since SCONJ
they PRON
're AUX
not PART
part NOUN
of ADP
the DET
> X
scientific ADJ
establishment NOUN
, PUNCT
they PRON
have AUX
no DET
tangible ADJ
rewards NOUN
to PART
gain VERB
> X
from ADP
scientific ADJ
acceptance NOUN
. PUNCT
) PUNCT
I PRON
think VERB
a DET
lot NOUN
of ADP
scientists NOUN
steer VERB
away ADV
from ADP
things NOUN
that PRON
--deserving PUNCT
or CCONJ
not PART
-- PUNCT
garner VERB
a DET
patina NOUN
of ADP
kookiness NOUN
. PUNCT
  SPACE
Whenproponents NOUN
of ADP
some DET
practice NOUN
see VERB
no DET
value NOUN
in ADP
more ADJ
carefulinvestigation NOUN
of ADP
that DET
practice NOUN
, PUNCT
that PRON
sets VERB
alarms NOUN
ringing VERB
in ADP
manyresearchers NOUN
' PART
minds NOUN
. PUNCT
  SPACE
This DET
is AUX
unfortunate ADJ
, PUNCT
because SCONJ
there PRON
is AUX
undoubtedly ADV
someintersection NOUN
between ADP
things NOUN
that PRON
are AUX
worth ADJ
investigating VERB
andthings NOUN
that PRON
are AUX
advocated VERB
by ADP
those DET
who PRON
seem VERB
careless ADV
orunreasonable ADJ
in ADP
their PRON
advocacy NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
I PRON
canunderstand VERB
why ADV
many ADJ
scientists NOUN
would AUX
just ADV
as ADV
soon ADV
select ADJ
otherdirections NOUN
for ADP
research NOUN
. PUNCT
  SPACE
As SCONJ
Gordon PROPN
Banks PROPN
has AUX
pointed VERB
out ADP
, PUNCT
no DET
onewants NOUN
to PART
become VERB
this DET
generation NOUN
's PART
Rhine PROPN
. PUNCT
> X
One NUM
academic NOUN
in ADP
sci.psychology PROPN
said VERB
that SCONJ
it PRON
would AUX
be AUX
completely ADV
> X
unscientific ADJ
for ADP
him PRON
to PART
test VERB
the DET
phobia PROPN
cure NOUN
since SCONJ
it PRON
has AUX
n't PART
> X
been AUX
described VERB
in ADP
a DET
scientific ADJ
journal NOUN
. PUNCT
... PUNCT
I PRON
think VERB
this DET
is AUX
absurd ADJ
. PUNCT
  SPACE
> X
Actually ADV
, PUNCT
at ADV
least ADV
one NUM
fairly ADV
careful ADJ
academic ADJ
study NOUN
has AUX
been AUX
done VERB
> X
( PUNCT
with ADP
favorable ADJ
results NOUN
) PUNCT
, PUNCT
but CCONJ
it PRON
's AUX
apparently ADV
not PART
acceptable ADJ
because SCONJ
> X
it PRON
's AUX
a DET
doctoral ADJ
dissertation NOUN
and CCONJ
not PART
published VERB
in ADP
a DET
refereed NOUN
journal NOUN
. PUNCT
I PRON
wonder VERB
why ADV
the DET
results NOUN
were AUX
not PART
published VERB
. PUNCT
  SPACE
In ADP
my PRON
field NOUN
, PUNCT
dissertation NOUN
results NOUN
are AUX
typically ADV
summarized VERB
in ADP
papers NOUN
that PRON
aresubmitted VERB
to ADP
journals NOUN
. PUNCT
  SPACE
Often ADV
the DET
papers NOUN
are AUX
accepted VERB
forpublication NOUN
before ADP
the DET
dissertation NOUN
is AUX
finished VERB
. PUNCT
  SPACE
( PUNCT
This DET
certainlyeases VERB
one PRON
's PART
defense.)Finally ADV
, PUNCT
I PRON
hope VERB
Lee PROPN
Lady PROPN
will AUX
forgive VERB
me PRON
from ADP
commenting VERB
eitheron PROPN
NLP PROPN
or CCONJ
the DET
discussion NOUN
of ADP
it PRON
in ADP
sci.psychology PROPN
. PUNCT
  SPACE
I PRON
know VERB
littleabout ADV
either ADV
and CCONJ
so ADV
have AUX
nothing PRON
to PART
offer VERB
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58982From NUM
: PUNCT
proberts@informix.com X
( PUNCT
Paul PROPN
Roberts)Subject VERB
: PUNCT
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?In PUNCT
article NOUN
< X
1993Apr12.165410.4206@kestrel.edu NUM
> X
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes:>>I VERB
recall NOUN
reading NOUN
somewhere ADV
, PUNCT
during ADP
my PRON
youth NOUN
, PUNCT
in ADP
some DET
science NOUN
popularization NOUN
> X
book NOUN
, PUNCT
that SCONJ
whyle NOUN
isotope NOUN
changes NOUN
do AUX
n't PART
normally ADV
affect VERB
chemistry NOUN
, PUNCT
a DET
consumption NOUN
> X
of ADP
only ADJ
heavy ADJ
water NOUN
would AUX
be AUX
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
seeds NOUN
watered VERB
only ADV
with ADP
heavy ADJ
> X
water NOUN
do AUX
not PART
sprout VERB
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
about ADP
this?>I PROPN
also ADV
heard VERB
this DET
. PUNCT
I PRON
always ADV
thought VERB
it PRON
might AUX
make VERB
a DET
good ADJ
eposide NOUN
of'Columbo NOUN
' PUNCT
for ADP
someone PRON
to PART
be AUX
poisoned VERB
with ADP
heavy ADJ
water NOUN
- PUNCT
it PRON
wouldn'tshow PUNCT
up ADP
in ADP
any DET
chemical NOUN
test NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58983From NUM
: PUNCT
kutuzova@venus.iteb.serpukhov.suSubject VERB
: PUNCT
THE DET
RESEACHING NOUN
OF ADP
STARVATION.I PROPN
am AUX
very ADV
interested ADJ
in ADP
investigations NOUN
of ADP
starvation NOUN
for ADP
improving VERB
health NOUN
. PUNCT
I PRON
am AUX
the DET
young ADJ
Russian ADJ
reseacher NOUN
  SPACE
and CCONJ
have AUX
highest ADJ
medical ADJ
education NOUN
and CCONJ
expierence NOUN
in ADP
reseach PROPN
work NOUN
in ADP
biological ADJ
field NOUN
and CCONJ
would AUX
like VERB
to PART
work VERB
on ADP
this DET
problem NOUN
. PUNCT
Can AUX
anybody PRON
send VERB
me PRON
the DET
adresses NOUN
of ADP
the DET
hospitals NOUN
or CCONJ
Medical PROPN
Centers PROPN
where ADV
  SPACE
scientific ADJ
problems NOUN
of ADP
human ADJ
starvation NOUN
for ADP
the DET
health NOUN
are AUX
investigated VERB
? PUNCT
  SPACE
Also ADV
I PRON
would AUX
like VERB
to PART
set VERB
scientific ADJ
contacts NOUN
with ADP
colleagues NOUN
whodeals VERB
with ADP
investigations NOUN
in ADP
this DET
field NOUN
. PUNCT
I PRON
would AUX
be AUX
very ADV
appreciated VERB
anyone PRON
reply VERB
me PRON
. PUNCT
Pls INTJ
, PUNCT
contact NOUN
by ADP
post NOUN
: PUNCT
142292 NUM
, PUNCT
Russia PROPN
, PUNCT
                         SPACE
Moscow PROPN
Region PROPN
, PUNCT
                        SPACE
Puschino PROPN
, PUNCT
                        SPACE
P.O. PROPN
box NOUN
46 NUM
, PUNCT
                         SPACE
for ADP
Kravchenko PROPN
N. PROPN
      SPACE
; PUNCT
       SPACE
or CCONJ
by ADP
e NOUN
- NOUN
mail NOUN
: PUNCT
kutuzova@venus.iteb.serpukhov.su PUNCT
                                                                                       SPACE
Thank VERB
you PRON
advance VERB
, PUNCT
                                                SPACE
Natalja PROPN
Kravchenko PROPN
. PUNCT
                   SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58984From NUM
: PUNCT
wcsbeau@alfred.carleton.ca PROPN
( PUNCT
OPIRG)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr17.202011.21443@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr17.184435.19725@cunews.carleton.ca NUM
> X
wcsbeau@alfred.carleton.ca NOUN
( PUNCT
OPIRG PROPN
) PUNCT
writes:>>There PROPN
has AUX
been AUX
NO DET
hard ADJ
info NOUN
provided VERB
about ADP
MSG PROPN
making VERB
people NOUN
ill.>That DET
's AUX
the DET
point NOUN
, PUNCT
after ADV
all ADV
. PUNCT
Why ADV
do AUX
n't PART
you PRON
just ADV
look VERB
it PRON
up ADP
in ADP
the DET
Merk PROPN
? PUNCT
Or CCONJ
check VERB
out ADP
the DET
medical ADJ
dictionarycite NOUN
which PRON
a DET
doctor NOUN
mentioned VERB
earlier ADV
in ADP
this DET
thread?>>That PRON
's AUX
because SCONJ
these DET
" PUNCT
peer NOUN
- PUNCT
reviewed VERB
" PUNCT
studies NOUN
are AUX
not PART
addressing VERB
> X
the DET
effects NOUN
of ADP
MSG NOUN
in ADP
people NOUN
, PUNCT
they PRON
're AUX
looking VERB
at ADP
animal NOUN
models.>You NOUN
ca AUX
n't PART
walk VERB
away ADV
from ADP
this DET
and CCONJ
start VERB
ranting VERB
about ADP
gloom NOUN
and CCONJ
> X
doom VERB
as SCONJ
if SCONJ
there PRON
were AUX
any DET
documented VERB
deleterious ADJ
health NOUN
effects NOUN
> X
demonstrated VERB
in ADP
humans NOUN
. PUNCT
  SPACE
Note VERB
that SCONJ
I PRON
would AUX
n't PART
have AUX
any DET
argument NOUN
> X
with ADP
a DET
statement NOUN
like SCONJ
" PUNCT
noting VERB
that SCONJ
animal NOUN
administration NOUN
has AUX
pro->duced VERB
the DET
following VERB
[ PUNCT
blah INTJ
, PUNCT
blah INTJ
] PUNCT
, PUNCT
we PRON
must AUX
be AUX
careful ADJ
about ADP
its PRON
> X
use NOUN
in ADP
humans NOUN
. PUNCT
" PUNCT
  SPACE
This DET
is AUX
precisely ADV
NOT ADV
what PRON
you PRON
said VERB
. PUNCT
Among ADP
others NOUN
, PUNCT
see VERB
Olney PROPN
's PART
  SPACE
" PUNCT
Excitotoxic PROPN
Food PROPN
Aditives PROPN
- PUNCT
Relevance PROPN
ofAnimal PROPN
Studies PROPN
to ADP
Human PROPN
Safety PROPN
" PUNCT
( PUNCT
1982 NUM
) PUNCT
Neurobehav PROPN
. PUNCT
Toxicol PROPN
. PUNCT
Teratol.vol PROPN
6 NUM
: PUNCT
455 NUM
- SYM
462.I'm NUM
sure ADJ
PETA PROPN
would AUX
love VERB
to PART
hear VERB
your PRON
arguments.>>Tests NOUN
have AUX
been AUX
done VERB
on ADP
Rhesus PROPN
monkeys NOUN
, PUNCT
as ADV
well ADV
. PUNCT
I PRON
have AUX
never ADV
seen VERB
a>>study ADJ
where ADV
the DET
mode NOUN
of ADP
administration NOUN
was AUX
intra ADJ
- ADJ
ventricular ADJ
. PUNCT
  SPACE
The DET
Glu>>and PROPN
Asp PROPN
were AUX
administered VERB
orally ADV
. PUNCT
Some DET
studies NOUN
used VERB
IV PROPN
and CCONJ
SC.>>Intra PROPN
- PUNCT
ventricular PROPN
is AUX
not PART
a DET
normal ADJ
admin NOUN
. PUNCT
method NOUN
for ADP
food NOUN
tox NOUN
. PUNCT
studies,>>for ADP
obvious ADJ
reasons NOUN
. PUNCT
You PRON
must AUX
not PART
have AUX
read VERB
the DET
peer NOUN
- PUNCT
reviewed VERB
works>>that ADP
I PRON
referred VERB
to ADP
or CCONJ
you PRON
would AUX
never ADV
have AUX
come VERB
up ADP
with ADP
this DET
brain>>injection NOUN
bunk.>>It NOUN
most ADV
certainly ADV
is AUX
for ADP
neurotoxicology PROPN
. PUNCT
  SPACE
You PRON
know VERB
, PUNCT
studies NOUN
of ADP
> PROPN
glutamate PROPN
involve VERB
more ADJ
than SCONJ
" PUNCT
food NOUN
science" NOUN
. PUNCT
Whose PRON
talking VERB
about ADP
" PUNCT
food NOUN
science NOUN
" PUNCT
? PUNCT
What PRON
is AUX
this DET
comment NOUN
supposed VERB
tomean ADV
? PUNCT
* PUNCT
Neurotoxicology PROPN
and CCONJ
Tratology PROPN
* PUNCT
, PUNCT
* PUNCT
Brain PROPN
Research PROPN
* PUNCT
, PUNCT
* PUNCT
Nature*,*Progress PROPN
in ADP
Brain PROPN
Research PROPN
* PUNCT
: PUNCT
all DET
fine ADJ
food NOUN
science NOUN
journals NOUN
. PUNCT
; PUNCT
-)>>Pardon PUNCT
me PRON
, PUNCT
but CCONJ
where ADV
are AUX
you PRON
getting VERB
this DET
from ADP
? PUNCT
Have AUX
you PRON
read VERB
the>>journals NOUN
? PUNCT
Have AUX
you PRON
done VERB
a DET
thorough ADJ
literature NOUN
search?>>So NOUN
, PUNCT
point VERB
us PRON
to ADP
the DET
studies NOUN
in ADP
humans NOUN
, PUNCT
please INTJ
. PUNCT
  SPACE
I PRON
'm AUX
familiar ADJ
with ADP
> X
the DET
literature NOUN
, PUNCT
and CCONJ
I PRON
've AUX
never ADV
seen VERB
any DET
which PRON
relate VERB
at ADV
all ADV
to ADP
> X
Olney PROPN
's PART
work NOUN
in ADP
animals NOUN
and CCONJ
the DET
effects NOUN
of ADP
glutamate NOUN
on ADP
neurons NOUN
. PUNCT
Then ADV
you PRON
would AUX
know VERB
that SCONJ
Olney PROPN
himself PRON
has AUX
casually ADV
  SPACE
referred VERB
to"Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
in ADP
a DET
few ADJ
articles NOUN
. PUNCT
Why ADV
do AUX
n't PART
* PUNCT
you PRON
* PUNCT
pointus NOUN
to ADP
some DET
studies NOUN
? PUNCT
Maybe ADV
then ADV
this DET
exchange NOUN
could AUX
be AUX
productive.>>The ADJ
point NOUN
is AUX
exceeding VERB
the DET
window NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
they PRON
're AUX
amino ADJ
acids.>>Note PROPN
that SCONJ
people NOUN
with ADP
PKU PROPN
can AUX
not PART
tolerate VERB
any DET
phenylalanine.>>Well PROPN
, PUNCT
actually ADV
, PUNCT
they PRON
HAVE VERB
to PART
tolerate VERB
some DET
phenylalanine NOUN
; PUNCT
it PRON
's AUX
a DET
> X
essential ADJ
amino NOUN
acid NOUN
. PUNCT
  SPACE
They PRON
just ADV
try VERB
to PART
get AUX
as ADV
little ADJ
as SCONJ
is AUX
healthy ADJ
> X
without ADP
producing VERB
dangerous ADJ
levels NOUN
of ADP
phenylalanine NOUN
and CCONJ
its PRON
metabolites NOUN
> X
in ADP
the DET
blood NOUN
. PUNCT
They're PROPN
unable ADJ
to PART
metabolise PROPN
it.>>Olney PROPN
's PART
research NOUN
compared VERB
infant NOUN
human ADJ
diets NOUN
. PUNCT
Specifically ADV
, PUNCT
the DET
amount>>of NOUN
freely ADV
available ADJ
Glu PROPN
in ADP
mother NOUN
's PART
milk NOUN
versus ADP
commercial ADJ
baby NOUN
foods,>>vs PROPN
. PUNCT
typical ADJ
lunch NOUN
items NOUN
from ADP
the DET
Standard PROPN
American PROPN
Diet PROPN
such ADJ
as SCONJ
packaged>>soup ADJ
mixes NOUN
. PUNCT
He PRON
found VERB
that SCONJ
one PRON
could AUX
exceed VERB
the DET
projected VERB
safety NOUN
margin>>for ADP
infant NOUN
humans NOUN
by ADP
at ADV
least ADV
four NUM
- ADV
fold NOUN
in ADP
a DET
single ADJ
meal NOUN
of ADP
processed>>foods NOUN
. PUNCT
Mother PROPN
's PART
milk NOUN
was AUX
well ADV
below ADP
the DET
effective ADJ
dose.>>Goodness NOUN
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
it PRON
's AUX
good ADJ
to PART
feed VERB
infants NOUN
a DET
lot NOUN
of ADP
> NUM
glutamate NOUN
- PUNCT
supplemented VERB
foods NOUN
. PUNCT
  SPACE
It PRON
's AUX
just ADV
that SCONJ
this DET
" PUNCT
projected VERB
safety NOUN
> X
margin NOUN
" PUNCT
is AUX
a DET
construct NOUN
derived VERB
from ADP
animal NOUN
models NOUN
and CCONJ
given VERB
that,>you NOUN
can AUX
" PUNCT
prove VERB
" PUNCT
anything PRON
you PRON
like VERB
. PUNCT
  SPACE
We PRON
're AUX
talking VERB
prudent ADJ
policy NOUN
in ADP
> X
infant NOUN
nutrition NOUN
here ADV
, PUNCT
yet CCONJ
you PRON
're AUX
misrepresenting VERB
it PRON
as SCONJ
received VERB
wisdom NOUN
. PUNCT
Who PRON
said VERB
anything PRON
about ADP
' PUNCT
received VERB
wisdom NOUN
' PUNCT
? PUNCT
There PRON
is AUX
no DET
question NOUN
thatorally ADV
administered VERB
doses NOUN
of ADP
MSG PROPN
are AUX
capable ADJ
of ADP
destroying VERB
nearly ADV
allneurons NOUN
in ADP
the DET
arcuate ADJ
nucleus NOUN
of ADP
the DET
hypothalamus NOUN
and CCONJ
the DET
medianeminence NOUN
. PUNCT
These DET
areas NOUN
are AUX
responsible ADJ
for ADP
the DET
production NOUN
ofhormones NOUN
critical ADJ
to ADP
normal ADJ
neuroendocrine NOUN
function NOUN
and CCONJ
the DET
normaldevelopment NOUN
of ADP
the DET
vertabrate NOUN
organism NOUN
. PUNCT
Humans NOUN
are AUX
vertebrates NOUN
. PUNCT
Nowwhat ADV
, PUNCT
pray INTJ
tell VERB
, PUNCT
do AUX
you PRON
think VERB
will AUX
happen VERB
when ADV
the DET
area NOUN
of ADP
the DET
brainnecessary ADJ
for ADP
the DET
normal ADJ
rhythm NOUN
of ADP
gonadotropin NOUN
release NOUN
is AUX
missing?Are PROPN
you PRON
trying VERB
to PART
say VERB
that SCONJ
humans NOUN
have AUX
no DET
need NOUN
of ADP
their PRON
pituitary NOUN
, PUNCT
ANH PROPN
, PUNCT
and CCONJ
ME PROPN
, PUNCT
of ADP
that DET
part NOUN
of ADP
the DET
brain NOUN
that PRON
is AUX
responsible ADJ
forcontrolling VERB
the DET
realease NOUN
( PUNCT
albeit SCONJ
indirectly ADV
) PUNCT
of ADP
estradiol NOUN
and CCONJ
testosterone NOUN
? PUNCT
How ADV
do AUX
you PRON
expect VERB
anyone PRON
to PART
do AUX
the DET
studies NOUN
on ADP
this DET
? PUNCT
It PRON
's AUX
unethical ADJ
to"sacrifice NUM
" PUNCT
humans NOUN
to PART
check VERB
out ADP
what PRON
effects NOUN
chronic ADJ
, PUNCT
acute ADJ
, PUNCT
etc X
dosesof NOUN
these DET
compounds NOUN
are AUX
having VERB
on ADP
the DET
brain NOUN
tissue NOUN
in ADP
humans NOUN
. PUNCT
  SPACE
The DET
foodindustry NOUN
knows VERB
this DET
. PUNCT
That DET
's AUX
why ADV
the DET
animal NOUN
model NOUN
is AUX
used VERB
in ADP
medicineand PROPN
psych PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
're AUX
talking VERB
about ADP
straight ADJ
sensitivity NOUN
, PUNCT
it PRON
would AUX
beuseful VERB
to PART
define VERB
the DET
term NOUN
. PUNCT
  SPACE
There PRON
are AUX
plenty NOUN
of ADP
studies NOUN
onpsychoneuroimmunology NOUN
showing VERB
the DET
link NOUN
between ADP
attitude NOUN
andphysiology NOUN
. PUNCT
I PRON
suspect VERB
we PRON
may AUX
be AUX
arguing VERB
about ADP
separate ADJ
things NOUN
; PUNCT
* PUNCT
only ADV
* PUNCT
adult NOUN
sensitivities(You PROPN
) PUNCT
, PUNCT
and CCONJ
late ADV
- PUNCT
occuring VERB
sequelae NOUN
of ADP
childhood NOUN
ingestion NOUN
and CCONJ
itsimplication NOUN
for ADP
adults NOUN
( PUNCT
me PRON
) PUNCT
. PUNCT
  SPACE
Certainlythe PROPN
doses NOUN
for ADP
excitotoxicity NOUN
in ADP
adults NOUN
are AUX
considerably ADV
larger ADJ
thanfor ADP
the DET
young ADJ
, PUNCT
but CCONJ
the DET
additivity NOUN
of ADP
Glu PROPN
and CCONJ
Asp PROPN
, PUNCT
and CCONJ
their PRON
copiousand NOUN
increased VERB
presence NOUN
in ADP
modern ADJ
processed VERB
foods NOUN
( PUNCT
jointly ADV
) PUNCT
, PUNCT
and CCONJ
theirhidden PROPN
presence NOUN
in ADP
HVP PROPN
, PUNCT
necessitates VERB
extreme ADJ
caution NOUN
. PUNCT
Why ADV
would AUX
anyonewant VERB
to PART
eat VERB
compounds NOUN
which PRON
have AUX
been AUX
shown VERB
to PART
markedly ADV
perturb VERB
theendocrine NOUN
system NOUN
in ADP
adults NOUN
? PUNCT
  SPACE
The DET
main ADJ
point NOUN
is AUX
* PUNCT
blood NOUN
levels*attained VERB
, PUNCT
and CCONJ
oral ADJ
doses NOUN
would AUX
likely ADV
have AUX
to PART
be AUX
greater ADJ
than SCONJ
SC PROPN
. PUNCT
> X
> X
Between ADP
who PRON
? PUNCT
Over ADP
what PRON
? PUNCT
I PRON
would AUX
be AUX
most ADV
interested ADJ
in ADP
seeing VERB
you>>provide PROPN
peer NOUN
- PUNCT
reviewed VERB
non ADJ
- ADJ
food NOUN
- PUNCT
industry NOUN
- PUNCT
funded VERB
citations NOUN
to ADP
articles>>disputing VERB
that SCONJ
MSG PROPN
has AUX
no DET
effects NOUN
whatsoever ADV
. PUNCT
> X
> X
You PRON
mean VERB
" PUNCT
asserting VERB
" PUNCT
. PUNCT
  SPACE
You PRON
're AUX
being AUX
intellectually ADV
dishonest ADJ
( PUNCT
or CCONJ
just ADV
> X
plain ADV
confused ADJ
) PUNCT
, PUNCT
because SCONJ
you PRON
're AUX
conflating VERB
reports NOUN
which PRON
do AUX
not PART
necessarily ADV
> X
have AUX
anything PRON
to PART
do AUX
with ADP
each DET
other ADJ
. PUNCT
  SPACE
Olney PROPN
's PART
reports NOUN
would AUX
argue VERB
a DET
potential ADJ
> X
for ADP
problems NOUN
in ADP
human ADJ
infants NOUN
, PUNCT
but CCONJ
that DET
's AUX
not PART
to PART
say VERB
that SCONJ
this DET
says VERB
anything PRON
> X
whatsoever ADV
about ADP
the DET
use NOUN
of ADP
MSG NOUN
in ADP
most ADJ
foods NOUN
, PUNCT
nor CCONJ
does AUX
he PRON
provide VERB
any DET
> NUM
studies NOUN
in ADP
humans NOUN
which PRON
indicate VERB
any DET
deleterious ADJ
effects NOUN
( PUNCT
for ADP
obvious ADJ
> X
reasons NOUN
. PUNCT
) PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
MSG PROPN
's PART
contribtion NOUN
to ADP
the DET
phenomenon NOUN
> X
of ADP
the DET
" PUNCT
Chinese PROPN
Restaurant PROPN
Syndrome PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
says VERB
nothing PRON
about ADP
the DET
frequent ADJ
> X
inability NOUN
to PART
replicate VERB
anecdotal ADJ
reports NOUN
of ADP
MSG NOUN
sensitivity NOUN
in ADP
the DET
lab NOUN
. PUNCT
Olney PROPN
's PART
work NOUN
provides VERB
a DET
putative ADJ
causal NOUN
mechanism NOUN
for ADP
somesensitivities NOUN
. PUNCT
Terry PROPN
, PUNCT
Epelbaum PROPN
and CCONJ
Martin PROPN
have AUX
shown VERB
that SCONJ
orallyadministered VERB
MSG PROPN
causes NOUN
changes NOUN
in ADP
normal ADJ
gonadotropic ADJ
hormonefluctutations NOUN
in ADP
adults NOUN
. PUNCT
Glu PROPN
also ADV
was AUX
found VERB
to PART
induce VERB
immediate ADJ
and CCONJ
persistantsupression NOUN
of ADP
rhythmic ADJ
GH PROPN
secretion NOUN
, PUNCT
and CCONJ
to PART
induce VERB
rapid ADJ
and CCONJ
transientrelease PROPN
of ADP
prolactin PROPN
in ADP
adults NOUN
chronically ADV
exposed VERB
to ADP
MSG PROPN
. PUNCT
GH PROPN
isresponsible ADJ
not PART
only ADV
for ADP
control NOUN
of ADP
growth NOUN
during ADP
development NOUN
, PUNCT
butalso NOUN
converts NOUN
glycogen VERB
into ADP
glucose NOUN
. PUNCT
Could AUX
this DET
be AUX
the DET
cause NOUN
ofheadaches NOUN
? PUNCT
I PRON
do AUX
n't PART
know.>>>dyer@ursa-major.spdcc.com VERB
> X
> X
Hmm INTJ
. PUNCT
" PUNCT
.com PUNCT
" PUNCT
. PUNCT
Why ADV
am AUX
I PRON
not PART
surprised?>>- VERB
Dianne PROPN
Murray PROPN
   SPACE
wcsbeau@ccs.carleton.ca>>Probably PROPN
one NUM
of ADP
the DET
dumber ADJ
remarks NOUN
you PRON
've AUX
made VERB
. PUNCT
If SCONJ
you PRON
had AUX
read VERB
Olney PROPN
's PART
review NOUN
article NOUN
, PUNCT
especially ADV
the DET
remarks NOUN
Ialready PROPN
quoted VERB
in ADP
an DET
earlier ADJ
post NOUN
, PUNCT
you PRON
would AUX
know VERB
to ADP
what PRON
I PRON
wasalluding VERB
. PUNCT
May AUX
I PRON
ask VERB
exactly ADV
for ADP
whom PRON
you PRON
do AUX
computer NOUN
consulting NOUN
? PUNCT
: PUNCT
-)Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58985From NUM
: PUNCT
bebmza@sru001.chvpkh.chevron.com PROPN
( PUNCT
Beverly PROPN
M. PROPN
Zalan)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Frequent ADJ
nosebleedsIn PROPN
article NOUN
< X
1993Apr17.195202.28921@freenet.carleton.ca ADJ
> X
, PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
I PRON
have AUX
between ADP
15 NUM
and CCONJ
25 NUM
nosebleeds NOUN
each DET
week NOUN
, PUNCT
as SCONJ
a DET
result NOUN
of ADP
a DET
genetic ADJ
> X
predisposition NOUN
to ADP
weak ADJ
capillary ADJ
walls NOUN
( PUNCT
Osler PROPN
- PUNCT
Weber PROPN
- PUNCT
Rendu PROPN
) PUNCT
. PUNCT
> X
Fortunately ADV
, PUNCT
each DET
nosebleed NOUN
is AUX
of ADP
short ADJ
duration NOUN
. PUNCT
> X
> X
Does AUX
anyone PRON
know VERB
of ADP
any DET
method NOUN
to PART
reduce VERB
this DET
frequency NOUN
? PUNCT
My PRON
younger ADJ
> PUNCT
brothers NOUN
each DET
tried VERB
a DET
skin NOUN
transplant NOUN
( PUNCT
thigh NOUN
to PART
nose NOUN
lining NOUN
) PUNCT
, PUNCT
but CCONJ
their PRON
> NOUN
nosebleeds NOUN
soon ADV
returned VERB
. PUNCT
I PRON
've AUX
seen VERB
a DET
reference NOUN
to ADP
an DET
herb NOUN
called VERB
Rutin PROPN
> X
that PRON
is AUX
supposed VERB
to PART
help VERB
, PUNCT
and CCONJ
I PRON
'd AUX
like VERB
to PART
hear VERB
of ADP
experiences NOUN
with ADP
it PRON
, PUNCT
> X
or CCONJ
other ADJ
techniques NOUN
. PUNCT
> X
-- PUNCT
My PRON
6 NUM
year NOUN
son NOUN
is AUX
so ADV
plagued ADJ
. PUNCT
  SPACE
Lots NOUN
of ADP
vaseline NOUN
up ADP
his PRON
nose NOUN
each DET
night NOUN
seems VERB
to PART
keep VERB
it PRON
under ADP
control NOUN
. PUNCT
  SPACE
But CCONJ
let VERB
him PRON
get AUX
bopped VERB
there ADV
, PUNCT
and CCONJ
he PRON
'll AUX
recur VERB
for ADP
days NOUN
! PUNCT
  SPACE
Also ADV
allergies VERB
, PUNCT
colds NOUN
, PUNCT
dry ADJ
air NOUN
all DET
seem VERB
to PART
contribute VERB
. PUNCT
  SPACE
But CCONJ
again ADV
, PUNCT
the DET
vaseline NOUN
, PUNCT
or CCONJ
A&D PROPN
ointment NOUN
, PUNCT
or CCONJ
neosporin VERB
all DET
seem VERB
to PART
keep VERB
them PRON
from ADP
recurring VERB
. PUNCT
Bev PROPN
ZalanNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58986From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboK PROPN
( PUNCT
> X
  SPACE
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes VERB
: PUNCT
K(>K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
wrote VERB
: PUNCT
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
OTOH PROPN
, PUNCT
who PRON
are AUX
we PRON
kidding VERB
, PUNCT
the DET
New PROPN
England PROPN
Medical PROPN
Journal PROPN
in ADP
1984 NUM
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
ran VERB
the DET
heading NOUN
: PUNCT
" PUNCT
Ninety PROPN
Percent PROPN
of ADP
Diseases NOUN
are AUX
not PART
Treatable ADJ
byK NOUN
( PUNCT
> X
RR PROPN
> X
  SPACE
Drugs NOUN
or CCONJ
Surgery PROPN
, PUNCT
" PUNCT
which PRON
has AUX
been AUX
echoed VERB
by ADP
several ADJ
other ADJ
reports NOUN
. PUNCT
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
No DET
wonder NOUN
MDs NOUN
are AUX
not PART
amused VERB
with ADP
alternative ADJ
medicine NOUN
, PUNCT
sinceK PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
the DET
20 NUM
% NOUN
magic NOUN
of ADP
the DET
" PUNCT
placebo NOUN
effect NOUN
" PUNCT
would AUX
award VERB
alternative NOUN
K PROPN
( PUNCT
> X
RR PROPN
> X
  SPACE
practitioners NOUN
twice DET
the DET
success NOUN
rate NOUN
of ADP
conventional ADJ
medicine NOUN
... PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
  SPACE
1 NUM
: PUNCT
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
" PUNCT
is AUX
not PART
the DET
same ADJ
thing NOUN
as SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
patients" NOUN
. PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
     SPACE
In ADP
a DET
world NOUN
with ADP
one NUM
curable ADJ
disease NOUN
that PRON
strikes VERB
100 NUM
people NOUN
, PUNCT
and CCONJ
nineK PROPN
( PUNCT
> X
     SPACE
incurable ADJ
diseases NOUN
which PRON
strikes VERB
one NUM
person NOUN
each DET
, PUNCT
medical ADJ
science NOUN
will AUX
cureK PROPN
( PUNCT
> X
     SPACE
91 NUM
% NOUN
of ADP
the DET
patients NOUN
and CCONJ
report VERB
that SCONJ
90 NUM
% NOUN
of ADP
diseases NOUN
have AUX
no DET
therapy NOUN
. PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
  SPACE
2 NUM
: PUNCT
A DET
disease NOUN
would AUX
be AUX
counted VERB
among ADP
the DET
90 NUM
% NOUN
untreatable ADJ
if SCONJ
nothing PRON
better ADJ
thanK PROPN
( PUNCT
> X
     SPACE
a DET
placebo NOUN
were AUX
known VERB
. PUNCT
  SPACE
Of ADV
course NOUN
MDs NOUN
are AUX
ethically ADV
bound VERB
to PART
not PART
knowinglyK PROPN
( PUNCT
> X
     SPACE
dispense NOUN
placebos NOUN
... PUNCT
K PROPN
( PUNCT
> X
  SPACE
K PROPN
( PUNCT
> X
     SPACE
-dk PUNCT
  SPACE
Hmmm PROPN
... PUNCT
even ADV
  SPACE
* PUNCT
without ADP
* PUNCT
  SPACE
the DET
  SPACE
;-) PROPN
  SPACE
at ADP
the DET
end NOUN
, PUNCT
I PRON
did AUX
n't PART
think VERB
anyone PRON
was AUX
going VERB
to PART
take VERB
the DET
mathematics NOUN
or CCONJ
statistics NOUN
of ADP
my PRON
post NOUN
seriously ADV
. PUNCT
  SPACE
I PRON
only ADV
hope VERB
that SCONJ
you PRON
had AUX
the DET
same ADJ
thing NOUN
in ADP
mind NOUN
with ADP
your PRON
post NOUN
, PUNCT
  SPACE
otherwise ADV
you PRON
would AUX
need VERB
at ADP
least ADJ
TWO NUM
  SPACE
;-) PROPN
's PART
  SPACE
at ADP
the DET
end NOUN
to PART
help VERB
  SPACE
anyone PRON
understand VERB
your PRON
calculations NOUN
above ADP
... PUNCT
  SPACE
--Ron----- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
  SPACE
This DET
mind NOUN
intentionally ADV
left VERB
blank ADJ
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58987From NUM
: PUNCT
rousseaua@immunex.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskWhile ADJ
in ADP
grad ADJ
school NOUN
, PUNCT
I PRON
remember VERB
a DET
biochemistry NOUN
friend NOUN
of ADP
mine NOUN
working VERB
with"heat NOUN
shock NOUN
proteins NOUN
" PUNCT
. PUNCT
Apparently ADV
, PUNCT
burning VERB
protein NOUN
will AUX
induce VERB
changes NOUN
in ADP
heDNA ADJ
. PUNCT
Whether SCONJ
these DET
changes NOUN
survive VERB
the DET
denaturing NOUN
that PRON
occurs VERB
during ADP
digestionI PROPN
do AUX
n't PART
know VERB
, PUNCT
but CCONJ
I PRON
never ADV
eat VERB
burnt VERB
food NOUN
because SCONJ
of ADP
this DET
. PUNCT
Also ADV
, PUNCT
many ADJ
woods NOUN
contain VERB
toxins NOUN
. PUNCT
As SCONJ
they PRON
are AUX
burnt VERB
, PUNCT
it PRON
would AUX
seem VERB
logical ADJ
thatsome NOUN
may AUX
volatilise VERB
, PUNCT
and CCONJ
get AUX
into ADP
the DET
BBQed PROPN
food NOUN
. PUNCT
Again ADV
, PUNCT
I PRON
do AUX
n't PART
know VERB
if SCONJ
thesetoxins NOUN
( PUNCT
antifungal ADJ
and CCONJ
anti ADJ
- ADJ
woodeater ADJ
compounds NOUN
) PUNCT
would AUX
survive VERB
the DET
rather ADJ
harshconditions NOUN
of ADP
the DET
stomach NOUN
and CCONJ
intestine NOUN
, PUNCT
and CCONJ
then ADV
would AUX
they PRON
be AUX
able ADJ
to PART
crossthe VERB
intestinal ADJ
mucosa?Maybe NOUN
someone PRON
with ADP
more ADJ
biochemical ADJ
background NOUN
than SCONJ
myself PRON
( PUNCT
which PRON
is AUX
almost*anyone NOUN
* PUNCT
... PUNCT
:)) PROPN
can AUX
shed VERB
some DET
light NOUN
on ADP
heat NOUN
shock NOUN
proteins NOUN
and CCONJ
the DET
toxins NOUN
thatmay AUX
be AUX
in ADP
the DET
wood NOUN
used VERB
to PART
make VERB
charcoal NOUN
and CCONJ
BBQ.Anne PROPN
- PUNCT
Marie PROPN
Rousseaue PROPN
- PUNCT
mail NOUN
: PUNCT
rousseaua@immunex.comWhat PRON
I PRON
say VERB
has AUX
nothing PRON
to PART
do AUX
with ADP
Immunex PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58988From NUM
: PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey)Subject NUM
: PUNCT
Krillean PROPN
PhotographyI PROPN
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allowdo VERB
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinkingthat DET
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus ADJ
forsale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatlyappreciated VERB
. PUNCT
	 SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
myknowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organicobject NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patternsor NOUN
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
typeof NOUN
object VERB
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One NUM
mightextrapolate NOUN
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
withinthe NOUN
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature.-- PROPN
_ PROPN
D_I_S_C_L_A_I_M_E_R_ PROPN
: PUNCT
I PRON
can AUX
neither CCONJ
confirm VERB
nor CCONJ
deny VERB
any DET
opinionsexpressed ADJ
in ADP
this DET
article NOUN
directly ADV
reflect VERB
my PRON
own ADJ
personal ADJ
orpolitical ADJ
views NOUN
and CCONJ
furthermore ADV
, PUNCT
if SCONJ
they PRON
did AUX
, PUNCT
I PRON
would AUX
not PART
be AUX
atliberty ADJ
to PART
yield VERB
such DET
an DET
explanation NOUN
of ADP
these DET
alleged ADJ
opinions NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58989From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?My PROPN
comments NOUN
about ADP
the DET
Feingold PROPN
Diet PROPN
have AUX
no DET
relevance NOUN
to ADP
yourdaughter PROPN
's PART
purported ADJ
FrostedFlakes PROPN
- PUNCT
related VERB
seizures NOUN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
imaginewhy ADV
you PRON
included VERB
it.-- ADP
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58990From NUM
: PUNCT
pchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominance NOUN
> X
In ADP
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
> X
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
> X
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
> X
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this?I NOUN
have AUX
a DET
long ADV
sighted ADJ
eye NOUN
and CCONJ
a DET
short ADJ
sighted ADJ
eye NOUN
. PUNCT
My PRON
right ADJ
eye NOUN
tendsto NOUN
cut VERB
out ADP
when ADV
I PRON
look VERB
at ADP
distant ADJ
things NOUN
, PUNCT
my PRON
left ADJ
eye NOUN
when ADV
I PRON
am AUX
closeup ADJ
. PUNCT
  SPACE
I PRON
had AUX
specs NOUN
to PART
balance VERB
things NOUN
up ADP
a DET
bit NOUN
but CCONJ
could AUX
do AUX
without ADP
them PRON
. PUNCT
I PRON
thought VERB
that SCONJ
, PUNCT
one NUM
way NOUN
or CCONJ
another DET
, PUNCT
I PRON
would AUX
always ADV
be AUX
able ADJ
to PART
seeclearly ADV
. PUNCT
  SPACE
Unfortunately ADV
middle ADJ
age NOUN
is AUX
rearing VERB
its PRON
ugly ADJ
head NOUN
and CCONJ
I PRON
canno VERB
longer ADV
see VERB
close ADV
up ADP
objects NOUN
clearly ADV
. PUNCT
  SPACE
Maybe ADV
it PRON
's AUX
just ADV
that SCONJ
my PRON
armsare NOUN
getting VERB
shorter ADJ
: PUNCT
-)-- PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
            SPACE
The DET
floggings NOUN
will AUX
continue VERB
until ADP
morale NOUN
improves VERB
                  SPACE
pchurch@swell.actrix.gen.nz PROPN
  SPACE
Pat PROPN
Churchill PROPN
, PUNCT
Wellington PROPN
New PROPN
Zealand PROPN
     SPACE
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58991From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Adult PROPN
Chicken PROPN
PoxIn PROPN
article NOUN
< X
C5pM3o.BDo@feenix.metronet.com PROPN
> X
marcbg@feenix.metronet.com X
( PUNCT
Marc PROPN
Grant PROPN
) PUNCT
writes:>all VERB
over ADP
my PRON
bod NOUN
. PUNCT
  SPACE
At ADP
what PRON
point NOUN
am AUX
I PRON
no ADV
longer ADV
infectious ADJ
? PUNCT
  SPACE
My PRON
physician's NOUN
> X
office NOUN
says VERB
when ADV
they PRON
are AUX
all DET
scabbed VERB
over ADV
. PUNCT
  SPACE
Is AUX
this DET
true?Yes.>Is ADP
there ADV
any DET
medications NOUN
which PRON
can AUX
promote VERB
healing NOUN
of ADP
the DET
pox NOUN
? PUNCT
  SPACE
Speed VERB
up ADP
> X
healing?Acyclovir PROPN
started VERB
in ADP
the DET
first ADJ
1 NUM
- SYM
2 NUM
days NOUN
probably ADV
speeds VERB
recovery NOUN
anddecreases VERB
the DET
formation NOUN
of ADP
new ADJ
pox.-- NUM
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58992From NUM
: PUNCT
wsun@jeeves.ucsd.edu NOUN
( PUNCT
Fiberman)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?I PROPN
have AUX
heard VERB
that SCONJ
epileptic ADJ
patients NOUN
go VERB
into ADP
seizures NOUN
if SCONJ
theyeat ADJ
anything PRON
with ADP
MSG PROPN
added VERB
. PUNCT
  SPACE
This DET
may AUX
have AUX
something PRON
to PART
do AUX
withthe NOUN
excitotoxicity NOUN
of ADP
neurons.-fmNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58993From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominancenyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye PROPN
) PUNCT
writes:>[reply PROPN
to ADP
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
] PUNCT
> X
> X
> X
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
overall>>right NOUN
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
people NOUN
require VERB
less>>lens NOUN
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds VERB
of>>percentages PROPN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
  SPACE
Thanks INTJ
. PUNCT
> X
> X
There PRON
is AUX
an DET
" PUNCT
eyedness NOUN
" PUNCT
analogous ADJ
to ADP
handedness NOUN
but CCONJ
it PRON
has AUX
nothing PRON
to PART
do AUX
> X
with ADP
refractive ADJ
error NOUN
. PUNCT
  SPACE
To PART
see VERB
whether SCONJ
you PRON
are AUX
right ADJ
or CCONJ
left VERB
eyed ADJ
, PUNCT
roll VERB
> X
up ADV
a DET
sheet NOUN
of ADP
paper NOUN
into ADP
a DET
tube NOUN
and CCONJ
hold VERB
it PRON
up ADP
to ADP
either DET
eye NOUN
like SCONJ
a DET
> X
telescope NOUN
. PUNCT
  SPACE
The DET
eye NOUN
that PRON
you PRON
feel VERB
more ADV
comfortable ADJ
putting VERB
it PRON
up ADP
to ADP
is AUX
> X
your PRON
dominant ADJ
eye NOUN
. PUNCT
  SPACE
Refractive ADJ
error NOUN
is AUX
often ADV
different ADJ
in ADP
the DET
two NUM
eyes NOUN
> X
but CCONJ
has AUX
no DET
correlation NOUN
with ADP
handedness NOUN
. PUNCT
> X
> X
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WI PROPN
> X
This DET
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosopher NOUN
> X
must AUX
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellWhat PROPN
do AUX
you PRON
mean VERB
" PUNCT
more ADV
comfortable ADJ
putting VERB
it PRON
up ADP
to ADP
. PUNCT
" PUNCT
  SPACE
That DET
seems VERB
a DET
bithard NOUN
to PART
evaluate VERB
. PUNCT
  SPACE
At ADP
least ADJ
for ADP
me PRON
it PRON
is AUX
. PUNCT
  SPACE
Stare VERB
straight ADJ
Point NOUN
with ADP
both DET
hands NOUN
together ADV
and CCONJ
clasp VERB
so SCONJ
that SCONJ
only ADV
thepointer DET
fingers NOUN
are AUX
pointing VERB
straight ADV
forward ADV
to ADP
a DET
a DET
spot NOUN
on ADP
the DET
wall PROPN
abouteight PROPN
feet NOUN
away ADV
. PUNCT
  SPACE
First ADJ
stare NOUN
at ADP
the DET
spot NOUN
with ADP
both DET
eyes NOUN
open ADJ
. PUNCT
  SPACE
Nowclose PROPN
your PRON
left ADJ
eye NOUN
. PUNCT
  SPACE
Now ADV
open VERB
your PRON
left ADJ
eye NOUN
. PUNCT
  SPACE
Now ADV
close VERB
your PRON
right NOUN
eye.now INTJ
open VERB
your PRON
right ADJ
eye NOUN
. PUNCT
If SCONJ
the DET
image NOUN
jumped VERB
more ADJ
when ADV
you PRON
closed VERB
your PRON
right ADJ
eye NOUN
, PUNCT
you PRON
are AUX
righteye VERB
dominant ADJ
. PUNCT
If SCONJ
the DET
image NOUN
jumped VERB
more ADJ
when ADV
you PRON
closed VERB
your PRON
left ADJ
eye NOUN
, PUNCT
you PRON
are AUX
left VERB
eyedominant NOUN
. PUNCT
DeanthaNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58994From NUM
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?As PUNCT
nobody PRON
in ADP
the DET
food NOUN
industry NOUN
has AUX
even ADV
bothered VERB
to PART
address VERB
my PRON
previousquestion NOUN
" PUNCT
WHY ADV
DO VERB
YOU PRON
NEED VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
ALMOST PROPN
EVERY DET
FOOD PROPN
? PUNCT
" PUNCT
I PRON
must AUX
assumethat VERB
my PRON
wife NOUN
's PART
answer NOUN
is AUX
closer ADJ
to ADP
the DET
truth NOUN
than SCONJ
I PRON
hoped VERB
it PRON
was AUX
. PUNCT
She PRON
believes VERB
that SCONJ
MSG PROPN
is AUX
added VERB
to ADP
food NOUN
to PART
cause VERB
people NOUN
to PART
eat VERB
more ADJ
of ADP
itand NOUN
not PART
quit VERB
when ADV
they PRON
shoud ADV
be AUX
sated ADJ
. PUNCT
  SPACE
To PART
put VERB
it PRON
a DET
different ADJ
way NOUN
, PUNCT
she PRON
believes VERB
that SCONJ
for ADP
some DET
people NOUN
MSG PROPN
causes VERB
them PRON
to PART
act VERB
toward ADP
food NOUN
like SCONJ
an DET
addict NOUN
. PUNCT
  SPACE
( PUNCT
Eat VERB
all DET
the DET
chips NOUN
, PUNCT
chow VERB
down ADP
on ADP
several ADJ
packages NOUN
of ADP
noodle PROPN
soup NOUN
.... PUNCT
you PRON
get VERB
theidea PROPN
! PUNCT
} PUNCT
  SPACE
IF ADP
she PRON
is AUX
right ADJ
, PUNCT
then ADV
the DET
moral ADJ
and CCONJ
ethical ADJ
standards NOUN
of ADP
the DET
food NOUN
, PUNCT
chemical NOUN
and CCONJ
regulatory ADJ
groups NOUN
need VERB
to PART
be AUX
addressed VERB
! PUNCT
! PUNCT
! PUNCT
  SPACE
Can AUX
MSGbe PROPN
considered VERB
a DET
conditioning NOUN
substance NOUN
( PUNCT
not PART
addictive ADJ
but CCONJ
sort ADV
of ADV
habitforming NOUN
) PUNCT
? PUNCT
This DET
brings VERB
up ADP
a DET
side NOUN
question NOUN
of ADP
mine PRON
. PUNCT
   SPACE
I PRON
have AUX
noticed VERB
that SCONJ
cats NOUN
( PUNCT
mychildren NOUN
's PART
and CCONJ
my PRON
parent NOUN
's PART
) PUNCT
seem VERB
to PART
fixate VERB
on ADP
a DET
particular ADJ
brand NOUN
of ADP
petfood NOUN
. PUNCT
The DET
cat NOUN
will AUX
eat VERB
any DET
product NOUN
within ADP
one NUM
brand NOUN
and CCONJ
not PART
any DET
otherbrand NOUN
. PUNCT
  SPACE
I PRON
have AUX
wondered VERB
if SCONJ
this DET
is AUX
not PART
a DET
case NOUN
of ADP
preference NOUN
, PUNCT
but CCONJ
, PUNCT
somesort NOUN
of ADP
chemical NOUN
training NOUN
or CCONJ
addiction NOUN
. PUNCT
My PRON
questions NOUN
, PUNCT
for ADP
the DET
net NOUN
, PUNCT
are AUX
: PUNCT
Does AUX
the DET
FDA PROPN
regulate VERB
the DET
contents NOUN
of ADP
pet ADJ
food NOUN
? PUNCT
  SPACE
Is AUX
it PRON
allowed VERB
for ADP
petfood NOUN
to PART
contain VERB
addictive ADJ
or CCONJ
conditioning NOUN
substances NOUN
? PUNCT
  SPACE
Is AUX
MSG PROPN
put VERB
in ADP
pet NOUN
food?-----------------------------------I NOUN
speak VERB
for ADP
myself PRON
and CCONJ
not PART
Motorola----------------------------------- PROPN
-- PUNCT
Walter PROPN
LundbyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58995From NUM
: PUNCT
tarl@sw.stratus.com PROPN
( PUNCT
Tarl PROPN
Neustaedter)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
, PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
The DET
proper ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
It PRON
was AUX
an DET
effect NOUN
discoverd NOUN
byS. NUM
Kirlian PROPN
, PUNCT
a DET
soviet ADJ
film NOUN
developer NOUN
in ADP
1939.As NUM
I PRON
recall VERB
, PUNCT
the DET
coronas PROPN
visible ADJ
are AUX
ascribed VERB
to ADP
static ADJ
dischargesand NOUN
chemical NOUN
reactions NOUN
between ADP
the DET
organic ADJ
material NOUN
and CCONJ
the DET
silverhalides NOUN
in ADP
the DET
films.-- PROPN
          SPACE
Tarl PROPN
Neustaedter PROPN
       SPACE
Stratus PROPN
Computer PROPN
      	  SPACE
tarl@sw.stratus.com PROPN
    SPACE
Marlboro PROPN
, PUNCT
Mass PROPN
. PROPN
Disclaimer PROPN
: PUNCT
My PRON
employer NOUN
is AUX
not PART
responsible ADJ
for ADP
my PRON
opinions NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58996From NUM
: PUNCT
leisner@wrc.xerox.com PROPN
( PUNCT
Marty PROPN
Leisner PROPN
71348 NUM
) PUNCT
Subject NOUN
: PUNCT
Intravenous PROPN
antibioticsI PROPN
recently ADV
had AUX
a DET
case NOUN
of ADP
shingles NOUN
and CCONJ
my PRON
doctors NOUN
wanted VERB
to PART
give VERB
meintravenous ADJ
Acyclovir PROPN
. PUNCT
It PRON
was AUX
a DET
pain NOUN
finding VERB
IV PROPN
sites NOUN
in ADP
my PRON
arms NOUN
... PUNCT
can AUX
I PRON
have AUX
some DET
facts NOUN
abouthow ADP
advantageous ADJ
it PRON
is AUX
to PART
give VERB
intravenous ADJ
antibiotics NOUN
rather ADV
than SCONJ
oral?martyNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58997From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?Betty PROPN
Harvey PROPN
writes VERB
, PUNCT
> X
I PRON
am AUX
not PART
a DET
researcher NOUN
or CCONJ
a DET
medical ADJ
person NOUN
but CCONJ
it PRON
amazes VERB
me PRON
that SCONJ
> X
when ADV
they PRON
ca AUX
n't PART
find VERB
a DET
scientific ADJ
or CCONJ
a DET
known VERB
fact NOUN
they PRON
automatically ADV
> X
assume VERB
that SCONJ
the DET
reaction NOUN
is AUX
psychological ADJ
. PUNCT
  SPACE
It PRON
is AUX
mind NOUN
boggling VERB
. PUNCT
This DET
, PUNCT
simply ADV
stated VERB
, PUNCT
is AUX
a DET
result NOUN
of ADP
the DET
bankrupt ADJ
ethics NOUN
inthe PROPN
healthcare NOUN
and CCONJ
scientific ADJ
medicine NOUN
industries NOUN
. PUNCT
America PROPN
is AUX
fed VERB
up ADP
with ADP
the DET
massive ADJ
waste NOUN
and CCONJ
fraud NOUN
that PRON
is AUX
costingus PROPN
15 NUM
% NOUN
of ADP
our PRON
GNP NOUN
to PART
support VERB
these DET
industries NOUN
, PUNCT
while SCONJ
delivering VERB
marginal ADJ
health NOUN
care NOUN
to ADP
the DET
community NOUN
. PUNCT
Unfortunately ADV
, PUNCT
the DET
" PUNCT
Clinton PROPN
Plan PROPN
" PUNCT
, PUNCT
in ADP
whatever PRON
form NOUN
ittakes NOUN
, PUNCT
will AUX
probably ADV
cost VERB
us PRON
an DET
even ADV
greater ADJ
sum NOUN
. PUNCT
  SPACE
Bleah PROPN
. PUNCT
SteveNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58998From NUM
: PUNCT
evanh@sco X
. PUNCT
COM PROPN
( PUNCT
Evan PROPN
Hunt)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr19.215342.16930@sco.com NUM
> X
evanh@sco NUM
. PUNCT
COM PROPN
( PUNCT
Evan PROPN
Hunt PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr13.201942.26058@iscnvx.lmsc.lockheed.com NUM
> X
sharen@iscnvx.lmsc.lockheed.com NOUN
( PUNCT
Sharen PROPN
A. PROPN
Rund PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
restaurants PROPN
advertize VERB
" PUNCT
No DET
MSG PROPN
" PUNCT
) PUNCT
- PUNCT
many ADJ
restaurants NOUN
that PRON
feature NOUN
salad>>bars NOUN
use VERB
MSG NOUN
to PART
" PUNCT
keep VERB
" PUNCT
the DET
veggies NOUN
looking VERB
fresh ADJ
longer ADV
, PUNCT
also ADV
, PUNCT
a DET
number NOUN
> PUNCT
This DET
brings VERB
up ADP
an DET
important ADJ
question NOUN
for ADP
me PRON
- PUNCT
could AUX
pre VERB
- VERB
made VERB
salads NOUN
, PUNCT
the DET
> X
kind NOUN
sold VERB
in ADP
supermarkets NOUN
, PUNCT
have AUX
MSG PROPN
added VERB
without ADP
mentioning VERB
it PRON
? PUNCT
Legally,>I PROPN
mean NOUN
- PUNCT
anyone PRON
know VERB
what PRON
the DET
law NOUN
is AUX
in ADP
this DET
area?Steve PROPN
Dyer PROPN
points VERB
out ADP
that SCONJ
Sharen PROPN
was AUX
probably ADV
thinking VERB
of ADP
Sulfites PROPN
. PUNCT
Butthe PROPN
question NOUN
still ADV
stands.-- ADJ
Evan PROPN
Hunt PROPN
, PUNCT
Asst PROPN
. PUNCT
Editor NOUN
, PUNCT
THE DET
WEBFor ADJ
more ADJ
information NOUN
about ADP
THE DET
WEB NOUN
, PUNCT
e NOUN
- NOUN
mail NOUN
to ADP
evanh@sco NUM
. PUNCT
COM.Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
58999From NUM
: PUNCT
ski@wpi PROPN
. PUNCT
WPI.EDU PROPN
( PUNCT
Joseph PROPN
Mich PROPN
Krzeszewski)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyI PROPN
seem VERB
to PART
recall VERB
that SCONJ
there PRON
was AUX
an DET
article NOUN
in ADP
Radio PROPN
Electronics PROPN
about ADP
thissubject NOUN
. PUNCT
In ADP
fact NOUN
I PRON
have AUX
a DET
copy NOUN
of ADP
the DET
article NOUN
in ADP
front NOUN
of ADP
me PRON
, PUNCT
but CCONJ
I PRON
can'tfind VERB
anywhere ADV
in ADP
the DET
article NOUN
a DET
refrence NOUN
as SCONJ
to ADP
what PRON
month NOUN
it PRON
was AUX
in ADP
. PUNCT
The DET
systemthey NOUN
describe NOUN
uses VERB
an DET
automobile NOUN
ignition NOUN
coil NOUN
for ADP
the DET
high ADJ
voltage NOUN
. PUNCT
The DET
article NOUN
even ADV
includes VERB
some DET
information NOUN
on ADP
what PRON
kind NOUN
of ADP
film NOUN
to PART
use VERB
and CCONJ
where ADV
to PART
get AUX
it PRON
. PUNCT
Hope PROPN
this DET
helps VERB
. PUNCT
Joseph PROPN
M. PROPN
Krzeszewskiski@WPI.wpi.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59000From NUM
: PUNCT
klier@iscsvax.uni.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
How ADV
about ADP
a DET
crash NOUN
program NOUN
in ADP
basic ADJ
immunological ADJ
research?In PROPN
article NOUN
< X
221@ky3b X
. PUNCT
UUCP NOUN
> X
, PUNCT
km@ky3b.pgh.pa.us PROPN
( PUNCT
Ken PROPN
Mitchum PROPN
) PUNCT
writes VERB
: PUNCT
> X
As SCONJ
a DET
physician NOUN
, PUNCT
I PRON
almost ADV
never ADV
get VERB
sick ADJ
: PUNCT
usually ADV
, PUNCT
when ADV
something PRON
horrendous ADJ
> X
is AUX
going VERB
around ADP
, PUNCT
I PRON
either CCONJ
do AUX
n't PART
get AUX
it PRON
at ADV
all ADV
or CCONJ
get AUX
a DET
very ADV
mild ADJ
case NOUN
. PUNCT
> X
When ADV
I PRON
do AUX
get AUX
really ADV
sick ADJ
, PUNCT
it PRON
is AUX
always ADV
something PRON
unusual ADJ
. PUNCT
> X
> X
This DET
was AUX
not PART
the DET
situation NOUN
when ADV
I PRON
was AUX
in ADP
medical ADJ
school NOUN
, PUNCT
particularly ADV
on ADP
> NUM
pediatrics NOUN
.... PUNCT
Pediatrics NOUN
for ADP
me PRON
was AUX
three NUM
solid ADJ
> X
months NOUN
of ADP
illness NOUN
, PUNCT
and CCONJ
I PRON
had AUX
a DET
temp NOUN
of ADP
104 NUM
when ADV
I PRON
took VERB
the DET
final ADJ
exam NOUN
! PUNCT
> X
> X
I PRON
think VERB
what PRON
happens VERB
is AUX
that SCONJ
during ADP
training NOUN
, PUNCT
and CCONJ
beyond ADP
, PUNCT
we PRON
are AUX
constantly ADV
> X
exposed VERB
to ADP
new ADJ
things NOUN
, PUNCT
and CCONJ
we PRON
have AUX
the DET
usual ADJ
reactions NOUN
to ADP
them PRON
, PUNCT
so SCONJ
that SCONJ
later ADV
> X
on ADV
, PUNCT
when ADV
challenged VERB
with ADP
something PRON
, PUNCT
it PRON
is AUX
more ADV
likely ADJ
a DET
re NOUN
- NOUN
exposure NOUN
for ADP
us PRON
, PUNCT
> X
so ADV
we PRON
deal VERB
with ADP
it PRON
well INTJ
and CCONJ
get AUX
a DET
mild ADJ
illness NOUN
. PUNCT
This DET
is AUX
also ADV
commonly ADV
seen VERB
in ADP
new ADJ
teachers NOUN
. PUNCT
  SPACE
The DET
first ADJ
few ADJ
years NOUN
, PUNCT
they'resick ADV
a DET
lot NOUN
, PUNCT
but CCONJ
gradually ADV
seem VERB
to PART
build VERB
up ADP
immunities NOUN
to PART
almost ADV
everythingcommon PROPN
. PUNCT
  SPACE
Come VERB
to PART
think VERB
of ADP
it PRON
, PUNCT
I PRON
was AUX
about ADP
my PRON
healthiest NOUN
when ADV
I PRON
wasworking VERB
in ADP
a DET
pathogens NOUN
lab NOUN
, PUNCT
exposed VERB
to ADP
who PRON
- PUNCT
knows VERB
- PUNCT
what PRON
all DET
the DET
time NOUN
. PUNCT
  SPACE
Pre PROPN
- PROPN
OSHA PROPN
, PUNCT
of ADP
course NOUN
. PUNCT
Kay PROPN
Klier PROPN
  SPACE
Biology PROPN
Dept PROPN
  SPACE
UNI PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59001From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Intravenous PROPN
antibioticsIn PROPN
article NOUN
< X
1993Apr19.144358.28376@spectrum.xerox.com PROPN
> X
leisner@eso.mc.xerox.com PROPN
writes::I PROPN
recently ADV
had AUX
a DET
case NOUN
of ADP
shingles NOUN
and CCONJ
my PRON
doctors NOUN
wanted VERB
to PART
give VERB
me PRON
: PUNCT
intravenous ADJ
Acyclovir.::It PROPN
was AUX
a DET
pain NOUN
finding VERB
IV PROPN
sites NOUN
in ADP
my PRON
arms NOUN
... PUNCT
can AUX
I PRON
have AUX
some DET
facts NOUN
about ADP
: PUNCT
how ADV
advantageous ADJ
it PRON
is AUX
to PART
give VERB
intravenous ADJ
antibiotics NOUN
rather ADV
than SCONJ
oral?:I NUM
think VERB
some DET
essential ADJ
information NOUN
must AUX
be AUX
missing VERB
here ADV
, PUNCT
i.e. X
, PUNCT
you PRON
must AUX
besuffering VERB
from ADP
a DET
condition NOUN
which PRON
has AUX
caused VERB
immunosuppression NOUN
. PUNCT
  SPACE
There PRON
isno NOUN
indication NOUN
for ADP
IV PROPN
acyclovir PROPN
for ADP
shingles NOUN
in ADP
an DET
otherwise ADV
healthyperson NOUN
. PUNCT
  SPACE
The DET
oral ADJ
form NOUN
can AUX
help VERB
to PART
reduce VERB
the DET
length NOUN
of ADP
symptoms NOUN
, PUNCT
and CCONJ
mayeven PROPN
help NOUN
prevent VERB
the DET
development NOUN
of ADP
post ADJ
- ADJ
herpetic ADJ
neuralgia NOUN
, PUNCT
but CCONJ
Icertainly PROPN
would AUX
not PART
subject VERB
someone PRON
to ADP
IV PROPN
therapy NOUN
without ADP
a DET
good ADJ
reason NOUN
. PUNCT
To PART
address VERB
your PRON
more ADJ
general ADJ
question NOUN
, PUNCT
IV PROPN
therapy NOUN
does AUX
provide VERB
higher ADJ
andmore ADP
consistently ADV
high ADJ
plasma NOUN
and CCONJ
tissue NOUN
levels NOUN
of ADP
a DET
drug NOUN
. PUNCT
  SPACE
For ADP
treating VERB
aserious ADJ
infection NOUN
this DET
is AUX
the DET
only ADJ
way NOUN
to PART
be AUX
sure ADJ
that SCONJ
a DET
patient NOUN
isgetting VERB
adequate ADJ
drug NOUN
levels.-- ADP
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59002From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
risk NOUN
> X
I PRON
do AUX
n't PART
understand VERB
the DET
assumption NOUN
that SCONJ
because SCONJ
something PRON
is AUX
found VERB
to PART
> X
be AUX
carcinogenic ADJ
that SCONJ
" PUNCT
it PRON
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
> X
naturally ADV
occuring VERB
substances NOUN
( PUNCT
excluding VERB
" PUNCT
controlled VERB
" PUNCT
substances NOUN
) PUNCT
are AUX
> X
pretty ADV
much ADV
unregulated ADJ
in ADP
terms NOUN
of ADP
their PRON
use NOUN
as SCONJ
food NOUN
, PUNCT
food NOUN
additives NOUN
> X
or CCONJ
other ADJ
" PUNCT
consumption NOUN
" PUNCT
. PUNCT
  SPACE
It PRON
's AUX
only ADV
when ADV
the DET
chemists NOUN
concoct PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
an DET
> X
ingredient NOUN
that SCONJ
it PRON
falls VERB
under ADP
FDA PROPN
regulations NOUN
. PUNCT
  SPACE
Otherwise ADV
, PUNCT
if SCONJ
they PRON
> X
really ADV
looked VERB
closely ADV
they PRON
would AUX
find VERB
a DET
reason NOUN
to PART
ban VERB
almost ADV
everything PRON
. PUNCT
> X
How ADV
in ADP
the DET
world NOUN
do AUX
you PRON
suppose VERB
it PRON
's AUX
legal ADJ
to PART
" PUNCT
consume VERB
" PUNCT
tobacco NOUN
products NOUN
> X
( PUNCT
which PRON
probably ADV
SHOULD AUX
be AUX
banned)?No X
, PUNCT
there PRON
is AUX
something PRON
called VERB
the DET
" PUNCT
Delany PROPN
Amendment PROPN
" PUNCT
which PRON
makes VERB
carcinogenicfood NOUN
additives NOUN
illegal ADJ
in ADP
any DET
amount NOUN
. PUNCT
  SPACE
This DET
was AUX
passed VERB
by ADP
Congress PROPN
in ADP
the1950 NOUN
's PART
, PUNCT
before ADP
stuff NOUN
like SCONJ
mass NOUN
spectrometry NOUN
became VERB
available ADJ
, PUNCT
which PRON
increaseddetectable ADJ
levels NOUN
of ADP
substances NOUN
by ADP
a DET
couple NOUN
orders NOUN
of ADP
magnitude NOUN
. PUNCT
This DET
is AUX
why ADV
things NOUN
like SCONJ
cyclamates NOUN
and CCONJ
Red PROPN
# SYM
2 NUM
were AUX
banned VERB
. PUNCT
  SPACE
They PRON
are AUX
veryweakly ADV
carcinogenic ADJ
in ADP
huge ADJ
quantities NOUN
in ADP
rats NOUN
, PUNCT
so SCONJ
under ADP
the DET
Act PROPN
they PRON
arebanned VERB
. PUNCT
This DET
also ADV
applies VERB
to ADP
natural ADJ
carcinogens NOUN
. PUNCT
  SPACE
Some DET
of ADP
you PRON
might AUX
remember VERB
atime NOUN
back ADV
in ADP
the DET
1960 NUM
's PART
when ADV
root NOUN
beer NOUN
suddenly ADV
stopped VERB
tasting VERB
so ADV
good ADJ
, PUNCT
and CCONJ
never ADV
tasted VERB
so ADV
good ADJ
again ADV
. PUNCT
  SPACE
That DET
was AUX
the DET
time NOUN
when ADV
safrole NOUN
was AUX
banned VERB
. PUNCT
This DET
is AUX
the DET
active ADJ
flavoring ADJ
ingredient NOUN
in ADP
sassafras PROPN
leaves NOUN
. PUNCT
If SCONJ
it PRON
were AUX
possible ADJ
to PART
market VERB
a DET
root NOUN
beer NOUN
good ADJ
like SCONJ
the DET
old ADJ
days NOUN
, PUNCT
someonewould AUX
do AUX
it PRON
, PUNCT
in ADP
order NOUN
to PART
make VERB
money NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
no DET
one NOUN
does AUX
it PRON
indicatesthat VERB
enforcement NOUN
is AUX
still ADV
in ADP
effect NOUN
. PUNCT
An DET
odd ADJ
exception NOUN
to ADP
the DET
rule NOUN
seems VERB
to PART
be AUX
the DET
product NOUN
known VERB
as SCONJ
" PUNCT
gumbo PROPN
file'" NOUN
. PUNCT
This DET
is AUX
nothing PRON
more ADJ
than SCONJ
coarsely ADV
ground NOUN
dried VERB
sassafras PROPN
leaves NOUN
. PUNCT
  SPACE
Thisis NOUN
not PART
only ADV
a DET
natural ADJ
product NOUN
, PUNCT
but CCONJ
a DET
natural ADJ
product NOUN
still ADV
in ADP
its PRON
naturalform NOUN
, PUNCT
so ADV
maybe ADV
that DET
's AUX
how ADV
they PRON
evade VERB
Delany PROPN
. PUNCT
  SPACE
Or CCONJ
maybe ADV
a DET
special ADJ
exemptionwas NOUN
made VERB
, PUNCT
to PART
appease VERB
powerful ADJ
Louisiana PROPN
Democrats PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59003From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr19.204855.10818@rtsg.mot.com X
> X
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby PROPN
) PUNCT
writes:>As PUNCT
nobody PRON
in ADP
the DET
food NOUN
industry NOUN
has AUX
even ADV
bothered VERB
to PART
address VERB
my PRON
previous ADJ
> X
question NOUN
" PUNCT
WHY ADV
DO VERB
YOU PRON
NEED VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
ALMOST PROPN
EVERY DET
FOOD PROPN
? PUNCT
" PUNCT
I PRON
must AUX
assume VERB
> X
that SCONJ
my PRON
wife NOUN
's PART
answer NOUN
is AUX
closer ADJ
to ADP
the DET
truth NOUN
than SCONJ
I PRON
hoped VERB
it PRON
was AUX
. PUNCT
I PRON
do AUX
n't PART
mean VERB
to PART
be AUX
disrespectful ADJ
to ADP
your PRON
concerns NOUN
, PUNCT
but CCONJ
it PRON
seems VERB
to ADP
me PRON
that SCONJ
you PRON
're AUX
getting VERB
all DET
wound NOUN
up ADP
in ADP
a DET
non ADJ
- ADJ
issue NOUN
. PUNCT
  SPACE
As SCONJ
many ADJ
knowledgeable ADJ
people NOUN
have AUX
pointed VERB
out ADP
, PUNCT
msg PROPN
is AUX
a DET
naturally ADV
occurring VERB
substance NOUN
in ADP
a DET
lot NOUN
, PUNCT
if SCONJ
not PART
most ADJ
, PUNCT
foods NOUN
. PUNCT
  SPACE
When ADV
food NOUN
manufacturers NOUN
add VERB
it PRON
to ADP
a DET
preparation NOUN
, PUNCT
they PRON
do AUX
so ADV
because SCONJ
it PRON
's AUX
a DET
known VERB
flavor NOUN
enhancer NOUN
. PUNCT
Your PRON
wife NOUN
's PART
theory NOUN
, PUNCT
that SCONJ
MSG PROPN
is AUX
added VERB
to ADP
food NOUN
to PART
stimulate VERB
appetite PROPN
, PUNCT
may AUX
well ADV
be AUX
true ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
do AUX
n't PART
believe VERB
it PRON
's AUX
ALWAYS PROPN
the DET
reason NOUN
it PRON
's AUX
added VERB
. PUNCT
  SPACE
People NOUN
are AUX
( PUNCT
largely ADV
, PUNCT
for ADP
the DET
most ADJ
part NOUN
) PUNCT
in ADP
charge NOUN
of ADP
their PRON
own ADJ
appetites NOUN
. PUNCT
> X
children PROPN
's PART
and CCONJ
my PRON
parent NOUN
's PART
) PUNCT
seem VERB
to PART
fixate VERB
on ADP
a DET
particular ADJ
brand NOUN
of ADP
pet NOUN
> X
food NOUN
. PUNCT
The DET
cat NOUN
will AUX
eat VERB
any DET
product NOUN
within ADP
one NUM
brand NOUN
and CCONJ
not PART
any DET
other ADJ
> X
brand NOUN
. PUNCT
  SPACE
I PRON
have AUX
wondered VERB
if SCONJ
this DET
is AUX
not PART
a DET
case NOUN
of ADP
preference NOUN
, PUNCT
but CCONJ
, PUNCT
some DET
> X
sort NOUN
of ADP
chemical NOUN
training NOUN
or CCONJ
addiction NOUN
. PUNCT
My PRON
questions NOUN
, PUNCT
for ADP
the DET
net NOUN
, PUNCT
are:>Does VERB
the DET
FDA PROPN
regulate VERB
the DET
contents NOUN
of ADP
pet ADJ
food NOUN
? PUNCT
  SPACE
Is AUX
it PRON
allowed VERB
for ADP
pet NOUN
> X
food NOUN
to PART
contain VERB
addictive ADJ
or CCONJ
conditioning NOUN
substances NOUN
? PUNCT
  SPACE
Is AUX
MSG PROPN
put VERB
in ADP
> X
pet ADJ
food?>You PROPN
do AUX
n't PART
know VERB
much ADJ
about ADP
cats NOUN
, PUNCT
do AUX
you PRON
? PUNCT
Cats NOUN
will AUX
Take VERB
Advantage NOUN
of ADP
You PRON
. PUNCT
  SPACE
Resign VERB
yourself PRON
: PUNCT
  SPACE
you PRON
will AUX
never ADV
  SPACE
understand VERB
a DET
cat NOUN
. PUNCT
  SPACE
Their PRON
tastes NOUN
are AUX
whimsical ADJ
. PUNCT
  SPACE
I PRON
also ADV
suspect VERB
, PUNCT
though SCONJ
it PRON
's AUX
been AUX
a DET
while NOUN
since SCONJ
I PRON
've AUX
checked VERB
ingredients NOUN
on ADP
commercial ADJ
cat NOUN
food NOUN
, PUNCT
that SCONJ
there PRON
are AUX
much ADV
more ADV
stringent ADJ
requirements NOUN
on ADP
pet ADJ
food NOUN
additives NOUN
than SCONJ
human NOUN
. PUNCT
  SPACE
See VERB
, PUNCT
the DET
FDA PROPN
has AUX
this DET
stupid ADJ
idea NOUN
that SCONJ
human ADJ
beings NOUN
have AUX
the DET
intelligence NOUN
to PART
look VERB
out ADV
after ADP
their PRON
own ADJ
interests NOUN
. PUNCT
  SPACE
Barbara PROPN
, PUNCT
wondering VERB
how ADV
her PRON
cat NOUN
would AUX
take VERB
care NOUN
of ADP
* PUNCT
her*Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59004From NUM
: PUNCT
kaminski@netcom.com X
( PUNCT
Peter PROPN
Kaminski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography[Newsgroups NOUN
: PUNCT
m.h.a PROPN
added VERB
, PUNCT
followups NOUN
set VERB
to ADP
most ADV
appropriate ADJ
groups.]In NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M.Huey NOUN
) PUNCT
writes:>I NUM
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures.(It PROPN
's PART
" PUNCT
Kirlian PROPN
" PUNCT
. PUNCT
  SPACE
" PUNCT
Krillean PROPN
" PUNCT
pictures NOUN
are AUX
portraits NOUN
of ADP
tiny ADJ
shrimp NOUN
. PUNCT
: PUNCT
) PUNCT
[ PUNCT
... PUNCT
] PUNCT
> X
One PRON
might AUX
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
> X
within ADP
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
I PRON
think VERB
it PRON
's AUX
safe ADJ
to PART
say VERB
that SCONJ
anything PRON
that PRON
's AUX
not PART
at ADP
0 NUM
degrees NOUN
Kelvinwill PROPN
have AUX
its PRON
own ADJ
" PUNCT
energy NOUN
signature NOUN
" PUNCT
-- PUNCT
the DET
interesting ADJ
questions NOUN
arewhat PRON
kind NOUN
of ADP
energy NOUN
, PUNCT
and CCONJ
what PRON
it PRON
signifies VERB
. PUNCT
I'd NOUN
check VERB
places NOUN
like SCONJ
Edmund PROPN
Scientific PROPN
( PUNCT
are AUX
they PRON
still ADV
in ADP
business NOUN
? PUNCT
) PUNCT
--or PROPN
I PRON
wonder VERB
if SCONJ
you PRON
can AUX
find VERB
ex PROPN
- PROPN
Soviet PROPN
Union PROPN
equipment NOUN
for ADP
sale NOUN
somewherein PROPN
the DET
relcom PROPN
. PUNCT
* PUNCT
hierarchy NOUN
. PUNCT
Some DET
expansion NOUN
on ADP
Kirlian ADJ
photography NOUN
: PUNCT
From ADP
the DET
credulous ADJ
side NOUN
: PUNCT
[ PUNCT
Stanway PROPN
, PUNCT
Andrew PROPN
, PUNCT
_ PROPN
Alternative PROPN
Medicine PROPN
: PUNCT
A DET
GuideTo PROPN
Natural PROPN
Therapies PROPN
_ ADV
, PUNCT
ISBN PROPN
0 NUM
- PUNCT
14 NUM
- PUNCT
008561 NUM
- SYM
0 NUM
, PUNCT
New PROPN
York PROPN
: PUNCT
Viking PROPN
Penguin PROPN
, PUNCT
1986,p211 NUM
, PUNCT
p188 PROPN
. PUNCT
  SPACE
A DET
not PART
- PUNCT
overly ADV
critical ADJ
but CCONJ
still ADV
useful ADJ
overview NOUN
of ADP
32alternative NUM
health NOUN
therapies NOUN
. PUNCT
] PUNCT
  SPACE
... PUNCT
the DET
Russian ADJ
engineer NOUN
Semyon PROPN
Kirlian PROPN
and CCONJ
his PRON
wife NOUN
Valentina PROPN
during ADP
the DET
  SPACE
1950s NUM
. PUNCT
  SPACE
Using VERB
alternating VERB
currents NOUN
of ADP
high ADJ
frequency NOUN
to PART
' PUNCT
illuminate VERB
' PUNCT
  SPACE
their PRON
subjects NOUN
, PUNCT
they PRON
photographed VERB
them PRON
. PUNCT
  SPACE
They PRON
found VERB
that SCONJ
if SCONJ
an DET
object NOUN
  SPACE
was AUX
a DET
good ADJ
conductor NOUN
( PUNCT
such ADJ
as SCONJ
a DET
metal NOUN
) PUNCT
the DET
picture NOUN
showed VERB
only ADV
its PRON
  SPACE
surface NOUN
, PUNCT
while SCONJ
the DET
pictures NOUN
of ADP
poor ADJ
conductors NOUN
showed VERB
the DET
inner ADJ
  SPACE
structure NOUN
of ADP
the DET
object NOUN
even ADV
if SCONJ
it PRON
were AUX
optically ADV
opaque ADJ
. PUNCT
  SPACE
They PRON
found VERB
  SPACE
too ADV
that SCONJ
these DET
high ADJ
frequency NOUN
pictures NOUN
could AUX
distinguish VERB
between ADP
dead ADJ
  SPACE
and CCONJ
living NOUN
objects NOUN
. PUNCT
  SPACE
Dead ADJ
ones NOUN
had AUX
a DET
constant ADJ
outline NOUN
whilst SCONJ
living VERB
ones NOUN
  SPACE
were AUX
subject ADJ
to ADP
changes NOUN
. PUNCT
  SPACE
The DET
object NOUN
's PART
life NOUN
activity NOUN
was AUX
also ADV
visible ADJ
in ADP
  SPACE
highly ADV
variable ADJ
colour NOUN
patterns NOUN
. PUNCT
  SPACE
High ADJ
frequency NOUN
photography NOUN
has AUX
now ADV
been AUX
practised VERB
for ADP
twenty NUM
years NOUN
in ADP
  SPACE
the DET
Soviet PROPN
Union PROPN
but CCONJ
only ADV
a DET
few ADJ
people NOUN
in ADP
the DET
West PROPN
have AUX
taken VERB
it PRON
up ADP
  SPACE
seriously ADV
. PUNCT
  SPACE
Professor PROPN
Douglas PROPN
Dean PROPN
in ADP
New PROPN
York PROPN
and CCONJ
Professor PROPN
Philips PROPN
at ADP
  SPACE
Washington PROPN
University PROPN
in ADP
St PROPN
Louis PROPN
have AUX
produced VERB
Kirlian ADJ
photographs NOUN
and CCONJ
  SPACE
others NOUN
have AUX
been AUX
produced VERB
in ADP
Brazil PROPN
, PUNCT
Austria PROPN
and CCONJ
Germany PROPN
. PUNCT
  SPACE
Using VERB
Kirlian ADJ
photography NOUN
it PRON
is AUX
possible ADJ
to PART
show VERB
an DET
aura NOUN
around ADP
people NOUN
's PART
  SPACE
fingers NOUN
, PUNCT
notably ADV
around ADP
those DET
of ADP
healers NOUN
who PRON
are AUX
concentrating VERB
on ADP
  SPACE
healing VERB
someone PRON
. PUNCT
  SPACE
Normally ADV
, PUNCT
blue ADJ
and CCONJ
white ADJ
rays NOUN
emanate VERB
from ADP
the DET
fingers NOUN
  SPACE
but CCONJ
, PUNCT
when ADV
a DET
subject NOUN
becomes VERB
angry ADJ
or CCONJ
excited ADJ
, PUNCT
the DET
aura PROPN
turns VERB
red ADJ
and CCONJ
  SPACE
spotty ADJ
. PUNCT
  SPACE
The DET
Soviets PROPN
are AUX
now ADV
using VERB
Kirlian ADJ
photography NOUN
to PART
diagnose VERB
  SPACE
diseases NOUN
which PRON
can AUX
not PART
be AUX
diagnosed VERB
by ADP
any DET
other ADJ
method NOUN
. PUNCT
  SPACE
They PRON
argue VERB
that SCONJ
  SPACE
in ADP
most ADJ
illnesses NOUN
there PRON
is AUX
a DET
preclinical ADJ
stage NOUN
during ADP
which PRON
the DET
person NOUN
  SPACE
is AUX
n't PART
actually ADV
ill ADJ
but CCONJ
is AUX
about ADJ
to PART
be AUX
. PUNCT
  SPACE
They PRON
claim VERB
to PART
be AUX
able ADJ
to PART
  SPACE
foretell VERB
a DET
disease NOUN
by ADP
photographing VERB
its PRON
preclinical ADJ
phase NOUN
. PUNCT
  SPACE
But CCONJ
the DET
most ADV
exciting ADJ
phenomenon NOUN
illustrated VERB
by ADP
Kirlian ADJ
photography NOUN
is AUX
  SPACE
the DET
phantom ADJ
effect NOUN
. PUNCT
  SPACE
During ADP
high ADJ
frequency NOUN
photography NOUN
of ADP
a DET
leaf NOUN
from ADP
  SPACE
which PRON
a DET
part NOUN
had AUX
been AUX
cut VERB
, PUNCT
the DET
photograph NOUN
gave VERB
a DET
complete ADJ
picture NOUN
of ADP
the DET
  SPACE
leaf NOUN
with ADP
the DET
removed VERB
part NOUN
showing VERB
up ADP
faintly ADV
. PUNCT
  SPACE
This DET
is AUX
extremely ADV
  SPACE
important ADJ
because SCONJ
it PRON
backs VERB
up ADP
the DET
experiences NOUN
of ADP
psychics NOUN
who PRON
can AUX
' PUNCT
see VERB
' PUNCT
  SPACE
the DET
legs NOUN
of ADP
amputees NOUN
as SCONJ
if SCONJ
they PRON
were AUX
still ADV
there ADV
. PUNCT
  SPACE
The DET
important ADJ
thing NOUN
  SPACE
about ADP
the DET
Kirlian ADJ
phantoms NOUN
though ADV
is AUX
that SCONJ
the DET
electromagnetic ADJ
pattern NOUN
  SPACE
ca AUX
n't PART
possibly ADV
represent VERB
a DET
secondary ADJ
phenomenon NOUN
-- PUNCT
or CCONJ
the DET
field NOUN
would AUX
  SPACE
vanish VERB
when ADV
the DET
piece NOUN
of ADP
leaf NOUN
or CCONJ
leg NOUN
vanished VERB
. PUNCT
  SPACE
The DET
energy NOUN
grid NOUN
  SPACE
contained VERB
in ADP
a DET
living NOUN
object NOUN
must AUX
therefore ADV
be AUX
far ADV
more ADV
significant ADJ
than SCONJ
  SPACE
the DET
actual ADJ
object NOUN
itself PRON
. PUNCT
  SPACE
[ PUNCT
... PUNCT
] PUNCT
  SPACE
Kirlian ADJ
photography NOUN
has AUX
shown VERB
how ADV
water NOUN
mentally ADV
' PUNCT
charged VERB
' PUNCT
by ADP
a DET
healer NOUN
  SPACE
has AUX
a DET
much ADV
richer ADJ
energy NOUN
field NOUN
around ADP
it PRON
than SCONJ
ordinary ADJ
water NOUN
... PUNCT
From ADP
the DET
incredulous ADJ
side NOUN
: PUNCT
[ PUNCT
MacRobert PROPN
, PUNCT
Alan PROPN
, PUNCT
" PUNCT
Reality NOUN
shopping NOUN
; PUNCT
aconsumer PROPN
's PART
guide NOUN
to ADP
new ADJ
age NOUN
hokum PROPN
. PUNCT
" PUNCT
, PUNCT
_ PROPN
Whole PROPN
Earth PROPN
Review PROPN
_ PROPN
, PUNCT
Autumn PROPN
1986,vNON4 NOUN
p4(11 NOUN
) PUNCT
. PUNCT
  SPACE
An DET
excellent ADJ
article NOUN
providing VERB
common ADJ
- PUNCT
sense NOUN
guidelines NOUN
forevaluating VERB
paranormal ADJ
claims NOUN
, PUNCT
and CCONJ
some DET
of ADP
the DET
author NOUN
's PART
favorite ADJ
examplesof PROPN
hokum PROPN
. PUNCT
] PUNCT
  SPACE
The DET
crank NOUN
usually ADV
works VERB
in ADP
isolation NOUN
from ADP
everyone PRON
else ADV
in ADP
his PRON
field NOUN
of ADP
  SPACE
study NOUN
, PUNCT
making VERB
grand ADJ
discoveries NOUN
in ADP
his PRON
basement NOUN
. PUNCT
  SPACE
Many ADJ
paranormal ADJ
  SPACE
movements NOUN
can AUX
be AUX
traced VERB
back ADV
to ADP
such ADJ
people NOUN
-- PUNCT
Kirlian ADJ
photography NOUN
, PUNCT
for ADP
  SPACE
instance NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
pump VERB
high ADJ
- PUNCT
voltage NOUN
electricity NOUN
into ADP
anything PRON
it PRON
will AUX
  SPACE
emit ADV
glowing VERB
sparks NOUN
, PUNCT
common ADJ
knowledge NOUN
to ADP
electrical ADJ
workers NOUN
and CCONJ
  SPACE
hobbyists NOUN
for ADP
a DET
century NOUN
. PUNCT
  SPACE
It PRON
took VERB
a DET
lone ADJ
basement NOUN
crank VERB
to PART
declare VERB
that SCONJ
  SPACE
the DET
sparks NOUN
represent VERB
some DET
sort NOUN
of ADP
spiritual ADJ
aura NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
Kirlian PROPN
  SPACE
photography NOUN
was AUX
subjected VERB
to ADP
rigorous ADJ
testing NOUN
by ADP
physicists NOUN
John PROPN
O. PROPN
  SPACE
Pehek PROPN
, PUNCT
Harry PROPN
J. PROPN
Kyler PROPN
, PUNCT
and CCONJ
David PROPN
L. PROPN
Faust PROPN
, PUNCT
who PRON
reported VERB
their PRON
findings NOUN
  SPACE
in ADP
the DET
October PROPN
15 NUM
, PUNCT
1976 NUM
, PUNCT
issue NOUN
of ADP
Science PROPN
. PUNCT
  SPACE
Their PRON
conclusion NOUN
: PUNCT
The DET
  SPACE
variations NOUN
observed VERB
in ADP
Kirlian ADJ
photographs NOUN
are AUX
due ADJ
solely ADV
to PART
moisture VERB
on ADP
  SPACE
the DET
surface NOUN
of ADP
the DET
body NOUN
and CCONJ
not PART
to ADP
mysterious ADJ
" PUNCT
auras X
" PUNCT
or CCONJ
even ADV
  SPACE
necessarily ADV
to ADP
changes NOUN
in ADP
mood NOUN
or CCONJ
mental ADJ
state NOUN
. PUNCT
  SPACE
Nevertheless ADV
, PUNCT
  SPACE
television NOUN
shows NOUN
, PUNCT
magazines NOUN
, PUNCT
and CCONJ
books NOUN
( PUNCT
many ADJ
by ADP
famous ADJ
  SPACE
parapsychologists NOUN
) PUNCT
continue VERB
to PART
promote VERB
Kirlian ADJ
photography NOUN
as SCONJ
proof NOUN
of ADP
  SPACE
the DET
unknown.-- PROPN
Peter PROPN
Kaminskikaminski@netcom.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59006Subject NUM
: PUNCT
What PRON
are AUX
knots?From PROPN
: PUNCT
ng4@husc11.harvard.edu PROPN
( PUNCT
Ho PROPN
Leung PROPN
Ng PROPN
) PUNCT
    SPACE
What PRON
exactly ADV
are AUX
knots NOUN
, PUNCT
those DET
sore ADJ
, PUNCT
tight ADJ
spots NOUN
in ADP
your PRON
muscles?In PROPN
certain ADJ
kinds NOUN
of ADP
massage NOUN
, PUNCT
people NOUN
try VERB
and CCONJ
break VERB
up ADP
these DET
knots NOUN
; PUNCT
it PRON
thisreally ADV
helpful?Ho VERB
Leung PROPN
Ngng4@husc.harvard.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59007From NUM
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskMark PROPN
McWiggins PROPN
< X
markmc@halcyon.com X
> X
reminds VERB
us PRON
: PUNCT
MM PROPN
> X
Also ADV
, PUNCT
do AUX
n't PART
forget VERB
that SCONJ
it PRON
's AUX
better ADJ
for ADP
your PRON
health NOUN
MM PROPN
> X
to PART
enjoy VERB
your PRON
steak NOUN
than SCONJ
to PART
resent VERB
your PRON
sprouts NOUN
... PUNCT
YES!I PRON
call VERB
this DET
notion NOUN
" PUNCT
psychological ADJ
health NOUN
food NOUN
" PUNCT
and CCONJ
, PUNCT
in ADP
fact NOUN
, PUNCT
havedetermined VERB
that SCONJ
the DET
Four PROPN
Food PROPN
Groups PROPN
are AUX
Ice PROPN
Cream PROPN
, PUNCT
Pizza PROPN
, PUNCT
Barbecue PROPN
, PUNCT
andChocolate PROPN
. PUNCT
  SPACE
Ideally ADV
, PUNCT
every DET
meal NOUN
should AUX
contain VERB
something PRON
from ADP
at ADP
least ADJ
twoof NOUN
these DET
four NUM
groups NOUN
. PUNCT
  SPACE
Food NOUN
DOES VERB
serve VERB
functions NOUN
other ADJ
than SCONJ
nutrition NOUN
, PUNCT
andone ADJ
of ADP
them PRON
is AUX
keeping VERB
the DET
organism NOUN
happy ADJ
and CCONJ
thus ADV
aiding VERB
its PRON
immunesystem NOUN
. PUNCT
And CCONJ
I PRON
did AUX
n't PART
spend VERB
a DET
million NUM
bucks NOUN
commissioning VERB
a DET
study NOUN
that PRON
told VERB
me PRON
toredraw ADJ
my PRON
silly ADJ
little ADJ
pyramid NOUN
in ADP
different ADJ
colors NOUN
and CCONJ
with ADP
a DET
friendliertypeface NOUN
, PUNCT
either ADV
. PUNCT
  SPACE
( PUNCT
Ref PROPN
: PUNCT
Consumer PROPN
Reports PROPN
' PART
back ADJ
page NOUN
-- PUNCT
one NUM
of ADP
the DET
bestthings NOUN
ever ADV
to PART
turn VERB
up ADP
there.)Rich PUNCT
Young ADJ
< X
young@serum.kodak.com X
> X
writes NOUN
of ADP
one NUM
of ADP
six NUM
impossible ADJ
things NOUN
: PUNCT
RY PROPN
> X
to PART
consume VERB
unrealistically ADV
large ADJ
quantities NOUN
of ADP
barbecued VERB
meat NOUN
at ADP
a DET
time NOUN
. PUNCT
"Donald PUNCT
Mackie NOUN
< X
Donald_Mackie@med.umich.edu PROPN
> X
confesses VERB
: PUNCT
DM VERB
> X
I PRON
have AUX
to PART
confess VERB
that SCONJ
this DET
is AUX
one NUM
of ADP
my PRON
few ADJ
unfulfilled ADJ
ambitions NOUN
. PUNCT
DM VERB
> X
No ADV
matter ADV
how ADV
much ADV
I PRON
eat VERB
, PUNCT
it PRON
still ADV
seems VERB
realistic ADJ
. PUNCT
Yeah INTJ
, PUNCT
I PRON
want VERB
to PART
try VERB
one NUM
of ADP
those DET
42 NUM
oz PROPN
steaks NOUN
( PUNCT
cooked VERB
over ADP
applewood NOUN
) PUNCT
atWally PROPN
's PART
Wolf PROPN
Lodge PROPN
Inn PROPN
in ADP
Coeur PROPN
d'Alene PROPN
. PUNCT
  SPACE
That DET
seems VERB
quiteunrealistic ADJ
-- PUNCT
unrealistically ADV
SMALL ADJ
. PUNCT
  SPACE
And CCONJ
a DET
few ADJ
slabs NOUN
of ADP
ribs NOUN
from ADP
the DET
EastTexas PROPN
Smoker PROPN
( PUNCT
RIP PROPN
, PUNCT
again ADV
) PUNCT
in ADP
Louisville PROPN
is AUX
not PART
at ADV
all ADV
unrealistic ADJ
either ADV
. PUNCT
  SPACE
What PRON
say VERB
we PRON
have AUX
a DET
rec.food.cooking ADJ
dinner NOUN
at ADP
the DET
Moonlite PROPN
Bar PROPN
- PUNCT
B PROPN
- PUNCT
Que PROPN
Inn PROPN
inOwensboro PROPN
? PUNCT
( PUNCT
It PRON
's AUX
all DET
you PRON
can AUX
eat VERB
including VERB
lamb PROPN
ribs PROPN
& CCONJ
mutton NOUN
for ADP
about$10 PROPN
. PUNCT
) PUNCT
  SPACE
We PRON
could AUX
invite VERB
Julie PROPN
Kangas PROPN
as SCONJ
guest NOUN
of ADP
honor NOUN
and CCONJ
see VERB
if SCONJ
theMoonlite PROPN
's PART
Very ADV
Hot ADJ
Sauce PROPN
is AUX
too ADV
hot ADJ
for ADP
her PRON
. PUNCT
  SPACE
( PUNCT
It PRON
IS VERB
too ADV
hot ADJ
for ADP
me PRON
, PUNCT
and CCONJ
Idon't INTJ
say VERB
that DET
very ADV
often ADV
. PUNCT
) PUNCT
  SPACE
And CCONJ
she PRON
could AUX
bring VERB
ice NOUN
cream NOUN
with ADP
crusheddried ADJ
chiltepins NOUN
for ADP
dessert NOUN
. PUNCT
  SPACE
And CCONJ
we PRON
could AUX
see VERB
if SCONJ
there PRON
IS VERB
such DET
a DET
thing NOUN
as SCONJ
an DET
" PUNCT
unrealistically ADV
largequantity NOUN
" PUNCT
of ADP
barbecue NOUN
-- PUNCT
the DET
owner NOUN
of ADP
the DET
Moonlite PROPN
estimates VERB
that SCONJ
theOwensboro PROPN
restaurants NOUN
serve VERB
a DET
hundred NUM
thousand NUM
pounds NOUN
of ADP
meat NOUN
a DET
week NOUN
in ADP
thesummer NOUN
, PUNCT
and CCONJ
forty NUM
thousand NUM
in ADP
the DET
winter NOUN
-- PUNCT
in ADP
a DET
town NOUN
of ADP
50 NUM
000 NUM
or CCONJ
so ADV
. PUNCT
  SPACE
Twopounds NOUN
per ADP
person NOUN
per ADP
week NOUN
? PUNCT
   SPACE
Again ADV
, PUNCT
sure ADV
sounds VERB
unrealistic ADJ
to ADP
me PRON
-- PUNCT
thatsjust VERB
too ADV
meager ADJ
to PART
be AUX
healthy.~ PROPN
Kiran PROPN
( PUNCT
Now ADV
a DET
two NUM
- PUNCT
pound NOUN
slab NOUN
of ADP
ribs NOUN
a DET
day NOUN
, PUNCT
THAT PROPN
's PART
realistic.)-- NOUN
FUZZY NOUN
PINK VERB
NIVEN PROPN
'S PART
LAW NOUN
: PUNCT
  SPACE
Never ADV
Waste PROPN
Calories PROPN
. PUNCT
  SPACE
Potato NOUN
chips NOUN
, PUNCT
candy NOUN
, PUNCT
whipped VERB
cream NOUN
, PUNCT
or CCONJ
hot ADJ
fudge NOUN
sundae NOUN
consumption NOUN
may AUX
involve VERB
you PRON
, PUNCT
yourdietician PROPN
, PUNCT
your PRON
wardrobe NOUN
, PUNCT
and CCONJ
other ADJ
factors NOUN
. PUNCT
  SPACE
But CCONJ
Fuzzy PROPN
Pink PROPN
's PART
Law PROPN
implies VERB
: PUNCT
Don't NUM
eat VERB
soggy ADJ
potato NOUN
chips NOUN
, PUNCT
or CCONJ
cheap ADJ
candy NOUN
, PUNCT
or CCONJ
fake ADJ
whipped ADJ
cream NOUN
, PUNCT
or CCONJ
aninferior ADV
hot ADJ
fudge NOUN
sundae NOUN
. PUNCT
                SPACE
Larry PROPN
Niven PROPN
, PUNCT
NIVEN PROPN
'S PART
LAWS PROPN
, PUNCT
N PROPN
- PUNCT
SPACENewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59008From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Frequent ADJ
nosebleedsIn PROPN
article NOUN
< X
9304191126.AA21125@seastar.seashell NOUN
> X
bebmza@sru001.chvpkh.chevron.com NOUN
( PUNCT
Beverly PROPN
M. PROPN
Zalan PROPN
) PUNCT
writes:>>My PRON
6 NUM
year NOUN
son NOUN
is AUX
so ADV
plagued ADJ
. PUNCT
  SPACE
Lots NOUN
of ADP
vaseline NOUN
up ADP
his PRON
nose NOUN
each DET
night NOUN
seems VERB
> X
to PART
keep VERB
it PRON
under ADP
control NOUN
. PUNCT
  SPACE
But CCONJ
let VERB
him PRON
get AUX
bopped VERB
there ADV
, PUNCT
and CCONJ
he PRON
'll AUX
recur VERB
for ADP
> X
days NOUN
! PUNCT
  SPACE
Also ADV
allergies VERB
, PUNCT
colds NOUN
, PUNCT
dry ADJ
air NOUN
all DET
seem VERB
to PART
contribute VERB
. PUNCT
  SPACE
But CCONJ
again ADV
, PUNCT
the DET
> X
vaseline NOUN
, PUNCT
or CCONJ
A&D PROPN
ointment NOUN
, PUNCT
or CCONJ
neosporin VERB
all DET
seem VERB
to PART
keep VERB
them PRON
from ADP
recurring.>If PROPN
you PRON
can AUX
get AUX
it PRON
, PUNCT
you PRON
might AUX
want VERB
to PART
try VERB
a DET
Canadian PROPN
over ADP
- PUNCT
the DET
- PUNCT
counter NOUN
productcalled VERB
Secaris PROPN
, PUNCT
which PRON
is AUX
a DET
water NOUN
- PUNCT
soluble ADJ
gel NOUN
. PUNCT
  SPACE
Compared VERB
to ADP
Vaseline PROPN
or CCONJ
othergreasy ADJ
ointments NOUN
, PUNCT
Secaris PROPN
seems VERB
more ADV
compatible ADJ
with ADP
the DET
moisture NOUN
that'salready NOUN
there.-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59009From NUM
: PUNCT
myers@cs.scarolina.edu PROPN
( PUNCT
Daniel PROPN
Myers)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?Frequently ADV
of ADP
late ADV
, PUNCT
I PRON
have AUX
been AUX
reacting VERB
to ADP
something PRON
added VERB
torestaurant ADJ
foods NOUN
. PUNCT
  SPACE
What PRON
happens VERB
is AUX
that SCONJ
the DET
inside NOUN
of ADP
my PRON
throat NOUN
startsto PROPN
feel VERB
" PUNCT
puffy NOUN
" PUNCT
, PUNCT
like SCONJ
I PRON
have AUX
a DET
cold NOUN
, PUNCT
and CCONJ
also ADV
at ADP
times NOUN
the DET
inside NOUN
of ADP
mymouth NOUN
( PUNCT
especially ADV
the DET
tongue NOUN
) PUNCT
and CCONJ
lips NOUN
also ADV
feel VERB
puffy NOUN
. PUNCT
The DET
situations NOUN
around ADP
these DET
symptoms NOUN
almost ADV
always ADV
involve VERB
restaurants(usually ADV
chinese ADJ
) PUNCT
, PUNCT
the DET
most ADV
notable ADJ
cases NOUN
: PUNCT
  SPACE
a DET
cheap ADJ
chinese ADJ
fast ADJ
foodchain PROPN
, PUNCT
a DET
japanese ADJ
steak NOUN
house NOUN
( PUNCT
I PRON
had AUX
the DET
steak NOUN
) PUNCT
, PUNCT
and CCONJ
another DET
chinesefast ADJ
food NOUN
chain NOUN
where ADV
I PRON
SAW VERB
the DET
cook NOUN
put VERB
about ADP
a DET
tablespoon NOUN
or CCONJ
two NUM
ofwhat PRON
looked VERB
like SCONJ
sugar NOUN
or CCONJ
salt NOUN
into ADP
my PRON
fried ADJ
rice NOUN
. PUNCT
I PRON
am AUX
under ADP
the DET
impression NOUN
that SCONJ
MSG PROPN
" PUNCT
enhances VERB
" PUNCT
flavor NOUN
by ADP
causing VERB
thetaste NOUN
buds NOUN
to PART
swell VERB
. PUNCT
  SPACE
If SCONJ
this DET
is AUX
correct ADJ
, PUNCT
I PRON
do AUX
not PART
find VERB
it PRON
unreasonableto ADJ
assume VERB
that SCONJ
high ADJ
doses NOUN
of ADP
MSG PROPN
can AUX
cause VERB
other ADJ
mouth NOUN
tissues NOUN
to PART
swell VERB
. PUNCT
Also ADV
, PUNCT
as SCONJ
the DET
many ADJ
of ADP
the DET
occurances NOUN
( PUNCT
including VERB
two NUM
of ADP
the DET
above)involved PROPN
beef NOUN
, PUNCT
and CCONJ
as SCONJ
beef NOUN
is AUX
frequently ADV
tenderized VERB
with ADP
MSG PROPN
, PUNCT
this DET
iswhat ADP
I PRON
suspect VERB
as SCONJ
being AUX
the DET
cause NOUN
. PUNCT
I PRON
would AUX
n't PART
be AUX
at ADV
all ADV
surprised VERB
if SCONJ
toxicity NOUN
studies NOUN
of ADP
MSG PROPN
in ADP
animalsshowed VERB
it PRON
as SCONJ
being AUX
harmless ADJ
, PUNCT
as SCONJ
it PRON
would AUX
be AUX
very ADV
startling ADJ
to PART
hear VERB
a DET
labrat NOUN
or CCONJ
rhesus NOUN
monkey NOUN
complain VERB
about ADP
their PRON
throats NOUN
feeling VERB
funny ADJ
. PUNCT
Anyone PRON
who PRON
wishes VERB
to PART
explain VERB
how ADV
the DET
majority NOUN
of ADP
food NOUN
additives NOUN
aretotally ADV
harmless ADJ
is AUX
welcome ADJ
to ADP
e NOUN
- NOUN
mail VERB
me PRON
with ADP
the DET
results NOUN
of ADP
any DET
studiedthey NOUN
know NOUN
of ADP
. PUNCT
  SPACE
I PRON
will AUX
probably ADV
respond VERB
to ADP
them PRON
however ADV
with ADP
a DET
reminderof ADJ
how ADV
long ADV
it PRON
took VERB
to PART
prove VERB
that SCONJ
smoking NOUN
causes NOUN
cancer NOUN
( PUNCT
which PRON
thetobacco VERB
companies NOUN
still ADV
deny).- ADJ
DM(If PROPN
I PRON
sound VERB
grumpy ADJ
, PUNCT
it PRON
's AUX
because SCONJ
I PRON
had AUX
beef NOUN
with ADP
broccoli PROPN
for ADP
lunchtoday PROPN
, PUNCT
and CCONJ
now ADV
it PRON
hurts VERB
to ADP
swallow)--------------------------------------------------------------------------------Dan PROPN
Myers PROPN
( PUNCT
Madman PROPN
) PUNCT
		 SPACE
| PROPN
If SCONJ
the DET
creator NOUN
had AUX
intended VERB
us PRON
to PART
walk VERB
myers@usceast.cs.scarolina.edu NUM
	 SPACE
| ADP
upright NOUN
, PUNCT
he PRON
would AUX
n't PART
have AUX
given VERB
us PRON
knuckles------------------------------------------------------------------------------Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59010Subject NUM
: PUNCT
Origin PROPN
of ADP
MorphineFrom PROPN
: PUNCT
chinsz@eis.calstate.edu PROPN
( PUNCT
Christopher PROPN
Hinsz PROPN
) PUNCT
	 SPACE
I PRON
am AUX
sorry ADJ
to PART
once ADV
again ADV
bother VERB
those DET
of ADP
you PRON
on ADP
this DET
newsgroup NOUN
. PUNCT
If SCONJ
you PRON
have AUX
any DET
suggestions NOUN
as SCONJ
to ADP
where ADV
I PRON
might AUX
find VERB
out ADP
about ADP
the DET
subjectof NOUN
this DET
letter NOUN
( PUNCT
the DET
origin NOUN
of ADP
Morphine PROPN
, PUNCT
ie PROPN
. PUNCT
who PRON
first ADV
isolsted VERB
it PRON
, PUNCT
and CCONJ
whyhe PROPN
/ PUNCT
she PRON
attempted VERB
such DET
an DET
experiment NOUN
) PUNCT
. PUNCT
  SPACE
Once ADV
agian VERB
any DET
suggestion NOUN
would AUX
beappreciated VERB
. PUNCT
	 SPACE
CSHp.s NOUN
. PUNCT
My PRON
instructer NOUN
insists VERB
that SCONJ
I PRON
get VERB
4 NUM
rescources NOUN
from ADP
this DET
newsgroup NOUN
, PUNCT
soplease PROPN
send VERB
me PRON
and CCONJ
info NOUN
you PRON
think VERB
may AUX
be AUX
helpful ADJ
. PUNCT
  SPACE
Facts NOUN
that SCONJ
you PRON
know VERB
, PUNCT
but CCONJ
do AUX
n't PART
know VERB
what PRON
book NOUN
they PRON
're AUX
from ADP
are AUX
ok ADJ
. PUNCT
ATTENTION NOUN
: PUNCT
If SCONJ
you PRON
do AUX
NOT ADV
like VERB
seeing VERB
letters NOUN
such ADJ
as SCONJ
this DET
one NOUN
on ADP
yournewsgroup NOUN
direct ADJ
all DET
complaints NOUN
to ADP
my PRON
instructor NOUN
at ADP
< X
bshayler@eis X
. PUNCT
CalStat PROPN
. PUNCT
Edu>-- PROPN
" PUNCT
Kilimanjaro PROPN
is AUX
a DET
pretty ADV
tricky ADJ
climb NOUN
. PUNCT
Most ADJ
of ADP
it PRON
's AUX
up ADV
, PUNCT
until ADP
you PRON
reachthe VERB
very ADV
, PUNCT
very ADV
top ADJ
, PUNCT
and CCONJ
then ADV
it PRON
tends VERB
to PART
slope VERB
away ADV
rather ADV
sharply ADV
. PUNCT
" PUNCT
					 SPACE
Sir PROPN
George PROPN
Head PROPN
, PUNCT
OBE PROPN
( PUNCT
JC)------------------------------------------------------------------------------LOGIC PROPN
: PUNCT
" PUNCT
The DET
point NOUN
is AUX
frozen VERB
, PUNCT
the DET
beast NOUN
is AUX
dead ADJ
, PUNCT
what PRON
is AUX
the DET
difference NOUN
? PUNCT
" PUNCT
					 SPACE
Gavin PROPN
Millarrrrrrrrrr PROPN
( PUNCT
JC)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59011From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residency[reply NOUN
to ADP
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
] PUNCT
> X
> X
I PRON
believe VERB
it PRON
is AUX
illegal ADJ
for ADP
a DET
residency NOUN
to PART
discriminate VERB
against ADP
FMGs PROPN
. PUNCT
> X
Is AUX
that DET
true ADJ
? PUNCT
  SPACE
I PRON
know VERB
some DET
that PRON
wo AUX
n't PART
even ADV
interview VERB
FMGs PROPN
. PUNCT
I PRON
think VERB
a DET
case NOUN
could AUX
be AUX
made VERB
that SCONJ
this DET
is AUX
discriminatory ADJ
, PUNCT
particularlyif VERB
an DET
applicant NOUN
had AUX
good ADJ
board NOUN
scores NOUN
and CCONJ
recommendations NOUN
but CCONJ
wasn'toffered VERB
an DET
interview NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
it PRON
has AUX
ever ADV
gone VERB
to ADP
court NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59012From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography[reply ADP
to ADP
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
] PUNCT
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
Kirilian PROPN
. PUNCT
> X
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
> X
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
> X
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
> X
proves VERB
that SCONJ
every DET
object NOUN
within ADP
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
> X
own ADJ
energy NOUN
signature NOUN
. PUNCT
There PRON
turned VERB
out ADP
to PART
be AUX
a DET
very ADV
simple ADJ
, PUNCT
conventional ADJ
explanation NOUN
for ADP
thephenomenon PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
recall VERB
the DET
details NOUN
, PUNCT
but CCONJ
I PRON
believe VERB
it PRON
had AUX
to PART
do AUX
withthe NOUN
object NOUN
between ADP
the DET
plates NOUN
altering VERB
the DET
field NOUN
because SCONJ
of ADP
purelymechanical ADJ
properties NOUN
like SCONJ
capacitance NOUN
. PUNCT
  SPACE
The DET
" PUNCT
aura NOUN
" PUNCT
was AUX
caused VERB
by ADP
directexposure NOUN
of ADP
the DET
film NOUN
from ADP
variations NOUN
in ADP
field NOUN
strength NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59013From NUM
: PUNCT
mstern@lindsay NOUN
. PUNCT
Princeton PROPN
. PUNCT
EDU PROPN
( PUNCT
Marlene PROPN
J. PROPN
Stern)Subject VERB
: PUNCT
Recurrent PROPN
Respiratory PROPN
PapillomatosisWe NOUN
will AUX
be AUX
holding VERB
a DET
bake NOUN
and CCONJ
craft NOUN
sale NOUN
at ADP
Communiversity PROPN
in ADP
Princeton PROPN
on ADP
  SPACE
Nassau PROPN
Street PROPN
, PUNCT
Saturday PROPN
April PROPN
24th NOUN
12 NUM
- SYM
4 NUM
p.m. NOUN
to PART
benefit VERB
the DET
Recurrent PROPN
  SPACE
Respiratory PROPN
Papillomatosis PROPN
Foundation PROPN
, PUNCT
a DET
nonprofit ADJ
foundation NOUN
established VERB
to PART
  SPACE
encourage VERB
research NOUN
toward ADP
a DET
cure NOUN
for ADP
Recurrent PROPN
Respiratory PROPN
Papillomatosis PROPN
. PUNCT
  SPACE
Our PRON
  SPACE
three NUM
year NOUN
old ADJ
daughter NOUN
suffers VERB
from ADP
this DET
disease NOUN
. PUNCT
  SPACE
Below ADV
is AUX
a DET
press NOUN
release NOUN
  SPACE
that PRON
appeared VERB
in ADP
local ADJ
newspapers NOUN
. PUNCT
  SPACE
Hope VERB
you PRON
can AUX
join VERB
us PRON
. PUNCT
On ADP
Saturday PROPN
, PUNCT
April PROPN
24 NUM
as SCONJ
part NOUN
of ADP
Communiversity PROPN
in ADP
Princeton PROPN
, PUNCT
a DET
local ADJ
family NOUN
  SPACE
will AUX
be AUX
having VERB
a DET
bake NOUN
and CCONJ
craft NOUN
sale NOUN
to PART
raise VERB
money NOUN
for ADP
and CCONJ
create VERB
public ADJ
  SPACE
awareness NOUN
about ADP
a DET
rare ADJ
disease NOUN
called VERB
Recurrent PROPN
Respiratory PROPN
Papillomatosis PROPN
. PUNCT
Bill PROPN
and CCONJ
Marlene PROPN
Stern PROPN
's PART
daughter NOUN
Lindsay PROPN
is AUX
afflicted VERB
with ADP
this DET
disease NOUN
  SPACE
characterized VERB
by ADP
tumors NOUN
attacking VERB
the DET
inside NOUN
of ADP
the DET
larynx ADJ
, PUNCT
vocal ADJ
cords NOUN
and CCONJ
  SPACE
trachea NOUN
. PUNCT
  SPACE
Caused VERB
by ADP
a DET
virus NOUN
, PUNCT
the DET
tumors NOUN
grow VERB
, PUNCT
block VERB
the DET
air NOUN
passages NOUN
and CCONJ
would AUX
  SPACE
lead VERB
to ADP
death NOUN
from ADP
suffocation NOUN
without ADP
continual ADJ
surgery NOUN
to PART
remove VERB
the DET
growths NOUN
. PUNCT
   SPACE
Three NUM
year NOUN
old ADJ
Lindsay PROPN
has AUX
undergone VERB
11 NUM
operations NOUN
thus ADV
far ADV
since SCONJ
her PRON
diagnosis NOUN
  SPACE
last ADJ
year NOUN
and CCONJ
faces VERB
the DET
prospect NOUN
of ADP
over ADP
a DET
hundred NUM
operations NOUN
throughout ADP
her PRON
  SPACE
lifetime NOUN
. PUNCT
  SPACE
Even ADV
though SCONJ
the DET
disease NOUN
is AUX
hardly ADV
a DET
household NOUN
word NOUN
, PUNCT
it PRON
has AUX
affected VERB
the DET
lives NOUN
  SPACE
of ADP
enough ADJ
people NOUN
to PART
inspire VERB
the DET
formation NOUN
of ADP
the DET
Recurrent PROPN
Respiratory PROPN
  SPACE
Papillomatosis PROPN
Foundation PROPN
, PUNCT
  SPACE
a DET
non ADJ
- ADJ
profit ADJ
foundation NOUN
whose PRON
goals NOUN
are AUX
to PART
provide VERB
  SPACE
support NOUN
for ADP
patients NOUN
and CCONJ
families NOUN
by ADP
networking VERB
patients NOUN
and CCONJ
publishing VERB
a DET
  SPACE
newsletter NOUN
, PUNCT
enhance NOUN
  SPACE
awareness NOUN
of ADP
RRP PROPN
at ADP
the DET
local ADJ
and CCONJ
national ADJ
level NOUN
, PUNCT
and CCONJ
aid VERB
  SPACE
in ADP
the DET
prevention NOUN
, PUNCT
cure NOUN
, PUNCT
and CCONJ
treatment NOUN
. PUNCT
Since SCONJ
medical ADJ
researchers NOUN
know VERB
that SCONJ
the DET
virus NOUN
causing VERB
the DET
disease NOUN
is AUX
similar ADJ
to ADP
  SPACE
those DET
viruses NOUN
causing VERB
warts NOUN
, PUNCT
they PRON
feel VERB
a DET
cure NOUN
would AUX
be AUX
within ADP
reach NOUN
if SCONJ
money NOUN
  SPACE
were AUX
available ADJ
for ADP
research NOUN
. PUNCT
  SPACE
Because SCONJ
RRP PROPN
is AUX
rare ADJ
, PUNCT
it PRON
not PART
only ADV
gets VERB
scant ADJ
  SPACE
attention NOUN
but CCONJ
also ADV
paltry VERB
funds NOUN
to PART
search VERB
for ADP
a DET
cure NOUN
. PUNCT
  SPACE
Part NOUN
of ADP
the DET
RRP PROPN
  SPACE
Foundation PROPN
's PART
mission NOUN
is AUX
to PART
change VERB
that DET
. PUNCT
Anyone PRON
interested ADJ
in ADP
contributing VERB
items NOUN
to ADP
the DET
bake NOUN
and CCONJ
craft NOUN
sale NOUN
, PUNCT
please INTJ
call VERB
  SPACE
Marlene PROPN
or CCONJ
Bill PROPN
at ADP
609 NUM
- PUNCT
890 NUM
- PUNCT
0502 NUM
. PUNCT
  SPACE
Monetary ADJ
donations NOUN
can AUX
be AUX
made VERB
at ADP
the DET
  SPACE
Foundation PROPN
's PART
booth NOUN
during ADP
Communiversity PROPN
, PUNCT
April PROPN
24th NOUN
, PUNCT
12 NUM
to ADP
4 NUM
p.m. NOUN
, PUNCT
in ADP
downtown NOUN
  SPACE
Princeton PROPN
, PUNCT
or CCONJ
sent VERB
directly ADV
to PART
: PUNCT
			 SPACE
The DET
Recurrent PROPN
Respiratory PROPN
Foundation PROPN
	                 SPACE
50 NUM
Wesleyan PROPN
Drive PROPN
	                 SPACE
Hamilton PROPN
Sq PROPN
. PROPN
, PUNCT
NJ PROPN
  SPACE
08690.Thanks PUNCT
   SPACE
mstern@lindsay.princeton.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59014From NUM
: PUNCT
med50003@nusunix1.nus.sg PROPN
( PUNCT
WANSAICHEONG ADJ
KHIN PROPN
- PUNCT
LIN)Subject NUM
: PUNCT
Re ADP
: PUNCT
MORBUS PROPN
MENIERE NOUN
- PUNCT
is AUX
there PRON
a DET
real ADJ
remedy?It NOUN
would AUX
be AUX
nice ADJ
to PART
think VERB
that SCONJ
individuals NOUN
can AUX
somehow ADV
' PUNCT
beat VERB
the DET
system'and PROPN
like SCONJ
a DET
space NOUN
explorer NOUN
, PUNCT
boldly ADV
go VERB
where ADV
no DET
man NOUN
has AUX
gone VERB
before ADP
andreturn NOUN
with ADP
a DET
prize NOUN
cure NOUN
. PUNCT
Unfortunately ADV
, PUNCT
too ADV
often ADV
the DET
prize NOUN
is AUX
limitedand VERB
the DET
efficacy NOUN
of ADP
the DET
' PUNCT
cure NOUN
' PUNCT
questionable ADJ
when ADV
applied VERB
to ADP
allsufferers NOUN
. PUNCT
This DET
applies VERB
to ADP
both CCONJ
medical ADJ
researchers NOUN
and CCONJ
non ADJ
- ADJ
medical ADJ
individuals NOUN
. PUNCT
Just ADV
because SCONJ
it PRON
appears VERB
in ADP
an DET
obscure ADJ
journal NOUN
and CCONJ
may AUX
be AUX
of ADP
some DET
usedoes NOUN
not PART
make VERB
the DET
next ADJ
cure NOUN
- PUNCT
all DET
. PUNCT
What PRON
about ADP
the DET
dozens NOUN
of ADP
individualswho PROPN
have AUX
courageously ADV
participated VERB
in ADP
clinical ADJ
trials NOUN
? PUNCT
Did AUX
they PRON
have AUX
anyguarentee NOUN
of ADP
cures NOUN
? PUNCT
Are AUX
they PRON
any DET
less ADV
because SCONJ
they PRON
did AUX
n't PART
trumpet VERB
theirstory NOUN
all ADV
over ADP
the DET
world?As NOUN
a DET
parting NOUN
note NOUN
, PUNCT
was AUX
n't PART
there ADV
some DET
studies NOUN
done VERB
on ADP
Gingko PROPN
seeds NOUN
forMeniere PROPN
's PART
? PUNCT
( PUNCT
To ADP
the DET
original ADJ
poster NOUN
: PUNCT
what PRON
about ADP
trying VERB
for ADP
a DET
trial NOUN
ofthat ADP
? PUNCT
It PRON
's AUX
probably ADV
not PART
a DET
final ADJ
answer NOUN
but CCONJ
it PRON
certainly ADV
may AUX
alleviatesome VERB
of ADP
the DET
discomfort NOUN
. PUNCT
And CCONJ
you PRON
'd AUX
be AUX
helping VERB
answer VERB
the DET
question NOUN
forfuture NOUN
sufferers.)gervaisNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59015From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
HerniaIn PROPN
article NOUN
< X
C5qopx.5Mq@encore.com X
> X
sheffner@encore.com X
( PUNCT
Steve PROPN
Heffner PROPN
) PUNCT
writes:>A NUM
bit VERB
more ADJ
than SCONJ
a DET
year NOUN
ago ADV
, PUNCT
a DET
hernia NOUN
in ADP
my PRON
right ADJ
groin NOUN
was AUX
> X
discovered VERB
. PUNCT
  SPACE
It PRON
had AUX
produced VERB
a DET
dull ADJ
pain NOUN
in ADP
that DET
area NOUN
. PUNCT
  SPACE
The DET
hernia PROPN
> X
was AUX
repaired VERB
using VERB
the DET
least ADV
intrusive ADJ
( PUNCT
orthoscopic PROPN
? PUNCT
) PUNCT
method NOUN
and CCONJ
a>"plug PROPN
and CCONJ
patch" PROPN
. PUNCT
I PRON
suspect VERB
you PRON
mean VERB
laparoscopic PROPN
instead ADV
of ADP
orthoscopic.>Now DET
the DET
pain NOUN
occurs VERB
more ADV
often ADV
. PUNCT
  SPACE
My PRON
GP PROPN
could AUX
n't PART
identify VERB
any DET
> X
specific ADJ
problem NOUN
. PUNCT
  SPACE
The DET
surgen NOUN
who PRON
performed VERB
the DET
original ADJ
procedure NOUN
> X
now ADV
says VERB
that SCONJ
yes INTJ
there PRON
is AUX
a DET
" PUNCT
new ADJ
" PUNCT
hernia NOUN
in ADP
the DET
same ADJ
area NOUN
and CCONJ
he PRON
> X
said VERB
that SCONJ
he PRON
has AUX
to PART
cut VERB
into ADP
the DET
area NOUN
for ADP
the DET
repair NOUN
this DET
time.>>My NOUN
question NOUN
to ADP
the DET
net NOUN
: PUNCT
  SPACE
Is AUX
there PRON
a DET
nonintrusive ADJ
method NOUN
to PART
> X
determine VERB
if SCONJ
in ADP
fact NOUN
there PRON
is AUX
a DET
hernia NOUN
or CCONJ
if SCONJ
the DET
pain NOUN
is AUX
from ADP
> X
something PRON
else?By PROPN
far ADV
the DET
( PUNCT
still ADV
) PUNCT
best ADJ
method NOUN
to PART
diagnose VERB
a DET
hernia NOUN
is AUX
old ADJ
fashionedphysical ADJ
examination NOUN
. PUNCT
If SCONJ
you PRON
have AUX
an DET
obvious ADJ
hernia PROPN
sac NOUN
coming VERB
down ADP
into ADP
your PRON
scrotum NOUN
, PUNCT
or CCONJ
a DET
bulge NOUN
in ADP
your PRON
groin NOUN
that PRON
is AUX
brought VERB
about ADP
byincreasing VERB
intra ADJ
- ADJ
abdominal ADJ
pressure NOUN
.... PUNCT
Sometimes ADV
is AUX
not PART
that ADV
obvious ADJ
. PUNCT
The DET
hernia NOUN
is AUX
small ADJ
and CCONJ
you PRON
can AUX
only ADV
detect VERB
it PRON
by ADP
putting VERB
your PRON
finger NOUN
into ADP
the DET
inguinal ADJ
canal NOUN
. PUNCT
Whether SCONJ
you PRON
have AUX
a DET
recurrent NOUN
hernia NOUN
, PUNCT
or CCONJ
this DET
is AUX
related VERB
to ADP
the DET
previousoperation NOUN
, PUNCT
I PRON
ca AUX
n't PART
tell VERB
you PRON
. PUNCT
The DET
person NOUN
that PRON
examined VERB
you PRON
is AUX
in ADP
  SPACE
the DET
bestposition NOUN
to PART
make VERB
that DET
determination NOUN
. PUNCT
Are AUX
there PRON
non ADJ
- ADJ
invasive ADJ
ways NOUN
of ADP
diagnosing VERB
a DET
hernia NOUN
? PUNCT
Every DET
now ADV
and CCONJ
then ADV
folks NOUN
write VERB
about ADP
CT NOUN
scans NOUN
and CCONJ
ultrasounds VERB
for ADP
this DET
. PUNCT
But CCONJ
these DET
are AUX
fartoo ADV
expensive ADJ
, PUNCT
and CCONJ
unlikely ADJ
to PART
be AUX
better ADJ
than SCONJ
a DET
trained VERB
examining NOUN
finger.====================================Howard ADJ
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59016From NUM
: PUNCT
med50003@nusunix1.nus.sg PROPN
( PUNCT
WANSAICHEONG ADJ
KHIN PROPN
- PUNCT
LIN)Subject NUM
: PUNCT
Re ADP
: PUNCT
Lasers NOUN
for ADP
dermatologistsIt PROPN
is AUX
not PART
true ADJ
that SCONJ
dermatologists NOUN
gave VERB
not PART
reached VERB
the DET
laser NOUN
age NOUN
, PUNCT
infact ADJ
, PUNCT
lasers NOUN
in ADP
dermatological ADJ
surgery NOUN
is AUX
a DET
very ADV
new ADJ
and CCONJ
exciting ADJ
field NOUN
. PUNCT
It PRON
probably ADV
wo AUX
n't PART
be AUX
effective ADJ
in ADP
tinea NOUN
pedis PROPN
because SCONJ
the DET
laser NOUN
isusually ADV
a DET
superficial ADJ
burn NOUN
( PUNCT
to PART
avoid VERB
any DET
deeper ADJ
damage NOUN
) PUNCT
. PUNCT
Limited ADJ
tineapedis NOUN
can AUX
be AUX
cured VERB
albeit SCONJ
sometimes ADV
slowly ADV
by ADP
topical ADJ
antifungals NOUN
aswell NOUN
as SCONJ
systemic ADJ
medication NOUN
i.e. X
tablets NOUN
. PUNCT
Finally ADV
, PUNCT
a DET
self NOUN
- PUNCT
diagnosis NOUN
isnot NOUN
always ADV
reliable ADJ
, PUNCT
lichen PROPN
simplex PROPN
chronicus PROPN
can AUX
look VERB
like SCONJ
a DET
fungalinfection NOUN
and CCONJ
requires VERB
very ADV
different ADJ
treatment.gervaisNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59017From NUM
: PUNCT
jer@prefect.cc.bellcore.com PROPN
( PUNCT
rathmann PROPN
, PUNCT
janice PROPN
e)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
1993Apr19.171938.17930@porthos.cc.bellcore.com NUM
> X
, PUNCT
jil@donuts0.uucp PROPN
( PUNCT
Jamie PROPN
Lubin PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
19671@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
> X
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
> X
> X
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
> X
> X
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
> X
> X
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
> X
> X
> X
> X
There PRON
is AUX
eye NOUN
dominance NOUN
same ADJ
as SCONJ
handedness NOUN
( PUNCT
and CCONJ
usually ADV
for ADP
the DET
> X
> X
same ADJ
side NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
refractive ADJ
error NOUN
, PUNCT
however ADV
. PUNCT
> X
> X
I PRON
recall VERB
reading VERB
/ PUNCT
seeing VERB
that SCONJ
former ADJ
baseball NOUN
star NOUN
Chris PROPN
Chambliss PROPN
' PUNCT
hitting VERB
> X
abilities NOUN
were AUX
( PUNCT
in ADP
part NOUN
) PUNCT
attributed VERB
to ADP
a DET
combination NOUN
of ADP
left ADJ
- PUNCT
handedness NOUN
& CCONJ
> X
right ADJ
- PUNCT
eye NOUN
dominance NOUN
. PUNCT
I PRON
was AUX
part NOUN
of ADP
a DET
study NOUN
a DET
few ADJ
years NOUN
ago ADV
at ADP
the DET
University PROPN
of ADP
Arizona PROPN
tosee NOUN
whether SCONJ
cross ADJ
dominant ADJ
individuals NOUN
( PUNCT
those DET
with ADP
a DET
particular ADJ
handednessbut NOUN
who PRON
had AUX
dominance NOUN
in ADP
the DET
opposite ADJ
eye NOUN
) PUNCT
were AUX
better ADJ
hitters NOUN
thanthose ADJ
with ADP
same ADJ
side NOUN
dominance NOUN
of ADP
hand NOUN
and CCONJ
eye NOUN
. PUNCT
  SPACE
I PRON
was AUX
picked VERB
frommy ADJ
softball ADJ
class NOUN
because SCONJ
I PRON
was AUX
cross VERB
dominant ADJ
( PUNCT
right ADJ
hand NOUN
, PUNCT
left VERB
eye)which PROPN
put VERB
me PRON
in ADP
a DET
small ADJ
minority NOUN
( PUNCT
and CCONJ
the DET
grad ADJ
student NOUN
was AUX
trying VERB
to PART
getan PROPN
equal ADJ
number NOUN
of ADP
cross NOUN
dominant ADJ
and CCONJ
same ADJ
side NOUN
dominant ADJ
people NOUN
) PUNCT
. PUNCT
  SPACE
Tocontrol PROPN
the DET
study NOUN
, PUNCT
she PRON
used VERB
a DET
pitching VERB
machine NOUN
- PUNCT
fast ADJ
pitch NOUN
. PUNCT
  SPACE
SinceI PROPN
was AUX
used VERB
to PART
slow VERB
pitch NOUN
, PUNCT
I PRON
did AUX
n't PART
come VERB
close ADV
( PUNCT
actually ADV
I PRON
thinkI PROPN
foul ADV
tipped VERB
a DET
few ADJ
) PUNCT
to ADP
hitting VERB
the DET
ball NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
were AUX
a DET
lot NOUN
of ADP
peoplelike VERB
me PRON
in ADP
her PRON
study NOUN
( PUNCT
i.e. X
, PUNCT
those DET
who PRON
ca AUX
n't PART
hit VERB
fast ADJ
pitch NOUN
, PUNCT
or CCONJ
arenot NOUN
used VERB
to ADP
hitting VERB
off ADP
a DET
machine NOUN
) PUNCT
, PUNCT
  SPACE
I PRON
would AUX
seriously ADV
question VERB
theresults NOUN
of ADP
that DET
study NOUN
! PUNCT
! PUNCT
  SPACE
I PRON
think VERB
there PRON
have AUX
been AUX
some DET
studies NOUN
of ADP
majorleague NOUN
players NOUN
( PUNCT
across ADP
a DET
fairly ADV
large ADJ
cross NOUN
section NOUN
of ADP
players NOUN
) PUNCT
to PART
testwhether VERB
eye NOUN
dominance NOUN
being AUX
the DET
same ADJ
or CCONJ
opposite ADJ
side NOUN
was AUX
" PUNCT
better ADJ
" PUNCT
-but CCONJ
I PRON
do AUX
n't PART
know VERB
the DET
results NOUN
. PUNCT
  SPACE
( PUNCT
The DET
woman NOUN
who PRON
ran VERB
the DET
study NOUN
I PRON
was AUX
insaid VERB
that SCONJ
there PRON
was AUX
a DET
higher ADJ
incidence NOUN
of ADP
crossdominance NOUN
in ADP
majorleaguers NOUN
than SCONJ
across ADP
the DET
general ADJ
population NOUN
- PUNCT
but CCONJ
I PRON
'm AUX
not PART
surewhether ADJ
I PRON
'd AUX
believe VERB
her.)Janice PROPN
RathmannNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59018From NUM
: PUNCT
plebrun@minfminf.vub.ac.be PROPN
( PUNCT
Philippe PROPN
Lebrun)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Bursitis PROPN
and CCONJ
laser NOUN
treatmentIn NOUN
article NOUN
< X
1993Apr17.190104.14072@freenet.carleton.ca NUM
> X
, PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
My PRON
family NOUN
doctor NOUN
and CCONJ
the DET
physiotherapist NOUN
( PUNCT
PT PROPN
) PUNCT
she PRON
sent VERB
me PRON
to PART
agree VERB
that SCONJ
the| PROPN
> X
pain NOUN
in ADP
my PRON
left ADJ
shoulder NOUN
is AUX
bursitis NOUN
. PUNCT
I PRON
have AUX
an DET
appointment NOUN
with ADP
an DET
orthpod| NOUN
> X
( PUNCT
I PRON
love VERB
that DET
, PUNCT
it PRON
's AUX
short ADJ
for ADP
' PUNCT
orthopedic ADJ
surgeon NOUN
, PUNCT
apparently ADV
) PUNCT
but CCONJ
while SCONJ
I'm| NUM
> X
waiting VERB
the DET
PT PROPN
is AUX
treating VERB
me.| PROPN
> X
| INTJ
> X
She PRON
's AUX
using VERB
hot ADJ
packs NOUN
, PUNCT
ultrasound NOUN
, PUNCT
and CCONJ
lasers NOUN
, PUNCT
but CCONJ
there PRON
's AUX
no DET
improvement| NOUN
> X
yet ADV
. PUNCT
In ADP
fact NOUN
, PUNCT
I PRON
almost ADV
suspect VERB
it PRON
's AUX
getting VERB
worse.| PROPN
> X
| ADV
> X
My PRON
real ADJ
question NOUN
is AUX
about ADP
the DET
laser NOUN
treatment NOUN
. PUNCT
I PRON
ca AUX
n't PART
easily ADV
imagine VERB
what| NOUN
> X
the DET
physical ADJ
effect NOUN
that PRON
could AUX
have AUX
on ADP
a DET
deep ADJ
tissue NOUN
problem NOUN
. PUNCT
Can AUX
anyone| NOUN
> X
shed VERB
some DET
light NOUN
( PUNCT
so ADV
to PART
speak VERB
) PUNCT
on ADP
the DET
matter?If PROPN
it PRON
works VERB
it PRON
's AUX
only ADV
due ADP
to ADP
the DET
heat NOUN
produced VERB
by ADP
the DET
laser.-philippeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59019From NUM
: PUNCT
francis@ircam.fr PROPN
( PUNCT
Joseph PROPN
Francis)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
Crullerian PROPN
. PUNCT
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
> PROPN
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
> X
appreciated VERB
. PUNCT
Crullerian ADJ
photography NOUN
is AUX
n't PART
educational ADJ
, PUNCT
except SCONJ
in ADP
a DET
purely ADV
satiricsense NOUN
. PUNCT
> X
	 SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
> X
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
> X
object NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
> X
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
> X
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
> VERB
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
> X
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
Crullerian ADJ
photography NOUN
involves VERB
putting VERB
donuts NOUN
between ADP
grease NOUN
- PUNCT
coveredhot NOUN
metal NOUN
plates NOUN
while SCONJ
illuminating VERB
them PRON
with ADP
a DET
Krypton PROPN
Stroboscope PROPN
. PUNCT
Through ADP
a DET
unique ADJ
iteration NOUN
involving VERB
the DET
4th ADJ
- PUNCT
dimensional ADJ
projection NOUN
ofa PROPN
torus PROPN
through ADP
the DET
semi ADJ
- ADJ
stochastic ADJ
interactions NOUN
of ADP
hot ADJ
monomolecularlipid ADJ
layers NOUN
covering VERB
the DET
metal NOUN
plates NOUN
( PUNCT
the DET
best ADJ
metal NOUN
is AUX
iron NOUN
sinceit NOUN
repels NOUN
Vampires PROPN
and CCONJ
Succubi PROPN
) PUNCT
the DET
donuts NOUN
start VERB
developing VERB
flutes NOUN
, PUNCT
and CCONJ
within ADP
moments NOUN
actually ADV
become VERB
poly NOUN
- PUNCT
crenellated VERB
hot ADJ
greasybreadtubes NOUN
. PUNCT
Some DET
people NOUN
believe VERB
that SCONJ
food NOUN
is AUX
the DET
way NOUN
to ADP
a DET
man NOUN
's PART
heart NOUN
, PUNCT
but CCONJ
most ADJ
psychics NOUN
agree VERB
that SCONJ
there PRON
is AUX
nothing PRON
like SCONJ
hot ADJ
Crullers NOUN
forbreakfast NOUN
; PUNCT
the DET
chemical ADJ
composition NOUN
of ADP
crullers NOUN
is AUX
a DET
mystery NOUN
, PUNCT
somethought ADJ
evidence NOUN
of ADP
Charles PROPN
Fort PROPN
's PART
channeling NOUN
in ADP
Stevie PROPN
Wonder'sproduction NUM
of ADP
" PUNCT
The DET
Secret ADJ
Life NOUN
of ADP
Plants PROPN
" PUNCT
when ADV
played VERB
backwards ADV
in ADP
thetheatre NOUN
of ADP
unnaturally ADV
fertile ADJ
Findhorn PROPN
Farms PROPN
has AUX
deduced VERB
that SCONJ
theyare PROPN
complex ADJ
carbohydrates VERB
ordinarily ADV
only ADV
found VERB
by ADP
spectoscopy NOUN
in ADP
theMagellenic PROPN
Clouds PROPN
. PUNCT
I PRON
called VERB
Devi PROPN
on ADP
my PRON
Orgone PROPN
Box PROPN
and CCONJ
asked VERB
her PRON
ifthis NOUN
was AUX
really ADV
the DET
case NOUN
, PUNCT
and CCONJ
she PRON
TM PROPN
levitated VERB
me PRON
a DET
letter NOUN
across ADP
theAtlantic PROPN
to PART
tell VERB
me PRON
it PRON
was AUX
indeed ADV
not PART
just ADV
another DET
case NOUN
ofmisunderstanding VERB
Tesla PROPN
, PUNCT
though SCONJ
the DET
Miskatonic PROPN
University PROPN
hasn'tconfirmed PUNCT
anything PRON
at ADV
all ADV
. PUNCT
At ADP
least ADJ
the DET
Crullers NOUN
taste VERB
good NOUN
; PUNCT
I PRON
got VERB
therecipe NOUN
from ADP
Kaspar PROPN
Hauser.-- PROPN
| PROPN
Le PROPN
Jojo PROPN
: PUNCT
Fresh PROPN
' CCONJ
n CCONJ
' PUNCT
Clean ADJ
, PUNCT
speaking VERB
out SCONJ
to ADP
the DET
way NOUN
you PRON
want VERB
to PART
live| VERB
today NOUN
; PUNCT
American PROPN
- PUNCT
All DET
American PROPN
; PUNCT
doing VERB
, PUNCT
a DET
bit NOUN
so ADV
, PUNCT
and CCONJ
even ADV
more ADV
so ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59020From NUM
: PUNCT
swkirch@sun6850.nrl.navy.mil PROPN
( PUNCT
Steve PROPN
Kirchoefer)Subject PROPN
: PUNCT
3rd ADJ
CFV PROPN
and CCONJ
VOTE PROPN
ACK PROPN
: PUNCT
misc.health.diabetesThis PRON
is AUX
the DET
third ADJ
and CCONJ
final ADJ
call NOUN
for ADP
votes NOUN
for ADP
the DET
creation NOUN
of ADP
thenewsgroup NOUN
misc.health.diabetes PROPN
. PUNCT
  SPACE
A DET
mass ADJ
acknowledgement NOUN
of ADP
valid PROPN
votesreceived VERB
as SCONJ
of ADP
April PROPN
19th NOUN
14:00 NUM
GMT PROPN
appears VERB
at ADP
the DET
end NOUN
of ADP
thisposting NOUN
. PUNCT
  SPACE
Please INTJ
check VERB
the DET
list NOUN
to PART
be AUX
sure ADJ
that SCONJ
your PRON
vote NOUN
has AUX
beenregistered VERB
. PUNCT
  SPACE
Read VERB
the DET
instructions NOUN
for ADP
voting VERB
carefully ADV
and CCONJ
followthem PRON
precisely ADV
to PART
be AUX
certain ADJ
that SCONJ
you PRON
place VERB
a DET
proper ADJ
vote NOUN
. PUNCT
Instructions NOUN
for ADP
voting NOUN
: PUNCT
To PART
place VERB
a DET
vote NOUN
FOR ADP
the DET
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
anemail NOUN
message NOUN
to ADP
yes@sun6850.nrl.navy.mil PRON
To PART
place VERB
a DET
vote NOUN
AGAINST ADJ
creation NOUN
of ADP
misc.health.diabetes PROPN
, PUNCT
send VERB
anemail NOUN
message NOUN
to ADP
no@sun6850.nrl.navy.mil PRON
The DET
contents NOUN
of ADP
the DET
message NOUN
should AUX
contain VERB
the DET
line NOUN
" PUNCT
I PRON
votefor VERB
/ SYM
against ADP
misc.health.diabetes PROPN
as SCONJ
proposed VERB
" PUNCT
. PUNCT
  SPACE
Email NOUN
messages NOUN
sent VERB
tothe ADV
above ADP
addresses NOUN
must AUX
constitute VERB
unambiguous ADJ
and CCONJ
unconditionalvotes NOUN
for ADP
/ SYM
against ADP
newsgroup PROPN
creation NOUN
as SCONJ
proposed VERB
. PUNCT
  SPACE
Conditional ADJ
voteswill NOUN
not PART
be AUX
accepted VERB
. PUNCT
  SPACE
Only ADV
votes NOUN
emailed VERB
to ADP
the DET
above ADJ
addresses NOUN
willbe PROPN
counted VERB
; PUNCT
mailed VERB
replies VERB
to ADP
this DET
posting NOUN
will AUX
be AUX
returned VERB
. PUNCT
  SPACE
In ADP
theevent NOUN
that SCONJ
more ADJ
than SCONJ
one NUM
vote NOUN
is AUX
placed VERB
by ADP
an DET
individual NOUN
, PUNCT
only ADV
themost ADJ
recent ADJ
vote NOUN
will AUX
be AUX
counted VERB
. PUNCT
Voting NOUN
will AUX
continue VERB
until ADP
23:59 NUM
GMT PROPN
, PUNCT
29 NUM
Apr PROPN
93.Votes NUM
will AUX
not PART
be AUX
accepted VERB
after ADP
this DET
date NOUN
. PUNCT
Any DET
administrative ADJ
inquiries NOUN
pertaining VERB
to ADP
this DET
CFV PROPN
may AUX
be AUX
made VERB
byemail ADJ
to ADP
swkirch@sun6850.nrl.navy.mil PROPN
The DET
proposed VERB
charter NOUN
appears VERB
below ADV
. PUNCT
-------------------------- PUNCT
Charter NOUN
: PUNCT
   SPACE
misc.health.diabetes PROPN
                            SPACE
unmoderated ADJ
1 NUM
. PUNCT
   SPACE
The DET
purpose NOUN
of ADP
misc.health.diabetes PROPN
is AUX
to PART
provide VERB
a DET
forum NOUN
for ADP
thediscussion NOUN
of ADP
issues NOUN
pertaining VERB
to ADP
diabetes NOUN
management NOUN
, PUNCT
i.e. X
: PUNCT
diet NOUN
, PUNCT
activities NOUN
, PUNCT
medicine NOUN
schedules NOUN
, PUNCT
blood NOUN
glucose NOUN
control NOUN
, PUNCT
exercise NOUN
, PUNCT
medical ADJ
breakthroughs NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
group NOUN
addresses VERB
the DET
issues NOUN
ofmanagement NOUN
of ADP
both DET
Type NOUN
I PRON
( PUNCT
insulin NOUN
dependent ADJ
) PUNCT
and CCONJ
Type PROPN
II PROPN
( PUNCT
non ADJ
- ADJ
insulindependent ADJ
) PUNCT
diabetes VERB
. PUNCT
  SPACE
Both DET
technical ADJ
discussions NOUN
and CCONJ
general ADJ
supportdiscussions NOUN
relevant ADJ
to ADP
diabetes NOUN
are AUX
welcome ADJ
. PUNCT
2 NUM
. PUNCT
   SPACE
Postings NOUN
to ADP
misc.heath.diabetes NOUN
are AUX
intended VERB
to PART
be AUX
for ADP
discussionpurposes NOUN
only ADV
, PUNCT
and CCONJ
are AUX
in ADP
no DET
way NOUN
to PART
be AUX
construed VERB
as SCONJ
medical ADJ
advice NOUN
. PUNCT
Diabetes NOUN
is AUX
a DET
serious ADJ
medical ADJ
condition NOUN
requiring VERB
direct ADJ
supervisionby PROPN
a DET
primary ADJ
health NOUN
care NOUN
physician NOUN
. PUNCT
   SPACE
-----(end NOUN
of ADP
charter)----- NUM
The DET
following VERB
individuals NOUN
have AUX
sent VERB
in ADP
valid ADJ
votes NOUN
: PUNCT
9781BMU@VMS.CSD.MU.EDU X
                  SPACE
Bill PROPN
Satterleea2wj@loki.cc.pdx.edu PROPN
                    SPACE
Jim PROPN
Williamsac534@freenet.carleton.ca PUNCT
               SPACE
Colin PROPN
Heneinad@cat.de ADV
                               SPACE
Axel PROPN
Dunkelal198723@academ07.mty.itesm.mx NUM
          SPACE
Jesus PROPN
Eugenio PROPN
S PROPN
nchez VERB
Pe PROPN
~ PUNCT
aanugula@badlands NOUN
. PUNCT
NoDak.edu NUM
              SPACE
RamaKrishna PROPN
Reddy PROPN
Anugulaapps@sneaks NOUN
. PUNCT
Kodak.com PROPN
                   SPACE
Robert PROPN
W. PROPN
Appsarperd00@mik.uky.edu PROPN
                    SPACE
alicia PROPN
r NOUN
perduebaind@gov.on.ca NUM
                         SPACE
Dave PROPN
Bainbalamut@morris.hac.com PROPN
                  SPACE
Morris PROPN
Balamutbch@Juliet.Caltech.EduBGAINES@ollamh.ucd.ie NOUN
                   SPACE
Brian PROPN
GainesBjorn.B.Larsen@delab.sintef.nobobw@hpsadwc.sad.hp.com X
                 SPACE
Bob PROPN
Waltenspielbruce@uxb.liverpool.ac.uk PROPN
               SPACE
brucebspencer@binkley.cs.mcgill.ca VERB
           SPACE
Brian PROPN
SPENCERcline@usceast.cs.scarolina.edu NOUN
          SPACE
Ernest PROPN
A. PROPN
Clinecoleman@twin.twinsun.com PROPN
                SPACE
Mike PROPN
Colemancompass-da.com!tomd@compass-da.com PROPN
      SPACE
Thomas PROPN
Donnellycsc@coast.ucsd.edu PROPN
                      SPACE
Charles PROPN
Coughrancurtech!sbs@unh.edu PROPN
                     SPACE
Stephanie PROPN
Bradley-Swiftdebrum#m#_brenda@msgate.corp.apple.com PROPN
  SPACE
DeBrum PROPN
, PUNCT
Brendadlb@fanny.wash.inmet.com PROPN
                SPACE
David PROPN
Bartondlg1@midway.uchicago.edu PROPN
                SPACE
deborah PROPN
lynn VERB
gillaspiedougb@comm.mot.com PROPN
                      SPACE
Douglas PROPN
Banked@titipu.resun.com X
                     SPACE
Edward PROPN
Reidedmoore@hpvclc.vcd.hp.com PROPN
               SPACE
Ed PROPN
Mooreejo@kaja.gi.alaska.edu PROPN
                  SPACE
Eric PROPN
J. PROPN
Olsonemcguire@intellection.com PROPN
               SPACE
Ed PROPN
McGuireewc@hplb.hpl.hp.com PROPN
                     SPACE
Enrico PROPN
Coierafeathr::bluejay@ampakz.enet.dec.comfranklig@GAS.uug.Arizona.EDU PROPN
            SPACE
Gregory PROPN
C PROPN
Franklin PROPN
FSSPR@acad3.alaska.edu PROPN
                  SPACE
Hardcore PROPN
Alaskangabe@angus.mi.org PROPN
                       SPACE
Gabe PROPN
Helougasp@medg.lcs.mit.edu NUM
                   SPACE
Isaac PROPN
Kohanegasp@medg.lcs.mit.edu PROPN
                   SPACE
Isaac PROPN
KohaneGeir PROPN
. PUNCT
Millstein@TF.tele.noggurman@cory X
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
               SPACE
Gail PROPN
Gurmanggw@wolves VERB
. PUNCT
Durham PROPN
. PUNCT
NC.US PROPN
                 SPACE
Gregory PROPN
G. PROPN
Woodburygreenlaw@oasys.dt.navy.mil PROPN
              SPACE
Leila PROPN
Thomasgrm+@andrew.cmu.edu PROPN
                     SPACE
Gretchen PROPN
Millerhalderc@cs.rpi.eduHANDELAP%DUVM.BITNET@pucc.Princeton.EDU PROPN
Phil PROPN
Handelhansenr@ohsu VERB
. PUNCT
EDUhc@Nyongwa.cam.org PROPN
                      SPACE
hcheddings@chrisco.nrl.navy.mil NUM
           SPACE
Hubert PROPN
Heddingsherbison@lassie.ucx.lkg.dec.com X
         SPACE
B.J.hmpetro@mosaic.uncc.edu ADJ
                 SPACE
Herbert PROPN
M PROPN
PetroHOSCH2263@iscsvax.uni.eduhrubin@pop.stat.purdue.edu PROPN
              SPACE
Herman PROPN
RubinHUDSOIB@AUDUCADM.DUC.AUBURN.EDU PROPN
         SPACE
Ingrid PROPN
B. PROPN
Hudsonhuff@MCCLB0.MED.NYU.EDU PROPN
                 SPACE
Edward PROPN
J. PROPN
Huffhuffman@ingres.com PROPN
                      SPACE
Gary PROPN
HuffmanHUYNH_1@ESTD.NRL.NAVY.MIL PROPN
               SPACE
Minh PROPN
Huynhishbeld@cix.compulink.co.uk PROPN
             SPACE
Ishbel PROPN
DonkinJames PROPN
. PUNCT
Langdell@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
              SPACE
James PROPN
Langdelljamyers@netcom.com PROPN
                      SPACE
John PROPN
A. PROPN
Myersjc@crosfield.co.uk PROPN
                      SPACE
jerry PROPN
cullingfordjesup@cbmvax.cbm.commodore.com X
          SPACE
Randell PROPN
Jesupjjmorris@gandalf.rutgers.edu PROPN
            SPACE
Joyce PROPN
Morrisjoep@dap.csiro.au PROPN
                       SPACE
Joe PROPN
PetranovicJohn.Burton@acenet.auburn.edu PROPN
           SPACE
John PROPN
E. PROPN
Burton PROPN
Jr.johncha@comm.mot.comJORGENSONKE@CC.UVCC.EDUjpsum00@mik.uky.edu PROPN
                     SPACE
joey PROPN
p PROPN
sumJTM@ucsfvm.ucsf.edu PROPN
                     SPACE
John PROPN
Maynardjulien@skcla.monsanto.comkaminski@netcom.com PROPN
                     SPACE
Peter PROPN
Kaminskikerry@citr.uq.oz.au PROPN
                     SPACE
Kerry PROPN
Raymondkieran@world.std.com PROPN
                    SPACE
Aaron PROPN
L PROPN
Dickeyknauer@cs.uiuc.edu PROPN
                      SPACE
Rob PROPN
Knauerhasekolar@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
                 SPACE
Jennifer PROPN
Lynn PROPN
Kolarkriguer@tcs.com PROPN
                         SPACE
Marc PROPN
Kriguerlau@ai.sri.com PROPN
                          SPACE
Stephen PROPN
Laulee@hal.com PROPN
                             SPACE
Lee PROPN
Boylanlmt6@po.cwru.edulunie@Lehigh.EDUlusgr@chili.CC.Lehigh.EDU PROPN
               SPACE
Stephen PROPN
G. PROPN
RosemanM.Beamish@ins.gu.edu.au PROPN
                 SPACE
Marilyn PROPN
BeamishM.Rich@ens.gu.edu.au PROPN
                    SPACE
Maurice PROPN
H. PROPN
Rich.maas@cdfsga.fnal.gov PROPN
                    SPACE
Peter PROPN
Maasmacridis_g@kosmos.wcc.govt.nz NOUN
           SPACE
Gerry PROPN
Macridismarkv@hpvcivm.vcd.hp.com PROPN
                SPACE
Mark PROPN
VanderfordMASCHLER@vms.huji.ac.ilmcb@net.bio.net PROPN
                         SPACE
Michael PROPN
C. PROPN
Berchmcday@ux1.cso.uiuc.edumcookson@flute.calpoly.edumfc@isr.harvard.edu PROPN
                     SPACE
Mauricio PROPN
F PROPN
Contrerasmg@wpi.edu PROPN
                              SPACE
Martha PROPN
Gunnarsonmhollowa@libserv1.ic.sunysb.edu NOUN
         SPACE
Michael PROPN
Hollowaymisha@abacus.concordia.ca PROPN
               SPACE
MISHA PROPN
GLOUBERMAN PROPN
mjb@cs.brown.edu PROPN
                        SPACE
Manish ADJ
ButteMOFLNGAN@vax1.tcd.iemuir@idiom.berkeley.ca.us PROPN
               SPACE
David PROPN
Muir PROPN
SharnoffNancy PROPN
. PUNCT
Block@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
                 SPACE
Nancy PROPN
Blockndallen@r-node.hub.org PROPN
                  SPACE
Nigel PROPN
Allennlr@B31.nei.nih.gov PROPN
                     SPACE
Rohrer PROPN
, PUNCT
Nathanowens@cookiemonster.cc.buffalo.edu PROPN
      SPACE
Bill PROPN
Owenspams@hpfcmp.fc.hp.com NUM
                   SPACE
Pam PROPN
Sullivanpapresco@undergrad.math.uwaterloo.ca NOUN
    SPACE
Paul PROPN
Prescodpaslowp@cs.rpi.edupillinc@gov.on.ca PROPN
                       SPACE
Christopher PROPN
Pillingpkane@cisco.com PROPN
                         SPACE
Peter PROPN
Kanepopelka@odysseus.uchicago.edu PROPN
           SPACE
Glenn PROPN
Popelkapulkka@cs.washington.edu PROPN
                SPACE
Aaron PROPN
Pulkkapwatkins@med.unc.edu NUM
                    SPACE
Pat NOUN
Watkinsrbnsn@mosaic.shearson.com X
               SPACE
Ken PROPN
Robinsonrick@crick.ssctr.bcm.tmc.edu PROPN
            SPACE
Richard PROPN
H. PROPN
Millerrobyn@media.mit.edu PROPN
                     SPACE
Robyn PROPN
Kozierokrolf@green.mathematik.uni-stuttgart.de PROPN
  SPACE
Rolf PROPN
Schreibersageman@cup.portal.comsasjcs@unx.sas.com X
                      SPACE
Joan PROPN
StoutSCOTTJOR@delphi.comscrl@hplb.hpl.hp.comscs@vectis.demon.co.uk PROPN
                  SPACE
Stuart PROPN
C. PROPN
Squibbshan@techops.cray.com X
                   SPACE
Sharan PROPN
Kalwanisharen@iscnvx.lmsc.lockheed.com PROPN
         SPACE
Sharen PROPN
A. PROPN
Rundshazam@unh.edu PROPN
                          SPACE
Matthew PROPN
T PROPN
Thompsonshipman@csab.larc.nasa.gov PROPN
              SPACE
Floyd PROPN
S. PROPN
Shipmanshoppa@ERIN.CALTECH.EDU NOUN
                 SPACE
Tim PROPN
Shoppaslillie@cs1.bradley.edu PROPN
                 SPACE
Susan PROPN
Lilliesteveo@world.std.com PROPN
                    SPACE
Steven PROPN
W PROPN
Orrsurendar@ivy PROPN
. PUNCT
WPI.EDU PROPN
                    SPACE
Surendar PROPN
Chandraswkirch@sun6850.nrl.navy.mil PROPN
            SPACE
Steven PROPN
KirchoeferS_FAGAN@twu.eduTARYN@ARIZVM1.ccit.arizona.edu PROPN
          SPACE
Taryn PROPN
L. PROPN
WestergaardThomas.E.Taylor@gagme.chi.il.us PROPN
         SPACE
Thomas PROPN
E PROPN
Taylortima@CFSMO.Honeywell NOUN
. PUNCT
COM PROPN
                SPACE
Timothy PROPN
D NOUN
Aanerudtsamuel%gollum@relay.nswc.navy.mil X
      SPACE
Tony PROPN
SamuelU45301@UICVM.UIC.EDU NOUN
                    SPACE
M. PROPN
Jacobs PROPN
  SPACE
vstern@gte.com X
                          SPACE
Vanessa PROPN
Sternwahlgren@haida.van.wti.com NUM
              SPACE
James PROPN
Wahlgrenwaterfal@pyrsea.sea.pyramid.com X
         SPACE
Douglas PROPN
Waterfallweineja1@teomail.jhuapl.eduwgrant@informix.com PROPN
                     SPACE
William PROPN
GrantYEAGER@mscf.med.upenn.eduyozzo@watson.ibm.com PROPN
                    SPACE
Ralph PROPN
E. PROPN
YozzoZ919016@beach.utmb.edu NOUN
                  SPACE
Molly PROPN
Hamilton-- PROPN
Steve PROPN
Kirchoefer PROPN
                                             SPACE
( PUNCT
202 NUM
) PUNCT
767 NUM
- SYM
2862Code NUM
6851 NUM
                                      SPACE
kirchoefer@estd.nrl.navy.milNaval PROPN
Research PROPN
Laboratory PROPN
                       SPACE
Microwave PROPN
Technology PROPN
BranchWashington PROPN
, PUNCT
DC PROPN
  SPACE
20375 NUM
- SYM
5000 NUM
              SPACE
Electronics PROPN
Sci PROPN
. PUNCT
and CCONJ
Tech PROPN
. PUNCT
DivisionNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59021From NUM
: PUNCT
bmdelane@midway.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
RESULT NOUN
: PUNCT
sci.life-extension NOUN
passes VERB
237:28The NUM
vote NOUN
to PART
create VERB
the DET
proposed VERB
group NOUN
, PUNCT
Sci.life NOUN
- PUNCT
extension NOUN
, PUNCT
wasaffirmative ADJ
. PUNCT
Yes INTJ
votes NOUN
: PUNCT
    SPACE
237.No NUM
votes NOUN
: PUNCT
      SPACE
28.What NUM
follows VERB
is AUX
a DET
list NOUN
of ADP
the DET
people NOUN
who PRON
voted VERB
, PUNCT
by ADP
vote NOUN
( PUNCT
" PUNCT
no INTJ
" PUNCT
or CCONJ
" PUNCT
yes").Here PROPN
are AUX
the DET
people NOUN
who PRON
voted VERB
NO:bailey@utpapa.ph.utexas.edu PROPN
               SPACE
( PUNCT
Ed PROPN
Bailey)barkdoll@lepomis.psych.upenn.edu X
          SPACE
( PUNCT
Edwin PROPN
Barkdoll)msb@sq.com PROPN
                                SPACE
( PUNCT
Mark PROPN
Brader)carr@acsu.buffalo.edu PROPN
                     SPACE
( PUNCT
Dave PROPN
Carr)desj@ccr-p.ida.org PROPN
                        SPACE
( PUNCT
David PROPN
desJardins)jbh@Anat PROPN
. PUNCT
UMSMed ADJ
. PUNCT
Edu PROPN
                       SPACE
( PUNCT
James PROPN
B. PROPN
Hutchins)rsk@gynko.circ.upenn.edu PROPN
                  SPACE
( PUNCT
Rich PROPN
Kulawiec)stu@valinor.mythical.com X
                  SPACE
( PUNCT
Stu PROPN
Labovitz)lau@ai.sri.com PROPN
                            SPACE
( PUNCT
Stephen PROPN
Lau)plebrun@minf8.vub.ac.be PROPN
                   SPACE
( PUNCT
Philippe PROPN
Lebrun)jmaynard@nyx.cs.du.edu PROPN
                    SPACE
( PUNCT
Jay PROPN
Maynard)emcguire@intellection.com PROPN
                 SPACE
( PUNCT
Ed PROPN
McGuire)rick@crick.ssctr.bcm.tmc.edu PROPN
              SPACE
( PUNCT
Richard PROPN
H. PROPN
Miller)smarry@zooid.guild.org PROPN
                    SPACE
( PUNCT
Marc PROPN
Moorcroft)dmosher@nyx.cs.du.edu PROPN
                     SPACE
( PUNCT
David PROPN
Mosher)ejo@kaja.gi.alaska.edu PROPN
                    SPACE
( PUNCT
Eric PROPN
J. PROPN
Olson)hmpetro@mosaic.uncc.edu PROPN
                   SPACE
( PUNCT
Herbert PROPN
M PROPN
Petro)smith PROPN
- PUNCT
una@YALE.EDU PROPN
                        SPACE
( PUNCT
Una PROPN
Smith)mmt@RedBrick PROPN
. PUNCT
COM NOUN
                          SPACE
( PUNCT
Maxime PROPN
Taksar PROPN
KC6ZPS)urlichs@smurf.sub.org PROPN
                     SPACE
( PUNCT
Matthias PROPN
Urlichs)ac999266@umbc.edu NOUN
                         SPACE
( PUNCT
a DET
Francis PROPN
Uy)werner@SOE.Berkeley PROPN
. PUNCT
Edu NOUN
                   SPACE
( PUNCT
John PROPN
Werner)wick@netcom.com X
                           SPACE
( PUNCT
Potter PROPN
Wickware)ggw@wolves NOUN
. PUNCT
Durham PROPN
. PUNCT
NC.US PROPN
                   SPACE
( PUNCT
Gregory PROPN
G. PROPN
Woodbury)D.W.Wright@bnr.co.uk PROPN
                      SPACE
( PUNCT
D. PROPN
Wright)yarvin PROPN
- PUNCT
norman@CS.YALE.EDU SYM
                 SPACE
( PUNCT
Norman PROPN
Yarvin)ask@cblph.att.comspm2d@opal.cs.virginia.eduHere PROPN
are AUX
the DET
people NOUN
who PRON
voted VERB
YES NOUN
: PUNCT
FSSPR@ACAD3.ALASKA.EDU SYM
                    SPACE
( PUNCT
Hardcore PROPN
Alaskan)kalex@eecs.umich.edu PROPN
                      SPACE
( PUNCT
Ken PROPN
Alexander)ph600fht@sdcc14.UCSD.EDU PROPN
                  SPACE
( PUNCT
Alex PROPN
Aumann)franklin.balluff@Syntex VERB
. PUNCT
Com NOUN
               SPACE
( PUNCT
Franklin PROPN
Balluff)barash@umbc.edu SYM
                           SPACE
( PUNCT
Mr. PROPN
Steven PROPN
Barash)build@alan.b30.ingr.com PROPN
               SPACE
( PUNCT
Alan PROPN
Barksdale PROPN
( PUNCT
build))lion@TheRat PROPN
. PUNCT
Kludge PROPN
. PUNCT
COM NOUN
                    SPACE
( PUNCT
John PROPN
H. PROPN
Barlow)pbarto@UCENG.UC.EDU PROPN
                       SPACE
( PUNCT
Paul PROPN
Barto)ryan.bayne@canrem.com NOUN
                     SPACE
( PUNCT
Ryan PROPN
Bayne)mignon@shannon PROPN
. PUNCT
Jpl PROPN
. PUNCT
Nasa PROPN
. PUNCT
Gov NOUN
               SPACE
( PUNCT
Mignon PROPN
Belongie)beaudot@tirf.grenet.fr PROPN
                    SPACE
( PUNCT
william PROPN
Beaudot)lavb@lise.unit.no PROPN
                         SPACE
( PUNCT
Olav PROPN
Benum)ross@bryson.demon.co.uk PROPN
                   SPACE
( PUNCT
Ross PROPN
Beresford)ben.best@canrem.com SYM
                       SPACE
( PUNCT
Ben PROPN
Best)levi@happy-man.com PROPN
                        SPACE
( PUNCT
Levi PROPN
Bitansky)jsb30@dagda NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun INTJ
. PUNCT
COM NOUN
                   SPACE
( PUNCT
James PROPN
Blomgren)gbloom@nyx.cs.du.edu PROPN
                      SPACE
( PUNCT
Gregory PROPN
Bloom)mbrader@netcom.com X
                        SPACE
( PUNCT
Mark PROPN
Brader)ebrandt@jarthur PROPN
. PUNCT
Claremont PROPN
. PUNCT
EDU PROPN
             SPACE
( PUNCT
Eli PROPN
Brandt)doom@leland.stanford.edu PROPN
                  SPACE
( PUNCT
Joseph PROPN
Brenner)rc@pos.apana.org.au NOUN
                       SPACE
( PUNCT
Robert PROPN
Cardwell)jeffjc@binkley.cs.mcgill.ca PROPN
               SPACE
( PUNCT
Jeffrey PROPN
CHANCE)sasha@cs.umb.edu PROPN
                          SPACE
( PUNCT
Alexander PROPN
Chislenko)mclark@world.std.com PROPN
                      SPACE
( PUNCT
Maynard PROPN
S PROPN
Clark)100042.2703@CompuServe PROPN
. PUNCT
COM NOUN
                SPACE
( PUNCT
" PUNCT
A.J. PROPN
Clifford")coleman@twinsun.com X
                       SPACE
( PUNCT
Mike PROPN
Coleman)steve@constellation.ecn.uoknor.edu PROPN
        SPACE
( PUNCT
Steve PROPN
Coltrin)collier@ivory.rtsg.mot.com PROPN
                SPACE
( PUNCT
John PROPN
T. PROPN
Collier)compton@plains PROPN
. PUNCT
NoDak.edu PROPN
                  SPACE
( PUNCT
Curtis PROPN
M. PROPN
Compton PROPN
) PUNCT
bobc@master.cna.tek.com X
                   SPACE
( PUNCT
Bob PROPN
Cook)cordell@shaman.nexagen.com PROPN
                SPACE
( PUNCT
Bruce PROPN
Cordell)cormierj@ERE.UMontreal NUM
. PUNCT
CA PROPN
                 SPACE
( PUNCT
Cormier PROPN
Jean-Marc)djcoyle@macc.wisc.edu PROPN
                     SPACE
( PUNCT
Douglas PROPN
J. PROPN
Coyle)dass0001@student.tc.umn.edu PROPN
               SPACE
( PUNCT
" PUNCT
John PROPN
R PROPN
Dassow-1")bdd@onion.eng.hou.compaq.com X
              SPACE
( PUNCT
Bruce PROPN
Davis)demonn@emunix.emich.edu PROPN
                   SPACE
( PUNCT
Kenneth PROPN
Jubal PROPN
DeMonn)desilets@sj.ate.slb.com PROPN
                   SPACE
( PUNCT
Mark PROPN
Desilets)markd@sco PROPN
. PUNCT
COM PROPN
                             SPACE
( PUNCT
Mark PROPN
Diekhans)kari@teracons.teracons.com PROPN
                SPACE
( PUNCT
Kari PROPN
Dubbelman)lhdsy1!cyberia.hou281.chevron.com!hwdub@uunet PROPN
. PUNCT
UU.NET NOUN
( PUNCT
Dub PROPN
Dublin)willdye@helios.unl.edu PROPN
                    SPACE
( PUNCT
Will AUX
Dye)155yegan%jove.dnet.measurex.com@juno.measurex.com NOUN
( PUNCT
TERRY PROPN
EGAN)eder@hsvaic.boeing.com NOUN
                    SPACE
( PUNCT
Dani PROPN
Eder)glenne@magenta PROPN
. PUNCT
HQ.Ileaf X
. PUNCT
COM PROPN
               SPACE
( PUNCT
Glenn PROPN
Ellingson)farrar@adaclabs.com PROPN
                       SPACE
( PUNCT
Richard PROPN
Farrar)ghsvax!hal@uunet PROPN
. PUNCT
UU.NET NOUN
                   SPACE
( PUNCT
Hal PROPN
Finney)lxfogel@srv PROPN
. PUNCT
PacBell PROPN
. PUNCT
COM NOUN
                   SPACE
( PUNCT
Lee PROPN
Fogel)afoxx@foxxjac.b17a.ingr.com X
               SPACE
( PUNCT
Foxx)i000702@disc.dla.mil NOUN
               SPACE
( PUNCT
sam PROPN
frajerman,sppb,x3026,)mpf@medg.lcs.mit.edu PROPN
                      SPACE
( PUNCT
Michael PROPN
P. PROPN
Frank)Martin PROPN
. PUNCT
Franklin@Corp NOUN
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
              SPACE
( PUNCT
Martin PROPN
Franklin)tiff@CS.UCLA.EDU PROPN
                          SPACE
( PUNCT
Tiffany PROPN
Frazier)Ailing_Zhu_Freeman@U.ERGO.CS.CMU.EDU NOUN
      SPACE
( PUNCT
Ailing PROPN
Freeman)Timothy_Freeman@U.ERGO.CS.CMU.EDU PROPN
         SPACE
( PUNCT
Tim PROPN
Freeman)gt0657c@prism.gatech.edu PROPN
                  SPACE
( PUNCT
geoff PROPN
george)mtvdjg@rivm.nl PROPN
                            SPACE
( PUNCT
Daniel PROPN
Gijsbers)exusag@exu.ericsson.se PROPN
                    SPACE
( PUNCT
Serena PROPN
Gilbert)rlglende@netcom.com X
                SPACE
( PUNCT
Robert PROPN
Lewis PROPN
Glendenning)goetz@cs NOUN
. PUNCT
Buffalo PROPN
. PUNCT
EDU PROPN
                      SPACE
( PUNCT
Phil PROPN
Goetz)goolsby@dg-rtp.dg.com NOUN
                     SPACE
( PUNCT
Chris PROPN
Goolsby)dgordon@crow.omni.co.jp NUM
                   SPACE
( PUNCT
David PROPN
Gordon)bgrahame@eris.demon.co.uk NUM
                 SPACE
( PUNCT
Robert PROPN
D PROPN
Grahame)sascsg@unx.sas.com PROPN
                        SPACE
( PUNCT
Cynthia PROPN
Grant)green@srilanka.island.COM PROPN
                 SPACE
( PUNCT
Robert PROPN
Greenstein)johng@oce.orst.edu PROPN
                        SPACE
( PUNCT
John PROPN
A. PROPN
Gregor)roger@netcom.com PROPN
                          SPACE
( PUNCT
roger PROPN
gregory)evans PROPN
- PUNCT
ron@CS.YALE.EDU NOUN
                     SPACE
( PUNCT
Ron PROPN
Hale-Evans)brent@vpnet.chi.il.us PROPN
                     SPACE
( PUNCT
Brent PROPN
Hansen)Ron.G.Hay@med.umich.edu NUM
                   SPACE
( PUNCT
Ron PROPN
G. PROPN
Hay)akh@empress.gvg.tek.com PROPN
                   SPACE
( PUNCT
Anna PROPN
K. PROPN
Haynes)claris!qm!Bob_Hearn@ames.arc.nasa.gov PROPN
     SPACE
( PUNCT
Robert PROPN
Hearn)fheyligh@vnet3.vub.ac.be PROPN
                  SPACE
( PUNCT
Francis PROPN
Heylighen)hin9@midway.uchicago.edu NUM
                  SPACE
( PUNCT
P. PROPN
Hindman)fishe@casbah.acns.nwu.edu NOUN
                 SPACE
( PUNCT
Carwil NOUN
James)janzen@mprgate.mpr.ca SYM
                     SPACE
( PUNCT
Martin PROPN
Janzen)karp@skcla.monsanto.com PROPN
                   SPACE
( PUNCT
Jeffery PROPN
M PROPN
Karp)rk2@elsegundoca.ncr.com PROPN
                   SPACE
( PUNCT
Richard PROPN
Kelly)merklin@gnu.ai.mit.edu PROPN
                    SPACE
( PUNCT
Ed PROPN
Kemo)kessner@rintintin PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
            SPACE
( PUNCT
KESSNER PROPN
ERIC PROPN
M)mapam@csv.warwick.ac.uk PROPN
                   SPACE
( PUNCT
Mr PROPN
R PROPN
A PROPN
Khwaja)koski@sunset.cs.utah.edu PROPN
                  SPACE
( PUNCT
Keith PROPN
Koski)kathi@bridge.com X
                          SPACE
( PUNCT
Kathi PROPN
Kramer)benkrug@jupiter.fnbc.com PROPN
                  SPACE
( PUNCT
Ben PROPN
Krug)farif@eskimo.com PROPN
                          SPACE
( PUNCT
David PROPN
Kunz)edsr!edsdrd!sel@uunet PROPN
. PUNCT
UU.NET PROPN
              SPACE
( PUNCT
Steve PROPN
Langs)pa_hcl@MECENG.COE.NORTHEASTERN.EDU PROPN
        SPACE
( PUNCT
Henry PROPN
Leong)S.Linton@pmms.cam.ac.uk ADV
                   SPACE
( PUNCT
Steve PROPN
Linton)alopez@cs.ep.utexas.EDU PROPN
                   SPACE
( PUNCT
Alejandro PROPN
Lopez PROPN
6330)kfl@access.digex.com NUM
                      SPACE
( PUNCT
" PUNCT
Keith PROPN
F. PROPN
Lynch")KAMCHAR@msu.edu NOUN
                           SPACE
( PUNCT
Charles PROPN
MacDonald)rob@vis.toronto.edu PROPN
                       SPACE
( PUNCT
Robert PROPN
C. PROPN
Majka)phil@starconn.com X
                         SPACE
( PUNCT
Phil PROPN
Marks)cam@jackatak.raider.net PROPN
                   SPACE
( PUNCT
Cameron PROPN
Marshall)mmay@mcd.intel.com PROPN
                        SPACE
( PUNCT
Mike PROPN
May AUX
~)drac@uumeme.chi.il.us PROPN
                     SPACE
( PUNCT
Bruce PROPN
Maynard)i001269@discg2.disc.dla.mil PROPN
               SPACE
( PUNCT
john PROPN
mccarrick)xyzzy@imagen.com PROPN
                          SPACE
( PUNCT
David PROPN
McIntyre)cuhes@csv.warwick.ac.uk PROPN
                   SPACE
( PUNCT
Malcolm PROPN
McMahon)mcpherso@macvax NOUN
. PUNCT
UCSD.EDU PROPN
                  SPACE
( PUNCT
John PROPN
Mcpherson)merkle@parc.xerox.com PROPN
                     SPACE
( PUNCT
Ralph PROPN
Merkle)eric@Synopsys NOUN
. PUNCT
COM NOUN
                         SPACE
( PUNCT
Eric PROPN
Messick)pmetzger@shearson.com X
                     SPACE
( PUNCT
Perry PROPN
E. PROPN
Metzger)gmichael@vmd.cso.uiuc.edu PROPN
                 SPACE
( PUNCT
Gary PROPN
R. PROPN
Michael)dat91mas@ludat.lth.se PROPN
                     SPACE
( PUNCT
Asker PROPN
Mikael)MILLERL@WILMA.WHARTON.UPENN.EDU PROPN
           SPACE
( PUNCT
" PUNCT
Loren PROPN
J. PROPN
Miller")minsky@media.mit.edu PROPN
                      SPACE
( PUNCT
Marvin PROPN
Minsky)pmorris@lamar PROPN
. PUNCT
ColoState PROPN
. PUNCT
EDU PROPN
               SPACE
( PUNCT
Paul PROPN
Morris)Mark_Muhlestein@Novell PROPN
. PUNCT
COM NOUN
                SPACE
( PUNCT
Mark PROPN
Muhlestein)david@staff.udc.upenn.edu PROPN
                 SPACE
( PUNCT
R. PROPN
David PROPN
Murray)gananney@mosaic.uncc.edu PROPN
                  SPACE
( PUNCT
Glenn PROPN
A PROPN
Nanney)anthony@meaddata.com SYM
                      SPACE
( PUNCT
Anthony PROPN
Napier)dniman@panther.win.net PROPN
                    SPACE
( PUNCT
Donald PROPN
E. PROPN
Niman)nistuk@unixg.ubc.ca PROPN
                       SPACE
( PUNCT
Richard PROPN
Nistuk)Jonathan@RMIT.EDU.AU PROPN
                      SPACE
( PUNCT
Jonathan PROPN
O'Donnell)martino@gomez PROPN
. PUNCT
Jpl PROPN
. PUNCT
Nasa PROPN
. PUNCT
Gov NOUN
                SPACE
( PUNCT
Martin PROPN
R. PROPN
Olah)cpatil@leland.stanford.edu PROPN
          SPACE
( PUNCT
Christopher PROPN
Kashina PROPN
Patil)crp5754@erfsys01.boeing.com PROPN
               SPACE
( PUNCT
Chris PROPN
Payne)sharon@acri.fr PROPN
                            SPACE
( PUNCT
Sharon PROPN
Peleg)php@rhi.hi.is PROPN
                             SPACE
( PUNCT
Petur PROPN
Henry PROPN
Petersen)chrisp@efi.com PUNCT
                            SPACE
( PUNCT
Chris PROPN
Phoenix)pierce@CS.UCLA.EDU PROPN
                        SPACE
( PUNCT
Brad PROPN
Pierce)julius@math.utah.edu PROPN
                      SPACE
( PUNCT
" PUNCT
Julius PROPN
Pierce")dplatt@cellar.org NOUN
                         SPACE
( PUNCT
Doug PROPN
Platt)Mitchell.Porter@lambada.oit.unc.edu PROPN
       SPACE
( PUNCT
Mitchell PROPN
Porter)cpresson@jido.b30.ingr.com PROPN
                SPACE
( PUNCT
Craig PROPN
Presson)price@price.demon.co.uk PROPN
                   SPACE
( PUNCT
Michael PROPN
Clive PROPN
Price)U39554@UICVM.BITNET PROPN
                       SPACE
( PUNCT
Edward PROPN
S. PROPN
Proctor)stevep@deckard PROPN
. PUNCT
Works.ti.com PROPN
               SPACE
( PUNCT
Steve PROPN
Pruitt)MJQUINN@PUCC.BITNET PROPN
                       SPACE
( PUNCT
Michael PROPN
Quinn)rauss@nvl.army.mil PROPN
                        SPACE
( PUNCT
Patrick PROPN
Rauss)remke@cs.tu-berlin.de PROPN
                     SPACE
( PUNCT
" PUNCT
Jan PROPN
K. PROPN
Remke")ag167@yfn.ysu.edu PROPN
                         SPACE
( PUNCT
Barry PROPN
H. PROPN
Rodin)ksackett@cs.uah.edu PROPN
                       SPACE
( PUNCT
Karl PROPN
R. PROPN
Sackett)rcs@cs.arizona.edu PROPN
                        SPACE
( PUNCT
Richard PROPN
Schroeppel)fschulz@pyramid.com PROPN
                       SPACE
( PUNCT
Frank PROPN
Schulz)kws@Thunder PROPN
- PUNCT
Island.kalamazoo PROPN
. PUNCT
MI.US PROPN
        SPACE
( PUNCT
Karel PROPN
W. PROPN
Sebek)bseewald@gozer.idbsu.edu PROPN
                  SPACE
( PUNCT
Brad PROPN
Seewald)shapard@manta.nosc.mil PROPN
                    SPACE
( PUNCT
Thomas PROPN
D. PROPN
Shapard)habs@Panix NOUN
. PUNCT
Com NOUN
                            SPACE
( PUNCT
Harry PROPN
Shapiro)muir@idiom.berkeley.ca.us PROPN
                 SPACE
( PUNCT
David PROPN
Muir PROPN
Sharnoff)dasher@well.sf.ca.us PROPN
                      SPACE
( PUNCT
D PROPN
Anton PROPN
Sherwood)zero@netcom.com X
                           SPACE
( PUNCT
Richard PROPN
Shiflett)AP201160@BROWNVM.BITNET PROPN
                   SPACE
( PUNCT
Elaine PROPN
Shiner)robsho@robsho PROPN
. PUNCT
Auto NOUN
- PUNCT
trol NOUN
. PUNCT
COM NOUN
               SPACE
( PUNCT
Robert PROPN
Shock)rshvern@gmuvax2.gmu.edu PROPN
                   SPACE
( PUNCT
Rob PROPN
Shvern)wesiegel@cie-2.uoregon.edu NOUN
                SPACE
( PUNCT
William PROPN
Siegel)ggyygg@mixcom.mixcom.com PROPN
                  SPACE
( PUNCT
Kenton PROPN
Sinner)bsmart@bsmart.tti.com PROPN
                     SPACE
( PUNCT
Bob PROPN
Smart)tonys@ariel.ucs.unimelb.EDU.AU PROPN
            SPACE
( PUNCT
Anthony PROPN
David PROPN
Smith)sgccsns@citecuc.citec.oz.au NUM
               SPACE
( PUNCT
Shayne PROPN
Noel PROPN
Smith)dsnider@beta.tricity.wsu.edu NOUN
              SPACE
( PUNCT
Daniel PROPN
L PROPN
Snider)snyderg@spot PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
                 SPACE
( PUNCT
SNYDER PROPN
GARY PROPN
EDWIN PROPN
JR)blupe@ruth.fullfeed.com PROPN
                   SPACE
( PUNCT
Brian PROPN
Arthur PROPN
Stewart)lhdsy1!usmi02.midland.chevron.com!tsfsi@uunet NOUN
. PUNCT
UU.NET PROPN
( PUNCT
SigridStewart)nat@netcom.com NOUN
                            SPACE
( PUNCT
Nathaniel PROPN
Stitt)tps@biosym.com X
                            SPACE
( PUNCT
Tom PROPN
Stockfisch)stodolsk@andromeda.rutgers.edu PROPN
            SPACE
( PUNCT
David PROPN
Stodolsky)gadget@dcs.warwick.ac.uk PROPN
                  SPACE
( PUNCT
Steve PROPN
Strong)carey@CS.UCLA.EDU PROPN
                         SPACE
( PUNCT
Carey PROPN
Sublette)jsuttor@netcom.com PROPN
                        SPACE
( PUNCT
Jeff PROPN
Suttor)swain@cernapo.cern.ch PROPN
                     SPACE
( PUNCT
John PROPN
Swain)szabo@techbook.com PROPN
                        SPACE
( PUNCT
Nick PROPN
Szabo)ptheriau@netcom.com PROPN
                       SPACE
( PUNCT
P. PROPN
Chris PROPN
Theriault)ak051@yfn.ysu.edu PROPN
                         SPACE
( PUNCT
Chris PROPN
Thompson)gunnar.thoresen@bio.uio.no NUM
                SPACE
( PUNCT
Gunnar PROPN
Thoresen)dreamer@uxa.cso.uiuc.edu NOUN
                  SPACE
( PUNCT
Andrew PROPN
Trapp)jerry@cse.lbl.gov PROPN
                         SPACE
( PUNCT
Jerry PROPN
Tunis)music@parcom.ernet.in PROPN
                     SPACE
( PUNCT
Rajeev PROPN
Upadhye)treon@u.washington.edu PROPN
                    SPACE
( PUNCT
Treon PROPN
Verdery)evore@magnus.acs.ohio-state.edu NOUN
           SPACE
( PUNCT
Eric PROPN
J PROPN
Vore)U13054@UICVM.BITNET PROPN
                       SPACE
( PUNCT
Howard PROPN
Wachtel)susan@wpi PROPN
. PUNCT
WPI.EDU PROPN
                         SPACE
( PUNCT
Susan PROPN
C PROPN
Wade)70023.3041@CompuServe PROPN
. PUNCT
COM NOUN
                 SPACE
( PUNCT
Paul PROPN
Wakfer)ewalker@it.berklee.edu PROPN
                    SPACE
( PUNCT
" PUNCT
Elaine NOUN
Walker")jew@rt.sunquest.com NOUN
                       SPACE
( PUNCT
James PROPN
Ward)jeremy@ai.mit.edu PROPN
                         SPACE
( PUNCT
Jeremy PROPN
M. PROPN
Wertheimer)bw@ws029.torreypinesca.NCR.COM PROPN
            SPACE
( PUNCT
Bruce PROPN
White PROPN
3807)weeds@strobe NUM
. PUNCT
ATC.Olivetti X
. PUNCT
Com NOUN
             SPACE
( PUNCT
Mark PROPN
Wiedman)wiesel PROPN
- PUNCT
elisha@CS.YALE.EDU SYM
                 SPACE
( PUNCT
Elisha PROPN
Wiesel)WILLINGP@gar.union.edu ADJ
                    SPACE
( PUNCT
WILLING PROPN
, PUNCT
PAUL)smw@alcor.concordia.ca PROPN
                    SPACE
( PUNCT
Steven PROPN
Winikoff)wright@hicomb.hi.com PROPN
                      SPACE
( PUNCT
David PROPN
Wright)ebusew@anah.ericsson.com PROPN
                  SPACE
( PUNCT
Stephen PROPN
Wright PROPN
66667)liquidx@cnexus.cts.com X
                    SPACE
( PUNCT
Liquid-X)xakellis@uivlsisl.csl.uiuc.edu PROPN
            SPACE
( PUNCT
Michael PROPN
G. PROPN
Xakellis)cs012113@cs.brown.edu PROPN
                     SPACE
( PUNCT
Ion PROPN
Yannopoulos)yazz@lccsd.sd.locus.com PROPN
                   SPACE
( PUNCT
Bob PROPN
Yazz)lnz@lucid.com PROPN
                             SPACE
( PUNCT
Leonard PROPN
N. PROPN
Zubkoff)62RSE@npd1.ufpe.bradwyer@mason1.gmu.eduART@EMBL-Hamburg.DEatfurman@cup.portal.combillw@attmail.att.comcarl@red-dragon.umbc.educarlf@ai.mit.educccbbs!chris.thompson@UCENG.UC.EDUCCGARCIA@MIZZOU1.BITNETclayb@cellar.orgdack@permanet.orgdaedalus@netcom.comdanielg@autodesk.comDave-M@cup.portal.comF_GRIFFITH@CCSVAX.SFASU.EDUgarcia@husc.harvard.edugav@houxa.att.comhammar@cs.unm.eduherbison@lassie.ucx.lkg.dec.comhhuang@Athena.MIT.EDUhkhenson@cup.portal.comirving@happy-man.comjeckel@amugw.aichi-med-u.ac.jpjgs@merit.edujmeritt@mental.mitre.orgJonas_Marten_Fjallstam@cup.portal.comkqb@whscad1.att.comLPOMEROY@velara.sim.es.comlubkin@apollo.hp.comkunert@wustlb.wustl.eduLINYARD_M@XENOS.a1.logica.co.ukM.Michelle.Wrightwatson@att.commoselecw@elec.canterbury.ac.nznaoursla@eos.ncsu.edung4@husc.harvard.edupase70!dchapman@uwm.edupocock@math.utah.eduRUDI@HSD.UVic.CASCOTTJOR@delphi.comstanton@ide.comsteveha@microsoft.comstu1016@DISCOVER.WRIGHT.EDUSYang.ES_AE@xerox.comtim.hruby@his.comTodd.Kaufmann@FUSSEN.MT.CS.CMU.EDUtom@genie.slhs.udel.eduUC482529@MIZZOU1.BITNETWMILLER@clust1.clemson.eduyost@mv.us.adobe.com(The PROPN
group NOUN
still ADV
passes VERB
if SCONJ
you PRON
do AUX
n't PART
count VERB
the DET
people NOUN
forwhom ADJ
I PRON
just ADV
have AUX
email NOUN
address.)-Brian NOUN
< X
bmdelane@midway.uchicago.edu>Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59022From NUM
: SYM
filipe@vxcrna.cern.ch PROPN
( PUNCT
VINCI)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr20.125920.15005@ircam.fr NUM
> X
, PUNCT
francis@ircam.fr PROPN
( PUNCT
Joseph PROPN
Francis PROPN
) PUNCT
writes VERB
... PUNCT
>In PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>>I AUX
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
> X
> X
Crullerian PROPN
. PUNCT
> X
  SPACE
How ADV
about ADP
Kirlian ADJ
imaging NOUN
? PUNCT
I PRON
believe VERB
the DET
FAQ PROPN
for ADP
sci.skeptics PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
has AUX
a DET
nice ADJ
write NOUN
- PUNCT
up NOUN
on ADP
this DET
. PUNCT
They PRON
would AUX
certainly ADV
be AUX
most ADV
supportive ADJ
on ADP
helping VERB
you PRON
to PART
build VERB
such DET
a DET
device NOUN
and CCONJ
connect NOUN
to ADP
a DET
120Kvolt NUM
supply NOUN
so SCONJ
that SCONJ
you PRON
can AUX
take VERB
a DET
serious ADJ
look NOUN
at ADP
your PRON
" PUNCT
aura PROPN
" PUNCT
... PUNCT
:-) PUNCT
Filipe PROPN
Santos PROPN
CERN VERB
- PUNCT
European PROPN
Laboratory PROPN
for ADP
Particle PROPN
Physics PROPN
SwitzerlandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59023From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?In PROPN
article NOUN
< X
1993Apr19.084258.1040@ida.liu.se NUM
> X
davpa@ida.liu.se X
( PUNCT
David PROPN
Partain PROPN
) PUNCT
writes:>Someone INTJ
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
> X
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
something PRON
> X
to PART
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highly ADV
> X
allergic ADJ
to ADP
yeast NOUN
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADJ
about ADP
it?Candida PROPN
albicans NOUN
can AUX
cause VERB
severe ADJ
life NOUN
- PUNCT
threatening VERB
infections NOUN
, PUNCT
usuallyin ADJ
people NOUN
who PRON
are AUX
otherwise ADV
quite ADV
ill ADJ
. PUNCT
  SPACE
This DET
is AUX
not PART
, PUNCT
however ADV
, PUNCT
the DET
sortof NOUN
illness NOUN
that SCONJ
you PRON
are AUX
probably ADV
discussing VERB
. PUNCT
"Systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
where ADV
the DET
body NOUN
is AUX
allergic ADJ
toyeast NOUN
is AUX
considered VERB
a DET
quack ADJ
diagnosis NOUN
by ADP
mainstream ADJ
medicine NOUN
. PUNCT
  SPACE
Thereis PROPN
a DET
book NOUN
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
which PRON
talks VERB
about ADP
this DET
" PUNCT
illness" NOUN
. PUNCT
There PRON
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59024From NUM
: PUNCT
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1qk1taINNmr4@calamari.hi.com NUM
> X
rogers@calamari.hi.com PROPN
( PUNCT
Andrew PROPN
Rogers PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr15.153729.13738@walter.bellcore.com PROPN
> X
jchen@ctt.bellcore.com PROPN
writes:>>Chinese PROPN
, PUNCT
and CCONJ
many ADJ
other ADJ
Asians PROPN
( PUNCT
Japanese PROPN
, PUNCT
Koreans PROPN
, PUNCT
etc X
) PUNCT
have AUX
used>>MSG NOUN
as SCONJ
flavor NOUN
enhancer NOUN
for ADP
two NUM
thousand NUM
years NOUN
. PUNCT
Do AUX
you PRON
believe VERB
that>>they NOUN
knew VERB
how ADV
to PART
make VERB
MSG PROPN
from ADP
chemical NOUN
processes NOUN
? PUNCT
Not PART
. PUNCT
They PRON
just>>extracted VERB
it PRON
from ADP
natural ADJ
food NOUN
such ADJ
sea NOUN
food NOUN
and CCONJ
meat NOUN
broth.>>And NOUN
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
that SCONJ
> X
the DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
not PART
> X
cause VERB
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
->extracted NUM
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese ADJ
Restaurant NOUN
> X
Syndrome PROPN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it?I NOUN
was AUX
under ADP
the DET
( PUNCT
possibly ADV
incorrect VERB
) PUNCT
assumption NOUN
that SCONJ
most ADJ
of ADP
the DET
MSG PROPN
onour NOUN
foods NOUN
was AUX
made VERB
from ADP
processing VERB
sugar NOUN
beets NOUN
. PUNCT
Is AUX
this DET
not PART
true ADJ
? PUNCT
Are AUX
there PRON
other ADJ
sources NOUN
of ADP
MSG?I PROPN
am AUX
one NUM
of ADP
those DET
folx NOUN
who PRON
react VERB
, PUNCT
sometimes ADV
strongly ADV
, PUNCT
to ADP
MSG PROPN
. PUNCT
However ADV
, PUNCT
I PRON
also ADV
react VERB
strongly ADV
to ADP
sodium NOUN
chloride NOUN
( PUNCT
table NOUN
salt NOUN
) PUNCT
in ADP
excess NOUN
. PUNCT
Eachcauses VERB
different ADJ
symptoms NOUN
except SCONJ
for ADP
the DET
common ADJ
one NUM
of ADP
rapid ADJ
heartbeatand PROPN
an DET
uncomfortable ADJ
feeling NOUN
of ADP
pressure NOUN
in ADP
my PRON
chest NOUN
, PUNCT
upper ADJ
left VERB
quadrant.-- PROPN
Steve PROPN
Giammarco/5330 PROPN
Peterson PROPN
Lane PROPN
/ SYM
Dallas PROPN
TX PROPN
75240marco@sdf.lonestar.orgloveyameanit.Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59025From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residencyIn PROPN
article NOUN
< X
1993Apr20.004158.6122@cnsvax.uwec.edu ADV
> X
David PROPN
Nye,nyeda@cnsvax.uwec.edu PROPN
writes VERB
: PUNCT
> X
> X
> X
> X
I PRON
believe VERB
it PRON
is AUX
illegal ADJ
for ADP
a DET
residency NOUN
to PART
discriminate VERB
againstFMGs PROPN
. PUNCT
> X
> X
> X
Is AUX
that DET
true ADJ
? PUNCT
  SPACE
I PRON
know VERB
some DET
that PRON
wo AUX
n't PART
even ADV
interview VERB
FMGs PROPN
. PUNCT
> X
> X
I PRON
think VERB
a DET
case NOUN
could AUX
be AUX
made VERB
that SCONJ
this DET
is AUX
discriminatory ADJ
, PUNCT
particularly ADV
> X
if SCONJ
an DET
applicant NOUN
had AUX
good ADJ
board NOUN
scores NOUN
and CCONJ
recommendations NOUN
but CCONJ
wasn't PROPN
> PROPN
offered VERB
an DET
interview NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
it PRON
has AUX
ever ADV
gone VERB
to ADP
court NOUN
. PUNCT
FMGs PROPN
who PRON
are AUX
not PART
citizens NOUN
are AUX
, PUNCT
like SCONJ
all DET
aliens NOUN
, PUNCT
in ADP
a DET
difficultsituation NOUN
. PUNCT
Only ADJ
citizens NOUN
get VERB
to PART
vote VERB
here ADV
, PUNCT
so ADV
non ADJ
- NOUN
citizens NOUN
are AUX
oflittle ADJ
or CCONJ
no DET
interest NOUN
to ADP
legislators NOUN
. PUNCT
Also ADV
, PUNCT
the DET
non ADJ
- ADJ
citizen NOUN
may AUX
wellbe VERB
in ADP
the DET
middle NOUN
of ADP
processing NOUN
for ADP
resident ADJ
alien ADJ
status NOUN
. PUNCT
There PRON
is AUX
astron NOUN
sense NOUN
that SCONJ
rocking VERB
the DET
boat NOUN
( PUNCT
eg INTJ
. PUNCT
suing VERB
a DET
residency NOUN
program)will NOUN
delay VERB
the DET
granting NOUN
of ADP
that DET
status NOUN
, PUNCT
perhaps ADV
for ADP
ever ADV
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59026From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
myers.735287742@peach.cs.scarolina.edu PROPN
> X
myers@cs.scarolina.edu PROPN
( PUNCT
Daniel PROPN
Myers PROPN
) PUNCT
writes:>I PROPN
am AUX
under ADP
the DET
impression NOUN
that SCONJ
MSG PROPN
" PUNCT
enhances VERB
" PUNCT
flavor NOUN
by ADP
causing VERB
the DET
> X
taste NOUN
buds NOUN
to PART
swell VERB
. PUNCT
No INTJ
, PUNCT
that DET
's AUX
not PART
how ADV
it PRON
works.>If AUX
this DET
is AUX
correct ADJ
, PUNCT
I PRON
do AUX
not PART
find VERB
it PRON
unreasonable ADJ
> X
to PART
assume VERB
that SCONJ
high ADJ
doses NOUN
of ADP
MSG PROPN
can AUX
cause VERB
other ADJ
mouth NOUN
tissues NOUN
to PART
swell VERB
. PUNCT
This DET
may AUX
be AUX
through ADP
a DET
different ADJ
mechanism.>Also NOUN
, PUNCT
as SCONJ
the DET
many ADJ
of ADP
the DET
occurances NOUN
( PUNCT
including VERB
two NUM
of ADP
the DET
above)>involved ADJ
beef NOUN
, PUNCT
and CCONJ
as SCONJ
beef NOUN
is AUX
frequently ADV
tenderized VERB
with ADP
MSG PROPN
, PUNCT
this DET
is AUX
> X
what PRON
I PRON
suspect VERB
as SCONJ
being AUX
the DET
cause NOUN
. PUNCT
Tenderizing VERB
beef NOUN
involves VERB
sprinking VERB
or CCONJ
marinading VERB
it PRON
in ADP
papain NOUN
, PUNCT
an DET
enzyme NOUN
. PUNCT
"Meat PUNCT
tenderizer PROPN
" PUNCT
packets NOUN
might AUX
contain VERB
papain NOUN
and CCONJ
MSG NOUN
and CCONJ
seasonings NOUN
, PUNCT
butMSG PROPN
does AUX
n't PART
act VERB
as SCONJ
a DET
tenderizer.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59027From NUM
: PUNCT
dstock@hpqmoca.sqf.hp.com PROPN
( PUNCT
David PROPN
Stockton)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyVINCI PROPN
( PUNCT
filipe@vxcrna.cern.ch PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
  SPACE
How ADV
about ADP
Kirlian ADJ
imaging NOUN
? PUNCT
I PRON
believe VERB
the DET
FAQ PROPN
for ADP
sci.skeptics PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
: PUNCT
  SPACE
has AUX
a DET
nice ADJ
write NOUN
- PUNCT
up NOUN
on ADP
this DET
. PUNCT
They PRON
would AUX
certainly ADV
be AUX
most ADV
supportive ADJ
: PUNCT
  SPACE
on ADP
helping VERB
you PRON
to PART
build VERB
such DET
a DET
device NOUN
and CCONJ
connect NOUN
to ADP
a DET
120Kvolt NUM
: SYM
  SPACE
supply NOUN
so SCONJ
that SCONJ
you PRON
can AUX
take VERB
a DET
serious ADJ
look NOUN
at ADP
your PRON
" PUNCT
aura PROPN
" PUNCT
... PUNCT
:-) PUNCT
: PUNCT
  SPACE
Filipe PROPN
Santos PROPN
: PUNCT
  SPACE
CERN PROPN
- PUNCT
European PROPN
Laboratory PROPN
for ADP
Particle PROPN
Physics PROPN
: PUNCT
  SPACE
Switzerland PROPN
    SPACE
This DET
has AUX
to PART
be AUX
THE DET
only ADJ
, PUNCT
generally ADV
accepted VERB
, PUNCT
method NOUN
of ADP
using VERB
common ADJ
physics NOUN
lab NOUN
equipment NOUN
to PART
find VERB
certain ADJ
answers NOUN
to ADP
all DET
the DET
questions NOUN
aboutafterlifes NOUN
, PUNCT
heavens PROPN
, PUNCT
hells PROPN
, PUNCT
purgatory NOUN
, PUNCT
gods NOUN
etc X
. PUNCT
Krillean PROPN
photographywill NOUN
probably ADV
be AUX
ignored VERB
as SCONJ
insignificant ADJ
compared VERB
to ADP
these DET
largereternal ADJ
verities NOUN
. PUNCT
Publishing VERB
your PRON
results NOUN
could AUX
be AUX
a DET
bit NOUN
of ADP
a DET
problem NOUN
, PUNCT
though ADV
. PUNCT
   SPACE
Cheers PROPN
             SPACE
DavidNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59028From NUM
: PUNCT
michael@iastate.edu X
( PUNCT
Michael PROPN
M. PROPN
Huang)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?MSG NOUN
is AUX
common ADJ
in ADP
many ADJ
food NOUN
we PRON
eat VERB
, PUNCT
including VERB
Chinese PROPN
( PUNCT
though SCONJ
some DET
orientalrestaurants NOUN
might AUX
put VERB
a DET
tad NOUN
too ADV
much ADJ
in ADP
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
when ADV
Igo NOUN
out ADP
and CCONJ
eat VERB
in ADP
most ADJ
of ADP
the DET
Chinese ADJ
food NOUN
restaurants NOUN
, PUNCT
I PRON
will AUX
usually ADV
geta VERB
slight ADJ
headache NOUN
and CCONJ
an DET
ununsual ADJ
thirst NOUN
afterwards ADV
. PUNCT
  SPACE
This DET
happens VERB
to PART
manyof PROPN
my PRON
friends NOUN
and CCONJ
relatives NOUN
too ADV
. PUNCT
  SPACE
And CCONJ
, PUNCT
heh INTJ
, PUNCT
we PRON
eat VERB
Chinese ADJ
food NOUN
all DET
thetime NOUN
at ADP
home NOUN
:) PUNCT
( PUNCT
but CCONJ
we PRON
do AUX
n't PART
use VERB
MSG PROPN
when ADV
we PRON
're AUX
cooking VERB
for ADP
ourselves)So PROPN
, PUNCT
when ADV
we PRON
put VERB
one NUM
and CCONJ
one NUM
together ADV
, PUNCT
it PRON
can AUX
be AUX
safely ADV
assumed VERB
thatMSG PROPN
may AUX
cause VERB
some DET
allergic ADJ
reactions NOUN
in ADP
some DET
people NOUN
. PUNCT
Stick VERB
with ADP
natural ADJ
things NOUN
. PUNCT
  SPACE
MSG PROPN
does AUX
n't PART
do AUX
body NOUN
any DET
good ADJ
( PUNCT
and CCONJ
possiblyharms NOUN
, PUNCT
for ADP
that DET
matter NOUN
) PUNCT
. PUNCT
  SPACE
So ADV
, PUNCT
why ADV
bother VERB
with ADP
it PRON
? PUNCT
  SPACE
Taste NOUN
food NOUN
as SCONJ
it PRON
shouldbe PROPN
tasted VERB
, PUNCT
and CCONJ
do AUX
n't PART
cloud VERB
the DET
flavor NOUN
with ADP
an DET
imaginary ADJ
cloak NOUN
of ADP
MSG.-michael-- PROPN
Michael PROPN
M. PROPN
Huang PROPN
               SPACE
| PROPN
Do AUX
n't PART
believe VERB
what PRON
your PRON
eyes NOUN
are AUX
  SPACE
telling VERB
you PRON
. PUNCT
ICEMT ADV
, PUNCT
Iowa PROPN
State PROPN
Univ PROPN
. PUNCT
        SPACE
| PROPN
All DET
they PRON
show VERB
is AUX
  SPACE
limitation NOUN
. PUNCT
   SPACE
Look VERB
with ADP
yourmichael@iastate.edu X
            SPACE
| ADP
understanding NOUN
, PUNCT
find VERB
out ADP
what PRON
you PRON
already ADV
know,#include PUNCT
< X
standard.disclaimer NOUN
> X
| INTJ
and CCONJ
you PRON
'll AUX
see VERB
the DET
way NOUN
to PART
fly VERB
. PUNCT
- PUNCT
J. PROPN
L. PROPN
Seagull PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59029From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
, PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:=I PUNCT
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
= PUNCT
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
= PUNCT
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
= PUNCT
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
= SYM
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
= SYM
appreciated.= ADP
	 SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
= SYM
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
= SYM
object VERB
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
= SYM
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
= NOUN
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One NUM
might AUX
= SYM
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
= NOUN
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
Go VERB
to ADP
the DET
library NOUN
and CCONJ
look VERB
up ADP
" PUNCT
corona ADJ
discharge NOUN
. PUNCT
"--------------------------------------------------------------------------------Carl PUNCT
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59030From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
OCDIn NOUN
article NOUN
< X
C5r3n6.FG4@news NOUN
. PUNCT
Hawaii PROPN
. PUNCT
Edu NOUN
> X
, PUNCT
sharynk@Hawaii PROPN
. PUNCT
Edu PROPN
( PUNCT
) PUNCT
writes VERB
... PUNCT
>I NUM
recently ADV
heard VERB
of ADP
a DET
mental ADJ
disorder NOUN
called VERB
Obsessive PROPN
Compulsive PROPN
> X
Disorder NOUN
. PUNCT
  SPACE
What PRON
is AUX
it PRON
? PUNCT
  SPACE
What PRON
causes VERB
it PRON
? PUNCT
  SPACE
Could AUX
it PRON
be AUX
caused VERB
by ADP
a DET
> X
nervous ADJ
breakdown NOUN
? PUNCT
> X
Obesssive PROPN
Compulsive PROPN
Disorder PROPN
( PUNCT
not PART
to PART
be AUX
confused VERB
with ADP
Obsessive PROPN
Compulsive_Personality PROPN
_ DET
Disorder PROPN
! PUNCT
) PUNCT
is AUX
an DET
acute ADJ
anxiety NOUN
disorder NOUN
characterized VERB
byeither NOUN
obsessions NOUN
( PUNCT
persistent ADJ
intrusive ADJ
thoughts NOUN
that PRON
cause VERB
anxiety NOUN
whennot PROPN
entertained PROPN
) PUNCT
, PUNCT
or CCONJ
compulsions NOUN
( PUNCT
repetitive ADJ
, PUNCT
ritualistic ADJ
actions NOUN
thatsimilarly ADV
cause VERB
intense ADJ
psychological ADJ
discomfort NOUN
when ADV
resisted VERB
) PUNCT
. PUNCT
  SPACE
OCD PROPN
is AUX
often ADV
associated VERB
with ADP
certain ADJ
forms NOUN
of ADP
depression NOUN
. PUNCT
  SPACE
Examples NOUN
of ADP
obsessive ADJ
thoughts NOUN
are AUX
repeated VERB
impulses NOUN
to PART
kill VERB
a DET
lovedone NOUN
( PUNCT
though SCONJ
not PART
accompanied VERB
by ADP
anger NOUN
) PUNCT
, PUNCT
or CCONJ
a DET
religious ADJ
person NOUN
having VERB
recurrent ADJ
blasphemous ADJ
thoughts NOUN
. PUNCT
  SPACE
Generally ADV
, PUNCT
the DET
individual ADJ
attempts NOUN
to ADP
ignoreor NOUN
suppress VERB
the DET
intrusive ADJ
thoughts NOUN
by ADP
engaging VERB
in ADP
other ADJ
activities NOUN
. PUNCT
  SPACE
The DET
individual NOUN
realizes VERB
that SCONJ
the DET
thoughts NOUN
originate VERB
from ADP
the DET
own ADJ
mind NOUN
, PUNCT
ratherthan NOUN
being AUX
from ADP
an DET
external ADJ
source NOUN
. PUNCT
Examples NOUN
of ADP
compulsive ADJ
actions NOUN
are AUX
constant ADJ
repetitive ADJ
hand NOUN
washing NOUN
, PUNCT
or CCONJ
other ADJ
activity NOUN
that PRON
is AUX
not PART
realistically ADV
related ADJ
to ADP
alleviating VERB
asource NOUN
of ADP
the DET
anxiety NOUN
. PUNCT
In ADP
OCD PROPN
, PUNCT
the DET
obsessions NOUN
or CCONJ
compulsions NOUN
are AUX
highly ADV
distressing ADJ
to ADP
theindividual ADJ
, PUNCT
take VERB
an DET
hour NOUN
or CCONJ
more ADJ
per ADP
day NOUN
, PUNCT
and CCONJ
significantly ADV
impair VERB
theirdaily ADV
routine ADJ
and CCONJ
social ADJ
relationships NOUN
. PUNCT
Treatments NOUN
include VERB
psychotherapy NOUN
, PUNCT
behavioral ADJ
methods NOUN
, PUNCT
and CCONJ
sometimescertain ADJ
anti NOUN
- NOUN
depressants NOUN
which PRON
have AUX
recently ADV
been AUX
found VERB
effective ADJ
in ADP
alleviatingobsessions NOUN
and CCONJ
compulsions NOUN
. PUNCT
The DET
standard ADJ
diagnostic ADJ
code NOUN
for ADP
OCD PROPN
, PUNCT
if SCONJ
you PRON
want VERB
to PART
look VERB
it PRON
up ADP
in ADP
theDSM PROPN
- PUNCT
III NUM
manual NOUN
of ADP
psychiatric ADJ
diagnosis NOUN
is AUX
300.30 NUM
. PUNCT
						 SPACE
kind PROPN
regards PROPN
, PUNCT
						 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
354 NUM
- SYM
1273 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Olliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
  SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59031From NUM
: PUNCT
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
michael.735318247@vislab.me.iastate.edu PROPN
> X
michael@iastate.edu INTJ
( PUNCT
Michael PROPN
M. PROPN
Huang PROPN
) PUNCT
writes:>MSG PROPN
is AUX
common ADJ
in ADP
many ADJ
food NOUN
we PRON
eat VERB
, PUNCT
including VERB
Chinese PROPN
( PUNCT
though SCONJ
some DET
oriental ADJ
> X
restaurants NOUN
might AUX
put VERB
a DET
tad NOUN
too ADV
much ADJ
in ADP
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
when ADV
I PRON
> X
go VERB
out ADP
and CCONJ
eat VERB
in ADP
most ADJ
of ADP
the DET
Chinese ADJ
food NOUN
restaurants NOUN
, PUNCT
I PRON
will AUX
usually ADV
get AUX
> X
a DET
slight ADJ
headache NOUN
and CCONJ
an DET
ununsual ADJ
thirst NOUN
afterwards ADV
. PUNCT
  SPACE
This DET
happens VERB
to ADP
many ADJ
> X
of ADP
my PRON
friends NOUN
and CCONJ
relatives NOUN
too ADV
. PUNCT
  SPACE
And CCONJ
, PUNCT
heh INTJ
, PUNCT
we PRON
eat VERB
Chinese ADJ
food NOUN
all DET
the DET
> X
time NOUN
at ADP
home NOUN
:) PUNCT
( PUNCT
but CCONJ
we PRON
do AUX
n't PART
use VERB
MSG PROPN
when ADV
we PRON
're AUX
cooking VERB
for ADP
ourselves)>>So NOUN
, PUNCT
when ADV
we PRON
put VERB
one NUM
and CCONJ
one NUM
together ADV
, PUNCT
it PRON
can AUX
be AUX
safely ADV
assumed VERB
that SCONJ
> X
MSG PROPN
may AUX
cause VERB
some DET
allergic ADJ
reactions NOUN
in ADP
some DET
people.>>Stick NOUN
with ADP
natural ADJ
things NOUN
. PUNCT
  SPACE
MSG PROPN
does AUX
n't PART
do AUX
body NOUN
any DET
good ADJ
( PUNCT
and CCONJ
possibly ADV
> X
harms NOUN
, PUNCT
for ADP
that DET
matter NOUN
) PUNCT
. PUNCT
  SPACE
So ADV
, PUNCT
why ADV
bother VERB
with ADP
it PRON
? PUNCT
  SPACE
Taste NOUN
food NOUN
as SCONJ
it PRON
should AUX
> X
be AUX
tasted VERB
, PUNCT
and CCONJ
do AUX
n't PART
cloud VERB
the DET
flavor NOUN
with ADP
an DET
imaginary ADJ
cloak NOUN
of ADP
MSG.As NOUN
I PRON
understood VERB
it PRON
, PUNCT
MSG PROPN
* PUNCT
is AUX
* PUNCT
natural ADJ
. PUNCT
  SPACE
Is AUX
n't PART
it PRON
found VERB
in ADP
tomatoes?Anyway NOUN
, PUNCT
lots NOUN
of ADP
people NOUN
are AUX
terribly ADV
allergic ADJ
to ADP
lots NOUN
of ADP
naturalthings NOUN
; PUNCT
peanuts NOUN
, PUNCT
onions NOUN
, PUNCT
tomatoes NOUN
, PUNCT
milk NOUN
, PUNCT
etc X
. PUNCT
  SPACE
Just ADV
because SCONJ
somethingis PROPN
' PUNCT
natural ADJ
' PUNCT
does AUX
n't PART
mean VERB
it PRON
wo AUX
n't PART
cause VERB
problems NOUN
with ADP
some DET
folks NOUN
. PUNCT
As SCONJ
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
likethe VERB
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
useit VERB
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighborhas NOUN
an DET
ulcer NOUN
. PUNCT
People NOUN
have AUX
long ADV
modified VERB
the DET
taste NOUN
of ADP
food NOUN
by ADP
additives NOUN
, PUNCT
whetherthey PRON
be AUX
chiles NOUN
, PUNCT
black ADJ
pepper NOUN
, PUNCT
salt NOUN
, PUNCT
cream NOUN
sauces NOUN
, PUNCT
etc X
. PUNCT
  SPACE
All DET
of ADP
thesethings NOUN
cloud VERB
the DET
flavor NOUN
of ADP
the DET
food NOUN
. PUNCT
  SPACE
Why ADV
do AUX
we PRON
bother VERB
with ADP
them?How PROPN
should AUX
food NOUN
be AUX
tasted VERB
? PUNCT
  SPACE
Is AUX
n't PART
it PRON
better ADV
left VERB
to ADP
the DET
diner?JulieDISCLAIMER NOUN
: PUNCT
  SPACE
All DET
opinions NOUN
here ADV
belong VERB
to ADP
my PRON
cat NOUN
and CCONJ
no DET
one NUM
elseNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59032From NUM
: PUNCT
jhoskins@magnus.acs.ohio-state.edu PROPN
( PUNCT
James PROPN
M PROPN
Hoskins)Subject PROPN
: PUNCT
Cost NOUN
of ADP
RoxonalDoes PROPN
anyone PRON
know VERB
the DET
approximate ADJ
prescription NOUN
costof VERB
a DET
250 NUM
ml ADJ
bottle NOUN
of ADP
Roxonal PROPN
( PUNCT
morphine)?Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59033From NUM
: PUNCT
dufault@lftfld.enet.dec.com NOUN
( PUNCT
MD)Subject NUM
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
	 SPACE
The DET
reason NOUN
I PRON
'm AUX
posting VERB
this DET
article NOUN
to ADP
this DET
newsgroup NOUN
is AUX
to:1 NOUN
. PUNCT
gather VERB
any DET
information NOUN
about ADP
this DET
disorder NOUN
from ADP
anyone PRON
who PRON
might AUX
   SPACE
have AUX
recently ADV
been AUX
* PUNCT
e*ffected VERB
by ADP
it PRON
( PUNCT
from ADP
being AUX
associated VERB
with ADP
   SPACE
it PRON
or CCONJ
actually ADV
having VERB
this DET
disorder NOUN
) PUNCT
and2 PROPN
. PUNCT
help VERB
me PRON
find VERB
out ADP
where ADV
I PRON
can AUX
access VERB
any DET
medical ADJ
literature NOUN
associated VERB
   SPACE
with ADP
seizures NOUN
over ADP
the DET
internet NOUN
. PUNCT
Recently ADV
, PUNCT
I PRON
had AUX
a DET
baby NOUN
boy NOUN
born VERB
with ADP
seizures NOUN
which PRON
occured VERB
12 NUM
- SYM
15 NUM
hoursafter NOUN
birth NOUN
. PUNCT
He PRON
was AUX
immediately ADV
transferred VERB
to ADP
a DET
major ADJ
hospital NOUN
in ADP
Bostonand PROPN
has AUX
since SCONJ
been AUX
undergoing VERB
extensive ADJ
drug NOUN
treatment NOUN
for ADP
his PRON
condition NOUN
. PUNCT
This DET
has AUX
been AUX
a DET
major ADJ
learning NOUN
experience NOUN
for ADP
me PRON
and CCONJ
my PRON
wife NOUN
not PART
only ADV
inlearning VERB
the DET
medical ADJ
problems NOUN
that PRON
faced VERB
our PRON
son NOUN
but CCONJ
also ADV
in ADP
dealing VERB
withhospitals NOUN
, PUNCT
procedures NOUN
... PUNCT
etc X
. PUNCT
I PRON
do AUX
n't PART
want VERB
to PART
go VERB
into ADP
a DET
lot NOUN
of ADP
detail NOUN
, PUNCT
but CCONJ
his PRON
condition NOUN
was AUX
termed VERB
quite ADV
severe ADJ
at ADP
first ADV
then ADV
slowly ADV
he PRON
began VERB
to PART
grow VERB
and CCONJ
put VERB
on ADP
weightas PROPN
a DET
normal ADJ
baby NOUN
would AUX
. PUNCT
He PRON
was AUX
put VERB
on ADP
the DET
standard ADJ
anti ADJ
- ADJ
convulsion ADJ
drugsand NOUN
that PRON
did AUX
not PART
seem VERB
to PART
help VERB
out ADP
. PUNCT
His PRON
MRI NOUN
, PUNCT
EKG PROPN
, PUNCT
cat NOUN
- PUNCT
scans PROPN
are AUX
all DET
normal ADJ
, PUNCT
but CCONJ
the DET
EEG PROPN
's PART
show NOUN
alot NOUN
of ADP
seizure NOUN
activity NOUN
. PUNCT
After ADP
many ADJ
metabolic ADJ
tests NOUN
, PUNCT
body NOUN
structure NOUN
tests NOUN
, PUNCT
and CCONJ
infection NOUN
/ SYM
virus NOUN
tests VERB
the DET
doctors NOUN
still ADV
do AUX
notknow VERB
quite ADV
what PRON
type NOUN
of ADP
siezures NOUN
he PRON
is AUX
having VERB
( PUNCT
although SCONJ
they PRON
do AUX
have AUX
alotof ADJ
evidence NOUN
that SCONJ
it PRON
is AUX
now ADV
pointing VERB
to ADP
infantile ADJ
spasms NOUN
) PUNCT
. PUNCT
This DET
is AUX
wherewe NOUN
stand VERB
right ADV
now ADV
.... PUNCT
If SCONJ
anyone PRON
knows VERB
of ADP
any DET
database NOUN
or CCONJ
newsgroup NOUN
or CCONJ
as SCONJ
I PRON
mentioned VERB
up ADP
above ADV
, PUNCT
any DET
information NOUN
relating VERB
to ADP
this DET
disorder NOUN
I PRON
would AUX
sure ADV
appreciate VERB
hearingfrom ADP
you PRON
. PUNCT
I PRON
am AUX
not PART
trying VERB
to PART
play VERB
doctor NOUN
here ADV
, PUNCT
but CCONJ
only ADV
trying VERB
to PART
gatherinformation VERB
about ADP
it PRON
. PUNCT
As SCONJ
I PRON
know VERB
now ADV
, PUNCT
these DET
particular ADJ
types NOUN
of ADP
disordersare NOUN
still ADV
not PART
really ADV
well ADV
understood VERB
by ADP
the DET
medical ADJ
community NOUN
, PUNCT
and CCONJ
so ADV
I'mgoing VERB
to PART
see VERB
now ADV
.... PUNCT
if SCONJ
somehow ADV
the DET
internet NOUN
can AUX
at ADV
least ADJ
give VERB
me PRON
alittleinsight NOUN
. PUNCT
Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59034From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>In X
article NOUN
davpa@ida.liu.se X
  SPACE
( PUNCT
David PROPN
Partain PROPN
) PUNCT
writes:>>Someone NOUN
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
> X
> X
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
something>>to VERB
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highly>>allergic PROPN
to PART
yeast VERB
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADJ
about ADP
it?>Candida PROPN
albicans NOUN
can AUX
cause VERB
severe ADJ
life NOUN
- PUNCT
threatening VERB
infections NOUN
, PUNCT
usually ADV
> X
in ADP
people NOUN
who PRON
are AUX
otherwise ADV
quite ADV
ill ADJ
. PUNCT
  SPACE
This DET
is AUX
not PART
, PUNCT
however ADV
, PUNCT
the DET
sort NOUN
> X
of ADP
illness NOUN
that PRON
you PRON
are AUX
probably ADV
discussing.>>"Systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
where ADV
the DET
body NOUN
is AUX
allergic ADJ
to ADP
> X
yeast NOUN
is AUX
considered VERB
a DET
quack ADJ
diagnosis NOUN
by ADP
mainstream ADJ
medicine NOUN
. PUNCT
  SPACE
There ADV
> X
is AUX
a DET
book NOUN
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
which PRON
talks VERB
about ADP
this DET
" PUNCT
illness".>>There NOUN
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists VERB
. PUNCT
There PRON
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
andpublished ADJ
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic NOUN
skepticswho PROPN
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used VERB
. PUNCT
For ADP
example NOUN
, PUNCT
Dr. PROPN
Ivker PROPN
, PUNCT
who PRON
wrote VERB
the DET
book NOUN
" PUNCT
Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
always ADV
gives VERB
, PUNCT
before ADP
any DET
other ADJ
treatment NOUN
, PUNCT
a DET
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
( PUNCT
such ADJ
as SCONJ
Nizoral PROPN
) PUNCT
to PART
hisnew VERB
patients NOUN
IF ADP
they PRON
've AUX
been AUX
on ADP
braod NOUN
- PUNCT
spectrum NOUN
anti ADJ
- ADJ
biotics ADJ
4 NUM
or CCONJ
more ADJ
timesin ADP
the DET
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
's AUX
kept VERB
a DET
record NOUN
of ADP
the DET
results NOUN
, PUNCT
and CCONJ
for ADP
over ADP
2000 NUM
patients NOUN
found VERB
that SCONJ
over ADP
90 NUM
% NOUN
of ADP
his PRON
patients NOUN
get VERB
significant ADJ
reliefof NOUN
allergic ADJ
/ SYM
sinus NOUN
symptoms NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
this DET
is AUX
only ADV
the DET
beginning NOUN
for ADP
hisprogram NOUN
. PUNCT
In ADP
my PRON
case NOUN
, PUNCT
as SCONJ
I PRON
reported VERB
a DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
I PRON
was AUX
developing VERB
the DET
classicsymptoms NOUN
outlined VERB
in ADP
' PUNCT
The DET
Yeast PROPN
Connection PROPN
' PUNCT
( PUNCT
I PRON
agree VERB
it PRON
is AUX
a DET
poorly ADV
written VERB
book NOUN
) PUNCT
: PUNCT
  SPACE
e.g. ADV
, PUNCT
extreme ADJ
sensitivity NOUN
to ADP
plastics NOUN
, PUNCT
vapors NOUN
, PUNCT
etc X
. PUNCT
whichI PROPN
never ADV
had AUX
before ADV
( PUNCT
started VERB
in ADP
November PROPN
) PUNCT
. PUNCT
  SPACE
Within ADP
one NUM
week NOUN
of ADP
full ADJ
dosageof NOUN
Sporanox PROPN
, PUNCT
the DET
sensitivity NOUN
to ADP
chemicals NOUN
has AUX
fully ADV
disappeared VERB
- PUNCT
I PRON
cannow ADV
sit VERB
on ADP
my PRON
couch NOUN
at ADP
home NOUN
without ADP
dying VERB
after ADP
two NUM
minutes NOUN
. PUNCT
  SPACE
I PRON
'm AUX
also*greatly ADV
* PUNCT
improved VERB
in ADP
other ADJ
areas NOUN
as ADV
well ADV
. PUNCT
Of ADV
course ADV
, PUNCT
I PRON
have AUX
allergy ADJ
symptoms NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
allergic ADJ
tomolds NOUN
, PUNCT
yeasts NOUN
, PUNCT
etc X
. PUNCT
  SPACE
It PRON
does AUX
n't PART
take VERB
a DET
rocket NOUN
scientist NOUN
to PART
figure VERB
out ADP
thatif NOUN
one NUM
has AUX
excessive ADJ
colonization NOUN
of ADP
yeast NOUN
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
you PRON
have AUX
anatural ADJ
allergy NOUN
to ADP
yeasts NOUN
, PUNCT
that SCONJ
a DET
threshold NOUN
would AUX
be AUX
reached VERB
where ADV
youwould AUX
have AUX
perceptible ADJ
symptoms NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
yeast NOUN
do AUX
produce VERB
toxins NOUN
of ADP
varioussorts NOUN
, PUNCT
and CCONJ
again ADV
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
to PART
realize VERB
thatsuch ADJ
toxins NOUN
can AUX
cause VERB
problems NOUN
in ADP
some DET
people NOUN
. PUNCT
  SPACE
In ADP
my PRON
case NOUN
it PRON
was AUX
sinussince NOUN
that DET
's AUX
the DET
center NOUN
of ADP
my PRON
allergic ADJ
response NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
the DET
$ SYM
60,000question NUM
is AUX
whether SCONJ
a DET
person NOUN
who PRON
is AUX
immune ADJ
compromised VERB
( PUNCT
as SCONJ
tests NOUN
showed VERB
I PRON
wasfrom VERB
over ADP
5 NUM
years NOUN
of ADP
antibiotics NOUN
, PUNCT
nutritionally ADV
- PUNCT
deficiencies NOUN
because SCONJ
of ADP
thestress NOUN
of ADP
infections NOUN
and CCONJ
allergies NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
can AUX
develop VERB
excessive ADJ
yeastcolonization NOUN
somewhere ADV
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
tough ADJ
question NOUN
to PART
answer VERB
sincetesting VERB
for ADP
excessive ADJ
yeast NOUN
colonization NOUN
is AUX
not PART
easy ADJ
. PUNCT
  SPACE
One NOUN
almost ADV
has AUX
totake VERB
an DET
empirical ADJ
approach NOUN
to PART
diagnosis NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
Sporanox PROPN
is AUX
relativelysafe ADJ
unlike ADP
past ADP
anti NOUN
- NOUN
fungals NOUN
( PUNCT
still ADV
have AUX
to PART
be AUX
careful ADJ
, PUNCT
however ADV
) PUNCT
so ADV
there'sno DET
reason NOUN
any ADV
longer ADV
to PART
withhold VERB
Sporanox PROPN
treatment NOUN
for ADP
empirical ADJ
reasons NOUN
. PUNCT
BTW ADV
, PUNCT
some DET
would AUX
say VERB
to PART
try VERB
Nystatin PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
yeast NOUN
grows VERB
hyphaetoo PROPN
deep ADJ
into ADP
tissue NOUN
for ADP
Nystatin PROPN
to PART
have AUX
any DET
permanent ADJ
affect NOUN
. PUNCT
  SPACE
You PRON
'll AUX
finda VERB
lot NOUN
of ADP
people NOUN
who PRON
are AUX
on ADP
Nystatin PROPN
all DET
the DET
time NOUN
. PUNCT
In ADP
summary NOUN
, PUNCT
I PRON
appreciate VERB
all DET
of ADP
the DET
attempts NOUN
by ADP
those DET
who PRON
desire VERB
to PART
keepmedicine VERB
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmlyto VERB
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enoughactually ADV
treating VERB
patients NOUN
. PUNCT
  SPACE
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to PART
myface VERB
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guaranteetheir VERB
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified ADJ
asfar ADV
as SCONJ
I PRON
am AUX
concerned ADJ
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59035From NUM
: PUNCT
RICK@ysub.ysu.edu PROPN
( PUNCT
Rick PROPN
Marsico)Subject PROPN
: PUNCT
Proventil PROPN
InhalerDoes PROPN
the DET
Proventil PROPN
inhaler NOUN
for ADP
asthma NOUN
relief NOUN
fall NOUN
into ADP
the DET
steroidor PROPN
nonsteroid PROPN
category NOUN
? PUNCT
  SPACE
Looking VERB
at ADP
the DET
product NOUN
literature NOUN
it'snot ADV
clear ADJ
. PUNCT
rick@ysu.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59036From NUM
: PUNCT
SFEGUS@ubvm.cc.buffalo.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
79857@cup.portal.com>mmm@cup.portal.com NUM
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
I PRON
do AUX
n't PART
understand VERB
the DET
assumption NOUN
that SCONJ
because SCONJ
something PRON
is AUX
found VERB
to ADP
> X
> X
be AUX
carcinogenic ADJ
that SCONJ
" PUNCT
it PRON
would AUX
not PART
be AUX
legal ADJ
in ADP
the DET
U.S. PROPN
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
that>>No PROPN
, PUNCT
there PRON
is AUX
something PRON
called VERB
the DET
" PUNCT
Delany PROPN
Amendment PROPN
" PUNCT
which PRON
makes VERB
carcinogenic ADJ
> NUM
food NOUN
additives NOUN
illegal ADJ
in ADP
any DET
amount NOUN
. PUNCT
  SPACE
This DET
was AUX
passed VERB
by ADP
Congress PROPN
in ADP
the>1950 PROPN
's PART
, PUNCT
before ADP
stuff NOUN
like SCONJ
mass NOUN
spectrometry NOUN
became VERB
available ADJ
, PUNCT
which PRON
increased VERB
> X
detectable ADJ
levels NOUN
of ADP
substances NOUN
by ADP
a DET
couple NOUN
orders NOUN
of ADP
magnitude.>>This PROPN
is AUX
why ADV
things NOUN
like SCONJ
cyclamates NOUN
and CCONJ
Red PROPN
# SYM
2 NUM
were AUX
banned VERB
. PUNCT
  SPACE
They PRON
are AUX
very ADV
> X
weakly ADV
carcinogenic ADJ
in ADP
huge ADJ
quantities NOUN
in ADP
rats NOUN
, PUNCT
so SCONJ
under ADP
the DET
Act PROPN
they PRON
are AUX
> X
banned.>>This PROPN
also ADV
applies VERB
to ADP
natural ADJ
carcinogens NOUN
. PUNCT
  SPACE
Some DET
of ADP
you PRON
might AUX
remember VERB
a DET
> X
time NOUN
back ADV
in ADP
the DET
1960 NUM
's PART
when ADV
root NOUN
beer NOUN
suddenly ADV
stopped VERB
tasting VERB
so ADV
good,>and PROPN
never ADV
tasted VERB
so ADV
good ADJ
again ADV
. PUNCT
  SPACE
That DET
was AUX
the DET
time NOUN
when ADV
safrole NOUN
was AUX
banned.>This PROPN
is AUX
the DET
active ADJ
flavoring ADJ
ingredient NOUN
in ADP
sassafras PROPN
leaves.>>If VERB
it PRON
were AUX
possible ADJ
to PART
market VERB
a DET
root NOUN
beer NOUN
good ADJ
like SCONJ
the DET
old ADJ
days NOUN
, PUNCT
someone PRON
> X
would AUX
do AUX
it PRON
, PUNCT
in ADP
order NOUN
to PART
make VERB
money NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
no DET
one NOUN
does AUX
it PRON
indicates VERB
> X
that SCONJ
enforcement NOUN
is AUX
still ADV
in ADP
effect.>>An PROPN
odd ADJ
exception NOUN
to ADP
the DET
rule NOUN
seems VERB
to PART
be AUX
the DET
product NOUN
known VERB
as SCONJ
" PUNCT
gumbo PROPN
file'".>This PUNCT
is AUX
nothing PRON
more ADJ
than SCONJ
coarsely ADV
ground NOUN
dried VERB
sassafras PROPN
leaves NOUN
. PUNCT
  SPACE
This DET
> X
is AUX
not PART
only ADV
a DET
natural ADJ
product NOUN
, PUNCT
but CCONJ
a DET
natural ADJ
product NOUN
still ADV
in ADP
its PRON
natural ADJ
> X
form NOUN
, PUNCT
so ADV
maybe ADV
that DET
's AUX
how ADV
they PRON
evade VERB
Delany PROPN
. PUNCT
  SPACE
Or CCONJ
maybe ADV
a DET
special ADJ
exemption NOUN
> X
was AUX
made VERB
, PUNCT
to PART
appease VERB
powerful ADJ
Louisiana PROPN
Democrats PROPN
. PUNCT
I PRON
think VERB
what PRON
we PRON
have AUX
to PART
keep VERB
in ADP
mind NOUN
is AUX
that SCONJ
even ADV
though SCONJ
it PRON
may AUX
be AUX
illegal ADJ
tocommercially ADV
produce VERB
/ SYM
sell VERB
food NOUN
with ADP
carcinogenic ADJ
substances NOUN
, PUNCT
it PRON
is AUX
not PART
illegalfor ADP
people NOUN
to PART
do AUX
such ADJ
to ADP
their PRON
own ADJ
food NOUN
( PUNCT
smoking NOUN
, PUNCT
etc X
) PUNCT
. PUNCT
  SPACE
Is AUX
this DET
true ADJ
? PUNCT
    SPACE
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59037From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr13.093300.29529@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>"Weight AUX
rebound VERB
" PUNCT
is AUX
a DET
term NOUN
used VERB
in ADP
the DET
medical ADJ
literature NOUN
on ADP
> X
obesity NOUN
to PART
denote VERB
weight NOUN
regain NOUN
beyond ADP
what PRON
was AUX
lost VERB
in ADP
a DET
diet NOUN
> X
cycle NOUN
. PUNCT
  SPACE
There PRON
are AUX
any DET
number NOUN
of ADP
terms NOUN
which PRON
mean VERB
one NUM
thing NOUN
toCan NOUN
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
backthe NOUN
lost VERB
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
itexceeds NOUN
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
thatis NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?-- NOUN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59038From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyIn PROPN
article NOUN
< X
1993Apr12.201056.20753@ns1.cc.lehigh.edu NUM
> X
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel PROPN
) PUNCT
writes:>Now PROPN
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
culturing NOUN
is AUX
the DET
best ADJ
way NOUN
to PART
diagnose VERB
; PUNCT
it PRON
's AUX
very ADV
> X
hard ADJ
to PART
culture VERB
Bb PROPN
in ADP
most ADJ
cases NOUN
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
Dr. PROPN
N PROPN
has AUX
developed VERB
a>"feel PUNCT
" PUNCT
for ADP
what PRON
is AUX
and CCONJ
what PRON
is AUX
n't PART
LD NOUN
. PUNCT
  SPACE
This DET
comes VERB
from ADP
years NOUN
of ADP
experience.>No NUM
serology NOUN
can AUX
match VERB
that DET
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
some DET
would AUX
call VERB
Dr. PROPN
N PROPN
a DET
" PUNCT
quack">and PROPN
accuse VERB
him PRON
of ADP
trying VERB
to PART
make VERB
a DET
quick ADJ
buck.>Why NOUN
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures NOUN
. PUNCT
They PRON
poo VERB
- PUNCT
poo NOUN
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I'veseen PROPN
it PRON
many ADJ
times NOUN
. PUNCT
  SPACE
The DET
lab NOUN
tests NOUN
are AUX
n't PART
accurate ADJ
. PUNCT
  SPACE
We PRON
'll AUX
treat VERB
itnow NOUN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
is AUX
Dr. PROPN
N PROPN
's PART
practice NOUN
almost ADV
exclusively ADV
devoted ADJ
to ADP
treatingLyme NOUN
patients NOUN
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
* PUNCT
any DET
* PUNCT
orthopedic ADJ
surgeons NOUN
who PRON
fit VERB
thispattern NOUN
. PUNCT
  SPACE
They PRON
are AUX
usually ADV
GPs.-- ADJ
----------------------------------------------------------------------------Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59039From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Could AUX
this DET
be AUX
a DET
migraine?In PROPN
article NOUN
< X
20773.3049.uupcb@factory.com PUNCT
> X
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
writes:>Headaches VERB
that PRON
seriously ADV
interfere VERB
with ADP
activities NOUN
of ADP
daily ADJ
living NOUN
> X
affect VERB
about ADP
15 NUM
% NOUN
of ADP
the DET
population NOUN
. PUNCT
  SPACE
Does AUX
n't PART
that DET
sound VERB
like SCONJ
> X
something PRON
a DET
" PUNCT
primary ADJ
care NOUN
" PUNCT
physician NOUN
should AUX
know VERB
something PRON
about ADP
? PUNCT
  SPACE
I PRON
> X
tend VERB
to PART
agree VERB
with ADP
HMO PROPN
administrators NOUN
- PUNCT
family NOUN
physicians NOUN
should AUX
> X
learn VERB
the DET
basics NOUN
of ADP
headache PROPN
management.>Absolutely ADV
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
of ADP
them PRON
have AUX
had VERB
3 NUM
weeks NOUN
of ADP
neurologyin PROPN
medical PROPN
school PROPN
and CCONJ
1 NUM
month NOUN
( PUNCT
maybe ADV
) PUNCT
in ADP
their PRON
residency NOUN
. PUNCT
  SPACE
Mostof PROPN
that PRON
is AUX
done VERB
in ADP
the DET
hospital NOUN
where ADV
migraines NOUN
rarely ADV
are AUX
seen VERB
. PUNCT
Where ADV
are AUX
they PRON
supposed VERB
to PART
learn VERB
? PUNCT
  SPACE
Those DET
who PRON
are AUX
diligent ADJ
andread NOUN
do AUX
learn VERB
, PUNCT
but CCONJ
most ADJ
do AUX
n't PART
, PUNCT
unfortunately.>Sometimes PROPN
I PRON
wonder VERB
what PRON
tension NOUN
- PUNCT
type NOUN
headaches NOUN
have AUX
to PART
do AUX
with ADP
> X
neurology PROPN
anyway ADV
. PUNCT
We PRON
are AUX
the DET
only ADJ
ones NOUN
, PUNCT
sometimes ADV
, PUNCT
who PRON
have AUX
enough ADJ
interest NOUN
in ADP
headachesto PROPN
spend VERB
the DET
time NOUN
to PART
get AUX
enough ADJ
history NOUN
to PART
diagnose VERB
them PRON
. PUNCT
  SPACE
Too ADV
often ADV
, PUNCT
the DET
primary ADJ
care NOUN
physician NOUN
hears VERB
" PUNCT
headache NOUN
" PUNCT
and CCONJ
loses VERB
interest NOUN
inanything VERB
but CCONJ
giving VERB
the DET
patient ADJ
analgesics NOUN
and CCONJ
getting VERB
them PRON
out ADP
ofthe DET
office NOUN
so SCONJ
they PRON
can AUX
get AUX
on ADP
to ADP
something PRON
more ADJ
interesting.>(I ADJ
am AUX
excepting VERB
migraine NOUN
, PUNCT
which PRON
is AUX
arguably ADV
neurologic ADJ
) PUNCT
. PUNCT
  SPACE
HeadachesI NUM
hope NOUN
you PRON
meant VERB
" PUNCT
inarguably".-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59040From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Cause NOUN
of ADP
mental ADJ
retardation?In PROPN
article NOUN
< X
1993Apr13.111834.1@cc.uvcc.edu NUM
> X
harrisji@cc.uvcc.edu PROPN
writes:>>Chromosome PROPN
studies NOUN
have AUX
shown VERB
no DET
abnormalities NOUN
. PUNCT
  SPACE
Enzyme PROPN
studies NOUN
and CCONJ
> X
urine NOUN
analyses NOUN
have AUX
not PART
turned VERB
up ADP
anything PRON
out SCONJ
of ADP
the DET
ordinary ADJ
. PUNCT
> X
MRI PROPN
images NOUN
of ADP
the DET
brain NOUN
show VERB
scar PROPN
tissue NOUN
in ADP
the DET
white ADJ
matter NOUN
. PUNCT
> X
Subsequent PROPN
MRI PROPN
analysis NOUN
has AUX
shown VERB
that SCONJ
the DET
deterioration NOUN
of ADP
the DET
> X
white PROPN
matter PROPN
is AUX
progressive.>>Because PROPN
neither DET
family NOUN
has AUX
a DET
history NOUN
of ADP
anything PRON
like SCONJ
this DET
, PUNCT
and CCONJ
> X
because SCONJ
two NUM
of ADP
our PRON
four NUM
children NOUN
are AUX
afflicted VERB
with ADP
the DET
disorder,>we PROPN
believe VERB
that SCONJ
it PRON
is AUX
an DET
autosomal ADJ
recessive ADJ
metabolic ADJ
disorder NOUN
of ADP
> X
some DET
kind NOUN
. PUNCT
  SPACE
Naturally ADV
, PUNCT
we PRON
would AUX
like VERB
to PART
know VERB
exactly ADV
what PRON
the DET
> X
disease NOUN
is AUX
so SCONJ
that SCONJ
we PRON
may AUX
gain VERB
some DET
insight NOUN
into ADP
how ADV
we PRON
can AUX
expect VERB
> X
the DET
disorder NOUN
to PART
progress VERB
in ADP
the DET
future NOUN
. PUNCT
  SPACE
We PRON
would AUX
also ADV
like VERB
to PART
be AUX
> X
able ADJ
to PART
provide VERB
our PRON
normal ADJ
children NOUN
with ADP
some DET
information NOUN
about ADP
> X
what PRON
they PRON
can AUX
expect VERB
in ADP
their PRON
own ADJ
children.>It PROPN
could AUX
be AUX
one NUM
of ADP
the DET
leukodystrophies NOUN
( PUNCT
not PART
adrenal ADJ
, PUNCT
onlyboys NOUN
get VERB
that DET
) PUNCT
. PUNCT
  SPACE
Surely ADV
you PRON
've AUX
been AUX
to ADP
a DET
university NOUN
pediatricneurology NOUN
department NOUN
. PUNCT
  SPACE
If SCONJ
not PART
that DET
is AUX
the DET
next ADJ
step NOUN
. PUNCT
  SPACE
Biopsiesmight PROPN
help NOUN
, PUNCT
especially ADV
if SCONJ
peripheral ADJ
nerves NOUN
are AUX
also ADV
affected VERB
. PUNCT
There PRON
are AUX
so ADV
many ADJ
of ADP
these DET
diseases NOUN
that PRON
would AUX
fit VERB
the DET
symptomsyou NOUN
gave VERB
that SCONJ
more ADJ
ca AUX
n't PART
be AUX
said VERB
at ADP
this DET
time NOUN
. PUNCT
I PRON
agree VERB
with ADP
your PRON
surmise NOUN
that SCONJ
it PRON
is AUX
an DET
autosomal ADJ
recessive NOUN
. PUNCT
If SCONJ
so ADV
, PUNCT
your PRON
normal ADJ
children NOUN
wo AUX
n't PART
have AUX
to PART
worry VERB
too ADV
much ADJ
unlessthey ADJ
marry VERB
near SCONJ
relatives NOUN
. PUNCT
  SPACE
Most ADV
recessive ADJ
genes NOUN
are AUX
rareexcept VERB
in ADP
inbred VERB
communities NOUN
( PUNCT
e.g. ADV
Lithuanian ADJ
Jews).-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59041From NUM
: SYM
880506s@dragon.acadiau.ca NUM
( PUNCT
James PROPN
R. PROPN
Skinner)Subject NUM
: PUNCT
Re ADP
: PUNCT
Paxil PROPN
( PUNCT
request)880506s@dragon.acadiau.ca NOUN
( PUNCT
James PROPN
R. PROPN
Skinner PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
> X
	 SPACE
I PRON
have AUX
seen VERB
a DET
couple NOUN
of ADP
postings NOUN
refering VERB
to ADP
an DET
SRI PROPN
called VERB
paxil NOUN
. PUNCT
  SPACE
I PRON
> X
have AUX
been AUX
on ADP
Prozac PROPN
for ADP
a DET
number NOUN
of ADP
years NOUN
and CCONJ
recently ADV
switched VERB
to ADP
Zolf PROPN
. PUNCT
  SPACE
I PRON
> X
have AUX
seen VERB
a DET
bit NOUN
of ADP
comparsion NOUN
of ADP
Prozac PROPN
to ADP
Paxil PROPN
but CCONJ
none NOUN
on ADP
Zolft PROPN
to ADP
Prozac PROPN
> X
Can AUX
some DET
one NOUN
enlight VERB
me PRON
on ADP
the DET
differences/ NOUN
side NOUN
effect NOUN
profile/ NOUN
etc X
... PUNCT
does AUX
anyone PRON
know?-- PROPN
-----------------------------------+-------------------------------------------- NUM
        SPACE
James PROPN
Robie PROPN
Skinner PROPN
        SPACE
| PROPN
     SPACE
Jodrey PROPN
School PROPN
of ADP
Computer PROPN
Science PROPN
        SPACE
James.Skinner@dragon.acadiau.ca VERB
  SPACE
| X
  SPACE
Acadia PROPN
University PROPN
, PUNCT
Wolfville PROPN
, PUNCT
NS PROPN
, PUNCT
Canada-----------------------------------+--------------------------------------------Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59042From NUM
: PUNCT
sandy@nmr1.pt.cyanamid.COM PROPN
( PUNCT
Sandy PROPN
Silverman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskHeat NOUN
shock NOUN
proteins NOUN
are AUX
those DET
whose PRON
expression NOUN
is AUX
induced VERB
in ADP
response NOUN
toelevated VERB
temperature NOUN
. PUNCT
  SPACE
Some DET
are AUX
also ADV
made VERB
when ADV
organisms NOUN
are AUX
subjected VERB
toother ADP
stress NOUN
conditions NOUN
, PUNCT
e.g. DET
high ADJ
salt NOUN
. PUNCT
  SPACE
They PRON
have AUX
no DET
obvious ADJ
connectionto NOUN
what PRON
happens VERB
when ADV
you PRON
burn VERB
proteins.--Sanford NUM
Silverman PROPN
                      SPACE
> X
Opinions NOUN
expressed VERB
here ADV
are AUX
my PRON
own ADJ
< PUNCT
American PROPN
Cyanamid PROPN
  SPACE
sandy@pt.cyanamid.com PROPN
, PUNCT
silvermans@pt.cyanamid.com PROPN
     SPACE
" PUNCT
Yeast NOUN
is AUX
Best"Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59043From NUM
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)Subject NOUN
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?My PROPN
wife NOUN
's PART
ob PROPN
- PUNCT
gyn PROPN
has AUX
an DET
ultrasound ADJ
machine NOUN
in ADP
her PRON
office NOUN
. PUNCT
  SPACE
Whenthe DET
doctor NOUN
could AUX
n't PART
hear VERB
a DET
fetal ADJ
heartbeat NOUN
( PUNCT
13 NUM
weeks NOUN
) PUNCT
she PRON
usedthe VERB
ultrasound NOUN
to PART
see VERB
if SCONJ
everything PRON
was AUX
ok ADJ
. PUNCT
  SPACE
( PUNCT
it PRON
was)On VERB
her PRON
next ADJ
visit NOUN
, PUNCT
my PRON
wife NOUN
asked VERB
another DET
doctor NOUN
in ADP
the DET
office NOUN
ifthey NOUN
read VERB
the DET
ultrasounds VERB
themselves PRON
or CCONJ
if SCONJ
they PRON
had AUX
a DET
radiologistread NOUN
the DET
pictures NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
very ADV
vehemently ADV
insisted VERB
that SCONJ
theywere NOUN
qualified VERB
to PART
read VERB
the DET
ultrasound NOUN
and CCONJ
radiologists NOUN
were AUX
NOT!My PROPN
wife NOUN
is AUX
concerned ADJ
about ADP
this DET
. PUNCT
  SPACE
She PRON
saw VERB
a DET
TV NOUN
show VERB
a DET
couple NOUN
monthsback NOUN
( PUNCT
something PRON
like SCONJ
20/20 NUM
or CCONJ
Dateline PROPN
NBC PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
where ADV
an DET
experton ADJ
fetal NOUN
ultrasounds VERB
( PUNCT
a DET
radiologist NOUN
) PUNCT
was AUX
showing VERB
all DET
the DET
differentdeffects NOUN
that PRON
could AUX
be AUX
detected VERB
using VERB
the DET
ultrasound NOUN
. PUNCT
Should AUX
my PRON
wife NOUN
be AUX
concerned VERB
? PUNCT
  SPACE
Should AUX
we PRON
take VERB
the DET
pictures NOUN
to ADP
a DET
radiologist NOUN
for ADP
a DET
second ADJ
opinion NOUN
? PUNCT
( PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
where ADV
would AUX
we PRON
findsuch ADV
an DET
expert NOUN
in ADP
Chicago PROPN
? PUNCT
) PUNCT
  SPACE
We PRON
do AUX
n't PART
really ADV
have AUX
any DET
special ADJ
medicalreason NOUN
to PART
be AUX
concerned VERB
, PUNCT
but CCONJ
if SCONJ
a DET
radiologist NOUN
will AUX
be AUX
able ADJ
to PART
seethings NOUN
the DET
ob PROPN
- PUNCT
gyn PROPN
ca AUX
n't PART
, PUNCT
then ADV
I PRON
do AUX
n't PART
see VERB
why ADV
we PRON
should AUX
n't PART
use VERB
one NUM
. PUNCT
Any DET
thoughts?-- NOUN
Doug PROPN
Bank PROPN
                       SPACE
Private PROPN
Systems PROPN
Divisiondougb@ecs.comm.mot.com X
          SPACE
Motorola PROPN
Communications PROPN
Sectordougb@nwu.edu PROPN
                   SPACE
Schaumburg PROPN
, PUNCT
Illinoisdougb@casbah.acns.nwu.edu NOUN
       SPACE
708 NUM
- PUNCT
576 NUM
- SYM
8207 NUM
                    SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59044From NUM
: PUNCT
ls8139@albnyvms.bitnet PROPN
( PUNCT
larry PROPN
silverberg)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
, PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>In X
article NOUN
davpa@ida.liu.se X
  SPACE
( PUNCT
David PROPN
Partain PROPN
) PUNCT
writes:>>>>Someone PROPN
I PRON
know VERB
has AUX
recently ADV
been AUX
diagnosed VERB
as SCONJ
having VERB
Candida PROPN
Albicans PROPN
, PUNCT
> X
> X
> X
a DET
disease NOUN
about ADP
which PRON
I PRON
can AUX
find VERB
no DET
information NOUN
. PUNCT
  SPACE
Apparently ADV
it PRON
has AUX
something>>>to NOUN
do AUX
with ADP
the DET
body NOUN
's PART
production NOUN
of ADP
yeast NOUN
while SCONJ
at ADP
the DET
same ADJ
time NOUN
being AUX
highly>>>allergic PROPN
to ADP
yeast NOUN
. PUNCT
  SPACE
Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
any DET
more ADV
about ADP
it?I ADJ
have AUX
a DET
lot NOUN
of ADP
info NOUN
about ADP
this DET
disease NOUN
. PUNCT
  SPACE
I PRON
am AUX
posting VERB
a DET
small ADJ
amount NOUN
ofit NOUN
that PRON
I PRON
extracted VERB
. PUNCT
  SPACE
If SCONJ
more ADV
is AUX
required VERB
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
@ls8139@gemini.albany.edu PROPN
. PUNCT
  SPACE
Please INTJ
, PUNCT
it PRON
takes VERB
me PRON
some DET
time NOUN
to PART
upload VERB
it PRON
, PUNCT
sobe PROPN
advised VERB
, PUNCT
only ADV
request VERB
it PRON
if SCONJ
you PRON
* PUNCT
really ADV
* PUNCT
want VERB
it.here PRON
is AUX
some DET
info NOUN
from ADP
InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
CenterAlso PROPN
, PUNCT
check VERB
you PRON
local ADJ
of ADP
univeristy ADJ
library NOUN
. PUNCT
  SPACE
They PRON
most ADV
likely ADV
have AUX
theInfoTrac PROPN
cd NOUN
- PUNCT
rom NOUN
this DET
info NOUN
was AUX
taken VERB
from ADP
...... PUNCT
====================================InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PUNCT
92 NUM
Heading NOUN
: PUNCT
   SPACE
CANDIDA PROPN
ALBICANS PROPN
             SPACE
! PUNCT
Dictionary PROPN
Definition PROPN
    SPACE
1 NUM
. PUNCT
    SPACE
Mosby PROPN
's PART
Medical PROPN
and CCONJ
Nursing PROPN
Dictionary PROPN
, PUNCT
2nd ADJ
edition NOUN
               SPACE
COPYRIGHT NOUN
1986 NUM
The DET
C.V. PROPN
Mosby PROPN
Company PROPN
                                                                            SPACE
Candida PROPN
albicans NOUN
                                             SPACE
------------------------------------------------------- PUNCT
      SPACE
A DET
common ADJ
, PUNCT
budding VERB
, PUNCT
  SPACE
yeastlike INTJ
, PUNCT
microscopic PROPN
fungal PROPN
            SPACE
organism NOUN
normally ADV
present ADJ
in ADP
the DET
mucous ADJ
membranes NOUN
of ADP
         SPACE
the DET
mouth NOUN
, PUNCT
intestinal ADJ
tract NOUN
, PUNCT
and CCONJ
vagina PROPN
and CCONJ
on ADP
the DET
skin NOUN
      SPACE
of ADP
healthy ADJ
people NOUN
. PUNCT
Under ADP
certain ADJ
circumstances NOUN
, PUNCT
it PRON
may AUX
       SPACE
cause VERB
superficial ADJ
infections NOUN
of ADP
the DET
mouth NOUN
or CCONJ
vagina PROPN
          SPACE
and CCONJ
, PUNCT
less ADV
commonly ADV
, PUNCT
serious ADJ
invasive ADJ
systemic ADJ
infection NOUN
      SPACE
and CCONJ
toxic ADJ
reaction NOUN
. PUNCT
See VERB
also ADV
candidiasis.==============================InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
  SPACE
THE DET
MATERIAL NOUN
CONTAINED PROPN
IN ADP
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
IS VERB
PROVIDED VERB
  SPACE
ONLY ADV
FOR ADP
INFORMATIONAL ADJ
PURPOSES NOUN
AND CCONJ
SHOULD AUX
NOT ADV
BE VERB
CONSTRUED X
AS ADP
  SPACE
MEDICAL PROPN
ADVICE PROPN
OR CCONJ
INSTRUCTION PROPN
. PUNCT
  SPACE
CONSULT VERB
YOUR PRON
HEALTH NOUN
PROFESSIONAL NOUN
  SPACE
FOR ADP
ADVICE PROPN
RELATING NOUN
TO ADP
A DET
MEDICAL ADJ
PROBLEM NOUN
OR CCONJ
CONDITION PROPN
. PUNCT
Heading VERB
: PUNCT
   SPACE
CANDIDA PROPN
ALBICANS PROPN
    SPACE
1 NUM
. PUNCT
     SPACE
Yogurt PROPN
cure NOUN
for ADP
Candida PROPN
. PUNCT
( PUNCT
acidophilus PROPN
) PUNCT
il PROPN
v22 PROPN
East PROPN
       SPACE
West PROPN
Natural PROPN
Health PROPN
July PROPN
- PUNCT
August PROPN
' PART
92 NUM
p17(1 NOUN
) PUNCT
                       SPACE
TEXT NOUN
AVAILABLE PROPN
TEXT PROPN
COPYRIGHT PROPN
East PROPN
West PROPN
Partners PROPN
1992 NUM
                                         SPACE
Another DET
folk NOUN
remedy NOUN
receives VERB
the DET
blessing NOUN
of ADP
medical ADJ
study NOUN
. PUNCT
           SPACE
Researchers PROPN
have AUX
found VERB
that SCONJ
eating VERB
a DET
cup NOUN
of ADP
yogurt PROPN
a DET
day NOUN
drastically ADV
    SPACE
reduces VERB
a DET
woman NOUN
's PART
chances NOUN
of ADP
getting VERB
vaginal ADJ
candida PROPN
, PUNCT
a DET
yeast NOUN
infection NOUN
. PUNCT
  SPACE
For ADP
the DET
year NOUN
- PUNCT
long ADJ
study NOUN
, PUNCT
researchers NOUN
at ADP
Long PROPN
Island PROPN
Jewish PROPN
Medical PROPN
    SPACE
Center PROPN
in ADP
New PROPN
Hyde PROPN
Park PROPN
, PUNCT
New PROPN
York PROPN
, PUNCT
recruited VERB
13 NUM
women NOUN
who PRON
suffered VERB
from ADP
chronic ADJ
yeast NOUN
infections NOUN
. PUNCT
For ADP
the DET
first ADJ
6 NUM
months NOUN
, PUNCT
the DET
women NOUN
each DET
day NOUN
ate8 NOUN
ounces NOUN
of ADP
yogurt NOUN
containing VERB
Lactobacillus PROPN
acidophilus NOUN
. PUNCT
For ADP
the DET
second ADJ
6 NUM
months NOUN
, PUNCT
the DET
women NOUN
did AUX
not PART
eat VERB
yogurt PROPN
. PUNCT
The DET
researchers NOUN
examined VERB
the DET
    SPACE
women NOUN
each DET
month NOUN
and CCONJ
found VERB
that SCONJ
incidents NOUN
of ADP
colonization NOUN
and CCONJ
infection NOUN
were AUX
significantly ADV
lower ADJ
during ADP
the DET
period NOUN
when ADV
the DET
women NOUN
ate VERB
yogurt PROPN
. PUNCT
     SPACE
The DET
fungus ADJ
Candida PROPN
albicans NOUN
can AUX
live VERB
in ADP
the DET
body NOUN
without ADP
doing VERB
harm NOUN
. PUNCT
  SPACE
It PRON
is AUX
an DET
overproliferation NOUN
of ADP
the DET
fungus NOUN
that PRON
leads VERB
to ADP
infection NOUN
. PUNCT
The DET
   SPACE
researchers NOUN
concluded VERB
that SCONJ
the DET
L. PROPN
acidophilus NOUN
bacteria NOUN
found VERB
in ADP
some DET
    SPACE
brands NOUN
of ADP
yogurt PROPN
retard VERB
overgrowth NOUN
of ADP
the DET
fungus NOUN
. PUNCT
Streptococcus PROPN
         SPACE
thermophilus PROPN
and CCONJ
L. PROPN
bulgaricus PROPN
are AUX
the DET
two NUM
bacteria NOUN
most ADV
commonly ADV
used VERB
  SPACE
in ADP
commercial ADJ
yogurt NOUN
production NOUN
. PUNCT
Neither DET
one PRON
appears VERB
to PART
exert VERB
a DET
         SPACE
protective ADJ
effect NOUN
against ADP
Candida PROPN
albicans NOUN
, PUNCT
however ADV
. PUNCT
Women NOUN
who PRON
want VERB
to PART
  SPACE
try VERB
yogurt PROPN
as SCONJ
a DET
preventive ADJ
measure NOUN
should AUX
choose VERB
a DET
brand NOUN
that PRON
lists VERB
     SPACE
acidophilus NOUN
in ADP
its PRON
contents NOUN
. PUNCT
                                            SPACE
--- PUNCT
end NOUN
--- PUNCT
                                            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
InfoTrac PROPN
- PUNCT
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
  SPACE
THE DET
MATERIAL NOUN
CONTAINED PROPN
IN ADP
Health PROPN
Reference PROPN
Center PROPN
~ PUNCT
Oct PROPN
' PART
89 NUM
- PUNCT
Oct PROPN
' PART
92 NUM
IS VERB
PROVIDED VERB
  SPACE
ONLY ADV
FOR ADP
INFORMATIONAL ADJ
PURPOSES NOUN
AND CCONJ
SHOULD AUX
NOT ADV
BE VERB
CONSTRUED X
AS ADP
  SPACE
MEDICAL PROPN
ADVICE PROPN
OR CCONJ
INSTRUCTION PROPN
. PUNCT
  SPACE
CONSULT VERB
YOUR PRON
HEALTH NOUN
PROFESSIONAL NOUN
  SPACE
FOR ADP
ADVICE PROPN
RELATING NOUN
TO ADP
A DET
MEDICAL ADJ
PROBLEM NOUN
OR CCONJ
CONDITION PROPN
. PUNCT
Heading VERB
: PUNCT
   SPACE
CANDIDA PROPN
ALBICANS PROPN
    SPACE
1 NUM
. PUNCT
     SPACE
Candida PROPN
( PUNCT
Monilia PROPN
) PUNCT
. PUNCT
( PUNCT
Infections NOUN
Caused VERB
by ADP
Fungi PROPN
) PUNCT
          SPACE
( PUNCT
Infectious ADJ
Diseases NOUN
) PUNCT
by ADP
Harold PROPN
C. PROPN
Neu PROPN
The DET
Columbia PROPN
          SPACE
Univ PROPN
. PUNCT
Coll PROPN
. PUNCT
of ADP
Physicians PROPN
& CCONJ
Surgeons PROPN
Complete PROPN
Home PROPN
           SPACE
Medical PROPN
Guide PROPN
Edition PROPN
2 NUM
' NUM
89 NUM
p472(1 PROPN
) PUNCT
                              SPACE
TEXT PROPN
AVAILABLE PROPN
TEXT NOUN
COPYRIGHT NOUN
Crown PROPN
Publishers PROPN
Inc. PROPN
1989 NUM
                                      SPACE
Candida PROPN
( PUNCT
Monilia PROPN
) PUNCT
                                                       SPACE
This DET
disease NOUN
is AUX
usually ADV
caused VERB
by ADP
Candida PROPN
albicans PROPN
, PUNCT
a DET
fungus NOUN
that SCONJ
we PRON
  SPACE
all DET
carry VERB
at ADP
one NUM
time NOUN
or CCONJ
another DET
. PUNCT
In ADP
some DET
circumstances NOUN
, PUNCT
though ADV
, PUNCT
the DET
    SPACE
organisms NOUN
proliferate VERB
, PUNCT
producing VERB
symptomatic ADJ
infection NOUN
of ADP
the DET
mouth NOUN
, PUNCT
    SPACE
intestines NOUN
, PUNCT
vagina PROPN
, PUNCT
or CCONJ
skin NOUN
. PUNCT
When ADV
the DET
mouth NOUN
or CCONJ
vagina PROPN
are AUX
infected VERB
, PUNCT
the DET
disease NOUN
is AUX
commonly ADV
called VERB
thrush PROPN
. PUNCT
                                        SPACE
Vaginitis PROPN
caused VERB
by ADP
Candida PROPN
often ADV
afflicts VERB
women NOUN
on ADP
birth NOUN
control NOUN
     SPACE
pills NOUN
or CCONJ
antibiotics NOUN
. PUNCT
There PRON
is AUX
itching VERB
and CCONJ
a DET
white ADJ
, PUNCT
cheesy PROPN
discharge NOUN
. PUNCT
   SPACE
Among ADP
narcotic ADJ
addicts NOUN
, PUNCT
Candida PROPN
infections NOUN
can AUX
lead VERB
to ADP
heart NOUN
valve NOUN
      SPACE
inflammation NOUN
. PUNCT
                                                             SPACE
Diagnosis PROPN
of ADP
Candida PROPN
infections NOUN
is AUX
confirmed VERB
by ADP
cultures NOUN
and CCONJ
blood NOUN
    SPACE
tests NOUN
. PUNCT
Treatment NOUN
can AUX
be AUX
with ADP
amphotericin PROPN
B PROPN
or CCONJ
orally ADV
with ADP
ketoconazole PROPN
. PUNCT
There PRON
is AUX
no DET
evidence NOUN
that SCONJ
Candida PROPN
in ADP
the DET
intestine NOUN
of ADP
normal ADJ
individualsleads NOUN
to PART
disease VERB
. PUNCT
All DET
people NOUN
at ADP
one NUM
time NOUN
or CCONJ
another DET
have AUX
Candida PROPN
in ADP
     SPACE
their PRON
intestines NOUN
. PUNCT
Claims NOUN
for ADP
any DET
benefit NOUN
from ADP
special ADJ
diets NOUN
or CCONJ
chronic NOUN
  SPACE
antifungal ADJ
agents NOUN
is AUX
not PART
based VERB
on ADP
any DET
solid ADJ
evidence NOUN
. PUNCT
                   SPACE
--- PUNCT
end NOUN
---==========================I X
hope VERB
this DET
is AUX
informative ADJ
. PUNCT
Larry~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Live PROPN
From ADP
New PROPN
York PROPN
, PUNCT
It PRON
's AUX
SATURDAY PROPN
NIGHT PROPN
... PUNCT
Tonight NOUN
's PART
special ADJ
guest NOUN
: PUNCT
Lawrence PROPN
Silverberg PROPN
from ADP
The DET
State PROPN
University PROPN
of ADP
New PROPN
York PROPN
@ ADP
Albanyaka PROPN
: PUNCT
ls8139@gemini PROPN
. PUNCT
Albany.edu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59045From NUM
: PUNCT
yozzo@watson.ibm.com PROPN
( PUNCT
Ralph PROPN
Yozzo)Subject PROPN
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyIn PROPN
article NOUN
< X
19688@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>In X
article NOUN
< X
1993Apr12.201056.20753@ns1.cc.lehigh.edu NUM
> X
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel PROPN
) PUNCT
writes:>>>Now INTJ
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
culturing NOUN
is AUX
the DET
best ADJ
way NOUN
to PART
diagnose VERB
; PUNCT
it PRON
's AUX
very>>hard ADJ
to PART
culture VERB
Bb PROPN
in ADP
most ADJ
cases NOUN
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
Dr. PROPN
N PROPN
has AUX
developed VERB
a>>"feel NOUN
" PUNCT
for ADP
what PRON
is AUX
and CCONJ
what PRON
is AUX
n't PART
LD NOUN
. PUNCT
  SPACE
This DET
comes VERB
from ADP
years NOUN
of ADP
experience.>>No PROPN
serology NOUN
can AUX
match VERB
that DET
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
some DET
would AUX
call VERB
Dr. PROPN
N PROPN
a DET
" PUNCT
quack">>and NOUN
accuse VERB
him PRON
of ADP
trying VERB
to PART
make VERB
a DET
quick ADJ
buck.>>>Why NOUN
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures.>They PROPN
poo VERB
- PUNCT
poo VERB
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I've ADJ
> X
seen VERB
it PRON
many ADJ
times NOUN
. PUNCT
  SPACE
The DET
lab NOUN
tests NOUN
are AUX
n't PART
accurate ADJ
. PUNCT
  SPACE
We PRON
'll AUX
treat VERB
it PRON
> X
now ADV
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
is AUX
Dr. PROPN
N PROPN
's PART
practice NOUN
almost ADV
exclusively ADV
devoted ADJ
to ADP
treating VERB
> X
Lyme PROPN
patients NOUN
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
* PUNCT
any DET
* PUNCT
orthopedic ADJ
surgeons NOUN
who PRON
fit VERB
this DET
> X
pattern NOUN
. PUNCT
  SPACE
They PRON
are AUX
usually ADV
GPs.>-- ADJ
  SPACE
Are AUX
you PRON
arguing VERB
that SCONJ
the DET
Lyme PROPN
lab NOUN
test NOUN
is AUX
accurate?The ADJ
books NOUN
that PRON
I PRON
've AUX
read VERB
say VERB
that SCONJ
in ADP
general ADJ
the DET
testshave NOUN
a DET
50 NUM
- SYM
50 NUM
chance NOUN
of ADP
being AUX
correct ADJ
. PUNCT
  SPACE
( PUNCT
The DET
testsresult NOUN
in ADP
a DET
large ADJ
number NOUN
of ADP
both CCONJ
false ADJ
positives NOUN
andfalse NOUN
negatives NOUN
. PUNCT
  SPACE
I PRON
am AUX
in ADP
the DET
latter ADJ
case.)We PROPN
could AUX
get AUX
those DET
same ADJ
odds NOUN
by ADP
" PUNCT
rolling VERB
the DET
dice".-- NOUN
  SPACE
Ralph PROPN
Yozzo PROPN
( PUNCT
yozzo@watson.ibm.com PROPN
) PUNCT
   SPACE
From ADP
the DET
beautiful ADJ
and CCONJ
historic ADJ
New PROPN
York PROPN
State PROPN
Mid PROPN
- PUNCT
Hudson PROPN
Valley PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59046From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5sqv8.EDB@acsu.buffalo.edu PROPN
> X
SFEGUS@ubvm.cc.buffalo.edu PROPN
writes:>In PROPN
article NOUN
< X
79857@cup.portal.com>>mmm@cup.portal.com NUM
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
No INTJ
, PUNCT
there PRON
is AUX
something PRON
called VERB
the DET
" PUNCT
Delany PROPN
Amendment PROPN
" PUNCT
which PRON
makes VERB
carcinogenic>>food NOUN
additives NOUN
illegal ADJ
in ADP
any DET
amount NOUN
. PUNCT
  SPACE
This DET
was AUX
passed VERB
by ADP
Congress PROPN
in ADP
the DET
> X
> X
I PRON
think VERB
what PRON
we PRON
have AUX
to PART
keep VERB
in ADP
mind NOUN
is AUX
that SCONJ
even ADV
though SCONJ
it PRON
may AUX
be AUX
illegal ADJ
to ADP
> X
commercially ADV
produce VERB
/ SYM
sell VERB
food NOUN
with ADP
carcinogenic ADJ
substances NOUN
, PUNCT
it PRON
is AUX
not PART
illegal ADJ
> X
for ADP
people NOUN
to PART
do AUX
such ADJ
to ADP
their PRON
own ADJ
food NOUN
( PUNCT
smoking NOUN
, PUNCT
etc X
) PUNCT
. PUNCT
  SPACE
Is AUX
this DET
true ADJ
? PUNCT
> X
Whoa INTJ
. PUNCT
What PRON
did AUX
you PRON
say VERB
your PRON
name NOUN
was AUX
? PUNCT
Address NOUN
, PUNCT
SSN PROPN
? PUNCT
Smoking NOUN
foods NOUN
, PUNCT
eh?I NOUN
think VERB
the DET
gov't NOUN
would AUX
like VERB
to PART
know VERB
about ADP
this DET
... PUNCT
Brian:- PROPN
) PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59047From NUM
: PUNCT
draper@gnd1.wtp.gtefsd.com X
( PUNCT
PAM PROPN
DRAPER)Subject PROPN
: PUNCT
Any DET
info NOUN
. PUNCT
on ADP
Vasomotor PROPN
RhinitisI PROPN
recently ADV
attended VERB
an DET
allery NOUN
seminar NOUN
. PUNCT
  SPACE
Steroid PROPN
Nasal PROPN
sprays NOUN
were AUX
discussed VERB
. PUNCT
  SPACE
Afterward ADV
on ADP
a DET
one NUM
- PUNCT
on ADP
- PUNCT
one NUM
basis NOUN
, PUNCT
I PRON
asked VERB
the DET
speaker NOUN
what PRON
if SCONJ
none NOUN
of ADP
the DET
Vancanese PROPN
, PUNCT
Beconase PROPN
, PUNCT
Nasalide PROPN
, PUNCT
Nasalcort PROPN
, PUNCT
or CCONJ
Nasalchrom PROPN
work NOUN
nor CCONJ
do AUX
any DET
oral ADJ
decongestants NOUN
work VERB
. PUNCT
  SPACE
She PRON
replied VERB
that SCONJ
she PRON
saw VERB
an DET
article NOUN
on ADP
Vasomotor PROPN
Rhinitis PROPN
. PUNCT
  SPACE
That SCONJ
this DET
is AUX
not PART
an DET
allergic ADJ
reaction NOUN
and CCONJ
that SCONJ
nothing PRON
other ADJ
than SCONJ
the DET
Afrin PROPN
's PART
and CCONJ
such ADJ
would AUX
work VERB
. PUNCT
  SPACE
( PUNCT
Which PRON
in ADP
my PRON
case NOUN
is AUX
true).I NUM
want VERB
to PART
find VERB
out ADP
as ADV
much ADV
as SCONJ
possible ADJ
about ADP
this DET
, PUNCT
since SCONJ
I PRON
am AUX
going VERB
to PART
see VERB
my PRON
allergist NOUN
in ADP
May PROPN
and CCONJ
want VERB
to PART
be AUX
armed VERB
to ADP
the DET
hilt NOUN
with ADP
information NOUN
; PUNCT
since SCONJ
nothing PRON
he PRON
has AUX
done VERB
with ADP
me PRON
has AUX
helped VERB
me PRON
at ADV
all ADV
and CCONJ
I PRON
have AUX
had VERB
no DET
relief NOUN
for ADP
14 NUM
months NOUN
. PUNCT
Please INTJ
respond VERB
if SCONJ
you PRON
know VERB
anything PRON
about ADP
this DET
and/or CCONJ
please INTJ
let VERB
me PRON
know VERB
what PRON
articles NOUN
might AUX
be AUX
helpful ADJ
that SCONJ
I PRON
could AUX
look VERB
up ADP
in ADP
the DET
library NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59048From NUM
: PUNCT
liny@sun13.scri.fsu.edu NUM
( PUNCT
Nemo)Subject NUM
: PUNCT
Bates PROPN
Method PROPN
for ADP
MyopiaDoes PROPN
the DET
Bates PROPN
method NOUN
work NOUN
? PUNCT
  SPACE
I PRON
first ADV
heard VERB
about ADP
it PRON
in ADP
this DET
newsgroup NOUN
several ADJ
years NOUN
ago ADV
, PUNCT
and CCONJ
I PRON
have AUX
just ADV
got VERB
hold NOUN
of ADP
a DET
book NOUN
, PUNCT
" PUNCT
How ADV
to PART
improve VERB
yoursight NOUN
- PUNCT
simple ADJ
daily ADJ
drills NOUN
in ADP
relaxation NOUN
" PUNCT
, PUNCT
by ADP
Margaret PROPN
D. PROPN
Corbett PROPN
, PUNCT
( PUNCT
' PUNCT
Authorized ADJ
instructor NOUN
of ADP
the DET
Bates PROPN
method NOUN
) PUNCT
, PUNCT
published VERB
in ADP
1953 NUM
. PUNCT
  SPACE
It PRON
talks VERB
about ADP
vision NOUN
improvement NOUN
by ADP
relaxation NOUN
and CCONJ
exercise NOUN
. PUNCT
  SPACE
Has AUX
there PRON
beenany NOUN
study NOUN
on ADP
whether SCONJ
this DET
method NOUN
actually ADV
works VERB
? PUNCT
  SPACE
If SCONJ
it PRON
works VERB
, PUNCT
is AUX
it PRON
by ADP
actually ADV
shortening VERB
the DET
previously ADV
elongated VERB
eyeball NOUN
, PUNCT
or CCONJ
by ADP
increasing VERB
the DET
lens NOUN
's PART
ability NOUN
to PART
flatten VERB
itself PRON
in ADP
order NOUN
to PART
compensate VERB
for ADP
the DET
too ADV
- PUNCT
long ADJ
eyeball?Since NOUN
myopia NOUN
is AUX
the DET
result NOUN
of ADP
eyeball NOUN
elongation NOUN
, PUNCT
seems VERB
to ADP
me PRON
the DET
mostlogical ADJ
approach NOUN
for ADP
correction NOUN
is AUX
to PART
find VERB
a DET
way NOUN
to PART
reverse VERB
the DET
process NOUN
, PUNCT
i.e PROPN
. PROPN
, PUNCT
shorten VERB
it PRON
somehow ADV
( PUNCT
preferably ADV
non ADJ
- ADJ
surgically ADJ
) PUNCT
. PUNCT
  SPACE
Has AUX
there ADV
beenany NOUN
recent ADJ
studies NOUN
on ADP
this DET
? PUNCT
  SPACE
Where ADV
can AUX
I PRON
find VERB
them PRON
? PUNCT
  SPACE
I PRON
know VERB
RK PROPN
works VERB
by ADP
changing VERB
the DET
curvature NOUN
of ADP
the DET
cornea NOUN
to PART
compensate VERB
for ADP
the DET
shape NOUN
of ADP
eyeball NOUN
, PUNCT
but CCONJ
if SCONJ
there PRON
is AUX
a DET
way NOUN
to PART
train VERB
the DET
muscles NOUN
to PART
shorten VERB
the DET
eyeball NOUN
back ADV
to ADP
its PRON
correct ADJ
length NOUN
that PRON
would AUX
be AUX
even ADV
better ADJ
( PUNCT
Bates PROPN
's PART
idea NOUN
, PUNCT
right?)Thanks NOUN
for ADP
any DET
information NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59049From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>There PROPN
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.>There PROPN
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
and CCONJ
> X
published VERB
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic ADJ
skeptics NOUN
> X
who PRON
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used VERB
. PUNCT
Snort PROPN
. PUNCT
  SPACE
Ah INTJ
, PUNCT
there PRON
go VERB
my PRON
sinuses NOUN
again.>For NOUN
example NOUN
, PUNCT
Dr. PROPN
Ivker PROPN
, PUNCT
who PRON
wrote VERB
the DET
book NOUN
" PUNCT
Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
always ADV
gives VERB
, PUNCT
Oh INTJ
, PUNCT
wow INTJ
. PUNCT
  SPACE
A DET
classic ADJ
textbook NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
laughed VERB
at ADP
Einstein PROPN
, PUNCT
too!>before PUNCT
any DET
other ADJ
treatment NOUN
, PUNCT
a DET
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
( PUNCT
such ADJ
as SCONJ
Nizoral PROPN
) PUNCT
to ADP
his PRON
> X
new ADJ
patients NOUN
IF ADP
they PRON
've AUX
been AUX
on ADP
braod NOUN
- PUNCT
spectrum NOUN
anti ADJ
- ADJ
biotics ADJ
4 NUM
or CCONJ
more ADJ
times NOUN
> X
in ADP
the DET
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
's AUX
kept VERB
a DET
record NOUN
of ADP
the DET
results NOUN
, PUNCT
and CCONJ
for ADP
over ADP
> X
2000 NUM
patients NOUN
found VERB
that SCONJ
over ADP
90 NUM
% NOUN
of ADP
his PRON
patients NOUN
get VERB
significant ADJ
relief NOUN
> X
of ADP
allergic PROPN
/ SYM
sinus NOUN
symptoms NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
this DET
is AUX
only ADV
the DET
beginning NOUN
for ADP
his PRON
> X
program NOUN
. PUNCT
Yeah INTJ
, PUNCT
I PRON
'll AUX
bet VERB
. PUNCT
  SPACE
Tomorrow PROPN
, PUNCT
the DET
world NOUN
. PUNCT
Listen VERB
, PUNCT
uncontrolled ADJ
studies NOUN
like SCONJ
this DET
are AUX
worthless.>In PUNCT
my PRON
case NOUN
, PUNCT
as SCONJ
I PRON
reported VERB
a DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
I PRON
was AUX
developing VERB
the DET
classic ADJ
> X
symptoms NOUN
outlined VERB
in ADP
' PUNCT
The DET
Yeast PROPN
Connection PROPN
' PUNCT
( PUNCT
I PRON
agree VERB
it PRON
is AUX
a DET
poorly ADV
> X
written VERB
book NOUN
) PUNCT
: PUNCT
  SPACE
e.g. ADV
, PUNCT
extreme ADJ
sensitivity NOUN
to ADP
plastics NOUN
, PUNCT
vapors NOUN
, PUNCT
etc X
. PUNCT
which PRON
> X
I PRON
never ADV
had AUX
before ADV
( PUNCT
started VERB
in ADP
November PROPN
) PUNCT
. PUNCT
  SPACE
Within ADP
one NUM
week NOUN
of ADP
full ADJ
dosage NOUN
> X
of ADP
Sporanox PROPN
, PUNCT
the DET
sensitivity NOUN
to ADP
chemicals NOUN
has AUX
fully ADV
disappeared VERB
- PUNCT
I PRON
can AUX
> X
now ADV
sit VERB
on ADP
my PRON
couch NOUN
at ADP
home NOUN
without ADP
dying VERB
after ADP
two NUM
minutes NOUN
. PUNCT
  SPACE
I PRON
'm AUX
also>*greatly ADV
* PUNCT
improved VERB
in ADP
other ADJ
areas NOUN
as ADV
well ADV
. PUNCT
I'm PRON
sure ADJ
you PRON
are AUX
. PUNCT
  SPACE
You PRON
sound VERB
like SCONJ
the DET
typical ADJ
hysteric PROPN
/ SYM
hypochondriac ADJ
whoresponds NOUN
to PART
" PUNCT
miracle NOUN
cures NOUN
. PUNCT
">Of PUNCT
course ADV
, PUNCT
I PRON
have AUX
allergy ADJ
symptoms NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
allergic ADJ
to ADP
> X
molds NOUN
, PUNCT
yeasts NOUN
, PUNCT
etc X
. PUNCT
  SPACE
It PRON
does AUX
n't PART
take VERB
a DET
rocket NOUN
scientist NOUN
to PART
figure VERB
out ADP
that SCONJ
> X
if SCONJ
one PRON
has AUX
excessive ADJ
colonization NOUN
of ADP
yeast NOUN
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
you PRON
have AUX
a DET
> X
natural ADJ
allergy NOUN
to ADP
yeasts NOUN
, PUNCT
that SCONJ
a DET
threshold NOUN
would AUX
be AUX
reached VERB
where ADV
you PRON
> X
would AUX
have AUX
perceptible ADJ
symptoms NOUN
. PUNCT
Yeah INTJ
, PUNCT
" PUNCT
it PRON
makes VERB
sense NOUN
to ADP
me PRON
" PUNCT
, PUNCT
so ADV
of ADP
course NOUN
it PRON
should AUX
be AUX
taken VERB
seriously ADV
. PUNCT
Snort.>Also PROPN
, PUNCT
yeast NOUN
do AUX
produce VERB
toxins NOUN
of ADP
various ADJ
> NOUN
sorts NOUN
, PUNCT
and CCONJ
again ADV
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
to PART
realize VERB
that SCONJ
> X
such ADJ
toxins NOUN
can AUX
cause VERB
problems NOUN
in ADP
some DET
people NOUN
. PUNCT
Yeah INTJ
, PUNCT
" PUNCT
it PRON
sounds VERB
reasonable ADJ
to ADP
me".>Of PROPN
course NOUN
, PUNCT
the DET
$ SYM
60,000 NUM
> X
question NOUN
is AUX
whether SCONJ
a DET
person NOUN
who PRON
is AUX
immune ADJ
compromised VERB
( PUNCT
as SCONJ
tests NOUN
showed VERB
I PRON
was AUX
> X
from ADP
over ADP
5 NUM
years NOUN
of ADP
antibiotics NOUN
, PUNCT
nutritionally ADV
- PUNCT
deficiencies NOUN
because SCONJ
of ADP
the DET
> X
stress NOUN
of ADP
infections NOUN
and CCONJ
allergies NOUN
, PUNCT
etc.),Oh PROPN
, PUNCT
really ADV
? PUNCT
  SPACE
_ VERB
What PRON
_ PROPN
tests NOUN
? PUNCT
  SPACE
Immune PROPN
- PUNCT
compromised VERB
, PUNCT
my PRON
ass NOUN
. PUNCT
More ADV
like SCONJ
credulous ADJ
malingerer NOUN
. PUNCT
  SPACE
This DET
is AUX
a DET
psychiatric ADJ
syndrome.>can AUX
develop VERB
excessive ADJ
yeast NOUN
> X
colonization NOUN
somewhere ADV
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
tough ADJ
question NOUN
to PART
answer VERB
since SCONJ
> X
testing NOUN
for ADP
excessive ADJ
yeast NOUN
colonization NOUN
is AUX
not PART
easy ADJ
. PUNCT
  SPACE
One NOUN
almost ADV
has AUX
to PART
> X
take VERB
an DET
empirical ADJ
approach NOUN
to PART
diagnosis NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
Sporanox PROPN
is AUX
relatively ADV
> X
safe ADJ
unlike ADP
past ADJ
anti NOUN
- NOUN
fungals NOUN
( PUNCT
still ADV
have AUX
to PART
be AUX
careful ADJ
, PUNCT
however ADV
) PUNCT
so ADV
there's PROPN
> X
no DET
reason NOUN
any ADV
longer ADV
to PART
withhold VERB
Sporanox PROPN
treatment NOUN
for ADP
empirical ADJ
reasons NOUN
. PUNCT
You PRON
know VERB
, PUNCT
it PRON
's AUX
a DET
shame NOUN
that PRON
a DET
drug NOUN
like SCONJ
itraconazole NOUN
is AUX
being AUX
misusedin PROPN
this DET
way NOUN
. PUNCT
  SPACE
It PRON
's AUX
ridiculously ADV
expensive ADJ
, PUNCT
and CCONJ
potentially ADV
toxic ADJ
. PUNCT
The DET
trouble NOUN
is AUX
that SCONJ
it PRON
is AUX
n't PART
toxic ADJ
enough ADV
, PUNCT
so CCONJ
it PRON
gets VERB
abused VERB
by ADP
quacks.>BTW PROPN
, PUNCT
some DET
would AUX
say VERB
to PART
try VERB
Nystatin PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
yeast NOUN
grows VERB
hyphae ADJ
> X
too ADV
deep ADJ
into ADP
tissue NOUN
for ADP
Nystatin PROPN
to PART
have AUX
any DET
permanent ADJ
affect NOUN
. PUNCT
  SPACE
You PRON
'll AUX
find VERB
> X
a DET
lot NOUN
of ADP
people NOUN
who PRON
are AUX
on ADP
Nystatin PROPN
all DET
the DET
time NOUN
. PUNCT
The DET
only ADJ
good ADJ
thing NOUN
about ADP
nystatin PROPN
is AUX
that SCONJ
it PRON
's AUX
( PUNCT
relatively ADV
) PUNCT
cheapand PROPN
when ADV
taken VERB
orally ADV
, PUNCT
non ADJ
- ADJ
toxic ADJ
. PUNCT
  SPACE
But CCONJ
oral PROPN
nystatin PROPN
is AUX
without ADP
anysystemic ADJ
effect NOUN
, PUNCT
so CCONJ
unless SCONJ
it PRON
were AUX
given VERB
IV PROPN
, PUNCT
it PRON
would AUX
be AUX
withoutany NOUN
effect NOUN
on ADP
your PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
wish VERB
these DET
quacks NOUN
would AUX
first VERB
useIV PROPN
nystatin NOUN
or CCONJ
amphotericin PROPN
B PROPN
on ADP
people NOUN
like SCONJ
you PRON
. PUNCT
  SPACE
That DET
would AUX
solvethe VERB
" PUNCT
yeast NOUN
" PUNCT
problem NOUN
once ADV
and CCONJ
for ADP
all.>In PROPN
summary NOUN
, PUNCT
I PRON
appreciate VERB
all DET
of ADP
the DET
attempts NOUN
by ADP
those DET
who PRON
desire VERB
to PART
keep VERB
> X
medicine NOUN
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmly ADV
> X
to ADP
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough ADV
> X
actually ADV
treating VERB
patients NOUN
. PUNCT
  SPACE
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
> X
face NOUN
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
> X
their PRON
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as SCONJ
> X
far ADV
as SCONJ
I PRON
am AUX
concerned ADJ
. PUNCT
Perhaps ADV
a DET
little ADJ
Haldol PROPN
would AUX
go VERB
a DET
long ADJ
way NOUN
towards ADP
amelioratingyour ADJ
symptoms NOUN
. PUNCT
Are AUX
you PRON
paying VERB
for ADP
this DET
treatment NOUN
out SCONJ
of ADP
your PRON
own ADJ
pocket NOUN
? PUNCT
  SPACE
I PRON
'd AUX
hateto ADV
think VERB
my PRON
insurance NOUN
premiums NOUN
are AUX
going VERB
towards ADP
this.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59050Subject NUM
: PUNCT
" PUNCT
STAR PROPN
GARTDS PROPN
" PUNCT
< X
sp PROPN
? PUNCT
> X
Info PROPN
wantedFrom PROPN
: PUNCT
kmcvay@oneb.almanac.bc.ca PROPN
( PUNCT
Ken PROPN
Mcvay)A ADJ
friend NOUN
's PART
daughter NOUN
has AUX
been AUX
diagnosed VERB
with ADP
an DET
eye NOUN
disease NOUN
called VERB
" PUNCT
StarGartds PROPN
" PUNCT
( PUNCT
or CCONJ
something PRON
close ADJ
) PUNCT
- PUNCT
it PRON
is AUX
apparently ADV
genetic ADJ
, PUNCT
according VERB
to ADP
her PRON
, PUNCT
and CCONJ
affects VERB
every DET
fourth ADJ
generation NOUN
. PUNCT
She PRON
would AUX
appreciate VERB
any DET
information NOUN
about ADP
this DET
condition NOUN
. PUNCT
If SCONJ
anything PRON
isavailable ADJ
via ADP
ftp PROPN
, PUNCT
please INTJ
point VERB
me PRON
in ADP
the DET
right ADJ
direction NOUN
.. PUNCT
-- PUNCT
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
- PUNCT
A PROPN
Salute PROPN
to ADP
That DET
Old PROPN
Frog PROPN
Hisse'f PROPN
, PUNCT
Ryugen PROPN
Fisher PROPN
      SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
SCO PROPN
XENIX PROPN
2.3.2 NUM
GT PROPN
   SPACE
Ladysmith PROPN
, PUNCT
British PROPN
Columbia PROPN
, PUNCT
CANADA PROPN
. PUNCT
Serving VERB
Central PROPN
Vancouver PROPN
Island PROPN
  SPACE
with ADP
public ADJ
access NOUN
UseNet PROPN
and CCONJ
Internet PROPN
Mail PROPN
- PUNCT
home NOUN
to ADP
the DET
Holocaust PROPN
AlmanacNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59051From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
[ PUNCT
reply NOUN
to ADP
dufault@lftfld.enet.dec.com PROPN
( PUNCT
MD PROPN
) PUNCT
] PUNCT
> X
After ADP
many ADJ
metabolic ADJ
tests NOUN
, PUNCT
body NOUN
structure NOUN
tests NOUN
, PUNCT
and CCONJ
infection NOUN
/ SYM
virus NOUN
> X
tests VERB
the DET
doctors NOUN
still ADV
do AUX
not PART
know VERB
quite ADV
what PRON
type NOUN
of ADP
siezures NOUN
he PRON
is AUX
> X
having VERB
( PUNCT
although SCONJ
they PRON
do AUX
have AUX
alot NOUN
of ADP
evidence NOUN
that SCONJ
it PRON
is AUX
now ADV
pointing VERB
> X
to ADP
infantile ADJ
spasms NOUN
) PUNCT
. PUNCT
  SPACE
This DET
is AUX
where ADV
we PRON
stand VERB
right ADV
now ADV
.... PUNCT
As SCONJ
I PRON
know VERB
> X
now ADV
, PUNCT
these DET
particular ADJ
types NOUN
of ADP
disorders NOUN
are AUX
still ADV
not PART
really ADV
well ADV
> X
understood VERB
by ADP
the DET
medical ADJ
community NOUN
. PUNCT
Infantile ADJ
spasms NOUN
have AUX
been AUX
well ADV
understood VERB
for ADP
quite DET
some DET
time NOUN
now ADV
. PUNCT
  SPACE
Youare NOUN
seeing VERB
a DET
pediatric ADJ
neurologist NOUN
, PUNCT
are AUX
n't PART
you PRON
? PUNCT
  SPACE
If SCONJ
not PART
, PUNCT
I PRON
stronglyrecommend VERB
it PRON
. PUNCT
  SPACE
There PRON
is AUX
a DET
new ADJ
anticonvulsant NOUN
about ADP
to PART
be AUX
released VERB
calledfelbamate NOUN
which PRON
may AUX
be AUX
particularly ADV
helpful ADJ
for ADP
infantile ADJ
spasms NOUN
. PUNCT
  SPACE
Asfor ADP
learning VERB
more ADJ
about ADP
seizures NOUN
, PUNCT
ask VERB
your PRON
doctor NOUN
or CCONJ
his PRON
nurse NOUN
about ADP
alocal ADJ
support NOUN
group NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59052From NUM
: PUNCT
aliceb@tea4two NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Alice PROPN
Taylor)Subject NUM
: PUNCT
accupuncture NOUN
and CCONJ
AIDSA PROPN
friend NOUN
of ADP
mine NOUN
is AUX
seeing VERB
an DET
acupuncturist ADJ
andwants NOUN
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
danger NOUN
of ADP
gettingAIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
Thanks NOUN
, PUNCT
	 SPACE
-aliceNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59053From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Any DET
info NOUN
. PUNCT
on ADP
Vasomotor PROPN
Rhinitis(Disclaimer PROPN
: PUNCT
I PRON
'm AUX
a DET
sufferer NOUN
, PUNCT
not PART
a DET
doctor.)I'm PROPN
not PART
sure ADJ
there PRON
's AUX
a DET
really ADV
sharp ADJ
distinction NOUN
between ADP
allergic ADJ
andvasomotor NOUN
rhinitis PROPN
. PUNCT
  SPACE
Basically ADV
, PUNCT
vasomotor NOUN
rhinitis PROPN
means VERB
your PRON
nose NOUN
isstuffy NOUN
when ADV
it PRON
has AUX
no DET
reason NOUN
to PART
be AUX
( PUNCT
not PART
even ADV
an DET
identifiable ADJ
allergy).Decongestants NOUN
and CCONJ
steroid NOUN
sprays NOUN
work NOUN
for ADP
vasomotor NOUN
rhinitis PROPN
. PUNCT
  SPACE
Also ADV
, PUNCT
I PRON
can AUX
get AUX
surprising ADJ
relief NOUN
from ADP
purely ADV
superficial ADJ
measures NOUN
such ADJ
assaline ADJ
moisturizing NOUN
spray NOUN
and CCONJ
moisturizing NOUN
gel.-- NUM
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59054Subject VERB
: PUNCT
Ovarian ADJ
cancer NOUN
treatment NOUN
centersFrom PROPN
: PUNCT
< X
RBPRMA@rohvm1.rohmhaas.com>A ADJ
relative NOUN
of ADP
mine NOUN
has AUX
recently ADV
been AUX
diagnosed VERB
with ADP
" PUNCT
stage NOUN
3 NUM
papillary ADJ
cellovarian ADJ
cancer NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
are AUX
urgently ADV
seeking VERB
the DET
best ADJ
place NOUN
in ADP
the DET
country NOUN
fortreatment NOUN
for ADP
this DET
. PUNCT
Does AUX
anyone PRON
have AUX
any DET
suggestions?As NOUN
you PRON
might AUX
suspect VERB
, PUNCT
time NOUN
is AUX
of ADP
the DET
essence NOUN
. PUNCT
Thanks NOUN
for ADP
your PRON
help NOUN
. PUNCT
                                      SPACE
BobNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59055Subject NUM
: PUNCT
Broken VERB
ribFrom PROPN
: PUNCT
jc@oneb.almanac.bc.caHello PROPN
, PUNCT
  SPACE
I PRON
am AUX
not PART
sure ADJ
if SCONJ
this DET
is AUX
the DET
right ADJ
conference NOUN
to PART
ask VERB
thisquestion NOUN
, PUNCT
however ADV
, PUNCT
Here ADV
I PRON
go VERB
.. PUNCT
  SPACE
I PRON
am AUX
a DET
commercial ADJ
fisherman NOUN
and CCONJ
I PRON
fell VERB
about ADV
3 NUM
weeks NOUN
ago ADV
down ADV
into ADP
the DET
hold NOUN
of ADP
the DET
boat NOUN
and CCONJ
broke VERB
orcracked VERB
a DET
rib NOUN
and CCONJ
wrenched VERB
and CCONJ
bruised VERB
my PRON
back NOUN
and CCONJ
left VERB
arm NOUN
. PUNCT
  SPACE
My PRON
question NOUN
, PUNCT
  SPACE
I PRON
have AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
was AUX
told VERB
that SCONJ
it PRON
was AUX
best ADJ
to PART
do AUX
nothing PRON
and CCONJ
it PRON
would AUX
heal VERB
up ADP
with ADP
no DET
long ADJ
term NOUN
effect NOUN
, PUNCT
and CCONJ
indeed ADV
I PRON
am AUX
about ADV
60 NUM
% NOUN
better ADJ
, PUNCT
however ADV
, PUNCT
the DET
work NOUN
I PRON
do AUX
is AUX
very ADV
hard ADJ
and CCONJ
I PRON
am AUX
still ADV
not PART
able ADJ
to PART
go VERB
back ADV
to ADP
work NOUN
. PUNCT
  SPACE
The DET
thing NOUN
that PRON
worries VERB
meis PROPN
the DET
movement NOUN
or CCONJ
" PUNCT
clunking VERB
" PUNCT
I PRON
feel VERB
and CCONJ
hear VERB
back ADV
there ADV
when ADV
I PRON
move VERB
certain ADJ
ways NOUN
... PUNCT
  SPACE
I PRON
heard VERB
some DET
one NOUN
talking VERB
about ADP
the DET
rib NOUN
they PRON
broke VERB
years NOUN
ago ADV
and CCONJ
that SCONJ
it PRON
still ADV
bothers VERB
them PRON
.. PUNCT
  SPACE
any DET
opinions?thanx NOUN
and CCONJ
cheers NOUN
           SPACE
jc@oneb.almanac.bc.ca X
( PUNCT
John PROPN
Cross PROPN
) PUNCT
     SPACE
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
  SPACE
( PUNCT
Home PROPN
of ADP
The DET
Almanac PROPN
UNIX PROPN
Users PROPN
Group PROPN
) PUNCT
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
    SPACE
< X
Public PROPN
Access PROPN
UseNet PROPN
> X
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
        SPACE
Vancouver PROPN
Island PROPN
, PUNCT
British PROPN
Columbia PROPN
    SPACE
Waffle PROPN
XENIX PROPN
1.64 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59056From NUM
: PUNCT
euclid@mrcnext.cso.uiuc.edu PROPN
( PUNCT
Euclid PROPN
K.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
accupuncture NOUN
and CCONJ
AIDSaliceb@tea4two NUM
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Alice PROPN
Taylor PROPN
) PUNCT
writes:>A PROPN
friend NOUN
of ADP
mine NOUN
is AUX
seeing VERB
an DET
acupuncturist NOUN
and CCONJ
> X
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
danger NOUN
of ADP
getting VERB
> X
AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
	 SPACE
Ask VERB
the DET
practitioner NOUN
whether SCONJ
he PRON
uses VERB
the DET
pre ADJ
- ADJ
sterilized VERB
disposableneedles NOUN
, PUNCT
or CCONJ
if SCONJ
he PRON
reuses VERB
needles NOUN
, PUNCT
sterilizing VERB
them PRON
between ADP
use NOUN
. PUNCT
  SPACE
In ADP
theformer NOUN
case NOUN
there PRON
's AUX
no DET
conceivable ADJ
way NOUN
to PART
get AUX
AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
  SPACE
Inthe DET
latter ADJ
case NOUN
it PRON
's AUX
highly ADV
unlikely ADJ
( PUNCT
though SCONJ
many ADJ
practitioners NOUN
use VERB
thedisposable ADJ
variety NOUN
anyway).euclid NOUN
-- PUNCT
Euclid PROPN
K. PROPN
       SPACE
standard ADJ
disclaimers NOUN
apply"It PROPN
is AUX
a DET
bit NOUN
ironic ADJ
that SCONJ
we PRON
need VERB
the DET
wave NOUN
model NOUN
[ PUNCT
of ADP
light NOUN
] PUNCT
to PART
understand VERB
thepropagation NOUN
of ADP
light NOUN
only ADV
through ADP
that DET
part NOUN
of ADP
the DET
system NOUN
where ADV
it PRON
leaves VERB
notrace NOUN
. PUNCT
" PUNCT
  SPACE
--Hudson PROPN
& CCONJ
Nelson PROPN
( PUNCT
_ PROPN
University_Physics_)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59057From NUM
: PUNCT
kjiv@lrc.eduSubject VERB
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsCan PROPN
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to PART
prevent VERB
asthma NOUN
) PUNCT
; PUNCT
Vancenase PROPN
. PUNCT
Also ADV
: PUNCT
You PRON
may AUX
have AUX
guessed VERB
, PUNCT
I PRON
'm AUX
an DET
allergy NOUN
sufferer NOUN
-- PUNCT
but CCONJ
I PRON
'm AUX
beginning VERB
to PART
suspect VERB
I PRON
'm AUX
also ADV
the DET
victim NOUN
of ADP
a DET
Dr. PROPN
toliberal ADJ
with ADP
the DET
prescription NOUN
p. NOUN
The DET
allergist NOUN
I PRON
went VERB
to ADP
last ADJ
Oct. PROPN
simply ADV
inquired VERB
about ADP
my PRON
symptons NOUN
( PUNCT
I PRON
was AUX
suffering VERB
chronic ADJ
asthma NOUN
attacks NOUN
) PUNCT
, PUNCT
gave VERB
me PRON
a DET
battery NOUN
of ADP
allergy NOUN
tests NOUN
, PUNCT
and CCONJ
went VERB
down ADP
a DET
checklist NOUN
of ADP
drugs NOUN
( PUNCT
a DET
photocopied VERB
sheet NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
gained VERB
out ADP
30 NUM
lbs NOUN
. PUNCT
since SCONJ
then ADV
though SCONJ
I PRON
have AUX
n't PART
eaten VERB
more ADV
or CCONJ
much ADV
differently ADV
than SCONJ
before ADV
; PUNCT
I'vsuffered ADJ
depression NOUN
; PUNCT
, PUNCT
fatigue NOUN
; PUNCT
and CCONJ
I PRON
've AUX
experienced VERB
a DET
foul ADJ
smell NOUN
and CCONJ
sense NOUN
of ADP
taste NOUN
for ADP
about ADV
the DET
last ADJ
two NUM
months NOUN
. PUNCT
  SPACE
I PRON
mentioned VERB
the DET
lack NOUN
of ADP
smell NOUN
and CCONJ
taste NOUN
to ADP
this DET
Dr. PROPN
in ADP
Feb. PROPN
and CCONJ
he PRON
said VERB
my PRON
sinuses NOUN
did AUX
look VERB
a DET
bit NOUN
swollen ADJ
( PUNCT
he PRON
just ADV
looked VERB
up ADP
my PRON
nose NOUN
with ADP
his PRON
little ADJ
light NOUN
-- PUNCT
the DET
same ADJ
one NOUN
used VERB
for ADP
ears NOUN
) PUNCT
, PUNCT
and CCONJ
prescribed VERB
Prednisone PROPN
and CCONJ
Sulfatrim PROPN
DS PROPN
( PUNCT
severe ADJ
headaches NOUN
and CCONJ
a DET
rash NOUN
resulted VERB
, PUNCT
particularly ADV
after ADP
my PRON
week NOUN
's PART
worth NOUN
of ADP
Prednisone PROPN
ran VERB
out ADP
) PUNCT
. PUNCT
  SPACE
Now ADV
he PRON
wants VERB
to PART
do AUX
a DET
rhinoscopy NOUN
to PART
see VERB
if SCONJ
I PRON
have AUX
a DET
bleeding VERB
ulcer NOUN
or CCONJ
polyps NOUN
in ADP
my PRON
sinus NOUN
cavities NOUN
. PUNCT
  SPACE
I PRON
'm AUX
considering VERB
seeing VERB
another DET
doctor NOUN
. PUNCT
  SPACE
Any DET
suggestions NOUN
/ SYM
advice NOUN
? PUNCT
  SPACE
I PRON
'd AUX
really ADV
appreciate VERB
it!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59058From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EndometriosisIn PROPN
article NOUN
< X
1993Apr16.032251.6606@rock.concert.net NUM
> X
naomi@rock.concert.net PROPN
( PUNCT
Naomi PROPN
T PROPN
Courter PROPN
) PUNCT
writes:>>can X
anyone PRON
give VERB
me PRON
more ADJ
information NOUN
regarding VERB
endometriosis NOUN
? PUNCT
   SPACE
i PRON
heard VERB
> X
it PRON
's AUX
a DET
very ADV
common ADJ
disease NOUN
among ADP
women NOUN
and CCONJ
if SCONJ
anyone PRON
can AUX
provide VERB
names NOUN
> X
of ADP
a DET
specialist NOUN
/ SYM
surgeon NOUN
in ADP
  SPACE
the DET
north PROPN
carolina PROPN
research NOUN
triangle PROPN
  SPACE
park PROPN
> X
area NOUN
( PUNCT
raleigh PROPN
/ SYM
durham PROPN
/ SYM
chapel PROPN
  SPACE
hill PROPN
) PUNCT
who PRON
is AUX
familiar ADJ
with ADP
the DET
condition,>i NOUN
would AUX
really ADV
appreciate VERB
it.>thanks NOUN
. PUNCT
> X
--NaomiNaomi PUNCT
, PUNCT
your PRON
best ADJ
bet NOUN
is AUX
to PART
look VERB
in ADP
the DET
Yellow PROPN
Pages PROPN
and CCONJ
find VERB
a DET
listingfor ADJ
OBGyn PROPN
doc NOUN
in ADP
the DET
area NOUN
you PRON
wish VERB
. PUNCT
  SPACE
Any DET
OBGyn PROPN
doc NOUN
is AUX
familiar ADJ
withendometriosis NOUN
and CCONJ
its PRON
treatments NOUN
. PUNCT
Shalom NOUN
                                    SPACE
Len PROPN
Howard PROPN
MDNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59059From NUM
: PUNCT
eliezer@physics.llnl.gov PROPN
( PUNCT
David PROPN
A PROPN
Eliezer)Subject PROPN
: PUNCT
Questions NOUN
about ADP
SPECT PROPN
imagingI PROPN
have AUX
become VERB
involved VERB
in ADP
a DET
project NOUN
to PART
further ADV
develop VERB
and CCONJ
improve VERB
the DET
performance NOUN
of ADP
SPECT PROPN
( PUNCT
Single PROPN
Photon PROPN
EmissionComputerized PROPN
Tomography PROPN
) PUNCT
imaging VERB
. PUNCT
  SPACE
We PRON
will AUX
eventually ADV
haveto VERB
peddle VERB
this DET
stuff NOUN
somewhere ADV
, PUNCT
and CCONJ
so ADV
as SCONJ
I PRON
move VERB
this DET
thingalong NOUN
, PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
--What PRON
is AUX
the DET
current ADJ
resolution NOUN
of ADP
SPECT PROPN
imaging VERB
? PUNCT
  SPACE
What PRON
kindsof NOUN
jobs NOUN
is AUX
SPECT ADV
used VERB
for ADP
, PUNCT
specifically ADV
? PUNCT
  SPACE
What PRON
kind NOUN
of ADP
specific ADJ
jobscould PROPN
I PRON
hopethat PRON
SPECT PROPN
could AUX
be AUX
used VERB
for ADP
, PUNCT
if SCONJ
its PRON
resolution NOUN
improved VERB
, PUNCT
say VERB
, PUNCT
to PART
close VERB
to ADP
that DET
of ADP
PET PROPN
( PUNCT
Positron PROPN
Emission PROPN
Tomography)?And PROPN
how ADV
much ADJ
does AUX
a DET
SPECT PROPN
machine NOUN
cost NOUN
? PUNCT
  SPACE
How ADV
much ADJ
does AUX
a DET
singleSPECT PROPN
image NOUN
cost NOUN
? PUNCT
  SPACE
If SCONJ
anyone PRON
knows VERB
the DET
answer NOUN
to ADP
any DET
or CCONJ
all DET
of ADP
these DET
questions NOUN
, PUNCT
ORwhere ADV
I PRON
could AUX
find VERB
that DET
answer NOUN
, PUNCT
I PRON
would AUX
be AUX
very ADV
grateful ADJ
, PUNCT
indeed ADV
. PUNCT
  SPACE
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
replies NOUN
					 SPACE
Dave PROPN
Eliezer PROPN
					 SPACE
eliezer@physics.llnl.govNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59060From NUM
: PUNCT
homer@tripos.com X
( PUNCT
Webster PROPN
Homer)Subject VERB
: PUNCT
Mind NOUN
Machines?I PROPN
recently ADV
learned VERB
about ADP
these DET
devices NOUN
that PRON
supposedly ADV
induce VERB
specific ADJ
brain NOUN
wave NOUN
frequencies NOUN
in ADP
their PRON
users NOUN
simply ADV
by ADP
wearing VERB
them PRON
. PUNCT
Mind NOUN
machinesconsist NOUN
of ADP
LED NOUN
gogles NOUN
, PUNCT
head NOUN
phones NOUN
, PUNCT
and CCONJ
a DET
microprocessor NOUN
that PRON
controls VERB
them PRON
. PUNCT
They PRON
strobe VERB
the DET
( PUNCT
closed ADJ
) PUNCT
eye NOUN
and CCONJ
send VERB
sound ADJ
pulses NOUN
in ADP
sync NOUN
with ADP
the DET
flashingLEDs PROPN
. PUNCT
I PRON
understand VERB
that SCONJ
these DET
devices NOUN
are AUX
experimental ADJ
, PUNCT
but CCONJ
they PRON
are AUX
available ADJ
. PUNCT
I've ADJ
heard VERB
claims NOUN
that SCONJ
they PRON
can AUX
induce VERB
sleep NOUN
, PUNCT
and CCONJ
light ADJ
trance NOUN
states NOUN
forrelaxation NOUN
. PUNCT
Essentially ADV
they PRON
are AUX
supposed VERB
to PART
work VERB
without ADP
aid NOUN
of ADP
drugs NOUN
etc X
... PUNCT
I PRON
would AUX
think VERB
that SCONJ
if SCONJ
they PRON
work VERB
as SCONJ
reported VERB
they PRON
would AUX
be AUX
incredibly ADV
useful ADJ
, PUNCT
The DET
few ADJ
sources NOUN
I PRON
've AUX
seen VERB
are AUX
biased VERB
( PUNCT
they PRON
are AUX
selling VERB
the DET
things NOUN
, PUNCT
and CCONJ
afriend PROPN
who PRON
has AUX
tried VERB
them PRON
claims VERB
that SCONJ
" PUNCT
every DET
home NOUN
should AUX
have AUX
one NUM
" PUNCT
) PUNCT
. PUNCT
So ADV
do AUX
these DET
mind NOUN
machines NOUN
( PUNCT
aka ADV
Light ADJ
and CCONJ
Sound PROPN
machines NOUN
) PUNCT
work NOUN
? PUNCT
can AUX
they PRON
inducealpha VERB
, PUNCT
theta NOUN
, PUNCT
and/or CCONJ
delta PROPN
waves VERB
in ADP
a DET
person NOUN
wearing VERB
them PRON
? PUNCT
What PRON
research NOUN
ifany NOUN
has AUX
been AUX
done VERB
on ADP
them PRON
? PUNCT
Could AUX
they PRON
be AUX
used VERB
in ADP
lieu NOUN
of ADP
a DET
tranquilizer?Or PROPN
are AUX
they PRON
just ADV
another DET
bit NOUN
of ADP
quackery?Web PROPN
Homerhomer@tripos.com PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59061From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Paxil PROPN
( PUNCT
request)I NOUN
do AUX
n't PART
know VERB
much ADJ
and CCONJ
in ADP
fact NOUN
, PUNCT
have AUX
asked VERB
questions NOUN
heremyself PRON
. PUNCT
My PRON
doctor NOUN
told VERB
me PRON
that SCONJ
Paxil PROPN
is AUX
a DET
" PUNCT
cleaner ADJ
" PUNCT
SRI PROPN
in ADP
thatit PROPN
produces VERB
fewer ADJ
side NOUN
effects NOUN
. PUNCT
As SCONJ
to ADP
a DET
comparison NOUN
betweenZoloft NOUN
and CCONJ
Prozac PROPN
, PUNCT
I PRON
'm AUX
not PART
able ADJ
to PART
remember VERB
what PRON
he PRON
said VERB
aboutthe NOUN
differences NOUN
between ADP
those DET
two NUM
drugs NOUN
. PUNCT
SorryNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59062Subject NUM
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"From PROPN
: PUNCT
jschwimmer@wccnet.wcc.wesleyan.edu PROPN
( PUNCT
Josh PROPN
Schwimmer)I've PROPN
recently ADV
listened VERB
to ADP
a DET
tape NOUN
by ADP
Dr. PROPN
Stanislaw PROPN
Burzynski PROPN
, PUNCT
in ADP
which PRON
he PRON
claims VERB
to PART
have AUX
discovered VERB
a DET
series NOUN
naturally ADV
occuring VERB
peptides NOUN
with ADP
anti ADJ
- ADJ
cancer ADJ
properties NOUN
that PRON
he PRON
names VERB
antineoplastons NOUN
. PUNCT
  SPACE
Burzynski PROPN
says VERB
that SCONJ
his PRON
work NOUN
has AUX
met VERB
with ADP
hostility NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
despite SCONJ
the DET
favorable ADJ
responses NOUN
of ADP
his PRON
subjects NOUN
during ADP
clinical ADJ
trials NOUN
. PUNCT
What PRON
is AUX
the DET
generally ADV
accepted VERB
opinion NOUN
of ADP
Dr. PROPN
Burzynski PROPN
's PART
research NOUN
? PUNCT
  SPACE
He PRON
paints VERB
himself PRON
as SCONJ
a DET
lone ADJ
researcher NOUN
with ADP
a DET
new ADJ
breakthrough NOUN
battling VERB
an DET
intolerant ADJ
medical ADJ
establishment NOUN
, PUNCT
but CCONJ
I PRON
have AUX
no DET
basis NOUN
from ADP
which PRON
to PART
judge VERB
his PRON
claims NOUN
. PUNCT
  SPACE
Two NUM
weeks NOUN
ago ADV
, PUNCT
however ADV
, PUNCT
I PRON
read VERB
that SCONJ
the DET
NIH PROPN
's PART
Department PROPN
of ADP
Alternative PROPN
Medicine PROPN
has AUX
decided VERB
to PART
focus VERB
their PRON
attention NOUN
on ADP
Burzynski PROPN
's PART
work NOUN
. PUNCT
  SPACE
Their PRON
budget NOUN
is AUX
so ADV
small ADJ
that SCONJ
I PRON
imagine VERB
they PRON
would AUX
n't PART
investigate VERB
a DET
treatment NOUN
that PRON
did AUX
n't PART
seem VERB
promising ADJ
. PUNCT
Any DET
opinions NOUN
on ADP
Burzynski PROPN
's PART
antineoplastons NOUN
or CCONJ
information NOUN
about ADP
the DET
current ADJ
status NOUN
of ADP
his PRON
research NOUN
would AUX
be AUX
appreciated.--Joshua PROPN
Schwimmerjschwimmer@eagle.wesleyan.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59063From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?In PROPN
article NOUN
< X
1993Apr20.180835.24033@lmpsbbs.comm.mot.com NUM
> X
dougb@ecs.comm.mot.com PROPN
writes::My ADP
wife NOUN
's PART
ob PROPN
- PUNCT
gyn PROPN
has AUX
an DET
ultrasound ADJ
machine NOUN
in ADP
her PRON
office NOUN
. PUNCT
  SPACE
When ADV
: PUNCT
the DET
doctor NOUN
could AUX
n't PART
hear VERB
a DET
fetal ADJ
heartbeat NOUN
( PUNCT
13 NUM
weeks NOUN
) PUNCT
she PRON
used VERB
: PUNCT
the DET
ultrasound NOUN
to PART
see VERB
if SCONJ
everything PRON
was AUX
ok ADJ
. PUNCT
  SPACE
( PUNCT
it PRON
was)::On ADP
her PRON
next ADJ
visit NOUN
, PUNCT
my PRON
wife NOUN
asked VERB
another DET
doctor NOUN
in ADP
the DET
office NOUN
if SCONJ
: PUNCT
they PRON
read VERB
the DET
ultrasounds VERB
themselves PRON
or CCONJ
if SCONJ
they PRON
had AUX
a DET
radiologist NOUN
: PUNCT
read VERB
the DET
pictures NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
very ADV
vehemently ADV
insisted VERB
that SCONJ
they PRON
: PUNCT
were AUX
qualified ADJ
to PART
read VERB
the DET
ultrasound NOUN
and CCONJ
radiologists NOUN
were AUX
NOT!::[stuff PROPN
deleted]This PROPN
is AUX
one NUM
of ADP
those DET
sticky ADJ
areas NOUN
of ADP
medicine NOUN
where ADV
battles NOUN
frequentlyrage VERB
. PUNCT
  SPACE
With ADP
respect NOUN
to ADP
your PRON
OB NOUN
, PUNCT
I PRON
suspect VERB
that SCONJ
she PRON
has AUX
been AUX
certified VERB
inultrasound ADJ
diagnostics NOUN
, PUNCT
and CCONJ
is AUX
thus ADV
allowed VERB
to PART
use VERB
it PRON
and CCONJ
bill NOUN
for ADP
itsuse NOUN
. PUNCT
  SPACE
Many ADJ
cardiologists NOUN
also ADV
use VERB
ultrasound NOUN
( PUNCT
echocardiography NOUN
) PUNCT
, PUNCT
and CCONJ
arein ADJ
fact NOUN
considered VERB
by ADP
many ADJ
to PART
be AUX
the DET
' PUNCT
experts NOUN
' PUNCT
. PUNCT
  SPACE
I PRON
am AUX
not PART
sure ADJ
where ADV
OBsstand NOUN
in ADP
this DET
regard NOUN
, PUNCT
but CCONJ
I PRON
suspect VERB
that SCONJ
they PRON
are AUX
at ADP
least ADJ
as ADV
good ADJ
as SCONJ
theradioligists NOUN
( PUNCT
flame ADJ
- PUNCT
retardant NOUN
suit NOUN
ready ADJ
) PUNCT
. PUNCT
                SPACE
-- PUNCT
= X
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59064From NUM
: PUNCT
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas)Subject NOUN
: PUNCT
Altitude PROPN
adjustmentI PROPN
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
citiesquite NOUN
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000feet NUM
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
Often ADV
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
andmy VERB
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
verydry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keepaway NOUN
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol NOUN
. PUNCT
Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there(no PROPN
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?Is PROPN
there PRON
something PRON
else ADV
that PRON
I PRON
could AUX
do?A VERB
long ADJ
time NOUN
ago ADV
( PUNCT
possibly ADV
two NUM
years NOUN
ago ADV
) PUNCT
there PRON
was AUX
a DET
discussion NOUN
here ADV
aboutaltitude VERB
adjustment NOUN
. PUNCT
  SPACE
Has AUX
anyone PRON
saved VERB
the DET
messages?Many PROPN
thanks NOUN
, PUNCT
Vida PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59065From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Any DET
info NOUN
. PUNCT
on ADP
Vasomotor PROPN
RhinitisIn PROPN
article NOUN
< X
1r1t1a$njq@europa.eng.gtefsd.com X
> X
draper@gnd1.wtp.gtefsd.com PROPN
writes::I PROPN
recently ADV
attended VERB
an DET
allery NOUN
seminar NOUN
. PUNCT
  SPACE
Steroid PROPN
Nasal PROPN
sprays NOUN
were AUX
: PUNCT
discussed VERB
. PUNCT
  SPACE
Afterward ADV
on ADP
a DET
one NUM
- PUNCT
on ADP
- PUNCT
one NUM
basis NOUN
, PUNCT
I PRON
asked VERB
the DET
speaker NOUN
what PRON
if SCONJ
: PUNCT
none NOUN
of ADP
the DET
Vancanese PROPN
, PUNCT
Beconase PROPN
, PUNCT
Nasalide PROPN
, PUNCT
Nasalcort PROPN
, PUNCT
or CCONJ
Nasalchrom PROPN
work NOUN
: PUNCT
nor CCONJ
do AUX
any DET
oral ADJ
decongestants NOUN
work VERB
. PUNCT
  SPACE
She PRON
replied VERB
that SCONJ
she PRON
saw VERB
an DET
article NOUN
on ADP
: PUNCT
Vasomotor PROPN
Rhinitis PROPN
. PUNCT
  SPACE
That SCONJ
this DET
is AUX
not PART
an DET
allergic ADJ
reaction NOUN
and CCONJ
that SCONJ
nothing PRON
: PUNCT
other ADJ
than SCONJ
the DET
Afrin PROPN
's PART
and CCONJ
such ADJ
would AUX
work VERB
. PUNCT
  SPACE
( PUNCT
Which PRON
in ADP
my PRON
case NOUN
is AUX
true).There ADJ
has AUX
been AUX
some DET
recent ADJ
research NOUN
on ADP
vasomotor NOUN
rhinitis PROPN
that PRON
shows VERB
thatipratroprium NOUN
bromide NOUN
( PUNCT
Atrovent PROPN
) PUNCT
inhaled VERB
nasally ADV
is AUX
an DET
effective ADJ
treatmentfor NOUN
many ADJ
sufferers NOUN
. PUNCT
  SPACE
It PRON
has AUX
been AUX
approved VERB
for ADP
this DET
use NOUN
and CCONJ
is AUX
availablewith PROPN
a DET
nasal ADJ
adaptor NOUN
in ADP
Canada PROPN
. PUNCT
  SPACE
In ADP
the DET
US PROPN
the DET
FDA PROPN
has AUX
yet ADV
to PART
approve VERB
thisuse NOUN
of ADP
the DET
drug NOUN
, PUNCT
but CCONJ
it PRON
is AUX
available ADJ
as SCONJ
an DET
oral ADJ
inhaler NOUN
( PUNCT
for ADP
COPD PROPN
) PUNCT
, PUNCT
andthese DET
can AUX
be AUX
adapted VERB
for ADP
intranasal ADJ
use.-- NUM
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59066From NUM
: PUNCT
vgwlu@dunsell.calgary.chevron.com PROPN
( PUNCT
greg PROPN
w. PROPN
luft)Subject PROPN
: PUNCT
Relief NOUN
of ADP
Pain PROPN
Caused VERB
by ADP
Cancer NOUN
I PRON
am AUX
not PART
sure ADJ
if SCONJ
this DET
is AUX
the DET
proper ADJ
group NOUN
to PART
post VERB
this DET
to ADP
but CCONJ
here ADV
goes VERB
anyway ADV
. PUNCT
About ADV
five NUM
years NOUN
ago ADV
my PRON
mother NOUN
was AUX
diagnosed VERB
with ADP
having VERB
cancer NOUN
in ADP
the DET
lymph NOUN
nodes PROPN
under ADP
one NUM
of ADP
her PRON
arms NOUN
. PUNCT
After ADP
the DET
doctors NOUN
removed VERB
the DET
cancerous ADJ
area NOUN
she PRON
had AUX
full ADJ
movement NOUN
of ADP
her PRON
arm NOUN
with ADP
only ADJ
slight ADJ
aching NOUN
under ADP
her PRON
arm NOUN
when ADV
she PRON
moved VERB
it PRON
. PUNCT
Over ADP
the DET
course NOUN
of ADP
the DET
next ADJ
two NUM
years NOUN
the DET
aching NOUN
got VERB
more ADV
severe ADJ
and CCONJ
her PRON
complaining VERB
to ADP
the DET
doctors NOUN
produced VERB
the DET
explanation NOUN
that SCONJ
it PRON
was AUX
scar PROPN
tissue NOUN
causing VERB
the DET
pain NOUN
. PUNCT
At ADP
this DET
time NOUN
her PRON
doctor NOUN
  SPACE
suggested VERB
that SCONJ
some DET
physiotherapy NOUN
should AUX
be AUX
employed VERB
to PART
break VERB
up ADP
the DET
scar NOUN
tissue NOUN
. PUNCT
While SCONJ
attending VERB
one NUM
of ADP
her PRON
therapy NOUN
sessions NOUN
, PUNCT
while SCONJ
her PRON
arm NOUN
was AUX
being AUX
  SPACE
manipulated VERB
, PUNCT
some DET
damage NOUN
occured VERB
( PUNCT
nerve NOUN
? PUNCT
) PUNCT
which PRON
caused VERB
the DET
level NOUN
of ADP
pain NOUN
to PART
permanently ADV
increase VERB
severly ADV
( PUNCT
controlled VERB
by ADP
Tylenol PROPN
3s PROPN
) PUNCT
and CCONJ
some DET
loss NOUN
of ADP
use NOUN
of ADP
the DET
arm NOUN
( PUNCT
palsied VERB
wrist NOUN
and CCONJ
almost ADV
no DET
outward ADJ
lateral ADJ
movement NOUN
) PUNCT
. PUNCT
With ADP
great ADJ
persistence NOUN
on ADP
her PRON
part NOUN
the DET
doctors NOUN
looked VERB
further ADV
into ADP
the DET
issue NOUN
and CCONJ
discovered VERB
that SCONJ
not PART
all DET
of ADP
the DET
cancer NOUN
had AUX
been AUX
removed VERB
and CCONJ
another DET
tumor NOUN
had AUX
grown VERB
under ADP
the DET
arm NOUN
. PUNCT
This DET
was AUX
removed VERB
also ADV
but CCONJ
the DET
pain NOUN
in ADP
the DET
arm NOUN
has AUX
not PART
decreased VERB
. PUNCT
The DET
doctors NOUN
are AUX
not PART
sure ADJ
exactly ADV
why ADV
the DET
pain NOUN
is AUX
  SPACE
persisting VERB
but CCONJ
feel VERB
some DET
sort NOUN
of ADP
nerve NOUN
damage NOUN
has AUX
occured VERB
and CCONJ
they PRON
have AUX
employed VERB
Tylenol PROPN
3 NUM
and CCONJ
soon ADV
Morphine PROPN
to PART
relieve VERB
the DET
pain NOUN
. PUNCT
She PRON
has AUX
tried VERB
acupuncture NOUN
by ADP
this DET
only ADV
provides VERB
minor ADJ
reductions NOUN
in ADP
pain NOUN
and CCONJ
is AUX
only ADV
short ADJ
term NOUN
. PUNCT
   SPACE
My PRON
questions NOUN
are AUX
: PUNCT
      SPACE
Has AUX
anyone PRON
has AUX
heard VERB
of ADP
similar ADJ
cases NOUN
and CCONJ
what PRON
, PUNCT
if SCONJ
anything PRON
, PUNCT
was AUX
done VERB
to PART
reduce VERB
the DET
     SPACE
levels NOUN
of ADP
pain NOUN
? PUNCT
     SPACE
Are AUX
their PRON
methods NOUN
to PART
block VERB
nerves NOUN
so SCONJ
that SCONJ
the DET
pain NOUN
can AUX
be AUX
reduced VERB
? PUNCT
     SPACE
Are AUX
their PRON
methods NOUN
to PART
restore VERB
nerves NOUN
so SCONJ
that DET
loss NOUN
of ADP
arm NOUN
function NOUN
can AUX
be AUX
restored VERB
? PUNCT
  SPACE
Any DET
general ADJ
suggestions NOUN
on ADP
pain NOUN
reduction NOUN
would AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
      SPACE
Please INTJ
respond VERB
by ADP
email NOUN
because SCONJ
I PRON
do AUX
not PART
always ADV
get AUX
chance NOUN
to PART
read VERB
this DET
group NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
knows VERB
of ADP
some DET
literature NOUN
that PRON
may AUX
be AUX
useful ADJ
to ADP
this DET
case NOUN
or CCONJ
another DET
newsgroup NOUN
  SPACE
that SCONJ
I PRON
should AUX
be AUX
posting VERB
this DET
to ADP
it PRON
would AUX
also ADV
be AUX
appreciated VERB
. PUNCT
        SPACE
-- PUNCT
Gregory PROPN
W. PROPN
Luft PROPN
                              SPACE
Internet NOUN
: PUNCT
vgwlu@calgary.chevron.comChevron PROPN
Petroleum PROPN
Techonology PROPN
Company PROPN
             SPACE
Tel PROPN
: PUNCT
( PUNCT
403 NUM
) PUNCT
234 NUM
- PUNCT
6238500 NUM
, PUNCT
Fifth PROPN
Ave PROPN
. PUNCT
S.W. PROPN
                              SPACE
Fax PROPN
: PUNCT
( PUNCT
403 NUM
) PUNCT
234 NUM
- PUNCT
5215Calgary PROPN
, PUNCT
Alberta PROPN
, PUNCT
Canada PROPN
   SPACE
T2P PROPN
0L7Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59067From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject PROPN
: PUNCT
Acutane PROPN
, PUNCT
Fibromyalgia PROPN
Syndrome PROPN
and CCONJ
CFS PROPN
To PART
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)There PROPN
is AUX
a DET
person NOUN
on ADP
the DET
FIDO PROPN
CFS PROPN
echo NOUN
who PRON
claims VERB
that SCONJ
he PRON
was AUX
cured VERB
of ADP
CFS PROPN
by ADP
taking VERB
accutane PROPN
. PUNCT
  SPACE
He PRON
also ADV
claims VERB
that SCONJ
you PRON
are AUX
using VERB
it PRON
in ADP
the DET
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
. PUNCT
  SPACE
Are AUX
you PRON
using VERB
accutane NOUN
in ADP
the DET
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
? PUNCT
  SPACE
Have AUX
you PRON
used VERB
it PRON
for ADP
CFS PROPN
? PUNCT
  SPACE
Have AUX
you PRON
gotten VERB
good ADJ
results NOUN
with ADP
it PRON
? PUNCT
  SPACE
Are AUX
you PRON
aware ADJ
of ADP
any DET
double ADJ
blind ADJ
studies NOUN
on ADP
the DET
use NOUN
of ADP
accutane NOUN
in ADP
these DET
conditions NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
.... PUNCT
I PRON
think VERB
they PRON
should AUX
rename VERB
Waco PROPN
TX PROPN
to ADP
Wacko PROPN
TX!Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59068From NUM
: PUNCT
berryh@huey.udel.edu PROPN
( PUNCT
John PROPN
Berryhill PROPN
, PUNCT
Ph PROPN
. PROPN
D.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyI PROPN
think VERB
he PRON
means VERB
Girlie PROPN
Photography PROPN
. PUNCT
  SPACE
A DET
good ADJ
place NOUN
to PART
find VERB
it PRON
is AUX
innon PROPN
- PUNCT
descript ADJ
little ADJ
places NOUN
that PRON
usually ADV
just ADV
say VERB
" PUNCT
Books NOUN
" PUNCT
on ADP
theoutside NOUN
of ADP
the DET
building NOUN
in ADP
black ADJ
and CCONJ
white.-- ADV
                                               SPACE
John PROPN
BerryhillNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59069From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>>There CCONJ
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.>>There NOUN
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
and>>published VERB
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic NOUN
skeptics>>who PROPN
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used.>Snort PROPN
. PUNCT
  SPACE
Ah INTJ
, PUNCT
there PRON
go VERB
my PRON
sinuses NOUN
again.>>For ADJ
example NOUN
, PUNCT
Dr. PROPN
Ivker PROPN
, PUNCT
who PRON
wrote VERB
the DET
book NOUN
" PUNCT
Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
always ADV
gives,>Oh PUNCT
, PUNCT
wow INTJ
. PUNCT
  SPACE
A DET
classic ADJ
textbook NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
laughed VERB
at ADP
Einstein PROPN
, PUNCT
too!>>before PUNCT
any DET
other ADJ
treatment NOUN
, PUNCT
a DET
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
( PUNCT
such ADJ
as SCONJ
Nizoral PROPN
) PUNCT
to PART
his>>new VERB
patients NOUN
IF ADP
they PRON
've AUX
been AUX
on ADP
braod NOUN
- PUNCT
spectrum NOUN
anti ADJ
- ADJ
biotics ADJ
4 NUM
or CCONJ
more ADJ
times>>in VERB
the DET
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
's AUX
kept VERB
a DET
record NOUN
of ADP
the DET
results NOUN
, PUNCT
and CCONJ
for ADP
over ADP
> X
> X
2000 NUM
patients NOUN
found VERB
that SCONJ
over ADP
90 NUM
% NOUN
of ADP
his PRON
patients NOUN
get VERB
significant ADJ
relief>>of NOUN
allergic ADJ
/ SYM
sinus NOUN
symptoms NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
this DET
is AUX
only ADV
the DET
beginning NOUN
for ADP
his>>program.>Yeah NOUN
, PUNCT
I PRON
'll AUX
bet VERB
. PUNCT
  SPACE
Tomorrow PROPN
, PUNCT
the DET
world.>Listen PROPN
, PUNCT
uncontrolled ADJ
studies NOUN
like SCONJ
this DET
are AUX
worthless.>>In PROPN
my PRON
case NOUN
, PUNCT
as SCONJ
I PRON
reported VERB
a DET
few ADJ
weeks NOUN
ago ADV
, PUNCT
I PRON
was AUX
developing VERB
the DET
classic>>symptoms NOUN
outlined VERB
in ADP
' PUNCT
The DET
Yeast PROPN
Connection PROPN
' PUNCT
( PUNCT
I PRON
agree VERB
it PRON
is AUX
a DET
poorly ADV
> X
> X
written VERB
book PROPN
) PUNCT
: PUNCT
  SPACE
e.g. ADV
, PUNCT
extreme ADJ
sensitivity NOUN
to ADP
plastics NOUN
, PUNCT
vapors NOUN
, PUNCT
etc X
. PUNCT
which>>I NOUN
never ADV
had AUX
before ADV
( PUNCT
started VERB
in ADP
November PROPN
) PUNCT
. PUNCT
  SPACE
Within ADP
one NUM
week NOUN
of ADP
full ADJ
dosage>>of NOUN
Sporanox PROPN
, PUNCT
the DET
sensitivity NOUN
to ADP
chemicals NOUN
has AUX
fully ADV
disappeared VERB
- PUNCT
I PRON
can>>now NOUN
sit VERB
on ADP
my PRON
couch NOUN
at ADP
home NOUN
without ADP
dying VERB
after ADP
two NUM
minutes NOUN
. PUNCT
  SPACE
I PRON
'm AUX
also>>*greatly ADV
* PUNCT
improved VERB
in ADP
other ADJ
areas NOUN
as SCONJ
well.>I'm PROPN
sure INTJ
you PRON
are AUX
. PUNCT
  SPACE
You PRON
sound VERB
like SCONJ
the DET
typical ADJ
hysteric PROPN
/ SYM
hypochondriac PROPN
who PRON
> X
responds VERB
to ADP
" PUNCT
miracle NOUN
cures NOUN
. PUNCT
">>Of PUNCT
course ADV
, PUNCT
I PRON
have AUX
allergy ADJ
symptoms NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
allergic ADJ
to>>molds NOUN
, PUNCT
yeasts NOUN
, PUNCT
etc X
. PUNCT
  SPACE
It PRON
does AUX
n't PART
take VERB
a DET
rocket NOUN
scientist NOUN
to PART
figure VERB
out ADP
that>>if PROPN
one NUM
has AUX
excessive ADJ
colonization NOUN
of ADP
yeast NOUN
in ADP
the DET
body NOUN
, PUNCT
and CCONJ
you PRON
have AUX
a>>natural ADJ
allergy NOUN
to ADP
yeasts NOUN
, PUNCT
that SCONJ
a DET
threshold NOUN
would AUX
be AUX
reached VERB
where ADV
you>>would PRON
have AUX
perceptible ADJ
symptoms.>Yeah PROPN
, PUNCT
" PUNCT
it PRON
makes VERB
sense NOUN
to ADP
me PRON
" PUNCT
, PUNCT
so ADV
of ADP
course NOUN
it PRON
should AUX
be AUX
taken VERB
seriously.>Snort.>>Also PROPN
, PUNCT
yeast NOUN
do AUX
produce VERB
toxins NOUN
of ADP
various>>sorts NOUN
, PUNCT
and CCONJ
again ADV
, PUNCT
you PRON
do AUX
n't PART
have AUX
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
to PART
realize VERB
that>>such ADJ
toxins NOUN
can AUX
cause VERB
problems NOUN
in ADP
some DET
people.>Yeah NOUN
, PUNCT
" PUNCT
it PRON
sounds VERB
reasonable ADJ
to ADP
me".>>Of NUM
course NOUN
, PUNCT
the DET
$ SYM
60,000>>question NUM
is AUX
whether SCONJ
a DET
person NOUN
who PRON
is AUX
immune ADJ
compromised VERB
( PUNCT
as SCONJ
tests NOUN
showed VERB
I PRON
was>>from ADP
over ADP
5 NUM
years NOUN
of ADP
antibiotics NOUN
, PUNCT
nutritionally ADV
- PUNCT
deficiencies NOUN
because SCONJ
of ADP
the>>stress PROPN
of ADP
infections NOUN
and CCONJ
allergies NOUN
, PUNCT
etc.),>Oh PROPN
, PUNCT
really ADV
? PUNCT
  SPACE
_ VERB
What PRON
_ PROPN
tests NOUN
? PUNCT
  SPACE
Immune PROPN
- PUNCT
compromised VERB
, PUNCT
my PRON
ass.>More NOUN
like SCONJ
credulous ADJ
malingerer NOUN
. PUNCT
  SPACE
This DET
is AUX
a DET
psychiatric ADJ
syndrome.>>can PROPN
develop VERB
excessive ADJ
yeast>>colonization NOUN
somewhere ADV
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
tough ADJ
question NOUN
to PART
answer VERB
since>>testing VERB
for ADP
excessive ADJ
yeast NOUN
colonization NOUN
is AUX
not PART
easy ADJ
. PUNCT
  SPACE
One NOUN
almost ADV
has AUX
to>>take NOUN
an DET
empirical ADJ
approach NOUN
to PART
diagnosis NOUN
. PUNCT
  SPACE
Fortunately ADV
, PUNCT
Sporanox PROPN
is AUX
relatively>>safe ADJ
unlike ADP
past ADP
anti NOUN
- NOUN
fungals NOUN
( PUNCT
still ADV
have AUX
to PART
be AUX
careful ADJ
, PUNCT
however ADV
) PUNCT
so ADV
there's>>no NUM
reason NOUN
any ADV
longer ADV
to PART
withhold VERB
Sporanox PROPN
treatment NOUN
for ADP
empirical ADJ
reasons.>You NOUN
know VERB
, PUNCT
it PRON
's AUX
a DET
shame NOUN
that PRON
a DET
drug NOUN
like SCONJ
itraconazole NOUN
is AUX
being AUX
misused VERB
> X
in ADP
this DET
way NOUN
. PUNCT
  SPACE
It PRON
's AUX
ridiculously ADV
expensive ADJ
, PUNCT
and CCONJ
potentially ADV
toxic.>The DET
trouble NOUN
is AUX
that SCONJ
it PRON
is AUX
n't PART
toxic ADJ
enough ADV
, PUNCT
so CCONJ
it PRON
gets VERB
abused VERB
by ADP
quacks.>>BTW PROPN
, PUNCT
some DET
would AUX
say VERB
to PART
try VERB
Nystatin PROPN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
most ADJ
yeast NOUN
grows VERB
hyphae>>too PRON
deep ADV
into ADP
tissue NOUN
for ADP
Nystatin PROPN
to PART
have AUX
any DET
permanent ADJ
affect NOUN
. PUNCT
  SPACE
You PRON
'll AUX
find>>a PUNCT
lot NOUN
of ADP
people NOUN
who PRON
are AUX
on ADP
Nystatin PROPN
all DET
the DET
time.>The NOUN
only ADV
good ADJ
thing NOUN
about ADP
nystatin PROPN
is AUX
that SCONJ
it PRON
's AUX
( PUNCT
relatively ADV
) PUNCT
cheap ADJ
> X
and CCONJ
when ADV
taken VERB
orally ADV
, PUNCT
non ADJ
- ADJ
toxic ADJ
. PUNCT
  SPACE
But CCONJ
oral PROPN
nystatin PROPN
is AUX
without ADP
any DET
> X
systemic ADJ
effect NOUN
, PUNCT
so CCONJ
unless SCONJ
it PRON
were AUX
given VERB
IV PROPN
, PUNCT
it PRON
would AUX
be AUX
without ADP
> X
any DET
effect NOUN
on ADP
your PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
wish VERB
these DET
quacks NOUN
would AUX
first ADV
use VERB
> X
IV PROPN
nystatin PROPN
or CCONJ
amphotericin PROPN
B PROPN
on ADP
people NOUN
like SCONJ
you PRON
. PUNCT
  SPACE
That DET
would AUX
solve VERB
> X
the DET
" PUNCT
yeast NOUN
" PUNCT
problem NOUN
once ADV
and CCONJ
for ADP
all.>>In PROPN
summary NOUN
, PUNCT
I PRON
appreciate VERB
all DET
of ADP
the DET
attempts NOUN
by ADP
those DET
who PRON
desire VERB
to PART
keep>>medicine VERB
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmly>>to ADP
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough>>actually PUNCT
treating VERB
patients NOUN
. PUNCT
  SPACE
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to PART
my>>face VERB
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee>>their VERB
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as>>far ADV
as SCONJ
I PRON
am AUX
concerned.>Perhaps PROPN
a DET
little ADJ
Haldol PROPN
would AUX
go VERB
a DET
long ADJ
way NOUN
towards ADP
ameliorating VERB
> X
your PRON
symptoms.>Are NOUN
you PRON
paying VERB
for ADP
this DET
treatment NOUN
out SCONJ
of ADP
your PRON
own ADJ
pocket NOUN
? PUNCT
  SPACE
I PRON
'd AUX
hate VERB
> X
to PART
think VERB
my PRON
insurance NOUN
premiums NOUN
are AUX
going VERB
towards ADP
this.>Steve PROPN
DyerDyer PROPN
, PUNCT
you PRON
're AUX
rude ADJ
. PUNCT
Medicine NOUN
is AUX
not PART
a DET
totallly ADV
scientific ADJ
endevour NOUN
. PUNCT
It'soften PROPN
practiced VERB
in ADP
a DET
disorganized ADJ
manner NOUN
. PUNCT
Most ADV
early ADJ
treatment NOUN
ofnon ADJ
- PUNCT
life NOUN
threatening VERB
illness NOUN
is AUX
done VERB
on ADP
a DET
guess NOUN
, PUNCT
hazarded VERB
after ADP
anecdotalevidence NOUN
given VERB
by ADP
the DET
patient NOUN
. PUNCT
It PRON
's AUX
an DET
educated ADJ
guess NOUN
, PUNCT
by ADP
a DET
trained VERB
person NOUN
, PUNCT
but CCONJ
it PRON
's AUX
still ADV
no ADV
more ADJ
than SCONJ
a DET
guess NOUN
. PUNCT
It PRON
's AUX
cheaper ADJ
and CCONJ
simpler ADJ
to PART
medicate VERB
first ADJ
and CCONJ
only ADV
deal VERB
further ADV
with ADP
thosepeople NOUN
who PRON
do AUX
n't PART
respond VERB
. PUNCT
There PRON
are AUX
diseases NOUN
that PRON
have AUX
n't PART
been AUX
described VERB
yet ADV
and CCONJ
the DET
root NOUN
cause NOUN
of ADP
manydiseases NOUN
now ADV
described VERB
are AUX
n't PART
known VERB
. PUNCT
( PUNCT
Read VERB
a DET
book NOUN
on ADP
gastroenterologysometime NOUN
if SCONJ
you PRON
want VERB
to PART
see VERB
a DET
lot NOUN
of ADP
them PRON
. PUNCT
) PUNCT
After ADP
scientific ADJ
methods NOUN
haverun VERB
out ADV
then ADV
it PRON
's AUX
the DET
patient NOUN
's PART
freedom NOUN
of ADP
choice NOUN
to PART
try VERB
any DET
experimentalmethod VERB
they PRON
choose VERB
. PUNCT
And CCONJ
it PRON
's AUX
well ADV
recognized VERB
by ADP
many ADJ
doctors NOUN
that PRON
medicinedoesn't VERB
have AUX
all DET
the DET
answers NOUN
. PUNCT
This DET
person NOUN
said VERB
that SCONJ
they PRON
had AUX
relief NOUN
by ADP
taking VERB
the DET
medicine NOUN
. PUNCT
Maybe ADV
it PRON
's AUX
amiracle ADJ
cure NOUN
, PUNCT
maybe ADV
it PRON
's AUX
valid ADJ
. PUNCT
How ADV
do AUX
you PRON
know VERB
? PUNCT
  SPACE
You PRON
might AUX
argue VERB
with ADP
the DET
reasoning NOUN
, PUNCT
the DET
conclusions NOUN
. PUNCT
But CCONJ
your PRON
disparagingattack NOUN
is AUX
unwarranted ADJ
. PUNCT
Why ADV
do AUX
n't PART
you PRON
present VERB
an DET
convincing ADJ
argument NOUN
for ADP
your PRON
beliefs NOUN
, PUNCT
instead ADV
of ADP
wasting VERB
our PRON
time NOUN
in ADP
an DET
ad NOUN
hominem NOUN
attack.-Jackie- VERB
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59070From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr20.212706.820@lrc.edu NUM
> NUM
kjiv@lrc.edu PUNCT
writes:>Can PROPN
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
> X
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
> X
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to ADP
> X
prevent PROPN
asthma PROPN
) PUNCT
; PUNCT
Vancenase PROPN
. PUNCT
Hismanal PROPN
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to ADP
weight NOUN
gain NOUN
. PUNCT
It PRON
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect NOUN
, PUNCT
and CCONJ
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedlydoesn't VERB
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to ADP
causedrowsiness.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59071From NUM
: SYM
wcsbeau@superior.carleton.ca PROPN
( PUNCT
OPIRG)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.190711.22190@walter.bellcore.com NOUN
> X
jchen@ctt.bellcore.com X
writes:>The ADJ
funny ADJ
thing NOUN
is AUX
the DET
personaly ADJ
stories NOUN
about ADP
reactions NOUN
to ADP
MSG PROPN
vary VERB
so ADV
> X
greatly ADV
. PUNCT
Some DET
said VERB
that SCONJ
their PRON
heart NOUN
beat VERB
speeded VERB
up ADP
with ADP
flush ADJ
face NOUN
. PUNCT
Some DET
> PUNCT
claim VERB
their PRON
heart NOUN
" PUNCT
skipped VERB
" PUNCT
beats NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Both DET
of ADP
these DET
symptoms NOUN
are AUX
related VERB
- PUNCT
tachycardia NOUN
. PUNCT
Getting VERB
a DET
flushedface NOUN
is AUX
due ADJ
to ADP
the DET
heart NOUN
pumping VERB
the DET
blood NOUN
faster ADV
than SCONJ
a DET
regularpulse NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
this DET
is AUX
related VERB
to ADP
an DET
increase NOUN
in ADP
sodium NOUN
levels NOUN
inthe DET
blood NOUN
, PUNCT
since SCONJ
note NOUN
* PUNCT
sodium NOUN
chloride NOUN
* PUNCT
monosodium PROPN
glutamate PROPN
. PUNCT
Both DET
aresodium NOUN
compounds NOUN
. PUNCT
Our PRON
bodies NOUN
require VERB
sodium NOUN
, PUNCT
but CCONJ
like SCONJ
everything PRON
else ADV
, PUNCT
one PRON
can AUX
get AUX
too ADV
much ADJ
of ADP
a DET
good ADJ
thing.>Some PROPN
reacted VERB
with ADP
headache NOUN
, PUNCT
Again ADV
, PUNCT
this DET
could AUX
be AUX
related VERB
to ADP
increased VERB
blood NOUN
flow NOUN
from ADP
increasedheart NOUN
rate NOUN
, PUNCT
from ADP
the DET
sodium NOUN
in ADP
the DET
MSG NOUN
. PUNCT
Distended VERB
crainial ADJ
arteries NOUN
, PUNCT
essentially ADV
. PUNCT
One NUM
of ADP
many ADJ
causes NOUN
of ADP
headaches NOUN
. PUNCT
There PRON
is AUX
no DET
discrepencyher NOUN
, PUNCT
necessarily.>some ADJ
stomach NOUN
ache PROPN
. PUNCT
Well INTJ
stomache PROPN
ache PROPN
and CCONJ
vomiting NOUN
tend VERB
to PART
be AUX
related VERB
. PUNCT
Again ADV
, PUNCT
notnecessarily ADV
a DET
discrepency NOUN
. PUNCT
More ADV
likely ADV
a DET
related VERB
reaction NOUN
. PUNCT
Vomitingoccurs NOUN
as SCONJ
a DET
response NOUN
to PART
get AUX
rid VERB
of ADP
a DET
noxious ADJ
compound NOUN
an DET
organism NOUN
haseaten NOUN
. PUNCT
If SCONJ
a DET
person NOUN
ca AUX
n't PART
digest VERB
the DET
stuff NOUN
( PUNCT
entirely ADV
possible ADJ
- PUNCT
thelist NOUN
of ADP
stuff NOUN
people NOUN
are AUX
allergic ADJ
to PART
is AUX
quite ADV
long ADJ
) PUNCT
, PUNCT
and CCONJ
lacks VERB
anenzyme NOUN
to PART
break VERB
it PRON
down ADP
, PUNCT
gastrointestinal ADJ
distress NOUN
( PUNCT
stomach NOUN
or CCONJ
bellyache NOUN
) PUNCT
would AUX
be AUX
expected VERB
. PUNCT
> X
Some DET
had AUX
watery ADJ
eyes NOUN
or CCONJ
running VERB
nose NOUN
, PUNCT
These DET
are AUX
respiratory ADJ
reactions NOUN
, PUNCT
and CCONJ
are AUX
now ADV
considered VERB
to PART
be AUX
similarto ADJ
vomitting NOUN
. PUNCT
They PRON
are AUX
a DET
way NOUN
for ADP
the DET
body NOUN
to PART
dispose VERB
of ADP
noxiouscompounds NOUN
. PUNCT
They PRON
are AUX
adaptiove ADP
responses NOUN
. PUNCT
Of ADV
course ADV
, PUNCT
it PRON
is AUX
possiblesome VERB
other ADJ
food NOUN
or CCONJ
environmental ADJ
compound NOUN
could AUX
be AUX
responsible ADJ
for ADP
thesymptoms NOUN
. PUNCT
But CCONJ
it PRON
's AUX
important ADJ
to PART
remember VERB
that SCONJ
a DET
lot NOUN
opf ADP
these DET
effetscan NOUN
be AUX
additive ADJ
, PUNCT
synergystic ADJ
, PUNCT
subtractive ADJ
, PUNCT
etc X
, PUNCT
etc X
. PUNCT
It PRON
would AUX
benecessary VERB
to PART
know VERB
exactly ADV
what PRON
was AUX
in ADP
a DET
dish NOUN
, PUNCT
and CCONJ
what PRON
else ADV
the DET
personwas NOUN
exposed VERB
to ADP
. PUNCT
Respiratory PROPN
does AUX
sound VERB
suspicious ADJ
BUT CCONJ
  SPACE
resopirationand VERB
heart NOUN
rate NOUN
are AUX
connected VERB
. PUNCT
  SPACE
Things NOUN
in ADP
the DET
body NOUN
are AUX
far ADV
fromsimple ADJ
... PUNCT
very ADV
inetractive ADJ
place NOUN
, PUNCT
the DET
vertebrate NOUN
body NOUN
. PUNCT
> X
some DET
> X
had AUX
itchy ADJ
skin NOUN
or CCONJ
rashes NOUN
. PUNCT
People NOUN
respond VERB
in ADP
a DET
myriad NOUN
of ADP
ways NOUN
to ADP
the DET
same ADJ
compound NOUN
. PUNCT
It PRON
dependsupon VERB
what PRON
it PRON
is AUX
about ADP
the DET
compound NOUN
that PRON
" PUNCT
pisses VERB
off ADP
" PUNCT
their PRON
body NOUN
. PUNCT
Pollen PROPN
, PUNCT
for ADP
example NOUN
, PUNCT
of ADP
some DET
plants NOUN
aggrivates VERB
breathing VERB
in ADP
manypeople NOUN
, PUNCT
because SCONJ
, PUNCT
when ADV
inhaled VERB
, PUNCT
it PRON
sets VERB
of ADP
the DET
immune ADJ
system NOUN
, PUNCT
and CCONJ
anhistamine NOUN
attack NOUN
is AUX
launched VERB
. PUNCT
The DET
immune ADJ
system NOUN
goes VERB
overboard ADV
, PUNCT
causing VERB
the DET
allergic ADJ
person NOUN
a DET
lot NOUN
of ADP
misery NOUN
. PUNCT
And CCONJ
someone PRON
with ADP
anallergy NOUN
to ADP
some DET
pollens NOUN
will AUX
have AUX
trouble NOUN
with ADP
some DET
herb NOUN
teas NOUN
thatcontain VERB
pollens NOUN
( PUNCT
Chamomile PROPN
, PUNCT
linden PROPN
, PUNCT
etc X
) PUNCT
. PUNCT
Drinking VERB
the DET
substance NOUN
canperturb NOUN
that DET
person NOUN
's PART
system NOUN
as ADV
much ADV
as SCONJ
inhaling VERB
it PRON
. PUNCT
> X
More ADV
serious ADJ
accusations NOUN
include VERB
respiration NOUN
> X
difficulty NOUN
See VERB
above ADV
. PUNCT
And CCONJ
do AUX
n't PART
think VERB
that SCONJ
heart NOUN
rate NOUN
changes NOUN
, PUNCT
and CCONJ
circulatoryproblems NOUN
are AUX
not PART
serious ADJ
. PUNCT
They PRON
can AUX
be AUX
deadly.and PUNCT
brain NOUN
damage NOUN
. PUNCT
The DET
area NOUN
of ADP
the DET
brain NOUN
effected VERB
is AUX
the DET
neuroendocrine NOUN
systemcontrolling VERB
the DET
release NOUN
of ADP
gonadotropin NOUN
, PUNCT
the DET
supra NOUN
- PUNCT
hormone NOUN
controllingthe NOUN
cyclical ADJ
release NOUN
of ADP
testosterone NOUN
and CCONJ
estradiol NOUN
, PUNCT
as ADV
well ADV
as SCONJ
somatostatin NOUN
, PUNCT
and CCONJ
other ADJ
steroids NOUN
. PUNCT
Testing VERB
for ADP
effective ADJ
dose NOUN
would AUX
be AUX
, PUNCT
uh INTJ
, PUNCT
a DET
wee NOUN
bit NOUN
unethical.>Now NOUN
here ADV
is AUX
a DET
new ADJ
one NUM
: PUNCT
vomiting NOUN
. PUNCT
My PRON
guess NOUN
is AUX
that SCONJ
MSG PROPN
becomes VERB
the DET
number NOUN
one NUM
> X
suspect NOUN
of ADP
any DET
problem NOUN
. PUNCT
In ADP
this DET
case NOUN
. PUNCT
it PRON
might AUX
be AUX
just ADV
foodpoisoning ADJ
. PUNCT
Absolutely ADV
. PUNCT
But CCONJ
it PRON
could AUX
also ADV
be AUX
some DET
synergystic ADJ
mess NOUN
from ADP
eating VERB
, PUNCT
say INTJ
, PUNCT
undetected ADJ
shrimp NOUN
or CCONJ
mushrooms NOUN
( PUNCT
to PART
which PRON
many ADJ
are AUX
allergic ADJ
) PUNCT
, PUNCT
plustoo ADV
much ADJ
alcohol NOUN
, PUNCT
and CCONJ
inhaling VERB
too ADV
much ADJ
diesel NOUN
fumes NOUN
biking VERB
home ADV
, PUNCT
plus CCONJ
, PUNCT
let VERB
's PRON
say VERB
, PUNCT
having VERB
contracted VERB
flu NOUN
from ADP
one PRON
's PART
sig NOUN
. PUNCT
other ADJ
3 NUM
daysbefore NOUN
from ADP
drinking VERB
out SCONJ
of ADP
the DET
same ADJ
glass NOUN
. PUNCT
Could AUX
be AUX
all DET
sorts NOUN
ofthings NOUN
. PUNCT
But CCONJ
it PRON
might AUX
be AUX
the DET
MSG PROPN
. PUNCT
> X
if SCONJ
you PRON
heard VERB
things NOUN
about ADP
MSG PROPN
, PUNCT
you PRON
may AUX
think VERB
it PRON
must AUX
be AUX
it PRON
. PUNCT
If SCONJ
noone NOUN
else ADV
got VERB
sick ADJ
, PUNCT
its PRON
likely ADJ
not PART
food NOUN
poisoning NOUN
. PUNCT
Probablystomach PROPN
flu NOUN
or CCONJ
an DET
undetected ADJ
thing NOUN
the DET
guy NOUN
's PART
allergic NOUN
to ADP
. PUNCT
Anyway INTJ
, PUNCT
the DET
human ADJ
body NOUN
's AUX
not PART
a DET
machine NOUN
; PUNCT
people NOUN
vary VERB
widely ADV
in ADP
theirresponses NOUN
, PUNCT
and CCONJ
a DET
lot NOUN
of ADP
reactions NOUN
are AUX
due ADJ
to ADP
combinations NOUN
of ADP
things NOUN
. PUNCT
          SPACE
Dianne PROPN
Murray PROPN
  SPACE
wcsbeau@ccs.carleton.caNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59072From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Eumemics NOUN
( PUNCT
was AUX
: PUNCT
Eugenics)A ADJ
person NOUN
posted VERB
certain ADJ
stuff NOUN
to ADP
this DET
newsgroup NOUN
, PUNCT
which PRON
were AUX
highlyselected VERB
quotes NOUN
stripped VERB
of ADP
their PRON
context NOUN
. PUNCT
  SPACE
Here ADV
is AUX
the DET
completeposting NOUN
which PRON
was AUX
quoted VERB
( PUNCT
lacking VERB
the DET
context NOUN
of ADP
other ADJ
postings NOUN
in ADP
which PRON
it PRON
was AUX
made VERB
) PUNCT
: PUNCT
> X
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
a DET
new ADJ
type NOUN
of ADP
eugenics NOUN
will AUX
be AUX
possible ADJ
. PUNCT
> X
Maybe ADV
even ADV
sooner ADV
. PUNCT
  SPACE
We PRON
are AUX
now ADV
mapping VERB
the DET
human ADJ
genome NOUN
. PUNCT
  SPACE
We PRON
will AUX
> X
then ADV
start VERB
to PART
work NOUN
on ADP
manipulation NOUN
of ADP
that DET
genome NOUN
. PUNCT
  SPACE
Using VERB
genetic ADJ
> X
engineering NOUN
, PUNCT
we PRON
will AUX
be AUX
able ADJ
to PART
insert VERB
whatever PRON
genes NOUN
we PRON
want VERB
. PUNCT
> X
No DET
breeding NOUN
, PUNCT
no DET
" PUNCT
hybrids NOUN
" PUNCT
, PUNCT
etc X
. PUNCT
  SPACE
The DET
ethical ADJ
question NOUN
is AUX
, PUNCT
should AUX
> X
we PRON
do AUX
this DET
? PUNCT
  SPACE
Should AUX
we PRON
make VERB
a DET
race NOUN
of ADP
disease NOUN
- PUNCT
free ADJ
, PUNCT
long ADV
- PUNCT
lived VERB
, PUNCT
> X
Arnold PROPN
Schwartzenegger PROPN
- PUNCT
muscled VERB
, PUNCT
supermen NOUN
? PUNCT
  SPACE
Even ADV
if SCONJ
we PRON
can AUX
. PUNCT
Probably ADV
within ADP
50 NUM
years NOUN
, PUNCT
it PRON
will AUX
be AUX
possible ADJ
to PART
disassemble VERB
andre NOUN
- PUNCT
assemble VERB
our PRON
bodies NOUN
at ADP
the DET
molecular ADJ
level NOUN
. PUNCT
  SPACE
Not PART
only ADV
will AUX
flawlesscosmetic ADJ
surgery NOUN
be AUX
possible ADJ
, PUNCT
but CCONJ
flawless ADJ
cosmetic NOUN
PSYCHOSURGERY.What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
store VERB
all DET
the DET
prices NOUN
of ADP
shelf NOUN
- PUNCT
priced VERB
bar NOUN
- PUNCT
codedgoods NOUN
in ADP
your PRON
head NOUN
, PUNCT
and CCONJ
catch VERB
all DET
the DET
errors NOUN
they PRON
make VERB
in ADP
the DET
store'sfavor NOUN
at ADP
SAFEWAY PROPN
? PUNCT
  SPACE
What PRON
will AUX
it PRON
be AUX
like SCONJ
to PART
mentally ADV
edit VERB
and CCONJ
spell NOUN
- PUNCT
check VERB
your PRON
responses NOUN
to ADP
the DET
questions NOUN
posed VERB
by ADP
a DET
phone NOUN
caller NOUN
sellingVACATION PUNCT
TIME PROPN
- PUNCT
SHARE PROPN
OPTIONS?Indeed X
, PUNCT
we PRON
are AUX
today NOUN
a DET
nation NOUN
at ADP
risk NOUN
! PUNCT
  SPACE
The DET
threat NOUN
is AUX
not PART
from ADP
bad ADJ
genes NOUN
, PUNCT
but CCONJ
bad ADJ
memes NOUN
! PUNCT
  SPACE
Memes PROPN
are AUX
the DET
basic ADJ
units NOUN
of ADP
culture NOUN
, PUNCT
as SCONJ
opposed VERB
to ADP
geneswhich PROPN
are AUX
the DET
units NOUN
of ADP
genetics NOUN
. PUNCT
We PRON
stand VERB
on ADP
the DET
brink NOUN
of ADP
new ADJ
meme ADJ
- PUNCT
amplification NOUN
technologies NOUN
! PUNCT
  SPACE
Harmfulmemes NOUN
which PRON
formerly ADV
were AUX
restricted VERB
in ADP
their PRON
destructive ADJ
power NOUN
willrun NOUN
rampant ADJ
over ADP
the DET
countryside NOUN
, PUNCT
laying VERB
waste NOUN
to ADP
the DET
real ADJ
benefits NOUN
thatfuture NOUN
technology NOUN
has AUX
to PART
offer VERB
. PUNCT
For ADP
example NOUN
, PUNCT
Jeremy PROPN
Rifkin PROPN
has AUX
been AUX
busy ADJ
trying VERB
to PART
whip VERB
up ADP
emotionsagainst ADP
the DET
new ADJ
genetically ADV
engineered VERB
tomatoes NOUN
under ADP
development NOUN
atCALGENE NOUN
. PUNCT
  SPACE
This DET
guy NOUN
is AUX
inventing VERB
harmful ADJ
memes NOUN
, PUNCT
a DET
virtual ADJ
memetic ADJ
TyphoidMary PROPN
. PUNCT
We PRON
must AUX
expand VERB
the DET
public ADJ
- PUNCT
health NOUN
laws NOUN
to PART
include VERB
quarantine NOUN
of ADP
peoplewith PROPN
harmful PROPN
memes NOUN
. PUNCT
  SPACE
They PRON
should AUX
not PART
be AUX
allowed VERB
to PART
infect VERB
other ADJ
peoplewith NOUN
their PRON
memes NOUN
against ADP
genetically ADV
- PUNCT
engineered VERB
food NOUN
, PUNCT
electromagneticfields PROPN
, PUNCT
and CCONJ
the DET
Space PROPN
Shuttle PROPN
solid ADJ
rocket NOUN
boosters NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59073From NUM
: PUNCT
brian@quake.sylmar.ca.us PROPN
( PUNCT
Brian PROPN
K. PROPN
Yoder)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?Have VERB
you PRON
ever ADV
met VERB
a DET
chemist NOUN
? PUNCT
  SPACE
A DET
food NOUN
industry NOUN
businessman NOUN
? PUNCT
  SPACE
You PRON
mustpersonally ADV
know VERB
a DET
lot NOUN
of ADP
them PRON
for ADP
you PRON
to PART
be AUX
able ADJ
to PART
be AUX
so ADV
certain ADJ
that SCONJ
theyare ADJ
evil ADJ
mosters NOUN
whose PRON
only ADJ
goal NOUN
is AUX
to PART
inflict VERB
as SCONJ
much ADJ
pain NOUN
and CCONJ
diseaseas NOUN
possible ADJ
into ADP
the DET
general ADJ
public NOUN
. PUNCT
  SPACE
Gimme PROPN
a DET
break NOUN
. PUNCT
In ADP
article NOUN
< X
1993Apr15.215826.3401@rtsg.mot.com X
> X
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby PROPN
) PUNCT
writes:>>>>Is PROPN
there ADV
such DET
a DET
thing NOUN
as SCONJ
MSG PROPN
( PUNCT
monosodium PROPN
glutamate PROPN
) PUNCT
sensitivity?>>>Superstition NOUN
. PUNCT
Anybody PRON
here ADV
have AUX
experience NOUN
to ADP
the DET
contrary NOUN
? PUNCT
person NOUN
who PRON
is AUX
very ADV
sensitive ADJ
to ADP
msg NOUN
and CCONJ
whose PRON
wife NOUN
and CCONJ
kids NOUN
are AUX
> X
too ADV
, PUNCT
I PRON
WANT VERB
TO PART
KNOW VERB
WHY ADV
THE DET
FOOD NOUN
INDUSTRY NOUN
WANTS VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
FOOD PROPN
! PUNCT
! PUNCT
! PUNCT
Because SCONJ
it PRON
makes VERB
the DET
food NOUN
TASTE VERB
BETTER ADJ
! PUNCT
  SPACE
Why ADV
does AUX
it PRON
put VERB
salt NOUN
in ADP
food?Same PROPN
reason.>I PROPN
REALLY PROPN
DON'T VERB
UNDERSTAND!!!Obviously PROPN
. PUNCT
> X
Somebody PRON
in ADP
the DET
industry NOUN
GIVE VERB
ME PROPN
SOME DET
REASONS NOUN
WHY!>IS VERB
IT PRON
AN DET
INDUSTRIAL PROPN
BYPRODUCT NOUN
THAT ADP
NEEDS NOUN
GETTING NOUN
GET VERB
RID VERB
OF ADP
? PUNCT
Of ADV
course ADV
not PART
! PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
would AUX
think VERB
that SCONJ
a DET
person NOUN
like SCONJ
you PRON
would AUX
be AUX
abig NOUN
fan NOUN
of ADP
such ADJ
recycling NOUN
if SCONJ
that DET
were AUX
the DET
case).>IS ADJ
IT NOUN
TO PART
COVER VERB
UP ADP
THE DET
FACT NOUN
THAT PRON
THE DET
RECIPES NOUN
ARE VERB
NOT ADV
VERY ADV
GOOD ADJ
OR CCONJ
THE DET
> X
FOOD NOUN
IS VERB
POOR ADJ
QUALITY VERB
? PUNCT
On ADP
occasion NOUN
that DET
's AUX
probably ADV
the DET
case NOUN
, PUNCT
but CCONJ
in ADP
general ADJ
the DET
idea NOUN
is AUX
that SCONJ
MSGimproves VERB
the DET
flavor NOUN
of ADP
certain ADJ
foods NOUN
. PUNCT
> X
DO VERB
SOME DET
OF ADP
YOU PRON
GET VERB
A DET
SADISTIC NOUN
PLEASURE VERB
OUT ADP
OF ADP
MAKING VERB
SOME DET
OF ADP
US PROPN
SICK VERB
? PUNCT
No INTJ
. PUNCT
> X
DO VERB
THE DET
TASTE NOUN
TESTERS NOUN
HAVE VERB
SOME DET
DEFECT NOUN
IN ADP
THEIR PRON
FLAVOR NOUN
SENSORS PROPN
( PUNCT
MOUTH PROPN
etc X
... PUNCT
) PUNCT
> X
  SPACE
THAT ADP
MSG PROPN
CORRECTS NOUN
? PUNCT
No INTJ
. PUNCT
> X
I PRON
REALLY VERB
DON'T VERB
UNDERSTAND PROPN
! PUNCT
! PUNCT
! PUNCT
Obviously ADV
. PUNCT
> X
ALSO ADV
... PUNCT
Nitrosiamines PROPN
( PUNCT
sp NOUN
) PUNCT
As SCONJ
I PRON
recall VERB
, PUNCT
these DET
are AUX
natural ADJ
by ADP
- PUNCT
products NOUN
of ADP
heating VERB
up ADP
certain ADJ
foods NOUN
. PUNCT
They PRON
do AUX
n't PART
" PUNCT
put VERB
it PRON
in ADV
there ADV
" PUNCT
. PUNCT
  SPACE
have AUX
a DET
number NOUN
of ADP
criteria NOUN
in ADP
choosing VERB
how ADV
to PART
process VERB
food NOUN
. PUNCT
  SPACE
They PRON
want VERB
tomake VERB
it PRON
taste VERB
good ADJ
, PUNCT
look VERB
good ADJ
, PUNCT
sell VERB
for ADP
a DET
good ADJ
price NOUN
, PUNCT
etc X
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
theyuse VERB
it PRON
tells VERB
me PRON
that SCONJ
THEY PRON
think VERB
that SCONJ
it PRON
contributes VERB
to ADP
those DET
goals NOUN
they PRON
areinterested VERB
in ADP
. PUNCT
  SPACE
One NUM
of ADP
those DET
goals NOUN
is AUX
NOT ADV
" PUNCT
making VERB
people NOUN
sick ADJ
" PUNCT
. PUNCT
  SPACE
Such DET
a DET
goalwoud NOUN
quickly ADV
drive VERB
them PRON
out SCONJ
of ADP
business NOUN
and CCONJ
for ADP
no DET
benefit NOUN
. PUNCT
> X
I PRON
think>1 VERB
) PUNCT
outlaw VERB
the DET
use NOUN
of ADP
these DET
substances NOUN
without ADP
warning VERB
labels NOUN
as SCONJ
> X
large ADJ
as SCONJ
those DET
on ADP
cig PROPN
. PUNCT
packages NOUN
. PUNCT
Warning VERB
of ADP
what PRON
? PUNCT
  SPACE
In ADP
California PROPN
there PRON
is AUX
a DET
law NOUN
requiring VERB
that SCONJ
ANYTHING NOUN
whichcontains VERB
a DET
carcinogen NOUN
be AUX
labeled VERB
. PUNCT
  SPACE
That DET
includes VERB
every DET
gasline ADJ
pump NOUN
, PUNCT
mostfoods NOUN
, PUNCT
and CCONJ
even ADV
money NOUN
cleaning VERB
machines NOUN
( PUNCT
because SCONJ
Nickel PROPN
is AUX
a DET
mild ADJ
carcinogen).The PROPN
result NOUN
is AUX
that SCONJ
now ADV
nobody PRON
pays VERB
any DET
attention NOUN
to ADP
ANY DET
of ADP
the DET
warnings NOUN
. PUNCT
> X
2 X
) PUNCT
Require VERB
30 NUM
% NOUN
of ADP
comparable ADJ
products NOUN
on ADP
the DET
market NOUN
to PART
be AUX
free ADJ
of ADP
these DET
> X
substances NOUN
and CCONJ
state NOUN
that SCONJ
they PRON
are AUX
free ADJ
of ADP
MSG PROPN
, PUNCT
DYES PROPN
, PUNCT
NITROSIAMINES PROPN
and CCONJ
> X
SULFITES NOUN
on ADP
the DET
package NOUN
. PUNCT
Why ADV
? PUNCT
  SPACE
What PRON
if SCONJ
not PART
30 NUM
% NOUN
of ADP
people NOUN
wanted VERB
to PART
buy VERB
this DET
ugly ADJ
, PUNCT
rotten ADJ
, PUNCT
not PART
- PUNCT
as SCONJ
- PUNCT
tastyfood NOUN
? PUNCT
  SPACE
I PRON
guess VERB
it PRON
will AUX
just ADV
be AUX
wasted VERB
, PUNCT
huh INTJ
? PUNCT
  SPACE
How ADV
terribly ADV
efficient ADJ
. PUNCT
> X
3 X
) PUNCT
While SCONJ
at ADP
it PRON
outlaw VERB
yellow ADJ
dye NOUN
# PROPN
5 NUM
. PUNCT
  SPACE
For ADP
that DET
matter NOUN
why ADV
dye NOUN
food NOUN
? PUNCT
Because SCONJ
it PRON
makes VERB
food NOUN
look VERB
better ADJ
. PUNCT
  SPACE
I PRON
LIKE VERB
food NOUN
that PRON
looks VERB
good ADJ
. PUNCT
If SCONJ
vitamin NOUN
companies NOUN
want VERB
to PART
do AUX
that SCONJ
it PRON
is AUX
fine ADJ
, PUNCT
but CCONJ
who PRON
are AUX
you PRON
totell ADJ
THEM PRON
how ADV
to PART
make VERB
vitamins NOUN
? PUNCT
  SPACE
Who PRON
are AUX
you PRON
to PART
tell VERB
ME PROPN
whether SCONJ
I PRON
shouldbuy VERB
flavored VERB
vitamins NOUN
for ADP
my PRON
kids NOUN
( PUNCT
who PRON
ca AUX
n't PART
swallow VERB
the DET
conventional ADJ
oneswhole NOUN
) PUNCT
. PUNCT
> X
KEEP VERB
FOOD PROPN
FOOD PROPN
! PUNCT
  SPACE
QUIT VERB
PUTTING NOUN
IN ADP
JUNK NOUN
! PUNCT
How ADV
do AUX
you PRON
define VERB
" PUNCT
junk NOUN
" PUNCT
? PUNCT
  SPACE
Is AUX
putting VERB
" PUNCT
salt NOUN
" PUNCT
in ADP
food NOUN
bad ADJ
? PUNCT
  SPACE
What PRON
aboutPepper NOUN
? PUNCT
  SPACE
What PRON
about ADP
alcohol NOUN
as SCONJ
a DET
preservative NOUN
? PUNCT
  SPACE
What PRON
about ADP
sealing VERB
jarswith PROPN
wax PROPN
? PUNCT
  SPACE
What PRON
about ADP
vinegar NOUN
? PUNCT
  SPACE
You PRON
seem VERB
to PART
think VERB
that SCONJ
" PUNCT
chemicals NOUN
" PUNCT
aresomehow NOUN
different ADJ
than SCONJ
" PUNCT
food NOUN
" PUNCT
. PUNCT
  SPACE
The DET
fact NOUN
is AUX
that SCONJ
all DET
foods NOUN
are AUX
100 NUM
% NOUN
chemicals NOUN
. PUNCT
You PRON
are AUX
just ADV
expressing VERB
an DET
irrational ADJ
prejudice NOUN
against ADP
food NOUN
processing NOUN
. PUNCT
--BrianNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59074From NUM
: PUNCT
bls101@keating.anu.edu.au NOUN
( PUNCT
The DET
New PROPN
, PUNCT
Improved ADJ
Brian PROPN
Scearce)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
- PUNCT
reply NOUN
- PUNCT
to PART
: PUNCT
todamhyp@charles.unlv.edu's NOUN
message NOUN
of ADP
Mon PROPN
, PUNCT
19 NUM
Apr PROPN
93 NUM
20:56:15 NUM
GMTNewsgroups NOUN
: PUNCT
sci.energy,sci.image.processing,sci.anthropology,alt.sci.physics.new-theories,sci.skeptic,sci.med,alt.alien.visitorsSubject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyReferences NOUN
: PUNCT
< X
1993Apr19.205615.1013@unlv.edu>Distribution NUM
: PUNCT
--text PUNCT
follows VERB
this DET
line--todamhyp@charles.unlv.edu NOUN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
	    SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
   SPACE
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
   SPACE
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
   SPACE
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
   SPACE
appreciated VERB
. PUNCT
	    SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
   SPACE
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
   SPACE
object NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
   SPACE
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
   SPACE
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
   SPACE
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
   SPACE
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature NOUN
. PUNCT
There PRON
have AUX
been AUX
a DET
number NOUN
of ADP
scientific ADJ
papers NOUN
( PUNCT
in ADP
peer NOUN
- PUNCT
reviewed VERB
journals)published PROPN
about ADP
Kirlian ADJ
photography NOUN
in ADP
the DET
early ADJ
1970s NOUN
. PUNCT
  SPACE
Sorry INTJ
I PRON
ca AUX
n't PART
bemore VERB
specific ADJ
but CCONJ
it PRON
is AUX
a DET
long ADJ
time NOUN
since SCONJ
I PRON
read VERB
them PRON
. PUNCT
  SPACE
They PRON
would AUX
describewhat VERB
is AUX
needed VERB
and CCONJ
how ADV
to PART
set VERB
up ADP
the DET
apparatus NOUN
. PUNCT
  SPACE
These DET
papers NOUN
demonstrate VERB
that SCONJ
the DET
auras PROPN
obtained VERB
by ADP
Kirlian ADJ
photography NOUN
canbe NOUN
completely ADV
explained VERB
by ADP
the DET
effect NOUN
of ADP
the DET
electric ADJ
currents NOUN
used VERB
on ADP
themoisture NOUN
in ADP
the DET
object NOUN
being AUX
photographed VERB
. PUNCT
  SPACE
It PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
the"energy NOUN
signature NOUN
" PUNCT
of ADP
organic ADJ
objects NOUN
. PUNCT
I PRON
did AUX
a DET
science NOUN
project NOUN
on ADP
Kirlian ADJ
photography NOUN
when ADV
I PRON
was AUX
in ADP
high ADJ
school NOUN
. PUNCT
I PRON
was AUX
able ADJ
to PART
obtain VERB
wonderful ADJ
auras NOUN
from ADP
rocks NOUN
and CCONJ
pebbles NOUN
and CCONJ
the DET
like ADJ
byfirst NOUN
dunking VERB
them PRON
in ADP
water.Barbara----bls101@syseng.anu.edu.au"I PROPN
generally ADV
avoid VERB
temptation NOUN
unless SCONJ
I PRON
ca AUX
n't PART
resist VERB
it PRON
. PUNCT
" PUNCT
                 SPACE
- PUNCT
Mae PROPN
West PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59075From NUM
: PUNCT
bj368@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Mike PROPN
E. PROPN
Romano)Subject PROPN
: PUNCT
Home PROPN
Medical PROPN
TestsI PROPN
am AUX
looking VERB
for ADP
current ADJ
sources NOUN
for ADP
lists NOUN
of ADP
all DET
the DET
homemedical ADJ
tests NOUN
currently ADV
legally ADV
available ADJ
. PUNCT
I PRON
believe VERB
this DET
trend NOUN
of ADP
allowing VERB
tests NOUN
at ADP
home NOUN
wherefeasible ADJ
, PUNCT
decreased VERB
medical ADJ
costs NOUN
by ADP
a DET
factor NOUN
of ADP
10 NUM
ormore NOUN
and CCONJ
allows VERB
the DET
patient NOUN
some DET
time NOUN
and CCONJ
privacy NOUN
toconsider VERB
the DET
best ADJ
action NOUN
from ADP
the DET
results NOUN
of ADP
such ADJ
tests NOUN
. PUNCT
In ADP
fact NOUN
I PRON
believe VERB
home NOUN
medical ADJ
tests NOUN
and CCONJ
certain ADJ
basictests NOUN
for ADP
serious ADJ
diseases NOUN
such ADJ
as SCONJ
cancer NOUN
, PUNCT
heart NOUN
disease NOUN
, PUNCT
should AUX
be AUX
offered VERB
free ADJ
to ADP
the DET
American ADJ
public NOUN
. PUNCT
This DET
could AUX
actually ADV
help VERB
to PART
reduce VERB
national ADJ
medical ADJ
costssince NOUN
many ADJ
would AUX
have AUX
an DET
earlier ADJ
opportunity NOUN
to PART
knowabout VERB
and CCONJ
work VERB
toward ADP
recuperation NOUN
or CCONJ
cure NOUN
. PUNCT
Mike PROPN
Romano-- PROPN
Sir PROPN
, PUNCT
I PRON
admit VERB
your PRON
gen'ral NOUN
ruleThat PROPN
every DET
poet NOUN
is AUX
a DET
fool;But PROPN
you PRON
yourself PRON
may AUX
serve VERB
to PART
show VERB
it PRON
, PUNCT
That SCONJ
every DET
fool NOUN
is AUX
not PART
a DET
poet NOUN
. PUNCT
    SPACE
A. NOUN
PopeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59076From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboJB NOUN
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
JB PROPN
> X
  SPACE
JB PROPN
> X
    SPACE
Ron PROPN
Roth PROPN
recommends VERB
: PUNCT
" PUNCT
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED ADV
through ADP
theJB PROPN
> X
                          SPACE
proper ADJ
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
the DET
following: NOUN
... PUNCT
"JB PUNCT
> X
                          SPACE
[ PUNCT
diet PROPN
omitted]JB PROPN
> X
  SPACE
JB PROPN
> X
  SPACE
1 NUM
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
this DET
sounds VERB
suspiciously ADV
  SPACE
I PRON
'm AUX
glad ADJ
it PRON
caught VERB
your PRON
eye NOUN
. PUNCT
That DET
's AUX
the DET
purpose NOUN
of ADP
this DET
forum NOUN
to PART
educate VERB
those DET
, PUNCT
eager ADJ
to PART
learn VERB
, PUNCT
about ADP
the DET
facts NOUN
of ADP
life NOUN
. PUNCT
That DET
phrase NOUN
is AUX
used VERB
to PART
bridle VERB
the DET
frenzy NOUN
of ADP
all DET
the DET
would AUX
- PUNCT
be AUX
respondents NOUN
, PUNCT
who PRON
otherwise ADV
would AUX
feel VERB
being AUX
left VERB
out ADP
as SCONJ
the DET
proper ADJ
authorities NOUN
to PART
be AUX
consulted VERB
on ADP
that DET
topic NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
means VERB
absolutely ADV
nothing PRON
. PUNCT
JB PROPN
> X
  SPACE
like SCONJ
a DET
blood NOUN
chemistry NOUN
... PUNCT
glucose NOUN
tolerance NOUN
and CCONJ
the DET
like ADJ
... PUNCT
suddenly ADV
chemistryJB NOUN
> X
  SPACE
exists VERB
? PUNCT
You PRON
know VERB
perfectly ADV
well ADV
that SCONJ
this DET
person NOUN
can AUX
be AUX
saved VERB
needless ADJ
troubleJB PROPN
> X
  SPACE
and CCONJ
expense NOUN
with ADP
simple ADJ
muscle NOUN
testing NOUN
and CCONJ
hair NOUN
analysis NOUN
to PART
diagnose VERB
... PUNCT
noJB ADV
> X
  SPACE
" PUNCT
CONFIRM PROPN
" PUNCT
any DET
aberrant ADJ
physiology NOUN
... PUNCT
but CCONJ
then ADV
again ADV
... PUNCT
maybe ADV
that DET
's AUX
what PRON
you PRON
mean VERB
" PUNCT
Muscle NOUN
testing NOUN
and CCONJ
hair NOUN
analysis NOUN
, PUNCT
eh INTJ
? PUNCT
  SPACE
So ADV
what PRON
other ADJ
fascinating ADJ
  SPACE
space NOUN
- PUNCT
age NOUN
medical ADJ
techniques NOUN
do AUX
you PRON
use VERB
? PUNCT
  SPACE
Do AUX
you PRON
sit VERB
under ADP
a DET
pyramid NOUN
over ADP
night NOUN
as ADV
well ADV
to PART
shrink VERB
your PRON
brain NOUN
back ADV
to ADP
normal ADJ
after ADP
a DET
mind- NOUN
expanding VERB
day NOUN
at ADP
your PRON
' PUNCT
Save VERB
the DET
Earth PROPN
' PART
clinic?JB NOUN
> X
  SPACE
2 X
) PUNCT
Were AUX
you PRON
able ADJ
to PART
understand VERB
Dick PROPN
King PROPN
's PART
post NOUN
that SCONJ
" PUNCT
90 NUM
% NOUN
of ADP
diseases NOUN
is AUX
not PART
thyJB PROPN
> X
  SPACE
evaluate VERB
the DET
statistic NOUN
you PRON
cited VERB
from ADP
the DET
New PROPN
England PROPN
Journal PROPN
of ADP
Medicine PROPN
. PUNCT
Coul PROPN
? PUNCT
Once ADV
I PRON
figure VERB
out ADP
what PRON
* PUNCT
you PRON
* PUNCT
are AUX
trying VERB
to PART
say VERB
, PUNCT
I PRON
'll AUX
still ADV
have AUX
  SPACE
to PART
wrestle VERB
with ADP
the DET
possibility NOUN
of ADP
you PRON
conceivably ADV
not PART
being AUX
able ADJ
to PART
understand VERB
my PRON
answer NOUN
to ADP
your PRON
question?!JB PROPN
> X
  SPACE
3 X
) PUNCT
Ron PROPN
... PUNCT
have AUX
you PRON
ever ADV
thought VERB
about ADP
why ADV
you PRON
never ADV
post VERB
in ADP
misc.health.alterna-JB PROPN
> X
  SPACE
tive PROPN
... PUNCT
and CCONJ
insist VERB
instead ADV
upon SCONJ
insinuating VERB
your PRON
untrained ADJ
, PUNCT
non ADJ
- ADJ
medical ADJ
, PUNCT
oftenJB X
> X
  SPACE
delusional ADJ
notions NOUN
of ADP
health NOUN
and CCONJ
disease NOUN
into ADP
this DET
forum NOUN
? PUNCT
I PRON
suspect VERB
from ADP
yourJB PROPN
> X
  SPACE
apparent ADJ
anger NOUN
toward ADP
MDs NOUN
and CCONJ
heteropathic ADJ
medicine NOUN
that SCONJ
there PRON
may AUX
be AUX
an DET
              SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
  SPACE
You PRON
little ADJ
psychoanalytical ADJ
rascal ADJ
you PRON
! PUNCT
  SPACE
Got VERB
me PRON
all DET
figured VERB
out ADP
, PUNCT
ja PROPN
? PUNCT
  SPACE
JB PROPN
> X
  SPACE
underlying PROPN
' PART
father NOUN
problem' NOUN
... PUNCT
of ADP
course NOUN
I PRON
can AUX
CONFIRM VERB
this DET
by ADP
surrogate ADJ
muscleJB PROPN
> X
  SPACE
testing VERB
one NUM
of ADP
my PRON
patients NOUN
while SCONJ
they PRON
ponder VERB
my PRON
theory NOUN
to PART
see VERB
if SCONJ
one NUM
of ADP
theirJB PROPN
> X
  SPACE
previously ADV
weak ADJ
' PUNCT
indicator NOUN
' PUNCT
muscles NOUN
strengthens VERB
... PUNCT
or CCONJ
do AUX
you PRON
have AUX
reservationsJB PROPN
> X
  SPACE
about ADP
my PRON
unique ADJ
methods NOUN
of ADP
diagnosis NOUN
? PUNCT
[ PUNCT
...... PUNCT
] PUNCT
JB PROPN
> X
  SPACE
JB PROPN
> X
  SPACE
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAJB PROPN
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
Oh PROPN
man NOUN
, PUNCT
when ADV
are AUX
you PRON
going VERB
to PART
start VERB
teaching VERB
all DET
this DET
stuff NOUN
? PUNCT
  SPACE
I PRON
'll AUX
bet VERB
everyone PRON
on ADP
this DET
net NOUN
must AUX
be AUX
absolutely ADV
dying VERB
to PART
learn VERB
more ADJ
about ADP
  SPACE
going VERB
beyond ADP
spinal ADJ
adjustments NOUN
and CCONJ
head NOUN
straight ADV
for ADP
the DET
mind NOUN
for ADP
some DET
Freudian ADJ
subluxation NOUN
. PUNCT
  SPACE
--Ron----- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
In ADP
the DET
next ADJ
world NOUN
, PUNCT
you PRON
're AUX
on ADP
your PRON
own ADJ
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59077From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
19687@pitt NOUN
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>In X
article NOUN
< X
1993Apr13.093300.29529@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>>>"Weight NOUN
rebound NOUN
" PUNCT
is AUX
a DET
term NOUN
used VERB
in ADP
the DET
medical ADJ
literature NOUN
on>>obesity NOUN
to PART
denote VERB
weight NOUN
regain NOUN
beyond ADP
what PRON
was AUX
lost VERB
in ADP
a DET
diet>>cycle NOUN
. PUNCT
  SPACE
There PRON
are AUX
any DET
number NOUN
of ADP
terms NOUN
which PRON
mean VERB
one NUM
thing NOUN
to>>Can PRON
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back ADV
> X
the DET
lost ADJ
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it PRON
> X
exceeds VERB
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that PRON
> X
is AUX
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?Not VERB
one NUM
, PUNCT
but CCONJ
two NUM
: PUNCT
Obesity NOUN
in ADP
Europe PROPN
88,proceedings NUM
of ADP
the DET
1st ADJ
European ADJ
Congress PROPN
on ADP
ObesityAnnals PROPN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>-- NUM
> X
---------------------------------------------------------------------------->Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
------------------------------------------------------------------------------ PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59078From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Broken VERB
ribIn PROPN
article NOUN
< X
D0ZB3B1w164w@oneb.almanac.bc.ca NOUN
> X
jc@oneb.almanac.bc.ca X
writes:>>fell PROPN
about ADV
3 NUM
weeks NOUN
ago ADV
down ADV
into ADP
the DET
hold NOUN
of ADP
the DET
boat NOUN
and CCONJ
broke VERB
or CCONJ
> X
cracked VERB
a DET
rib NOUN
and CCONJ
wrenched VERB
and CCONJ
bruised VERB
my PRON
back NOUN
and CCONJ
left VERB
arm NOUN
. PUNCT
> X
  SPACE
My PRON
question NOUN
, PUNCT
  SPACE
I PRON
have AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
was AUX
told VERB
that SCONJ
it PRON
was AUX
> X
best ADJ
to PART
do AUX
nothing PRON
and CCONJ
it PRON
would AUX
heal VERB
up ADP
with ADP
no DET
long ADJ
term NOUN
effect NOUN
, PUNCT
and CCONJ
> X
indeed ADV
I PRON
am AUX
about ADV
60 NUM
% NOUN
better ADJ
, PUNCT
however ADV
, PUNCT
the DET
work NOUN
I PRON
do AUX
is AUX
very ADV
> X
hard ADV
and CCONJ
I PRON
am AUX
still ADV
not PART
able ADJ
to PART
go VERB
back ADV
to ADP
work NOUN
. PUNCT
  SPACE
The DET
thing NOUN
that PRON
worries VERB
me PRON
> X
is AUX
the DET
movement NOUN
or CCONJ
" PUNCT
clunking VERB
" PUNCT
I PRON
feel VERB
and CCONJ
hear VERB
back ADV
there ADV
when ADV
I PRON
move VERB
> X
certain ADJ
ways NOUN
... PUNCT
  SPACE
I PRON
heard VERB
some DET
one NOUN
talking VERB
about ADP
the DET
rib NOUN
they PRON
broke VERB
> X
years NOUN
ago ADV
and CCONJ
that SCONJ
it PRON
still ADV
bothers VERB
them PRON
.. PUNCT
  SPACE
any DET
opinions?Your PROPN
doctor NOUN
is AUX
right ADJ
. PUNCT
It PRON
is AUX
best ADJ
to PART
do AUX
nothing PRON
, PUNCT
besides SCONJ
taking VERB
some DET
painmedication NOUN
initially ADV
. PUNCT
Some DET
patients NOUN
do AUX
n't PART
like VERB
this DET
and CCONJ
expect VERB
, PUNCT
or CCONJ
demand NOUN
, PUNCT
to PART
have AUX
something PRON
done VERB
. PUNCT
In ADP
these DET
cases NOUN
some DET
physicians NOUN
will AUX
" PUNCT
tape VERB
" PUNCT
the DET
patient NOUN
( PUNCT
put VERB
a DET
lot NOUN
of ADP
heavy ADJ
adhesive ADJ
tape NOUN
around ADP
the DET
chest NOUN
) PUNCT
, PUNCT
or CCONJ
prescribean VERB
elastic ADJ
binder NOUN
. PUNCT
All DET
this DET
does AUX
is AUX
make VERB
it PRON
harder ADJ
to ADP
breath NOUN
, PUNCT
but CCONJ
thepatient ADJ
does AUX
n't PART
feel VERB
cheated VERB
, PUNCT
because SCONJ
soemthing NOUN
is AUX
being AUX
done VERB
about ADP
theproblem PROPN
. PUNCT
Either DET
way NOUN
, PUNCT
the DET
end NOUN
results NOUN
are AUX
the DET
same.==================================Howard ADJ
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59079From NUM
: PUNCT
balick@nynexst.com X
( PUNCT
Daphne ADJ
Balick)Subject NUM
: PUNCT
Re ADP
: PUNCT
Altitude NOUN
adjustmentIn PROPN
article NOUN
< X
4159@mdavcr.mda.ca NUM
> X
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
writes:>I PRON
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
cities NOUN
> X
quite ADV
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000 NUM
> X
feet NOUN
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
Mexico PROPN
City PROPN
, PUNCT
Bogota PROPN
, PUNCT
La PROPN
Paz?>>Often PROPN
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
and CCONJ
> X
my PRON
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
very ADV
> X
dry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keep VERB
> X
away ADV
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol.>>Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there>(no X
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?>Is NOUN
there ADV
something PRON
else ADV
that PRON
I PRON
could AUX
do?---An VERB
unconventional ADJ
remedy NOUN
that PRON
you PRON
might AUX
try VERB
for ADP
altitude ADJ
sickness NOUN
in ADP
the DET
Andes PROPN
ischewing VERB
coca NOUN
leaves NOUN
or CCONJ
taking VERB
teas NOUN
made VERB
from ADP
coca NOUN
leaves NOUN
. PUNCT
You PRON
might AUX
notice VERB
thatmany NOUN
of ADP
the DET
natives NOUN
have AUX
wads NOUN
in ADP
their PRON
mouths NOUN
... PUNCT
the DET
tea NOUN
can AUX
be AUX
obtained VERB
in ADP
S.American ADJ
pharmacies NOUN
. PUNCT
This DET
remedy NOUN
alleviates VERB
some DET
of ADP
the DET
lightheadedness NOUN
anddizziness NOUN
- PUNCT
but CCONJ
do AUX
n't PART
try VERB
to PART
jog VERB
with ADP
it PRON
. PUNCT
I PRON
've AUX
tried VERB
this DET
when ADV
travelling VERB
andhiking VERB
in ADP
Peru PROPN
and CCONJ
Ecuador PROPN
. PUNCT
The DET
amount NOUN
of ADP
cocaine NOUN
you PRON
would AUX
ingest VERB
are AUX
too ADV
minuteto ADJ
cause VERB
any DET
highs NOUN
... PUNCT
Also ADV
it PRON
is AUX
a DET
good ADJ
idea NOUN
to PART
eat VERB
lightly ADV
and CCONJ
dress VERB
warm ADJ
while SCONJ
adjusting VERB
to ADP
high ADJ
altitudes NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59080From NUM
: PUNCT
pk115050@wvnvms.wvnet.eduSubject NOUN
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
My PRON
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
nomedical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed VERB
. PUNCT
My PRON
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigatetheir ADJ
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
etc X
... PUNCT
)Thank PUNCT
you PRON
, PUNCT
Dave PROPN
Carvellpk115050@wvnvms.wvnet.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59081Subject NOUN
: PUNCT
STARGARDTS PROPN
DISEASEFrom NOUN
: PUNCT
kmcvay@oneb.almanac.bc.ca PROPN
( PUNCT
Ken PROPN
Mcvay)Thanks PROPN
to ADP
aldridge@netcom.com X
, PUNCT
I PRON
now ADV
know VERB
a DET
bit NOUN
more ADV
about ADP
Stargardt'sdisease NOUN
, PUNCT
aka ADV
juvenile ADJ
macular ADJ
distrophy NOUN
, PUNCT
but CCONJ
I PRON
would AUX
like VERB
to PART
learn VERB
more ADJ
. PUNCT
First ADV
, PUNCT
what PRON
is AUX
the DET
general ADJ
prognosis NOUN
- PUNCT
is AUX
blindness NOUN
the DET
result?Second NOUN
, PUNCT
what PRON
treatments VERB
, PUNCT
if SCONJ
any DET
, PUNCT
are AUX
available?-- PROPN
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
- PUNCT
A PROPN
Salute PROPN
to ADP
That DET
Old PROPN
Frog PROPN
Hisse'f PROPN
, PUNCT
Ryugen PROPN
Fisher PROPN
      SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
SCO PROPN
XENIX PROPN
2.3.2 NUM
GT PROPN
   SPACE
Ladysmith PROPN
, PUNCT
British PROPN
Columbia PROPN
, PUNCT
CANADA PROPN
. PUNCT
Serving VERB
Central PROPN
Vancouver PROPN
Island PROPN
  SPACE
with ADP
public ADJ
access NOUN
UseNet PROPN
and CCONJ
Internet PROPN
Mail PROPN
- PUNCT
home NOUN
to ADP
the DET
Holocaust PROPN
AlmanacNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59082From NUM
: PUNCT
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Selective ADJ
Placeboron.roth@rose.com NOUN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
writes:|JB VERB
> X
  SPACE
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes:|JB VERB
> X
  SPACE
|JB NOUN
> X
    SPACE
Ron PROPN
Roth PROPN
recommends VERB
: PUNCT
" PUNCT
Once SCONJ
you PRON
have AUX
your PRON
hypoglycemia NOUN
CONFIRMED VERB
through ADP
the|JB NOUN
> X
                          SPACE
proper ADJ
channels NOUN
, PUNCT
you PRON
might AUX
consider VERB
the DET
following: NOUN
... PUNCT
"|JB PUNCT
> X
                          SPACE
[ PUNCT
diet PROPN
omitted]|JB PROPN
> X
  SPACE
|JB NOUN
> PROPN
  SPACE
1 NUM
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
this DET
sounds VERB
suspiciously| PROPN
  SPACE
I PRON
'm AUX
glad ADJ
it PRON
caught VERB
your PRON
eye NOUN
. PUNCT
That DET
's AUX
the DET
purpose NOUN
of ADP
this DET
forum NOUN
to| PRON
educate NOUN
those DET
, PUNCT
eager ADJ
to PART
learn VERB
, PUNCT
about ADP
the DET
facts NOUN
of ADP
life NOUN
. PUNCT
That DET
phrase| PROPN
is AUX
used VERB
to PART
bridle VERB
the DET
frenzy NOUN
of ADP
all DET
the DET
would AUX
- PUNCT
be AUX
respondents NOUN
, PUNCT
who| NOUN
otherwise ADV
would AUX
feel VERB
being AUX
left VERB
out ADP
as SCONJ
the DET
proper ADJ
authorities NOUN
to PART
be| VERB
consulted VERB
on ADP
that DET
topic NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
means VERB
absolutely ADV
nothing PRON
. PUNCT
An DET
apt ADJ
description NOUN
of ADP
the DET
content NOUN
of ADP
just ADV
about ADP
all DET
ronroth NOUN
's PART
posts NOUN
todate ADJ
. PUNCT
  SPACE
At ADV
least ADV
there PRON
's AUX
entertainment NOUN
value NOUN
( PUNCT
though SCONJ
it PRON
isdiminishing).Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59083From NUM
: PUNCT
molnar@Bisco PROPN
. PUNCT
CAnet PROPN
. PUNCT
CA PROPN
( PUNCT
Tom PROPN
Molnar)Subject PROPN
: PUNCT
sudden ADJ
numbness NOUN
in ADP
armI PROPN
experienced VERB
a DET
sudden ADJ
numbness NOUN
in ADP
my PRON
left ADJ
arm NOUN
this DET
morning NOUN
. PUNCT
  SPACE
Just ADV
afterI PROPN
completed VERB
my PRON
4th ADJ
set NOUN
of ADP
deep ADJ
squats NOUN
. PUNCT
  SPACE
Today NOUN
was AUX
my PRON
weight NOUN
trainingday NOUN
and CCONJ
I PRON
was AUX
just ADV
beginning VERB
my PRON
routine NOUN
. PUNCT
  SPACE
All DET
of ADP
a ADV
sudden ADJ
at ADP
the DET
end NOUN
ofthe PROPN
4th NOUN
set VERB
my PRON
arm NOUN
felt VERB
like SCONJ
it PRON
had AUX
gone VERB
to PART
sleep VERB
. PUNCT
  SPACE
It PRON
was AUX
cold ADJ
, PUNCT
turned VERB
pale ADJ
, PUNCT
and CCONJ
lost VERB
60 NUM
% NOUN
of ADP
its PRON
strength NOUN
. PUNCT
  SPACE
The DET
weight NOUN
I PRON
used VERB
for ADP
squats NOUN
was AUX
n't PART
thatheavy NOUN
, PUNCT
I PRON
was AUX
working VERB
hard ADV
but CCONJ
not PART
at ADP
100 NUM
% NOUN
effort NOUN
. PUNCT
  SPACE
I PRON
waited VERB
for ADP
a DET
few ADJ
minutes NOUN
, PUNCT
trying VERB
to PART
shake VERB
the DET
arm NOUN
back ADV
to ADP
life NOUN
and CCONJ
then ADV
continued VERB
withchest ADJ
exercises NOUN
( PUNCT
flyes PROPN
) PUNCT
with ADP
lighter ADJ
dumbells NOUN
than SCONJ
I PRON
normally ADV
use VERB
. PUNCT
  SPACE
ButI PROPN
dropped VERB
the DET
left ADJ
dumbell NOUN
during ADP
the DET
first ADJ
set NOUN
, PUNCT
and CCONJ
experienced VERB
continuedarm ADJ
weakness NOUN
into ADP
the DET
second ADJ
. PUNCT
  SPACE
So ADV
I PRON
quit VERB
training VERB
and CCONJ
decided VERB
not PART
to PART
do AUX
myusual ADJ
hour NOUN
on ADP
the DET
ski NOUN
machine NOUN
either ADV
. PUNCT
  SPACE
I PRON
'll AUX
take VERB
it PRON
easy ADJ
for ADP
the DET
rest NOUN
ofthe ADJ
day NOUN
. PUNCT
My PRON
arm NOUN
is AUX
* PUNCT
still ADV
* PUNCT
somewhat ADV
numb ADJ
and CCONJ
significantly ADV
weaker ADJ
than SCONJ
normal ADJ
--my PROPN
hand NOUN
still ADV
tingles VERB
a DET
bit NOUN
down ADV
to ADP
the DET
thumb NOUN
. PUNCT
Color NOUN
has AUX
returned VERB
to ADP
normaland NOUN
it PRON
is AUX
no DET
longer ADV
cold ADJ
. PUNCT
Horrid ADJ
thoughts NOUN
of ADP
chunks NOUN
of ADP
plaque NOUN
blocking VERB
a DET
major ADJ
artery NOUN
course NOUN
throughmy VERB
brain NOUN
. PUNCT
  SPACE
I PRON
'm AUX
34 NUM
, PUNCT
vegetarian PROPN
, PUNCT
and CCONJ
pretty ADV
fit ADJ
from ADP
my PRON
daily ADJ
exerciseregimen NOUN
. PUNCT
  SPACE
So SCONJ
that DET
ca AUX
n't PART
be AUX
it PRON
. PUNCT
  SPACE
Could AUX
a DET
pinched ADJ
nerve NOUN
from ADP
the DET
barcause NOUN
these DET
symptoms NOUN
( PUNCT
I PRON
hope)?Has PROPN
this DET
happened VERB
to ADP
anyone PRON
else?Nothing VERB
like SCONJ
this DET
has AUX
ever ADV
happened VERB
to ADP
me PRON
before ADV
. PUNCT
  SPACE
Does AUX
it PRON
come VERB
with ADP
age?Thanks NOUN
, PUNCT
Tom-- PROPN
Tom PROPN
MolnarUnix PROPN
Systems PROPN
Group PROPN
, PUNCT
University PROPN
of ADP
Toronto PROPN
Computing PROPN
& CCONJ
Communications PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59084From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it PRON
? PUNCT
) PUNCT
   SPACE
> X
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
face NOUN
that SCONJ
there PRON
is AUX
no DET
   SPACE
> X
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
their PRON
safety NOUN
. PUNCT
   SPACE
> X
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as ADV
far ADV
as SCONJ
   SPACE
> X
I PRON
am AUX
concerned ADJ
. PUNCT
This DET
does AUX
n't PART
sound VERB
like SCONJ
Candida PROPN
Albicans PROPN
to ADP
me PRON
. PUNCT
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59085From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
Good ADJ
grief NOUN
again ADV
. PUNCT
Why ADV
the DET
anger NOUN
? PUNCT
  SPACE
I PRON
must AUX
have AUX
really ADV
touched VERB
a DET
raw ADJ
nerve NOUN
. PUNCT
Let VERB
's PRON
see VERB
: PUNCT
  SPACE
I PRON
had AUX
symptoms NOUN
that PRON
resisted VERB
all DET
other ADJ
treatments NOUN
. PUNCT
  SPACE
Sporanoxtotally ADV
alleviated VERB
them PRON
within ADP
one NUM
week NOUN
. PUNCT
  SPACE
Hmmm PROPN
, PUNCT
I PRON
must AUX
be AUX
psychotic ADJ
. PUNCT
  SPACE
Yesss!That PROPN
's PART
it PRON
- PUNCT
my PRON
illness NOUN
was AUX
all DET
in ADP
my PRON
mind NOUN
. PUNCT
  SPACE
Thanks INTJ
Steve PROPN
for ADP
your PRON
correctdiagnosis NOUN
- PUNCT
you PRON
must AUX
have AUX
a DET
lot NOUN
of ADP
experience NOUN
being AUX
out ADV
there ADV
in ADP
trenches NOUN
, PUNCT
treating VERB
hundreds NOUN
of ADP
patients NOUN
a DET
week NOUN
. PUNCT
  SPACE
Thank VERB
you PRON
. PUNCT
  SPACE
I PRON
'm AUX
forever ADV
in ADP
yourdebt NOUN
. PUNCT
Jon(oops PROPN
, PUNCT
got VERB
ta PART
run VERB
, PUNCT
the DET
men NOUN
in ADP
white ADJ
coats NOUN
are AUX
ready ADJ
to PART
take VERB
me PRON
away ADV
, PUNCT
haha INTJ
, PUNCT
to ADP
the DET
happy ADJ
home NOUN
, PUNCT
where ADV
I PRON
can AUX
go VERB
twiddle ADP
my PRON
thumbs NOUN
, PUNCT
basket NOUN
weave NOUN
, PUNCT
andmoan ADV
about ADP
my PRON
sinuses.)-- PROPN
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59086From NUM
: PUNCT
lunger@helix.enet.dec.com PROPN
( PUNCT
Dave PROPN
Lunger)Subject PROPN
: PUNCT
Modified VERB
sense NOUN
of ADP
taste NOUN
in ADP
Cancer NOUN
pt?What PRON
does AUX
a DET
lack NOUN
of ADP
taste NOUN
of ADP
foods NOUN
, PUNCT
or CCONJ
a DET
sense NOUN
of ADP
taste NOUN
that PRON
seems VERB
" PUNCT
off"when ADV
eating VERB
foods NOUN
in ADP
someone PRON
who PRON
has AUX
cancer NOUN
mean VERB
? PUNCT
What PRON
are AUX
the DET
possiblecauses NOUN
of ADP
this DET
? PUNCT
Why ADV
does AUX
it PRON
happen?Pt PROPN
has AUX
Stage NOUN
II PROPN
breast NOUN
cancer NOUN
, PUNCT
and CCONJ
is AUX
taking VERB
tamoxifin NOUN
. PUNCT
Also ADV
has AUX
Stage NOUN
IVlung PROPN
cancer NOUN
with ADP
known VERB
CNA NOUN
metastasis NOUN
, PUNCT
and CCONJ
is AUX
taking VERB
klonopin NOUN
( PUNCT
also ADV
hadcranial ADJ
radiation NOUN
treatments).Thanks![not ADP
a DET
doctor NOUN
, PUNCT
but CCONJ
trying VERB
to PART
understand VERB
family NOUN
member NOUN
's PART
illness]Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59087From NUM
: PUNCT
mryan@stsci.eduSubject NUM
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?Am NOUN
I PRON
justified VERB
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor?Last PROPN
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife NOUN
. PUNCT
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
clinic NOUN
was AUX
open ADJ
till SCONJ
6:00 NUM
pm NOUN
. PUNCT
  SPACE
The DET
receptionist NOUN
went VERB
to ADP
the DET
back NOUN
and CCONJ
told VERB
the DET
doctor NOUN
that SCONJ
we PRON
were AUX
there ADV
, PUNCT
and CCONJ
came VERB
back ADV
and CCONJ
told VERB
us PRON
the DET
doctor NOUN
would AUX
not PART
see VERB
us PRON
because SCONJ
she PRON
had AUX
someplace NOUN
to PART
go VERB
at ADP
6:00 NUM
and CCONJ
did AUX
not PART
want VERB
to PART
be AUX
delayed VERB
here ADV
. PUNCT
  SPACE
During ADP
the DET
next ADJ
few ADJ
minutes NOUN
, PUNCT
in ADP
response NOUN
to ADP
my PRON
questions NOUN
, PUNCT
with ADP
several ADJ
trips NOUN
to ADP
the DET
back NOUN
room NOUN
, PUNCT
the DET
receptionist NOUN
told VERB
me PRON
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
was AUX
doing VERB
paperwork NOUN
in ADP
the DET
back NOUN
, PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
look VERB
at ADP
his PRON
finger NOUN
to PART
advise VERB
us PRON
on ADP
going VERB
	   SPACE
to ADP
the DET
emergency NOUN
room NOUN
; PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
speak VERB
to ADP
me PRON
; PUNCT
	 SPACE
- PUNCT
she PRON
would AUX
not PART
tell VERB
me PRON
the DET
doctor NOUN
's PART
name NOUN
, PUNCT
or CCONJ
her PRON
own ADJ
name NOUN
; PUNCT
	 SPACE
- PUNCT
when ADV
asked VERB
who PRON
is AUX
in ADP
charge NOUN
of ADP
the DET
clinic NOUN
, PUNCT
she PRON
said VERB
" PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
"I NOUN
realize VERB
that SCONJ
a DET
private ADJ
clinic NOUN
is AUX
not PART
the DET
same ADJ
as SCONJ
an DET
emergency NOUN
room NOUN
, PUNCT
butI PROPN
was AUX
quite ADV
angry ADJ
at ADP
being AUX
turned VERB
away ADV
because SCONJ
the DET
doctor NOUN
did AUX
not PART
want VERB
tobe NOUN
bothered VERB
. PUNCT
  SPACE
My PRON
son NOUN
did AUX
get AUX
three NUM
stitches NOUN
at ADP
the DET
emergency NOUN
room NOUN
. PUNCT
  SPACE
I PRON
'm AUX
still ADV
trying VERB
to PART
find VERB
out ADP
who PRON
is AUX
in ADP
charge NOUN
of ADP
that DET
clinic NOUN
so SCONJ
I PRON
can AUX
write VERB
them PRON
a DET
letter NOUN
. PUNCT
   SPACE
We PRON
will AUX
certainly ADV
never ADV
set VERB
foot NOUN
in ADP
that DET
clinic NOUN
again.-------------------------------------------------------------------------Mary NOUN
Ryan PROPN
				 SPACE
mryan@stsci.eduSpace PROPN
Telescope PROPN
Science PROPN
InstituteBaltimore PROPN
, PUNCT
MarylandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59088From NUM
: PUNCT
billc@col.hp.com X
( PUNCT
Bill PROPN
Claussen)Subject NUM
: PUNCT
RE ADP
: PUNCT
  SPACE
alt.psychoactivesFYI...I PROPN
just ADV
posted VERB
this DET
on ADP
alt.psychoactives PROPN
as SCONJ
a DET
response NOUN
towhat ADP
the DET
group NOUN
is AUX
for ADP
...... PUNCT
A DET
note NOUN
to ADP
the DET
users NOUN
of ADP
alt.psychoactives....This DET
group NOUN
was AUX
originally ADV
a DET
takeoff NOUN
from ADP
sci.med VERB
. PUNCT
  SPACE
The DET
reason NOUN
forthe NOUN
formation NOUN
of ADP
this DET
group NOUN
was AUX
to PART
discuss VERB
prescription NOUN
psychoactivedrugs NOUN
.... PUNCT
such ADJ
as SCONJ
antidepressents(tri NOUN
- PUNCT
cyclics NOUN
, PUNCT
Prozac PROPN
, PUNCT
Lithium PROPN
, PUNCT
etc),antipsychotics(Melleral(sp X
? PUNCT
) PUNCT
, PUNCT
etc X
) PUNCT
, PUNCT
OCD PROPN
drugs(Anafranil NOUN
, PUNCT
etc X
) PUNCT
, PUNCT
andso NOUN
on ADP
and CCONJ
so ADV
forth ADV
. PUNCT
  SPACE
It PRON
did AUX
n't PART
take VERB
long ADV
for ADP
this DET
group NOUN
to ADP
degenerateinto PROPN
a DET
psudo NOUN
alt.drugs PROPN
atmosphere NOUN
. PUNCT
  SPACE
That DET
's AUX
to ADP
bad ADJ
, PUNCT
for ADP
most ADJ
of ADP
theserious ADJ
folks NOUN
that PRON
wanted VERB
to PART
start VERB
this DET
group NOUN
in ADP
the DET
first ADJ
place NOUN
haveleft VERB
and CCONJ
gone VERB
back ADV
to ADP
sci.med VERB
, PUNCT
where ADV
you PRON
have AUX
to PART
cypher VERB
throughhundreds NOUN
of ADP
unrelated ADJ
articles NOUN
to PART
find VERB
psychoactive ADJ
data NOUN
. PUNCT
It PRON
was AUX
also ADV
to PART
discuss VERB
real ADJ
- PUNCT
life NOUN
experiences NOUN
and CCONJ
side NOUN
effects NOUN
ofthe VERB
above ADV
mentioned VERB
. PUNCT
Oh INTJ
well INTJ
, PUNCT
I PRON
had AUX
unsubscribed VERB
to ADP
this DET
group NOUN
for ADP
some DET
time NOUN
, PUNCT
and CCONJ
I PRON
decidedto VERB
check VERB
it PRON
today NOUN
to PART
see VERB
if SCONJ
anything PRON
had AUX
changed VERB
.... PUNCT
nope INTJ
.... PUNCT
same ADJ
oldnine NOUN
or CCONJ
ten NUM
crap ADJ
articles NOUN
that SCONJ
this DET
group NOUN
was AUX
never ADV
intended VERB
for ADP
. PUNCT
I PRON
think VERB
it PRON
is AUX
very ADV
hard ADJ
to PART
have AUX
a DET
meaningfull ADJ
group NOUN
without ADP
itbeing VERB
moderated VERB
... PUNCT
too ADV
bad ADJ
. PUNCT
Oh INTJ
well INTJ
, PUNCT
obviously ADV
, PUNCT
no DET
one NOUN
really ADV
cares VERB
. PUNCT
Bill PROPN
ClaussenWould PROPN
anyone PRON
be AUX
interested ADJ
in ADP
starting VERB
a DET
similar ADJ
moderated VERB
group?Bill PROPN
ClaussenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59089From NUM
: PUNCT
billc@col.hp.com X
( PUNCT
Bill PROPN
Claussen)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?Report NOUN
them PRON
to ADP
your PRON
local ADJ
BBB PROPN
( PUNCT
Better PROPN
Business PROPN
Bureau).Bill PROPN
ClaussenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59090From NUM
: PUNCT
ray@engr PROPN
. PUNCT
LaTech.edu PROPN
( PUNCT
Bill PROPN
Ray)Subject VERB
: PUNCT
Re ADP
: PUNCT
Acutane PROPN
, PUNCT
Fibromyalgia PROPN
Syndrome PROPN
and CCONJ
CFSDaniel PROPN
Prince PROPN
( PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
... PUNCT
I PRON
think VERB
they PRON
should AUX
rename VERB
Waco PROPN
TX PROPN
to ADP
Wacko PROPN
TX!I PROPN
know VERB
it PRON
is AUX
just ADV
a DET
joke NOUN
, PUNCT
but CCONJ
please INTJ
remember VERB
: PUNCT
the DET
people NOUN
of ADP
Wacodid PROPN
not PART
ask VERB
David PROPN
Koresh PROPN
to PART
be AUX
a DET
lunatic NOUN
there ADV
, PUNCT
he PRON
just ADV
happened VERB
. PUNCT
Waco NOUN
is AUX
a DET
lovely ADJ
town NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
someone PRON
living VERB
in ADP
the DET
homeof NOUN
flakes NOUN
and CCONJ
nut NOUN
would AUX
be AUX
more ADV
sensitive ADJ
: PUNCT
-)Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59091From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
> X
If SCONJ
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
face NOUN
that SCONJ
there PRON
is AUX
no DET
> X
   SPACE
> X
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
their PRON
safety NOUN
. PUNCT
> X
   SPACE
> X
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as ADV
far ADV
as SCONJ
> X
   SPACE
> X
I PRON
am AUX
concerned.>>This PROPN
does AUX
n't PART
sound VERB
like SCONJ
Candida PROPN
Albicans PROPN
to ADP
me PRON
. PUNCT
No INTJ
, PUNCT
just ADV
a DET
little ADJ
anger NOUN
. PUNCT
  SPACE
Normally ADV
I PRON
do AUX
n't PART
rip VERB
people NOUN
's PART
lips NOUN
off ADP
, PUNCT
exceptwhen ADV
my PRON
candida PROPN
has AUX
overcolonized VERB
and CCONJ
I PRON
become VERB
: PUNCT
  SPACE
" PUNCT
Fungus PROPN
Man PROPN
" PUNCT
! PUNCT
  SPACE
: PUNCT
^)Jon-- PUNCT
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59092From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Thrush PROPN
( PUNCT
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)))In NOUN
article NOUN
< X
21APR199308571323@ucsvax.sdsu.edu X
> X
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M. PROPN
) PUNCT
writes:>Dyer PROPN
is AUX
beyond ADP
rude ADJ
. PUNCT
Yeah INTJ
, PUNCT
yeah INTJ
, PUNCT
yeah INTJ
. PUNCT
  SPACE
I PRON
did AUX
n't PART
threaten VERB
to PART
rip VERB
your PRON
lips NOUN
off ADP
, PUNCT
did AUX
I?Snort.>There PROPN
have AUX
been AUX
and CCONJ
always ADV
will AUX
be AUX
people NOUN
who PRON
are AUX
blinded VERB
by ADP
their PRON
own ADJ
> X
knowledge NOUN
and CCONJ
unopen NOUN
to ADP
anything PRON
that PRON
is AUX
n't PART
already ADV
established VERB
. PUNCT
Given VERB
what PRON
> X
the DET
medical ADJ
community NOUN
does AUX
n't PART
know VERB
, PUNCT
I PRON
'm AUX
surprised ADJ
that SCONJ
he PRON
has AUX
this DET
outlook NOUN
. PUNCT
Duh.>For VERB
the DET
record NOUN
, PUNCT
I PRON
have AUX
had VERB
several ADJ
outbreaks NOUN
of ADP
thrush NOUN
during ADP
the DET
several ADJ
> X
past ADP
few ADJ
years NOUN
, PUNCT
with ADP
no DET
indication NOUN
of ADP
immunosuppression NOUN
or CCONJ
nutritional ADJ
> NOUN
deficiencies NOUN
. PUNCT
I PRON
had AUX
not PART
taken VERB
any DET
antobiotics NOUN
. PUNCT
Listen VERB
: PUNCT
thrush PROPN
is AUX
a DET
recognized VERB
clinical ADJ
syndrome NOUN
with ADP
definitecharacteristics NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
thrush ADJ
, PUNCT
you PRON
have AUX
thrush ADJ
, PUNCT
because SCONJ
you PRON
cansee VERB
the DET
lesions NOUN
and CCONJ
do AUX
a DET
culture NOUN
and CCONJ
when ADV
you PRON
treat VERB
it PRON
, PUNCT
it PRON
generallyresponds VERB
well ADV
, PUNCT
if SCONJ
you PRON
're AUX
not PART
otherwise ADV
immunocompromised VERB
. PUNCT
  SPACE
Noring'sanal ADJ
- PUNCT
retentive ADJ
idee NOUN
fixe NOUN
on ADP
having VERB
a DET
fungal ADJ
infection NOUN
in ADP
his PRON
sinusesis NOUN
not PART
even ADV
in ADP
the DET
same ADJ
category NOUN
here ADV
, PUNCT
nor CCONJ
are AUX
these DET
walking VERB
neurasthenicswho PROPN
are AUX
convinced ADJ
they PRON
have AUX
" PUNCT
candida PROPN
" PUNCT
from ADP
reading VERB
a DET
quack NOUN
book.>My PUNCT
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous:>After PROPN
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased.>When ADV
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
> X
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then ADV
. PUNCT
So?-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59093From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Need PROPN
Reference NOUN
: PUNCT
  SPACE
Multiple PROPN
Personalities PROPN
Disorders NOUN
and CCONJ
AllergiesI PUNCT
heard VERB
third ADJ
- PUNCT
hand NOUN
( PUNCT
not PART
the DET
best ADJ
form NOUN
of ADP
information NOUN
) PUNCT
that SCONJ
there PRON
was AUX
recentlypublished VERB
results NOUN
of ADP
a DET
study NOUN
on ADP
Multiple PROPN
- PUNCT
Personality PROPN
- PUNCT
Disorder PROPN
Syndromepatients NOUN
revealing VERB
some DET
interesting ADJ
clues NOUN
that PRON
the DET
root NOUN
cause NOUN
of ADP
allergy NOUN
mayhave NOUN
a DET
psychological ADJ
trigger NOUN
or CCONJ
basis NOUN
. PUNCT
  SPACE
What PRON
I PRON
heard VERB
about ADP
this DET
study NOUN
was AUX
thatin NOUN
one NUM
' PUNCT
personality NOUN
' PUNCT
, PUNCT
a DET
MPDS PROPN
patient NOUN
exhibited VERB
no DET
observable ADJ
or CCONJ
clinical ADJ
signsof ADJ
inhalant ADJ
allergy NOUN
( PUNCT
scratch NOUN
tests NOUN
were AUX
used VERB
, PUNCT
according VERB
to ADP
what PRON
I PRON
heard),while VERB
in ADP
other ADJ
personalities NOUN
they PRON
showed VERB
obvious ADJ
allergy NOUN
symptoms NOUN
, PUNCT
includingtesting VERB
a DET
full ADJ
+ SYM
+ SYM
+ CCONJ
+ CCONJ
on ADP
scratch NOUN
tests NOUN
for ADP
particular ADJ
inhalants NOUN
. PUNCT
If SCONJ
this DET
is AUX
true ADJ
, PUNCT
it PRON
is AUX
truly ADV
fascinating ADJ
. PUNCT
But CCONJ
, PUNCT
I PRON
'd AUX
like VERB
to PART
know VERB
if SCONJ
this DET
study NOUN
was AUX
ever ADV
done VERB
, PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
what PRON
the DET
studyreally ADV
showed VERB
, PUNCT
and CCONJ
where ADV
the DET
study NOUN
is AUX
published VERB
. PUNCT
  SPACE
Any DET
help NOUN
out ADP
there?Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59094From NUM
: PUNCT
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr21.091844.4035@omen NOUN
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
19687@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>>>Can AUX
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>the DET
lost ADJ
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>exceeds PROPN
the DET
starting NOUN
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>is ADV
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>Not NOUN
one NUM
, PUNCT
but CCONJ
two:>>Obesity NUM
in ADP
Europe PROPN
88,>proceedings NUM
of ADP
the DET
1st ADJ
European ADJ
Congress PROPN
on ADP
Obesity>>Annals NOUN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987 NUM
> X
Hmmm PROPN
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressivebehavior NOUN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)BrianNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59095From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes:>>Many NUM
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the DET
> X
literature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains VERB
> X
tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might AUX
> X
potentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it.>Check PRON
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested ADJ
. PUNCT
Years NOUN
ago ADV
when ADV
I PRON
was AUX
an DET
intern NOUN
, PUNCT
an DET
obese ADJ
young ADJ
woman NOUN
was AUX
brought VERB
intothe NOUN
ER PROPN
comatose NOUN
after ADP
having VERB
been AUX
reported VERB
to PART
have AUX
grand PROPN
mal PROPN
seizureswhy ADV
attending VERB
a DET
" PUNCT
corn NOUN
festival NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
pumped VERB
her PRON
stomach NOUN
and CCONJ
obtainedwhat NOUN
seemed VERB
like SCONJ
a DET
couple NOUN
of ADP
liters NOUN
of ADP
corn NOUN
, PUNCT
much ADJ
of ADP
it PRON
intact ADJ
kernals NOUN
. PUNCT
  SPACE
After ADP
a DET
few ADJ
hours NOUN
she PRON
woke VERB
up ADP
and CCONJ
was AUX
fine ADJ
. PUNCT
  SPACE
I PRON
was AUX
tempted VERB
to PART
sign VERB
her PRON
out ADP
as"acute PUNCT
corn NOUN
intoxication NOUN
. PUNCT
"-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59096From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
1993Apr21.143910.5826@wvnvms.wvnet.edu NUM
> X
pk115050@wvnvms.wvnet.edu ADJ
writes:>My PROPN
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
no DET
> X
medical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed.>>My NUM
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigate VERB
> X
their PRON
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
Morphine PROPN
or CCONJ
demerol NOUN
is AUX
about ADP
the DET
only ADJ
effective ADJ
way NOUN
of ADP
stopping VERB
painthat ADV
severe ADJ
. PUNCT
  SPACE
Obviously ADV
, PUNCT
she PRON
'll AUX
need VERB
a DET
prescription NOUN
to PART
get AUX
such ADJ
drugs NOUN
. PUNCT
Can't ADV
she PRON
go VERB
to ADP
the DET
county NOUN
hospital NOUN
or CCONJ
something?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59097From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
GETTING VERB
AIDS PROPN
FROM ADP
ACUPUNCTURE PROPN
NEEDLES PROPN
   SPACE
someone PRON
wrote VERB
in ADP
expressing VERB
concern NOUN
about ADP
getting VERB
AIDS PROPN
from ADP
acupuncture NOUN
   SPACE
needles NOUN
..... PUNCT
Unless SCONJ
your PRON
friend NOUN
is AUX
sharing VERB
fluids NOUN
with ADP
their PRON
acupuncturist NOUN
who PRON
               SPACE
themselves PRON
has AUX
AIDS PROPN
.. PUNCT
it PRON
is AUX
unlikely ADJ
( PUNCT
not PART
impossible ADJ
) PUNCT
they PRON
will AUX
get AUX
AIDS PROPN
         SPACE
from ADP
acupuncture NOUN
needles NOUN
. PUNCT
Generally ADV
, PUNCT
even ADV
if SCONJ
accidently ADV
inoculated VERB
, PUNCT
the DET
normalimmune ADJ
response NOUN
should AUX
be AUX
enough ADJ
to PART
effectively ADV
handle VERB
the DET
minimal ADJ
contaminant NOUN
involved VERB
with ADP
acupuncture NOUN
needle NOUN
insertion NOUN
. PUNCT
Most ADJ
acupuncturists NOUN
use VERB
disposable ADJ
needles NOUN
... PUNCT
use VERB
once ADV
and CCONJ
throw VERB
away ADV
. PUNCT
They PRON
      SPACE
do AUX
this DET
because SCONJ
you PRON
are AUX
not PART
the DET
only ADJ
one NUM
concerned VERB
about ADP
transmission NOUN
of ADP
diseases NOUN
via ADP
this DET
route NOUN
... PUNCT
so ADV
it PRON
's AUX
good ADJ
business NOUN
to PART
advertise VERB
" PUNCT
disposable ADJ
needlesused ADJ
here ADV
. PUNCT
" PUNCT
These DET
needles NOUN
tend VERB
to PART
be AUX
of ADP
a DET
lower ADJ
quality NOUN
however ADV
, PUNCT
being AUX
poorly ADV
manufactured VERB
and CCONJ
too ADV
" PUNCT
sharp ADJ
" PUNCT
in ADP
my PRON
opinion NOUN
. PUNCT
They PRON
tend VERB
to PART
snag VERB
bloodvessels NOUN
on ADP
insertion NOUN
compared VERB
to ADP
higher ADJ
quality NOUN
needles NOUN
. PUNCT
                                                                        SPACE
If SCONJ
I PRON
choose VERB
to PART
use VERB
acupuncture NOUN
for ADP
a DET
given VERB
complaint NOUN
, PUNCT
that DET
patient NOUN
will AUX
get AUX
their PRON
own ADJ
set NOUN
of ADP
new ADJ
needles NOUN
which PRON
are AUX
sterilized VERB
between ADP
treatments NOUN
. PUNCT
      SPACE
The DET
risk NOUN
here ADV
for ADP
hepatitis PROPN
, PUNCT
HIV PROPN
, PUNCT
etc X
. PUNCT
transmission NOUN
is AUX
that SCONJ
I PRON
could AUX
mistakenly ADV
use VERB
an DET
infected ADJ
persons NOUN
needles NOUN
accidently ADV
on ADP
the DET
wrong ADJ
              SPACE
patient NOUN
... PUNCT
but CCONJ
clear ADJ
labelling NOUN
and CCONJ
paying VERB
attention NOUN
all DET
but CCONJ
eliminates VERB
this DET
risk NOUN
. PUNCT
Better ADJ
quality NOUN
needles NOUN
tend VERB
to PART
" PUNCT
slide VERB
" PUNCT
past ADJ
vessels NOUN
and CCONJ
            SPACE
nerves NOUN
avoiding VERB
unpleasant ADJ
painful ADJ
snags NOUN
.. PUNCT
and CCONJ
hematomas NOUN
... PUNCT
so CCONJ
I PRON
use VERB
them PRON
. PUNCT
                        SPACE
Acupuncture PROPN
needles NOUN
come VERB
in ADP
many ADJ
lengths NOUN
and CCONJ
thicknesses NOUN
... PUNCT
but CCONJ
they PRON
are AUX
all DET
solid ADJ
when ADV
compared VERB
to ADP
their PRON
injection NOUN
- PUNCT
style NOUN
cousins NOUN
. PUNCT
In ADP
China PROPN
, PUNCT
herbal ADJ
solutionsand NOUN
western ADJ
pharmaceuticals NOUN
are AUX
occasionally ADV
injected VERB
into ADP
meridian ADJ
points NOUN
purported VERB
to PART
have AUX
TCM PROPN
physiologic ADJ
effects NOUN
and CCONJ
so ADV
require VERB
the DET
same ADJ
hollow ADJ
needles NOUN
used VERB
for ADP
injecting VERB
fluid ADJ
medicine NOUN
. PUNCT
This DET
means VERB
... PUNCT
thinkingtiny PROPN
... PUNCT
that SCONJ
a DET
samll NOUN
amount NOUN
of ADP
tissue NOUN
, PUNCT
the DET
diameter NOUN
of ADP
the DET
needle NOUN
bore NOUN
, PUNCT
will AUX
be AUX
injected VERB
into ADP
the DET
body NOUN
as SCONJ
it PRON
would AUX
  SPACE
be AUX
in ADP
a DET
typical ADJ
" PUNCT
shot NOUN
. PUNCT
" PUNCT
when ADV
the DET
skin NOUN
is AUX
puntured VERB
. PUNCT
On ADP
the DET
other ADJ
hand NOUN
when ADV
the DET
solid ADJ
acupuncture NOUN
needle NOUN
is AUX
inserted VERB
, PUNCT
the DET
skin NOUN
tends VERB
to PART
" PUNCT
squeeze VERB
" PUNCT
the DET
needle NOUN
from ADP
the DET
tip NOUN
to ADP
the DET
level NOUN
of ADP
insertion NOUN
such ADJ
that SCONJ
any DET
' PUNCT
cooties NOUN
' PUNCT
that PRON
have AUX
n't PART
been AUX
schmeared VERB
away ADP
with ADP
alcohol NOUN
before ADP
insertion NOUN
, PUNCT
tend VERB
to PART
remain VERB
on ADP
the DET
surface NOUN
of ADP
the DET
skin NOUN
minimizing VERB
invasion NOUN
from ADP
the DET
exterior NOUN
. PUNCT
Of ADV
course ADV
in ADP
TCM PROPN
... PUNCT
the DET
body NOUN
's PART
exterior NOUN
is AUX
protected VERB
by ADP
the DET
Wei PROPN
( PUNCT
Protective PROPN
) PUNCT
Qi INTJ
.. PUNCT
so ADV
infection NOUN
is AUX
unlikely ADJ
.... PUNCT
or CCONJ
in ADP
other ADJ
words NOUN
... PUNCT
there PRON
is AUX
a DET
normal ADJ
inflammatory ADJ
and CCONJ
immune ADJ
response NOUN
that SCONJ
accompanies VERB
tissue NOUN
damage NOUN
incurred VERB
at ADP
the DET
puncture NOUN
site NOUN
. PUNCT
While SCONJ
I PRON
'm AUX
fairly ADV
certain ADJ
your PRON
friend NOUN
will AUX
not PART
have AUX
a DET
transferable ADJ
disease NOUN
transmitted VERB
to ADP
them PRON
via ADP
acupuncture NOUN
needle NOUN
insertion NOUN
, PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
for ADP
what PRON
complaint NOUN
they PRON
have AUX
consulted VERB
the DET
acupuncturist NOUN
... PUNCT
not PART
to PART
know VERB
  SPACE
if SCONJ
it PRON
would AUX
be AUX
harmful ADJ
.. PUNCT
but CCONJ
to PART
know VERB
if SCONJ
it PRON
would AUX
be AUX
helpful ADJ
. PUNCT
John PROPN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.edu PROPN
                                                                                                      SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59098From NUM
: PUNCT
E.J. PROPN
Draper PROPN
< X
draper@odin.mda.uth.tmc.edu>Subject X
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?In PROPN
article NOUN
< X
9551@blue.cis.pitt.edu NUM
> X
Kenneth PROPN
Gilbert PROPN
, PUNCT
kxgst1+@pitt.eduwrites:>This PROPN
is AUX
one NUM
of ADP
those DET
sticky ADJ
areas NOUN
of ADP
medicine NOUN
where ADV
battles NOUN
frequently ADV
> X
rage NOUN
. PUNCT
  SPACE
With ADP
respect NOUN
to ADP
your PRON
OB NOUN
, PUNCT
I PRON
suspect VERB
that SCONJ
she PRON
has AUX
been AUX
certified VERB
in ADP
> NUM
ultrasound ADJ
diagnostics NOUN
, PUNCT
and CCONJ
is AUX
thus ADV
allowed VERB
to PART
use VERB
it PRON
and CCONJ
bill NOUN
for ADP
its PRON
> X
use NOUN
. PUNCT
  SPACE
Many ADJ
cardiologists NOUN
also ADV
use VERB
ultrasound NOUN
( PUNCT
echocardiography NOUN
) PUNCT
, PUNCT
and CCONJ
are AUX
> X
in ADP
fact NOUN
considered VERB
by ADP
many ADJ
to PART
be AUX
the DET
' PUNCT
experts NOUN
' PUNCT
. PUNCT
  SPACE
I PRON
am AUX
not PART
sure ADJ
where ADV
OBs NOUN
> X
stand VERB
in ADP
this DET
regard NOUN
, PUNCT
but CCONJ
I PRON
suspect VERB
that SCONJ
they PRON
are AUX
at ADP
least ADJ
as ADV
good ADJ
as SCONJ
the DET
> NOUN
radioligists NOUN
( PUNCT
flame ADJ
- PUNCT
retardant NOUN
suit NOUN
ready).If NOUN
it PRON
were AUX
my PRON
wife NOUN
, PUNCT
I PRON
would AUX
insist VERB
that SCONJ
a DET
radiologist NOUN
be AUX
involved VERB
in ADP
theprocess NOUN
. PUNCT
  SPACE
Radiologist NOUN
are AUX
intensively ADV
trained VERB
in ADP
the DET
process NOUN
ofinterpreting VERB
diagnostic ADJ
imaging NOUN
data NOUN
and CCONJ
are AUX
aware ADJ
of ADP
many ADJ
things NOUN
thatother ADP
physicians NOUN
are AUX
n't PART
aware ADJ
of ADP
. PUNCT
  SPACE
Would AUX
you PRON
want VERB
a DET
radiologist NOUN
todeliver VERB
your PRON
baby NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
would AUX
n't PART
, PUNCT
then ADV
why ADV
would AUX
you PRON
want VERB
a DET
OB PROPN
/ SYM
GYN PROPN
toread VERB
your PRON
ultrasound NOUN
study?In PROPN
my PRON
opinion NOUN
the DET
process NOUN
should AUX
involve VERB
a DET
OB PROPN
/ SYM
GYN PROPN
and CCONJ
a DET
radiologist NOUN
. PUNCT
      SPACE
|E|J- PUNCT
  SPACE
ED PROPN
DRAPER PROPN
rEpar|D|<- PROPN
  SPACE
Radiologic PROPN
/ SYM
Pathologic PROPN
Institute PROPN
             SPACE
The DET
University PROPN
of ADP
Texas PROPN
M.D. PROPN
Anderson PROPN
Cancer PROPN
Center PROPN
             SPACE
draper@odin.mda.uth.tmc.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59099From NUM
: PUNCT
mrl@pfc.mit.edu PROPN
( PUNCT
Mark PROPN
London)Subject PROPN
: PUNCT
Corneal ADJ
erosion NOUN
/ SYM
abrasions NOUN
. PUNCT
For ADP
several ADJ
years NOUN
I PRON
have AUX
been AUX
dealing VERB
with ADP
reccurring VERB
corneal ADJ
  SPACE
erosion NOUN
. PUNCT
    SPACE
Theredoes NOUN
  SPACE
not PART
  SPACE
seem VERB
  SPACE
to PART
be AUX
much ADV
known VERB
about ADP
the DET
cause NOUN
of ADP
such DET
a DET
problem NOUN
. PUNCT
  SPACE
My PRON
currentepisode NOUN
is AUX
pretty ADV
bad ADJ
since SCONJ
it PRON
is AUX
located VERB
in ADP
the DET
middle NOUN
of ADP
the DET
cornea NOUN
. PUNCT
  SPACE
If SCONJ
  SPACE
it'sbad X
  SPACE
enough ADV
, PUNCT
the DET
usual ADJ
treatment NOUN
for ADP
it PRON
is AUX
puncture NOUN
therapy NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
my PRON
doctorthis ADJ
time NOUN
is AUX
trying VERB
to PART
let VERB
it PRON
heal VERB
by ADP
  SPACE
itself PRON
  SPACE
by ADP
  SPACE
putting VERB
  SPACE
a DET
  SPACE
contact NOUN
  SPACE
lens PROPN
  SPACE
toprotect VERB
the DET
area NOUN
. PUNCT
  SPACE
Apparently ADV
the DET
problem NOUN
is AUX
not PART
that ADV
common ADJ
, PUNCT
but CCONJ
I PRON
'd AUX
be AUX
curiousif ADP
anyone PRON
else ADV
out ADV
there ADV
has AUX
a DET
similar ADJ
problem NOUN
, PUNCT
perhaps ADV
to PART
see VERB
if SCONJ
a DET
cause NOUN
can AUX
befound VERB
. PUNCT
Mark PROPN
LondonMRL@NERUS.PFC.MIT.EDUNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59100From NUM
: PUNCT
russ@pmafire.inel.gov PROPN
( PUNCT
Russ PROPN
Brown)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Altitude NOUN
adjustmentIn PROPN
article NOUN
< X
4159@mdavcr.mda.ca NUM
> X
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
writes:>I PRON
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
cities NOUN
> X
quite ADV
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000 NUM
> X
feet NOUN
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
Mexico PROPN
City PROPN
, PUNCT
Bogota PROPN
, PUNCT
La PROPN
Paz?>>Often PROPN
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
and CCONJ
> X
my PRON
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
very ADV
> X
dry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keep VERB
> X
away ADV
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol.>>Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there>(no X
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?>Is NOUN
there ADV
something PRON
else ADV
that PRON
I PRON
could AUX
do?Go SYM
three NUM
days NOUN
early ADV
. PUNCT
  SPACE
Preliminary ADJ
acclimatization NOUN
takes VERB
3 NUM
- SYM
4 NUM
days NOUN
. PUNCT
  SPACE
Ittakes ADJ
weeks NOUN
or CCONJ
months NOUN
for ADP
full ADJ
acclimatization NOUN
. PUNCT
  SPACE
Could AUX
you PRON
beexperiencing VERB
some DET
jet NOUN
lag NOUN
, PUNCT
too?Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59101From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5snsx.KMo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>There PROPN
is AUX
no DET
convincing ADJ
evidence NOUN
that SCONJ
such DET
a DET
disease NOUN
exists.>There PROPN
's AUX
a DET
lot NOUN
of ADP
evidence NOUN
, PUNCT
it PRON
just ADV
has AUX
n't PART
been AUX
adequately ADV
gathered VERB
and CCONJ
> X
published VERB
in ADP
a DET
way NOUN
that PRON
will AUX
convince VERB
the DET
die ADJ
- PUNCT
hard ADJ
melancholic ADJ
skeptics NOUN
> X
who PRON
quiver ADV
everytime ADV
the DET
word NOUN
' PUNCT
anecdote NOUN
' PUNCT
or CCONJ
' PUNCT
empirical ADJ
' PUNCT
is AUX
used VERB
. PUNCT
No INTJ
, PUNCT
there PRON
's AUX
no DET
evidence NOUN
that PRON
would AUX
convince VERB
any DET
but SCONJ
the DET
most ADV
credulous ADJ
. PUNCT
The DET
" PUNCT
evidence NOUN
" PUNCT
is AUX
identical ADJ
to ADP
the DET
sort NOUN
of ADP
evidence NOUN
that PRON
has AUX
beenused VERB
to PART
justify VERB
all DET
sorts NOUN
of ADP
quack NOUN
treatments NOUN
for ADP
quack PROPN
diseasesin PROPN
the DET
past.>medicine NOUN
on ADP
the DET
right ADJ
road NOUN
. PUNCT
  SPACE
But CCONJ
methinks NOUN
that SCONJ
some DET
who PRON
hold VERB
too ADV
firmly ADV
> X
to ADP
the DET
party NOUN
line NOUN
are AUX
academics NOUN
who PRON
have AUX
n't PART
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough ADV
> X
actually ADV
treating VERB
patients NOUN
. PUNCT
I PRON
like VERB
the DET
implication NOUN
here ADV
. PUNCT
  SPACE
It PRON
must AUX
not PART
be AUX
that SCONJ
the DET
quacks NOUN
makingmillions NOUN
off ADP
such ADJ
" PUNCT
diseases NOUN
" PUNCT
are AUX
biased VERB
-- PUNCT
rather ADV
that SCONJ
those DET
whodoubt VERB
their PRON
existence NOUN
do AUX
n't PART
understand VERB
the DET
real ADJ
world NOUN
. PUNCT
  SPACE
It PRON
seemseasy VERB
to PART
picture VERB
a DET
19th ADJ
centure NOUN
snake NOUN
oil NOUN
salesman NOUN
saying VERB
the DET
samething NOUN
. PUNCT
However ADV
, PUNCT
I PRON
have AUX
been AUX
in ADP
the DET
trenches NOUN
long ADV
enough ADV
to PART
have AUX
seen VERB
multiplequack NOUN
diseases NOUN
rise VERB
and CCONJ
fall VERB
in ADP
popularity NOUN
. PUNCT
  SPACE
" PUNCT
Systemic ADJ
yeast NOUN
syndome"seems NOUN
to PART
be AUX
making VERB
a DET
resurgence NOUN
( PUNCT
it PRON
had AUX
fallen VERB
off ADP
a DET
few ADJ
years NOUN
ago).There ADV
will AUX
be AUX
new ADJ
such ADJ
" PUNCT
diseases NOUN
" PUNCT
I PRON
'm AUX
sure ADJ
with ADP
best ADV
- PUNCT
selling VERB
booksand NOUN
expensive ADJ
therapies.>If PROPN
anybody PRON
, PUNCT
doctors NOUN
included VERB
, PUNCT
said VERB
to ADP
me PRON
to ADP
my PRON
> X
face NOUN
that SCONJ
there PRON
is AUX
no DET
evidence NOUN
of ADP
the DET
' PUNCT
yeast NOUN
connection NOUN
' PUNCT
, PUNCT
I PRON
can AUX
not PART
guarantee VERB
> X
their PRON
safety NOUN
. PUNCT
  SPACE
For ADP
their PRON
incompetence NOUN
, PUNCT
ripping VERB
off ADP
their PRON
lips NOUN
is AUX
justified VERB
as SCONJ
> X
far ADV
as SCONJ
I PRON
am AUX
concerned ADJ
. PUNCT
Well INTJ
this DET
, PUNCT
of ADP
course NOUN
, PUNCT
is AUX
convincing VERB
. PUNCT
  SPACE
I PRON
guess VERB
I PRON
'd AUX
better ADV
start VERB
diagnosingany ADJ
illnesses NOUN
that SCONJ
people NOUN
want VERB
so SCONJ
that SCONJ
I PRON
can AUX
keep VERB
my PRON
lips.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59102From NUM
: PUNCT
< X
ICGLN@ASUACAD.BITNET VERB
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"A PROPN
good ADJ
source NOUN
of ADP
information NOUN
on ADP
Burzynski PROPN
's PART
method NOUN
is AUX
in ADP
* PUNCT
The DET
Cancer PROPN
Industry*by PROPN
pulitzer NOUN
- PUNCT
prize NOUN
nominee NOUN
Ralph PROPN
Moss PROPN
. PUNCT
Also ADV
, PUNCT
a DET
non ADJ
- ADJ
profit ADJ
organization NOUN
called"People NOUN
Against ADP
Cancer PROPN
, PUNCT
" PUNCT
which PRON
was AUX
formed VERB
for ADP
the DET
purpose NOUN
of ADP
allowing VERB
cancerpatients NOUN
to PART
access VERB
information NOUN
regarding VERB
cancer NOUN
therapies NOUN
not PART
endorsed VERB
by ADP
thecancer NOUN
industry NOUN
, PUNCT
but CCONJ
which PRON
have AUX
shown VERB
highly ADV
promising ADJ
results NOUN
( PUNCT
all DET
of ADP
whichare ADJ
non ADJ
- ADJ
toxic ADJ
) PUNCT
. PUNCT
Anyone PRON
interested ADJ
in ADP
cancer NOUN
therapy NOUN
should AUX
contact VERB
this DET
organi PROPN
- PUNCT
zation PROPN
ASAP PROPN
: PUNCT
              SPACE
People NOUN
Against ADP
Cancer PROPN
                          SPACE
PO PROPN
Box PROPN
10 NUM
                          SPACE
Otho PROPN
IA PROPN
50569 NUM
- PUNCT
0010(515)972 NOUN
- PUNCT
4444FAX PROPN
( PUNCT
515)972 NUM
- PUNCT
4415peacegreg NUM
nighNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59103From NUM
: PUNCT
gmark@cbnewse.cb.att.com X
( PUNCT
gilbert.m.stewart)Subject NOUN
: PUNCT
oxaprozin?Anyone NOUN
have AUX
any DET
information NOUN
on ADP
the DET
effects NOUN
/ SYM
origin NOUN
of ADP
oxaprozin?It PROPN
's PART
marketed VERB
under ADP
the DET
name NOUN
" PUNCT
DAYpro PROPN
" PUNCT
, PUNCT
and CCONJ
appears VERB
to PART
be AUX
ananti ADJ
- PUNCT
inflammatory ADJ
. PUNCT
  SPACE
Is AUX
it PRON
similar ADJ
to ADP
naproxin PROPN
? PUNCT
  SPACE
Stronger?TIAGMSNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59104From NUM
: PUNCT
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M.)Subject PROPN
: PUNCT
Thrush PROPN
( PUNCT
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)))In NOUN
article NOUN
< X
aldridgeC5tH63.7yA@netcom.com X
> X
, PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldri PROPN
writes...>dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
etc X
. PUNCT
... PUNCT
> X
> X
Dyer PROPN
, PUNCT
you PRON
're AUX
rude ADJ
. PUNCT
Medicine NOUN
is AUX
not PART
a DET
totallly ADV
scientific ADJ
endevour NOUN
. PUNCT
It's PROPN
> X
often ADV
practiced VERB
in ADP
a DET
disorganized ADJ
manner NOUN
. PUNCT
Most ADV
early ADJ
treatment NOUN
of ADP
> X
non ADJ
- ADJ
life ADJ
threatening VERB
illness NOUN
is AUX
done VERB
on ADP
a DET
guess NOUN
, PUNCT
hazarded VERB
after ADP
anecdotal ADJ
> X
evidence NOUN
given VERB
by ADP
the DET
patient NOUN
. PUNCT
It PRON
's AUX
an DET
educated ADJ
guess NOUN
, PUNCT
by ADP
a DET
trained VERB
person,>but NOUN
it PRON
's AUX
still ADV
no ADV
more ADJ
than SCONJ
a DET
guess.>It PROPN
's PART
cheaper ADJ
and CCONJ
simpler ADJ
to PART
medicate VERB
first ADJ
and CCONJ
only ADV
deal VERB
further ADV
with ADP
those DET
> X
people NOUN
who PRON
do AUX
n't PART
respond VERB
. PUNCT
> X
Dyer PROPN
is AUX
beyond ADP
rude ADJ
. PUNCT
There PRON
have AUX
been AUX
and CCONJ
always ADV
will AUX
be AUX
people NOUN
who PRON
are AUX
blinded VERB
by ADP
their PRON
own ADJ
knowledge NOUN
and CCONJ
unopen NOUN
to ADP
anything PRON
that PRON
is AUX
n't PART
already ADV
established VERB
. PUNCT
Given VERB
what PRON
the DET
medical ADJ
community NOUN
does AUX
n't PART
know VERB
, PUNCT
I PRON
'm AUX
surprised ADJ
that SCONJ
he PRON
has AUX
this DET
outlook NOUN
. PUNCT
For ADP
the DET
record NOUN
, PUNCT
I PRON
have AUX
had VERB
several ADJ
outbreaks NOUN
of ADP
thrush NOUN
during ADP
the DET
several ADJ
past ADJ
few ADJ
years NOUN
, PUNCT
with ADP
no DET
indication NOUN
of ADP
immunosuppression NOUN
or CCONJ
nutritional ADJ
deficiencies NOUN
. PUNCT
I PRON
had AUX
not PART
taken VERB
any DET
antobiotics NOUN
. PUNCT
My PRON
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous ADJ
: PUNCT
After ADP
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased VERB
. PUNCT
When ADV
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then ADV
. PUNCT
* PUNCT
Mike PROPN
McCurdy PROPN
                       SPACE
* PUNCT
University PROPN
Computing PROPN
Services PROPN
     SPACE
Disclaimer NOUN
: PUNCT
* PUNCT
San PROPN
Diego PROPN
State PROPN
University PROPN
* PUNCT
mccurdy@ucsvax.sdsu.edu PROPN
            SPACE
" PUNCT
Everything PRON
I PRON
say VERB
may AUX
be AUX
wrong"Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59105From NUM
: PUNCT
jason@ab20.larc.nasa.gov PROPN
( PUNCT
Jason PROPN
Austin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5Mv3v.2o5@world.std.com NOUN
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes:- PROPN
> X
- PUNCT
> X
Some DET
recent ADJ
postings NOUN
remind VERB
me PRON
that SCONJ
I PRON
had AUX
read VERB
about ADP
risks NOUN
- PUNCT
> X
associated VERB
with ADP
the DET
barbecuing NOUN
of ADP
foods NOUN
, PUNCT
namely ADV
that SCONJ
carcinogens VERB
- PUNCT
> X
are AUX
generated VERB
. PUNCT
Is AUX
this DET
a DET
valid ADJ
concern NOUN
? PUNCT
If SCONJ
so ADV
, PUNCT
is AUX
it PRON
a DET
function NOUN
- PUNCT
> X
of ADP
the DET
smoke NOUN
or CCONJ
the DET
elevated ADJ
temperatures NOUN
? PUNCT
Is AUX
it PRON
a DET
function NOUN
of ADP
- PUNCT
> X
the DET
cooking NOUN
elements NOUN
, PUNCT
wood NOUN
or CCONJ
charcoal NOUN
vs. X
lava PROPN
rocks NOUN
? PUNCT
I PRON
wish VERB
- PUNCT
> X
to PART
know VERB
more ADJ
. PUNCT
Thanks NOUN
. PUNCT
	 SPACE
I PRON
've AUX
read VERB
mixed ADJ
opinions NOUN
on ADP
this DET
. PUNCT
  SPACE
Singed VERB
meat NOUN
can AUX
containcarcinogens PROPN
, PUNCT
but CCONJ
unless SCONJ
you PRON
eat VERB
barbecued VERB
meat NOUN
every DET
meal NOUN
, PUNCT
you'reprobably ADV
not PART
at ADP
much ADJ
risk NOUN
. PUNCT
  SPACE
I PRON
think VERB
I PRON
will AUX
live VERB
life NOUN
on ADP
the DET
edge NOUN
andgrill NOUN
my PRON
food NOUN
. PUNCT
	 SPACE
I PRON
've AUX
also ADV
read VERB
that SCONJ
using VERB
petroleum NOUN
based VERB
charcoal NOUN
starter NOUN
canput VERB
some DET
unwanted ADJ
toxins NOUN
in ADP
your PRON
food NOUN
, PUNCT
or CCONJ
at ADP
least ADJ
unwanted ADJ
odor NOUN
. PUNCT
I've ADJ
been AUX
using VERB
egg PROPN
carton PROPN
cups NOUN
dipped VERB
in ADP
paraffin PROPN
for ADP
fire NOUN
starters NOUN
, PUNCT
and CCONJ
it PRON
actually ADV
lights VERB
faster ADV
and CCONJ
easier ADJ
than SCONJ
lighter ADJ
fluid NOUN
. PUNCT
  SPACE
Severalpeople PROPN
have AUX
told VERB
me PRON
that SCONJ
they PRON
have AUX
excellent ADJ
results NOUN
with ADP
a DET
chimney NOUN
, PUNCT
basically ADV
a DET
steel NOUN
cylinder NOUN
with ADP
wholes NOUN
punched VERB
in ADP
the DET
side NOUN
. PUNCT
  SPACE
I PRON
've AUX
beenmeaning VERB
to PART
get AUX
one NUM
of ADP
these DET
, PUNCT
but CCONJ
one NOUN
has AUX
n't PART
presented VERB
itself PRON
whileI've NOUN
been AUX
out ADV
shopping VERB
. PUNCT
  SPACE
You PRON
can AUX
make VERB
one NUM
from ADP
a DET
coffee NOUN
can AUX
, PUNCT
but CCONJ
I PRON
buymy VERB
coffee NOUN
as SCONJ
whole ADJ
beans NOUN
in ADP
a DET
bag NOUN
, PUNCT
so ADV
I PRON
have AUX
n't PART
had VERB
a DET
big ADJ
enough ADJ
canlaying NOUN
around.--Jason X
C. PROPN
Austinj.c.austin@larc.nasa.govNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59106From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
In ADP
article NOUN
< X
1993Apr20.184034.13779@dbased.nuo.dec.com NUM
> X
dufault@lftfld.enet.dec.com PROPN
( PUNCT
MD PROPN
) PUNCT
writes:>>If PROPN
anyone PRON
knows VERB
of ADP
any DET
database NOUN
or CCONJ
newsgroup NOUN
or CCONJ
as SCONJ
I PRON
mentioned VERB
up ADP
above,>any CCONJ
information NOUN
relating VERB
to ADP
this DET
disorder NOUN
I PRON
would AUX
sure ADV
appreciate VERB
hearing VERB
> X
from ADP
you PRON
. PUNCT
I PRON
am AUX
not PART
trying VERB
to PART
play VERB
doctor NOUN
here ADV
, PUNCT
but CCONJ
only ADV
trying VERB
to PART
gather VERB
> X
information NOUN
about ADP
it PRON
. PUNCT
As SCONJ
I PRON
know VERB
now ADV
, PUNCT
these DET
particular ADJ
types NOUN
of ADP
disorders NOUN
> X
are AUX
still ADV
not PART
really ADV
well ADV
understood VERB
by ADP
the DET
medical ADJ
community NOUN
, PUNCT
and CCONJ
so ADV
I'm NOUN
> X
going VERB
to PART
see VERB
now ADV
.... PUNCT
if SCONJ
somehow ADV
the DET
internet NOUN
can AUX
at ADV
least ADJ
give VERB
me PRON
alittle NOUN
> X
insight NOUN
. PUNCT
Thanks NOUN
. PUNCT
There PRON
is AUX
no DET
database NOUN
for ADP
infantile ADJ
spasms NOUN
, PUNCT
nor CCONJ
a DET
newsgroup NOUN
, PUNCT
that SCONJ
Iknow PROPN
of ADP
. PUNCT
  SPACE
The DET
medical ADJ
library NOUN
will AUX
be AUX
the DET
best ADJ
source NOUN
of ADP
informationfor ADJ
you.-- NUM
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59107From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyIn PROPN
article NOUN
< X
C5sy24.LF4@watson.ibm.com PROPN
> X
yozzo@watson.ibm.com PROPN
( PUNCT
Ralph PROPN
Yozzo PROPN
) PUNCT
writes:>>Why PUNCT
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures.>>They PROPN
poo NOUN
- PUNCT
poo NOUN
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I PRON
've AUX
> X
> X
Are AUX
you PRON
arguing VERB
that SCONJ
the DET
Lyme PROPN
lab NOUN
test NOUN
is AUX
accurate?If PROPN
you PRON
culture VERB
out ADP
the DET
spirochete NOUN
, PUNCT
it PRON
is AUX
virtually ADV
100 NUM
% NOUN
certainthe ADJ
patient NOUN
has AUX
Lyme PROPN
. PUNCT
  SPACE
I PRON
suppose VERB
you PRON
could AUX
have AUX
contaminationin NOUN
an DET
exceptionally ADV
sloppy ADJ
lab NOUN
, PUNCT
but CCONJ
normally ADV
not PART
. PUNCT
  SPACE
There PRON
are AUX
nofalse ADJ
positives.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59108From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
OB PROPN
- PUNCT
GYN PROPN
residencyIn PROPN
article NOUN
< X
1r12bv$55e@terminator.rs.itd.umich.edu NUM
> X
Donald_Mackie@med.umich.edu NOUN
( PUNCT
Donald PROPN
Mackie PROPN
) PUNCT
writes:>>FMGs PROPN
who PRON
are AUX
not PART
citizens NOUN
are AUX
, PUNCT
like SCONJ
all DET
aliens NOUN
, PUNCT
in ADP
a DET
difficult ADJ
> NOUN
situation NOUN
. PUNCT
Only ADJ
citizens NOUN
get VERB
to PART
vote VERB
here ADV
, PUNCT
so ADV
non ADJ
- NOUN
citizens NOUN
are AUX
of ADP
> X
little ADJ
or CCONJ
no DET
interest NOUN
to ADP
legislators NOUN
. PUNCT
Also ADV
, PUNCT
the DET
non ADJ
- ADJ
citizen NOUN
may AUX
well ADV
> X
be AUX
in ADP
the DET
middle NOUN
of ADP
processing NOUN
for ADP
resident ADJ
alien ADJ
status NOUN
. PUNCT
There PRON
is AUX
a DET
> X
stron ADJ
sense NOUN
that SCONJ
rocking VERB
the DET
boat NOUN
( PUNCT
eg INTJ
. PUNCT
suing VERB
a DET
residency NOUN
program)>will PUNCT
delay VERB
the DET
granting NOUN
of ADP
that DET
status NOUN
, PUNCT
perhaps ADV
for ADP
ever.>One PROPN
should AUX
be AUX
aware ADJ
that SCONJ
foreign ADJ
doctors NOUN
admitted VERB
for ADP
trainingare NOUN
ineligible ADJ
to PART
apply VERB
for ADP
resident ADJ
alien ADJ
status NOUN
. PUNCT
  SPACE
In ADP
orderto ADJ
get AUX
the DET
green ADJ
card NOUN
they PRON
have AUX
to PART
return VERB
to ADP
their PRON
country NOUN
andapply ADV
at ADP
the DET
embassy NOUN
there ADV
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
many ADJ
somehow ADV
get VERB
aroundthis DET
problem NOUN
. PUNCT
  SPACE
Often ADV
it PRON
is AUX
by ADP
agreeing VERB
to PART
practice VERB
in ADP
a DET
townwith NOUN
a DET
need NOUN
and CCONJ
then ADV
the DET
congressman NOUN
from ADP
that DET
district PROPN
tacksa PROPN
rider NOUN
onto ADP
a DET
bill NOUN
saying VERB
" PUNCT
Dr. PROPN
X PROPN
will AUX
be AUX
allowed VERB
to PART
have AUX
permanentresidency NOUN
in ADP
the DET
US PROPN
. PUNCT
" PUNCT
  SPACE
A DET
lot NOUN
of ADP
bills NOUN
in ADP
congress PROPN
have AUX
such ADJ
ridersattached VERB
to ADP
them PRON
. PUNCT
  SPACE
Marrying VERB
a DET
US PROPN
citizen NOUN
is AUX
the DET
most ADV
common ADJ
, PUNCT
althoughnow INTJ
they PRON
are AUX
even ADV
cracking VERB
down ADP
on ADP
that DET
and CCONJ
trying VERB
to PART
tell VERB
UScitizens PROPN
they PRON
must AUX
follow VERB
their PRON
spouse NOUN
back ADV
to ADP
the DET
Phillipines PROPN
, PUNCT
orwhereever.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59109From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
" PUNCT
liver NOUN
" PUNCT
spotsIn PROPN
article NOUN
< X
1993Apr19.162502.29802@news.eng.convex.com PROPN
> X
cash@convex.com X
( PUNCT
Peter PROPN
Cash PROPN
) PUNCT
writes:>What DET
causes VERB
those DET
little ADJ
brown ADJ
spots NOUN
on ADP
older ADJ
people NOUN
's PART
hands NOUN
? PUNCT
Are AUX
they PRON
> X
called VERB
" PUNCT
liver NOUN
spots NOUN
" PUNCT
because SCONJ
they PRON
're AUX
sort ADV
of ADV
liver NOUN
- PUNCT
colored ADJ
, PUNCT
or CCONJ
do AUX
they PRON
> X
indicate VERB
some DET
actual ADJ
liver NOUN
dysfunction?Senile NOUN
keratoses NOUN
. PUNCT
  SPACE
Have AUX
nothing PRON
to PART
do AUX
with ADP
the DET
liver.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59110From NUM
: PUNCT
karl@anasazi.com X
( PUNCT
Karl PROPN
Dussik)Subject NUM
: PUNCT
Re ADP
: PUNCT
Dana PROPN
- PUNCT
Faber PROPN
Cancer PROPN
Institute PROPN
In ADP
article NOUN
< X
1993Apr14.090306.3352@etek.chalmers.se NOUN
> X
e2salim@etek.chalmers.se PUNCT
( PUNCT
Salim PROPN
Chagan PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Can AUX
anyone PRON
send VERB
me PRON
the DET
adress NOUN
to ADP
> X
	 SPACE
Dana PROPN
- PUNCT
Faber PROPN
Cancer PROPN
Institute PROPN
in ADP
Boston PROPN
, PUNCT
USA PROPN
. PUNCT
              SPACE
^^ NUM
missing VERB
" PUNCT
r"Dana PROPN
- PUNCT
Farber PROPN
Cancer PROPN
Institute44 PROPN
Binney PROPN
StreetBoston PROPN
, PUNCT
MA PROPN
  SPACE
02115(617)732 PROPN
- PUNCT
3000Karl NUM
Dussik("Alumnus PROPN
" PUNCT
- PUNCT
Department PROPN
of ADP
Biostatistics PROPN
and CCONJ
Epidemiology PROPN
, PUNCT
1983 NUM
- SYM
1986)Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59111From NUM
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?Sharon NOUN
Paulson PROPN
( PUNCT
paulson@tab00.larc.nasa.gov PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
{ PUNCT
much ADV
deleted VERB
] PUNCT
: PUNCT
: PUNCT
: PUNCT
The DET
fact NOUN
that SCONJ
this DET
happened VERB
while SCONJ
eating VERB
two NUM
sugar NOUN
coated VERB
cereals NOUN
made VERB
: PUNCT
by ADP
Kellog PROPN
's PART
makes VERB
me PRON
think VERB
she PRON
might AUX
be AUX
having VERB
an DET
allergic ADJ
reaction NOUN
to ADP
: PUNCT
something PRON
in ADP
the DET
coating NOUN
or CCONJ
the DET
cereals NOUN
. PUNCT
  SPACE
Of ADP
the DET
four NUM
of ADP
us PRON
in ADP
our PRON
: PUNCT
immediate ADJ
family NOUN
, PUNCT
Kathryn PROPN
shows VERB
the DET
least ADJ
signs NOUN
of ADP
the DET
hay NOUN
fever NOUN
, PUNCT
running VERB
: PUNCT
nose NOUN
, PUNCT
itchy ADJ
eyes NOUN
, PUNCT
etc X
. PUNCT
but CCONJ
we PRON
have AUX
a DET
lot NOUN
of ADP
allergies NOUN
in ADP
our PRON
family NOUN
history NOUN
: PUNCT
including VERB
some DET
weird ADJ
food NOUN
allergies NOUN
- PUNCT
nuts NOUN
, PUNCT
mushrooms NOUN
. PUNCT
: PUNCT
Many ADJ
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
theliterature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
containstryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
mightpotentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it PRON
. PUNCT
Check VERB
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested.--David ADP
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Healthdozonoff@med-itvax1.bu.edu PROPN
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C(617 PROPN
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59112From NUM
: PUNCT
Lauger@ssdgwy.mdc.com PROPN
( PUNCT
John PROPN
Lauger)Subject PROPN
: PUNCT
Imitrex PROPN
and CCONJ
heart NOUN
attacks?My NOUN
girlfriend NOUN
just ADV
started VERB
taking VERB
Imitrex PROPN
for ADP
her PRON
migraine ADJ
headaches NOUN
. PUNCT
  SPACE
Herneurologist PROPN
diagnosed VERB
her PRON
as SCONJ
having VERB
depression NOUN
and CCONJ
suffering NOUN
from ADP
reboundheadaches NOUN
due ADJ
to ADP
daily ADJ
doses NOUN
of ADP
analgesics NOUN
. PUNCT
  SPACE
She PRON
stopped VERB
taking VERB
allanalgesics NOUN
and CCONJ
caffine NOUN
as SCONJ
of ADP
last ADJ
Thursday PROPN
( PUNCT
4/15 NUM
) PUNCT
. PUNCT
  SPACE
The DET
weekend NOUN
was AUX
prettybad ADJ
, PUNCT
but CCONJ
she PRON
made VERB
it PRON
through ADP
with ADP
the DET
help NOUN
of ADP
Imitrex PROPN
about ADP
every DET
18 NUM
hours NOUN
. PUNCT
Her PRON
third ADJ
injection NOUN
of ADP
Imitrex PROPN
, PUNCT
during ADP
the DET
worst ADJ
of ADP
the DET
withdrawl NOUN
onFriday PROPN
and CCONJ
six NUM
hours NOUN
after ADP
the DET
first ADJ
of ADP
the DET
day NOUN
, PUNCT
left VERB
her PRON
very ADV
sick ADJ
. PUNCT
  SPACE
Skinwas PROPN
flushed VERB
, PUNCT
sweating NOUN
, PUNCT
vomiting NOUN
and CCONJ
had AUX
severe ADJ
headache NOUN
pain NOUN
. PUNCT
  SPACE
It PRON
subsidedin VERB
an DET
hour NOUN
or CCONJ
so ADV
. PUNCT
  SPACE
Since SCONJ
then ADV
, PUNCT
she PRON
has AUX
been AUX
taking VERB
Imitrex PROPN
as SCONJ
needed VERB
tocontrol NOUN
the DET
pain NOUN
. PUNCT
  SPACE
Immediately ADV
after ADP
taking VERB
it PRON
, PUNCT
she PRON
has AUX
increased VERB
head NOUN
painfor ADV
ten NUM
minutes NOUN
, PUNCT
dizziness NOUN
and CCONJ
mild ADJ
nausea NOUN
and CCONJ
mild ADJ
chest NOUN
pains NOUN
. PUNCT
  SPACE
A DET
friendof NOUN
hers PRON
mentioned VERB
that SCONJ
her PRON
doctor NOUN
was AUX
wary ADJ
of ADP
Imitrex PROPN
because SCONJ
it PRON
had AUX
causedheart NOUN
attacks NOUN
in ADP
several ADJ
people NOUN
. PUNCT
  SPACE
Apparently ADV
the DET
mild ADJ
chest NOUN
pains NOUN
werecommon NOUN
in ADP
these DET
other ADJ
people NOUN
prior ADV
to ADP
there PRON
attacks NOUN
. PUNCT
  SPACE
Is AUX
this DET
just ADJ
rumor NOUN
? PUNCT
Has AUX
anyone PRON
else ADV
heard VERB
of ADP
these DET
symptoms NOUN
? PUNCT
  SPACE
My PRON
girlfriend NOUN
also ADV
has AUX
MitralValve PROPN
Prolapse PROPN
. PUNCT
Opinions NOUN
are AUX
mine PRON
or CCONJ
others NOUN
but CCONJ
definately ADV
not PART
MDA's!Lauger@ssdgwy.mdc.comMcDonnell PROPN
Douglas PROPN
Aerospace PROPN
, PUNCT
Huntington PROPN
Beach PROPN
, PUNCT
California PROPN
, PUNCT
USANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59113From NUM
: PUNCT
nash@biologysx.lan.nrc.ca PROPN
( PUNCT
John PROPN
Nash)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr15.135941.16105@lmpsbbs.comm.mot.com NUM
> X
dougb@comm.mot.com PROPN
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:>From ADP
: PUNCT
dougb@comm.mot.com X
( PUNCT
Doug PROPN
Bank)>Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?>Date NOUN
: PUNCT
Thu PROPN
, PUNCT
15 NUM
Apr PROPN
1993 NUM
13:59:41 NUM
GMT PROPN
> X
In ADP
article NOUN
< X
1993Apr14.122647.16364@tms390.micro.ti.com NUM
> X
, PUNCT
david@tms390.micro.ti.com PROPN
( PUNCT
David PROPN
Thomas PROPN
) PUNCT
writes:[lots PROPN
of ADP
editing VERB
out SCONJ
of ADP
previuos PROPN
posts]>Here PROPN
is AUX
another DET
anecdotal ADJ
story NOUN
. PUNCT
  SPACE
I PRON
am AUX
a DET
picky ADJ
eater NOUN
and CCONJ
never ADV
wanted VERB
to PART
> X
try VERB
chinese ADJ
food NOUN
, PUNCT
however ADV
, PUNCT
I PRON
finally ADV
tried VERB
some DET
in ADP
order NOUN
to PART
please VERB
a DET
> X
girl NOUN
I PRON
was AUX
seeing VERB
at ADP
the DET
time NOUN
. PUNCT
  SPACE
I PRON
had AUX
never ADV
heard VERB
of ADP
Chinese ADJ
restaurant NOUN
> X
syndrome NOUN
. PUNCT
  SPACE
A DET
group NOUN
of ADP
us PRON
went VERB
to ADP
the DET
restaurant NOUN
and CCONJ
all DET
shared VERB
6 NUM
different ADJ
> X
dishes NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
taste VERB
great ADJ
, PUNCT
but CCONJ
I PRON
decided VERB
it PRON
was AUX
n't PART
so ADV
bad ADJ
. PUNCT
  SPACE
We PRON
went VERB
> X
home ADV
and CCONJ
went VERB
to ADP
bed NOUN
early ADV
. PUNCT
  SPACE
I PRON
woke VERB
up ADP
at ADP
2 NUM
AM NOUN
and CCONJ
puked VERB
my PRON
guts NOUN
outs.>I ADV
threw VERB
up ADP
for ADP
so ADV
long ADV
that DET
( PUNCT
I PRON
'm AUX
not PART
kidding VERB
) PUNCT
I PRON
pulled VERB
a DET
muscle NOUN
in ADP
> X
my PRON
tongue NOUN
. PUNCT
  SPACE
Dry PROPN
heaves NOUN
and CCONJ
everything PRON
. PUNCT
  SPACE
No DET
one NOUN
else ADV
got VERB
sick ADJ
, PUNCT
and CCONJ
I'm PROPN
> X
not PART
allergic ADJ
to ADP
anything PRON
that PRON
I PRON
know VERB
of ADP
. PUNCT
  SPACE
> X
Suffice PROPN
to PART
say VERB
that SCONJ
I PRON
wo AUX
nt PART
go VERB
into ADP
a DET
chinese ADJ
restaurant NOUN
unless SCONJ
I PRON
am AUX
> X
physically ADV
threatened VERB
. PUNCT
  SPACE
The DET
smell NOUN
of ADP
the DET
food NOUN
makes VERB
me PRON
ill ADJ
( PUNCT
and CCONJ
that DET
* PUNCT
is*>a PROPN
psycholgical ADJ
reaction NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
I PRON
have AUX
been AUX
dragged VERB
in ADP
to PART
suffer VERB
> X
through ADP
beef NOUN
and CCONJ
broccoli NOUN
without ADP
any DET
sauces NOUN
, PUNCT
I PRON
insist VERB
on ADP
no DET
MSG NOUN
. PUNCT
  SPACE
> X
I PRON
have AUX
n't PART
gotten VERB
sick ADJ
yet ADV
. PUNCT
Funny ADJ
about ADP
that DET
... PUNCT
my PRON
wife NOUN
( PUNCT
my PRON
girlfriend NOUN
at ADP
the DET
time NOUN
) PUNCT
used VERB
to PART
get AUX
sick ADJ
after ADP
eating VERB
certain ADJ
foods NOUN
at ADP
various ADJ
Asian ADJ
restaurants NOUN
, PUNCT
and CCONJ
never ADV
knew VERB
why ADV
. PUNCT
  SPACE
She PRON
'd AUX
go VERB
pale ADJ
, PUNCT
and CCONJ
sweaty NOUN
and CCONJ
then ADV
vomit VERB
copiously ADV
. PUNCT
  SPACE
A DET
couple NOUN
of ADP
us PRON
ventured VERB
a DET
connection NOUN
with ADP
MSG PROPN
, PUNCT
and CCONJ
her PRON
response NOUN
was AUX
: PUNCT
" PUNCT
MSG PROPN
? PUNCT
  SPACE
What PRON
's AUX
that DET
? PUNCT
" PUNCT
. PUNCT
  SPACE
It PRON
also ADV
happened VERB
when ADV
she PRON
pigged VERB
out ADP
on ADP
some DET
brands NOUN
of ADP
savoury ADJ
crackers NOUN
and CCONJ
chips NOUN
... PUNCT
which PRON
I PRON
noticed VERB
( PUNCT
later ADV
) PUNCT
had AUX
MSG PROPN
on ADP
the DET
label NOUN
. PUNCT
  SPACE
Do AUX
n't PART
know VERB
about ADP
double ADJ
blinds NOUN
, PUNCT
but CCONJ
avoiding VERB
MSG PROPN
has AUX
stopped VERB
her PRON
being AUX
sick ADJ
at ADP
restaurants.cheers NOUN
, PUNCT
JohnJohn PROPN
Nash PROPN
                           SPACE
| PROPN
Email NOUN
: PUNCT
Nash@biologysx.lan.nrc.ca.Institute PROPN
for ADP
Biological PROPN
Sciences PROPN
, PUNCT
  SPACE
| PROPN
National PROPN
Research PROPN
Council PROPN
of ADP
Canada PROPN
, PUNCT
Cell PROPN
Physiology PROPN
Group PROPN
. PUNCT
              SPACE
| PROPN
Ottawa PROPN
, PUNCT
Ontario PROPN
, PUNCT
Canada PROPN
. PUNCT
             SPACE
* PUNCT
* PUNCT
* PUNCT
Disclaimer NOUN
: PUNCT
  SPACE
All DET
opinions NOUN
are AUX
mine ADJ
, PUNCT
not PART
NRC PROPN
's PART
! PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59114From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
How ADV
to PART
interview VERB
a DET
doctorMy PROPN
insurance NOUN
company NOUN
encourages VERB
annual ADJ
physicals NOUN
, PUNCT
and CCONJ
at ADP
my PRON
age NOUN
[ PUNCT
42 NUM
] PUNCT
i'mthinking X
that SCONJ
BIannual ADJ
physicals NOUN
, PUNCT
at ADP
least ADJ
, PUNCT
might AUX
be AUX
a DET
good ADJ
idea NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
i'm VERB
shopping VERB
for ADP
a DET
GP PROPN
. PUNCT
  SPACE
Might PROPN
as ADV
well ADV
get AUX
a DET
good ADJ
one NOUN
. PUNCT
Could AUX
the DET
Assembled VERB
Net PROPN
Wisdom PROPN
suggest VERB
things NOUN
i PRON
should AUX
look VERB
for ADP
, PUNCT
or CCONJ
point VERB
me PRON
tothe DET
FAQ PROPN
archive ADJ
if SCONJ
on ADP
this DET
topic NOUN
if SCONJ
there PRON
is AUX
one NUM
? PUNCT
  SPACE
Please INTJ
EMail NOUN
; PUNCT
i PRON
suspect VERB
that SCONJ
this DET
topic NOUN
is AUX
real ADJ
Net PROPN
Clutter PROPN
bait.-dkNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59115From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
sudden ADJ
numbness NOUN
in ADP
armIn NOUN
article NOUN
< X
C5u5LG.C3G@gpu.utcc.utoronto.ca PROPN
> X
molnar@Bisco NOUN
. PUNCT
CAnet PROPN
. PUNCT
CA PROPN
( PUNCT
Tom PROPN
Molnar PROPN
) PUNCT
writes:>I PROPN
experienced VERB
a DET
sudden ADJ
numbness NOUN
in ADP
my PRON
left ADJ
arm NOUN
this DET
morning NOUN
. PUNCT
  SPACE
Just ADV
after ADP
> X
I PRON
completed VERB
my PRON
4th ADJ
set NOUN
of ADP
deep ADJ
squats NOUN
. PUNCT
  SPACE
Today NOUN
was AUX
my PRON
weight NOUN
training NOUN
> X
day NOUN
and CCONJ
I PRON
was AUX
just ADV
beginning VERB
my PRON
routine NOUN
. PUNCT
  SPACE
All DET
of ADP
a ADV
sudden ADJ
at ADP
the DET
end NOUN
of ADP
> X
the DET
4th ADJ
set VERB
my PRON
arm NOUN
felt VERB
like SCONJ
it PRON
had AUX
gone VERB
to PART
sleep VERB
. PUNCT
  SPACE
It PRON
was AUX
cold ADJ
, PUNCT
turned VERB
pale,>and PROPN
lost VERB
60 NUM
% NOUN
of ADP
its PRON
strength NOUN
. PUNCT
  SPACE
The DET
weight NOUN
I PRON
used VERB
for ADP
squats NOUN
was AUX
n't PART
that DET
> X
heavy ADJ
, PUNCT
I PRON
was AUX
working VERB
hard ADV
but CCONJ
not PART
at ADP
100 NUM
% NOUN
effort NOUN
. PUNCT
  SPACE
I PRON
waited VERB
for ADP
a DET
few ADJ
> X
minutes NOUN
, PUNCT
trying VERB
to PART
shake VERB
the DET
arm NOUN
back ADV
to ADP
life NOUN
and CCONJ
then ADV
continued VERB
with ADP
> PROPN
chest PROPN
exercises NOUN
( PUNCT
flyes PROPN
) PUNCT
with ADP
lighter ADJ
dumbells NOUN
than SCONJ
I PRON
normally ADV
use VERB
. PUNCT
  SPACE
But CCONJ
> X
I PRON
dropped VERB
the DET
left ADJ
dumbell NOUN
during ADP
the DET
first ADJ
set NOUN
, PUNCT
and CCONJ
experienced VERB
continued VERB
> X
arm NOUN
weakness NOUN
into ADP
the DET
second ADJ
. PUNCT
  SPACE
So ADV
I PRON
quit VERB
training VERB
and CCONJ
decided VERB
not PART
to PART
do AUX
my PRON
> X
usual ADJ
hour NOUN
on ADP
the DET
ski NOUN
machine NOUN
either ADV
. PUNCT
  SPACE
I PRON
'll AUX
take VERB
it PRON
easy ADJ
for ADP
the DET
rest NOUN
of ADP
> X
the DET
day.>>My PROPN
arm NOUN
is AUX
* PUNCT
still ADV
* PUNCT
somewhat ADV
numb ADJ
and CCONJ
significantly ADV
weaker ADJ
than SCONJ
normal ADJ
-->my ADJ
hand NOUN
still ADV
tingles VERB
a DET
bit NOUN
down ADV
to ADP
the DET
thumb NOUN
. PUNCT
Color NOUN
has AUX
returned VERB
to ADP
normal ADJ
> X
and CCONJ
it PRON
is AUX
no DET
longer ADV
cold ADJ
. PUNCT
> X
> X
Horrid PROPN
thoughts NOUN
of ADP
chunks NOUN
of ADP
plaque NOUN
blocking VERB
a DET
major ADJ
artery NOUN
course NOUN
through ADP
> X
my PRON
brain NOUN
. PUNCT
  SPACE
I PRON
'm AUX
34 NUM
, PUNCT
vegetarian PROPN
, PUNCT
and CCONJ
pretty ADV
fit ADJ
from ADP
my PRON
daily ADJ
exercise NOUN
> X
regimen PROPN
. PUNCT
  SPACE
So SCONJ
that DET
ca AUX
n't PART
be AUX
it PRON
. PUNCT
  SPACE
Could AUX
a DET
pinched ADJ
nerve NOUN
from ADP
the DET
bar NOUN
> X
cause VERB
these DET
symptoms NOUN
( PUNCT
I NOUN
hope)?It X
likely ADV
has AUX
nothing PRON
to PART
do AUX
with ADP
" PUNCT
chunks NOUN
of ADP
plaque NOUN
" PUNCT
but CCONJ
it PRON
sounds VERB
likeyou NOUN
may AUX
have AUX
a DET
neurovascular ADJ
compromise NOUN
to ADP
your PRON
arm NOUN
and CCONJ
you PRON
need VERB
medicalattention NOUN
* PUNCT
before ADP
* PUNCT
doing VERB
any DET
more ADJ
weight NOUN
lifting NOUN
. PUNCT
  SPACE
-- PUNCT
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59116From NUM
: PUNCT
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field))Subject PROPN
: PUNCT
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?In PUNCT
article NOUN
< X
1993Apr19.043654.13068@informix.com NUM
> X
proberts@informix.com X
( PUNCT
Paul PROPN
Roberts PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr12.165410.4206@kestrel.edu NUM
> X
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes:>>>>I ADJ
recall NOUN
reading VERB
somewhere ADV
, PUNCT
during ADP
my PRON
youth NOUN
, PUNCT
in ADP
some DET
science NOUN
popularization>>book NOUN
, PUNCT
that SCONJ
whyle NOUN
isotope NOUN
changes NOUN
do AUX
n't PART
normally ADV
affect VERB
chemistry NOUN
, PUNCT
a DET
consumption>>of NOUN
only ADV
heavy ADJ
water NOUN
would AUX
be AUX
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
seeds NOUN
watered VERB
only ADV
with ADP
heavy>>water NOUN
do AUX
not PART
sprout VERB
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
about ADP
this?>>>>I NOUN
also ADV
heard VERB
this DET
. PUNCT
I PRON
always ADV
thought VERB
it PRON
might AUX
make VERB
a DET
good ADJ
eposide NOUN
of>'Columbo NUM
' PUNCT
for ADP
someone PRON
to PART
be AUX
poisoned VERB
with ADP
heavy ADJ
water NOUN
- PUNCT
it PRON
wouldn't PROPN
> X
show VERB
up ADP
in ADP
any DET
chemical ADJ
test NOUN
. PUNCT
That DET
would AUX
be AUX
a DET
very ADV
expensive ADJ
toxin NOUN
indeed!-- PROPN
| PROPN
Daniel PROPN
R. PROPN
Field PROPN
, PUNCT
AKA PROPN
InfoSpunj PROPN
| PROPN
Joe PROPN
: PUNCT
" PUNCT
Are AUX
you PRON
late ADJ
? PUNCT
" PUNCT
                SPACE
|| PROPN
dfield@oboe.calpoly.edu PROPN
        SPACE
| PROPN
Dan PROPN
: PUNCT
" PUNCT
No INTJ
, PUNCT
but CCONJ
I PRON
'm AUX
working VERB
on ADP
it PRON
! PUNCT
" PUNCT
   SPACE
|| PROPN
Biochemistry PROPN
, PUNCT
Biotechnology PROPN
    SPACE
| CCONJ
                                     SPACE
|| PROPN
California PROPN
Polytechnic PROPN
State PROPN
U PROPN
| PROPN
                                     SPACE
| PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59117From NUM
: PUNCT
ghica@fig.citib.com PROPN
( PUNCT
Renato PROPN
Ghica)Subject NUM
: PUNCT
seek VERB
sedative ADJ
informationhas NOUN
any DET
one NUM
heard VERB
of ADP
a DET
sedative ADJ
called VERB
" PUNCT
Rhoepnol PROPN
" PUNCT
? PUNCT
Made VERB
by ADP
LaRouche PROPN
, PUNCT
I PRON
believe VERB
. PUNCT
Any DET
info NOUN
as SCONJ
to PART
side VERB
effects NOUN
or CCONJ
equivalent ADJ
tranquillizers?thanks NOUN
.... PUNCT
-- PUNCT
" PUNCT
This DET
will AUX
just ADV
take VERB
a DET
minute NOUN
. PUNCT
""I'm ADV
90 NUM
% NOUN
done VERB
. PUNCT
""It PUNCT
worked VERB
on ADP
my PRON
machine NOUN
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59118From NUM
: PUNCT
jnielsen@magnus.acs.ohio-state.edu PROPN
( PUNCT
John PROPN
F PROPN
Nielsen)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
  SPACE
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
noringC5u638.Bvy@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>>In X
article NOUN
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>Good X
grief NOUN
again.>>Why PROPN
the DET
anger NOUN
? PUNCT
  SPACE
I PRON
must AUX
have AUX
really ADV
touched VERB
a DET
raw ADJ
nerve.>>Let NOUN
's PART
see NOUN
: PUNCT
  SPACE
I PRON
had AUX
symptoms NOUN
that PRON
resisted VERB
all DET
other ADJ
treatments NOUN
. PUNCT
  SPACE
Sporanox PROPN
> X
totally ADV
alleviated VERB
them PRON
within ADP
one NUM
week NOUN
. PUNCT
  SPACE
Hmmm PROPN
, PUNCT
I PRON
must AUX
be AUX
psychotic ADJ
. PUNCT
  SPACE
Yesss!>That PROPN
's AUX
it PRON
- PUNCT
my PRON
illness NOUN
was AUX
all DET
in ADP
my PRON
mind NOUN
. PUNCT
  SPACE
Thanks INTJ
Steve PROPN
for ADP
your PRON
correct ADJ
> X
diagnosis NOUN
- PUNCT
you PRON
must AUX
have AUX
a DET
lot NOUN
of ADP
experience NOUN
being AUX
out ADV
there ADV
in ADP
trenches,>treating VERB
hundreds NOUN
of ADP
patients NOUN
a DET
week NOUN
. PUNCT
  SPACE
Thank VERB
you PRON
. PUNCT
  SPACE
I PRON
'm AUX
forever ADV
in ADP
your PRON
> X
debt.>>Jon>>(oops NOUN
, PUNCT
got VERB
ta PART
run VERB
, PUNCT
the DET
men NOUN
in ADP
white ADJ
coats NOUN
are AUX
ready ADJ
to PART
take VERB
me PRON
away ADV
, PUNCT
haha,>to PROPN
the DET
happy ADJ
home NOUN
, PUNCT
where ADV
I PRON
can AUX
go VERB
twiddle ADP
my PRON
thumbs NOUN
, PUNCT
basket NOUN
weave NOUN
, PUNCT
and CCONJ
> X
moan VERB
about ADP
my PRON
sinuses.)Ever PROPN
heard VERB
of ADP
something PRON
called VERB
the DET
placebo NOUN
effect NOUN
? PUNCT
I PRON
think VERB
Dyer PROPN
isreacting VERB
because SCONJ
it PRON
looks VERB
to PART
be AUX
yet ADV
another DET
case NOUN
of ADP
the DET
same ADJ
oldquackery NOUN
over ADV
and CCONJ
over ADV
again ADV
. PUNCT
It PRON
true ADJ
that SCONJ
current ADJ
medical ADJ
knowledge NOUN
is AUX
limited ADJ
, PUNCT
but CCONJ
do AUX
you PRON
realizejust VERB
HOW ADV
MANY ADJ
quacks NOUN
exist VERB
eager ADJ
to PART
suck VERB
your PRON
$ SYM
$ SYM
$ SYM
$ SYM
. PUNCT
It PRON
's AUX
playing VERB
thelottery NOUN
at ADP
best ADV
. PUNCT
If SCONJ
the DET
results NOUN
you PRON
got VERB
were AUX
so ADV
clear ADJ
and CCONJ
obvious ADJ
, PUNCT
would AUX
you PRON
mindtrying VERB
a DET
little ADJ
experiment NOUN
to PART
see VERB
if SCONJ
it PRON
is AUX
true ADJ
? PUNCT
It PRON
would AUX
be AUX
quitesimple ADJ
. PUNCT
Have AUX
sugar NOUN
pills NOUN
and CCONJ
have AUX
real ADJ
pills NOUN
. PUNCT
  SPACE
Take VERB
one NUM
set NOUN
for ADP
oneweek NOUN
and CCONJ
the DET
other ADJ
set NOUN
for ADP
another DET
week NOUN
without ADP
knowing VERB
which PRON
ones NOUN
arethe VERB
real ADJ
pills NOUN
. PUNCT
Then ADV
at ADP
the DET
end NOUN
of ADP
the DET
2 NUM
weeks NOUN
compare VERB
the DET
results NOUN
. PUNCT
Let VERB
's PRON
say VERB
you PRON
're AUX
wife NOUN
would AUX
know VERB
which PRON
are AUX
the DET
real ADJ
ones NOUN
. PUNCT
If SCONJ
what PRON
youare NOUN
experiencing VERB
is AUX
true ADJ
there PRON
should AUX
be AUX
a DET
marked ADJ
difference NOUN
betweeneach NOUN
week NOUN
. PUNCT
  SPACE
john-- PROPN
John PROPN
Nielsen PROPN
   SPACE
MAGNUS PROPN
Consultant NOUN
            SPACE
_ VERB
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
   SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
   SPACE
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
	 SPACE
" PUNCT
To ADP
you PRON
Baldrick PROPN
, PUNCT
the DET
Renaissance PROPN
was AUX
just ADV
/\ PUNCT
  SPACE
_ VERB
_ PROPN
\ PROPN
/\ X
  SPACE
_ PROPN
_ PROPN
_ PROPN
\ PROPN
/\ PUNCT
\/\ PROPN
\something PUNCT
that PRON
happened VERB
to ADP
other ADJ
people NOUN
, PUNCT
   SPACE
\ PROPN
\ PROPN
\/\ PROPN
\\ PROPN
\ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
\\ PROPN
\ PROPN
\_\ NUM
\wasn't VERB
it PRON
? PUNCT
" PUNCT
- PUNCT
The DET
Black PROPN
Adder PROPN
               SPACE
\ VERB
\_____\\/\_____\\ PROPN
\_____\Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59119Subject NUM
: PUNCT
Re ADP
: PUNCT
Bates PROPN
Method PROPN
for ADP
MyopiaFrom PROPN
: PUNCT
jc@oneb.almanac.bc.caDr PROPN
. PUNCT
willian ADJ
Horatio PROPN
Bates PROPN
born VERB
1860 NUM
and CCONJ
graduated VERB
from ADP
med PROPN
school1885 PROPN
. PUNCT
  SPACE
Medical ADJ
career NOUN
hampered VERB
by ADP
spells NOUN
of ADP
total ADJ
amnesia PROPN
. PUNCT
  SPACE
Published VERB
in1920 PROPN
, PUNCT
his PRON
great ADJ
work NOUN
" PUNCT
The DET
Cure PROPN
of ADP
Imperfect PROPN
Eyesight PROPN
by ADP
Treatment PROPN
With ADP
- PUNCT
out ADP
Glasses NOUN
" PUNCT
, PUNCT
He PRON
made VERB
claims NOUN
about ADP
how ADV
the DET
eye NOUN
actually ADV
works VERB
that SCONJ
aresimply ADV
NOT ADV
TRUE PROPN
. PUNCT
  SPACE
Aldous PROPN
Huxley PROPN
was AUX
one NUM
of ADP
the DET
more ADV
" PUNCT
high ADJ
profile"beleivers NOUN
in ADP
his PRON
system NOUN
. PUNCT
  SPACE
Mr. PROPN
Huxley PROPN
while SCONJ
giving VERB
a DET
lecture NOUN
on ADP
Bates PROPN
systemforgot VERB
the DET
lecture NOUN
that SCONJ
he PRON
was AUX
supposedely ADV
reading VERB
and CCONJ
had AUX
to PART
put VERB
thepaper NOUN
right ADV
up ADP
to ADP
his PRON
eyes NOUN
and CCONJ
then ADV
resorted VERB
to ADP
a DET
magnifying NOUN
glass NOUN
fromhis PRON
pocket NOUN
. PUNCT
  SPACE
book PROPN
have AUX
been AUX
written VERB
debunking VERB
this DET
technique NOUN
, PUNCT
howeverthey PRON
remain VERB
less ADV
read ADJ
than SCONJ
the DET
original ADJ
fraud NOUN
. PUNCT
  SPACE
cheers NOUN
           SPACE
jc@oneb.almanac.bc.ca PROPN
( PUNCT
John PROPN
Cross PROPN
) PUNCT
     SPACE
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
  SPACE
( PUNCT
Home PROPN
of ADP
The DET
Almanac PROPN
UNIX PROPN
Users PROPN
Group PROPN
) PUNCT
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
    SPACE
< X
Public PROPN
Access PROPN
UseNet PROPN
> X
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
        SPACE
Vancouver PROPN
Island PROPN
, PUNCT
British PROPN
Columbia PROPN
    SPACE
Waffle PROPN
XENIX PROPN
1.64 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59120From NUM
: PUNCT
kelley@vet.vet.purdue.edu PROPN
( PUNCT
Stephen PROPN
Kelley)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?In PROPN
article NOUN
< X
1993Apr21.155714.1@stsci.edu NUM
> X
mryan@stsci.edu INTJ
writes:- PROPN
Am AUX
I PRON
justified ADJ
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor?- NUM
- PUNCT
Last ADJ
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife.- PROPN
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
	 SPACE
[ PUNCT
story NOUN
deleted]- NOUN
be AUX
bothered VERB
. PUNCT
  SPACE
My PRON
son NOUN
did AUX
get AUX
three NUM
stitches NOUN
at ADP
the DET
emergency NOUN
room NOUN
. PUNCT
  SPACE
I PRON
'm AUX
still ADV
- PUNCT
trying VERB
to PART
find VERB
out ADP
who PRON
is AUX
in ADP
charge NOUN
of ADP
that DET
clinic NOUN
so SCONJ
I PRON
can AUX
write VERB
them PRON
a DET
- PUNCT
letter NOUN
. PUNCT
   SPACE
We PRON
will AUX
certainly ADV
never ADV
set VERB
foot NOUN
in ADP
that DET
clinic NOUN
again.- VERB
The DET
people NOUN
in ADP
charge NOUN
already ADV
know VERB
what PRON
kind NOUN
of ADP
' PUNCT
care NOUN
' PUNCT
they PRON
are AUX
providing VERB
, PUNCT
and CCONJ
they PRON
do AUX
n't PART
give VERB
a DET
rat NOUN
's PART
ass NOUN
about ADP
your PRON
repeat NOUN
business NOUN
. PUNCT
You PRON
are AUX
much ADV
more ADV
likely ADJ
to PART
do AUX
some DET
good ADJ
writing NOUN
to ADP
local ADJ
newspapers NOUN
, PUNCT
and CCONJ
broadcast VERB
news NOUN
shows NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
, PUNCT
keep VERB
the DET
letter NOUN
short ADJ
and CCONJ
to ADP
the DET
pointso NOUN
they PRON
do AUX
n't PART
discard VERB
it PRON
out SCONJ
of ADP
hand NOUN
, PUNCT
and CCONJ
emphasize VERB
exactly ADV
what PRON
youare NOUN
upset VERB
about ADP
. PUNCT
It PRON
's AUX
possible ADJ
that SCONJ
the DET
local ADJ
health NOUN
department NOUN
can AUX
help VERB
you PRON
complain VERB
to ADP
someone PRON
official NOUN
, PUNCT
but CCONJ
really ADV
, PUNCT
that SCONJ
' PUNCT
clinic NOUN
' PUNCT
exists VERB
for ADP
the DET
sole ADJ
purpose NOUN
of ADP
generating VERB
walk VERB
- PUNCT
in ADP
income NOUN
through ADP
advertising NOUN
, PUNCT
and CCONJ
* PUNCT
nothing PRON
* PUNCT
you PRON
can AUX
do AUX
will AUX
change VERB
them PRON
-- PUNCT
all DET
you PRON
can AUX
hope VERB
for ADP
is AUX
to PART
help VERB
someone PRON
else ADV
avoid VERB
them PRON
. PUNCT
I'm PRON
glad VERB
it PRON
sounds VERB
like SCONJ
your PRON
son NOUN
did AUX
ok INTJ
, PUNCT
anyway ADV
. PUNCT
My PRON
opinion NOUN
only ADV
, PUNCT
of ADP
course NOUN
, PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59121From NUM
: PUNCT
sbrun@oregon.uoregon.edu PROPN
( PUNCT
Sarah PROPN
Anne PROPN
Brundage)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography PROPN
> X
I PRON
did AUX
a DET
science NOUN
project NOUN
on ADP
Kirlian ADJ
photography NOUN
when ADV
I PRON
was AUX
in ADP
high ADJ
school.>I NOUN
was AUX
able ADJ
to PART
obtain VERB
wonderful ADJ
auras NOUN
from ADP
rocks NOUN
and CCONJ
pebbles NOUN
and CCONJ
the DET
like ADJ
by ADP
> X
first ADV
dunking VERB
them PRON
in ADP
water NOUN
. PUNCT
> X
  SPACE
I PRON
know VERB
this DET
is AUX
a DET
little ADJ
weird ADJ
, PUNCT
but CCONJ
I PRON
know VERB
that SCONJ
World PROPN
magazine NOUN
( PUNCT
you PRON
know VERB
, PUNCT
National PROPN
Geo PROPN
. PUNCT
for ADP
children NOUN
) PUNCT
did AUX
a DET
very ADV
simple ADJ
and CCONJ
concise ADJ
article NOUN
on ADP
Kirlianphotography PROPN
. PUNCT
  SPACE
They PRON
had AUX
some DET
neat ADJ
pictures NOUN
, PUNCT
too ADV
. PUNCT
  SPACE
A DET
friend NOUN
of ADP
mine NOUN
's PART
mother NOUN
hada PROPN
book NOUN
on ADP
Kirlian ADJ
photography NOUN
, PUNCT
only ADV
it PRON
's AUX
photographs NOUN
took VERB
a DET
radiologist NOUN
to PART
interpret VERB
. PUNCT
  SPACE
They PRON
( PUNCT
World PROPN
magazine NOUN
) PUNCT
warned VERB
us PRON
all DET
that PRON
it PRON
was AUX
very ADV
dangerous ADJ
, PUNCT
probably ADV
to PART
stop VERB
curious ADJ
children NOUN
from ADP
experimenting VERB
with ADP
it PRON
. PUNCT
  SPACE
Mind VERB
you PRON
, PUNCT
thiswas VERB
10 NUM
years NOUN
ago ADV
, PUNCT
at ADP
least ADJ
. PUNCT
  SPACE
( PUNCT
And CCONJ
boy NOUN
, PUNCT
does AUX
that DET
say VERB
something PRON
about ADP
my PRON
age)Sarah PROPN
Brundagesbrun@oregon.uoregon.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59122From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 X
Medical PROPN
Newsletter PROPN
, PUNCT
Part PROPN
2/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
13Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                       SPACE
Gonorrhea PROPN
-- PUNCT
Colorado PROPN
, PUNCT
1985 NUM
- SYM
1992 NUM
                       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
The DET
number NOUN
of ADP
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
in ADP
Colorado PROPN
increased VERB
19.9 NUM
% NOUN
from ADP
1991 NUM
to ADP
1992 NUM
after ADP
declining VERB
steadily ADV
during ADP
the DET
1980s NOUN
. PUNCT
In ADP
comparison NOUN
, PUNCT
in ADP
the DET
United PROPN
States PROPN
, PUNCT
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
in ADP
1992 NUM
continued VERB
an DET
overall ADJ
decreasing VERB
trend NOUN
( PUNCT
1 NUM
) PUNCT
. PUNCT
This DET
report NOUN
summarizes VERB
an DET
analysis NOUN
of ADP
the DET
increase NOUN
in ADP
gonorrhea NOUN
in ADP
Colorado PROPN
in ADP
1992 NUM
and CCONJ
characterizes VERB
trends NOUN
in ADP
the DET
occurrence NOUN
of ADP
this DET
disease NOUN
from ADP
1985 NUM
through ADP
1992 NUM
. PUNCT
      SPACE
In ADP
1992 NUM
, PUNCT
4679 NUM
cases NOUN
of ADP
gonorrhea PROPN
were AUX
reported VERB
to ADP
the DET
Colorado PROPN
Department PROPN
of ADP
Health PROPN
( PUNCT
CDH PROPN
) PUNCT
compared VERB
with ADP
3901 NUM
cases NOUN
reported VERB
in ADP
1991 NUM
. PUNCT
During ADP
1992 NUM
, PUNCT
reported VERB
cases NOUN
increased VERB
22.7 NUM
% NOUN
and CCONJ
17.5 NUM
% NOUN
among ADP
females NOUN
and CCONJ
males NOUN
, PUNCT
respectively ADV
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
Similar ADJ
increases NOUN
occurred VERB
among ADP
blacks NOUN
, PUNCT
whites NOUN
, PUNCT
and CCONJ
Hispanics PROPN
( PUNCT
15.6 NUM
% NOUN
, PUNCT
15.1 NUM
% NOUN
, PUNCT
and CCONJ
15.9 NUM
% NOUN
, PUNCT
respectively ADV
) PUNCT
; PUNCT
however ADV
, PUNCT
the DET
number NOUN
of ADP
reported VERB
cases NOUN
with ADP
race NOUN
not PART
specified VERB
increased VERB
88 NUM
% NOUN
from ADP
1991 NUM
to ADP
1992 NUM
and CCONJ
constituted VERB
9.7 NUM
% NOUN
of ADP
all DET
reported VERB
cases NOUN
in ADP
1992 NUM
. PUNCT
Although SCONJ
the DET
largest ADJ
proportional ADJ
increases NOUN
by ADP
age NOUN
groups NOUN
occurred VERB
among ADP
persons NOUN
aged VERB
35 NUM
- SYM
44 NUM
years NOUN
( PUNCT
80.4 NUM
% NOUN
) PUNCT
and CCONJ
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
45 NUM
years NOUN
( PUNCT
87.7 NUM
% NOUN
) PUNCT
, PUNCT
these DET
age NOUN
groups NOUN
accounted VERB
for ADP
only ADV
11.0 NUM
% NOUN
of ADP
all DET
reported VERB
cases NOUN
in ADP
1992 NUM
. PUNCT
Persons NOUN
in ADP
the DET
15 NUM
- SYM
19-year NUM
age NOUN
group NOUN
accounted VERB
for ADP
the DET
largest ADJ
number NOUN
of ADP
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
during ADP
1992 NUM
and CCONJ
the DET
highest ADJ
age NOUN
group NOUN
- PUNCT
specific ADJ
rate NOUN
( PUNCT
639 NUM
per ADP
100,000 NUM
) PUNCT
. PUNCT
      SPACE
Reported VERB
cases NOUN
of ADP
gonorrhea NOUN
increased VERB
32.9 NUM
% NOUN
in ADP
the DET
five NUM
- PUNCT
county NOUN
Denver PROPN
metropolitan ADJ
area NOUN
( PUNCT
1990 NUM
population NOUN
: PUNCT
1,629,466 X
) PUNCT
but CCONJ
decreased VERB
elsewhere ADV
in ADP
the DET
state NOUN
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
Half DET
the DET
cases NOUN
of ADP
gonorrhea NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
occurred VERB
in ADP
8.4 NUM
% NOUN
( PUNCT
34 NUM
) PUNCT
of ADP
the DET
census NOUN
tracts VERB
; PUNCT
these DET
represent VERB
neighborhoods NOUN
considered VERB
by ADP
sexually ADV
transmitted VERB
diseases NOUN
( PUNCT
STDs)/acquired VERB
immunodeficiency NOUN
syndrome NOUN
( PUNCT
AIDS PROPN
) PUNCT
field NOUN
staff NOUN
to PART
be AUX
the DET
focus NOUN
of ADP
gang NOUN
and CCONJ
drug NOUN
activity NOUN
. PUNCT
      SPACE
When ADV
compared VERB
with ADP
1991 NUM
, PUNCT
the DET
number NOUN
of ADP
gonorrhea ADJ
cases NOUN
diagnosed VERB
among ADP
men NOUN
in ADP
the DET
Denver PROPN
Metro PROPN
Health PROPN
Clinic PROPN
( PUNCT
DMHC PROPN
, PUNCT
the DET
primary ADJ
public ADJ
STD PROPN
clinic NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
) PUNCT
increased VERB
33 NUM
% NOUN
in ADP
1992 NUM
, PUNCT
and CCONJ
the DET
number NOUN
of ADP
visits NOUN
by ADP
males NOUN
to ADP
the DET
clinic NOUN
increased VERB
2.4 NUM
% NOUN
. PUNCT
Concurrently ADV
, PUNCT
the DET
number NOUN
of ADP
cases NOUN
diagnosed VERB
among ADP
women NOUN
increased VERB
by ADP
1 NUM
% NOUN
. PUNCT
Among ADP
self NOUN
- PUNCT
identified VERB
heterosexual ADJ
men NOUN
, PUNCT
the DET
number NOUN
of ADP
gonorrhea ADJ
cases NOUN
diagnosed VERB
at ADP
DMHC PROPN
increased VERB
33 NUM
% NOUN
and CCONJ
comprised VERB
94 NUM
% NOUN
of ADP
all DET
cases NOUN
diagnosed VERB
in ADP
males NOUN
, PUNCT
while SCONJ
the DET
number NOUN
of ADP
cases NOUN
diagnosed VERB
among ADP
self NOUN
- PUNCT
identified VERB
homosexual ADJ
men NOUN
remained VERB
low ADJ
( PUNCT
71 NUM
and CCONJ
74 NUM
in ADP
1991 NUM
and CCONJ
1992 NUM
, PUNCT
respectively ADV
) PUNCT
. PUNCT
      SPACE
Four NUM
selected VERB
laboratories NOUN
in ADP
the DET
metropolitan ADJ
Denver PROPN
area NOUN
( PUNCT
i.e. X
, PUNCT
HMO PROPN
, PUNCT
university NOUN
hospital NOUN
, PUNCT
nonprofit ADJ
family NOUN
planning NOUN
, PUNCT
and CCONJ
commercial NOUN
) PUNCT
were AUX
contacted VERB
to PART
determine VERB
whether SCONJ
gonorrhea ADJ
culture NOUN
- PUNCT
positivity NOUN
rates NOUN
increased VERB
. PUNCT
Gonorrhea ADJ
culture NOUN
- PUNCT
positivity NOUN
rates NOUN
in ADP
three NUM
of ADP
four NUM
laboratories NOUN
contacted VERB
increased VERB
23%-33 NUM
% NOUN
from ADP
1991 NUM
to ADP
1992 NUM
, PUNCT
while SCONJ
the DET
rate NOUN
was AUX
virtually ADV
unchanged ADJ
in ADP
the DET
fourth ADJ
( PUNCT
i.e. X
, PUNCT
nonprofit ADJ
family NOUN
planning NOUN
) PUNCT
. PUNCT
      SPACE
From ADP
1985 NUM
through ADP
1991 NUM
, PUNCT
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
among ADP
whites NOUN
and CCONJ
Hispanics PROPN
in ADP
Colorado PROPN
decreased VERB
; PUNCT
in ADP
comparison NOUN
, PUNCT
reported VERB
cases NOUN
among ADP
blacks NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
14Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993increased VERB
since SCONJ
1988 NUM
( PUNCT
Figure NOUN
1 NUM
) PUNCT
. PUNCT
During ADP
1988 NUM
- SYM
1992 NUM
, PUNCT
the DET
population NOUN
in ADP
Colorado PROPN
increased VERB
9.9 NUM
% NOUN
for ADP
blacks NOUN
, PUNCT
9.8 NUM
% NOUN
for ADP
Hispanics PROPN
, PUNCT
and CCONJ
4.5 NUM
% NOUN
for ADP
whites NOUN
. PUNCT
In ADP
1992 NUM
, PUNCT
the DET
gonorrhea ADJ
rate NOUN
for ADP
blacks NOUN
( PUNCT
1935 NUM
per ADP
100,000 NUM
persons NOUN
) PUNCT
was AUX
57 NUM
times NOUN
that SCONJ
for ADP
whites NOUN
( PUNCT
34 NUM
per ADP
100,000 NUM
) PUNCT
and CCONJ
12 NUM
times NOUN
that SCONJ
for ADP
Hispanics PROPN
( PUNCT
156 NUM
per ADP
100,000 NUM
) PUNCT
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
Among ADP
black ADJ
females NOUN
, PUNCT
reported VERB
cases NOUN
of ADP
gonorrhea NOUN
increased VERB
from ADP
1988 NUM
through ADP
1992 NUM
in ADP
the DET
15 NUM
- SYM
19-year NUM
age NOUN
group NOUN
; PUNCT
among ADP
black ADJ
males NOUN
, PUNCT
cases NOUN
increased VERB
from ADP
1989 NUM
through ADP
1992 NUM
in ADP
both CCONJ
the DET
15 NUM
- SYM
19-and NUM
20 NUM
- PUNCT
24-year NUM
age NOUN
groups NOUN
. PUNCT
Reported VERB
by ADP
: PUNCT
KA PROPN
Gershman PROPN
, PUNCT
MD PROPN
, PUNCT
JM PROPN
Finn PROPN
, PUNCT
NE PROPN
Spencer PROPN
, PUNCT
MSPH PROPN
, PUNCT
STD PROPN
/ SYM
AIDS PROPN
Program PROPN
; PUNCT
RE PROPN
Hoffman PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Colorado PROPN
Dept PROPN
of ADP
Health PROPN
. PUNCT
JM PROPN
Douglas PROPN
, PUNCT
MD PROPN
, PUNCT
Denver PROPN
Dept PROPN
of ADP
Health PROPN
and CCONJ
Hospitals PROPN
. PUNCT
Surveillance NOUN
and CCONJ
Information PROPN
Systems PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Sexually ADV
Transmitted VERB
Diseases PROPN
and CCONJ
HIV PROPN
Prevention PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Prevention PROPN
Svcs PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
increase NOUN
in ADP
reported VERB
gonorrhea ADJ
cases NOUN
in ADP
Colorado PROPN
in ADP
1992 NUM
may AUX
represent VERB
an DET
overall ADJ
increase NOUN
in ADP
the DET
occurrence NOUN
of ADP
this DET
disease NOUN
or CCONJ
more ADV
complete ADJ
reporting NOUN
stimulated VERB
by ADP
visitations NOUN
to ADP
laboratories NOUN
by ADP
CDH PROPN
surveillance NOUN
staff NOUN
during ADP
1991 NUM
- SYM
1992 NUM
. PUNCT
The DET
increases NOUN
in ADP
confirmed VERB
gonorrhea ADJ
cases NOUN
at ADP
DMHC PROPN
and CCONJ
in ADP
culture NOUN
- PUNCT
positivity NOUN
rates NOUN
in ADP
three NUM
of ADP
four NUM
laboratories NOUN
suggest VERB
a DET
real ADJ
increase NOUN
in ADP
gonorrhea NOUN
rather ADV
than SCONJ
a DET
reporting NOUN
artifact NOUN
. PUNCT
However ADV
, PUNCT
the DET
stable ADJ
culture NOUN
- PUNCT
positivity NOUN
rate NOUN
in ADP
the DET
nonprofit ADJ
family NOUN
planning VERB
laboratory NOUN
( PUNCT
which PRON
serves VERB
a DET
network NOUN
of ADP
clinics NOUN
statewide ADV
) PUNCT
indicates VERB
that SCONJ
the DET
gonorrhea PROPN
increase NOUN
did AUX
not PART
uniformly ADV
affect VERB
all DET
segments NOUN
of ADP
the DET
population NOUN
. PUNCT
      SPACE
One NUM
possible ADJ
explanation NOUN
for ADP
the DET
increased ADJ
occurrence NOUN
of ADP
gonorrhea NOUN
in ADP
Colorado PROPN
may AUX
be AUX
gang- ADJ
and CCONJ
drug NOUN
- PUNCT
related VERB
sexual ADJ
behavior NOUN
, PUNCT
as SCONJ
implicated VERB
in ADP
a DET
recent ADJ
outbreak NOUN
of ADP
drug NOUN
- PUNCT
resistant ADJ
gonorrhea NOUN
and CCONJ
other ADJ
STDs NOUN
in ADP
Colorado PROPN
Springs PROPN
( PUNCT
2 NUM
) PUNCT
. PUNCT
Although SCONJ
the DET
high ADJ
morbidity NOUN
census NOUN
tracts NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
coincide NOUN
with ADP
areas NOUN
of ADP
gang NOUN
and CCONJ
drug NOUN
activity NOUN
, PUNCT
this DET
hypothesis NOUN
requires VERB
further ADJ
assessment NOUN
. PUNCT
To PART
examine VERB
the DET
possible ADJ
role NOUN
of ADP
drug NOUN
use NOUN
-- PUNCT
implicated VERB
previously ADV
as SCONJ
a DET
factor NOUN
contributing VERB
to ADP
the DET
national ADJ
increase NOUN
in ADP
syphilis NOUN
( PUNCT
3 NUM
- SYM
6 NUM
) PUNCT
-- PUNCT
the DET
CDH PROPN
STD PROPN
/ SYM
AIDS PROPN
program NOUN
is AUX
collecting VERB
information NOUN
from ADP
all DET
persons NOUN
in ADP
whom PRON
gonorrhea PROPN
is AUX
diagnosed VERB
regarding VERB
drug NOUN
use NOUN
, PUNCT
exchange NOUN
of ADP
sex NOUN
for ADP
money NOUN
or CCONJ
drugs NOUN
, PUNCT
and CCONJ
gang NOUN
affiliation NOUN
. PUNCT
      SPACE
The DET
gonorrhea ADJ
rate NOUN
for ADP
blacks NOUN
in ADP
Colorado PROPN
substantially ADV
exceeds VERB
the DET
national ADJ
health NOUN
objective NOUN
for ADP
the DET
year NOUN
2000 NUM
( PUNCT
1300 NUM
per ADP
100,000 NUM
) PUNCT
( PUNCT
objective ADJ
19.1a NUM
) PUNCT
( PUNCT
7 NUM
) PUNCT
. PUNCT
Race NOUN
is AUX
likely ADV
a DET
risk NOUN
marker NOUN
rather ADV
than SCONJ
a DET
risk NOUN
factor NOUN
for ADP
gonorrhea NOUN
and CCONJ
other ADJ
STDs NOUN
. PUNCT
Risk NOUN
markers NOUN
may AUX
be AUX
useful ADJ
for ADP
identifying VERB
groups NOUN
at ADP
greatest ADJ
risk NOUN
for ADP
STDs NOUN
and CCONJ
for ADP
targeting VERB
prevention NOUN
efforts NOUN
. PUNCT
Moreover ADV
, PUNCT
race NOUN
- PUNCT
specific ADJ
variation NOUN
in ADP
STD PROPN
rates NOUN
may AUX
reflect VERB
differences NOUN
in ADP
factors NOUN
such ADJ
as SCONJ
socioeconomic ADJ
status NOUN
, PUNCT
access NOUN
to ADP
medical ADJ
care NOUN
, PUNCT
and CCONJ
high ADJ
- PUNCT
risk NOUN
behaviors NOUN
. PUNCT
      SPACE
In ADP
response NOUN
to ADP
the DET
increased VERB
occurrence NOUN
of ADP
gonorrhea NOUN
in ADP
Colorado PROPN
, PUNCT
interventions NOUN
initiated VERB
by ADP
the DET
CDH PROPN
STD PROPN
/ SYM
AIDS PROPN
program NOUN
include VERB
1 NUM
) PUNCT
targeting VERB
partner NOUN
notification NOUN
in ADP
the DET
Denver PROPN
metropolitan ADJ
area NOUN
to ADP
persons NOUN
in ADP
groups NOUN
at ADP
increased VERB
risk NOUN
( PUNCT
e.g. ADV
, PUNCT
15 NUM
- PUNCT
19-year NUM
- PUNCT
old ADJ
black ADJ
females NOUN
and CCONJ
20 NUM
- PUNCT
24-year NUM
- PUNCT
old ADJ
black ADJ
males NOUN
) PUNCT
; PUNCT
2 X
) PUNCT
implementing VERB
a DET
media NOUN
campaign NOUN
( PUNCT
e.g. ADV
, PUNCT
public ADJ
service NOUN
radio NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
15Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993announcements PROPN
, PUNCT
signs NOUN
on ADP
city NOUN
buses NOUN
, PUNCT
newspaper NOUN
advertisements NOUN
, PUNCT
and CCONJ
posters NOUN
in ADP
schools NOUN
and CCONJ
clinics NOUN
) PUNCT
to PART
promote VERB
awareness NOUN
of ADP
STD PROPN
risk NOUN
and CCONJ
prevention NOUN
targeted VERB
primarily ADV
at ADP
high ADJ
- PUNCT
risk NOUN
groups NOUN
, PUNCT
and CCONJ
3 X
) PUNCT
developing VERB
teams NOUN
of ADP
peer NOUN
educators NOUN
to PART
perform VERB
educational ADJ
outreach NOUN
in ADP
high ADJ
- PUNCT
risk NOUN
neighborhoods NOUN
. PUNCT
The DET
educational ADJ
interventions NOUN
are AUX
being AUX
developed VERB
and CCONJ
implemented VERB
with ADP
the DET
assistance NOUN
of ADP
members NOUN
of ADP
the DET
target NOUN
groups NOUN
and CCONJ
with ADP
input NOUN
from ADP
a DET
forum NOUN
of ADP
community NOUN
leaders NOUN
and CCONJ
health NOUN
- PUNCT
care NOUN
providers NOUN
. PUNCT
References1 ADJ
. PUNCT
CDC PROPN
. PUNCT
Table NOUN
II PROPN
. PUNCT
Cases NOUN
of ADP
selected VERB
notifiable ADJ
diseases NOUN
, PUNCT
United PROPN
States PROPN
, PUNCT
weeks NOUN
ending VERB
December PROPN
26 NUM
, PUNCT
1992 NUM
, PUNCT
and CCONJ
December PROPN
28 NUM
, PUNCT
1991 NUM
( PUNCT
52nd ADJ
week NOUN
) PUNCT
. PUNCT
MMWR PROPN
1993;41:975 PROPN
. PUNCT
2 X
. PUNCT
CDC PROPN
. PUNCT
Gang PROPN
- PUNCT
related VERB
outbreak NOUN
of ADP
penicillinase NOUN
- PUNCT
producing VERB
Neisseria PROPN
gonorrhoeae NOUN
and CCONJ
other ADJ
sexually ADV
transmitted VERB
diseases NOUN
-- PUNCT
Colorado PROPN
Springs PROPN
, PUNCT
Colorado PROPN
, PUNCT
1989 NUM
- SYM
1991 NUM
. PUNCT
MMWR PROPN
1993;42:25 PROPN
- SYM
8 NUM
. PUNCT
3 NUM
. PUNCT
CDC PROPN
. PUNCT
Relationship NOUN
of ADP
syphilis NOUN
to ADP
drug NOUN
use NOUN
and CCONJ
prostitution NOUN
-- PUNCT
Connecticut PROPN
and CCONJ
Philadelphia PROPN
, PUNCT
Pennsylvania PROPN
. PUNCT
MMWR PROPN
1988;37:755 PROPN
- PUNCT
8 NUM
, PUNCT
764 NUM
. NOUN
4 NUM
. PUNCT
Rolfs PROPN
RT PROPN
, PUNCT
Goldberg PROPN
M PROPN
, PUNCT
Sharrar PROPN
RG PROPN
. PUNCT
Risk NOUN
factors NOUN
for ADP
syphilis NOUN
: PUNCT
cocaine NOUN
use NOUN
and CCONJ
prostitution NOUN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1990;80:853 PROPN
- SYM
7 NUM
. NOUN
5 NUM
. PUNCT
Andrus PROPN
JK PROPN
, PUNCT
Fleming PROPN
DW PROPN
, PUNCT
Harger PROPN
DR PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Partner NOUN
notification NOUN
: PUNCT
can AUX
it PRON
control VERB
epidemic ADJ
syphilis NOUN
? PUNCT
Ann PROPN
Intern PROPN
Med PROPN
1990;112:539 NUM
- SYM
43 NUM
. PUNCT
6 NUM
. PUNCT
Gershman PROPN
KA PROPN
, PUNCT
Rolfs PROPN
RT PROPN
. PUNCT
Diverging VERB
gonorrhea NOUN
and CCONJ
syphilis NOUN
trends NOUN
in ADP
the DET
1980s NOUN
: PUNCT
are AUX
they PRON
real ADJ
? PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1991;81:1263 NUM
- SYM
7 NUM
. PUNCT
7 NUM
. PUNCT
Public PROPN
Health PROPN
Service PROPN
. PUNCT
Healthy ADJ
people NOUN
2000 NUM
: PUNCT
national PROPN
health PROPN
promotion PROPN
and CCONJ
disease NOUN
prevention PROPN
objectives NOUN
-- PUNCT
full ADJ
report NOUN
, PUNCT
with ADP
commentary NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1991 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
PHS)91 PROPN
- PUNCT
50212 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
16Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                SPACE
Effectiveness PROPN
in ADP
Disease PROPN
and CCONJ
Injury PROPN
Prevention PROPN
            SPACE
Impact PROPN
of ADP
Adult PROPN
Safety PROPN
- PUNCT
Belt PROPN
Use PROPN
on ADP
Restraint PROPN
Use PROPN
Among ADP
            SPACE
Children NOUN
less ADJ
than SCONJ
11 NUM
Years NOUN
of ADP
Age NOUN
-- PUNCT
Selected PROPN
States PROPN
, PUNCT
                                 SPACE
1988 NUM
and CCONJ
1989 NUM
            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
Motor PROPN
- PUNCT
vehicle NOUN
crashes NOUN
are AUX
the DET
leading VERB
cause NOUN
of ADP
death NOUN
among ADP
children NOUN
and CCONJ
young ADJ
adults NOUN
in ADP
the DET
United PROPN
States PROPN
and CCONJ
account VERB
for ADP
more ADJ
than SCONJ
1 NUM
million NUM
years NOUN
of ADP
potential ADJ
life NOUN
lost VERB
before ADP
age NOUN
65 NUM
annually ADV
( PUNCT
1 NUM
) PUNCT
. PUNCT
Child NOUN
safety NOUN
seats NOUN
and CCONJ
safety NOUN
belts NOUN
can AUX
substantially ADV
reduce VERB
this DET
loss NOUN
( PUNCT
2 NUM
) PUNCT
. PUNCT
From ADP
1977 NUM
through ADP
1985 NUM
, PUNCT
all DET
50 NUM
states NOUN
passed VERB
legislation NOUN
requiring VERB
the DET
use NOUN
of ADP
child NOUN
safety NOUN
seats NOUN
or CCONJ
safety NOUN
belts NOUN
for ADP
children NOUN
. PUNCT
Although SCONJ
these DET
laws NOUN
reduce VERB
injuries NOUN
to ADP
young ADJ
children NOUN
by ADP
an DET
estimated VERB
8%-59 NUM
% NOUN
( PUNCT
3,4 NUM
) PUNCT
, PUNCT
motor NOUN
- PUNCT
vehicle NOUN
crash NOUN
- PUNCT
related VERB
injuries NOUN
remain VERB
a DET
major ADJ
cause NOUN
of ADP
disability NOUN
and CCONJ
death NOUN
among ADP
U.S. PROPN
children NOUN
( PUNCT
1 NUM
) PUNCT
, PUNCT
while SCONJ
the DET
use NOUN
of ADP
occupant ADJ
restraints NOUN
among ADP
children NOUN
decreases VERB
inversely ADV
with ADP
age NOUN
( PUNCT
84 NUM
% NOUN
usage NOUN
for ADP
those DET
aged ADJ
0 NUM
- SYM
4 NUM
years NOUN
; PUNCT
57 NUM
% NOUN
, PUNCT
aged ADJ
5 NUM
- SYM
11 NUM
years NOUN
; PUNCT
and CCONJ
29 NUM
% NOUN
, PUNCT
aged ADJ
12 NUM
- SYM
18 NUM
years NOUN
) PUNCT
( PUNCT
5 NUM
) PUNCT
. PUNCT
In ADP
addition NOUN
, PUNCT
parents NOUN
who PRON
do AUX
not PART
use VERB
safety NOUN
belts NOUN
themselves PRON
are AUX
less ADV
likely ADJ
to PART
use VERB
restraints NOUN
for ADP
their PRON
children NOUN
( PUNCT
6 NUM
) PUNCT
. PUNCT
To PART
characterize VERB
the DET
association NOUN
between ADP
adult PROPN
safety NOUN
- PUNCT
belt NOUN
use NOUN
and CCONJ
adult NOUN
- PUNCT
reported VERB
consistent ADJ
use NOUN
of ADP
occupant ADJ
restraints NOUN
for ADP
the DET
youngest ADJ
child NOUN
aged VERB
less ADJ
than SCONJ
11 NUM
years NOUN
within ADP
a DET
household NOUN
, PUNCT
CDC PROPN
analyzed VERB
data NOUN
obtained VERB
from ADP
the DET
Behavioral PROPN
Risk PROPN
Factor PROPN
Surveillance PROPN
System PROPN
( PUNCT
BRFSS PROPN
) PUNCT
during ADP
1988 NUM
and CCONJ
1989 NUM
. PUNCT
This DET
report NOUN
summarizes VERB
the DET
findings NOUN
from ADP
this DET
study NOUN
. PUNCT
      SPACE
Data PROPN
were AUX
available ADJ
for ADP
20,905 NUM
respondents NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
18 NUM
years NOUN
in ADP
11 NUM
states NOUN
* PUNCT
that PRON
participated VERB
in ADP
BRFSS PROPN
-- PUNCT
a DET
population NOUN
- PUNCT
based VERB
, PUNCT
random ADJ
- PUNCT
digit NOUN
- PUNCT
dialed VERB
telephone NOUN
survey NOUN
-- PUNCT
and CCONJ
administered VERB
a DET
standard ADJ
Injury PROPN
Control PROPN
and CCONJ
Child PROPN
Safety PROPN
Module PROPN
developed VERB
by ADP
CDC PROPN
. PUNCT
Of ADP
these DET
respondents NOUN
, PUNCT
5499 NUM
( PUNCT
26 NUM
% NOUN
) PUNCT
had AUX
a DET
child NOUN
aged VERB
less ADJ
than SCONJ
11 NUM
years NOUN
in ADP
their PRON
household NOUN
. PUNCT
Each DET
respondent NOUN
was AUX
asked VERB
to PART
specify VERB
the DET
child NOUN
's PART
age NOUN
and CCONJ
the DET
frequency NOUN
of ADP
restraint NOUN
use NOUN
for ADP
that DET
child NOUN
. PUNCT
The DET
two NUM
categories NOUN
of ADP
child NOUN
restraint NOUN
and CCONJ
adult NOUN
safety NOUN
- PUNCT
belt NOUN
use NOUN
in ADP
this DET
analysis NOUN
were AUX
1 NUM
) PUNCT
consistent ADJ
use NOUN
( PUNCT
i.e. X
, PUNCT
always ADV
buckle VERB
up ADP
) PUNCT
and CCONJ
2 X
) PUNCT
less ADJ
than SCONJ
consistent ADJ
use NOUN
( PUNCT
i.e. X
, PUNCT
almost ADV
always ADV
, PUNCT
sometimes ADV
, PUNCT
rarely ADV
, PUNCT
or CCONJ
never ADV
buckle VERB
up ADP
) PUNCT
. PUNCT
Data NOUN
were AUX
weighted VERB
to PART
provide VERB
estimates NOUN
representative ADJ
of ADP
each DET
state NOUN
. PUNCT
Software NOUN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
( PUNCT
7 NUM
) PUNCT
was AUX
used VERB
to PART
calculate VERB
point NOUN
estimates NOUN
and CCONJ
confidence NOUN
intervals NOUN
. PUNCT
Statistically ADV
significant ADJ
differences NOUN
were AUX
defined VERB
by ADP
p NOUN
values NOUN
of ADP
less ADJ
than SCONJ
0.05 NUM
. PUNCT
      SPACE
Each DET
of ADP
the DET
11 NUM
states NOUN
had AUX
some DET
type NOUN
of ADP
child NOUN
restraint NOUN
law NOUN
. PUNCT
Of ADP
these DET
, PUNCT
six NUM
( PUNCT
Arizona PROPN
, PUNCT
Kentucky PROPN
, PUNCT
Maine PROPN
, PUNCT
Nebraska PROPN
, PUNCT
Rhode PROPN
Island PROPN
, PUNCT
and CCONJ
West PROPN
Virginia PROPN
) PUNCT
had AUX
no DET
law NOUN
requiring VERB
adults NOUN
to PART
use VERB
safety NOUN
belts NOUN
; PUNCT
four NUM
( PUNCT
Idaho PROPN
, PUNCT
Maryland PROPN
, PUNCT
Pennsylvania PROPN
, PUNCT
and CCONJ
Washington PROPN
) PUNCT
had AUX
a DET
secondary ADJ
enforcement NOUN
mandatory ADJ
safety NOUN
- PUNCT
belt NOUN
law NOUN
( PUNCT
i.e. X
, PUNCT
a DET
vehicle NOUN
had AUX
to PART
be AUX
stopped VERB
for ADP
a DET
traffic NOUN
violation NOUN
before ADP
a DET
citation NOUN
for ADP
nonuse NOUN
of ADP
safety NOUN
belts NOUN
could AUX
be AUX
issued VERB
) PUNCT
; PUNCT
and CCONJ
one NUM
state NOUN
( PUNCT
New PROPN
York PROPN
) PUNCT
had AUX
a DET
primary ADJ
enforcement NOUN
mandatory ADJ
safety NOUN
- PUNCT
belt NOUN
law NOUN
( PUNCT
i.e. X
, PUNCT
vehicles NOUN
could AUX
be AUX
stopped VERB
for ADP
a DET
safety NOUN
- PUNCT
belt NOUN
law NOUN
violation NOUN
alone ADV
) PUNCT
. PUNCT
In ADP
nine NUM
states NOUN
, PUNCT
child NOUN
- PUNCT
passenger NOUN
protection NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
17Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993laws PROPN
included VERB
all DET
children NOUN
aged VERB
less ADJ
than SCONJ
5 NUM
years NOUN
, PUNCT
but CCONJ
the DET
other ADJ
two NUM
states NOUN
used VERB
both DET
age NOUN
and CCONJ
size NOUN
of ADP
the DET
child NOUN
as SCONJ
criteria NOUN
for ADP
mandatory ADJ
restraint NOUN
use NOUN
. PUNCT
The DET
analysis NOUN
in ADP
this DET
report NOUN
subgrouped VERB
states NOUN
into ADP
1 NUM
) PUNCT
those DET
having VERB
a DET
law NOUN
requiring VERB
adult NOUN
safety NOUN
- PUNCT
belt NOUN
use NOUN
( PUNCT
law NOUN
states NOUN
) PUNCT
, PUNCT
and CCONJ
2 X
) PUNCT
those DET
without ADP
such DET
a DET
law NOUN
( PUNCT
no DET
- PUNCT
law NOUN
states NOUN
) PUNCT
. PUNCT
      SPACE
Overall PROPN
, PUNCT
21 NUM
% NOUN
of ADP
children NOUN
aged VERB
less ADJ
than SCONJ
11 NUM
years NOUN
reportedly ADV
were AUX
not PART
consistently ADV
restrained VERB
during ADP
automobile NOUN
travel NOUN
. PUNCT
Both DET
child NOUN
restraint NOUN
use NOUN
and CCONJ
adult NOUN
restraint NOUN
use NOUN
were AUX
significantly ADV
higher ADJ
( PUNCT
p NOUN
less ADJ
than SCONJ
0.05 NUM
, PUNCT
chi PROPN
- PUNCT
square ADJ
test NOUN
) PUNCT
in ADP
law NOUN
states NOUN
than SCONJ
in ADP
no DET
- PUNCT
law NOUN
states NOUN
( PUNCT
81.1 NUM
% NOUN
versus ADP
74.3 NUM
% NOUN
and CCONJ
58.7 NUM
% NOUN
versus ADP
43.2 NUM
% NOUN
, PUNCT
respectively ADV
) PUNCT
. PUNCT
      SPACE
High ADJ
rates NOUN
of ADP
restraint NOUN
use NOUN
for ADP
children NOUN
aged VERB
less ADV
than SCONJ
or CCONJ
equal ADJ
to ADP
1 NUM
year NOUN
were AUX
reported VERB
by ADP
both DET
adults NOUN
indicating VERB
consistent ADJ
and CCONJ
less ADJ
than SCONJ
consistent ADJ
safety NOUN
- PUNCT
belt NOUN
use NOUN
( PUNCT
Figure NOUN
1 NUM
) PUNCT
. PUNCT
Adults NOUN
with ADP
consistent ADJ
use NOUN
reported VERB
high ADJ
rates NOUN
of ADP
child NOUN
- PUNCT
occupant NOUN
restraint NOUN
use NOUN
regardless ADV
of ADP
the DET
child NOUN
's PART
age NOUN
( PUNCT
range NOUN
: PUNCT
95.5 NUM
% NOUN
for ADP
1-year NUM
- PUNCT
olds NOUN
to ADP
84.7 NUM
% NOUN
for ADP
10-year NUM
- PUNCT
olds NOUN
) PUNCT
. PUNCT
In ADP
comparison NOUN
, PUNCT
for ADP
adults NOUN
reporting VERB
less ADJ
than SCONJ
consistent ADJ
safety NOUN
- PUNCT
belt NOUN
use NOUN
, PUNCT
the DET
rate NOUN
of ADP
child NOUN
- PUNCT
occupant NOUN
restraint NOUN
use NOUN
declined VERB
sharply ADV
by ADP
the DET
age NOUN
of ADP
the DET
child NOUN
( PUNCT
range NOUN
: PUNCT
93.1 NUM
% NOUN
for ADP
1-year NUM
- PUNCT
olds NOUN
to ADP
28.8 NUM
% NOUN
for ADP
10-year NUM
- PUNCT
olds NOUN
) PUNCT
. PUNCT
When ADV
comparing VERB
children NOUN
of ADP
consistent ADJ
adult NOUN
safety NOUN
- PUNCT
belt NOUN
users NOUN
with ADP
children NOUN
of ADP
less ADJ
than SCONJ
consistent ADJ
adult NOUN
safety NOUN
- PUNCT
belt NOUN
users NOUN
, PUNCT
95 NUM
% NOUN
confidence NOUN
intervals NOUN
overlap VERB
for ADP
the DET
two NUM
youngest ADJ
age NOUN
groups NOUN
( PUNCT
i.e. X
, PUNCT
aged VERB
less ADJ
than SCONJ
1 NUM
and CCONJ
1 NUM
year NOUN
) PUNCT
. PUNCT
      SPACE
Reported VERB
child NOUN
- PUNCT
occupant NOUN
restraint NOUN
use NOUN
in ADP
law NOUN
states NOUN
generally ADV
exceeded VERB
that SCONJ
in ADP
no DET
- PUNCT
law NOUN
states NOUN
, PUNCT
regardless ADV
of ADP
age NOUN
of ADP
child NOUN
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
In ADP
addition NOUN
, PUNCT
higher ADJ
adult NOUN
educational ADJ
attainment NOUN
was AUX
significantly ADV
associated VERB
with ADP
increased VERB
restraint NOUN
use NOUN
for ADP
children NOUN
, PUNCT
a DET
factor NOUN
that PRON
has AUX
also ADV
been AUX
associated VERB
with ADP
increased VERB
adult NOUN
safety NOUN
- PUNCT
belt NOUN
use NOUN
( PUNCT
8) NUM
. PUNCT
Reported VERB
by ADP
: PUNCT
National PROPN
Center PROPN
for ADP
Injury PROPN
Prevention PROPN
and CCONJ
Control PROPN
; PUNCT
National PROPN
Center PROPN
for ADP
Chronic PROPN
Disease PROPN
Prevention PROPN
and CCONJ
Health PROPN
Promotion PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
findings NOUN
in ADP
this DET
report NOUN
are AUX
consistent ADJ
with ADP
others NOUN
indicating VERB
that SCONJ
adults NOUN
who PRON
do AUX
not PART
use VERB
safety NOUN
belts NOUN
themselves PRON
are AUX
less ADV
likely ADJ
to PART
employ VERB
occupant ADJ
restraints NOUN
for ADP
their PRON
children NOUN
( PUNCT
6,9 NUM
) PUNCT
. PUNCT
Because SCONJ
these DET
nonbelted VERB
adults NOUN
are AUX
at ADP
increased VERB
risk NOUN
of ADP
crashing VERB
and CCONJ
more ADV
likely ADJ
to PART
exhibit VERB
other ADJ
risk NOUN
- PUNCT
taking VERB
behaviors NOUN
, PUNCT
children NOUN
traveling VERB
with ADP
them PRON
may AUX
be AUX
at ADP
greater ADJ
risk NOUN
for ADP
motor NOUN
- PUNCT
vehicle NOUN
injury NOUN
( PUNCT
10 NUM
) PUNCT
. PUNCT
      SPACE
Educational PROPN
attainment NOUN
of ADP
adult NOUN
respondents NOUN
was AUX
inversely ADV
associated VERB
with ADP
child NOUN
restraint NOUN
use NOUN
in ADP
this DET
report NOUN
. PUNCT
Accordingly ADV
, PUNCT
occupant NOUN
- PUNCT
protection NOUN
programs NOUN
should AUX
be AUX
promoted VERB
among ADP
parents NOUN
with ADP
low ADJ
educational ADJ
attainment NOUN
. PUNCT
Because SCONJ
low ADJ
educational ADJ
attainment NOUN
is AUX
often ADV
associated VERB
with ADP
low ADJ
socioeconomic ADJ
status NOUN
, PUNCT
such ADJ
programs NOUN
should AUX
be AUX
offered VERB
to ADP
adults NOUN
through ADP
health NOUN
- PUNCT
care NOUN
facilities NOUN
that PRON
serve VERB
low ADJ
- PUNCT
income NOUN
communities NOUN
or CCONJ
through ADP
federal ADJ
programs NOUN
( PUNCT
i.e. X
, PUNCT
Head PROPN
Start PROPN
) PUNCT
that PRON
are AUX
directed VERB
at ADP
parents NOUN
with ADP
young ADJ
children NOUN
. PUNCT
      SPACE
Injury PROPN
- PUNCT
prevention NOUN
programs NOUN
emphasize VERB
restraining VERB
young ADJ
children NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
however ADV
, PUNCT
efforts NOUN
must AUX
be AUX
intensified VERB
to PART
protect VERB
child NOUN
occupants NOUN
as SCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
18Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993they NUM
become VERB
older ADJ
. PUNCT
Parents NOUN
, PUNCT
especially ADV
those DET
with ADP
low ADJ
educational ADJ
attainment NOUN
, PUNCT
those DET
who PRON
do AUX
not PART
consistently ADV
wear VERB
safety NOUN
belts NOUN
, PUNCT
and CCONJ
those DET
from ADP
states NOUN
that PRON
do AUX
not PART
have AUX
mandatory ADJ
safety NOUN
- PUNCT
belt NOUN
use NOUN
laws NOUN
, PUNCT
should AUX
be AUX
encouraged VERB
to PART
wear VERB
safety NOUN
belts NOUN
and CCONJ
to PART
protect VERB
their PRON
children NOUN
by ADP
using VERB
approved VERB
child NOUN
safety NOUN
seats NOUN
and CCONJ
safety NOUN
belts NOUN
. PUNCT
Finally ADV
, PUNCT
the DET
increased VERB
use NOUN
of ADP
restraints NOUN
among ADP
children NOUN
may AUX
increase VERB
their PRON
likelihood NOUN
of ADP
using VERB
safety NOUN
belts NOUN
when ADV
they PRON
become VERB
teenagers NOUN
-- PUNCT
the DET
age NOUN
group NOUN
characterized VERB
by ADP
the DET
lowest ADJ
rate NOUN
of ADP
safety NOUN
- PUNCT
belt NOUN
use NOUN
and CCONJ
the DET
highest ADJ
rate NOUN
of ADP
fatal ADJ
crashes NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
References1 PROPN
. PUNCT
CDC PROPN
. PUNCT
Childhood NOUN
injuries NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Am AUX
J PROPN
Dis PROPN
Child PROPN
1990;144:627 NUM
- SYM
46 NUM
. PUNCT
2 NUM
. PUNCT
Partyka PROPN
SC PROPN
. PUNCT
Papers NOUN
on ADP
child NOUN
restraints NOUN
: PUNCT
effectiveness NOUN
and CCONJ
use NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Transportation PROPN
, PUNCT
National PROPN
Highway PROPN
Traffic PROPN
Safety PROPN
Administration PROPN
, PUNCT
1988 NUM
; PUNCT
report VERB
no INTJ
. PUNCT
DOT PROPN
- PUNCT
HS-807 PROPN
- PUNCT
286 NUM
. NOUN
3 NUM
. PUNCT
Guerin ADJ
D NOUN
, PUNCT
MacKinnon PROPN
D. PROPN
An DET
assessment NOUN
of ADP
the DET
California PROPN
child NOUN
passenger NOUN
restraint NOUN
requirement NOUN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1985;75:142 PROPN
- SYM
4 NUM
. PUNCT
4 NUM
. PUNCT
Hall PROPN
W PROPN
, PUNCT
Orr PROPN
B PROPN
, PUNCT
Suttles PROPN
D PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Progress NOUN
report NOUN
on ADP
increasing VERB
child NOUN
restraint NOUN
usage NOUN
through ADP
local ADJ
education NOUN
and CCONJ
distribution NOUN
programs NOUN
. PUNCT
Chapel PROPN
Hill PROPN
, PUNCT
North PROPN
Carolina PROPN
: PUNCT
University PROPN
of ADP
North PROPN
Carolina PROPN
at ADP
Chapel PROPN
Hill PROPN
, PUNCT
Highway PROPN
Safety PROPN
Research PROPN
Center PROPN
, PUNCT
1983 NUM
. NOUN
5 NUM
. PUNCT
National PROPN
Highway PROPN
Traffic PROPN
Safety PROPN
Administration PROPN
. PUNCT
Occupant ADJ
protection NOUN
trends VERB
in ADP
19 NUM
cities NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Transportation PROPN
, PUNCT
National PROPN
Highway PROPN
Traffic PROPN
Safety PROPN
Administration PROPN
, PUNCT
1991 NUM
. PUNCT
6 NUM
. PUNCT
Wagenaar PROPN
AC PROPN
, PUNCT
Molnar PROPN
LJ PROPN
, PUNCT
Margolis PROPN
LH PROPN
. PUNCT
Characteristics NOUN
of ADP
child NOUN
safety NOUN
seat NOUN
users NOUN
. PUNCT
Accid PROPN
Anal PROPN
Prev PROPN
1988;20:311 PROPN
- PUNCT
22 NUM
. PUNCT
7 NUM
. PUNCT
Shah PROPN
BV PROPN
, PUNCT
Barnwell PROPN
BG PROPN
, PUNCT
Hunt PROPN
PN PROPN
, PUNCT
LaVange PROPN
LM PROPN
. PUNCT
Software NOUN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
version NOUN
5.50 NUM
Software PROPN
documentation NOUN
. PUNCT
Research PROPN
Triangle PROPN
Park PROPN
, PUNCT
North PROPN
Carolina PROPN
: PUNCT
Research PROPN
Triangle PROPN
Institute PROPN
, PUNCT
1991 NUM
. PUNCT
8 NUM
. PUNCT
Lund NOUN
AK PROPN
. PUNCT
Voluntary ADJ
seat NOUN
belt NOUN
use NOUN
among ADP
U.S. PROPN
drivers NOUN
: PUNCT
geographic ADJ
, PUNCT
socioeconomic ADJ
and CCONJ
demographic ADJ
variation NOUN
. PUNCT
Accid PROPN
Anal PROPN
Prev PROPN
1986;18:43 NUM
- SYM
50 NUM
. PUNCT
9 NUM
. PUNCT
Margolis PROPN
LH PROPN
, PUNCT
Wagenaar PROPN
AC PROPN
, PUNCT
Molnar PROPN
LJ PROPN
. PUNCT
Use NOUN
and CCONJ
misuse NOUN
of ADP
automobile NOUN
child NOUN
restraint NOUN
devices NOUN
. PUNCT
Am AUX
J PROPN
Dis PROPN
Child PROPN
1992;146:361 NUM
- SYM
6 NUM
. PUNCT
10 NUM
. PUNCT
Hunter PROPN
WW PROPN
, PUNCT
Stutts PROPN
JC PROPN
, PUNCT
Stewart PROPN
JR PROPN
, PUNCT
Rodgman PROPN
EA PROPN
. PUNCT
Characteristics NOUN
of ADP
seatbelt NOUN
users NOUN
and CCONJ
non NOUN
- NOUN
users NOUN
in ADP
a DET
state NOUN
with ADP
a DET
mandatory ADJ
use NOUN
law NOUN
. PUNCT
Health PROPN
Education PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
19Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Research PROPN
1990;5:161 NUM
- SYM
73 NUM
. PUNCT
* PUNCT
Arizona PROPN
, PUNCT
Idaho PROPN
, PUNCT
Kentucky PROPN
, PUNCT
Maine PROPN
, PUNCT
Maryland PROPN
, PUNCT
Nebraska PROPN
, PUNCT
New PROPN
York PROPN
, PUNCT
Pennsylvania PROPN
, PUNCT
Rhode PROPN
Island PROPN
, PUNCT
Washington PROPN
, PUNCT
and CCONJ
West PROPN
Virginia PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
20Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                   SPACE
Publication PROPN
of ADP
CDC PROPN
Surveillance PROPN
Summaries PROPN
                   SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
Since SCONJ
1983 NUM
, PUNCT
CDC PROPN
has AUX
published VERB
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
under ADP
separate ADJ
cover NOUN
as SCONJ
part NOUN
of ADP
the DET
MMWR PROPN
series NOUN
. PUNCT
Each DET
report NOUN
published VERB
in ADP
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
focuses VERB
on ADP
public ADJ
health NOUN
surveillance NOUN
; PUNCT
surveillance NOUN
findings NOUN
are AUX
reported VERB
for ADP
a DET
broad ADJ
range NOUN
of ADP
risk NOUN
factors NOUN
and CCONJ
health NOUN
conditions NOUN
. PUNCT
      SPACE
Summaries PROPN
for ADP
each DET
of ADP
the DET
reports NOUN
published VERB
in ADP
the DET
most ADV
recent ADJ
( PUNCT
March PROPN
19 NUM
, PUNCT
1993 NUM
) PUNCT
issue NOUN
of ADP
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
( PUNCT
1 NUM
) PUNCT
are AUX
provided VERB
below ADV
. PUNCT
All DET
subscribers NOUN
to ADP
MMWR PROPN
receive VERB
the DET
CDC PROPN
Surveillance PROPN
Summaries PROPN
, PUNCT
as ADV
well ADV
as SCONJ
the DET
MMWR PROPN
Recommendations PROPN
and CCONJ
Reports PROPN
, PUNCT
as SCONJ
part NOUN
of ADP
their PRON
subscriptions NOUN
. PUNCT
SURVEILLANCE PROPN
FOR ADP
AND CCONJ
COMPARISON NOUN
OF ADP
BIRTH PROPN
DEFECT PROPN
PREVALENCES NOUN
                               SPACE
IN ADP
TWO NUM
GEOGRAPHIC PROPN
                         SPACE
AREAS NOUN
-- PUNCT
UNITED PROPN
STATES PROPN
, PUNCT
1983 NUM
- SYM
88 NUM
      SPACE
Problem PROPN
/ SYM
Condition PROPN
: PUNCT
CDC PROPN
and CCONJ
some DET
states NOUN
have AUX
developed VERB
surveillance NOUN
systems NOUN
to PART
monitor VERB
the DET
birth NOUN
prevalence NOUN
of ADP
major ADJ
defects NOUN
. PUNCT
      SPACE
Reporting PROPN
Period PROPN
Covered PROPN
: PUNCT
This DET
report NOUN
covers VERB
birth NOUN
defects VERB
surveillance NOUN
in ADP
metropolitan ADJ
Atlanta PROPN
, PUNCT
Georgia PROPN
, PUNCT
and CCONJ
selected VERB
jurisdictions NOUN
in ADP
California PROPN
for ADP
the DET
years NOUN
1983 NUM
- SYM
1988 NUM
. PUNCT
      SPACE
Description PROPN
of ADP
System PROPN
: PUNCT
The DET
California PROPN
Birth PROPN
Defects VERB
Monitoring PROPN
Program PROPN
and CCONJ
the DET
Metropolitan PROPN
Atlanta PROPN
Congenital PROPN
Defects PROPN
Program PROPN
are AUX
two NUM
population NOUN
- PUNCT
based VERB
surveillance NOUN
systems NOUN
that PRON
employ VERB
similar ADJ
data NOUN
collection NOUN
methods NOUN
. PUNCT
The DET
prevalence NOUN
estimates VERB
for ADP
44 NUM
diagnostic ADJ
categories NOUN
were AUX
based VERB
on ADP
data NOUN
for ADP
1983 NUM
- SYM
1988 NUM
for ADP
639,837 NUM
births NOUN
in ADP
California PROPN
and CCONJ
152,970 NUM
births NOUN
in ADP
metropolitan ADJ
Atlanta PROPN
. PUNCT
The DET
prevalences NOUN
in ADP
the DET
two NUM
areas NOUN
were AUX
compared VERB
, PUNCT
adjusting VERB
for ADP
race NOUN
, PUNCT
sex NOUN
, PUNCT
and CCONJ
maternal ADJ
age NOUN
by ADP
using VERB
Poisson PROPN
regression NOUN
. PUNCT
      SPACE
Results VERB
: PUNCT
Regional ADJ
differences NOUN
in ADP
the DET
prevalence NOUN
of ADP
aortic ADJ
stenosis NOUN
, PUNCT
fetal ADJ
alcohol NOUN
syndrome NOUN
, PUNCT
hip NOUN
dislocation NOUN
/ SYM
dysplasia PROPN
, PUNCT
microcephalus PROPN
, PUNCT
obstruction NOUN
of ADP
the DET
kidney NOUN
/ SYM
ureter NOUN
, PUNCT
and CCONJ
scoliosis NOUN
/ SYM
lordosis NOUN
may AUX
be AUX
attributable ADJ
to ADP
general ADJ
diagnostic ADJ
variability NOUN
. PUNCT
However ADV
, PUNCT
differences NOUN
in ADP
the DET
prevalences NOUN
of ADP
arm NOUN
/ SYM
hand NOUN
limb NOUN
reduction NOUN
, PUNCT
encephalocele PROPN
, PUNCT
spina PROPN
bifida PROPN
, PUNCT
or CCONJ
trisomy NOUN
21 NUM
( PUNCT
Down ADP
syndrome NOUN
) PUNCT
are AUX
probably ADV
not PART
attributable ADJ
to ADP
differences NOUN
in ADP
ascertainment NOUN
, PUNCT
because SCONJ
these DET
defects NOUN
are AUX
relatively ADV
easy ADJ
to PART
diagnose VERB
. PUNCT
      SPACE
Interpretation PROPN
: PUNCT
Regional ADJ
differences NOUN
in ADP
prenatal ADJ
diagnosis NOUN
and CCONJ
pregnancy NOUN
termination NOUN
may AUX
affect VERB
prevalences NOUN
of ADP
trisomy NOUN
21 NUM
and CCONJ
spina ADJ
bifida NOUN
. PUNCT
However ADV
, PUNCT
the DET
reason NOUN
for ADP
differences NOUN
in ADP
arm NOUN
/ SYM
hand NOUN
reduction NOUN
is AUX
unknown ADJ
, PUNCT
but CCONJ
may AUX
be AUX
related VERB
to ADP
variability NOUN
in ADP
environmental ADJ
exposure NOUN
, PUNCT
heterogeneity NOUN
in ADP
the DET
gene NOUN
pool NOUN
, PUNCT
or CCONJ
random ADJ
variation NOUN
. PUNCT
      SPACE
Actions PROPN
Taken PROPN
: PUNCT
Because SCONJ
of ADP
the DET
similarities NOUN
of ADP
these DET
data NOUN
bases NOUN
, PUNCT
several ADJ
collaborative ADJ
studies NOUN
are AUX
being AUX
implemented VERB
. PUNCT
In ADP
particular ADJ
, PUNCT
the DET
differences NOUN
in ADP
the DET
birth NOUN
prevalence NOUN
of ADP
spina NOUN
bifida PROPN
and CCONJ
Down PROPN
syndrome NOUN
will AUX
focus VERB
attention NOUN
on ADP
the DET
impact NOUN
of ADP
prenatal ADJ
diagnosis NOUN
. PUNCT
Authors NOUN
: PUNCT
Jane PROPN
Schulman PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Nancy PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
21Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Jensvold NUM
, PUNCT
M.P.H PROPN
, PUNCT
Gary PROPN
M. PROPN
Shaw PROPN
, PUNCT
Dr PROPN
. PUNCT
P.H. PROPN
, PUNCT
California PROPN
Birth PROPN
Defects VERB
Monitoring PROPN
Program PROPN
, PUNCT
March PROPN
of ADP
Dimes PROPN
Birth PROPN
Defects PROPN
Foundation PROPN
. PUNCT
Larry PROPN
D. PROPN
Edmonds PROPN
, PUNCT
M.S.P.H. PROPN
, PUNCT
Anne PROPN
B. PROPN
McClearn PROPN
, PUNCT
Division PROPN
of ADP
Birth PROPN
Defects PROPN
and CCONJ
Developmental PROPN
Disabilities PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Environmental PROPN
Health PROPN
, PUNCT
CDC PROPN
. PUNCT
                       SPACE
INFLUENZA PROPN
-- PUNCT
UNITED PROPN
STATES PROPN
, PUNCT
1988 NUM
- SYM
89 NUM
     SPACE
Problem PROPN
/ SYM
Condition PROPN
: PUNCT
CDC PROPN
monitors VERB
the DET
emergence NOUN
and CCONJ
spread NOUN
of ADP
new ADJ
influenza NOUN
virus NOUN
variants NOUN
and CCONJ
the DET
impact NOUN
of ADP
influenza NOUN
on ADP
morbidity NOUN
and CCONJ
mortality NOUN
annually ADV
from ADP
October PROPN
through ADP
May. PROPN
      SPACE
Reporting PROPN
Period PROPN
Covered VERB
: PUNCT
This DET
report NOUN
covers VERB
U.S. PROPN
influenza NOUN
surveillance NOUN
conducted VERB
from ADP
October PROPN
1988 NUM
through ADP
May PROPN
1989 NUM
. PUNCT
      SPACE
Description PROPN
of ADP
System PROPN
: PUNCT
Weekly PROPN
reports VERB
from ADP
the DET
vital ADJ
statistics NOUN
offices NOUN
of ADP
121 NUM
cities NOUN
provided VERB
an DET
index NOUN
of ADP
influenza PROPN
's PART
impact NOUN
on ADP
mortality NOUN
; PUNCT
58 NUM
WHO PRON
collaborating VERB
laboratories NOUN
reported VERB
weekly ADJ
identification NOUN
of ADP
influenza NOUN
viruses NOUN
; PUNCT
weekly ADJ
morbidity NOUN
reports NOUN
were AUX
received VERB
both DET
from ADP
the DET
state NOUN
and CCONJ
territorial ADJ
epidemiologists NOUN
and CCONJ
from ADP
153 NUM
sentinel NOUN
family NOUN
practice NOUN
physicians NOUN
. PUNCT
Nonsystematic ADJ
reports NOUN
of ADP
outbreaks NOUN
and CCONJ
unusual ADJ
illnesses NOUN
were AUX
received VERB
throughout ADP
the DET
year NOUN
. PUNCT
      SPACE
Results VERB
: PUNCT
During ADP
the DET
1988 NUM
- SYM
89 NUM
influenza NOUN
season NOUN
, PUNCT
influenza PROPN
A(H1N1 PROPN
) PUNCT
and CCONJ
B NOUN
viruses NOUN
were AUX
identified VERB
in ADP
the DET
United PROPN
States PROPN
with ADP
essentially ADV
equal ADJ
frequency NOUN
overall ADV
, PUNCT
although SCONJ
both CCONJ
regional ADJ
and CCONJ
temporal ADJ
patterns NOUN
of ADP
predominance NOUN
shifted VERB
over ADP
the DET
course NOUN
of ADP
the DET
season NOUN
. PUNCT
Throughout ADP
the DET
season NOUN
increases NOUN
in ADP
the DET
indices NOUN
of ADP
influenza NOUN
morbidity NOUN
in ADP
regions NOUN
where ADV
influenza NOUN
A(H1N1 PROPN
) PUNCT
predominated VERB
were AUX
similar ADJ
to ADP
increases NOUN
in ADP
regions NOUN
where ADV
influenza NOUN
B PROPN
predominated VERB
. PUNCT
Only ADV
7 NUM
% NOUN
of ADP
identified VERB
viruses NOUN
were AUX
influenza NOUN
A(H3N2 PROPN
) PUNCT
, PUNCT
but CCONJ
isolations NOUN
of ADP
this DET
subtype NOUN
increased VERB
as SCONJ
the DET
season NOUN
waned VERB
, PUNCT
and CCONJ
it PRON
subsequently ADV
predominated VERB
during ADP
the DET
1989 NUM
- SYM
90 NUM
season NOUN
. PUNCT
During ADP
the DET
1988 NUM
- SYM
89 NUM
season NOUN
outbreaks NOUN
in ADP
nursing NOUN
homes NOUN
were AUX
reported VERB
in ADP
association NOUN
with ADP
influenza PROPN
B PROPN
and CCONJ
A(H3N2 PROPN
) PUNCT
but CCONJ
not PART
influenza NOUN
A(H1N1 PUNCT
) PUNCT
. PUNCT
      SPACE
Interpretation PROPN
: PUNCT
The DET
alternating VERB
temporal ADJ
and CCONJ
geographic ADJ
predominance NOUN
of ADP
influenza NOUN
strains VERB
A(H1N1 PROPN
) PUNCT
and CCONJ
B NOUN
during ADP
the DET
1988 NUM
- SYM
89 NUM
season NOUN
emphasizes VERB
the DET
importance NOUN
of ADP
continual ADJ
attention NOUN
to ADP
regional ADJ
viral ADJ
strain NOUN
surveillance NOUN
, PUNCT
since SCONJ
amantadine NOUN
is AUX
effective ADJ
only ADV
for ADP
treatment NOUN
and CCONJ
prophylaxis PROPN
of ADP
influenza PROPN
A. PROPN
      SPACE
Actions PROPN
Taken VERB
: PUNCT
Weekly ADJ
interim ADJ
analyses NOUN
of ADP
surveillance NOUN
data NOUN
produced VERB
throughout ADP
the DET
season NOUN
allow VERB
physicians NOUN
and CCONJ
public ADJ
health NOUN
officials NOUN
to PART
make VERB
informed ADJ
choices NOUN
regarding VERB
appropriate ADJ
use NOUN
of ADP
amantadine NOUN
. PUNCT
CDC PROPN
's PART
annual ADJ
surveillance NOUN
allows VERB
the DET
observed ADJ
viral ADJ
variants NOUN
to PART
be AUX
assessed VERB
as SCONJ
candidates NOUN
for ADP
inclusion NOUN
as SCONJ
components NOUN
in ADP
vaccines NOUN
used VERB
in ADP
subsequent ADJ
influenza NOUN
seasons NOUN
. PUNCT
Authors NOUN
: PUNCT
Louisa PROPN
E. PROPN
Chapman PROPN
, PUNCT
M.D. PROPN
, PUNCT
M.S.P.H. PROPN
, PUNCT
Epidemiology PROPN
Activity PROPN
, PUNCT
Office PROPN
of ADP
the DET
Director PROPN
, PUNCT
Division PROPN
of ADP
Viral PROPN
and CCONJ
Rickettsial PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
; PUNCT
Margaret PROPN
A. PROPN
Tipple PROPN
, PUNCT
M.D. PROPN
, PUNCT
Division PROPN
of ADP
Quarantine PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Prevention PROPN
Services PROPN
, PUNCT
CDC PROPN
. PUNCT
Suzanne PROPN
Gaventa PROPN
Folger PROPN
, PUNCT
M.P.H. PROPN
, PUNCT
Health PROPN
Investigations PROPN
Branch PROPN
, PUNCT
Division PROPN
of ADP
Health PROPN
Studies PROPN
, PUNCT
Agency PROPN
for ADP
Toxic PROPN
Substances PROPN
and CCONJ
Disease PROPN
Registry PROPN
. PUNCT
Maurice PROPN
Harmon PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Connaught PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
22Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Laboratories NOUN
, PUNCT
Pasteur PROPN
- PUNCT
Mirieux PROPN
Company PROPN
, PUNCT
Swiftwater PROPN
, PUNCT
Pennsylvania PROPN
. PUNCT
Alan PROPN
P. PROPN
Kendal PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
European PROPN
Regional PROPN
Office PROPN
, PUNCT
World PROPN
Health PROPN
Organization PROPN
, PUNCT
Copenhagen PROPN
, PUNCT
Denmark PROPN
. PUNCT
Nancy PROPN
J. PROPN
Cox PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Influenza PROPN
Branch PROPN
, PUNCT
Division PROPN
of ADP
Viral PROPN
and CCONJ
Rickettsial PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
; PUNCT
Lawrence PROPN
B. PROPN
Schonberger PROPN
, PUNCT
M.D. PROPN
, PUNCT
M.P.H. PROPN
, PUNCT
Epidemiology PROPN
Activity PROPN
, PUNCT
Office PROPN
of ADP
the DET
Director PROPN
, PUNCT
Division PROPN
of ADP
Viral PROPN
and CCONJ
Rickettsial PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
Reference1 NOUN
. PUNCT
CDC PROPN
. PUNCT
CDC PROPN
surveillance NOUN
summaries NOUN
( PUNCT
March PROPN
19 NUM
) PUNCT
. PUNCT
MMWR PROPN
1993;42(no NUM
. PUNCT
SS-1).HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
23Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                            SPACE
Clinical PROPN
Research PROPN
News PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                          SPACE
Clinical PROPN
Research PROPN
News PROPN
for ADP
                              SPACE
Arizona PROPN
Physicians PROPN
                 SPACE
Vol PROPN
. PROPN
4 NUM
, PUNCT
No NOUN
. NOUN
4 NUM
, PUNCT
April PROPN
1993 NUM
     SPACE
Tucson PROPN
, PUNCT
ArizonaPublished PROPN
monthly ADV
by ADP
the DET
Office PROPN
of ADP
Public PROPN
Affairs PROPN
at ADP
The DET
University PROPN
of ADP
Arizona PROPN
                            SPACE
Health PROPN
Sciences PROPN
Center PROPN
. PUNCT
                      SPACE
Copyright PROPN
1993 NUM
, PUNCT
The DET
University PROPN
of ADP
Arizona PROPN
                 SPACE
High PROPN
Tech PROPN
Assisted PROPN
Reproductive PROPN
TechnologiesFollowing PROPN
the DET
birth NOUN
of ADP
the DET
first ADJ
in ADP
vitro X
fertilization NOUN
- PUNCT
embryo NOUN
transfer NOUN
( PUNCT
IVF PROPN
- PUNCT
ET PROPN
) PUNCT
baby NOUN
in ADP
1978 NUM
, PUNCT
a DET
host NOUN
of ADP
assisted VERB
reproductive ADJ
technologies NOUN
have AUX
been AUX
developed VERB
that PRON
include VERB
IVF PROPN
- PUNCT
ET PROPN
, PUNCT
gamete ADJ
intrafallopian ADJ
tube NOUN
transfer NOUN
( PUNCT
GIFT PROPN
) PUNCT
, PUNCT
embryo NOUN
cryopreservation NOUN
( PUNCT
freezing NOUN
) PUNCT
and CCONJ
gamete ADJ
micromanipulation NOUN
. PUNCT
Together ADV
, PUNCT
these DET
technologies NOUN
are AUX
referred VERB
to ADP
as SCONJ
the DET
high ADJ
- PUNCT
tech NOUN
assisted VERB
reproductive ADJ
technology NOUN
( PUNCT
ART NOUN
) PUNCT
procedures NOUN
. PUNCT
Ovulation NOUN
induction NOUN
, PUNCT
sperm NOUN
insemination NOUN
and CCONJ
surgery NOUN
for ADP
tubal ADJ
disease NOUN
and/or CCONJ
pathology NOUN
still ADV
are AUX
the DET
mainstays NOUN
of ADP
the DET
therapies NOUN
available ADJ
for ADP
infertility NOUN
management NOUN
. PUNCT
However ADV
, PUNCT
when ADV
these DET
fail VERB
, PUNCT
it PRON
almost ADV
always ADV
is AUX
appropriate ADJ
to PART
proceed VERB
with ADP
one NUM
of ADP
the DET
ART NOUN
procedures NOUN
. PUNCT
Therefore ADV
, PUNCT
in ADP
addition NOUN
to ADP
a DET
comprehensive ADJ
basic ADJ
and CCONJ
general ADJ
infertility NOUN
service NOUN
at ADP
The DET
University PROPN
of ADP
Arizona PROPN
Center PROPN
for ADP
Reproductive PROPN
Endocrinology PROPN
and CCONJ
Infertility PROPN
, PUNCT
there PRON
is AUX
a DET
program NOUN
of ADP
Assisted PROPN
Reproduction PROPN
that PRON
specializes VERB
in ADP
ART NOUN
procedures NOUN
. PUNCT
This DET
program NOUN
serves VERB
as SCONJ
a DET
tertiary ADJ
provider NOUN
for ADP
those DET
patients NOUN
in ADP
the DET
state NOUN
of ADP
Arizona PROPN
whose PRON
infertility NOUN
problems NOUN
can AUX
not PART
be AUX
resolved VERB
by ADP
the DET
traditional ADJ
therapies NOUN
. PUNCT
The DET
following ADJ
article NOUN
( PUNCT
on ADP
back ADV
) PUNCT
describes VERB
the DET
ART NOUN
procedures NOUN
available ADJ
in ADP
our PRON
Center PROPN
, PUNCT
clarifies NOUN
appropriate ADJ
applications NOUN
for ADP
each DET
, PUNCT
and CCONJ
considers VERB
the DET
realistic ADJ
expectations NOUN
for ADP
their PRON
success NOUN
. PUNCT
Procedures NOUN
included VERB
are AUX
: PUNCT
o INTJ
in ADP
vitro X
o PROPN
fertilization NOUN
- PUNCT
embryo NOUN
transfer NOUN
( PUNCT
IVF PROPN
- PUNCT
ET PROPN
) PUNCT
, PUNCT
  SPACE
gamete PROPN
intrafallopian PROPN
tube PROPN
   SPACE
transfer NOUN
o X
( PUNCT
GIFT PROPN
) PUNCT
, PUNCT
  SPACE
cryopreservation NOUN
of ADP
human ADJ
embryos NOUN
and CCONJ
  SPACE
gamete PROPN
micromanipulation NOUN
. PUNCT
This DET
article NOUN
also ADV
considers VERB
ongoing ADJ
research NOUN
in ADP
our PRON
program NOUN
that PRON
is AUX
directed VERB
towards ADP
improved ADJ
success NOUN
of ADP
these DET
technologies NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
24Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                           SPACE
Future PROPN
Areas PROPN
of ADP
ResearchIn PROPN
addition NOUN
to ADP
ongoing ADJ
research NOUN
that PRON
is AUX
directed VERB
exclusively ADV
toward ADP
the DET
management NOUN
of ADP
infertile ADJ
couples NOUN
, PUNCT
we PRON
are AUX
developing VERB
the DET
technology NOUN
to PART
assist VERB
couples NOUN
who PRON
are AUX
at ADP
risk NOUN
for ADP
producing VERB
embryos NOUN
with ADP
a DET
serious ADJ
hereditary ADJ
disease NOUN
. PUNCT
This DET
technology NOUN
involves VERB
biopsying VERB
the DET
preimplantation NOUN
human ADJ
embryo NOUN
and CCONJ
then ADV
subjecting VERB
the DET
biopsied VERB
cells NOUN
to ADP
genetic ADJ
analysis NOUN
using VERB
either CCONJ
DNA NOUN
amplification NOUN
or CCONJ
fluorescent NOUN
in ADP
situ NOUN
hybridization NOUN
. PUNCT
There PRON
are AUX
recent ADJ
reports NOUN
of ADP
the DET
successful ADJ
application NOUN
of ADP
DNA NOUN
amplification NOUN
by ADP
other ADJ
centers NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
for ADP
diagnosis NOUN
of ADP
the DET
genes NOUN
for ADP
cystic ADJ
fibrosis NOUN
and CCONJ
hemophilia NOUN
. PUNCT
We PRON
hope VERB
to PART
apply VERB
and CCONJ
further ADJ
focus VERB
fluorescent NOUN
in ADP
situ NOUN
hybridization NOUN
technology NOUN
for ADP
probing VERB
the DET
X NOUN
chromosome NOUN
, PUNCT
the DET
identification NOUN
of ADP
which PRON
will AUX
provide VERB
a DET
scientific ADJ
basis NOUN
for ADP
counselling NOUN
patients NOUN
who PRON
exhibit VERB
sex NOUN
- PUNCT
linked VERB
disorders NOUN
. PUNCT
The DET
considerable ADJ
clinical ADJ
application NOUN
of ADP
such ADJ
technology NOUN
lies VERB
in ADP
the DET
fact NOUN
that SCONJ
it PRON
circumvents VERB
the DET
need NOUN
for ADP
prenatal ADJ
diagnosis NOUN
, PUNCT
in ADP
addition NOUN
to ADP
the DET
possibility NOUN
of ADP
a DET
subsequent ADJ
termination NOUN
of ADP
affected VERB
fetuses NOUN
, PUNCT
in ADP
order NOUN
to PART
avoid VERB
the DET
birth NOUN
of ADP
affected VERB
children NOUN
. PUNCT
Catherine PROPN
Racowsky PROPN
, PUNCT
Ph PROPN
. PROPN
D.Associate ADJ
Professor PROPN
and CCONJ
Director PROPN
of ADP
ResearchDepartment PROPN
of ADP
Obstetrics PROPN
and CCONJ
GynecologyCollege PROPN
of ADP
Medicine PROPN
University PROPN
of ADP
ArizonaTucson PROPN
, PUNCT
Arizona PROPN
               SPACE
Applications PROPN
, PUNCT
Success PROPN
Rates PROPN
and CCONJ
Advances PROPN
for ADP
the DET
                           SPACE
Management PROPN
of ADP
InfertilityThe PROPN
following VERB
are AUX
the DET
ART NOUN
procedures NOUN
available ADJ
at ADP
The DET
University PROPN
of ADP
Arizona PROPN
Center PROPN
for ADP
Reproductive PROPN
Endocrinology PROPN
and CCONJ
Infertility PROPN
. PUNCT
      SPACE
In ADP
Vitro PROPN
Fertilization PROPN
- PUNCT
Embryo PROPN
Transfer PROPN
is AUX
the DET
core ADJ
ART NOUN
procedure NOUN
of ADP
our PRON
Assisted PROPN
Reproduction PROPN
Program PROPN
. PUNCT
  SPACE
This DET
procedure NOUN
involves VERB
retrieval NOUN
of ADP
unfertilized ADJ
eggs NOUN
from ADP
the DET
ovary ADJ
, PUNCT
their PRON
insemination NOUN
in ADP
vitro X
in ADP
a DET
dish NOUN
, PUNCT
and CCONJ
the DET
culture NOUN
of ADP
resultant ADJ
embryos NOUN
for ADP
1 NUM
or CCONJ
2 NUM
days NOUN
, PUNCT
before ADP
they PRON
are AUX
transferred VERB
to ADP
the DET
patient NOUN
's PART
uterus NOUN
. PUNCT
All DET
cultures NOUN
are AUX
maintained VERB
in ADP
an DET
incubator NOUN
under ADP
strictly ADV
controlled VERB
atmospheric ADJ
and CCONJ
temperature NOUN
conditions NOUN
. PUNCT
Before ADP
being AUX
processed VERB
for ADP
use NOUN
in ADP
insemination NOUN
, PUNCT
semen ADJ
samples NOUN
are AUX
evaluated VERB
in ADP
our PRON
andrology NOUN
laboratory NOUN
using VERB
both CCONJ
subjective ADJ
light ADJ
microscopy NOUN
and CCONJ
computer NOUN
- PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
25Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993assisted NUM
semen ADJ
analyses NOUN
. PUNCT
To PART
ensure VERB
an DET
adequate ADJ
number NOUN
of ADP
eggs NOUN
with ADP
which PRON
to PART
perform VERB
IVF PROPN
- PUNCT
ET PROPN
, PUNCT
or CCONJ
indeed ADV
, PUNCT
GIFT PROPN
, PUNCT
follicular ADJ
development NOUN
is AUX
typically ADV
stimulated VERB
, PUNCT
with ADP
gonadotropins NOUN
( PUNCT
perganol NOUN
, PUNCT
metrodin PROPN
) PUNCT
, PUNCT
gonadotropin NOUN
releasing VERB
hormone NOUN
( PUNCT
GnRH PROPN
, PUNCT
Factrel PROPN
, PUNCT
lutrepulse NOUN
) PUNCT
and/or CCONJ
GnRH PROPN
analogues NOUN
( PUNCT
lupron PROPN
, PUNCT
Depo PROPN
lupron PROPN
, PUNCT
synarel NOUN
) PUNCT
. PUNCT
Occasionally ADV
, PUNCT
however ADV
, PUNCT
IVF PROPN
- PUNCT
ET PROPN
is AUX
accomplished VERB
with ADP
eggs NOUN
obtained VERB
in ADP
non ADJ
- ADJ
stimulated VERB
cycles NOUN
. PUNCT
While SCONJ
some DET
programs NOUN
utilize VERB
laparoscopic PROPN
egg NOUN
retrieval NOUN
in ADP
the DET
operating NOUN
room NOUN
with ADP
the DET
patient NOUN
under ADP
general ADJ
anesthesia PROPN
, PUNCT
we PRON
undertake VERB
the DET
less ADV
costly ADJ
approach NOUN
of ADP
ultrasound NOUN
- PUNCT
guided VERB
retrieval NOUN
in ADP
our PRON
Infertility PROPN
Unit PROPN
, PUNCT
with ADP
the DET
patient NOUN
sedated VERB
. PUNCT
       SPACE
Couples PROPN
who PRON
resort VERB
to ADP
IVF PROPN
- PUNCT
ET PROPN
exhibit NOUN
such ADJ
pathologies NOUN
as SCONJ
tubal ADJ
deficiencies NOUN
, PUNCT
ovulatory ADJ
dysfunction NOUN
, PUNCT
endometriosis NOUN
, PUNCT
and/or CCONJ
mild ADJ
forms NOUN
of ADP
male ADJ
factor NOUN
infertility NOUN
. PUNCT
  SPACE
According VERB
to ADP
the DET
United PROPN
States PROPN
IVF PROPN
Registry PROPN
, PUNCT
the DET
overall ADJ
success NOUN
rate NOUN
for ADP
IVF PROPN
- PUNCT
ET PROPN
nationwide ADV
has AUX
stabilized VERB
at ADP
about ADV
14 NUM
percent NOUN
per ADP
cycle NOUN
. PUNCT
Results NOUN
from ADP
our PRON
program NOUN
, PUNCT
involving VERB
86 NUM
patients NOUN
who PRON
have AUX
undergone VERB
173 NUM
IVF PROPN
- PUNCT
ET PROPN
cycles NOUN
, PUNCT
reflect VERB
a DET
comparable ADJ
success NOUN
rate NOUN
. PUNCT
      SPACE
Nevertheless ADV
, PUNCT
the DET
overall ADJ
incidence NOUN
of ADP
success NOUN
with ADP
this DET
procedure NOUN
is AUX
disconcertingly ADV
low ADJ
and CCONJ
emphasizes VERB
the DET
need NOUN
to PART
address VERB
those DET
physiological ADJ
factors NOUN
that PRON
limit VERB
achievement NOUN
of ADP
a DET
higher ADJ
percentage NOUN
of ADP
pregnancies NOUN
. PUNCT
  SPACE
Well INTJ
recognized VERB
predictors NOUN
of ADP
outcome NOUN
include VERB
patient ADJ
age NOUN
, PUNCT
response NOUN
to ADP
exogenous ADJ
ovarian ADJ
stimulation NOUN
, PUNCT
quality NOUN
of ADP
sperm NOUN
and CCONJ
number NOUN
of ADP
repeated VERB
IVF PROPN
- PUNCT
ET NOUN
cycle NOUN
attempts NOUN
. PUNCT
However ADV
, PUNCT
among ADP
these DET
, PUNCT
age NOUN
is AUX
the DET
single ADJ
most ADV
significant ADJ
determinant NOUN
of ADP
conception NOUN
. PUNCT
Therefore ADV
, PUNCT
it PRON
is AUX
critical ADJ
that SCONJ
such ADJ
patients NOUN
are AUX
referred VERB
to ADP
an DET
Assisted PROPN
Reproduction PROPN
Program PROPN
at ADP
the DET
earliest ADJ
opportunity NOUN
following VERB
failure NOUN
of ADP
traditional ADJ
therapies NOUN
. PUNCT
      SPACE
The DET
underlying VERB
basis NOUN
for ADP
the DET
negative ADJ
effect NOUN
of ADP
age NOUN
on ADP
fertility NOUN
has AUX
not PART
been AUX
clearly ADV
delineated VERB
beyond ADP
recognition NOUN
that SCONJ
: PUNCT
1 X
) PUNCT
the DET
number NOUN
of ADP
eggs NOUN
available ADJ
for ADP
retrieval NOUN
declines NOUN
markedly ADV
with ADP
age NOUN
; PUNCT
2 X
) PUNCT
fertilization NOUN
rates NOUN
significantly ADV
decrease VERB
in ADP
eggs NOUN
retrieved VERB
from ADP
patients NOUN
who PRON
are AUX
over ADP
40 NUM
years NOUN
; PUNCT
and CCONJ
3 X
) PUNCT
provided VERB
the DET
appropriate ADJ
hormonal ADJ
background NOUN
is AUX
present ADJ
, PUNCT
age NOUN
is AUX
unrelated ADJ
to PART
uterine ADJ
competency NOUN
to PART
sustain VERB
pregnancy NOUN
. PUNCT
Ongoing ADJ
research NOUN
in ADP
our PRON
Center PROPN
, PUNCT
therefore ADV
, PUNCT
is AUX
investigating VERB
physiological ADJ
changes NOUN
in ADP
the DET
egg NOUN
that PRON
may AUX
be AUX
impacted VERB
by ADP
age NOUN
. PUNCT
We PRON
have AUX
determined VERB
that SCONJ
more ADJ
than SCONJ
50 NUM
percent NOUN
of ADP
eggs NOUN
that PRON
fail VERB
to PART
fertilize VERB
in ADP
vitro X
are AUX
chromosomally ADV
abnormal ADJ
, PUNCT
and CCONJ
that SCONJ
a DET
significant ADJ
proportion NOUN
of ADP
these DET
abnormalities NOUN
are AUX
accountable ADJ
to PART
patient ADJ
age NOUN
. PUNCT
Currently ADV
, PUNCT
the DET
only ADJ
recourse NOUN
for ADP
such ADJ
patients NOUN
is AUX
to PART
use VERB
eggs NOUN
obtained VERB
from ADP
a DET
donor NOUN
. PUNCT
Our PRON
program NOUN
has AUX
initiated VERB
recruitment NOUN
of ADP
volunteer NOUN
egg NOUN
donors NOUN
to PART
satisfy VERB
the DET
needs NOUN
of ADP
a DET
list NOUN
of ADP
recipients NOUN
interested ADJ
in ADP
this DET
form NOUN
of ADP
therapy NOUN
. PUNCT
      SPACE
GIFT PROPN
- PUNCT
This DET
high ADJ
- PUNCT
tech NOUN
ART NOUN
procedure NOUN
is AUX
performed VERB
in ADP
the DET
operating NOUN
room NOUN
, PUNCT
usually ADV
with ADP
the DET
use NOUN
of ADP
a DET
laparoscope NOUN
and CCONJ
, PUNCT
in ADP
contrast NOUN
to ADP
IVF PROPN
- PUNCT
ET PROPN
, PUNCT
involves VERB
introducing VERB
sperm NOUN
and CCONJ
freshly ADV
retrieved VERB
eggs NOUN
into ADP
the DET
lumen NOUN
of ADP
the DET
Fallopian ADJ
tube NOUN
( PUNCT
an DET
average NOUN
of ADP
3 NUM
eggs NOUN
/ SYM
tube NOUN
) PUNCT
. PUNCT
Under ADP
these DET
circumstances NOUN
, PUNCT
fertilization NOUN
occurs VERB
in ADP
vivo NOUN
and CCONJ
, PUNCT
if SCONJ
excess ADJ
eggs NOUN
are AUX
retrieved VERB
, PUNCT
the DET
remainder NOUN
undergo NOUN
IVF PROPN
, PUNCT
with ADP
subsequent ADJ
options NOUN
for ADP
embryo NOUN
transfer NOUN
in ADP
that DET
cycle NOUN
, PUNCT
or CCONJ
freezing VERB
for ADP
transfer NOUN
in ADP
a DET
subsequent ADJ
cycle NOUN
. PUNCT
This DET
ART NOUN
procedure NOUN
is AUX
applied VERB
to ADP
cases NOUN
in ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
26Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993which NUM
there PRON
is AUX
at ADV
least ADV
one NUM
patent NOUN
Fallopian ADJ
tube NOUN
but CCONJ
the DET
couple NOUN
has AUX
such ADJ
pathologies NOUN
as SCONJ
ovulatory ADJ
dysfunction NOUN
, PUNCT
endometriosis NOUN
, PUNCT
male ADJ
factor NOUN
infertility NOUN
and/or CCONJ
idiopathic ADJ
infertility NOUN
. PUNCT
         SPACE
The DET
data NOUN
reported VERB
in ADP
the DET
United PROPN
States PROPN
IVF PROPN
Registry PROPN
for ADP
1985 NUM
through ADP
1990 NUM
indicate VERB
that SCONJ
the DET
overall ADJ
success NOUN
rate NOUN
with ADP
GIFT PROPN
is AUX
higher ADJ
than SCONJ
that DET
obtained VERB
with ADP
the DET
IVF PROPN
- PUNCT
ET PROPN
technique NOUN
( PUNCT
range NOUN
of ADP
clinical ADJ
pregnancies NOUN
for ADP
GIFT PROPN
is AUX
24 NUM
to PART
36 NUM
percent NOUN
and CCONJ
for ADP
IVF PROPN
- PUNCT
ET PROPN
14 NUM
to PART
18 NUM
percent NOUN
) PUNCT
. PUNCT
In ADP
view NOUN
of ADP
this DET
fact NOUN
, PUNCT
one PRON
might AUX
expect VERB
more ADJ
patients NOUN
to PART
be AUX
treated VERB
with ADP
GIFT NOUN
than SCONJ
IVF PROPN
- PUNCT
ET PROPN
. PUNCT
However ADV
, PUNCT
in ADP
our PRON
program NOUN
we PRON
have AUX
taken VERB
into ADP
account NOUN
three NUM
basic ADJ
concerns NOUN
which PRON
, PUNCT
while SCONJ
substantially ADV
reducing VERB
the DET
number NOUN
of ADP
GIFT PROPN
cycles NOUN
performed VERB
, PUNCT
benefit VERB
the DET
patient NOUN
. PUNCT
These DET
concerns NOUN
are AUX
: PUNCT
1 X
) PUNCT
the DET
increased VERB
costs NOUN
associated VERB
with ADP
performing VERB
a DET
procedure NOUN
in ADP
the DET
operating NOUN
room NOUN
; PUNCT
2 X
) PUNCT
the DET
risks NOUN
, PUNCT
albeit SCONJ
minimal ADJ
, PUNCT
of ADP
undergoing VERB
general ADJ
anesthesia PROPN
; PUNCT
and CCONJ
3 X
) PUNCT
the DET
considerable ADJ
benefits NOUN
to PART
be AUX
accrued VERB
from ADP
obtaining VERB
direct ADJ
information NOUN
on ADP
the DET
quality NOUN
and CCONJ
fertilizability NOUN
of ADP
the DET
eggs NOUN
, PUNCT
and CCONJ
the DET
developmental ADJ
competency NOUN
of ADP
resultant ADJ
embryos NOUN
. PUNCT
      SPACE
The DET
increased VERB
success NOUN
with ADP
GIFT PROPN
undoubtedly ADV
reflects VERB
the DET
artificial ADJ
environment NOUN
provided VERB
by ADP
the DET
laboratory NOUN
in ADP
the DET
IVF PROPN
- PUNCT
ET PROPN
procedure NOUN
. PUNCT
Between ADP
January PROPN
1 NUM
, PUNCT
1991 NUM
, PUNCT
and CCONJ
December PROPN
31 NUM
, PUNCT
1992 NUM
, PUNCT
we PRON
have AUX
performed VERB
a DET
total NOUN
of ADP
12 NUM
GIFT PROPN
cycles NOUN
, PUNCT
with ADP
an DET
overall ADJ
success NOUN
rate NOUN
of ADP
20 NUM
percent NOUN
. PUNCT
      SPACE
Embryo PROPN
cryopreservation NOUN
, PUNCT
or CCONJ
freezing NOUN
, PUNCT
is AUX
applied VERB
in ADP
our PRON
program NOUN
when ADV
embryos NOUN
result VERB
from ADP
residual ADJ
GIFT NOUN
eggs NOUN
or CCONJ
from ADP
non ADJ
- ADJ
transferred VERB
IVF ADJ
embryos NOUN
. PUNCT
This DET
procedure NOUN
not PART
only ADV
provides VERB
patients NOUN
with ADP
a DET
subsequent ADJ
opportunity NOUN
for ADP
success NOUN
at ADP
much ADJ
reduced VERB
costs NOUN
, PUNCT
but CCONJ
also ADV
circumvents VERB
the DET
legal ADJ
and CCONJ
ethical ADJ
issues NOUN
relating VERB
to ADP
disposal NOUN
of ADP
supernumerary ADJ
embryos NOUN
. PUNCT
Therefore ADV
, PUNCT
as SCONJ
stipulated VERB
by ADP
the DET
American PROPN
Fertility PROPN
Society PROPN
ethical ADJ
guidelines NOUN
for ADP
ART NOUN
programs NOUN
, PUNCT
from ADP
both CCONJ
a DET
practical ADJ
and CCONJ
an DET
ethical ADJ
standpoint NOUN
, PUNCT
all DET
Assisted PROPN
Reproduction PROPN
programs NOUN
should AUX
have AUX
the DET
capability NOUN
of ADP
cryopreserving VERB
human ADJ
embrys NOUN
. PUNCT
      SPACE
Gamete PROPN
Micromanipulation PROPN
- PUNCT
This DET
ART NOUN
procedure NOUN
, PUNCT
which PRON
is AUX
still ADV
very ADV
new ADJ
, PUNCT
is AUX
applied VERB
to ADP
couples NOUN
who PRON
are AUX
unaccepting VERB
of ADP
insemination NOUN
with ADP
donor NOUN
semen NOUN
but CCONJ
who PRON
have AUX
severe ADJ
male ADJ
factor NOUN
infertility NOUN
( PUNCT
less ADJ
than SCONJ
10 NUM
million NUM
sperm NOUN
/ SYM
ml NOUN
in ADP
combination NOUN
with ADP
fewer ADJ
than SCONJ
20 NUM
perccent NOUN
motile NOUN
sperm NOUN
, PUNCT
and/or CCONJ
less ADJ
than SCONJ
10 NUM
percent NOUN
sperm NOUN
with ADP
normal ADJ
morphology NOUN
) PUNCT
. PUNCT
We PRON
are AUX
currently ADV
developing VERB
the DET
procedure NOUN
of ADP
sub ADJ
- ADJ
zonal ADJ
insertion NOUN
( PUNCT
SZI PROPN
) PUNCT
, PUNCT
which PRON
entails VERB
injecting NOUN
sperm NOUN
under ADP
the DET
coating NOUN
around ADP
the DET
egg NOUN
, PUNCT
the DET
barrier NOUN
normally ADV
penetrated VERB
by ADP
the DET
sperm NOUN
through ADP
enzymatic ADJ
digestion NOUN
. PUNCT
      SPACE
Available PROPN
data NOUN
from ADP
SZI PROPN
programs NOUN
world NOUN
- PUNCT
wide ADV
indicate VERB
that SCONJ
only ADV
5 NUM
to PART
10 NUM
percent NOUN
of ADP
SZI PROPN
cycles NOUN
result VERB
in ADP
a DET
pregnancy NOUN
. PUNCT
This DET
statistic NOUN
undoubtedly ADV
relates VERB
to ADP
limitations NOUN
imposed VERB
by ADP
abnormalities NOUN
inherent ADJ
in ADP
the DET
sperm NOUN
. PUNCT
Therefore ADV
, PUNCT
we PRON
are AUX
currently ADV
focusing VERB
on ADP
the DET
development NOUN
of ADP
improved ADJ
techniques NOUN
for ADP
the DET
recognition NOUN
and CCONJ
selection NOUN
of ADP
sperm NOUN
chosen VERB
for ADP
manipulation NOUN
. PUNCT
Such ADJ
efforts NOUN
are AUX
unquestionably ADV
worthwhile ADJ
in ADP
view NOUN
of ADP
the DET
fact NOUN
that SCONJ
this DET
technology NOUN
offers VERB
the DET
only ADJ
realistic ADJ
opportunity NOUN
for ADP
severe ADJ
male ADJ
factor NOUN
patients NOUN
to PART
establish VERB
conception NOUN
. PUNCT
Catherine PROPN
Racowsky PROPN
, PUNCT
Ph PROPN
. PROPN
D.HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
27Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Associate NUM
Professor PROPN
and CCONJ
Director PROPN
of ADP
ResearchDepartment PROPN
of ADP
Obstetrics PROPN
and CCONJ
GynecologyCollege PROPN
of ADP
Medicine PROPN
--------- PUNCT
end NOUN
of ADP
part NOUN
2 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59123From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 NUM
Medical PROPN
News PROPN
Part PROPN
4/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------limits PROPN
of ADP
AZT PROPN
's PART
efficacy NOUN
and CCONJ
now ADV
suggest VERB
using VERB
the DET
drug NOUN
  SPACE
either CCONJ
sequentially ADV
with ADP
other ADJ
drugs NOUN
or CCONJ
in ADP
a DET
kind NOUN
of ADP
AIDS PROPN
  SPACE
treatment NOUN
" PUNCT
cocktail NOUN
" PUNCT
combining VERB
a DET
number NOUN
of ADP
drugs NOUN
to PART
fight VERB
the DET
  SPACE
virus NOUN
all ADV
at ADP
once ADV
. PUNCT
  SPACE
" PUNCT
Treating VERB
people NOUN
with ADP
AZT PROPN
alone ADV
does AUX
n't PART
  SPACE
happen VERB
in ADP
the DET
real ADJ
world NOUN
anymore ADV
, PUNCT
" PUNCT
said VERB
Dr. PROPN
Mark PROPN
Jacobson PROPN
of ADP
the DET
  SPACE
University PROPN
of ADP
California PROPN
-- PUNCT
San PROPN
Francisco PROPN
. PUNCT
  SPACE
Also ADV
, PUNCT
with ADP
recent ADJ
  SPACE
findings NOUN
indicating VERB
that SCONJ
HIV PROPN
replicates VERB
rapidly ADV
in ADP
the DET
lymph PROPN
  SPACE
nodes PROPN
after ADP
infection NOUN
, PUNCT
physicians NOUN
may AUX
begin VERB
pushing VERB
even ADV
harder ADJ
  SPACE
for ADP
early ADJ
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
patients.================================================================== PROPN
    SPACE
" PUNCT
New PROPN
Infectious ADJ
Disease PROPN
Push PROPN
" PUNCT
American PROPN
Medical PROPN
News PROPN
( PUNCT
04/05/93 PROPN
) PUNCT
Vol PROPN
. PROPN
36 NUM
, PUNCT
No NOUN
. PROPN
13 NUM
, PUNCT
P. PROPN
2 NUM
      SPACE
The DET
Center PROPN
for ADP
Disease PROPN
Control PROPN
will AUX
launch VERB
a DET
worldwide ADJ
network NOUN
to PART
track VERB
the DET
spread NOUN
of ADP
infectious ADJ
diseases NOUN
and CCONJ
detect VERB
drug NOUN
- PUNCT
resistant ADJ
or CCONJ
new ADJ
strains NOUN
in ADP
time NOUN
to PART
help VERB
prevent VERB
their PRON
spread NOUN
. PUNCT
  SPACE
The DET
network NOUN
is AUX
expected VERB
to PART
cost VERB
between ADP
$ SYM
75 NUM
million NUM
and CCONJ
$ SYM
125 NUM
million NUM
but CCONJ
is AUX
  SPACE
an DET
essential ADJ
part NOUN
of ADP
the DET
Clinton PROPN
administration NOUN
's PART
health NOUN
reform NOUN
  SPACE
plan NOUN
, PUNCT
according VERB
to ADP
the DET
CDC PROPN
and CCONJ
outside ADJ
experts NOUN
. PUNCT
  SPACE
The DET
plan NOUN
will AUX
  SPACE
require VERB
the DET
CDC PROPN
to PART
enhance VERB
surveillance NOUN
of ADP
disease NOUN
in ADP
the DET
United PROPN
  SPACE
States PROPN
and CCONJ
establish VERB
about ADV
15 NUM
facilities NOUN
across ADP
the DET
world NOUN
to PART
  SPACE
track VERB
disease NOUN
. PUNCT
      SPACE
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                  SPACE
April PROPN
13 NUM
, PUNCT
1993 NUM
      SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
  SPACE
" PUNCT
NIH PROPN
Plans VERB
to PART
Begin VERB
AIDS PROPN
Drug PROPN
Trials PROPN
at ADP
Earlier ADJ
Stage PROPN
" PUNCT
Nature NOUN
( PUNCT
04/01/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
362 NUM
, PUNCT
No NOUN
. NOUN
6419 NUM
, PUNCT
P. PROPN
382 NUM
  SPACE
( PUNCT
Macilwain PROPN
, PUNCT
Colin PROPN
) PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
42Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
     SPACE
The DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
has AUX
announced VERB
it PRON
will AUX
start VERB
  SPACE
treating VERB
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
as ADV
soon ADV
as SCONJ
possible ADJ
after ADP
  SPACE
seroconversion NOUN
, PUNCT
resulting VERB
from ADP
recent ADJ
findings NOUN
that PRON
show VERB
HIV PROPN
is AUX
  SPACE
active ADJ
in ADP
the DET
body NOUN
in ADP
large ADJ
numbers NOUN
much ADV
earlier ADV
than SCONJ
was AUX
  SPACE
previously ADV
believed VERB
. PUNCT
  SPACE
Anthony PROPN
Fauci PROPN
, PUNCT
director NOUN
of ADP
the DET
U.S. PROPN
  SPACE
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases PROPN
( PUNCT
NIAID PROPN
) PUNCT
, PUNCT
  SPACE
said VERB
, PUNCT
" PUNCT
We PRON
must AUX
address VERB
the DET
question NOUN
of ADP
how ADV
to PART
treat VERB
people NOUN
as SCONJ
  SPACE
early ADV
as SCONJ
we PRON
possibly ADV
can AUX
with ADP
drugs NOUN
that PRON
are AUX
safe ADJ
enough ADV
to PART
give VERB
  SPACE
people NOUN
for ADP
years NOUN
and CCONJ
that DET
will AUX
get AUX
around ADP
microbial ADJ
resistance NOUN
. PUNCT
" PUNCT
  SPACE
He PRON
said VERB
any DET
delay NOUN
would AUX
signify VERB
questions NOUN
over ADP
safety NOUN
and CCONJ
  SPACE
resistance NOUN
rather ADV
than SCONJ
a DET
lack NOUN
of ADP
funds NOUN
. PUNCT
  SPACE
Fauci PROPN
, PUNCT
who PRON
co VERB
- VERB
authored VERB
  SPACE
one NUM
of ADP
the DET
two NUM
papers NOUN
published VERB
last ADJ
week NOUN
in ADP
Nature PROPN
, PUNCT
rejects VERB
the DET
  SPACE
argument NOUN
by ADP
one NUM
of ADP
his PRON
co NOUN
- NOUN
authors NOUN
, PUNCT
Cecil PROPN
Fox PROPN
, PUNCT
that SCONJ
the DET
new ADJ
  SPACE
discovery NOUN
indicates VERB
that SCONJ
" PUNCT
$ SYM
1 NUM
billion NUM
spent VERB
on ADP
vaccine NOUN
trials NOUN
" PUNCT
has AUX
been AUX
" PUNCT
a DET
waste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
" PUNCT
because SCONJ
the DET
trials NOUN
were AUX
started VERB
  SPACE
too ADV
long ADV
after ADP
the DET
patients NOUN
were AUX
infected VERB
and CCONJ
were AUX
ended VERB
too ADV
  SPACE
quickly ADV
. PUNCT
  SPACE
John PROPN
Tew PROPN
of ADP
the DET
Medical PROPN
College PROPN
of ADP
Virginia PROPN
in ADP
Richmond PROPN
claims VERB
that SCONJ
the DET
new ADJ
evidence NOUN
strongly ADV
backs VERB
the DET
argument NOUN
for ADP
  SPACE
early ADJ
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
patients NOUN
. PUNCT
  SPACE
AIDS PROPN
activists NOUN
  SPACE
welcomed VERB
the DET
new ADJ
information NOUN
but CCONJ
said VERB
the DET
scientific ADJ
community NOUN
  SPACE
has AUX
been AUX
slow ADJ
to PART
understand VERB
the DET
significance NOUN
of ADP
infection NOUN
of ADP
the DET
  SPACE
lymph PROPN
tissue NOUN
. PUNCT
  SPACE
" PUNCT
We PRON
've AUX
known VERB
about ADP
this DET
for ADP
five NUM
years NOUN
, PUNCT
but CCONJ
we PRON
're AUX
  SPACE
glad ADJ
it PRON
is AUX
now ADV
in ADP
the DET
public ADJ
domain NOUN
, PUNCT
" PUNCT
said VERB
Jesse PROPN
Dobson PROPN
of ADP
the DET
  SPACE
California PROPN
- PUNCT
based VERB
Project PROPN
Inform PROPN
. PUNCT
  SPACE
But CCONJ
Peter PROPN
Duesberg PROPN
, PUNCT
who PRON
  SPACE
believes VERB
that SCONJ
AIDS PROPN
is AUX
independent ADJ
of ADP
HIV PROPN
and CCONJ
is AUX
a DET
result NOUN
of ADP
drug NOUN
  SPACE
abuse NOUN
in ADP
the DET
West PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
We PRON
are AUX
several ADJ
paradoxes NOUN
away ADV
from ADP
an DET
  SPACE
explanation NOUN
of ADP
AIDS PROPN
-- PUNCT
even ADV
if SCONJ
these DET
papers NOUN
are AUX
right ADJ
. PUNCT
" PUNCT
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
14 NUM
, PUNCT
1993 NUM
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Risk NOUN
of ADP
AIDS PROPN
Virus PROPN
From ADP
Doctors NOUN
Found VERB
to PART
Be AUX
Minimal PROPN
" PUNCT
Washington PROPN
Post PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
, PUNCT
P. PROPN
A9 PROPN
      SPACE
The DET
risk NOUN
of ADP
HIV PROPN
being AUX
transmitted VERB
from ADP
infected ADJ
health NOUN
- PUNCT
care NOUN
  SPACE
professionals NOUN
to ADP
patients NOUN
is AUX
minimal ADJ
, PUNCT
according VERB
to ADP
new ADJ
research NOUN
  SPACE
published VERB
in ADP
today NOUN
's PART
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
  SPACE
( PUNCT
JAMA PROPN
) PUNCT
. PUNCT
  SPACE
This DET
finding NOUN
supports VERB
previous ADJ
conclusions NOUN
by ADP
health NOUN
  SPACE
experts NOUN
that SCONJ
the DET
chance NOUN
of ADP
contracting VERB
HIV PROPN
from ADP
a DET
health NOUN
care NOUN
  SPACE
worker NOUN
is AUX
remote ADJ
. PUNCT
  SPACE
Three NUM
studies NOUN
in ADP
the DET
JAMA PROPN
demonstrate VERB
that SCONJ
  SPACE
thousands NOUN
of ADP
patients NOUN
were AUX
treated VERB
by ADP
two NUM
HIV PROPN
- PUNCT
positive ADJ
surgeons NOUN
  SPACE
and CCONJ
dentists NOUN
without ADP
becoming VERB
infected VERB
with ADP
the DET
virus NOUN
. PUNCT
  SPACE
The DET
  SPACE
studies NOUN
were AUX
conducted VERB
by ADP
separate ADJ
research NOUN
teams NOUN
in ADP
New PROPN
  SPACE
Hampshire PROPN
, PUNCT
Maryland PROPN
, PUNCT
and CCONJ
Florida PROPN
. PUNCT
  SPACE
Each DET
study NOUN
started VERB
with ADP
an DET
  SPACE
HIV PROPN
- PUNCT
positive ADJ
doctor NOUN
or CCONJ
dentist NOUN
and CCONJ
tested VERB
all DET
patients NOUN
willing ADJ
to PART
participate VERB
. PUNCT
  SPACE
The DET
New PROPN
Hampshire PROPN
study NOUN
found VERB
that SCONJ
none NOUN
of ADP
the DET
  SPACE
1,174 NUM
patients NOUN
who PRON
had AUX
undergone VERB
invasive ADJ
procedures NOUN
by ADP
an DET
  SPACE
HIV PROPN
- PUNCT
positive ADJ
orthopedic ADJ
surgeon NOUN
contracted VERB
HIV PROPN
. PUNCT
  SPACE
In ADP
Maryland PROPN
, PUNCT
413 NUM
of ADP
1,131 NUM
patients NOUN
operated VERB
on ADP
by ADP
a DET
breast NOUN
surgery NOUN
specialist NOUN
at ADP
  SPACE
Johns PROPN
Hopkins PROPN
Hospital PROPN
were AUX
found VERB
to PART
be AUX
HIV PROPN
- PUNCT
negative ADJ
. PUNCT
  SPACE
Similarly ADV
  SPACE
in ADP
Florida PROPN
, PUNCT
900 NUM
of ADP
1,192 NUM
dental NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
43Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993patients NUM
, PUNCT
who PRON
all DET
had AUX
been AUX
  SPACE
treated VERB
by ADP
an DET
HIV PROPN
- PUNCT
positive ADJ
general ADJ
dentist NOUN
, PUNCT
were AUX
tested VERB
and CCONJ
found VERB
to PART
be AUX
negative ADJ
for ADP
HIV PROPN
. PUNCT
  SPACE
The DET
Florida PROPN
researchers NOUN
, PUNCT
led VERB
by ADP
Gordon PROPN
  SPACE
M. PROPN
Dickinson PROPN
of ADP
the DET
University PROPN
of ADP
Miami PROPN
School PROPN
of ADP
Medicine PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
This DET
study NOUN
indicates VERB
that SCONJ
the DET
risk NOUN
for ADP
transmission NOUN
of ADP
HIV PROPN
from ADP
  SPACE
a DET
general ADJ
dentist NOUN
to ADP
his PRON
patients NOUN
is AUX
minimal ADJ
in ADP
a DET
setting NOUN
in ADP
  SPACE
which PRON
universal ADJ
precautions NOUN
are AUX
strictly ADV
observed VERB
. PUNCT
" PUNCT
   SPACE
Related PROPN
Story PROPN
: PUNCT
Philadelphia PROPN
Inquirer PROPN
( PUNCT
04/14 NUM
) PUNCT
P. NOUN
A6 NOUN
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Alternative PROPN
Medicine PROPN
Advocates PROPN
Divided VERB
Over ADP
New PROPN
NIH PROPN
Research PROPN
  SPACE
Program PROPN
" PUNCT
AIDS PROPN
Treatment PROPN
News PROPN
( PUNCT
04/02/93 PUNCT
) PUNCT
No NOUN
. NOUN
172 NUM
, PUNCT
P. PROPN
6 NUM
  SPACE
( PUNCT
Gilden PROPN
, PUNCT
Dave PROPN
) PUNCT
      SPACE
The DET
new ADJ
Office PROPN
of ADP
Alternative PROPN
Medicine PROPN
at ADP
the DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
has AUX
raised VERB
questions NOUN
about ADP
the DET
NIH PROPN
's PART
commitment NOUN
to ADP
an DET
  SPACE
effort NOUN
that PRON
uses VERB
unorthodox ADJ
or CCONJ
holistic ADJ
therapeutic ADJ
methods NOUN
. PUNCT
  SPACE
The DET
OAM PROPN
is AUX
a DET
small ADJ
division NOUN
of ADP
the DET
NIH PROPN
, PUNCT
with ADP
its PRON
budget NOUN
only ADV
at ADP
$ SYM
2 NUM
  SPACE
million NUM
dollars NOUN
compared VERB
to ADP
more ADJ
than SCONJ
$ SYM
10 NUM
billion NUM
for ADP
the DET
NIH PROPN
as SCONJ
  SPACE
a DET
whole NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
money NOUN
for ADP
available ADJ
research NOUN
grants NOUN
is AUX
even ADV
smaller ADJ
. PUNCT
  SPACE
About ADV
$ SYM
500,000 NUM
to PART
$ SYM
600,000 NUM
total NOUN
will AUX
be AUX
available ADJ
this DET
year NOUN
for ADP
10 NUM
or CCONJ
20 NUM
grants NOUN
. PUNCT
  SPACE
Kaiya PROPN
Montaocean PROPN
, PUNCT
of ADP
the DET
Center PROPN
  SPACE
for ADP
Natural ADJ
and CCONJ
Traditional ADJ
Medicine PROPN
in ADP
Washington PROPN
, PUNCT
D.C. PROPN
, PUNCT
says VERB
  SPACE
the DET
OAM PROPN
is AUX
afraid ADJ
to PART
become VERB
involved ADJ
in ADP
AIDS PROPN
. PUNCT
  SPACE
" PUNCT
They PRON
have AUX
to PART
look VERB
successful ADJ
and CCONJ
there PRON
is AUX
no DET
easy ADJ
answer NOUN
in ADP
AIDS PROPN
, PUNCT
" PUNCT
she PRON
said VERB
. PUNCT
    SPACE
There PRON
is AUX
also ADV
a DET
common ADJ
perception NOUN
that SCONJ
the DET
OAM PROPN
will AUX
focus VERB
on ADP
  SPACE
fields VERB
the DET
NIH PROPN
establishment NOUN
will AUX
find VERB
non ADJ
- ADJ
threatening ADJ
, PUNCT
such ADJ
as SCONJ
  SPACE
relaxation NOUN
techniques NOUN
and CCONJ
acupuncture NOUN
. PUNCT
  SPACE
When ADV
the DET
OAM PROPN
called VERB
for ADP
  SPACE
an DET
advisory ADJ
committee NOUN
conference NOUN
of ADP
about ADV
120 NUM
people NOUN
last ADJ
year NOUN
, PUNCT
  SPACE
the DET
AIDS PROPN
community NOUN
was AUX
largely ADV
missing ADJ
from ADP
the DET
meeting NOUN
. PUNCT
  SPACE
In ADP
  SPACE
addition NOUN
, PUNCT
activists NOUN
' PART
general ADJ
lack NOUN
of ADP
contact NOUN
with ADP
the DET
Office PROPN
has AUX
  SPACE
added VERB
suspicion NOUN
that SCONJ
the DET
epidemic NOUN
will AUX
be AUX
ignored VERB
. PUNCT
  SPACE
Jon PROPN
  SPACE
Greenberg PROPN
, PUNCT
of ADP
ACT PROPN
- PUNCT
UP PROPN
/ SYM
New PROPN
York PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
The DET
OAM PROPN
advisory NOUN
panel NOUN
is AUX
  SPACE
composed VERB
of ADP
practitioners NOUN
without ADP
real ADJ
research NOUN
experience NOUN
. PUNCT
  SPACE
It PRON
  SPACE
will AUX
take VERB
them PRON
several ADJ
years NOUN
to PART
accept VERB
the DET
nature NOUN
of ADP
research NOUN
. PUNCT
" PUNCT
   SPACE
Nevertheless ADV
, PUNCT
  SPACE
Dr. PROPN
Leanna PROPN
Standish PROPN
, PUNCT
research NOUN
director NOUN
and CCONJ
AIDS PROPN
  SPACE
investigator NOUN
at ADP
the DET
Bastyr PROPN
College PROPN
of ADP
Naturopathic PROPN
Medicine PROPN
in ADP
  SPACE
Seattle PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
Here ADV
is AUX
a DET
wonderful ADJ
opportunity NOUN
to PART
fund VERB
AIDS PROPN
  SPACE
research NOUN
. PUNCT
  SPACE
It PRON
's AUX
only ADV
fair ADJ
to PART
give VERB
the DET
Office PROPN
time NOUN
to ADP
gel NOUN
, PUNCT
but CCONJ
  SPACE
it PRON
's AUX
up ADP
to ADP
the DET
public NOUN
to PART
insist VERB
that SCONJ
it PRON
's AUX
much ADJ
, PUNCT
much ADV
more ADJ
[ PUNCT
than SCONJ
  SPACE
public ADJ
relations NOUN
] PUNCT
. PUNCT
" PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Herpesvirus PROPN
Decimates PROPN
Immune NOUN
- PUNCT
cell NOUN
Soldiers NOUN
" PUNCT
Science PROPN
News PROPN
( PUNCT
04/03/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
143 NUM
, PUNCT
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
215 NUM
   SPACE
( PUNCT
Fackelmann PROPN
, PUNCT
Kathy PROPN
A. PROPN
) PUNCT
      SPACE
Scientists PROPN
conducting VERB
test NOUN
tube NOUN
experiments NOUN
have AUX
found VERB
that SCONJ
  SPACE
herpesvirus-6 PROPN
can AUX
attack VERB
the DET
human ADJ
immune ADJ
system NOUN
's PART
natural ADJ
killer NOUN
cells NOUN
. PUNCT
  SPACE
This DET
attack NOUN
causes VERB
the DET
killer NOUN
cells NOUN
to ADP
malfunction NOUN
, PUNCT
  SPACE
diminishing VERB
an DET
important ADJ
component NOUN
in ADP
the DET
immune ADJ
system NOUN
's PART
fight NOUN
  SPACE
against ADP
diseases NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
the DET
herpesvirus-6 PROPN
may AUX
be AUX
a DET
factor NOUN
in ADP
  SPACE
immune ADJ
diseases NOUN
, PUNCT
such ADJ
as SCONJ
AIDS PROPN
. PUNCT
  SPACE
In ADP
1989 NUM
, PUNCT
Paolo PROPN
Lusso PROPN
's PART
research NOUN
  SPACE
found VERB
that SCONJ
herpesvirus-6 PROPN
attacks VERB
another DET
white ADJ
cell NOUN
, PUNCT
the DET
CD4 PROPN
  SPACE
T PROPN
- PUNCT
lymphocyte NOUN
, PUNCT
which PRON
is AUX
the DET
primary ADJ
target NOUN
of ADP
HIV PROPN
. PUNCT
  SPACE
Lusso PROPN
also ADV
  SPACE
found VERB
that SCONJ
herpesvirus-6 PROPN
can AUX
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
44Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993kill NUM
natural ADJ
killer NOUN
cells NOUN
. PUNCT
   SPACE
Scientists NOUN
previously ADV
knew VERB
that SCONJ
the DET
natural ADJ
killer NOUN
cells NOUN
of ADP
  SPACE
patients NOUN
infected VERB
with ADP
HIV PROPN
do AUX
not PART
work VERB
correctly ADV
. PUNCT
  SPACE
Lusso PROPN
's PART
  SPACE
research NOUN
represents VERB
the DET
first ADJ
time NOUN
scientists NOUN
have AUX
indicated VERB
that SCONJ
natural ADJ
killer NOUN
cells NOUN
are AUX
vulnerable ADJ
to ADP
any DET
kind NOUN
of ADP
viral ADJ
attack NOUN
, PUNCT
  SPACE
according VERB
to ADP
Anthony PROPN
L. PROPN
Komaroff PROPN
, PUNCT
a DET
researcher NOUN
with ADP
Harvard PROPN
  SPACE
Medical PROPN
School PROPN
. PUNCT
  SPACE
Despite SCONJ
the DET
test NOUN
- PUNCT
tube NOUN
findings NOUN
, PUNCT
scientists NOUN
are AUX
  SPACE
uncertain ADJ
whether SCONJ
the DET
same ADJ
result NOUN
occurs VERB
in ADP
the DET
body NOUN
. PUNCT
  SPACE
Lusso PROPN
's PART
  SPACE
team NOUN
also ADV
found VERB
that SCONJ
herpesvirus-6 PROPN
produces VERB
the DET
CD4 PROPN
receptor NOUN
  SPACE
molecule NOUN
that PRON
provides VERB
access NOUN
for ADP
HIV PROPN
. PUNCT
  SPACE
CD4 PROPN
T PROPN
- PUNCT
lymphocytes NOUN
express VERB
this DET
surface NOUN
receptor NOUN
, PUNCT
making VERB
them PRON
vulnerable ADJ
to ADP
HIV PROPN
's PART
attack NOUN
. PUNCT
   SPACE
Researchers PROPN
concluded VERB
that SCONJ
herpesvirus-6 PROPN
cells NOUN
can AUX
exacerbate VERB
the DET
affects NOUN
of ADP
HIV PROPN
. PUNCT
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
15 NUM
, PUNCT
1993 NUM
      SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
AIDS PROPN
and CCONJ
Priorities PROPN
in ADP
the DET
Global PROPN
Village PROPN
: PUNCT
To ADP
the DET
Editor PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/07/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
13 NUM
, PUNCT
P. PROPN
1636 NUM
  SPACE
( PUNCT
Gellert PROPN
, PUNCT
George PROPN
and CCONJ
Nordenberg PROPN
, PUNCT
Dale PROPN
F. PROPN
) PUNCT
      SPACE
All DET
health NOUN
- PUNCT
care NOUN
workers NOUN
are AUX
obligated ADJ
and CCONJ
responsible ADJ
for ADP
not PART
  SPACE
only ADV
ensuring VERB
that SCONJ
politicians NOUN
understand VERB
the DET
dimensions NOUN
of ADP
  SPACE
certain ADJ
health NOUN
problems NOUN
, PUNCT
but CCONJ
also ADV
to PART
be AUX
committed VERB
to ADP
related ADJ
  SPACE
policies NOUN
, PUNCT
write VERB
George PROPN
Gellert PROPN
and CCONJ
Dale PROPN
F. PROPN
Nordenberg PROPN
of ADP
the DET
  SPACE
Orange PROPN
County PROPN
Health PROPN
Care PROPN
Agency PROPN
, PUNCT
Santa PROPN
Ana PROPN
, PUNCT
Calif. PROPN
, PUNCT
and CCONJ
the DET
  SPACE
Emory PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Health PROPN
in ADP
Atlanta PROPN
, PUNCT
Ga. PROPN
, PUNCT
  SPACE
respectively ADV
. PUNCT
  SPACE
Dr. PROPN
Berkley PROPN
's PART
editorial NOUN
on ADP
why ADV
American ADJ
doctors NOUN
  SPACE
should AUX
care VERB
about ADP
the DET
AIDS PROPN
epidemic NOUN
beyond ADP
the DET
United PROPN
States PROPN
  SPACE
details NOUN
several ADJ
reasons NOUN
for ADP
the DET
concerted ADJ
interest NOUN
that SCONJ
all DET
  SPACE
countries NOUN
share VERB
in ADP
combating VERB
AIDS PROPN
. PUNCT
  SPACE
It PRON
should AUX
be AUX
noted VERB
that SCONJ
while SCONJ
AIDS PROPN
leads VERB
in ADP
hastening VERB
global ADJ
health NOUN
interdependence NOUN
, PUNCT
it PRON
is AUX
not PART
  SPACE
the DET
only ADJ
illness NOUN
doing VERB
so ADV
. PUNCT
  SPACE
Diseases NOUN
such ADJ
as SCONJ
malaria NOUN
and CCONJ
many ADJ
  SPACE
respiratory ADJ
and CCONJ
intestinal ADJ
pathogens NOUN
have AUX
similarly ADV
inhibited VERB
the DET
economic ADJ
development NOUN
of ADP
most ADJ
of ADP
humanity NOUN
and CCONJ
acted VERB
to PART
marginalize VERB
large ADJ
populations NOUN
. PUNCT
  SPACE
Berkley PROPN
mentions VERB
the DET
enormous ADJ
social ADJ
and CCONJ
  SPACE
economic ADJ
impact NOUN
that PRON
AIDS PROPN
will AUX
have AUX
on ADP
many ADJ
developing VERB
countries NOUN
, PUNCT
and CCONJ
the DET
increased VERB
need NOUN
for ADP
international ADJ
assistance NOUN
that PRON
will AUX
  SPACE
result VERB
. PUNCT
  SPACE
Berkley PROPN
also ADV
cites VERB
the DET
lack NOUN
of ADP
political ADJ
aggressiveness NOUN
  SPACE
toward ADP
the DET
AIDS PROPN
epidemic NOUN
in ADP
its PRON
first ADJ
decade NOUN
. PUNCT
  SPACE
But CCONJ
now ADV
there PRON
is AUX
a DET
new ADJ
administration NOUN
with ADP
a DET
promise NOUN
of ADP
substantial ADJ
differences NOUN
in ADP
  SPACE
approach NOUN
to ADP
international ADJ
health NOUN
and CCONJ
development NOUN
in ADP
general ADJ
, PUNCT
and CCONJ
  SPACE
HIV PROPN
/ SYM
AIDS PROPN
in ADP
particular ADJ
. PUNCT
  SPACE
Vice PROPN
President PROPN
Al PROPN
Gore PROPN
proposes VERB
in ADP
his PRON
  SPACE
book NOUN
" PUNCT
Earth NOUN
in ADP
the DET
Balance NOUN
" PUNCT
a DET
major ADJ
environmental ADJ
initiative NOUN
that PRON
includes VERB
sustainable ADJ
international ADJ
development NOUN
, PUNCT
with ADP
programs NOUN
to ADP
  SPACE
promote VERB
literacy NOUN
, PUNCT
improve VERB
child NOUN
survival NOUN
, PUNCT
and CCONJ
disseminate VERB
  SPACE
contraceptive ADJ
technology NOUN
and CCONJ
access NOUN
throughout ADP
the DET
developing VERB
  SPACE
world NOUN
. PUNCT
  SPACE
If SCONJ
enacted VERB
, PUNCT
this DET
change NOUN
in ADP
policy NOUN
could AUX
drastically ADV
  SPACE
change VERB
the DET
future NOUN
of ADP
worldwide ADJ
health NOUN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
AIDS PROPN
and CCONJ
Priorities PROPN
in ADP
the DET
Global PROPN
Village PROPN
: PUNCT
In ADP
Reply PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
45Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Medical NUM
Association PROPN
( PUNCT
04/07/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
13 NUM
, PUNCT
P. PROPN
1636 NUM
  SPACE
( PUNCT
Berkley PROPN
, PUNCT
Seth PROPN
) PUNCT
      SPACE
Every DET
nation NOUN
should AUX
tackle VERB
HIV PROPN
as ADV
early ADV
and CCONJ
aggressively ADV
as SCONJ
    SPACE
possible ADJ
before ADP
the DET
disease NOUN
reaches VERB
an DET
endemic ADJ
state NOUN
, PUNCT
even ADV
at ADP
a DET
  SPACE
cost NOUN
of ADP
diverting VERB
less ADJ
attention NOUN
to ADP
some DET
other ADJ
illnesses NOUN
, PUNCT
writes VERB
  SPACE
Seth PROPN
Berkley PROPN
of ADP
the DET
Rockefeller PROPN
Foundation PROPN
in ADP
New PROPN
York PROPN
, PUNCT
N.Y. PROPN
, PUNCT
in ADP
  SPACE
reply NOUN
to ADP
a DET
letter NOUN
by ADP
Drs PROPN
. PUNCT
Gellert PROPN
and CCONJ
Nordenberg PROPN
. PUNCT
  SPACE
Although SCONJ
it PRON
is AUX
true ADJ
that SCONJ
diseases NOUN
other ADJ
than SCONJ
AIDS PROPN
, PUNCT
such ADJ
as SCONJ
malaria PROPN
and CCONJ
  SPACE
respiratory ADJ
and CCONJ
intestinal ADJ
illnesses NOUN
, PUNCT
have AUX
similarly ADV
inhibited VERB
  SPACE
economic ADJ
development NOUN
in ADP
developing VERB
countries NOUN
and CCONJ
deserve VERB
much ADJ
  SPACE
more ADJ
attention NOUN
than SCONJ
they PRON
are AUX
getting VERB
, PUNCT
Berkley PROPN
disagrees VERB
with ADP
the DET
  SPACE
contention NOUN
that SCONJ
AIDS PROPN
is AUX
receiving VERB
too ADV
much ADJ
attention NOUN
. PUNCT
  SPACE
HIV PROPN
  SPACE
differs VERB
from ADP
other ADJ
diseases NOUN
, PUNCT
in ADP
most ADJ
developing VERB
countries NOUN
because SCONJ
it PRON
is AUX
continuing VERB
to PART
spread VERB
. PUNCT
  SPACE
For ADP
most ADJ
endemic ADJ
diseases NOUN
, PUNCT
the DET
  SPACE
outcome NOUN
of ADP
neglecting VERB
interventions NOUN
for ADP
one NUM
year NOUN
is AUX
another DET
year NOUN
  SPACE
of ADP
about ADP
the DET
same ADJ
level NOUN
of ADP
needless ADJ
disease NOUN
and CCONJ
death NOUN
. PUNCT
  SPACE
But CCONJ
with ADP
  SPACE
AIDS PROPN
and CCONJ
its PRON
increasing VERB
spread NOUN
, PUNCT
the DET
cost NOUN
of ADP
neglect NOUN
, PUNCT
not PART
only ADV
in ADP
  SPACE
disease PROPN
burden PROPN
but CCONJ
financially ADV
, PUNCT
is AUX
much ADV
greater ADJ
. PUNCT
  SPACE
Interventions NOUN
  SPACE
in ADP
the DET
early ADJ
part NOUN
of ADP
a DET
rampantly ADV
spreading VERB
epidemic NOUN
like SCONJ
HIV PROPN
are AUX
  SPACE
highly ADV
cost NOUN
- PUNCT
effective ADJ
because SCONJ
each DET
individual ADJ
infection NOUN
prevented VERB
significantly ADV
interrupts NOUN
transmission NOUN
. PUNCT
  SPACE
Berkley PROPN
says VERB
he PRON
agrees VERB
  SPACE
with ADP
Gellert PROPN
and CCONJ
Nordenberg PROPN
about ADP
the DET
gigantic ADJ
social ADJ
and CCONJ
  SPACE
economic ADJ
effects NOUN
of ADP
AIDS PROPN
and CCONJ
about ADP
the DET
need NOUN
for ADP
political ADJ
  SPACE
leadership NOUN
. PUNCT
  SPACE
But CCONJ
he PRON
concludes VERB
that SCONJ
not PART
only ADV
is AUX
assertive ADJ
  SPACE
political ADJ
leadership NOUN
needed VERB
in ADP
the DET
United PROPN
States PROPN
for ADP
the DET
AIDS PROPN
  SPACE
epidemic NOUN
, PUNCT
but CCONJ
even ADV
more ADV
so ADV
in ADP
developing VERB
countries NOUN
with ADP
high ADJ
  SPACE
rates NOUN
of ADP
HIV PROPN
infection NOUN
and CCONJ
where ADV
complacency NOUN
about ADP
the DET
epidemic NOUN
  SPACE
has AUX
been AUX
the DET
rule NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
46Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                               SPACE
AIDS PROPN
/ SYM
HIV PROPN
Articles PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
            SPACE
First PROPN
HIV PROPN
Vaccine PROPN
Trial PROPN
Begins VERB
in ADP
HIV PROPN
- PUNCT
Infected VERB
Children PROPN
                                SPACE
H PROPN
H PROPN
S PROPN
   SPACE
N NOUN
E NOUN
W PROPN
S PROPN
     SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                 SPACE
U.S. PROPN
DEPARTMENT PROPN
OF ADP
HEALTH PROPN
AND CCONJ
HUMAN PROPN
SERVICES PROPN
                                SPACE
March PROPN
29 NUM
, PUNCT
1993 NUM
        SPACE
First PROPN
HIV PROPN
Vaccine PROPN
Therapy PROPN
Trial NOUN
Begins VERB
In ADP
HIV PROPN
- PUNCT
Infected VERB
ChildrenThe PROPN
National PROPN
Institutes PROPN
of ADP
Health PROPN
has AUX
opened VERB
the DET
first ADJ
trial NOUN
of ADP
experimental ADJ
HIV PROPN
vaccines NOUN
in ADP
children NOUN
who PRON
are AUX
infected VERB
with ADP
the DET
human ADJ
immunodeficiency NOUN
virus NOUN
( PUNCT
HIV PROPN
) PUNCT
, PUNCT
the DET
virus NOUN
that PRON
causes VERB
AIDS PROPN
. PUNCT
The DET
trial NOUN
will AUX
compare VERB
the DET
safety NOUN
of ADP
three NUM
HIV PROPN
experimental ADJ
vaccines NOUN
in ADP
90 NUM
children NOUN
recruited VERB
from ADP
at ADV
least ADV
12 NUM
sites NOUN
nationwide ADJ
. PUNCT
Volunteers NOUN
must AUX
be AUX
HIV PROPN
- PUNCT
infected VERB
but CCONJ
have AUX
no DET
symptoms NOUN
of ADP
HIV PROPN
disease NOUN
. PUNCT
HHS PROPN
Secretary PROPN
Donna PROPN
E. PROPN
Shalala PROPN
said VERB
this DET
initial ADJ
study NOUN
can AUX
be AUX
seen VERB
as SCONJ
" PUNCT
a DET
hopeful ADJ
milestone NOUN
in ADP
our PRON
efforts NOUN
to PART
ameliorate VERB
the DET
tragedy NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
children NOUN
who PRON
now ADV
face VERB
the DET
certainty NOUN
they PRON
will AUX
develop VERB
AIDS PROPN
. PUNCT
" PUNCT
Anthony PROPN
S. PROPN
Fauci PROPN
, PUNCT
M.D. PROPN
, PUNCT
director NOUN
of ADP
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases PROPN
and CCONJ
of ADP
the DET
NIH PROPN
Office PROPN
of ADP
AIDS PROPN
Research PROPN
, PUNCT
said VERB
the DET
trial NOUN
" PUNCT
is AUX
the DET
first ADJ
step NOUN
in ADP
finding VERB
out ADP
whether SCONJ
vaccines NOUN
can AUX
help VERB
prevent VERB
or CCONJ
delay VERB
disease NOUN
progression NOUN
in ADP
children NOUN
with ADP
HIV PROPN
who PRON
are AUX
not PART
yet ADV
sick ADJ
. PUNCT
" PUNCT
  SPACE
If SCONJ
these DET
vaccines NOUN
prove VERB
to PART
be AUX
safe ADJ
, PUNCT
more ADV
sophisticated ADJ
questions NOUN
about ADP
their PRON
therapeutic ADJ
potential NOUN
will AUX
be AUX
assessed VERB
in ADP
Phase PROPN
II PROPN
trials NOUN
. PUNCT
The DET
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
estimates VERB
10,000 NUM
children NOUN
in ADP
the DET
United PROPN
States PROPN
have AUX
HIV PROPN
. PUNCT
  SPACE
By ADP
the DET
end NOUN
of ADP
the DET
decade NOUN
, PUNCT
the DET
World PROPN
Health PROPN
Organization PROPN
projects VERB
10 NUM
million NUM
children NOUN
will AUX
be AUX
infected VERB
worldwide ADV
. PUNCT
The DET
study NOUN
will AUX
enroll VERB
children NOUN
ages NOUN
1 NUM
month NOUN
to ADP
12 NUM
years NOUN
old ADJ
. PUNCT
  SPACE
NIAID PROPN
, PUNCT
which PRON
funds VERB
the DET
AIDS PROPN
Clinical PROPN
Trials PROPN
Group PROPN
network NOUN
, PUNCT
anticipates VERB
conducting VERB
the DET
trial NOUN
at ADP
nine NUM
ACTG PROPN
sites NOUN
around ADP
  SPACE
the DET
country NOUN
and CCONJ
three NUM
sites NOUN
participating VERB
in ADP
the DET
ACTG NOUN
but CCONJ
funded VERB
by ADP
the DET
National PROPN
Institute PROPN
of ADP
Child PROPN
Health PROPN
and CCONJ
Human PROPN
Development PROPN
. PUNCT
Preliminary ADJ
evidence NOUN
from ADP
similar ADJ
studies NOUN
under ADP
way NOUN
in ADP
infected ADJ
adults NOUN
shows NOUN
that SCONJ
certain ADJ
vaccines NOUN
can AUX
boost VERB
existing VERB
HIV PROPN
- PUNCT
specific ADJ
immune ADJ
responses NOUN
and CCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
47Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993stimulate NUM
new ADJ
ones NOUN
. PUNCT
  SPACE
It PRON
will AUX
be AUX
several ADJ
years NOUN
, PUNCT
however ADV
, PUNCT
before ADP
researchers NOUN
know VERB
how ADV
these DET
responses NOUN
affect VERB
the DET
clinical ADJ
course NOUN
of ADP
the DET
disease NOUN
. PUNCT
The DET
results NOUN
from ADP
the DET
pediatric ADJ
trial NOUN
, PUNCT
known VERB
as SCONJ
ACTG PROPN
218 NUM
, PUNCT
will AUX
be AUX
examined VERB
closely ADV
for ADP
other ADJ
reasons NOUN
as ADV
well ADV
. PUNCT
  SPACE
" PUNCT
This DET
trial NOUN
will AUX
provide VERB
the DET
first ADJ
insight NOUN
into ADP
how ADV
the DET
immature ADJ
immune ADJ
system NOUN
responds VERB
to PART
candidate VERB
HIV PROPN
vaccines NOUN
, PUNCT
" PUNCT
said VERB
Daniel PROPN
Hoth PROPN
, PUNCT
M.D. PROPN
, PUNCT
director NOUN
of ADP
NIAID PROPN
's PART
division NOUN
of ADP
AIDS PROPN
. PUNCT
  SPACE
" PUNCT
We PRON
need VERB
this DET
information NOUN
to PART
design VERB
trials NOUN
to PART
test VERB
whether SCONJ
experimental ADJ
vaccines NOUN
can AUX
prevent VERB
HIV PROPN
infection NOUN
in ADP
children NOUN
. PUNCT
" PUNCT
In ADP
the DET
United PROPN
States PROPN
, PUNCT
most ADJ
HIV PROPN
- PUNCT
infected VERB
children NOUN
live VERB
in ADP
poor ADJ
inner ADJ
- PUNCT
city NOUN
areas NOUN
, PUNCT
and CCONJ
more ADJ
than SCONJ
80 NUM
percent NOUN
are AUX
minorities NOUN
, PUNCT
mainly ADV
black ADJ
or CCONJ
Hispanic ADJ
. PUNCT
Nearly ADV
all DET
HIV PROPN
- PUNCT
infected VERB
children NOUN
acquire VERB
the DET
virus NOUN
from ADP
their PRON
mothers NOUN
during ADP
pregnancy NOUN
  SPACE
or CCONJ
at ADP
birth NOUN
. PUNCT
  SPACE
An DET
infected ADJ
mother NOUN
in ADP
the DET
United PROPN
States PROPN
has AUX
more ADJ
than SCONJ
a DET
one NUM
in ADP
four NUM
chance NOUN
of ADP
transmitting VERB
the DET
virus NOUN
to ADP
her PRON
baby NOUN
. PUNCT
  SPACE
As SCONJ
growing VERB
numbers NOUN
of ADP
women NOUN
of ADP
childbearing VERB
age NOUN
become VERB
exposed VERB
to ADP
HIV PROPN
through ADP
injection NOUN
drug NOUN
use NOUN
or CCONJ
infected VERB
sexual ADJ
partners NOUN
, PUNCT
researchers NOUN
expect VERB
a DET
corresponding ADJ
increase NOUN
in ADP
the DET
numbers NOUN
of ADP
infected ADJ
children NOUN
. PUNCT
HIV PROPN
disease NOUN
progresses VERB
more ADV
rapidly ADV
in ADP
infants NOUN
and CCONJ
children NOUN
than SCONJ
in ADP
adults NOUN
. PUNCT
  SPACE
The DET
most ADV
recent ADJ
information NOUN
suggests VERB
that SCONJ
50 NUM
percent NOUN
of ADP
infants NOUN
born VERB
with ADP
HIV PROPN
develop VERB
a DET
serious ADJ
AIDS PROPN
- PUNCT
related VERB
infection NOUN
by ADP
3 NUM
to PART
6 NUM
years NOUN
of ADP
age NOUN
. PUNCT
  SPACE
These DET
infections NOUN
include VERB
severe ADJ
or CCONJ
frequent ADJ
bouts NOUN
of ADP
common ADJ
bacterial ADJ
illnesses NOUN
of ADP
childhood NOUN
that PRON
can AUX
result VERB
in ADP
seizures NOUN
, PUNCT
pneumonia NOUN
, PUNCT
diarrhea NOUN
and CCONJ
other ADJ
symptoms NOUN
leading VERB
to ADP
nutritional ADJ
problems NOUN
and CCONJ
long ADJ
hospital NOUN
stays NOUN
. PUNCT
At ADP
least ADJ
half NOUN
of ADP
the DET
children NOUN
in ADP
the DET
trial NOUN
will AUX
be AUX
2 NUM
years NOUN
of ADP
age NOUN
or CCONJ
younger ADJ
to PART
enable VERB
comparison NOUN
of ADP
the DET
immune ADJ
responses NOUN
of ADP
the DET
younger ADJ
and CCONJ
older ADJ
participants NOUN
. PUNCT
  SPACE
All DET
volunteers NOUN
must AUX
have AUX
well ADV
- PUNCT
documented VERB
HIV PROPN
infection NOUN
but CCONJ
no DET
symptoms NOUN
of ADP
HIV PROPN
disease NOUN
other ADJ
than SCONJ
swollen ADJ
lymph NOUN
glands NOUN
or CCONJ
a DET
mildly ADV
swollen ADJ
liver NOUN
or CCONJ
spleen NOUN
. PUNCT
  SPACE
They PRON
can AUX
not PART
have AUX
received VERB
any DET
anti ADJ
- ADJ
retroviral ADJ
or CCONJ
immune ADJ
- PUNCT
regulating VERB
drugs NOUN
within ADP
one NUM
month NOUN
prior ADV
to ADP
their PRON
entry NOUN
into ADP
the DET
study NOUN
. PUNCT
Study NOUN
chair NOUN
John PROPN
S. PROPN
Lambert PROPN
, PUNCT
M.D. PROPN
, PUNCT
of ADP
the DET
University PROPN
of ADP
Rochester PROPN
Medical PROPN
School PROPN
, PUNCT
and CCONJ
co- NOUN
chair NOUN
Samuel PROPN
Katz PROPN
, PUNCT
M.D. PROPN
, PUNCT
of ADP
Duke PROPN
University PROPN
School PROPN
of ADP
Medicine PROPN
, PUNCT
will AUX
coordinate VERB
the DET
trial NOUN
assisted VERB
by ADP
James PROPN
McNamara PROPN
, PUNCT
M.D. PROPN
, PUNCT
medical ADJ
officer NOUN
in ADP
the DET
pediatric ADJ
medicine NOUN
branch NOUN
of ADP
NIAID PROPN
's PART
division NOUN
of ADP
AIDS PROPN
. PUNCT
" PUNCT
We PRON
will AUX
compare VERB
the DET
safety NOUN
of ADP
the DET
vaccines NOUN
by ADP
closely ADV
monitoring VERB
the DET
children NOUN
for ADP
any DET
side NOUN
effects NOUN
, PUNCT
to PART
see VERB
if SCONJ
one NUM
vaccine NOUN
produces VERB
more ADJ
swollen ADJ
arms NOUN
or CCONJ
fevers NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
than SCONJ
another DET
, PUNCT
" PUNCT
said VERB
Dr. PROPN
McNamara PROPN
. PUNCT
  SPACE
" PUNCT
We PRON
'll AUX
also ADV
look VERB
at ADP
whether SCONJ
low ADJ
or CCONJ
high ADJ
doses NOUN
of ADP
the DET
vaccines NOUN
stimulate VERB
immune ADJ
responses NOUN
or CCONJ
other ADJ
significant ADJ
laboratory NOUN
or CCONJ
clinical ADJ
effects NOUN
. PUNCT
" PUNCT
   SPACE
He PRON
emphasized VERB
that SCONJ
the DET
small ADJ
study NOUN
size NOUN
precludes NOUN
comparing VERB
these DET
responses NOUN
or CCONJ
effects NOUN
among ADP
the DET
three NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
48Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993products NUM
. PUNCT
The DET
trial NOUN
will AUX
test VERB
two NUM
doses NOUN
each DET
of ADP
three NUM
experimental ADJ
vaccines NOUN
made VERB
from ADP
recombinant ADJ
HIV PROPN
proteins NOUN
. PUNCT
  SPACE
These DET
so ADV
- PUNCT
called VERB
subunit NOUN
vaccines NOUN
, PUNCT
each DET
genetically ADV
engineered VERB
to PART
contain VERB
only ADV
a DET
piece NOUN
of ADP
the DET
virus NOUN
, PUNCT
have AUX
so ADV
far ADV
proved VERB
well ADV
- PUNCT
tolerated VERB
in ADP
ongoing ADJ
trials NOUN
in ADP
HIV PROPN
- PUNCT
infected VERB
adults NOUN
. PUNCT
One NUM
vaccine NOUN
made VERB
by ADP
MicroGeneSys PROPN
Inc. PROPN
of ADP
Meriden PROPN
, PUNCT
Conn. PROPN
, PUNCT
contains VERB
gp160 PROPN
- PUNCT
-a PROPN
protein NOUN
  SPACE
that PRON
gives VERB
rise NOUN
to ADP
HIV PROPN
's PART
surface NOUN
proteins NOUN
-- PUNCT
plus CCONJ
alum PROPN
adjuvant NOUN
. PUNCT
  SPACE
Adjuvants NOUN
boost VERB
specific ADJ
immune ADJ
responses NOUN
to ADP
a DET
vaccine NOUN
. PUNCT
  SPACE
Presently ADV
, PUNCT
alum PROPN
is AUX
the DET
only ADJ
adjuvant ADJ
used VERB
in ADP
human ADJ
vaccines NOUN
licensed VERB
by ADP
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
. PUNCT
Both DET
of ADP
the DET
other ADJ
vaccines NOUN
-- PUNCT
one NUM
made VERB
by ADP
Genentech PROPN
Inc. PROPN
of ADP
South PROPN
San PROPN
Francisco PROPN
and CCONJ
the DET
other ADJ
by ADP
Biocine PROPN
, PUNCT
a DET
joint ADJ
venture NOUN
of ADP
Chiron PROPN
and CCONJ
CIBA PROPN
- PUNCT
Geigy PROPN
, PUNCT
in ADP
Emeryville PROPN
, PUNCT
Calif.--contain VERB
the DET
major ADJ
HIV PROPN
surface NOUN
protein NOUN
, PUNCT
gp120 PROPN
, PUNCT
plus CCONJ
adjuvant NOUN
. PUNCT
  SPACE
The DET
Genentech PROPN
vaccine NOUN
contains VERB
alum PROPN
, PUNCT
while SCONJ
the DET
Biocine PROPN
vaccine NOUN
contains VERB
MF59 PROPN
, PUNCT
an DET
experimental ADJ
adjuvant NOUN
that PRON
has AUX
proved VERB
safe ADJ
and CCONJ
effective ADJ
in ADP
other ADJ
Phase NOUN
I PRON
vaccine VERB
trials NOUN
in ADP
adults NOUN
. PUNCT
A DET
low ADJ
dose NOUN
of ADP
each DET
product NOUN
will AUX
be AUX
tested VERB
first ADV
against ADP
a DET
placebo NOUN
in ADP
15 NUM
children NOUN
. PUNCT
  SPACE
Twelve NUM
children NOUN
will AUX
be AUX
assigned VERB
at ADP
random ADJ
to PART
be AUX
immunized VERB
with ADP
the DET
experimental ADJ
vaccine NOUN
, PUNCT
and CCONJ
three NUM
children NOUN
will AUX
be AUX
given VERB
adjuvant ADJ
alone ADV
, PUNCT
considered VERB
the DET
placebo NOUN
. PUNCT
  SPACE
Neither CCONJ
the DET
health NOUN
care NOUN
workers NOUN
nor CCONJ
the DET
children NOUN
will AUX
be AUX
told VERB
what PRON
they PRON
receive VERB
. PUNCT
If SCONJ
the DET
low ADJ
dose NOUN
is AUX
well ADV
- PUNCT
tolerated VERB
, PUNCT
controlled VERB
testing NOUN
of ADP
a DET
higher ADJ
dose NOUN
of ADP
the DET
experimental ADJ
vaccine NOUN
and CCONJ
adjuvant ADJ
placebo NOUN
in ADP
another DET
group NOUN
of ADP
15 NUM
children NOUN
will AUX
begin VERB
. PUNCT
Each DET
child NOUN
will AUX
receive VERB
six NUM
immunizations NOUN
-- PUNCT
one NUM
every DET
four NUM
weeks NOUN
for ADP
six NUM
months NOUN
-- PUNCT
and CCONJ
be AUX
followed VERB
- PUNCT
up ADP
for ADP
24 NUM
weeks NOUN
after ADP
the DET
last ADJ
immunization NOUN
. PUNCT
  SPACE
For ADP
more ADJ
information NOUN
about ADP
the DET
trial NOUN
sites NOUN
or CCONJ
eligibility NOUN
for ADP
enrollment NOUN
, PUNCT
call VERB
the DET
AIDS PROPN
Clinical PROPN
Trials PROPN
Information PROPN
Service PROPN
, PUNCT
1 NUM
- PUNCT
800-TRIALS NUM
- PUNCT
A NOUN
, PUNCT
from ADP
9 NUM
a.m. NOUN
to ADP
7 NUM
p.m. NOUN
, PUNCT
EST PROPN
weekdays NOUN
. PUNCT
  SPACE
The DET
service NOUN
has AUX
Spanish PROPN
- PUNCT
speaking VERB
information NOUN
specialists NOUN
available ADJ
. PUNCT
  SPACE
Information NOUN
on ADP
NIAID PROPN
's PART
pediatric ADJ
HIV PROPN
/ SYM
AIDS PROPN
research NOUN
is AUX
available ADJ
from ADP
the DET
Office PROPN
of ADP
Communications PROPN
at ADP
( PUNCT
301 NUM
) PUNCT
496- NUM
5717 NUM
. PUNCT
  SPACE
NIH PROPN
, PUNCT
CDC PROPN
and CCONJ
FDA PROPN
are AUX
agencies NOUN
of ADP
the DET
U.S. PROPN
Public PROPN
Health PROPN
Service PROPN
in ADP
HHS PROPN
. PUNCT
For ADP
press NOUN
inquiries NOUN
only ADV
, PUNCT
please INTJ
call VERB
Laurie PROPN
K. PROPN
Doepel PROPN
at ADP
( PUNCT
301 NUM
) PUNCT
402 NUM
- PUNCT
1663.HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
49Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
           SPACE
NEW ADJ
EVIDENCE PROPN
THAT ADP
THE DET
HIV PROPN
CAN AUX
CAUSE VERB
DISEASE NOUN
INDEPENDENTLY NOUN
              SPACE
News PROPN
from ADP
the DET
National PROPN
Institute PROPN
of ADP
Dental PROPN
ResearchThere PROPN
is AUX
new ADJ
evidence NOUN
that SCONJ
the DET
human ADJ
immunodeficiency NOUN
virus NOUN
can AUX
cause VERB
disease NOUN
independently ADV
of ADP
its PRON
ability NOUN
to PART
suppress VERB
the DET
immune ADJ
system NOUN
, PUNCT
say VERB
scientists NOUN
at ADP
the DET
National PROPN
Institues PROPN
of ADP
Health PROPN
. PUNCT
They PRON
report VERB
that SCONJ
HIV PROPN
itself PRON
, PUNCT
not PART
an DET
opportunistic ADJ
infection NOUN
, PUNCT
caused VERB
scaling VERB
skin NOUN
conditions NOUN
to PART
develop VERB
in ADP
mice NOUN
carrying VERB
the DET
genes NOUN
for ADP
HIV PROPN
. PUNCT
  SPACE
Although SCONJ
the DET
HIV PROPN
genes NOUN
were AUX
active ADJ
in ADP
the DET
mice NOUN
, PUNCT
they PRON
did AUX
not PART
compromise VERB
the DET
animals NOUN
' PART
immunity NOUN
, PUNCT
the DET
researchers NOUN
found VERB
. PUNCT
  SPACE
This DET
led VERB
them PRON
to PART
conclude VERB
that SCONJ
the DET
HIV PROPN
itself PRON
caused VERB
the DET
skin NOUN
disease NOUN
. PUNCT
Our PRON
findings NOUN
support VERB
a DET
growing VERB
body NOUN
of ADP
evidence NOUN
that SCONJ
HIV PROPN
can AUX
cause VERB
disease NOUN
without ADP
affecting VERB
the DET
immune ADJ
system NOUN
, PUNCT
said VERB
lead NOUN
author NOUN
Dr. PROPN
Jeffrey PROPN
Kopp PROPN
of ADP
the DET
National PROPN
Institute PROPN
of ADP
Dental PROPN
Research PROPN
( PUNCT
NIDR PROPN
) PUNCT
. PUNCT
  SPACE
Dr. PROPN
Kopp PROPN
and CCONJ
his PRON
colleagues NOUN
described VERB
their PRON
study NOUN
in ADP
the DET
March PROPN
issue NOUN
of ADP
AIDS PROPN
Research PROPN
and CCONJ
Human PROPN
Retroviruses PROPN
. PUNCT
Developing VERB
animal NOUN
models NOUN
of ADP
HIV PROPN
infection NOUN
has AUX
been AUX
difficult ADJ
, PUNCT
since SCONJ
most ADJ
animals NOUN
, PUNCT
including VERB
mice NOUN
, PUNCT
can AUX
not PART
be AUX
infected VERB
by ADP
the DET
virus NOUN
. PUNCT
  SPACE
To PART
bypass VERB
this DET
problem NOUN
, PUNCT
scientists NOUN
have AUX
developed VERB
HIV PROPN
- PUNCT
transgenic NOUN
mice NOUN
, PUNCT
which PRON
carry VERB
genes NOUN
for ADP
HIV PROPN
as ADV
well ADV
as SCONJ
their PRON
own ADJ
genetic ADJ
material NOUN
. PUNCT
NIDR PROPN
scientists NOUN
created VERB
the DET
transgenic ADJ
mice NOUN
by ADP
injecting VERB
HIV PROPN
genes NOUN
into ADP
mouse NOUN
eggs NOUN
and CCONJ
then ADV
implanting VERB
the DET
eggs NOUN
into ADP
female ADJ
mice NOUN
. PUNCT
  SPACE
The DET
resulting VERB
litters NOUN
contained VERB
both DET
normal ADJ
and CCONJ
transgenic ADJ
animals NOUN
. PUNCT
Institute PROPN
scientists NOUN
had AUX
created VERB
mice NOUN
that PRON
carried VERB
a DET
complete ADJ
copy NOUN
of ADP
HIV PROPN
genetic ADJ
material NOUN
in ADP
l988 PROPN
. PUNCT
  SPACE
Those DET
mice NOUN
, PUNCT
however ADV
, PUNCT
became VERB
sick ADJ
and CCONJ
died VERB
too ADV
soon ADV
after ADP
birth NOUN
to PART
study VERB
in ADP
depth NOUN
. PUNCT
  SPACE
In ADP
the DET
present ADJ
study NOUN
, PUNCT
the DET
scientists NOUN
used VERB
an DET
incomplete ADJ
copy NOUN
of ADP
HIV PROPN
, PUNCT
which PRON
allowed VERB
the DET
animals NOUN
to PART
live VERB
longer ADV
. PUNCT
Some DET
of ADP
the DET
transgenic ADJ
animals NOUN
developed VERB
scaling VERB
, PUNCT
wart NOUN
- PUNCT
like ADJ
tumors NOUN
on ADP
their PRON
necks NOUN
and CCONJ
backs NOUN
. PUNCT
  SPACE
Other ADJ
transgenic ADJ
mice NOUN
developed VERB
thickened VERB
, PUNCT
crusting VERB
skin NOUN
lesions NOUN
that PRON
covered VERB
most ADJ
of ADP
their PRON
bodies NOUN
, PUNCT
resembling VERB
psoriasis NOUN
in ADP
humans NOUN
. PUNCT
  SPACE
No DET
skin NOUN
lesions NOUN
developed VERB
in ADP
their PRON
normal ADJ
, PUNCT
non ADJ
- ADJ
transgenic ADJ
littermates NOUN
. PUNCT
Studies NOUN
of ADP
tissue NOUN
taken VERB
from ADP
the DET
wart NOUN
- PUNCT
like ADJ
skin NOUN
tumors NOUN
showed VERB
that SCONJ
they PRON
were AUX
a DET
type NOUN
of ADP
noncancerous ADJ
tumor NOUN
called VERB
papilloma NOUN
. PUNCT
Although SCONJ
the DET
papillomavirus NOUN
can AUX
cause VERB
these DET
skin NOUN
lesions NOUN
, PUNCT
laboratory NOUN
tests NOUN
showed VERB
no DET
sign NOUN
of ADP
that DET
virus NOUN
in ADP
the DET
animals NOUN
. PUNCT
Tissue NOUN
samples NOUN
taken VERB
from ADP
the DET
sick ADJ
mice NOUN
throughout ADP
the DET
study NOUN
revealed VERB
the DET
presence NOUN
of ADP
a DET
protein NOUN
- PUNCT
producing VERB
molecule NOUN
made VERB
by ADP
the DET
HIV PROPN
genetic ADJ
material NOUN
. PUNCT
  SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
50Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Evidence NUM
of ADP
HIV PROPN
protein NOUN
production NOUN
proved VERB
that SCONJ
the DET
viral ADJ
genes NOUN
were AUX
" PUNCT
turned VERB
on ADP
, PUNCT
" PUNCT
or CCONJ
active ADJ
, PUNCT
said VERB
Dr. PROPN
Kopp PROPN
. PUNCT
The DET
scientists NOUN
found VERB
no DET
evidence NOUN
, PUNCT
however ADV
, PUNCT
of ADP
compromised VERB
immunity NOUN
in ADP
the DET
mice NOUN
: PUNCT
  SPACE
no DET
increase NOUN
in ADP
their PRON
white ADJ
blood NOUN
cell NOUN
count NOUN
and CCONJ
no DET
signs NOUN
of ADP
common ADJ
infections NOUN
. PUNCT
  SPACE
The DET
fact NOUN
that SCONJ
HIV PROPN
genes NOUN
were AUX
active ADJ
but CCONJ
the DET
animals NOUN
' PART
immune ADJ
systems NOUN
were AUX
not PART
suppressed VERB
confirms NOUN
that SCONJ
the DET
virus NOUN
itself PRON
was AUX
causing VERB
the DET
skin NOUN
lesions NOUN
, PUNCT
Dr. PROPN
Kopp PROPN
said VERB
. PUNCT
Further ADJ
proof NOUN
of ADP
HIV PROPN
gene NOUN
involvement NOUN
came VERB
from ADP
a DET
test NOUN
in ADP
which PRON
the DET
scientists NOUN
exposed VERB
the DET
transgenic ADJ
animals NOUN
to PART
ultraviolet VERB
light NOUN
. PUNCT
  SPACE
The DET
light NOUN
increased VERB
HIV PROPN
genetic ADJ
activity NOUN
causing VERB
papillomas PROPN
to PART
develop VERB
on ADP
formerly ADV
healthy ADJ
skin NOUN
. PUNCT
  SPACE
Papilloma PROPN
formation NOUN
in ADP
response NOUN
to ADP
increased VERB
HIV PROPN
genetic ADJ
activity NOUN
proved VERB
the DET
genes NOUN
were AUX
responsible ADJ
for ADP
the DET
skin NOUN
condition NOUN
, PUNCT
the DET
scientists NOUN
said VERB
. PUNCT
  SPACE
No DET
lesions NOUN
appeared VERB
on ADP
normal ADJ
mice NOUN
exposed VERB
to ADP
the DET
UV NOUN
light NOUN
. PUNCT
The DET
transgenic ADJ
mice NOUN
used VERB
in ADP
this DET
study NOUN
were AUX
developed VERB
at ADP
NIDR PROPN
by ADP
Dr. PROPN
Peter PROPN
Dickie PROPN
, PUNCT
who PRON
is AUX
now ADV
with ADP
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious ADJ
Diseases NOUN
. PUNCT
Collaborating VERB
on ADP
the DET
study NOUN
with ADP
Dr. PROPN
Kopp PROPN
were AUX
Mr. PROPN
Charles PROPN
Wohlenberg PROPN
, PUNCT
Drs PROPN
. PUNCT
Nickolas PROPN
Dorfman PROPN
, PUNCT
Joseph PROPN
Bryant PROPN
, PUNCT
Abner PROPN
Notkins PROPN
, PUNCT
and CCONJ
Paul PROPN
Klotman PROPN
, PUNCT
all DET
of ADP
NIDR PROPN
; PUNCT
Dr. PROPN
Stephen PROPN
Katz PROPN
of ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
; PUNCT
and CCONJ
Dr. PROPN
James PROPN
Rooney PROPN
, PUNCT
formerly ADV
with ADP
NIDR PROPN
and CCONJ
now ADV
with ADP
Burroughs PROPN
Wellcome PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
51Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
               SPACE
Clinical PROPN
Consultation PROPN
Telephone PROPN
Service PROPN
for ADP
AIDS PROPN
                                SPACE
H PROPN
H PROPN
S PROPN
   SPACE
N NOUN
E NOUN
W PROPN
S PROPN
                 SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                 SPACE
U.S. PROPN
DEPARTMENT PROPN
OF ADP
HEALTH PROPN
AND CCONJ
HUMAN PROPN
SERVICES NOUN
                                 SPACE
March PROPN
4 NUM
, PUNCT
1993 NUM
     SPACE
HHS PROPN
Secretary PROPN
Donna PROPN
E. PROPN
Shalala PROPN
today NOUN
announced VERB
the DET
first ADJ
nationwide ADJ
clinical ADJ
consultation NOUN
telephone NOUN
service NOUN
for ADP
doctors NOUN
and CCONJ
other ADJ
health NOUN
care NOUN
professionals NOUN
who PRON
have AUX
questions NOUN
about ADP
providing VERB
care NOUN
to ADP
people NOUN
with ADP
HIV PROPN
infection NOUN
or CCONJ
AIDS PROPN
. PUNCT
      SPACE
The DET
toll NOUN
- PUNCT
free ADJ
National PROPN
HIV PROPN
Telephone PROPN
Consulting PROPN
Service PROPN
is AUX
staffed VERB
by ADP
a DET
physician NOUN
, PUNCT
a DET
nurse NOUN
practitioner NOUN
and CCONJ
a DET
pharmacist NOUN
. PUNCT
It PRON
provides VERB
information NOUN
on ADP
drugs NOUN
, PUNCT
clinical ADJ
trials NOUN
and CCONJ
the DET
latest ADJ
treatment NOUN
methods NOUN
. PUNCT
  SPACE
The DET
service NOUN
is AUX
funded VERB
by ADP
the DET
Health PROPN
Resources PROPN
and CCONJ
Services PROPN
Administration PROPN
and CCONJ
operates VERB
out SCONJ
of ADP
San PROPN
Francisco PROPN
General PROPN
Hospital PROPN
. PUNCT
      SPACE
Secretary PROPN
Shalala PROPN
said VERB
, PUNCT
" PUNCT
One NUM
goal NOUN
of ADP
this DET
project NOUN
is AUX
to PART
share VERB
expertise NOUN
so SCONJ
patients NOUN
get VERB
the DET
best ADJ
care NOUN
. PUNCT
  SPACE
A DET
second ADJ
goal NOUN
is AUX
to PART
get AUX
more ADJ
primary ADJ
health NOUN
care NOUN
providers NOUN
involved VERB
in ADP
care NOUN
for ADP
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
, PUNCT
which PRON
reduces VERB
treatment NOUN
cost NOUN
by ADP
allowing VERB
patients NOUN
to PART
remain VERB
with ADP
their PRON
medical ADJ
providers NOUN
and CCONJ
community NOUN
social ADJ
support NOUN
networks NOUN
. PUNCT
  SPACE
Currently ADV
, PUNCT
many ADJ
providers NOUN
refer VERB
patients NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
to ADP
specialists NOUN
or CCONJ
other ADJ
providers NOUN
who PRON
have AUX
more ADJ
experience NOUN
. PUNCT
" PUNCT
      SPACE
Secretary PROPN
Shalala PROPN
said VERB
, PUNCT
" PUNCT
This DET
clinical ADJ
expertise NOUN
should AUX
be AUX
especially ADV
helpful ADJ
for ADP
physicians NOUN
and CCONJ
providers NOUN
who PRON
treat VERB
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
in ADP
communities NOUN
and CCONJ
clinical ADJ
sites NOUN
where ADV
HIV PROPN
expertise NOUN
is AUX
not PART
readily ADV
available ADJ
. PUNCT
" PUNCT
      SPACE
The DET
telephone NOUN
number NOUN
for ADP
health NOUN
care NOUN
professionals NOUN
is AUX
1 NUM
- SYM
800 NUM
- PUNCT
933 NUM
- PUNCT
3413 NUM
, PUNCT
and CCONJ
it PRON
is AUX
accessible ADJ
from ADP
10:30 NUM
a.m. NOUN
to ADP
8 NUM
p.m. NOUN
EST PROPN
( PUNCT
7:30 NUM
a.m. NOUN
to ADP
5 NUM
p.m. NOUN
PST PROPN
) PUNCT
Monday PROPN
through ADP
Friday PROPN
. PUNCT
  SPACE
During ADP
these DET
times NOUN
, PUNCT
consultants NOUN
will AUX
try VERB
to PART
answer VERB
questions NOUN
immediately ADV
, PUNCT
or CCONJ
within ADP
an DET
hour NOUN
. PUNCT
  SPACE
At ADP
other ADJ
times NOUN
, PUNCT
physicians NOUN
and CCONJ
health NOUN
care NOUN
providers NOUN
can AUX
leave VERB
an DET
electronic ADJ
message NOUN
, PUNCT
and CCONJ
questions NOUN
will AUX
be AUX
answered VERB
as ADV
quickly ADV
as SCONJ
possible ADJ
. PUNCT
      SPACE
Health PROPN
care NOUN
professionals NOUN
may AUX
call VERB
the DET
service NOUN
to PART
ask VERB
any DET
question NOUN
related VERB
to ADP
providing VERB
HIV PROPN
care NOUN
, PUNCT
including VERB
the DET
latest ADJ
HIV PROPN
/ SYM
AIDS PROPN
drug NOUN
treatment NOUN
information NOUN
, PUNCT
clinical ADJ
trials NOUN
information NOUN
, PUNCT
subspecialty NOUN
case NOUN
referral NOUN
, PUNCT
literature NOUN
searches NOUN
and CCONJ
other ADJ
information NOUN
. PUNCT
  SPACE
The DET
service NOUN
is AUX
designed VERB
for ADP
health NOUN
care NOUN
professionals NOUN
rather ADV
than SCONJ
patients NOUN
, PUNCT
families NOUN
or CCONJ
others NOUN
who PRON
have AUX
alternate ADJ
sources NOUN
of ADP
information NOUN
or CCONJ
materials NOUN
. PUNCT
      SPACE
When ADV
a DET
health NOUN
care NOUN
professional NOUN
calls VERB
the DET
new ADJ
service NOUN
, PUNCT
the DET
call NOUN
is AUX
taken VERB
by ADP
either CCONJ
a DET
clinical ADJ
pharmacist NOUN
, PUNCT
primary ADJ
care NOUN
physician NOUN
or CCONJ
family NOUN
nurse NOUN
practitioner NOUN
. PUNCT
  SPACE
All DET
staff NOUN
members NOUN
have AUX
extensive ADJ
experience NOUN
in ADP
outpatient NOUN
and CCONJ
inpatient ADJ
primary ADJ
care NOUN
for ADP
people NOUN
with ADP
HIV PROPN
- PUNCT
related VERB
diseases NOUN
. PUNCT
  SPACE
The DET
consultant NOUN
asks VERB
for ADP
patient NOUN
- PUNCT
specific ADJ
information NOUN
, PUNCT
including VERB
CD4 PROPN
cell NOUN
count NOUN
, PUNCT
current ADJ
medications NOUN
, PUNCT
sex NOUN
, PUNCT
age NOUN
and CCONJ
the DET
patient NOUN
's PART
HIV PROPN
history NOUN
. PUNCT
      SPACE
This DET
national ADJ
service NOUN
has AUX
grown VERB
out SCONJ
of ADP
a DET
16-month NUM
local ADJ
effort NOUN
that PRON
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
52Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993responded NUM
to ADP
nearly ADV
1,000 NUM
calls NOUN
from ADP
health NOUN
care NOUN
providers NOUN
in ADP
northern ADJ
California PROPN
. PUNCT
  SPACE
The DET
initial ADJ
project NOUN
was AUX
funded VERB
by ADP
HRSA PROPN
's PART
Bureau PROPN
of ADP
Health PROPN
Professions PROPN
, PUNCT
through ADP
its PRON
Community PROPN
Provider PROPN
AIDS PROPN
Training NOUN
( PUNCT
CPAT PROPN
) PUNCT
project NOUN
, PUNCT
and CCONJ
by ADP
the DET
American PROPN
Academy PROPN
of ADP
Family PROPN
Physicians PROPN
. PUNCT
      SPACE
" PUNCT
When ADV
providers NOUN
expand VERB
their PRON
knowledge NOUN
, PUNCT
they PRON
also ADV
improve VERB
the DET
quality NOUN
of ADP
care NOUN
they PRON
are AUX
able ADJ
to PART
provide VERB
to ADP
their PRON
patients NOUN
, PUNCT
" PUNCT
said VERB
HRSA PROPN
Administrator PROPN
Robert PROPN
G. PROPN
Harmon PROPN
. PUNCT
M.D. PROPN
, PUNCT
M.P.H. PROPN
  SPACE
" PUNCT
This DET
project NOUN
will AUX
be AUX
a DET
great ADJ
resource NOUN
for ADP
health NOUN
care NOUN
professionals NOUN
and CCONJ
the DET
HIV PROPN
/ SYM
AIDS PROPN
patients NOUN
they PRON
serve VERB
. PUNCT
" PUNCT
      SPACE
" PUNCT
This DET
service NOUN
has AUX
opened VERB
a DET
new ADJ
means NOUN
of ADP
communication NOUN
between ADP
health NOUN
care NOUN
professionals NOUN
and CCONJ
experts NOUN
on ADP
HIV PROPN
care NOUN
management NOUN
, PUNCT
" PUNCT
said VERB
HRSA PROPN
's PART
associate ADJ
administrator NOUN
for ADP
AIDS PROPN
and CCONJ
director NOUN
of ADP
the DET
Bureau PROPN
of ADP
Health PROPN
Resources PROPN
Development PROPN
, PUNCT
G. PROPN
Stephen PROPN
Bowen PROPN
, PUNCT
M.D. PROPN
, PUNCT
M.P.H. PROPN
  SPACE
" PUNCT
Providers NOUN
who PRON
treat VERB
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
have AUX
access NOUN
to ADP
the DET
latest ADJ
information NOUN
on ADP
new ADJ
drugs NOUN
, PUNCT
treatment NOUN
methods NOUN
and CCONJ
therapies NOUN
for ADP
people NOUN
with ADP
HIV PROPN
or CCONJ
AIDS PROPN
. PUNCT
" PUNCT
      SPACE
HRSA PROPN
is AUX
one NUM
of ADP
eight NUM
U.S. PROPN
Public PROPN
Health PROPN
Service PROPN
agencies NOUN
within ADP
HHS PROPN
. PUNCT
                        SPACE
AIDS PROPN
Hotline PROPN
Numbers PROPN
for ADP
Consumers NOUN
                  SPACE
CDC PROPN
National PROPN
AIDS PROPN
Hotline PROPN
-- PUNCT
1 NUM
- PUNCT
800 NUM
- SYM
342-AIDS NUM
                  SPACE
for ADP
information NOUN
in ADP
Spanish PROPN
- PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
344-SIDA NUM
          SPACE
AIDS PROPN
Clinical PROPN
Trials PROPN
( PUNCT
English PROPN
& CCONJ
Spanish PROPN
) PUNCT
-- PUNCT
1 NUM
- PUNCT
800-TRIALS NUM
- PUNCT
AHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
53 NUM
 SPACE
------------- PUNCT
cut VERB
here ADV
------------------- PUNCT
This DET
is AUX
the DET
last ADJ
part NOUN
------------------ PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59124From NUM
: PUNCT
sbishop@desire.wright.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr21.024103.29880@spdcc.com NUM
> X
, PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr20.212706.820@lrc.edu NUM
> X
kjiv@lrc.edu NUM
writes:>>Can ADP
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
> X
> X
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
> X
> X
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to ADP
> X
> X
prevent PROPN
asthma PROPN
) PUNCT
; PUNCT
Vancenase PROPN
. PUNCT
> X
> X
Hismanal PROPN
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to ADP
weight NOUN
gain NOUN
. PUNCT
> X
It PRON
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect NOUN
, PUNCT
> X
and CCONJ
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedly ADV
> X
does AUX
n't PART
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to PART
cause VERB
> X
drowsiness NOUN
. PUNCT
It PRON
also ADV
gave VERB
me PRON
lots NOUN
of ADP
problems NOUN
with ADP
joint ADJ
and CCONJ
muscle NOUN
pain NOUN
. PUNCT
  SPACE
Seemed VERB
totrigger NOUN
arthritis NOUN
- PUNCT
like ADJ
problems NOUN
. PUNCT
Sue PROPN
> X
> X
-- PUNCT
> X
Steve PROPN
Dyer PROPN
> X
dyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59125From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 X
Medical PROPN
Newsletter PROPN
Part PROPN
1/4 NUM
- SYM
------------ PUNCT
cut NOUN
here ADV
-----------------Volume NOUN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
              SPACE
+ CCONJ
------------------------------------------------+ PUNCT
              SPACE
! PUNCT
                                                SPACE
! PUNCT
              SPACE
! PUNCT
              SPACE
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
           SPACE
! PUNCT
              SPACE
! PUNCT
                SPACE
Medical PROPN
Newsletter PROPN
              SPACE
! PUNCT
              SPACE
+ X
------------------------------------------------+ PUNCT
                         SPACE
Editor NOUN
: PUNCT
David PROPN
Dodell PROPN
, PUNCT
D.M.D. PROPN
    SPACE
10250 NUM
North PROPN
92nd NOUN
Street PROPN
, PUNCT
Suite PROPN
210 NUM
, PUNCT
Scottsdale PROPN
, PUNCT
Arizona PROPN
85258 NUM
- SYM
4599 NUM
USA PROPN
                          SPACE
Telephone PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
860 NUM
- SYM
1121 NUM
                              SPACE
FAX PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
451 NUM
- PUNCT
1165Compilation NUM
Copyright PROPN
1993 NUM
by ADP
David PROPN
Dodell PROPN
, PUNCT
  SPACE
D.M.D. PROPN
  SPACE
All DET
  SPACE
rights NOUN
  SPACE
Reserved VERB
. PUNCT
  SPACE
License NOUN
  SPACE
is AUX
  SPACE
hereby PROPN
  SPACE
granted VERB
  SPACE
to PART
republish VERB
on ADP
electronic ADJ
media NOUN
for ADP
which PRON
no DET
fees NOUN
are AUX
charged VERB
, PUNCT
  SPACE
so ADV
long ADV
as SCONJ
the DET
text NOUN
of ADP
this DET
copyright NOUN
notice NOUN
and CCONJ
license NOUN
are AUX
attached VERB
intact ADJ
to ADP
any DET
and CCONJ
all DET
republished VERB
portion NOUN
or CCONJ
portions NOUN
. PUNCT
  SPACE
The DET
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
Newsletter PROPN
is AUX
  SPACE
distributed VERB
  SPACE
biweekly ADV
. PUNCT
  SPACE
Articles NOUN
on ADP
  SPACE
a DET
medical ADJ
nature NOUN
are AUX
welcomed VERB
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
an DET
article NOUN
, PUNCT
  SPACE
please INTJ
contact VERB
the DET
editor NOUN
for ADP
information NOUN
on ADP
how ADV
to PART
submit VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
  SPACE
interested ADJ
  SPACE
in ADP
joining VERB
the DET
automated VERB
distribution NOUN
system NOUN
, PUNCT
please INTJ
contact VERB
the DET
editor NOUN
. PUNCT
  SPACE
E PROPN
- PROPN
Mail PROPN
Address NOUN
: PUNCT
                                    SPACE
Editor NOUN
: PUNCT
                            SPACE
Internet NOUN
: PUNCT
david@stat.com X
                              SPACE
FidoNet PROPN
= SYM
1:114/15 NUM
                           SPACE
Bitnet NOUN
= SYM
ATW1H@ASUACAD VERB
LISTSERV PROPN
= SYM
MEDNEWS@ASUACAD.BITNET NOUN
( PUNCT
or CCONJ
internet NOUN
: PUNCT
mednews@asuvm.inre.asu.edu PROPN
) PUNCT
                          SPACE
anonymous ADJ
ftp NOUN
= X
vm1.nodak.edu PROPN
               SPACE
Notification PROPN
List PROPN
= SYM
hicn-notify-request@stat.com X
                 SPACE
FAX PROPN
Delivery NOUN
= SYM
Contact PROPN
Editor PROPN
for ADP
information NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                       SPACE
T NOUN
A PROPN
B NOUN
L NOUN
E NOUN
   SPACE
O INTJ
F NOUN
   SPACE
C NOUN
O NOUN
N NOUN
T NOUN
E NOUN
N NOUN
T NOUN
S1 PROPN
. PUNCT
  SPACE
Comments PROPN
& CCONJ
News PROPN
from ADP
the DET
Editor PROPN
     SPACE
OCR PROPN
/ SYM
Scanner PROPN
News PROPN
................................................... PUNCT
  SPACE
12 NUM
. PUNCT
  SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
     SPACE
[ PUNCT
16 NUM
April PROPN
1993 NUM
] PUNCT
Emerging VERB
Infectious PROPN
Diseases NOUN
......................... PUNCT
  SPACE
3 NUM
     SPACE
Outbreak PROPN
of ADP
E. PROPN
coli NOUN
Infections PROPN
from ADP
Hamburgers NOUN
....................... PUNCT
  SPACE
5 NUM
     SPACE
Use NOUN
of ADP
Smokeless PROPN
Tobacoo PROPN
Among ADP
Adults NOUN
................................ PUNCT
10 NUM
     SPACE
Gonorrhea PROPN
............................................................ PUNCT
14 NUM
     SPACE
Impact PROPN
of ADP
Adult PROPN
Safety PROPN
- PUNCT
Belt PROPN
Use PROPN
on ADP
Children NOUN
less ADJ
than SCONJ
11 NUM
years NOUN
Age NOUN
... PUNCT
17 NUM
     SPACE
Publication PROPN
of ADP
CDC PROPN
Surveillance PROPN
Summaries PROPN
............................ PUNCT
213 NUM
. PUNCT
  SPACE
Clinical PROPN
Research PROPN
News PROPN
     SPACE
High PROPN
Tech PROPN
Assisted PROPN
Reproductive PROPN
Technologies PROPN
......................... PUNCT
244 NUM
. PUNCT
  SPACE
Articles NOUN
     SPACE
Low PROPN
Levels PROPN
Airborne PROPN
Particles PROPN
Linked VERB
to ADP
Serious PROPN
Asthma PROPN
Attacks PROPN
....... PUNCT
29 NUM
     SPACE
NIH PROPN
Consensus PROPN
Development PROPN
Conference PROPN
on ADP
Melanoma PROPN
..................... PUNCT
31 NUM
     SPACE
National PROPN
Cancer PROPN
Insitute PROPN
Designated VERB
Cancer PROPN
Centers PROPN
................... PUNCT
325 NUM
. PUNCT
  SPACE
General PROPN
Announcments PROPN
     SPACE
UCI PROPN
Medical PROPN
Education PROPN
Software PROPN
Repository PROPN
............................ PUNCT
406 NUM
. PUNCT
  SPACE
AIDS PROPN
News PROPN
Summaries PROPN
     SPACE
AIDS PROPN
Daily PROPN
Summary PROPN
April PROPN
12 NUM
to ADP
April PROPN
15 NUM
, PUNCT
1993 NUM
........................ PUNCT
417 NUM
. PUNCT
  SPACE
AIDS PROPN
/ SYM
HIV PROPN
Articles PROPN
     SPACE
First PROPN
HIV PROPN
Vaccine PROPN
Trial PROPN
Begins VERB
in ADP
HIV PROPN
- PUNCT
Infected VERB
Children NOUN
.............. PUNCT
47 NUM
     SPACE
New PROPN
Evidence PROPN
that SCONJ
the DET
HIV PROPN
Can AUX
Cause VERB
Disease PROPN
Independently ADV
............ PUNCT
50 NUM
     SPACE
Clinical PROPN
Consultation PROPN
Telephone PROPN
Service PROPN
for ADP
AIDS PROPN
..................... PUNCT
52HICNet NUM
Medical PROPN
Newsletter PROPN
                                            SPACE
Page PROPN
    SPACE
iVolume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                        SPACE
Comments PROPN
& CCONJ
News PROPN
from ADP
the DET
Editor::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::I NOUN
would AUX
like VERB
to PART
continue VERB
to PART
thank VERB
everyone PRON
who PRON
has AUX
sent VERB
in ADP
a DET
donation NOUN
for ADP
the DET
Mednews PROPN
OCR PROPN
/ SYM
Scanner PROPN
Fund PROPN
. PUNCT
  SPACE
We PRON
have AUX
reached VERB
our PRON
goal NOUN
! PUNCT
  SPACE
A DET
Hewlett PROPN
PackardScanjet PROPN
IIp PROPN
was AUX
purchased VERB
this DET
week NOUN
. PUNCT
Thank VERB
you PRON
to ADP
the DET
following VERB
individuals NOUN
whose PRON
contributions NOUN
I PRON
just ADV
received VERB
: PUNCT
John PROPN
SorensonCarol PROPN
SigelmanCarla PROPN
MooreBarbara PROPN
MooseJudith PROPN
SchrierAgain PROPN
, PUNCT
thank VERB
you PRON
to ADP
all DET
who PRON
gave!I ADV
have AUX
been AUX
using VERB
Wordscan PROPN
Plus CCONJ
for ADP
the DET
past ADJ
couple NOUN
of ADP
weeks NOUN
and CCONJ
would AUX
like VERB
to PART
review VERB
the DET
product NOUN
. PUNCT
  SPACE
Wordscan PROPN
Plus CCONJ
is AUX
a DET
product NOUN
of ADP
Calera PROPN
Recognition PROPN
Systems PROPN
. PUNCT
  SPACE
It PRON
runs VERB
under ADP
Windows PROPN
3.1 NUM
and CCONJ
supports VERB
that SCONJ
Accufont PROPN
Technology PROPN
of ADP
the DET
Hewlett PROPN
Packard PROPN
Scanners PROPN
. PUNCT
  SPACE
When ADV
initially ADV
bringing VERB
up ADP
the DET
software NOUN
, PUNCT
it PRON
lets VERB
you PRON
select VERB
several ADJ
options NOUN
; PUNCT
( PUNCT
1 X
) PUNCT
text NOUN
/ SYM
graphics NOUN
( PUNCT
2 X
) PUNCT
input NOUN
source NOUN
ie PROPN
scanner PROPN
, PUNCT
fax NOUN
file NOUN
, PUNCT
disk NOUN
file NOUN
( PUNCT
3 X
) PUNCT
automatic ADJ
versus ADP
manual ADJ
decomposition NOUN
of ADP
the DET
scanned VERB
image NOUN
. PUNCT
I PRON
like VERB
manual ADJ
decomposition NOUN
since SCONJ
the DET
software NOUN
then ADV
lets VERB
me PRON
select VERB
which PRON
parts NOUN
of ADP
the DET
document NOUN
I PRON
would AUX
like VERB
scanned VERB
, PUNCT
and CCONJ
in ADP
what PRON
order NOUN
. PUNCT
Once ADV
an DET
image NOUN
is AUX
scanned VERB
, PUNCT
you PRON
can AUX
bring VERB
up ADP
the DET
Pop NOUN
- PUNCT
Up ADP
image NOUN
verification NOUN
. PUNCT
  SPACE
The DET
software NOUN
gives VERB
you PRON
two NUM
" PUNCT
errors NOUN
" PUNCT
at ADP
this DET
point NOUN
. PUNCT
  SPACE
Blue PROPN
which PRON
are AUX
words NOUN
that PRON
were AUX
converted VERB
reliability NOUN
, PUNCT
but CCONJ
do AUX
not PART
match VERB
anything PRON
in ADP
the DET
built VERB
- PUNCT
in ADP
dictionary PROPN
. PUNCT
  SPACE
Yellow PROPN
shade NOUN
, PUNCT
which PRON
are AUX
words NOUN
that PRON
Wordscan PROPN
Plus CCONJ
does AUX
n't PART
think VERB
it PRON
converted VERB
correctly ADV
at ADV
all ADV
. PUNCT
  SPACE
I PRON
have AUX
found VERB
that SCONJ
the DET
software NOUN
should AUX
give VERB
itself PRON
more ADJ
credit NOUN
. PUNCT
  SPACE
It PRON
is AUX
usually ADV
correct ADJ
, PUNCT
instead ADV
of ADP
wrong NOUN
. PUNCT
  SPACE
If SCONJ
a DET
word NOUN
is AUX
shaded VERB
blue ADJ
, PUNCT
you PRON
can AUX
add VERB
it PRON
to ADP
your PRON
personal ADJ
dictionary NOUN
. PUNCT
  SPACE
The DET
only ADJ
problem NOUN
is AUX
the DET
personal ADJ
dictionary NOUN
will AUX
only ADV
handle VERB
about ADV
200 NUM
words NOUN
. PUNCT
  SPACE
I PRON
find VERB
this DET
to PART
be AUX
very ADV
limited ADJ
, PUNCT
considering VERB
how ADV
many ADJ
medical ADJ
terms NOUN
are AUX
not PART
in ADP
a DET
normal ADJ
dictionary NOUN
. PUNCT
After ADP
a DET
document NOUN
is AUX
converted VERB
, PUNCT
you PRON
can AUX
save VERB
it PRON
in ADP
a DET
multitude NOUN
of ADP
word NOUN
processor NOUN
formats NOUN
. PUNCT
  SPACE
Also ADV
any DET
images NOUN
that PRON
were AUX
captured VERB
can AUX
be AUX
stored VERB
in ADP
a DET
seperate ADJ
TIFF PROPN
or CCONJ
PCX PROPN
file NOUN
format NOUN
. PUNCT
I PRON
was AUX
extremely ADV
impressed ADJ
on ADP
the DET
percent NOUN
accuracy NOUN
for ADP
fax NOUN
files NOUN
. PUNCT
  SPACE
I PRON
use VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
1Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993an NUM
Intel PROPN
Satisfaxtion PROPN
card NOUN
, PUNCT
which PRON
stores VERB
incoming ADJ
faxs NOUN
in ADP
a DET
PCX PROPN
/ SYM
DCX PROPN
format NOUN
. PUNCT
  SPACE
While SCONJ
most ADJ
of ADP
my PRON
faxes NOUN
were AUX
received VERB
in ADP
" PUNCT
standard ADJ
" PUNCT
mode NOUN
( PUNCT
200x100 PROPN
dpi PROPN
) PUNCT
, PUNCT
the DET
accuracy NOUN
of ADP
Wordscan PROPN
Plus CCONJ
was AUX
excellent ADJ
. PUNCT
Overall ADV
, PUNCT
a DET
very ADV
impressive ADJ
product NOUN
. PUNCT
  SPACE
The DET
only ADJ
fault NOUN
I PRON
could AUX
find VERB
is AUX
the DET
limitations NOUN
of ADP
the DET
size NOUN
of ADP
the DET
user NOUN
dictionary PROPN
. PUNCT
  SPACE
200 NUM
specialized ADJ
words NOUN
is AUX
just ADV
too ADV
small ADJ
. PUNCT
If SCONJ
anyone PRON
has AUX
any DET
specific ADJ
questions NOUN
, PUNCT
please INTJ
do AUX
not PART
hesitate VERB
to PART
send VERB
me PRON
email NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
2Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                         SPACE
Emerging VERB
Infectious ADJ
Diseases NOUN
                         SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
                                 SPACE
Introduction NOUN
     SPACE
Despite SCONJ
predictions NOUN
earlier ADV
this DET
century NOUN
that PRON
infectious ADJ
diseases NOUN
would AUX
soon ADV
be AUX
eliminated VERB
as SCONJ
a DET
public ADJ
health NOUN
problem NOUN
( PUNCT
1 NUM
) PUNCT
, PUNCT
infectious ADJ
diseases NOUN
remain VERB
the DET
major ADJ
cause NOUN
of ADP
death NOUN
worldwide ADV
and CCONJ
a DET
leading VERB
cause NOUN
of ADP
illness NOUN
and CCONJ
death NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Since SCONJ
the DET
early ADJ
1970s NOUN
, PUNCT
the DET
U.S. PROPN
public ADJ
health NOUN
system NOUN
has AUX
been AUX
challenged VERB
by ADP
a DET
myriad NOUN
of ADP
newly ADV
identified VERB
pathogens NOUN
and CCONJ
syndromes NOUN
( PUNCT
e.g. ADV
, PUNCT
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
, PUNCT
hepatitis NOUN
C PROPN
virus NOUN
, PUNCT
human ADJ
immunodeficiency NOUN
virus NOUN
, PUNCT
Legionnaires PROPN
disease NOUN
, PUNCT
Lyme PROPN
disease NOUN
, PUNCT
and CCONJ
toxic ADJ
shock NOUN
syndrome NOUN
) PUNCT
. PUNCT
The DET
incidences NOUN
of ADP
many ADJ
diseases NOUN
widely ADV
presumed VERB
to PART
be AUX
under ADP
control NOUN
, PUNCT
such ADJ
as SCONJ
cholera PROPN
, PUNCT
malaria PROPN
, PUNCT
and CCONJ
tuberculosis NOUN
( PUNCT
TB PROPN
) PUNCT
, PUNCT
have AUX
increased VERB
in ADP
many ADJ
areas NOUN
. PUNCT
Furthermore ADV
, PUNCT
control NOUN
and CCONJ
prevention NOUN
of ADP
infectious ADJ
diseases NOUN
are AUX
undermined VERB
by ADP
drug NOUN
resistance NOUN
in ADP
conditions NOUN
such ADJ
as SCONJ
gonorrhea PROPN
, PUNCT
malaria PROPN
, PUNCT
pneumococcal ADJ
disease NOUN
, PUNCT
salmonellosis NOUN
, PUNCT
shigellosis NOUN
, PUNCT
TB PROPN
, PUNCT
and CCONJ
staphylococcal ADJ
infections NOUN
( PUNCT
2 NUM
) PUNCT
. PUNCT
Emerging VERB
infections NOUN
place VERB
a DET
disproportionate ADJ
burden NOUN
on ADP
immunocompromised VERB
persons NOUN
, PUNCT
those DET
in ADP
institutional ADJ
settings NOUN
( PUNCT
e.g. ADV
, PUNCT
hospitals NOUN
and CCONJ
child NOUN
day NOUN
care NOUN
centers NOUN
) PUNCT
, PUNCT
and CCONJ
minority NOUN
and CCONJ
underserved ADJ
populations NOUN
. PUNCT
The DET
substantial ADJ
economic ADJ
burden NOUN
of ADP
emerging VERB
infections NOUN
on ADP
the DET
U.S. PROPN
health NOUN
- PUNCT
care NOUN
system NOUN
could AUX
be AUX
reduced VERB
by ADP
more ADJ
effective ADJ
surveillance NOUN
systems NOUN
and CCONJ
targeted VERB
control NOUN
and CCONJ
prevention NOUN
programs NOUN
( PUNCT
3 NUM
) PUNCT
. PUNCT
      SPACE
This DET
issue NOUN
of ADP
MMWR PROPN
introduces VERB
a DET
new ADJ
series NOUN
, PUNCT
" PUNCT
Emerging VERB
Infectious ADJ
Diseases NOUN
. PUNCT
" PUNCT
Future ADJ
articles NOUN
will AUX
address VERB
these DET
diseases NOUN
, PUNCT
as ADV
well ADV
as SCONJ
surveillance NOUN
, PUNCT
control NOUN
, PUNCT
and CCONJ
prevention NOUN
efforts NOUN
by ADP
health NOUN
- PUNCT
care NOUN
providers NOUN
and CCONJ
public ADJ
health NOUN
officials NOUN
. PUNCT
This DET
first ADJ
article NOUN
updates VERB
the DET
ongoing ADJ
investigation NOUN
of ADP
an DET
outbreak NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
in ADP
the DET
western ADJ
United PROPN
States PROPN
( PUNCT
4 NUM
) PUNCT
. PUNCT
References1 ADJ
. PUNCT
Burnet PROPN
M. PROPN
Natural PROPN
history NOUN
of ADP
infectious ADJ
disease NOUN
. PUNCT
Cambridge PROPN
, PUNCT
England PROPN
: PUNCT
Cambridge PROPN
University PROPN
Press PROPN
, PUNCT
1963 NUM
. NOUN
2 NUM
. PUNCT
Kunin PROPN
CM PROPN
. PUNCT
Resistance NOUN
to ADP
antimicrobial ADJ
drugs NOUN
-- PUNCT
a DET
worldwide ADJ
calamity NOUN
. PUNCT
Ann PROPN
Intern PROPN
Med PROPN
1993;118:557 NUM
- SYM
61 NUM
. PUNCT
3 NUM
. PUNCT
Lederberg PROPN
J PROPN
, PUNCT
Shope PROPN
RE PROPN
, PUNCT
Oaks PROPN
SC PROPN
Jr PROPN
, PUNCT
eds NOUN
. PUNCT
Emerging VERB
infections NOUN
: PUNCT
microbial ADJ
threats NOUN
to ADP
health VERB
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
National PROPN
Academy PROPN
Press PROPN
, PUNCT
1992 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
3Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
19934 NUM
. PUNCT
CDC PROPN
. PUNCT
Preliminary ADJ
report NOUN
: PUNCT
foodborne ADJ
outbreak NOUN
of ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
infections NOUN
from ADP
hamburgers NOUN
--western PUNCT
United PROPN
States PROPN
, PUNCT
1993 NUM
. PUNCT
MMWR PROPN
1993;42:85 NUM
- PUNCT
6.HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
4Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
            SPACE
Update NOUN
: PUNCT
Multistate PROPN
Outbreak PROPN
of ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
             SPACE
Infections NOUN
from ADP
Hamburgers NOUN
-- PUNCT
Western PROPN
United PROPN
States PROPN
, PUNCT
                                   SPACE
1992 NUM
- SYM
1993 NUM
            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
From ADP
November PROPN
15 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
February PROPN
28 NUM
, PUNCT
1993 NUM
, PUNCT
more ADJ
than SCONJ
500 NUM
laboratory NOUN
- PUNCT
confirmed VERB
infections NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
and CCONJ
four NUM
associated VERB
deaths NOUN
occurred VERB
in ADP
four NUM
states NOUN
-- PUNCT
Washington PROPN
, PUNCT
Idaho PROPN
, PUNCT
California PROPN
, PUNCT
and CCONJ
Nevada PROPN
. PUNCT
This DET
report NOUN
summarizes VERB
the DET
findings NOUN
from ADP
an DET
ongoing ADJ
investigation NOUN
( PUNCT
1 X
) PUNCT
that PRON
identified VERB
a DET
multistate NOUN
outbreak NOUN
resulting VERB
from ADP
consumption NOUN
of ADP
hamburgers NOUN
from ADP
one NUM
restaurant NOUN
chain NOUN
. PUNCT
Washington PROPN
      SPACE
On ADP
January PROPN
13 NUM
, PUNCT
1993 NUM
, PUNCT
a DET
physician NOUN
reported VERB
to ADP
the DET
Washington PROPN
Department PROPN
of ADP
Health PROPN
a DET
cluster NOUN
of ADP
children NOUN
with ADP
hemolytic ADJ
uremic ADJ
syndrome NOUN
( PUNCT
HUS PROPN
) PUNCT
and CCONJ
an DET
increase NOUN
in ADP
emergency NOUN
room NOUN
visits NOUN
for ADP
bloody ADJ
diarrhea NOUN
. PUNCT
During ADP
January PROPN
16 NUM
- SYM
17 NUM
, PUNCT
a DET
case NOUN
- PUNCT
control NOUN
study NOUN
comparing VERB
16 NUM
of ADP
the DET
first ADJ
cases NOUN
of ADP
bloody ADJ
diarrhea NOUN
or CCONJ
postdiarrheal VERB
HUS PRON
identified VERB
with ADP
age- CCONJ
and CCONJ
neighborhood NOUN
- PUNCT
matched VERB
controls NOUN
implicated VERB
eating VERB
at ADP
chain NOUN
A DET
restaurants NOUN
during ADP
the DET
week NOUN
before ADP
symptom NOUN
onset NOUN
( PUNCT
matched VERB
odds NOUN
ratio NOUN
OR CCONJ
= SYM
undefined ADJ
; PUNCT
lower ADJ
confidence NOUN
limit=3.5 NOUN
) PUNCT
. PUNCT
On ADP
January PROPN
18 NUM
, PUNCT
a DET
multistate ADJ
recall NOUN
of ADP
unused ADJ
hamburger NOUN
patties NOUN
from ADP
chain NOUN
A DET
restaurants NOUN
was AUX
initiated VERB
. PUNCT
      SPACE
As SCONJ
a DET
result NOUN
of ADP
publicity NOUN
and CCONJ
case NOUN
- PUNCT
finding VERB
efforts NOUN
, PUNCT
during ADP
January PROPN
- PUNCT
February PROPN
1993 NUM
, PUNCT
602 NUM
patients NOUN
with ADP
bloody ADJ
diarrhea NOUN
or CCONJ
HUS PRON
were AUX
reported VERB
to ADP
the DET
state PROPN
health NOUN
department NOUN
. PUNCT
A DET
total NOUN
of ADP
477 NUM
persons NOUN
had AUX
illnesses NOUN
meeting VERB
the DET
case NOUN
definition NOUN
of ADP
culture NOUN
- PUNCT
confirmed VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
or CCONJ
postdiarrheal ADJ
HUS PROPN
( PUNCT
Figure NOUN
1 NUM
) PUNCT
. PUNCT
Of ADP
the DET
477 NUM
persons NOUN
, PUNCT
52 NUM
( PUNCT
11 NUM
% NOUN
) PUNCT
had AUX
close ADJ
contact NOUN
with ADP
a DET
person NOUN
with ADP
confirmed VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
during ADP
the DET
week NOUN
preceding VERB
onset NOUN
of ADP
symptoms NOUN
. PUNCT
Of ADP
the DET
remaining VERB
425 NUM
persons NOUN
, PUNCT
372 NUM
( PUNCT
88 NUM
% NOUN
) PUNCT
reported VERB
eating VERB
in ADP
a DET
chain NOUN
A DET
restaurant NOUN
during ADP
the DET
9 NUM
days NOUN
preceding VERB
onset NOUN
of ADP
symptoms NOUN
. PUNCT
Of ADP
the DET
338 NUM
patients NOUN
who PRON
recalled VERB
what PRON
they PRON
ate VERB
in ADP
a DET
chain NOUN
A DET
restaurant NOUN
, PUNCT
312 NUM
( PUNCT
92 NUM
% NOUN
) PUNCT
reported VERB
eating VERB
a DET
regular ADJ
- PUNCT
sized ADJ
hamburger NOUN
patty NOUN
. PUNCT
Onsets NOUN
of ADP
illness NOUN
peaked VERB
from ADP
January PROPN
17 NUM
through ADP
January PROPN
20 NUM
. PUNCT
Of ADP
the DET
477 NUM
casepatients NOUN
, PUNCT
144 NUM
( PUNCT
30 NUM
% NOUN
) PUNCT
were AUX
hospitalized VERB
; PUNCT
30 NUM
developed VERB
HUS PROPN
, PUNCT
and CCONJ
three NUM
died VERB
. PUNCT
The DET
median ADJ
age NOUN
of ADP
patients NOUN
was AUX
7.5 NUM
years NOUN
( PUNCT
range NOUN
: PUNCT
0 NUM
- SYM
74 NUM
years NOUN
) PUNCT
. PUNCT
Idaho PROPN
      SPACE
Following VERB
the DET
outbreak NOUN
report NOUN
from ADP
Washington PROPN
, PUNCT
the DET
Division PROPN
of ADP
Health PROPN
, PUNCT
Idaho PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Welfare PROPN
, PUNCT
identified VERB
14 NUM
persons NOUN
with ADP
culture NOUN
- PUNCT
confirmed VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
, PUNCT
with ADP
illness NOUN
onset NOUN
dates NOUN
from ADP
December PROPN
11 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
February PROPN
16 NUM
, PUNCT
1993 NUM
( PUNCT
Figure NOUN
2A PROPN
) PUNCT
. PUNCT
Four NUM
persons NOUN
were AUX
hospitalized VERB
; PUNCT
one NUM
developed VERB
HUS PROPN
. PUNCT
During ADP
the DET
week NOUN
preceding VERB
illness NOUN
onset NOUN
, PUNCT
13 NUM
( PUNCT
93 NUM
% NOUN
) PUNCT
had AUX
eaten VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
. PUNCT
California PROPN
      SPACE
In ADP
late ADJ
December PROPN
, PUNCT
the DET
San PROPN
Diego PROPN
County PROPN
Department PROPN
of ADP
Health PROPN
Services PROPN
was AUX
notified VERB
of ADP
a DET
child NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infection NOUN
who PRON
subsequently ADV
died VERB
. PUNCT
Active ADJ
surveillance NOUN
and CCONJ
record NOUN
review NOUN
then ADV
identified VERB
eight NUM
other ADJ
persons NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
infections NOUN
or CCONJ
HUS PROPN
from ADP
mid PROPN
- PROPN
November PROPN
through ADP
mid ADJ
- PROPN
January PROPN
1993 NUM
. PUNCT
Four NUM
of ADP
the DET
nine NUM
reportedly ADV
had AUX
recently ADV
eaten VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
and CCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
5Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993four NUM
at ADP
a DET
chain NOUN
B NOUN
restaurant NOUN
in ADP
San PROPN
Diego PROPN
. PUNCT
After ADP
the DET
Washington PROPN
outbreak NOUN
was AUX
reported VERB
, PUNCT
reviews NOUN
of ADP
medical ADJ
records NOUN
at ADP
five NUM
hospitals NOUN
revealed VERB
an DET
overall ADJ
27 NUM
% NOUN
increase NOUN
in ADP
visits NOUN
or CCONJ
admissions NOUN
for ADP
diarrhea NOUN
during ADP
December PROPN
1992 NUM
and CCONJ
January PROPN
1993 NUM
compared VERB
with ADP
the DET
same ADJ
period NOUN
1 NUM
year NOUN
earlier ADV
. PUNCT
A DET
case NOUN
was AUX
defined VERB
as SCONJ
postdiarrheal ADJ
HUS PROPN
, PUNCT
bloody ADJ
diarrhea NOUN
that PRON
was AUX
culture NOUN
negative ADJ
or CCONJ
not PART
cultured ADJ
, PUNCT
or CCONJ
any DET
diarrheal ADJ
illness NOUN
in ADP
which PRON
stool NOUN
culture NOUN
yielded VERB
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
, PUNCT
with ADP
onset NOUN
from ADP
November PROPN
15 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
January PROPN
31 NUM
, PUNCT
1993 NUM
. PUNCT
      SPACE
Illnesses PROPN
of ADP
34 NUM
patients NOUN
met VERB
the DET
case NOUN
definition NOUN
( PUNCT
Figure NOUN
2B PROPN
) PUNCT
. PUNCT
The DET
outbreak NOUN
strain NOUN
was AUX
identified VERB
in ADP
stool NOUN
specimens NOUN
of ADP
six NUM
patients NOUN
. PUNCT
Fourteen NUM
persons NOUN
were AUX
hospitalized VERB
, PUNCT
seven NUM
developed VERB
HUS PROPN
, PUNCT
and CCONJ
one NUM
child NOUN
died VERB
. PUNCT
The DET
median ADJ
age NOUN
of ADP
case NOUN
- PUNCT
patients NOUN
was AUX
10 NUM
years NOUN
( PUNCT
range NOUN
: PUNCT
1 NUM
- SYM
58 NUM
years NOUN
) PUNCT
. PUNCT
A DET
case NOUN
- PUNCT
control NOUN
study NOUN
of ADP
the DET
first ADJ
25 NUM
case NOUN
- PUNCT
patients NOUN
identified VERB
and CCONJ
age- ADP
and CCONJ
sex NOUN
- PUNCT
matched VERB
community NOUN
controls NOUN
implicated VERB
eating VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
in ADP
San PROPN
Diego PROPN
( PUNCT
matched VERB
OR=13 PROPN
; PUNCT
95 NUM
% NOUN
confidence NOUN
interval NOUN
CI=1.7 PROPN
- SYM
99 NUM
) PUNCT
. PUNCT
A DET
study NOUN
comparing VERB
case NOUN
- PUNCT
patients NOUN
who PRON
ate VERB
at ADP
chain NOUN
A DET
restaurants NOUN
with ADP
well ADJ
meal NOUN
companions NOUN
implicated VERB
regular ADJ
- PUNCT
sized ADJ
hamburger NOUN
patties NOUN
( PUNCT
matched VERB
OR CCONJ
= SYM
undefined ADJ
; PUNCT
lower ADJ
confidence NOUN
limit=1.3 NOUN
) PUNCT
. PUNCT
Chain NOUN
B PROPN
was AUX
not PART
statistically ADV
associated VERB
with ADP
illness NOUN
. PUNCT
Nevada PROPN
      SPACE
On ADP
January PROPN
22 NUM
, PUNCT
after ADP
receiving VERB
a DET
report NOUN
of ADP
a DET
child NOUN
with ADP
HUS PRON
who PRON
had AUX
eaten VERB
at ADP
a DET
local ADJ
chain NOUN
A DET
restaurant NOUN
, PUNCT
the DET
Clark PROPN
County PROPN
( PUNCT
Las PROPN
Vegas PROPN
) PUNCT
Health PROPN
District PROPN
issued VERB
a DET
press NOUN
release NOUN
requesting VERB
that SCONJ
persons NOUN
with ADP
recent ADJ
bloody ADJ
diarrhea NOUN
contact VERB
the DET
health NOUN
department NOUN
. PUNCT
A DET
case NOUN
was AUX
defined VERB
as SCONJ
postdiarrheal ADJ
HUS PROPN
, PUNCT
bloody ADJ
diarrhea NOUN
that PRON
was AUX
culture NOUN
negative ADJ
or CCONJ
not PART
cultured ADJ
, PUNCT
or CCONJ
any DET
diarrheal ADJ
illness NOUN
with ADP
a DET
stool NOUN
culture NOUN
yielding VERB
the DET
Washington PROPN
strain NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
, PUNCT
with ADP
onset NOUN
from ADP
December PROPN
1 NUM
, PUNCT
1992 NUM
, PUNCT
through ADP
February PROPN
7 NUM
, PUNCT
1993 NUM
. PUNCT
Because SCONJ
local ADJ
laboratories NOUN
were AUX
not PART
using VERB
sorbitol VERB
MacConkey PROPN
( PUNCT
SMAC PROPN
) PUNCT
medium NOUN
to ADP
screen NOUN
stools NOUN
for ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
, PUNCT
this DET
organism NOUN
was AUX
not PART
identified VERB
in ADP
any DET
patient NOUN
. PUNCT
After ADP
SMAC PROPN
medium NOUN
was AUX
distributed VERB
, PUNCT
the DET
outbreak NOUN
strain NOUN
was AUX
detected VERB
in ADP
the DET
stool NOUN
of ADP
one NUM
patient ADJ
38 NUM
days NOUN
after ADP
illness NOUN
onset NOUN
. PUNCT
      SPACE
Of ADP
58 NUM
persons NOUN
whose PRON
illnesses NOUN
met VERB
the DET
case NOUN
definition NOUN
( PUNCT
Figure NOUN
2C PROPN
) PUNCT
, PUNCT
nine NUM
were AUX
hospitalized VERB
; PUNCT
three NUM
developed VERB
HUS PROPN
. PUNCT
The DET
median ADJ
age NOUN
was AUX
30.5 NUM
years NOUN
( PUNCT
range NOUN
: PUNCT
0 NUM
- SYM
83 NUM
years NOUN
) PUNCT
. PUNCT
Analysis NOUN
of ADP
the DET
first ADJ
21 NUM
patients NOUN
identified VERB
and CCONJ
age- ADP
and CCONJ
sex NOUN
- PUNCT
matched VERB
community NOUN
controls NOUN
implicated VERB
eating VERB
at ADP
a DET
chain NOUN
A DET
restaurant NOUN
during ADP
the DET
week NOUN
preceding VERB
illness NOUN
onset NOUN
( PUNCT
matched VERB
OR CCONJ
= SYM
undefined ADJ
; PUNCT
lower ADJ
confidence NOUN
limit=4.9 NOUN
) PUNCT
. PUNCT
A DET
case NOUN
- PUNCT
control NOUN
study NOUN
using VERB
well ADJ
meal NOUN
companions NOUN
of ADP
case NOUN
- PUNCT
patients NOUN
also ADV
implicated VERB
eating VERB
hamburgers NOUN
at ADP
chain NOUN
A DET
( PUNCT
matched VERB
OR=6.0 PROPN
; PUNCT
95 NUM
% NOUN
CI=0.7 PROPN
- PUNCT
49.8 NUM
) PUNCT
. PUNCT
Other ADJ
Investigation PROPN
Findings PROPN
      SPACE
During ADP
the DET
outbreak NOUN
, PUNCT
chain VERB
A DET
restaurants NOUN
in ADP
Washington PROPN
linked VERB
with ADP
cases NOUN
primarily ADV
were AUX
serving VERB
regular ADJ
- PUNCT
sized ADJ
hamburger NOUN
patties NOUN
produced VERB
on ADP
November PROPN
19 NUM
, PUNCT
1992 NUM
; PUNCT
some DET
of ADP
the DET
same ADJ
meat NOUN
was AUX
used VERB
in ADP
" PUNCT
jumbo ADJ
" PUNCT
patties NOUN
produced VERB
on ADP
November PROPN
20 NUM
, PUNCT
1992 NUM
. PUNCT
The DET
outbreak ADJ
strain NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
was AUX
isolated VERB
from ADP
11 NUM
lots NOUN
of ADP
patties NOUN
produced VERB
on ADP
those DET
two NUM
dates NOUN
; PUNCT
these DET
lots NOUN
had AUX
been AUX
distributed VERB
to ADP
restaurants NOUN
in ADP
all DET
states NOUN
where ADV
illness NOUN
occurred VERB
. PUNCT
Approximately ADV
272,672 NUM
( PUNCT
20 NUM
% NOUN
) PUNCT
of ADP
the DET
implicated VERB
patties NOUN
were AUX
recovered VERB
by ADP
the DET
recall NOUN
. PUNCT
      SPACE
A DET
meat NOUN
traceback NOUN
by ADP
a DET
CDC PROPN
team NOUN
identified VERB
five NUM
slaughter NOUN
plants NOUN
in ADP
the DET
United PROPN
States PROPN
and CCONJ
one NUM
in ADP
Canada PROPN
as SCONJ
the DET
likely ADJ
sources NOUN
of ADP
carcasses NOUN
used VERB
in ADP
the DET
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
6Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993contaminated ADJ
lots NOUN
of ADP
meat NOUN
and CCONJ
identified VERB
potential ADJ
control NOUN
points NOUN
for ADP
reducing VERB
the DET
likelihood NOUN
of ADP
contamination NOUN
. PUNCT
The DET
animals NOUN
slaughtered VERB
in ADP
domestic ADJ
slaughter NOUN
plants NOUN
were AUX
traced VERB
to ADP
farms NOUN
and CCONJ
auctions NOUN
in ADP
six NUM
western ADJ
states NOUN
. PUNCT
No DET
one NOUN
slaughter NOUN
plant NOUN
or CCONJ
farm NOUN
was AUX
identified VERB
as SCONJ
the DET
source NOUN
. PUNCT
      SPACE
Further PROPN
investigation NOUN
of ADP
cases NOUN
related VERB
to ADP
secondary ADJ
transmission NOUN
in ADP
families NOUN
and CCONJ
child NOUN
day NOUN
care NOUN
settings NOUN
is AUX
ongoing ADJ
. PUNCT
Reported VERB
by ADP
: PUNCT
M PROPN
Davis PROPN
, PUNCT
DVM PROPN
, PUNCT
C PROPN
Osaki PROPN
, PUNCT
MSPH PROPN
, PUNCT
Seattle PROPN
- PUNCT
King PROPN
County PROPN
Dept PROPN
of ADP
Public PROPN
Health PROPN
; PUNCT
D PROPN
Gordon PROPN
, PUNCT
MS PROPN
, PUNCT
MW PROPN
Hinds PROPN
, PUNCT
MD PROPN
, PUNCT
Snohomish PROPN
Health PROPN
District PROPN
, PUNCT
Everett PROPN
; PUNCT
K PROPN
Mottram PROPN
, PUNCT
C PROPN
Winegar PROPN
, PUNCT
MPH PROPN
, PUNCT
Tacoma PROPN
- PUNCT
Pierce PROPN
County PROPN
Health PROPN
Dept PROPN
; PUNCT
ED PROPN
Avner PROPN
, PUNCT
MD PROPN
, PUNCT
PI PROPN
Tarr PROPN
, PUNCT
MD PROPN
, PUNCT
Dept PROPN
of ADP
Pediatrics PROPN
, PUNCT
D PROPN
Jardine PROPN
, PUNCT
MD PROPN
, PUNCT
Depts PROPN
of ADP
Anesthesiology PROPN
and CCONJ
Pediatrics PROPN
, PUNCT
Univ PROPN
of ADP
Washington PROPN
School PROPN
of ADP
Medicine PROPN
and CCONJ
Children PROPN
's PART
Hospital PROPN
and CCONJ
Medical PROPN
Center PROPN
, PUNCT
Seattle PROPN
; PUNCT
M PROPN
Goldoft PROPN
, PUNCT
MD PROPN
, PUNCT
B PROPN
Bartleson PROPN
, PUNCT
MPH PROPN
; PUNCT
J PROPN
Lewis PROPN
, PUNCT
JM PROPN
Kobayashi PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Washington PROPN
Dept PROPN
of ADP
Health PROPN
. PUNCT
G PROPN
Billman PROPN
, PUNCT
MD PROPN
, PUNCT
J PROPN
Bradley PROPN
, PUNCT
MD PROPN
, PUNCT
Children PROPN
's PART
Hospital PROPN
, PUNCT
San PROPN
Diego PROPN
; PUNCT
S PROPN
Hunt PROPN
, PUNCT
P PROPN
Tanner PROPN
, PUNCT
RES PROPN
, PUNCT
M PROPN
Ginsberg PROPN
, PUNCT
MD PROPN
, PUNCT
San PROPN
Diego PROPN
County PROPN
Dept PROPN
of ADP
Health PROPN
Svcs PROPN
; PUNCT
L PROPN
Barrett PROPN
, PUNCT
DVM PROPN
, PUNCT
SB PROPN
Werner PROPN
, PUNCT
MD PROPN
, PUNCT
GW PROPN
Rutherford PROPN
, PUNCT
III PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
California PROPN
Dept PROPN
of ADP
Health PROPN
Svcs PROPN
. PUNCT
RW PROPN
Jue PROPN
, PUNCT
Central PROPN
District PROPN
Health PROPN
Dept PROPN
, PUNCT
Boise PROPN
; PUNCT
H PROPN
Root PROPN
, PUNCT
Southwest PROPN
District PROPN
Health PROPN
Dept PROPN
, PUNCT
Caldwell PROPN
; PUNCT
D PROPN
Brothers PROPN
, PUNCT
MA PROPN
, PUNCT
RL PROPN
Chehey PROPN
, PUNCT
MS PROPN
, PUNCT
RH PROPN
Hudson PROPN
, PUNCT
PhD NOUN
, PUNCT
Div PROPN
of ADP
Health PROPN
, PUNCT
Idaho PROPN
State PROPN
Public PROPN
Health PROPN
Laboratory PROPN
, PUNCT
FR PROPN
Dixon PROPN
, PUNCT
MD PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Div PROPN
of ADP
Health PROPN
, PUNCT
Idaho PROPN
Dept PROPN
of ADP
Health PROPN
and CCONJ
Welfare PROPN
. PUNCT
DJ PROPN
Maxson PROPN
, PUNCT
Environmental PROPN
Epidemiology PROPN
Program PROPN
, PUNCT
L PROPN
Empey PROPN
, PUNCT
PA PROPN
, PUNCT
O INTJ
Ravenholt PROPN
, PUNCT
MD PROPN
, PUNCT
VH PROPN
Ueckart PROPN
, PUNCT
DVM PROPN
, PUNCT
Clark PROPN
County PROPN
Health PROPN
District PROPN
, PUNCT
Las PROPN
Vegas PROPN
; PUNCT
A DET
DiSalvo PROPN
, PUNCT
MD PROPN
, PUNCT
Nevada PROPN
State PROPN
Public PROPN
Health PROPN
Laboratory PROPN
; PUNCT
DS PROPN
Kwalick PROPN
, PUNCT
MD PROPN
, PUNCT
R PROPN
Salcido PROPN
, PUNCT
MPH PROPN
, PUNCT
D PROPN
Brus PROPN
, PUNCT
DVM PROPN
, PUNCT
State PROPN
Epidemiologist PROPN
, PUNCT
Div PROPN
of ADP
Health PROPN
, PUNCT
Nevada PROPN
State PROPN
Dept PROPN
of ADP
Human PROPN
Resources PROPN
. PUNCT
Center NOUN
for ADP
Food PROPN
Safety PROPN
and CCONJ
Applied PROPN
Nutrition PROPN
, PUNCT
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
. PUNCT
Food PROPN
Safety PROPN
Inspection PROPN
Svc PROPN
, PUNCT
Animal PROPN
and CCONJ
Plant PROPN
Health PROPN
Inspection PROPN
Svc PROPN
, PUNCT
US PROPN
Dept PROPN
of ADP
Agriculture PROPN
. PUNCT
Div PROPN
of ADP
Field PROPN
Epidemiology PROPN
, PUNCT
Epidemiology PROPN
Program PROPN
Office PROPN
; PUNCT
Enteric PROPN
Diseases PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Bacterial PROPN
and CCONJ
Mycotic PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
is AUX
a DET
pathogenic ADJ
gram NOUN
- PUNCT
negative ADJ
bacterium NOUN
first ADV
identified VERB
as SCONJ
a DET
cause NOUN
of ADP
illness NOUN
in ADP
1982 NUM
during ADP
an DET
outbreak NOUN
of ADP
severe ADJ
bloody ADJ
diarrhea NOUN
traced VERB
to ADP
contaminated VERB
hamburgers NOUN
( PUNCT
2 X
) PUNCT
. PUNCT
This DET
pathogen NOUN
has AUX
since SCONJ
emerged VERB
as SCONJ
an DET
important ADJ
cause NOUN
of ADP
both DET
bloody ADJ
diarrhea NOUN
and CCONJ
HUS PROPN
, PUNCT
the DET
most ADV
common ADJ
cause NOUN
of ADP
acute ADJ
renal ADJ
failure NOUN
in ADP
children NOUN
. PUNCT
Outbreak NOUN
investigations NOUN
have AUX
linked VERB
most ADJ
cases NOUN
with ADP
the DET
consumption NOUN
of ADP
undercooked ADJ
ground NOUN
beef NOUN
, PUNCT
although SCONJ
other ADJ
food NOUN
vehicles NOUN
, PUNCT
including VERB
roast NOUN
beef NOUN
, PUNCT
raw ADJ
milk NOUN
, PUNCT
and CCONJ
apple NOUN
cider NOUN
, PUNCT
also ADV
have AUX
been AUX
implicated VERB
( PUNCT
3 NUM
) PUNCT
. PUNCT
Preliminary ADJ
data NOUN
from ADP
a DET
CDC PROPN
2-year NUM
, PUNCT
nationwide ADJ
, PUNCT
multicenter NOUN
study NOUN
revealed VERB
that SCONJ
when ADV
stools NOUN
were AUX
routinely ADV
cultured VERB
for ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
that SCONJ
organism NOUN
was AUX
isolated VERB
more ADV
frequently ADV
than SCONJ
Shigella PROPN
in ADP
four NUM
of ADP
10 NUM
participating VERB
hospitals NOUN
and CCONJ
was AUX
isolated VERB
from ADP
7.8 NUM
% NOUN
of ADP
all DET
bloody ADJ
stools NOUN
, PUNCT
a DET
higher ADJ
rate NOUN
than SCONJ
for ADP
any DET
other ADJ
pathogen NOUN
. PUNCT
      SPACE
Infection PROPN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
often ADV
is AUX
not PART
recognized VERB
because SCONJ
most ADJ
clinical ADJ
laboratories NOUN
do AUX
not PART
routinely ADV
culture NOUN
stools NOUN
for ADP
this DET
organism NOUN
on ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
7Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993SMAC NUM
medium NOUN
, PUNCT
and CCONJ
many ADJ
clinicians NOUN
are AUX
unaware ADJ
of ADP
the DET
spectrum NOUN
of ADP
illnesses NOUN
associated VERB
with ADP
infection NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
The DET
usual ADJ
clinical ADJ
manifestations NOUN
are AUX
diarrhea NOUN
( PUNCT
often ADV
bloody ADJ
) PUNCT
and CCONJ
abdominal ADJ
cramps NOUN
; PUNCT
fever NOUN
is AUX
infrequent ADJ
. PUNCT
Younger ADJ
age NOUN
groups NOUN
and CCONJ
the DET
elderly ADJ
are AUX
at ADP
highest ADJ
risk NOUN
for ADP
clinical ADJ
manifestations NOUN
and CCONJ
complications NOUN
. PUNCT
Illness NOUN
usually ADV
resolves VERB
after ADP
6 NUM
- SYM
8 NUM
days NOUN
, PUNCT
but CCONJ
2%-7 NUM
% NOUN
of ADP
patients NOUN
develop VERB
HUS PRON
, PUNCT
which PRON
is AUX
characterized VERB
by ADP
hemolytic ADJ
anemia PROPN
, PUNCT
thrombocytopenia PROPN
, PUNCT
renal ADJ
failure NOUN
, PUNCT
and CCONJ
a DET
death NOUN
rate NOUN
of ADP
3%-5 NUM
% NOUN
. PUNCT
      SPACE
This DET
report NOUN
illustrates VERB
the DET
difficulties NOUN
in ADP
recognizing VERB
community NOUN
outbreaks NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
in ADP
the DET
absence NOUN
of ADP
routine ADJ
surveillance NOUN
. PUNCT
Despite SCONJ
the DET
magnitude NOUN
of ADP
this DET
outbreak NOUN
, PUNCT
the DET
problem NOUN
may AUX
not PART
have AUX
been AUX
recognized VERB
in ADP
three NUM
states NOUN
if SCONJ
the DET
epidemiologic ADJ
link NOUN
had AUX
not PART
been AUX
established VERB
in ADP
Washington PROPN
( PUNCT
1 NUM
) PUNCT
. PUNCT
Clinical ADJ
laboratories NOUN
should AUX
routinely ADV
culture NOUN
stool NOUN
specimens NOUN
from ADP
persons NOUN
with ADP
bloody ADJ
diarrhea NOUN
or CCONJ
HUS PROPN
for ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
using VERB
SMAC PROPN
agar NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
When ADV
infections NOUN
with ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
are AUX
identified VERB
, PUNCT
they PRON
should AUX
be AUX
reported VERB
to ADP
local ADJ
health NOUN
departments NOUN
for ADP
further ADJ
evaluation NOUN
and CCONJ
, PUNCT
if SCONJ
necessary ADJ
, PUNCT
public ADJ
health NOUN
action NOUN
to PART
prevent VERB
further ADJ
cases NOUN
. PUNCT
      SPACE
E. PROPN
coli PROPN
O157 PROPN
: PUNCT
H7 NOUN
lives VERB
in ADP
the DET
intestines NOUN
of ADP
healthy ADJ
cattle NOUN
, PUNCT
and CCONJ
can AUX
contaminate VERB
meat NOUN
during ADP
slaughter NOUN
. PUNCT
CDC PROPN
is AUX
collaborating VERB
with ADP
the DET
U.S. PROPN
Department PROPN
of ADP
Agriculture PROPN
's PART
Food PROPN
Safety PROPN
Inspection PROPN
Service PROPN
to PART
identify VERB
critical ADJ
control NOUN
points NOUN
in ADP
processing NOUN
as SCONJ
a DET
component NOUN
of ADP
a DET
program NOUN
to PART
reduce VERB
the DET
likelihood NOUN
of ADP
pathogens NOUN
such ADJ
as SCONJ
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
entering VERB
the DET
meat NOUN
supply NOUN
. PUNCT
Because SCONJ
slaughtering VERB
practices NOUN
can AUX
result VERB
in ADP
contamination NOUN
of ADP
raw ADJ
meat NOUN
with ADP
pathogens NOUN
, PUNCT
and CCONJ
because SCONJ
the DET
process NOUN
of ADP
grinding VERB
beef NOUN
may AUX
transfer VERB
pathogens NOUN
from ADP
the DET
surface NOUN
of ADP
the DET
meat NOUN
to ADP
the DET
interior ADJ
, PUNCT
ground NOUN
beef NOUN
is AUX
likely ADJ
to PART
be AUX
internally ADV
contaminated VERB
. PUNCT
The DET
optimal ADJ
food NOUN
protection NOUN
practice NOUN
is AUX
to PART
cook VERB
ground NOUN
beef NOUN
thoroughly ADV
until ADP
the DET
interior NOUN
is AUX
no ADV
longer ADV
pink ADJ
, PUNCT
and CCONJ
the DET
juices NOUN
are AUX
clear ADJ
. PUNCT
In ADP
this DET
outbreak NOUN
, PUNCT
undercooking VERB
of ADP
hamburger NOUN
patties NOUN
likely ADV
played VERB
an DET
important ADJ
role NOUN
. PUNCT
The DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
( PUNCT
FDA PROPN
) PUNCT
has AUX
issued VERB
interim ADJ
recommendations NOUN
to PART
increase VERB
the DET
internal ADJ
temperature NOUN
for ADP
cooked ADJ
hamburgers NOUN
to ADP
155 NUM
F PROPN
( PUNCT
86.1 NUM
C PROPN
) PUNCT
( PUNCT
FDA PROPN
, PUNCT
personal ADJ
communication NOUN
, PUNCT
1993 NUM
) PUNCT
. PUNCT
      SPACE
Regulatory ADJ
actions NOUN
stimulated VERB
by ADP
the DET
outbreak NOUN
described VERB
in ADP
this DET
report NOUN
and CCONJ
the DET
recovery NOUN
of ADP
thousands NOUN
of ADP
contaminated VERB
patties NOUN
before ADP
they PRON
could AUX
be AUX
consumed VERB
emphasize VERB
the DET
value NOUN
of ADP
rapid ADJ
public ADJ
health NOUN
investigations NOUN
of ADP
outbreaks NOUN
. PUNCT
The DET
public ADJ
health NOUN
impact NOUN
and CCONJ
increasing VERB
frequency NOUN
of ADP
isolation NOUN
of ADP
this DET
pathogen NOUN
underscore VERB
the DET
need NOUN
for ADP
improved ADJ
surveillance NOUN
for ADP
infections NOUN
caused VERB
by ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 VERB
and CCONJ
for ADP
HUS PRON
to PART
better ADV
define VERB
the DET
epidemiology NOUN
of ADP
E. PROPN
coli NOUN
O157 PROPN
: PUNCT
H7 NOUN
. PUNCT
References1 ADJ
. PUNCT
CDC PROPN
. PUNCT
Preliminary ADJ
report NOUN
: PUNCT
foodborne ADJ
outbreak NOUN
of ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
infections NOUN
from ADP
hamburgers NOUN
--western PUNCT
United PROPN
States PROPN
, PUNCT
1993 NUM
. PUNCT
MMWR PROPN
1993;42:85 NUM
- SYM
6 NUM
. PUNCT
2 NUM
. PUNCT
Riley PROPN
LW PROPN
, PUNCT
Remis PROPN
RS PROPN
, PUNCT
Helgerson PROPN
SD PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Hemorrhagic PROPN
colitis NOUN
associated VERB
with ADP
a DET
rare ADJ
Escherichia PROPN
coli NOUN
serotype NOUN
. PUNCT
N PROPN
Engl PROPN
J PROPN
Med PROPN
1983;308:681 NUM
- PUNCT
5 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
8Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
19933 NUM
. PUNCT
Griffin PROPN
PM PROPN
, PUNCT
Tauxe PROPN
RV PROPN
. PUNCT
The DET
epidemiology NOUN
of ADP
infections NOUN
caused VERB
by ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
, PUNCT
other ADJ
enterohemorrhagic ADJ
E. PROPN
coli NOUN
, PUNCT
and CCONJ
the DET
associated PROPN
hemolytic PROPN
uremic ADJ
syndrome NOUN
. PUNCT
Epidemiol PROPN
Rev PROPN
1991;13:60 PROPN
- SYM
98 NUM
. PUNCT
4 NUM
. PUNCT
Griffin PROPN
PM PROPN
, PUNCT
Ostroff PROPN
SM PROPN
, PUNCT
Tauxe PROPN
RV PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Illnesses NOUN
associated VERB
with ADP
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
infections NOUN
: PUNCT
a DET
broad ADJ
clinical ADJ
spectrum NOUN
. PUNCT
Ann PROPN
Intern PROPN
Med PROPN
1988;109:705 NUM
- PUNCT
12 NUM
. PUNCT
5 NUM
. PUNCT
March PROPN
SB PROPN
, PUNCT
Ratnam PROPN
S. PROPN
Latex PROPN
agglutination NOUN
testHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
9Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
            SPACE
Use PROPN
of ADP
Smokeless PROPN
Tobacco PROPN
Among ADP
Adults NOUN
-- PUNCT
United PROPN
States PROPN
, PUNCT
                                     SPACE
1991 NUM
            SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(14 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
16 NUM
, PUNCT
1993 NUM
     SPACE
Consumption PROPN
of ADP
moist NOUN
snuff NOUN
and CCONJ
other ADJ
smokeless ADJ
tobacco NOUN
products NOUN
in ADP
the DET
United PROPN
States PROPN
almost ADV
tripled VERB
from ADP
1972 NUM
through ADP
1991 NUM
( PUNCT
1 NUM
) PUNCT
. PUNCT
Long ADJ
- PUNCT
term NOUN
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
is AUX
associated VERB
with ADP
nicotine ADJ
addiction NOUN
and CCONJ
increased VERB
risk NOUN
of ADP
oral ADJ
cancer NOUN
( PUNCT
2 X
) PUNCT
-- PUNCT
the DET
incidence NOUN
of ADP
which PRON
could AUX
increase VERB
if SCONJ
young ADJ
persons NOUN
who PRON
currently ADV
use VERB
smokeless NOUN
tobacco NOUN
continue VERB
to PART
use VERB
these DET
products NOUN
frequently ADV
( PUNCT
1 NUM
) PUNCT
. PUNCT
To PART
monitor VERB
trends NOUN
in ADP
the DET
prevalence NOUN
of ADP
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
products NOUN
, PUNCT
CDC PROPN
's PART
1991 NUM
National PROPN
Health PROPN
Interview PROPN
Survey PROPN
- PUNCT
Health PROPN
Promotion PROPN
and CCONJ
Disease PROPN
Prevention PROPN
supplement NOUN
( PUNCT
NHIS PROPN
- PUNCT
HPDP PROPN
) PUNCT
collected VERB
information NOUN
on ADP
snuff PROPN
and CCONJ
chewing VERB
tobacco NOUN
use NOUN
and CCONJ
smoking NOUN
from ADP
a DET
representative ADJ
sample NOUN
of ADP
the DET
U.S. PROPN
civilian NOUN
, PUNCT
noninstitutionalized VERB
population NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
18 NUM
years NOUN
. PUNCT
This DET
report NOUN
summarizes VERB
findings NOUN
from ADP
this DET
survey NOUN
. PUNCT
      SPACE
The DET
1991 NUM
NHIS PROPN
- PUNCT
HPDP PROPN
supplement NOUN
asked VERB
" PUNCT
Have AUX
you PRON
used VERB
snuff PROPN
at ADV
least ADV
20 NUM
times NOUN
in ADP
your PRON
entire ADJ
life NOUN
? PUNCT
" PUNCT
and CCONJ
" PUNCT
Do AUX
you PRON
use VERB
snuff NOUN
now ADV
? PUNCT
" PUNCT
Similar ADJ
questions NOUN
were AUX
asked VERB
about ADP
chewing VERB
tobacco NOUN
use NOUN
and CCONJ
cigarette NOUN
smoking NOUN
. PUNCT
Current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
were AUX
defined VERB
as SCONJ
those DET
who PRON
reported VERB
snuff PROPN
or CCONJ
chewing VERB
tobacco NOUN
use NOUN
at ADP
least ADV
20 NUM
times NOUN
and CCONJ
who PRON
reported VERB
using VERB
snuff PROPN
or CCONJ
chewing VERB
tobacco NOUN
at ADP
the DET
time NOUN
of ADP
the DET
interview NOUN
; PUNCT
former ADJ
users NOUN
were AUX
defined VERB
as SCONJ
those DET
who PRON
reported VERB
having VERB
used VERB
snuff NOUN
or CCONJ
chewing VERB
tobacco NOUN
at ADV
least ADV
20 NUM
times NOUN
and CCONJ
not PART
using VERB
either CCONJ
at ADP
the DET
time NOUN
of ADP
the DET
interview NOUN
. PUNCT
Ever ADV
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
included VERB
current ADJ
and CCONJ
former ADJ
users NOUN
. PUNCT
Current ADJ
smokers NOUN
were AUX
defined VERB
as SCONJ
those DET
who PRON
reported VERB
smoking VERB
at ADV
least ADV
100 NUM
cigarettes NOUN
and CCONJ
who PRON
were AUX
currently ADV
smoking VERB
and CCONJ
former ADJ
smokers NOUN
as SCONJ
those DET
who PRON
reported VERB
having VERB
smoked VERB
at ADP
least ADJ
100 NUM
cigarettes NOUN
and CCONJ
who PRON
were AUX
not PART
smoking VERB
now ADV
. PUNCT
Ever ADV
smokers NOUN
included VERB
current ADJ
and CCONJ
former ADJ
smokers NOUN
. PUNCT
Data NOUN
on ADP
smokeless ADJ
tobacco NOUN
use NOUN
were AUX
available ADJ
for ADP
43,732 NUM
persons NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
18 NUM
years NOUN
and CCONJ
were AUX
adjusted VERB
for ADP
nonresponse PROPN
and CCONJ
weighted VERB
to PART
provide VERB
national ADJ
estimates NOUN
. PUNCT
Confidence NOUN
intervals NOUN
( PUNCT
CIs NOUN
) PUNCT
were AUX
calculated VERB
by ADP
using VERB
standard ADJ
errors NOUN
generated VERB
by ADP
the DET
Software PROPN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
( PUNCT
3 X
) PUNCT
. PUNCT
      SPACE
In ADP
1991 NUM
, PUNCT
an DET
estimated VERB
5.3 NUM
million NUM
( PUNCT
2.9 NUM
% NOUN
) PUNCT
U.S. PROPN
adults NOUN
were AUX
current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
, PUNCT
including VERB
4.8 NUM
million NUM
( PUNCT
5.6 NUM
% NOUN
) PUNCT
men NOUN
and CCONJ
533,000 NUM
( PUNCT
0.6 NUM
% NOUN
) PUNCT
women NOUN
. PUNCT
For ADP
all DET
categories NOUN
of ADP
comparison NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
was AUX
substantially ADV
higher ADJ
among ADP
men NOUN
. PUNCT
For ADP
men NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
use NOUN
was AUX
highest ADJ
among ADP
those DET
aged VERB
18 NUM
- SYM
24 NUM
years NOUN
( PUNCT
Table NOUN
1 NUM
) PUNCT
; PUNCT
for ADP
women NOUN
, PUNCT
the DET
prevalence NOUN
was AUX
highest ADJ
among ADP
those DET
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
75 NUM
years NOUN
. PUNCT
The DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
among ADP
men NOUN
was AUX
highest ADJ
among ADP
American PROPN
Indians PROPN
/ SYM
Alaskan PROPN
Natives PROPN
and CCONJ
whites NOUN
; PUNCT
the DET
prevalence NOUN
among ADP
women NOUN
was AUX
highest ADJ
among ADP
American PROPN
Indians PROPN
/ SYM
Alaskan PROPN
Natives NOUN
and CCONJ
blacks NOUN
. PUNCT
Among ADP
both DET
men NOUN
and CCONJ
women NOUN
, PUNCT
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
declined VERB
with ADP
increasing VERB
education NOUN
. PUNCT
Prevalence NOUN
was AUX
substantially ADV
higher ADJ
among ADP
residents NOUN
of ADP
the DET
southern ADJ
United PROPN
States PROPN
and CCONJ
in ADP
rural ADJ
areas NOUN
. PUNCT
Although SCONJ
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
was AUX
higher ADJ
among ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
10Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993men NUM
and CCONJ
women NOUN
below ADP
the DET
poverty NOUN
level NOUN
, PUNCT
* PUNCT
this DET
difference NOUN
was AUX
significant ADJ
only ADV
for ADP
women NOUN
( PUNCT
p NOUN
less ADJ
than SCONJ
0.05 NUM
) PUNCT
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
      SPACE
Among ADP
men NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
current ADJ
use NOUN
of ADP
snuff PROPN
was AUX
highest ADJ
among ADP
those DET
aged VERB
18 NUM
- SYM
44 NUM
years NOUN
but CCONJ
varied ADJ
considerably ADV
by ADP
age NOUN
; PUNCT
the DET
prevalence NOUN
of ADP
use NOUN
of ADP
chewing VERB
tobacco NOUN
was AUX
more ADV
evenly ADV
distributed VERB
by ADP
age NOUN
group NOUN
( PUNCT
Table NOUN
2 NUM
) PUNCT
. PUNCT
Although SCONJ
women NOUN
rarely ADV
used VERB
smokeless NOUN
tobacco NOUN
, PUNCT
the DET
prevalence NOUN
of ADP
snuff PROPN
use NOUN
was AUX
highest ADJ
among ADP
those DET
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
75 NUM
years NOUN
. PUNCT
      SPACE
An DET
estimated VERB
7.9 NUM
million NUM
( PUNCT
4.4 NUM
% NOUN
95 NUM
% NOUN
CI=4.1 PROPN
- SYM
4.6 NUM
) PUNCT
adults NOUN
reported VERB
being AUX
former ADJ
smokeless ADJ
tobacco NOUN
users NOUN
. PUNCT
Among ADP
ever ADV
users NOUN
, PUNCT
the DET
proportion NOUN
who PRON
were AUX
former ADJ
smokeless ADJ
tobacco NOUN
users NOUN
was AUX
59.9 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=57.7 PROPN
- SYM
62.1 NUM
) PUNCT
. PUNCT
Among ADP
persons NOUN
aged VERB
18 NUM
- SYM
24 NUM
years NOUN
, PUNCT
the DET
proportion NOUN
of ADP
former ADJ
users NOUN
was AUX
lower ADJ
among ADP
snuff ADJ
users NOUN
( PUNCT
56.2 NUM
% NOUN
95 NUM
% NOUN
CI=49.4 PROPN
- PUNCT
63.0 NUM
) PUNCT
than SCONJ
among ADP
chewing VERB
tobacco NOUN
users NOUN
( PUNCT
70.4 NUM
% NOUN
95 NUM
% NOUN
CI=64.2 NOUN
- PUNCT
76.6 NUM
) PUNCT
. PUNCT
Among ADP
persons NOUN
aged VERB
45 NUM
- PUNCT
64 NUM
years NOUN
, PUNCT
the DET
proportion NOUN
of ADP
former ADJ
users NOUN
was AUX
similar ADJ
for ADP
snuff PROPN
( PUNCT
68.9 NUM
% NOUN
95 NUM
% NOUN
CI=63.1 PROPN
- PUNCT
74.7 NUM
) PUNCT
and CCONJ
chewing VERB
tobacco NOUN
( PUNCT
73.5 NUM
% NOUN
95 NUM
% NOUN
CI=68.9 PROPN
- PUNCT
78.1 NUM
) PUNCT
. PUNCT
      SPACE
Among ADP
current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
, PUNCT
22.9 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=19.9 PROPN
- PUNCT
26.0 PROPN
) PUNCT
currently ADV
smoked VERB
, PUNCT
33.3 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=30.0 PROPN
- PUNCT
36.5 NUM
) PUNCT
formerly ADV
smoked VERB
, PUNCT
and CCONJ
43.8 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=39.9 PROPN
- PUNCT
47.7 NUM
) PUNCT
never ADV
smoked VERB
. PUNCT
In ADP
comparison NOUN
, PUNCT
among ADP
current ADJ
smokers NOUN
, PUNCT
2.6 NUM
% NOUN
( PUNCT
95 NUM
% NOUN
CI=2.3 PROPN
- SYM
3.0 NUM
) PUNCT
were AUX
current ADJ
users NOUN
of ADP
smokeless ADJ
tobacco NOUN
. PUNCT
      SPACE
Daily PROPN
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
was AUX
more ADV
common ADJ
among ADP
snuff ADJ
users NOUN
( PUNCT
67.3 NUM
% NOUN
95 NUM
% NOUN
CI=63.2 PROPN
- PUNCT
71.4 NUM
) PUNCT
than SCONJ
among ADP
chewing VERB
tobacco NOUN
users NOUN
( PUNCT
45.1 NUM
% NOUN
95 NUM
% NOUN
CI=40.6 PROPN
- PUNCT
49.6 NUM
) PUNCT
. PUNCT
Reported VERB
by ADP
: PUNCT
Office NOUN
on ADP
Smoking PROPN
and CCONJ
Health PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Chronic PROPN
Disease PROPN
Prevention PROPN
and CCONJ
Health PROPN
Promotion PROPN
; PUNCT
Div PROPN
of ADP
Health PROPN
Interview PROPN
Statistics PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Health PROPN
Statistics PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
findings NOUN
in ADP
this DET
report NOUN
indicate VERB
that SCONJ
the DET
use NOUN
of ADP
smokeless ADJ
tobacco NOUN
was AUX
highest ADJ
among ADP
young ADJ
males NOUN
. PUNCT
Adolescent ADJ
and CCONJ
young ADJ
adult NOUN
males NOUN
, PUNCT
in ADP
particular ADJ
, PUNCT
are AUX
the DET
target NOUN
of ADP
marketing NOUN
strategies NOUN
by ADP
tobacco NOUN
companies NOUN
that PRON
link VERB
smokeless NOUN
tobacco NOUN
with ADP
athletic ADJ
performance NOUN
and CCONJ
virility NOUN
. PUNCT
Use NOUN
of ADP
oral ADJ
snuff NOUN
has AUX
risen VERB
markedly ADV
among ADP
professional ADJ
baseball NOUN
players NOUN
, PUNCT
encouraging VERB
this DET
behavior NOUN
among ADP
adolescent ADJ
and CCONJ
young ADJ
adult NOUN
males NOUN
and CCONJ
increasing VERB
their PRON
risk NOUN
for ADP
nicotine ADJ
addiction NOUN
, PUNCT
oral ADJ
cancer NOUN
, PUNCT
and CCONJ
other ADJ
mouth NOUN
disorders NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
      SPACE
Differences PROPN
in ADP
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
among ADP
racial ADJ
/ SYM
ethnic ADJ
groups NOUN
may AUX
be AUX
influenced VERB
by ADP
differences NOUN
in ADP
educational ADJ
levels NOUN
and CCONJ
socioeconomic ADJ
status NOUN
as ADV
well ADV
as SCONJ
social ADJ
and CCONJ
cultural ADJ
phenomena NOUN
that PRON
require VERB
further ADJ
explanation NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
targeted VERB
marketing NOUN
practices NOUN
may AUX
play VERB
a DET
role NOUN
in ADP
maintaining VERB
or CCONJ
increasing VERB
prevalence NOUN
among ADP
some DET
groups NOUN
, PUNCT
and CCONJ
affecting VERB
the DET
differential ADJ
initiation NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
by ADP
young ADJ
persons NOUN
( PUNCT
5,6 NUM
) PUNCT
. PUNCT
      SPACE
In ADP
this DET
report NOUN
, PUNCT
one NUM
concern NOUN
is AUX
that SCONJ
nearly ADV
one NUM
fourth NOUN
of ADP
current ADJ
smokeless ADJ
tobacco NOUN
users NOUN
also ADV
smoke VERB
cigarettes NOUN
. PUNCT
In ADP
the DET
1991 NUM
NHIS PROPN
- PUNCT
HPDP PROPN
, PUNCT
the DET
prevalence NOUN
of ADP
cigarette NOUN
smoking NOUN
was AUX
higher ADJ
among ADP
former ADJ
smokeless ADJ
tobacco NOUN
users NOUN
than SCONJ
among ADP
current ADJ
and CCONJ
never ADV
smokeless VERB
tobacco NOUN
users NOUN
. PUNCT
In ADP
a DET
previous ADJ
study NOUN
among ADP
college NOUN
students NOUN
, PUNCT
18 NUM
% NOUN
of ADP
current ADJ
smokeless ADJ
tobacco NOUN
users NOUN
smoked VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
11Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993occasionally NUM
( PUNCT
7 NUM
) PUNCT
. PUNCT
In ADP
addition NOUN
, PUNCT
approximately ADV
7 NUM
% NOUN
of ADP
adults NOUN
who PRON
formerly ADV
smoked VERB
reported VERB
substituting VERB
other ADJ
tobacco NOUN
products NOUN
for ADP
cigarettes NOUN
in ADP
an DET
effort NOUN
to PART
stop VERB
smoking VERB
( PUNCT
8) NUM
. PUNCT
Health NOUN
- PUNCT
care NOUN
providers NOUN
should AUX
recognize VERB
the DET
potential ADJ
health NOUN
implications NOUN
of ADP
concurrent ADJ
smokeless NOUN
tobacco NOUN
and CCONJ
cigarette NOUN
use NOUN
. PUNCT
      SPACE
The DET
national ADJ
health NOUN
objectives NOUN
for ADP
the DET
year NOUN
2000 NUM
have AUX
established VERB
special ADJ
population NOUN
target NOUN
groups NOUN
for ADP
the DET
reduction NOUN
of ADP
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
, PUNCT
including VERB
males NOUN
aged VERB
12 NUM
- SYM
24 NUM
years NOUN
( PUNCT
to ADP
no DET
more ADJ
than SCONJ
4 NUM
% NOUN
by ADP
the DET
year NOUN
2000 NUM
objective ADJ
3.9 NUM
) PUNCT
and CCONJ
American ADJ
Indian PROPN
/ SYM
Alaskan ADJ
Native ADJ
youth NOUN
( PUNCT
to ADP
no DET
more ADJ
than SCONJ
10 NUM
% NOUN
by ADP
the DET
year NOUN
2000 NUM
objective ADJ
3.9a PROPN
) PUNCT
( PUNCT
9 NUM
) PUNCT
. PUNCT
Strategies NOUN
to PART
lower VERB
the DET
prevalence NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
include VERB
continued VERB
monitoring NOUN
of ADP
smokeless ADJ
tobacco NOUN
use NOUN
, PUNCT
integrating VERB
smoking NOUN
and CCONJ
smokeless ADJ
tobacco NOUN
- PUNCT
control NOUN
efforts NOUN
, PUNCT
enforcing VERB
laws NOUN
that PRON
restrict VERB
minors NOUN
' PART
access NOUN
to ADP
tobacco NOUN
, PUNCT
making VERB
excise NOUN
taxes NOUN
commensurate ADJ
with ADP
those DET
on ADP
cigarettes NOUN
, PUNCT
encouraging VERB
health NOUN
- PUNCT
care NOUN
providers NOUN
to PART
routinely ADV
provide VERB
cessation NOUN
advice NOUN
and CCONJ
follow NOUN
- PUNCT
up ADP
, PUNCT
providing VERB
school NOUN
- PUNCT
based VERB
prevention NOUN
and CCONJ
cessation NOUN
interventions NOUN
, PUNCT
and CCONJ
adopting VERB
policies NOUN
that PRON
prohibit VERB
tobacco NOUN
use NOUN
on ADP
school NOUN
property NOUN
and CCONJ
at ADP
school NOUN
- PUNCT
sponsored VERB
events NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
References1 ADJ
. PUNCT
Office NOUN
of ADP
Evaluations PROPN
and CCONJ
Inspections PROPN
. PUNCT
Spit ADJ
tobacco NOUN
and CCONJ
youth NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Office PROPN
of ADP
the DET
Inspector PROPN
General PROPN
, PUNCT
1992 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
OEI-06)92 NUM
- PUNCT
00500 NUM
. PUNCT
2 NUM
. PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
. PUNCT
The DET
health NOUN
consequences NOUN
of ADP
using VERB
smokeless ADJ
tobacco NOUN
: PUNCT
a DET
report NOUN
of ADP
the DET
Advisory PROPN
Committee PROPN
to ADP
the DET
Surgeon PROPN
General PROPN
. PUNCT
Bethesda PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1986 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
NIH)86 PROPN
- PUNCT
2874 NUM
. PUNCT
3 X
. PUNCT
Shah PROPN
BV PROPN
. PUNCT
Software NOUN
for ADP
Survey PROPN
Data PROPN
Analysis PROPN
( PUNCT
SUDAAN PROPN
) PUNCT
version NOUN
5.30 NUM
Software PROPN
documentation NOUN
. PUNCT
Research PROPN
Triangle PROPN
Park PROPN
, PUNCT
North PROPN
Carolina PROPN
: PUNCT
Research PROPN
Triangle PROPN
Institute PROPN
, PUNCT
1989 NUM
. PUNCT
4 X
. PUNCT
Connolly PROPN
GN PROPN
, PUNCT
Orleans PROPN
CT PROPN
, PUNCT
Blum PROPN
A. PROPN
Snuffing VERB
tobacco NOUN
out SCONJ
of ADP
sport NOUN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1992;82:351 PROPN
- SYM
3 NUM
. PUNCT
5 NUM
. PUNCT
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
Smokeless ADJ
tobacco NOUN
or CCONJ
health NOUN
: PUNCT
an DET
international ADJ
perspective NOUN
. PUNCT
Bethesda PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
1992 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
NIH)92 NOUN
- PUNCT
3461 NUM
. PUNCT
6 NUM
. PUNCT
Foreyt PROPN
JP PROPN
, PUNCT
Jackson PROPN
AS PROPN
, PUNCT
Squires PROPN
WG PROPN
, PUNCT
Hartung PROPN
GH PROPN
, PUNCT
Murray PROPN
TD PROPN
, PUNCT
Gotto PROPN
AM NOUN
. PUNCT
Psychological ADJ
profile NOUN
of ADP
college NOUN
students NOUN
who PRON
use VERB
smokeless NOUN
tobacco NOUN
. PUNCT
Addict PROPN
Behav PROPN
1993;18:107 NUM
- PUNCT
16 NUM
. PUNCT
7 NUM
. PUNCT
Glover PROPN
ED PROPN
, PUNCT
Laflin PROPN
M PROPN
, PUNCT
Edwards PROPN
SW PROPN
. PUNCT
Age NOUN
of ADP
initiation NOUN
and CCONJ
switching VERB
patterns NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
12Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993between NUM
smokeless NOUN
tobacco NOUN
and CCONJ
cigarettes NOUN
among ADP
college NOUN
students NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
Am AUX
J PROPN
Public PROPN
Health PROPN
1989;79:207 PROPN
- SYM
8 NUM
. PUNCT
8 NUM
. PUNCT
CDC PROPN
. PUNCT
Tobacco NOUN
use NOUN
in ADP
1986 NUM
: PUNCT
methods NOUN
and CCONJ
tabulations NOUN
from ADP
Adult PROPN
Use PROPN
of ADP
Tobacco PROPN
Survey PROPN
. PUNCT
Rockville PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
CDC PROPN
, PUNCT
1990 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
OM)90 PROPN
- PUNCT
2004 NUM
. PUNCT
9 NUM
. PUNCT
Public PROPN
Health PROPN
Service PROPN
. PUNCT
Healthy ADJ
people NOUN
2000 NUM
: PUNCT
national PROPN
health PROPN
promotion PROPN
and CCONJ
disease NOUN
prevention NOUN
objectives NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1991 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
PHS)91 PROPN
- PUNCT
50213.--------- NUM
end NOUN
of ADP
part NOUN
1 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59126From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN610 NUM
Medical PROPN
News PROPN
Part PROPN
3/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------University PROPN
of ADP
ArizonaTucson PROPN
, PUNCT
Arizona PROPN
                               SPACE
Suggested VERB
ReadingTan PROPN
SL PROPN
, PUNCT
Royston PROPN
P NOUN
, PUNCT
Campbell PROPN
S PROPN
, PUNCT
Jacobs PROPN
HS PROPN
, PUNCT
Betts PROPN
J PROPN
, PUNCT
Mason PROPN
B PROPN
, PUNCT
Edwards PROPN
RG PROPN
( PUNCT
1992 NUM
) PUNCT
. PUNCT
  SPACE
Cumulative ADJ
conception NOUN
and CCONJ
Livebirth PROPN
rates NOUN
after ADP
in ADP
- PUNCT
vitro X
fertilization NOUN
. PUNCT
Lancet PROPN
339:1390 NUM
- PUNCT
1394 NUM
. PUNCT
For ADP
further ADJ
information NOUN
, PUNCT
call NOUN
: PUNCT
                        SPACE
Physicians PROPN
' PART
Resource PROPN
Line PROPN
                             SPACE
1 NUM
- SYM
800 NUM
- PUNCT
328 NUM
- PUNCT
5868 NUM
                               SPACE
in ADP
Tucson PROPN
: PUNCT
                                SPACE
694 NUM
- PUNCT
5868HICNet VERB
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
28Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                   SPACE
Articles NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                    SPACE
LOW ADJ
LEVELS NOUN
OF ADP
AIRBORNE PROPN
PARTICLES NOUN
LINKED NOUN
                           SPACE
TO ADP
SERIOUS PROPN
ASTHMA PROPN
ATTACKS PROPN
                           SPACE
American PROPN
Lung PROPN
Association PROPN
      SPACE
A DET
new ADJ
study NOUN
published VERB
by ADP
the DET
American PROPN
Lung PROPN
Association PROPN
has AUX
shown VERB
that SCONJ
surprisingly ADV
low ADJ
concentrations NOUN
of ADP
airborne ADJ
particles NOUN
can AUX
send VERB
people NOUN
with ADP
asthma NOUN
rushing VERB
to ADP
emergency NOUN
rooms NOUN
for ADP
treatment NOUN
. PUNCT
       SPACE
The DET
Seattle PROPN
- PUNCT
based VERB
study NOUN
showed VERB
that SCONJ
roughly ADV
one NUM
in ADP
eight NUM
emergency NOUN
visits NOUN
for ADP
asthma NOUN
in ADP
that DET
city NOUN
was AUX
linked VERB
to ADP
exposure NOUN
to PART
particulate VERB
air NOUN
pollution NOUN
. PUNCT
  SPACE
The DET
actual ADJ
exposure NOUN
levels NOUN
recorded VERB
in ADP
the DET
study NOUN
were AUX
far ADV
below ADP
those DET
deemed VERB
unsafe ADJ
under ADP
federal ADJ
air NOUN
quality NOUN
laws NOUN
. PUNCT
       SPACE
" PUNCT
People NOUN
with ADP
asthma NOUN
have AUX
inflamed VERB
airways PROPN
, PUNCT
and CCONJ
airborne ADJ
particles NOUN
tend VERB
to PART
exacerbate VERB
that DET
inflammation NOUN
, PUNCT
" PUNCT
said VERB
Joel PROPN
Schwartz PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
of ADP
the DET
Environmental PROPN
Protection PROPN
Agency PROPN
, PUNCT
who PRON
was AUX
the DET
lead ADJ
author NOUN
of ADP
the DET
study NOUN
. PUNCT
  SPACE
" PUNCT
When ADV
people NOUN
are AUX
on ADP
the DET
threshold NOUN
of ADP
having VERB
, PUNCT
a DET
serious ADJ
asthma NOUN
attack NOUN
, PUNCT
particles NOUN
can AUX
push VERB
them PRON
over ADP
the DET
edge NOUN
. PUNCT
" PUNCT
      SPACE
The DET
Seattle PROPN
Study PROPN
correlated VERB
13 NUM
months NOUN
of ADP
asthma NOUN
emergency NOUN
room NOUN
visits VERB
with ADP
daily ADJ
levels NOUN
of ADP
PM NOUN
, PUNCT
, PUNCT
, PUNCT
. PUNCT
or CCONJ
particulate VERB
matter NOUN
with ADP
an DET
aerodynamic ADJ
diameter NOUN
of ADP
10 NUM
microns NOUN
or CCONJ
less ADJ
. PUNCT
  SPACE
These DET
finer NOUN
particles NOUN
are AUX
considered VERB
hazardous ADJ
because SCONJ
they PRON
are AUX
small ADJ
enough ADJ
penetrate NOUN
into ADP
the DET
lung NOUN
. PUNCT
  SPACE
Cities NOUN
are AUX
considered VERB
out SCONJ
of ADP
compliance NOUN
with ADP
clean ADJ
air NOUN
laws NOUN
if SCONJ
the DET
24-hour NUM
average ADJ
concentration NOUN
of ADP
PM10 PROPN
exceeds VERB
150 NUM
micrograms NOUN
per ADP
cubic ADJ
millimeter NOUN
of ADP
air NOUN
. PUNCT
       SPACE
In ADP
Seattle PROPN
however ADV
, PUNCT
a DET
link NOUN
between ADP
fine ADJ
particles NOUN
and CCONJ
asthma NOUN
was AUX
found VERB
at ADP
levels NOUN
as ADV
low ADJ
as SCONJ
30 NUM
micrograms NOUN
. PUNCT
  SPACE
The DET
authors NOUN
concluded VERB
that SCONJ
for ADP
every DET
30 NUM
microgram NOUN
increase NOUN
in ADP
the DET
four NUM
- PUNCT
day NOUN
average NOUN
of ADP
PM10 PROPN
, PUNCT
the DET
odds NOUN
of ADP
someone PRON
with ADP
asthma NOUN
needing VERB
emergency NOUN
treatment NOUN
increased VERB
by ADP
12 NUM
percent NOUN
. PUNCT
       SPACE
The DET
findings NOUN
were AUX
published VERB
in ADP
the DET
April PROPN
American PROPN
Review PROPN
of ADP
Respiratory PROPN
Disease PROPN
, PUNCT
an DET
official ADJ
journal NOUN
of ADP
the DET
American PROPN
Thoracic PROPN
Society PROPN
, PUNCT
the DET
Lung PROPN
Association PROPN
's PART
medical ADJ
section NOUN
. PUNCT
       SPACE
The DET
study NOUN
is AUX
the DET
latest ADJ
in ADP
a DET
series NOUN
of ADP
recent ADJ
reports NOUN
to PART
suggest VERB
that SCONJ
particulate NOUN
matter NOUN
is AUX
a DET
greatly ADV
under ADP
appreciated VERB
health NOUN
threat NOUN
. PUNCT
  SPACE
A DET
1992 NUM
study NOUN
by ADP
Dr. PROPN
Schwartz PROPN
and CCONJ
Douglas PROPN
Dockery PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
of ADP
Harvard PROPN
found VERB
that SCONJ
particles NOUN
may AUX
be AUX
causing VERB
roughly ADV
60,000 NUM
premature ADJ
deaths NOUN
each DET
year NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
Other ADJ
studies NOUN
have AUX
linked VERB
particulate NOUN
matter NOUN
to ADP
increased VERB
respiratory ADJ
symptoms NOUN
and CCONJ
bronchitis NOUN
in ADP
children NOUN
. PUNCT
       SPACE
" PUNCT
Government NOUN
officials NOUN
and CCONJ
the DET
media NOUN
are AUX
still ADV
very ADV
focused ADJ
on ADP
ozone NOUN
, PUNCT
" PUNCT
says VERB
Dr. PROPN
Schwartz PROPN
. PUNCT
  SPACE
" PUNCT
But CCONJ
more ADJ
and CCONJ
more ADJ
research NOUN
is AUX
showing VERB
that SCONJ
particles NOUN
are AUX
bad ADJ
actors NOUN
as ADV
well ADV
. PUNCT
" PUNCT
      SPACE
One NUM
problem NOUN
in ADP
setting NOUN
, PUNCT
standards NOUN
for ADP
particulate NOUN
air NOUN
pollution NOUN
is AUX
that SCONJ
PMIO PROPN
is AUX
difficult ADJ
to PART
study VERB
. PUNCT
  SPACE
Unlike ADP
other ADJ
regulated ADJ
pollutants NOUN
such ADJ
as SCONJ
ozone NOUN
and CCONJ
carbon NOUN
monoxide NOUN
, PUNCT
particulate NOUN
matter NOUN
is AUX
a DET
complex NOUN
and CCONJ
varying VERB
mixture NOUN
of ADP
substances NOUN
, PUNCT
including VERB
carbon NOUN
, PUNCT
hydrocarbons NOUN
, PUNCT
dust NOUN
, PUNCT
and CCONJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
29Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993acid NUM
aerosols NOUN
. PUNCT
       SPACE
" PUNCT
Researchers NOUN
ca AUX
n't PART
Put VERB
people NOUN
in ADP
exposure NOUN
chambers NOUN
to PART
study VERB
the DET
effects NOUN
of ADP
particulate NOUN
air NOUN
pollution NOUN
, PUNCT
" PUNCT
says VERB
Dr. PROPN
Schwartz PROPN
. PUNCT
  SPACE
" PUNCT
We PRON
have AUX
no DET
way NOUN
of ADP
duplicating VERB
the DET
typical ADJ
urban ADJ
mix NOUN
of ADP
particles NOUN
. PUNCT
  SPACE
" PUNCT
Consequently ADV
, PUNCT
most ADJ
of ADP
what PRON
is AUX
known VERB
about ADP
particulates NOUN
has AUX
been AUX
learned VERB
through ADP
population NOUN
- PUNCT
based VERB
research NOUN
like SCONJ
the DET
Seattle PROPN
study NOUN
. PUNCT
       SPACE
Given VERB
that SCONJ
the DET
EPA PROPN
's PART
current ADJ
priority NOUN
is AUX
to PART
review VERB
the DET
ozone NOUN
and CCONJ
sulfur NOUN
dioxide NOUN
standards NOUN
, PUNCT
the DET
agency NOUN
is AUX
unlikely ADJ
to PART
reexamine VERB
the DET
PM10 PROPN
standard NOUN
any DET
time NOUN
soon ADV
. PUNCT
  SPACE
Until ADP
changes NOUN
are AUX
made VERB
, PUNCT
there PRON
appears VERB
to PART
be AUX
little ADJ
people NOUN
with ADP
asthma NOUN
can AUX
do AUX
to PART
protect VERB
themselves PRON
from ADP
airborne ADJ
particles NOUN
. PUNCT
     SPACE
" PUNCT
In ADP
some DET
areas NOUN
, PUNCT
you PRON
can AUX
get AUX
reports NOUN
on ADP
air NOUN
quality NOUN
, PUNCT
but CCONJ
the DET
reports NOUN
only ADV
cover VERB
the DET
pollutant NOUN
that PRON
is AUX
closest ADJ
to ADP
violating VERB
its PRON
standard NOUN
, PUNCT
and CCONJ
that DET
's AUX
rarely ADV
particulate ADJ
matter NOUN
, PUNCT
" PUNCT
says VERB
Dr. PROPN
  SPACE
Schwartz PROPN
. PUNCT
  SPACE
" PUNCT
However ADV
, PUNCT
PM10 PROPN
does AUX
n't PART
have AUX
to PART
be AUX
near SCONJ
its PRON
violation NOUN
range NOUN
to PART
be AUX
unhealthy ADJ
. PUNCT
"HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
30Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
               SPACE
NIH PROPN
Consensus PROPN
Development PROPN
Conference PROPN
on ADP
MelanomaThe PROPN
National PROPN
Institutes PROPN
of ADP
Health PROPN
Consensus PROPN
Development PROPN
Conference PROPN
on ADP
Diagnosis PROPN
and CCONJ
Treatment PROPN
of ADP
Early PROPN
Melanoma PROPN
brought VERB
together ADP
experts NOUN
in ADP
dermatology NOUN
, PUNCT
pathology NOUN
, PUNCT
epidemiology NOUN
, PUNCT
public ADJ
education NOUN
, PUNCT
surveillance NOUN
techniques NOUN
, PUNCT
and CCONJ
potential ADJ
new ADJ
technologies NOUN
as ADV
well ADV
as SCONJ
other ADJ
health NOUN
care NOUN
professionals NOUN
and CCONJ
the DET
public NOUN
to PART
address VERB
( PUNCT
1 NUM
) PUNCT
the DET
clinical ADJ
and CCONJ
histological ADJ
characteristics NOUN
of ADP
early ADJ
melanoma NOUN
; PUNCT
( PUNCT
2 X
) PUNCT
the DET
appropriate ADJ
diagnosis NOUN
, PUNCT
management NOUN
, PUNCT
and CCONJ
followup NOUN
of ADP
patients NOUN
with ADP
early ADJ
melanoma NOUN
; PUNCT
( PUNCT
3 X
) PUNCT
the DET
role NOUN
of ADP
dysplastic PROPN
nevi PROPN
and CCONJ
their PRON
significance NOUN
; PUNCT
and CCONJ
( PUNCT
4 X
) PUNCT
the DET
role NOUN
of ADP
education NOUN
and CCONJ
screening VERB
in ADP
preventing VERB
melanoma ADJ
morbidity NOUN
and CCONJ
mortality NOUN
. PUNCT
  SPACE
Following VERB
2 NUM
days NOUN
of ADP
presentations NOUN
by ADP
experts NOUN
and CCONJ
discussion NOUN
by ADP
the DET
audience NOUN
, PUNCT
a DET
consensus NOUN
panel NOUN
weighed VERB
the DET
scientific ADJ
evidence NOUN
and CCONJ
prepared VERB
their PRON
consensus NOUN
statement NOUN
. PUNCT
  SPACE
Among ADP
their PRON
findings NOUN
, PUNCT
the DET
panel NOUN
recommended VERB
that SCONJ
( PUNCT
1 X
) PUNCT
melanoma PROPN
in ADP
situ NOUN
is AUX
a DET
distinct ADJ
entity NOUN
effectively ADV
treated VERB
surgically ADV
with ADP
0.5 NUM
centimeter NOUN
margins NOUN
; PUNCT
( PUNCT
2 X
) PUNCT
thin ADJ
invasive ADJ
melanoma NOUN
, PUNCT
less ADJ
than SCONJ
1 NUM
millimeter NOUN
thick ADJ
, PUNCT
has AUX
the DET
potential NOUN
for ADP
long ADJ
- PUNCT
term NOUN
survival NOUN
in ADP
more ADJ
than SCONJ
90 NUM
percent NOUN
of ADP
patients NOUN
after ADP
surgical ADJ
excision NOUN
with ADP
a DET
1 NUM
centimeter NOUN
margin NOUN
; PUNCT
( PUNCT
3 X
) PUNCT
elective ADJ
lymph NOUN
node VERB
dissections NOUN
and CCONJ
extensive ADJ
staging VERB
evaluations NOUN
are AUX
not PART
recommended VERB
in ADP
early ADJ
melanoma NOUN
; PUNCT
( PUNCT
4 X
) PUNCT
patients NOUN
with ADP
early ADJ
melanoma NOUN
are AUX
at ADP
low ADJ
risk NOUN
for ADP
relapse NOUN
but CCONJ
may AUX
be AUX
at ADP
high ADJ
risk NOUN
for ADP
development NOUN
of ADP
subsequent ADJ
melanomas NOUN
and CCONJ
should AUX
be AUX
followed VERB
closely ADV
; PUNCT
( PUNCT
5 X
) PUNCT
some DET
family NOUN
members NOUN
of ADP
patients NOUN
with ADP
melanoma PROPN
are AUX
at ADP
increased VERB
risk NOUN
for ADP
melanoma NOUN
and CCONJ
should AUX
be AUX
enrolled VERB
in ADP
surveillance NOUN
programs NOUN
; PUNCT
and CCONJ
( PUNCT
6 NUM
) PUNCT
education NOUN
and CCONJ
screening NOUN
programs NOUN
have AUX
the DET
potential NOUN
to PART
decrease VERB
morbidity NOUN
and CCONJ
mortality NOUN
from ADP
melanoma PROPN
. PUNCT
  SPACE
A DET
copy NOUN
of ADP
the DET
full ADJ
text NOUN
of ADP
the DET
consensus NOUN
panel NOUN
's PART
statement NOUN
is AUX
available ADJ
by ADP
calling VERB
the DET
NIH PROPN
Office PROPN
of ADP
Medical PROPN
Applications PROPN
of ADP
Research PROPN
at ADP
( PUNCT
301 NUM
) PUNCT
496 NUM
- SYM
1143 NUM
or CCONJ
by ADP
writing VERB
to PART
: PUNCT
  SPACE
Office PROPN
of ADP
Medical PROPN
Applications PROPN
of ADP
Research PROPN
, PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
Federal PROPN
Building PROPN
, PUNCT
Room PROPN
618 NUM
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
20892.HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
31Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
                         SPACE
NCI PROPN
- PUNCT
Designated VERB
Cancer NOUN
CentersThe PROPN
Cancer PROPN
Centers PROPN
Program PROPN
is AUX
comprised VERB
of ADP
55 NUM
NCI PROPN
- PUNCT
designated VERB
Cancer PROPN
Centers PROPN
actively ADV
engaged VERB
in ADP
multidisciplinary ADJ
research NOUN
efforts NOUN
to PART
reduce VERB
cancer NOUN
incidence NOUN
, PUNCT
morbidity NOUN
, PUNCT
and CCONJ
mortality NOUN
. PUNCT
  SPACE
Within ADP
the DET
program NOUN
, PUNCT
there PRON
are AUX
four NUM
types NOUN
of ADP
cancer NOUN
centers NOUN
: PUNCT
  SPACE
basic ADJ
science NOUN
cancer NOUN
centers NOUN
( PUNCT
14 NUM
) PUNCT
, PUNCT
which PRON
engage VERB
primarily ADV
in ADP
basic ADJ
cancer NOUN
research NOUN
; PUNCT
clinical ADJ
cancer NOUN
centers NOUN
( PUNCT
12 NUM
) PUNCT
, PUNCT
which PRON
focus VERB
on ADP
clinical ADJ
research NOUN
; PUNCT
" PUNCT
comprehensive ADJ
" PUNCT
cancer NOUN
centers NOUN
( PUNCT
28 NUM
) PUNCT
, PUNCT
which PRON
emphasize VERB
a DET
multidisciplinary ADJ
approach NOUN
to ADP
cancer NOUN
research NOUN
, PUNCT
patient ADJ
care NOUN
, PUNCT
and CCONJ
community NOUN
outreach NOUN
; PUNCT
and CCONJ
consortium NOUN
cancer NOUN
centers NOUN
( PUNCT
1 NUM
) PUNCT
, PUNCT
which PRON
specialize VERB
in ADP
cancer NOUN
prevention NOUN
and CCONJ
control NOUN
research NOUN
. PUNCT
  SPACE
Although SCONJ
some DET
cancer NOUN
centers NOUN
existed VERB
in ADP
the DET
late ADJ
1960s NOUN
and CCONJ
the DET
1970s NOUN
, PUNCT
it PRON
was AUX
the DET
National PROPN
Cancer PROPN
Act PROPN
of ADP
1971 NUM
that PRON
authorized VERB
the DET
establishment NOUN
of ADP
15 NUM
new ADJ
cancer NOUN
centers NOUN
, PUNCT
as ADV
well ADV
as SCONJ
continuing VERB
support NOUN
for ADP
existing VERB
ones NOUN
. PUNCT
  SPACE
The DET
passage NOUN
of ADP
the DET
act NOUN
also ADV
dramatically ADV
transformed VERB
the DET
centers NOUN
' PART
structure NOUN
and CCONJ
broadened VERB
the DET
scope NOUN
of ADP
their PRON
mission NOUN
to PART
include VERB
all DET
aspects NOUN
of ADP
basic ADJ
, PUNCT
clinical ADJ
, PUNCT
and CCONJ
cancer NOUN
control NOUN
research NOUN
. PUNCT
  SPACE
Over ADP
the DET
next ADJ
two NUM
decades NOUN
, PUNCT
the DET
centers NOUN
' PART
program NOUN
grew VERB
progressively ADV
. PUNCT
  SPACE
In ADP
1990 NUM
, PUNCT
there PRON
were AUX
19 NUM
comprehensive ADJ
cancer NOUN
centers NOUN
in ADP
the DET
nation NOUN
. PUNCT
Today NOUN
, PUNCT
there PRON
are AUX
28 NUM
of ADP
these DET
institutions NOUN
, PUNCT
all DET
of ADP
which PRON
meet VERB
specific ADJ
NCI PROPN
criteria NOUN
for ADP
comprehensive ADJ
status NOUN
. PUNCT
  SPACE
To PART
attain VERB
recognition NOUN
from ADP
the DET
NCI PROPN
as SCONJ
a DET
comprehensive ADJ
cancer NOUN
center NOUN
, PUNCT
an DET
institution NOUN
must AUX
pass VERB
rigorous ADJ
peer NOUN
review NOUN
. PUNCT
  SPACE
Under ADP
guidelines NOUN
newly ADV
established VERB
in ADP
1990 NUM
, PUNCT
the DET
eight NUM
criteria NOUN
for ADP
" PUNCT
comprehensiveness NOUN
" PUNCT
include VERB
the DET
requirement NOUN
that SCONJ
a DET
center NOUN
have AUX
a DET
strong ADJ
core NOUN
of ADP
basic ADJ
laboratory NOUN
research NOUN
in ADP
several ADJ
scientific ADJ
fields NOUN
, PUNCT
such ADJ
as SCONJ
biology NOUN
and CCONJ
molecular ADJ
genetics NOUN
, PUNCT
a DET
strong ADJ
program NOUN
of ADP
clinical ADJ
research NOUN
, PUNCT
and CCONJ
an DET
ability NOUN
to PART
transfer VERB
research NOUN
findings NOUN
into ADP
clinical ADJ
practice NOUN
. PUNCT
  SPACE
Moreover ADV
, PUNCT
five NUM
of ADP
the DET
criteria NOUN
for ADP
comprehensive ADJ
status NOUN
go VERB
significantly ADV
beyond ADP
that DET
required VERB
for ADP
attaining VERB
a DET
Cancer PROPN
Center PROPN
Support PROPN
Grant PROPN
( PUNCT
also ADV
referred VERB
to ADP
as SCONJ
a DET
P30 NOUN
or CCONJ
core NOUN
grant NOUN
) PUNCT
, PUNCT
the DET
mechanism NOUN
of ADP
choice NOUN
for ADP
supporting VERB
the DET
infrastructure NOUN
of ADP
a DET
cancer NOUN
center NOUN
's PART
operations NOUN
. PUNCT
  SPACE
These DET
criteria NOUN
encompass VERB
strong ADJ
participation NOUN
in ADP
NCI PROPN
- PUNCT
designated VERB
high ADJ
- PUNCT
priority NOUN
clinical ADJ
trials NOUN
, PUNCT
significant ADJ
levels NOUN
of ADP
cancer NOUN
prevention NOUN
and CCONJ
control NOUN
research NOUN
, PUNCT
and CCONJ
important ADJ
outreach NOUN
and CCONJ
educational ADJ
activities NOUN
-- PUNCT
all DET
of ADP
which PRON
are AUX
funded VERB
by ADP
a DET
variety NOUN
of ADP
sources NOUN
. PUNCT
  SPACE
The DET
other ADJ
types NOUN
of ADP
cancer NOUN
centers NOUN
also ADV
have AUX
special ADJ
characteristics NOUN
and CCONJ
capabilities NOUN
for ADP
organizing VERB
new ADJ
programs NOUN
of ADP
research NOUN
that PRON
can AUX
exploit VERB
important ADJ
new ADJ
findings NOUN
or CCONJ
address NOUN
timely ADJ
research NOUN
questions NOUN
. PUNCT
  SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
32Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Of NUM
the DET
55 NUM
NCI PROPN
- PUNCT
designated VERB
Cancer PROPN
Centers PROPN
, PUNCT
14 NUM
are AUX
of ADP
the DET
basic ADJ
science NOUN
type NOUN
. PUNCT
  SPACE
These DET
centers NOUN
engage VERB
almost ADV
entirely ADV
in ADP
basic ADJ
research NOUN
, PUNCT
although SCONJ
some DET
centers NOUN
engage VERB
in ADP
collaborative ADJ
research NOUN
with ADP
outside ADJ
clinical ADJ
research NOUN
investigators NOUN
and CCONJ
in ADP
cooperative ADJ
projects NOUN
with ADP
industry NOUN
to PART
generate VERB
medical ADJ
applications NOUN
from ADP
new ADJ
discoveries NOUN
in ADP
the DET
laboratory NOUN
. PUNCT
  SPACE
Clinical ADJ
cancer NOUN
centers NOUN
, PUNCT
in ADP
contrast NOUN
, PUNCT
focus VERB
on ADP
both CCONJ
basic ADJ
research NOUN
and CCONJ
clinical ADJ
research NOUN
within ADP
the DET
same ADJ
institutional ADJ
framework NOUN
, PUNCT
and CCONJ
frequently ADV
incorporate VERB
nearby ADV
affiliated VERB
clinical ADJ
research NOUN
institutions NOUN
into ADP
their PRON
overall ADJ
research NOUN
programs NOUN
. PUNCT
  SPACE
There PRON
are AUX
12 NUM
such ADJ
centers NOUN
today NOUN
. PUNCT
  SPACE
Finally ADV
, PUNCT
consortium NOUN
cancer NOUN
centers NOUN
, PUNCT
of ADP
which PRON
there PRON
is AUX
one NUM
, PUNCT
are AUX
uniquely ADV
structured VERB
and CCONJ
concentrate VERB
on ADP
clinical ADJ
research NOUN
and CCONJ
cancer NOUN
prevention NOUN
and CCONJ
control NOUN
research NOUN
. PUNCT
  SPACE
These DET
centers NOUN
interface VERB
with ADP
state NOUN
and CCONJ
local ADJ
public ADJ
health NOUN
departments NOUN
for ADP
the DET
purpose NOUN
of ADP
achieving VERB
the DET
transfer NOUN
of ADP
effective ADJ
prevention NOUN
and CCONJ
control NOUN
techniques NOUN
from ADP
their PRON
research NOUN
findings NOUN
to ADP
those DET
institutions NOUN
responsible ADJ
for ADP
implementing VERB
population NOUN
- PUNCT
wide ADJ
public ADJ
health NOUN
programs NOUN
. PUNCT
  SPACE
Consortium PROPN
centers NOUN
also ADV
are AUX
heavily ADV
engaged VERB
in ADP
collaborations NOUN
with ADP
institutions NOUN
that PRON
conduct VERB
clinical ADJ
trial NOUN
research NOUN
and CCONJ
coordinate VERB
community NOUN
hospitals NOUN
within ADP
a DET
network NOUN
of ADP
cooperating VERB
institutions NOUN
in ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Together ADV
, PUNCT
the DET
55 NUM
NCI PROPN
- PUNCT
Designated VERB
Cancer PROPN
Centers PROPN
continue VERB
to PART
work VERB
toward ADP
creating VERB
new ADJ
and CCONJ
innovative ADJ
approaches NOUN
to ADP
cancer NOUN
research NOUN
, PUNCT
and CCONJ
through ADP
interdisciplinary ADJ
efforts NOUN
, PUNCT
to PART
effectively ADV
move VERB
this DET
research NOUN
from ADP
the DET
laboratory NOUN
into ADP
clinical ADJ
trials NOUN
and CCONJ
into ADP
clinical ADJ
practice NOUN
. PUNCT
  SPACE
Comprehensive PROPN
Cancer PROPN
Centers PROPN
( PUNCT
Internet NOUN
addresses NOUN
are AUX
given VERB
where ADV
available ADJ
) PUNCT
  SPACE
University PROPN
of ADP
Alabama PROPN
at ADP
Birmingham PROPN
Comprehensive PROPN
Cancer PROPN
CenterBasic PROPN
Health PROPN
Sciences PROPN
Building PROPN
, PUNCT
Room PROPN
1081918 NUM
University PROPN
BoulevardBirmingham PROPN
, PUNCT
Alabama PROPN
35294(205 PROPN
) PUNCT
934 NUM
- SYM
6612 NUM
University PROPN
of ADP
Arizona PROPN
Cancer PROPN
Center1501 PROPN
North PROPN
Campbell PROPN
AvenueTucson PROPN
, PUNCT
Arizona PROPN
85724(602 NOUN
) PUNCT
626 NUM
- PUNCT
6372Internet PROPN
: PUNCT
  SPACE
syd@azcc.arizona.edu DET
Jonsson PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
California PROPN
at ADP
Los PROPN
Angeles200 PROPN
Medical PROPN
PlazaLos PROPN
Angeles PROPN
, PUNCT
California PROPN
90027(213 NOUN
) PUNCT
206 NUM
- PUNCT
0278HICNet ADJ
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
33Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Internet NUM
: PUNCT
  SPACE
rick@jccc.medsch.ucla.edu VERB
Kenneth PROPN
T. PROPN
Norris PROPN
Jr. PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Southern PROPN
California1441 PROPN
Eastlake PROPN
AvenueLos PROPN
Angeles PROPN
, PUNCT
California PROPN
  SPACE
90033 NUM
- SYM
0804(213 PROPN
) PUNCT
226 NUM
- PUNCT
2370 NUM
Yale PROPN
University PROPN
Comprehensive PROPN
Cancer PROPN
Center333 PROPN
Cedar PROPN
StreetNew PROPN
Haven PROPN
, PUNCT
Connecticut PROPN
06510(203 NOUN
) PUNCT
785 NUM
- PUNCT
6338 NUM
Lombardi PROPN
Cancer PROPN
Research PROPN
CenterGeorgetown PROPN
University PROPN
Medical PROPN
Center3800 PROPN
Reservoir PROPN
Road PROPN
, PUNCT
N.W.Washington PROPN
, PUNCT
D.C. PROPN
20007(202 NUM
) PUNCT
687 NUM
- SYM
2192 NUM
Sylvester PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Miami PROPN
Medical PROPN
School1475 PROPN
Northwest PROPN
12th NOUN
AvenueMiami PROPN
, PUNCT
Florida PROPN
33136(305 NOUN
) PUNCT
548 NUM
- PUNCT
4800Internet NUM
: PUNCT
  SPACE
hlam@mednet.med.miami.edu PROPN
Johns PROPN
Hopkins PROPN
Oncology PROPN
Center600 PROPN
North PROPN
Wolfe PROPN
StreetBaltimore PROPN
, PUNCT
Maryland PROPN
21205(410 NUM
) PUNCT
955 NUM
- PUNCT
8638 NUM
Dana PROPN
- PUNCT
Farber PROPN
Cancer PROPN
Institute44 PROPN
Binney PROPN
StreetBoston PROPN
, PUNCT
Massachusetts PROPN
02115(617 NOUN
) PUNCT
732 NUM
- PUNCT
3214Internet PROPN
: PUNCT
  SPACE
Kristie_Stevenson@macmailgw.dfci.harvard.edu PROPN
Meyer PROPN
L. PROPN
Prentis PROPN
Comprehensive PROPN
Cancer PROPN
Center PROPN
of ADP
MetropolitanDetroit110 PROPN
East PROPN
Warren PROPN
AvenueDetroit PROPN
, PUNCT
Michigan PROPN
48201(313 NOUN
) PUNCT
745 NUM
- PUNCT
4329Internet NUM
: PUNCT
  SPACE
cummings%oncvx1.dnet@rocdec.roc.wayne.edu PROPN
University PROPN
of ADP
Michigan PROPN
Cancer PROPN
CenterHICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
34Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993101 NUM
Simpson PROPN
DriveAnn PROPN
Arbor PROPN
, PUNCT
Michigan PROPN
48109 NUM
- PUNCT
0752(313 NOUN
) PUNCT
936 NUM
- PUNCT
9583BITNET NUM
: PUNCT
  SPACE
kallie.bila.michels@um.cc.umich.edu PROPN
Mayo PROPN
Comprehensive PROPN
Cancer PROPN
Center200 PROPN
First PROPN
Street PROPN
SouthwestRochester PROPN
, PUNCT
Minnesota PROPN
55905(507 NUM
) PUNCT
284 NUM
- PUNCT
3413 NUM
Norris PROPN
Cotton PROPN
Cancer PROPN
CenterDartmouth PROPN
- PUNCT
Hitchcock PROPN
Medical PROPN
CenterOne PROPN
Medical PROPN
Center PROPN
DriveLebanon PROPN
, PUNCT
New PROPN
Hampshire PROPN
03756(603 NOUN
) PUNCT
646 NUM
- PUNCT
5505BITNET NOUN
: PUNCT
  SPACE
edward.bresnick@dartmouth.edu PROPN
Roswell PROPN
Park PROPN
Cancer PROPN
InstituteElm PROPN
and CCONJ
Carlton PROPN
StreetsBuffalo PROPN
, PUNCT
New PROPN
York PROPN
14263(716 NOUN
) PUNCT
845 NUM
- PUNCT
4400 NUM
Columbia PROPN
University PROPN
Comprehensive PROPN
Cancer PROPN
CenterCollege PROPN
of ADP
Physicians PROPN
and CCONJ
Surgeons630 PROPN
West PROPN
168th ADP
StreetNew PROPN
York PROPN
, PUNCT
New PROPN
York PROPN
10032(212 NUM
) PUNCT
305 NUM
- PUNCT
6905Internet NOUN
: PUNCT
  SPACE
janie@cuccfa.ccc.columbia.edu PROPN
Memorial PROPN
Sloan PROPN
- PUNCT
Kettering PROPN
Cancer PROPN
Center1275 PROPN
York PROPN
AvenueNew PROPN
York PROPN
, PUNCT
New PROPN
York PROPN
10021(800 NOUN
) PUNCT
525 NUM
- PUNCT
2225 NUM
Kaplan PROPN
Cancer PROPN
CenterNew PROPN
York PROPN
University PROPN
Medical PROPN
Center462 PROPN
First PROPN
AvenueNew PROPN
York PROPN
, PUNCT
New PROPN
York PROPN
10016 NUM
- PUNCT
9103(212 PROPN
) PUNCT
263 NUM
- PUNCT
6485 NUM
UNC PROPN
Lineberger PROPN
Comprehensive PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
North PROPN
Carolina PROPN
School PROPN
of ADP
MedicineChapel PROPN
Hill PROPN
, PUNCT
North PROPN
Carolina PROPN
27599(919 NUM
) PUNCT
966 NUM
- SYM
4431 NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
35Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Duke NUM
Comprehensive PROPN
Cancer PROPN
CenterP.O. PROPN
Box PROPN
3814Durham PROPN
, PUNCT
North PROPN
Carolina PROPN
27710(919 NOUN
) PUNCT
286 NUM
- PUNCT
5515 NUM
Cancer PROPN
Center PROPN
of ADP
Wake PROPN
Forest PROPN
University PROPN
at ADP
the DET
Bowman PROPN
Gray PROPN
Schoolof PROPN
Medicine300 PROPN
South PROPN
Hawthorne PROPN
RoadWinston PROPN
- PUNCT
Salem PROPN
, PUNCT
North PROPN
Carolina PROPN
27103(919 NUM
) PUNCT
748 NUM
- PUNCT
4354Internet NUM
: PUNCT
  SPACE
ccwfumail@phs.bgsm.wfu.edu PROPN
Ohio PROPN
State PROPN
University PROPN
Comprehensive PROPN
Cancer PROPN
Center300 PROPN
West PROPN
10th ADJ
AvenueColumbus PROPN
, PUNCT
Ohio PROPN
43210(614 NUM
) PUNCT
293 NUM
- PUNCT
5485Internet NOUN
: PUNCT
  SPACE
dyoung@magnus.acs.ohio-state.edu VERB
Fox PROPN
Chase PROPN
Cancer PROPN
Center7701 PROPN
Burholme PROPN
AvenuePhiladelphia PROPN
, PUNCT
Pennsylvania PROPN
19111(215 NUM
) PUNCT
728 NUM
- PUNCT
2570Internet NUM
: PUNCT
  SPACE
s_davis@fccc.edu PROPN
University PROPN
of ADP
Pennsylvania PROPN
Cancer PROPN
Center3400 PROPN
Spruce PROPN
StreetPhiladelphia PROPN
, PUNCT
Pennsylvania PROPN
19104(215 NUM
) PUNCT
662 NUM
- SYM
6364 NUM
Pittsburgh PROPN
Cancer PROPN
Institute200 PROPN
Meyran PROPN
AvenuePittsburgh PROPN
, PUNCT
Pennsylvania PROPN
15213 NUM
- PUNCT
2592(800 NUM
) PUNCT
537 NUM
- SYM
4063 NUM
The DET
University PROPN
of ADP
Texas PROPN
M.D. PROPN
Anderson PROPN
Cancer PROPN
Center1515 PROPN
Holcombe PROPN
BoulevardHouston PROPN
, PUNCT
Texas PROPN
77030(713 PROPN
) PUNCT
792 NUM
- PUNCT
3245 NUM
Vermont PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Vermont1 NOUN
South PROPN
Prospect PROPN
StreetBurlington PROPN
, PUNCT
Vermont PROPN
05401(802 PROPN
) PUNCT
656 NUM
- SYM
4580 NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
36Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993Fred NUM
Hutchinson PROPN
Cancer PROPN
Research PROPN
Center1124 PROPN
Columbia PROPN
StreetSeattle PROPN
, PUNCT
Washington PROPN
98104(206 NOUN
) PUNCT
667 NUM
- PUNCT
4675Internet NUM
: PUNCT
  SPACE
sedmonds@cclink.fhcrc.org PROPN
University PROPN
of ADP
Wisconsin PROPN
Comprehensive PROPN
Cancer PROPN
Center600 PROPN
Highland PROPN
AvenueMadison PROPN
, PUNCT
Wisconsin PROPN
53792(608 NUM
) PUNCT
263 NUM
- PUNCT
8600BITNET NUM
: PUNCT
  SPACE
carbone@uwccc.biostat.wisc.edu NOUN
   SPACE
Clinical PROPN
Cancer PROPN
Centers PROPN
  SPACE
University PROPN
of ADP
California PROPN
at ADP
San PROPN
Diego PROPN
Cancer PROPN
Center225 PROPN
Dickinson PROPN
StreetSan PROPN
Diego PROPN
, PUNCT
California PROPN
92103(619 NOUN
) PUNCT
543 NUM
- PUNCT
6178Internet NOUN
: PUNCT
  SPACE
dedavis@ucsd.edu X
City PROPN
of ADP
Hope PROPN
National PROPN
Medical PROPN
CenterBeckman PROPN
Research PROPN
Institute1500 PROPN
East PROPN
Duarte PROPN
RoadDuarte PROPN
, PUNCT
California PROPN
91010(818 NOUN
) PUNCT
359 NUM
- SYM
8111 NUM
ext NOUN
. PUNCT
2292 NUM
University PROPN
of ADP
Colorado PROPN
Cancer PROPN
Center4200 PROPN
East PROPN
9th NOUN
Avenue PROPN
, PUNCT
Box PROPN
B188Denver PROPN
, PUNCT
Colorado PROPN
80262(303 NOUN
) PUNCT
270 NUM
- PUNCT
7235 NUM
University PROPN
of ADP
Chicago PROPN
Cancer PROPN
Research PROPN
Center5841 PROPN
South PROPN
Maryland PROPN
Avenue PROPN
, PUNCT
Box PROPN
444Chicago NUM
, PUNCT
Illinois PROPN
60637(312 PROPN
) PUNCT
702 NUM
- PUNCT
6180Internet PROPN
: PUNCT
  SPACE
judith@delphi.bsd.uchicago.edu PROPN
Albert PROPN
Einstein PROPN
College PROPN
of ADP
Medicine1300 PROPN
Morris PROPN
Park PROPN
AvenueBronx PROPN
, PUNCT
New PROPN
York PROPN
10461(212 NUM
) PUNCT
920 NUM
- SYM
4826 NUM
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
37Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993University NUM
of ADP
Rochester PROPN
Cancer PROPN
Center601 PROPN
Elmwood PROPN
Avenue PROPN
, PUNCT
Box PROPN
704Rochester PROPN
, PUNCT
New PROPN
York PROPN
14642(716 NUM
) PUNCT
275 NUM
- SYM
4911Internet NUM
: PUNCT
  SPACE
rickb@wotan.medicine.rochester.edu NOUN
Ireland PROPN
Cancer PROPN
Center PROPN
Case PROPN
Western PROPN
Reserve PROPN
UniversityUniversity PROPN
Hospitals PROPN
of ADP
Cleveland2074 PROPN
Abington PROPN
RoadCleveland PROPN
, PUNCT
Ohio PROPN
44106(216 NUM
) PUNCT
844 NUM
- SYM
5432 NUM
Roger PROPN
Williams PROPN
Cancer PROPN
CenterBrown PROPN
University825 PROPN
Chalkstone PROPN
AvenueProvidence PROPN
, PUNCT
Rhode PROPN
Island PROPN
02908(401 NUM
) PUNCT
456 NUM
- SYM
2071 NUM
St. PROPN
Jude PROPN
Children PROPN
's PART
Research PROPN
Hospital332 PROPN
North PROPN
Lauderdale PROPN
StreetMemphis PROPN
, PUNCT
Tennessee PROPN
38101 NUM
- PUNCT
0318(901 NOUN
) PUNCT
522 NUM
- PUNCT
0306Internet NOUN
: PUNCT
  SPACE
meyer@mbcf.stjude.org PROPN
Institute PROPN
for ADP
Cancer PROPN
Research PROPN
and CCONJ
Care4450 NOUN
Medical PROPN
DriveSan PROPN
Antonio PROPN
, PUNCT
Texas PROPN
78229(512 NUM
) PUNCT
616 NUM
- SYM
5580 NUM
Utah PROPN
Regional PROPN
Cancer PROPN
CenterUniversity PROPN
of ADP
Utah PROPN
Health PROPN
Sciences PROPN
Center50 PROPN
North PROPN
Medical PROPN
Drive PROPN
, PUNCT
Room PROPN
2C110Salt NOUN
Lake PROPN
City PROPN
, PUNCT
Utah PROPN
84132(801 NUM
) PUNCT
581 NUM
- PUNCT
4048BITNET NUM
: PUNCT
  SPACE
hogan@cc.utah.edu PROPN
Massey PROPN
Cancer PROPN
CenterMedical PROPN
College PROPN
of ADP
VirginiaVirginia PROPN
Commonwealth PROPN
University1200 PROPN
East PROPN
Broad PROPN
StreetRichmond PROPN
, PUNCT
Virginia PROPN
23298(804 NUM
) PUNCT
786 NUM
- PUNCT
9641 NUM
  SPACE
ConsortiaHICNet VERB
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
38Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
Drew PROPN
- PUNCT
Meharry PROPN
- PUNCT
Morehouse PROPN
Consortium PROPN
Cancer PROPN
Center1005 PROPN
D.B. PROPN
Todd PROPN
BoulevardNashville PROPN
, PUNCT
Tennessee PROPN
37208(615 PROPN
) PUNCT
327 NUM
- PUNCT
6927HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
39Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                             SPACE
General PROPN
Announcments PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                 SPACE
THE DET
UCI PROPN
MEDICAL PROPN
EDUCATION PROPN
SOFTWARE NOUN
REPOSITORY PROPN
This DET
is AUX
to PART
announce VERB
the DET
establishment NOUN
of ADP
an DET
FTP PROPN
site NOUN
at ADP
the DET
University PROPN
of ADP
California PROPN
, PUNCT
for ADP
the DET
collection NOUN
of ADP
shareware PROPN
, PUNCT
public ADJ
- PUNCT
domain NOUN
software NOUN
and CCONJ
other ADJ
information NOUN
relating VERB
to ADP
Medical PROPN
Education PROPN
. PUNCT
  SPACE
Specifically ADV
, PUNCT
we PRON
are AUX
interested ADJ
in ADP
establishing VERB
this DET
site NOUN
as SCONJ
a DET
clearinghouse NOUN
for ADP
personally ADV
developed VERB
software NOUN
that PRON
has AUX
been AUX
developed VERB
for ADP
local ADJ
medical ADJ
education NOUN
programs NOUN
. PUNCT
  SPACE
We PRON
welcome VERB
all DET
contributions NOUN
that PRON
may AUX
be AUX
shared VERB
with ADP
other ADJ
users NOUN
. PUNCT
  SPACE
To PART
connect VERB
to ADP
the DET
UCI PROPN
Medical PROPN
Education PROPN
Software PROPN
Repository PROPN
, PUNCT
ftp PROPN
to PART
: PUNCT
                      SPACE
FTP.UCI.EDUThe PROPN
Repository PROPN
currently ADV
offers VERB
both CCONJ
MSDOS PROPN
and CCONJ
Macintosh PROPN
software NOUN
, PUNCT
and CCONJ
we PRON
hope VERB
to PART
support VERB
other ADJ
operating NOUN
systems NOUN
( PUNCT
UNIX PROPN
, PUNCT
MUMPS PROPN
, PUNCT
AMIGA PROPN
? PUNCT
) PUNCT
. PUNCT
  SPACE
Uploads NOUN
are AUX
welcome ADJ
. PUNCT
  SPACE
We PRON
actively ADV
solicit VERB
information NOUN
and CCONJ
software NOUN
which PRON
you PRON
have AUX
personaly NOUN
developed VERB
or CCONJ
have AUX
found VERB
useful ADJ
in ADP
your PRON
local ADJ
medical ADJ
education NOUN
efforts NOUN
, PUNCT
either CCONJ
as SCONJ
an DET
instructor NOUN
or CCONJ
student NOUN
. PUNCT
  SPACE
Once SCONJ
you PRON
have AUX
connected VERB
to ADP
the DET
site NOUN
via ADP
FTP PROPN
, PUNCT
cd PROPN
( PUNCT
change PROPN
directory PROPN
) PUNCT
to ADP
either CCONJ
the DET
med PROPN
- PUNCT
ed PROPN
/ SYM
mac PROPN
/ SYM
incoming ADJ
or CCONJ
the DET
med PROPN
- PUNCT
ed PROPN
/ SYM
msdos NOUN
/ SYM
incoming ADJ
directories NOUN
, PUNCT
change VERB
the DET
mode NOUN
to ADP
binary VERB
and CCONJ
" PUNCT
send VERB
" PUNCT
or CCONJ
" PUNCT
put VERB
" PUNCT
your PRON
files NOUN
. PUNCT
  SPACE
Note VERB
that SCONJ
you PRON
wo AUX
n't PART
be AUX
able ADJ
to PART
see VERB
the DET
files NOUN
with ADP
the DET
" PUNCT
ls NOUN
" PUNCT
or CCONJ
" PUNCT
dir NOUN
" PUNCT
commands NOUN
. PUNCT
  SPACE
Please INTJ
compress VERB
your PRON
files NOUN
as ADV
appropriate ADJ
to ADP
the DET
operating NOUN
system NOUN
( PUNCT
ZIP PROPN
for ADP
MSDOS NOUN
; PUNCT
Compactor NOUN
or CCONJ
something PRON
similar ADJ
for ADP
Macintosh PROPN
) PUNCT
to PART
save VERB
disk NOUN
space NOUN
. PUNCT
  SPACE
After ADP
uploading VERB
, PUNCT
please INTJ
send VERB
email NOUN
to ADP
Steve PROPN
Clancy PROPN
( PUNCT
slclancy@uci.edu NUM
) PUNCT
( PUNCT
for ADP
MSDOS PROPN
) PUNCT
or CCONJ
Albert PROPN
Saisho PROPN
( PUNCT
saisho@uci.edu NOUN
) PUNCT
( PUNCT
for ADP
MAC PROPN
) PUNCT
describing VERB
the DET
file(s PROPN
) PUNCT
you PRON
have AUX
uploaded VERB
and CCONJ
any DET
other ADJ
information NOUN
we PRON
might AUX
need VERB
to PART
describe VERB
it PRON
. PUNCT
Note VERB
that SCONJ
we PRON
can AUX
only ADV
accept VERB
software NOUN
or CCONJ
information NOUN
that PRON
has AUX
been AUX
designated VERB
as SCONJ
shareware ADJ
, PUNCT
public ADJ
- PUNCT
domain NOUN
or CCONJ
that PRON
may AUX
otherwise ADV
be AUX
distributed VERB
freely ADV
. PUNCT
  SPACE
Please INTJ
do AUX
not PART
upload VERB
commercial ADJ
software NOUN
! PUNCT
  SPACE
Doing VERB
so ADV
may AUX
jeopardize VERB
the DET
existence NOUN
of ADP
this DET
FTP PROPN
site NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
wish VERB
to PART
upload VERB
software NOUN
for ADP
other ADJ
operating NOUN
systems NOUN
, PUNCT
please INTJ
contact VERB
either DET
Steve PROPN
Clancy PROPN
, PUNCT
M.L.S. PROPN
or CCONJ
Albert PROPN
Saisho PROPN
, PUNCT
M.D. PROPN
at ADP
the DET
addresses NOUN
above ADV
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
40Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                              SPACE
AIDS PROPN
News PROPN
Summaries PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                              SPACE
AIDS PROPN
Daily PROPN
SummaryThe PROPN
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
( PUNCT
CDC PROPN
) PUNCT
National PROPN
AIDS PROPN
  SPACE
Clearinghouse PROPN
makes VERB
available ADJ
the DET
following VERB
information NOUN
as SCONJ
a DET
public ADJ
  SPACE
service NOUN
only ADV
. PUNCT
Providing VERB
this DET
information NOUN
does AUX
not PART
constitute VERB
endorsement NOUN
  SPACE
by ADP
the DET
CDC PROPN
, PUNCT
the DET
CDC PROPN
Clearinghouse PROPN
, PUNCT
or CCONJ
any DET
other ADJ
organization NOUN
. PUNCT
Reproduction NOUN
  SPACE
of ADP
this DET
text NOUN
is AUX
encouraged VERB
; PUNCT
however ADV
, PUNCT
copies NOUN
may AUX
not PART
be AUX
sold VERB
. PUNCT
  SPACE
Copyright NOUN
1993 NUM
, PUNCT
Information PROPN
, PUNCT
Inc. PROPN
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                    SPACE
April PROPN
12 NUM
, PUNCT
1993 NUM
       SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
NIH PROPN
Set VERB
to PART
Test VERB
Multiple ADJ
AIDS PROPN
Vaccines PROPN
" PUNCT
Reuters PROPN
( PUNCT
04/08/93 PUNCT
) PUNCT
  SPACE
( PUNCT
Frank PROPN
, PUNCT
Jacqueline PROPN
) PUNCT
      SPACE
Washington PROPN
-- PUNCT
The DET
Clinton PROPN
administration NOUN
will AUX
permit VERB
the DET
National PROPN
  SPACE
Institutes PROPN
of ADP
Health PROPN
to PART
test VERB
multiple ADJ
AIDS PROPN
vaccines NOUN
instead ADV
of ADP
  SPACE
only ADV
allowing VERB
the DET
Army PROPN
to PART
test VERB
a DET
single ADJ
vaccine NOUN
, PUNCT
administration NOUN
  SPACE
sources NOUN
said VERB
Thursday PROPN
. PUNCT
  SPACE
The DET
decision NOUN
ends VERB
the DET
controversy NOUN
between ADP
Army PROPN
AIDS PROPN
researchers NOUN
who PRON
had AUX
hoped VERB
to PART
test VERB
a DET
vaccine NOUN
made VERB
by ADP
  SPACE
MicroGeneSys PROPN
Inc. PROPN
and CCONJ
the DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
which PRON
  SPACE
contended VERB
that SCONJ
multiple ADJ
vaccines NOUN
should AUX
be AUX
tested VERB
. PUNCT
  SPACE
Health PROPN
and CCONJ
  SPACE
Human PROPN
Services PROPN
Secretary PROPN
Donna PROPN
Shalala PROPN
said VERB
a DET
final ADJ
announcement NOUN
  SPACE
on ADP
the DET
therapeutic ADJ
vaccine NOUN
trials NOUN
was AUX
expected VERB
to PART
be AUX
made VERB
last ADJ
  SPACE
Friday PROPN
. PUNCT
  SPACE
Companies NOUN
including VERB
Genentech PROPN
Inc. PROPN
, PUNCT
Chiron PROPN
Corp. PROPN
, PUNCT
and CCONJ
  SPACE
Immuno PROPN
AG PROPN
have AUX
already ADV
told VERB
NIH PROPN
that SCONJ
they PRON
are AUX
prepared ADJ
to PART
  SPACE
participate VERB
in ADP
the DET
vaccine NOUN
tests NOUN
. PUNCT
  SPACE
The DET
testing NOUN
is AUX
intended VERB
to PART
  SPACE
demonstrate VERB
whether SCONJ
AIDS PROPN
vaccines NOUN
are AUX
effective ADJ
in ADP
thwarting VERB
the DET
  SPACE
replication NOUN
of ADP
HIV PROPN
in ADP
patients NOUN
already ADV
infected VERB
. PUNCT
  SPACE
Shalala PROPN
refuted VERB
last ADJ
week NOUN
's PART
reports NOUN
that SCONJ
the DET
Clinton PROPN
administration NOUN
had AUX
decided VERB
  SPACE
the DET
Army PROPN
's PART
test NOUN
of ADP
the DET
MicroGeneSys PROPN
VaxSyn PROPN
should AUX
proceed VERB
without ADP
tests NOUN
of ADP
others NOUN
at ADP
the DET
same ADJ
time NOUN
. PUNCT
  SPACE
" PUNCT
The DET
report NOUN
was AUX
inaccurate ADJ
, PUNCT
  SPACE
and CCONJ
I PRON
expect VERB
there ADV
to PART
be AUX
some DET
announcement NOUN
in ADP
the DET
next ADJ
24 NUM
hours NOUN
  SPACE
about ADP
that DET
particular ADJ
AIDS PROPN
research NOUN
project NOUN
, PUNCT
" PUNCT
said VERB
Shalala PROPN
. PUNCT
   SPACE
Administration PROPN
sources NOUN
subsequently ADV
confirmed VERB
that SCONJ
NIH PROPN
director NOUN
  SPACE
Dr. PROPN
Bernadine PROPN
Healy PROPN
and CCONJ
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
Commissioner PROPN
David PROPN
Kessler PROPN
had AUX
convinced VERB
the DET
White PROPN
House PROPN
that SCONJ
multiple ADJ
  SPACE
vaccines NOUN
should AUX
be AUX
tested VERB
simultaneously ADV
. PUNCT
  SPACE
But CCONJ
MicroGeneSys PROPN
  SPACE
president NOUN
Frank PROPN
Volvovitz PROPN
said VERB
a DET
test NOUN
of ADP
multiple ADJ
vaccines NOUN
could AUX
  SPACE
triple VERB
the DET
cost NOUN
of ADP
the DET
trial NOUN
and CCONJ
delay VERB
it PRON
by ADP
two NUM
years.================================================================== NOUN
    SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
41Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
10 NUM
                                           SPACE
April PROPN
20 NUM
, PUNCT
1993"The NUM
Limits NOUN
of ADP
AZT PROPN
's PART
Impact PROPN
on ADP
HIV PROPN
" PUNCT
U.S. PROPN
News PROPN
& CCONJ
World PROPN
Report PROPN
( PUNCT
04/12/93 PROPN
) PUNCT
Vol PROPN
. PROPN
114 NUM
, PUNCT
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
18 NUM
      SPACE
AZT PROPN
has AUX
become VERB
the DET
most ADV
widely ADV
used VERB
drug NOUN
to PART
fight VERB
AIDS PROPN
since SCONJ
it PRON
  SPACE
was AUX
approved VERB
by ADP
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
in ADP
1987 NUM
. PUNCT
   SPACE
Burroughs PROPN
Wellcome PROPN
, PUNCT
the DET
manufacturer NOUN
of ADP
AZT PROPN
, PUNCT
made VERB
$ SYM
338 NUM
million NUM
  SPACE
last ADJ
year NOUN
alone ADV
from ADP
sales NOUN
of ADP
the DET
drug NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
a DET
team NOUN
of ADP
  SPACE
European ADJ
researchers NOUN
recently ADV
reported VERB
that SCONJ
although SCONJ
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
taking VERB
AZT PROPN
demonstrated VERB
a DET
slightly ADV
lower ADJ
risk NOUN
of ADP
  SPACE
developing VERB
AIDS PROPN
within ADP
the DET
first ADJ
year NOUN
of ADP
treatment NOUN
, PUNCT
that DET
benefit NOUN
  SPACE
disappeared VERB
two NUM
years NOUN
later ADV
. PUNCT
  SPACE
The DET
Lancet PROPN
published VERB
preliminary ADJ
  SPACE
findings NOUN
of ADP
the DET
three NUM
- PUNCT
year NOUN
study NOUN
, PUNCT
which PRON
could AUX
give VERB
more ADJ
reason NOUN
  SPACE
for ADP
critics NOUN
to PART
argue VERB
the DET
drug NOUN
's PART
cost NOUN
, PUNCT
side NOUN
effects NOUN
, PUNCT
and CCONJ
general ADJ
  SPACE
efficacy NOUN
. PUNCT
  SPACE
Even ADV
though SCONJ
U.S. PROPN
researchers NOUN
concede VERB
the DET
study NOUN
was AUX
  SPACE
more ADV
comprehensive ADJ
than SCONJ
American ADJ
trials NOUN
, PUNCT
many ADJ
argue VERB
the DET
European ADJ
  SPACE
researchers NOUN
' PART
suggestion NOUN
that SCONJ
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
experience VERB
  SPACE
little ADJ
improvement NOUN
in ADP
their PRON
illness NOUN
before ADP
the DET
development NOUN
of ADP
  SPACE
AIDS PROPN
symptoms NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
researchers NOUN
have AUX
long ADV
been AUX
familiar ADJ
  SPACE
with ADP
the DET
--------- PUNCT
end NOUN
of ADP
part NOUN
3 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59127From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1r3ks8INNica@lynx.unm.edu NUM
> X
bhjelle@carina.unm.edu PROPN
( PUNCT
) PUNCT
writes:>In X
article NOUN
< X
1993Apr21.091844.4035@omen NOUN
. PUNCT
UUCP PROPN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>In PROPN
article NOUN
< X
19687@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>>>>>>Can VERB
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>>the NOUN
lost VERB
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>>exceeds VERB
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>>is NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>>>Not PROPN
one NUM
, PUNCT
but CCONJ
two:>>>>Obesity NUM
in ADP
Europe PROPN
88,>>proceedings PROPN
of ADP
the DET
1st ADJ
European ADJ
Congress PROPN
on ADP
Obesity>>>>Annals NUM
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>>>Hmmm NUM
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressive ADJ
> X
behavior NOUN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)>>BrianI PRON
purposefully ADV
left VERB
off ADP
the DET
page NOUN
numbers NOUN
to PART
encourage VERB
the DET
reader NOUN
tostudy VERB
the DET
volumes NOUN
mentioned VERB
, PUNCT
and CCONJ
benefit VERB
therefrom.-- PROPN
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59128From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Could AUX
this DET
be AUX
a DET
migraine?GB ADJ
> X
From ADP
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)GB PROPN
> X
> X
( PUNCT
I PRON
am AUX
excepting VERB
migraine NOUN
, PUNCT
which PRON
is AUX
arguably ADV
neurologic).GB NOUN
> X
I PRON
hope VERB
you PRON
meant VERB
" PUNCT
inarguably" PROPN
. PUNCT
Given VERB
the DET
choice NOUN
, PUNCT
I PRON
would AUX
rather ADV
argue VERB
< X
g>.No PROPN
arguments NOUN
about ADP
migranous ADJ
aura NOUN
; PUNCT
in ADP
fact NOUN
, PUNCT
current ADJ
best ADJ
evidence NOUN
isthat ADP
aura PROPN
is AUX
intrinsicially ADV
neuronal ADJ
( PUNCT
a X
la ADJ
spreading VERB
depression NOUN
ofLeao NOUN
) PUNCT
rather ADV
than SCONJ
vascular ADJ
( PUNCT
something PRON
causing VERB
vasoconstriction NOUN
andsecondary ADJ
neuronal ADJ
ischemia).Migraine NOUN
without ADP
aura PROPN
, PUNCT
however ADV
, PUNCT
is AUX
a DET
fuzzier ADJ
issue NOUN
. PUNCT
  SPACE
There PRON
do AUX
notseem VERB
to PART
be AUX
objectively ADV
measurable ADJ
changes NOUN
in ADP
brain NOUN
function NOUN
. PUNCT
  SPACE
TheCopenhagen PROPN
mafia NOUN
( PUNCT
Lauritzen PROPN
, PUNCT
Olesen PROPN
, PUNCT
et PROPN
al PROPN
) PUNCT
have AUX
done VERB
local ADJ
CBFstudies NOUN
on ADP
migraine NOUN
without ADP
aura PROPN
, PUNCT
and CCONJ
( PUNCT
unlike ADP
migraine NOUN
with ADP
aura PROPN
, PUNCT
but CCONJ
like SCONJ
tension NOUN
- PUNCT
type NOUN
) PUNCT
they PRON
found VERB
no DET
changes NOUN
in ADP
LCBF.From PROPN
one NUM
( PUNCT
absurd ADJ
) PUNCT
perspective NOUN
, PUNCT
* PUNCT
all DET
* PUNCT
pain NOUN
is AUX
neurologic ADJ
, PUNCT
because SCONJ
inthe DET
absence NOUN
of ADP
a DET
nervous ADJ
system NOUN
, PUNCT
there PRON
would AUX
not PART
be AUX
pain NOUN
. PUNCT
  SPACE
Fromanother PROPN
( PUNCT
tautologic PROPN
) PUNCT
perspective NOUN
, PUNCT
any DET
disease NOUN
is AUX
in ADP
the DET
domain NOUN
ofthe NOUN
specialty NOUN
that PRON
treats VERB
it PRON
. PUNCT
  SPACE
Neurologists NOUN
treat VERB
headache NOUN
, PUNCT
therefore ADV
( PUNCT
at ADP
least ADJ
in ADP
the DET
USA PROPN
) PUNCT
headache NOUN
is AUX
neurologic ADJ
. PUNCT
Whether SCONJ
neurologic ADJ
or CCONJ
not PART
, PUNCT
nobody PRON
would AUX
disagree VERB
that SCONJ
disablingheadaches NOUN
are AUX
common ADJ
. PUNCT
  SPACE
Perhaps ADV
my PRON
fee NOUN
- PUNCT
for ADP
- PUNCT
service NOUN
neurologiccolleagues NOUN
, PUNCT
scrounging VERB
for ADP
cases NOUN
, PUNCT
want VERB
all DET
the DET
headache NOUN
patientsthey NOUN
can AUX
get AUX
. PUNCT
  SPACE
Working VERB
on ADP
a DET
salary NOUN
, PUNCT
however ADV
, PUNCT
I PRON
would AUX
rather ADV
not PART
fillmy VERB
office NOUN
with ADP
patients NOUN
holding VERB
their PRON
heads NOUN
in ADP
pain.--- PROPN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                       SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59129From NUM
: PUNCT
thom@morgan.ucs.mun.ca X
( PUNCT
Thomas PROPN
Clancy)Subject NUM
: PUNCT
Re ADP
: PUNCT
Thrush PROPN
( PUNCT
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)))dyer@spdcc.com PROPN
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
21APR199308571323@ucsvax.sdsu.edu X
> X
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M. PROPN
) PUNCT
writes:>>Dyer PROPN
is AUX
beyond ADP
rude ADJ
. PUNCT
I PRON
'll AUX
drink VERB
to ADP
that.>Yeah PROPN
, PUNCT
yeah INTJ
, PUNCT
yeah INTJ
. PUNCT
  SPACE
I PRON
did AUX
n't PART
threaten VERB
to PART
rip VERB
your PRON
lips NOUN
off ADP
, PUNCT
did AUX
I?>Snort.>>There PROPN
have AUX
been AUX
and CCONJ
always ADV
will AUX
be AUX
people NOUN
who PRON
are AUX
blinded VERB
by ADP
their PRON
own ADJ
> X
> X
knowledge NOUN
and CCONJ
unopen NOUN
to ADP
anything PRON
that PRON
is AUX
n't PART
already ADV
established VERB
. PUNCT
Given VERB
what PRON
> X
> X
the DET
medical ADJ
community NOUN
does AUX
n't PART
know VERB
, PUNCT
I PRON
'm AUX
surprised ADJ
that SCONJ
he PRON
has AUX
this DET
outlook.>Duh NOUN
. PUNCT
Nice ADJ
to PART
see VERB
Steve PROPN
still ADV
has AUX
his PRON
high ADJ
and CCONJ
almighty ADJ
intellectual ADJ
prowess NOUN
in ADP
tact.>>For NOUN
the DET
record NOUN
, PUNCT
I PRON
have AUX
had VERB
several ADJ
outbreaks NOUN
of ADP
thrush NOUN
during ADP
the DET
several ADJ
> X
> X
past ADP
few ADJ
years NOUN
, PUNCT
with ADP
no DET
indication NOUN
of ADP
immunosuppression NOUN
or CCONJ
nutritional ADJ
> X
> X
deficiencies NOUN
. PUNCT
I PRON
had AUX
not PART
taken VERB
any DET
antobiotics NOUN
. PUNCT
> X
Listen VERB
: PUNCT
thrush PROPN
is AUX
a DET
recognized VERB
clinical ADJ
syndrome NOUN
with ADP
definite ADJ
> X
characteristics NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
thrush ADJ
, PUNCT
you PRON
have AUX
thrush ADJ
, PUNCT
because SCONJ
you PRON
can AUX
> X
see VERB
the DET
lesions NOUN
and CCONJ
do AUX
a DET
culture NOUN
and CCONJ
when ADV
you PRON
treat VERB
it PRON
, PUNCT
it PRON
generally ADV
> X
responds VERB
well ADV
, PUNCT
if SCONJ
you PRON
're AUX
not PART
otherwise ADV
immunocompromised VERB
. PUNCT
  SPACE
Noring's PROPN
> X
anal ADJ
- PUNCT
retentive ADJ
idee NOUN
fixe NOUN
on ADP
having VERB
a DET
fungal ADJ
infection NOUN
in ADP
his PRON
sinuses NOUN
> X
is AUX
not PART
even ADV
in ADP
the DET
same ADJ
category NOUN
here ADV
, PUNCT
nor CCONJ
are AUX
these DET
walking VERB
neurasthenics NOUN
> X
who PRON
are AUX
convinced ADJ
they PRON
have AUX
" PUNCT
candida PROPN
" PUNCT
from ADP
reading VERB
a DET
quack NOUN
book NOUN
. PUNCT
Yawn NOUN
... PUNCT
>>My X
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous:>>After PROPN
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased.>>When PROPN
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
> X
> X
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then.>So?Exactly ADV
my PRON
question NOUN
to ADP
you PRON
, PUNCT
Steve PROPN
. PUNCT
What PRON
's AUX
your PRON
point NOUN
? PUNCT
This DET
person NOUN
hadone ADJ
, PUNCT
you PRON
didn't>-- VERB
> X
Steve PROPN
DyerNice PROPN
to PART
see VERB
that SCONJ
some DET
things NOUN
never ADV
change VERB
, PUNCT
Steve PROPN
, PUNCT
if SCONJ
you PRON
are AUX
n't PART
beingignorant ADJ
in ADP
one NUM
group NOUN
[ PUNCT
* PUNCT
.alternative PUNCT
] PUNCT
you PRON
're AUX
into ADP
another DET
. PUNCT
One NUM
positivething NOUN
came VERB
out SCONJ
of ADP
it PRON
, PUNCT
you PRON
are AUX
no ADV
longer ADV
bothering VERB
the DET
folks NOUN
in ADP
* PUNCT
.alternative PUNCT
, PUNCT
it PRON
's AUX
just ADV
a DET
shame NOUN
that PRON
these DET
people NOUN
have AUX
to PART
suffer VERB
sothat ADJ
others NOUN
may AUX
breath VERB
freely ADV
. PUNCT
  SPACE
Sorry ADJ
for ADP
wasting VERB
bandwidth ADJ
folks NOUN
. PUNCT
Do AUX
n't PART
forget VERB
to PART
bow VERB
down ADP
onceevery NOUN
second ADJ
day NOUN
, PUNCT
and CCONJ
to PART
offer VERB
your PRON
first ADJ
born VERB
to ADP
the DET
almight ADV
omniscient NOUN
, PUNCT
omnipotent NOUN
, PUNCT
Mr. PROPN
Steve PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59130From NUM
: PUNCT
dsc@gemini.gsfc.nasa.gov PROPN
( PUNCT
Doug PROPN
S. PROPN
Caprette)Subject NUM
: PUNCT
CS PROPN
chemical NOUN
agentCan PROPN
anyone PRON
provide VERB
information NOUN
on ADP
CS PROPN
chemical NOUN
agent NOUN
-- PUNCT
the DET
tear ADJ
gas NOUN
used VERB
recentlyin NOUN
WACO NOUN
. PUNCT
  SPACE
Just ADV
what PRON
is AUX
it PRON
chemically ADV
, PUNCT
and CCONJ
what PRON
are AUX
its PRON
effects NOUN
on ADP
the DET
body?dsc@gemini.gsfc.nasa.gov PROPN
   SPACE
| PROPN
  SPACE
Regards PROPN
, PUNCT
         SPACE
| PROPN
   SPACE
Hughes PROPN
STX PROPN
                SPACE
| PROPN
    SPACE
Code PROPN
926.9 NUM
GSFC PROPN
        SPACE
| PROPN
| PROPN
  SPACE
Doug PROPN
Caprette PROPN
    SPACE
| CCONJ
   SPACE
Lanham PROPN
, PUNCT
Maryland PROPN
          SPACE
| PROPN
    SPACE
Greenbelt PROPN
, PUNCT
MD PROPN
  SPACE
20771 NUM
   SPACE
| PROPN
-------------------------------------------------------------------------------"A PROPN
path NOUN
is AUX
laid VERB
one NUM
stone NOUN
at ADP
a DET
time NOUN
" PUNCT
-- PUNCT
The DET
GiantNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59131From NUM
: PUNCT
annick@cortex.physiol.su.oz.au NOUN
( PUNCT
Annick PROPN
Ansselin)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?In PROPN
< X
C5nFDG.8En@sdf.lonestar.org PROPN
> X
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco PROPN
) PUNCT
writes:>>>>And VERB
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
that>>the DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
not>>cause PROPN
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
->>extracted PUNCT
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese PROPN
Restaurant>>Syndrome PROPN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it?MSG NUM
is AUX
mono PROPN
sodium PROPN
glutamate PROPN
, PUNCT
a DET
fairly ADV
straight ADJ
forward ADJ
compound NOUN
. PUNCT
If SCONJ
it PRON
ispure VERB
, PUNCT
the DET
source NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
. PUNCT
Your PRON
comment NOUN
suggests VERB
that SCONJ
impurities NOUN
may AUX
be AUX
the DET
cause NOUN
. PUNCT
My PRON
experience NOUN
of ADP
MSG PROPN
effects NOUN
( PUNCT
as SCONJ
part NOUN
of ADP
a DET
double ADJ
blind ADJ
study NOUN
) PUNCT
was AUX
that DET
thepure NOUN
stuff NOUN
caused VERB
me PRON
some DET
rather ADV
severe ADJ
effects.>I NOUN
was AUX
under ADP
the DET
( PUNCT
possibly ADV
incorrect VERB
) PUNCT
assumption NOUN
that SCONJ
most ADJ
of ADP
the DET
MSG NOUN
on ADP
> X
our PRON
foods NOUN
was AUX
made VERB
from ADP
processing VERB
sugar NOUN
beets NOUN
. PUNCT
Is AUX
this DET
not PART
true ADJ
? PUNCT
Are AUX
> X
there ADV
other ADJ
sources NOUN
of ADP
MSG?Soya PROPN
bean NOUN
, PUNCT
fermented VERB
cheeses NOUN
, PUNCT
mushrooms NOUN
all DET
contain VERB
MSG PROPN
. PUNCT
> X
I PRON
am AUX
one NUM
of ADP
those DET
folx NOUN
who PRON
react VERB
, PUNCT
sometimes ADV
strongly ADV
, PUNCT
to ADP
MSG PROPN
. PUNCT
However,>I PROPN
also ADV
react VERB
strongly ADV
to ADP
sodium NOUN
chloride NOUN
( PUNCT
table NOUN
salt NOUN
) PUNCT
in ADP
excess NOUN
. PUNCT
Each DET
> X
causes VERB
different ADJ
symptoms NOUN
except SCONJ
for ADP
the DET
common ADJ
one NUM
of ADP
rapid PROPN
heartbeat PROPN
> X
and CCONJ
an DET
uncomfortable ADJ
feeling NOUN
of ADP
pressure NOUN
in ADP
my PRON
chest NOUN
, PUNCT
upper ADJ
left VERB
quadrant NOUN
. PUNCT
The DET
symptoms NOUN
I PRON
had AUX
were AUX
numbness NOUN
of ADP
jaw NOUN
muscles NOUN
in ADP
the DET
first ADJ
instancefollowed VERB
by ADP
the DET
arms NOUN
then ADV
the DET
legs NOUN
, PUNCT
headache NOUN
, PUNCT
lethargy NOUN
and CCONJ
unable ADJ
to PART
keepawake VERB
. PUNCT
I PRON
think VERB
it PRON
may AUX
well ADV
affect VERB
people NOUN
differently ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59132From NUM
: PUNCT
lmegna@titan.ucs.umass.edu PROPN
( PUNCT
Lisa PROPN
Megna)Subject PROPN
: PUNCT
NeurofibromatosisHello INTJ
, PUNCT
I PRON
am AUX
writing VERB
a DET
grant NOUN
proposal NOUN
for ADP
a DET
Developmental PROPN
Genetics PROPN
class NOUN
and CCONJ
Ihave PROPN
chose VERB
to PART
look VERB
at ADP
the DET
Neurofibromatosis PROPN
1 NUM
gene NOUN
and CCONJ
its PRON
variableexpressivity NOUN
. PUNCT
  SPACE
I PRON
am AUX
curious ADJ
what PRON
has AUX
already ADV
been AUX
done VERB
on ADP
this DET
subject NOUN
, PUNCT
especially ADV
the DET
relationship NOUN
between ADP
specific ADJ
mutations NOUN
and CCONJ
the DET
resultingphenotype NOUN
. PUNCT
  SPACE
My PRON
literature NOUN
search NOUN
has AUX
produce VERB
many ADJ
references NOUN
, PUNCT
but CCONJ
I PRON
want VERB
tomake NOUN
sure ADJ
I PRON
am AUX
proposing VERB
new ADJ
research NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
knows VERB
aything NOUN
that PRON
has AUX
beenrecently ADV
or CCONJ
key ADJ
peopl NOUN
doing VERB
research NOUN
to PART
search VERB
for ADP
using VERB
MEDLINE PROPN
, PUNCT
I PRON
wouldapprciate VERB
being AUX
informed VERB
. PUNCT
Thank VERB
you PRON
. PUNCT
Lisa PROPN
Megnalmegna@titan.ucc.umass.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59133From NUM
: PUNCT
x92lee22@gw.wmich.eduSubject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
annick.735440726@cortex.physiol.su.oz.au NUM
> X
, PUNCT
annick@cortex.physiol.su.oz.au NOUN
( PUNCT
Annick PROPN
Ansselin PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
< X
C5nFDG.8En@sdf.lonestar.org PROPN
> X
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
> X
> X
And CCONJ
to PART
add VERB
further ADJ
fuel NOUN
to ADP
the DET
flame ADJ
war NOUN
, PUNCT
I PRON
read VERB
about ADV
20 NUM
years NOUN
ago ADV
that>>>the DET
" PUNCT
natural ADJ
" PUNCT
MSG PROPN
- PUNCT
extracted VERB
from ADP
the DET
sources NOUN
you PRON
mention VERB
above ADV
- PUNCT
does AUX
not>>>cause ADP
the DET
reported VERB
aftereffects NOUN
; PUNCT
it PRON
's AUX
only ADV
that ADV
nasty ADJ
" PUNCT
artificial ADJ
" PUNCT
MSG PROPN
->>>extracted PUNCT
from ADP
coal NOUN
tar NOUN
or CCONJ
whatever PRON
- PUNCT
that DET
causes VERB
Chinese ADJ
Restaurant>>>Syndrome NOUN
. PUNCT
  SPACE
I PRON
find VERB
this DET
pretty ADV
hard ADJ
to PART
believe VERB
; PUNCT
has AUX
anyone PRON
else ADV
heard VERB
it PRON
? PUNCT
> X
> X
MSG PROPN
is AUX
mono PROPN
sodium PROPN
glutamate PROPN
, PUNCT
a DET
fairly ADV
straight ADJ
forward ADJ
compound NOUN
. PUNCT
If SCONJ
it PRON
is AUX
> X
pure ADJ
, PUNCT
the DET
source NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
. PUNCT
Your PRON
comment NOUN
suggests VERB
that SCONJ
> PUNCT
impurities NOUN
may AUX
be AUX
the DET
cause NOUN
. PUNCT
> X
My PRON
experience NOUN
of ADP
MSG NOUN
effects NOUN
( PUNCT
as SCONJ
part NOUN
of ADP
a DET
double ADJ
blind ADJ
study NOUN
) PUNCT
was AUX
that SCONJ
the DET
> X
pure ADJ
stuff NOUN
caused VERB
me PRON
some DET
rather ADV
severe ADJ
effects NOUN
. PUNCT
> X
> X
> X
I PRON
was AUX
under ADP
the DET
( PUNCT
possibly ADV
incorrect VERB
) PUNCT
assumption NOUN
that SCONJ
most ADJ
of ADP
the DET
MSG PROPN
on>>our PROPN
foods NOUN
was AUX
made VERB
from ADP
processing VERB
sugar NOUN
beets NOUN
. PUNCT
Is AUX
this DET
not PART
true ADJ
? PUNCT
Are AUX
> X
> X
there ADV
other ADJ
sources NOUN
of ADP
MSG PROPN
? PUNCT
> X
> X
Soya PROPN
bean NOUN
, PUNCT
fermented VERB
cheeses NOUN
, PUNCT
mushrooms NOUN
all DET
contain VERB
MSG PROPN
. PUNCT
> X
> X
> X
I PRON
am AUX
one NUM
of ADP
those DET
folx NOUN
who PRON
react VERB
, PUNCT
sometimes ADV
strongly ADV
, PUNCT
to ADP
MSG PROPN
. PUNCT
However,>>I NOUN
also ADV
react VERB
strongly ADV
to ADP
sodium NOUN
chloride NOUN
( PUNCT
table NOUN
salt NOUN
) PUNCT
in ADP
excess NOUN
. PUNCT
Each>>causes NOUN
different ADJ
symptoms NOUN
except SCONJ
for ADP
the DET
common ADJ
one NUM
of ADP
rapid PROPN
heartbeat>>and PROPN
an DET
uncomfortable ADJ
feeling NOUN
of ADP
pressure NOUN
in ADP
my PRON
chest NOUN
, PUNCT
upper ADJ
left VERB
quadrant PROPN
. PUNCT
> X
> X
The DET
symptoms NOUN
I PRON
had AUX
were AUX
numbness NOUN
of ADP
jaw NOUN
muscles NOUN
in ADP
the DET
first ADJ
instance NOUN
> X
followed VERB
by ADP
the DET
arms NOUN
then ADV
the DET
legs NOUN
, PUNCT
headache NOUN
, PUNCT
lethargy NOUN
and CCONJ
unable ADJ
to PART
keep VERB
> X
awake ADJ
. PUNCT
I PRON
think VERB
it PRON
may AUX
well ADV
affect VERB
people NOUN
differently ADV
. PUNCT
Well INTJ
, PUNCT
I PRON
think VERB
msg NOUN
is AUX
made VERB
from ADP
a DET
kind NOUN
of ADP
plant NOUN
call NOUN
" PUNCT
tapioca ADJ
" PUNCT
and CCONJ
not PART
thosestaff VERB
you PRON
mentiond ADV
above ADV
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59134Subject INTJ
: PUNCT
Re ADP
: PUNCT
Broken VERB
ribFrom NOUN
: PUNCT
jc@oneb.almanac.bc.caHello PROPN
, PUNCT
I PRON
think VERB
you PRON
are AUX
probaly ADJ
right NOUN
, PUNCT
in ADP
spite NOUN
of ADP
the DET
movementit NOUN
is AUX
getting VERB
better ADJ
each DET
day NOUN
. PUNCT
  SPACE
cheers NOUN
           SPACE
jc@oneb.almanac.bc.ca PROPN
( PUNCT
John PROPN
Cross PROPN
) PUNCT
     SPACE
The DET
Old PROPN
Frog PROPN
's PART
Almanac PROPN
  SPACE
( PUNCT
Home PROPN
of ADP
The DET
Almanac PROPN
UNIX PROPN
Users PROPN
Group PROPN
) PUNCT
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
3205 NUM
( PUNCT
v32 NOUN
) PUNCT
    SPACE
< X
Public PROPN
Access PROPN
UseNet PROPN
> X
    SPACE
( PUNCT
604 NUM
) PUNCT
245 NUM
- SYM
4366 NUM
( PUNCT
2400x4 NUM
) PUNCT
        SPACE
Vancouver PROPN
Island PROPN
, PUNCT
British PROPN
Columbia PROPN
    SPACE
Waffle PROPN
XENIX PROPN
1.64 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59135From NUM
: PUNCT
u96_averba@vaxc.stevens-tech.eduSubject ADJ
: PUNCT
ArythmiaI PROPN
do AUX
n't PART
know VERB
if SCONJ
anyone PRON
knows VERB
about ADP
this DET
topic NOUN
: PUNCT
electrical ADJ
heart NOUN
failure NOUN
. PUNCT
One NUM
of ADP
my PRON
friends NOUN
has AUX
had VERB
to PART
go VERB
to ADP
the DET
doctor NOUN
becausehe PROPN
had AUX
chest NOUN
pains NOUN
. PUNCT
The DET
Doc PROPN
said VERB
it PRON
was AUX
Arythmia PROPN
. PUNCT
So ADV
he PRON
had AUX
togo PROPN
to ADP
a DET
new PROPN
york PROPN
hospital NOUN
for ADP
a DET
lot NOUN
of ADP
money NOUN
to PART
get AUX
treated VERB
. PUNCT
Hisdoctors NOUN
said VERB
that SCONJ
he PRON
could AUX
die VERB
from ADP
it PRON
, PUNCT
and CCONJ
the DET
medication NOUN
causedcancer NOUN
( PUNCT
that SCONJ
he PRON
was AUX
taking VERB
) PUNCT
. PUNCT
Well INTJ
, PUNCT
I PRON
suggested VERB
that SCONJ
he PRON
run VERB
, PUNCT
excersizeand PROPN
eat VERB
more ADJ
, PUNCT
( PUNCT
he PRON
is AUX
very ADV
skinny ADJ
) PUNCT
but CCONJ
he PRON
says VERB
that DET
has AUX
nothingto NOUN
do AUX
with ADP
it PRON
. PUNCT
Does AUX
anyone PRON
know VERB
what PRON
causes VERB
arythmia NOUN
and CCONJ
how ADV
it PRON
can AUX
be AUX
treated VERB
? PUNCT
			 SPACE
Thanks NOUN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59136From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Acutane PROPN
, PUNCT
Fibromyalgia PROPN
Syndrome PROPN
and CCONJ
CFS[reply PROPN
to ADP
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince PROPN
] PUNCT
> X
There PRON
is AUX
a DET
person NOUN
on ADP
the DET
FIDO PROPN
CFS PROPN
echo NOUN
who PRON
claims VERB
that SCONJ
he PRON
was AUX
cured VERB
of ADP
> X
CFS PROPN
by ADP
taking VERB
accutane PROPN
. PUNCT
  SPACE
He PRON
also ADV
claims VERB
that SCONJ
you PRON
are AUX
using VERB
it PRON
in ADP
the DET
> X
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
. PUNCT
  SPACE
Are AUX
you PRON
using VERB
accutane NOUN
in ADP
the DET
> X
treatment NOUN
of ADP
Fibromyalgia PROPN
Syndrome PROPN
? PUNCT
Yes INTJ
. PUNCT
> X
Have AUX
you PRON
used VERB
it PRON
for ADP
CFS PROPN
? PUNCT
It PRON
seems VERB
to PART
work VERB
equally ADV
well ADV
for ADP
CFS PROPN
, PUNCT
another DET
hint NOUN
that SCONJ
these DET
may AUX
bedifferent VERB
facets NOUN
of ADP
the DET
same ADJ
underlying ADJ
process NOUN
. PUNCT
> X
Have AUX
you PRON
gotten VERB
good ADJ
results NOUN
with ADP
it PRON
? PUNCT
Yes INTJ
. PUNCT
  SPACE
The DET
benefit NOUN
is AUX
usually ADV
evident ADJ
within ADP
a DET
few ADJ
days NOUN
of ADP
starting VERB
it PRON
. PUNCT
Most ADJ
of ADP
the DET
patients NOUN
for ADP
whom PRON
it PRON
has AUX
worked VERB
well ADV
continued VERB
low ADJ
- PUNCT
doseamitriptyline NOUN
, PUNCT
daily ADJ
aerobic ADJ
excersise NOUN
, PUNCT
and CCONJ
a DET
regular ADJ
sleep NOUN
schedule(current NOUN
standard ADJ
therapy NOUN
) PUNCT
. PUNCT
  SPACE
Because SCONJ
of ADP
the DET
cost NOUN
( PUNCT
usually ADV
> X
$ SYM
150 NUM
/ SYM
mo PROPN
. PROPN
,depending VERB
on ADP
dose PROPN
) PUNCT
and CCONJ
potential NOUN
for ADP
significant ADJ
side NOUN
effects NOUN
likecorneal VERB
injury NOUN
and CCONJ
birth NOUN
defects NOUN
, PUNCT
I PRON
currently ADV
reserve VERB
it PRON
for ADP
those DET
whofail NOUN
conventional ADJ
treatment NOUN
. PUNCT
  SPACE
It PRON
is AUX
important ADJ
that SCONJ
the DET
personprescribing NOUN
it PRON
have AUX
some DET
experience NOUN
with ADP
it PRON
and CCONJ
follow VERB
the DET
patientclosely NOUN
. PUNCT
> X
Are AUX
you PRON
aware ADJ
of ADP
any DET
double ADJ
blind ADJ
studies NOUN
on ADP
the DET
use NOUN
of ADP
accutane NOUN
in ADP
> X
these DET
conditions NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
. PUNCT
As ADV
far ADV
as SCONJ
I PRON
know VERB
, PUNCT
I PRON
am AUX
the DET
only ADJ
person NOUN
looking VERB
at ADP
it PRON
currently ADV
. PUNCT
  SPACE
Ishould PROPN
get AUX
off ADP
my PRON
duff NOUN
and CCONJ
finish VERB
writing VERB
up ADP
some DET
case NOUN
reports VERB
. PUNCT
  SPACE
I PRON
'm AUX
notan PROPN
academic ADJ
physician NOUN
, PUNCT
so CCONJ
I PRON
do AUX
n't PART
feel VERB
the DET
pressure NOUN
to PART
publish VERB
or CCONJ
perishand VERB
I PRON
do AUX
n't PART
have AUX
the DET
time NOUN
during ADP
the DET
work NOUN
day NOUN
for ADP
such ADJ
things NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59137From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)[reply NOUN
to ADP
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge PROPN
) PUNCT
] PUNCT
> X
Medicine PROPN
is AUX
not PART
a DET
totally ADV
scientific ADJ
endevour NOUN
. PUNCT
The DET
acquisition NOUN
of ADP
scientific ADJ
knowledge NOUN
is AUX
completely ADV
scientific ADJ
. PUNCT
  SPACE
Theapplication PROPN
of ADP
that DET
knowledge NOUN
in ADP
individual ADJ
cases NOUN
may AUX
be AUX
more ADJ
art NOUN
thanscience NOUN
. PUNCT
> X
There PRON
are AUX
diseases NOUN
that PRON
have AUX
n't PART
been AUX
described VERB
yet ADV
and CCONJ
the DET
root NOUN
cause SCONJ
> X
of ADP
many ADJ
diseases NOUN
now ADV
described VERB
are AUX
n't PART
known VERB
. PUNCT
( PUNCT
Read VERB
a DET
book NOUN
on ADP
> X
gastroenterology PROPN
sometime ADV
if SCONJ
you PRON
want VERB
to PART
see VERB
a DET
lot NOUN
of ADP
them PRON
. PUNCT
) PUNCT
After ADP
> X
scientific ADJ
methods NOUN
have AUX
run VERB
out ADV
then ADV
it PRON
's AUX
the DET
patient NOUN
's PART
freedom NOUN
of ADP
> PROPN
choice NOUN
to PART
try VERB
any DET
experimental ADJ
method NOUN
they PRON
choose VERB
. PUNCT
And CCONJ
it PRON
's AUX
well ADV
> X
recognized VERB
by ADP
many ADJ
doctors NOUN
that PRON
medicine NOUN
does AUX
n't PART
have AUX
all DET
the DET
answers NOUN
. PUNCT
Certainly ADV
we PRON
do AUX
n't PART
have AUX
all DET
the DET
answers NOUN
. PUNCT
  SPACE
The DET
question NOUN
is AUX
, PUNCT
what PRON
is AUX
themost ADJ
reliable ADJ
means NOUN
of ADP
acquiring VERB
further ADJ
medical ADJ
knowledge NOUN
? PUNCT
  SPACE
Thescientific PROPN
method NOUN
has AUX
proven VERB
itself PRON
to PART
be AUX
reliable ADJ
. PUNCT
  SPACE
The DET
* PUNCT
only ADV
* PUNCT
reasonalternative ADJ
therapies NOUN
are AUX
shunned VERB
by ADP
physicians NOUN
is AUX
that SCONJ
theirpractitioners NOUN
refuse VERB
to PART
submit VERB
their PRON
theories NOUN
to ADP
rigorous ADJ
scientificscrutiny NOUN
, PUNCT
insisting VERB
that SCONJ
" PUNCT
tradition NOUN
" PUNCT
or CCONJ
anecdotal ADJ
evidence NOUN
aresufficient NOUN
. PUNCT
  SPACE
These DET
have AUX
been AUX
shown VERB
many ADJ
times NOUN
in ADP
the DET
past NOUN
to PART
be AUX
veryunreliable ADJ
ways NOUN
of ADP
acquiring VERB
reliable ADJ
knowledge NOUN
. PUNCT
  SPACE
Crook PROPN
's PART
ideas NOUN
havenever NOUN
been AUX
backed VERB
up ADP
by ADP
scientific ADJ
evidence NOUN
. PUNCT
  SPACE
His PRON
unwillingness NOUN
to ADP
dogood NOUN
science NOUN
makes VERB
the DET
rest NOUN
of ADP
us PRON
doubt VERB
the DET
veracity NOUN
of ADP
his PRON
contentions NOUN
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59138From NUM
: PUNCT
des@helix.nih.gov PROPN
( PUNCT
David PROPN
E. PROPN
Scheim)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"In NOUN
article NOUN
< X
jschwimmer.123.735362184@wccnet.wcc.wesleyan.edu PROPN
> X
jschwimmer@wccnet.wcc.wesleyan.edu NOUN
( PUNCT
Josh PROPN
Schwimmer PROPN
) PUNCT
writes:>I've NOUN
recently ADV
listened VERB
to ADP
a DET
tape NOUN
by ADP
Dr. PROPN
Stanislaw PROPN
Burzynski PROPN
, PUNCT
in ADP
which PRON
he PRON
> X
claims VERB
to PART
have AUX
discovered VERB
a DET
series NOUN
naturally ADV
occuring VERB
peptides NOUN
with ADP
anti->cancer PROPN
properties NOUN
that SCONJ
he PRON
names VERB
antineoplastons NOUN
. PUNCT
  SPACE
Burzynski PROPN
says VERB
that SCONJ
his PRON
> X
work NOUN
has AUX
met VERB
with ADP
hostility NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
despite SCONJ
the DET
favorable ADJ
> X
responses NOUN
of ADP
his PRON
subjects NOUN
during ADP
clinical ADJ
trials.>What PROPN
is AUX
the DET
generally ADV
accepted VERB
opinion NOUN
of ADP
Dr. PROPN
Burzynski PROPN
's PART
research NOUN
? PUNCT
  SPACE
He PRON
> X
paints VERB
himself PRON
as SCONJ
a DET
lone ADJ
researcher NOUN
with ADP
a DET
new ADJ
breakthrough NOUN
battling VERB
an DET
> X
intolerant ADJ
medical ADJ
establishment NOUN
, PUNCT
but CCONJ
I PRON
have AUX
no DET
basis NOUN
from ADP
which PRON
to PART
judge VERB
> X
his PRON
claims NOUN
. PUNCT
  SPACE
Two NUM
weeks NOUN
ago ADV
, PUNCT
however ADV
, PUNCT
I PRON
read VERB
that SCONJ
the DET
NIH PROPN
's PART
Department PROPN
of ADP
> PROPN
Alternative PROPN
Medicine PROPN
has AUX
decided VERB
to PART
focus VERB
their PRON
attention NOUN
on ADP
Burzynski PROPN
's PART
> X
work NOUN
. PUNCT
  SPACE
Their PRON
budget NOUN
is AUX
so ADV
small ADJ
that SCONJ
I PRON
imagine VERB
they PRON
would AUX
n't PART
investigate VERB
a DET
> X
treatment NOUN
that PRON
did AUX
n't PART
seem VERB
promising.>Any NOUN
opinions NOUN
on ADP
Burzynski PROPN
's PART
antineoplastons NOUN
or CCONJ
information NOUN
about ADP
the DET
current ADJ
> X
status NOUN
of ADP
his PRON
research NOUN
would AUX
be AUX
appreciated.>-->Joshua PROPN
Schwimmer>jschwimmer@eagle.wesleyan.eduThere's PROPN
been AUX
extensive ADJ
discussion NOUN
on ADP
the DET
CompuServe PROPN
Cancer PROPN
Forum PROPN
about ADP
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
as SCONJ
a DET
result NOUN
of ADP
the DET
decision NOUN
of ADP
a DET
forum NOUN
member NOUN
's PART
father NOUN
to PART
undertake VERB
his PRON
treatment NOUN
for ADP
brain NOUN
glioblastoma PROPN
. PUNCT
  SPACE
This DET
disease NOUN
is AUX
universally ADV
and CCONJ
usually ADV
rapidly ADV
fatal ADJ
. PUNCT
  SPACE
After ADP
diagnosis NOUN
in ADP
June PROPN
1992 NUM
, PUNCT
the DET
tumor NOUN
was AUX
growing VERB
rapidly ADV
despite SCONJ
radiation NOUN
and CCONJ
chemotherapy NOUN
. PUNCT
  SPACE
The DET
forum NOUN
member NOUN
checked VERB
extensively ADV
on ADP
Dr. PROPN
Burzynki PROPN
's PART
track NOUN
record NOUN
for ADP
this DET
disease NOUN
. PUNCT
  SPACE
He PRON
spoke VERB
to ADP
a DET
few ADJ
patients NOUN
in ADP
complete ADJ
remission NOUN
for ADP
a DET
few ADJ
years NOUN
from ADP
glioblastoma PROPN
following VERB
this DET
treatment NOUN
and CCONJ
to ADP
an DET
NCI PROPN
oncologist NOUN
who PRON
had AUX
audited VERB
other ADJ
such ADJ
case NOUN
histories NOUN
and CCONJ
found VERB
them PRON
valid ADJ
and CCONJ
impressive ADJ
. PUNCT
  SPACE
After ADP
the DET
forum NOUN
member NOUN
's PART
father NOUN
began VERB
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
in ADP
September PROPN
, PUNCT
all DET
subsequent ADJ
scans NOUN
performed VERB
under ADP
the DET
auspices NOUN
of ADP
his PRON
oncologist NOUN
in ADP
Chicago PROPN
have AUX
shown VERB
no DET
tumor NOUN
growth NOUN
with ADP
possible ADJ
signs NOUN
of ADP
shrinkage NOUN
or CCONJ
necrosis NOUN
. PUNCT
The DET
patient NOUN
's PART
oncologist NOUN
, PUNCT
although SCONJ
telling VERB
him PRON
he PRON
would AUX
probably ADV
not PART
live VERB
past ADP
December PROPN
1992 NUM
, PUNCT
was AUX
vehemently ADV
opposed VERB
to ADP
his PRON
trying VERB
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
. PUNCT
  SPACE
Since SCONJ
the DET
tumor NOUN
stopped VERB
its PRON
rapid ADJ
growth NOUN
under ADP
Dr. PROPN
Burzynski PROPN
's PART
treatment NOUN
, PUNCT
she PRON
's AUX
since SCONJ
changed VERB
her PRON
attitude NOUN
toward ADP
continuing VERB
these DET
treatments NOUN
, PUNCT
saying VERB
" PUNCT
if SCONJ
it PRON
ai VERB
n't PART
broke VERB
, PUNCT
do AUX
n't PART
fix VERB
it PRON
. PUNCT
"Dr PUNCT
. PUNCT
Burzynski PROPN
is AUX
an DET
M.D. PROPN
, PUNCT
Ph.D. NOUN
with ADP
a DET
research NOUN
background NOUN
who PRON
found VERB
a DET
protein NOUN
that PRON
is AUX
at ADP
very ADV
low ADJ
serum ADJ
levels NOUN
in ADP
cancer NOUN
patients NOUN
, PUNCT
synthesized VERB
it PRON
, PUNCT
and CCONJ
administers VERB
it PRON
to ADP
patients NOUN
with ADP
certain ADJ
cancer NOUN
types NOUN
. PUNCT
  SPACE
There PRON
is AUX
little ADJ
understanding NOUN
of ADP
the DET
actual ADJ
mechanism NOUN
of ADP
activity./*********************************************************************// PROPN
* PUNCT
                      SPACE
--- PUNCT
David PROPN
E. PROPN
Scheim PROPN
--- PUNCT
                      SPACE
* PUNCT
// SYM
* PUNCT
BITNET NOUN
: PUNCT
none NOUN
                                                      SPACE
* PUNCT
// SYM
* PUNCT
INTERNET NOUN
: PUNCT
desl@helix.nih.gov VERB
          SPACE
PHONE NOUN
: PUNCT
301 NUM
496 NUM
- SYM
2194 NUM
         SPACE
* PUNCT
// SYM
* PUNCT
CompuServe NOUN
: PUNCT
73750,3305 NUM
                  SPACE
FAX PROPN
: PUNCT
301 NUM
402 NUM
- SYM
1065 NUM
         SPACE
* PUNCT
// SYM
* PUNCT
                                                                   SPACE
* PUNCT
// SYM
* PUNCT
DISCLAIMER NOUN
: PUNCT
These DET
comments NOUN
are AUX
offered VERB
to PART
share VERB
knowledge NOUN
based VERB
   SPACE
* PUNCT
// SYM
* PUNCT
   SPACE
upon SCONJ
my PRON
personal ADJ
views NOUN
. PUNCT
  SPACE
They PRON
do AUX
not PART
represent VERB
the DET
positions NOUN
    SPACE
* PUNCT
// SYM
* PUNCT
   SPACE
of ADP
my PRON
employer NOUN
. PUNCT
                                                 SPACE
* PUNCT
//*********************************************************************/Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59139From NUM
: PUNCT
cerulean@access.digex.com X
( PUNCT
Bill PROPN
Christens PROPN
- PUNCT
Barry)Subject PROPN
: PUNCT
cytoskeleton PROPN
dynamicsI'm PROPN
looking VERB
for ADP
good ADJ
background NOUN
and CCONJ
review VERB
paper NOUN
references NOUN
that PRON
can AUX
help VERB
meunderstand VERB
the DET
dynamics NOUN
of ADP
cytoskeleton PROPN
in ADP
normal ADJ
and CCONJ
transformed VERB
cells NOUN
. PUNCT
  SPACE
Inparticular PROPN
, PUNCT
I PRON
'm AUX
not PART
interested ADJ
in ADP
translational ADJ
behavior NOUN
and CCONJ
cell NOUN
motility NOUN
, PUNCT
but CCONJ
rather ADV
in ADP
the DET
internal ADJ
motions NOUN
of ADP
the DET
cytoskeleton NOUN
and CCONJ
its PRON
componentsunder NOUN
normal ADJ
and CCONJ
transformed VERB
circumstances NOUN
. PUNCT
Also ADV
, PUNCT
I PRON
'd AUX
appreciate VERB
any DET
data NOUN
on ADP
force NOUN
constants NOUN
, PUNCT
mechanical ADJ
, PUNCT
and CCONJ
elasticproperties NOUN
of ADP
microtubules NOUN
, PUNCT
and CCONJ
viscous ADJ
properties NOUN
of ADP
cytoplasm NOUN
. PUNCT
  SPACE
Any DET
otherinfo NOUN
relevant ADJ
to ADP
the DET
vibrational ADJ
or CCONJ
acoustical ADJ
properties NOUN
of ADP
these DET
wouldbe NOUN
useful ADJ
to ADP
me PRON
. PUNCT
Thanks NOUN
... PUNCT
Bill NOUN
Christens-Barrycerulean@access.digex.comNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59140From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Selective ADJ
PlaceboL PROPN
( PUNCT
> X
  SPACE
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin PROPN
) PUNCT
writes VERB
: PUNCT
L NOUN
( PUNCT
> X
  SPACE
John PROPN
Badanes PROPN
wrote VERB
: PUNCT
L NOUN
( PUNCT
> X
  SPACE
|JB NOUN
> PROPN
  SPACE
1 NUM
) PUNCT
Ron PROPN
... PUNCT
what PRON
do AUX
YOU PRON
consider VERB
to PART
be AUX
" PUNCT
proper ADJ
channels" NOUN
... PUNCT
L NOUN
( PUNCT
> X
  SPACE
L PROPN
( PUNCT
> X
  SPACE
| ADP
  SPACE
I PRON
'm AUX
glad ADJ
it PRON
caught VERB
your PRON
eye NOUN
. PUNCT
That DET
's AUX
the DET
purpose NOUN
of ADP
this DET
forum NOUN
toL NOUN
( PUNCT
> X
  SPACE
| ADV
educate VERB
those DET
, PUNCT
eager ADJ
to PART
learn VERB
, PUNCT
about ADP
the DET
facts NOUN
of ADP
life NOUN
. PUNCT
That DET
phraseL PROPN
( PUNCT
> X
  SPACE
| PROPN
is AUX
used VERB
to PART
bridle VERB
the DET
frenzy NOUN
of ADP
all DET
the DET
would AUX
- PUNCT
be AUX
respondents NOUN
, PUNCT
whoL PROPN
( PUNCT
> X
  SPACE
| ADV
otherwise ADV
would AUX
feel VERB
being AUX
left VERB
out ADP
as SCONJ
the DET
proper ADJ
authorities NOUN
to PART
beL VERB
( PUNCT
> X
  SPACE
| PROPN
consulted VERB
on ADP
that DET
topic NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
means VERB
absolutely ADV
nothing PRON
. PUNCT
L NOUN
( PUNCT
> X
  SPACE
L PROPN
( PUNCT
> X
  SPACE
An DET
apt ADJ
description NOUN
of ADP
the DET
content NOUN
of ADP
just ADV
about ADP
all DET
Ron PROPN
Roth PROPN
's PART
L PROPN
( PUNCT
> X
  SPACE
posts NOUN
to ADP
date NOUN
. PUNCT
  SPACE
At ADP
least ADV
there PRON
's AUX
entertainment NOUN
value NOUN
( PUNCT
though SCONJ
it PRON
L PROPN
( PUNCT
> X
  SPACE
is AUX
diminishing VERB
) PUNCT
. PUNCT
     SPACE
Well INTJ
, PUNCT
that DET
's AUX
easy ADJ
for ADP
* PUNCT
YOU PRON
* PUNCT
to PART
say VERB
. PUNCT
  SPACE
All DET
* PUNCT
YOU PRON
* PUNCT
have AUX
to PART
do AUX
is AUX
sit VERB
      SPACE
back ADV
, PUNCT
soak VERB
it PRON
all DET
in ADV
, PUNCT
try VERB
it PRON
out ADP
on ADP
your PRON
patients NOUN
, PUNCT
and CCONJ
then ADV
brag VERB
     SPACE
to ADP
all DET
your PRON
colleagues NOUN
about ADP
that DET
incredibly ADV
success ADJ
rate NOUN
you PRON
're AUX
     SPACE
having VERB
all DET
of ADV
a ADV
sudden ADJ
... PUNCT
     SPACE
--Ron----- PUNCT
   SPACE
RoseReader PROPN
2.00 NUM
  SPACE
P003228 PROPN
: PUNCT
For ADP
real ADJ
sponge NOUN
cake NOUN
, PUNCT
borrow VERB
all DET
ingredients NOUN
. PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59141From NUM
: PUNCT
sheryl@seas.gwu.edu PROPN
( PUNCT
Sheryl PROPN
Coppenger)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr21.024103.29880@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr20.212706.820@lrc.edu NUM
> X
kjiv@lrc.edu NUM
writes:>>Can ADP
someone PRON
tell VERB
me PRON
whether SCONJ
or CCONJ
not PART
any DET
of ADP
the DET
following VERB
medications NOUN
> X
> X
has AUX
been AUX
linked VERB
to ADP
rapid ADJ
/ SYM
excessive ADJ
weight NOUN
gain NOUN
and/or CCONJ
a DET
distorted ADJ
> X
> X
sense NOUN
of ADP
taste NOUN
or CCONJ
smell NOUN
: PUNCT
  SPACE
Hismanal PROPN
; PUNCT
Azmacort PROPN
( PUNCT
a DET
topical ADJ
steroid NOUN
to ADP
> X
> X
prevent PROPN
asthma PROPN
) PUNCT
; PUNCT
Vancenase.>>Hismanal PROPN
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to ADP
weight NOUN
gain.>It PROPN
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect,>and PROPN
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedly ADV
> X
doesn't ADV
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to PART
cause VERB
> X
drowsiness.>So NUM
antihistamines NOUN
can AUX
cause VERB
weight NOUN
gain NOUN
. PUNCT
  SPACE
NOW ADV
they PRON
tell VERB
me PRON
. PUNCT
: PUNCT
-)Is PUNCT
there PRON
any DET
way NOUN
to PART
find VERB
out ADP
which PRON
do AUX
& CCONJ
which PRON
do AUX
n't PART
? PUNCT
  SPACE
My PRON
doctorobviously ADV
is AUX
asleep ADJ
at ADP
the DET
wheel NOUN
. PUNCT
The DET
original ADJ
poster NOUN
mentioned VERB
fatigue NOUN
. PUNCT
  SPACE
I PRON
had AUX
that DET
too ADV
, PUNCT
but CCONJ
it PRON
wasmostly ADV
due ADP
to ADP
the DET
really ADV
bizarre ADJ
dreams NOUN
I PRON
was AUX
having VERB
-- PUNCT
I PRON
was AUX
n't PART
gettingany ADJ
rest NOUN
. PUNCT
  SPACE
My PRON
doctor NOUN
said VERB
that DET
was AUX
a DET
common ADJ
reaction NOUN
. PUNCT
  SPACE
If SCONJ
astemizoledoesn't PROPN
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
, PUNCT
how ADV
does AUX
it PRON
cause VERB
that DET
sideeffect NOUN
? PUNCT
  SPACE
Any DET
ideas?-- PROPN
Sheryl PROPN
Coppenger PROPN
    SPACE
SEAS VERB
Computing PROPN
Facility PROPN
Staff PROPN
	 SPACE
sheryl@seas.gwu.edu PROPN
		     SPACE
The DET
George PROPN
Washington PROPN
University PROPN
	 SPACE
( PUNCT
202 NUM
) PUNCT
994 NUM
- SYM
6853 NUM
          SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59142From NUM
: PUNCT
bruce@Data PROPN
- PUNCT
IO.COM PROPN
( PUNCT
Bruce PROPN
Reynolds)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?smjeff@lerc05.lerc.nasa.gov PROPN
( PUNCT
Jeff PROPN
Miller PROPN
) PUNCT
writes:>Even VERB
properly ADV
controlled VERB
studies NOUN
( PUNCT
e.g. ADV
double ADJ
blind ADJ
studies NOUN
) PUNCT
are AUX
almost ADV
> X
useless ADJ
if SCONJ
you PRON
are AUX
trying VERB
to PART
prove VERB
that SCONJ
something PRON
does AUX
not PART
affect VERB
anyone.-- ADP
and CCONJ
-->In X
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>The PROPN
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of ADP
> X
a DET
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving VERB
> X
the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the DET
> X
most ADV
likely ADJ
explanation NOUN
for ADP
events.>Good PROPN
grief NOUN
; PUNCT
has AUX
no DET
one NOUN
ever ADV
heard VERB
of ADP
Biostatistics NOUN
? PUNCT
? PUNCT
  SPACE
The DET
University PROPN
ofWashington PROPN
( PUNCT
plus CCONJ
3 NUM
or CCONJ
4 NUM
others NOUN
[ PUNCT
Harvard PROPN
, PUNCT
UNC PROPN
] PUNCT
) PUNCT
has AUX
a DET
department NOUN
andadvanced VERB
degree NOUN
program NOUN
in ADP
Biostatistics NOUN
. PUNCT
  SPACE
My PRON
wife NOUN
has AUX
an DET
MS PROPN
Biostat PROPN
, PUNCT
andthere NOUN
are AUX
plenty ADJ
of ADP
MDs NOUN
, PUNCT
PhDs PROPN
, PUNCT
and CCONJ
postdocs ADV
doing VERB
Biostatistical ADJ
work NOUN
. PUNCT
People NOUN
do AUX
this DET
for ADP
a DET
living NOUN
. PUNCT
  SPACE
Really ADV
bright ADJ
people NOUN
study VERB
for ADP
decades NOUN
to ADP
dothis DET
sort NOUN
of ADP
study NOUN
well ADV
. PUNCT
Anecedotal ADJ
evidence NOUN
is AUX
worthless ADJ
. PUNCT
  SPACE
Even ADV
doctors NOUN
who PRON
have AUX
been AUX
using VERB
a DET
drugor NOUN
treatment NOUN
for ADP
years NOUN
, PUNCT
and CCONJ
who PRON
swear VERB
it PRON
is AUX
effective ADJ
, PUNCT
are AUX
often ADV
suprisedat ADJ
the DET
results NOUN
of ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
MSG PROPN
causes NOUN
describable ADJ
, PUNCT
reportable ADJ
, PUNCT
documentable ADJ
symptoms NOUN
should AUX
be AUX
pretty ADV
simple ADJ
to PART
discover VERB
. PUNCT
  SPACE
The DET
last ADJ
study NOUN
on ADP
which PRON
my PRON
wife NOUN
worked VERB
employed VERB
200 NUM
nurses NOUN
, PUNCT
100 NUM
doctors NOUN
, PUNCT
and CCONJ
a DET
dozen NOUN
Ph PROPN
. PUNCT
Ds PROPN
at ADP
one NUM
University PROPN
and CCONJ
at ADP
70 NUM
hospitals NOUN
in ADP
five NUM
nations NOUN
. PUNCT
  SPACE
Iwould AUX
think VERB
the DET
MSG PROPN
question NOUN
could AUX
be AUX
settled VERB
by ADP
one NUM
lowly ADJ
Biostat PROPN
MSstudent PROPN
in ADP
a DET
thesis.--bruceNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59143From NUM
: PUNCT
stgprao@st.unocal.COM NOUN
( PUNCT
Richard PROPN
Ottolini)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyLiving PROPN
things NOUN
maintain VERB
small ADJ
electric ADJ
fields NOUN
to ADP
( PUNCT
1 X
) PUNCT
enhance VERB
certainchemical ADJ
reactions NOUN
, PUNCT
( PUNCT
2 X
) PUNCT
promote VERB
communication NOUN
of ADP
states NOUN
with ADP
in ADP
a DET
cell,(3 NOUN
) PUNCT
communicate NOUN
between ADP
cells NOUN
( PUNCT
of ADP
which PRON
the DET
nervous ADJ
system NOUN
is AUX
a DET
specializedexample NOUN
) PUNCT
, PUNCT
and CCONJ
perhaps ADV
other ADJ
uses NOUN
. PUNCT
  SPACE
These DET
electric ADJ
fields NOUN
change VERB
with ADP
locationand NOUN
time NOUN
in ADP
a DET
large ADJ
organism NOUN
. PUNCT
  SPACE
Special ADJ
photographic ADJ
techniques NOUN
such ADJ
as SCONJ
applyingexternal ADJ
fields NOUN
in ADP
Kirillian ADJ
photography NOUN
interact VERB
with ADP
these DET
fields NOUN
or CCONJ
the DET
resistancescaused VERB
by ADP
these DET
fields NOUN
to PART
make VERB
interesting ADJ
pictures NOUN
. PUNCT
Perhaps ADV
such ADJ
pictures NOUN
willbe PROPN
diagonistic PROPN
of ADP
disease NOUN
problems NOUN
in ADP
organisms NOUN
when ADV
better ADV
understood VERB
. PUNCT
Perhaps ADV
not PART
. PUNCT
Studying VERB
the DET
overall ADJ
electric ADJ
activity NOUN
of ADP
biological ADJ
systems NOUN
is AUX
several ADJ
hundredyears NOUN
old ADJ
, PUNCT
but CCONJ
not PART
a DET
popular ADJ
activity NOUN
. PUNCT
  SPACE
Perhaps ADV
, PUNCT
except SCONJ
in ADP
the DET
case NOUN
of ADP
a DET
fewtissues NOUN
like SCONJ
nerves NOUN
and CCONJ
the DET
electric ADJ
senses NOUN
of ADP
fishes NOUN
, PUNCT
it PRON
is AUX
hard ADJ
to PART
reduce VERB
theinvestigation NOUN
into ADP
small ADJ
pieces NOUN
that PRON
can AUX
be AUX
clearly ADV
analyzed VERB
. PUNCT
  SPACE
There PRON
are AUX
somehints NOUN
that SCONJ
manipulating VERB
electric ADJ
fields NOUN
is AUX
a DET
useful ADJ
therapy NOUN
such ADJ
as SCONJ
speedingthe NOUN
healing NOUN
of ADP
broken VERB
bones NOUN
, PUNCT
but CCONJ
not PART
understood VERB
why ADV
. PUNCT
Bioelectricity NOUN
has AUX
a DET
long ADJ
association NOUN
with ADP
mysticism NOUN
. PUNCT
Ideas NOUN
such ADJ
as SCONJ
Frankensteinreanimation PROPN
go VERB
back ADV
to ADP
the DET
most ADV
early ADJ
electrical ADJ
experiments NOUN
on ADP
tissue NOUN
such ADJ
aswhen NOUN
Volta PROPN
invented VERB
the DET
battery NOUN
. PUNCT
  SPACE
I PRON
personally ADV
do AUX
n't PART
care VERB
to PART
revert VERB
to PART
supernaturalcause VERB
to PART
explain VERB
things NOUN
we PRON
do AUX
n't PART
yet ADV
understand VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59144From NUM
: PUNCT
Tammy.Vandenboom@launchpad.unc.edu NUM
( PUNCT
Tammy PROPN
Vandenboom)Subject NOUN
: PUNCT
sore ADJ
spot NOUN
on ADP
testiclesMy PROPN
husband NOUN
woke VERB
up ADP
three NUM
days NOUN
ago ADV
with ADP
a DET
small ADJ
sore ADJ
spot(a PROPN
spot NOUN
about ADP
the DET
size NOUN
of ADP
a DET
nickel NOUN
) PUNCT
on ADP
one NUM
of ADP
his PRON
testicles NOUN
. PUNCT
Bottom ADJ
side NOUN
, PUNCT
no DET
knots NOUN
or CCONJ
lumps NOUN
, PUNCT
just ADV
a DET
little ADJ
sore ADJ
spot NOUN
. PUNCT
  SPACE
He PRON
says VERB
it PRON
reminds VERB
him PRON
of ADP
how ADV
a DET
bruise NOUN
feels VERB
. PUNCT
  SPACE
He PRON
has AUX
no DET
recollection NOUN
of ADP
hitting VERB
it PRON
or CCONJ
anything PRON
likethat PRON
that PRON
would AUX
cause VERB
a DET
bruise NOUN
. PUNCT
( PUNCT
He PRON
asssures VERB
me PRON
he PRON
'd AUX
remember VERB
somethinglike NOUN
that SCONJ
:-) PUNCT
Any DET
clues NOUN
as SCONJ
to ADP
what PRON
it PRON
might AUX
be AUX
? PUNCT
  SPACE
He PRON
's AUX
somewhat ADV
of ADP
a DET
hypochondriac NOUN
( PUNCT
sp?)so NOUN
he PRON
's AUX
sure ADJ
he PRON
's AUX
gon VERB
na PART
die VERB
. PUNCT
. PUNCT
.Thanks!!-- PUNCT
   SPACE
The DET
opinions NOUN
expressed VERB
are AUX
not PART
necessarily ADV
those DET
of ADP
the DET
University PROPN
of ADP
     SPACE
North PROPN
Carolina PROPN
at ADP
Chapel PROPN
Hill PROPN
, PUNCT
the DET
Campus PROPN
Office PROPN
for ADP
Information PROPN
        SPACE
Technology PROPN
, PUNCT
or CCONJ
the DET
Experimental PROPN
Bulletin PROPN
Board PROPN
Service PROPN
. PUNCT
           SPACE
internet NOUN
: PUNCT
  SPACE
laUNChpad.unc.edu PROPN
or CCONJ
152.2.22.80Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59145From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Thrush PROPN
( PUNCT
was AUX
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)In NOUN
article NOUN
< X
21APR199308571323@ucsvax.sdsu.edu X
> X
mccurdy@ucsvax.sdsu.edu PROPN
( PUNCT
McCurdy PROPN
M. PROPN
) PUNCT
writes:>My PROPN
dentist NOUN
( PUNCT
who PRON
sees VERB
a DET
fair ADJ
amount NOUN
of ADP
thrush NOUN
) PUNCT
recommended VERB
acidophilous:>After PROPN
I PRON
began VERB
taking VERB
acidophilous ADJ
on ADP
a DET
daily ADJ
basis NOUN
, PUNCT
the DET
outbreaks NOUN
ceased.>When ADV
I PRON
quit VERB
taking VERB
the DET
acidophilous ADJ
, PUNCT
the DET
outbreaks NOUN
periodically ADV
resumed VERB
. PUNCT
> X
I PRON
resumed VERB
taking VERB
the DET
acidophilous ADJ
with ADP
no DET
further ADJ
outbreaks NOUN
since SCONJ
then ADV
. PUNCT
This DET
is AUX
the DET
second ADJ
post NOUN
which PRON
seems VERB
to PART
be AUX
blurring VERB
the DET
distinctionbetween PROPN
real ADJ
disease NOUN
caused VERB
by ADP
Candida PROPN
albicans NOUN
and CCONJ
the DET
" PUNCT
disease"that PRON
was AUX
being AUX
asked VERB
about ADP
, PUNCT
systemic ADJ
yeast NOUN
syndrome NOUN
. PUNCT
There PRON
is AUX
no DET
question NOUN
that SCONJ
Candida PROPN
albicans PROPN
causes VERB
thrush ADJ
. PUNCT
  SPACE
It PRON
alsoseems VERB
to PART
be AUX
the DET
case NOUN
that SCONJ
active ADJ
yogurt PROPN
cultures NOUN
with ADP
acidophilousmay ADJ
reduce VERB
recurrences NOUN
of ADP
thrush NOUN
at ADP
least ADJ
for ADP
vaginal ADJ
thrush NOUN
-- PUNCT
I PRON
've AUX
never ADV
heard VERB
of ADP
anyone PRON
taking VERB
it PRON
for ADP
oral ADJ
thrush NOUN
before ADV
( PUNCT
though SCONJ
presumably ADV
it PRON
would AUX
work VERB
by ADP
the DET
same ADJ
mechanism).Candida PROPN
is AUX
clearly ADV
a DET
common ADJ
minor ADJ
pathogen NOUN
and CCONJ
a DET
less ADV
common ADJ
majorpathogen NOUN
. PUNCT
  SPACE
That DET
does AUX
not PART
mean VERB
that SCONJ
there PRON
is AUX
evidence NOUN
that SCONJ
it PRON
causesthe VERB
" PUNCT
systemic ADJ
yeast NOUN
syndrome".-- PUNCT
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59146From NUM
: PUNCT
jacquier@gsbux1.uchicago.edu PROPN
( PUNCT
Eric PROPN
Jacquier PROPN
) PUNCT
Subject NOUN
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?Hello NOUN
, PUNCT
I PRON
am AUX
interested ADJ
in ADP
trying VERB
this DET
" PUNCT
desensitization NOUN
" PUNCT
( PUNCT
? PUNCT
) PUNCT
methodagainst ADP
hay PROPN
fever NOUN
. PUNCT
What PRON
is AUX
the DET
state NOUN
of ADP
affairs NOUN
about ADP
this DET
. PUNCT
I PRON
went VERB
to ADP
a DET
doctor NOUN
andpaid VERB
$ SYM
85 NUM
for ADP
a DET
10 NUM
minute NOUN
interview NOUN
+ CCONJ
3 NUM
scratches NOUN
, PUNCT
leading VERB
to ADP
thediagnostic ADJ
that SCONJ
I PRON
am AUX
allergic ADJ
to ADP
( PUNCT
June PROPN
and CCONJ
Timothy PROPN
) PUNCT
grass NOUN
. PUNCT
I PRON
believe VERB
this DET
. PUNCT
From ADP
now ADV
on ADP
it PRON
looks VERB
like SCONJ
2 NUM
shots NOUN
per ADP
week NOUN
for6 NOUN
months NOUN
followed VERB
by ADP
1 NUM
shot NOUN
per ADP
month NOUN
or CCONJ
so ADV
. PUNCT
Each DET
shot NOUN
costs$20 NOUN
. PUNCT
Talking VERB
about ADP
soaring VERB
costs NOUN
and CCONJ
the DET
Health PROPN
care NOUN
system NOUN
, PUNCT
I PRON
wouldcall VERB
that SCONJ
a DET
racket NOUN
. PUNCT
We PRON
are AUX
not PART
talking VERB
about ADP
rare ADJ
Amazonian PROPN
grasseshere NOUN
, PUNCT
but CCONJ
the DET
garbage NOUN
which PRON
grows VERB
behind ADP
the DET
doctor NOUN
's PART
office NOUN
. PUNCT
Apart ADV
from ADP
this DET
issue NOUN
, PUNCT
I PRON
was AUX
somewhat ADV
disappointed ADJ
to PART
find VERB
outthat ADP
you PRON
have AUX
to PART
keep VERB
getting VERB
the DET
shots NOUN
forever ADV
. PUNCT
Is AUX
that SCONJ
right?Thanks NOUN
for ADP
information NOUN
. PUNCT
Ej INTJ
   SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59147From NUM
: PUNCT
williamt@athena NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
William PROPN
Turnbow)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Discussions NOUN
on ADP
alt.psychoactivesIn PROPN
article NOUN
< X
1r4bhsINNhaf@hp-col.col.hp.com NUM
> X
billc@col.hp.com X
( PUNCT
Bill PROPN
Claussen PROPN
) PUNCT
writes:>>This DET
group NOUN
was AUX
originally ADV
a DET
takeoff NOUN
from ADP
sci.med VERB
. PUNCT
  SPACE
The DET
reason NOUN
for ADP
> X
the DET
formation NOUN
of ADP
this DET
group NOUN
was AUX
to PART
discuss VERB
prescription NOUN
psychoactive ADJ
> X
drugs NOUN
.... PUNCT
such ADJ
as SCONJ
... PUNCT
> X
> X
Oh INTJ
well INTJ
, PUNCT
obviously ADV
, PUNCT
no DET
one NOUN
really ADV
cares.--- VERB
	 SPACE
Then ADV
let VERB
me PRON
ask VERB
you PRON
for ADP
a DET
" PUNCT
workable ADJ
" PUNCT
solution NOUN
. PUNCT
  SPACE
We PRON
have AUX
a DET
namehere NOUN
that PRON
implies VERB
certain ADJ
things NOUN
to ADP
many ADJ
people NOUN
. PUNCT
  SPACE
Rather ADV
than SCONJ
tryingto NOUN
educate VERB
each DET
and CCONJ
every DET
person NOUN
that PRON
comes VERB
to ADP
the DET
group NOUN
-- PUNCT
is AUX
theresome ADJ
" PUNCT
name NOUN
" PUNCT
that PRON
would AUX
imply VERB
what PRON
this DET
group NOUN
was AUX
originallyintended VERB
for ADP
? PUNCT
 	 SPACE
My PRON
dad NOUN
was AUX
a DET
lawyer NOUN
-- PUNCT
as SCONJ
such ADJ
I PRON
grew VERB
up ADP
with ADP
being AUX
a DET
sticklerfor NOUN
" PUNCT
meaning NOUN
" PUNCT
. PUNCT
  SPACE
In ADP
my PRON
" PUNCT
reality NOUN
" PUNCT
, PUNCT
psychoactives NOUN
* PUNCT
technically ADV
* PUNCT
could AUX
range VERB
from ADP
caffeine NOUN
to ADP
datura NOUN
to ADP
the DET
drugs NOUN
you PRON
mention VERB
to ADP
morestandard VERB
recreational ADJ
drugs NOUN
. PUNCT
  SPACE
In ADP
practice NOUN
I PRON
had AUX
hoped VERB
to PART
see VERB
itlimited VERB
to ADP
those DET
that PRON
were AUX
above ADP
some DET
psychoactive ADJ
level NOUN
-- PUNCT
likesome NOUN
of ADP
the DET
drugs NOUN
you PRON
mention VERB
, PUNCT
but CCONJ
also ADV
possibly ADV
including VERB
* PUNCT
some*recreational ADJ
drugs NOUN
-- PUNCT
but CCONJ
with ADP
conversation NOUN
limited VERB
to ADP
their PRON
psychoactive ADJ
effects NOUN
-- PUNCT
the DET
recent ADJ
query NOUN
about ADP
" PUNCT
bong PROPN
water NOUN
" PUNCT
, PUNCT
I PRON
thought VERB
was AUX
a DET
bitoff ADJ
topic NOUN
-- PUNCT
so ADV
I PRON
just ADV
hit VERB
" PUNCT
k NOUN
" PUNCT
. PUNCT
	 SPACE
But CCONJ
back ADV
to ADP
the DET
original ADJ
question NOUN
-- PUNCT
what PRON
is AUX
a DET
workable ADJ
solution NOUN
--what VERB
is AUX
a DET
workable ADJ
name NOUN
that PRON
would AUX
imply VERB
the DET
topic NOUN
you PRON
with ADP
todiscuss PROPN
? PUNCT
  SPACE
It PRON
sounds VERB
like SCONJ
there PRON
should AUX
be AUX
a DET
alt.smartdrugs PROPN
, PUNCT
or CCONJ
somethingsimilar NOUN
-- PUNCT
I PRON
do AUX
n't PART
feel VERB
psychoactives NOUN
would AUX
generally ADV
be AUX
used VERB
todescribe PROPN
alot NOUN
of ADP
those DET
drugs NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
big ADJ
difference NOUN
between ADP
adrug PROPN
that SCONJ
if SCONJ
taken VERB
in ADP
" PUNCT
certain ADJ
doses NOUN
, PUNCT
over ADP
a DET
period NOUN
of ADP
days NOUN
may AUX
havea VERB
psychoactive ADJ
effect NOUN
in ADP
some DET
people NOUN
" PUNCT
, PUNCT
vs. ADP
many ADJ
of ADP
the DET
drugs NOUN
inPIHKAH PROPN
which PRON
* PUNCT
are AUX
* PUNCT
psychoactive.wm-- NOUN
: PUNCT
: PUNCT
If SCONJ
pro ADJ
- ADJ
choice ADJ
means VERB
choice NOUN
after ADP
conception NOUN
, PUNCT
does AUX
this DET
apply VERB
to ADP
men NOUN
too ADV
? PUNCT
: PUNCT
: PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59148From NUM
: PUNCT
matthews@Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews)Subject PROPN
: PUNCT
Re ADP
: PUNCT
GETTING VERB
AIDS PROPN
FROM ADP
ACUPUNCTURE NOUN
NEEDLESIn NOUN
article NOUN
< X
1r4f8b$euu@agate.berkeley.edu NUM
> X
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff VERB
) PUNCT
writes VERB
: PUNCT
> X
> X
   SPACE
someone PRON
wrote VERB
in ADP
expressing VERB
concern NOUN
about ADP
getting VERB
AIDS PROPN
from ADP
acupuncture NOUN
> X
   SPACE
needles NOUN
..... PUNCT
>>Unless NOUN
your PRON
friend NOUN
is AUX
sharing VERB
fluids NOUN
with ADP
their PRON
acupuncturist NOUN
who PRON
   SPACE
> X
themselves PRON
has AUX
AIDS PROPN
.. PUNCT
it PRON
is AUX
unlikely ADJ
( PUNCT
not PART
impossible ADJ
) PUNCT
they PRON
will AUX
get AUX
AIDS PROPN
        SPACE
> X
from ADP
acupuncture NOUN
needles NOUN
. PUNCT
Generally ADV
, PUNCT
even ADV
if SCONJ
accidently ADV
inoculated VERB
, PUNCT
the DET
normal ADJ
> NUM
immune ADJ
response NOUN
should AUX
be AUX
enough ADJ
to PART
effectively ADV
handle VERB
the DET
minimal ADJ
contaminant NOUN
> NOUN
involved VERB
with ADP
acupuncture NOUN
needle PROPN
insertion NOUN
. PUNCT
> X
Is AUX
n't PART
this DET
what PRON
HIV PROPN
is AUX
about ADP
- PUNCT
the DET
" PUNCT
normal ADJ
immune ADJ
response NOUN
" PUNCT
to ADP
an DET
exposure?>Most NOUN
acupuncturists NOUN
use VERB
disposable ADJ
needles NOUN
... PUNCT
use VERB
once ADV
and CCONJ
throw VERB
away ADV
. PUNCT
I PRON
had AUX
electrical ADJ
pulse NOUN
nerve NOUN
testing NOUN
done VERB
a DET
while NOUN
back ADV
. PUNCT
  SPACE
The DET
needles NOUN
were AUX
takenfrom ADP
a DET
dirty ADJ
drawer NOUN
in ADP
an DET
instrument NOUN
cart NOUN
and CCONJ
were AUX
most ADV
certainly ADV
NOTsterile ADV
or CCONJ
even ADV
clean ADJ
for ADP
that DET
matter NOUN
. PUNCT
  SPACE
More ADV
than SCONJ
likely ADJ
they PRON
were AUX
freshfrom PROPN
the DET
previous ADJ
patient NOUN
. PUNCT
  SPACE
I PRON
WAS VERB
concerned VERB
, PUNCT
but CCONJ
I PRON
kept VERB
my PRON
mouth NOUN
shut NOUN
. PUNCT
  SPACE
Iprobably ADV
should AUX
have AUX
raised VERB
hell!Any NOUN
comments NOUN
? PUNCT
  SPACE
No DET
excuses NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59149From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Path NOUN
: PUNCT
news.larc.nasa.gov!darwin.sura.net!zaphod.mps.ohio-state.edu!uwm.edu!linac!att!bu.edu!dozonoff PROPN
   SPACE
From ADP
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
   SPACE
Newsgroups PROPN
: PUNCT
sci.med VERB
   SPACE
Date NOUN
: PUNCT
21 NUM
Apr PROPN
93 NUM
16:18:19 NUM
GMT PROPN
   SPACE
References NOUN
: PUNCT
< X
PAULSON.93Apr19081647@cmb00.larc.nasa.gov NUM
> X
   SPACE
Sender PROPN
: PUNCT
news@bu.edu X
   SPACE
Lines NOUN
: PUNCT
22 NUM
   SPACE
X PROPN
- NOUN
Newsreader NOUN
: PUNCT
Tin NOUN
1.1 NUM
PL5 PROPN
   SPACE
Sharon PROPN
Paulson PROPN
( PUNCT
paulson@tab00.larc.nasa.gov PROPN
) PUNCT
wrote VERB
: PUNCT
   SPACE
: PUNCT
    SPACE
{ PUNCT
much ADV
deleted VERB
] PUNCT
   SPACE
: PUNCT
    SPACE
: PUNCT
    SPACE
: PUNCT
The DET
fact NOUN
that SCONJ
this DET
happened VERB
while SCONJ
eating VERB
two NUM
sugar NOUN
coated VERB
cereals NOUN
made VERB
   SPACE
: PUNCT
by ADP
Kellog PROPN
's PART
makes VERB
me PRON
think VERB
she PRON
might AUX
be AUX
having VERB
an DET
allergic ADJ
reaction NOUN
to ADP
   SPACE
: PUNCT
something PRON
in ADP
the DET
coating NOUN
or CCONJ
the DET
cereals NOUN
. PUNCT
  SPACE
Of ADP
the DET
four NUM
of ADP
us PRON
in ADP
our PRON
   SPACE
: PUNCT
immediate ADJ
family NOUN
, PUNCT
Kathryn PROPN
shows VERB
the DET
least ADJ
signs NOUN
of ADP
the DET
hay NOUN
fever NOUN
, PUNCT
running VERB
   SPACE
: PUNCT
nose NOUN
, PUNCT
itchy ADJ
eyes NOUN
, PUNCT
etc X
. PUNCT
but CCONJ
we PRON
have AUX
a DET
lot NOUN
of ADP
allergies NOUN
in ADP
our PRON
family NOUN
history NOUN
   SPACE
: PUNCT
including VERB
some DET
weird ADJ
food NOUN
allergies NOUN
- PUNCT
nuts NOUN
, PUNCT
mushrooms NOUN
. PUNCT
    SPACE
: PUNCT
    SPACE
Many ADJ
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the DET
   SPACE
literature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains VERB
   SPACE
tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might AUX
   SPACE
potentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it PRON
. PUNCT
   SPACE
Check VERB
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested ADJ
. PUNCT
   SPACE
-- PUNCT
   SPACE
David PROPN
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Health PROPN
   SPACE
dozonoff@med-itvax1.bu.edu X
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C PROPN
   SPACE
( PUNCT
617 NUM
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
A DET
couple NOUN
of ADP
folks NOUN
have AUX
suggested VERB
the DET
" PUNCT
corn NOUN
connection NOUN
" PUNCT
. PUNCT
  SPACE
In ADP
the DET
five NUM
monthperiod NOUN
between ADP
the DET
two NUM
seizures NOUN
, PUNCT
my PRON
daughter NOUN
had AUX
eaten VERB
a DET
fair ADJ
amount NOUN
ofKix NOUN
and CCONJ
Berry PROPN
Berry PROPN
Kix PROPN
in ADP
the DET
mornings NOUN
and CCONJ
never ADV
had AUX
a DET
problem NOUN
. PUNCT
  SPACE
I PRON
checkedthe VERB
labels NOUN
and CCONJ
the DET
first ADJ
ingredient NOUN
is AUX
corn NOUN
. PUNCT
  SPACE
She PRON
has AUX
also ADV
never ADV
had VERB
a DET
problemeating VERB
corn NOUN
or CCONJ
corn NOUN
on ADP
the DET
cob NOUN
but CCONJ
of ADP
course NOUN
, PUNCT
that DET
is AUX
usually ADV
later ADV
in ADP
the DET
daywith NOUN
a DET
full ADJ
stomach NOUN
so SCONJ
the DET
absorption NOUN
would AUX
not PART
be AUX
so ADV
high ADJ
. PUNCT
  SPACE
I PRON
do AUX
believe VERB
thatFrost NOUN
Flakes NOUN
have AUX
corn NOUN
in ADP
them PRON
but CCONJ
I PRON
will AUX
have AUX
to PART
check VERB
the DET
Fruit PROPN
Loops PROPN
. PUNCT
  SPACE
Butthe PROPN
fact NOUN
that SCONJ
she PRON
has AUX
eaten VERB
this DET
other ADJ
corny NOUN
cereal NOUN
in ADP
the DET
morning NOUN
makes VERB
mewonder NOUN
. PUNCT
Thanks NOUN
for ADP
checking VERB
into ADP
this DET
. PUNCT
  SPACE
All DET
information NOUN
at ADP
this DET
point NOUN
is AUX
valuable ADJ
to ADP
me PRON
. PUNCT
Sharon PROPN
-- PUNCT
Sharon PROPN
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59150From NUM
: PUNCT
Andrew PROPN
T. PROPN
Robinson PROPN
< X
ANDY@MAINE.MAINE.EDU ADJ
> X
Subject NOUN
: PUNCT
Reasons NOUN
for ADP
hospitals NOUN
to PART
join VERB
Internet?What PRON
resources NOUN
and CCONJ
services NOUN
are AUX
available ADJ
on ADP
Internet NOUN
/ SYM
BITNET NOUN
whichwould AUX
be AUX
of ADP
interest NOUN
to ADP
hospitals NOUN
and CCONJ
other ADJ
medical ADJ
care NOUN
providers?I'm PROPN
interested ADJ
in ADP
anything PRON
relelvant ADJ
, PUNCT
including VERB
institutions NOUN
andbusinesses NOUN
of ADP
interest NOUN
to ADP
the DET
medical ADJ
profession NOUN
on ADP
Internet NOUN
, PUNCT
special ADJ
services NOUN
such ADJ
as SCONJ
online ADJ
access NOUN
to ADP
libraries NOUN
or CCONJ
diagnosticinformation NOUN
, PUNCT
etc X
. PUNCT
etc X
. PUNCT
Please INTJ
reply VERB
directly ADV
to ADP
ANDY@MAINE.EDUNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59151From NUM
: PUNCT
roos@Operoni PROPN
. PUNCT
Helsinki PROPN
. PUNCT
FI PROPN
( PUNCT
Christophe PROPN
Roos)Subject NUM
: PUNCT
Wanted VERB
: PUNCT
Rat NOUN
cell NOUN
line NOUN
( PUNCT
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
c.)I NOUN
am AUX
looking VERB
for ADP
a DET
rat ADJ
cell NOUN
line NOUN
of ADP
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
cell NOUN
  SPACE
-type PROPN
. PUNCT
I PRON
have AUX
been AUX
looking VERB
at ADP
ATCC PROPN
without ADP
success NOUN
and CCONJ
would AUX
very ADV
much ADV
appreciate VERB
any DET
help NOUN
. PUNCT
Thank VERB
you PRON
for ADP
reading VERB
this DET
. PUNCT
Christophe NOUN
Roos-------------------------------------------------------------------------Institute NOUN
of ADP
Biotechnology PROPN
          SPACE
Fax PROPN
: PUNCT
                   SPACE
+358 PROPN
0 NUM
4346028POBox NUM
45 NUM
, PUNCT
Valimotie PROPN
7 NUM
               SPACE
E NOUN
- NOUN
mail NOUN
: PUNCT
   SPACE
Christophe PROPN
. PUNCT
Roos@Helsinki X
. PUNCT
FiUniversity PROPN
of ADP
Helsinki PROPN
              SPACE
X-400 PROPN
: PUNCT
           SPACE
/G PUNCT
= PUNCT
Christophe PROPN
/ SYM
S PROPN
= SYM
RoosSF-00014 PROPN
Finland PROPN
                                SPACE
/O PUNCT
= PUNCT
Helsinki PROPN
/ SYM
A PROPN
= SYM
fumail NOUN
/ SYM
C NOUN
= SYM
Fi-------------------------------------------------------------------------Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59152From NUM
: PUNCT
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel)Subject NUM
: PUNCT
Re ADP
: PUNCT
How ADV
to PART
Diagnose VERB
Lyme PROPN
... PUNCT
reallyGordon NOUN
Banks NOUN
( PUNCT
geb@cs.pitt.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
1993Apr12.201056.20753@ns1.cc.lehigh.edu NUM
> X
mcg2@ns1.cc.lehigh.edu NOUN
( PUNCT
Marc PROPN
Gabriel PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
Now ADV
, PUNCT
I PRON
'm AUX
not PART
saying VERB
that SCONJ
culturing NOUN
is AUX
the DET
best ADJ
way NOUN
to PART
diagnose VERB
; PUNCT
it PRON
's AUX
very ADV
: PUNCT
> X
hard ADV
to PART
culture VERB
Bb PROPN
in ADP
most ADJ
cases NOUN
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
Dr. PROPN
N PROPN
has AUX
developed VERB
a DET
: PUNCT
> X
" PUNCT
feel VERB
" PUNCT
for ADP
what PRON
is AUX
and CCONJ
what PRON
is AUX
n't PART
LD NOUN
. PUNCT
  SPACE
This DET
comes VERB
from ADP
years NOUN
of ADP
experience NOUN
. PUNCT
: PUNCT
> X
No DET
serology NOUN
can AUX
match VERB
that DET
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
some DET
would AUX
call VERB
Dr. PROPN
N PROPN
a DET
" PUNCT
quack NOUN
" PUNCT
: PUNCT
> X
and CCONJ
accuse VERB
him PRON
of ADP
trying VERB
to PART
make VERB
a DET
quick ADJ
buck NOUN
. PUNCT
: PUNCT
> X
: PUNCT
Why ADV
do AUX
you PRON
think VERB
he PRON
would AUX
be AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
The DET
quacks NOUN
do AUX
n't PART
do AUX
cultures NOUN
. PUNCT
: PUNCT
They PRON
poo VERB
- PUNCT
poo NOUN
doing VERB
more ADJ
lab NOUN
tests NOUN
: PUNCT
  SPACE
" PUNCT
this DET
is AUX
Lyme PROPN
, PUNCT
believe VERB
me PRON
, PUNCT
I PRON
've AUX
: PUNCT
seen VERB
it PRON
many ADJ
times NOUN
. PUNCT
  SPACE
The DET
lab NOUN
tests NOUN
are AUX
n't PART
accurate ADJ
. PUNCT
  SPACE
We PRON
'll AUX
treat VERB
it PRON
: PUNCT
now ADV
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
is AUX
Dr. PROPN
N PROPN
's PART
practice NOUN
almost ADV
exclusively ADV
devoted ADJ
to ADP
treating VERB
: PUNCT
Lyme PROPN
patients NOUN
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
* PUNCT
any DET
* PUNCT
orthopedic ADJ
surgeons NOUN
who PRON
fit VERB
this DET
: PUNCT
pattern NOUN
. PUNCT
  SPACE
They PRON
are AUX
usually ADV
GPs NOUN
. PUNCT
No INTJ
, PUNCT
he PRON
does AUX
not PART
exclusively ADV
treat VERB
LD NOUN
patients NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
in ADP
some DET
parts NOUN
of ADP
thecountry NOUN
, PUNCT
you PRON
do AUX
n't PART
need VERB
to PART
be AUX
known VERB
as SCONJ
an DET
LD PROPN
" PUNCT
specialist NOUN
" PUNCT
to PART
see VERB
a DET
largenumber NOUN
of ADP
LD NOUN
patients NOUN
walk VERB
through ADP
your PRON
office NOUN
. PUNCT
  SPACE
Given VERB
the DET
huge ADJ
problem NOUN
ofunderdiagnosis NOUN
, PUNCT
orthopedists VERB
encounter PROPN
late ADJ
manifestations NOUN
of ADP
the DET
disease NOUN
justabout PROPN
every DET
day NOUN
in ADP
their PRON
regular ADJ
practices NOUN
. PUNCT
  SPACE
Dr. PROPN
N. PROPN
told VERB
me PRON
that DET
last ADJ
year NOUN
, PUNCT
he PRON
sent VERB
between ADP
2 NUM
and CCONJ
5 NUM
patients NOUN
a DET
week NOUN
to ADP
the DET
LD PROPN
specialists NOUN
... PUNCT
and CCONJ
he PRON
is AUX
notthe ADJ
only ADJ
orthopedists NOUN
in ADP
the DET
town NOUN
. PUNCT
Let VERB
's PRON
say VERB
that SCONJ
only ADV
2 NUM
people NOUN
per ADP
week NOUN
actually ADV
have AUX
LD PROPN
. PUNCT
  SPACE
That DET
means VERB
at ADP
the*very NUM
minimum NOUN
* PUNCT
104 NUM
people NOUN
in ADP
our PRON
town NOUN
( PUNCT
and CCONJ
immediate ADJ
area NOUN
) PUNCT
develop VERB
late ADJ
stagemanifestations NOUN
of ADP
LD NOUN
* PUNCT
every DET
year NOUN
* PUNCT
. PUNCT
  SPACE
Add VERB
in ADP
the DET
folks NOUN
who PRON
were AUX
diagnosed VERB
byneurologists NOUN
, PUNCT
rheumatologists NOUN
, PUNCT
GPs NOUN
, PUNCT
etc X
, PUNCT
and CCONJ
you PRON
can AUX
see VERB
what PRON
kind NOUN
of ADP
problemwe NOUN
have AUX
. PUNCT
  SPACE
No DET
wonder NOUN
just ADV
about ADP
everybody PRON
in ADP
town NOUN
personally ADV
knows VERB
an DET
LDpatient NOUN
. PUNCT
He PRON
refers VERB
most ADJ
patients NOUN
to ADP
LD NOUN
specialists NOUN
, PUNCT
but CCONJ
in ADP
extreme ADJ
cases NOUN
he PRON
puts VERB
thepatient ADJ
on ADP
medication NOUN
immediately ADV
to PART
minimize VERB
the DET
damage NOUN
( PUNCT
in ADP
most ADJ
cases NOUN
, PUNCT
tothe PROPN
knees).Gordon PROPN
is AUX
correct ADJ
when ADV
he PRON
states VERB
that SCONJ
most ADJ
LD NOUN
specialists NOUN
are AUX
GPs.-Marc.-- ADJ
----------------------------------------------------------------------- PUNCT
              SPACE
Marc PROPN
C. PROPN
Gabriel PROPN
        SPACE
- PUNCT
  SPACE
U.C. PROPN
Box PROPN
545 NUM
  SPACE
- PUNCT
              SPACE
( PUNCT
215 NUM
) PUNCT
882 NUM
- SYM
0138 NUM
         SPACE
Lehigh PROPN
UniversityNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59153From NUM
: PUNCT
debbie@csd4.csd.uwm.edu PROPN
( PUNCT
Debbie PROPN
Forest)Subject NUM
: PUNCT
Re ADP
: PUNCT
Hismanal PROPN
, PUNCT
et PROPN
. PUNCT
al.--side INTJ
effectsIn PROPN
article NOUN
< X
1993Apr21.231301.3050@seas.gwu.edu NUM
> X
sheryl@seas.gwu.edu ADJ
( PUNCT
Sheryl PROPN
Coppenger PROPN
) PUNCT
writes:<In ADJ
article NOUN
< X
1993Apr21.024103.29880@spdcc.com NUM
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:<>Hismanal ADJ
( PUNCT
astemizole NOUN
) PUNCT
is AUX
most ADV
definitely ADV
linked VERB
to PART
weight NOUN
gain.<>It PROPN
really ADV
is AUX
peculiar ADJ
that SCONJ
some DET
antihistamines NOUN
have AUX
this DET
effect,<>and X
even ADV
more ADV
so SCONJ
an DET
antihistamine NOUN
like SCONJ
astemizole NOUN
which PRON
purportedly<>doesn't PROPN
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
and CCONJ
so ADV
tends VERB
not PART
to ADP
cause<>drowsiness.<<The NUM
original ADJ
poster NOUN
mentioned VERB
fatigue NOUN
. PUNCT
  SPACE
I PRON
had AUX
that DET
too ADV
, PUNCT
but CCONJ
it PRON
was AUX
< X
mostly ADV
due ADP
to ADP
the DET
really ADV
bizarre ADJ
dreams NOUN
I PRON
was AUX
having VERB
-- PUNCT
I PRON
was AUX
n't PART
getting VERB
< X
any DET
rest NOUN
. PUNCT
  SPACE
My PRON
doctor NOUN
said VERB
that DET
was AUX
a DET
common ADJ
reaction NOUN
. PUNCT
  SPACE
If SCONJ
astemizole NOUN
< X
doesn't ADV
cross VERB
the DET
blood NOUN
- PUNCT
brain NOUN
barrier NOUN
, PUNCT
how ADV
does AUX
it PRON
cause VERB
that DET
side NOUN
< X
effect NOUN
? PUNCT
  SPACE
Any DET
ideas?It VERB
made VERB
me PRON
really ADV
BITCHY PROPN
for ADP
the DET
first ADJ
few ADJ
weeks NOUN
. PUNCT
  SPACE
Now ADV
that SCONJ
I PRON
think VERB
aboutit NOUN
I PRON
was AUX
having VERB
some DET
bizarre ADJ
dreams NOUN
too ADV
. PUNCT
  SPACE
My PRON
doctor NOUN
said VERB
it PRON
made VERB
him PRON
feellike VERB
he PRON
had AUX
to PART
be AUX
DOING VERB
something PRON
all DET
the DET
time NOUN
. PUNCT
  SPACE
But CCONJ
if SCONJ
you PRON
keep VERB
taking VERB
it PRON
, PUNCT
after ADP
a DET
few ADJ
weeks NOUN
these DET
symptoms NOUN
seem VERB
to PART
go VERB
away ADV
, PUNCT
he PRON
said VERB
hang VERB
in ADV
there ADV
. PUNCT
  SPACE
I PRON
did AUX
and CCONJ
they PRON
did AUX
. PUNCT
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59154From NUM
: PUNCT
shavlik@cs.wisc.edu PROPN
( PUNCT
Jude PROPN
Shavlik)Subject PROPN
: PUNCT
Program PROPN
& CCONJ
Reg PROPN
Forms PROPN
: PUNCT
1st NOUN
Int PROPN
Conf PROPN
on ADP
Intell PROPN
Sys PROPN
for ADP
Molecular PROPN
Biology[For CCONJ
those DET
attending VERB
the DET
AAAI PROPN
conf NOUN
this DET
summer NOUN
, PUNCT
note VERB
thatthis DET
conference NOUN
is AUX
immediately ADV
preceding VERB
it PRON
. PUNCT
] PUNCT
         SPACE
PRELIMINARY PROPN
PROGRAM NOUN
AND CCONJ
REGISTRATION NOUN
MATERIALS NOUN
              SPACE
First PROPN
International PROPN
Conference PROPN
on ADP
          SPACE
Intelligent PROPN
Systems PROPN
for ADP
Molecular PROPN
Biology PROPN
                       SPACE
Washington PROPN
, PUNCT
D.C. PROPN
                        SPACE
July PROPN
6 NUM
- SYM
9 NUM
, PUNCT
1993Sponsored VERB
by ADP
: PUNCT
  SPACE
The DET
National PROPN
Institutes PROPN
of ADP
Health PROPN
, PUNCT
      SPACE
National PROPN
Library PROPN
of ADP
Medicine PROPN
  SPACE
The DET
Department PROPN
of ADP
Energy PROPN
, PUNCT
      SPACE
Office PROPN
of ADP
Health PROPN
and CCONJ
Environmental PROPN
Research PROPN
  SPACE
The DET
Biomatrix PROPN
Society PROPN
  SPACE
The DET
American PROPN
Association PROPN
for ADP
Artificial PROPN
Intelligence PROPN
( PUNCT
AAAI)Poster PROPN
Session PROPN
and CCONJ
Tutorials PROPN
: PUNCT
    SPACE
Bethesda PROPN
Ramada PROPN
HotelTechnical PROPN
Sessions PROPN
: PUNCT
  SPACE
Lister PROPN
Hill PROPN
Center PROPN
Auditorium PROPN
, PUNCT
National PROPN
Library PROPN
of ADP
MedicineFor PROPN
more ADJ
information NOUN
contact NOUN
ISMB@nlm.nih.gov PROPN
or CCONJ
FAX PROPN
( PUNCT
608)262 NUM
- PUNCT
9777 NUM
                           SPACE
PURPOSEThis PUNCT
, PUNCT
the DET
First PROPN
International PROPN
Conference PROPN
on ADP
Intelligent PROPN
Systems PROPN
for ADP
Molecular PROPN
Biology PROPN
, PUNCT
is AUX
the DET
inaugural ADJ
meeting NOUN
in ADP
a DET
series NOUN
intended VERB
to PART
bring VERB
together ADV
scientists NOUN
who PRON
are AUX
applying VERB
the DET
technologies NOUN
of ADP
artificial ADJ
intelligence NOUN
, PUNCT
robotics NOUN
, PUNCT
machine NOUN
learning NOUN
, PUNCT
massively ADV
parallel ADJ
computing NOUN
, PUNCT
advanced ADJ
data NOUN
modelling NOUN
, PUNCT
and CCONJ
related VERB
methods NOUN
to ADP
problems NOUN
in ADP
molecular ADJ
biology NOUN
. PUNCT
  SPACE
The DET
scope NOUN
extends VERB
to ADP
any DET
computational ADJ
or CCONJ
robotic ADJ
system NOUN
supporting VERB
a DET
biological ADJ
task NOUN
that PRON
is AUX
cognitively ADV
challenging ADJ
, PUNCT
involves VERB
a DET
synthesis NOUN
of ADP
information NOUN
from ADP
multiple ADJ
sources NOUN
at ADP
multiple ADJ
levels NOUN
, PUNCT
or CCONJ
in ADP
some DET
other ADJ
way NOUN
exhibits VERB
the DET
abstraction NOUN
and CCONJ
emergent ADJ
properties NOUN
of ADP
an DET
" PUNCT
intelligent ADJ
system NOUN
. PUNCT
" PUNCT
                            SPACE
FACILITIESThe ADJ
conference NOUN
will AUX
be AUX
held VERB
at ADP
   SPACE
Lister PROPN
Hill PROPN
Center PROPN
    SPACE
National PROPN
Library PROPN
of ADP
Medicine PROPN
   SPACE
8600 NUM
Rockville PROPN
Pike PROPN
   SPACE
NIH PROPN
, PUNCT
Building PROPN
38A NUM
   SPACE
Bethesda PROPN
MD PROPN
20894Seating NUM
in ADP
the DET
conference NOUN
center NOUN
is AUX
strictly ADV
limited ADJ
, PUNCT
so SCONJ
registrations NOUN
will AUX
be AUX
accepted VERB
on ADP
a DET
first ADJ
- PUNCT
come VERB
, PUNCT
first ADJ
- PUNCT
serve NOUN
basis NOUN
. PUNCT
Accomodations NOUN
, PUNCT
as ADV
well ADV
as SCONJ
a DET
reception NOUN
and CCONJ
poster NOUN
session NOUN
, PUNCT
will AUX
be AUX
at ADP
the DET
   SPACE
Bethesda PROPN
Ramada PROPN
Hotel PROPN
    SPACE
8400 NUM
Wisconsin PROPN
Avenue PROPN
   SPACE
Bethesda PROPN
MD PROPN
20814A PROPN
special ADJ
room NOUN
rate NOUN
has AUX
been AUX
negotiated VERB
with ADP
the DET
hotel NOUN
, PUNCT
of ADP
$ SYM
92 NUM
/ SYM
day NOUN
( PUNCT
expires VERB
6/21 NUM
) PUNCT
. PUNCT
  SPACE
Attendees NOUN
must AUX
make VERB
their PRON
own ADJ
reservations NOUN
, PUNCT
by ADP
writing VERB
the DET
hotel NOUN
or CCONJ
calling VERB
( PUNCT
800)331 NUM
- PUNCT
5252 NUM
and CCONJ
mentioning VERB
the DET
ISMB PROPN
conference NOUN
. PUNCT
  SPACE
To PART
participate VERB
in ADP
a DET
roommate NOUN
- PUNCT
matching VERB
service NOUN
, PUNCT
e NOUN
- NOUN
mail NOUN
opitz@cs.wisc.edu PROPN
. PUNCT
                         SPACE
TRANSPORTATIONThe ADJ
two NUM
facilities NOUN
are AUX
within ADP
easy ADJ
walking NOUN
distance NOUN
, PUNCT
convenient ADJ
to ADP
the DET
subway NOUN
( PUNCT
Metro PROPN
Red PROPN
Line PROPN
, PUNCT
Medical PROPN
Center PROPN
stop NOUN
) PUNCT
, PUNCT
and CCONJ
from ADP
there ADV
to ADP
the DET
Amtrak PROPN
station NOUN
. PUNCT
  SPACE
Nearby ADJ
airports NOUN
include VERB
Dulles PROPN
, PUNCT
National PROPN
, PUNCT
and CCONJ
Baltimore PROPN
- PUNCT
Washington PROPN
International PROPN
. PUNCT
                            SPACE
PROCEEDINGSFull NOUN
- PUNCT
length NOUN
papers NOUN
from ADP
both DET
talks NOUN
and CCONJ
posters NOUN
will AUX
be AUX
published VERB
inarchival ADJ
proceedings NOUN
. PUNCT
  SPACE
The DET
citation NOUN
is AUX
: PUNCT
   SPACE
Proceedings NOUN
of ADP
the DET
First PROPN
International PROPN
   SPACE
Conference NOUN
on ADP
Intelligent PROPN
Systems PROPN
for ADP
   SPACE
Molecular PROPN
Biology PROPN
( PUNCT
eds NOUN
. PUNCT
L. PROPN
Hunter PROPN
, PUNCT
   SPACE
D. PROPN
Searls PROPN
, PUNCT
and CCONJ
J. PROPN
Shavlik PROPN
) PUNCT
AAAI PROPN
/ SYM
MIT PROPN
  SPACE
Press PROPN
, PUNCT
Menlo PROPN
Park PROPN
CA PROPN
, PUNCT
1993 NUM
. PUNCT
  SPACE
Copies NOUN
will AUX
be AUX
distributed VERB
at ADP
the DET
conference NOUN
to ADP
registered ADJ
attendees NOUN
, PUNCT
and CCONJ
will AUX
be AUX
available ADJ
for ADP
purchase NOUN
from ADP
the DET
publisher NOUN
afterwards ADV
. PUNCT
                             SPACE
TALKSWednesday PROPN
, PUNCT
July PROPN
7 NUM
, PUNCT
1993 NUM
- PUNCT
----------------------------------------------------------------8:00 NOUN
- PUNCT
9:00am NUM
     SPACE
Continental PROPN
Breakfast9:00 PROPN
- PUNCT
9:15am NUM
     SPACE
Opening PROPN
Remarks9:15 PROPN
- PUNCT
10:30am PROPN
    SPACE
Invited VERB
Talk PROPN
" PUNCT
Statistics PROPN
, PUNCT
Protein PROPN
Cores PROPN
, PUNCT
and CCONJ
Predicted PROPN
Structures PROPN
" PUNCT
Prof. PROPN
Temple PROPN
Smith PROPN
( PUNCT
Boston PROPN
University)10:30 NOUN
- PUNCT
11:00am NOUN
	 SPACE
Break11:00am PROPN
	 SPACE
" PUNCT
Constructive ADJ
Induction PROPN
and CCONJ
Protein PROPN
Structure PROPN
Prediction PROPN
" PUNCT
T.R. PROPN
Ioerger PROPN
, PUNCT
L. PROPN
Rendell PROPN
, PUNCT
& CCONJ
S. PROPN
Surbramaniam11:30am PROPN
	 SPACE
" PUNCT
Protein PROPN
Secondary PROPN
- PUNCT
Structure NOUN
Modeling PROPN
with ADP
Probabilistic ADJ
  SPACE
Networks NOUN
" PUNCT
  SPACE
A.L. PROPN
Delcher PROPN
, PUNCT
S. PROPN
Kasif PROPN
, PUNCT
H.R. PROPN
Goldberg PROPN
, PUNCT
& CCONJ
W. PROPN
Hsu12:00 PROPN
- PUNCT
1:30pm PROPN
	 SPACE
Lunch1:30pm PROPN
	 SPACE
" PUNCT
Protein PROPN
Secondary PROPN
Structure PROPN
using VERB
Two NUM
- PUNCT
Level PROPN
Case PROPN
- PUNCT
Based VERB
  SPACE
Reasoning VERB
" PUNCT
  SPACE
B. PROPN
Leng PROPN
, PUNCT
B.G. PROPN
Buchanan PROPN
, PUNCT
& CCONJ
H.B. PROPN
Nicholas2:00pm PROPN
	 SPACE
" PUNCT
Automatic ADJ
Derivation NOUN
of ADP
Substructures NOUN
Yields NOUN
Novel PROPN
  SPACE
Structural PROPN
Building PROPN
Blocks PROPN
in ADP
Globular PROPN
Proteins PROPN
" PUNCT
  SPACE
X. PROPN
Zhang PROPN
, PUNCT
J.S. PROPN
Fetrow PROPN
, PUNCT
W.A. PROPN
Rennie PROPN
, PUNCT
D.L. PROPN
Waltz PROPN
, PUNCT
& CCONJ
G. PROPN
Berg2:30pm PROPN
	 SPACE
" PUNCT
Using VERB
Dirichlet NOUN
Mixture PROPN
Priors NOUN
to PART
Derive VERB
Hidden PROPN
Markov PROPN
  SPACE
Models NOUN
for ADP
Protein PROPN
Families PROPN
" PUNCT
M. PROPN
Brown PROPN
, PUNCT
R. PROPN
Hughey PROPN
, PUNCT
A. PROPN
Krogh PROPN
, PUNCT
  SPACE
I.S. PROPN
Mian PROPN
, PUNCT
K. PROPN
Sjolander PROPN
, PUNCT
& CCONJ
D. PROPN
Haussler3:00 PROPN
- PUNCT
3:30pm PROPN
	 SPACE
Break3:30pm PROPN
	 SPACE
" PUNCT
Protein PROPN
Classification PROPN
using VERB
Neural PROPN
Networks PROPN
" PUNCT
  SPACE
E.A. PROPN
Ferran PROPN
, PUNCT
B. PROPN
Pflugfelder PROPN
, PUNCT
& CCONJ
P. PROPN
Ferrara4:00pm PROPN
	 SPACE
" PUNCT
Neural PROPN
Networks PROPN
for ADP
Molecular PROPN
Sequence PROPN
Classification PROPN
" PUNCT
C. PROPN
Wu PROPN
, PUNCT
M. PROPN
Berry PROPN
, PUNCT
Y PROPN
- PUNCT
S. PROPN
Fung PROPN
, PUNCT
& CCONJ
J. PROPN
McLarty4:30pm PROPN
	 SPACE
" PUNCT
Computationally PROPN
Efficient PROPN
Cluster PROPN
Representation NOUN
in ADP
  SPACE
Molecular PROPN
Sequence PROPN
Megaclassification PROPN
" PUNCT
  SPACE
D.J. PROPN
States PROPN
, PUNCT
N. PROPN
Harris PROPN
, PUNCT
  SPACE
& CCONJ
L. PROPN
Hunter7:00 PROPN
- PUNCT
7:30pm NUM
     SPACE
Poster NOUN
Setup7:30 PROPN
- PUNCT
10:00pm PROPN
    SPACE
Reception PROPN
& CCONJ
Poster PROPN
Session PROPN
Thursday PROPN
, PUNCT
July PROPN
8 NUM
, PUNCT
1993 NUM
- PUNCT
----------------------------------------------------------------8:00 NOUN
- PUNCT
9:00am NUM
     SPACE
Continental PROPN
Breakfast9:00 PROPN
- PUNCT
10:15am NUM
    SPACE
Invited VERB
Talk PROPN
" PUNCT
Large ADJ
- PUNCT
Scale NOUN
DNA NOUN
Sequencing NOUN
: PUNCT
  SPACE
A DET
Tale PROPN
of ADP
Mice PROPN
and CCONJ
Men PROPN
" PUNCT
Prof. PROPN
Leroy PROPN
Hood PROPN
( PUNCT
University PROPN
of ADP
Washington)10:15 PROPN
- PUNCT
10:45am PROPN
	 SPACE
Break10:45am NOUN
	 SPACE
" PUNCT
Pattern PROPN
Recognition PROPN
for ADP
Automated ADJ
DNA PROPN
Sequencing PROPN
: PUNCT
  SPACE
I. PROPN
On ADP
- PUNCT
Line NOUN
Signal PROPN
Conditioning PROPN
and CCONJ
Feature PROPN
Extraction PROPN
for ADP
  SPACE
Basecalling VERB
" PUNCT
  SPACE
J.B. PROPN
Bolden PROPN
III PROPN
, PUNCT
D. PROPN
Torgersen PROPN
, PUNCT
& CCONJ
C. PROPN
Tibbetts11:15am PROPN
	 SPACE
" PUNCT
Genetic ADJ
Algorithms PROPN
for ADP
Sequence PROPN
Assembly PROPN
" PUNCT
  SPACE
R. PROPN
Parsons PROPN
, PUNCT
S. PROPN
Forrest PROPN
, PUNCT
& CCONJ
C. PROPN
Burks11:45am PROPN
	 SPACE
" PUNCT
A DET
Partial PROPN
Digest PROPN
Approach PROPN
to ADP
Restriction PROPN
Site PROPN
Mapping PROPN
" PUNCT
S.S. PROPN
Skiena PROPN
& CCONJ
G. PROPN
Sundaram12:15 PROPN
- PUNCT
2:00pm PROPN
	 SPACE
Lunch2:00pm PROPN
	 SPACE
" PUNCT
Integrating VERB
Order NOUN
and CCONJ
Distance PROPN
Relationships PROPN
from ADP
  SPACE
Heterogeneous PROPN
Maps PROPN
" PUNCT
  SPACE
M. PROPN
Graves PROPN
2:30pm NUM
	 SPACE
" PUNCT
Discovering VERB
Sequence PROPN
Similarity PROPN
by ADP
the DET
Algorithmic ADJ
  SPACE
Significance PROPN
Method PROPN
" PUNCT
  SPACE
A. NOUN
Milosavljevic3:00pm PROPN
	 SPACE
" PUNCT
Identification PROPN
of ADP
Human PROPN
Gene PROPN
Functional PROPN
Regions PROPN
Based VERB
on ADP
  SPACE
Oligonucleotide PROPN
Composition PROPN
" PUNCT
  SPACE
V.V. PROPN
Solovyev PROPN
& CCONJ
C.B. PROPN
Lawrence3:30pm PROPN
	 SPACE
" PUNCT
Knowledge PROPN
Discovery PROPN
in ADP
GENBANK PROPN
" PUNCT
J.S. PROPN
Aaronson PROPN
, PUNCT
J. PROPN
Haas PROPN
, PUNCT
& CCONJ
G.C. PROPN
Overton4:00 PROPN
- PUNCT
4:30pm PROPN
	 SPACE
Break4:30pm PROPN
	 SPACE
" PUNCT
An DET
Expert PROPN
System NOUN
to PART
Generate PROPN
Machine PROPN
Learning VERB
  SPACE
Experiments NOUN
: PUNCT
Learning VERB
with ADP
DNA PROPN
Crystallography PROPN
Data PROPN
" PUNCT
D. PROPN
Cohen PROPN
, PUNCT
C. PROPN
Kulikowski PROPN
, PUNCT
& CCONJ
H. PROPN
Berman PROPN
5:00pm NUM
	 SPACE
" PUNCT
Detection PROPN
of ADP
Correlations PROPN
in ADP
tRNA PROPN
Sequences NOUN
with ADP
  SPACE
Structural PROPN
Implications PROPN
" PUNCT
  SPACE
T.M. PROPN
Klingler PROPN
& CCONJ
D. PROPN
Brutlag5:30pm PROPN
	 SPACE
" PUNCT
Probabilistic ADJ
Structure NOUN
Calculations NOUN
: PUNCT
A DET
Three- NOUN
Dimensional ADJ
tRNA NOUN
Structure NOUN
from ADP
Sequence PROPN
Correlation PROPN
Data PROPN
" PUNCT
  SPACE
R.B. PROPN
AltmanFriday PROPN
, PUNCT
July PROPN
9 NUM
, PUNCT
1993 NUM
- PUNCT
----------------------------------------------------------------8:00 NOUN
- PUNCT
9:00am NUM
     SPACE
Continental PROPN
Breakfast9:00 PROPN
- PUNCT
10:15am NUM
    SPACE
Invited VERB
Talk PROPN
" PUNCT
Artificial PROPN
Intelligence PROPN
and CCONJ
a DET
Grand PROPN
Unified PROPN
Theory PROPN
of ADP
  SPACE
Biochemistry PROPN
" PUNCT
Prof. PROPN
Harold PROPN
Morowitz PROPN
( PUNCT
George PROPN
Mason PROPN
University)10:15 PROPN
- PUNCT
10:45am PROPN
	 SPACE
Break10:45am NOUN
	 SPACE
" PUNCT
Testing PROPN
HIV PROPN
Molecular PROPN
Biology PROPN
in ADP
in ADP
silico PROPN
Physiologies PROPN
" PUNCT
  SPACE
H.B. PROPN
Sieburg PROPN
& CCONJ
C. PROPN
Baray11:15am PROPN
	 SPACE
" PUNCT
Identification PROPN
of ADP
Localized PROPN
and CCONJ
Distributed PROPN
Bottlenecks NOUN
  SPACE
in ADP
Metabolic PROPN
Pathways PROPN
" PUNCT
  SPACE
M.L. PROPN
Mavrovouniotis11:45am PROPN
	 SPACE
" PUNCT
Fine PROPN
- PUNCT
Grain PROPN
Databases PROPN
for ADP
Pattern PROPN
Discovery PROPN
in ADP
Gene PROPN
  SPACE
Regulation PROPN
" PUNCT
  SPACE
S.M. PROPN
Veretnik PROPN
& CCONJ
B.R. PROPN
Schatz12:15 PROPN
- PUNCT
2:00pm PROPN
	 SPACE
Lunch2:00pm PROPN
	 SPACE
" PUNCT
Representation NOUN
for ADP
Discovery PROPN
of ADP
Protein PROPN
Motifs PROPN
" PUNCT
D. PROPN
Conklin PROPN
, PUNCT
S. PROPN
Fortier PROPN
, PUNCT
& CCONJ
J. PROPN
Glasgow2:30pm PROPN
	 SPACE
" PUNCT
Finding PROPN
Relevant PROPN
Biomolecular PROPN
Features PROPN
" PUNCT
   SPACE
L. PROPN
Hunter PROPN
& CCONJ
T. PROPN
Klein3:00pm PROPN
	 SPACE
" PUNCT
Database PROPN
Techniques PROPN
for ADP
Biological PROPN
Materials PROPN
and CCONJ
  SPACE
Methods NOUN
" PUNCT
  SPACE
K. PROPN
Baclawski PROPN
, PUNCT
R. PROPN
Futrelle PROPN
, PUNCT
N. PROPN
Fridman PROPN
, PUNCT
  SPACE
& CCONJ
M.J. PROPN
Pescitelli3:30pm PROPN
	 SPACE
" PUNCT
A DET
Multi ADJ
- ADJ
Level PROPN
Description PROPN
Scheme PROPN
of ADP
Protein PROPN
  SPACE
Conformation PROPN
" PUNCT
  SPACE
K. PROPN
Onizuka PROPN
, PUNCT
K. PROPN
Asai PROPN
, PUNCT
M. PROPN
Ishikawa PROPN
, PUNCT
& CCONJ
S.T.C. PROPN
Wong4:00 PROPN
- PUNCT
4:30pm PROPN
	 SPACE
Break4:30pm PROPN
	 SPACE
" PUNCT
Protein PROPN
Topology PROPN
Prediction PROPN
through ADP
Parallel PROPN
Constraint PROPN
  SPACE
Logic PROPN
Programming PROPN
" PUNCT
  SPACE
D.A. PROPN
Clark PROPN
, PUNCT
C.J. PROPN
Rawlings PROPN
, PUNCT
J. PROPN
Shirazi PROPN
, PUNCT
  SPACE
A. PROPN
Veron PROPN
, PUNCT
& CCONJ
M. PROPN
Reeve5:30pm PROPN
	 SPACE
" PUNCT
A DET
Constraint PROPN
Reasoning NOUN
System NOUN
for ADP
Automating PROPN
Sequence- PROPN
Specific PROPN
Resonance PROPN
Assignments PROPN
in ADP
Multidimensional PROPN
Protein PROPN
NMR PROPN
Spectra PROPN
" PUNCT
  SPACE
D. PROPN
Zimmerman PROPN
, PUNCT
C. PROPN
Kulikowski PROPN
, PUNCT
& CCONJ
G.T. PROPN
Montelione5:30 PROPN
- PUNCT
5:45pm NUM
	 SPACE
Closing NOUN
Remarks PROPN
                         SPACE
POSTER NOUN
SESSIONThe ADJ
following VERB
posters NOUN
will AUX
be AUX
on ADP
display NOUN
at ADP
the DET
Bethesda PROPN
Ramada PROPN
Hotel PROPN
from ADP
7:30 NUM
- PUNCT
10:00pm NOUN
, PUNCT
Wednesday PROPN
, PUNCT
July PROPN
7.[1 NOUN
] PUNCT
" PUNCT
The DET
Induction NOUN
of ADP
Rules PROPN
for ADP
Predicting PROPN
Chemical PROPN
Carcinogenesis PROPN
in ADP
Rodents PROPN
" PUNCT
  SPACE
D. PROPN
Bahler PROPN
& CCONJ
D. PROPN
Bristol[2 PROPN
] PUNCT
" PUNCT
SENEX NOUN
: PUNCT
A DET
CLOS PROPN
/ SYM
CLIM PROPN
Application PROPN
for ADP
Molecular PROPN
Pathology PROPN
" PUNCT
   SPACE
S.S. PROPN
Ball PROPN
& CCONJ
V.H. PROPN
Mah[3 PROPN
] PUNCT
" PUNCT
FLASH NOUN
: PUNCT
A DET
Fast ADJ
Look NOUN
- PUNCT
Up ADP
Algorithm PROPN
for ADP
String PROPN
Homology PROPN
" PUNCT
A. PROPN
Califano PROPN
& CCONJ
I. PROPN
Rigoutsos[4 PROPN
] PUNCT
" PUNCT
Toward ADP
Multi PROPN
- PUNCT
Strategy PROPN
Parallel PROPN
Learning VERB
in ADP
Sequence NOUN
  SPACE
Analysis NOUN
" PUNCT
  SPACE
P.K. PROPN
Chan PROPN
& CCONJ
S.J. PROPN
Stolfo[5 PROPN
] PUNCT
" PUNCT
Protein PROPN
Structure PROPN
Prediction PROPN
: PUNCT
Selecting VERB
Salient NOUN
Features VERB
  SPACE
from ADP
Large PROPN
Candidate PROPN
Pools PROPN
" PUNCT
  SPACE
K.J. PROPN
Cherkauer PROPN
& CCONJ
J.W. PROPN
Shavlik[6 PROPN
] PUNCT
" PUNCT
Comparison PROPN
of ADP
Two NUM
Approaches NOUN
to ADP
the DET
Prediction PROPN
of ADP
Protein PROPN
  SPACE
Folding PROPN
Patterns PROPN
" PUNCT
  SPACE
I. PROPN
Dubchak PROPN
, PUNCT
S.R. PROPN
Holbrook PROPN
, PUNCT
& CCONJ
S.-H. PROPN
Kim[7 PROPN
] PUNCT
" PUNCT
A DET
Modular PROPN
Learning PROPN
Environment PROPN
for ADP
Protein NOUN
Modeling PROPN
" PUNCT
J. PROPN
Gracy PROPN
, PUNCT
L. PROPN
Chiche PROPN
& CCONJ
J. PROPN
Sallantin[8 PROPN
] PUNCT
" PUNCT
Inference NOUN
of ADP
Order NOUN
in ADP
Genetic PROPN
Systems PROPN
" PUNCT
  SPACE
J.N. PROPN
Guidi PROPN
& CCONJ
T.H. PROPN
Roderick[9 PROPN
] PUNCT
" PUNCT
PALM NOUN
- PUNCT
A NOUN
Pattern PROPN
Language PROPN
for ADP
Molecular PROPN
Biology PROPN
" PUNCT
C. PROPN
Helgesen PROPN
& CCONJ
P.R. PROPN
Sibbald[10 PROPN
] PUNCT
" PUNCT
Grammatical PROPN
Formalization PROPN
of ADP
Metabolic PROPN
Processes PROPN
" PUNCT
   SPACE
R. PROPN
Hofestedt[11 PROPN
] PUNCT
" PUNCT
Representations PROPN
of ADP
Metabolic PROPN
Knowledge PROPN
" PUNCT
   SPACE
P.D. PROPN
Karp PROPN
& CCONJ
M. PROPN
Riley[12 PROPN
] PUNCT
" PUNCT
Protein PROPN
Sequencing PROPN
Experiment PROPN
Planning NOUN
Using VERB
Analogy PROPN
" PUNCT
B. PROPN
Kettler PROPN
& CCONJ
L. PROPN
Darden[13 PROPN
] PUNCT
" PUNCT
Design NOUN
of ADP
an DET
Object PROPN
- PUNCT
Oriented VERB
Database PROPN
for ADP
Reverse PROPN
Genetics PROPN
" PUNCT
   SPACE
K.J. PROPN
Kochut PROPN
, PUNCT
J. PROPN
Arnold PROPN
, PUNCT
J.A. PROPN
Miller PROPN
, PUNCT
& CCONJ
W.D. PROPN
Potter[14 PROPN
] PUNCT
" PUNCT
A DET
Small PROPN
Automaton PROPN
for ADP
Word PROPN
Recognition PROPN
in ADP
DNA PROPN
Sequences PROPN
" PUNCT
C. PROPN
Lefevre PROPN
& CCONJ
J.-E PROPN
Ikeda[15 PROPN
] PUNCT
" PUNCT
MultiMap NOUN
: PUNCT
  SPACE
An DET
Expert PROPN
System PROPN
for ADP
Automated PROPN
Genetic PROPN
Linkage PROPN
  SPACE
Mapping NOUN
" PUNCT
  SPACE
T.C. PROPN
Matise PROPN
, PUNCT
M. PROPN
Perlin PROPN
& CCONJ
A. PROPN
Chakravarti[16 PROPN
] PUNCT
" PUNCT
Constructing VERB
a DET
Distributed VERB
Object PROPN
- PUNCT
Oriented VERB
System PROPN
with ADP
Logical ADJ
Constraints PROPN
for ADP
Fluorescence PROPN
- PUNCT
Activated VERB
Cell PROPN
Sorting NOUN
" PUNCT
T. PROPN
Matsushima[17 NOUN
] PUNCT
" PUNCT
Prediction NOUN
of ADP
Primate PROPN
Splice PROPN
Junction PROPN
Gene PROPN
Sequences PROPN
with ADP
  SPACE
a DET
Cooperative PROPN
Knowledge PROPN
Acquisition PROPN
System PROPN
" PUNCT
E.M. PROPN
Nguifo PROPN
& CCONJ
J. PROPN
Sallantin[18 PROPN
] PUNCT
" PUNCT
Object PROPN
- PUNCT
Oriented VERB
Knowledge PROPN
Bases PROPN
for ADP
the DET
Analysis NOUN
of ADP
  SPACE
Prokaryotic ADJ
and CCONJ
Eukaryotic PROPN
Genomes PROPN
" PUNCT
  SPACE
G. PROPN
Perriere PROPN
, PUNCT
F. PROPN
Dorkeld PROPN
, PUNCT
F. PROPN
Rechenmann PROPN
, PUNCT
& CCONJ
C. PROPN
Gautier[19 PROPN
] PUNCT
" PUNCT
Petri PROPN
Net PROPN
Representations PROPN
in ADP
Metabolic PROPN
Pathways PROPN
" PUNCT
V.N. PROPN
Reddy PROPN
, PUNCT
M.L. PROPN
Mavrovouniotis PROPN
, PUNCT
& CCONJ
M.L. PROPN
Liebman[20 PROPN
] PUNCT
" PUNCT
Minimizing VERB
Complexity NOUN
in ADP
Cellular PROPN
Automata PROPN
Models PROPN
of ADP
  SPACE
Self PROPN
- PUNCT
Replication PROPN
" PUNCT
  SPACE
J.A. PROPN
Reggia PROPN
, PUNCT
H.-H. PROPN
Chou PROPN
, PUNCT
S.L. PROPN
Armentrout PROPN
, PUNCT
  SPACE
& CCONJ
Y. PROPN
Peng[21 VERB
] PUNCT
" PUNCT
Building VERB
Large ADJ
Knowledge NOUN
Bases NOUN
in ADP
Molecular PROPN
Biology PROPN
" PUNCT
O. PROPN
Schmeltzer PROPN
, PUNCT
C. PROPN
Medigue PROPN
, PUNCT
P. PROPN
Uvietta PROPN
, PUNCT
F. PROPN
Rechenmann PROPN
, PUNCT
  SPACE
F. PROPN
Dorkeld PROPN
, PUNCT
G. PROPN
Perriere PROPN
, PUNCT
& CCONJ
C. PROPN
Gautier[22 PROPN
] PUNCT
" PUNCT
A DET
Service PROPN
- PUNCT
Oriented VERB
Information PROPN
Sources PROPN
Database PROPN
for ADP
the DET
  SPACE
Biological PROPN
Sciences PROPN
" PUNCT
  SPACE
G.K. PROPN
Springer PROPN
& CCONJ
T.B. PROPN
Patrick[23 PROPN
] PUNCT
" PUNCT
Hidden PROPN
Markov PROPN
Models PROPN
and CCONJ
Iterative ADJ
Aligners NOUN
: PUNCT
Study VERB
of ADP
their PRON
  SPACE
Equivalence PROPN
and CCONJ
Possibilities PROPN
" PUNCT
H. PROPN
Tanaka PROPN
, PUNCT
K. PROPN
Asai PROPN
, PUNCT
M. PROPN
Ishikawa PROPN
, PUNCT
& CCONJ
A. PROPN
Konagaya[24 PROPN
] PUNCT
" PUNCT
Protein PROPN
Structure PROPN
Prediction PROPN
System PROPN
Based VERB
on ADP
Artificial PROPN
  SPACE
Neural PROPN
Networks PROPN
" PUNCT
  SPACE
J. PROPN
Vanhala PROPN
& CCONJ
K. PROPN
Kaski[25 PROPN
] PUNCT
" PUNCT
Transmembrane PROPN
Segment PROPN
Prediction PROPN
from ADP
Protein PROPN
Sequence PROPN
  SPACE
Data PROPN
" PUNCT
  SPACE
S.M. PROPN
Weiss PROPN
, PUNCT
D.M. PROPN
Cohen PROPN
& CCONJ
N. PROPN
Indurkhya PROPN
                      SPACE
TUTORIAL NOUN
PROGRAMTutorials NOUN
will AUX
be AUX
conducted VERB
at ADP
the DET
Bethesda PROPN
Ramada PROPN
Hotel PROPN
on ADP
Tuesday PROPN
, PUNCT
July PROPN
6.12:00 NUM
- PUNCT
2:45pm NUM
" PUNCT
Introduction NOUN
to ADP
Molecular PROPN
Biology PROPN
for ADP
Computer PROPN
  SPACE
Scientists NOUN
" PUNCT
  SPACE
Prof. PROPN
Mick PROPN
Noordewier PROPN
( PUNCT
Rutgers NOUN
University)This ADP
overview NOUN
of ADP
the DET
essential ADJ
facts NOUN
of ADP
molecular ADJ
biology NOUN
is AUX
intended VERB
as SCONJ
an DET
introduction NOUN
to ADP
the DET
field NOUN
for ADP
computer NOUN
scientists NOUN
who PRON
wish VERB
to PART
apply VERB
their PRON
tools NOUN
to ADP
this DET
rich ADJ
and CCONJ
complex ADJ
domain NOUN
. PUNCT
  SPACE
Material PROPN
covered VERB
will AUX
include VERB
structural ADJ
and CCONJ
informational ADJ
molecules NOUN
, PUNCT
the DET
basic ADJ
organization NOUN
of ADP
the DET
cell NOUN
and CCONJ
of ADP
genetic ADJ
material NOUN
, PUNCT
the DET
" PUNCT
central ADJ
dogma NOUN
" PUNCT
of ADP
gene NOUN
expression NOUN
, PUNCT
and CCONJ
selected VERB
other ADJ
topics NOUN
in ADP
the DET
area NOUN
of ADP
structure NOUN
, PUNCT
function NOUN
, PUNCT
and CCONJ
regulation NOUN
as SCONJ
relates VERB
to ADP
current ADJ
computational ADJ
approaches NOUN
. PUNCT
  SPACE
Dr. PROPN
Noordewier PROPN
has AUX
appointments NOUN
in ADP
both DET
Computer PROPN
Science PROPN
and CCONJ
Biology NOUN
at ADP
Rutgers PROPN
, PUNCT
and CCONJ
has AUX
extensive ADJ
experience NOUN
in ADP
basic ADJ
biological ADJ
research NOUN
in ADP
addition NOUN
to ADP
his PRON
current ADJ
work NOUN
in ADP
computational ADJ
biology.12:00 NOUN
- PUNCT
2:45pm NUM
" PUNCT
Introduction NOUN
to ADP
Artificial PROPN
Intelligence PROPN
for ADP
  SPACE
Biologists NOUN
" PUNCT
  SPACE
Dr. PROPN
Richard PROPN
Lathrop PROPN
( PUNCT
MIT PROPN
& CCONJ
Arris PROPN
Corp.)An VERB
overview NOUN
of ADP
the DET
field NOUN
of ADP
artificial ADJ
intelligence NOUN
will AUX
be AUX
presented VERB
, PUNCT
as SCONJ
it PRON
relates VERB
to ADP
actual ADJ
and CCONJ
potential ADJ
biological ADJ
applications NOUN
. PUNCT
  SPACE
Fundamental ADJ
techniques NOUN
, PUNCT
symbolic ADJ
programming NOUN
languages NOUN
, PUNCT
and CCONJ
notions NOUN
of ADP
search NOUN
will AUX
be AUX
discussed VERB
, PUNCT
as ADV
well ADV
as SCONJ
selected VERB
topics NOUN
in ADP
somewhat ADV
greater ADJ
detail NOUN
, PUNCT
such ADJ
as SCONJ
knowledge NOUN
representation NOUN
, PUNCT
inference NOUN
, PUNCT
and CCONJ
machine NOUN
learning NOUN
. PUNCT
  SPACE
The DET
intended VERB
audience NOUN
includes VERB
biologists NOUN
with ADP
some DET
computational ADJ
background NOUN
, PUNCT
but CCONJ
no DET
extensive ADJ
exposure NOUN
to ADP
artificial ADJ
intelligence NOUN
. PUNCT
  SPACE
Dr. PROPN
Lathrop PROPN
, PUNCT
co NOUN
- NOUN
developer NOUN
of ADP
ARIADNE PROPN
and CCONJ
related VERB
technologies NOUN
, PUNCT
has AUX
worked VERB
in ADP
the DET
area NOUN
of ADP
artificial ADJ
intelligence NOUN
applied VERB
to ADP
biological ADJ
problems NOUN
in ADP
both CCONJ
academia NOUN
and CCONJ
industry.3:00 PROPN
- PUNCT
5:45pm NUM
" PUNCT
Neural PROPN
Networks PROPN
, PUNCT
Statistics PROPN
, PUNCT
and CCONJ
Information PROPN
Theory PROPN
  SPACE
in ADP
Biological PROPN
Sequence PROPN
Analysis PROPN
" PUNCT
Dr. PROPN
Alan PROPN
Lapedes PROPN
( PUNCT
Los PROPN
Alamos PROPN
  SPACE
National PROPN
Laboratory PROPN
) PUNCT
This DET
tutorial NOUN
will AUX
cover VERB
the DET
most ADV
rapidly ADV
- PUNCT
expanding VERB
facet NOUN
of ADP
intelligent ADJ
systems NOUN
for ADP
molecular ADJ
biology NOUN
, PUNCT
that DET
of ADP
machine NOUN
learning NOUN
techniques NOUN
applied VERB
to ADP
sequence NOUN
analysis NOUN
. PUNCT
  SPACE
Closely ADV
interrelated VERB
topics NOUN
to PART
be AUX
addressed VERB
include VERB
the DET
use NOUN
of ADP
artifical ADJ
neural ADJ
networks NOUN
to ADP
elicit ADJ
both DET
specific ADJ
signals NOUN
and CCONJ
general ADJ
characteristics NOUN
of ADP
sequences NOUN
, PUNCT
and CCONJ
the DET
relationship NOUN
of ADP
such ADJ
approaches NOUN
to ADP
statistical ADJ
techniques NOUN
and CCONJ
information NOUN
- PUNCT
theoretic NOUN
views NOUN
of ADP
sequence NOUN
data NOUN
. PUNCT
  SPACE
Dr. PROPN
Lapedes PROPN
, PUNCT
of ADP
the DET
Theoretical PROPN
Division PROPN
at ADP
Los PROPN
Alamos PROPN
, PUNCT
has AUX
long ADV
been AUX
a DET
leader NOUN
in ADP
the DET
use NOUN
of ADP
such ADJ
techniques NOUN
in ADP
this DET
domain.3:00 PROPN
- PUNCT
5:45pm NUM
" PUNCT
Genetic ADJ
Algorithms PROPN
and CCONJ
Genetic PROPN
Programming PROPN
" PUNCT
  SPACE
Prof. PROPN
John PROPN
Koza PROPN
( PUNCT
Stanford PROPN
University)The PROPN
genetic ADJ
algorithm NOUN
, PUNCT
an DET
increasingly ADV
popular ADJ
approach NOUN
to ADP
highly ADV
non ADJ
- ADJ
linear ADJ
multi ADJ
- ADJ
dimensional ADJ
optimization NOUN
problems NOUN
, PUNCT
was AUX
originally ADV
inspired VERB
by ADP
a DET
biological ADJ
metaphor NOUN
. PUNCT
  SPACE
This DET
tutorial NOUN
will AUX
cover VERB
both DET
the DET
biological ADJ
motivations NOUN
, PUNCT
and CCONJ
the DET
actual ADJ
implementation NOUN
and CCONJ
characteristics NOUN
of ADP
the DET
algorithm NOUN
. PUNCT
  SPACE
Genetic PROPN
Programming PROPN
, PUNCT
an DET
extension NOUN
well ADV
- PUNCT
suited VERB
to ADP
problems NOUN
where ADV
the DET
discovery NOUN
of ADP
the DET
size NOUN
and CCONJ
shape NOUN
of ADP
the DET
solution NOUN
is AUX
a DET
major ADJ
part NOUN
of ADP
the DET
problem NOUN
, PUNCT
will AUX
also ADV
be AUX
addressed VERB
. PUNCT
  SPACE
Particular ADJ
attention NOUN
will AUX
be AUX
paid VERB
to ADP
biological ADJ
applications NOUN
, PUNCT
and CCONJ
to ADP
identifying VERB
resources NOUN
and CCONJ
software NOUN
that PRON
will AUX
permit VERB
attendees NOUN
to PART
begin VERB
using VERB
the DET
methods NOUN
. PUNCT
  SPACE
Dr. PROPN
Koza PROPN
, PUNCT
a DET
Consulting PROPN
Professor PROPN
of ADP
Computer PROPN
Science PROPN
at ADP
Stanford PROPN
, PUNCT
has AUX
taught VERB
this DET
subject NOUN
since SCONJ
1988 NUM
and CCONJ
is AUX
the DET
author NOUN
of ADP
a DET
standard ADJ
text NOUN
in ADP
the DET
field.3:00 PROPN
- PUNCT
5:45pm NUM
" PUNCT
Linguistic ADJ
Methods NOUN
in ADP
Sequence PROPN
Analysis NOUN
" PUNCT
  SPACE
Prof. PROPN
David PROPN
Searls PROPN
( PUNCT
University PROPN
of ADP
Pennsylvania PROPN
) PUNCT
  SPACE
& CCONJ
Shmuel PROPN
Pietrokovski PROPN
( PUNCT
Weizmann PROPN
Institute)Approaches NOUN
to PART
sequence VERB
analysis NOUN
based VERB
on ADP
linguistic ADJ
methodologies NOUN
are AUX
increasingly ADV
in ADP
evidence NOUN
. PUNCT
  SPACE
These DET
involve VERB
the DET
adaptation NOUN
of ADP
tools NOUN
and CCONJ
techniques NOUN
from ADP
computational ADJ
linguistics NOUN
for ADP
syntactic ADJ
pattern NOUN
recognition NOUN
and CCONJ
gene NOUN
prediction NOUN
, PUNCT
the DET
classification NOUN
of ADP
genetic ADJ
structures NOUN
and CCONJ
phenomena NOUN
using VERB
formal ADJ
language NOUN
theory NOUN
, PUNCT
the DET
identification NOUN
of ADP
significant ADJ
vocabularies NOUN
and CCONJ
overlapping VERB
codes NOUN
in ADP
sequence NOUN
data NOUN
, PUNCT
and CCONJ
sequence NOUN
comparison NOUN
reflecting VERB
taxonomic ADJ
and CCONJ
functional ADJ
relatedness NOUN
. PUNCT
  SPACE
Dr. PROPN
Searls PROPN
, PUNCT
who PRON
holds VERB
research NOUN
faculty NOUN
appointments NOUN
in ADP
both DET
Genetics PROPN
and CCONJ
Computer PROPN
Science PROPN
at ADP
Penn PROPN
, PUNCT
represents VERB
the DET
branch NOUN
of ADP
this DET
field NOUN
that PRON
considers VERB
higher ADJ
- PUNCT
order NOUN
syntactic ADJ
approaches NOUN
to PART
sequence VERB
data NOUN
, PUNCT
while SCONJ
Shmuel PROPN
Pietrokovski PROPN
has AUX
studied VERB
and CCONJ
published VERB
with ADP
Prof. PROPN
Edward PROPN
Trifinov PROPN
in ADP
the DET
area NOUN
of ADP
word NOUN
- PUNCT
based VERB
analyses NOUN
. PUNCT
                      SPACE
REGISTRATION PROPN
FORMMail NOUN
, PUNCT
with ADP
check NOUN
made VERB
out ADP
to ADP
" PUNCT
ISMB-93 PROPN
" PUNCT
, PUNCT
to PART
: PUNCT
               SPACE
ISMB PROPN
Conference PROPN
, PUNCT
c PROPN
/ SYM
o X
J. PROPN
Shavlik PROPN
               SPACE
Computer PROPN
Sciences PROPN
Department PROPN
               SPACE
University PROPN
of ADP
Wisconsin PROPN
               SPACE
1210 NUM
West PROPN
Dayton PROPN
Street PROPN
               SPACE
Madison PROPN
, PUNCT
WI PROPN
53706 NUM
  SPACE
USA PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
Name NOUN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
	         SPACE
Affiliation PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
	         SPACE
Address PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
Phone PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
FAX PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
Electronic PROPN
Mail PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
	         SPACE
Registration PROPN
Status PROPN
: PUNCT
_ PROPN
_ PROPN
_ PROPN
_ PROPN
Regular ADJ
   SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
Student PROPN
        SPACE
Presenting PROPN
? PUNCT
          SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
Talk PROPN
      SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
Poster NOUN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
TUTORIAL NOUN
REGISTRATION NOUN
         SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
" PUNCT
Molecular PROPN
Biology PROPN
for ADP
Computer PROPN
Scientists PROPN
" PUNCT
         SPACE
or CCONJ
        SPACE
_ NOUN
_ PROPN
_ PROPN
_ DET
" PUNCT
Artificial PROPN
Intelligence PROPN
for ADP
Biologists PROPN
" PUNCT
         SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
  SPACE
- PUNCT
         SPACE
_ PROPN
_ PROPN
_ PROPN
_ DET
" PUNCT
Neural PROPN
Networks PROPN
, PUNCT
Statistics PROPN
, PUNCT
and CCONJ
          SPACE
or CCONJ
     SPACE
Information PROPN
Theory PROPN
in ADP
Sequence PROPN
Analysis PROPN
" PUNCT
        SPACE
_ PROPN
_ PROPN
_ PROPN
_ DET
" PUNCT
Genetic PROPN
Algorithms PROPN
and CCONJ
Genetic PROPN
Programming PROPN
" PUNCT
         SPACE
or CCONJ
         SPACE
_ PROPN
_ PROPN
_ PROPN
_ DET
" PUNCT
Linguistic ADJ
Methods NOUN
in ADP
Sequence PROPN
Analysis NOUN
" PUNCT
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
PAYMENT NOUN
       SPACE
( PUNCT
Early PROPN
Registration PROPN
Before ADP
June PROPN
1 NUM
) PUNCT
        SPACE
Registration NOUN
: PUNCT
  SPACE
Early ADJ
   SPACE
Late PROPN
	     SPACE
$ SYM
_ NOUN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
              SPACE
Regular PROPN
  SPACE
$ SYM
100 NUM
    SPACE
$ SYM
125 NUM
	               SPACE
Student PROPN
  SPACE
$ SYM
75 NUM
     SPACE
$ SYM
100 NUM
	         SPACE
Tutorials NOUN
: PUNCT
     SPACE
One NUM
      SPACE
Two NUM
         SPACE
$ SYM
_ NOUN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
              SPACE
Regular PROPN
  SPACE
$ SYM
50 NUM
      SPACE
$ SYM
65 NUM
	               SPACE
Student PROPN
  SPACE
$ SYM
25 NUM
      SPACE
$ SYM
35 NUM
	         SPACE
Total NOUN
: PUNCT
                              SPACE
$ SYM
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
        SPACE
Registration NOUN
fees NOUN
include VERB
conference NOUN
proceedings NOUN
, PUNCT
         SPACE
refreshments NOUN
, PUNCT
and CCONJ
general ADJ
program NOUN
expenses NOUN
. PUNCT
                       SPACE
ORGANIZING NOUN
COMMITTEE PROPN
        SPACE
Lawrence PROPN
Hunter PROPN
                              SPACE
NLM PROPN
         SPACE
David PROPN
Searls PROPN
                  SPACE
U. PROPN
of ADP
Pennsylvania PROPN
        SPACE
Jude PROPN
Shavlik PROPN
                     SPACE
U. PROPN
of ADP
Wisconsin PROPN
                        SPACE
PROGRAM PROPN
COMMITTEE PROPN
        SPACE
Douglas PROPN
Brutlag PROPN
                      SPACE
Stanford PROPN
U. PROPN
        SPACE
Bruce PROPN
Buchanan PROPN
                  SPACE
U. PROPN
of ADP
Pittsburgh PROPN
        SPACE
Christian PROPN
Burks PROPN
          SPACE
Los PROPN
Alamos PROPN
National PROPN
Lab PROPN
        SPACE
Fred PROPN
Cohen PROPN
                    SPACE
U.C.-San NUM
Francisco PROPN
        SPACE
Chris PROPN
Fields PROPN
           SPACE
Inst PROPN
. PUNCT
for ADP
Genome PROPN
Research PROPN
        SPACE
Michael PROPN
Gribskov PROPN
                  SPACE
U.C.-San ADP
Diego PROPN
        SPACE
Peter PROPN
Karp PROPN
                     SPACE
SRI PROPN
International PROPN
        SPACE
Toni PROPN
Kazic PROPN
                         SPACE
Washington PROPN
U. PROPN
        SPACE
Alan PROPN
Lapedes PROPN
             SPACE
Los PROPN
Alamos PROPN
National PROPN
Lab PROPN
        SPACE
Richard PROPN
Lathrop PROPN
                SPACE
MIT PROPN
& CCONJ
Arris PROPN
Corp. PROPN
        SPACE
Charles PROPN
Lawrence PROPN
                          SPACE
Baylor PROPN
         SPACE
Michael PROPN
Mavrovouniotis PROPN
            SPACE
U. PROPN
of ADP
Maryland PROPN
        SPACE
George PROPN
Michaels PROPN
                              SPACE
NIH PROPN
        SPACE
Harold PROPN
Morowitz PROPN
                  SPACE
George PROPN
Mason PROPN
U. PROPN
        SPACE
Katsumi PROPN
Nitta PROPN
                               SPACE
ICOT PROPN
        SPACE
Mick PROPN
Noordewier PROPN
                       SPACE
Rutgers PROPN
U. PROPN
        SPACE
Ross PROPN
Overbeek PROPN
               SPACE
Argonne PROPN
National PROPN
Lab PROPN
        SPACE
Chris PROPN
Rawlings PROPN
                              SPACE
ICRF PROPN
        SPACE
Derek PROPN
Sleeman PROPN
                     SPACE
U. PROPN
of ADP
Aberdeen PROPN
        SPACE
David PROPN
States PROPN
                       SPACE
Washington PROPN
U. PROPN
        SPACE
Gary PROPN
Stormo PROPN
                       SPACE
U. PROPN
of ADP
Colorado PROPN
        SPACE
Ed PROPN
Uberbacher PROPN
             SPACE
Oak PROPN
Ridge PROPN
National PROPN
Lab PROPN
        SPACE
David PROPN
Waltz PROPN
              SPACE
Thinking PROPN
Machines PROPN
Corp PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59155From NUM
: PUNCT
green@island NOUN
. PUNCT
COM PROPN
( PUNCT
Robert PROPN
Greenstein)Subject NUM
: PUNCT
Re ADP
: PUNCT
accupuncture NOUN
and CCONJ
AIDSIn NOUN
article NOUN
< X
C5t76D.2x6@news.cso.uiuc.edu NOUN
> X
euclid@mrcnext.cso.uiuc.edu NOUN
( PUNCT
Euclid PROPN
K. PROPN
) PUNCT
writes:>aliceb@tea4two PUNCT
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Alice PROPN
Taylor PROPN
) PUNCT
writes:>>>A DET
friend NOUN
of ADP
mine NOUN
is AUX
seeing VERB
an DET
acupuncturist NOUN
and>>wants NOUN
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
danger NOUN
of ADP
getting>>AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
> X
> X
	 SPACE
Ask VERB
the DET
practitioner NOUN
whether SCONJ
he PRON
uses VERB
the DET
pre ADJ
- ADJ
sterilized VERB
disposable ADJ
> X
needles NOUN
, PUNCT
or CCONJ
if SCONJ
he PRON
reuses VERB
needles NOUN
, PUNCT
sterilizing VERB
them PRON
between ADP
use NOUN
. PUNCT
  SPACE
In ADP
the DET
> X
former ADJ
case NOUN
there PRON
's AUX
no DET
conceivable ADJ
way NOUN
to PART
get AUX
AIDS PROPN
from ADP
the DET
needles NOUN
. PUNCT
  SPACE
In ADP
> X
the DET
latter ADJ
case NOUN
it PRON
's AUX
highly ADV
unlikely ADJ
( PUNCT
though SCONJ
many ADJ
practitioners NOUN
use VERB
the DET
> X
disposable ADJ
variety NOUN
anyway).It ADV
is AUX
illegal ADJ
to PART
perform VERB
acupuncture NOUN
with ADP
unsterilized ADJ
needles NOUN
. PUNCT
No DET
licensedpractitioner NOUN
would AUX
dare VERB
do AUX
this DET
. PUNCT
Also ADV
there PRON
is AUX
not PART
a DET
single ADJ
documented VERB
caseof NOUN
transmission NOUN
of ADP
AIDS PROPN
via ADP
acupuncture NOUN
needles NOUN
. PUNCT
I PRON
would AUX
n't PART
worry VERB
about ADP
it.-- NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Robert PROPN
Greenstein PROPN
           SPACE
What PRON
the DET
fool NOUN
can AUX
not PART
learn VERB
he PRON
laughs VERB
at ADP
, PUNCT
thinkinggreen@srilanka.island.com X
   SPACE
that SCONJ
by ADP
his PRON
laughter NOUN
he PRON
shows VERB
superiority NOUN
instead ADV
                            SPACE
of ADP
latent NOUN
idiocy PROPN
- PUNCT
M. PROPN
CorelliNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59156From NUM
: PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)Subject PROPN
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)A PROPN
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn'sdisease PROPN
. PUNCT
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
without ADP
discomfort NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
theproblems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric).Thanks NOUN
in ADP
advance NOUN
, PUNCT
John PROPN
Eylesjge@cs.unc.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59157From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject PROPN
: PUNCT
NeurastheniaIn ADV
article NOUN
< X
1993Apr21.174553.812@spdcc.com PROPN
> X
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>responds VERB
well ADV
, PUNCT
if SCONJ
you PRON
're AUX
not PART
otherwise ADV
immunocompromised VERB
. PUNCT
  SPACE
Noring's PROPN
> X
anal ADJ
- PUNCT
retentive ADJ
idee NOUN
fixe NOUN
on ADP
having VERB
a DET
fungal ADJ
infection NOUN
in ADP
his PRON
sinuses NOUN
> X
is AUX
not PART
even ADV
in ADP
the DET
same ADJ
category NOUN
here ADV
, PUNCT
nor CCONJ
are AUX
these DET
walking VERB
neurasthenics NOUN
> X
who PRON
are AUX
convinced ADJ
they PRON
have AUX
" PUNCT
candida PROPN
" PUNCT
from ADP
reading VERB
a DET
quack NOUN
book NOUN
. PUNCT
Speaking VERB
of ADP
which PRON
, PUNCT
has AUX
anyone PRON
else ADV
been AUX
impressed ADJ
with ADP
how ADV
much ADJ
the DET
descriptions NOUN
of ADP
neurasthenia PROPN
published VERB
a DET
century NOUN
ago ADV
sound NOUN
like SCONJ
CFS?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59158From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
1993Apr22.001642.9186@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>>>Can AUX
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>>>the ADP
lost ADJ
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>>>exceeds PROPN
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>>>is NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>>>>>Annals PROPN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>>>>>Hmmm NUM
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressive>>behavior PROPN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)>>I NUM
purposefully ADV
left VERB
off ADP
the DET
page NOUN
numbers NOUN
to PART
encourage VERB
the DET
reader NOUN
to ADP
> X
study VERB
the DET
volumes NOUN
mentioned VERB
, PUNCT
and CCONJ
benefit VERB
therefrom.>Good NOUN
story NOUN
, PUNCT
Chuck PROPN
, PUNCT
but CCONJ
it PRON
wo AUX
n't PART
wash VERB
. PUNCT
  SPACE
I PRON
have AUX
read VERB
the DET
NY PROPN
Acad PROPN
Scione PROPN
( PUNCT
and CCONJ
have AUX
it PRON
) PUNCT
. PUNCT
  SPACE
This DET
AM NOUN
I PRON
could AUX
n't PART
find VERB
any DET
reference NOUN
to"weight CCONJ
rebound NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
it PRON
is AUX
n't PART
there ADV
, PUNCT
but CCONJ
since SCONJ
youcited VERB
it PRON
, PUNCT
it PRON
is AUX
your PRON
responsibility NOUN
to PART
show VERB
me PRON
where ADV
it PRON
is AUX
in ADV
there ADV
. PUNCT
There PRON
is AUX
no DET
index NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
you PRON
overstepped VERB
your PRON
knowledge NOUN
base NOUN
, PUNCT
as SCONJ
usual.-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59159Subject NUM
: PUNCT
good ADJ
bookFrom PROPN
: PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg)Having PROPN
been AUX
gone VERB
for ADP
10 NUM
days NOUN
, PUNCT
I PRON
'm AUX
way ADV
behind ADV
on ADP
my PRON
News PROPN
reading NOUN
, PUNCT
so SCONJ
manypardons NOUN
if SCONJ
I PRON
am AUX
repeating VERB
something PRON
that PRON
has AUX
been AUX
said VERB
already ADV
. PUNCT
I PRON
read VERB
a DET
good ADJ
book NOUN
while SCONJ
I PRON
was AUX
away ADV
, PUNCT
THE DET
ANTIBIOTIC PROPN
PARADOX NOUN
: PUNCT
HOW ADV
MIRACLE NOUN
DRUGSARE NOUN
DESTROYING VERB
THE DET
MIRACLE NOUN
, PUNCT
Stuart PROPN
B. PROPN
Levy PROPN
, PUNCT
M.D. PROPN
, PUNCT
1992 NUM
, PUNCT
Plenum PROPN
Press PROPN
, PUNCT
ISBN:0 PROPN
- PUNCT
306 NUM
- PUNCT
44331 NUM
- PUNCT
7.It PROPN
is AUX
about ADP
drug NOUN
resistant ADJ
microorganisms NOUN
& CCONJ
the DET
history NOUN
of ADP
antibiotics NOUN
. PUNCT
  SPACE
Itis PROPN
interesting ADJ
& CCONJ
written VERB
at ADP
a DET
level NOUN
which PRON
I PRON
think VERB
many ADJ
sci.med PUNCT
readers NOUN
wouldappreciate VERB
-- PUNCT
which PRON
is AUX
: PUNCT
  SPACE
it PRON
assumes VERB
an DET
intelligent ADJ
reader NOUN
who PRON
is AUX
capable ADJ
ofunderstanding VERB
scientific ADJ
concepts NOUN
, PUNCT
but CCONJ
who PRON
may AUX
not PART
yet ADV
have AUX
been AUX
exposed VERB
tothis DET
particular ADJ
information NOUN
. PUNCT
I.e. PROPN
, PUNCT
it PRON
assumes VERB
you PRON
are AUX
smart ADJ
enough ADJ
tounderstand NOUN
it PRON
, PUNCT
but CCONJ
it PRON
does AUX
not PART
assume VERB
that SCONJ
you PRON
already ADV
have AUX
a DET
degree NOUN
inmicrobiology NOUN
or CCONJ
medicine NOUN
. PUNCT
Table NOUN
of ADP
contents NOUN
: PUNCT
Chapter NOUN
1 NUM
	 SPACE
From ADP
Tragedy PROPN
the DET
Antibiotic PROPN
Age PROPN
is AUX
BornChapter PROPN
2 NUM
	 SPACE
The DET
Disease PROPN
and CCONJ
the DET
Cure NOUN
: PUNCT
  SPACE
The DET
Microscopic PROPN
World PROPN
of ADP
Bacteria PROPN
and CCONJ
	 SPACE
AntibioticsChapter PROPN
3 NUM
	 SPACE
Reliance PROPN
on ADP
Medicine PROPN
and CCONJ
Self PROPN
- PUNCT
Medication PROPN
: PUNCT
The DET
Seeds PROPN
of ADP
Antibiotic PROPN
	 SPACE
MisuseChapter PROPN
4 NUM
	 SPACE
Antibiotic PROPN
Resistance NOUN
: PUNCT
  SPACE
Microbial PROPN
Adaptation PROPN
and CCONJ
EvolutionChapter PROPN
5 NUM
	 SPACE
The DET
Antibiotic PROPN
MythChapter PROPN
6 NUM
	 SPACE
Antibiotics NOUN
, PUNCT
Animals PROPN
and CCONJ
the DET
Resistance PROPN
Gene PROPN
PoolChapter PROPN
7 NUM
	 SPACE
Further PROPN
Ecological PROPN
Considerations PROPN
: PUNCT
  SPACE
Antibiotic PROPN
Use PROPN
in ADP
Agriculture PROPN
, PUNCT
	 SPACE
Aquaculture PROPN
, PUNCT
Pets PROPN
, PUNCT
and CCONJ
Minor PROPN
Animal PROPN
SpeciesChapter PROPN
8 NUM
	 SPACE
Future PROPN
Prospects NOUN
: PUNCT
  SPACE
New PROPN
Advances NOUN
Against ADP
Potential PROPN
DisasterChapter PROPN
9 NUM
	 SPACE
The DET
Individual PROPN
and CCONJ
Antibiotic PROPN
ResistanceChapter PROPN
10 NUM
	 SPACE
Antibiotic PROPN
Resistance PROPN
: PUNCT
A DET
Societal ADJ
Issue NOUN
at ADP
Local PROPN
, PUNCT
National PROPN
, PUNCT
and CCONJ
	 SPACE
International PROPN
Levels PROPN
. PUNCT
Includes VERB
bibliography NOUN
and CCONJ
index NOUN
. PUNCT
I PRON
personally ADV
found VERB
that SCONJ
it PRON
made VERB
very ADV
good ADJ
Airplane PROPN
- PUNCT
Reading.-rg------------------------Ruth PROPN
Ginzberg PROPN
< X
rginzberg@eagle.wesleyan.edu>Philosophy NOUN
Department;Wesleyan PROPN
University;USANewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59160From NUM
: PUNCT
young@serum.kodak.com PROPN
( PUNCT
Rich PROPN
Young)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?>>In NOUN
article NOUN
< X
1qnns0$4l3@agate.berkeley.edu NUM
> X
spp@zabriskie.berkeley.edu ADV
( PUNCT
Steve PROPN
Pope PROPN
) PUNCT
writes:>>The NUM
mass NOUN
of ADP
anectdotal ADJ
evidence NOUN
, PUNCT
combined VERB
with ADP
the DET
lack NOUN
of>>a NOUN
properly ADV
constructed VERB
scientific ADJ
experiment NOUN
disproving>>the DET
hypothesis NOUN
, PUNCT
makes VERB
the DET
MSG PROPN
reaction NOUN
hypothesis NOUN
the>>most PROPN
likely ADJ
explanation NOUN
for ADP
events NOUN
. PUNCT
   SPACE
The DET
following VERB
is AUX
from ADP
a DET
critique NOUN
of ADP
a DET
" PUNCT
60 NUM
Minutes PROPN
" PUNCT
presentation NOUN
on ADP
MSG PROPN
   SPACE
which PRON
was AUX
aired VERB
on ADP
November PROPN
3rd NOUN
, PUNCT
1991 NUM
. PUNCT
  SPACE
The DET
critique NOUN
comes VERB
from ADP
THE DET
TUFTS PROPN
   SPACE
DIET PROPN
AND CCONJ
NUTRITION PROPN
LETTER PROPN
, PUNCT
February PROPN
1992 NUM
. PUNCT
  SPACE
[ PUNCT
... PUNCT
edited VERB
for ADP
brevity NOUN
... PUNCT
] PUNCT
	 SPACE
" PUNCT
Chances NOUN
are AUX
good ADJ
that SCONJ
if SCONJ
you PRON
watched VERB
' PUNCT
60 NUM
Minutes PROPN
' PART
last ADJ
November PROPN
	 SPACE
3rd ADJ
[ PUNCT
1991 NUM
] PUNCT
, PUNCT
you PRON
came VERB
away ADV
feeling VERB
MSG PROPN
is AUX
bad ADJ
for ADP
you PRON
. PUNCT
[ PUNCT
... PUNCT
] PUNCT
In ADP
	 SPACE
the DET
segment NOUN
entitled VERB
' PUNCT
No DET
MSG NOUN
, PUNCT
' PUNCT
for ADP
instance NOUN
, PUNCT
show NOUN
host NOUN
Ed PROPN
Bradley PROPN
	 SPACE
makes VERB
alarming ADJ
statements NOUN
without ADP
adequately ADV
substantiating VERB
them PRON
	 SPACE
( PUNCT
' PUNCT
millions NOUN
are AUX
suffering VERB
a DET
host NOUN
of ADP
symptoms NOUN
, PUNCT
and CCONJ
some DET
get VERB
violently ADV
	 SPACE
sick ADJ
' PUNCT
) PUNCT
; PUNCT
peppers VERB
his PRON
report NOUN
with ADP
sensational ADJ
but CCONJ
clinically ADV
unproven ADJ
	 SPACE
personal ADJ
testimony NOUN
... PUNCT
; PUNCT
and CCONJ
speaks VERB
of ADP
studies NOUN
on ADP
MSG PROPN
that PRON
make VERB
the DET
	 SPACE
substance NOUN
seem VERB
harmful ADJ
without ADP
explaining VERB
just ADV
how ADV
inconclusive ADJ
	 SPACE
those DET
studies NOUN
are AUX
. PUNCT
	 SPACE
Consider VERB
his PRON
making VERB
reference NOUN
at ADP
the DET
beginning NOUN
of ADP
the DET
program NOUN
to PART
	 SPACE
a DET
study NOUN
conducted VERB
at ADP
the DET
Eastern PROPN
Virginia PROPN
Medical PROPN
School PROPN
in ADP
order NOUN
	 SPACE
to PART
back VERB
up ADP
his PRON
comment NOUN
that SCONJ
there PRON
is AUX
' PUNCT
a DET
lot NOUN
of ADP
evidence NOUN
' PUNCT
that SCONJ
MSG PROPN
, PUNCT
	 SPACE
a DET
flavor NOUN
enhancer NOUN
in ADP
Chinese ADJ
and CCONJ
other ADJ
Asian ADJ
cuisines NOUN
as ADV
well ADV
as SCONJ
	 SPACE
in ADP
many ADJ
supermarket NOUN
items NOUN
, PUNCT
causes VERB
headaches NOUN
. PUNCT
  SPACE
What PRON
he PRON
does AUX
NOT ADV
	 SPACE
make VERB
reference NOUN
to ADP
is AUX
the DET
fact NOUN
that SCONJ
the DET
study NOUN
was AUX
performed VERB
not PART
on ADP
	 SPACE
humans NOUN
but CCONJ
on ADP
rabbits NOUN
. PUNCT
	 SPACE
One NUM
of ADP
the DET
researchers NOUN
who PRON
conducted VERB
the DET
study NOUN
, PUNCT
pharmacologist NOUN
	 SPACE
Patricia PROPN
Williams PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
says VERB
it PRON
certainly ADV
is AUX
conceivable ADJ
that PRON
	 SPACE
a DET
small ADJ
minority NOUN
of ADP
people NOUN
are AUX
sensitive ADJ
enough ADV
to ADP
MSG PROPN
to PART
get AUX
	 SPACE
headaches NOUN
from ADP
it PRON
. PUNCT
  SPACE
' PUNCT
But CCONJ
, PUNCT
' PUNCT
she PRON
explains VERB
, PUNCT
' PUNCT
the DET
show NOUN
probably ADV
	 SPACE
overemphasized VERB
the DET
extent NOUN
of ADP
the DET
problem NOUN
. PUNCT
' PUNCT
	 SPACE
A DET
second ADJ
lapse NOUN
comes VERB
with ADP
mention NOUN
of ADP
Dr. PROPN
John PROPN
Olney PROPN
, PUNCT
a DET
professor NOUN
	 SPACE
at ADP
the DET
Washington PROPN
University PROPN
School PROPN
of ADP
Medicine PROPN
who PRON
, PUNCT
Mr. PROPN
Bradley PROPN
	 SPACE
remarks NOUN
, PUNCT
' PUNCT
says VERB
that SCONJ
his PRON
20 NUM
years NOUN
of ADP
research NOUN
with ADP
laboratory NOUN
	 SPACE
animals NOUN
shows VERB
MSG PROPN
is AUX
a DET
hazard NOUN
for ADP
developing VERB
youngsters NOUN
' PUNCT
because SCONJ
	 SPACE
it PRON
poses VERB
a DET
threat NOUN
of ADP
irreversible ADJ
brain NOUN
damage NOUN
. PUNCT
  SPACE
Dr. PROPN
Olney PROPN
's PART
	 SPACE
research NOUN
with ADP
lab NOUN
animals NOUN
does AUX
not PART
' PUNCT
show VERB
' PUNCT
anything PRON
about ADP
human NOUN
	 SPACE
youngsters NOUN
. PUNCT
	 SPACE
In ADP
fact NOUN
, PUNCT
only ADV
under ADP
extreme ADJ
circumsrtances NOUN
did AUX
Dr. PROPN
Olney PROPN
's PART
	 SPACE
experiments NOUN
ever ADV
bring VERB
about ADP
any DET
brain NOUN
damage NOUN
: PUNCT
when ADV
he PRON
injected VERB
	 SPACE
extremely ADV
high ADJ
doses NOUN
of ADP
MSG PROPN
into ADP
rodents NOUN
, PUNCT
completely ADV
bypassing VERB
	 SPACE
their PRON
digestive ADJ
tracts NOUN
and CCONJ
entering VERB
their PRON
bloodstreams NOUN
more ADV
directly ADV
, PUNCT
	 SPACE
and CCONJ
when ADV
he PRON
used VERB
tubes NOUN
to ADP
force NOUN
- PUNCT
feed VERB
huge ADJ
amounts NOUN
of ADP
the DET
substance NOUN
	 SPACE
to ADP
very ADV
young ADJ
animals NOUN
on ADP
an DET
empty ADJ
stomach NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
neither CCONJ
	 SPACE
of ADP
those DET
procedures NOUN
occurs VERB
with ADP
humans NOUN
; PUNCT
they PRON
simply ADV
take VERB
in ADP
MSG PROPN
	 SPACE
with ADP
food NOUN
. PUNCT
  SPACE
And CCONJ
most ADJ
of ADP
what PRON
they PRON
take VERB
in ADP
is AUX
broken VERB
down ADP
by ADP
	 SPACE
enzymes NOUN
in ADP
the DET
wall NOUN
of ADP
the DET
small ADJ
intestine NOUN
, PUNCT
so SCONJ
that SCONJ
very ADV
little ADJ
	 SPACE
reaches VERB
the DET
bloodstream NOUN
-- PUNCT
much ADV
to ADP
little ADJ
, PUNCT
in ADP
fact NOUN
, PUNCT
for ADP
human NOUN
	 SPACE
blood NOUN
levels NOUN
of ADP
MSG PROPN
to PART
come VERB
anywhere ADV
near SCONJ
the DET
high ADJ
concentrations NOUN
	 SPACE
found VERB
in ADP
Dr. PROPN
Olney PROPN
's PART
lab NOUN
animals NOUN
..... PUNCT
	 SPACE
The DET
World PROPN
Health PROPN
Organization PROPN
appears VERB
to PART
be AUX
very ADV
much ADV
aware ADJ
of ADP
	 SPACE
that DET
fact NOUN
. PUNCT
  SPACE
And CCONJ
so ADV
does AUX
the DET
European PROPN
Communities PROPN
' PART
Scientific PROPN
	 SPACE
Committee PROPN
for ADP
Food PROPN
.... PUNCT
Both DET
, PUNCT
after ADP
examining VERB
numerous ADJ
studies NOUN
, PUNCT
	 SPACE
have AUX
concluded VERB
that SCONJ
MSG PROPN
is AUX
safe ADJ
. PUNCT
	 SPACE
Their PRON
determination NOUN
makes VERB
sense NOUN
, PUNCT
considering VERB
that SCONJ
MSG PROPN
has AUX
never ADV
	 SPACE
been AUX
proven VERB
to PART
cause VERB
all DET
the DET
symptoms NOUN
that PRON
have AUX
been AUX
attributed VERB
	 SPACE
to ADP
it PRON
-- PUNCT
headaches NOUN
, PUNCT
swelling VERB
, PUNCT
a DET
tightness NOUN
in ADP
the DET
chest NOUN
, PUNCT
and CCONJ
a DET
	 SPACE
burning VERB
sensation NOUN
, PUNCT
among ADP
others NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
the DET
most ADV
fail ADJ
- PUNCT
safe ADJ
	 SPACE
of ADP
clinical ADJ
studies NOUN
, PUNCT
the DET
double ADJ
- PUNCT
blind ADJ
study NOUN
... PUNCT
, PUNCT
has AUX
consistently ADV
	 SPACE
exonerated VERB
the DET
much ADV
- PUNCT
maligned VERB
substance NOUN
. PUNCT
	 SPACE
That DET
's AUX
quite ADV
fortunate ADJ
since SCONJ
the DET
alleged ADJ
hazardous ADJ
component NOUN
of ADP
	 SPACE
monosodium PROPN
glutamate PROPN
, PUNCT
glutamate PROPN
, PUNCT
enters VERB
our PRON
systems NOUN
whenever ADV
	 SPACE
we PRON
eat VERB
any DET
food NOUN
that PRON
contains VERB
protein NOUN
. PUNCT
  SPACE
The DET
reason NOUN
is AUX
that SCONJ
one NUM
	 SPACE
of ADP
the DET
amino ADJ
acids NOUN
that PRON
make VERB
up ADP
protein NOUN
, PUNCT
glutamic PROPN
acid NOUN
, PUNCT
is AUX
broken VERB
	 SPACE
down ADV
into ADP
glutamate NOUN
during ADP
digestion NOUN
. PUNCT
	 SPACE
It PRON
's AUX
a DET
breakdown NOUN
that PRON
occurs VERB
frequently ADV
. PUNCT
  SPACE
Glutamic PROPN
acid NOUN
is AUX
the DET
	 SPACE
most ADV
abundant ADJ
of ADP
the DET
20 NUM
or CCONJ
so ADV
amino ADJ
acids NOUN
in ADP
the DET
diet NOUN
. PUNCT
  SPACE
It PRON
makes VERB
	 SPACE
up ADV
about ADV
15 NUM
percent NOUN
of ADP
the DET
protein NOUN
in ADP
flesh NOUN
foods NOUN
, PUNCT
20 NUM
percent NOUN
in ADP
	 SPACE
milk NOUN
, PUNCT
25 NUM
percent NOUN
in ADP
corn NOUN
, PUNCT
and CCONJ
29 NUM
percent NOUN
in ADP
whole ADJ
wheat NOUN
. PUNCT
	 SPACE
That DET
does AUX
n't PART
mean VERB
it PRON
's AUX
entirely ADV
unimaginable ADJ
that SCONJ
a DET
small ADJ
number NOUN
	 SPACE
of ADP
people NOUN
have AUX
trouble NOUN
metabolizing VERB
MSG PROPN
properly ADV
and CCONJ
are AUX
therefore ADV
	 SPACE
sensitive ADJ
to ADP
it PRON
... PUNCT
The DET
consensus NOUN
reached VERB
by ADP
large ADJ
, PUNCT
international ADJ
	 SPACE
professional ADJ
organizations NOUN
[ PUNCT
is AUX
that SCONJ
MSG PROPN
is AUX
safe ADJ
] PUNCT
, PUNCT
the DET
same ADJ
consensus NOUN
	 SPACE
reached VERB
by ADP
the DET
FDA PROPN
and CCONJ
the DET
biomedical ADJ
community NOUN
at ADP
large ADJ
. PUNCT
"-Rich PUNCT
Young PROPN
( PUNCT
These DET
are AUX
not PART
Kodak PROPN
's PART
opinions.)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59161From NUM
: PUNCT
neal@cmptrc.lonestar.org PROPN
( PUNCT
Neal PROPN
Howard)Subject NUM
: PUNCT
Re ADP
: PUNCT
seek VERB
sedative ADJ
informationIn PROPN
article NOUN
< X
C5uBrn.F0u@fig.citib.com X
> X
ghica@fig.citib.com PROPN
( PUNCT
Renato PROPN
Ghica PROPN
) PUNCT
writes:>>has PUNCT
any DET
one NUM
heard VERB
of ADP
a DET
sedative ADJ
called VERB
" PUNCT
Rhoepnol PROPN
" PUNCT
? PUNCT
Made VERB
by ADP
LaRouche,>I PROPN
believe VERB
. PUNCT
Any DET
info NOUN
as SCONJ
to PART
side VERB
effects NOUN
or CCONJ
equivalent ADJ
tranquillizers?You PROPN
probably ADV
mean VERB
" PUNCT
RoHypnol PROPN
" PUNCT
, PUNCT
a DET
member NOUN
of ADP
the DET
benzodiazepine PROPN
family NOUN
, PUNCT
chemical NOUN
name NOUN
is AUX
flunitrazepam NOUN
. PUNCT
It PRON
is AUX
such DET
a DET
strong ADJ
tranquilizer NOUN
that PRON
it PRON
isprobably ADV
best ADV
refered VERB
to ADP
as SCONJ
a DET
hypnotic ADJ
, PUNCT
rather ADV
than SCONJ
a DET
tranquilizer NOUN
. PUNCT
Just ADV
onepill ADV
will AUX
knock VERB
you PRON
on ADP
your PRON
ass NOUN
. PUNCT
Side NOUN
effects NOUN
may AUX
be AUX
similar ADJ
to ADP
valium PROPN
, PUNCT
xanax PROPN
, PUNCT
serax PROPN
, PUNCT
librium NOUN
and CCONJ
other ADJ
benzodiazepines NOUN
. PUNCT
-- PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
Neal PROPN
Howard PROPN
   SPACE
' PART
91 NUM
XLH-1200 PROPN
      SPACE
DoD PROPN
# SYM
686 NUM
      SPACE
CompuTrac PROPN
, PUNCT
Inc PROPN
( PUNCT
Richardson PROPN
, PUNCT
TX PROPN
) PUNCT
	       SPACE
doh VERB
# SYM
0000001200 NUM
   SPACE
|355o33| PROPN
      SPACE
neal@cmptrc.lonestar.org PROPN
	       SPACE
Std PROPN
disclaimer NOUN
: PUNCT
My PRON
opinions NOUN
are AUX
mine ADJ
, PUNCT
not PART
CompuTrac PROPN
's PART
. PUNCT
         SPACE
" PUNCT
Let VERB
us PRON
learn VERB
to PART
dream VERB
, PUNCT
gentlemen NOUN
, PUNCT
and CCONJ
then ADV
perhaps ADV
          SPACE
we PRON
shall AUX
learn VERB
the DET
truth NOUN
. PUNCT
" PUNCT
-- PUNCT
August PROPN
Kekule PROPN
' PUNCT
( PUNCT
1890)=============================================================================Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59162From NUM
: SYM
brandon@caldonia.nlm.nih.gov NUM
( PUNCT
Brandon PROPN
Brylawski)Subject NUM
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?mryan@stsci.edu PROPN
writes VERB
: PUNCT
: PUNCT
Am AUX
I PRON
justified ADJ
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor NOUN
? PUNCT
: PUNCT
: PUNCT
Last ADJ
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife NOUN
. PUNCT
: PUNCT
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
: PUNCT
clinic NOUN
was AUX
open ADJ
till SCONJ
6:00 NUM
pm NOUN
. PUNCT
  SPACE
The DET
receptionist NOUN
went VERB
to ADP
the DET
back NOUN
and CCONJ
told VERB
the DET
: PUNCT
doctor NOUN
that SCONJ
we PRON
were AUX
there ADV
, PUNCT
and CCONJ
came VERB
back ADV
and CCONJ
told VERB
us PRON
the DET
doctor NOUN
would AUX
not PART
: PUNCT
see VERB
us PRON
because SCONJ
she PRON
had AUX
someplace NOUN
to PART
go VERB
at ADP
6:00 NUM
and CCONJ
did AUX
not PART
want VERB
to PART
be AUX
delayed VERB
: PUNCT
here ADV
. PUNCT
  SPACE
During ADP
the DET
next ADJ
few ADJ
minutes NOUN
, PUNCT
in ADP
response NOUN
to ADP
my PRON
questions NOUN
, PUNCT
with ADP
several ADJ
: PUNCT
trips NOUN
to ADP
the DET
back NOUN
room NOUN
, PUNCT
the DET
receptionist NOUN
told VERB
me PRON
: PUNCT
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
was AUX
doing VERB
paperwork NOUN
in ADP
the DET
back NOUN
, PUNCT
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
look VERB
at ADP
his PRON
finger NOUN
to PART
advise VERB
us PRON
on ADP
going VERB
: PUNCT
	   SPACE
to ADP
the DET
emergency NOUN
room NOUN
; PUNCT
: PUNCT
	 SPACE
- PUNCT
the DET
doctor NOUN
would AUX
not PART
even ADV
speak VERB
to ADP
me PRON
; PUNCT
: PUNCT
	 SPACE
- PUNCT
she PRON
would AUX
not PART
tell VERB
me PRON
the DET
doctor NOUN
's PART
name NOUN
, PUNCT
or CCONJ
her PRON
own ADJ
name NOUN
; PUNCT
: PUNCT
	 SPACE
- PUNCT
when ADV
asked VERB
who PRON
is AUX
in ADP
charge NOUN
of ADP
the DET
clinic NOUN
, PUNCT
she PRON
said VERB
" PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
" PUNCT
: PUNCT
: PUNCT
I PRON
realize VERB
that SCONJ
a DET
private ADJ
clinic NOUN
is AUX
not PART
the DET
same ADJ
as SCONJ
an DET
emergency NOUN
room NOUN
, PUNCT
but CCONJ
: PUNCT
I PRON
was AUX
quite ADV
angry ADJ
at ADP
being AUX
turned VERB
away ADV
because SCONJ
the DET
doctor NOUN
did AUX
not PART
want VERB
to PART
: PUNCT
be AUX
bothered VERB
. PUNCT
  SPACE
My PRON
son NOUN
did AUX
get AUX
three NUM
stitches NOUN
at ADP
the DET
emergency NOUN
room NOUN
. PUNCT
  SPACE
Speaking VERB
as SCONJ
a DET
physician NOUN
who PRON
works VERB
in ADP
an DET
urgent ADJ
care NOUN
center NOUN
, PUNCT
the DET
abovebehavior NOUN
is AUX
completely ADV
inappropriate ADJ
. PUNCT
If SCONJ
a DET
patient NOUN
who PRON
requires VERB
extensivecare NOUN
shows NOUN
up ADP
at ADP
the DET
last ADJ
minute NOUN
, PUNCT
we PRON
always ADV
see VERB
them PRON
and CCONJ
give VERB
them PRON
appropriatecare NOUN
. PUNCT
It PRON
is AUX
reasonable ADJ
for ADP
a DET
clinic NOUN
to PART
refuse VERB
to PART
see VERB
patients NOUN
outside ADP
of ADP
itsposted VERB
hours NOUN
, PUNCT
but CCONJ
what PRON
you PRON
describe VERB
is AUX
misbehavior ADJ
. PUNCT
Ask VERB
to PART
speak VERB
to ADP
theclinic ADJ
director NOUN
, PUNCT
and CCONJ
complain VERB
. PUNCT
Whatever PRON
their PRON
attitude NOUN
, PUNCT
they PRON
have AUX
nothing PRON
togain ADJ
from ADP
angering VERB
patients NOUN
. PUNCT
Brandon PROPN
BrylawskiNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59163From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In PROPN
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)wrote PROPN
: PUNCT
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
disease NOUN
. PUNCT
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
without ADP
discomfort NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
John PROPN
Eyles PROPN
> X
jge@cs.unc.eduIf NOUN
she PRON
is AUX
having VERB
problems NOUN
with ADP
fresh ADJ
vegetables NOUN
, PUNCT
the DET
guess NOUN
is AUX
that SCONJ
thereis NOUN
some DET
obstruction NOUN
of ADP
the DET
intestine NOUN
. PUNCT
  SPACE
Without ADP
knowing VERB
more ADV
it PRON
is AUX
notpossible ADJ
to PART
say VERB
whether SCONJ
the DET
obstruction NOUN
is AUX
permanent ADJ
due ADP
to ADP
scarring NOUN
, PUNCT
or CCONJ
temporary ADJ
due ADP
to ADP
swelling NOUN
of ADP
inflammed VERB
intestine NOUN
. PUNCT
  SPACE
In ADP
general ADJ
, PUNCT
there ADV
areno PROPN
dietary ADJ
limitations NOUN
in ADP
patients NOUN
with ADP
Crohn PROPN
's PART
except SCONJ
as SCONJ
they PRON
relateto VERB
obstruction NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
evidence NOUN
that SCONJ
any DET
foods NOUN
will AUX
bring VERB
on ADP
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
  SPACE
It PRON
is AUX
important ADJ
to PART
distinguish VERB
recurrence NOUN
fromrecurrent ADJ
symptoms NOUN
. PUNCT
  SPACE
A DET
physician NOUN
would AUX
think VERB
of ADP
new ADJ
inflammation NOUN
as SCONJ
recurrence NOUN
, PUNCT
while SCONJ
pains NOUN
from ADP
raw ADJ
veggies NOUN
just ADV
imply VERB
a DET
narrowing NOUN
of ADP
theintestine NOUN
. PUNCT
  SPACE
Your PRON
friend NOUN
should AUX
look VERB
into ADP
membership NOUN
in ADP
the DET
Crohn PROPN
's PART
and CCONJ
Colitis PROPN
Foundation PROPN
of ADP
America PROPN
. PUNCT
   SPACE
1 NUM
- PUNCT
800 NUM
- PUNCT
932 NUM
- PUNCT
2423Good NUM
luck NOUN
to ADP
your PRON
friend NOUN
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59164From NUM
: PUNCT
HOLFELTZ@LSTC2VM.stortek.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr19.205615.1013@unlv.edu>todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr19.205615.1013@unlv.edu NUM
> X
, PUNCT
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
>>The PUNCT
proper ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
It PRON
was AUX
an DET
effect NOUN
discoverd NOUN
by ADP
> X
S. PROPN
Kirlian PROPN
, PUNCT
a DET
soviet ADJ
film NOUN
developer NOUN
in ADP
1939.>>As NUM
I PRON
recall VERB
, PUNCT
the DET
coronas PROPN
visible ADJ
are AUX
ascribed VERB
to ADP
static ADJ
discharges NOUN
> X
and CCONJ
chemical NOUN
reactions NOUN
between ADP
the DET
organic ADJ
material NOUN
and CCONJ
the DET
silver NOUN
> X
halides NOUN
in ADP
the DET
films.>>-- NOUN
> X
         SPACE
Tarl PROPN
Neustaedter PROPN
       SPACE
Stratus PROPN
Computer PROPN
> X
         SPACE
tarl@sw.stratus.com PROPN
    SPACE
Marlboro PROPN
, PUNCT
Mass.>Disclaimer PROPN
: PUNCT
My PRON
employer NOUN
is AUX
not PART
responsible ADJ
for ADP
my PRON
opinions.>>I PROPN
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
> X
        SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
> PROPN
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
> X
appreciated VERB
. PUNCT
> X
        SPACE
In ADP
case NOUN
you PRON
do AUX
n't PART
know VERB
, PUNCT
Krillean PROPN
Photography PROPN
, PUNCT
to ADP
the DET
best ADJ
of ADP
my PRON
> X
knowledge NOUN
, PUNCT
involves VERB
taking VERB
pictures NOUN
of ADP
an DET
( PUNCT
most ADJ
of ADP
the DET
time NOUN
) PUNCT
organic ADJ
> X
object NOUN
between ADP
charged VERB
plates NOUN
. PUNCT
The DET
picture NOUN
will AUX
show VERB
energy NOUN
patterns NOUN
> X
or CCONJ
spikes VERB
around ADP
the DET
object NOUN
photographed VERB
, PUNCT
and CCONJ
depending VERB
on ADP
what PRON
type NOUN
> X
of ADP
object NOUN
it PRON
is AUX
, PUNCT
the DET
spikes NOUN
or CCONJ
energy NOUN
patterns NOUN
will AUX
vary VERB
. PUNCT
One PRON
might AUX
> VERB
extrapolate VERB
here ADV
and CCONJ
say VERB
that SCONJ
this DET
proves VERB
that SCONJ
every DET
object NOUN
within ADP
> X
the DET
universe NOUN
( PUNCT
as SCONJ
we PRON
know VERB
it PRON
) PUNCT
has AUX
its PRON
own ADJ
energy NOUN
signature.>>To NOUN
construct VERB
a DET
Kirlian ADJ
device NOUN
find VERB
a DET
copy NOUN
of ADP
_ PROPN
Handbook PROPN
of ADP
PsychicDiscoveries PROPN
_ ADV
by ADP
Sheila PROPN
Ostrander PROPN
and CCONJ
Lynn PROPN
Schroeder PROPN
1975 NUM
Library PROPN
ofCongress PROPN
73 NUM
- SYM
88532 NUM
. PUNCT
  SPACE
It PRON
describes VERB
the DET
necessary ADJ
equipment NOUN
and CCONJ
suppliers NOUN
for ADP
the DET
Tesla PROPN
coil NOUN
or CCONJ
alternatives NOUN
, PUNCT
the DET
copper NOUN
plate NOUN
andsetup VERB
. PUNCT
I PRON
used VERB
a DET
pack NOUN
of ADP
SX-70 PROPN
film NOUN
and CCONJ
removed VERB
a DET
single ADJ
pack NOUN
in ADP
adark PROPN
room NOUN
, PUNCT
then ADV
made VERB
the DET
exposure NOUN
, PUNCT
put VERB
it PRON
back ADV
in ADP
the DET
film NOUN
pack NOUN
andran VERB
it PRON
out ADP
through ADP
the DET
rollers NOUN
of ADP
the DET
camera PROPN
forinstant PROPN
developingand PROPN
very ADV
high ADJ
quality NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
good ADJ
way NOUN
to PART
experience VERB
what PRON
KirlianPhotography PROPN
is AUX
really ADV
and CCONJ
what PRON
it PRON
is AUX
not PART
. PUNCT
  SPACE
As SCONJ
you PRON
know VERB
all ADV
ready ADJ
, PUNCT
it PRON
is AUX
the DET
pattern NOUN
in ADP
the DET
bioplasmic PROPN
energy NOUN
fieldthat PROPN
is AUX
significant ADJ
. PUNCT
Variations NOUN
caused VERB
by ADP
exposure NOUN
time NOUN
, PUNCT
distance NOUN
from ADP
the DET
plate NOUN
, PUNCT
orpressure ADJ
on ADP
the DET
plate NOUN
, PUNCT
or CCONJ
variations NOUN
in ADP
the DET
photo NOUN
materials NOUN
are AUX
notimportant ADJ
. PUNCT
Hard ADJ
copy NOUN
mail NOUN
; PUNCT
Mark PROPN
C. PROPN
High PROPN
                SPACE
P NOUN
O PROPN
Box PROPN
  SPACE
882 NUM
                SPACE
Parowan PROPN
, PUNCT
  SPACE
UT PROPN
                       SPACE
84761 NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59165From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject PROPN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionI PROPN
can AUX
not PART
believe VERB
the DET
way NOUN
this DET
thread NOUN
on ADP
candida(yeast NOUN
) PUNCT
has AUX
progressed VERB
. PUNCT
Steve PROPN
Dyer PROPN
and CCONJ
I PRON
have AUX
been AUX
exchanging VERB
words NOUN
over ADP
the DET
same ADJ
topic NOUN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
when ADV
he PRON
displayed VERB
his PRON
typical ADJ
reserve NOUN
and CCONJ
attacked VERB
a DET
women NOUN
poster NOUN
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
Let VERB
me PRON
tell VERB
you PRON
who PRON
the DET
quacks NOUN
really ADV
are AUX
, PUNCT
these DET
are AUX
the DET
physicans NOUN
who PRON
have AUX
no DET
idea NOUN
how ADV
the DET
human ADJ
body NOUN
interacts VERB
with ADP
it PRON
's AUX
environment NOUN
and CCONJ
how ADV
that DET
balance NOUN
can AUX
be AUX
altered VERB
by ADP
diet NOUN
and CCONJ
antibiotics NOUN
. PUNCT
  SPACE
These DET
are AUX
the DET
physicians NOUN
who PRON
dismiss VERB
their PRON
patients NOUN
with ADP
difficult ADJ
symptomatology NOUN
and CCONJ
make VERB
them PRON
go VERB
from ADP
doctor NOUN
to ADP
doctor NOUN
to PART
find VERB
relief(like PROPN
Elaine PROPN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
) PUNCT
and CCONJ
then ADV
when ADV
they PRON
find VERB
one NOUN
that PRON
solves VERB
their PRON
problem NOUN
, PUNCT
the DET
rest NOUN
start NOUN
yelling VERB
quack NOUN
. PUNCT
  SPACE
Could AUX
it PRON
just ADV
be AUX
professional ADJ
jealousy NOUN
? PUNCT
  SPACE
I PRON
could AUX
n't PART
help VERB
Elaine PROPN
or CCONJ
Jonbut PROPN
somebody PRON
else ADV
did AUX
. PUNCT
  SPACE
Could AUX
they PRON
know VERB
more ADJ
than SCONJ
Me PRON
? PUNCT
  SPACE
No DET
way NOUN
, PUNCT
they PRON
must AUX
be AUX
a DET
quack NOUN
. PUNCT
  SPACE
I PRON
've AUX
been AUX
teaching VERB
a DET
human ADJ
nutrition NOUN
course NOUN
for ADP
Medical ADJ
students NOUN
for ADP
over ADP
ten NUM
years NOUN
now ADV
and CCONJ
guess VERB
who PRON
the DET
most ADV
receptive ADJ
students NOUN
are AUX
? PUNCT
  SPACE
Those DET
that PRON
were AUX
raised VERB
on ADP
farms NOUN
and CCONJ
saw VERB
first ADJ
- PUNCT
hand NOUN
the DET
effect NOUN
of ADP
diet NOUN
on ADP
the DET
health NOUN
of ADP
their PRON
farm NOUN
animals NOUN
and CCONJ
those DET
students NOUN
who PRON
had AUX
made VERB
a DET
dramatic ADJ
diet NOUN
change NOUN
prior ADV
to ADP
entering VERB
medical PROPN
school(switched PROPN
to ADP
the DET
vegan ADJ
diet NOUN
) PUNCT
. PUNCT
  SPACE
Typically ADV
, PUNCT
this DET
is AUX
about ADV
1/3 NUM
of ADP
my PRON
class NOUN
of ADP
90 NUM
students NOUN
. PUNCT
  SPACE
Those DET
not PART
interested ADJ
in ADP
nutrition NOUN
either CCONJ
tune VERB
me PRON
out ADP
or CCONJ
just ADV
stop VERB
coming VERB
to ADP
class NOUN
. PUNCT
  SPACE
That DET
's AUX
okay ADJ
because SCONJ
I PRON
know VERB
that SCONJ
some DET
of ADP
what PRON
I PRON
'm AUX
teaching VERB
is AUX
going VERB
to PART
stick VERB
and CCONJ
there PRON
will AUX
be AUX
at ADP
least ADJ
a DET
few ADJ
" PUNCT
enlightened VERB
" PUNCT
physicians NOUN
practicing VERB
in ADP
the DET
U.S. PROPN
  SPACE
It PRON
's AUX
really ADV
too ADV
bad ADJ
that SCONJ
most ADJ
U.S. PROPN
medical ADJ
schools NOUN
do AUX
n't PART
cover VERB
nutrition NOUN
because SCONJ
if SCONJ
they PRON
did AUX
, PUNCT
candida PROPN
would AUX
not PART
be AUX
viewed VERB
as SCONJ
a DET
non ADJ
- ADJ
disease NOUN
by ADP
so ADV
many ADJ
in ADP
the DET
medical ADJ
profession NOUN
. PUNCT
In ADP
animal NOUN
husbandry NOUN
, PUNCT
an DET
animal NOUN
is AUX
reinnoculated VERB
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
after ADP
antibiotics NOUN
are AUX
stopped VERB
. PUNCT
  SPACE
Medicine PROPN
has AUX
decided VERB
that SCONJ
since SCONJ
humans NOUN
do AUX
not PART
have AUX
a DET
ruminant ADJ
stomach NOUN
, PUNCT
no DET
such ADJ
reinnoculation NOUN
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
is AUX
needed VERB
after ADP
coming VERB
off ADP
a DET
braod NOUN
spectrum NOUN
antibiotic ADJ
. PUNCT
  SPACE
Humans NOUN
have AUX
all DET
kinds NOUN
of ADP
different ADJ
organisms NOUN
living VERB
in ADP
the DET
GI PROPN
system(mouth PROPN
, PUNCT
stomach NOUN
, PUNCT
small ADJ
and CCONJ
large ADJ
intestine NOUN
) PUNCT
, PUNCT
sinuses NOUN
, PUNCT
vagina PROPN
and CCONJ
on ADP
the DET
skin NOUN
. PUNCT
  SPACE
These DET
are AUX
nonpathogenic ADJ
because SCONJ
they PRON
do AUX
not PART
cause VERB
disease NOUN
in ADP
people NOUN
unless SCONJ
the DET
immune ADJ
system NOUN
is AUX
compromised VERB
. PUNCT
  SPACE
They PRON
are AUX
also ADV
called VERB
nonpathogens NOUN
because SCONJ
unlike ADP
the DET
pathogenic ADJ
organisms NOUN
that PRON
cause VERB
human ADJ
disease NOUN
, PUNCT
they PRON
do AUX
not PART
produce VERB
toxins NOUN
as SCONJ
they PRON
live VERB
out ADP
their PRON
merry NOUN
existence NOUN
in ADP
and CCONJ
on ADP
our PRON
body NOUN
. PUNCT
  SPACE
But CCONJ
any DET
of ADP
these DET
organisms NOUN
will AUX
be AUX
considered VERB
pathogenic ADJ
if SCONJ
it PRON
manages VERB
to PART
take VERB
up ADP
residence NOUN
within ADP
the DET
body NOUN
. PUNCT
  SPACE
A DET
poor ADJ
mucus ADJ
membrane NOUN
barrier PROPN
can AUX
let VERB
this DET
happen VERB
and CCONJ
vitamin NOUN
A NOUN
is AUX
mainly ADV
responsible ADJ
for ADP
setting VERB
up ADP
this DET
barrier NOUN
. PUNCT
Steve PROPN
got VERB
real ADV
upset ADJ
with ADP
Elaine PROPN
's PART
doctor NOUN
because SCONJ
he PRON
was AUX
using VERB
anti NOUN
- ADJ
fungals NOUN
and CCONJ
vitamin NOUN
A NOUN
for ADP
her PRON
GI PROPN
problems NOUN
. PUNCT
  SPACE
If SCONJ
Steve PROPN
really ADV
understoood VERB
what PRON
vitamin NOUN
A NOUN
does AUX
in ADP
the DET
body NOUN
, PUNCT
he PRON
would AUX
not(or VERB
at ADP
least ADJ
should AUX
not PART
) PUNCT
be AUX
calling VERB
Elaine PROPN
's PART
doctor NOUN
a DET
quack NOUN
. PUNCT
Here ADV
is AUX
a DET
brief ADJ
primer NOUN
on ADP
yeast NOUN
. PUNCT
  SPACE
Yeast NOUN
infections NOUN
, PUNCT
as SCONJ
they PRON
are AUX
commonly ADV
called VERB
, PUNCT
are AUX
not PART
truely ADV
caused VERB
by ADP
yeasts NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
organism NOUN
responsiblefor VERB
this DET
type NOUN
of ADP
infection NOUN
is AUX
Candida PROPN
albicans NOUN
or CCONJ
Monilia PROPN
which PRON
is AUX
actually ADV
a DET
yeast NOUN
- PUNCT
like ADJ
fungus NOUN
. PUNCT
  SPACE
An DET
infection NOUN
caused VERB
by ADP
this DET
organism NOUN
is AUX
called VERB
candidiasis NOUN
. PUNCT
Candidiasis PROPN
is AUX
a DET
very ADV
rare ADJ
occurance NOUN
because SCONJ
, PUNCT
like SCONJ
an DET
E. PROPN
Coli PROPN
infection NOUN
, PUNCT
it PRON
requires VERB
that SCONJ
the DET
host NOUN
immune ADJ
system NOUN
be AUX
severly ADV
depressed ADJ
. PUNCT
  SPACE
Candida PROPN
is AUX
frequently ADV
found VERB
on ADP
the DET
skin NOUN
and CCONJ
all DET
of ADP
the DET
mucous ADJ
membranes NOUN
of ADP
normal ADJ
healthy ADJ
people NOUN
and CCONJ
it PRON
rarely ADV
becomes VERB
a DET
problem NOUN
unless SCONJ
some DET
predisposingfactor NOUN
is AUX
present ADJ
such ADJ
as SCONJ
a DET
high ADJ
blood NOUN
glucose NOUN
level(diabetes PROPN
) PUNCT
or CCONJ
an DET
oral ADJ
course NOUN
of ADP
antibiotics NOUN
has AUX
been AUX
used VERB
. PUNCT
  SPACE
In ADP
diabetics NOUN
, PUNCT
their PRON
secretions NOUN
contain VERB
much ADV
higher ADJ
amounts NOUN
of ADP
glucose NOUN
. PUNCT
  SPACE
Candida PROPN
, PUNCT
unlike ADP
bacteria NOUN
, PUNCT
is AUX
very ADV
limited ADJ
in ADP
it PRON
's AUX
food(fuel PROPN
) PUNCT
selection NOUN
. PUNCT
  SPACE
Without ADP
glucose NOUN
, PUNCT
it PRON
can AUX
not PART
grow VERB
, PUNCT
it PRON
just ADV
barely ADV
survives VERB
. PUNCT
  SPACE
If SCONJ
it PRON
gets VERB
access NOUN
to ADP
a DET
lot NOUN
of ADP
glucose NOUN
, PUNCT
it PRON
blooms VERB
and CCONJ
over ADP
rides NOUN
the DET
other ADJ
organisms NOUN
living VERB
with ADP
it PRON
in ADP
the DET
sinuses NOUN
, PUNCT
GI PROPN
tract NOUN
or CCONJ
vagina PROPN
. PUNCT
  SPACE
In ADP
diabetics NOUN
, PUNCT
skin NOUN
lesions NOUN
can AUX
also ADV
foster VERB
a DET
good ADJ
bloom NOUN
site NOUN
for ADP
these DET
little ADJ
buggers NOUN
. PUNCT
  SPACE
The DET
bloom NOUN
is AUX
usually ADV
just ADV
a DET
minor ADJ
irritant NOUN
in ADP
most ADJ
people NOUN
but CCONJ
some DET
people NOUN
do AUX
really ADV
develop VERB
a DET
bad ADJ
inflammatory ADJ
process NOUN
at ADP
the DET
mucus PROPN
membrane NOUN
or CCONJ
skin NOUN
bloom NOUN
site NOUN
. PUNCT
  SPACE
Whether SCONJ
this DET
is AUX
an DET
allergic ADJ
like SCONJ
reaction NOUN
to ADP
the DET
candida PROPN
or CCONJ
not PART
is AUX
n't PART
certain ADJ
. PUNCT
  SPACE
When ADV
the DET
bloom NOUN
is AUX
in ADP
the DET
vagina PROPN
or CCONJ
on ADP
the DET
skin NOUN
, PUNCT
it PRON
can AUX
be AUX
easliy ADJ
seen VERB
and CCONJ
some DET
doctors NOUN
do AUX
then ADV
try VERB
to PART
" PUNCT
treat VERB
" PUNCT
it PRON
. PUNCT
If SCONJ
it PRON
's AUX
internal ADJ
, PUNCT
only ADV
symptoms NOUN
can AUX
be AUX
used VERB
and CCONJ
these DET
symptoms NOUN
are AUX
pretty ADV
nondiscript ADJ
. PUNCT
  SPACE
Candida PROPN
is AUX
kept VERB
in ADP
check NOUN
in ADP
most ADJ
people NOUN
by ADP
the DET
normal ADJ
bacterial ADJ
flora NOUN
in ADP
the DET
sinuses NOUN
, PUNCT
the DET
GI PROPN
tract(mouth PROPN
, PUNCT
stomach NOUN
and CCONJ
intestines NOUN
) PUNCT
and CCONJ
in ADP
the DET
vaginal ADJ
tract NOUN
which PRON
compete VERB
with ADP
it PRON
for ADP
food NOUN
. PUNCT
  SPACE
The DET
human ADJ
immune ADJ
system NOUN
ususally ADV
does AUX
not PART
bother VERB
itself PRON
with ADP
these(nonpathogenic PROPN
organisms NOUN
) PUNCT
unless SCONJ
they PRON
broach VERB
the DET
mucus PROPN
membrane NOUN
" PUNCT
barrier NOUN
" PUNCT
. PUNCT
  SPACE
If SCONJ
they PRON
do AUX
, PUNCT
an DET
inflammatory ADJ
response NOUN
will AUX
be AUX
set VERB
up ADP
. PUNCT
  SPACE
Most ADJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
vitamin NOUN
A NOUN
from ADP
their PRON
diets NOUN
. PUNCT
  SPACE
About ADV
30 NUM
% NOUN
of ADP
all DET
American PROPN
's PART
die NOUN
with ADP
less ADJ
Vitamin PROPN
A PROPN
than SCONJ
they PRON
were AUX
born VERB
with(U.S. PROPN
autopsy ADJ
studies NOUN
) PUNCT
. PUNCT
  SPACE
While SCONJ
this DET
low ADJ
level NOUN
of ADP
vitamin NOUN
A NOUN
does AUX
not PART
cause VERB
pathology(blindness NOUN
) PUNCT
it PRON
does AUX
impair VERB
the DET
mucus PROPN
membrane PROPN
barrier PROPN
system NOUN
. PUNCT
  SPACE
This DET
would AUX
then ADV
be AUX
a DET
predisposing VERB
factor NOUN
for ADP
a DET
strong ADJ
inflammatory ADJ
response NOUN
after ADP
a DET
candida PROPN
bloom NOUN
. PUNCT
  SPACE
While SCONJ
diabetics NOUN
can AUX
suffer VERB
from ADP
a DET
candida PROPN
" PUNCT
bloom NOUN
" PUNCT
the DET
  SPACE
most ADV
common ADJ
cause NOUN
of ADP
this DET
type NOUN
of ADP
bloom NOUN
is AUX
the DET
use NOUN
of ADP
broad ADJ
spectrum NOUN
antibiotics NOUN
which PRON
knock VERB
down ADP
many ADJ
different ADJ
kinds NOUN
of ADP
bacteria NOUN
in ADP
the DET
body NOUN
and CCONJ
remove VERB
the DET
main ADJ
competition NOUN
for ADP
candida PROPN
as ADV
far ADV
as SCONJ
food NOUN
is AUX
concerned VERB
. PUNCT
  SPACE
While SCONJ
drugs NOUN
are AUX
available ADJ
to PART
handle VERB
candida PROPN
, PUNCT
many ADJ
patients NOUN
find VERB
that SCONJ
their PRON
doctor NOUN
will AUX
not PART
use VERB
them PRON
unless SCONJ
there PRON
is AUX
evidence NOUN
of ADP
a DET
systemic ADJ
infection NOUN
. PUNCT
  SPACE
The DET
toxicity NOUN
of ADP
the DET
anti ADJ
- ADJ
fungal ADJ
drugs NOUN
does AUX
warrant VERB
some DET
caution NOUN
. PUNCT
  SPACE
But CCONJ
if SCONJ
the DET
GI PROPN
or CCONJ
sinus NOUN
inflammation NOUN
is AUX
suspected VERB
to PART
be AUX
candida(and PROPN
recent ADJ
use NOUN
of ADP
a DET
broad ADJ
spectrum NOUN
antibiotic NOUN
is AUX
the DET
smoking NOUN
gun NOUN
) PUNCT
, PUNCT
then ADV
anti ADJ
- ADJ
fungal ADJ
use NOUN
should AUX
be AUX
approrpriate ADJ
just ADV
as SCONJ
the DET
anti ADJ
- ADJ
fungal ADJ
creams NOUN
are AUX
an DET
appropriate ADJ
treatment NOUN
for ADP
recurring VERB
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
in ADP
spite NOUN
of ADP
what PRON
Mr. PROPN
Steve PROPN
Dyer PROPN
says VERB
. PUNCT
But CCONJ
even ADV
in ADP
patients NOUN
being AUX
given VERB
the DET
anti NOUN
- NOUN
fungals NOUN
, PUNCT
the DET
irritation NOUN
caused VERB
by ADP
the DET
excessive ADJ
candida PROPN
bloom PROPN
in ADP
the DET
sinus NOUN
, PUNCT
GI PROPN
tract NOUN
or CCONJ
the DET
vagina PROPN
tends VERB
to PART
return VERB
after ADP
drug NOUN
treatment NOUN
is AUX
discontinued VERB
unless SCONJ
the DET
underlying ADJ
cause NOUN
of ADP
the DET
problem NOUN
is AUX
addressed(lack PROPN
of ADP
a DET
" PUNCT
good ADJ
" PUNCT
bacterial ADJ
flora NOUN
in ADP
the DET
body NOUN
and/or CCONJ
poor ADJ
mucus PROPN
membrane PROPN
barrier PROPN
) PUNCT
. PUNCT
  SPACE
Lactobacillus PROPN
acidophilus NOUN
is AUX
the DET
most ADV
effective ADJ
therapy NOUN
for ADP
candida PROPN
overgrowth NOUN
. PUNCT
  SPACE
From ADP
it PRON
's AUX
name NOUN
, PUNCT
it PRON
is AUX
an DET
acid NOUN
loving VERB
organism NOUN
and CCONJ
it PRON
sets VERB
up ADP
an DET
acidic ADJ
condition NOUN
were AUX
it PRON
grows VERB
. PUNCT
  SPACE
Candida PROPN
can AUX
not PART
grow VERB
very ADV
well ADV
in ADP
an DET
acidic ADJ
environment NOUN
. PUNCT
  SPACE
In ADP
the DET
vagina PROPN
, PUNCT
L. PROPN
acidophilius NOUN
is AUX
the DET
predominate NOUN
bacteria(unless NOUN
you PRON
are AUX
hit VERB
with ADP
broad ADJ
spectrum NOUN
antibiotics NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
the DET
GI PROPN
system NOUN
, PUNCT
the DET
ano NOUN
- PUNCT
rectal ADJ
region NOUN
seems VERB
to PART
be AUX
a DET
particularly ADV
good ADJ
reservoir NOUN
for ADP
candida PROPN
and CCONJ
the DET
use NOUN
of ADP
pantyhose NOUN
by ADP
many ADJ
women NOUN
creates VERB
a DET
very ADV
favorable ADJ
environment NOUN
around ADP
the DET
rectum NOUN
for ADP
transfer(through DET
moisture NOUN
and CCONJ
humidity NOUN
) PUNCT
of ADP
candida PROPN
to ADP
the DET
vaginal ADJ
tract NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
most ADV
effctive ADJ
ways NOUN
to PART
minimmize VERB
this DET
transfer NOUN
is AUX
to PART
wear VERB
undyed ADJ
cotton NOUN
underwear NOUN
. PUNCT
  SPACE
If SCONJ
the DET
bloom NOUN
occurs VERB
in ADP
the DET
anal ADJ
area NOUN
, PUNCT
the DET
burning NOUN
, PUNCT
swelling VERB
, PUNCT
pain NOUN
and CCONJ
even ADV
blood NOUN
discharge NOUN
make VERB
many ADJ
patients NOUN
think VERB
that SCONJ
they PRON
have AUX
hemorroids NOUN
. PUNCT
  SPACE
If SCONJ
the DET
bloom NOUN
manages VERB
to PART
move VERB
further ADV
up ADP
the DET
GI PROPN
tract NOUN
, PUNCT
very ADV
diffuse NOUN
symptomatology NOUN
occurs(abdominal ADJ
discomfort NOUN
and CCONJ
blood NOUN
in ADP
the DET
stool NOUN
) PUNCT
. PUNCT
  SPACE
This DET
positive ADJ
stool NOUN
for ADP
occult ADJ
blood NOUN
is AUX
what PRON
sent VERB
Elaine PROPN
to ADP
her PRON
family NOUN
doctor NOUN
in ADP
the DET
first ADJ
place NOUN
. PUNCT
  SPACE
After ADP
extensive ADJ
testing NOUN
, PUNCT
he PRON
told VERB
her PRON
that SCONJ
there PRON
was AUX
nothing PRON
wrong ADJ
but CCONJ
her PRON
gut NOUN
still ADV
hurt VERB
. PUNCT
  SPACE
On ADP
to ADP
another DET
doctor NOUN
, PUNCT
and CCONJ
so ADV
on ADV
. PUNCT
  SPACE
Richard PROPN
Kaplan PROPN
has AUX
told VERB
me PRON
throiugh NOUN
e NOUN
- NOUN
mail NOUN
that PRON
he PRON
considers VERB
occult ADJ
blood NOUN
tests NOUN
in ADP
stool NOUN
specimens NOUN
to PART
be AUX
a DET
waste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
because SCONJ
of ADP
the DET
very ADV
large ADJ
number NOUN
of ADP
false ADJ
positives(candida PROPN
blooms NOUN
guys NOUN
? PUNCT
) PUNCT
. PUNCT
  SPACE
If SCONJ
my PRON
gut NOUN
hurt VERB
me PRON
on ADP
a DET
constant ADJ
basis NOUN
, PUNCT
I PRON
would AUX
want VERB
it PRON
fixed VERB
. PUNCT
  SPACE
Yes INTJ
it PRON
's AUX
nice ADJ
to PART
know VERB
that SCONJ
I PRON
do AUX
n't PART
have AUX
colon NOUN
cancer NOUN
but CCONJ
what PRON
then ADV
is AUX
causing VERB
my PRON
distress NOUN
? PUNCT
  SPACE
When ADV
I PRON
finally ADV
find VERB
a DET
doctor NOUN
who PRON
treats VERB
me PRON
and CCONJ
gets VERB
me PRON
90 NUM
% NOUN
better ADJ
, PUNCT
Steve PROPN
Dyer PROPN
calls VERB
him PRON
a DET
quack NOUN
. PUNCT
Candida PROPN
prefers VERB
a DET
slightly ADV
alkaline ADJ
environment NOUN
while SCONJ
bacteria NOUN
tend VERB
to PART
prefer VERB
a DET
slightly ADV
acidic ADJ
environment NOUN
. PUNCT
  SPACE
The DET
vagina PROPN
becomes VERB
alkaline NOUN
during ADP
a DET
woman NOUN
's PART
period NOUN
and CCONJ
this DET
is AUX
often ADV
when ADV
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
. PUNCT
Vinegar NOUN
and CCONJ
water NOUN
douches NOUN
are AUX
the DET
best ADJ
way NOUN
of ADP
dealing VERB
with ADP
vaginal ADJ
problems NOUN
. PUNCT
  SPACE
Many ADJ
women NOUN
have AUX
also ADV
gotten VERB
relief NOUN
from ADP
the DET
introduction NOUN
of ADP
Lactobacillus PROPN
directly ADV
into ADP
the DET
vaginal ADJ
tract(I NOUN
would AUX
want VERB
to PART
be AUX
sure ADJ
of ADP
the DET
purity NOUN
of ADP
the DET
product NOUN
before ADP
trying VERB
this DET
) PUNCT
. PUNCT
  SPACE
My PRON
wife NOUN
had AUX
this DET
vagina PROPN
problem NOUN
after ADP
going VERB
on ADP
birth NOUN
control NOUN
pills NOUN
and CCONJ
searched VERB
for ADP
over ADP
a DET
year NOUN
until ADP
she PRON
found VERB
a DET
gynocologist NOUN
who PRON
solved VERB
the DET
problem NOUN
rather ADV
than SCONJ
just ADV
writting VERB
scripts NOUN
for ADP
anti ADJ
- ADJ
fungal ADJ
creams NOUN
. PUNCT
  SPACE
This DET
was AUX
a DET
woman NOUN
gynocologist NOUN
who PRON
had AUX
had VERB
the DET
same ADJ
problem(recurring PROPN
vaginal ADJ
yeast NOUN
infections NOUN
) PUNCT
. PUNCT
  SPACE
This DET
M.D. PROPN
did AUX
some DET
digging NOUN
and CCONJ
came VERB
up ADP
with ADP
an DET
acetic ADJ
acid NOUN
and CCONJ
L. PROPN
Acidophilis PROPN
douche PROPN
which PRON
she PRON
used VERB
in ADP
your PRON
office NOUN
to PART
keep VERB
it PRON
sterile ADJ
. PUNCT
  SPACE
After ADP
three NUM
treatments NOUN
, PUNCT
sex NOUN
returned VERB
to ADP
our PRON
marraige NOUN
. PUNCT
  SPACE
I PRON
have AUX
often ADV
wondered VERB
what PRON
an DET
M.D. PROPN
with ADP
chronic ADJ
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
would AUX
do AUX
about ADP
the DET
problem NOUN
that PRON
he PRON
tells VERB
his PRON
patients NOUN
is AUX
a DET
non ADJ
- ADJ
existent ADJ
syndrome NOUN
. PUNCT
The DET
nonpathogenic ADJ
bacteria NOUN
L. PROPN
acidophilus NOUN
is AUX
an DET
acid ADJ
producing VERB
bacteria NOUN
which PRON
is AUX
the DET
most ADV
common ADJ
bacteria NOUN
found VERB
in ADP
the DET
vaginal ADJ
tract NOUN
of ADP
healthy ADJ
women NOUN
. PUNCT
  SPACE
If SCONJ
taken VERB
orally ADV
, PUNCT
it PRON
can AUX
also ADV
become VERB
a DET
major ADJ
bacteria NOUN
in ADP
the DET
gut NOUN
. PUNCT
  SPACE
Through ADP
aresol ADJ
sprays NOUN
, PUNCT
it PRON
has AUX
also ADV
been AUX
used VERB
to PART
innoculate VERB
the DET
sinus NOUN
membranes NOUN
. PUNCT
But CCONJ
before ADP
this DET
innoculation NOUN
occurs VERB
, PUNCT
the DET
mucus PROPN
membrane PROPN
barrier NOUN
system NOUN
needs VERB
to PART
be AUX
strengthened VERB
. PUNCT
  SPACE
This DET
is AUX
accomplished VERB
by ADP
vitamin NOUN
A NOUN
, PUNCT
vitamin NOUN
C NOUN
and CCONJ
some DET
of ADP
the DET
B NOUN
- PUNCT
complex ADJ
vitamins NOUN
. PUNCT
  SPACE
Diet PROPN
surveys NOUN
repeatedly ADV
show VERB
that SCONJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
B6 PROPN
and CCONJ
folate NOUN
. PUNCT
  SPACE
These DET
are AUX
probably ADV
the DET
segement NOUN
of ADP
the DET
population NOUN
that PRON
will AUX
have AUX
the DET
greatest ADJ
problem NOUN
with ADP
this DET
non ADJ
- ADJ
existent ADJ
disorder(candida PROPN
blooms NOUN
after ADP
antibiotic ADJ
therapy NOUN
) PUNCT
. PUNCT
Some DET
of ADP
the DET
above ADJ
material NOUN
was AUX
obtained VERB
from ADP
" PUNCT
Natural PROPN
Healing NOUN
" PUNCT
by ADP
Mark PROPN
Bricklin PROPN
, PUNCT
Published VERB
by ADP
Rodale PROPN
press NOUN
, PUNCT
as ADV
well ADV
as SCONJ
notes NOUN
from ADP
my PRON
human ADJ
nutrition NOUN
course NOUN
. PUNCT
  SPACE
I PRON
will AUX
be AUX
posting VERB
a DET
discussion NOUN
of ADP
vitamin NOUN
A NOUN
  SPACE
sometime ADV
in ADP
the DET
future NOUN
, PUNCT
along ADP
with ADP
reference NOUN
citings NOUN
to PART
point VERB
out ADP
the DET
extremely ADV
important ADJ
role NOUN
that DET
vitamin NOUN
A DET
plays VERB
in ADP
the DET
mucus PROPN
membrane PROPN
defense NOUN
system NOUN
in ADP
the DET
body NOUN
and CCONJ
why ADV
vitamin NOUN
A NOUN
should AUX
be AUX
effective ADJ
in ADP
dealing VERB
with ADP
candida PROPN
blooms NOUN
. PUNCT
  SPACE
Another DET
effective ADJ
dietary ADJ
treatment NOUN
is AUX
to PART
restrict VERB
carbohydrate NOUN
intake NOUN
during ADP
the DET
treatment NOUN
phase NOUN
, PUNCT
this DET
is AUX
especially ADV
important ADJ
if SCONJ
the DET
GI PROPN
system NOUN
is AUX
involved VERB
. PUNCT
  SPACE
If SCONJ
candida PROPN
can AUX
not PART
get AUX
glucose NOUN
, PUNCT
it PRON
's AUX
not PART
going VERB
to PART
out ADV
grow VERB
the DET
bacteria NOUN
and CCONJ
you PRON
then ADV
give VERB
bacteria NOUN
, PUNCT
which PRON
can AUX
use VERB
amino ADJ
acids NOUN
and CCONJ
fatty ADJ
acids NOUN
for ADP
energy NOUN
, PUNCT
a DET
chance NOUN
to PART
take VERB
over ADP
and CCONJ
keep VERB
the DET
candida PROPN
in ADP
check PROPN
once SCONJ
carbohydrate NOUN
is AUX
returned VERB
to ADP
the DET
gut NOUN
. PUNCT
If SCONJ
Steve PROPN
and CCONJ
some DET
of ADP
the DET
other ADJ
nay NOUN
- PUNCT
sayers NOUN
want VERB
to PART
jump VERB
all ADV
over ADP
this DET
post NOUN
, PUNCT
fine ADJ
. PUNCT
  SPACE
I PRON
jumped VERB
all ADV
over ADP
Steve PROPN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
because SCONJ
he PRON
verbably ADV
accosted VERB
a DET
poster NOUN
who PRON
was AUX
seeking VERB
advice NOUN
about ADP
her PRON
doctor NOUN
's PART
use NOUN
of ADP
vitamin NOUN
A NOUN
and CCONJ
anti ADJ
- NOUN
fungals NOUN
for ADP
a DET
candida PROPN
bloom NOUN
in ADP
her PRON
gut NOUN
. PUNCT
  SPACE
People NOUN
seeking VERB
advice NOUN
from ADP
newsnet PROPN
should AUX
not PART
be AUX
treated VERB
this DET
way NOUN
. PUNCT
  SPACE
Those DET
of ADP
us PRON
giving NOUN
of ADP
our PRON
time NOUN
and CCONJ
knowledge NOUN
can AUX
slug VERB
it PRON
out ADP
to ADP
our PRON
heart NOUN
's PART
content NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
saved VERB
your PRON
venom NOUN
for ADP
me PRON
Steve PROPN
and CCONJ
left VERB
the DET
helpless ADJ
posters NOUN
who PRON
are AUX
timidly ADV
seeking VERB
help NOUN
alone ADV
, PUNCT
I PRON
would AUX
n't PART
have AUX
a DET
problem NOUN
with ADP
your PRON
behavior NOUN
. PUNCT
  SPACE
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine1111 PROPN
West PROPN
17th ADJ
St PROPN
. PUNCT
Tulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107"Without NUM
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance" NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59166From NUM
: PUNCT
egb7390@ucs.usl.edu NOUN
( PUNCT
Boutte PROPN
Erika PROPN
G)Subject NOUN
: PUNCT
M. PROPN
contagiosemI PROPN
was AUX
wondering VERB
if SCONJ
anyone PRON
had AUX
any DET
information NOUN
about ADP
Molluscous ADJ
contagiosem NOUN
. PUNCT
I PRON
acquired VERB
it PRON
, PUNCT
and CCONJ
fortunately ADV
got VERB
rid VERB
of ADP
it PRON
, PUNCT
but CCONJ
the DET
question NOUN
still ADV
lingersin VERB
my PRON
mind NOUN
: PUNCT
Where ADV
did AUX
it PRON
come VERB
from ADP
? PUNCT
  SPACE
The DET
little ADJ
bit NOUN
of ADP
info NOUN
that PRON
I PRON
have AUX
received VERB
about ADP
it PRON
in ADP
the DET
past ADJ
states NOUN
that SCONJ
it PRON
can AUX
be AUX
transmitted VERB
sexually ADV
, PUNCT
butalso ADV
occurs VERB
in ADP
small ADJ
children NOUN
on ADP
the DET
hands NOUN
, PUNCT
feet NOUN
and CCONJ
genitalia NOUN
. PUNCT
Any DET
information NOUN
will AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
"I NOUN
grow VERB
old ADJ
, PUNCT
I PRON
grow VERB
old;I ADJ
shall AUX
wear VERB
my PRON
trousers NOUN
rolled VERB
. PUNCT
" PUNCT
               SPACE
-T. NOUN
S. PROPN
EliotNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59167From NUM
: PUNCT
sdr@llnl.gov PROPN
( PUNCT
Dakota)Subject ADJ
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
1993Apr21.143910.5826@wvnvms.wvnet.edu NUM
> X
pk115050@wvnvms.wvnet.edu NOUN
writes VERB
: PUNCT
> X
My PRON
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
no DET
> X
medical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed VERB
. PUNCT
> X
> X
My PRON
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigate VERB
> X
their PRON
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
> X
etc X
... PUNCT
) PUNCT
> X
> X
Thank VERB
you PRON
, PUNCT
> X
> X
Dave PROPN
Carvell PROPN
> X
pk115050@wvnvms.wvnet.eduFirst NOUN
, PUNCT
let VERB
me PRON
offer VERB
you PRON
my PRON
condolences NOUN
. PUNCT
  SPACE
I PRON
've AUX
had VERB
kidney NOUN
stones NOUN
4 NUM
times NOUN
and CCONJ
I PRON
know VERB
the DET
pain NOUN
she PRON
is AUX
going VERB
through ADP
. PUNCT
  SPACE
First ADV
, PUNCT
it PRON
is AUX
best ADJ
that SCONJ
she PRON
see VERB
a DET
doctor NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
every DET
time NOUN
I PRON
had AUX
kidney NOUN
stones NOUN
, PUNCT
I PRON
saw VERB
my PRON
doctor NOUN
and CCONJ
theonly ADJ
thing NOUN
they PRON
did AUX
was AUX
to PART
prescribe VERB
some DET
pain NOUN
killers NOUN
and CCONJ
medication NOUN
for ADP
aurinary ADJ
tract NOUN
infection NOUN
. PUNCT
  SPACE
The DET
pain NOUN
killers NOUN
did AUX
nothing PRON
for ADP
me PRON
... PUNCT
kidney PROPN
stonesare PROPN
extremely ADV
painful ADJ
. PUNCT
  SPACE
My PRON
stones NOUN
were AUX
judged VERB
passable ADJ
, PUNCT
so ADV
we PRON
just ADV
waited VERB
itout ADV
. PUNCT
  SPACE
However ADV
the DET
last ADJ
one NOUN
took VERB
10 NUM
days NOUN
to PART
pass VERB
... PUNCT
not PART
fun ADJ
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
if SCONJ
sheabsolutely ADV
wo AUX
n't PART
see VERB
a DET
doctor NOUN
, PUNCT
I PRON
suggest VERB
drinking VERB
lots NOUN
of ADP
fluids NOUN
and CCONJ
perhapsan ADJ
over ADP
the DET
counter NOUN
sleeping NOUN
pill NOUN
. PUNCT
  SPACE
But CCONJ
, PUNCT
I PRON
do AUX
highly ADV
suggest VERB
seeing VERB
a DET
doctor NOUN
. PUNCT
Kidney NOUN
stones NOUN
are AUX
not PART
something PRON
to PART
fool VERB
around ADV
with ADP
. PUNCT
  SPACE
She PRON
should AUX
be AUX
x NOUN
- PUNCT
rayed VERB
to PART
make VERB
sure ADJ
there PRON
is AUX
not PART
a DET
serious ADJ
problem NOUN
. PUNCT
SteveNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59168From NUM
: PUNCT
spenser@fudd.jsc.nasa.gov PROPN
( PUNCT
S. PROPN
Spenser PROPN
Aden)Subject NUM
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
uabdpo.dpo.uab.edu-220493145727@spam.dom.uab.edu NOUN
> X
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)>wrote PROPN
: PUNCT
> X
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
> X
disease PROPN
. PUNCT
> X
> X
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
> X
without ADP
discomfort PROPN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
If SCONJ
she PRON
is AUX
having VERB
problems NOUN
with ADP
fresh ADJ
vegetables NOUN
, PUNCT
the DET
guess NOUN
is AUX
that SCONJ
there ADV
> X
is AUX
some DET
obstruction NOUN
of ADP
the DET
intestine NOUN
. PUNCT
  SPACE
Without ADP
knowing VERB
more ADJ
it PRON
is AUX
not PART
> X
possible ADJ
to PART
say VERB
whether SCONJ
the DET
obstruction NOUN
is AUX
permanent ADJ
due ADP
to ADP
scarring,>or X
temporary ADJ
due ADP
to ADP
swelling NOUN
of ADP
inflammed VERB
intestine NOUN
. PUNCT
  SPACE
In ADP
general ADJ
, PUNCT
there PRON
are AUX
> X
no DET
dietary ADJ
limitations NOUN
in ADP
patients NOUN
with ADP
Crohn PROPN
's PART
except SCONJ
as SCONJ
they PRON
relate VERB
> X
to ADP
obstruction NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
evidence NOUN
that SCONJ
any DET
foods NOUN
will AUX
bring VERB
on ADP
> X
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
Interesting ADJ
statements NOUN
, PUNCT
simply ADV
because SCONJ
I PRON
have AUX
been AUX
told VERB
otherwise ADV
. PUNCT
  SPACE
I'mcertainly ADV
not PART
questioning VERB
Steve PROPN
's PART
claims NOUN
, PUNCT
as SCONJ
for ADP
one NUM
I PRON
am AUX
not PART
a DET
doctor NOUN
, PUNCT
and CCONJ
Iagree PROPN
that PRON
foods NOUN
do AUX
n't PART
bring VERB
on ADP
the DET
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
  SPACE
But CCONJ
inflammationcan PROPN
be AUX
either CCONJ
mildly ADV
or CCONJ
DRASTICALLY NOUN
enhanced VERB
due ADP
to ADP
food NOUN
. PUNCT
Having VERB
had AUX
one NUM
major ADJ
obstruction NOUN
resulting VERB
in ADP
resection NOUN
( PUNCT
is AUX
that SCONJ
a DET
good ADJ
enoughcaveat NOUN
:-) PUNCT
, PUNCT
I PRON
was AUX
told VERB
that SCONJ
a DET
* PUNCT
LOW ADJ
RESIDUE PROPN
* PUNCT
diet NOUN
is AUX
called VERB
for ADP
. PUNCT
  SPACE
Basically ADV
, PUNCT
the DET
idea NOUN
is AUX
that SCONJ
if SCONJ
there PRON
is AUX
inflammation NOUN
of ADP
the DET
gut NOUN
( PUNCT
which PRON
may AUX
not PART
berealized VERB
by ADP
the DET
patient NOUN
) PUNCT
, PUNCT
any DET
residue NOUN
in ADP
the DET
system NOUN
can AUX
be AUX
caught VERB
in ADP
the DET
foldsof ADJ
inflammation NOUN
and CCONJ
constantly ADV
irritate ADJ
, PUNCT
thus ADV
exacerbating VERB
the DET
problem NOUN
. PUNCT
Therefore ADV
, PUNCT
anything PRON
that PRON
does AUX
n't PART
digest VERB
completely ADV
by ADP
the DET
point NOUN
of ADP
commoninflammation NOUN
should AUX
be AUX
avoided VERB
. PUNCT
  SPACE
With ADP
what PRON
I PRON
've AUX
been AUX
told VERB
is AUX
typical ADJ
Crohn's PROPN
, PUNCT
of ADP
the DET
terminal PROPN
ileum NOUN
, PUNCT
my PRON
diet NOUN
should AUX
be AUX
low ADJ
residue ADJ
, PUNCT
consisting VERB
of ADP
: PUNCT
Completely ADV
out ADV
- PUNCT
never ADV
again ADV
- PUNCT
items NOUN
: PUNCT
	 SPACE
o INTJ
corn NOUN
( PUNCT
kernel NOUN
husk NOUN
does AUX
n't PART
digest VERB
... PUNCT
most ADJ
of ADP
us PRON
know VERB
this DET
:-) PUNCT
	 SPACE
o INTJ
popcorn ADJ
( PUNCT
same ADJ
) PUNCT
	 SPACE
o INTJ
dried VERB
( PUNCT
dehydrated VERB
) PUNCT
fruit NOUN
and CCONJ
fruit NOUN
skins NOUN
	 SPACE
o INTJ
nuts NOUN
( PUNCT
Very ADV
tough ADJ
when ADV
it PRON
comes VERB
to ADP
giving VERB
up ADP
some DET
fudge NOUN
: PUNCT
-)Discouraged ADV
greatly ADV
: PUNCT
	 SPACE
o INTJ
raw ADJ
vegetables NOUN
( PUNCT
too ADV
fibrous ADJ
) PUNCT
	 SPACE
o INTJ
wheat NOUN
and CCONJ
raw ADJ
grain NOUN
breads NOUN
	 SPACE
o INTJ
exotic ADJ
lettuce NOUN
( PUNCT
iceberg PROPN
is AUX
ok ADJ
since SCONJ
it PRON
's AUX
apparently ADV
mostly ADV
water NOUN
) PUNCT
	 SPACE
o INTJ
greens PROPN
( PUNCT
turnip NOUN
, PUNCT
mustard NOUN
, PUNCT
kale PROPN
, PUNCT
etc X
... PUNCT
) PUNCT
	 SPACE
o INTJ
little ADJ
seeds NOUN
, PUNCT
like SCONJ
sesame NOUN
( PUNCT
try VERB
getting VERB
an DET
Arby PROPN
's PART
without ADP
it PRON
! PUNCT
) PUNCT
	 SPACE
o DET
long ADJ
grain NOUN
and CCONJ
wild ADJ
rice NOUN
( PUNCT
husky PROPN
) PUNCT
	 SPACE
o INTJ
beans NOUN
( PUNCT
you PRON
'll AUX
generate VERB
enough ADJ
gas NOUN
alone ADV
without ADP
them PRON
! PUNCT
) PUNCT
	 SPACE
o X
BASICALLY PROPN
anything PRON
that PRON
requires VERB
heavy ADJ
digestive ADJ
processingI PROPN
was AUX
told VERB
that SCONJ
the DET
more ADV
processed VERB
the DET
food NOUN
the DET
better ADJ
! PUNCT
( PUNCT
rather ADV
ironic ADJ
in ADP
thisday NOUN
and CCONJ
age NOUN
) PUNCT
. PUNCT
  SPACE
The DET
whole ADJ
point NOUN
is AUX
PREVENTATIVE ADJ
... PUNCT
you PRON
want VERB
to PART
give VERB
yoursystem NOUN
as SCONJ
little ADJ
chance NOUN
to PART
inflame VERB
as SCONJ
possible ADJ
. PUNCT
  SPACE
I PRON
was AUX
told VERB
that DET
among ADP
theNUMEROUS ADJ
things NOUN
that PRON
were AUX
heavily ADV
discouraged VERB
( PUNCT
I PRON
only ADV
listed VERB
a DET
few ADJ
) PUNCT
, PUNCT
to ADP
trythe VERB
ones NOUN
I PRON
wanted VERB
and CCONJ
see VERB
how ADV
I PRON
felt VERB
. PUNCT
  SPACE
If SCONJ
it PRON
's AUX
bad ADJ
, PUNCT
do AUX
n't PART
do AUX
it PRON
again!Remember VERB
though SCONJ
that SCONJ
this DET
was AUX
while SCONJ
I PRON
was AUX
in ADP
remission NOUN
. PUNCT
  SPACE
For ADP
Veggies NOUN
: PUNCT
cook VERB
thedaylights NOUN
out SCONJ
of ADP
them PRON
. PUNCT
  SPACE
I PRON
prefer VERB
steaming VERB
... PUNCT
I PRON
think VERB
it PRON
's AUX
cooks NOUN
morethoroughly ADV
- PUNCT
you PRON
're AUX
mileage NOUN
may AUX
vary VERB
. PUNCT
As SCONJ
with ADP
anything PRON
else ADV
, PUNCT
CHECK VERB
WITH ADP
YOUR PRON
DOCTOR NOUN
. PUNCT
  SPACE
Do AUX
n't PART
just ADV
take VERB
my PRON
word NOUN
. PUNCT
  SPACE
Butthis PROPN
is AUX
the DET
info NOUN
I PRON
've AUX
been AUX
given VERB
, PUNCT
and CCONJ
it PRON
may AUX
be AUX
a DET
starting VERB
point NOUN
fordiscussion NOUN
. PUNCT
  SPACE
Good PROPN
luck!-Spenser-- PROPN
S. PROPN
Spenser PROPN
Aden PROPN
--- PUNCT
Lockheed PROPN
Engineering PROPN
and CCONJ
Sciences PROPN
Co. PROPN
--- PUNCT
( PUNCT
713 NUM
) PUNCT
483 NUM
- PUNCT
2028NASA NUM
--- PUNCT
Flight PROPN
Data PROPN
and CCONJ
Evaluation PROPN
Office PROPN
--- PUNCT
Johnson PROPN
Space PROPN
Center PROPN
, PUNCT
Houstonspenser@fudd.jsc.nasa.gov NUM
    SPACE
( PUNCT
Internet NOUN
) PUNCT
--- PUNCT
  SPACE
Opinions PROPN
herein PROPN
are AUX
mine PRON
alone.aden@vf.jsc.nasa.gov PROPN
( PUNCT
if SCONJ
above ADP
bounces NOUN
) PUNCT
--- PUNCT
  SPACE
" PUNCT
Eschew PROPN
obfuscation NOUN
. PUNCT
" PUNCT
- PUNCT
unknownNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59169From NUM
: PUNCT
SASTLS@MVS.sas.com X
( PUNCT
Tamara PROPN
Shaffer)Subject NUM
: PUNCT
Re ADP
: PUNCT
seizures NOUN
( PUNCT
infantile ADJ
spasms NOUN
) PUNCT
In ADP
article NOUN
< X
1993Apr20.184034.13779@dbased.nuo.dec.com>,dufault@lftfld.enet.dec.com NUM
( PUNCT
MD PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
        SPACE
The DET
reason NOUN
I PRON
'm AUX
posting VERB
this DET
article NOUN
to ADP
this DET
newsgroup NOUN
is AUX
to:>1 PROPN
. PUNCT
gather VERB
any DET
information NOUN
about ADP
this DET
disorder NOUN
from ADP
anyone PRON
who PRON
might AUX
> X
   SPACE
have AUX
recently ADV
been AUX
* PUNCT
e*ffected VERB
by ADP
it PRON
( PUNCT
from ADP
being AUX
associated VERB
with ADP
> X
   SPACE
it PRON
or CCONJ
actually ADV
having VERB
this DET
disorder NOUN
) PUNCT
and>2 PROPN
. PUNCT
help VERB
me PRON
find VERB
out ADP
where ADV
I PRON
can AUX
access VERB
any DET
medical ADJ
literature NOUN
associated VERB
> X
   SPACE
with ADP
seizures NOUN
over ADP
the DET
internet NOUN
. PUNCT
I PRON
tried VERB
to ADP
e NOUN
- NOUN
mail VERB
you PRON
but CCONJ
it PRON
bounced VERB
back ADV
. PUNCT
  SPACE
Please INTJ
e NOUN
- NOUN
mail VERB
me PRON
andI VERB
will AUX
give VERB
you PRON
someone PRON
's PART
name NOUN
who PRON
might AUX
be AUX
very ADV
helpful ADJ
. PUNCT
  SPACE
You PRON
mightalso ADV
post VERB
your PRON
message NOUN
to ADP
misc.kids.TAMARAsastls@mvs.sas.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59170From NUM
: PUNCT
euclid@mrcnext.cso.uiuc.edu PROPN
( PUNCT
Euclid PROPN
K.)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
GETTING VERB
AIDS PROPN
FROM ADP
ACUPUNCTURE NOUN
NEEDLESmatthews@Oswego NOUN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews PROPN
) PUNCT
writes:>I PROPN
had AUX
electrical ADJ
pulse NOUN
nerve NOUN
testing NOUN
done VERB
a DET
while NOUN
back ADV
. PUNCT
  SPACE
The DET
needles NOUN
were AUX
taken VERB
> X
from ADP
a DET
dirty ADJ
drawer NOUN
in ADP
an DET
instrument NOUN
cart NOUN
and CCONJ
were AUX
most ADV
certainly ADV
NOT ADV
> X
sterile ADJ
or CCONJ
even ADV
clean ADJ
for ADP
that DET
matter NOUN
. PUNCT
  SPACE
More ADV
than SCONJ
likely ADJ
they PRON
were AUX
fresh ADJ
> X
from ADP
the DET
previous ADJ
patient NOUN
. PUNCT
  SPACE
I PRON
WAS VERB
concerned VERB
, PUNCT
but CCONJ
I PRON
kept VERB
my PRON
mouth NOUN
shut NOUN
. PUNCT
  SPACE
I PRON
> X
probably ADV
should AUX
have AUX
raised VERB
hell NOUN
! PUNCT
	 SPACE
Could AUX
you PRON
describe VERB
in ADP
more ADJ
detail NOUN
the DET
above ADJ
procedure NOUN
? PUNCT
  SPACE
I PRON
've AUX
neverheard VERB
about ADP
it PRON
. PUNCT
	 SPACE
And CCONJ
yes INTJ
, PUNCT
if SCONJ
they PRON
pierced VERB
you PRON
with ADP
the DET
needles NOUN
you PRON
probably ADV
should AUX
haveprotested VERB
. PUNCT
euclid PROPN
--Euclid PUNCT
K. PROPN
       SPACE
standard ADJ
disclaimers NOUN
apply"It PROPN
is AUX
a DET
bit NOUN
ironic ADJ
that SCONJ
we PRON
need VERB
the DET
wave NOUN
model NOUN
[ PUNCT
of ADP
light NOUN
] PUNCT
to PART
understand VERB
thepropagation NOUN
of ADP
light NOUN
only ADV
through ADP
that DET
part NOUN
of ADP
the DET
system NOUN
where ADV
it PRON
leaves VERB
notrace NOUN
. PUNCT
" PUNCT
  SPACE
--Hudson PROPN
& CCONJ
Nelson PROPN
( PUNCT
_ PROPN
University_Physics_)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59171From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Foreskin PROPN
TroublesIn NOUN
article NOUN
< X
1993Apr18.042100.2720@radford.vak12ed.edu NUM
> X
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich PROPN
) PUNCT
writes:>What DET
can AUX
be AUX
done VERB
, PUNCT
short ADJ
of ADP
circumcision NOUN
, PUNCT
for ADP
an DET
adult NOUN
male NOUN
> X
whose PRON
foreskin NOUN
will AUX
not PART
retract?>Melissa VERB
, PUNCT
there PRON
is AUX
a DET
simpler ADJ
procedure NOUN
called VERB
a DET
" PUNCT
Dorsal PROPN
slit NOUN
" PUNCT
that SCONJ
isreally ADV
the DET
first ADJ
step NOUN
of ADP
the DET
usual ADJ
circumcision NOUN
. PUNCT
  SPACE
It PRON
is AUX
simpler ADJ
andquicker NOUN
, PUNCT
but CCONJ
the DET
pain NOUN
is AUX
about ADP
the DET
same ADJ
as SCONJ
circumcision NOUN
after ADP
theanesthetic ADJ
wears NOUN
off ADP
and CCONJ
the DET
aesthetic ADJ
result NOUN
post PROPN
healing NOUN
is AUX
not PART
asgood NOUN
. PUNCT
  SPACE
See VERB
your PRON
friendly ADJ
urologist NOUN
for ADP
more ADJ
details NOUN
. PUNCT
                                                SPACE
Len PROPN
Howard PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59172From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
quality NOUN
control NOUN
in ADP
medicineIn PROPN
article NOUN
< X
93108.003258U19250@uicvm.uic.edu NUM
> X
< X
U19250@uicvm.uic.edu NUM
> X
writes:>Does VERB
anybody PRON
know VERB
of ADP
any DET
information NOUN
regarding VERB
the DET
implementaion NOUN
of ADP
total ADJ
> X
quality NOUN
management NOUN
, PUNCT
quality NOUN
control NOUN
, PUNCT
quality NOUN
assurance NOUN
in ADP
the DET
delivery NOUN
of ADP
> PROPN
health PROPN
care PROPN
service PROPN
. PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
any DET
information NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
is AUX
enough ADJ
> NOUN
interest NOUN
, PUNCT
I PRON
will AUX
post VERB
the DET
responses NOUN
. PUNCT
> X
        SPACE
Thank VERB
You PRON
> X
        SPACE
Abhin PROPN
Singla PROPN
MS PROPN
BioE PROPN
, PUNCT
MBA PROPN
, PUNCT
MD PROPN
> X
        SPACE
President PROPN
AC PROPN
Medcomp PROPN
IncDr NOUN
Singla PROPN
, PUNCT
you PRON
might AUX
contact VERB
Kaiser PROPN
Health PROPN
Plan PROPN
either CCONJ
in ADP
the DET
areaclosest NOUN
to ADP
you PRON
or CCONJ
at ADP
the DET
central ADJ
office NOUN
in ADP
Oakland PROPN
CA PROPN
. PUNCT
  SPACE
We PRON
have AUX
beendoing VERB
QA PROPN
, PUNCT
QoS NOUN
, PUNCT
concurrent ADJ
UR PROPN
, PUNCT
and CCONJ
TQM PROPN
for ADP
some DET
time NOUN
now ADV
in ADP
the DET
HawaiiRegion PROPN
, PUNCT
and CCONJ
I PRON
suspect VERB
it PRON
is AUX
nationwide ADJ
in ADP
the DET
system NOUN
. PUNCT
Len PROPN
Howard PROPN
MDNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59173From NUM
: SYM
tron@fafnir.la.locus.com X
( PUNCT
Michael PROPN
Trofimoff)Subject PROPN
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceHi PROPN
All DET
, PUNCT
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
anauthentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
thatis NOUN
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki?Thanks,-= PROPN
< X
tron PROPN
> X
= SYM
-e ADJ
- PUNCT
mail NOUN
: PUNCT
tron@locus.com X
		 SPACE
* PUNCT
Vidi PROPN
, PUNCT
vici PROPN
, PUNCT
veni*Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59174From NUM
: PUNCT
akins@cbnewsd.cb.att.com X
( PUNCT
kay.a.akins)Subject NOUN
: PUNCT
Seizure NOUN
information NOUN
- PUNCT
infantHere PROPN
is AUX
the DET
tollfree ADJ
hotline NOUN
for ADP
the DET
Epilepsy PROPN
Foundationof PROPN
America PROPN
- PUNCT
1 NUM
- SYM
800-EFA-1000 NUM
. PUNCT
  SPACE
They PRON
will AUX
be AUX
able ADJ
to PART
answeryour VERB
questions NOUN
and CCONJ
send VERB
you PRON
information NOUN
and CCONJ
references NOUN
onseizure NOUN
types NOUN
, PUNCT
medication NOUN
, PUNCT
etc X
. PUNCT
  SPACE
They PRON
can AUX
also ADV
give VERB
you PRON
referencesfor NOUN
a DET
pediatric ADJ
neorologist NOUN
in ADP
your PRON
area NOUN
. PUNCT
  SPACE
Also ADV
ask VERB
for ADP
the DET
number NOUN
of ADP
your PRON
local ADJ
Foundation PROPN
who PRON
can AUX
put VERB
you PRON
in ADP
touch NOUN
witha NOUN
Parent PROPN
Support PROPN
Group PROPN
and CCONJ
social ADJ
workers NOUN
. PUNCT
Good ADJ
Luck PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59175From NUM
: PUNCT
koreth@spud VERB
. PUNCT
Hyperion NOUN
. PUNCT
COM PROPN
( PUNCT
Steven PROPN
Grimm)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?I PROPN
had AUX
allergy ADJ
shots NOUN
for ADP
about ADV
four NUM
years NOUN
starting VERB
as SCONJ
a DET
sophomore NOUN
in ADP
highschool PROPN
. PUNCT
  SPACE
Before ADP
that DET
, PUNCT
I PRON
used VERB
to PART
get AUX
bloody ADJ
noses NOUN
, PUNCT
nighttime PROPN
asthma PROPN
attacks NOUN
, PUNCT
and CCONJ
eyes NOUN
so ADV
itchy ADJ
I PRON
could AUX
n't PART
get AUX
to ADP
sleep NOUN
. PUNCT
  SPACE
After ADP
about ADV
6 NUM
months NOUN
on ADP
theshots NOUN
, PUNCT
most ADJ
of ADP
those DET
symptoms NOUN
were AUX
gone VERB
, PUNCT
and CCONJ
they PRON
have AUX
n't PART
come VERB
back ADV
. PUNCT
  SPACE
Istopped PROPN
getting VERB
the DET
shots NOUN
( PUNCT
due ADP
more ADJ
to ADP
laziness NOUN
than SCONJ
planning VERB
) PUNCT
in ADP
college NOUN
. PUNCT
My PRON
allergies NOUN
got VERB
a DET
little ADV
worse ADJ
after ADP
that DET
, PUNCT
but CCONJ
are AUX
still ADV
nowhere ADV
near SCONJ
asbad NOUN
as SCONJ
they PRON
used VERB
to PART
be AUX
. PUNCT
  SPACE
So ADV
yes INTJ
, PUNCT
the DET
shots NOUN
do AUX
work NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59176Subject NUM
: PUNCT
Re ADP
: PUNCT
ArythmiaFrom PROPN
: PUNCT
perry1@husc10.harvard.edu PROPN
( PUNCT
Alexis PROPN
Perry)In PROPN
article NOUN
< X
1993Apr22.031423.1@vaxc.stevens-tech.edu NUM
> X
u96_averba@vaxc.stevens-tech.edu ADJ
writes:>doctors NOUN
said VERB
that SCONJ
he PRON
could AUX
die VERB
from ADP
it PRON
, PUNCT
and CCONJ
the DET
medication NOUN
caused VERB
> X
	 SPACE
Is AUX
it PRON
that ADV
serious ADJ
? PUNCT
  SPACE
My PRON
EKG PROPN
often ADV
comes VERB
back ADV
with ADP
a DET
few ADJ
irregularbeats NOUN
. PUNCT
  SPACE
Another DET
question NOUN
: PUNCT
  SPACE
Is AUX
a DET
low ADJ
blood NOUN
potassium NOUN
level NOUN
very ADV
bad ADJ
? PUNCT
  SPACE
Mydoctor NOUN
seems VERB
concerned ADJ
, PUNCT
but CCONJ
she PRON
tends VERB
to PART
worry VERB
too ADV
much ADV
in ADP
general.___________________________________________________________________________Alexis PUNCT
Perry PROPN
				 SPACE
" PUNCT
The DET
less ADJ
I PRON
want VERB
the DET
more ADJ
I PRON
getperry1@husc.harvard.edu VERB
			  SPACE
Make VERB
me PRON
chaste VERB
, PUNCT
but CCONJ
not PART
just ADV
yet.eliot PROPN
house NOUN
box NOUN
413 NUM
			  SPACE
It PRON
's AUX
a DET
promise NOUN
or CCONJ
a DET
lie(617 PROPN
) PUNCT
493 NUM
- SYM
6300 NUM
				  SPACE
I PRON
'll AUX
repent VERB
before ADP
I PRON
die VERB
. PUNCT
""Work PUNCT
? PUNCT
Have AUX
you PRON
lost VERB
your PRON
mind NOUN
? PUNCT
! PUNCT
" PUNCT
			 SPACE
-Ren PROPN
				 SPACE
-Sting PROPN
   SPACE
Nobody PRON
really ADV
admits VERB
to PART
sharing VERB
my PRON
opinions NOUN
- PUNCT
last ADJ
of ADP
all DET
Harvard PROPN
CollegeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59178From NUM
: PUNCT
melewitt@cs.sandia.gov PROPN
( PUNCT
Martin PROPN
E. PROPN
Lewitt)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Altitude NOUN
adjustmentIn PROPN
article NOUN
< X
4159@mdavcr.mda.ca NUM
> X
vida@mdavcr.mda.ca PROPN
( PUNCT
Vida PROPN
Morkunas PROPN
) PUNCT
writes:>I PRON
live VERB
at ADP
sea NOUN
- PUNCT
level NOUN
, PUNCT
and CCONJ
am AUX
called VERB
- PUNCT
upon SCONJ
to PART
travel VERB
to ADP
high ADJ
- PUNCT
altitude NOUN
cities NOUN
> X
quite ADV
frequently ADV
, PUNCT
on ADP
business NOUN
. PUNCT
  SPACE
The DET
cities NOUN
in ADP
question NOUN
are AUX
at ADP
7000 NUM
to ADP
9000 NUM
> X
feet NOUN
of ADP
altitude NOUN
. PUNCT
  SPACE
One NUM
of ADP
them PRON
especially ADV
is AUX
very ADV
polluted ADJ
... PUNCT
>>Often X
I PRON
feel VERB
faint ADJ
the DET
first ADJ
two NUM
or CCONJ
three NUM
days NOUN
. PUNCT
  SPACE
I PRON
feel VERB
lightheaded ADJ
, PUNCT
and CCONJ
> X
my PRON
heart NOUN
seems VERB
to PART
pound VERB
a DET
lot NOUN
more ADJ
than SCONJ
at ADP
sea NOUN
- PUNCT
level NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
it PRON
is AUX
very ADV
> X
dry ADJ
in ADP
these DET
cities NOUN
, PUNCT
so CCONJ
I PRON
will AUX
tend VERB
to PART
drink VERB
a DET
lot NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
keep VERB
> X
away ADV
from ADP
dehydrating VERB
drinks NOUN
, PUNCT
such ADJ
as SCONJ
those DET
containing VERB
caffeine NOUN
or CCONJ
alcohol.>>Thing NOUN
is AUX
, PUNCT
I PRON
still ADV
have AUX
symptoms NOUN
. PUNCT
  SPACE
How ADV
can AUX
I PRON
ensure VERB
that SCONJ
my PRON
short ADJ
trips NOUN
there>(no X
, PUNCT
I PRON
do AUX
n't PART
usually ADV
have AUX
a DET
week NOUN
to PART
acclimatize VERB
) PUNCT
are AUX
as ADV
comfortable ADJ
as SCONJ
possible?>Is NOUN
there ADV
something PRON
else ADV
that PRON
I PRON
could AUX
do?I NOUN
saw VERB
a DET
Lifetime PROPN
Medical PROPN
Television PROPN
show VERB
a DET
few ADJ
months NOUN
back ADV
on ADP
travelmedicine NOUN
. PUNCT
  SPACE
It PRON
briefly ADV
mentioned VERB
some DET
drugs NOUN
which PRON
when ADV
started VERB
two NUM
orthree ADJ
days NOUN
before ADP
getting VERB
to ADP
altitude NOUN
could AUX
assist VERB
in ADP
acclimitazation NOUN
. PUNCT
Unfortunately ADV
all DET
that PRON
I PRON
can AUX
recall VERB
is AUX
that SCONJ
the DET
drug NOUN
stimulatedbreathing NOUN
at ADP
night NOUN
? PUNCT
? PUNCT
? PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
if SCONJ
that DET
makes VERB
sense NOUN
, PUNCT
it PRON
seemsto VERB
me PRON
that SCONJ
the DET
new ADJ
drug NOUN
which PRON
stimulates VERB
red ADJ
blood NOUN
cell NOUN
productionwould AUX
be AUX
a DET
more ADV
logical ADJ
approach NOUN
, PUNCT
erythropoiten NOUN
( PUNCT
sp?).Alas PROPN
, PUNCT
I PRON
did AUX
n't PART
record VERB
the DET
program NOUN
, PUNCT
but CCONJ
wish VERB
I PRON
had AUX
, PUNCT
since SCONJ
I PRON
liveat VERB
over ADP
7000 NUM
ft NOUN
. PROPN
and CCONJ
my PRON
mother NOUN
gets VERB
sick ADJ
when ADV
visiting VERB
. PUNCT
Please INTJ
let VERB
me PRON
know VERB
if SCONJ
you PRON
get VERB
more ADV
informative ADJ
responses.--Phone NOUN
: PUNCT
  SPACE
( PUNCT
505 NUM
) PUNCT
845 NUM
- NUM
7561 NUM
           SPACE
Martin PROPN
E. PROPN
Lewitt PROPN
             SPACE
My PRON
opinions NOUN
areDomain ADV
: PUNCT
lewitt@ncube PROPN
. PUNCT
COM NOUN
         SPACE
P.O. PROPN
Box PROPN
513 NUM
                 SPACE
my PRON
own ADJ
, PUNCT
not PART
mySandia PROPN
: PUNCT
melewitt@cs.sandia.GOV PROPN
   SPACE
Sandia PROPN
Park PROPN
, PUNCT
NM PROPN
87047 NUM
- SYM
0513 NUM
   SPACE
employer NOUN
's PART
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59179From NUM
: PUNCT
robg@citr.uq.oz.au PROPN
( PUNCT
Rob NOUN
Geraghty)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Good PROPN
Grief PROPN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
Albicans PROPN
: PUNCT
what PRON
is AUX
it?)dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes:>Snort PROPN
. PUNCT
  SPACE
Ah INTJ
, PUNCT
there PRON
go VERB
my PRON
sinuses NOUN
again.>Oh NUM
, PUNCT
wow INTJ
. PUNCT
  SPACE
A DET
classic ADJ
textbook NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
laughed VERB
at ADP
Einstein PROPN
, PUNCT
too!>Yeah PROPN
, PUNCT
I PRON
'll AUX
bet VERB
. PUNCT
  SPACE
Tomorrow PROPN
, PUNCT
the DET
world.>Listen PROPN
, PUNCT
uncontrolled ADJ
studies NOUN
like SCONJ
this DET
are AUX
worthless.>I'm PROPN
sure ADJ
you PRON
are AUX
. PUNCT
  SPACE
You PRON
sound VERB
like SCONJ
the DET
typical ADJ
hysteric PROPN
/ SYM
hypochondriac PROPN
who PRON
> X
responds VERB
to ADP
" PUNCT
miracle NOUN
cures NOUN
. PUNCT
">Yeah PUNCT
, PUNCT
" PUNCT
it PRON
makes VERB
sense NOUN
to ADP
me PRON
" PUNCT
, PUNCT
so ADV
of ADP
course NOUN
it PRON
should AUX
be AUX
taken VERB
seriously.>Snort.>Yeah INTJ
, PUNCT
" PUNCT
it PRON
sounds VERB
reasonable ADJ
to ADP
me".>Oh PROPN
, PUNCT
really ADV
? PUNCT
  SPACE
_ VERB
What PRON
_ PROPN
tests NOUN
? PUNCT
  SPACE
Immune PROPN
- PUNCT
compromised VERB
, PUNCT
my PRON
ass.>More NOUN
like SCONJ
credulous ADJ
malingerer NOUN
. PUNCT
  SPACE
This DET
is AUX
a DET
psychiatric ADJ
syndrome.>You NOUN
know VERB
, PUNCT
it PRON
's AUX
a DET
shame NOUN
that PRON
a DET
drug NOUN
like SCONJ
itraconazole NOUN
is AUX
being AUX
misused VERB
> X
in ADP
this DET
way NOUN
. PUNCT
  SPACE
It PRON
's AUX
ridiculously ADV
expensive ADJ
, PUNCT
and CCONJ
potentially ADV
toxic.>The DET
trouble NOUN
is AUX
that SCONJ
it PRON
is AUX
n't PART
toxic ADJ
enough ADV
, PUNCT
so CCONJ
it PRON
gets VERB
abused VERB
by ADP
quacks.>The PROPN
only ADV
good ADJ
thing NOUN
about ADP
nystatin PROPN
is AUX
that SCONJ
it PRON
's AUX
( PUNCT
relatively ADV
) PUNCT
cheap ADJ
> X
and CCONJ
when ADV
taken VERB
orally ADV
, PUNCT
non ADJ
- ADJ
toxic ADJ
. PUNCT
  SPACE
But CCONJ
oral PROPN
nystatin PROPN
is AUX
without ADP
any DET
> X
systemic ADJ
effect NOUN
, PUNCT
so CCONJ
unless SCONJ
it PRON
were AUX
given VERB
IV PROPN
, PUNCT
it PRON
would AUX
be AUX
without ADP
> X
any DET
effect NOUN
on ADP
your PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
wish VERB
these DET
quacks NOUN
would AUX
first ADV
use VERB
> X
IV PROPN
nystatin PROPN
or CCONJ
amphotericin PROPN
B PROPN
on ADP
people NOUN
like SCONJ
you PRON
. PUNCT
  SPACE
That DET
would AUX
solve VERB
> X
the DET
" PUNCT
yeast NOUN
" PUNCT
problem NOUN
once ADV
and CCONJ
for ADP
all.>Perhaps DET
a DET
little ADJ
Haldol PROPN
would AUX
go VERB
a DET
long ADJ
way NOUN
towards ADP
ameliorating VERB
> X
your PRON
symptoms.>Are NOUN
you PRON
paying VERB
for ADP
this DET
treatment NOUN
out SCONJ
of ADP
your PRON
own ADJ
pocket NOUN
? PUNCT
  SPACE
I PRON
'd AUX
hate VERB
> X
to PART
think VERB
my PRON
insurance NOUN
premiums NOUN
are AUX
going VERB
towards ADP
this DET
. PUNCT
Steve PROPN
, PUNCT
take VERB
a DET
look NOUN
at ADP
what PRON
you PRON
are AUX
saying VERB
. PUNCT
  SPACE
I PRON
do AUX
n't PART
see VERB
one NUM
construvtiveword PROPN
here ADV
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
have AUX
anything PRON
constructive ADJ
to PART
add VERB
, PUNCT
why ADV
wastethe DET
bandwidth PROPN
- PUNCT
yeah INTJ
, PUNCT
sure INTJ
, PUNCT
flame VERB
me PRON
for ADP
doing VERB
it PRON
myself PRON
. PUNCT
  SPACE
Is AUX
thissci.med VERB
or CCONJ
alt.flame ADJ
? PUNCT
  SPACE
Like SCONJ
it PRON
or CCONJ
not PART
, PUNCT
medical ADJ
science NOUN
does AUX
* PUNCT
not PART
* PUNCT
knowcategorically ADV
everything PRON
about ADP
everything PRON
. PUNCT
  SPACE
I PRON
'm AUX
not PART
flaming VERB
yourknowledge NOUN
, PUNCT
just ADV
asking VERB
you PRON
to PART
sit VERB
back ADV
and CCONJ
ask VERB
yourself PRON
" PUNCT
what PRON
if?""Minds VERB
are AUX
like SCONJ
parachutes NOUN
- PUNCT
they PRON
only ADV
function VERB
when ADV
they PRON
are AUX
open ADJ
. PUNCT
"Oh PUNCT
- PUNCT
and CCONJ
if SCONJ
you PRON
* PUNCT
do AUX
* PUNCT
want VERB
to PART
flame VERB
me PRON
or CCONJ
anyone PRON
else ADV
, PUNCT
how ADV
about ADV
usingemail?RobWho ADJ
does AUX
n't PART
claim VERB
any DET
relevant ADJ
qualifications NOUN
, PUNCT
just ADV
interest--------------------------------------------------------------------------Rob PUNCT
Geraghty PROPN
               SPACE
| PROPN
3 NUM
things NOUN
are AUX
important ADJ
to ADP
me PRON
robg@citr.uq.oz.au PROPN
         SPACE
| PROPN
The DET
gift NOUN
of ADP
love NOUN
, PUNCT
the DET
joy NOUN
of ADP
lifeCITR PROPN
                       SPACE
| PROPN
And CCONJ
the DET
making NOUN
of ADP
music NOUN
in ADP
all DET
its PRON
formsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59180From NUM
: PUNCT
pete@smtl.demon.co.uk PROPN
( PUNCT
Pete PROPN
Phillips)Subject NUM
: PUNCT
Nebulisers NOUN
and CCONJ
particle NOUN
SizeHi PROPN
, PUNCT
we PRON
are AUX
just ADV
completing VERB
a DET
project NOUN
on ADP
nebuliser NOUN
performance NOUN
, PUNCT
and CCONJ
have AUX
awealth NOUN
of ADP
data NOUN
on ADP
particle NOUN
size NOUN
and CCONJ
output NOUN
which PRON
we PRON
are AUX
going VERB
to PART
useto VERB
adjudicate VERB
a DET
contract NOUN
next ADJ
week NOUN
. PUNCT
Although SCONJ
the DET
output NOUN
data NOUN
is AUX
easy ADJ
for ADP
us PRON
to PART
present VERB
, PUNCT
there PRON
seems VERB
to PART
belittle VERB
concensus NOUN
on ADP
the DET
optimum ADJ
diameter NOUN
of ADP
the DET
nebulised VERB
droplets NOUN
forstraightforward ADP
inhalation NOUN
therapy NOUN
( PUNCT
eg PROPN
: PUNCT
for ADP
asthmatics).Some PROPN
say VERB
that SCONJ
the DET
droplets NOUN
must AUX
be AUX
smaller ADJ
than SCONJ
5 NUM
microns NOUN
, PUNCT
whilstothers NOUN
say VERB
that SCONJ
if SCONJ
they PRON
are AUX
too ADV
small ADJ
they PRON
will AUX
not PART
be AUX
effective ADJ
. PUNCT
Anyone PRON
up ADP
on ADP
this DET
topic NOUN
who PRON
could AUX
summarise VERB
the DET
current ADJ
status NOUN
? PUNCT
Cheers NOUN
, PUNCT
Pete-- ADJ
Pete PROPN
Phillips PROPN
, PUNCT
Deputy PROPN
Director PROPN
, PUNCT
Surgical PROPN
Materials PROPN
Testing PROPN
Lab PROPN
, PUNCT
Bridgend PROPN
General PROPN
Hospital PROPN
, PUNCT
S. PROPN
Wales PROPN
. PUNCT
0656 NUM
- SYM
652166 NUM
pete@smtl.demon.co.uk PROPN
   SPACE
--"The PUNCT
Four NUM
Horse PROPN
Oppressors PROPN
of ADP
the DET
Apocalypse PROPN
were AUX
NutritionalDeprivation PROPN
, PUNCT
State PROPN
of ADP
Belligerency PROPN
, PUNCT
Widespread PROPN
Transmittable PROPN
Conditionand PROPN
Terminal PROPN
Inconvenience PROPN
" PUNCT
- PUNCT
Official PROPN
Politically PROPN
Correct PROPN
DictionaryNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59181From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In PROPN
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
disease NOUN
. PUNCT
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
without ADP
discomfort NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
John PROPN
EylesAll PROPN
your PRON
friend NOUN
really ADV
has AUX
to PART
do AUX
is AUX
find VERB
a DET
Registered ADJ
Dietician(RD PROPN
) PUNCT
. PUNCT
  SPACE
While SCONJ
most ADJ
work NOUN
in ADP
hospitals NOUN
and CCONJ
clinics NOUN
, PUNCT
many ADJ
major ADJ
cities NOUN
will AUX
have AUX
RD PROPN
's PART
who PRON
are AUX
in ADP
" PUNCT
private ADJ
practice NOUN
" PUNCT
so ADV
to PART
speak VERB
. PUNCT
  SPACE
Many ADJ
physicans NOUN
will AUX
refer VERB
their PRON
patients NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
to ADP
RD PROPN
's PART
for ADP
dietary ADJ
help NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
your PRON
friend NOUN
's PART
physician NOUN
to PART
make VERB
a DET
referral ADJ
, PUNCT
medical ADJ
insurance NOUN
should AUX
pay VERB
for ADP
the DET
RD PROPN
's PART
services NOUN
just ADV
like SCONJ
the DET
services NOUN
of ADP
a DET
physical ADJ
therapist NOUN
. PUNCT
  SPACE
The DET
better ADJ
medical ADJ
insurance NOUN
plans NOUN
will AUX
cover VERB
this DET
but CCONJ
even ADV
if SCONJ
your PRON
friend NOUN
's PART
plan NOUN
does AUX
n't PART
, PUNCT
it PRON
would AUX
be AUX
well ADV
worth ADJ
the DET
cost NOUN
to PART
get AUX
on ADP
a DET
good ADJ
diet NOUN
to PART
control VERB
the DET
intestinal ADJ
discomfort NOUN
and CCONJ
help VERB
the DET
intestinal ADJ
lining NOUN
heal NOUN
. PUNCT
Crohn PROPN
's PART
disease NOUN
is AUX
an DET
inflammatory ADJ
disease NOUN
of ADP
the DET
intestinal ADJ
lining NOUN
and CCONJ
lipoxygenase NOUN
inhibitors NOUN
may AUX
help VERB
by ADP
decreasing VERB
leukotriene ADJ
formation NOUN
but CCONJ
I PRON
'm AUX
not PART
aware ADJ
of ADP
tea NOUN
or CCONJ
turmeric ADJ
containing VERB
lipoxygenase NOUN
inhibitors NOUN
. PUNCT
  SPACE
For ADP
bad ADJ
inflammation NOUN
, PUNCT
steroids NOUN
are AUX
used VERB
but CCONJ
for ADP
a DET
mild ADJ
case NOUN
, PUNCT
the DET
side NOUN
effects NOUN
are AUX
not PART
worth ADJ
the DET
small ADJ
benefit NOUN
gained VERB
by ADP
steroid NOUN
use NOUN
. PUNCT
  SPACE
Upjohn PROPN
is AUX
developing VERB
a DET
new ADJ
lipoxygenase NOUN
inhibitor NOUN
that PRON
should AUX
greatly ADV
help VERB
deal VERB
with ADP
inflammatory ADJ
diseases NOUN
but CCONJ
it PRON
's AUX
not PART
available ADJ
yet ADV
. PUNCT
Marty PROPN
B. PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59182From NUM
: PUNCT
krishnas@vax.oxford.ac.ukSubject ADP
: PUNCT
RE NOUN
: PUNCT
HELP PROPN
ME PROPN
INJECT PROPN
... PUNCT
The DET
best ADJ
way NOUN
of ADP
self NOUN
injection NOUN
is AUX
to PART
use VERB
the DET
right ADJ
size NOUN
needleand NOUN
choose VERB
the DET
correct ADJ
spot NOUN
. PUNCT
For ADP
Streptomycin PROPN
, PUNCT
usually ADV
given VERB
intramuscularly ADV
, PUNCT
use VERB
a DET
thin ADJ
needle NOUN
( PUNCT
23/24 NUM
guage NOUN
) PUNCT
and CCONJ
select VERB
a DET
spot NOUN
onthe DET
upper ADJ
, PUNCT
outer ADJ
thigh NOUN
( PUNCT
no DET
major ADJ
nerves NOUN
or CCONJ
blood NOUN
vessels NOUN
there ADV
) PUNCT
. PUNCT
Clean VERB
the DET
area NOUN
with ADP
antiseptic ADJ
before ADP
injection NOUN
, PUNCT
and CCONJ
after ADV
. PUNCT
Makesure NOUN
to PART
inject VERB
deeply ADV
( PUNCT
a DET
different ADJ
kind NOUN
of ADP
pain NOUN
is AUX
felt VERB
when ADV
theneedle NOUN
enters VERB
the DET
muscle NOUN
- PUNCT
contrasted VERB
to ADP
the DET
' PUNCT
prick NOUN
' PUNCT
when ADV
it PRON
pierces VERB
the DET
skin).PS NOUN
: PUNCT
Try VERB
to PART
go VERB
to ADP
a DET
doctor NOUN
. PUNCT
Self NOUN
- PUNCT
treatment NOUN
and CCONJ
self NOUN
- PUNCT
injection NOUN
shouldbe NOUN
avoided VERB
as ADV
far ADV
as SCONJ
possible ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59183From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)GREAT PROPN
post NOUN
Martin PROPN
. PUNCT
  SPACE
Very ADV
informative ADJ
, PUNCT
well ADV
- PUNCT
balanced VERB
, PUNCT
and CCONJ
humanitarianwithout NOUN
neglecting VERB
the DET
need NOUN
for ADP
scientific ADJ
rigor.(Cross PROPN
- PUNCT
posted VERB
to ADP
alt.psychology.personality NOUN
since SCONJ
some DET
personality NOUN
typingwill NOUN
be AUX
discussed VERB
at ADP
the DET
beginning NOUN
- PUNCT
Note NOUN
: PUNCT
I PRON
've AUX
set VERB
all DET
followups NOUN
to ADP
sci.medsince PROPN
most ADJ
of ADP
my PRON
comments NOUN
are AUX
more ADV
sci.med VERB
oriented VERB
and CCONJ
I PRON
'm AUX
sure ADJ
most ADJ
of ADP
thereplies NOUN
, PUNCT
if SCONJ
any DET
, PUNCT
will AUX
be AUX
med VERB
- PUNCT
related.)In NOUN
article NOUN
banschbach@vms.ocom.okstate.edu PROPN
writes:>I NOUN
can AUX
not PART
believe VERB
the DET
way NOUN
this DET
thread NOUN
on ADP
candida(yeast NOUN
) PUNCT
has AUX
progressed.>Steve PROPN
Dyer PROPN
and CCONJ
I PRON
have AUX
been AUX
exchanging VERB
words NOUN
over ADP
the DET
same ADJ
topic NOUN
in ADP
Sci PROPN
. PUNCT
> X
Med PROPN
. PUNCT
Nutrition NOUN
when ADV
he PRON
displayed VERB
his PRON
typical ADJ
reserve NOUN
and CCONJ
attacked VERB
a DET
woman NOUN
> X
poster NOUN
for ADP
being AUX
treated VERB
by ADP
a DET
licenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
, PUNCT
Steve PROPN
, PUNCT
and CCONJ
I PRON
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
They PRON
are AUX
just ADV
responding VERB
in ADP
their PRON
natural ADJ
way NOUN
: PUNCT
  SPACE
Hyper PROPN
- PUNCT
Choleric PROPN
Syndrome PROPN
( PUNCT
HCS).Oops NOUN
, PUNCT
that DET
is AUX
not PART
a DET
recognized VERB
" PUNCT
illness NOUN
" PUNCT
in ADP
the DET
psychological ADJ
community NOUN
, PUNCT
better ADV
not PART
say VERB
that SCONJ
since SCONJ
it PRON
therefore ADV
must AUX
not PART
, PUNCT
and CCONJ
never ADV
will AUX
, PUNCT
exist VERB
. PUNCT
  SPACE
: PUNCT
^)Actually PUNCT
, PUNCT
it PRON
is AUX
fascinating ADJ
that SCONJ
a DET
disproportionate ADJ
number NOUN
of ADP
physicianswill NOUN
type NOUN
out ADP
as SCONJ
NT PROPN
( PUNCT
for ADP
those DET
not PART
familiar ADJ
with ADP
the DET
Myers PROPN
- PUNCT
Briggs PROPN
system NOUN
, PUNCT
just ADV
e NOUN
- NOUN
mail VERB
me PRON
and CCONJ
I PRON
'll AUX
send VERB
a DET
summary NOUN
file NOUN
to ADP
you PRON
) PUNCT
. PUNCT
  SPACE
In ADP
the DET
generalpopulation NOUN
, PUNCT
NT PROPN
's PART
comprise NOUN
only ADV
about ADV
12 NUM
% NOUN
of ADP
the DET
population NOUN
, PUNCT
but CCONJ
amongphysicians VERB
it PRON
is AUX
much ADV
much ADV
higher ADJ
( PUNCT
I PRON
do AUX
n't PART
know VERB
the DET
exact ADJ
percentage NOUN
-any PUNCT
help NOUN
here ADV
a.p.p.er's?)One ADP
driving VERB
characteristic NOUN
of ADP
an DET
NT PROPN
, PUNCT
especially ADV
an DET
NTJ PROPN
, PUNCT
is AUX
their PRON
obviouscholeric ADJ
behavior NOUN
( PUNCT
driver NOUN
, PUNCT
type NOUN
A NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
- PUNCT
the DET
extreme ADJ
emotional ADJ
need NOUN
tocontrol NOUN
, PUNCT
to PART
lead VERB
, PUNCT
and/or CCONJ
to PART
be AUX
the DET
best ADJ
or CCONJ
the DET
most ADV
competent ADJ
. PUNCT
  SPACE
If SCONJ
they PRON
arealso ADV
extroverted VERB
, PUNCT
they PRON
are AUX
best ADV
described VERB
as SCONJ
" PUNCT
Field PROPN
Marshalls PROPN
" PUNCT
. PUNCT
  SPACE
This DET
traitis NOUN
very ADV
valuable ADJ
and CCONJ
essential ADJ
in ADP
our PRON
society NOUN
- PUNCT
we PRON
need VERB
people NOUN
who PRON
want VERB
tolead NOUN
, PUNCT
to PART
strive VERB
to PART
overcome VERB
the DET
elements NOUN
, PUNCT
to PART
seek VERB
and CCONJ
thirst VERB
for ADP
knowledge NOUN
, PUNCT
to PART
raise VERB
the DET
level NOUN
of ADP
competency NOUN
, PUNCT
etc X
. PUNCT
  SPACE
The DET
great ADJ
successes NOUN
in ADP
science NOUN
andtechnology NOUN
are AUX
in ADP
large ADJ
part NOUN
due ADP
to ADP
the DET
vision NOUN
( PUNCT
an DET
N PROPN
trait NOUN
) PUNCT
and CCONJ
scientifically ADV
- PUNCT
minded ADJ
approach NOUN
( PUNCT
T PROPN
trait NOUN
) PUNCT
of ADP
the DET
NT PROPN
personality NOUN
( PUNCT
of ADP
course NOUN
, PUNCT
the DET
other ADJ
typesand NOUN
temperaments NOUN
have AUX
their PRON
own ADJ
positive ADJ
contributions NOUN
as ADV
well ADV
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
when ADV
the DET
NT PROPN
person NOUN
has AUX
self NOUN
- PUNCT
image NOUN
challenges NOUN
, PUNCT
the DET
" PUNCT
dark ADJ
- PUNCT
side NOUN
" PUNCT
of ADP
thispersonality NOUN
type NOUN
usually ADV
comes VERB
out ADP
, PUNCT
which PRON
should AUX
be AUX
obvious ADJ
to ADP
all DET
. PUNCT
A DET
physician NOUN
who PRON
is AUX
a DET
strong ADJ
NT PROPN
and CCONJ
who PRON
has AUX
not PART
learned VERB
to ADP
temper NOUN
theirtemperament NOUN
will AUX
be AUX
extremely ADV
business NOUN
- PUNCT
like ADJ
( PUNCT
lack NOUN
of ADP
empathy NOUN
or CCONJ
feeling),and PROPN
is AUX
very ADV
compelled VERB
to PART
have AUX
total ADJ
control NOUN
over ADP
their PRON
patient NOUN
( PUNCT
the DET
patientmust NOUN
be AUX
obedient ADJ
to ADP
their PRON
diagnosis NOUN
and CCONJ
prescription NOUN
without ADP
question NOUN
) PUNCT
. PUNCT
  SPACE
I'veknown PROPN
many ADJ
M.D. PROPN
's PART
of ADP
this DET
temperament NOUN
and CCONJ
suffice NOUN
to PART
say VERB
I PRON
do AUX
n't PART
oblige VERB
themwith NOUN
a DET
followup ADJ
visit NOUN
, PUNCT
no ADV
matter ADV
how ADV
competent ADJ
I PRON
think VERB
they PRON
are AUX
( PUNCT
and CCONJ
theyusually ADV
are AUX
very ADV
competent ADJ
from ADP
a DET
knowledge NOUN
viewpoint NOUN
since SCONJ
that DET
is AUX
anextreme NOUN
drive NOUN
of ADP
theirs NOUN
- PUNCT
to PART
know VERB
the DET
most ADJ
, PUNCT
to PART
know VERB
it PRON
all).Maybe ADV
we PRON
need VERB
more ADJ
NF PROPN
doctor NOUN
's PART
. PUNCT
  SPACE
: PUNCT
^)Enough PUNCT
on ADP
this DET
subject NOUN
- PUNCT
let VERB
's PRON
move VERB
on ADP
to ADP
candida PROPN
bloom.>Let ADP
me PRON
tell VERB
you PRON
who PRON
the DET
quacks NOUN
really ADV
are AUX
, PUNCT
these DET
are AUX
the DET
physicans NOUN
who PRON
have AUX
> X
no DET
idea NOUN
how ADV
the DET
human ADJ
body NOUN
interacts VERB
with ADP
it PRON
's AUX
environment NOUN
and CCONJ
how ADV
that DET
> X
balance NOUN
can AUX
be AUX
altered VERB
by ADP
diet NOUN
and CCONJ
antibiotics NOUN
... PUNCT
  SPACE
Could AUX
it PRON
just ADV
be AUX
> X
professional ADJ
jealousy NOUN
? PUNCT
  SPACE
I PRON
could AUX
n't PART
help VERB
Elaine PROPN
or CCONJ
Jon PROPN
but CCONJ
somebody PRON
else ADV
did AUX
. PUNCT
You've PROPN
helped VERB
me PRON
already ADV
by ADP
your PRON
post NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
I PRON
believe VERB
that SCONJ
I PRON
havebeen VERB
misdiagnosed VERB
on ADP
the DET
net NOUN
as SCONJ
suffering VERB
from ADP
' PUNCT
anal ADJ
retentivitis NOUN
' PUNCT
, PUNCT
but CCONJ
beingthe NOUN
phlegmatic ADJ
I PRON
am AUX
, PUNCT
maybe ADV
I PRON
was AUX
just ADV
a DET
little ADJ
too ADV
harsh ADJ
on ADP
a DET
few ADJ
peoplemyself NOUN
in ADP
past ADJ
posts NOUN
. PUNCT
  SPACE
Let VERB
's PRON
all DET
try VERB
to PART
raise VERB
the DET
level NOUN
of ADP
this DET
discussionabove NOUN
the DET
level NOUN
of ADP
anal ADJ
effluent.> NOUN
... PUNCT
Humans NOUN
have AUX
all DET
> X
kinds NOUN
of ADP
different ADJ
organisms NOUN
living VERB
in ADP
the DET
GI PROPN
system NOUN
( PUNCT
mouth NOUN
, PUNCT
stomach NOUN
, PUNCT
small ADJ
> X
and CCONJ
large ADJ
intestine NOUN
) PUNCT
, PUNCT
sinuses NOUN
, PUNCT
vagina PROPN
and CCONJ
on ADP
the DET
skin NOUN
. PUNCT
  SPACE
These DET
are AUX
> X
nonpathogenic ADJ
because SCONJ
they PRON
do AUX
not PART
cause VERB
disease NOUN
in ADP
people NOUN
unless SCONJ
the DET
immune ADJ
> X
system NOUN
is AUX
compromised VERB
. PUNCT
  SPACE
They PRON
are AUX
also ADV
called VERB
nonpathogens NOUN
because SCONJ
unlike ADP
> X
the DET
pathogenic ADJ
organisms NOUN
that PRON
cause VERB
human ADJ
disease NOUN
, PUNCT
they PRON
do AUX
not PART
produce VERB
> X
toxins NOUN
as SCONJ
they PRON
live VERB
out ADP
their PRON
merry NOUN
existence NOUN
in ADP
and CCONJ
on ADP
our PRON
body NOUN
. PUNCT
  SPACE
But CCONJ
any DET
of ADP
> X
these DET
organisms NOUN
will AUX
be AUX
considered VERB
pathogenic ADJ
if SCONJ
it PRON
manages VERB
to PART
take VERB
up ADP
> X
residence NOUN
within ADP
the DET
body NOUN
. PUNCT
  SPACE
A DET
poor ADJ
mucus ADJ
membrane NOUN
barrier PROPN
can AUX
let VERB
this DET
> X
happen VERB
and CCONJ
vitamin NOUN
A NOUN
is AUX
mainly ADV
responsible ADJ
for ADP
setting VERB
up ADP
this DET
barrier NOUN
. PUNCT
In ADP
my PRON
well ADV
- PUNCT
described VERB
situation NOUN
( PUNCT
in ADP
prior ADJ
posts NOUN
) PUNCT
, PUNCT
I PRON
definitely ADV
was AUX
immunestressed VERB
. PUNCT
  SPACE
Blood NOUN
tests NOUN
showed VERB
my PRON
vitamin NOUN
A DET
levels NOUN
were AUX
very ADV
low ADJ
. PUNCT
  SPACE
My PRON
sinuseswere NOUN
a DET
mess NOUN
- PUNCT
no ADV
doubt NOUN
the DET
mucosal ADJ
lining NOUN
and CCONJ
the DET
cilia NOUN
were AUX
heavily ADV
damaged VERB
. PUNCT
I PRON
also ADV
was AUX
on ADP
antibiotics NOUN
15 NUM
times NOUN
in ADP
4 NUM
years NOUN
! PUNCT
  SPACE
In ADP
the DET
end NOUN
, PUNCT
even ADV
two NUM
weeksof ADJ
Ceftin PROPN
did AUX
not PART
work VERB
and CCONJ
I PRON
had AUX
confirmed VERB
diagnoses NOUN
of ADP
a DET
chronic ADJ
bacterialinfection NOUN
of ADP
the DET
sinuses NOUN
via ADP
cat NOUN
- PUNCT
scans PROPN
, PUNCT
mucus ADJ
color NOUN
( PUNCT
wo AUX
n't PART
get AUX
into ADP
thedetails NOUN
) PUNCT
, PUNCT
and CCONJ
other ADJ
symptoms NOUN
. PUNCT
  SPACE
Three NUM
very ADV
traditional ADJ
ENT PROPN
's PART
made VERB
thisdiagnosis NOUN
( PUNCT
I PRON
did AUX
not PART
have AUX
any DET
cultures NOUN
done VERB
, PUNCT
however ADV
, PUNCT
because SCONJ
of ADP
thedifficulty NOUN
of ADP
doing VERB
this DET
right NOUN
and CCONJ
because SCONJ
my PRON
other ADJ
symptoms NOUN
clearly ADV
showeda VERB
bacterial ADJ
infection NOUN
) PUNCT
. PUNCT
  SPACE
Enough ADV
of ADP
this DET
background NOUN
( PUNCT
provided VERB
to PART
help VERB
youunderstand VERB
where ADV
I PRON
was AUX
when ADV
I PRON
make VERB
comments NOUN
about ADP
my PRON
Sporanox PROPN
anti ADJ
- ADJ
fungaltherapy ADJ
below).The ADJ
first ADJ
question NOUN
I PRON
have AUX
is AUX
this DET
. PUNCT
  SPACE
Can AUX
fungus VERB
penetrate VERB
a DET
little ADJ
way NOUN
into ADP
poormucus NOUN
membrane NOUN
tissue NOUN
, PUNCT
maybe ADV
via ADP
hyphae NOUN
, PUNCT
thus ADV
causing VERB
symptoms NOUN
, PUNCT
without ADP
beingconsidered VERB
' PUNCT
systemic ADJ
' PUNCT
in ADP
the DET
classic ADJ
sense NOUN
? PUNCT
  SPACE
It PRON
is AUX
sort ADV
of ADV
an DET
inbetweeninfection.>Steve PROPN
got VERB
real ADV
upset ADJ
with ADP
Elaine PROPN
's PART
doctor NOUN
because SCONJ
he PRON
was AUX
using VERB
anti NOUN
- NOUN
fungals NOUN
> X
and CCONJ
vitamin NOUN
A NOUN
for ADP
her PRON
GI PROPN
problems NOUN
. PUNCT
  SPACE
If SCONJ
Steve PROPN
really ADV
understoood VERB
what PRON
> X
vitamin NOUN
A NOUN
does AUX
in ADP
the DET
body NOUN
, PUNCT
he PRON
would AUX
not(or VERB
at ADP
least ADJ
should AUX
not PART
) PUNCT
be AUX
calling VERB
> X
Elaine PROPN
's PART
doctor NOUN
a DET
quack NOUN
. PUNCT
I PRON
was AUX
concerned VERB
, PUNCT
too ADV
, PUNCT
because SCONJ
of ADP
the DET
toxicity NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
My PRON
doctor NOUN
, PUNCT
aftermy PROPN
blood NOUN
tests NOUN
, PUNCT
put VERB
me PRON
on ADP
75,000 NUM
IU NOUN
of ADP
vitamin NOUN
A NOUN
for ADP
one NUM
week NOUN
only ADV
, PUNCT
thendropped VERB
it PRON
down ADP
to ADP
25,000 NUM
IU PROPN
for ADP
the DET
next ADJ
couple NOUN
of ADP
weeks NOUN
. PUNCT
  SPACE
I PRON
also ADV
receivedzinc VERB
and CCONJ
other ADJ
supplementation NOUN
, PUNCT
since SCONJ
all DET
of ADP
these DET
interrelate VERB
in ADP
fairlycomplex ADJ
ways NOUN
as SCONJ
my PRON
doctor NOUN
explained VERB
( PUNCT
he PRON
's AUX
one NUM
of ADP
those DET
' PUNCT
evil ADJ
' PUNCT
orthomolecularspecialists NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
had AUX
a DET
blood NOUN
test NOUN
three NUM
weeks NOUN
later ADV
and CCONJ
vitamin NOUN
A PROPN
was AUX
normal ADJ
, PUNCT
he PRON
then ADV
stopped VERB
me PRON
on ADP
all DET
vitamin NOUN
A NOUN
( PUNCT
except SCONJ
for ADP
some DET
in ADP
a DET
multi ADJ
- ADJ
vitamin)supplement ADJ
) PUNCT
, PUNCT
and CCONJ
made VERB
sure ADJ
that SCONJ
I PRON
maintain VERB
a DET
50,000 NUM
IU PROPN
/ SYM
day NOUN
of ADP
beta NOUN
carotene NOUN
. PUNCT
Call VERB
me PRON
carrot NOUN
face NOUN
. PUNCT
  SPACE
: PUNCT
^)Hopefully PUNCT
, PUNCT
Elaine PROPN
's PART
doctor NOUN
will AUX
take VERB
a DET
similar ADJ
, PUNCT
careful ADJ
approach NOUN
and CCONJ
toall PROPN
supplements NOUN
. PUNCT
  SPACE
I PRON
'm AUX
even ADV
reevaluating VERB
some DET
supplements NOUN
I PRON
'm AUX
taking VERB
, PUNCT
forexample NOUN
, PUNCT
niacin PROPN
in ADP
fairly ADV
large ADJ
dosages NOUN
, PUNCT
1 NUM
gram NOUN
/ SYM
day NOUN
, PUNCT
which PRON
Steve PROPN
Dyer PROPN
hadgood NOUN
information NOUN
about ADP
on ADP
sci.med.nutrition PROPN
. PUNCT
  SPACE
If SCONJ
niacin PROPN
only ADV
has AUX
second ADV
- PUNCT
orderimprovement ADJ
in ADP
symptomatic ADJ
relief NOUN
of ADP
my PRON
sinus NOUN
allergies NOUN
, PUNCT
then ADV
it PRON
probably ADV
isnot VERB
worth ADJ
taking VERB
such DET
a DET
large ADJ
dose ADJ
long ADJ
- PUNCT
term NOUN
and CCONJ
risking VERB
liver NOUN
damage.>survives NOUN
. PUNCT
  SPACE
If SCONJ
it PRON
gets VERB
access NOUN
to ADP
a DET
lot NOUN
of ADP
glucose NOUN
, PUNCT
it PRON
blooms VERB
and CCONJ
over ADP
rides NOUN
> X
the DET
other ADJ
organisms NOUN
living VERB
with ADP
it PRON
in ADP
the DET
sinuses NOUN
, PUNCT
GI PROPN
tract NOUN
or CCONJ
vagina PROPN
. PUNCT
  SPACE
In ADP
Though PROPN
I PRON
do AUX
now ADV
believe VERB
, PUNCT
based VERB
on ADP
my PRON
successful ADJ
therapy NOUN
with ADP
Sporanox PROPN
, PUNCT
thatI PROPN
definitely ADV
had AUX
some DET
excessive ADJ
growth NOUN
of ADP
fungus NOUN
( PUNCT
unknown ADJ
species NOUN
) PUNCT
in ADP
mysinuses NOUN
, PUNCT
I PRON
still ADV
want VERB
to PART
ask VERB
the DET
question NOUN
: PUNCT
  SPACE
have AUX
there PRON
been AUX
any DET
studies NOUN
thatdemonstrate PROPN
candida PROPN
" PUNCT
blooms NOUN
" PUNCT
in ADP
the DET
sinuses NOUN
with ADP
associated PROPN
sinus PROPN
irritation(sinusitis PROPN
/ SYM
rhinitis PROPN
) PUNCT
? PUNCT
  SPACE
( PUNCT
My PRON
sinus NOUN
irritation NOUN
reduced VERB
significantly ADV
after ADP
oneweek NOUN
of ADP
Sporanox PROPN
and CCONJ
no DET
other ADJ
new ADJ
treatments NOUN
were AUX
implemented VERB
during ADP
thistime NOUN
- PUNCT
I PRON
did AUX
not PART
have AUX
any DET
noticeable ADJ
GI PROPN
track NOUN
problems NOUN
before ADP
starting VERB
onSporanox PROPN
, PUNCT
but CCONJ
some DET
for ADP
a DET
few ADJ
days NOUN
after ADP
which PRON
then ADV
went VERB
away ADV
- PUNCT
considerednormal).BTW PROPN
, PUNCT
my PRON
doctor NOUN
dug VERB
out ADP
one NUM
of ADP
his PRON
medical ADJ
reference NOUN
books NOUN
( PUNCT
sorry INTJ
, PUNCT
can'tremember PROPN
which PRON
one NOUN
) PUNCT
, PUNCT
and CCONJ
found VERB
an DET
obscure ADJ
comment NOUN
dating VERB
back ADV
into ADP
the DET
1950'swhich NUM
stated VERB
that SCONJ
people NOUN
can AUX
develop VERB
contained VERB
( PUNCT
non ADJ
- ADJ
lethal ADJ
or CCONJ
non ADJ
- ADJ
serious)aspergillis ADJ
infestations NOUN
( PUNCT
aspergiliosis NOUN
) PUNCT
of ADP
the DET
sinuses NOUN
leading VERB
to ADP
sinusinflammation NOUN
symptoms NOUN
. PUNCT
  SPACE
I PRON
'll AUX
have AUX
to PART
dig VERB
out ADP
that DET
reference NOUN
again ADV
since SCONJ
itis NOUN
relevant ADJ
to ADP
this DET
discussion.>some ADJ
people NOUN
do AUX
really ADV
develop VERB
a DET
bad ADJ
inflammatory ADJ
process NOUN
at ADP
the DET
mucus PROPN
> PROPN
membrane NOUN
or CCONJ
skin NOUN
bloom NOUN
site NOUN
. PUNCT
  SPACE
Whether SCONJ
this DET
is AUX
an DET
allergic ADJ
like SCONJ
reaction NOUN
to ADP
> X
the DET
candida PROPN
or CCONJ
not PART
is AUX
n't PART
certain ADJ
. PUNCT
My PRON
doctor NOUN
tested VERB
me PRON
( PUNCT
I PRON
believe VERB
a DET
RAST PROPN
or CCONJ
RAST PROPN
similar ADJ
test NOUN
) PUNCT
for ADP
allergicresponse NOUN
to ADP
specificially ADV
Candida PROPN
albicans NOUN
, PUNCT
and CCONJ
I PRON
showed VERB
a DET
strong ADJ
positive NOUN
. PUNCT
Another DET
question NOUN
, PUNCT
would AUX
everybody PRON
show VERB
the DET
same ADJ
strong ADJ
positive ADJ
so SCONJ
this DET
testis NOUN
essentially ADV
useless ADJ
? PUNCT
  SPACE
And CCONJ
, PUNCT
assuming VERB
it PRON
is AUX
true ADJ
that SCONJ
Candida PROPN
can AUX
growpart VERB
- PUNCT
way NOUN
into ADP
the DET
mucus PROPN
membrane PROPN
tissue NOUN
, PUNCT
and CCONJ
the DET
concentration NOUN
exceeds VERB
a DET
threshold NOUN
amount NOUN
, PUNCT
could AUX
not PART
a DET
person NOUN
who PRON
tests VERB
as SCONJ
having VERB
an DET
allergy NOUN
toCandida PROPN
definitely ADV
develop VERB
allergic ADJ
symptoms NOUN
, PUNCT
such ADJ
as SCONJ
mucus PROPN
membraneirritation PROPN
due ADP
to ADP
the DET
body NOUN
's PART
allergic ADJ
response NOUN
? PUNCT
  SPACE
As SCONJ
I PRON
said VERB
in ADP
an DET
earlier ADJ
post NOUN
, PUNCT
one NOUN
does AUX
not PART
need VERB
to PART
be AUX
a DET
rocket NOUN
scientist NOUN
, PUNCT
or CCONJ
have AUX
a DET
M.D. PROPN
degree NOUN
or CCONJ
a DET
Ph.D. NOUN
in ADP
biochemistry NOUN
to PART
see VERB
the DET
plausibility NOUN
of ADP
this DET
hypothesis NOUN
. PUNCT
BTW ADV
, PUNCT
and CCONJ
I PRON
'll AUX
repost VERB
this DET
again ADV
. PUNCT
  SPACE
Dr. PROPN
Ivker PROPN
, PUNCT
in ADP
his PRON
book NOUN
, PUNCT
" PUNCT
Sinus NOUN
Survival",has NOUN
routinely ADV
given VERB
, PUNCT
before ADP
anything PRON
else ADV
, PUNCT
Nizoral PROPN
( PUNCT
a DET
pre ADJ
- ADJ
Sporanox ADJ
systemicanti ADJ
- ADJ
fungal ADJ
, PUNCT
not PART
as ADV
safe ADJ
and CCONJ
not PART
as ADV
good ADJ
as SCONJ
Sporanox PROPN
) PUNCT
to ADP
his PRON
new ADJ
chronicsinusitis NOUN
patients NOUN
IF ADP
they PRON
have AUX
been AUX
on ADP
antibiotics NOUN
four NUM
or CCONJ
more ADJ
times NOUN
inthe ADV
last ADJ
two NUM
years NOUN
. PUNCT
  SPACE
He PRON
claims VERB
that SCONJ
out SCONJ
of ADP
2000 NUM
or CCONJ
so ADV
patients NOUN
, PUNCT
well INTJ
over90 PROPN
% NOUN
notice NOUN
some DET
relief NOUN
of ADP
sinus NOUN
inflammation NOUN
and CCONJ
other ADJ
symptoms NOUN
, PUNCT
but CCONJ
itdoesn't PROPN
cure VERB
it PRON
by ADP
any DET
means NOUN
, PUNCT
implying VERB
the DET
so ADV
- PUNCT
called VERB
yeast NOUN
/ SYM
fungus PROPN
infectionis NOUN
not PART
the DET
primary ADJ
cause NOUN
, PUNCT
but CCONJ
a DET
later ADJ
complication NOUN
. PUNCT
  SPACE
He PRON
's AUX
also ADV
found VERB
thatnystatin NOUN
, PUNCT
whether SCONJ
taken VERB
internally ADV
, PUNCT
or CCONJ
put VERB
into ADP
a DET
sinus NOUN
spray NOUN
, PUNCT
does AUX
not PART
help VERB
. PUNCT
This DET
implies VERB
( PUNCT
of ADP
course NOUN
assuming VERB
that SCONJ
excessive ADJ
yeast NOUN
/ SYM
fungus NOUN
bloom NOUN
isaggravating VERB
the DET
sinus NOUN
inflammation NOUN
) PUNCT
that SCONJ
the DET
yeast NOUN
/ SYM
fungus PROPN
has AUX
grown VERB
partwayinto PROPN
the DET
tissue NOUN
since SCONJ
nystatin PROPN
will AUX
not PART
kill VERB
yeast NOUN
/ SYM
fungus NOUN
other ADJ
than SCONJ
bydirect ADJ
contact NOUN
- PUNCT
it PRON
is AUX
not PART
absorbed VERB
into ADP
the DET
blood NOUN
stream NOUN
. PUNCT
  SPACE
Again ADV
, PUNCT
I PRON
admit VERB
, PUNCT
lots NOUN
of ADP
' PUNCT
ifs PROPN
' PUNCT
, PUNCT
and CCONJ
' PUNCT
implies VERB
' PUNCT
, PUNCT
which PRON
does AUX
n't PART
please VERB
the DET
hard ADJ
- PUNCT
core NOUN
NT PROPN
whohas VERB
to PART
have AUX
the DET
double ADJ
- PUNCT
blind ADJ
study NOUN
or CCONJ
it PRON
's AUX
a DET
non ADJ
- ADJ
issue NOUN
, PUNCT
but CCONJ
one PRON
has AUX
to PART
startwith VERB
some DET
plausible ADJ
hypothesis NOUN
/ SYM
explanation NOUN
, PUNCT
a DET
strawman NOUN
, PUNCT
if SCONJ
you PRON
will.>If VERB
it PRON
's AUX
internal ADJ
, PUNCT
only ADV
symptoms NOUN
can AUX
be AUX
used VERB
and CCONJ
these DET
symptoms NOUN
are AUX
pretty ADV
> X
nondescript ADJ
. PUNCT
  SPACE
This DET
brings VERB
up ADP
an DET
interesting ADJ
observation NOUN
used VERB
by ADP
those DET
who PRON
will AUX
denyand ADV
reject VERB
any DET
and CCONJ
all DET
aspects NOUN
of ADP
the DET
' PUNCT
yeast NOUN
hypothesis NOUN
' PUNCT
until ADP
theappropriate NOUN
studies NOUN
are AUX
done VERB
. PUNCT
  SPACE
And CCONJ
that DET
is AUX
if SCONJ
you PRON
ca AUX
n't PART
observe VERB
or CCONJ
culturethe VERB
yeast ADJ
" PUNCT
bloom NOUN
" PUNCT
in ADP
the DET
gut NOUN
or CCONJ
sinus NOUN
, PUNCT
then ADV
there PRON
's AUX
no DET
way NOUN
to PART
diagnose VERB
oreven VERB
recognize VERB
the DET
disease NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
they PRON
realize VERB
that SCONJ
it PRON
is AUX
virtuallyimpossible ADJ
to PART
test VERB
for ADP
candida PROPN
overbloom PROPN
in ADP
any DET
part NOUN
of ADP
the DET
body NOUN
that PRON
cannotbe VERB
easily ADV
observed VERB
since SCONJ
candida PROPN
is AUX
everywhere ADV
in ADP
the DET
body NOUN
. PUNCT
It PRON
's AUX
a DET
real ADJ
Catch-22.Another PROPN
Catch-22 PROPN
: PUNCT
  SPACE
Those DET
who PRON
totally ADV
reject VERB
the DET
' PUNCT
yeast NOUN
hypothesis NOUN
' PUNCT
say VERB
thatno PROPN
studies NOUN
have AUX
been AUX
done VERB
( PUNCT
actually ADV
studies NOUN
have AUX
been AUX
done VERB
, PUNCT
but CCONJ
if SCONJ
it PRON
's AUX
notup PROPN
to ADP
a DET
certain ADJ
standard NOUN
then ADV
it PRON
is AUX
, PUNCT
from ADP
their PRON
perspective NOUN
, PUNCT
a DET
non ADJ
- ADJ
study ADJ
whichshould AUX
not PART
even ADV
be AUX
considered VERB
) PUNCT
. PUNCT
  SPACE
I PRON
agree VERB
that SCONJ
the DET
appropriate ADJ
studies NOUN
shouldbe PROPN
done VERB
, PUNCT
and CCONJ
that DET
will AUX
take VERB
big ADJ
$ ADV
to PART
do AUX
it PRON
right ADJ
. PUNCT
  SPACE
However ADV
, PUNCT
in ADP
order NOUN
toconvince VERB
the DET
funding NOUN
agencies NOUN
in ADP
these DET
austere ADJ
times NOUN
to PART
open VERB
their PRON
wallets NOUN
, PUNCT
you PRON
literally ADV
have AUX
to PART
give VERB
them PRON
evidence NOUN
, PUNCT
and CCONJ
the DET
only ADJ
acceptable ADJ
evidence NOUN
tocompete NOUN
with ADP
other ADJ
proposals NOUN
is AUX
paradoxically ADV
to PART
do AUX
almost ADV
the DET
exact ADV
studyneeded ADJ
funding NOUN
. PUNCT
  SPACE
That ADV
is ADV
, PUNCT
you PRON
have AUX
to PART
do AUX
90 NUM
% NOUN
of ADP
the DET
study NOUN
before ADP
you PRON
even ADV
getfunding VERB
( PUNCT
as SCONJ
a DET
scientist NOUN
at ADP
a DET
National PROPN
Lab PROPN
, PUNCT
I PRON
'm AUX
very ADV
aware ADJ
of ADP
this DET
for ADP
thesmaller NOUN
funded VERB
projects NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
afraid ADJ
that SCONJ
even ADV
if SCONJ
Dr. PROPN
Ivker PROPN
and CCONJ
100 NUM
otherdoctors NOUN
got VERB
together ADV
, PUNCT
pooled VERB
their PRON
practice NOUN
's PART
case NOUN
histories NOUN
and CCONJ
anecdotesinto ADP
a DET
compelling ADJ
picture NOUN
, PUNCT
and CCONJ
approach VERB
the DET
funding NOUN
agencies NOUN
, PUNCT
they PRON
would AUX
getnowhere VERB
, PUNCT
even ADV
if SCONJ
they PRON
were AUX
able ADJ
to PART
publish VERB
their PRON
statistical ADJ
results NOUN
. PUNCT
It PRON
is AUX
obvious ADJ
from ADP
the DET
comments NOUN
by ADP
some DET
of ADP
the DET
doctors NOUN
here ADV
is AUX
that SCONJ
they PRON
have*decided VERB
* PUNCT
excessive ADJ
yeast NOUN
colonization NOUN
in ADP
the DET
gut NOUN
or CCONJ
sinuses NOUN
leading VERB
tonoticeable ADJ
non ADJ
- ADJ
lethal ADJ
symptoms NOUN
does AUX
not PART
exist VERB
, PUNCT
and CCONJ
is AUX
not PART
even ADV
a DET
tenablehypothesis NOUN
, PUNCT
so SCONJ
any DET
amount NOUN
of ADP
case NOUN
histories NOUN
or CCONJ
compiled VERB
anecdotal ADJ
evidenceto NOUN
the DET
contrary NOUN
will AUX
never ADV
change VERB
their PRON
mind NOUN
, PUNCT
and CCONJ
not PART
only ADV
that DET
, PUNCT
they PRON
wouldalso ADV
oppose VERB
the DET
needed VERB
studies NOUN
because SCONJ
in ADP
their PRON
minds NOUN
it PRON
's AUX
a DET
done VERB
issue NOUN
- PUNCT
excessive ADJ
yeast NOUN
growth NOUN
leading VERB
to PART
diffuse VERB
allergic ADJ
symptoms NOUN
does AUX
not PART
, PUNCT
willnot NOUN
, PUNCT
and CCONJ
can AUX
not PART
exist VERB
. PUNCT
  SPACE
Period PROPN
. PUNCT
  SPACE
Kind ADV
of ADV
tough ADJ
to PART
dialog VERB
with ADP
those DET
who PRON
holdsuch VERB
a DET
viewpoint NOUN
. PUNCT
  SPACE
Kind ADV
of ADV
reminds VERB
me PRON
of ADP
Lister PROPN
... PUNCT
>Candida PROPN
is AUX
kept VERB
in ADP
check NOUN
in ADP
most ADJ
people NOUN
by ADP
the DET
normal ADJ
bacterial ADJ
flora NOUN
in ADP
> X
the DET
sinuses NOUN
, PUNCT
the DET
GI PROPN
tract(mouth PROPN
, PUNCT
stomach NOUN
and CCONJ
intestines NOUN
) PUNCT
and CCONJ
in ADP
the DET
> X
vaginal ADJ
tract NOUN
which PRON
compete VERB
with ADP
it PRON
for ADP
food NOUN
. PUNCT
  SPACE
The DET
human ADJ
immune ADJ
system NOUN
> X
ususally ADV
does AUX
not PART
bother VERB
itself PRON
with ADP
these(nonpathogenic PROPN
organisms NOUN
) PUNCT
unless SCONJ
> X
they PRON
broach VERB
the DET
mucus PROPN
membrane NOUN
" PUNCT
barrier NOUN
" PUNCT
. PUNCT
  SPACE
If SCONJ
they PRON
do AUX
, PUNCT
an DET
inflammatory ADJ
> ADJ
response NOUN
will AUX
be AUX
set VERB
up ADP
. PUNCT
  SPACE
Most ADJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
vitamin NOUN
A NOUN
> X
from ADP
their PRON
diets NOUN
. PUNCT
  SPACE
About ADV
30 NUM
% NOUN
of ADP
all DET
American PROPN
's PART
die NOUN
with ADP
less ADJ
Vitamin PROPN
A PROPN
than SCONJ
> X
they PRON
were AUX
born VERB
with(U.S. PROPN
autopsy ADJ
studies NOUN
) PUNCT
. PUNCT
  SPACE
While SCONJ
this DET
low ADJ
level NOUN
of ADP
vitamin NOUN
> X
A NOUN
does AUX
not PART
cause VERB
pathology(blindness NOUN
) PUNCT
it PRON
does AUX
impair VERB
the DET
mucus PROPN
membrane PROPN
> X
barrier PROPN
system NOUN
. PUNCT
  SPACE
This DET
would AUX
then ADV
be AUX
a DET
predisposing VERB
factor NOUN
for ADP
a DET
strong ADJ
> X
inflammatory ADJ
response NOUN
after ADP
a DET
candida PROPN
bloom NOUN
. PUNCT
  SPACE
Are AUX
n't PART
there ADV
also ADV
other ADJ
nutrients NOUN
necessary ADJ
to ADP
the DET
proper ADJ
working NOUN
of ADP
thesinus PROPN
mucus PROPN
membranes NOUN
and CCONJ
cilia?>While PUNCT
diabetics NOUN
can AUX
suffer VERB
from ADP
a DET
candida PROPN
" PUNCT
bloom NOUN
" PUNCT
the DET
  SPACE
most ADV
common ADJ
cause NOUN
of ADP
> X
this DET
type NOUN
of ADP
bloom NOUN
is AUX
the DET
use NOUN
of ADP
broad ADJ
spectrum NOUN
antibiotics NOUN
which PRON
> X
knock VERB
down ADP
many ADJ
different ADJ
kinds NOUN
of ADP
bacteria NOUN
in ADP
the DET
body NOUN
and CCONJ
remove VERB
the DET
main ADJ
> X
competition NOUN
for ADP
candida PROPN
as ADV
far ADV
as SCONJ
food NOUN
is AUX
concerned VERB
. PUNCT
  SPACE
While SCONJ
drugs NOUN
are AUX
> X
available ADJ
to PART
handle VERB
candida PROPN
, PUNCT
many ADJ
patients NOUN
find VERB
that SCONJ
their PRON
doctor NOUN
will AUX
not PART
> VERB
use VERB
them PRON
unless SCONJ
there PRON
is AUX
evidence NOUN
of ADP
a DET
systemic ADJ
infection NOUN
. PUNCT
  SPACE
The DET
toxicity NOUN
of ADP
> X
the DET
anti ADJ
- ADJ
fungal ADJ
drugs NOUN
does AUX
warrant VERB
some DET
caution NOUN
. PUNCT
  SPACE
But CCONJ
if SCONJ
the DET
GI PROPN
or CCONJ
sinus NOUN
> X
inflammation NOUN
is AUX
suspected VERB
to PART
be AUX
candida(and PROPN
recent ADJ
use NOUN
of ADP
a DET
broad ADJ
spectrum NOUN
> X
antibiotic NOUN
is AUX
the DET
smoking NOUN
gun NOUN
) PUNCT
, PUNCT
then ADV
anti ADJ
- ADJ
fungal ADJ
use NOUN
should AUX
be AUX
approrpriate VERB
> X
just ADV
as SCONJ
the DET
anti ADJ
- ADJ
fungal ADJ
creams NOUN
are AUX
an DET
appropriate ADJ
treatment NOUN
for ADP
recurring VERB
> X
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
in ADP
spite NOUN
of ADP
what PRON
Mr. PROPN
Steve PROPN
Dyer PROPN
says VERB
. PUNCT
Again ADV
, PUNCT
the DET
evidence NOUN
from ADP
mycological ADJ
studies NOUN
indicate VERB
that SCONJ
many ADJ
yeast NOUN
/ SYM
fungusspecies NOUN
can AUX
grow VERB
hyphae ADJ
( PUNCT
" PUNCT
roots NOUN
" PUNCT
) PUNCT
into ADP
deep ADJ
tissue NOUN
, PUNCT
similar ADJ
to ADP
mold NOUN
growingin ADJ
bread NOUN
. PUNCT
  SPACE
You PRON
can AUX
continue VERB
to PART
kill VERB
the DET
surface NOUN
, PUNCT
such ADJ
as SCONJ
nystatin PROPN
does AUX
, PUNCT
butyou NOUN
ca AUX
n't PART
kill VERB
that SCONJ
which PRON
is AUX
deeper ADJ
in ADP
the DET
tissue NOUN
without ADP
using VERB
a DET
systemicanti ADJ
- ADJ
fungal ADJ
such ADJ
as SCONJ
itraconazole NOUN
( PUNCT
Sporanox PROPN
) PUNCT
or CCONJ
some DET
of ADP
the DET
older ADJ
ones NOUN
suchas VERB
Nizoral ADJ
which PRON
are AUX
more ADV
toxic ADJ
and CCONJ
not PART
as ADV
effective ADJ
. PUNCT
  SPACE
This DET
is AUX
why ADV
, PUNCT
as SCONJ
hasbeen PROPN
pointed VERB
out ADP
by ADP
recent ADJ
studies NOUN
( PUNCT
sent VERB
to ADP
me PRON
by ADP
a DET
doctor NOUN
I PRON
've AUX
been AUX
ine NOUN
- PUNCT
mail NOUN
contact NOUN
with ADP
- PUNCT
thanks NOUN
) PUNCT
, PUNCT
that SCONJ
nystatin PROPN
is AUX
not PART
effective ADJ
in ADP
the DET
long ADJ
- PUNCT
term NOUN
treatment NOUN
of ADP
GI PROPN
tract NOUN
" PUNCT
candidiasis NOUN
" PUNCT
. PUNCT
  SPACE
It PRON
's AUX
like SCONJ
trying VERB
to PART
weed VERB
a DET
gardenby PROPN
cutting VERB
off ADP
what PRON
's AUX
above ADP
the DET
ground NOUN
but CCONJ
leaving VERB
the DET
roots NOUN
ready ADJ
to PART
comeout VERB
again ADV
once SCONJ
you PRON
walk VERB
away ADV
. PUNCT
The DET
$ SYM
60000 NUM
question NOUN
is AUX
whether SCONJ
a DET
contained VERB
candida PROPN
" PUNCT
bloom NOUN
" PUNCT
can AUX
partiallygrow VERB
into ADP
tissue NOUN
through ADP
the DET
mucus PROPN
membranes NOUN
, PUNCT
causing VERB
some DET
types NOUN
of ADP
symptomsin ADJ
susceptible ADJ
people NOUN
( PUNCT
e.g. ADV
, PUNCT
allergy NOUN
) PUNCT
, PUNCT
without ADP
becoming VERB
" PUNCT
systemic ADJ
" PUNCT
in ADP
theclassical ADJ
sense NOUN
of ADP
the DET
word NOUN
- PUNCT
something PRON
in ADP
between ADP
strictly ADV
an DET
excessivebloom NOUN
not PART
causing VERB
any DET
problems NOUN
and CCONJ
the DET
full ADV
- PUNCT
blown VERB
systemic ADJ
infection NOUN
thatis NOUN
potentially ADV
lethal.>In X
the DET
GI PROPN
system NOUN
, PUNCT
the DET
ano NOUN
- PUNCT
rectal ADJ
region NOUN
seems VERB
to PART
be AUX
a DET
particularly ADV
good ADJ
> X
reservoir PROPN
for ADP
candida PROPN
and CCONJ
the DET
use NOUN
of ADP
pantyhose NOUN
by ADP
many ADJ
women NOUN
creates VERB
a DET
very ADV
> X
favorable ADJ
environment NOUN
around ADP
the DET
rectum NOUN
for ADP
transfer(through DET
moisture NOUN
and CCONJ
> X
humidity NOUN
) PUNCT
of ADP
candida PROPN
to ADP
the DET
vaginal ADJ
tract NOUN
. PUNCT
  SPACE
One NUM
of ADP
the DET
most ADV
effctive ADJ
ways NOUN
to PART
> X
minimmize VERB
this DET
transfer NOUN
is AUX
to PART
wear VERB
undyed ADJ
cotton NOUN
underwear NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
if SCONJ
one PRON
is AUX
an DET
' PUNCT
anal ADJ
retentive NOUN
' PUNCT
, PUNCT
like SCONJ
I PRON
've AUX
been AUX
diagnosed VERB
in ADP
a DET
priorpost NOUN
, PUNCT
that PRON
can AUX
also ADV
provide VERB
more ADJ
sites NOUN
for ADP
excessive ADJ
candida PROPN
growth NOUN
. PUNCT
  SPACE
; PUNCT
^)>If PROPN
the DET
bloom NOUN
occurs VERB
in ADP
the DET
anal ADJ
area NOUN
, PUNCT
the DET
burning NOUN
, PUNCT
swelling VERB
, PUNCT
pain NOUN
and CCONJ
even ADV
> X
blood NOUN
discharge NOUN
make VERB
many ADJ
patients NOUN
think VERB
that SCONJ
they PRON
have AUX
hemorroids NOUN
. PUNCT
  SPACE
If SCONJ
the DET
> X
bloom NOUN
manages VERB
to PART
move VERB
further ADV
up ADP
the DET
GI PROPN
tract NOUN
, PUNCT
very ADV
diffuse NOUN
symptomatology NOUN
> X
occurs(abdominal ADJ
discomfort NOUN
and CCONJ
blood NOUN
in ADP
the DET
stool NOUN
) PUNCT
. PUNCT
  SPACE
This DET
positive ADJ
stool NOUN
> X
for ADP
occult ADJ
blood NOUN
is AUX
what PRON
sent VERB
Elaine PROPN
to ADP
her PRON
family NOUN
doctor NOUN
in ADP
the DET
first ADJ
> X
place NOUN
. PUNCT
  SPACE
After ADP
extensive ADJ
testing NOUN
, PUNCT
he PRON
told VERB
her PRON
that SCONJ
there PRON
was AUX
nothing PRON
wrong ADJ
> PUNCT
but CCONJ
her PRON
gut NOUN
still ADV
hurt VERB
. PUNCT
  SPACE
On ADP
to ADP
another DET
doctor NOUN
, PUNCT
and CCONJ
so ADV
on ADV
. PUNCT
  SPACE
Richard PROPN
Kaplan PROPN
> X
has AUX
told VERB
me PRON
throiugh NOUN
e NOUN
- NOUN
mail NOUN
that PRON
he PRON
considers VERB
occult ADJ
blood NOUN
tests NOUN
in ADP
stool NOUN
> X
specimens NOUN
to PART
be AUX
a DET
waste NOUN
of ADP
time NOUN
and CCONJ
money NOUN
because SCONJ
of ADP
the DET
very ADV
large ADJ
number NOUN
of ADP
> X
false ADJ
positives(candida PROPN
blooms NOUN
guys NOUN
? PUNCT
) PUNCT
. PUNCT
  SPACE
If SCONJ
my PRON
gut NOUN
hurt VERB
me PRON
on ADP
a DET
constant ADJ
> X
basis NOUN
, PUNCT
I PRON
would AUX
want VERB
it PRON
fixed VERB
. PUNCT
  SPACE
Yes INTJ
it PRON
's AUX
nice ADJ
to PART
know VERB
that SCONJ
I PRON
do AUX
n't PART
have AUX
> X
colon NOUN
cancer NOUN
but CCONJ
what PRON
then ADV
is AUX
causing VERB
my PRON
distress NOUN
? PUNCT
  SPACE
When ADV
I PRON
finally ADV
find VERB
a DET
> X
doctor NOUN
who PRON
treats VERB
me PRON
and CCONJ
gets VERB
me PRON
90 NUM
% NOUN
better ADJ
, PUNCT
Steve PROPN
Dyer PROPN
calls VERB
him PRON
a DET
quack NOUN
. PUNCT
As SCONJ
I PRON
've AUX
said VERB
in ADP
private ADJ
e NOUN
- NOUN
mail NOUN
, PUNCT
there PRON
are AUX
flaws NOUN
in ADP
our PRON
current ADJ
medical ADJ
systemthat NOUN
make VERB
it PRON
difficult ADJ
or CCONJ
even ADV
impossible ADJ
for ADP
a DET
physician NOUN
to ADP
attemptalternative ADJ
therapies NOUN
AFTER ADP
the DET
approved VERB
/ PUNCT
proven VERB
/ SYM
accepted VERB
therapies NOUN
do AUX
n't PART
work VERB
. PUNCT
For ADP
example NOUN
, PUNCT
I PRON
went VERB
to ADP
three NUM
ENT PROPN
's PART
, PUNCT
who PRON
all DET
said VERB
that SCONJ
I PRON
will AUX
just ADV
have AUX
to PART
livewith VERB
my PRON
acute ADJ
/ SYM
chronic ADJ
sinusitis NOUN
after ADP
the DET
ab NOUN
's PART
failed ADJ
( PUNCT
they PRON
did AUX
mentionsurgery NOUN
to PART
open VERB
up ADP
the DET
ostia NOUN
, PUNCT
but CCONJ
my PRON
ostia NOUN
were AUX
n't PART
plugged VERB
and CCONJ
it PRON
would AUX
notget VERB
to ADP
the DET
root NOUN
cause NOUN
of ADP
my PRON
condition NOUN
) PUNCT
. PUNCT
  SPACE
After ADP
three NUM
months NOUN
of ADP
aggressive ADJ
andfairly ADJ
non ADJ
- ADJ
standard ADJ
therapy NOUN
( PUNCT
Sporanox PROPN
, PUNCT
body NOUN
nutrient ADJ
level NOUN
monitoring VERB
andequalization NOUN
, PUNCT
vitamin NOUN
C NOUN
, PUNCT
lentinen NOUN
, PUNCT
echinacea NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
my PRON
health NOUN
has AUX
vastlyimproved VERB
to ADP
where ADV
I PRON
was AUX
two NUM
years NOUN
ago ADV
, PUNCT
before ADP
my PRON
health NOUN
greatly ADV
deteriorated VERB
. PUNCT
Of ADV
course ADV
, PUNCT
skeptics NOUN
would AUX
say VERB
that SCONJ
maybe ADV
if SCONJ
I PRON
did AUX
nothing PRON
I PRON
would AUX
haveimproved VERB
anyway ADV
, PUNCT
but CCONJ
that DET
view NOUN
is AUX
stretching VERB
things NOUN
quite ADV
far ADV
because SCONJ
of ADP
theexperience NOUN
of ADP
the DET
three NUM
ENT PROPN
's PART
I PRON
saw VERB
who PRON
said VERB
that SCONJ
I PRON
'd AUX
just ADV
have AUX
to PART
" PUNCT
live VERB
withit NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
confident ADJ
I PRON
will AUX
reach VERB
what PRON
one PRON
could AUX
call VERB
a DET
total ADJ
" PUNCT
cure NOUN
" PUNCT
. PUNCT
  SPACE
Theanti PROPN
- PUNCT
fungal ADJ
program NOUN
I PRON
undertook VERB
was AUX
one NUM
necessary ADJ
step NOUN
in ADP
that DET
directionbecause NOUN
of ADP
my PRON
overuse NOUN
of ADP
ab PROPN
's PART
for ADP
the DET
last ADJ
four NUM
years NOUN
. PUNCT
  SPACE
( PUNCT
Note VERB
: PUNCT
  SPACE
for ADP
thosehaving VERB
sinus NOUN
problems NOUN
, PUNCT
may AUX
I PRON
suggest VERB
the DET
book NOUN
by ADP
Dr. PROPN
Ivker PROPN
I PRON
mention VERB
above ADV
. PUNCT
Be AUX
sure ADJ
to PART
get AUX
the DET
revised VERB
edition.)> PUNCT
... PUNCT
I PRON
have AUX
often ADV
wondered VERB
what PRON
an DET
M.D. PROPN
with ADP
chronic NOUN
> X
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
would AUX
do AUX
about ADP
the DET
problem NOUN
that PRON
he PRON
tells VERB
his PRON
> X
patients NOUN
is AUX
a DET
non ADJ
- ADJ
existent ADJ
syndrome NOUN
. PUNCT
Dr PROPN
. PUNCT
Ivker PROPN
started VERB
off ADP
having VERB
chronic ADJ
and CCONJ
severe ADJ
sinus NOUN
problems NOUN
, PUNCT
and CCONJ
hisvisits NOUN
to ADP
several ADJ
ENT PROPN
's PART
totally ADV
floored VERB
him PRON
when ADV
they PRON
said VERB
" PUNCT
you PRON
'll AUX
just ADV
haveto VERB
live VERB
with ADP
it PRON
" PUNCT
. PUNCT
  SPACE
He PRON
spent VERB
several ADJ
years NOUN
trying VERB
everything PRON
- PUNCT
standard ADJ
andnon NOUN
- PUNCT
standard ADJ
, PUNCT
until ADP
he PRON
was AUX
essentially ADV
cured VERB
of ADP
chronic ADJ
sinusitis NOUN
. PUNCT
  SPACE
He PRON
nowshares VERB
his PRON
approach NOUN
in ADP
his PRON
book NOUN
and CCONJ
I PRON
can AUX
honestly ADV
say VERB
that SCONJ
I PRON
am AUX
on ADP
the DET
roadto PROPN
recovery NOUN
following VERB
some DET
parts NOUN
of ADP
it PRON
. PUNCT
  SPACE
His PRON
one NUM
recommendation NOUN
to PART
take VERB
asystemic ADJ
anti ADJ
- ADJ
fungal ADJ
at ADP
the DET
beginning NOUN
of ADP
treatment NOUN
IF ADP
you PRON
have AUX
a DET
history NOUN
ofanti ADJ
- PUNCT
biotic ADJ
overuse NOUN
has AUX
been AUX
proven VERB
to ADP
him PRON
time NOUN
and CCONJ
time NOUN
again ADV
in ADP
his PRON
ownpractice NOUN
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
if SCONJ
I PRON
commented VERB
to ADP
him PRON
of ADP
the DET
hard ADJ
- PUNCT
core NOUN
beliefs NOUN
of ADP
the DET
anti-"yeast NOUN
hypothesis NOUN
" PUNCT
posters NOUN
that SCONJ
he PRON
would AUX
have AUX
definite ADJ
things NOUN
to PART
say VERB
, PUNCT
such ADJ
as,"it PRON
's PART
worked VERB
wonders NOUN
for ADP
me PRON
in ADP
almost ADV
two NUM
thousand NUM
cases NOUN
" PUNCT
, PUNCT
to PART
put VERB
it PRON
mildly ADV
. PUNCT
I PRON
also ADV
would AUX
not PART
be AUX
surprised ADJ
if SCONJ
he PRON
would AUX
say VERB
that SCONJ
they PRON
are AUX
the DET
ones NOUN
violatingtheir NOUN
moral ADJ
obligations NOUN
to PART
help VERB
the DET
patient NOUN
. PUNCT
Maybe ADV
those DET
doctors NOUN
who PRON
are AUX
reading VERB
this DET
who PRON
have AUX
a DET
practice NOUN
and CCONJ
areconfronted VERB
by ADP
a DET
patient NOUN
having VERB
symptoms NOUN
that PRON
could AUX
be AUX
due ADJ
to ADP
the DET
" PUNCT
hypotheticalyeast NOUN
overgrowth NOUN
" PUNCT
( PUNCT
e.g. ADV
, PUNCT
they PRON
fit VERB
some DET
of ADP
the DET
profiles NOUN
the DET
pro ADJ
- ADJ
yeast ADJ
peoplehave NOUN
identified VERB
) PUNCT
, PUNCT
should AUX
consider VERB
anti ADJ
- ADJ
fungal ADJ
therapy NOUN
IF ADP
all DET
other ADJ
avenueshave VERB
been AUX
exhausted VERB
. PUNCT
  SPACE
Remember VERB
, PUNCT
theory NOUN
and CCONJ
practice NOUN
are AUX
two NUM
different ADJ
things NOUN
-you PRON
can AUX
not PART
have AUX
one NUM
without ADP
the DET
other ADJ
, PUNCT
they PRON
are AUX
synergistic ADJ
. PUNCT
  SPACE
If SCONJ
a DET
doctor NOUN
doessomething VERB
non ADJ
- ADJ
standard ADJ
yet ADV
produces VERB
noticeable ADJ
symptomatic ADJ
relief NOUN
in ADP
over ADP
athousand DET
of ADP
his PRON
patients NOUN
, PUNCT
should AUX
n't PART
you PRON
at ADP
least ADJ
sit VERB
up ADP
and CCONJ
take VERB
notice?Maybe NOUN
you PRON
ought AUX
to PART
trust VERB
what PRON
he PRON
says VERB
and CCONJ
begin VERB
hypothesizing VERB
why ADV
it PRON
worksinstead VERB
of ADP
why ADV
it PRON
should AUX
n't PART
work VERB
. PUNCT
  SPACE
I PRON
'm AUX
afraid ADJ
a DET
lot NOUN
of ADP
doctors NOUN
have AUX
becomeso NOUN
enamored VERB
with ADP
" PUNCT
scientific ADJ
correctness NOUN
" PUNCT
that SCONJ
they PRON
are AUX
ignoring VERB
the DET
patientsthey NOUN
have AUX
sworn VERB
to PART
help VERB
. PUNCT
  SPACE
You PRON
have AUX
to PART
do AUX
both DET
; PUNCT
  SPACE
both DET
have AUX
to PART
be AUX
balanced VERB
, PUNCT
whichwe PROPN
do AUX
n't PART
see VERB
from ADP
some DET
of ADP
the DET
posters NOUN
to ADP
this DET
group NOUN
. PUNCT
  SPACE
There PRON
comes VERB
a DET
point NOUN
whenyou NOUN
just ADV
have AUX
to PART
use VERB
a DET
little ADJ
common ADJ
sense NOUN
, PUNCT
and CCONJ
maybe ADV
an DET
empirical ADJ
approach(such PROPN
as SCONJ
trying VERB
a DET
good ADJ
systemic ADJ
anti ADJ
- ADJ
fungal ADJ
such ADJ
as SCONJ
Sporanox PROPN
) PUNCT
after ADP
havingexhausted VERB
all DET
the DET
other ADJ
avenues NOUN
. PUNCT
  SPACE
I PRON
was AUX
one NUM
of ADP
those DET
who PRON
the DET
traditionalmedical ADJ
establishment NOUN
was AUX
not PART
able ADJ
to PART
help VERB
, PUNCT
so ADV
I PRON
did AUX
the DET
natural ADJ
thing NOUN
: PUNCT
  SPACE
Iwent PROPN
to ADP
a DET
couple NOUN
of ADP
doctor NOUN
's PART
who PRON
are AUX
( PUNCT
somewhat ADV
) PUNCT
outside ADP
this DET
establishment NOUN
, PUNCT
and CCONJ
as SCONJ
a DET
result NOUN
I PRON
have AUX
found VERB
significant ADJ
relief NOUN
. PUNCT
Would AUX
it PRON
not PART
be AUX
better ADJ
if SCONJ
the DET
traditional ADJ
medical ADJ
establishment NOUN
can AUX
set VERB
upsome ADJ
kind NOUN
of ADP
mechanism NOUN
where ADV
any DET
doctor NOUN
, PUNCT
without ADP
fear NOUN
of ADP
being AUX
sued VERB
or CCONJ
havinghis ADJ
license NOUN
pulled VERB
, PUNCT
can AUX
try VERB
experimental ADJ
and CCONJ
unproven ADJ
( PUNCT
beyond ADP
a DET
doubt)therapies NOUN
for ADP
his PRON
/ SYM
her PRON
patients NOUN
that PRON
finally ADV
reach VERB
the DET
point NOUN
where ADV
all DET
theaccepted VERB
therapies NOUN
are AUX
ineffective ADJ
? PUNCT
  SPACE
I PRON
'd AUX
like VERB
to PART
hear VERB
a DET
doctor NOUN
tell VERB
me:"well PROPN
, PUNCT
I PRON
've AUX
tried VERB
all DET
the DET
therapies NOUN
that PRON
are AUX
approved VERB
and CCONJ
accepted VERB
in ADP
thiscountry NOUN
, PUNCT
and CCONJ
since SCONJ
they PRON
clearly ADV
do AUX
n't PART
work VERB
for ADP
you PRON
, PUNCT
I PRON
now ADV
have AUX
the DET
authorityto NOUN
use NOUN
experimental ADJ
, PUNCT
unproven ADJ
techniques NOUN
that PRON
seem VERB
to PART
have AUX
helped VERB
others NOUN
. PUNCT
  SPACE
Ican't PROPN
promise VERB
anything PRON
, PUNCT
and CCONJ
there PRON
are AUX
some DET
risks NOUN
. PUNCT
  SPACE
You PRON
will AUX
have AUX
to PART
signsomething VERB
saying VERB
you PRON
understand VERB
the DET
experimental ADJ
and CCONJ
possibly ADV
risky ADJ
nature NOUN
ofthese ADJ
unproven ADJ
therapies NOUN
, PUNCT
and CCONJ
I PRON
'll AUX
have AUX
to PART
register VERB
your PRON
case NOUN
at ADP
the DET
StateBoard PROPN
. PUNCT
" PUNCT
  SPACE
Anyway INTJ
, PUNCT
if SCONJ
my PRON
ENT PROPN
had AUX
suggested VERB
this DET
to ADP
me PRON
, PUNCT
I PRON
would AUX
've AUX
jumped VERB
on ADP
thispronto PROPN
instead ADV
of ADP
going VERB
to ADP
one NUM
of ADP
those DET
doctors NOUN
who PRON
, PUNCT
for ADP
either DET
altruisticreasons NOUN
, PUNCT
or CCONJ
for ADP
greed NOUN
, PUNCT
is AUX
practicing VERB
these DET
alternative ADJ
therapies NOUN
with ADP
muchrisk PROPN
to ADP
him PRON
/ SYM
her PRON
( PUNCT
risk NOUN
meaning NOUN
losing VERB
their PRON
license NOUN
) PUNCT
and CCONJ
possibly ADV
to ADP
thepatient VERB
. PUNCT
  SPACE
Such DET
a DET
mechanism NOUN
would AUX
keep VERB
control NOUN
in ADP
the DET
more ADV
mainstream ADJ
medicine NOUN
, PUNCT
and CCONJ
also ADV
provide VERB
valuable ADJ
data NOUN
that PRON
would AUX
essentially ADV
be AUX
free ADJ
. PUNCT
  SPACE
It PRON
also ADV
wouldbe VERB
morally ADV
and CCONJ
ethically ADV
better ADJ
than SCONJ
the DET
current ADJ
system NOUN
by ADP
showing VERB
thecompassion NOUN
of ADP
the DET
medical ADJ
community NOUN
to ADP
the DET
patient NOUN
- PUNCT
that SCONJ
it PRON
's AUX
doing VERB
everythingit NOUN
can AUX
within ADP
reason NOUN
to PART
help VERB
the DET
patient NOUN
. PUNCT
  SPACE
It PRON
is AUX
the DET
lack NOUN
of ADP
such DET
a DET
mechanismthat NOUN
is AUX
leading VERB
large ADJ
numbers NOUN
of ADP
people NOUN
to PART
try VERB
alternative ADJ
therapies NOUN
, PUNCT
some DET
ofwhich NOUN
seem VERB
to PART
work VERB
( PUNCT
like SCONJ
my PRON
case NOUN
) PUNCT
, PUNCT
and CCONJ
others NOUN
of ADP
which PRON
will AUX
never ADV
work VERB
at ADP
all(true ADJ
quackery).I X
better ADJ
get AUX
off ADP
my PRON
soapbox NOUN
before ADP
this DET
post NOUN
reaches VERB
500 NUM
K NOUN
in ADP
size.>If NUM
taken VERB
orally ADV
, PUNCT
it PRON
can AUX
also ADV
become VERB
a DET
major ADJ
bacteria NOUN
in ADP
the DET
gut NOUN
. PUNCT
  SPACE
Through ADP
> X
aresol ADJ
sprays NOUN
, PUNCT
it PRON
has AUX
also ADV
been AUX
used VERB
to PART
innoculate VERB
the DET
sinus NOUN
membranes.>But PROPN
before ADP
this DET
innoculation NOUN
occurs VERB
, PUNCT
the DET
mucus PROPN
membrane PROPN
barrier PROPN
system PROPN
> X
needs VERB
to PART
be AUX
strengthened VERB
. PUNCT
  SPACE
This DET
is AUX
accomplished VERB
by ADP
vitamin NOUN
A NOUN
, PUNCT
vitamin NOUN
C NOUN
and CCONJ
> X
some DET
of ADP
the DET
B NOUN
- PUNCT
complex ADJ
vitamins NOUN
. PUNCT
  SPACE
Diet PROPN
surveys NOUN
repeatedly ADV
show VERB
that SCONJ
Americans PROPN
> X
are AUX
not PART
getting VERB
enough ADJ
B6 PROPN
and CCONJ
folate NOUN
. PUNCT
  SPACE
These DET
are AUX
probably ADV
the DET
segement NOUN
of ADP
> X
the DET
population NOUN
that PRON
will AUX
have AUX
the DET
greatest ADJ
problem NOUN
with ADP
this DET
non ADJ
- ADJ
existent ADJ
> X
disorder(candida NOUN
blooms NOUN
after ADP
antibiotic ADJ
therapy).What DET
dosage NOUN
of ADP
B6 PROPN
appears VERB
to PART
be AUX
necessary ADJ
to PART
promote VERB
the DET
healing NOUN
and CCONJ
properworking NOUN
of ADP
the DET
mucos PROPN
memebranes?>Some PROPN
of ADP
the DET
above ADJ
material NOUN
was AUX
obtained VERB
from ADP
" PUNCT
Natural PROPN
Healing NOUN
" PUNCT
by ADP
Mark PROPN
> X
Bricklin PROPN
, PUNCT
Published VERB
by ADP
Rodale PROPN
press NOUN
, PUNCT
as ADV
well ADV
as SCONJ
notes NOUN
from ADP
my PRON
human ADJ
> X
nutrition NOUN
course NOUN
. PUNCT
  SPACE
I PRON
will AUX
be AUX
posting VERB
a DET
discussion NOUN
of ADP
vitamin NOUN
A NOUN
  SPACE
sometime ADV
in ADP
> X
the DET
future NOUN
, PUNCT
along ADP
with ADP
reference NOUN
citings NOUN
to PART
point VERB
out ADP
the DET
extremely ADV
> X
important ADJ
role NOUN
that DET
vitamin NOUN
A DET
plays VERB
in ADP
the DET
mucus PROPN
membrane PROPN
defense NOUN
system NOUN
in ADP
> X
the DET
body NOUN
and CCONJ
why ADV
vitamin NOUN
A NOUN
should AUX
be AUX
effective ADJ
in ADP
dealing VERB
with ADP
candida PROPN
> X
blooms NOUN
. PUNCT
  SPACE
Another DET
effective ADJ
dietary ADJ
treatment NOUN
is AUX
to PART
restrict VERB
carbohydrate NOUN
> X
intake VERB
during ADP
the DET
treatment NOUN
phase NOUN
, PUNCT
this DET
is AUX
especially ADV
important ADJ
if SCONJ
the DET
GI PROPN
> NOUN
system NOUN
is AUX
involved VERB
. PUNCT
  SPACE
If SCONJ
candida PROPN
can AUX
not PART
get AUX
glucose NOUN
, PUNCT
it PRON
's AUX
not PART
going VERB
to PART
out ADP
> X
grow VERB
the DET
bacteria NOUN
and CCONJ
you PRON
then ADV
give VERB
bacteria NOUN
, PUNCT
which PRON
can AUX
use VERB
amino ADJ
acids NOUN
and CCONJ
> X
fatty ADJ
acids NOUN
for ADP
energy NOUN
, PUNCT
a DET
chance NOUN
to PART
take VERB
over ADP
and CCONJ
keep VERB
the DET
candida PROPN
in ADP
check PROPN
> X
once SCONJ
carbohydrate NOUN
is AUX
returned VERB
to ADP
the DET
gut NOUN
. PUNCT
I'd NOUN
like VERB
to PART
see VERB
the DET
role NOUN
of ADP
complex ADJ
carbohydrates NOUN
, PUNCT
such ADJ
as SCONJ
starch.>If PROPN
Steve PROPN
and CCONJ
some DET
of ADP
the DET
other ADJ
nay NOUN
- PUNCT
sayers NOUN
want VERB
to PART
jump VERB
all ADV
over ADP
this DET
post NOUN
, PUNCT
> X
fine NOUN
. PUNCT
  SPACE
I PRON
jumped VERB
all ADV
over ADP
Steve PROPN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
because SCONJ
he PRON
verbably ADV
> X
accosted VERB
a DET
poster NOUN
who PRON
was AUX
seeking VERB
advice NOUN
about ADP
her PRON
doctor NOUN
's PART
use NOUN
of ADP
vitamin NOUN
> X
A NOUN
and CCONJ
anti NOUN
- NOUN
fungals NOUN
for ADP
a DET
candida PROPN
bloom NOUN
in ADP
her PRON
gut NOUN
. PUNCT
  SPACE
People NOUN
seeking VERB
advice NOUN
> X
from ADP
newsnet PROPN
should AUX
not PART
be AUX
treated VERB
this DET
way NOUN
. PUNCT
  SPACE
Those DET
of ADP
us PRON
giving NOUN
of ADP
our PRON
> X
time NOUN
and CCONJ
knowledge NOUN
can AUX
slug VERB
it PRON
out ADP
to ADP
our PRON
heart NOUN
's PART
content NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
saved VERB
> X
your PRON
venom NOUN
for ADP
me PRON
Steve PROPN
and CCONJ
left VERB
the DET
helpless ADJ
posters NOUN
who PRON
are AUX
timidly ADV
> X
seeking VERB
help NOUN
alone ADV
, PUNCT
I PRON
would AUX
n't PART
have AUX
a DET
problem NOUN
with ADP
your PRON
behavior NOUN
. PUNCT
Brave ADJ
soul NOUN
you PRON
are AUX
. PUNCT
  SPACE
The DET
venom NOUN
on ADP
Usenet PROPN
can AUX
be AUX
quite ADV
toxic ADJ
unless SCONJ
onedevelops NOUN
an DET
immunity NOUN
to ADP
it PRON
. PUNCT
  SPACE
One NUM
year NOUN
ago ADV
, PUNCT
my PRON
phlegmatic ADJ
self NOUN
would AUX
havebacked VERB
down ADP
right ADV
away ADV
from ADP
an DET
attack NOUN
of ADP
cholericitis NOUN
. PUNCT
  SPACE
But CCONJ
my PRON
immunesystem NOUN
, PUNCT
and CCONJ
my PRON
computer NOUN
system NOUN
, PUNCT
have AUX
been AUX
hardened VERB
from ADP
gradualdesensitization NOUN
. PUNCT
  SPACE
I PRON
now ADV
kind ADV
of ADV
like VERB
being AUX
called VERB
" PUNCT
anal ADJ
retentive ADJ
" PUNCT
- PUNCT
it PRON
hasa VERB
nice ADJ
ring NOUN
to ADP
it PRON
. PUNCT
  SPACE
I PRON
also ADV
was AUX
very ADV
impressed ADJ
by ADP
how ADV
it PRON
just ADV
flowed VERB
into ADP
thepost NOUN
- PUNCT
truly ADV
classic ADJ
, PUNCT
worthy ADJ
of ADP
a DET
blue NOUN
( PUNCT
or CCONJ
maybe ADV
brown ADJ
) PUNCT
ribbon NOUN
. PUNCT
  SPACE
I PRON
mighteven ADJ
cross VERB
- ADJ
post VERB
it PRON
to ADP
alt.best.of.internet PROPN
. PUNCT
  SPACE
Hmmm PROPN
... PUNCT
>Martin NOUN
Banschbach PROPN
, PUNCT
Ph PROPN
. PUNCT
D.>Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
Chairman PROPN
> X
Department PROPN
of ADP
Biochemistry PROPN
and CCONJ
Microbiology PROPN
> X
OSU PROPN
College PROPN
of ADP
Osteopathic PROPN
MedicineThanks PROPN
again ADV
for ADP
a DET
great ADJ
and CCONJ
informative ADJ
post NOUN
. PUNCT
  SPACE
I PRON
hope VERB
others NOUN
who PRON
haveresearched VERB
this DET
area NOUN
and CCONJ
are AUX
lurking VERB
in ADP
the DET
background NOUN
will AUX
post VERB
theirthoughts NOUN
as ADV
well ADV
, PUNCT
no ADV
matter ADV
their PRON
views NOUN
on ADP
this DET
subject NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59184From NUM
: PUNCT
dpc47852@uxa.cso.uiuc.edu PROPN
( PUNCT
Daniel PROPN
Paul PROPN
Checkman)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?bruce@Data NOUN
- PUNCT
IO.COM PROPN
( PUNCT
Bruce PROPN
Reynolds PROPN
) PUNCT
writes:>Anecedotal ADJ
evidence NOUN
is AUX
worthless ADJ
. PUNCT
  SPACE
Even ADV
doctors NOUN
who PRON
have AUX
been AUX
using VERB
a DET
drug NOUN
> X
or CCONJ
treatment NOUN
for ADP
years NOUN
, PUNCT
and CCONJ
who PRON
swear VERB
it PRON
is AUX
effective ADJ
, PUNCT
are AUX
often ADV
suprised VERB
> X
at ADP
the DET
results NOUN
of ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
MSG NOUN
causes NOUN
describable,>reportable ADJ
, PUNCT
documentable ADJ
symptoms NOUN
should AUX
be AUX
pretty ADV
simple ADJ
to PART
discover VERB
. PUNCT
  SPACE
I PRON
tend VERB
to PART
disagree- VERB
I PRON
think VERB
anecdotal ADJ
evidence NOUN
, PUNCT
provided VERB
there PRON
is AUX
a DET
lot NOUN
of ADP
it PRON
, PUNCT
and CCONJ
it PRON
is AUX
fairly ADV
consistent ADJ
, PUNCT
will AUX
is AUX
very ADV
important ADJ
. PUNCT
  SPACE
First ADV
, PUNCT
it PRON
points VERB
to ADP
thenecessity NOUN
of ADP
doing VERB
a DET
study NOUN
, PUNCT
and CCONJ
second ADV
, PUNCT
it PRON
at ADP
least ADJ
says VERB
that SCONJ
the DET
effects NOUN
areall VERB
psychological ADJ
( PUNCT
or CCONJ
possibly ADV
allergy VERB
in ADP
this DET
case NOUN
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
've AUX
pointed VERB
out ADP
before ADP
, PUNCT
pyschological ADJ
effects NOUN
are AUX
no ADV
less ADV
real ADJ
than SCONJ
other ADJ
effects NOUN
. PUNCT
  SPACE
One NUM
       SPACE
person NOUN
's PART
" PUNCT
make NOUN
- PUNCT
believe VERB
" PUNCT
can AUX
easily ADV
be AUX
another DET
person NOUN
's PART
reality NOUN
. PUNCT
  SPACE
Using VERB
psychadelic ADJ
drugs NOUN
in ADP
a DET
bizarre ADJ
and CCONJ
twisted ADJ
example NOUN
, PUNCT
the DET
hallucinations NOUN
oneperson NOUN
experiences NOUN
on ADP
an DET
acid NOUN
trip NOUN
can AUX
not PART
be AUX
guaranteed VERB
to ADP
another DET
person NOUN
onan PROPN
acid NOUN
trip- NOUN
there PRON
is AUX
no DET
clinical ADJ
evidence NOUN
that SCONJ
those DET
effects NOUN
are AUX
always ADV
goingto PROPN
happen VERB
. PUNCT
  SPACE
Anyhow ADV
, PUNCT
that DET
was AUX
a DET
pretty ADV
lame ADJ
example NOUN
, PUNCT
but CCONJ
hopefully ADV
I PRON
made VERB
mypoint- ADJ
it PRON
's AUX
all DET
a DET
matter NOUN
of ADP
perception NOUN
, PUNCT
and CCONJ
as ADV
long ADV
as SCONJ
someone PRON
ingesting VERB
MSGperceives PROPN
it PRON
as SCONJ
causing VERB
bad ADJ
effects NOUN
, PUNCT
then ADV
s VERB
/ PUNCT
he PRON
can AUX
definitely ADV
experience VERB
thoseaffects NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
it PRON
could AUX
just ADV
be AUX
an DET
allergy NOUN
to ADP
the DET
food NOUN
it PRON
's AUX
in ADV
, PUNCT
   SPACE
or CCONJ
something PRON
. PUNCT
  SPACE
Still ADV
, PUNCT
anecdotal ADJ
evidence NOUN
is AUX
not PART
worthless- VERB
it PRON
's AUX
the DET
stuff NOUN
thatleads VERB
to ADP
the DET
study NOUN
being AUX
done.-DanNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59185From NUM
: PUNCT
eulenbrg@carson.u.washington.edu ADJ
( PUNCT
Julia PROPN
Eulenberg)Subject NUM
: PUNCT
Re ADP
: PUNCT
ArythmiaAlexis PROPN
Perry PROPN
asked VERB
if SCONJ
low ADJ
blood NOUN
potassium NOUN
could AUX
be AUX
dangerous ADJ
. PUNCT
  SPACE
Yes INTJ
. PUNCT
ZZNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59186From NUM
: PUNCT
hahn@csd4.csd.uwm.edu PROPN
( PUNCT
David PROPN
James PROPN
Hahn)Subject PROPN
: PUNCT
Re ADP
: PUNCT
RE NOUN
: PUNCT
HELP PROPN
ME PROPN
INJECT PROPN
... PUNCT
From ADP
article NOUN
< X
1993Apr22.233001.13436@vax.oxford.ac.uk PROPN
> X
, PUNCT
by ADP
krishnas@vax.oxford.ac.uk NUM
: PUNCT
> X
The DET
best ADJ
way NOUN
of ADP
self NOUN
injection NOUN
is AUX
to PART
use VERB
the DET
right ADJ
size NOUN
needle NOUN
> X
and CCONJ
choose VERB
the DET
correct ADJ
spot NOUN
. PUNCT
For ADP
Streptomycin PROPN
, PUNCT
usually ADV
given VERB
intra PROPN
> X
muscularly ADV
, PUNCT
use VERB
a DET
thin ADJ
needle NOUN
( PUNCT
23/24 NUM
guage NOUN
) PUNCT
and CCONJ
select VERB
a DET
spot NOUN
on ADP
> X
the DET
upper ADJ
, PUNCT
outer ADJ
thigh NOUN
( PUNCT
no DET
major ADJ
nerves NOUN
or CCONJ
blood NOUN
vessels NOUN
there ADV
) PUNCT
. PUNCT
> X
Clean VERB
the DET
area NOUN
with ADP
antiseptic ADJ
before ADP
injection NOUN
, PUNCT
and CCONJ
after ADV
. PUNCT
Make VERB
> X
sure ADJ
to PART
inject VERB
deeply ADV
( PUNCT
a DET
different ADJ
kind NOUN
of ADP
pain NOUN
is AUX
felt VERB
when ADV
the DET
> X
needle NOUN
enters VERB
the DET
muscle NOUN
- PUNCT
contrasted VERB
to ADP
the DET
' PUNCT
prick NOUN
' PUNCT
when ADV
it PRON
> X
pierces VERB
the DET
skin NOUN
) PUNCT
. PUNCT
> X
> X
PS PROPN
: PUNCT
Try VERB
to PART
go VERB
to ADP
a DET
doctor NOUN
. PUNCT
Self NOUN
- PUNCT
treatment NOUN
and CCONJ
self NOUN
- PUNCT
injection NOUN
should AUX
> X
be AUX
avoided VERB
as ADV
far ADV
as SCONJ
possible ADJ
. PUNCT
> X
  SPACE
The DET
areas NOUN
that PRON
are AUX
least ADV
likely ADJ
to PART
hurt VERB
are AUX
where ADV
you PRON
have AUX
a DET
little ADJ
fat ADJ
. PUNCT
  SPACE
I PRON
inject VERB
on ADP
my PRON
legs NOUN
and CCONJ
gut NOUN
, PUNCT
and CCONJ
prefer VERB
the DET
gut NOUN
. PUNCT
  SPACE
I PRON
can AUX
stickit VERB
in ADP
at ADP
a DET
90 NUM
degree NOUN
angle NOUN
, PUNCT
and CCONJ
barely ADV
feel VERB
it PRON
. PUNCT
  SPACE
I PRON
'm AUX
not PART
fat ADJ
, PUNCT
justhave VERB
a DET
little ADJ
gut NOUN
. PUNCT
  SPACE
My PRON
legs NOUN
however ADV
, PUNCT
are AUX
muscular ADJ
, PUNCT
and CCONJ
I PRON
have AUX
to PART
pinchto VERB
get AUX
anything PRON
, PUNCT
and CCONJ
then ADV
I PRON
inject VERB
at ADP
about ADV
a DET
45 NUM
degree NOUN
angle NOUN
, PUNCT
and CCONJ
itstill NOUN
hurts VERB
. PUNCT
  SPACE
The DET
rate NOUN
of ADP
absorbtion NOUN
differs NOUN
for ADP
subcutaneous ADJ
and CCONJ
  SPACE
muscular ADJ
injections NOUN
however ADV
-- PUNCT
so ADV
if SCONJ
it PRON
's AUX
a DET
daily ADJ
thing NOUN
it PRON
would AUX
bebest VERB
not PART
to PART
switch VERB
places NOUN
every DET
day NOUN
to PART
keep VERB
consistencey ADJ
. PUNCT
  SPACE
Althoughsome PROPN
suggest VERB
switch NOUN
legs NOUN
or CCONJ
sides NOUN
of ADP
the DET
stomach NOUN
for ADP
each DET
shot NOUN
, PUNCT
to PART
prevent VERB
irritation NOUN
. PUNCT
  SPACE
When ADV
you PRON
clean VERB
the DET
spot NOUN
off ADP
with ADP
an DET
alcohol NOUN
prep NOUN
, PUNCT
wait VERB
for ADP
it PRON
to PART
dry VERB
somewhat ADV
, PUNCT
or CCONJ
you PRON
may AUX
get AUX
the DET
alcohol NOUN
in ADP
thepuncture NOUN
, PUNCT
and CCONJ
of ADP
course NOUN
, PUNCT
that DET
does AUX
n't PART
feel VERB
good ADJ
. PUNCT
  SPACE
A DET
way NOUN
to ADP
preventirratation NOUN
is AUX
to PART
mark VERB
the DET
spot NOUN
that PRON
you PRON
injected VERB
. PUNCT
  SPACE
A DET
good ADJ
way NOUN
todo NOUN
this DET
is AUX
use VERB
a DET
little ADJ
round ADJ
bandage NOUN
and CCONJ
put VERB
it PRON
over ADP
the DET
spot NOUN
. PUNCT
  SPACE
This DET
helps VERB
prevent VERB
you PRON
from ADP
injecting VERB
in ADP
the DET
same ADJ
spot NOUN
, PUNCT
and CCONJ
spacing VERB
the DET
sites NOUN
out ADP
accuartely ADV
( PUNCT
about ADV
1 NUM
1/2 NUM
" PUNCT
apart.)This DET
is AUX
from ADP
experience NOUN
, PUNCT
so CCONJ
I PRON
hope VERB
it PRON
'll AUX
help VERB
you PRON
. PUNCT
  SPACE
( PUNCT
I PRON
havediabetes VERB
and CCONJ
have AUX
to PART
take VERB
an DET
injection NOUN
every DET
morning NOUN
. PUNCT
) PUNCT
			 SPACE
Later ADV
, PUNCT
				 SPACE
David-- PROPN
David PROPN
HahnUniversity PROPN
of ADP
Wisconsin PROPN
: PUNCT
Milwaukee PROPN
hahn@csd4.csd.uwm.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59187From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
C5uq9B.LrJ@toads.pgh.pa.us PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes:>>>>Many NOUN
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the>>literature NOUN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains>>tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might>>potentiate NOUN
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it.>>Check NOUN
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested.>>Years NOUN
ago ADV
when ADV
I PRON
was AUX
an DET
intern NOUN
, PUNCT
an DET
obese ADJ
young ADJ
woman NOUN
was AUX
brought VERB
into ADP
> X
the DET
ER PROPN
comatose NOUN
after ADP
having VERB
been AUX
reported VERB
to PART
have AUX
grand ADJ
mal PROPN
seizures NOUN
> X
why ADV
attending VERB
a DET
" PUNCT
corn NOUN
festival NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
pumped VERB
her PRON
stomach NOUN
and CCONJ
obtained VERB
> X
what PRON
seemed VERB
like SCONJ
a DET
couple NOUN
of ADP
liters NOUN
of ADP
corn NOUN
, PUNCT
much ADJ
of ADP
it PRON
intact ADJ
kernals NOUN
. PUNCT
  SPACE
> X
After ADP
a DET
few ADJ
hours NOUN
she PRON
woke VERB
up ADP
and CCONJ
was AUX
fine ADJ
. PUNCT
  SPACE
I PRON
was AUX
tempted VERB
to PART
sign VERB
her PRON
out ADP
as>"acute PUNCT
corn NOUN
intoxication NOUN
. PUNCT
">---------------------------------------------------------------------------->Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andHow NOUN
about ADP
contaminants NOUN
on ADP
the DET
corn NOUN
, PUNCT
e.g. DET
aflatoxin???-- NOUN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59188From NUM
: PUNCT
caf@omen PROPN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX)Subject VERB
: PUNCT
Re ADP
: PUNCT
My PRON
New PROPN
Diet PROPN
-- PUNCT
> X
IT PRON
WORKS VERB
GREAT ADJ
! PUNCT
! PUNCT
! PUNCT
! PUNCT
In ADP
article NOUN
< X
C5wC7G.4EG@toads.pgh.pa.us PROPN
> X
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
1993Apr22.001642.9186@omen NUM
. PUNCT
UUCP NOUN
> X
caf@omen NOUN
. PUNCT
UUCP PROPN
( PUNCT
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
) PUNCT
writes:>>>>>>Can VERB
you PRON
provide VERB
a DET
reference NOUN
to PART
substantiate VERB
that SCONJ
gaining VERB
back>>>>>the NOUN
lost VERB
weight NOUN
does AUX
not PART
constitute VERB
" PUNCT
weight NOUN
rebound NOUN
" PUNCT
until ADP
it>>>>>exceeds PROPN
the DET
starting VERB
weight NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
this DET
oral ADJ
tradition NOUN
that>>>>>is NOUN
shared VERB
only ADV
among ADP
you PRON
obesity NOUN
researchers?>>>>>>>>Annals NOUN
of ADP
NY PROPN
Acad PROPN
. PUNCT
Sci PROPN
. PROPN
1987>>>>>>>Hmmm NUM
. PUNCT
These DET
do AUX
n't PART
look VERB
like SCONJ
references NOUN
to ADP
me PRON
. PUNCT
Is AUX
passive ADJ
- PUNCT
aggressive>>>behavior PROPN
associated VERB
with ADP
weight NOUN
rebound NOUN
? PUNCT
: PUNCT
-)>>>>I ADV
purposefully ADV
left VERB
off ADP
the DET
page NOUN
numbers NOUN
to PART
encourage VERB
the DET
reader NOUN
to>>study NOUN
the DET
volumes NOUN
mentioned VERB
, PUNCT
and CCONJ
benefit VERB
therefrom.>>>>Good NOUN
story NOUN
, PUNCT
Chuck PROPN
, PUNCT
but CCONJ
it PRON
wo AUX
n't PART
wash VERB
. PUNCT
  SPACE
I PRON
have AUX
read VERB
the DET
NY PROPN
Acad PROPN
Sci PROPN
> X
one NUM
( PUNCT
and CCONJ
have AUX
it PRON
) PUNCT
. PUNCT
  SPACE
This DET
AM NOUN
I PRON
could AUX
n't PART
find VERB
any DET
reference NOUN
to>"weight INTJ
rebound VERB
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
it PRON
is AUX
n't PART
there ADV
, PUNCT
but CCONJ
since SCONJ
you PRON
> X
cited VERB
it PRON
, PUNCT
it PRON
is AUX
your PRON
responsibility NOUN
to PART
show VERB
me PRON
where ADV
it PRON
is AUX
in ADP
there.>There PROPN
is AUX
no DET
index NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
you PRON
overstepped VERB
your PRON
knowledge NOUN
base,>as NOUN
usual.>---------------------------------------------------------------------------->Gordon PROPN
Banks NOUN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and>geb@cadre.dsl.pitt.edu PROPN
   SPACE
| INTJ
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
> X
----------------------------------------------------------------------------It PROPN
's PART
on ADP
page NOUN
315 NUM
, PUNCT
about ADV
2 NUM
1/2 NUM
inches NOUN
up ADP
from ADP
the DET
bottom NOUN
and CCONJ
an DET
inch NOUN
infrom ADP
the DET
right NOUN
. PUNCT
At ADP
least ADJ
we PRON
know VERB
what PRON
some DET
people NOUN
* PUNCT
have AUX
n't PART
* PUNCT
read VERB
and CCONJ
remembered.-- PROPN
Chuck PROPN
Forsberg PROPN
WA7KGX PROPN
          SPACE
... PUNCT
! PUNCT
tektronix!reed!omen!caf PROPN
Author PROPN
of ADP
YMODEM PROPN
, PUNCT
ZMODEM PROPN
, PUNCT
Professional PROPN
- PUNCT
YAM PROPN
, PUNCT
ZCOMM PROPN
, PUNCT
and CCONJ
DSZ PROPN
  SPACE
Omen PROPN
Technology PROPN
Inc PROPN
    SPACE
" PUNCT
The DET
High PROPN
Reliability PROPN
Software"17505-V NOUN
NW PROPN
Sauvie PROPN
IS PROPN
RD PROPN
   SPACE
Portland PROPN
OR CCONJ
97231 NUM
   SPACE
503 NUM
- PUNCT
621 NUM
- PUNCT
3406Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59189From NUM
: PUNCT
heart@access.digex.com X
( PUNCT
G)Subject PROPN
: PUNCT
cholistasis(sp?)/fat NOUN
- PUNCT
free ADJ
diet NOUN
/ SYM
pregnancy!!Hi PROPN
, PUNCT
I've PROPN
just ADV
returned VERB
from ADP
a DET
visit NOUN
with ADP
my PRON
OB PROPN
/ SYM
GYN PROPN
and CCONJ
I PRON
have AUX
a DET
few ADJ
concerns NOUN
that SCONJ
maybe ADV
y' PRON
all DET
can AUX
help VERB
me PRON
with ADP
. PUNCT
  SPACE
I PRON
've AUX
been AUX
seeing VERB
her PRON
every DET
4 NUM
weeks NOUN
for ADP
the DET
past ADJ
few ADJ
months NOUN
( PUNCT
I PRON
'm AUX
at ADP
week NOUN
28 NUM
) PUNCT
and CCONJ
during ADP
the DET
last ADJ
2 NUM
visits NOUN
I PRON
've AUX
gained VERB
9 NUM
to ADP
9 NUM
1/2 NUM
pounds NOUN
every DET
4 NUM
weeks NOUN
. PUNCT
  SPACE
She PRON
said VERB
this DET
was AUX
unacceptable ADJ
over ADP
any DET
4 NUM
week NOUN
period NOUN
. PUNCT
As SCONJ
it PRON
stands VERB
I PRON
've AUX
thus ADV
far ADV
gained VERB
26 NUM
pounds NOUN
. PUNCT
  SPACE
Also ADV
she PRON
says VERB
that SCONJ
though SCONJ
I PRON
'm AUX
at ADP
28 NUM
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
is AUX
27 NUM
weeks NOUN
, PUNCT
I PRON
think VERB
she PRON
mentioned VERB
27 NUM
inches NOUN
for ADP
the DET
top NOUN
of ADP
the DET
fundus NOUN
. PUNCT
  SPACE
When ADV
I PRON
was AUX
13 NUM
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
was AUX
14 NUM
weeks NOUN
. PUNCT
  SPACE
I PRON
must AUX
also ADV
add VERB
, PUNCT
that SCONJ
I PRON
had AUX
an DET
operation NOUN
a DET
few ADJ
years NOUN
ago ADV
for ADP
endometriosis NOUN
and CCONJ
I PRON
've AUX
had VERB
no DET
problems NOUN
with ADP
endometriosis NOUN
but CCONJ
apparently ADV
it PRON
is AUX
causing VERB
me PRON
pain NOUN
in ADP
my PRON
pelvic ADJ
region NOUN
during ADP
the DET
pregnancy NOUN
, PUNCT
and CCONJ
I PRON
have AUX
a DET
very ADV
difficult ADJ
time NOUN
moving VERB
, PUNCT
and CCONJ
the DET
doc NOUN
has AUX
recommended VERB
I PRON
not PART
walk VERB
or CCONJ
move VERB
unless SCONJ
I PRON
have AUX
to PART
. PUNCT
( PUNCT
I PRON
have AUX
a DET
little ADJ
handicapped ADJ
sticker NOUN
for ADP
when ADV
I PRON
do AUX
need VERB
to PART
go VERB
out ADP
. PUNCT
) PUNCT
Anyway INTJ
that DET
's AUX
1/2 NUM
of ADP
the DET
situation NOUN
the DET
other ADJ
is AUX
that SCONJ
almost ADV
from ADP
the DET
beginning NOUN
of ADP
pregnancy NOUN
I PRON
was AUX
getting VERB
sick ADJ
( PUNCT
throwing VERB
up ADP
) PUNCT
about ADV
2 NUM
- SYM
3 NUM
times NOUN
a DET
day NOUN
and CCONJ
mostly ADV
it PRON
was AUX
bile ADJ
that PRON
was AUX
being AUX
eliminated VERB
. PUNCT
  SPACE
( PUNCT
I PRON
told VERB
her PRON
about ADP
this DET
) PUNCT
. PUNCT
  SPACE
I PRON
know VERB
this DET
because SCONJ
I PRON
was AUX
n't PART
eating VERB
very ADV
much ADV
due ADP
to ADP
the DET
nausea NOUN
and CCONJ
could AUX
see VERB
the DET
' PUNCT
results NOUN
' PUNCT
. PUNCT
  SPACE
Well INTJ
now ADV
I PRON
only ADV
get VERB
sick ADJ
about ADP
once ADV
every DET
1 NUM
- SYM
2 NUM
weeks NOUN
, PUNCT
and CCONJ
it PRON
is AUX
still ADV
bile ADJ
related VERB
. PUNCT
  SPACE
But CCONJ
in ADP
addition NOUN
I PRON
had AUX
begun VERB
to PART
feel VERB
movement NOUN
near SCONJ
my PRON
upper ADJ
right ADJ
abdomen NOUN
, PUNCT
just ADV
below ADP
the DET
right ADJ
breast NOUN
, PUNCT
usually ADV
when ADV
I PRON
was AUX
lying VERB
on ADP
my PRON
right ADJ
side NOUN
. PUNCT
  SPACE
It PRON
began VERB
to PART
get AUX
worse ADJ
though ADV
because SCONJ
it PRON
started VERB
to PART
hurt VERB
when ADV
I PRON
lay VERB
on ADP
my PRON
right ADJ
side NOUN
, PUNCT
and CCONJ
then ADV
it PRON
hurt VERB
  SPACE
no ADV
matter ADV
what PRON
position NOUN
I PRON
was AUX
in ADV
. PUNCT
  SPACE
Next ADV
, PUNCT
I PRON
noticed VERB
that SCONJ
when ADV
I PRON
ate VERB
greasy NOUN
or CCONJ
fatty NOUN
foods NOUN
I PRON
felt VERB
like SCONJ
my PRON
entire ADJ
abdomen NOUN
had AUX
turned VERB
to ADP
stone NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
in ADP
the DET
area NOUN
got VERB
worse ADJ
. PUNCT
  SPACE
However ADV
if SCONJ
I PRON
ate VERB
sauerkraut NOUN
or CCONJ
vinegar NOUN
or CCONJ
something PRON
to PART
' PUNCT
cut VERB
' PUNCT
the DET
fat NOUN
it PRON
was AUX
n't PART
as ADV
much ADJ
of ADP
a DET
problem NOUN
. PUNCT
So ADV
the DET
doctor NOUN
says VERB
I PRON
have AUX
cholistatis NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
should AUX
avoid VERB
fatty ADJ
foods NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
, PUNCT
and CCONJ
because SCONJ
I PRON
was AUX
already ADV
aware ADJ
of ADP
what PRON
seemed VERB
to ADP
me PRON
this DET
cause NOUN
and CCONJ
effect NOUN
relationship NOUN
I PRON
have AUX
been AUX
avoiding VERB
these DET
foods NOUN
on ADP
my PRON
own ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
still ADV
able ADJ
to PART
eat VERB
foods NOUN
with ADP
Ricotta PROPN
cheese NOUN
for ADP
instance NOUN
and CCONJ
other ADJ
low ADJ
fat ADJ
foods NOUN
. PUNCT
  SPACE
But CCONJ
doc PROPN
wants VERB
me PRON
to PART
be AUX
on ADP
a DET
non ADJ
- ADJ
fat ADJ
diet NOUN
. PUNCT
  SPACE
This DET
means VERB
no DET
meat NOUN
except SCONJ
fish NOUN
and CCONJ
chicken NOUN
w/o ADP
skin NOUN
( PUNCT
I PRON
do AUX
this DET
anyway ADV
) PUNCT
. PUNCT
  SPACE
No DET
nuts NOUN
, PUNCT
fried ADJ
food NOUN
, PUNCT
cheese NOUN
etc X
. PUNCT
  SPACE
I PRON
am AUX
allowed VERB
skim PROPN
milk NOUN
. PUNCT
  SPACE
She PRON
said VERB
I PRON
should AUX
avoid VERB
anything PRON
sweet ADJ
( PUNCT
e.g. ADV
bananas PROPN
) PUNCT
. PUNCT
  SPACE
Also ADV
I PRON
must AUX
only ADV
have AUX
one NUM
serving VERB
of ADP
something PRON
high ADJ
in ADP
carbohydrates NOUN
a DET
day NOUN
( PUNCT
potatoes NOUN
, PUNCT
pasta NOUN
, PUNCT
rice NOUN
) PUNCT
! PUNCT
  SPACE
She PRON
said VERB
I PRON
ca AUX
n't PART
even ADV
cook VERB
vegetables NOUN
in ADP
a DET
little ADJ
bit NOUN
of ADP
oil NOUN
and CCONJ
that SCONJ
I PRON
should AUX
eat VERB
vegetables NOUN
raw ADJ
or CCONJ
steamed ADJ
. PUNCT
  SPACE
I PRON
'm AUX
concerned ADJ
because SCONJ
I PRON
understand VERB
you PRON
need VERB
to PART
have AUX
some DET
fat NOUN
in ADP
your PRON
diet NOUN
to PART
help VERB
in ADP
the DET
digestive ADJ
process NOUN
. PUNCT
  SPACE
And CCONJ
if SCONJ
I PRON
'm AUX
not PART
taking VERB
in ADP
fat NOUN
, PUNCT
is AUX
she PRON
expecting VERB
the DET
baby NOUN
will AUX
take VERB
it PRON
from ADP
my PRON
stores NOUN
? PUNCT
  SPACE
And CCONJ
why ADV
this DET
restriction NOUN
on ADP
carbohydrates NOUN
if SCONJ
she PRON
's AUX
concerned ADJ
about ADP
fat NOUN
? PUNCT
  SPACE
I PRON
'm AUX
not PART
clear ADJ
how ADV
much ADJ
of ADP
her PRON
recommendation NOUN
is AUX
based VERB
on ADP
my PRON
weight NOUN
gain NOUN
and CCONJ
how ADV
much ADJ
on ADP
cholistatis NOUN
, PUNCT
which PRON
I PRON
ca AUX
n't PART
seem VERB
to PART
find VERB
any DET
information NOUN
on ADP
. PUNCT
  SPACE
She PRON
originally ADV
said VERB
that SCONJ
I PRON
should AUX
only ADV
gain VERB
20 NUM
pounds NOUN
during ADP
the DET
entire ADJ
pregnancy NOUN
since SCONJ
I PRON
was AUX
about ADV
20 NUM
lbs NOUN
overweight NOUN
when ADV
I PRON
started VERB
. PUNCT
  SPACE
But CCONJ
my PRON
sister NOUN
gained VERB
60 NUM
lbs NOUN
during ADP
her PRON
pregnancy NOUN
and CCONJ
she PRON
's AUX
taken VERB
it PRON
all DET
off ADP
and CCONJ
has AUX
n't PART
had VERB
any DET
problems NOUN
. PUNCT
  SPACE
She PRON
also ADV
asked VERB
if SCONJ
any DET
members NOUN
of ADP
my PRON
family NOUN
were AUX
obese ADJ
, PUNCT
which PRON
none NOUN
of ADP
them PRON
are AUX
. PUNCT
  SPACE
Anyway INTJ
I PRON
think VERB
she PRON
is AUX
overly ADV
concerned ADJ
about ADP
weight NOUN
gain NOUN
, PUNCT
and CCONJ
feel VERB
like SCONJ
I PRON
'm AUX
being AUX
' PUNCT
punished VERB
' PUNCT
by ADP
a DET
severe ADJ
diet NOUN
. PUNCT
  SPACE
She PRON
did AUX
want VERB
to PART
see VERB
me PRON
again ADV
in ADP
one NUM
week NOUN
so ADV
I PRON
think VERB
she PRON
the DET
diet NOUN
may AUX
be AUX
temporary ADJ
for ADP
that DET
one NUM
week NOUN
. PUNCT
What PRON
I PRON
want VERB
to PART
know VERB
is AUX
how ADV
reasonable ADJ
is AUX
this DET
non ADJ
- ADJ
fat ADJ
diet NOUN
? PUNCT
  SPACE
I PRON
would AUX
understand VERB
if SCONJ
she PRON
had AUX
said VERB
low ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
since SCONJ
I PRON
'm AUX
trying VERB
that DET
anyway ADV
, PUNCT
even ADV
if SCONJ
she PRON
said VERB
really ADV
low ADJ
- PUNCT
fat NOUN
diet NOUN
. PUNCT
  SPACE
I PRON
think VERB
she PRON
assumes VERB
I PRON
must AUX
be AUX
eating VERB
a DET
high ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
but CCONJ
really ADV
it PRON
is AUX
that DET
because SCONJ
of ADP
the DET
endometriosis NOUN
and CCONJ
the DET
operation NOUN
I PRON
'm AUX
not PART
able ADJ
to PART
use VERB
the DET
energy NOUN
from ADP
the DET
food NOUN
I PRON
do AUX
eat VERB
. PUNCT
Any DET
opinions NOUN
, PUNCT
info NOUN
and CCONJ
experiences NOUN
will AUX
be AUX
appreciated VERB
. PUNCT
  SPACE
I PRON
'm AUX
truly ADV
going VERB
stark ADJ
raving VERB
mad ADJ
trying VERB
to PART
meet VERB
this DET
new ADJ
strict ADJ
diet NOUN
because SCONJ
fruits NOUN
and CCONJ
vegetables NOUN
go VERB
through ADP
my PRON
system NOUN
in ADP
a DET
few ADJ
minutes NOUN
and CCONJ
I PRON
'll AUX
end VERB
up ADP
having VERB
to PART
eat VERB
constantly ADV
. PUNCT
  SPACE
Thus ADV
far ADV
I PRON
do AUX
n't PART
find VERB
any DET
foods NOUN
satisfying NOUN
. PUNCT
Thanks NOUN
GNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59190From NUM
: PUNCT
bbenowit@telesciences.com X
( PUNCT
Barry PROPN
D PROPN
Benowitz)Subject PROPN
: PUNCT
PRK PROPN
( PUNCT
Photo PROPN
Refractive PROPN
Keratostomy)For PROPN
those DET
of ADP
you PRON
interested ADJ
in ADP
the DET
above ADJ
Procedure PROPN
, PUNCT
I PRON
am AUX
able ADJ
to PART
add VERB
thefollowing VERB
facts:1 NUM
) PUNCT
This DET
Procedure NOUN
is AUX
not PART
done VERB
in ADP
Philadelphia.2 PROPN
) PUNCT
It PRON
is AUX
performed VERB
in ADP
Maryland PROPN
at ADP
Johns PROPN
Hopkins PROPN
for ADP
corrections NOUN
between ADP
   SPACE
0 NUM
and CCONJ
-5 X
and CCONJ
from ADP
-10 X
to ADP
-20 X
( PUNCT
diopters NOUN
, PUNCT
I PRON
think VERB
are AUX
the DET
units).3 ADJ
) PUNCT
It PRON
is AUX
performed VERB
in ADP
New PROPN
York PROPN
City PROPN
at ADP
Manhattan PROPN
Eye PROPN
and CCONJ
Ear PROPN
for ADP
corrections NOUN
   SPACE
between ADP
0 NUM
and CCONJ
-6.The ADJ
magic ADJ
words NOUN
to PART
use VERB
when ADV
requesting VERB
information NOUN
on ADP
this DET
is AUX
not PART
PRK PROPN
( PUNCT
theythink VERB
you PRON
mean VERB
RK PROPN
) PUNCT
but CCONJ
the DET
excimer PROPN
laser PROPN
study NOUN
( PUNCT
or CCONJ
protocol NOUN
) PUNCT
. PUNCT
This DET
will AUX
get AUX
you PRON
to ADP
the DET
proper ADJ
people.-- PROPN
Barry PROPN
D. PROPN
BenowitzEMail PROPN
: PUNCT
	 SPACE
bbenowit@telesciences.com X
( PUNCT
... PUNCT
! PUNCT
pyrnj!telesci!bbenowit)Phone NOUN
: PUNCT
	 SPACE
+1 PROPN
609 NUM
866 NUM
1000 NUM
x354Snail NUM
: PUNCT
	 SPACE
Telesciences PROPN
CO PROPN
Systems PROPN
, PUNCT
351 NUM
New PROPN
Albany PROPN
Rd PROPN
, PUNCT
Moorestown PROPN
, PUNCT
NJ PROPN
, PUNCT
08057 NUM
- SYM
1177Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59191From NUM
: PUNCT
etxmow@garbo.ericsson.se PROPN
( PUNCT
Mats NOUN
Winberg)Subject VERB
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
   SPACE
Is AUX
n't PART
there PRON
a DET
relatively ADV
new ADJ
treatment NOUN
for ADP
kidney NOUN
stones NOUN
involving VERB
   SPACE
a DET
non ADJ
- ADJ
invasive ADJ
use NOUN
of ADP
ultra ADJ
- ADJ
sound ADJ
where ADV
the DET
patient NOUN
is AUX
lowered VERB
   SPACE
into ADP
some DET
sort NOUN
of ADP
liquid NOUN
when ADV
he PRON
/ SYM
she PRON
undergoes VERB
treatment NOUN
? PUNCT
I PRON
'm AUX
sure ADJ
   SPACE
I PRON
've AUX
read VERB
about ADP
it PRON
somewhere ADV
. PUNCT
If SCONJ
I PRON
remember VERB
it PRON
correctly ADV
it PRON
is AUX
a DET
   SPACE
painless ADJ
and CCONJ
effective ADJ
treatment NOUN
. PUNCT
   SPACE
A DET
couple NOUN
of ADP
weeks NOUN
ago ADV
I PRON
visited VERB
a DET
hospital NOUN
here ADV
in ADP
Stockholm PROPN
and CCONJ
   SPACE
saw VERB
big ADJ
signs NOUN
showing VERB
the DET
way NOUN
to ADP
the DET
" PUNCT
Kidney PROPN
stone NOUN
chrusher NOUN
" PUNCT
... PUNCT
   SPACE
Mats PROPN
Winberg PROPN
   SPACE
Stockholm PROPN
, PUNCT
Sweden PROPN
	      SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59192From NUM
: PUNCT
ske@pkmab.se PROPN
( PUNCT
Kristoffer PROPN
Eriksson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Science NOUN
and CCONJ
methodology NOUN
( PUNCT
was AUX
: PUNCT
Homeopathy NOUN
... PUNCT
tradition?)In NUM
article NOUN
< X
1quqlgINN83q@im4u.cs.utexas.edu NUM
> X
turpin@cs.utexas.edu NOUN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes VERB
: PUNCT
> X
My PRON
definition NOUN
is AUX
this DET
: PUNCT
Science NOUN
is AUX
the DET
investigation NOUN
of ADP
the DET
empirical ADJ
> X
that PRON
avoids VERB
mistakes NOUN
in ADP
reasoning NOUN
and CCONJ
methodology NOUN
discovered VERB
from ADP
previous ADJ
> X
work NOUN
. PUNCT
Reading VERB
this DET
definition NOUN
, PUNCT
I PRON
wonder VERB
: PUNCT
when ADV
should AUX
you PRON
recognize VERB
somethingas PROPN
being AUX
a DET
" PUNCT
mistake NOUN
" PUNCT
? PUNCT
It PRON
seems VERB
to ADP
me PRON
, PUNCT
that SCONJ
proponents NOUN
of ADP
pseudo NOUN
- PUNCT
sciencesmight VERB
have AUX
their PRON
own ADJ
ideas NOUN
of ADP
what PRON
constitutes VERB
a DET
" PUNCT
mistake NOUN
" PUNCT
and CCONJ
whichdiscoveries NOUN
of ADP
such ADJ
previous ADJ
mistakes NOUN
they PRON
accept.-- ADP
Kristoffer PROPN
Eriksson PROPN
, PUNCT
Peridot PROPN
Konsult PROPN
AB PROPN
, PUNCT
Stallgatan PROPN
2 NUM
, PUNCT
S-702 PROPN
26 NUM
Oerebro PROPN
, PUNCT
SwedenPhone PROPN
: PUNCT
+46 PROPN
19 NUM
- SYM
33 NUM
13 NUM
00 NUM
  SPACE
! PUNCT
  SPACE
e NOUN
- NOUN
mail NOUN
: PUNCT
ske@pkmab.seFax NOUN
: PUNCT
   SPACE
+46 PROPN
19 NUM
- SYM
33 NUM
13 NUM
30 NUM
  SPACE
! PUNCT
  SPACE
or CCONJ
... PUNCT
! PUNCT
mail.swip.net!kullmar!pkmab!skeNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59193From NUM
: PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographytodamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow VERB
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking VERB
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for ADP
> PROPN
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly ADV
> X
appreciated VERB
. PUNCT
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps ADV
. PUNCT
Bill PROPN
from ADP
ozNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59194From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn PROPN
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff,tron@fafnir.la.locus.com PROPN
writes:>Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
> X
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
> X
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki?I'm PROPN
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
ofthe NOUN
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-)Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsUM PROPN
Anesthesiology PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59195From NUM
: PUNCT
sjha+@cs.cmu.edu PROPN
( PUNCT
Somesh PROPN
Jha)Subject X
: PUNCT
What PRON
is AUX
" PUNCT
intersection NOUN
syndrome NOUN
" PUNCT
near SCONJ
the DET
forearm NOUN
/ SYM
wrist?Hi PROPN
: PUNCT
I PRON
went VERB
to ADP
the DET
orthopedist NOUN
on ADP
Tuesday PROPN
. PUNCT
He PRON
diagnosed VERB
me PRON
as SCONJ
having"intersection NOUN
syndrome NOUN
" PUNCT
. PUNCT
He PRON
prescribed VERB
Feldene PROPN
for ADP
me PRON
. PUNCT
I PRON
wantto NOUN
know VERB
more ADJ
about ADP
the DET
disease NOUN
and CCONJ
the DET
drug NOUN
. PUNCT
ThanksSomeshNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59196From NUM
: PUNCT
choueiry@liasun1.epfl.ch X
( PUNCT
Berthe PROPN
Y. PROPN
Choueiry)Subject PROPN
: PUNCT
French ADJ
to ADP
English ADJ
translation NOUN
of ADP
medical ADJ
termsDear PROPN
Netters PROPN
, PUNCT
I PRON
am AUX
not PART
sure ADJ
whether SCONJ
this DET
is AUX
the DET
right ADJ
place NOUN
to PART
post VERB
my PRON
query NOUN
, PUNCT
but CCONJ
Ithought PROPN
there PRON
may AUX
be AUX
some DET
bilingual ADJ
physicians NOUN
in ADP
this DET
newsgroup NOUN
thatcould AUX
help VERB
. PUNCT
Please INTJ
, PUNCT
excuse VERB
me PRON
for ADP
overloading VERB
the DET
bandwidth NOUN
. PUNCT
I PRON
am AUX
trying VERB
to PART
build VERB
a DET
resource NOUN
allocation NOUN
program NOUN
for ADP
managing VERB
asurgical ADJ
operating NOUN
unit NOUN
in ADP
a DET
hospital NOUN
. PUNCT
The DET
user NOUN
interface NOUN
is AUX
inEnglish PROPN
, PUNCT
however ADV
the DET
terms NOUN
of ADP
medical ADJ
specialties NOUN
I PRON
was AUX
given VERB
are AUX
inFrench PROPN
:-( PUNCT
I PRON
have AUX
no DET
medical ADJ
dictionary PROPN
handy ADJ
, PUNCT
mine NOUN
is AUX
a DET
technicaluniversity NOUN
: PUNCT
-((I PUNCT
need VERB
to PART
get AUX
the DET
translation NOUN
into ADP
English PROPN
( PUNCT
when ADV
there PRON
is AUX
one NUM
) PUNCT
of ADP
thefollowing VERB
words NOUN
. PUNCT
They PRON
refer VERB
to ADP
medical ADJ
categories NOUN
of ADP
operating VERB
rooms(theaters PROPN
) PUNCT
. PUNCT
I PRON
admit VERB
they PRON
may AUX
not PART
be AUX
universally ADV
" PUNCT
used".1- ADJ
sceptique2- PROPN
orl3- NUM
brulure NOUN
/ PUNCT
brule'4- PROPN
ne'onatal5- PROPN
pre'natal6- PROPN
pre'mature'7- PROPN
neurochirurgie PROPN
( PUNCT
neuro PROPN
- PUNCT
surgery??)8- PROPN
chirurgie PROPN
ge'ne'rale9- PROPN
chirurgie PROPN
plastique10- NUM
urologie NOUN
( PUNCT
urology??)Thank PUNCT
you PRON
for ADP
you PRON
help VERB
. PUNCT
Cheers,---------Berthe INTJ
Y. PROPN
Choueirychoueiry@lia.di.epfl.chLIA-DI PROPN
, PUNCT
Ecole PROPN
Polytechnique PROPN
Federale PROPN
de ADP
Lausanne PROPN
, PUNCT
EcublensCH-1015 PROPN
Lausanne PROPN
, PUNCT
SwitzerlandVoice PROPN
: PUNCT
+41 NUM
- PUNCT
21 NUM
- SYM
693.52.77 NUM
and CCONJ
+41 PROPN
- PUNCT
21 NUM
- SYM
693.66.78 NUM
	 SPACE
Fax NOUN
: PUNCT
+41 NUM
- PUNCT
21 NUM
- PUNCT
693.52.25 NUM
- PUNCT
-------ps NOUN
: PUNCT
please INTJ
reply VERB
by ADP
e NOUN
- NOUN
mail NOUN
if SCONJ
possible ADJ
since SCONJ
I PRON
scan AUX
too ADV
quicklythrough VERB
the DET
messages NOUN
of ADP
this DET
newsgroup NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59197From NUM
: PUNCT
jgd@dixie.com PROPN
( PUNCT
John PROPN
De PROPN
Armond)Subject NUM
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?E.J. PROPN
Draper PROPN
< X
draper@odin.mda.uth.tmc.edu NOUN
> X
writes:>If PROPN
it PRON
were AUX
my PRON
wife NOUN
, PUNCT
I PRON
would AUX
insist VERB
that SCONJ
a DET
radiologist NOUN
be AUX
involved VERB
in ADP
the DET
> X
process NOUN
. PUNCT
  SPACE
Radiologist NOUN
are AUX
intensively ADV
trained VERB
in ADP
the DET
process NOUN
of ADP
> X
interpreting VERB
diagnostic ADJ
imaging NOUN
data NOUN
and CCONJ
are AUX
aware ADJ
of ADP
many ADJ
things NOUN
that PRON
> X
other ADJ
physicians NOUN
are AUX
n't PART
aware ADJ
of ADP
. PUNCT
  SPACE
Maybe ADV
, PUNCT
maybe ADV
not PART
. PUNCT
  SPACE
A DET
new ADJ
graduate NOUN
would AUX
obviously ADV
be AUX
well ADV
trained VERB
( PUNCT
butperhaps NOUN
without ADP
sufficient ADJ
experience NOUN
) PUNCT
. PUNCT
A DET
radiologist NOUN
trained VERB
10 NUM
or15 PROPN
years NOUN
ago ADV
who PRON
has AUX
not PART
kept VERB
his PRON
continuing VERB
education NOUN
current NOUN
is AUX
a DET
whole ADJ
' PUNCT
nuther ADV
matter NOUN
. PUNCT
  SPACE
A DET
OB NOUN
who PRON
HAS VERB
trained VERB
in ADP
modern ADJ
radiology NOUN
technologyis PROPN
certainly ADV
more ADV
qualified ADJ
than SCONJ
the DET
latter ADJ
and CCONJ
at ADP
least ADJ
equal ADJ
to ADP
the DET
former.>Would NOUN
you PRON
want VERB
a DET
radiologist NOUN
to PART
> X
deliver VERB
your PRON
baby NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
would AUX
n't PART
, PUNCT
then ADV
why ADV
would AUX
you PRON
want VERB
a DET
OB PROPN
/ SYM
GYN PROPN
to PART
> X
read VERB
your PRON
ultrasound NOUN
study?If NOUN
the DET
radiologist NOUN
is AUX
also ADV
trained VERB
in ADP
OB PROPN
/ SYM
GYN PROPN
, PUNCT
why ADV
not?John-- PROPN
John PROPN
De PROPN
Armond PROPN
, PUNCT
WD4OQC NOUN
               SPACE
|Interested NOUN
in ADP
high ADJ
performance NOUN
mobility NOUN
? PUNCT
  SPACE
Performance NOUN
Engineering PROPN
Magazine(TM PROPN
) PUNCT
| PROPN
Interested PROPN
in ADP
high ADJ
tech NOUN
and CCONJ
computers NOUN
? PUNCT
Marietta PROPN
, PUNCT
Ga PROPN
                         SPACE
| PROPN
Send VERB
ur PROPN
snail ADJ
- PUNCT
mail NOUN
address NOUN
to ADP
jgd@dixie.com PROPN
                        SPACE
| PROPN
perform@dixie.com X
for ADP
a DET
free ADJ
sample NOUN
magLee NOUN
Harvey PROPN
Oswald PROPN
: PUNCT
Where ADV
are AUX
ya PRON
when ADV
we PRON
need VERB
ya?Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59198From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
ME PROPN
INJECT PROPN
... PUNCT
According VERB
to ADP
a DET
previous ADJ
poster NOUN
, PUNCT
one PRON
should AUX
seek VERB
a DET
doctor'sassistance NOUN
for ADP
injections NOUN
. PUNCT
But CCONJ
what PRON
about ADP
Sumatriptin PROPN
[ PUNCT
sp?]?Doesn't PUNCT
one PRON
have AUX
to PART
inject VERB
oneself PRON
immediately ADV
upon SCONJ
the DET
onsetof NOUN
a DET
migraine?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59199From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In PROPN
article NOUN
< X
1993Apr22.202051.1@vms.ocom.okstate.edu PROPN
> X
, PUNCT
banschbach@vms.ocom.okstate.edu PROPN
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
> X
disease PROPN
. PUNCT
> X
> X
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
> X
without ADP
discomfort PROPN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
> X
John PROPN
Eyles PROPN
> X
> X
All DET
your PRON
friend NOUN
really ADV
has AUX
to PART
do AUX
is AUX
find VERB
a DET
Registered ADJ
Dietician(RD PROPN
) PUNCT
. PUNCT
  SPACE
While SCONJ
> X
most ADJ
work NOUN
in ADP
hospitals NOUN
and CCONJ
clinics NOUN
, PUNCT
many ADJ
major ADJ
cities NOUN
will AUX
have AUX
RD PROPN
's PART
who PRON
> X
are AUX
in ADP
" PUNCT
private ADJ
practice NOUN
" PUNCT
so ADV
to PART
speak VERB
. PUNCT
  SPACE
Many ADJ
physicans NOUN
will AUX
refer VERB
their PRON
> NOUN
patients NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
to ADP
RD PROPN
's PART
for ADP
dietary ADJ
help NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
> X
your PRON
friend NOUN
's PART
physician NOUN
to PART
make VERB
a DET
referral ADJ
, PUNCT
medical ADJ
insurance NOUN
should AUX
pay VERB
for ADP
> X
the DET
RD PROPN
's PART
services NOUN
just ADV
like SCONJ
the DET
services NOUN
of ADP
a DET
physical ADJ
therapist NOUN
. PUNCT
  SPACE
The DET
> X
better ADJ
medical ADJ
insurance NOUN
plans NOUN
will AUX
cover VERB
this DET
but CCONJ
even ADV
if SCONJ
your PRON
friend NOUN
's PART
> X
plan NOUN
does AUX
n't PART
, PUNCT
it PRON
would AUX
be AUX
well ADV
worth ADJ
the DET
cost NOUN
to PART
get AUX
on ADP
a DET
good ADJ
diet NOUN
to ADP
> X
control VERB
the DET
intestinal ADJ
discomfort NOUN
and CCONJ
help VERB
the DET
intestinal ADJ
lining NOUN
heal NOUN
. PUNCT
> X
Crohn PROPN
's PART
disease NOUN
is AUX
an DET
inflammatory ADJ
disease NOUN
of ADP
the DET
intestinal ADJ
lining NOUN
and CCONJ
> X
lipoxygenase NOUN
inhibitors NOUN
may AUX
help VERB
by ADP
decreasing VERB
leukotriene ADJ
formation NOUN
but CCONJ
> X
I PRON
'm AUX
not PART
aware ADJ
of ADP
tea NOUN
or CCONJ
turmeric ADJ
containing VERB
lipoxygenase NOUN
inhibitors NOUN
. PUNCT
  SPACE
ForIf PROPN
you PRON
do AUX
a DET
MEDLINE PROPN
search NOUN
on ADP
" PUNCT
turmeric ADJ
" PUNCT
you PRON
'll AUX
see VERB
that SCONJ
it PRON
is AUX
a DET
potentlipoxygenase NOUN
inhibitor NOUN
which PRON
is AUX
being AUX
investigated VERB
in ADP
a DET
number NOUN
of ADP
areas NOUN
. PUNCT
I'm NOUN
in ADP
cardiology NOUN
and CCONJ
about ADV
4 NUM
years NOUN
ago ADV
the DET
cardiothoracic NOUN
surgery NOUN
lab NOUN
at ADP
myhospital PROPN
compared VERB
the DET
effect NOUN
of ADP
a DET
teaspoon NOUN
of ADP
dissolved VERB
turmeric NOUN
vs. ADP
a DET
$ SYM
2000bolus NUM
of ADP
tPA PROPN
in ADP
preventing VERB
myocardial ADJ
reperfusion NOUN
injury NOUN
in ADP
a DET
perfusedLangendorff ADJ
sheep NOUN
heart NOUN
. PUNCT
The DET
turmeric NOUN
was AUX
more ADV
effective ADJ
: PUNCT
-)A ADJ
colleague NOUN
of ADP
mine NOUN
in ADP
the DET
School PROPN
of ADP
Pharmacy PROPN
( PUNCT
Dr. PROPN
Ron PROPN
Kohen PROPN
) PUNCT
has AUX
a DET
paper NOUN
" PUNCT
inpress NOUN
" PUNCT
on ADP
the DET
free ADJ
radical ADJ
scavenging ADJ
activity NOUN
and CCONJ
antioxidant ADJ
activity NOUN
of ADP
tea NOUN
. PUNCT
Joshbackon@VMS.HUJI.AC.IL X
> X
bad ADJ
inflammation NOUN
, PUNCT
steroids NOUN
are AUX
used VERB
but CCONJ
for ADP
a DET
mild ADJ
case NOUN
, PUNCT
the DET
side NOUN
effects NOUN
> X
are AUX
not PART
worth ADJ
the DET
small ADJ
benefit NOUN
gained VERB
by ADP
steroid NOUN
use NOUN
. PUNCT
  SPACE
Upjohn PROPN
is AUX
developing VERB
> X
a DET
new ADJ
lipoxygenase NOUN
inhibitor NOUN
that PRON
should AUX
greatly ADV
help VERB
deal VERB
with ADP
> X
inflammatory ADJ
diseases NOUN
but CCONJ
it PRON
's AUX
not PART
available ADJ
yet ADV
. PUNCT
> X
> X
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59200From NUM
: PUNCT
mhollowa@ic.sunysb.edu PROPN
( PUNCT
Michael PROPN
Holloway)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Wanted VERB
: PUNCT
Rat NOUN
cell NOUN
line NOUN
( PUNCT
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
c.)In PROPN
article NOUN
< X
roos.49@Operoni PROPN
. PUNCT
Helsinki PROPN
. PUNCT
FI PROPN
> X
roos@Operoni PROPN
. PUNCT
Helsinki PROPN
. PUNCT
FI PROPN
( PUNCT
Christophe PROPN
Roos PROPN
) PUNCT
writes:>I PRON
am AUX
looking VERB
for ADP
a DET
rat ADJ
cell NOUN
line NOUN
of ADP
adrenal ADJ
gland PROPN
/ SYM
cortical ADJ
cell NOUN
  SPACE
-type PROPN
. PUNCT
I PRON
> X
have AUX
been AUX
looking VERB
at ADP
ATCC PROPN
without ADP
success NOUN
and CCONJ
would AUX
very ADV
much ADV
appreciate VERB
any DET
> X
help NOUN
. PUNCT
I PRON
shot VERB
off ADP
a DET
response NOUN
to ADP
this DET
last ADJ
night NOUN
that PRON
I PRON
've AUX
tried VERB
to PART
cancel VERB
. PUNCT
  SPACE
It PRON
was AUX
only ADV
a DET
few ADJ
minutes NOUN
later ADV
while SCONJ
driving VERB
home ADV
that PRON
I PRON
remembered VERB
that SCONJ
your PRON
message NOUN
does AUX
specifically ADV
say VERB
cortical ADJ
. PUNCT
  SPACE
My PRON
first ADJ
reaction NOUN
had AUX
been AUX
to PART
suggestthe VERB
PC12 PROPN
pheochromocytoma NOUN
line NOUN
. PUNCT
  SPACE
That DET
may AUX
still ADV
be AUX
a DET
good ADJ
compromise NOUN
, PUNCT
dependingon VERB
what PRON
you PRON
're AUX
doing VERB
. PUNCT
  SPACE
Have AUX
you PRON
concidered VERB
using VERB
a DET
mouse NOUN
cell NOUN
line NOUN
from ADP
one NUM
of ADP
the DET
SV40 PROPN
T PROPN
antigen NOUN
transgenic ADJ
lines NOUN
? PUNCT
  SPACE
Another DET
alternative NOUN
might AUX
be AUX
primarycells NOUN
from ADP
bovine ADJ
adrenal ADJ
cortex NOUN
. PUNCT
  SPACE
MikeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59201From NUM
: PUNCT
jkjec@westminster.ac.uk PUNCT
( PUNCT
Shazad NOUN
Barlas)Subject NOUN
: PUNCT
NEED VERB
HELP NOUN
ON ADP
SCARING NOUN
PLEASEHi NOUN
... PUNCT
I PRON
need VERB
information NOUN
on ADP
scaring NOUN
. PUNCT
Particularly ADV
as SCONJ
a DET
result NOUN
of ADP
grazing VERB
the DET
skinI PROPN
really ADV
wanted VERB
to PART
know VERB
of ADP
	 SPACE
1 NUM
. PUNCT
would AUX
a DET
scar PROPN
occur VERB
as SCONJ
a DET
result NOUN
of ADP
grazing NOUN
	 SPACE
2 NUM
. PUNCT
if SCONJ
yes INTJ
, PUNCT
then ADV
would AUX
it PRON
disappear VERB
? PUNCT
	 SPACE
3 NUM
. PUNCT
how ADV
long ADV
does AUX
a DET
graze NOUN
take VERB
to PART
heal VERB
? PUNCT
	 SPACE
4 NUM
. PUNCT
will AUX
hair NOUN
grow VERB
on ADP
it PRON
once SCONJ
it PRON
has AUX
healed VERB
? PUNCT
	 SPACE
5 NUM
. PUNCT
what PRON
is AUX
' PUNCT
scar PROPN
tissue NOUN
' PUNCT
? PUNCT
	 SPACE
6 NUM
. PUNCT
should AUX
antiseptic ADJ
cream NOUN
be AUX
applied VERB
to ADP
it PRON
regularly ADV
? PUNCT
	 SPACE
7 NUM
. PUNCT
is AUX
it PRON
better ADJ
to PART
keep VERB
it PRON
exposed VERB
and CCONJ
let VERB
fresh ADJ
air NOUN
at ADP
it?Please PROPN
help NOUN
- PUNCT
any DET
info NOUN
- PUNCT
no ADV
matter ADV
how ADV
small ADJ
will AUX
be AUX
appreciated VERB
greatly ADV
. PUNCT
BUT CCONJ
PLEASE PROPN
E ADJ
- ADJ
MAIL ADJ
ME NOUN
DIRECTLY NOUN
because SCONJ
I PRON
do AUX
nt PART
read VERB
this DET
newsgroup NOUN
often ADV
( PUNCT
thisis VERB
my PRON
first ADJ
time NOUN
) PUNCT
. PUNCT
   						 SPACE
.... PUNCT
Shaz PROPN
.... PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59202From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)Summary NUM
of ADP
thread NOUN
: PUNCT
A DET
person NOUN
has AUX
Crohns PROPN
, PUNCT
raw ADJ
vegetables NOUN
cause VERB
problems NOUN
( PUNCT
unspecified)Steve PROPN
Holland PROPN
replies VERB
: PUNCT
  SPACE
patient NOUN
may AUX
have AUX
mild ADJ
obstruction NOUN
. PUNCT
  SPACE
Avoid VERB
thingsthat PRON
would AUX
plug VERB
her PRON
up ADP
. PUNCT
  SPACE
Crohn PROPN
's PART
has AUX
no DET
dietary ADJ
restriction NOUN
in ADP
general ADJ
. PUNCT
In ADP
article NOUN
< X
1993Apr22.210631.13300@aio.jsc.nasa.gov>,spenser@fudd.jsc.nasa.gov PROPN
( PUNCT
S. PROPN
Spenser PROPN
Aden PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
Interesting ADJ
statements NOUN
, PUNCT
simply ADV
because SCONJ
I PRON
have AUX
been AUX
told VERB
otherwise ADV
. PUNCT
  SPACE
I PRON
'm AUX
> X
certainly ADV
not PART
questioning VERB
Steve PROPN
's PART
claims NOUN
, PUNCT
as SCONJ
for ADP
one NUM
I PRON
am AUX
not PART
a DET
doctor NOUN
, PUNCT
and CCONJ
I PRON
> X
agree VERB
that SCONJ
foods NOUN
do AUX
n't PART
bring VERB
on ADP
the DET
recurrence NOUN
of ADP
Crohn PROPN
's PART
. PUNCT
  SPACE
But CCONJ
inflammation NOUN
> X
can AUX
be AUX
either CCONJ
mildly ADV
or CCONJ
DRASTICALLY NOUN
enhanced VERB
due ADP
to ADP
food NOUN
. PUNCT
The DET
feeling NOUN
obout ADP
this DET
has AUX
changed VERB
in ADP
the DET
GI PROPN
community NOUN
. PUNCT
  SPACE
The DET
currentfeelingis NOUN
that SCONJ
inflammation NOUN
is AUX
not PART
induced VERB
by ADP
food NOUN
. PUNCT
  SPACE
There PRON
is AUX
even ADV
evidence NOUN
thatpatients NOUN
deprived VERB
of ADP
food NOUN
have AUX
mucosal ADJ
atrophy NOUN
due ADJ
to ADP
lack NOUN
of ADP
stimulationofintestinal ADJ
growth NOUN
factors NOUN
. PUNCT
  SPACE
There PRON
is AUX
now ADV
interest NOUN
in ADP
providing VERB
smallamountsof ADJ
nasogastric ADJ
feeding NOUN
to ADP
patients NOUN
on ADP
IV PROPN
nutrition NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
digress VERB
. PUNCT
  SPACE
Symptoms NOUN
can AUX
be AUX
drastically ADV
enhanced VERB
by ADP
food NOUN
, PUNCT
but CCONJ
not PART
inflammation NOUN
. PUNCT
> X
Having VERB
had AUX
one NUM
major ADJ
obstruction NOUN
resulting VERB
in ADP
resection NOUN
( PUNCT
is AUX
that SCONJ
a DET
good ADJ
enough ADJ
> X
caveat NOUN
:-) PUNCT
, PUNCT
I PRON
was AUX
told VERB
that SCONJ
a DET
* PUNCT
LOW ADJ
RESIDUE PROPN
* PUNCT
diet NOUN
is AUX
called VERB
for ADP
. PUNCT
  SPACE
Basically ADV
, PUNCT
> X
the DET
idea NOUN
is AUX
that SCONJ
if SCONJ
there PRON
is AUX
inflammation NOUN
of ADP
the DET
gut NOUN
( PUNCT
which PRON
may AUX
not PART
be AUX
> X
realized VERB
by ADP
the DET
patient NOUN
) PUNCT
, PUNCT
any DET
residue NOUN
in ADP
the DET
system NOUN
can AUX
be AUX
caught VERB
in ADP
the DET
folds NOUN
> X
of ADP
inflammation NOUN
and CCONJ
constantly ADV
irritate ADJ
, PUNCT
thus ADV
exacerbating VERB
the DET
problem NOUN
. PUNCT
> X
Therefore ADV
, PUNCT
anything PRON
that PRON
does AUX
n't PART
digest VERB
completely ADV
by ADP
the DET
point NOUN
of ADP
common ADJ
> X
inflammation NOUN
should AUX
be AUX
avoided VERB
. PUNCT
  SPACE
With ADP
what PRON
I PRON
've AUX
been AUX
told VERB
is AUX
typical ADJ
Crohn PROPN
's PART
, PUNCT
> X
of ADP
the DET
terminal PROPN
ileum NOUN
, PUNCT
my PRON
diet NOUN
should AUX
be AUX
low ADJ
residue ADJ
, PUNCT
consisting VERB
of ADP
: PUNCT
> X
> X
Completely ADV
out ADV
- PUNCT
never ADV
again ADV
- PUNCT
items NOUN
: PUNCT
> X
	 SPACE
o INTJ
corn NOUN
( PUNCT
kernel NOUN
husk NOUN
does AUX
n't PART
digest VERB
... PUNCT
most ADJ
of ADP
us PRON
know VERB
this DET
:-) PUNCT
> X
	 SPACE
o INTJ
popcorn ADJ
( PUNCT
same ADJ
) PUNCT
> X
	 SPACE
o INTJ
dried VERB
( PUNCT
dehydrated VERB
) PUNCT
fruit NOUN
and CCONJ
fruit NOUN
skins NOUN
> X
	 SPACE
o INTJ
nuts NOUN
( PUNCT
Very ADV
tough ADJ
when ADV
it PRON
comes VERB
to ADP
giving VERB
up ADP
some DET
fudge NOUN
: PUNCT
-)The ADJ
low ADJ
residue ADJ
diet NOUN
is AUX
appropriate ADJ
for ADP
you PRON
if SCONJ
you PRON
still ADV
have AUX
obstructions NOUN
. PUNCT
Again ADV
, PUNCT
it PRON
is AUX
not PART
felt VERB
that SCONJ
food NOUN
causes VERB
inflammation NOUN
. PUNCT
  SPACE
These DET
foods NOUN
areavoided VERB
because SCONJ
they PRON
may AUX
get AUX
stuck ADJ
. PUNCT
  SPACE
I PRON
'd AUX
go VERB
ahead ADV
and CCONJ
have AUX
thefudge NOUN
, PUNCT
though SCONJ
;-) NOUN
  SPACE
. PUNCT
> X
Discouraged VERB
greatly ADV
: PUNCT
> X
	 SPACE
o INTJ
raw ADJ
vegetables NOUN
( PUNCT
too ADV
fibrous ADJ
) PUNCT
> X
	 SPACE
o INTJ
wheat NOUN
and CCONJ
raw ADJ
grain NOUN
breads VERB
> X
	 SPACE
o INTJ
exotic ADJ
lettuce NOUN
( PUNCT
iceberg PROPN
is AUX
ok ADJ
since SCONJ
it PRON
's AUX
apparently ADV
mostly ADV
water NOUN
) PUNCT
> X
	 SPACE
o INTJ
greens PROPN
( PUNCT
turnip NOUN
, PUNCT
mustard NOUN
, PUNCT
kale PROPN
, PUNCT
etc X
... PUNCT
) PUNCT
> X
	 SPACE
o INTJ
little ADJ
seeds NOUN
, PUNCT
like SCONJ
sesame NOUN
( PUNCT
try VERB
getting VERB
an DET
Arby PROPN
's PART
without ADP
it PRON
! PUNCT
) PUNCT
> X
	 SPACE
o INTJ
long ADJ
grain NOUN
and CCONJ
wild ADJ
rice NOUN
( PUNCT
husky PROPN
) PUNCT
> X
	 SPACE
o INTJ
beans NOUN
( PUNCT
you PRON
'll AUX
generate VERB
enough ADJ
gas NOUN
alone ADV
without ADP
them PRON
! PUNCT
) PUNCT
> X
	 SPACE
o INTJ
BASICALLY PROPN
anything PRON
that PRON
requires VERB
heavy ADJ
digestive ADJ
processing NOUN
> X
> X
I PRON
was AUX
told VERB
that SCONJ
the DET
more ADV
processed VERB
the DET
food NOUN
the DET
better ADJ
! PUNCT
( PUNCT
rather ADV
ironic ADJ
in ADP
this DET
> X
day NOUN
and CCONJ
age NOUN
) PUNCT
. PUNCT
  SPACE
The DET
whole ADJ
point NOUN
is AUX
PREVENTATIVE ADJ
... PUNCT
you PRON
want VERB
to PART
give VERB
your PRON
> X
system NOUN
as SCONJ
little ADJ
chance NOUN
to PART
inflame VERB
as SCONJ
possible ADJ
. PUNCT
  SPACE
I PRON
was AUX
told VERB
that SCONJ
among ADP
the DET
> X
NUMEROUS ADJ
things NOUN
that PRON
were AUX
heavily ADV
discouraged VERB
( PUNCT
I PRON
only ADV
listed VERB
a DET
few ADJ
) PUNCT
, PUNCT
to PART
try VERB
> X
the DET
ones NOUN
I PRON
wanted VERB
and CCONJ
see VERB
how ADV
I PRON
felt VERB
. PUNCT
  SPACE
If SCONJ
it PRON
's AUX
bad ADJ
, PUNCT
do AUX
n't PART
do AUX
it PRON
again ADV
! PUNCT
> X
Remember VERB
though SCONJ
that SCONJ
this DET
was AUX
while SCONJ
I PRON
was AUX
in ADP
remission NOUN
. PUNCT
  SPACE
For ADP
Veggies NOUN
: PUNCT
cook VERB
the DET
> X
daylights NOUN
out SCONJ
of ADP
them PRON
. PUNCT
  SPACE
I PRON
prefer VERB
steaming VERB
... PUNCT
I PRON
think VERB
it PRON
's AUX
cooks NOUN
more ADJ
> X
thoroughly ADV
- PUNCT
you PRON
're AUX
mileage NOUN
may AUX
vary VERB
. PUNCT
> X
> X
As SCONJ
with ADP
anything PRON
else ADV
, PUNCT
CHECK VERB
WITH ADP
YOUR PRON
DOCTOR NOUN
. PUNCT
  SPACE
Do AUX
n't PART
just ADV
take VERB
my PRON
word NOUN
. PUNCT
  SPACE
But CCONJ
> X
this DET
is AUX
the DET
info NOUN
I PRON
've AUX
been AUX
given VERB
, PUNCT
and CCONJ
it PRON
may AUX
be AUX
a DET
starting NOUN
point NOUN
for ADP
> NUM
discussion NOUN
. PUNCT
  SPACE
Good ADJ
luck NOUN
! PUNCT
> X
Spencer PROPN
makes VERB
an DET
especially ADV
good ADJ
point NOUN
in ADP
having VERB
an DET
observant ADJ
andinformed ADV
patient ADJ
. PUNCT
  SPACE
Would AUX
that SCONJ
many ADJ
patients NOUN
be AUX
able ADJ
to PART
tell VERB
whatcauses NOUN
them PRON
problems NOUN
. PUNCT
  SPACE
The DET
digestive ADJ
processing NOUN
idea NOUN
is AUX
changing VERB
, PUNCT
butif ADP
a DET
food NOUN
causes VERB
problems NOUN
, PUNCT
avoid VERB
them PRON
. PUNCT
  SPACE
Be AUX
sure ADJ
that SCONJ
the DET
foods NOUN
are AUX
tested VERB
a DET
second ADJ
time NOUN
to PART
be AUX
sure ADJ
the DET
food NOUN
is AUX
a DET
real ADJ
cause NOUN
. PUNCT
  SPACE
Crohn'scommonly ADV
causes VERB
intermittent ADJ
symptoms NOUN
and CCONJ
some DET
patients NOUN
end VERB
up ADP
withseverly ADV
restricted ADJ
diets NOUN
that PRON
take VERB
months NOUN
to PART
renormalize VERB
. PUNCT
There PRON
was AUX
a DET
good ADJ
article NOUN
in ADP
the DET
CCFA PROPN
newsletter NOUN
recently ADV
that SCONJ
discussedthe DET
issue NOUN
of ADP
dietary ADJ
restriction NOUN
of ADP
fiber NOUN
. PUNCT
  SPACE
It PRON
would AUX
be AUX
worth ADJ
readingto NOUN
anyone PRON
with ADP
an DET
interest NOUN
in ADP
Crohn's PROPN
. PUNCT
And CCONJ
, PUNCT
as SCONJ
I PRON
always ADV
say VERB
when ADV
dealing VERB
with ADP
Crohn PROPN
's PART
, PUNCT
as SCONJ
does AUX
Spencer PROPN
, PUNCT
Good PROPN
Luck!Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59203From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
1993Apr22.202051.1@vms.ocom.okstate.edu>,banschbach@vms.ocom.okstate.edu NUM
wrote VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
1r6g8fINNe88@ceti.cs.unc.edu NUM
> X
, PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
A DET
friend NOUN
has AUX
what PRON
is AUX
apparently ADV
a DET
fairly ADV
minor ADJ
case NOUN
of ADP
Crohn PROPN
's PART
> X
> X
disease PROPN
. PUNCT
> X
> X
> X
> X
But CCONJ
she PRON
ca AUX
n't PART
seem VERB
to PART
eat VERB
certain ADJ
foods NOUN
, PUNCT
such ADJ
as SCONJ
fresh ADJ
vegetables NOUN
, PUNCT
> X
> X
without ADP
discomfort PROPN
, PUNCT
and CCONJ
of ADP
course NOUN
she PRON
wants VERB
to PART
avoid VERB
a DET
recurrence NOUN
. PUNCT
> X
> X
> X
> X
Her PRON
question NOUN
is AUX
: PUNCT
are AUX
there PRON
any DET
nutritionists NOUN
who PRON
specialize VERB
in ADP
the DET
> X
> X
problems NOUN
of ADP
people NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
? PUNCT
> X
> X
> X
> X
( PUNCT
I PRON
saw VERB
the DET
suggestion NOUN
of ADP
lipoxygnase PROPN
inhibitors NOUN
like SCONJ
tea NOUN
and CCONJ
turmeric NOUN
) PUNCT
. PUNCT
> X
> X
> X
> X
Thanks NOUN
in ADP
advance NOUN
, PUNCT
> X
> X
John PROPN
Eyles PROPN
> X
> X
All DET
your PRON
friend NOUN
really ADV
has AUX
to PART
do AUX
is AUX
find VERB
a DET
Registered ADJ
Dietician(RD PROPN
) PUNCT
. PUNCT
  SPACE
While SCONJ
> X
most ADJ
work NOUN
in ADP
hospitals NOUN
and CCONJ
clinics NOUN
, PUNCT
many ADJ
major ADJ
cities NOUN
will AUX
have AUX
RD PROPN
's PART
who PRON
> X
are AUX
in ADP
" PUNCT
private ADJ
practice NOUN
" PUNCT
so ADV
to PART
speak VERB
. PUNCT
  SPACE
Many ADJ
physicans NOUN
will AUX
refer VERB
their PRON
> NOUN
patients NOUN
with ADP
Crohn PROPN
's PART
disease NOUN
to ADP
RD PROPN
's PART
for ADP
dietary ADJ
help NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
can AUX
get AUX
> X
your PRON
friend NOUN
's PART
physician NOUN
to PART
make VERB
a DET
referral ADJ
, PUNCT
medical ADJ
insurance NOUN
should AUX
pay VERB
for ADP
> X
the DET
RD PROPN
's PART
services NOUN
just ADV
like SCONJ
the DET
services NOUN
of ADP
a DET
physical ADJ
therapist NOUN
. PUNCT
  SPACE
The DET
> X
better ADJ
medical ADJ
insurance NOUN
plans NOUN
will AUX
cover VERB
this DET
but CCONJ
even ADV
if SCONJ
your PRON
friend NOUN
's PART
> X
plan NOUN
does AUX
n't PART
, PUNCT
it PRON
would AUX
be AUX
well ADV
worth ADJ
the DET
cost NOUN
to PART
get AUX
on ADP
a DET
good ADJ
diet NOUN
to ADP
> X
control VERB
the DET
intestinal ADJ
discomfort NOUN
and CCONJ
help VERB
the DET
intestinal ADJ
lining NOUN
heal NOUN
. PUNCT
> X
Crohn PROPN
's PART
disease NOUN
is AUX
an DET
inflammatory ADJ
disease NOUN
of ADP
the DET
intestinal ADJ
lining NOUN
and CCONJ
> X
lipoxygenase NOUN
inhibitors NOUN
may AUX
help VERB
by ADP
decreasing VERB
leukotriene ADJ
formation NOUN
but CCONJ
> X
I PRON
'm AUX
not PART
aware ADJ
of ADP
tea NOUN
or CCONJ
turmeric ADJ
containing VERB
lipoxygenase NOUN
inhibitors NOUN
. PUNCT
  SPACE
For ADP
> X
bad ADJ
inflammation NOUN
, PUNCT
steroids NOUN
are AUX
used VERB
but CCONJ
for ADP
a DET
mild ADJ
case NOUN
, PUNCT
the DET
side NOUN
effects NOUN
> X
are AUX
not PART
worth ADJ
the DET
small ADJ
benefit NOUN
gained VERB
by ADP
steroid NOUN
use NOUN
. PUNCT
  SPACE
Upjohn PROPN
is AUX
developing VERB
> X
a DET
new ADJ
lipoxygenase NOUN
inhibitor NOUN
that PRON
should AUX
greatly ADV
help VERB
deal VERB
with ADP
> X
inflammatory ADJ
diseases NOUN
but CCONJ
it PRON
's AUX
not PART
available ADJ
yet ADV
. PUNCT
> X
> X
Marty PROPN
B. PROPN
Be AUX
sure ADJ
a DET
dietician NOUN
is AUX
up ADP
to ADP
date NOUN
on ADP
Crohn PROPN
's PART
and CCONJ
Ulcerative PROPN
Colitis PROPN
. PUNCT
  SPACE
Previously ADV
, PUNCT
low ADJ
residue ADJ
diets NOUN
were AUX
recommended VERB
, PUNCT
but CCONJ
this DET
advice NOUN
hasnow NOUN
changed VERB
. PUNCT
  SPACE
Also ADV
, PUNCT
there PRON
will AUX
be AUX
differences NOUN
in ADP
advice NOUN
in ADP
patients NOUN
withand VERB
without ADP
obstructuon NOUN
remaining VERB
, PUNCT
so CCONJ
input NOUN
by ADP
the DET
physician NOUN
will AUX
be AUX
important ADJ
. PUNCT
  SPACE
I PRON
find VERB
the DET
dietician ADJ
very ADV
important ADJ
in ADP
my PRON
practice NOUN
, PUNCT
and CCONJ
I PRON
send VERB
most ADJ
of ADP
my PRON
patients NOUN
to ADP
a DET
dietician NOUN
in ADP
the DET
course NOUN
of ADP
seeingthem NOUN
, PUNCT
since SCONJ
dieticians NOUN
know VERB
so ADV
much ADV
better ADJ
how ADV
to PART
get AUX
diet NOUN
historiesand NOUN
evaluate VERB
the DET
contents NOUN
of ADP
a DET
diet NOUN
than SCONJ
I PRON
do AUX
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59204From NUM
: PUNCT
jag@ampex.com PROPN
( PUNCT
Rayaz PROPN
Jagani)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
19609@pitt NUM
. PUNCT
UUCP PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes:>In X
article NOUN
< X
3794@nlsun1.oracle.nl NUM
> X
rgasch@nl.oracle.com NOUN
( PUNCT
Robert PROPN
Gasch PROPN
) PUNCT
writes:>>>>In SYM
many ADJ
European ADJ
countries NOUN
Homepathy PROPN
is AUX
accepted VERB
as SCONJ
a DET
method NOUN
of ADP
curing>>(or PROPN
at ADP
least ADJ
alleiating VERB
) PUNCT
many ADJ
conditions NOUN
to ADP
which PRON
modern ADJ
medicine NOUN
has AUX
> X
> X
no DET
answer NOUN
. PUNCT
In ADP
most ADJ
of ADP
these DET
countries NOUN
insurance NOUN
pays VERB
for ADP
the DET
> X
> X
treatments.>>>>Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
Not PART
by ADP
scientists NOUN
. PUNCT
  SPACE
There PRON
are AUX
people NOUN
> X
in ADP
every DET
country NOUN
who PRON
waste VERB
time NOUN
and CCONJ
money NOUN
on ADP
quackery.>In PROPN
Britain PROPN
and CCONJ
Scandanavia PROPN
, PUNCT
where ADV
I PRON
have AUX
worked VERB
, PUNCT
it PRON
was AUX
not PART
paid VERB
for.>What PUNCT
are AUX
" PUNCT
most ADJ
of ADP
these DET
countries NOUN
? PUNCT
" PUNCT
  SPACE
I PRON
do AUX
n't PART
believe VERB
you.>>When INTJ
were AUX
you PRON
in ADP
Britain PROPN
? PUNCT
, PUNCT
my PRON
information NOUN
is AUX
different ADJ
. PUNCT
From ADP
Miranda PROPN
Castro PROPN
, PUNCT
_ PROPN
The DET
Complete PROPN
Homeopathy PROPN
Handbook_,ISBN PROPN
0 NUM
- SYM
312 NUM
- PUNCT
06320 NUM
- PUNCT
2 NUM
, PUNCT
oringinally ADV
published VERB
in ADP
Britain PROPN
in ADP
1990.From NUM
Page NOUN
10 NUM
, PUNCT
.. PUNCT
and CCONJ
in ADP
1946 NUM
, PUNCT
when ADV
the DET
National PROPN
Health PROPN
Service PROPN
was AUX
established VERB
, PUNCT
homeopathy NOUN
was AUX
included VERB
as SCONJ
an DET
officially ADV
approved VERB
methodof ADJ
treatment NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59205From NUM
: PUNCT
tony@nexus.yorku.ca PROPN
( PUNCT
Anthony PROPN
Wallis)Subject PROPN
: PUNCT
" PUNCT
Choleric PROPN
" PUNCT
and CCONJ
The DET
Great PROPN
NT PROPN
/ SYM
NF PROPN
Semantic PROPN
War.[Cross NOUN
- PUNCT
posted VERB
from ADP
alt.psychology.personality NOUN
since SCONJ
it PRON
talks VERB
about ADP
physician NOUN
's PART
personalities NOUN
. PUNCT
  SPACE
Apologies PROPN
to ADP
sci.med VERB
readers NOUN
not PART
familiar ADJ
with ADP
the DET
Myers PROPN
- PUNCT
Briggs PROPN
" PUNCT
NT PROPN
/ SYM
NF PROPN
" PUNCT
personality NOUN
terms NOUN
. PUNCT
  SPACE
But CCONJ
, PUNCT
in ADP
a DET
word NOUN
or CCONJ
two NUM
, PUNCT
the DET
NTs NOUN
( PUNCT
iNtuitive->Thinkers NOUN
) PUNCT
are AUX
approximately ADV
your PRON
philosophy NOUN
/ SYM
science NOUN
/ SYM
tech NOUN
pragmatic ADJ
types NOUN
, PUNCT
and CCONJ
the DET
NFs PROPN
( PUNCT
iNtuitive PROPN
- PUNCT
Feelers NOUN
) PUNCT
are AUX
your PRON
humanities NOUN
/ SYM
social-"science"/theology NOUN
idealistic ADJ
types NOUN
. PUNCT
  SPACE
They PRON
hate VERB
each DET
others NOUN
' PART
guts NOUN
( PUNCT
:-)) PUNCT
but CCONJ
tend VERB
to PART
inter VERB
- VERB
marry VERB
. PUNCT
The DET
letter NOUN
" PUNCT
J PROPN
" PUNCT
is AUX
a DET
reference NOUN
to ADP
conscienciousness NOUN
/ SYM
decisiveness.]Jon PROPN
Noring PROPN
emits VERB
typical ADJ
NF NOUN
- PUNCT
type NOUN
stuff NOUN
> PUNCT
[ PUNCT
Physicians PROPN
] PUNCT
are AUX
just ADV
responding VERB
in ADP
their PRON
natural ADJ
way NOUN
: PUNCT
> X
Hyper PROPN
- PUNCT
Choleric PROPN
Syndrome PROPN
( PUNCT
HCS PROPN
) PUNCT
. PUNCT
  SPACE
.. PUNCT
> X
.. PUNCT
it PRON
is AUX
fascinating ADJ
that SCONJ
a DET
disproportionate ADJ
number NOUN
of ADP
> X
physicians NOUN
will AUX
type VERB
out ADP
as SCONJ
NT PROPN
.. PUNCT
> X
One NUM
driving VERB
characteristic NOUN
of ADP
an DET
NT PROPN
, PUNCT
especially ADV
an DET
NTJ PROPN
, PUNCT
is AUX
their PRON
obvious ADJ
> X
choleric ADJ
behavior NOUN
( PUNCT
driver NOUN
, PUNCT
type NOUN
A NOUN
, PUNCT
etc X
. PUNCT
) PUNCT
- PUNCT
the DET
extreme ADJ
emotional ADJ
need NOUN
to PART
> X
control NOUN
, PUNCT
to PART
lead VERB
, PUNCT
and/or CCONJ
to PART
be AUX
the DET
best ADJ
or CCONJ
the DET
most ADV
competent ADJ
. PUNCT
.. PUNCT
Please INTJ
get AUX
it PRON
right ADJ
, PUNCT
Jon.(This PROPN
NTJ PROPN
has AUX
a DET
strong ADJ
desire NOUN
to PART
correct VERB
semantic ADJ
mistakes NOUN
, PUNCT
because SCONJ
the DET
NFs NOUN
of ADP
this DET
world NOUN
are AUX
fouling VERB
the DET
once ADV
- PUNCT
pristine ADJ
NT PROPN
intellectual ADJ
nest NOUN
with ADP
their PRON
verbal ADJ
poop.)The ADJ
dominant ADJ
correlation NOUN
is AUX
NT PROPN
< X
- PUNCT
> X
Phlegmatic PROPN
( PUNCT
and CCONJ
_ AUX
not PART
_ VERB
NT PROPN
< X
- PUNCT
> X
Choleric).One PUNCT
of ADP
the DET
semantic ADJ
roots NOUN
of ADP
" PUNCT
choleric ADJ
" PUNCT
is AUX
the DET
idea NOUN
of ADP
" PUNCT
hot ADJ
" PUNCT
( PUNCT
emotional)and X
one NUM
of ADP
the DET
semantic ADJ
roots NOUN
of ADP
" PUNCT
phlegmatic ADJ
" PUNCT
is AUX
" PUNCT
cold ADJ
" PUNCT
( PUNCT
unemotional).Here NOUN
is AUX
a DET
thumbnail NOUN
sketch NOUN
( PUNCT
taken VERB
from ADP
Hans PROPN
Eysenck PROPN
, PUNCT
refering VERB
to ADP
Wundt)relating VERB
the DET
Ancient ADJ
Greek ADJ
quadratic ADJ
typology NOUN
with ADP
modern ADJ
terms:------------------------------------------------------------------------------ PROPN
                                 SPACE
Emotional PROPN
                                        SPACE
^ PROPN
     SPACE
( PUNCT
" PUNCT
Melancholic PROPN
" PUNCT
) PUNCT
                 SPACE
| PROPN
                     SPACE
( PUNCT
" PUNCT
Choleric PROPN
" PUNCT
) PUNCT
                                     SPACE
| ADP
                         SPACE
Thoughtful PROPN
Suspicious PROPN
     SPACE
| PROPN
    SPACE
Quickly ADV
- PUNCT
aroused VERB
Hotheaded PROPN
                  SPACE
Unhappy PROPN
Worried PROPN
    SPACE
| CCONJ
   SPACE
Egocentric PROPN
Histrionic PROPN
                           SPACE
Anxious ADJ
   SPACE
| PROPN
  SPACE
Exhibitonist PROPN
                              SPACE
Serious PROPN
| PROPN
Active PROPN
            SPACE
Unchangeable ADJ
< X
------------------------------------------------ PUNCT
> X
Changeable PROPN
                                SPACE
Calm PROPN
| PROPN
Playful PROPN
                                   SPACE
Reasonable PROPN
  SPACE
| ADP
  SPACE
Carefree PROPN
              SPACE
Steadfast PROPN
Persistent PROPN
   SPACE
| ADP
   SPACE
Hopeful ADJ
Sociable ADJ
     SPACE
Highly ADV
- PUNCT
principled VERB
Controlled VERB
    SPACE
| CCONJ
    SPACE
Controlled VERB
Easy PROPN
- PUNCT
going VERB
                                     SPACE
| PROPN
                  SPACE
( PUNCT
" PUNCT
Phlegmatic PROPN
" PUNCT
) PUNCT
                   SPACE
| PROPN
                     SPACE
( PUNCT
" PUNCT
Sanguine PROPN
" PUNCT
) PUNCT
                                     SPACE
| PROPN
                                     SPACE
v ADP
                               SPACE
Non PROPN
- ADJ
emotional------------------------------------------------------------------------------I ADJ
suspect NOUN
that SCONJ
your PRON
characterisation NOUN
of ADP
NTs NOUN
as SCONJ
" PUNCT
choleric ADJ
" PUNCT
is AUX
whatyou PROPN
psych NOUN
- PUNCT
types NOUN
call VERB
a DET
" PUNCT
projection NOUN
" PUNCT
of ADP
your PRON
own ADJ
NF NOUN
- PUNCT
ness NOUN
onto ADP
us PRON
. PUNCT
> X
Maybe ADV
we PRON
need VERB
more ADJ
NF PROPN
doctor NOUN
's PART
. PUNCT
  SPACE
: PUNCT
^)Perhaps PUNCT
in ADP
serious ADJ
pediatics NOUN
and CCONJ
" PUNCT
my PRON
little ADJ
boy NOUN
's AUX
got VERB
a DET
runnynose ADJ
, PUNCT
doctor NOUN
" PUNCT
general ADJ
practice NOUN
, PUNCT
but CCONJ
, PUNCT
please INTJ
God PROPN
, PUNCT
not PART
in ADP
neurology NOUN
, PUNCT
opthamology PROPN
, PUNCT
urology NOUN
, PUNCT
etc X
. PUNCT
etc X
. PUNCT
  SPACE
And CCONJ
NF PROPN
- PUNCT
psychiatry NOUN
should AUX
seperatefrom VERB
NT-(i.e ADJ
. PUNCT
real ADJ
) PUNCT
psychiatry NOUN
and CCONJ
be AUX
given VERB
a DET
new ADJ
name NOUN
.. PUNCT
something PRON
like SCONJ
" PUNCT
channeling VERB
" PUNCT
  SPACE
: PUNCT
-).--tony@nexus.yorku.ca CCONJ
= PUNCT
Tony PROPN
Wallis PROPN
, PUNCT
York PROPN
University PROPN
, PUNCT
Toronto PROPN
, PUNCT
CanadaNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59206From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
dpc47852@uxa.cso.uiuc.edu PROPN
( PUNCT
Daniel PROPN
Paul PROPN
Checkman PROPN
) PUNCT
writes:>bruce@Data PROPN
- PUNCT
IO.COM PROPN
( PUNCT
Bruce PROPN
Reynolds PROPN
) PUNCT
writes:>>>Anecedotal ADJ
evidence NOUN
is AUX
worthless ADJ
. PUNCT
  SPACE
Even ADV
doctors NOUN
who PRON
have AUX
been AUX
using VERB
a DET
drug>>or NOUN
treatment NOUN
for ADP
years NOUN
, PUNCT
and CCONJ
who PRON
swear VERB
it PRON
is AUX
effective ADJ
, PUNCT
are AUX
often ADV
suprised>>at VERB
the DET
results NOUN
of ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
MSG PROPN
causes NOUN
describable,>>reportable ADJ
, PUNCT
documentable ADJ
symptoms NOUN
should AUX
be AUX
pretty ADV
simple ADJ
to PART
discover VERB
. PUNCT
  SPACE
But CCONJ
it PRON
is AUX
quite DET
a DET
leap NOUN
in ADP
logic NOUN
to PART
observe VERB
one NUM
situation NOUN
where ADV
anecdotalevidence NOUN
led VERB
nowhere ADV
and CCONJ
therefore ADV
conclude VERB
that SCONJ
anecdotal ADJ
evidence NOUN
willNEVER PUNCT
lead NOUN
anywhere ADV
. PUNCT
  SPACE
I PRON
'm AUX
sure ADJ
somebody PRON
here ADV
can AUX
provide VERB
an DET
example NOUN
whereanecdotal ADJ
evidence NOUN
( PUNCT
and CCONJ
the DET
interpretation NOUN
of ADP
it PRON
) PUNCT
was AUX
upheld VERB
/ SYM
verified VERB
byfollow NOUN
- PUNCT
on ADP
rigorous ADJ
clinical ADJ
trials.>I NOUN
tend VERB
to PART
disagree- VERB
I PRON
think VERB
anecdotal ADJ
evidence NOUN
, PUNCT
provided VERB
there PRON
is AUX
a DET
lot NOUN
of ADP
it,>and NOUN
it PRON
is AUX
fairly ADV
consistent ADJ
, PUNCT
will AUX
is AUX
very ADV
important ADJ
. PUNCT
  SPACE
First ADV
, PUNCT
it PRON
points VERB
to ADP
the DET
> X
necessity NOUN
of ADP
doing VERB
a DET
study NOUN
, PUNCT
and CCONJ
second ADV
, PUNCT
it PRON
at ADP
least ADJ
says VERB
that SCONJ
the DET
effects NOUN
are AUX
> X
all DET
psychological ADJ
( PUNCT
or CCONJ
possibly ADV
allergy VERB
in ADP
this DET
case NOUN
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
've AUX
pointed VERB
out ADP
> X
person NOUN
's PART
" PUNCT
make NOUN
- PUNCT
believe VERB
" PUNCT
can AUX
easily ADV
be AUX
another DET
person NOUN
's PART
reality NOUN
... PUNCT
Good ADJ
point NOUN
. PUNCT
  SPACE
There PRON
has AUX
been AUX
a DET
tendency NOUN
by ADP
some DET
on ADP
this DET
newsgroup NOUN
to ADP
" PUNCT
circlethe NOUN
wagons NOUN
" PUNCT
to ADP
the DET
viewpoint NOUN
that SCONJ
anecdotal ADJ
medical ADJ
evidence NOUN
is AUX
worthless(maybe ADJ
to PART
counter VERB
the DET
claims NOUN
of ADP
those DET
who PRON
are AUX
presenting VERB
anecdotal ADJ
evidenceto ADJ
support VERB
controversial ADJ
subjects NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
hypothesis NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Butevidence PROPN
is AUX
evidence NOUN
- PUNCT
it PRON
requires VERB
a DET
" PUNCT
jury NOUN
" PUNCT
or CCONJ
a DET
process NOUN
to PART
sort VERB
it PRON
out ADP
anddetermine VERB
the DET
truth NOUN
from ADP
the DET
junk NOUN
. PUNCT
  SPACE
Medicine PROPN
must AUX
continue VERB
to PART
strive VERB
to PART
betterunderstand VERB
the DET
workings NOUN
of ADP
the DET
body NOUN
/ SYM
mind NOUN
for ADP
the DET
purpose NOUN
of ADP
alleviatingillness ADJ
- PUNCT
anecdotal ADJ
evidence NOUN
is AUX
just ADV
one NUM
piece NOUN
of ADP
the DET
puzzle NOUN
; PUNCT
  SPACE
it PRON
is AUX
notworthless NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
it PRON
can AUX
help VERB
focus VERB
limited ADJ
resources NOUN
in ADP
the DET
right ADJ
direction NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59207From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject X
: PUNCT
How ADV
To PART
Prevent VERB
Kidney PROPN
Stone PROPN
FormationI PROPN
got VERB
asked VERB
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
about ADP
vitamin NOUN
C NOUN
and CCONJ
oxalate VERB
production(toxic PROPN
, PUNCT
kidney NOUN
stone NOUN
formation NOUN
? PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
decided VERB
to PART
post VERB
my PRON
answer NOUN
here ADV
as ADV
well ADV
because SCONJ
of ADP
the DET
recent ADJ
question NOUN
about ADP
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Not PART
long ADV
after ADP
I PRON
got VERB
into ADP
Sci PROPN
. PUNCT
Med INTJ
. PUNCT
I PRON
got VERB
flamed VERB
by ADP
a DET
medical ADJ
fellow NOUN
for ADP
stating VERB
that SCONJ
magnesium NOUN
would AUX
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
. PUNCT
  SPACE
I PRON
'm AUX
going VERB
to PART
state VERB
it PRON
again ADV
here ADV
. PUNCT
But CCONJ
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
from ADP
forming VERB
is AUX
to PART
take VERB
B6 PROPN
supplements NOUN
. PUNCT
  SPACE
Read VERB
on ADP
to PART
find VERB
out ADP
why(I PROPN
have AUX
my PRON
asbestos NOUN
suit NOUN
on ADP
now ADV
guys).Vitamin PROPN
C PROPN
will AUX
form VERB
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
But CCONJ
large ADJ
doses NOUN
are AUX
needed VERB
( PUNCT
above ADP
6 NUM
grams NOUN
per ADP
day NOUN
) PUNCT
. PUNCT
	 SPACE
1 NUM
. PUNCT
Review NOUN
Article PROPN
" PUNCT
Nutritional ADJ
factors NOUN
in ADP
calcium NOUN
containing VERB
kidney NOUN
	    SPACE
stones NOUN
with ADP
particular ADJ
emphasis NOUN
on ADP
Vitamin PROPN
C PROPN
" PUNCT
Int PROPN
. PUNCT
Clin PROPN
. PUNCT
Nutr PROPN
. PUNCT
Rev. PROPN
	    SPACE
5(3):110 NUM
- SYM
129(1985).But NUM
glycine NOUN
also ADV
forms VERB
oxalic ADJ
acid(D PROPN
- PUNCT
amino NOUN
acid NOUN
oxidases NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
both CCONJ
glycine ADJ
and CCONJ
vitamin NOUN
C NOUN
, PUNCT
one NUM
of ADP
the DET
best ADJ
ways NOUN
to PART
drastically ADV
reduce VERB
this DET
production NOUN
is AUX
not PART
to PART
cut VERB
back ADP
on ADP
dietary ADJ
intake NOUN
of ADP
vitamin NOUN
C NOUN
or CCONJ
glycine NOUN
, PUNCT
but CCONJ
to PART
increase VERB
your PRON
intake NOUN
of ADP
vitamin NOUN
B6 NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
" PUNCT
Control NOUN
of ADP
hyperoxaluria NOUN
with ADP
large ADJ
doses NOUN
of ADP
pyridoxine NOUN
in ADP
	     SPACE
patients NOUN
with ADP
kidney NOUN
stones NOUN
" PUNCT
Int PROPN
. PUNCT
Urol PROPN
. PUNCT
Nephrol PROPN
. PUNCT
20(4):353 NUM
- PUNCT
59(1988 PROPN
) PUNCT
	     SPACE
200 NUM
to PART
500 NUM
mg NOUN
of ADP
B6 PROPN
each DET
day NOUN
significasntly ADV
decreased VERB
the DET
urinary PROPN
	     SPACE
excretion NOUN
of ADP
oxalate NOUN
over ADP
the DET
18 NUM
month NOUN
treatment NOUN
program NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
The DET
action NOUN
of ADP
pyridoxine NOUN
in ADP
primary ADJ
hyperoxaluria NOUN
" PUNCT
Clin PROPN
. PUNCT
Sci PROPN
. PROPN
38 NUM
	    SPACE
: PUNCT
277 NUM
- PUNCT
86(1970 PROPN
) PUNCT
. PUNCT
  SPACE
Patients NOUN
receiving VERB
at ADP
least ADJ
150 NUM
mg NOUN
B6 PROPN
each DET
day NOUN
	    SPACE
showed VERB
a DET
significant ADJ
reduction NOUN
in ADP
urinary ADJ
oxalate NOUN
levels NOUN
. PUNCT
For ADP
gylcine NOUN
, PUNCT
this DET
effect NOUN
is AUX
due ADJ
to ADP
increased VERB
transaminase NOUN
activity(B6 NOUN
is AUX
required VERB
for ADP
transaminase NOUN
activity NOUN
) PUNCT
which PRON
makes VERB
less ADJ
glycine ADJ
available ADJ
for ADP
oxidative ADJ
deamination(D NOUN
- ADJ
amino ADJ
acid NOUN
oxidases NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
vitamin NOUN
C NOUN
, PUNCT
the DET
effect NOUN
is AUX
quite ADV
different ADJ
. PUNCT
  SPACE
There PRON
are AUX
different ADJ
pathways NOUN
for ADP
vitamin NOUN
C NOUN
catabolism NOUN
. PUNCT
  SPACE
The DET
pathway NOUN
that PRON
leads VERB
to ADP
oxalic ADJ
acid NOUN
formation NOUN
will AUX
usually ADV
have AUX
17 NUM
to PART
40 NUM
% NOUN
of ADP
the DET
ingested ADJ
dose NOUN
going VERB
into ADP
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
But CCONJ
this DET
is AUX
highly ADV
variable ADJ
and CCONJ
the DET
vitamin NOUN
C NOUN
review NOUN
article NOUN
pointed VERB
out ADP
that SCONJ
unless SCONJ
the DET
dose NOUN
gets VERB
upto ADJ
6 NUM
grams NOUN
per ADP
day NOUN
, PUNCT
not PART
too ADV
much ADJ
vitamin NOUN
C NOUN
gets VERB
catabolized VERB
to PART
form VERB
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
At ADP
very ADV
high ADJ
doses NOUN
of ADP
vitamin NOUN
C(above NOUN
10 NUM
grams NOUN
per ADP
day NOUN
) PUNCT
, PUNCT
more ADJ
of ADP
the DET
extra ADJ
vitamin NOUN
C NOUN
( PUNCT
more ADJ
than SCONJ
40 NUM
% NOUN
conversion NOUN
) PUNCT
can AUX
end VERB
up ADP
as SCONJ
oxalic ADJ
acid NOUN
. PUNCT
  SPACE
In ADP
a DET
very ADV
early ADJ
study NOUN
on ADP
vitamin NOUN
C NOUN
and CCONJ
oxalic NOUN
production(Proc PROPN
. PUNCT
Soc VERB
. PUNCT
Exp PROPN
. PUNCT
Biol PROPN
. PUNCT
Med PROPN
. PUNCT
85:190 NUM
- PUNCT
92(1954 PROPN
) PUNCT
, PUNCT
intakes NOUN
of ADP
2 NUM
grams NOUN
per ADP
day NOUN
up ADP
to ADP
9 NUM
grams NOUN
per ADP
day NOUN
increased VERB
the DET
average ADJ
oxalic ADJ
acid NOUN
excretion NOUN
from ADP
38 NUM
mg NOUN
per ADP
day NOUN
up ADP
to ADP
178 NUM
mg NOUN
per ADP
day NOUN
. PUNCT
  SPACE
Until ADP
8 NUM
grams NOUN
per ADP
day NOUN
was AUX
reached VERB
, PUNCT
the DET
average ADJ
excreted PROPN
was AUX
increased VERB
by ADP
only ADV
3 NUM
to PART
12 NUM
mg NOUN
per ADP
day(2 PROPN
gram PROPN
dose PROPN
, PUNCT
4 NUM
gram PROPN
dose PROPN
, PUNCT
8 NUM
gram NOUN
dose PROPN
and CCONJ
9gram PROPN
dose PROPN
) PUNCT
. PUNCT
8 NUM
grams NOUN
jumped VERB
it PRON
to ADP
45 NUM
mg NOUN
over ADP
the DET
average ADJ
excretion NOUN
before ADP
supplementation NOUN
and CCONJ
9 NUM
grams NOUN
jumped VERB
it PRON
to ADP
150 NUM
mg NOUN
over ADP
the DET
average NOUN
before ADP
supplementation NOUN
. PUNCT
B6 PROPN
is AUX
required VERB
by ADP
more ADJ
enzymes NOUN
than SCONJ
any DET
other ADJ
vitamin NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
There PRON
are AUX
probably ADV
some DET
enzymes NOUN
that PRON
require VERB
vitamin NOUN
B6 NOUN
that PRON
we PRON
do AUX
n't PART
know VERB
about ADP
yet ADV
. PUNCT
  SPACE
Vitamin NOUN
C NOUN
catabolism NOUN
is AUX
still ADV
not PART
completely ADV
understood VERB
but CCONJ
the DET
speculation NOUN
is AUX
that SCONJ
this DET
other ADJ
pathway NOUN
that PRON
does AUX
not PART
form VERB
oxalic ADJ
acid NOUN
must AUX
have AUX
an DET
enzyme NOUN
in ADP
it PRON
that PRON
requires VERB
B6 PROPN
. PUNCT
  SPACE
Differences NOUN
in ADP
B6 PROPN
levels NOUN
could AUX
then ADV
explain VERB
the DET
very ADV
variable ADJ
production NOUN
of ADP
oxalic ADJ
acid NOUN
from ADP
a DET
vitamin NOUN
C NOUN
challenge(this PROPN
is AUX
not PART
the DET
preferred ADJ
route NOUN
of ADP
catabolism NOUN
) PUNCT
. PUNCT
  SPACE
Increasing VERB
your PRON
intake NOUN
of ADP
B6 PROPN
would AUX
then ADV
result VERB
in ADP
less ADJ
oxalic ADJ
acid NOUN
being AUX
formmed VERB
if SCONJ
you PRON
take VERB
vitamin NOUN
C NOUN
supplements NOUN
. PUNCT
  SPACE
Since SCONJ
the DET
typical ADJ
American ADJ
diet NOUN
is AUX
deficient ADJ
in ADP
B6 PROPN
, PUNCT
some DET
researchers NOUN
believe VERB
that SCONJ
the DET
main ADJ
cause NOUN
of ADP
calcium NOUN
- PUNCT
oxalate NOUN
kidney NOUN
stones NOUN
is AUX
B6 PROPN
deficiency(especially ADV
since SCONJ
so ADV
little ADJ
oxalic ADJ
acid NOUN
gets VERB
absorbed VERB
from ADP
the DET
gut NOUN
) PUNCT
. PUNCT
  SPACE
Diets NOUN
providing VERB
0 NUM
to ADP
130 NUM
mg NOUN
of ADP
oxalic ADJ
acid NOUN
per ADP
day NOUN
showed VERB
absolutely ADV
no DET
change NOUN
in ADP
urinary ADJ
excretion NOUN
of ADP
oxalate(Urol PROPN
Int.35:309 NUM
- PUNCT
15,1980 NUM
) PUNCT
. PUNCT
  SPACE
If SCONJ
400 NUM
mg NOUN
was AUX
present ADJ
each DET
day NOUN
, PUNCT
there PRON
was AUX
a DET
significant ADJ
increase NOUN
in ADP
urinary ADJ
oxalate PROPN
excretion NOUN
. PUNCT
	 SPACE
Here ADV
are AUX
the DET
high ADJ
oxalate NOUN
foods NOUN
: PUNCT
	 SPACE
1 NUM
. PUNCT
Beans NOUN
, PUNCT
coca NOUN
, PUNCT
instant ADJ
coffee NOUN
, PUNCT
parsley NOUN
, PUNCT
rhubarb NOUN
, PUNCT
spinach NOUN
and CCONJ
tea NOUN
. PUNCT
	    SPACE
Contain PROPN
at ADP
least ADJ
25mg/100grams NUM
	 SPACE
2 NUM
. PUNCT
Beet NOUN
tops NOUN
, PUNCT
carrots NOUN
, PUNCT
celery NOUN
, PUNCT
chocolate NOUN
, PUNCT
cumber PROPN
, PUNCT
grapefruit NOUN
, PUNCT
kale PROPN
, PUNCT
	    SPACE
peanuts NOUN
, PUNCT
pepper NOUN
, PUNCT
sweet PROPN
potatoe NOUN
. PUNCT
	    SPACE
Contain PROPN
10 NUM
to PART
25 NUM
mg/100grams NUM
. PUNCT
If SCONJ
the DET
threshold NOUN
is AUX
130 NUM
mg NOUN
per ADP
day NOUN
, PUNCT
you PRON
can AUX
see VERB
that SCONJ
you PRON
really ADV
have AUX
a DET
lot NOUN
of ADP
latitude NOUN
in ADP
food NOUN
selection NOUN
. PUNCT
  SPACE
A DET
recent ADJ
N.Eng PROPN
. PUNCT
J. PROPN
Med PROPN
. PUNCT
article NOUN
also ADV
points VERB
out ADP
that SCONJ
one NUM
good ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
is AUX
to PART
increase VERB
your PRON
intake NOUN
of ADP
calcium NOUN
which PRON
will AUX
prevent VERB
most ADJ
of ADP
the DET
dietary ADJ
oxalate NOUN
from ADP
being AUX
absorbed VERB
at ADV
all ADV
. PUNCT
  SPACE
If SCONJ
you PRON
also ADV
increase VERB
your PRON
intake NOUN
of ADP
B6 PROPN
, PUNCT
you PRON
should AUX
n't PART
have AUX
to PART
worry VERB
about ADP
kidney NOUN
stones NOUN
at ADV
all ADV
. PUNCT
The DET
RDA PROPN
for ADP
B6 PROPN
is AUX
2 NUM
mg NOUN
per ADP
day NOUN
for ADP
males NOUN
and CCONJ
1.6 NUM
mg NOUN
per ADP
day NOUN
for ADP
females(directly ADV
related VERB
to ADP
protein NOUN
intake).B6 NOUN
can AUX
be AUX
toxic(nerve VERB
damage NOUN
) PUNCT
if SCONJ
it PRON
is AUX
consumed VERB
in ADP
doses NOUN
of ADP
500 NUM
mg NOUN
or CCONJ
more ADJ
per ADP
day NOUN
for ADP
an DET
extended ADJ
peroid(weeks NOUN
to ADP
months NOUN
) PUNCT
. PUNCT
  SPACE
The DET
USDA PROPN
food NOUN
survey NOUN
done VERB
in ADP
1986 NUM
had AUX
an DET
average ADJ
intake NOUN
of ADP
1.87 NUM
mg NOUN
per ADP
day NOUN
for ADP
males NOUN
and CCONJ
1.16 NUM
mg NOUN
per ADP
day NOUN
for ADP
females NOUN
living VERB
in ADP
the DET
U.S. PROPN
  SPACE
Coupled VERB
with ADP
this DET
low ADJ
intake NOUN
was AUX
a DET
high ADJ
protein NOUN
diet(which PROPN
greatly ADV
increases VERB
the DET
B6 PROPN
requirement NOUN
) PUNCT
, PUNCT
as ADV
well ADV
as SCONJ
the DET
presence NOUN
of ADP
some DET
of ADP
the DET
40 NUM
different ADJ
drugs NOUN
that PRON
either CCONJ
block VERB
B6 PROPN
absorption NOUN
, PUNCT
are AUX
metabolic ADJ
antagonists NOUN
of ADP
B6 PROPN
, PUNCT
or CCONJ
promote VERB
B6 PROPN
excretion NOUN
in ADP
the DET
urine NOUN
. PUNCT
  SPACE
Common ADJ
ones NOUN
are AUX
: PUNCT
birth NOUN
control NOUN
pills NOUN
, PUNCT
alcohol NOUN
, PUNCT
isoniazid PROPN
, PUNCT
penicillamine PROPN
, PUNCT
and CCONJ
corticosteroids NOUN
. PUNCT
  SPACE
I PRON
tell VERB
my PRON
students NOUN
to PART
supplement VERB
all DET
their PRON
patients NOUN
that PRON
are AUX
going VERB
to PART
get AUX
any DET
of ADP
the DET
drugs NOUN
that PRON
increase VERB
the DET
B6 PROPN
requirement NOUN
. PUNCT
  SPACE
The DET
dose NOUN
recommended VERB
for ADP
patients NOUN
taking VERB
birth NOUN
control NOUN
pills NOUN
is AUX
10 NUM
- SYM
15 NUM
mg NOUN
per ADP
day NOUN
and CCONJ
this DET
should AUX
work VERB
for ADP
most ADJ
of ADP
the DET
other ADJ
drugs NOUN
that PRON
increase VERB
the DET
B6 PROPN
requirement(this PROPN
would AUX
be AUX
on ADP
top NOUN
of ADP
your PRON
dietary ADJ
intake NOUN
of ADP
B6 PROPN
) PUNCT
. PUNCT
  SPACE
Any DET
patient NOUN
that PRON
has AUX
a DET
history NOUN
of ADP
kidney NOUN
stone NOUN
formation NOUN
should AUX
be AUX
given VERB
B6 PROPN
supplements NOUN
. PUNCT
One NUM
other ADJ
good ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
is AUX
to PART
make VERB
sure ADJ
your PRON
Ca NOUN
/ SYM
Mg PROPN
dietary ADJ
ratio NOUN
is AUX
2/1 NUM
. PUNCT
  SPACE
Magnesium PROPN
- PUNCT
oxalate PROPN
is AUX
much ADV
more ADV
soluble ADJ
than SCONJ
is AUX
calcium NOUN
- PUNCT
oxalate NOUN
. PUNCT
	 SPACE
4 NUM
. PUNCT
" PUNCT
The DET
magnesium NOUN
: PUNCT
calcium NOUN
ratio NOUN
in ADP
the DET
concentrated ADJ
urines NOUN
of ADP
patients NOUN
with ADP
calcium NOUN
oxalate NOUN
calculi"Invest NOUN
. PUNCT
Urol PROPN
10:147(1972 PROPN
) PUNCT
	 SPACE
5 NUM
. PUNCT
" PUNCT
Effect NOUN
of ADP
magnesium NOUN
citrate NOUN
and CCONJ
magnesium ADJ
oxide NOUN
on ADP
the DET
crystallization NOUN
of ADP
calcium NOUN
in ADP
urine NOUN
: PUNCT
changes NOUN
producted VERB
by ADP
food NOUN
- PUNCT
magnesium NOUN
interaction"J. PROPN
Urol PROPN
. PUNCT
143(2):248 PROPN
- PUNCT
51(1990 PROPN
) PUNCT
. PUNCT
	 SPACE
6.Review NUM
Article NOUN
, PUNCT
" PUNCT
Magnesium PROPN
in ADP
the DET
physiopathology NOUN
and CCONJ
treatment NOUN
of ADP
renal ADJ
calcium NOUN
stones NOUN
" PUNCT
J. PROPN
Presse PROPN
Med PROPN
. PUNCT
161(1):25 NUM
- SYM
27(1987).There PROPN
are AUX
actually ADV
about ADV
three NUM
times NOUN
as SCONJ
many ADJ
articles NOUN
published VERB
in ADP
the DET
medical ADJ
literature NOUN
on ADP
the DET
role NOUN
of ADP
magnesium NOUN
in ADP
preventing VERB
kidney NOUN
stone NOUN
formation NOUN
than SCONJ
there PRON
are AUX
for ADP
B6 PROPN
. PUNCT
  SPACE
I PRON
thought VERB
that SCONJ
I PRON
was AUX
being AUX
pretty ADV
safe ADJ
in ADP
stating VERB
that SCONJ
magnesium NOUN
would AUX
prevent VERB
kidney NOUN
stone NOUN
formation NOUN
in ADP
an DET
earlier ADJ
post NOUN
in ADP
this DET
news NOUN
group NOUN
but CCONJ
good ADJ
old ADJ
John PROPN
A. PROPN
in ADP
Mass. PROPN
jumped VERB
all ADV
over ADP
me PRON
. PUNCT
I PRON
guess VERB
that SCONJ
he PRON
does AUX
n't PART
read VERB
the DET
medical ADJ
literature NOUN
. PUNCT
  SPACE
Oh INTJ
well INTJ
, PUNCT
since SCONJ
kidney NOUN
stones NOUN
can AUX
be AUX
a DET
real ADJ
pain NOUN
and CCONJ
a DET
lot NOUN
of ADP
people NOUN
suffer VERB
from ADP
them PRON
, PUNCT
I PRON
thought VERB
I PRON
'd AUX
tell VERB
you PRON
how ADV
you PRON
can AUX
avoid VERB
the DET
pain NOUN
and CCONJ
stay VERB
out SCONJ
of ADP
the DET
doctor NOUN
's PART
office NOUN
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine1111 PROPN
W. PROPN
17th NOUN
StreetTulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107"Without NUM
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance NOUN
" PUNCT
. PUNCT
  SPACE
From ADP
a DET
wise ADJ
man NOUN
who PRON
lived VERB
in ADP
China PROPN
, PUNCT
many ADJ
, PUNCT
many ADJ
years NOUN
ago ADV
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
it PRON
still ADV
has AUX
meaning NOUN
in ADP
today NOUN
's PART
world NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59208From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn NOUN
article NOUN
< X
1r8pcn$rm1@terminator.rs.itd.umich.edu NUM
> X
Donald_Mackie@med.umich.edu PROPN
( PUNCT
Donald PROPN
Mackie PROPN
) PUNCT
writes::In PROPN
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff,:tron@fafnir.la.locus.com PROPN
writes::>Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an:>authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that:>is NOUN
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki?::I'm ADJ
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
of ADP
: PUNCT
the DET
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-):The PROPN
only ADV
recipies NOUN
I PRON
've AUX
ever ADV
seen VERB
for ADP
this DET
include VERB
plain ADJ
yogurt PROPN
, PUNCT
finelychopped VERB
cucumber NOUN
and CCONJ
a DET
couple NOUN
of ADP
crushed VERB
cloves NOUN
of ADP
garlic NOUN
-- PUNCT
yummy.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59209From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)In PROPN
article NOUN
< X
noringC5wzM4.41n@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
Hate VERB
to PART
wreck VERB
your PRON
elaborate ADJ
theory NOUN
, PUNCT
but CCONJ
Steve PROPN
Dyer PROPN
is AUX
not PART
an DET
MD.So NUM
professional ADJ
jealosy NOUN
over ADP
doctors NOUN
who PRON
help VERB
their PRON
patients NOUN
withNystatin NOUN
, PUNCT
etc X
. PROPN
, PUNCT
ca AUX
n't PART
very ADV
well ADV
come VERB
into ADP
the DET
picture NOUN
. PUNCT
  SPACE
Stevedoesn't PROPN
have AUX
any DET
patients.>response NOUN
to PART
specificially ADV
Candida PROPN
albicans NOUN
, PUNCT
and CCONJ
I PRON
showed VERB
a DET
strong ADJ
positive.>Another NOUN
question NOUN
, PUNCT
would AUX
everybody PRON
show VERB
the DET
same ADJ
strong ADJ
positive ADJ
so SCONJ
this DET
test NOUN
> X
is AUX
essentially ADV
useless ADJ
? PUNCT
  SPACE
And CCONJ
, PUNCT
assuming VERB
it PRON
is AUX
true ADJ
that SCONJ
Candida PROPN
can AUX
growYes VERB
, PUNCT
everyone PRON
who PRON
is AUX
normal ADJ
does AUX
that DET
. PUNCT
  SPACE
We PRON
use VERB
candida PROPN
on ADP
the DET
other ADJ
armwhen NOUN
we PRON
put VERB
a DET
tuberculin ADJ
test NOUN
on ADP
. PUNCT
  SPACE
If SCONJ
people NOUN
do AUX
n't PART
react VERB
to ADP
candida PROPN
, PUNCT
we PRON
assume VERB
the DET
TB PROPN
test NOUN
was AUX
not PART
conclusive ADJ
since SCONJ
such ADJ
people NOUN
may AUX
notreact VERB
to ADP
anything PRON
. PUNCT
  SPACE
All DET
normal ADJ
people NOUN
have AUX
antibodies NOUN
to ADP
candida PROPN
. PUNCT
If SCONJ
not PART
, PUNCT
you PRON
would AUX
quickly ADV
turn VERB
into ADP
a DET
fungus X
ball.>This INTJ
brings VERB
up ADP
an DET
interesting ADJ
observation NOUN
used VERB
by ADP
those DET
who PRON
will AUX
deny VERB
> X
and CCONJ
reject VERB
any DET
and CCONJ
all DET
aspects NOUN
of ADP
the DET
' PUNCT
yeast NOUN
hypothesis NOUN
' PUNCT
until ADP
the DET
> X
appropriate ADJ
studies NOUN
are AUX
done VERB
. PUNCT
  SPACE
And CCONJ
that DET
is AUX
if SCONJ
you PRON
ca AUX
n't PART
observe VERB
or CCONJ
culture VERB
> X
the DET
yeast NOUN
" PUNCT
bloom NOUN
" PUNCT
in ADP
the DET
gut NOUN
or CCONJ
sinus NOUN
, PUNCT
then ADV
there PRON
's AUX
no DET
way NOUN
to PART
diagnose VERB
or CCONJ
> X
even ADV
recognize VERB
the DET
disease NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
they PRON
realize VERB
that SCONJ
it PRON
is AUX
virtually ADV
> X
impossible ADJ
to PART
test VERB
for ADP
candida PROPN
overbloom PROPN
in ADP
any DET
part NOUN
of ADP
the DET
body NOUN
that PRON
cannot VERB
> X
be AUX
easily ADV
observed VERB
since SCONJ
candida PROPN
is AUX
everywhere ADV
in ADP
the DET
body.>>It NOUN
's AUX
a DET
real ADJ
Catch-22.>You've NOUN
just ADV
discovered VERB
one NUM
of ADP
the DET
requirements NOUN
for ADP
a DET
good ADJ
quack NOUN
theory NOUN
. PUNCT
Find VERB
something PRON
that PRON
no DET
one NOUN
can AUX
* PUNCT
disprove VERB
* PUNCT
and CCONJ
then ADV
write VERB
a DET
book NOUN
sayingit NOUN
is AUX
the DET
cause NOUN
of ADP
whatever PRON
. PUNCT
  SPACE
Since SCONJ
no DET
one NOUN
can AUX
disprove VERB
it PRON
, PUNCT
you PRON
canrake VERB
in ADP
the DET
bucks NOUN
for ADP
quite DET
some DET
time NOUN
. PUNCT
  SPACE
> X
> X
... PUNCT
I PRON
have AUX
often ADV
wondered VERB
what PRON
an DET
M.D. PROPN
with ADP
chronic NOUN
> X
> X
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
would AUX
do AUX
about ADP
the DET
problem NOUN
that PRON
he PRON
tells VERB
his PRON
> X
> X
patients NOUN
is AUX
a DET
non ADJ
- ADJ
existent ADJ
syndrome.>That PROPN
is AUX
odd ADJ
, PUNCT
is AUX
n't PART
it PRON
? PUNCT
  SPACE
Why ADV
do AUX
you PRON
suppose VERB
it PRON
is AUX
that SCONJ
MDs NOUN
with ADP
thesecommon ADJ
problems NOUN
do AUX
n't PART
go VERB
for ADP
these DET
crazy ADJ
ideas NOUN
? PUNCT
  SPACE
Does AUX
the DET
" PUNCT
professionaljealosy NOUN
" PUNCT
extend VERB
to ADP
suffering VERB
in ADP
silence NOUN
, PUNCT
even ADV
though SCONJ
they PRON
know VERB
theycould AUX
be AUX
cured VERB
if SCONJ
they PRON
just ADV
followed VERB
this DET
quack NOUN
book?-- PROPN
----------------------------------------------------------------------------Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59210From NUM
: PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks)Subject NUM
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
C5qMJJ.yB@ampex.com PROPN
> X
jag@ampex.com NOUN
( PUNCT
Rayaz PROPN
Jagani PROPN
) PUNCT
writes:>>From PROPN
Miranda PROPN
Castro PROPN
, PUNCT
_ PROPN
The DET
Complete PROPN
Homeopathy PROPN
Handbook_,>ISBN NUM
0 NUM
- SYM
312 NUM
- PUNCT
06320 NUM
- PUNCT
2 NUM
, PUNCT
oringinally ADV
published VERB
in ADP
Britain PROPN
in ADP
1990.>>From PROPN
Page PROPN
10 NUM
, PUNCT
> X
.. PUNCT
and CCONJ
in ADP
1946 NUM
, PUNCT
when ADV
the DET
National PROPN
Health PROPN
Service PROPN
was AUX
established,>homeopathy PROPN
was AUX
included VERB
as SCONJ
an DET
officially ADV
approved VERB
method NOUN
> ADP
of ADP
treatment NOUN
. PUNCT
I PRON
was AUX
there ADV
in ADP
1976 NUM
. PUNCT
  SPACE
I PRON
suppose VERB
it PRON
must AUX
have AUX
died VERB
out ADP
since SCONJ
1946,then NUM
. PUNCT
  SPACE
Certainly ADV
I PRON
never ADV
heard VERB
of ADP
any DET
homeopaths NOUN
or CCONJ
herbalists NOUN
inthe DET
employ NOUN
of ADP
the DET
NHS PROPN
. PUNCT
  SPACE
Perhaps ADV
the DET
law NOUN
codified VERB
it PRON
but CCONJ
the DET
authoritiesrefused VERB
to PART
hire VERB
any DET
homeopaths NOUN
. PUNCT
  SPACE
A DET
similar ADJ
law NOUN
in ADP
the DET
US PROPN
allowschiropractors NOUN
to PART
practice VERB
in ADP
VA PROPN
hospitals NOUN
but CCONJ
I PRON
've AUX
never ADV
seen VERB
onethere ADV
and CCONJ
I PRON
do AUX
n't PART
know VERB
of ADP
a DET
single ADJ
VA PROPN
that PRON
has AUX
hired VERB
a DET
chiropractor NOUN
. PUNCT
There PRON
are AUX
a DET
lot NOUN
of ADP
Britons NOUN
on ADP
the DET
net NOUN
, PUNCT
so SCONJ
someone PRON
should AUX
be AUX
able ADJ
totell NOUN
us PRON
if SCONJ
the DET
NHS PROPN
provides VERB
homeopaths NOUN
for ADP
you.-- NUM
----------------------------------------------------------------------------Gordon NUM
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
andgeb@cadre.dsl.pitt.edu NUM
   SPACE
| PROPN
  SPACE
it PRON
is AUX
shameful ADJ
to PART
surrender VERB
it PRON
too ADV
soon ADV
. PUNCT
" PUNCT
----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59211From NUM
: PUNCT
jcherney@envy.reed.edu PROPN
( PUNCT
Joel PROPN
Alexander PROPN
Cherney)Subject PROPN
: PUNCT
Epstein PROPN
- PUNCT
Barr PROPN
Syndrome PROPN
questionsOkay PROPN
, PUNCT
this DET
is AUX
a DET
long ADJ
shot NOUN
. PUNCT
My PRON
friend NOUN
Robin PROPN
has AUX
recurring VERB
bouts NOUN
of ADP
mononucleosis NOUN
- PUNCT
type NOUN
symptoms NOUN
, PUNCT
very ADV
  SPACE
regularly ADV
. PUNCT
  SPACE
This DET
has AUX
been AUX
going VERB
on ADP
for ADP
a DET
number NOUN
of ADP
years NOUN
. PUNCT
  SPACE
She PRON
's AUX
seen VERB
a DET
  SPACE
number NOUN
of ADP
doctors NOUN
; PUNCT
six NUM
was AUX
the DET
last ADJ
count NOUN
, PUNCT
I PRON
think VERB
. PUNCT
  SPACE
Most ADJ
of ADP
them PRON
have AUX
  SPACE
said VERB
either CCONJ
" PUNCT
You PRON
have AUX
mono NOUN
" PUNCT
or CCONJ
" PUNCT
You PRON
're AUX
full ADJ
of ADP
it PRON
; PUNCT
there PRON
's AUX
nothing PRON
wrong ADJ
  SPACE
with ADP
you PRON
. PUNCT
" PUNCT
  SPACE
One NUM
has AUX
admitted VERB
to ADP
having VERB
no DET
idea NOUN
what PRON
was AUX
wrong ADJ
with ADP
her PRON
, PUNCT
  SPACE
and CCONJ
one NUM
has AUX
claimed VERB
that SCONJ
it PRON
is AUX
Epstein PROPN
- PUNCT
Barr PROPN
syndrome NOUN
. PUNCT
Now ADV
, PUNCT
what PRON
she PRON
told VERB
me PRON
about ADP
EBS PROPN
is AUX
that SCONJ
very ADV
few ADJ
doctors NOUN
even ADV
believe VERB
that SCONJ
  SPACE
it PRON
exists VERB
. PUNCT
  SPACE
( PUNCT
Obviously ADV
, PUNCT
this DET
has AUX
been AUX
her PRON
experience NOUN
. PUNCT
) PUNCT
  SPACE
So ADV
, PUNCT
what PRON
's AUX
the DET
  SPACE
story NOUN
? PUNCT
  SPACE
Is AUX
it PRON
real ADJ
? PUNCT
  SPACE
Does AUX
the DET
medical ADJ
profession NOUN
believe VERB
it PRON
to PART
be AUX
real?Has PROPN
anyone PRON
had AUX
success NOUN
is AUX
treating VERB
EBS PROPN
? PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
just ADV
something PRON
to PART
live VERB
  SPACE
with ADP
? PUNCT
  SPACE
Thanks NOUN
for ADP
your PRON
assistance NOUN
. PUNCT
Joel PROPN
" PUNCT
The DET
Ogre PROPN
" PUNCT
Cherneyjcherney@reed.eduOf PROPN
the DET
HordeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59212From NUM
: PUNCT
paulson@tab00.larc.nasa.gov PROPN
( PUNCT
Sharon PROPN
Paulson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?In PROPN
article NOUN
< X
C5x3L0.3r8@athena.cs.uga.edu PROPN
> X
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Newsgroups PROPN
: PUNCT
sci.med VERB
   SPACE
Path PROPN
: PUNCT
news.larc.nasa.gov!saimiri.primate.wisc.edu!sdd.hp.com!elroy.jpl.nasa.gov!swrinde!zaphod.mps.ohio-state.edu!howland.reston.ans.net!europa.eng.gtefsd.com!emory!athena!aisun3.ai.uga.edu!mcovingt DET
   SPACE
From ADP
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
   SPACE
Sender NOUN
: PUNCT
usenet@athena.cs.uga.edu ADJ
   SPACE
Nntp PROPN
- PUNCT
Posting PROPN
- PUNCT
Host NOUN
: PUNCT
aisun3.ai.uga.edu PROPN
   SPACE
Organization PROPN
: PUNCT
AI PROPN
Programs PROPN
, PUNCT
University PROPN
of ADP
Georgia PROPN
, PUNCT
Athens PROPN
   SPACE
References NOUN
: PUNCT
< X
PAULSON.93Apr19081647@cmb00.larc.nasa.gov NUM
> X
< X
116305@bu.edu NUM
> X
< X
C5uq9B.LrJ@toads.pgh.pa.us PROPN
> X
   SPACE
Date NOUN
: PUNCT
Fri PROPN
, PUNCT
23 NUM
Apr PROPN
1993 NUM
03:41:24 NUM
GMT PROPN
   SPACE
Lines NOUN
: PUNCT
27 NUM
   SPACE
In ADP
article NOUN
< X
C5uq9B.LrJ@toads.pgh.pa.us PROPN
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
In ADP
article NOUN
< X
116305@bu.edu NUM
> X
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
> X
> X
   SPACE
> X
> X
Many ADJ
of ADP
these DET
cereals NOUN
are AUX
corn NOUN
- PUNCT
based VERB
. PUNCT
After ADP
your PRON
post NOUN
I PRON
looked VERB
in ADP
the DET
   SPACE
> X
> X
literature PROPN
and CCONJ
located VERB
two NUM
articles NOUN
that PRON
implicated VERB
corn NOUN
( PUNCT
contains VERB
   SPACE
> X
> X
tryptophan PROPN
) PUNCT
and CCONJ
seizures NOUN
. PUNCT
The DET
idea NOUN
is AUX
that DET
corn NOUN
in ADP
the DET
diet NOUN
might AUX
   SPACE
> X
> X
potentiate VERB
an DET
already ADV
existing ADJ
or CCONJ
latent NOUN
seizure NOUN
disorder NOUN
, PUNCT
not PART
cause VERB
it PRON
. PUNCT
   SPACE
> X
> X
Check VERB
to PART
see VERB
if SCONJ
the DET
two NUM
Kellog PROPN
cereals NOUN
are AUX
corn NOUN
based VERB
. PUNCT
I PRON
'd AUX
be AUX
interested ADJ
. PUNCT
   SPACE
> X
   SPACE
> X
Years NOUN
ago ADV
when ADV
I PRON
was AUX
an DET
intern NOUN
, PUNCT
an DET
obese ADJ
young ADJ
woman NOUN
was AUX
brought VERB
into ADP
   SPACE
> X
the DET
ER PROPN
comatose NOUN
after ADP
having VERB
been AUX
reported VERB
to PART
have AUX
grand ADJ
mal PROPN
seizures NOUN
   SPACE
> X
why ADV
attending VERB
a DET
" PUNCT
corn NOUN
festival NOUN
" PUNCT
. PUNCT
  SPACE
We PRON
pumped VERB
her PRON
stomach NOUN
and CCONJ
obtained VERB
   SPACE
> X
what PRON
seemed VERB
like SCONJ
a DET
couple NOUN
of ADP
liters NOUN
of ADP
corn NOUN
, PUNCT
much ADJ
of ADP
it PRON
intact ADJ
kernals NOUN
. PUNCT
     SPACE
> X
After ADP
a DET
few ADJ
hours NOUN
she PRON
woke VERB
up ADP
and CCONJ
was AUX
fine ADJ
. PUNCT
  SPACE
I PRON
was AUX
tempted VERB
to PART
sign VERB
her PRON
out ADP
as SCONJ
   SPACE
> X
" PUNCT
acute ADJ
corn NOUN
intoxication NOUN
. PUNCT
" PUNCT
   SPACE
> X
---------------------------------------------------------------------------- PUNCT
   SPACE
> X
Gordon PROPN
Banks PROPN
  SPACE
N3JXP PROPN
      SPACE
| ADP
" PUNCT
Skepticism NOUN
is AUX
the DET
chastity NOUN
of ADP
the DET
intellect NOUN
, PUNCT
and CCONJ
   SPACE
How ADV
about ADP
contaminants NOUN
on ADP
the DET
corn NOUN
, PUNCT
e.g. ADV
aflatoxin NOUN
? PUNCT
? PUNCT
? PUNCT
   SPACE
-- PUNCT
    SPACE
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
   SPACE
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
What PRON
is AUX
aflatoxin?Sharon NOUN
-- PUNCT
Sharon PROPN
Paulson PROPN
                      SPACE
s.s.paulson@larc.nasa.govNASA PROPN
Langley PROPN
Research PROPN
CenterBldg PROPN
. PUNCT
1192D PROPN
, PUNCT
Mailstop PROPN
156 NUM
           SPACE
Work NOUN
: PUNCT
( PUNCT
804 NUM
) PUNCT
864 NUM
- PUNCT
2241Hampton NUM
, PUNCT
Virginia PROPN
. PUNCT
  SPACE
23681 NUM
           SPACE
Home PROPN
: PUNCT
( PUNCT
804 NUM
) PUNCT
596 NUM
- PUNCT
2362Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59213From NUM
: PUNCT
ffujita@s.psych.uiuc.edu X
( PUNCT
Frank PROPN
Fujita)Subject PROPN
: PUNCT
Re ADP
: PUNCT
" PUNCT
Choleric PROPN
" PUNCT
and CCONJ
The DET
Great PROPN
NT PROPN
/ SYM
NF PROPN
Semantic PROPN
War PROPN
. PUNCT
Also ADV
remember VERB
that SCONJ
most ADJ
people NOUN
map VERB
thesanguine NOUN
/ SYM
choleric PROPN
/ SYM
melencholic ADJ
/ SYM
phlegmatic ADJ
division NOUN
onto ADP
the DET
extraversionand PROPN
neuroticism PROPN
dimensions NOUN
( PUNCT
Like SCONJ
Eysenck PROPN
) PUNCT
and CCONJ
that SCONJ
the DET
MBTI PROPN
does AUX
notdeal VERB
with ADP
neuroticism NOUN
( PUNCT
Costa PROPN
& CCONJ
McCrae).Frank PROPN
FujitaNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59214From NUM
: PUNCT
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant VERB
Edwards)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographystgprao@st.unocal.COM PROPN
( PUNCT
Richard PROPN
Ottolini PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
Living VERB
things NOUN
maintain VERB
small ADJ
electric ADJ
fields NOUN
to ADP
( PUNCT
1 X
) PUNCT
enhance VERB
certain ADJ
: PUNCT
chemical ADJ
reactions NOUN
, PUNCT
( PUNCT
2 X
) PUNCT
promote VERB
communication NOUN
of ADP
states NOUN
with ADP
in ADP
a DET
: PUNCT
cell NOUN
, PUNCT
( PUNCT
3 X
) PUNCT
communicate NOUN
between ADP
cells NOUN
( PUNCT
of ADP
which PRON
the DET
nervous ADJ
system NOUN
is AUX
: PUNCT
a DET
specialized ADJ
example NOUN
) PUNCT
, PUNCT
and CCONJ
perhaps ADV
other ADJ
uses NOUN
. PUNCT
True ADJ
. PUNCT
: PUNCT
These DET
electric ADJ
fields NOUN
change VERB
with ADP
location NOUN
and CCONJ
time NOUN
in ADP
a DET
large ADJ
: PUNCT
organism NOUN
. PUNCT
Also ADV
True ADJ
. PUNCT
: PUNCT
Special ADJ
photographic ADJ
techniques NOUN
such ADJ
as SCONJ
applying VERB
external ADJ
fields NOUN
in ADP
: PUNCT
Kirillian ADJ
photography NOUN
interact VERB
with ADP
these DET
fields NOUN
or CCONJ
the DET
resistances NOUN
: PUNCT
caused VERB
by ADP
these DET
fields NOUN
to PART
make VERB
interesting ADJ
pictures NOUN
. PUNCT
Not PART
really ADV
. PUNCT
  SPACE
Kirlian ADJ
photography NOUN
is AUX
taking VERB
pictures NOUN
of ADP
the DET
corona ADJ
discharge NOUN
fromobjects NOUN
( PUNCT
animate ADJ
or CCONJ
inanimate ADJ
) PUNCT
. PUNCT
  SPACE
The DET
fields NOUN
applied VERB
to ADP
the DET
objects NOUN
aremillions NOUN
of ADP
times NOUN
larger ADJ
than SCONJ
any DET
biologically ADV
created VERB
fields NOUN
. PUNCT
  SPACE
If SCONJ
youwant ADJ
to PART
record VERB
the DET
biologically ADV
created VERB
electric ADJ
fields NOUN
, PUNCT
you PRON
've AUX
got VERB
touse ADV
low ADJ
- PUNCT
noise NOUN
, PUNCT
high ADJ
- PUNCT
gain NOUN
sensors NOUN
typical ADJ
of ADP
EEGs NOUN
and CCONJ
EKGs PROPN
. PUNCT
  SPACE
Kirlianphotography PROPN
is AUX
just ADV
phun ADJ
- PUNCT
with ADP
- PUNCT
physics NOUN
type NOUN
stuff NOUN
( PUNCT
right ADV
up ADV
there ADV
withsoaking VERB
chunks NOUN
of ADP
extra ADJ
- ADJ
fine ADJ
steel NOUN
wool NOUN
in ADP
liquid ADJ
oxygen NOUN
then ADV
hittingthem PROPN
with ADP
a DET
hammer NOUN
-- PUNCT
which PRON
, PUNCT
like SCONJ
a DET
Kirlean PROPN
setup NOUN
, PUNCT
is AUX
fun ADJ
but CCONJ
possiblydangerous ADJ
) PUNCT
. PUNCT
: PUNCT
Perhaps ADV
such ADJ
pictures NOUN
will AUX
be AUX
diagonistic ADJ
of ADP
disease NOUN
problems NOUN
in ADP
: PUNCT
organisms NOUN
when ADV
better ADV
understood VERB
. PUNCT
Perhaps ADV
not PART
. PUNCT
Probably ADV
not.--Grant ADJ
Edwards PROPN
                                 SPACE
|Yow PROPN
! PUNCT
  SPACE
Vote NOUN
for ADP
ME PROPN
-- PUNCT
I'mRosemount PROPN
Inc. PROPN
                                SPACE
|well PROPN
- PUNCT
tapered VERB
, PUNCT
half ADV
- PUNCT
cocked ADJ
, PUNCT
                                              SPACE
|ill NOUN
- PUNCT
conceived VERB
andgrante@aquarius.rosemount.com PROPN
                 SPACE
|TAX PROPN
- PUNCT
DEFERRED!Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59215From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
ArrhythmiaIn PROPN
article NOUN
< X
1993Apr22.205509.23198@husc3.harvard.edu NUM
> X
perry1@husc10.harvard.edu PROPN
( PUNCT
Alexis PROPN
Perry PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.031423.1@vaxc.stevens-tech.edu NUM
> X
u96_averba@vaxc.stevens-tech.edu PROPN
writes:>>doctors NOUN
said VERB
that SCONJ
he PRON
could AUX
die VERB
from ADP
it PRON
, PUNCT
and CCONJ
the DET
medication NOUN
caused VERB
> X
	 SPACE
Is AUX
it PRON
that ADV
serious ADJ
? PUNCT
  SPACE
My PRON
EKG PROPN
often ADV
comes VERB
back ADV
with ADP
a DET
few ADJ
irregular ADJ
> X
beats NOUN
. PUNCT
  SPACE
Another DET
question NOUN
: PUNCT
  SPACE
Is AUX
a DET
low ADJ
blood NOUN
potassium NOUN
level NOUN
very ADV
bad ADJ
? PUNCT
  SPACE
My PRON
> X
doctor NOUN
seems VERB
concerned ADJ
, PUNCT
but CCONJ
she PRON
tends VERB
to PART
worry VERB
too ADV
much ADV
in ADP
general ADJ
. PUNCT
The DET
term NOUN
arrhythmia NOUN
is AUX
usually ADV
used VERB
to PART
encompass VERB
a DET
wide ADJ
range NOUN
of ADP
abnormalheart PROPN
rhythms PROPN
( PUNCT
cardiac PROPN
dysrhythmias PROPN
) PUNCT
. PUNCT
  SPACE
Some DET
of ADP
them PRON
are AUX
very ADV
seriouswhile ADJ
others NOUN
are AUX
completely ADV
benign ADJ
. PUNCT
  SPACE
Having VERB
" PUNCT
a DET
few ADJ
irregular ADJ
beats"on X
an DET
EKG PROPN
could AUX
be AUX
serious ADJ
depending NOUN
on ADP
what PRON
those DET
beats NOUN
were AUX
andwhen NOUN
they PRON
occurred VERB
, PUNCT
or CCONJ
could AUX
be AUX
of ADP
no DET
significance NOUN
. PUNCT
Low ADJ
blood NOUN
potassium NOUN
levels NOUN
probably ADV
predispose VERB
people NOUN
with ADP
underlyingheart ADJ
disease NOUN
to PART
develop VERB
arrhythmias PROPN
. PUNCT
  SPACE
Very ADV
low ADJ
potassium NOUN
levels NOUN
areclearly ADV
dangerous ADJ
, PUNCT
but CCONJ
it PRON
is AUX
not PART
clear ADJ
how ADV
much ADJ
of ADP
a DET
problemlow ADJ
- PUNCT
end NOUN
- PUNCT
of ADP
- PUNCT
normal ADJ
levels NOUN
are AUX
: PUNCT
  SPACE
a DET
lot NOUN
of ADP
cardiologists NOUN
seem VERB
to PART
treatanyone VERB
with ADP
even ADV
a DET
mildly ADV
low ADJ
- PUNCT
normal ADJ
potassium NOUN
level.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59216From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr22.153000.1@vms.ocom.okstate.edu PROPN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>poster PROPN
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
Do AUX
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Isbeing VERB
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
nota ADV
quack ADJ
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack NOUN
, PUNCT
other ADJ
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
acommonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis NOUN
, PUNCT
or CCONJ
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no DET
longerneed VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
ofpeople.-- ADP
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59217From NUM
: PUNCT
chorley@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Homeopathy NOUN
: PUNCT
a DET
respectable ADJ
medical ADJ
tradition?In PROPN
article NOUN
< X
C5y5zr.B11@toads.pgh.pa.us PROPN
> X
, PUNCT
geb@cs.pitt.edu PROPN
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
C5qMJJ.yB@ampex.com PROPN
> X
jag@ampex.com NOUN
( PUNCT
Rayaz PROPN
Jagani PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
From ADP
Miranda PROPN
Castro PROPN
, PUNCT
_ PROPN
The DET
Complete PROPN
Homeopathy PROPN
Handbook_,>>ISBN NUM
0 NUM
- SYM
312 NUM
- PUNCT
06320 NUM
- PUNCT
2 NUM
, PUNCT
oringinally ADV
published VERB
in ADP
Britain PROPN
in ADP
1990.>>>>From NUM
Page PROPN
10 NUM
, PUNCT
> X
> X
.. PUNCT
and CCONJ
in ADP
1946 NUM
, PUNCT
when ADV
the DET
National PROPN
Health PROPN
Service PROPN
was AUX
established,>>homeopathy PROPN
was AUX
included VERB
as SCONJ
an DET
officially ADV
approved VERB
method>>of NOUN
treatment NOUN
. PUNCT
> X
> X
I PRON
was AUX
there ADV
in ADP
1976 NUM
. PUNCT
  SPACE
I PRON
suppose VERB
it PRON
must AUX
have AUX
died VERB
out ADP
since SCONJ
1946 NUM
, PUNCT
> X
then ADV
. PUNCT
  SPACE
Certainly ADV
I PRON
never ADV
heard VERB
of ADP
any DET
homeopaths NOUN
or CCONJ
herbalists NOUN
in ADP
> X
the DET
employ NOUN
of ADP
the DET
NHS PROPN
. PUNCT
  SPACE
Perhaps ADV
the DET
law NOUN
codified VERB
it PRON
but CCONJ
the DET
authorities NOUN
> X
refused VERB
to PART
hire VERB
any DET
homeopaths NOUN
. PUNCT
  SPACE
A DET
similar ADJ
law NOUN
in ADP
the DET
US PROPN
allows VERB
> X
chiropractors NOUN
to PART
practice VERB
in ADP
VA PROPN
hospitals NOUN
but CCONJ
I PRON
've AUX
never ADV
seen VERB
one NUM
> X
there ADV
and CCONJ
I PRON
do AUX
n't PART
know VERB
of ADP
a DET
single ADJ
VA PROPN
that PRON
has AUX
hired VERB
a DET
chiropractor NOUN
. PUNCT
> X
There PRON
are AUX
a DET
lot NOUN
of ADP
Britons NOUN
on ADP
the DET
net NOUN
, PUNCT
so SCONJ
someone PRON
should AUX
be AUX
able ADJ
to PART
> X
tell VERB
us PRON
if SCONJ
the DET
NHS PROPN
provides VERB
homeopaths NOUN
for ADP
you PRON
. PUNCT
> X
> X
> X
-- PUNCT
> X
----------------------------------------------------------------------------I CCONJ
do AUX
n't PART
think VERB
they PRON
provide VERB
homeopaths NOUN
, PUNCT
heck INTJ
the DET
heir NOUN
apparent ADJ
was AUX
trying VERB
to PART
promote VERB
Osteopaths NOUN
to ADP
the DET
ranks NOUN
of ADP
eligibility NOUN
a DET
couple NOUN
of ADP
years NOUN
back ADV
... PUNCT
It PRON
pleased VERB
my PRON
family NOUN
no DET
end NOUN
, PUNCT
since SCONJ
I PRON
'm AUX
at ADP
an DET
Osteopathic ADJ
school NOUN
, PUNCT
sort ADV
of ADV
validated VERB
it PRON
for ADP
them PRON
... PUNCT
then ADV
I PRON
told VERB
them PRON
that SCONJ
the DET
name NOUN
was AUX
the DET
same ADJ
but CCONJ
the DET
practice NOUN
was AUX
different ADJ
.... PUNCT
oh INTJ
. PUNCT
	 SPACE
If SCONJ
you PRON
're AUX
seeking VERB
validation NOUN
for ADP
your PRON
philosophy NOUN
on ADP
the DET
strength NOUN
of ADP
the DET
national PROPN
health PROPN
service NOUN
adopting VERB
it PRON
, PUNCT
I PRON
suggest VERB
that SCONJ
you PRON
are AUX
not PART
very ADV
sure ADJ
of ADP
the DET
validity NOUN
of ADP
your PRON
philosophy NOUN
. PUNCT
I PRON
believe VERB
in ADP
1946 NUM
, PUNCT
the DET
NHS PROPN
was AUX
still ADV
having VERB
its PRON
nurses NOUN
taught VERB
the DET
fine ADJ
art NOUN
of ADP
" PUNCT
cupping VERB
" PUNCT
, PUNCT
which PRON
is AUX
the DET
vacuum NOUN
extraction NOUN
of ADP
intradermal ADJ
fluids NOUN
by ADP
means NOUN
of ADP
heating VERB
a DET
cup NOUN
, PUNCT
placing VERB
it PRON
on ADP
the DET
afflicted ADJ
site NOUN
and CCONJ
allowing VERB
it PRON
to PART
cool VERB
. PUNCT
	 SPACE
I PRON
would AUX
n't PART
take VERB
my PRON
sick ADJ
daughter NOUN
to ADP
a DET
homeopath NOUN
. PUNCT
David PROPN
N. PROPN
Chorley***************************************************************************Yikes PROPN
, PUNCT
I PRON
'm AUX
agreeing VERB
with ADP
Gordon PROPN
Banks**************************************************************************Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59218From NUM
: PUNCT
klier@iscsvax.uni.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Modified VERB
sense NOUN
of ADP
taste NOUN
in ADP
Cancer NOUN
pt?In PROPN
article NOUN
< X
1993Apr21.134848.19017@peavax.mlo.dec.com NUM
> X
, PUNCT
lunger@helix.enet.dec.com PROPN
( PUNCT
Dave PROPN
Lunger PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
What PRON
does AUX
a DET
lack NOUN
of ADP
taste NOUN
of ADP
foods NOUN
, PUNCT
or CCONJ
a DET
sense NOUN
of ADP
taste NOUN
that PRON
seems VERB
" PUNCT
off ADP
" PUNCT
> X
when ADV
eating VERB
foods NOUN
in ADP
someone PRON
who PRON
has AUX
cancer NOUN
mean VERB
? PUNCT
What PRON
are AUX
the DET
possible ADJ
> NOUN
causes NOUN
of ADP
this DET
? PUNCT
Why ADV
does AUX
it PRON
happen?I PROPN
ca AUX
n't PART
answer VERB
most ADJ
of ADP
your PRON
questions NOUN
, PUNCT
but CCONJ
I PRON
've AUX
seen VERB
it PRON
happen VERB
in ADP
family NOUN
members NOUN
who PRON
are AUX
being AUX
treated VERB
with ADP
radiation NOUN
and/or CCONJ
chemotherapy NOUN
. PUNCT
Jory PROPN
Graham PROPN
published VERB
a DET
cookbook NOUN
many ADJ
years NOUN
ago ADV
( PUNCT
in ADP
cooperation NOUN
with ADP
the DET
American PROPN
Cancer PROPN
Society PROPN
, PUNCT
I PRON
think VERB
) PUNCT
called VERB
" PUNCT
Something PRON
has AUX
to PART
tastegood NOUN
" PUNCT
( PUNCT
as SCONJ
I PRON
recall).The NOUN
cookbook NOUN
was AUX
just ADV
what PRON
we PRON
needed VERB
several ADJ
times NOUN
when ADV
favorite ADJ
foodssuddenly ADV
became VERB
" PUNCT
yech" NOUN
. PUNCT
Kay PROPN
Klier PROPN
  SPACE
Biology PROPN
Dept PROPN
  SPACE
UNINewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59219From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)-*-----In PROPN
article NOUN
< X
noringC5wzM4.41n@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
... PUNCT
if SCONJ
you PRON
ca AUX
n't PART
observe VERB
or CCONJ
culture VERB
the DET
yeast NOUN
" PUNCT
bloom NOUN
" PUNCT
in ADP
the DET
> X
> X
gut PROPN
or CCONJ
sinus NOUN
, PUNCT
then ADV
there PRON
's AUX
no DET
way NOUN
to PART
diagnose VERB
or CCONJ
even ADV
recognize VERB
> X
> X
the DET
disease NOUN
. PUNCT
  SPACE
And CCONJ
I PRON
know VERB
they PRON
realize VERB
that SCONJ
it PRON
is AUX
virtually ADV
> X
> X
impossible ADJ
to PART
test VERB
for ADP
candida PROPN
overbloom PROPN
in ADP
any DET
part NOUN
of ADP
the DET
body NOUN
> X
> X
that PRON
can AUX
not PART
be AUX
easily ADV
observed VERB
since SCONJ
candida PROPN
is AUX
everywhere ADV
in ADP
> X
> X
the DET
body NOUN
. PUNCT
In ADP
article NOUN
< X
C5y5nM.Axv@toads.pgh.pa.us VERB
> X
geb@cs.pitt.edu X
( PUNCT
Gordon PROPN
Banks PROPN
) PUNCT
writes VERB
: PUNCT
> X
You PRON
've AUX
just ADV
discovered VERB
one NUM
of ADP
the DET
requirements NOUN
for ADP
a DET
good ADJ
quack NOUN
theory NOUN
. PUNCT
> X
Find VERB
something PRON
that PRON
no DET
one NOUN
can AUX
* PUNCT
disprove VERB
* PUNCT
and CCONJ
then ADV
write VERB
a DET
book NOUN
saying VERB
> X
it PRON
is AUX
the DET
cause NOUN
of ADP
whatever PRON
. PUNCT
  SPACE
Since SCONJ
no DET
one NOUN
can AUX
disprove VERB
it PRON
, PUNCT
you PRON
can AUX
> X
rake VERB
in ADP
the DET
bucks NOUN
for ADP
quite DET
some DET
time NOUN
. PUNCT
  SPACE
I PRON
hope VERB
Gordon PROPN
Banks PROPN
did AUX
not PART
mean VERB
to PART
imply VERB
that SCONJ
notions NOUN
such ADJ
ashard NOUN
- PUNCT
to PART
- PUNCT
see VERB
candida PROPN
infections NOUN
causing VERB
various ADJ
problems NOUN
should AUX
notbe PROPN
investigated VERB
. PUNCT
  SPACE
Many ADJ
researchers NOUN
have AUX
made VERB
breakthroughs NOUN
by ADP
figuring VERB
out ADP
how ADV
to PART
investigate VERB
things NOUN
that PRON
were AUX
previously ADV
thought"virtually ADV
impossible ADJ
to PART
test VERB
for ADP
. PUNCT
"Indeed PROPN
, PUNCT
I PRON
would AUX
be AUX
surprised ADJ
if SCONJ
" PUNCT
candida PROPN
overbloom PROPN
" PUNCT
were AUX
such ADJ
aphenomena NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
candida PROPN
would AUX
produce VERB
signaturebyproducts NOUN
whose PRON
measure NOUN
would AUX
then ADV
set VERB
a DET
lower ADV
bound VERB
on ADP
the DET
extent NOUN
of ADP
recent ADJ
infection NOUN
. PUNCT
  SPACE
I PRON
realize VERB
this DET
might AUX
get AUX
quite ADV
tricky ADJ
and CCONJ
difficult ADJ
, PUNCT
probably ADV
expensive ADJ
, PUNCT
and CCONJ
likely ADJ
inconvenientor NOUN
uncomfortable ADJ
to ADP
the DET
subjects NOUN
, PUNCT
but CCONJ
that DET
is AUX
not PART
the DET
same ADJ
as SCONJ
" PUNCT
virtually ADV
impossible ADJ
. PUNCT
"RussellNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59220From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)One PROPN
thing NOUN
that PRON
I PRON
have AUX
n't PART
seen VERB
in ADP
this DET
thread NOUN
is AUX
a DET
discussion NOUN
of ADP
therelation NOUN
between ADP
IBD PROPN
inflammation NOUN
and CCONJ
the DET
profile NOUN
of ADP
ingested ADJ
fattyacids NOUN
( PUNCT
FAs).I PROPN
was AUX
diagnosed VERB
last ADJ
May PROPN
w PROPN
/ SYM
Crohn PROPN
's PART
of ADP
the DET
terminal ADJ
ileum NOUN
. PUNCT
When ADV
I PRON
gotout ADP
of ADP
the DET
hospital NOUN
I PRON
read VERB
up ADP
on ADP
it PRON
a DET
bit NOUN
, PUNCT
and CCONJ
came VERB
across ADP
severalstudies NOUN
investigating VERB
the DET
role NOUN
of ADP
EPA PROPN
( PUNCT
an DET
essentially ADV
FA PROPN
) PUNCT
in ADP
reducinginflammation NOUN
. PUNCT
The DET
evidence NOUN
was AUX
mixed ADJ
. PUNCT
[ PUNCT
Many ADJ
of ADP
these DET
studies NOUN
arediscussed VERB
in ADP
" PUNCT
Inflammatory PROPN
Bowel PROPN
Disease PROPN
, PUNCT
" PUNCT
MacDermott PROPN
, PUNCT
Stenson PROPN
. PUNCT
1992.]But NUM
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
were AUX
some DET
methodological ADJ
bones NOUN
to ADP
bepicked VERB
with ADP
the DET
studies NOUN
( PUNCT
both CCONJ
the DET
ones NOUN
w PROPN
/ SYM
pos NOUN
. PUNCT
and CCONJ
w PROPN
/ SYM
neg PROPN
. PUNCT
results NOUN
) PUNCT
. PUNCT
Inthe DET
studies NOUN
patients NOUN
were AUX
given VERB
EPA PROPN
( PUNCT
a DET
few ADJ
grams NOUN
/ SYM
day NOUN
for ADP
most ADJ
of ADP
thestudies NOUN
) PUNCT
, PUNCT
but CCONJ
, PUNCT
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
was AUX
no DET
restriction NOUN
of ADP
the_other PROPN
_ PROPN
FAs NOUN
that SCONJ
the DET
patients NOUN
could AUX
consume VERB
. PUNCT
From ADP
the DET
informedlayperson NOUN
's PART
perspective NOUN
, PUNCT
this DET
seems VERB
mistaken ADJ
. PUNCT
If SCONJ
lots NOUN
of ADP
n-6 PROPN
FAs NOUN
areconsumed VERB
along ADP
with ADP
the DET
EPA PROPN
, PUNCT
then ADV
the DET
ratio NOUN
of ADP
" PUNCT
bad ADJ
" PUNCT
prostanoidproducts NOUN
to ADP
" PUNCT
good ADJ
" PUNCT
prostanoid ADJ
products NOUN
could AUX
still ADV
be AUX
fairly ADV
" PUNCT
bad ADJ
. PUNCT
"Isn't ADV
this DET
ratio NOUN
the DET
issue?What PROPN
's AUX
the DET
view NOUN
of ADP
the DET
gastro PROPN
. PUNCT
community NOUN
on ADP
EPA PROPN
these DET
days NOUN
? PUNCT
EPAsupplements NOUN
, PUNCT
along ADP
with ADP
a DET
fairly ADV
severe ADJ
restriction NOUN
of ADP
other ADJ
FAsappear PROPN
to PART
have AUX
helped VERB
me PRON
significantly ADV
( PUNCT
though SCONJ
it PRON
could AUX
just ADV
be AUX
thelow ADJ
absolute ADJ
amount NOUN
of ADP
fat NOUN
I PRON
eat VERB
-- PUNCT
8 NUM
- SYM
10 NUM
% NOUN
calories).-Brian NOUN
< NOUN
bmdelane@midway.uchicago.edu>Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59221From NUM
: PUNCT
andrew@calvin.dgbt.doc.ca PROPN
( PUNCT
Andrew PROPN
Patrick)Subject PROPN
: PUNCT
Any DET
Interest NOUN
in ADP
a DET
Mailing PROPN
List NOUN
on ADP
Epilepsy NOUN
and CCONJ
Seizures?I PROPN
have AUX
seen VERB
a DET
fair ADJ
bit NOUN
of ADP
traffic NOUN
recently ADV
concerning VERB
Epilepsy PROPN
andseizures NOUN
. PUNCT
  SPACE
I PRON
am AUX
also ADV
interested ADJ
in ADP
this DET
subject NOUN
-- PUNCT
I PRON
have AUX
a DET
son NOUN
withEpilepsy NOUN
and CCONJ
I PRON
am AUX
very ADV
active ADJ
with ADP
the DET
local ADJ
association NOUN
. PUNCT
  SPACE
I PRON
posted VERB
amessage NOUN
like SCONJ
this DET
a DET
few ADJ
months NOUN
ago ADV
and CCONJ
received VERB
no DET
replies NOUN
, PUNCT
but CCONJ
here ADV
itis NOUN
again ADV
. PUNCT
Is AUX
anyone PRON
interested ADJ
in ADP
participating VERB
in ADP
a DET
mailing NOUN
list NOUN
on ADP
Epilepsy PROPN
andseizures NOUN
? PUNCT
  SPACE
This DET
would AUX
allow VERB
us PRON
to PART
hold VERB
discussions NOUN
and CCONJ
shareinformation NOUN
via ADP
electronic ADJ
mail NOUN
. PUNCT
  SPACE
I PRON
already ADV
run VERB
a DET
Listserver PROPN
for ADP
twoother NOUN
groups NOUN
, PUNCT
so ADV
the DET
mechanics NOUN
would AUX
be AUX
easy ADJ
. PUNCT
If SCONJ
you PRON
are AUX
interested ADJ
, PUNCT
mail VERB
me PRON
a DET
note NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
get VERB
enough ADJ
replies NOUN
, PUNCT
I PRON
willmake VERB
it PRON
happen VERB
and CCONJ
provide VERB
you PRON
with ADP
the DET
details NOUN
. PUNCT
BTW ADV
, PUNCT
I PRON
have AUX
also ADV
started VERB
a DET
database NOUN
on ADP
Epilepsy PROPN
. PUNCT
  SPACE
This DET
is AUX
part NOUN
of ADP
myresearch NOUN
on ADP
natural ADJ
language NOUN
question NOUN
answering VERB
systems NOUN
. PUNCT
  SPACE
Users NOUN
of ADP
thisservice NOUN
are AUX
able ADJ
to PART
ask VERB
questions NOUN
about ADP
Epilepsy PROPN
and CCONJ
the DET
programsearches NOUN
the DET
database NOUN
and CCONJ
retrieves VERB
its PRON
best ADJ
response NOUN
. PUNCT
  SPACE
The DET
technologyworks NOUN
by ADP
comparing VERB
your PRON
question NOUN
against ADP
a DET
set NOUN
of ADP
questions NOUN
that PRON
havebeen PROPN
seen VERB
before ADV
. PUNCT
  SPACE
All DET
new ADJ
questions NOUN
that PRON
are AUX
not PART
answered VERB
are AUX
recordedand VERB
used VERB
to PART
improve VERB
the DET
system NOUN
. PUNCT
This DET
database NOUN
is AUX
still ADV
small ADJ
and CCONJ
sparse ADJ
, PUNCT
but CCONJ
we PRON
are AUX
adding VERB
newinformation NOUN
. PUNCT
  SPACE
To PART
try VERB
it PRON
out ADP
, PUNCT
do AUX
the DET
following NOUN
	 SPACE
telnet NOUN
debra.dgbt.doc.ca NOUN
	 SPACE
login NOUN
: PUNCT
chat PROPN
	 SPACE
Then ADV
select VERB
the DET
Epilepsy PROPN
item NOUN
from ADP
the DET
menu NOUN
of ADP
databases.-- PROPN
Andrew PROPN
Patrick PROPN
, PUNCT
Ph.D. PROPN
       SPACE
Communications PROPN
Research PROPN
Centre PROPN
, PUNCT
Ottawa PROPN
, PUNCT
CANADA PROPN
                       SPACE
andrew@calvin.dgbt.doc.CA NOUN
                         SPACE
For ADP
a DET
good ADJ
time NOUN
, PUNCT
run VERB
" PUNCT
telnet NOUN
debra.dgbt.doc.ca NOUN
" PUNCT
and CCONJ
login NOUN
as SCONJ
" PUNCT
chat" NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59222From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Epstein PROPN
- PUNCT
Barr PROPN
Syndrome PROPN
questionsIn PROPN
article NOUN
< X
1993Apr23.034226.2284@reed.edu NUM
> X
jcherney@reed.edu PROPN
writes:>Okay PROPN
, PUNCT
this DET
is AUX
a DET
long ADJ
shot.>>My NOUN
friend NOUN
Robin PROPN
has AUX
recurring VERB
bouts NOUN
of ADP
mononucleosis NOUN
- PUNCT
type NOUN
symptoms NOUN
, PUNCT
very ADV
  SPACE
> X
regularly ADV
. PUNCT
  SPACE
This DET
has AUX
been AUX
going VERB
on ADP
for ADP
a DET
number NOUN
of ADP
years NOUN
. PUNCT
  SPACE
She PRON
's AUX
seen VERB
a DET
  SPACE
> X
number NOUN
of ADP
doctors NOUN
; PUNCT
six NUM
was AUX
the DET
last ADJ
count NOUN
, PUNCT
I PRON
think VERB
. PUNCT
  SPACE
Most ADJ
of ADP
them PRON
have AUX
  SPACE
> X
said VERB
either CCONJ
" PUNCT
You PRON
have AUX
mono NOUN
" PUNCT
or CCONJ
" PUNCT
You PRON
're AUX
full ADJ
of ADP
it PRON
; PUNCT
there PRON
's AUX
nothing PRON
wrong ADJ
  SPACE
> X
with ADP
you PRON
. PUNCT
" PUNCT
  SPACE
One NUM
has AUX
admitted VERB
to ADP
having VERB
no DET
idea NOUN
what PRON
was AUX
wrong ADJ
with ADP
her PRON
, PUNCT
  SPACE
> X
and CCONJ
one PRON
has AUX
claimed VERB
that SCONJ
it PRON
is AUX
Epstein PROPN
- PUNCT
Barr PROPN
syndrome.>>Now NOUN
, PUNCT
what PRON
she PRON
told VERB
me PRON
about ADP
EBS PROPN
is AUX
that SCONJ
very ADV
few ADJ
doctors NOUN
even ADV
believe VERB
that SCONJ
  SPACE
> X
it PRON
exists VERB
. PUNCT
  SPACE
( PUNCT
Obviously ADV
, PUNCT
this DET
has AUX
been AUX
her PRON
experience NOUN
. PUNCT
) PUNCT
  SPACE
So ADV
, PUNCT
what PRON
's AUX
the DET
  SPACE
> X
story NOUN
? PUNCT
  SPACE
Is AUX
it PRON
real ADJ
? PUNCT
  SPACE
Does AUX
the DET
medical ADJ
profession NOUN
believe VERB
it PRON
to PART
be AUX
real?>>Has VERB
anyone PRON
had AUX
success NOUN
is AUX
treating VERB
EBS PROPN
? PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
just ADV
something PRON
to PART
live VERB
  SPACE
> X
with ADP
? PUNCT
  SPACE
Thanks NOUN
for ADP
your PRON
assistance NOUN
. PUNCT
Outbreaks NOUN
of ADP
a DET
chronic ADJ
- PUNCT
mono NOUN
- PUNCT
like ADJ
entity NOUN
were AUX
originally ADV
called VERB
EBS PROPN
( PUNCT
orsome PROPN
variant NOUN
thereof ADV
) PUNCT
because SCONJ
most ADJ
of ADP
the DET
people NOUN
with ADP
this DET
disease NOUN
hadelevated VERB
levels NOUN
of ADP
antibodies NOUN
to ADP
the DET
EBV PROPN
virus NOUN
. PUNCT
But CCONJ
not PART
all DET
of ADP
themdid NOUN
, PUNCT
which PRON
prompted VERB
an DET
official ADJ
renaming NOUN
of ADP
the DET
disease NOUN
to ADP
ChronicFatigue PROPN
Syndrome PROPN
( PUNCT
this DET
renaming VERB
took VERB
place NOUN
in ADP
the DET
Annals PROPN
of ADP
InternalMedicine PROPN
, PUNCT
Jan. PROPN
1988 NUM
, PUNCT
I PRON
believe VERB
) PUNCT
. PUNCT
Now ADV
it PRON
's AUX
also ADV
called VERB
Chronic PROPN
Fatigueand PROPN
Immune PROPN
Dysfunction PROPN
Syndrome PROPN
( PUNCT
CFIDS PROPN
) PUNCT
, PUNCT
since SCONJ
it PRON
seems VERB
clear ADJ
thatsome ADJ
sort ADV
of ADP
immune ADJ
disregulation NOUN
is AUX
causing VERB
the DET
probs NOUN
. PUNCT
Astonishly ADV
, PUNCT
there PRON
are AUX
still ADV
docs NOUN
who PRON
tell VERB
people NOUN
with ADP
massivelyswollen ADJ
glands NOUN
, PUNCT
recurrent NOUN
fevers NOUN
and CCONJ
nightsweats NOUN
, PUNCT
etc X
. X
, PUNCT
that SCONJ
there'snothing VERB
wrong NOUN
with ADP
them PRON
. PUNCT
This DET
is AUX
not PART
the DET
same ADJ
thing NOUN
as SCONJ
saying VERB
that SCONJ
thesyndrome PROPN
may AUX
have AUX
a DET
( PUNCT
at ADP
least ADJ
partly ADV
) PUNCT
psychological ADJ
cause NOUN
. PUNCT
Thedisagreement NOUN
among ADP
people NOUN
whose PRON
thoughts NOUN
are AUX
worth ADJ
considering VERB
centerson NOUN
just ADV
what PRON
the DET
cause NOUN
is AUX
. PUNCT
No DET
one NOUN
knows VERB
, PUNCT
but CCONJ
theories NOUN
include VERB
: PUNCT
psychological ADJ
stress NOUN
, PUNCT
some DET
sort NOUN
of ADP
virus NOUN
( PUNCT
a DET
retrovirus NOUN
, PUNCT
say VERB
most ADV
--maybe PUNCT
one NUM
of ADP
the DET
newly ADV
discovered VERB
herpes NOUN
viruses NOUN
) PUNCT
, PUNCT
environmentaltoxins NOUN
, PUNCT
bacteria NOUN
( PUNCT
and CCONJ
, PUNCT
yes INTJ
, PUNCT
candida PROPN
) PUNCT
, PUNCT
genes NOUN
, PUNCT
( PUNCT
and/)or ADP
some DET
combo ADJ
ofthese PROPN
. PUNCT
There PRON
's AUX
no DET
outright ADJ
cure NOUN
at ADP
the DET
moment NOUN
, PUNCT
but CCONJ
different ADJ
docs PROPN
trydifferent NOUN
things NOUN
, PUNCT
some DET
of ADP
which PRON
seem VERB
to PART
help VERB
. PUNCT
Massive ADJ
amounts NOUN
of ADP
info NOUN
on ADP
the DET
condition NOUN
are AUX
available ADJ
these DET
days NOUN
. PUNCT
Post VERB
your PRON
Q NOUN
to ADP
alt.med.cfs PROPN
, PUNCT
and CCONJ
you PRON
will AUX
be AUX
flooded VERB
w PROPN
/ SYM
facts NOUN
. PUNCT
Note VERB
: PUNCT
There PRON
are AUX
lots NOUN
of ADP
far ADV
better ADV
understood VERB
( PUNCT
and CCONJ
better ADJ
treatable)diseases NOUN
that PRON
look VERB
like SCONJ
CFIDS PROPN
. PUNCT
Make VERB
sure ADJ
these DET
get VERB
ruled VERB
- PUNCT
out NOUN
by ADP
a DET
gooddoc NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59223From NUM
: PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders)Subject PROPN
: PUNCT
Frozen ADJ
shoulder NOUN
and CCONJ
lawn NOUN
mowingIhave NOUN
had AUX
a DET
frozen ADJ
shoulder NOUN
for ADP
over ADP
a DET
year NOUN
or CCONJ
about ADV
a DET
year NOUN
. PUNCT
  SPACE
It PRON
is AUX
stillpartially ADV
frozen ADJ
, PUNCT
and CCONJ
I PRON
am AUX
still ADV
in ADP
physical ADJ
therapy NOUN
every DET
week NOUN
. PUNCT
  SPACE
But CCONJ
thepain NOUN
has AUX
subsided VERB
almost ADV
completely ADV
. PUNCT
  SPACE
UNTIL ADP
last ADJ
week NOUN
when ADV
I PRON
mowed VERB
thelawn NOUN
for ADP
twenty NUM
minutes NOUN
each DET
, PUNCT
two NUM
days NOUN
in ADP
a DET
row NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
push NOUN
type NOUN
powermower NOUN
. PUNCT
  SPACE
The DET
pain NOUN
started VERB
back ADV
up ADP
a DET
little ADJ
bit NOUN
for ADP
the DET
first ADJ
time NOUN
in ADP
quitea NOUN
while ADV
, PUNCT
and CCONJ
I PRON
used VERB
ice NOUN
and CCONJ
medicine NOUN
again ADV
. PUNCT
  SPACE
Can AUX
anybody PRON
explain VERB
why ADV
thisparticular ADJ
activity NOUN
, PUNCT
which PRON
does AUX
not PART
seem VERB
to PART
stress VERB
me PRON
very ADV
much ADV
generally ADV
, PUNCT
should AUX
cause VERB
this DET
shoulder NOUN
problem?Thanks VERB
. PUNCT
AliceNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59224From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! PUNCT
( PUNCT
was AUX
Re ADP
: PUNCT
Candida PROPN
( PUNCT
yeast NOUN
) PUNCT
Bloom PROPN
... PUNCT
) PUNCT
( PUNCT
VERY PROPN
LONG)In PROPN
article NOUN
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
writes:>I NUM
hope VERB
Gordon PROPN
Banks PROPN
did AUX
not PART
mean VERB
to PART
imply VERB
that SCONJ
notions NOUN
such ADJ
as SCONJ
> X
hard ADV
- PUNCT
to PART
- PUNCT
see VERB
candida PROPN
infections NOUN
causing VERB
various ADJ
problems NOUN
should AUX
not PART
> X
be AUX
investigated VERB
. PUNCT
  SPACE
Many ADJ
researchers NOUN
have AUX
made VERB
breakthroughs NOUN
by ADP
> X
figuring VERB
out ADP
how ADV
to PART
investigate VERB
things NOUN
that PRON
were AUX
previously ADV
thought>"virtually ADV
impossible ADJ
to PART
test VERB
for ADP
. PUNCT
">>Indeed PUNCT
, PUNCT
I PRON
would AUX
be AUX
surprised ADJ
if SCONJ
" PUNCT
candida PROPN
overbloom PROPN
" PUNCT
were AUX
such DET
a DET
> X
phenomena NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
candida PROPN
would AUX
produce VERB
signature NOUN
> X
byproducts NOUN
whose PRON
measure NOUN
would AUX
then ADV
set VERB
a DET
lower ADV
bound VERB
on ADP
the DET
> X
extent NOUN
of ADP
recent ADJ
infection NOUN
. PUNCT
  SPACE
I PRON
realize VERB
this DET
might AUX
get AUX
quite ADV
> X
tricky ADJ
and CCONJ
difficult ADJ
, PUNCT
probably ADV
expensive ADJ
, PUNCT
and CCONJ
likely ADV
inconvenient ADJ
> X
or CCONJ
uncomfortable ADJ
to ADP
the DET
subjects NOUN
, PUNCT
but CCONJ
that DET
is AUX
not PART
the DET
same ADJ
as SCONJ
> X
" PUNCT
virtually ADV
impossible ADJ
. PUNCT
"I NOUN
recall VERB
reading VERB
in ADP
the DET
recently ADV
revised VERB
edition NOUN
of ADP
the DET
" PUNCT
Yeast PROPN
Connection"that NUM
there PRON
is AUX
indeed ADV
work NOUN
by ADP
researchers NOUN
to PART
do AUX
this DET
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
they PRON
areworking VERB
on ADP
the DET
theory NOUN
that SCONJ
candida PROPN
overbloom PROPN
with ADP
penetration NOUN
into ADP
mucusmembrane PROPN
tissue NOUN
with ADP
associated VERB
" PUNCT
mild ADJ
" PUNCT
inflammatory ADJ
response NOUN
can AUX
and CCONJ
doesoccur VERB
in ADP
a DET
large ADJ
number NOUN
of ADP
people NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
reject VERB
this DET
" PUNCT
yeast NOUN
hypothesis",then INTJ
I PRON
'd AUX
guess VERB
you PRON
'd AUX
view VERB
this DET
research NOUN
as SCONJ
one NUM
more ADV
wasteful ADJ
and CCONJ
quixoticendeavor ADJ
. PUNCT
  SPACE
Stay VERB
tuned VERB
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59225From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1r9j33$4g8@hsdndev.harvard.edu PROPN
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr22.153000.1@vms.ocom.okstate.edu PROPN
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu INTJ
writes:>>poster PUNCT
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
> X
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
> X
> X
Do AUX
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
being AUX
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not PART
> X
a DET
quack NOUN
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack NOUN
, PUNCT
> X
other ADJ
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
a DET
> X
commonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis NOUN
, PUNCT
> X
or CCONJ
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no ADV
longer ADV
> X
need VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
of ADP
> NUM
people NOUN
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindI PROPN
do AUX
n't PART
like VERB
the DET
term NOUN
" PUNCT
quack NOUN
" PUNCT
being AUX
applied VERB
to ADP
a DET
licensed ADJ
physician NOUN
David PROPN
. PUNCT
Questionable ADJ
conduct NOUN
is AUX
more ADV
appropriately ADV
called VERB
unethical(in NUM
my PRON
opinion).I'll PUNCT
give VERB
you PRON
some DET
examples NOUN
. PUNCT
	 SPACE
1 NUM
. PUNCT
Prescribing VERB
controlled ADJ
substances NOUN
to ADP
patients NOUN
with ADP
no DET
	    SPACE
demonstrated VERB
need(other PROPN
than SCONJ
a DET
drug NOUN
addition NOUN
) PUNCT
for ADP
the DET
medication NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
Prescribing VERB
thyroid NOUN
preps VERB
for ADP
patients NOUN
with ADP
normal ADJ
thyroid NOUN
	    SPACE
function NOUN
for ADP
the DET
purpose NOUN
of ADP
quick ADJ
weight NOUN
loss NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
Using VERB
laetril ADJ
to PART
treat VERB
cancer NOUN
patients NOUN
when ADV
such ADJ
treatment NOUN
has AUX
	    SPACE
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
and CCONJ
dangerous(cyanide PROPN
release NOUN
) PUNCT
by ADP
	    SPACE
the DET
NCI.These PROPN
are AUX
errors NOUN
of ADP
commission NOUN
that PRON
competently ADV
trained VERB
physicians NOUN
should AUX
not PART
committ VERB
but CCONJ
sometimes ADV
do AUX
. PUNCT
  SPACE
There PRON
are AUX
also ADV
errors NOUN
of ADP
omission(some PROPN
of ADP
which PRON
result VERB
in ADP
malpractice NOUN
suits NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
that SCONJ
using VERB
anti ADJ
- ADJ
fungal ADJ
agents NOUN
to PART
try VERB
to PART
relieve VERB
discomfort NOUN
in ADP
a DET
patient NOUN
who PRON
you PRON
suspect VERB
may AUX
be AUX
having VERB
a DET
problem NOUN
with ADP
candida(or NOUN
another DET
fungal ADJ
growth NOUN
) PUNCT
is AUX
an DET
error NOUN
of ADP
commission NOUN
or CCONJ
omission NOUN
. PUNCT
  SPACE
Healers NOUN
have AUX
had VERB
a DET
long ADJ
history NOUN
of ADP
trying VERB
to PART
relieve VERB
human ADJ
suffering NOUN
. PUNCT
  SPACE
Some DET
have AUX
stuck VERB
to ADP
standard NOUN
, PUNCT
approved VERB
procedures NOUN
, PUNCT
others NOUN
have AUX
been AUX
willing ADJ
to PART
try VERB
any DET
reasonable ADJ
treatment NOUN
if SCONJ
there PRON
is AUX
a DET
chance NOUN
that SCONJ
it PRON
will AUX
help VERB
the DET
patient NOUN
. PUNCT
  SPACE
The DET
key NOUN
has AUX
to PART
be AUX
tied VERB
to ADP
the DET
healer NOUN
's PART
oath NOUN
, PUNCT
" PUNCT
I PRON
will AUX
do AUX
no DET
harm NOUN
" PUNCT
. PUNCT
  SPACE
But CCONJ
you PRON
know VERB
David PROPN
that SCONJ
very ADV
few ADJ
treatments NOUN
involve VERB
no DET
risk NOUN
to ADP
the DET
patient NOUN
. PUNCT
  SPACE
The DET
job NOUN
of ADP
the DET
physician NOUN
is AUX
a DET
very ADV
difficult ADJ
one NUM
when ADV
risk NOUN
versus ADP
benefit NOUN
has AUX
to PART
be AUX
weighed VERB
. PUNCT
  SPACE
Each DET
physician NOUN
deals VERB
with ADP
this DET
risk NOUN
/ SYM
benefit NOUN
paradox NOUN
a DET
little ADJ
differently ADV
. PUNCT
  SPACE
Some DET
are AUX
very ADV
conservative ADJ
while SCONJ
others NOUN
are AUX
more ADV
agressive ADJ
. PUNCT
  SPACE
An DET
agressive ADJ
approach NOUN
may AUX
be AUX
more ADV
costly ADJ
to ADP
the DET
patient NOUN
and CCONJ
carry VERB
more ADJ
risk NOUN
but CCONJ
as ADV
long ADV
as SCONJ
the DET
motive NOUN
is AUX
improving VERB
the DET
patient NOUN
's PART
health NOUN
and CCONJ
not PART
an DET
attempt NOUN
to PART
rake VERB
in ADP
lots NOUN
of ADP
money(through PROPN
some DET
of ADP
the DET
schemes NOUN
that PRON
have AUX
been AUX
uncovered VERB
in ADP
the DET
medicare PROPN
fraud NOUN
cases NOUN
) PUNCT
, PUNCT
I PRON
do AUX
n't PART
see VERB
the DET
need NOUN
to PART
label VERB
these DET
healers NOUN
as SCONJ
quacks NOUN
or CCONJ
even ADV
unethical ADJ
. PUNCT
What PRON
do AUX
I PRON
reserve VERB
the DET
term NOUN
quack ADV
for ADP
? PUNCT
  SPACE
Pseudo PROPN
- PUNCT
medical ADJ
professionals NOUN
. PUNCT
  SPACE
These DET
people NOUN
lurk VERB
on ADP
the DET
fringes NOUN
of ADP
the DET
health NOUN
care NOUN
system NOUN
waiting VERB
for ADP
the DET
frustrated ADJ
patient NOUN
to PART
fall VERB
into ADP
their PRON
lair NOUN
. PUNCT
  SPACE
Some DET
of ADP
these DET
individuals NOUN
are AUX
really ADV
doing VERB
a DET
pretty ADV
good ADJ
job NOUN
of ADP
providing VERB
" PUNCT
alternative ADJ
" PUNCT
medicine NOUN
. PUNCT
  SPACE
But CCONJ
many ADJ
lack VERB
any DET
formal ADJ
training NOUN
and CCONJ
are AUX
in ADP
the DET
" PUNCT
business NOUN
" PUNCT
simply ADV
to PART
make VERB
a DET
few ADJ
fast ADJ
bucks NOUN
. PUNCT
   SPACE
While SCONJ
a DET
patient NOUN
can AUX
be AUX
reasonably ADV
assured VERB
of ADP
getting VERB
competent ADJ
care NOUN
when ADV
a DET
liscenced VERB
physician NOUN
is AUX
consulted VERB
, PUNCT
this DET
alternative ADJ
care NOUN
area NOUN
is AUX
really ADV
a DET
buyer NOUN
's PART
beware NOUN
arena NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
lucky ADJ
, PUNCT
you PRON
may AUX
find VERB
someone PRON
who PRON
can AUX
help VERB
you PRON
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
unlucky ADJ
, PUNCT
you PRON
can AUX
loose VERB
a DET
lot NOUN
of ADP
money NOUN
and CCONJ
develop VERB
severe ADJ
disease NOUN
because SCONJ
of ADP
the DET
inability NOUN
of ADP
these DET
pseudo ADJ
- PUNCT
medical ADJ
professional NOUN
to PART
diagnose VERB
disease(which PROPN
is AUX
the DET
fortay NOUN
of ADP
the DET
liscened VERB
physicians).I PROPN
hope NOUN
that SCONJ
this DET
clears VERB
things NOUN
up ADP
David PROPN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59226From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
1993Apr23.211108.26887@midway.uchicago.edu>,bmdelane@quads.uchicago.edu NUM
( PUNCT
brian PROPN
manning PROPN
delaney PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
One NUM
thing NOUN
that PRON
I PRON
have AUX
n't PART
seen VERB
in ADP
this DET
thread NOUN
is AUX
a DET
discussion NOUN
of ADP
the DET
> X
relation NOUN
between ADP
IBD PROPN
inflammation NOUN
and CCONJ
the DET
profile NOUN
of ADP
ingested ADJ
fatty NOUN
> X
acids NOUN
( PUNCT
FAs PROPN
) PUNCT
. PUNCT
> X
> X
I PRON
was AUX
diagnosed VERB
last ADJ
May PROPN
w PROPN
/ SYM
Crohn PROPN
's PART
of ADP
the DET
terminal ADJ
ileum NOUN
. PUNCT
When ADV
I PRON
got VERB
> X
out SCONJ
of ADP
the DET
hospital NOUN
I PRON
read VERB
up ADP
on ADP
it PRON
a DET
bit NOUN
, PUNCT
and CCONJ
came VERB
across ADP
several ADJ
> X
studies NOUN
investigating VERB
the DET
role NOUN
of ADP
EPA PROPN
( PUNCT
an DET
essentially ADV
FA PROPN
) PUNCT
in ADP
reducing VERB
> X
inflammation NOUN
. PUNCT
The DET
evidence NOUN
was AUX
mixed ADJ
. PUNCT
[ PUNCT
Many ADJ
of ADP
these DET
studies NOUN
are AUX
> X
discussed VERB
in ADP
" PUNCT
Inflammatory PROPN
Bowel PROPN
Disease PROPN
, PUNCT
" PUNCT
MacDermott PROPN
, PUNCT
Stenson PROPN
. PROPN
1992 NUM
. PUNCT
] PUNCT
> X
> X
But CCONJ
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
were AUX
some DET
methodological ADJ
bones NOUN
to PART
be AUX
> X
picked VERB
with ADP
the DET
studies NOUN
( PUNCT
both CCONJ
the DET
ones NOUN
w PROPN
/ SYM
pos NOUN
. PUNCT
and CCONJ
w PROPN
/ SYM
neg PROPN
. PUNCT
results NOUN
) PUNCT
. PUNCT
In ADP
> X
the DET
studies NOUN
patients NOUN
were AUX
given VERB
EPA PROPN
( PUNCT
a DET
few ADJ
grams NOUN
/ SYM
day NOUN
for ADP
most ADJ
of ADP
the DET
> PROPN
studies NOUN
) PUNCT
, PUNCT
but CCONJ
, PUNCT
if SCONJ
I PRON
recall VERB
correctly ADV
, PUNCT
there PRON
was AUX
no DET
restriction NOUN
of ADP
the DET
> X
_ PROPN
other ADJ
_ PROPN
FAs NOUN
that SCONJ
the DET
patients NOUN
could AUX
consume VERB
. PUNCT
From ADP
the DET
informed ADJ
> X
layperson PROPN
's PART
perspective NOUN
, PUNCT
this DET
seems VERB
mistaken ADJ
. PUNCT
If SCONJ
lots NOUN
of ADP
n-6 ADJ
FAs NOUN
are AUX
> X
consumed VERB
along ADP
with ADP
the DET
EPA PROPN
, PUNCT
then ADV
the DET
ratio NOUN
of ADP
" PUNCT
bad ADJ
" PUNCT
prostanoid ADJ
> X
products NOUN
to ADP
" PUNCT
good ADJ
" PUNCT
prostanoid ADJ
products NOUN
could AUX
still ADV
be AUX
fairly ADV
" PUNCT
bad ADJ
. PUNCT
" PUNCT
> X
Is AUX
n't PART
this DET
ratio NOUN
the DET
issue NOUN
? PUNCT
> X
> X
What PRON
's AUX
the DET
view NOUN
of ADP
the DET
gastro PROPN
. PUNCT
community NOUN
on ADP
EPA PROPN
these DET
days NOUN
? PUNCT
EPA PROPN
> X
supplements NOUN
, PUNCT
along ADP
with ADP
a DET
fairly ADV
severe ADJ
restriction NOUN
of ADP
other ADJ
FAs NOUN
> X
appear VERB
to PART
have AUX
helped VERB
me PRON
significantly ADV
( PUNCT
though SCONJ
it PRON
could AUX
just ADV
be AUX
the DET
> X
low ADJ
absolute ADJ
amount NOUN
of ADP
fat NOUN
I PRON
eat VERB
-- PUNCT
8 NUM
- SYM
10 NUM
% NOUN
calories NOUN
) PUNCT
. PUNCT
> X
> X
-Brian PUNCT
< X
bmdelane@midway.uchicago.edu>As INTJ
you PRON
note VERB
, PUNCT
the DET
research NOUN
is AUX
mixed ADJ
, PUNCT
so CCONJ
there PRON
is AUX
no DET
consensus NOUN
on ADP
therole NOUN
of ADP
fatty ADJ
acids NOUN
in ADP
Ulcerative ADJ
colitis NOUN
. PUNCT
  SPACE
There PRON
is AUX
a DET
role NOUN
for ADP
shortchain ADJ
fatty ADJ
acids NOUN
in ADP
patients NOUN
with ADP
colostomies NOUN
and CCONJ
rectal ADJ
pouchesthat PUNCT
are AUX
inflammed VERB
( PUNCT
Short PROPN
is AUX
butyrate ADJ
and CCONJ
shorter ADJ
) PUNCT
. PUNCT
  SPACE
There PRON
may AUX
be AUX
a DET
rolefor NOUN
treatment NOUN
of ADP
UC PROPN
with ADP
Short ADJ
chain NOUN
fatty ADJ
acids NOUN
, PUNCT
and CCONJ
I PRON
am AUX
looking VERB
forward ADV
to ADP
the DET
upcoming ADJ
AGA PROPN
meeting NOUN
in ADP
Boston PROPN
to PART
see VERB
what PRON
people NOUN
aredoing VERB
. PUNCT
  SPACE
You PRON
raise VERB
a DET
hypothesis NOUN
about ADP
the DET
studies NOUN
and CCONJ
restriction NOUN
of ADP
otherfatty ADJ
acids NOUN
. PUNCT
  SPACE
You PRON
should AUX
contact VERB
the DET
authors NOUN
directly ADV
about ADP
that DET
oreven PROPN
write VERB
a DET
letter NOUN
to ADP
the DET
editor NOUN
- PUNCT
it PRON
is AUX
a DET
good ADJ
point NOUN
. PUNCT
  SPACE
By ADP
the DET
way NOUN
, PUNCT
the DET
abbreviation NOUN
EPA PROPN
is AUX
not PART
in ADP
general ADJ
use NOUN
, PUNCT
so CCONJ
I PRON
do AUX
not PART
know VERB
what PRON
fatty NOUN
acid NOUN
you PRON
are AUX
speaking VERB
about ADP
. PUNCT
And CCONJ
to ADP
Brian PROPN
an DET
U NOUN
of ADP
C PROPN
--- PUNCT
  SPACE
There PRON
is AUX
a DET
physician NOUN
named VERB
Stephen PROPN
Hanauerthere PROPN
who PRON
is AUX
a DET
recognized VERB
expert NOUN
in ADP
the DET
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
You PRON
might AUX
give VERB
him PRON
a DET
call NOUN
. PUNCT
  SPACE
He PRON
is AUX
interested ADJ
in ADP
new ADJ
combinations NOUN
of ADP
drugs NOUN
for ADP
the DET
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
call VERB
please INTJ
say VERB
hello INTJ
to ADP
him PRON
from ADP
me PRON
, PUNCT
I PRON
was AUX
looking VERB
at ADP
U NOUN
of ADP
C PROPN
for ADP
a DET
position NOUN
, PUNCT
and CCONJ
perhaps ADV
still ADV
am AUX
. PUNCT
  SPACE
Andbe PROPN
sure ADJ
to PART
look VERB
into ADP
joining VERB
the DET
CCFA.Best ADJ
of ADP
Luck PROPN
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59227From NUM
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr20.173019.11903@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>As NOUN
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
like VERB
> X
the DET
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
use VERB
> X
it PRON
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighbor NOUN
> X
has AUX
an DET
ulcer NOUN
. PUNCT
> X
Nobody PRON
is AUX
saying VERB
that SCONJ
you PRON
should AUX
n't PART
be AUX
allowed VERB
to PART
use VERB
msg NOUN
. PUNCT
  SPACE
Justdon't PROPN
force VERB
it PRON
on ADP
others NOUN
. PUNCT
If SCONJ
you PRON
have AUX
food NOUN
that PRON
you PRON
want VERB
to PART
enhance VERB
with ADP
msg NOUN
just ADV
put VERB
the DET
MSG NOUN
on ADP
the DET
table NOUN
like SCONJ
salt NOUN
. PUNCT
  SPACE
It PRON
isthen ADV
the DET
option NOUN
of ADP
the DET
eater NOUN
to PART
use VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
make VERB
a DET
commericalproduct NOUN
, PUNCT
just ADV
leave VERB
it PRON
out ADP
. PUNCT
You PRON
can AUX
include VERB
a DET
packet NOUN
( PUNCT
like SCONJ
somesalt NOUN
packets NOUN
) PUNCT
if SCONJ
you PRON
desire VERB
. PUNCT
Salt NOUN
, PUNCT
pepper NOUN
, PUNCT
mustard NOUN
, PUNCT
ketchup NOUN
, PUNCT
pickles NOUN
..... PUNCT
are AUX
table NOUN
options NOUN
. PUNCT
Treat VERB
MSG PROPN
the DET
same ADJ
way NOUN
. PUNCT
  SPACE
I PRON
would AUX
n't PART
shove VERB
my PRON
condiments NOUN
down ADP
yourthroat PRON
, PUNCT
do AUX
n't PART
shove VERB
yours PRON
down ADP
mine PRON
. PUNCT
WFL-- PROPN
Walter PROPN
LundbyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59228From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>Do X
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
being AUX
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not PART
> X
a DET
quack NOUN
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack,>other PROPN
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
a DET
> X
commonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis,>or NOUN
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no ADV
longer ADV
> X
need VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
of ADP
> NUM
people NOUN
. PUNCT
I PRON
would AUX
say VERB
there PRON
are AUX
also ADV
significant ADJ
numbers NOUN
of ADP
unscrupulous ADJ
doctors NOUN
( PUNCT
ofthe NOUN
squeaky ADV
- PUNCT
clean ADJ
, PUNCT
traditional ADJ
crew NOUN
- PUNCT
cut VERB
, PUNCT
talk NOUN
to ADP
the DET
AMA PROPN
before ADP
startingany ADJ
treatment NOUN
, PUNCT
kind NOUN
) PUNCT
who PRON
recommend VERB
treatments NOUN
that SCONJ
, PUNCT
though SCONJ
" PUNCT
accepted VERB
" PUNCT
, PUNCT
maynot PROPN
be AUX
necessary ADJ
for ADP
the DET
patient NOUN
at ADP
the DET
time NOUN
. PUNCT
  SPACE
And CCONJ
all DET
for ADP
making VERB
a DET
quickbuck NOUN
. PUNCT
  SPACE
I PRON
would AUX
not PART
be AUX
surprised ADJ
if SCONJ
the DET
cost NOUN
of ADP
medical ADJ
services NOUN
in ADP
the DET
U.S. PROPN
issignificantly ADV
inflated VERB
by ADP
these DET
" PUNCT
quacks NOUN
of ADP
a DET
different ADJ
color NOUN
" PUNCT
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
I'dsay VERB
these DET
doctors NOUN
are AUX
the DET
most ADV
dangerous ADJ
since SCONJ
they PRON
call VERB
into ADP
question NOUN
thetrue ADJ
focus NOUN
of ADP
the DET
medical ADJ
profession NOUN
. PUNCT
  SPACE
The DET
AMA PROPN
and CCONJ
the DET
Boards PROPN
should AUX
focuson VERB
these DET
" PUNCT
quacks NOUN
" PUNCT
instead ADV
of ADP
devoting VERB
unbelievable ADJ
energy NOUN
on ADP
' PUNCT
search NOUN
- PUNCT
and CCONJ
- PUNCT
destroy NOUN
- PUNCT
missions NOUN
' PUNCT
to PART
pull VERB
the DET
licenses NOUN
of ADP
those DET
doctors NOUN
who PRON
are AUX
trying VERB
non ADJ
- ADJ
traditional ADJ
or CCONJ
not PART
fully ADV
accepted VERB
treatments NOUN
for ADP
their PRON
desperate ADJ
patientsthat NOUN
traditional ADJ
/ SYM
accepted VERB
medicine NOUN
can AUX
not PART
help.***************************************************Now VERB
to PART
make VERB
a DET
general ADJ
comment NOUN
on ADP
many ADJ
recent ADJ
posts:***************************************************Lately ADV
I PRON
've AUX
seen VERB
the DET
word NOUN
" PUNCT
quack NOUN
" PUNCT
bandied VERB
about ADP
recklessly ADV
. PUNCT
  SPACE
When ADV
a DET
doctor NOUN
ordoctor NOUN
- PUNCT
wanna PROPN
- PUNCT
be PROPN
has AUX
decided VERB
to PART
quit VERB
discussing VERB
any DET
controversial ADJ
medicalsubject NOUN
in ADP
a DET
civilized ADJ
manner NOUN
, PUNCT
all DET
he PRON
/ CCONJ
she PRON
has AUX
to PART
do AUX
is AUX
say VERB
" PUNCT
quack ADJ
- PUNCT
quack NOUN
" PUNCT
andsomehow ADV
they PRON
magically ADV
expect VERB
the DET
readership NOUN
of ADP
this DET
newsgroup NOUN
to PART
roll VERB
overon ADP
their PRON
backs NOUN
and CCONJ
pee NOUN
- PUNCT
pee PROPN
on ADP
themselves PRON
in ADP
obedience NOUN
. PUNCT
  SPACE
What PRON
do AUX
they PRON
teachyou VERB
in ADP
medical ADJ
school NOUN
- PUNCT
how ADV
to PART
throw VERB
your PRON
authority NOUN
around?Let VERB
me PRON
put VERB
it PRON
another DET
way NOUN
to PART
make VERB
my PRON
point NOUN
clear ADJ
: PUNCT
  SPACE
" PUNCT
quack INTJ
" PUNCT
is AUX
a DET
nebulous ADJ
wordlacking NOUN
in ADP
any DET
precision NOUN
. PUNCT
  SPACE
Its PRON
sole ADJ
use NOUN
is AUX
to PART
obfuscate VERB
the DET
issues NOUN
at ADP
hand NOUN
. PUNCT
The DET
indiscriminate ADJ
use NOUN
of ADP
this DET
word NOUN
is AUX
a DET
sure ADJ
sign NOUN
of ADP
incompetency NOUN
; PUNCT
  SPACE
and CCONJ
comingfrom VERB
any DET
medical ADJ
doctor NOUN
( PUNCT
or CCONJ
wanna PROPN
- PUNCT
be PROPN
) PUNCT
, PUNCT
where ADV
competency NOUN
is AUX
expected VERB
, PUNCT
is AUX
realscary ADJ
. PUNCT
But CCONJ
what PRON
do AUX
I PRON
know VERB
, PUNCT
I PRON
've AUX
already ADV
been AUX
diagnosed VERB
by ADP
the DET
sci.med.gods PROPN
in ADP
thisnewsgroup NOUN
as SCONJ
being AUX
' PUNCT
anal ADJ
retentive NOUN
' PUNCT
, PUNCT
and CCONJ
' PUNCT
psychotic ADJ
' PUNCT
. PUNCT
  SPACE
I PRON
look VERB
forward ADV
to ADP
morenet.diagnoses NOUN
. PUNCT
  SPACE
Hey INTJ
, PUNCT
they PRON
're AUX
free ADJ
. PUNCT
Jon PROPN
" PUNCT
Quacks NOUN
' PUNCT
R NOUN
Us PROPN
" PUNCT
Noring(p.s PUNCT
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
onthe DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
andtheories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group NOUN
. PUNCT
You PRON
can AUX
call VERB
it PRON
sci.med.traditional.moderated VERB
or CCONJ
sci.med.AMA-approved VERB
, PUNCT
so ADV
youcan PROPN
keep VERB
anal ADJ
- PUNCT
retentives NOUN
like SCONJ
me PRON
out SCONJ
of ADP
it.)-- PROPN
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59229From NUM
: PUNCT
Pat PROPN
Lydon PROPN
< X
pat@netmanage.com>Subject VERB
: PUNCT
HELP PROPN
... PUNCT
REFLUX PROPN
ESOPHAGITISI NOUN
am AUX
writing VERB
this DET
to PART
find VERB
out ADP
the DET
following:1 NUM
. PUNCT
) PUNCT
	 SPACE
Any DET
information NOUN
on ADP
surgery NOUN
to PART
prevent VERB
reflux NOUN
esophagitis.2 PROPN
. PUNCT
) PUNCT
	 SPACE
The DET
name(s PROPN
) PUNCT
of ADP
a DET
doctor(s PROPN
) PUNCT
who PRON
specialize VERB
in ADP
such ADJ
surgery.3 PROPN
. PUNCT
) PUNCT
	 SPACE
Information NOUN
on ADP
reflux NOUN
esophagitis NOUN
which PRON
leads VERB
to ADP
cancer NOUN
. PUNCT
My PRON
boyfriend NOUN
, PUNCT
age NOUN
34 NUM
and CCONJ
otherwise ADV
in ADP
good ADJ
health NOUN
, PUNCT
was AUX
diagnosed VERB
with ADP
reflux PROPN
esophagitis PROPN
and CCONJ
a DET
hiatal ADJ
hernia NOUN
about ADV
2 NUM
years NOUN
ago ADV
. PUNCT
  SPACE
At ADP
that DET
time NOUN
he PRON
saw VERB
a DET
gastroenterologist NOUN
and CCONJ
has AUX
tried VERB
acid ADJ
controllers NOUN
( PUNCT
Mylanta PROPN
, PUNCT
Tagamet PROPN
) PUNCT
, PUNCT
as ADV
well ADV
as SCONJ
a DET
restricted VERB
diet NOUN
and CCONJ
raising VERB
the DET
head NOUN
of ADP
his PRON
bed NOUN
. PUNCT
  SPACE
These DET
treatments NOUN
were AUX
not PART
effective ADJ
and CCONJ
because SCONJ
the DET
damage NOUN
was AUX
worsening VERB
, PUNCT
he PRON
opted VERB
for ADP
a DET
surgical ADJ
repair NOUN
3 NUM
months NOUN
ago ADV
. PUNCT
  SPACE
He PRON
was AUX
told VERB
there PRON
were AUX
two NUM
repair NOUN
techniques NOUN
that PRON
could AUX
fix VERB
the DET
problem NOUN
; PUNCT
a DET
Nissen PROPN
wrap NOUN
and CCONJ
a DET
" PUNCT
Hill PROPN
Repair PROPN
" PUNCT
. PUNCT
  SPACE
He PRON
opted VERB
for ADP
the DET
" PUNCT
Hill PROPN
Repair PROPN
" PUNCT
. PUNCT
He PRON
recovered VERB
very ADV
well ADV
from ADP
the DET
surgery NOUN
itself PRON
but CCONJ
the DET
pain NOUN
he PRON
had AUX
originally ADV
is AUX
worse ADJ
and CCONJ
in ADP
addition NOUN
he PRON
now ADV
has AUX
trouble NOUN
swallowing VERB
( PUNCT
including VERB
saliva).The DET
doctor NOUN
now ADV
wants VERB
to PART
do AUX
an DET
endoscopy NOUN
and CCONJ
has AUX
also ADV
informed VERB
him PRON
that SCONJ
a DET
biopsy NOUN
might AUX
be AUX
necessary ADJ
if SCONJ
he PRON
has AUX
a DET
pre ADJ
- ADJ
cancerous ADJ
condition NOUN
which PRON
he PRON
called VERB
" PUNCT
Barrett PROPN
's PART
Syndrome PROPN
" PUNCT
. PUNCT
If SCONJ
he PRON
ca AUX
n't PART
avoid VERB
having VERB
reflux NOUN
will AUX
he PRON
necessarily ADV
get AUX
cancer?Basically ADV
, PUNCT
if SCONJ
anyone PRON
has AUX
any DET
information NOUN
on ADP
what PRON
he PRON
should AUX
do AUX
now ADV
, PUNCT
I PRON
'd AUX
appreciate VERB
it PRON
. PUNCT
Thanks NOUN
, PUNCT
Pat PROPN
Lydon/ PROPN
NetManage PROPN
, PUNCT
Inc./ PROPN
Pat@netmanage.comNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59230From NUM
: PUNCT
davel@davelpcSanDiego NOUN
. PUNCT
NCR.com PROPN
( PUNCT
Dave PROPN
Lord)Subject NOUN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn NOUN
article NOUN
< X
1r8pcn$rm1@terminator.rs.itd.umich.edu NUM
> X
, PUNCT
Donald PROPN
Mackie<Donald_Mackie@med.umich.edu PROPN
> X
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff PROPN
, PUNCT
> X
tron@fafnir.la.locus.com PROPN
writes VERB
: PUNCT
> X
> X
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
> X
> X
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
> X
> X
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki PROPN
? PUNCT
> X
> X
I PRON
'm AUX
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
of ADP
> X
the DET
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-)It PROPN
's PART
plain ADJ
yoghurt NOUN
with ADP
grated VERB
cucumber NOUN
and CCONJ
coriander NOUN
( PUNCT
other ADJ
spices NOUN
aresometimes NOUN
used VERB
) PUNCT
. PUNCT
Some DET
people NOUN
use VERB
half ADJ
yoghurt NOUN
and CCONJ
half ADJ
mayonaise NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59231From NUM
: PUNCT
bmdelane@quads.uchicago.edu PROPN
( PUNCT
brian PROPN
manning VERB
delaney)Subject NOUN
: PUNCT
Re ADP
: PUNCT
diet NOUN
for ADP
Crohn PROPN
's PART
( PUNCT
IBD)In NOUN
article NOUN
< X
uabdpo.dpo.uab.edu-230493173928@spam.dom.uab.edu ADJ
> X
uabdpo.dpo.uab.edu!gila005 ADJ
( PUNCT
Stephen PROPN
Holland PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr23.211108.26887@midway.uchicago.edu>,>bmdelane@quads.uchicago.edu NUM
( PUNCT
brian PROPN
manning PROPN
delaney PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
> X
One NUM
thing NOUN
that PRON
I PRON
have AUX
n't PART
seen VERB
in ADP
this DET
thread NOUN
is AUX
a DET
discussion NOUN
of ADP
the DET
> X
> X
relation NOUN
between ADP
IBD PROPN
inflammation NOUN
and CCONJ
the DET
profile NOUN
of ADP
ingested ADJ
fatty NOUN
> X
> X
acids NOUN
( PUNCT
FAs PROPN
) PUNCT
. PUNCT
> X
> X
[ PUNCT
.... PUNCT
] PUNCT
> X
[ PUNCT
.... PUNCT
] PUNCT
> X
even ADV
write VERB
a DET
letter NOUN
to ADP
the DET
editor NOUN
- PUNCT
it PRON
is AUX
a DET
good ADJ
point NOUN
. PUNCT
  SPACE
By ADP
the DET
way,>the ADJ
abbreviation NOUN
EPA PROPN
is AUX
not PART
in ADP
general ADJ
use NOUN
, PUNCT
so CCONJ
I PRON
do AUX
not PART
know VERB
what PRON
> X
fatty ADJ
acid NOUN
you PRON
are AUX
speaking VERB
about ADP
. PUNCT
Sorry INTJ
-- PUNCT
I PRON
mean VERB
eicosapentaenoic ADJ
acid.>And NOUN
to ADP
Brian PROPN
an DET
U NOUN
of ADP
C PROPN
--- PUNCT
  SPACE
There PRON
is AUX
a DET
physician NOUN
named VERB
Stephen PROPN
Hanauer PROPN
> X
there ADV
who PRON
is AUX
a DET
recognized VERB
expert NOUN
in ADP
the DET
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
You PRON
might AUX
> X
give VERB
him PRON
a DET
call NOUN
. PUNCT
Coincidentaly PROPN
, PUNCT
just ADV
yesterday NOUN
I PRON
was AUX
( PUNCT
finally ADV
) PUNCT
referred VERB
from ADP
the DET
clinicto NOUN
Hanauer PROPN
. PUNCT
I PRON
'm AUX
seeing VERB
him PRON
on ADP
May PROPN
24 NUM
. PUNCT
I PRON
'll AUX
report VERB
what PRON
he PRON
says VERB
aboutthis PROPN
question.>the PROPN
treatment NOUN
of ADP
IBD PROPN
. PUNCT
  SPACE
If SCONJ
you PRON
call VERB
please INTJ
say VERB
hello INTJ
to ADP
him PRON
from ADP
me,>I PROPN
was AUX
looking VERB
at ADP
U NOUN
of ADP
C PROPN
for ADP
a DET
position NOUN
, PUNCT
and CCONJ
perhaps ADV
still ADV
am AUX
. PUNCT
Will AUX
do.-Brian PROPN
DelaneyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59232From NUM
: PUNCT
solmstead@PFC.Forestry X
. PUNCT
CA PROPN
( PUNCT
Sherry PROPN
Olmstead)Subject NUM
: PUNCT
Re ADP
: PUNCT
Heat PROPN
Shock PROPN
Proteinsrousseaua@immunex.com PROPN
writes VERB
about ADP
heat NOUN
shock NOUN
proteins NOUN
( PUNCT
HSP PROPN
's PART
) PUNCT
and CCONJ
DNA.I PROPN
hate VERB
to PART
be AUX
derogatory ADJ
, PUNCT
but CCONJ
in ADP
this DET
case NOUN
I PRON
think VERB
it PRON
's AUX
warranted VERB
. PUNCT
HSP PROPN
's PART
are AUX
part NOUN
of ADP
the DET
cellular ADJ
response NOUN
to ADP
stress NOUN
. PUNCT
  SPACE
The DET
only ADJ
reason NOUN
theyare NOUN
called VERB
' PUNCT
heat NOUN
shock NOUN
proteins NOUN
' PART
is AUX
because SCONJ
they PRON
were AUX
first ADV
demonstratedusing VERB
heat NOUN
shock NOUN
. PUNCT
  SPACE
Dead ADJ
tissue NOUN
( PUNCT
ie X
. PUNCT
meat NOUN
) PUNCT
is AUX
not PART
going VERB
to PART
produce VERB
ANYprotein- NOUN
because SCONJ
it PRON
's AUX
DEAD NOUN
! PUNCT
  SPACE
Also ADV
, PUNCT
who PRON
cares VERB
if SCONJ
the DET
DNA NOUN
you PRON
are AUX
ingesting VERB
is AUX
mutated VERB
! PUNCT
? PUNCT
  SPACE
It PRON
will AUX
be AUX
completely ADV
digested VERB
in ADP
your PRON
stomach NOUN
, PUNCT
which PRON
is AUX
about ADP
pH X
2 NUM
. PUNCT
  SPACE
Some DET
of ADP
you PRON
worry VERB
WAY PROPN
too ADV
much ADV
. PUNCT
  SPACE
Eat VERB
a DET
healthy ADJ
, PUNCT
balanced ADJ
diet NOUN
and CCONJ
relax VERB
. PUNCT
My PRON
advice NOUN
is AUX
, PUNCT
if SCONJ
you PRON
do AUX
n't PART
know VERB
what PRON
you PRON
are AUX
talking VERB
about ADP
, PUNCT
it PRON
is AUX
betterto ADJ
keep VERB
your PRON
mouth NOUN
shut VERB
than SCONJ
to PART
open VERB
it PRON
and CCONJ
remove VERB
all DET
doubt NOUN
about ADP
yourignorance NOUN
. PUNCT
  SPACE
Do AUX
n't PART
speculate VERB
, PUNCT
or CCONJ
at ADP
least ADJ
get AUX
some DET
concrete NOUN
informationbefore ADP
you PRON
do!Sherry VERB
OlmsteadBiochemist NOUN
  SPACE
SHERRY PROPN
OLMSTEAD PROPN
                   SPACE
Title NOUN
: PUNCT
Lab VERB
Technician ADJ
  SPACE
Forestry PROPN
Canada PROPN
                   SPACE
Phone NOUN
: PUNCT
( PUNCT
604 NUM
) PUNCT
363 NUM
- PUNCT
0600 NUM
  SPACE
Victoria PROPN
, PUNCT
B.C. PROPN
                    SPACE
Internet NOUN
: PUNCT
SOLMSTEAD@A1.PFC.Forestry X
. PUNCT
CANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59233From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Poisoning VERB
with ADP
heavy ADJ
water NOUN
( PUNCT
was AUX
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?)In NOUN
article NOUN
< X
1993Apr19.043654.13068@informix.com NUM
> X
proberts@informix.com X
( PUNCT
Paul PROPN
Roberts PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr12.165410.4206@kestrel.edu NUM
> X
king@reasoning.com X
( PUNCT
Dick PROPN
King PROPN
) PUNCT
writes:>>>>I ADJ
recall NOUN
reading VERB
somewhere ADV
, PUNCT
during ADP
my PRON
youth NOUN
, PUNCT
in ADP
some DET
science NOUN
popularization>>book NOUN
, PUNCT
that SCONJ
whyle NOUN
isotope NOUN
changes NOUN
do AUX
n't PART
normally ADV
affect VERB
chemistry NOUN
, PUNCT
a DET
consumption>>of NOUN
only ADV
heavy ADJ
water NOUN
would AUX
be AUX
fatal ADJ
, PUNCT
and CCONJ
that SCONJ
seeds NOUN
watered VERB
only ADV
with ADP
heavy>>water NOUN
do AUX
not PART
sprout VERB
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
about ADP
this?>>>>I NOUN
also ADV
heard VERB
this DET
. PUNCT
I PRON
always ADV
thought VERB
it PRON
might AUX
make VERB
a DET
good ADJ
eposide NOUN
of>'Columbo NUM
' PUNCT
for ADP
someone PRON
to PART
be AUX
poisoned VERB
with ADP
heavy ADJ
water NOUN
- PUNCT
it PRON
wouldn't PROPN
> X
show VERB
up ADP
in ADP
any DET
chemical NOUN
test NOUN
. PUNCT
No DET
one NOUN
else ADV
seems VERB
to PART
know VERB
, PUNCT
so ADV
I PRON
'll AUX
post VERB
this DET
. PUNCT
This DET
topic NOUN
came VERB
up ADP
on ADP
sci.physics.fusion NOUN
shortly ADV
after ADP
the DET
cold ADJ
- PUNCT
fusionflap NOUN
started VERB
. PUNCT
  SPACE
As SCONJ
I PRON
recall VERB
, PUNCT
its PRON
been AUX
done VERB
to ADP
some DET
experimental ADJ
mice NOUN
. PUNCT
They PRON
showed VERB
various ADJ
ill ADJ
effects NOUN
and CCONJ
eventually ADV
died VERB
. PUNCT
  SPACE
The DET
reason NOUN
isthat ADP
deuterium NOUN
does AUX
not PART
have AUX
exactly ADV
the DET
same ADJ
reaction NOUN
rates NOUN
ashydrogen VERB
due ADP
to ADP
its PRON
extra ADJ
mass NOUN
( PUNCT
which PRON
causes VERB
lower ADJ
velocity NOUN
, PUNCT
Boltzmanconstant PROPN
, PUNCT
mumble ADJ
) PUNCT
. PUNCT
  SPACE
This DET
throws VERB
various ADJ
bits NOUN
of ADP
body NOUN
biochemistry NOUN
outof PROPN
kilter PROPN
, PUNCT
and CCONJ
you PRON
get VERB
sick ADJ
and CCONJ
die VERB
. PUNCT
I've PROPN
never ADV
heard VERB
of ADP
anyone PRON
being AUX
poisened VERB
this DET
way NOUN
, PUNCT
in ADP
or CCONJ
out SCONJ
of ADP
reallife NOUN
. PUNCT
  SPACE
The DET
process NOUN
takes VERB
quite DET
a DET
while NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
wants VERB
to PART
write VERB
thisbook NOUN
, PUNCT
I PRON
would AUX
imagine VERB
you PRON
would AUX
have AUX
to:1 NOUN
: PUNCT
Replace VERB
a DET
significant ADJ
fraction NOUN
of ADP
the DET
water NOUN
in ADP
the DET
body NOUN
with ADP
heavy ADJ
   SPACE
water.2 ADV
: PUNCT
Wait VERB
while SCONJ
normal ADJ
breakdown NOUN
and CCONJ
repair NOUN
processes NOUN
cause VERB
other ADJ
   SPACE
molecules NOUN
in ADP
the DET
body NOUN
to PART
be AUX
synthesised VERB
using VERB
the DET
deuterium NOUN
. PUNCT
During ADP
this DET
process NOUN
the DET
victim NOUN
would AUX
gradually ADV
deteriorate VERB
andeventually ADV
die VERB
, PUNCT
but CCONJ
I PRON
imagine VERB
it PRON
would AUX
take VERB
weeks NOUN
during ADP
which PRON
thepoisoner NOUN
would AUX
have AUX
to PART
ensure VERB
that SCONJ
a DET
significant ADJ
proportion NOUN
of ADP
thewater NOUN
the DET
victim NOUN
ingested VERB
was AUX
heavy ADJ
. PUNCT
You PRON
would AUX
get AUX
such DET
a DET
mess NOUN
of ADP
symptoms NOUN
that PRON
the DET
doctors NOUN
would AUX
be AUX
bothalarmed VERB
and CCONJ
confused ADJ
. PUNCT
  SPACE
Why ADV
should AUX
every DET
organ NOUN
in ADP
the DET
body NOUN
suddenlybegin NOUN
to PART
deteriorate VERB
? PUNCT
  SPACE
If SCONJ
you PRON
can AUX
figure VERB
out ADP
how ADV
the DET
poisoner NOUN
gets VERB
theheavy ADJ
water NOUN
into ADP
the DET
victim NOUN
in ADP
a DET
hospital NOUN
then ADV
you PRON
could AUX
have AUX
a DET
realstory ADJ
here ADV
. PUNCT
Come VERB
to PART
think VERB
of ADP
it PRON
, PUNCT
< X
2 NUM
> X
would AUX
continue VERB
even ADV
after ADP
the DET
heavy ADJ
water NOUN
wasno NOUN
longer ADV
being AUX
ingested VERB
, PUNCT
so CCONJ
hospitalisation NOUN
might AUX
be AUX
too ADV
late ADJ
. PUNCT
The DET
most ADV
detectable ADJ
effect NOUN
would AUX
be AUX
that SCONJ
the DET
victim NOUN
's PART
body NOUN
fluidswould AUX
literally ADV
be AUX
" PUNCT
heavy ADJ
" PUNCT
. PUNCT
  SPACE
Water PROPN
has AUX
a DET
molecular ADJ
weight NOUN
of ADP
18 NUM
andheavy NOUN
water NOUN
has AUX
a DET
MW PROPN
of ADP
20 NUM
. PUNCT
  SPACE
Thus ADV
the DET
victim NOUN
's PART
weight NOUN
will AUX
increase VERB
byabout ADV
1 NUM
% NOUN
for ADP
every DET
10 NUM
% NOUN
of ADP
body NOUN
water NOUN
replaced VERB
by ADP
heavy ADJ
water NOUN
. PUNCT
  SPACE
Maybethe PROPN
detection NOUN
occurs VERB
because SCONJ
some DET
pathologist NOUN
in ADP
the DET
lab NOUN
notices VERB
thatthe PROPN
victim NOUN
's PART
urine NOUN
is AUX
strangely ADV
dense ADJ
. PUNCT
  SPACE
Is AUX
there PRON
any DET
medical ADJ
testinvolving VERB
the DET
specific ADJ
gravity NOUN
of ADP
a DET
body NOUN
fluid?Paul.-- PROPN
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59234From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
cholistasis(sp?)/fat ADJ
- PUNCT
free ADJ
diet/pregnancy!!heart@access.digex.com PROPN
( PUNCT
G PROPN
) PUNCT
writes:>Hi,>I've PROPN
just ADV
returned VERB
from ADP
a DET
visit NOUN
with ADP
my PRON
OB PROPN
/ SYM
GYN PROPN
and CCONJ
I PRON
have AUX
a DET
few ADJ
> NOUN
concerns NOUN
that SCONJ
maybe ADV
y' PRON
all DET
can AUX
help VERB
me PRON
with ADP
. PUNCT
  SPACE
I PRON
've AUX
been AUX
seeing VERB
> PUNCT
her PRON
every DET
4 NUM
weeks NOUN
for ADP
the DET
past ADJ
few ADJ
months NOUN
( PUNCT
I PRON
'm AUX
at ADP
week NOUN
28 NUM
) PUNCT
> X
and CCONJ
during ADP
the DET
last ADJ
2 NUM
visits NOUN
I PRON
've AUX
gained VERB
9 NUM
to ADP
9 NUM
1/2 NUM
pounds NOUN
every DET
> X
4 NUM
weeks NOUN
. PUNCT
  SPACE
She PRON
said VERB
this DET
was AUX
unacceptable ADJ
over ADP
any DET
4 NUM
week NOUN
period NOUN
. PUNCT
> X
As SCONJ
it PRON
stands VERB
I PRON
've AUX
thus ADV
far ADV
gained VERB
26 NUM
pounds NOUN
. PUNCT
  SPACE
Also ADV
she PRON
says VERB
that SCONJ
> X
though SCONJ
I PRON
'm AUX
at ADP
28 NUM
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
is AUX
27 NUM
weeks NOUN
, PUNCT
I PRON
think VERB
she PRON
> X
mentioned VERB
27 NUM
inches NOUN
for ADP
the DET
top NOUN
of ADP
the DET
fundus NOUN
. PUNCT
  SPACE
When ADV
I PRON
was AUX
13 NUM
> X
weeks NOUN
the DET
baby NOUN
's PART
size NOUN
was AUX
14 NUM
weeks NOUN
. PUNCT
  SPACE
I PRON
must AUX
also ADV
add VERB
, PUNCT
that SCONJ
I PRON
had AUX
> X
an DET
operation NOUN
a DET
few ADJ
years NOUN
ago ADV
for ADP
endometriosis NOUN
and CCONJ
I PRON
've AUX
had VERB
no DET
> NOUN
problems NOUN
with ADP
endometriosis NOUN
but CCONJ
apparently ADV
it PRON
is AUX
causing VERB
me PRON
pain NOUN
> X
in ADP
my PRON
pelvic ADJ
region NOUN
during ADP
the DET
pregnancy NOUN
, PUNCT
and CCONJ
I PRON
have AUX
a DET
very ADV
> X
difficult ADJ
time NOUN
moving VERB
, PUNCT
and CCONJ
the DET
doc NOUN
has AUX
recommended VERB
I PRON
not PART
walk VERB
or CCONJ
> X
move VERB
unless SCONJ
I PRON
have AUX
to PART
. PUNCT
( PUNCT
I PRON
have AUX
a DET
little ADJ
handicapped ADJ
sticker NOUN
for ADP
> X
when ADV
I PRON
do AUX
need VERB
to PART
go VERB
out ADP
. PUNCT
) PUNCT
> X
Anyway INTJ
that DET
's AUX
1/2 NUM
of ADP
the DET
situation NOUN
the DET
other ADJ
is AUX
that SCONJ
almost ADV
from ADP
> X
the DET
beginning NOUN
of ADP
pregnancy NOUN
I PRON
was AUX
getting VERB
sick ADJ
( PUNCT
throwing VERB
up ADP
) PUNCT
about ADP
> SYM
2 NUM
- SYM
3 NUM
times NOUN
a DET
day NOUN
and CCONJ
mostly ADV
it PRON
was AUX
bile ADJ
that PRON
was AUX
being AUX
eliminated VERB
. PUNCT
  SPACE
> X
( PUNCT
I PRON
told VERB
her PRON
about ADP
this DET
) PUNCT
. PUNCT
  SPACE
I PRON
know VERB
this DET
because SCONJ
I PRON
was AUX
n't PART
eating VERB
> X
very ADV
much ADV
due ADP
to ADP
the DET
nausea NOUN
and CCONJ
could AUX
see VERB
the DET
' PUNCT
results NOUN
' PUNCT
. PUNCT
  SPACE
Well INTJ
> X
now ADV
I PRON
only ADV
get VERB
sick ADJ
about ADP
once ADV
every DET
1 NUM
- SYM
2 NUM
weeks NOUN
, PUNCT
and CCONJ
it PRON
is AUX
still ADV
bile ADJ
> X
related VERB
. PUNCT
  SPACE
But CCONJ
in ADP
addition NOUN
I PRON
had AUX
begun VERB
to PART
feel VERB
movement NOUN
near SCONJ
my PRON
> X
upper ADJ
right ADJ
abdomen NOUN
, PUNCT
just ADV
below ADP
the DET
right ADJ
breast NOUN
, PUNCT
usually ADV
when ADV
I PRON
> X
was AUX
lying VERB
on ADP
my PRON
right ADJ
side NOUN
. PUNCT
  SPACE
It PRON
began VERB
to PART
get AUX
worse ADJ
though ADV
because SCONJ
> X
it PRON
started VERB
to PART
hurt VERB
when ADV
I PRON
lay VERB
on ADP
my PRON
right ADJ
side NOUN
, PUNCT
and CCONJ
then ADV
it PRON
hurt VERB
  SPACE
> X
no ADV
matter ADV
what PRON
position NOUN
I PRON
was AUX
in ADV
. PUNCT
  SPACE
Next ADV
, PUNCT
I PRON
noticed VERB
that SCONJ
when ADV
I PRON
> X
ate VERB
greasy NOUN
or CCONJ
fatty NOUN
foods NOUN
I PRON
felt VERB
like SCONJ
my PRON
entire ADJ
abdomen NOUN
had AUX
> X
turned VERB
to ADP
stone NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
in ADP
the DET
area NOUN
got VERB
worse ADJ
. PUNCT
  SPACE
However ADV
if SCONJ
> X
I PRON
ate VERB
sauerkraut NOUN
or CCONJ
vinegar NOUN
or CCONJ
something PRON
to PART
' PUNCT
cut VERB
' PUNCT
the DET
fat NOUN
it PRON
> X
was AUX
n't PART
as ADV
much ADJ
of ADP
a DET
problem.>So NUM
the DET
doctor NOUN
says VERB
I PRON
have AUX
cholistatis NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
should AUX
avoid VERB
> X
fatty PROPN
foods NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
, PUNCT
and CCONJ
because SCONJ
I PRON
was AUX
already ADV
aware ADJ
> X
of ADP
what PRON
seemed VERB
to ADP
me PRON
this DET
cause NOUN
and CCONJ
effect NOUN
relationship NOUN
I PRON
have AUX
> X
been AUX
avoiding VERB
these DET
foods NOUN
on ADP
my PRON
own ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
still ADV
able ADJ
to PART
eat VERB
> X
foods NOUN
with ADP
Ricotta PROPN
cheese NOUN
for ADP
instance NOUN
and CCONJ
other ADJ
low ADJ
fat ADJ
foods NOUN
. PUNCT
  SPACE
> X
But CCONJ
doc PROPN
wants VERB
me PRON
to PART
be AUX
on ADP
a DET
non ADJ
- ADJ
fat ADJ
diet NOUN
. PUNCT
  SPACE
This DET
means VERB
no DET
meat NOUN
> X
except SCONJ
fish NOUN
and CCONJ
chicken NOUN
w/o ADP
skin NOUN
( PUNCT
I PRON
do AUX
this DET
anyway ADV
) PUNCT
. PUNCT
  SPACE
No DET
nuts NOUN
, PUNCT
> X
fried VERB
food NOUN
, PUNCT
cheese NOUN
etc X
. PUNCT
  SPACE
I PRON
am AUX
allowed VERB
skim PROPN
milk NOUN
. PUNCT
  SPACE
She PRON
said VERB
I PRON
> X
should AUX
avoid VERB
anything PRON
sweet ADJ
( PUNCT
e.g. ADV
bananas PROPN
) PUNCT
. PUNCT
  SPACE
Also ADV
I PRON
must AUX
only ADV
> X
have AUX
one NUM
serving VERB
of ADP
something PRON
high ADJ
in ADP
carbohydrates NOUN
a DET
day NOUN
( PUNCT
> X
potatoes PROPN
, PUNCT
pasta NOUN
, PUNCT
rice NOUN
) PUNCT
! PUNCT
  SPACE
She PRON
said VERB
I PRON
ca AUX
n't PART
even ADV
cook VERB
vegetables NOUN
in ADP
> X
a DET
little ADJ
bit NOUN
of ADP
oil NOUN
and CCONJ
that SCONJ
I PRON
should AUX
eat VERB
vegetables NOUN
raw ADJ
or CCONJ
> X
steamed VERB
. PUNCT
  SPACE
I PRON
'm AUX
concerned ADJ
because SCONJ
I PRON
understand VERB
you PRON
need VERB
to PART
have AUX
> X
some DET
fat NOUN
in ADP
your PRON
diet NOUN
to PART
help VERB
in ADP
the DET
digestive ADJ
process NOUN
. PUNCT
  SPACE
And CCONJ
if SCONJ
> X
I PRON
'm AUX
not PART
taking VERB
in ADP
fat NOUN
, PUNCT
is AUX
she PRON
expecting VERB
the DET
baby NOUN
will AUX
take VERB
it PRON
> X
from ADP
my PRON
stores NOUN
? PUNCT
  SPACE
And CCONJ
why ADV
this DET
restriction NOUN
on ADP
carbohydrates NOUN
if SCONJ
> X
she PRON
's AUX
concerned ADJ
about ADP
fat NOUN
? PUNCT
  SPACE
I PRON
'm AUX
not PART
clear ADJ
how ADV
much ADJ
of ADP
her PRON
> X
recommendation NOUN
is AUX
based VERB
on ADP
my PRON
weight NOUN
gain NOUN
and CCONJ
how ADV
much ADJ
on ADP
> X
cholistatis PROPN
, PUNCT
which PRON
I PRON
ca AUX
n't PART
seem VERB
to PART
find VERB
any DET
information NOUN
on ADP
. PUNCT
  SPACE
She PRON
> X
originally ADV
said VERB
that SCONJ
I PRON
should AUX
only ADV
gain VERB
20 NUM
pounds NOUN
during ADP
the DET
> X
entire ADJ
pregnancy NOUN
since SCONJ
I PRON
was AUX
about ADV
20 NUM
lbs NOUN
overweight NOUN
when ADV
I PRON
> X
started VERB
. PUNCT
  SPACE
But CCONJ
my PRON
sister NOUN
gained VERB
60 NUM
lbs NOUN
during ADP
her PRON
pregnancy NOUN
and CCONJ
> X
she PRON
's AUX
taken VERB
it PRON
all DET
off ADP
and CCONJ
has AUX
n't PART
had VERB
any DET
problems NOUN
. PUNCT
  SPACE
She PRON
also ADV
> X
asked VERB
if SCONJ
any DET
members NOUN
of ADP
my PRON
family NOUN
were AUX
obese ADJ
, PUNCT
which PRON
none NOUN
of ADP
them PRON
> X
are AUX
. PUNCT
  SPACE
Anyway INTJ
I PRON
think VERB
she PRON
is AUX
overly ADV
concerned ADJ
about ADP
weight NOUN
gain NOUN
, PUNCT
> X
and CCONJ
feel VERB
like SCONJ
I PRON
'm AUX
being AUX
' PUNCT
punished VERB
' PUNCT
by ADP
a DET
severe ADJ
diet NOUN
. PUNCT
  SPACE
She PRON
did AUX
> X
want VERB
to PART
see VERB
me PRON
again ADV
in ADP
one NUM
week NOUN
so ADV
I PRON
think VERB
she PRON
the DET
diet NOUN
may AUX
be AUX
> X
temporary ADJ
for ADP
that DET
one NUM
week NOUN
. PUNCT
> X
What PRON
I PRON
want VERB
to PART
know VERB
is AUX
how ADV
reasonable ADJ
is AUX
this DET
non ADJ
- ADJ
fat ADJ
diet NOUN
? PUNCT
  SPACE
I PRON
> X
would AUX
understand VERB
if SCONJ
she PRON
had AUX
said VERB
low ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
since SCONJ
I PRON
'm AUX
trying VERB
> X
that ADV
anyway ADV
, PUNCT
even ADV
if SCONJ
she PRON
said VERB
really ADV
low ADJ
- PUNCT
fat NOUN
diet NOUN
. PUNCT
  SPACE
I PRON
think VERB
she PRON
> X
assumes VERB
I PRON
must AUX
be AUX
eating VERB
a DET
high ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
but CCONJ
really ADV
it PRON
is AUX
that DET
> X
because SCONJ
of ADP
the DET
endometriosis NOUN
and CCONJ
the DET
operation NOUN
I PRON
'm AUX
not PART
able ADJ
to PART
> X
use VERB
the DET
energy NOUN
from ADP
the DET
food NOUN
I PRON
do AUX
eat VERB
. PUNCT
> X
Any DET
opinions NOUN
, PUNCT
info NOUN
and CCONJ
experiences NOUN
will AUX
be AUX
appreciated VERB
. PUNCT
  SPACE
I PRON
'm AUX
> X
truly ADV
going VERB
stark ADJ
raving VERB
mad ADJ
trying VERB
to PART
meet VERB
this DET
new ADJ
strict ADJ
diet NOUN
> X
because SCONJ
fruits NOUN
and CCONJ
vegetables NOUN
go VERB
through ADP
my PRON
system NOUN
in ADP
a DET
few ADJ
> X
minutes NOUN
and CCONJ
I PRON
'll AUX
end VERB
up ADP
having VERB
to PART
eat VERB
constantly ADV
. PUNCT
  SPACE
Thus ADV
far ADV
I PRON
> X
do AUX
n't PART
find VERB
any DET
foods NOUN
satisfying.>Thanks NOUN
> X
GFor PROPN
one NUM
week NOUN
, PUNCT
she PRON
probably ADV
wants VERB
to PART
see VERB
how ADV
you PRON
react VERB
to ADP
the DET
diet NOUN
. PUNCT
If SCONJ
itchanges NOUN
anything PRON
. PUNCT
You PRON
can AUX
live VERB
on ADP
the DET
diet NOUN
but CCONJ
you PRON
need VERB
to PART
up ADP
your PRON
calories NOUN
. PUNCT
Where ADV
before ADP
youhad PROPN
a DET
pat NOUN
of ADP
butter NOUN
now ADV
you PRON
need VERB
a DET
medium ADJ
apple NOUN
( PUNCT
probably ADV
microwavecooked VERB
) PUNCT
. PUNCT
  SPACE
Smaller ADJ
meals NOUN
but CCONJ
more ADJ
of ADP
them PRON
. PUNCT
Not PART
terrific ADJ
amounts NOUN
of ADP
meat NOUN
, PUNCT
it'shard PROPN
to PART
digest VERB
anyway ADV
. PUNCT
For ADP
comfort NOUN
and CCONJ
to PART
make VERB
the DET
carbohydrate NOUN
meal NOUN
" PUNCT
last ADJ
" PUNCT
longer ADJ
eat VERB
pasta NOUN
orrice NOUN
which PRON
give VERB
their PRON
calories NOUN
up ADP
slowly ADV
rather ADV
than SCONJ
bread NOUN
or CCONJ
corn NOUN
. PUNCT
Maybesmaller NOUN
meals NOUN
as SCONJ
you PRON
may AUX
be AUX
getting VERB
less ADJ
room NOUN
in ADP
the DET
stomach NOUN
area NOUN
. PUNCT
Is AUX
thebaby NOUN
still ADV
coming VERB
up ADP
. PUNCT
Is AUX
it PRON
starting VERB
to PART
push VERB
or CCONJ
rub VERB
under ADP
your PRON
ribs NOUN
? PUNCT
Howtight PROPN
are AUX
your PRON
clothes NOUN
. PUNCT
You PRON
should AUX
n't PART
be AUX
wearing VERB
any DET
clothing NOUN
that PRON
compresses VERB
your PRON
middle NOUN
. PUNCT
Be AUX
sure ADJ
not PART
to PART
" PUNCT
suck VERB
in ADP
" PUNCT
your PRON
stomach NOUN
when ADV
sitting VERB
, PUNCT
again ADV
itwill VERB
put VERB
pressure NOUN
on ADP
the DET
digestive ADJ
tract NOUN
. PUNCT
Try VERB
laying VERB
on ADP
your PRON
sides NOUN
, PUNCT
back ADV
, PUNCT
and CCONJ
stay VERB
in ADP
reclining VERB
positions NOUN
for ADP
the DET
many ADJ
hours NOUN
you PRON
are AUX
being AUX
inactive ADJ
. PUNCT
Easier ADJ
on ADP
your PRON
legs NOUN
( PUNCT
circulation NOUN
) PUNCT
as ADV
well ADV
. PUNCT
You PRON
might AUX
try VERB
letting VERB
the DET
baby"turn NOUN
" PUNCT
or CCONJ
at ADP
least ADJ
not PART
be AUX
forced VERB
under ADP
the DET
ribs NOUN
during ADP
the DET
last ADJ
months NOUN
. PUNCT
When ADV
you PRON
are AUX
shortwaisted VERB
it PRON
's AUX
easy ADJ
for ADP
that DET
baby NOUN
to PART
end VERB
up ADP
right ADV
under ADP
thediaphram PROPN
, PUNCT
especially ADV
if SCONJ
you PRON
have AUX
tight ADJ
abdominal ADJ
muscles NOUN
. PUNCT
If SCONJ
I PRON
had AUX
mysecond NUM
one NUM
to PART
do AUX
over ADP
again ADV
I PRON
think VERB
I PRON
'd AUX
have AUX
tried VERB
to PART
loosen VERB
up ADP
since SCONJ
hedidn't PROPN
turn VERB
sideways ADV
until ADP
late ADJ
and CCONJ
the DET
relief NOUN
was AUX
enormous ADJ
. PUNCT
Maybe ADV
this DET
doctor NOUN
does AUX
have AUX
a DET
thing NOUN
about ADP
weight NOUN
gain NOUN
in ADP
pregnancy NOUN
or CCONJ
maybeshe PROPN
just ADV
nags VERB
all DET
her PRON
patients NOUN
this DET
way NOUN
. PUNCT
Especially ADV
if SCONJ
she PRON
's AUX
young ADJ
. PUNCT
But CCONJ
this DET
gallbladder NOUN
/ PUNCT
whatever PRON
problem NOUN
that PRON
might AUX
be AUX
coming VERB
up ADP
is AUX
somethingto NOUN
be AUX
avoided VERB
if SCONJ
possible ADJ
. PUNCT
Nausea NOUN
, PUNCT
etc X
. PUNCT
can AUX
vary VERB
from ADP
person NOUN
to ADP
person NOUN
and CCONJ
with ADP
each DET
pregnancy NOUN
. PUNCT
Myfirst NOUN
pregnancy NOUN
was AUX
miserable ADJ
. PUNCT
During ADP
the DET
second ADJ
I PRON
had AUX
very ADV
little ADJ
trouble NOUN
. PUNCT
Some DET
articles NOUN
have AUX
said VERB
that SCONJ
women NOUN
with ADP
nausea NOUN
had AUX
a DET
statistically ADJ
betterchance NOUN
of ADP
carrying VERB
their PRON
baby NOUN
. PUNCT
( PUNCT
grain NOUN
of ADP
salt NOUN
here ADV
) PUNCT
Good ADJ
luck NOUN
- PUNCT
Jackie PROPN
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59235From NUM
: PUNCT
bbenowit@telesciences.com X
( PUNCT
Barry PROPN
D PROPN
Benowitz)Subject PROPN
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominanceIn PROPN
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
   SPACE
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
   SPACE
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
   SPACE
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
> X
   SPACE
Thanks INTJ
. PUNCT
Yes INTJ
, PUNCT
there PRON
is AUX
such DET
a DET
thing NOUN
as SCONJ
eye NOUN
dominance NOUN
, PUNCT
although SCONJ
I PRON
am AUX
not PART
sure ADJ
ifthis NOUN
dominance NOUN
refers VERB
to ADP
perscription NOUN
strength NOUN
. PUNCT
As SCONJ
i PRON
recall VERB
, PUNCT
if SCONJ
you PRON
selectively ADV
close VERB
your PRON
dominant ADJ
eye NOUN
, PUNCT
you PRON
will AUX
percievethat VERB
the DET
image NOUN
shifts NOUN
. PUNCT
This DET
will AUX
not PART
happen VERB
if SCONJ
you PRON
close VERB
your PRON
other ADJ
eye NOUN
. PUNCT
I PRON
believe VERB
that SCONJ
which PRON
eye NOUN
is AUX
dominant ADJ
is AUX
related VERB
to ADP
handedness NOUN
, PUNCT
but CCONJ
Ican't PROPN
recall VERB
the DET
relation NOUN
at ADP
the DET
moment.--Barry NOUN
D. PROPN
BenowitzEMail PROPN
: PUNCT
	 SPACE
bbenowit@telesciences.com X
( PUNCT
... PUNCT
! PUNCT
pyrnj!telesci!bbenowit)Phone NOUN
: PUNCT
	 SPACE
+1 PROPN
609 NUM
866 NUM
1000 NUM
x354Snail NUM
: PUNCT
	 SPACE
Telesciences PROPN
CO PROPN
Systems PROPN
, PUNCT
351 NUM
New PROPN
Albany PROPN
Rd PROPN
, PUNCT
Moorestown PROPN
, PUNCT
NJ PROPN
, PUNCT
08057 NUM
- SYM
1177Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59236From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
Fictionrind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.153000.1@vms.ocom.okstate.edu PROPN
> X
> X
banschbach@vms.ocom.okstate.edu INTJ
writes:>>poster PUNCT
for ADP
being AUX
treated VERB
by ADP
a DET
liscenced VERB
physician NOUN
for ADP
a DET
disease NOUN
that PRON
did AUX
> X
> X
not PART
exist VERB
. PUNCT
  SPACE
Calling VERB
this DET
physician NOUN
a DET
quack NOUN
was AUX
reprehensible ADJ
Steve PROPN
and CCONJ
I PRON
> X
> X
see VERB
that SCONJ
you PRON
and CCONJ
some DET
of ADP
the DET
others NOUN
are AUX
doing VERB
it PRON
here ADV
as ADV
well ADV
. PUNCT
  SPACE
> X
Do AUX
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
being AUX
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not PART
> X
a DET
quack NOUN
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack,>other PROPN
people NOUN
should AUX
n't PART
say VERB
so ADV
? PUNCT
  SPACE
Can AUX
you PRON
give VERB
an DET
example NOUN
of ADP
a DET
> X
commonly ADV
diagnosed VERB
ailment NOUN
that PRON
you PRON
think VERB
is AUX
a DET
quack ADJ
diagnosis,>or NOUN
have AUX
we PRON
gotten VERB
to ADP
the DET
point NOUN
in ADP
civilization NOUN
where ADV
we PRON
no ADV
longer ADV
> X
need VERB
to PART
worry VERB
about ADP
unscrupulous ADJ
" PUNCT
healers NOUN
" PUNCT
taking VERB
advantage NOUN
of ADP
> X
people.>-- X
> X
David PROPN
RindSure PROPN
there PRON
are AUX
quacks NOUN
. PUNCT
There PRON
are AUX
quacks NOUN
who PRON
do AUX
n't PART
treat VERB
and CCONJ
quacks VERB
whotreat NOUN
. PUNCT
One NUM
's AUX
that PRON
refuse VERB
to PART
diagnose VERB
and CCONJ
ones NOUN
that PRON
diagnose VERB
improperly ADV
. PUNCT
There PRON
are AUX
lucky ADJ
quacks NOUN
and CCONJ
unlucky ADJ
quacks NOUN
. PUNCT
Smart ADJ
quacks VERB
and CCONJ
dumb ADJ
ones NOUN
. PUNCT
There PRON
are AUX
people NOUN
ahead ADV
of ADP
their PRON
time NOUN
, PUNCT
with ADP
unprobable ADJ
or CCONJ
unproven NUM
theoriesand NOUN
rationals NOUN
. PUNCT
There PRON
are AUX
ill ADV
- PUNCT
reasoned VERB
, PUNCT
absurd ADJ
, PUNCT
theorists NOUN
. PUNCT
Sometimes ADV
it PRON
's AUX
hard ADJ
to PART
tell VERB
who PRON
's AUX
who PRON
. PUNCT
  SPACE
Reading VERB
a DET
book NOUN
of ADP
ancient ADJ
jokes NOUN
it PRON
seems VERB
that SCONJ
doctors NOUN
called VERB
other ADJ
doctorsquacks NOUN
in ADP
Babylon PROPN
. PUNCT
Arguments NOUN
abound VERB
when ADV
there PRON
are AUX
n't PART
any DET
firm ADJ
answers NOUN
. PUNCT
Plenty NOUN
of ADP
illnessesaren't PROPN
, PUNCT
or CCONJ
ca AUX
n't PART
, PUNCT
be AUX
diagnosed VERB
or CCONJ
treated VERB
. PUNCT
But CCONJ
I PRON
think VERB
it PRON
's AUX
better ADJ
to ADP
argueagainst PROPN
the DET
theory NOUN
, PUNCT
as SCONJ
was AUX
originally ADV
done VERB
with ADP
postings NOUN
on ADP
candida PROPN
a DET
monthor NOUN
so ADV
ago ADV
. PUNCT
Stating VERB
the DET
facts NOUN
usually ADV
works VERB
better ADV
than SCONJ
simply ADV
asserting VERB
anopinion NOUN
about ADP
someone PRON
's PART
competency NOUN
. PUNCT
And CCONJ
you PRON
ca AUX
n't PART
convince VERB
everybody PRON
. PUNCT
Sometimes ADV
a DET
correct ADJ
diagnosistakes VERB
years NOUN
for ADP
people NOUN
: PUNCT
they PRON
do AUX
n't PART
run VERB
into ADP
a DET
doctor NOUN
who PRON
recognizes VERB
thedisease NOUN
, PUNCT
they PRON
have AUX
n't PART
developed VERB
something PRON
recognizable ADJ
yet ADV
, PUNCT
or CCONJ
they PRON
havesomething VERB
that SCONJ
no DET
one NOUN
is AUX
going VERB
to PART
recognize VERB
, PUNCT
because SCONJ
it PRON
has AUX
n't PART
beendescribed VERB
yet ADV
. PUNCT
Sometimes ADV
they PRON
get VERB
a DET
cure NOUN
, PUNCT
sometimes ADV
the DET
illness NOUN
wears VERB
out ADP
, PUNCT
sometimes ADV
they PRON
stumble VERB
on ADP
an DET
improper ADJ
diagnosis NOUN
with ADP
the DET
right ADJ
treatment NOUN
, PUNCT
sometimes ADV
they PRON
find VERB
it PRON
's AUX
incurable ADJ
. PUNCT
  SPACE
There PRON
is AUX
no DET
profit NOUN
in ADP
a DET
patient NOUN
accepting VERB
a DET
hopeless ADJ
attitude NOUN
about ADP
an DET
illness NOUN
. PUNCT
Unless SCONJ
it PRON
's AUX
a DET
rock NOUN
solid ADJ
diagnosis NOUN
of ADP
terminal ADJ
disease NOUN
it PRON
's AUX
ismore ADV
like INTJ
ly INTJ
that SCONJ
a DET
person NOUN
will AUX
find VERB
a DET
cure NOUN
if SCONJ
they PRON
keep VERB
looking VERB
. PUNCT
-Jackie X
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59237From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
< X
noringC5yL3I.3qo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>In X
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>>Do VERB
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is>>being VERB
a DET
" PUNCT
licensed ADJ
physician NOUN
" PUNCT
enough ADJ
to PART
guarantee VERB
that SCONJ
someone PRON
is AUX
not>>a PROPN
quack ADV
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
that SCONJ
even ADV
if SCONJ
a DET
licensed ADJ
physician NOUN
is AUX
a DET
quack,>>other PROPN
people NOUN
should AUX
n't PART
say VERB
so?>I PROPN
would AUX
say VERB
there PRON
are AUX
also ADV
significant ADJ
numbers NOUN
of ADP
unscrupulous ADJ
doctors NOUN
( PUNCT
of ADP
> X
the DET
squeaky ADV
- PUNCT
clean ADJ
, PUNCT
traditional ADJ
crew NOUN
- PUNCT
cut VERB
, PUNCT
talk NOUN
to ADP
the DET
AMA PROPN
before ADP
starting VERB
> X
any DET
treatment NOUN
, PUNCT
kind)Umm PROPN
, PUNCT
were AUX
n't PART
you PRON
the DET
one NUM
objecting VERB
to ADP
someone PRON
who PRON
is AUX
a DET
" PUNCT
licensedphysician ADJ
" PUNCT
being AUX
called VERB
a DET
quack NOUN
? PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
just ADV
that SCONJ
being AUX
a DET
licensedphysician NOUN
is AUX
a DET
good ADJ
defense NOUN
against ADP
charges NOUN
of ADP
quackery NOUN
when ADV
thephysician PROPN
agrees VERB
with ADP
your PRON
system NOUN
of ADP
beliefs?>Lately PUNCT
I PRON
've AUX
seen VERB
the DET
word NOUN
" PUNCT
quack NOUN
" PUNCT
bandied VERB
about ADP
recklessly ADV
. PUNCT
Actually ADV
, PUNCT
I PRON
almost ADV
never ADV
use VERB
the DET
term NOUN
quack NOUN
. PUNCT
  SPACE
When ADV
I PRON
discuss"systemic VERB
yeast NOUN
syndrome NOUN
" PUNCT
, PUNCT
however ADV
, PUNCT
I PRON
always ADV
point VERB
out ADP
thatmainstream NOUN
medicine NOUN
views NOUN
this DET
as SCONJ
a DET
quack ADJ
diagnosis NOUN
( PUNCT
and CCONJ
I PRON
agreewith VERB
that SCONJ
characterization).>Let PROPN
me PRON
put VERB
it PRON
another DET
way NOUN
to PART
make VERB
my PRON
point NOUN
clear ADJ
: PUNCT
  SPACE
" PUNCT
quack INTJ
" PUNCT
is AUX
a DET
nebulous ADJ
word NOUN
> X
lacking VERB
in ADP
any DET
precision NOUN
. PUNCT
Really ADV
? PUNCT
  SPACE
I PRON
bet VERB
virtually ADV
everyone PRON
reading VERB
these DET
posts NOUN
understands VERB
whatSteve PROPN
Dyer PROPN
, PUNCT
Gordon PROPN
Banks PROPN
, PUNCT
and CCONJ
I PRON
am AUX
implying VERB
when ADV
we PRON
have AUX
talked VERB
aboutsystemic ADJ
yeast NOUN
syndrome NOUN
as SCONJ
a DET
quack ADJ
diagnosis NOUN
. PUNCT
  SPACE
Would AUX
you PRON
prefer VERB
theword PROPN
" PUNCT
charlatan PROPN
" PUNCT
? PUNCT
  SPACE
( PUNCT
I PRON
do AUX
n't PART
happen VERB
to PART
think VERB
that SCONJ
all DET
quacks VERB
arecharlatans NOUN
since SCONJ
I PRON
suspect VERB
that SCONJ
some DET
believe VERB
in ADP
the DET
" PUNCT
diseases NOUN
" PUNCT
theyare PROPN
diagnosing.)>(p.s PROPN
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
on ADP
> X
the DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
and CCONJ
> X
theories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group NOUN
. PUNCT
Why ADV
? PUNCT
  SPACE
Is AUX
there PRON
some DET
reason NOUN
why ADV
you PRON
feel VERB
that SCONJ
it PRON
should AUX
n't PART
be AUX
pointed VERB
outin ADJ
SCI.med PROPN
that SCONJ
there PRON
is AUX
no DET
convincing ADJ
empirical ADJ
evidence NOUN
to PART
support VERB
the DET
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome?-- NOUN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59238From NUM
: PUNCT
vortex@zikzak.apana.org.au PROPN
( PUNCT
Paul PROPN
Anderson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Do AUX
we PRON
need VERB
a DET
Radiologist NOUN
to PART
read VERB
an DET
Ultrasound?dougb@comm.mot.com PROPN
( PUNCT
Doug PROPN
Bank PROPN
) PUNCT
writes:>My PROPN
wife NOUN
's PART
ob PROPN
- PUNCT
gyn PROPN
has AUX
an DET
ultrasound ADJ
machine NOUN
in ADP
her PRON
office NOUN
. PUNCT
  SPACE
When ADV
> X
On ADP
her PRON
next ADJ
visit NOUN
, PUNCT
my PRON
wife NOUN
asked VERB
another DET
doctor NOUN
in ADP
the DET
office NOUN
if SCONJ
> X
they PRON
read VERB
the DET
ultrasounds VERB
themselves PRON
or CCONJ
if SCONJ
they PRON
had AUX
a DET
radiologist NOUN
> X
read VERB
the DET
pictures NOUN
. PUNCT
  SPACE
The DET
doctor NOUN
very ADV
vehemently ADV
insisted VERB
that SCONJ
they PRON
> X
were AUX
qualified ADJ
to PART
read VERB
the DET
ultrasound NOUN
and CCONJ
radiologists NOUN
were AUX
NOT!>My PROPN
wife NOUN
is AUX
concerned ADJ
about ADP
this DET
. PUNCT
  SPACE
She PRON
saw VERB
a DET
TV NOUN
show VERB
a DET
couple NOUN
months NOUN
> X
back ADV
( PUNCT
something PRON
like SCONJ
20/20 NUM
or CCONJ
Dateline PROPN
NBC PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
where ADV
an DET
expert NOUN
> X
on ADP
fetal ADJ
ultrasounds NOUN
( PUNCT
a DET
radiologist NOUN
) PUNCT
was AUX
showing VERB
all DET
the DET
different ADJ
> X
deffects NOUN
that PRON
could AUX
be AUX
detected VERB
using VERB
the DET
ultrasound.>Should PROPN
my PRON
wife NOUN
be AUX
concerned VERB
? PUNCT
  SPACE
Should AUX
we PRON
take VERB
the DET
pictures NOUN
to ADP
a DET
> X
radiologist NOUN
for ADP
a DET
second ADJ
opinion NOUN
? PUNCT
( PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
where ADV
would AUX
we PRON
find VERB
> X
such DET
an DET
expert NOUN
in ADP
Chicago PROPN
? PUNCT
) PUNCT
  SPACE
We PRON
do AUX
n't PART
really ADV
have AUX
any DET
special ADJ
medical ADJ
> X
reason NOUN
to PART
be AUX
concerned VERB
, PUNCT
but CCONJ
if SCONJ
a DET
radiologist NOUN
will AUX
be AUX
able ADJ
to PART
see VERB
> X
things NOUN
the DET
ob PROPN
- PUNCT
gyn PROPN
ca AUX
n't PART
, PUNCT
then ADV
I PRON
do AUX
n't PART
see VERB
why ADV
we PRON
should AUX
n't PART
use VERB
one.>Any NOUN
thoughts NOUN
? PUNCT
As ADV
far ADV
as SCONJ
I PRON
can AUX
see VERB
if SCONJ
your PRON
obstetrition NOUN
has AUX
an DET
ultrasound NOUN
in ADP
his PRON
roomsand NOUN
is AUX
expirienced VERB
its PRON
use NOUN
and CCONJ
interpretation NOUN
, PUNCT
he PRON
should AUX
be AUX
just ADV
ascapable ADJ
of ADP
reading VERB
it PRON
as SCONJ
any DET
radiologist NOUN
. PUNCT
All DET
doctors NOUN
are AUX
" PUNCT
qualified ADJ
" PUNCT
toread NOUN
x NOUN
- NOUN
rays NOUN
, PUNCT
u PROPN
/ SYM
s PROPN
, PUNCT
ct NOUN
scans VERB
etc X
. PUNCT
it PRON
is AUX
just ADV
that SCONJ
a DET
radiologist NOUN
does AUX
nothingelse VERB
, PUNCT
and CCONJ
thus ADV
, PUNCT
is AUX
only ADV
better ADJ
at ADP
reading VERB
them PRON
because SCONJ
of ADP
all DET
this DET
timespent NOUN
doing VERB
this DET
( PUNCT
skill NOUN
in ADP
reading VERB
x NOUN
- NOUN
rays NOUN
etc X
. PUNCT
just ADV
comes VERB
from ADP
plenty ADJ
ofpractice NOUN
) PUNCT
. PUNCT
If SCONJ
your PRON
obstetrition NOUN
reads VERB
heaps NOUN
of ADP
obstetric ADJ
ultrasounds VERB
heshould AUX
be AUX
able ADJ
to PART
pick VERB
up ADP
any DET
abnormalities NOUN
that PRON
can AUX
be AUX
demonstrated VERB
bythis PROPN
technique.- PROPN
Paul.-- PROPN
           SPACE
| PROPN
Zikzak PROPN
public ADJ
access NOUN
UNIX NOUN
, PUNCT
Melbourne PROPN
, PUNCT
Australia PROPN
. PUNCT
   SPACE
| PROPN
  SPACE
^^^^^^^ PUNCT
  SPACE
| PROPN
                                                    SPACE
| NUM
  SPACE
| PROPN
     SPACE
| PROPN
  SPACE
| PROPN
                                                    SPACE
| PROPN
          SPACE
/// PUNCT
  SPACE
< X
O INTJ
O INTJ
> X
  SPACE
| ADV
     SPACE
# NOUN
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
# SYM
     SPACE
| NOUN
         SPACE
///Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59239From NUM
: PUNCT
  SPACE
Alla PROPN
V. PROPN
Kotenko PROPN
< X
avk@lst.msk.su>Subject NOUN
: PUNCT
SALE PROPN
! PUNCT
MELITTIN PROPN
( PUNCT
see VERB
letter NOUN
) PUNCT
                                SPACE
MELITTIN PROPN
        SPACE
In ADP
cooperation NOUN
with ADP
the DET
State PROPN
Scientific PROPN
Center PROPN
on ADP
Antibiotics NOUN
we PRON
have AUX
elaborated VERB
our PRON
own ADJ
technology NOUN
of ADP
bee PROPN
venom PROPN
components NOUN
isolation NOUN
, PUNCT
particularly ADV
melitin PROPN
, PUNCT
using VERB
modern ADJ
chromatographic ADJ
eduipment NOUN
by ADP
" PUNCT
Pharmacia PROPN
" PUNCT
and CCONJ
" PUNCT
Millipore PROPN
" PUNCT
Companies NOUN
, PUNCT
with ADP
application NOUN
of ADP
only ADV
the DET
materials NOUN
, PUNCT
admitted VERB
for ADP
manufacturing VERB
pharmaceutic ADJ
production NOUN
. PUNCT
High ADJ
quality NOUN
of ADP
our PRON
product NOUN
is AUX
acknowledged VERB
by ADP
the DET
expertise NOUN
of ADP
the DET
Accredited ADJ
test NOUN
laboratory NOUN
firm NOUN
" PUNCT
Test"v PROPN
/ SYM
o INTJ
" PUNCT
Souzexpertisa PROPN
" PUNCT
TPP PROPN
RF NOUN
. PUNCT
        SPACE
littin ADJ
- PUNCT
no ADV
less ADJ
than SCONJ
92 NUM
% NOUN
of ADP
the DET
primary ADJ
substance NOUN
content NOUN
. PUNCT
Quantity NOUN
: PUNCT
from ADP
100 NUM
g NOUN
up ADP
to PART
5 NUM
kg NOUN
. PUNCT
Date NOUN
of ADP
manufacture NOUN
: PUNCT
March PROPN
1993.Price:2500 NUM
dol NOUN
. PUNCT
USA PROPN
per ADP
1g PROPN
. PUNCT
Certificate NOUN
: PUNCT
Is AUX
on ADP
saleAdress:105094,Moscow PROPN
, PUNCT
Semyenovskiy PROPN
Val,10-a,"BOST"Partnership PROPN
Ltd PROPN
. PUNCT
Tel PROPN
/ SYM
fax NOUN
194 NUM
- SYM
86 NUM
- PUNCT
04,369 NUM
- PUNCT
46 NUM
- PUNCT
68Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59240From NUM
: PUNCT
Nigel@dataman.demon.co.uk PROPN
( PUNCT
Nigel PROPN
Ballard)Subject VERB
: PUNCT
Re ADP
: PUNCT
Adult PROPN
Chicken PROPN
Pox PROPN
> X
I PRON
am AUX
35 NUM
and CCONJ
am AUX
recovering VERB
from ADP
a DET
case NOUN
of ADP
Chicken PROPN
Pox PROPN
which PRON
I PRON
contracted VERB
> X
from ADP
my PRON
5 NUM
year NOUN
old ADJ
daughter NOUN
. PUNCT
  SPACE
I PRON
have AUX
quite ADV
a DET
few ADJ
of ADP
these DET
little ADJ
puppies NOUN
> X
all ADV
over ADP
my PRON
bod NOUN
. PUNCT
  SPACE
At ADP
what PRON
point NOUN
am AUX
I PRON
no ADV
longer ADV
infectious ADJ
? PUNCT
  SPACE
My PRON
physician's NOUN
> X
office NOUN
says VERB
when ADV
they PRON
are AUX
all DET
scabbed VERB
over ADV
. PUNCT
  SPACE
Is AUX
this DET
true?I NOUN
have AUX
been AUX
in ADP
the DET
same ADJ
boat NOUN
as SCONJ
you PRON
last ADJ
year NOUN
. PUNCT
I PRON
've AUX
tried VERB
four NUM
times NOUN
tosend VERB
you PRON
an DET
email NOUN
response NOUN
, PUNCT
but CCONJ
your PRON
end NOUN
does AUX
n't PART
seem VERB
to PART
accept VERB
my PRON
mail?Please NOUN
let VERB
me PRON
know VERB
if SCONJ
you PRON
receive VERB
this DET
. PUNCT
Cheers PROPN
Nigel PROPN
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
* PUNCT
NIGEL PROPN
BALLARD PROPN
  SPACE
| ADP
INT PROPN
: PUNCT
nigel@dataman.demon.co.uk PROPN
  SPACE
| ADP
    SPACE
VACANT PROPN
LOT PROPN
     SPACE
* SYM
   SPACE
* PUNCT
BOURNEMOUTH ADV
UK PROPN
| PROPN
CIS PROPN
: PUNCT
100015.2644 NUM
   SPACE
RADIO PROPN
- PUNCT
G1HOI PROPN
  SPACE
| PROPN
     SPACE
FOR ADP
RENT PROPN
      SPACE
* PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                           SPACE
DIARIES NOUN
OF ADP
THE DET
FAMOUS PROPN
... PUNCT
     SPACE
Colonel PROPN
Custer PROPN
... PUNCT
Surrounded VERB
by ADP
Indians PROPN
, PUNCT
just ADV
when ADV
I PRON
fancied VERB
a DET
Chinese!Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59241From NUM
: PUNCT
ken@isis.cns.caltech.edu PROPN
( PUNCT
Ken PROPN
Miller)Subject NUM
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
< X
1rag61$1cb@hsdndev.harvard.edu INTJ
> X
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
noringC5yL3I.3qo@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes:>>(p.s PUNCT
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
on>>the DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
and>>theories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group.>>Why NOUN
? PUNCT
  SPACE
Is AUX
there PRON
some DET
reason NOUN
why ADV
you PRON
feel VERB
that SCONJ
it PRON
should AUX
n't PART
be AUX
pointed VERB
out ADP
> X
in ADP
SCI.med PROPN
that SCONJ
there PRON
is AUX
no DET
convincing ADJ
empirical ADJ
evidence NOUN
to PART
support VERB
the DET
> X
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome?I PROPN
do AUX
n't PART
know VERB
the DET
first ADJ
thing NOUN
about ADP
yeast NOUN
infections NOUN
but CCONJ
I PRON
am AUX
a DET
scientist NOUN
. PUNCT
No DET
scientist NOUN
would AUX
take VERB
your PRON
statement NOUN
--- PUNCT
" PUNCT
no DET
convincing ADJ
empirical ADJ
evidenceto NOUN
support VERB
the DET
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
--- PUNCT
to PART
tell VERB
youanything VERB
except SCONJ
an DET
absence NOUN
of ADP
data NOUN
on ADP
the DET
question NOUN
. PUNCT
  SPACE
Noring NOUN
has AUX
pointed VERB
outthe DET
catch-22 NUM
that SCONJ
if SCONJ
the DET
" PUNCT
crazy ADJ
" PUNCT
theory NOUN
were AUX
true ADJ
, PUNCT
you PRON
probably ADV
couldn'tfind VERB
any DET
direct ADJ
evidence NOUN
of ADP
it PRON
--- PUNCT
that SCONJ
you PRON
could AUX
n't PART
observe VERB
those DET
yeastiebeasties NOUN
with ADP
present ADJ
methods NOUN
even ADV
if SCONJ
they PRON
were AUX
there ADV
. PUNCT
  SPACE
Noring VERB
and CCONJ
thefellow VERB
from ADP
Oklahoma PROPN
( PUNCT
sorry INTJ
, PUNCT
forgot VERB
your PRON
name NOUN
) PUNCT
have AUX
also ADV
suggested VERB
one NUM
setof NOUN
anecdotal ADJ
evidence NOUN
in ADP
favor NOUN
based VERB
on ADP
their PRON
personal ADJ
experiences NOUN
---namely ADV
, PUNCT
that SCONJ
when ADV
people NOUN
with ADP
certain ADJ
conditions NOUN
are AUX
given VERB
anti ADJ
- ADJ
fungals NOUN
, PUNCT
many ADJ
of ADP
them PRON
appear VERB
to PART
get AUX
better ADJ
. PUNCT
  SPACE
So ADV
, PUNCT
if SCONJ
you PRON
have AUX
any DET
evidence NOUN
* PUNCT
against ADP
* PUNCT
the DET
hypothesis NOUN
--- PUNCT
for ADP
example NOUN
, PUNCT
controlled VERB
double ADJ
- PUNCT
blind ADJ
studies NOUN
showing VERB
that SCONJ
the DET
anti NOUN
- NOUN
fungals NOUN
do AUX
n't PART
do AUX
anybetter NOUN
than SCONJ
sugar NOUN
water NOUN
--- PUNCT
then ADV
let VERB
's PRON
hear VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
, PUNCT
then ADV
what PRON
wehave NOUN
is AUX
anecdotal ADJ
and CCONJ
uncontrolled ADJ
evidence NOUN
on ADP
one NUM
side NOUN
, PUNCT
and CCONJ
abjectdisbelief NOUN
on ADP
the DET
other ADJ
. PUNCT
  SPACE
In ADP
which PRON
case NOUN
, PUNCT
please INTJ
, PUNCT
there PRON
is AUX
no DET
point NOUN
in ADP
yellingback NOUN
and CCONJ
forth ADV
at ADP
each DET
other ADJ
any DET
longer ADV
since SCONJ
neither DET
side NOUN
has AUX
anyconvincing VERB
evidence NOUN
either CCONJ
positive ADJ
or CCONJ
negative ADJ
. PUNCT
  SPACE
And CCONJ
I PRON
understand VERB
that SCONJ
your PRON
abject NOUN
disbelief NOUN
is AUX
based VERB
on ADP
the DET
existence NOUN
ofpeople NOUN
who PRON
may AUX
get AUX
famous ADJ
or CCONJ
make VERB
money NOUN
applying VERB
the DET
diagnosis NOUN
to PART
everythingin VERB
sight NOUN
, PUNCT
making VERB
wild ADJ
claims NOUN
with ADP
no DET
evidence NOUN
, PUNCT
and CCONJ
always ADV
refusing VERB
to ADP
docontrolled VERB
studies NOUN
. PUNCT
  SPACE
But CCONJ
that DET
has AUX
absolutely ADV
no DET
bearing NOUN
on ADP
the DET
apparentlysincere ADJ
experiences NOUN
of ADP
the DET
people NOUN
on ADP
the DET
net ADJ
observing VERB
anti NOUN
- ADJ
fungals NOUN
workingon VERB
themselves PRON
and CCONJ
other ADJ
people NOUN
in ADP
certain ADJ
specific ADJ
cases NOUN
. PUNCT
  SPACE
There PRON
are AUX
alsoquacks NOUN
who PRON
sell VERB
oral ADJ
superoxide NOUN
dismutase NOUN
, PUNCT
in ADP
spite NOUN
of ADP
the DET
fact NOUN
that SCONJ
it'scompletely ADV
broken VERB
down ADP
in ADP
the DET
guts NOUN
, PUNCT
but CCONJ
this DET
does AUX
n't PART
change VERB
the DET
genuinescientific NOUN
knowledge NOUN
about ADP
the DET
role NOUN
of ADP
superoxide ADJ
dismutase NOUN
in ADP
fightingoxidative ADJ
damage NOUN
. PUNCT
  SPACE
Same ADJ
thing NOUN
. PUNCT
  SPACE
Just ADV
cause SCONJ
there PRON
are AUX
candida PROPN
quacks NOUN
, PUNCT
thatdoesn't ADV
establish VERB
evidence NOUN
against ADP
the DET
candida PROPN
hypothesis NOUN
. PUNCT
  SPACE
If SCONJ
there PRON
's AUX
someother ADJ
reason NOUN
( PUNCT
besides SCONJ
the DET
quacks NOUN
) PUNCT
, PUNCT
if SCONJ
only ADV
anecdotal ADJ
, PUNCT
to PART
think VERB
it PRON
could AUX
betrue VERB
, PUNCT
then ADV
that DET
is AUX
what PRON
has AUX
to PART
be AUX
considered VERB
, PUNCT
that DET
is AUX
what PRON
the DET
net ADJ
peoplehave NOUN
been AUX
talking VERB
about ADP
. PUNCT
But CCONJ
again ADV
, PUNCT
there PRON
is AUX
no DET
point NOUN
in ADP
arguing VERB
about ADP
it PRON
. PUNCT
  SPACE
There PRON
is AUX
anecdotalevidence NOUN
, PUNCT
and CCONJ
there PRON
is AUX
no DET
convincing ADJ
evidence NOUN
, PUNCT
and CCONJ
there PRON
are AUX
also ADV
somecandida PROPN
quacks VERB
out ADV
there ADV
, PUNCT
I PRON
hope VERB
everyone PRON
can AUX
agree VERB
on ADP
all DET
of ADP
that DET
. PUNCT
  SPACE
Thus ADV
, PUNCT
it PRON
appears VERB
to ADP
me PRON
the DET
main ADJ
question NOUN
now ADV
is AUX
whether SCONJ
the DET
proponents NOUN
canmarshall VERB
enough ADJ
anecdotal ADJ
evidence NOUN
in ADP
a DET
convincing ADJ
and CCONJ
documented VERB
enoughmanner NOUN
to PART
make VERB
a DET
good ADJ
case NOUN
for ADP
carrying VERB
out ADP
a DET
good ADJ
controlled VERB
double ADJ
- PUNCT
blindstudy NOUN
of ADP
antifungals NOUN
( PUNCT
or CCONJ
else ADV
, PUNCT
forget VERB
convincing VERB
anybody PRON
else ADV
to PART
carry VERB
outthe ADJ
test NOUN
, PUNCT
just ADV
carry VERB
it PRON
out ADP
themselves PRON
! PUNCT
) PUNCT
--- PUNCT
and CCONJ
also ADV
, PUNCT
whether SCONJ
they PRON
canadequately ADV
define VERB
the DET
patient ADJ
population NOUN
or CCONJ
symptoms NOUN
on ADP
which PRON
such DET
a DET
studyshould NOUN
be AUX
carried VERB
out ADP
to PART
provide VERB
a DET
fair ADJ
test NOUN
of ADP
the DET
hypothesis NOUN
. PUNCT
Ken-- PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59242From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
eye NOUN
dominancebbenowit@telesciences.com X
( PUNCT
Barry PROPN
D PROPN
Benowitz PROPN
) PUNCT
writes:>In X
article NOUN
< X
C5E2G7.877@world.std.com X
> X
rsilver@world.std.com PROPN
( PUNCT
Richard PROPN
Silver PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
   SPACE
Is AUX
there PRON
a DET
right ADJ
- PUNCT
eye NOUN
dominance NOUN
( PUNCT
eyedness NOUN
? PUNCT
) PUNCT
as SCONJ
there PRON
is AUX
an DET
> X
> X
   SPACE
overall ADJ
right ADJ
- PUNCT
handedness NOUN
in ADP
the DET
population NOUN
? PUNCT
I PRON
mean VERB
do AUX
most ADJ
> X
> X
   SPACE
people NOUN
require VERB
less ADJ
lens ADJ
corrections NOUN
for ADP
the DET
one NUM
eye NOUN
than SCONJ
the DET
> X
> X
   SPACE
other ADJ
? PUNCT
If SCONJ
so ADV
, PUNCT
what PRON
kinds NOUN
of ADP
percentages NOUN
can AUX
be AUX
attached VERB
to ADP
this DET
? PUNCT
> X
> X
   SPACE
Thanks INTJ
. PUNCT
> X
Yes INTJ
, PUNCT
there PRON
is AUX
such DET
a DET
thing NOUN
as SCONJ
eye NOUN
dominance NOUN
, PUNCT
although SCONJ
I PRON
am AUX
not PART
sure ADJ
if SCONJ
> X
this DET
dominance NOUN
refers VERB
to ADP
perscription NOUN
strength.>As NUM
i PRON
recall VERB
, PUNCT
if SCONJ
you PRON
selectively ADV
close VERB
your PRON
dominant ADJ
eye NOUN
, PUNCT
you PRON
will AUX
percieve VERB
> X
that SCONJ
the DET
image NOUN
shifts NOUN
. PUNCT
This DET
will AUX
not PART
happen VERB
if SCONJ
you PRON
close VERB
your PRON
other ADJ
eye.>I PROPN
believe VERB
that SCONJ
which PRON
eye NOUN
is AUX
dominant ADJ
is AUX
related VERB
to ADP
handedness NOUN
, PUNCT
but CCONJ
I PRON
> VERB
can't NOUN
recall VERB
the DET
relation NOUN
at ADP
the DET
moment.>Barry PROPN
D. PROPN
BenowitzI PROPN
read VERB
a DET
great ADJ
book NOUN
about ADP
eye NOUN
dominance NOUN
several ADJ
years NOUN
ago ADV
. PUNCT
So ADV
there PRON
is AUX
onebook VERB
out ADP
there ADV
.. PUNCT
at ADV
least ADJ
one NUM
: PUNCT
) PUNCT
.There PUNCT
were AUX
several ADJ
types NOUN
of ADP
eye NOUN
dominance NOUN
. PUNCT
Where ADV
a DET
person NOUN
looks VERB
in ADP
theirmemory NOUN
usually ADV
indicates VERB
a DET
type NOUN
of ADP
eye NOUN
dominanc NOUN
Another DET
type NOUN
is AUX
related VERB
tocoordination NOUN
activities NOUN
like SCONJ
hitting VERB
a DET
ball NOUN
. PUNCT
Another DET
for ADP
reading VERB
. PUNCT
I PRON
did AUX
n't PART
read VERB
one NUM
that PRON
discussed VERB
prescription NOUN
strength NOUN
. PUNCT
Although SCONJ
peoplewith VERB
bad ADJ
vision NOUN
, PUNCT
near ADV
or CCONJ
far ADV
sighted ADJ
would AUX
tend VERB
to PART
depend VERB
on ADP
the DET
strongereye NOUN
. PUNCT
-Jackie NUM
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59243From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject PROPN
: PUNCT
Sweet PROPN
's PART
Syndrome PROPN
? PUNCT
	 SPACE
My PRON
brother NOUN
's PART
affine NOUN
has AUX
recently ADV
been AUX
diagnosed VERB
with ADP
Sweet'ssyndrome PROPN
. PUNCT
Also ADV
called VERB
steroid NOUN
resistant ADJ
Sweet PROPN
's PART
syndrome NOUN
. PUNCT
	 SPACE
This DET
syndrome NOUN
started VERB
after ADP
she PRON
had AUX
had VERB
Iodine PROPN
131 NUM
treatment NOUN
forhyperthyroidism NOUN
. PUNCT
She PRON
'd AUX
been AUX
reluctant ADJ
to PART
have AUX
treatment NOUN
for ADP
thehyperthyroidism NOUN
for ADP
many ADJ
years NOUN
and CCONJ
apparently ADV
started VERB
to PART
show VERB
exaustionfrom ADP
it PRON
. PUNCT
	 SPACE
I PRON
understand VERB
that SCONJ
she PRON
may AUX
still ADV
be AUX
testing VERB
high ADJ
in ADP
thyroid NOUN
levelbut NOUN
she PRON
's AUX
is AUX
n't PART
being AUX
treated VERB
by ADP
an DET
endocrinologist NOUN
. PUNCT
Her PRON
previousendocrinologist NOUN
bowed VERB
out ADP
when ADV
she PRON
entered VERB
the DET
hospital NOUN
. PUNCT
She PRON
entered VERB
thehospital ADJ
because SCONJ
of ADP
the DET
Sweet PROPN
's PART
syndrome NOUN
symptoms NOUN
( PUNCT
skin NOUN
lesions).I've PUNCT
looked VERB
through ADP
the DET
last ADJ
two NUM
years NOUN
of ADP
Medline PROPN
and CCONJ
did AUX
n't PART
find VERB
anabstract NOUN
mentioning VERB
a DET
correlation NOUN
between ADP
thyroid NOUN
and CCONJ
Sweets PROPN
. PUNCT
. PUNCT
I PRON
checked VERB
a DET
handbook NOUN
which PRON
said VERB
that SCONJ
Sweet PROPN
's PART
was AUX
associated VERB
with ADP
leukemia NOUN
. PUNCT
I'd NOUN
like SCONJ
a DET
reccomndation NOUN
for ADP
experts NOUN
who PRON
are AUX
in ADP
New PROPN
York PROPN
City PROPN
or CCONJ
who PRON
travelto VERB
New PROPN
York PROPN
City PROPN
. PUNCT
For ADP
the DET
sweets NOUN
and CCONJ
perhaps ADV
for ADP
the DET
endocrinology NOUN
. PUNCT
Any DET
information NOUN
that PRON
might AUX
help VERB
. PUNCT
Apparently ADV
there PRON
has AUX
n't PART
been AUX
muchimprovement ADJ
in ADP
her PRON
condition NOUN
over ADP
the DET
past ADJ
several ADJ
months NOUN
. PUNCT
-Jackie- PRON
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59244From NUM
: PUNCT
candee@brtph5.bnr.ca NOUN
( PUNCT
Candee PROPN
Ellis PROPN
P885)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
If SCONJ
you PRON
think VERB
you PRON
have AUX
kidney NOUN
stones NOUN
or CCONJ
your PRON
doctor NOUN
tells VERB
you PRON
that SCONJ
you PRON
do AUX
, PUNCT
DEFINITELY NOUN
follow VERB
up ADP
on ADP
it PRON
. PUNCT
  SPACE
My PRON
sister NOUN
was AUX
diagnosed VERB
with ADP
kidney NOUN
stones1 PROPN
1/2 NUM
years NOUN
ago ADV
and CCONJ
given VERB
medication NOUN
to PART
take VERB
to PART
dissolve VERB
them PRON
. PUNCT
  SPACE
After ADP
thatfailed VERB
and CCONJ
she PRON
continued VERB
to PART
be AUX
in ADP
great ADJ
pain NOUN
, PUNCT
they PRON
decided VERB
she PRON
hadendometriosis NOUN
. PUNCT
  SPACE
When ADV
they PRON
did AUX
exploratory ADJ
surgery NOUN
, PUNCT
they PRON
discovered VERB
shehad PROPN
a DET
tumor NOUN
, PUNCT
which PRON
turned VERB
out ADP
to PART
be AUX
rhabdomyosarcoma VERB
-- PUNCT
a DET
very ADV
rare ADJ
and CCONJ
agressive ADJ
cancer NOUN
. PUNCT
  SPACE
I PRON
realize VERB
this DET
is AUX
not PART
what PRON
happens VERB
in ADP
the DET
majorityof PROPN
cases NOUN
, PUNCT
but CCONJ
you PRON
never ADV
know VERB
what PRON
can AUX
happen VERB
and CCONJ
should AUX
n't PART
take VERB
chances!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59245From NUM
: PUNCT
sharon@world.std.com PROPN
( PUNCT
Sharon PROPN
M PROPN
Gartenberg)Subject NOUN
: PUNCT
From ADP
Srebrenica PROPN
: PUNCT
" PUNCT
Doctoring VERB
" PUNCT
in ADP
HellSREBRENICA PROPN
'S PART
DOCTOR PROPN
RECOUNTS NOUN
TOWN PROPN
'S AUX
LIVING NOUN
HELL NOUN
     SPACE
By ADP
Laura PROPN
Pitter PROPN
    SPACE
TUZLA PROPN
, PUNCT
Bosnia PROPN
, PUNCT
Reuter PROPN
- PUNCT
Neret PROPN
Mujanovic PROPN
was AUX
a DET
pathologistwhen NOUN
he PRON
trekked VERB
through ADP
the DET
mountains NOUN
to ADP
the DET
besieged VERB
Muslimtown PROPN
of ADP
Srebrenica PROPN
last ADJ
August PROPN
. PUNCT
    SPACE
But CCONJ
after ADP
treating VERB
4,000 NUM
mangled VERB
victims NOUN
of ADP
Bosnia PROPN
's PART
bloodywar NOUN
, PUNCT
he PRON
considers VERB
himself PRON
a DET
surgeon NOUN
. PUNCT
    SPACE
` PUNCT
` PUNCT
Now ADV
I PRON
'm AUX
a DET
surgeon NOUN
with ADP
great ADJ
experience NOUN
although SCONJ
I PRON
have AUX
nolicense NOUN
to PART
practice VERB
. PUNCT
But CCONJ
if SCONJ
I PRON
operate VERB
on ADP
a DET
person NOUN
and CCONJ
he PRON
livesnormally ADV
that DET
's AUX
the DET
greatest ADJ
license NOUN
a DET
surgeon NOUN
could AUX
have AUX
. PUNCT
' PUNCT
' PUNCT
    SPACE
Evacuated VERB
by ADP
the DET
U.N. PROPN
this DET
week NOUN
to ADP
his PRON
home NOUN
town NOUN
of ADP
Tuzla PROPN
, PUNCT
the DET
Muslim ADJ
physician NOUN
gave VERB
an DET
eyewitness NOUN
medical ADJ
assessment NOUN
ofthe NOUN
horrors NOUN
of ADP
the DET
year NOUN
- PUNCT
long ADJ
Serb ADJ
siege NOUN
of ADP
Srebrenica PROPN
and CCONJ
thesuffering VERB
of ADP
the DET
thousands NOUN
trapped VERB
there ADV
. PUNCT
    SPACE
` PUNCT
` PUNCT
I PRON
lived VERB
through ADP
hell PROPN
together ADV
with ADP
the DET
people NOUN
ofSrebrenica NUM
. PUNCT
All DET
those DET
who PRON
lived VERB
through ADP
this DET
are AUX
the DET
greatestheroes NOUN
that PRON
humanity NOUN
can AUX
produce VERB
, PUNCT
' PUNCT
' PUNCT
he PRON
told VERB
reporters NOUN
. PUNCT
    SPACE
Mujanovic PROPN
, PUNCT
31 NUM
, PUNCT
had AUX
practiced VERB
for ADP
two NUM
months NOUN
as SCONJ
an DET
assistantat NOUN
a DET
local ADJ
hospital NOUN
in ADP
Tuzla PROPN
, PUNCT
but CCONJ
before ADP
going VERB
to ADP
Srebrenica PROPN
hehad VERB
never ADV
performed VERB
a DET
surgical ADJ
operation NOUN
on ADP
his PRON
own ADJ
. PUNCT
Now ADV
he PRON
sayshe ADV
has AUX
performed VERB
major ADJ
surgery NOUN
1,396 NUM
times NOUN
, PUNCT
relying VERB
on ADP
books NOUN
forguidance NOUN
, PUNCT
amputating VERB
arms NOUN
and CCONJ
legs NOUN
150 NUM
times NOUN
, PUNCT
usually ADV
withoutanesthetic ADJ
, PUNCT
delivering VERB
350 NUM
babies NOUN
and CCONJ
performing VERB
four NUM
cesareansections NOUN
. PUNCT
    SPACE
He PRON
worked VERB
18-to-19-hour NUM
days NOUN
, PUNCT
slept VERB
in ADP
the DET
hospital NOUN
for ADP
thefirst PROPN
10 NUM
weeks NOUN
after ADP
his PRON
arrival NOUN
last ADJ
Aug. PROPN
5 NUM
and CCONJ
treated VERB
  SPACE
4,000patients NOUN
. PUNCT
    SPACE
He PRON
arrived VERB
after ADP
making VERB
the DET
trek NOUN
over ADP
mountains NOUN
on ADP
foot NOUN
fromTuzla PROPN
, PUNCT
60 NUM
miles NOUN
northwest ADV
of ADP
Srebrenica PROPN
. PUNCT
About ADV
50 NUM
other ADJ
peoplecarried VERB
in ADP
supplies NOUN
and CCONJ
350 NUM
soldiers NOUN
guided VERB
and CCONJ
protected VERB
himthrough ADJ
guerrilla NOUN
terrain NOUN
, PUNCT
he PRON
said VERB
. PUNCT
    SPACE
His PRON
worst ADJ
memory NOUN
was AUX
of ADP
10 NUM
days NOUN
ago ADV
when ADV
seven NUM
Serb PROPN
shellslanded VERB
within ADP
one NUM
minute NOUN
in ADP
an DET
area NOUN
half DET
the DET
size NOUN
of ADP
a DET
footballfield NOUN
, PUNCT
killing VERB
36 NUM
people NOUN
immediately ADV
and CCONJ
wounding NOUN
102 NUM
. PUNCT
Half ADJ
ofthe NOUN
dead ADJ
were AUX
women NOUN
and CCONJ
children NOUN
. PUNCT
    SPACE
The DET
people NOUN
had AUX
come VERB
out ADP
for ADP
a DET
rare ADJ
day NOUN
of ADP
sunshine NOUN
and CCONJ
thechildren NOUN
were AUX
playing VERB
soccer NOUN
. PUNCT
` PUNCT
` PUNCT
There PRON
was AUX
no DET
warning NOUN
... PUNCT
theblood NOUN
flowed VERB
like SCONJ
a DET
river NOUN
in ADP
the DET
street NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
    SPACE
` PUNCT
` PUNCT
There PRON
were AUX
pieces NOUN
of ADP
women NOUN
all ADV
around ADV
and CCONJ
you PRON
could AUX
notpiece VERB
them PRON
together ADV
. PUNCT
One NUM
woman NOUN
holding VERB
her PRON
two NUM
children NOUN
in ADP
herhands NOUN
was AUX
lying VERB
with ADP
them PRON
on ADP
the DET
ground NOUN
dead ADJ
. PUNCT
They PRON
had AUX
noheads NOUN
. PUNCT
' PUNCT
' PUNCT
    SPACE
Before ADP
Mujanovic PROPN
arrived VERB
with ADP
his PRON
supplies NOUN
conditions NOUN
weredeplorable ADJ
, PUNCT
he PRON
said VERB
. PUNCT
Many ADJ
deaths NOUN
could AUX
have AUX
been AUX
prevented VERB
hadthe DET
hospital NOUN
had AUX
surgical ADJ
tools NOUN
, PUNCT
facilities NOUN
and CCONJ
medicine NOUN
. PUNCT
    SPACE
The DET
six NUM
general ADJ
practitioners NOUN
who PRON
had AUX
been AUX
operating VERB
beforehe PROPN
arrived VERB
had AUX
even ADV
less ADV
surgical ADJ
experience NOUN
than SCONJ
he PRON
did AUX
. PUNCT
` PUNCT
` PUNCT
Theydidn't PROPN
know VERB
the DET
basic ADJ
principles NOUN
for ADP
amputating VERB
limbs NOUN
. PUNCT
' PUNCT
' PUNCT
    SPACE
Once SCONJ
he PRON
arrived VERB
the DET
situation NOUN
improved VERB
, PUNCT
he PRON
said VERB
, PUNCT
but CCONJ
bymid PROPN
- PUNCT
September PROPN
he PRON
had AUX
run VERB
out SCONJ
of ADP
supplies NOUN
. PUNCT
    SPACE
` PUNCT
` PUNCT
Bandages NOUN
were AUX
washed VERB
and CCONJ
boiled VERB
five NUM
times NOUN
... PUNCT
sometimesthey NOUN
were AUX
falling VERB
apart ADV
in ADP
my PRON
hands NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
Doctors NOUN
had AUX
noanesthetic ADJ
and CCONJ
could AUX
not PART
give VERB
patients NOUN
alcohol NOUN
to ADP
numb PROPN
the DET
painbecause NOUN
it PRON
increased VERB
bleeding VERB
. PUNCT
    SPACE
` PUNCT
` PUNCT
People NOUN
were AUX
completely ADV
conscious ADJ
during ADP
amputations NOUN
andstomach VERB
operations NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
Blood NOUN
transfusions NOUN
wereimpossible ADJ
because SCONJ
they PRON
had AUX
no DET
facilities NOUN
to PART
test VERB
blood NOUN
types NOUN
. PUNCT
    SPACE
` PUNCT
` PUNCT
I PRON
felt VERB
destroyed VERB
psychologically ADV
, PUNCT
' PUNCT
' PUNCT
Mujanovic PROPN
said VERB
. PUNCT
    SPACE
The DET
situation NOUN
improved VERB
after ADP
Dec. PROPN
4 NUM
, PUNCT
when ADV
a DET
convoy NOUN
arrivedfrom ADP
the DET
Belgian ADJ
medical ADJ
group NOUN
Medecins PROPN
Sans PROPN
Frontieres PROPN
. PUNCT
    SPACE
But CCONJ
Mujanovic PROPN
said VERB
the DET
military ADJ
predicament NOUN
worsened VERB
inmid PROPN
- PUNCT
December PROPN
after ADP
Bosnian PROPN
Serbs PROPN
began VERB
a DET
major ADJ
offensive NOUN
in ADP
theregion NOUN
. PUNCT
` PUNCT
` PUNCT
Every DET
day NOUN
we PRON
had AUX
air NOUN
strikes NOUN
and CCONJ
shellings NOUN
. PUNCT
' PUNCT
' PUNCT
    SPACE
Then ADV
the DET
hunger NOUN
set VERB
in ADP
. PUNCT
    SPACE
Between ADP
mid PROPN
- NOUN
December PROPN
and CCONJ
mid PROPN
- PROPN
March PROPN
, PUNCT
when ADV
U.S. PROPN
planes NOUN
beganair NOUN
dropping NOUN
food NOUN
, PUNCT
between ADP
20 NUM
and CCONJ
30 NUM
people NOUN
were AUX
dying VERB
every DET
dayfrom ADJ
complications NOUN
associated VERB
with ADP
malnutrition NOUN
, PUNCT
he PRON
said VERB
. PUNCT
    SPACE
` PUNCT
` PUNCT
I PRON
know VERB
for ADP
sure ADJ
that SCONJ
the DET
air NOUN
drop NOUN
operation NOUN
saved VERB
thepeople ADJ
from ADP
massive ADJ
death NOUN
by ADP
hunger NOUN
and CCONJ
starvation NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
    SPACE
According VERB
to ADP
Mujanovic PROPN
, PUNCT
around ADV
5,000 NUM
people NOUN
died VERB
inSrebrenica PROPN
, PUNCT
1,000 NUM
of ADP
them PRON
children NOUN
, PUNCT
during ADP
a DET
year NOUN
of ADP
siege NOUN
. PUNCT
    SPACE
Mujanovic PROPN
plans VERB
to PART
return VERB
to ADP
Srebrenica PROPN
in ADP
three NUM
weeks NOUN
aftervisiting VERB
his PRON
wife NOUN
, PUNCT
who PRON
is AUX
ill ADJ
in ADP
Tuzla PROPN
. PUNCT
    SPACE
` PUNCT
` PUNCT
They PRON
say VERB
I PRON
'm AUX
a DET
hero NOUN
, PUNCT
' PUNCT
' PUNCT
he PRON
said VERB
. PUNCT
` PUNCT
` PUNCT
There PRON
were AUX
thousands NOUN
ofpeople ADJ
standing VERB
at ADP
the DET
sides NOUN
of ADP
the DET
road NOUN
, PUNCT
crying VERB
and CCONJ
waving VERB
whenI PROPN
left VERB
. PUNCT
And CCONJ
I PRON
cried VERB
too ADV
. PUNCT
''-- NOUN
Sharon PROPN
Machlis PROPN
GartenbergFramingham PROPN
, PUNCT
MA PROPN
  SPACE
USAe PROPN
- PUNCT
mail NOUN
: PUNCT
sharon@world.std.comNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59246From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Great ADJ
Post NOUN
! X
  SPACE
( PUNCT
was AUX
: PUNCT
Candida PROPN
bloom NOUN
... PUNCT
)-*----In X
article NOUN
< X
noringC5yGw1.F1M@netcom.com X
> X
noring@netcom.com X
( PUNCT
Jon PROPN
Noring PROPN
) PUNCT
writes VERB
: PUNCT
> X
... PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
they PRON
are AUX
working VERB
on ADP
the DET
theory NOUN
that SCONJ
candida PROPN
> X
overbloom PROPN
with ADP
penetration NOUN
into ADP
mucus PROPN
membrane PROPN
tissue NOUN
with ADP
> X
associated VERB
" PUNCT
mild ADJ
" PUNCT
inflammatory ADJ
response NOUN
can AUX
and CCONJ
does AUX
occur VERB
> X
in ADP
a DET
large ADJ
number NOUN
of ADP
people NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
reject VERB
this DET
" PUNCT
yeast NOUN
> X
hypothesis NOUN
" PUNCT
, PUNCT
then ADV
I PRON
'd AUX
guess VERB
you PRON
'd AUX
view VERB
this DET
research NOUN
as SCONJ
one NUM
> X
more ADV
wasteful ADJ
and CCONJ
quixotic ADJ
endeavor NOUN
. PUNCT
  SPACE
Stay VERB
tuned VERB
. PUNCT
I PRON
do AUX
not PART
have AUX
enough ADJ
medical ADJ
expertise NOUN
to PART
have AUX
much ADJ
of ADP
an DET
opinionone ADJ
way NOUN
or CCONJ
another DET
on ADP
hidden VERB
candida PROPN
infections NOUN
. PUNCT
  SPACE
I PRON
canunderstand VERB
the DET
skepticism NOUN
of ADP
those DET
who PRON
see VERB
this DET
associated VERB
withvarious ADJ
general ADJ
kinds NOUN
of ADP
symptoms NOUN
, PUNCT
while SCONJ
there PRON
is AUX
a DET
lack NOUN
of ADP
soliddemonstration NOUN
that SCONJ
this DET
happens VERB
and CCONJ
causes VERB
such ADJ
general ADJ
symptoms.(To PUNCT
understand VERB
this DET
skepticism NOUN
, PUNCT
one NUM
only ADV
needs VERB
to PART
know VERB
of ADP
pastfailures NOUN
that PRON
shared VERB
these DET
characteristics NOUN
with ADP
the DET
notion NOUN
ofhidden PROPN
candida PROPN
infection NOUN
. PUNCT
  SPACE
There PRON
have AUX
been AUX
quite DET
a DET
few ADJ
, PUNCT
and CCONJ
theproponents NOUN
of ADP
all DET
thought VERB
that SCONJ
the DET
skeptics NOUN
were AUX
overly ADV
skeptical.)On PROPN
the DET
other ADJ
hand NOUN
, PUNCT
I PRON
am AUX
happy ADJ
to PART
read VERB
that SCONJ
some DET
people NOUN
aresufficiently ADV
interested ADJ
in ADP
this DET
possibility NOUN
, PUNCT
spurred VERB
bysuggestive ADJ
clinical ADJ
experience NOUN
, PUNCT
to PART
research VERB
it PRON
further ADV
. PUNCT
  SPACE
Thedoubters NOUN
may AUX
be AUX
surprised ADJ
. PUNCT
  SPACE
( PUNCT
It PRON
has AUX
happened VERB
before.)I NOUN
realize VERB
that SCONJ
admitting VERB
ignorance NOUN
in ADP
the DET
face NOUN
of ADP
ignorance NOUN
maynot PROPN
endear VERB
me PRON
to ADP
those DET
who PRON
are AUX
so ADV
sure ADJ
they PRON
know VERB
one NUM
way NOUN
oranother NOUN
. PUNCT
  SPACE
( PUNCT
And CCONJ
, PUNCT
indeed ADV
, PUNCT
perhaps ADV
some DET
of ADP
them PRON
do AUX
know VERB
-- PUNCT
I PRON
am AUX
theone NOUN
who PRON
is AUX
currently ADV
ignorant ADJ
. PUNCT
) PUNCT
  SPACE
But CCONJ
I PRON
find VERB
this DET
the DET
most ADV
honestroute NOUN
, PUNCT
and CCONJ
so ADV
I PRON
am AUX
happy ADJ
with ADP
it PRON
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59247From NUM
: PUNCT
jgnassi@athena.mit.edu PROPN
( PUNCT
John PROPN
Angelo PROPN
Gnassi)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
FictionIn NUM
an DET
article NOUN
Jon PROPN
Noring PROPN
writes:>In PROPN
article NOUN
rind@enterprise.bih.harvard.edu NOUN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>>Do PUNCT
you PRON
believe VERB
that SCONJ
any DET
quacks NOUN
exist VERB
? PUNCT
  SPACE
How ADV
about ADP
quack NOUN
diagnoses NOUN
? PUNCT
  SPACE
Is AUX
> X
true ADJ
focus NOUN
of ADP
the DET
medical ADJ
profession NOUN
. PUNCT
  SPACE
The DET
AMA PROPN
and CCONJ
the DET
Boards PROPN
should AUX
focus VERB
> X
on ADP
these DET
" PUNCT
quacks NOUN
" PUNCT
instead ADV
of ADP
devoting VERB
unbelievable ADJ
energy NOUN
on ADP
' PUNCT
search NOUN
- PUNCT
and->destroy NOUN
- PUNCT
missions NOUN
' PUNCT
to PART
pull VERB
the DET
licenses NOUN
of ADP
those DET
doctors NOUN
who PRON
are AUX
trying VERB
non->traditional ADJ
or CCONJ
not PART
fully ADV
accepted VERB
treatments NOUN
for ADP
their PRON
desperate ADJ
patients NOUN
> X
that SCONJ
traditional ADJ
/ SYM
accepted ADJ
medicine NOUN
can AUX
not PART
help VERB
. PUNCT
If SCONJ
I PRON
prescribe VERB
itraconazole NOUN
for ADP
a DET
patient NOUN
's PART
sinusitis NOUN
neither CCONJ
the DET
AMA PROPN
, PUNCT
FDA PROPN
, PUNCT
State PROPN
Licensing PROPN
Board PROPN
, PUNCT
nor CCONJ
ABFP PROPN
will AUX
be AUX
knocking VERB
on ADP
my PRON
door NOUN
to ADP
askwhy ADV
. PUNCT
  SPACE
This DET
is AUX
a DET
specious ADJ
argument.>on NOUN
their PRON
backs NOUN
and CCONJ
pee NOUN
- PUNCT
pee PROPN
on ADP
themselves PRON
in ADP
obedience NOUN
. PUNCT
  SPACE
What PRON
do AUX
they PRON
teach VERB
> X
you PRON
in ADP
medical ADJ
school NOUN
- PUNCT
how ADV
to PART
throw VERB
your PRON
authority NOUN
around?Among ADP
other ADJ
things NOUN
, PUNCT
how ADV
to PART
evaluate VERB
new ADJ
theories NOUN
and CCONJ
treatments.>Let VERB
me PRON
put VERB
it PRON
another DET
way NOUN
to PART
make VERB
my PRON
point NOUN
clear ADJ
: PUNCT
  SPACE
" PUNCT
quack INTJ
" PUNCT
is AUX
a DET
nebulous ADJ
word NOUN
> X
lacking VERB
in ADP
any DET
precision NOUN
. PUNCT
  SPACE
Its PRON
sole ADJ
use NOUN
is AUX
to PART
obfuscate VERB
the DET
issues NOUN
at ADP
hand NOUN
. PUNCT
Funny ADJ
, PUNCT
I PRON
thought VERB
it PRON
meant VERB
" PUNCT
one NUM
who PRON
fraudulently ADV
misrepresents VERB
hisability NOUN
and CCONJ
experience NOUN
in ADP
the DET
diagnosis NOUN
and CCONJ
treatment NOUN
of ADP
disease PROPN
orthe DET
effects NOUN
to PART
be AUX
achieved VERB
by ADP
the DET
treatment NOUN
he PRON
offers VERB
" PUNCT
( PUNCT
Dorland's27th PROPN
) PUNCT
. PUNCT
  SPACE
Certainly ADV
more ADJ
precision NOUN
than SCONJ
conveyed VERB
by ADP
" PUNCT
chronic ADJ
yeast".>The PROPN
indiscriminate NOUN
use NOUN
of ADP
this DET
word NOUN
is AUX
a DET
sure ADJ
sign NOUN
of ADP
incompetency NOUN
; PUNCT
  SPACE
and CCONJ
coming VERB
> X
from ADP
any DET
medical ADJ
doctor NOUN
( PUNCT
or CCONJ
wanna PROPN
- PUNCT
be PROPN
) PUNCT
, PUNCT
where ADV
competency NOUN
is AUX
expected VERB
, PUNCT
is AUX
real ADJ
> X
scary ADJ
. PUNCT
The DET
inability NOUN
to PART
discriminate VERB
between ADP
fraudulent NOUN
or CCONJ
erroneousrepresentations NOUN
is AUX
far ADV
more ADV
frightening ADJ
. PUNCT
  SPACE
It PRON
is AUX
fraud NOUN
to PART
promote VERB
atreatment NOUN
where ADV
the DET
evidence NOUN
for ADP
it PRON
is AUX
either CCONJ
lacking ADJ
or CCONJ
against ADP
itand VERB
the DET
quacksalver NOUN
knows VERB
so ADV
, PUNCT
or CCONJ
error NOUN
if SCONJ
the DET
honest ADJ
practitionerdoesn't CCONJ
know VERB
so ADV
. PUNCT
  SPACE
Failure NOUN
to PART
speak VERB
out ADP
against ADP
either DET
bespeaksincompetency.>(p.s NOUN
. PUNCT
, PUNCT
may AUX
I PRON
suggest VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
doctors NOUN
and CCONJ
wanna PROPN
- PUNCT
be AUX
- PUNCT
doctors NOUN
on ADP
> X
the DET
net NOUN
who PRON
refuse VERB
to PART
have AUX
an DET
open ADJ
mind NOUN
on ADP
alternative ADJ
treatments NOUN
and CCONJ
> X
theories NOUN
, PUNCT
such ADJ
as SCONJ
the DET
" PUNCT
yeast NOUN
theory NOUN
" PUNCT
, PUNCT
should AUX
create VERB
your PRON
own ADJ
moderated VERB
group NOUN
. PUNCT
May AUX
I PRON
reply VERB
- PUNCT
seriously ADV
- PUNCT
that SCONJ
if SCONJ
the DET
practitioners NOUN
and CCONJ
proponents NOUN
ofnon ADJ
- PUNCT
scientific ADJ
medicine NOUN
have AUX
left VERB
their PRON
minds NOUN
so ADV
open ADJ
that SCONJ
the DET
partsof NOUN
their PRON
brains NOUN
that PRON
do AUX
critical ADJ
evaluation NOUN
have AUX
fallen VERB
out ADP
, PUNCT
they PRON
shouldlearn VERB
to PART
edit VERB
their PRON
newsgroup NOUN
headers NOUN
to PART
conform VERB
to ADP
the DET
existinghierarchy NOUN
and CCONJ
divisions.-- VERB
     SPACE
John PROPN
Angelo PROPN
Gnassi PROPN
                 SPACE
Lab PROPN
of ADP
Computer PROPN
Science PROPN
   SPACE
jgnassi@hstbme.mit.edu PROPN
               SPACE
Massachusetts PROPN
General PROPN
Hospital PROPN
     SPACE
" PUNCT
Eternal PROPN
Student PROPN
" PUNCT
                  SPACE
Boston PROPN
, PUNCT
Massachusetts PROPN
, PUNCT
USA PROPN
     SPACE
" PUNCT
The DET
Earth PROPN
be AUX
spanned VERB
, PUNCT
connected VERB
by ADP
a DET
Network PROPN
" PUNCT
- PUNCT
Walt PROPN
WhitmanNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59248From NUM
: PUNCT
ab961@Freenet.carleton.ca PROPN
( PUNCT
Robert PROPN
Allison)Subject NUM
: PUNCT
Re ADP
: PUNCT
Frequent PROPN
nosebleedsIn PROPN
a DET
previous ADJ
article NOUN
, PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
says:>In PROPN
article NOUN
< X
9304191126.AA21125@seastar.seashell NOUN
> X
bebmza@sru001.chvpkh.chevron.com NOUN
( PUNCT
Beverly PROPN
M. PROPN
Zalan PROPN
) PUNCT
writes:>>>>My PROPN
6 NUM
year NOUN
son NOUN
is AUX
so ADV
plagued ADJ
. PUNCT
  SPACE
Lots NOUN
of ADP
vaseline NOUN
up ADP
his PRON
nose NOUN
each DET
night NOUN
seems VERB
> X
> X
to PART
keep VERB
it PRON
under ADP
control NOUN
. PUNCT
  SPACE
But CCONJ
let VERB
him PRON
get AUX
bopped VERB
there ADV
, PUNCT
and CCONJ
he PRON
'll AUX
recur VERB
for ADP
> X
> X
days NOUN
! PUNCT
  SPACE
Also ADV
allergies VERB
, PUNCT
colds NOUN
, PUNCT
dry ADJ
air NOUN
all DET
seem VERB
to PART
contribute VERB
. PUNCT
  SPACE
But CCONJ
again ADV
, PUNCT
the DET
> X
> X
vaseline PROPN
, PUNCT
or CCONJ
A&D PROPN
ointment NOUN
, PUNCT
or CCONJ
neosporin VERB
all DET
seem VERB
to PART
keep VERB
them PRON
from ADP
recurring.>>>If NOUN
you PRON
can AUX
get AUX
it PRON
, PUNCT
you PRON
might AUX
want VERB
to PART
try VERB
a DET
Canadian PROPN
over ADP
- PUNCT
the DET
- PUNCT
counter NOUN
product NOUN
> X
called VERB
Secaris PROPN
, PUNCT
which PRON
is AUX
a DET
water NOUN
- PUNCT
soluble ADJ
gel NOUN
. PUNCT
  SPACE
Compared VERB
to ADP
Vaseline PROPN
or CCONJ
other ADJ
> X
greasy NOUN
ointments NOUN
, PUNCT
Secaris PROPN
seems VERB
more ADV
compatible ADJ
with ADP
the DET
moisture NOUN
that's NOUN
> X
already ADV
there.>Secaris PROPN
is AUX
reasonably ADV
inexpensive ADJ
( PUNCT
$ SYM
6.00 NUM
Cdn PROPN
for ADP
a DET
tube NOUN
) PUNCT
, PUNCT
and CCONJ
is AUX
indeed ADV
anover ADJ
the DET
counter NOUN
medication NOUN
. PUNCT
Why ADV
it PRON
does AUX
not PART
appear VERB
to PART
be AUX
available ADJ
in ADP
theUS PROPN
, PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
It PRON
's AUX
manufactured VERB
in ADP
Montreal PROPN
. PUNCT
It PRON
's AUX
a DET
nasal ADJ
lubricant NOUN
, PUNCT
and CCONJ
is AUX
intended VERB
to PART
help VERB
nosebleeds VERB
that DET
result NOUN
fromdry PROPN
mucous ADJ
membranes NOUN
. PUNCT
From ADP
some DET
of ADP
the DET
replies NOUN
to ADP
my PRON
original ADJ
posting NOUN
, PUNCT
it PRON
's AUX
evident ADJ
that SCONJ
somepeople NOUN
do AUX
not PART
secrete VERB
enough ADJ
mucous ADJ
to PART
keep VERB
their PRON
nose NOUN
lining NOUN
protectedfrom ADP
environmental ADJ
influences NOUN
( PUNCT
ie X
, PUNCT
dry ADJ
air NOUN
) PUNCT
. PUNCT
But CCONJ
I PRON
've AUX
had VERB
no DET
responsesfrom NOUN
anyone PRON
with ADP
experience NOUN
with ADP
Rutin PROPN
. PUNCT
Is AUX
there PRON
another DET
newsgroup PROPN
thatmight NOUN
have AUX
specifics NOUN
on ADP
herbal ADJ
remedies?But PROPN
thanks NOUN
to ADP
all DET
those DET
who PRON
did AUX
reply VERB
with ADP
their PRON
experiences.-- PROPN
Robert PROPN
AllisonNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59249From NUM
: PUNCT
elg@silver.lcs.mit.edu PROPN
( PUNCT
Elizabeth PROPN
Glaser)Subject PROPN
: PUNCT
net ADJ
address NOUN
for ADP
WHOI PROPN
am AUX
looking VERB
for ADP
the DET
email NOUN
address NOUN
of ADP
the DET
World PROPN
Health PROPN
Organization PROPN
, PUNCT
in ADP
particular ADJ
the DET
address NOUN
for ADP
the DET
Department PROPN
of ADP
Nursing PROPN
or CCONJ
the DET
ChiefScientist PROPN
for ADP
Nursing NOUN
: PUNCT
Dr. PROPN
Miriam PROPN
Hirschfeld PROPN
. PUNCT
The DET
snail ADJ
- PUNCT
mail NOUN
address NOUN
Ihave PROPN
is AUX
the DET
following VERB
: PUNCT
    SPACE
World PROPN
Health PROPN
Organization PROPN
    SPACE
20 NUM
Avenue PROPN
Appia PROPN
    SPACE
1211 NUM
Geneva PROPN
27 NUM
    SPACE
SwitzerlandPlease PROPN
respond VERB
directly ADV
to ADP
me PRON
. PUNCT
Thank VERB
you PRON
for ADP
your PRON
assistance NOUN
. PUNCT
   SPACE
--- PUNCT
   SPACE
elg PROPN
   SPACE
---Elizabeth PUNCT
Glaser PROPN
, PUNCT
RNelg@silver.lcs.mit.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59250Subject NUM
: PUNCT
Why ADV
isolate VERB
it?From PROPN
: PUNCT
chinsz@eis.calstate.edu PROPN
( PUNCT
Christopher PROPN
Hinsz PROPN
) PUNCT
	 SPACE
Does AUX
anyone PRON
on ADP
this DET
newsgroup NOUN
happen VERB
to PART
know VERB
WHY ADV
morphine NOUN
wasfirst VERB
isolated VERB
from ADP
opium NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
know VERB
why ADV
, PUNCT
or CCONJ
have AUX
an DET
idea NOUN
for ADP
where ADV
Icould AUX
look VERB
to PART
find VERB
this DET
info NOUN
, PUNCT
please INTJ
mail VERB
me PRON
. PUNCT
	 SPACE
CSHany PROPN
suggestionas NOUN
would AUX
be AUX
greatly ADV
appreciated-- NUM
" PUNCT
Kilimanjaro PROPN
is AUX
a DET
pretty ADV
tricky ADJ
climb NOUN
. PUNCT
Most ADJ
of ADP
it PRON
's AUX
up ADV
, PUNCT
until ADP
you PRON
reachthe VERB
very ADV
, PUNCT
very ADV
top ADJ
, PUNCT
and CCONJ
then ADV
it PRON
tends VERB
to PART
slope VERB
away ADV
rather ADV
sharply ADV
. PUNCT
" PUNCT
					 SPACE
Sir PROPN
George PROPN
Head PROPN
, PUNCT
OBE PROPN
( PUNCT
JC)------------------------------------------------------------------------------LOGIC PROPN
: PUNCT
" PUNCT
The DET
point NOUN
is AUX
frozen VERB
, PUNCT
the DET
beast NOUN
is AUX
dead ADJ
, PUNCT
what PRON
is AUX
the DET
difference NOUN
? PUNCT
" PUNCT
					 SPACE
Gavin PROPN
Millarrrrrrrrrr PROPN
( PUNCT
JC)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59251From NUM
: PUNCT
mutrh@uxa.ecn.bgu.edu PROPN
( PUNCT
Todd PROPN
R. PROPN
Haverstock)Subject NUM
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceIn NOUN
article NOUN
< X
1993Apr23.181051.4023@donner NUM
. PUNCT
SanDiego PROPN
. PUNCT
NCR.COM PROPN
> X
davel@davelpcSanDiego NOUN
. PUNCT
NCR.com PROPN
( PUNCT
Dave PROPN
Lord PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1r8pcn$rm1@terminator.rs.itd.umich.edu NUM
> X
, PUNCT
Donald PROPN
Mackie><Donald_Mackie@med.umich.edu PROPN
> X
writes VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
1993Apr22.205341.172965@locus.com NUM
> X
Michael PROPN
Trofimoff PROPN
, PUNCT
> X
> X
tron@fafnir.la.locus.com PROPN
writes VERB
: PUNCT
> X
> X
> X
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
> X
> X
> X
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
> X
> X
> X
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki PROPN
? PUNCT
> X
> X
> X
> X
I PRON
'm AUX
not PART
sure ADJ
of ADP
the DET
exact ADJ
recipe NOUN
, PUNCT
but CCONJ
I PRON
'm AUX
sure ADJ
acidophilus NOUN
is AUX
one NUM
of ADP
> X
> X
the DET
major ADJ
ingredients NOUN
. PUNCT
   SPACE
: PUNCT
-)>>It PUNCT
's PART
plain ADJ
yoghurt NOUN
with ADP
grated VERB
cucumber NOUN
and CCONJ
coriander NOUN
( PUNCT
other ADJ
spices NOUN
are AUX
> X
sometimes ADV
used VERB
) PUNCT
. PUNCT
Some DET
people NOUN
use VERB
half ADJ
yoghurt NOUN
and CCONJ
half NOUN
mayonaise NOUN
. PUNCT
In ADP
the DET
kind NOUN
I PRON
have AUX
made VERB
I PRON
used VERB
a DET
Lite ADJ
sour ADJ
cream NOUN
instead ADV
of ADP
yogurt PROPN
. PUNCT
  SPACE
May AUX
notbe PROPN
as ADV
good ADJ
for ADP
you PRON
, PUNCT
but CCONJ
I PRON
prefer VERB
the DET
taste NOUN
. PUNCT
  SPACE
A DET
few ADJ
small ADJ
bits NOUN
of ADP
cuke PROPN
inaddition NOUN
to ADP
the DET
grated VERB
cuke PROPN
may AUX
also ADV
finish VERB
the DET
sauce NOUN
off ADP
nicely.---TRHmutrh@uxa.ecn.bgu.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59252From NUM
: PUNCT
res4w@galen.med.Virginia.EDU PROPN
( PUNCT
Robert PROPN
E. PROPN
Schmieg)Subject NUM
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)ken@isis.cns.caltech.edu NUM
  SPACE
writes VERB
: PUNCT
> X
I PRON
do AUX
n't PART
know VERB
the DET
first ADJ
thing NOUN
about ADP
yeast NOUN
infections NOUN
but CCONJ
I PRON
am AUX
a DET
scientist NOUN
. PUNCT
> X
No DET
scientist NOUN
would AUX
take VERB
your PRON
statement NOUN
--- PUNCT
" PUNCT
no DET
convincing ADJ
empirical ADJ
evidence NOUN
> X
to PART
support VERB
the DET
existence NOUN
of ADP
systemic ADJ
yeast NOUN
syndrome NOUN
" PUNCT
--- PUNCT
to PART
tell VERB
you PRON
> PUNCT
anything PRON
except SCONJ
an DET
absence NOUN
of ADP
data NOUN
on ADP
the DET
question NOUN
. PUNCT
The DET
burden NOUN
of ADP
proof NOUN
rests NOUN
upon SCONJ
those DET
who PRON
claim VERB
the DET
existenceof NOUN
this DET
" PUNCT
syndrome NOUN
" PUNCT
. PUNCT
  SPACE
To ADP
date NOUN
, PUNCT
these DET
claims NOUN
are AUX
unsubstantiatedby ADJ
any DET
available ADJ
data NOUN
. PUNCT
  SPACE
Hopefully ADV
, PUNCT
as SCONJ
a DET
scientist NOUN
, PUNCT
you PRON
wouldtake VERB
issue NOUN
with ADP
anyone PRON
overstating VERB
their PRON
conclusions NOUN
basedupon ADP
their PRON
data NOUN
. PUNCT
> X
beasties VERB
with ADP
present ADJ
methods NOUN
even ADV
if SCONJ
they PRON
were AUX
there ADV
. PUNCT
  SPACE
Noring VERB
and CCONJ
the DET
> X
fellow NOUN
from ADP
Oklahoma PROPN
( PUNCT
sorry INTJ
, PUNCT
forgot VERB
your PRON
name NOUN
) PUNCT
have AUX
also ADV
suggested VERB
one NUM
set NOUN
> X
of ADP
anecdotal ADJ
evidence NOUN
in ADP
favor NOUN
based VERB
on ADP
their PRON
personal ADJ
experiences NOUN
--- PUNCT
> X
namely ADV
, PUNCT
that SCONJ
when ADV
people NOUN
with ADP
certain ADJ
conditions NOUN
are AUX
given VERB
anti ADJ
- ADJ
fungals NOUN
, PUNCT
> X
many ADJ
of ADP
them PRON
appear VERB
to PART
get AUX
better ADJ
. PUNCT
  SPACE
Gee PROPN
, PUNCT
I PRON
have AUX
many ADJ
interesting ADJ
and CCONJ
enlightening ADJ
anecdotes VERB
aboutmyself PRON
, PUNCT
my PRON
friends NOUN
, PUNCT
and CCONJ
my PRON
family NOUN
, PUNCT
but CCONJ
in ADP
the DET
practice NOUN
ofmedicine NOUN
I PRON
expect VERB
and CCONJ
demand VERB
more ADV
rigorous ADJ
rationales NOUN
forbasing VERB
therapy NOUN
than SCONJ
" PUNCT
Aunt PROPN
Susie PROPN
's PART
brother NOUN
- PUNCT
in ADP
- PUNCT
law NOUN
... PUNCT
" PUNCT
.Anecdotal PUNCT
evidence NOUN
may AUX
provide VERB
inspiration NOUN
for ADP
a DET
hypothesis NOUN
, PUNCT
but CCONJ
rarely ADV
proves VERB
anything PRON
in ADP
a DET
positive ADJ
sense NOUN
. PUNCT
  SPACE
And CCONJ
unlikemathematics NOUN
, PUNCT
boolean ADJ
logic NOUN
rarely ADV
applies VERB
directly ADV
to ADP
medicalissues NOUN
, PUNCT
and CCONJ
so ADV
evidence NOUN
of ADP
' PUNCT
exceptions NOUN
' PUNCT
does AUX
not PART
usuallydisprove VERB
but CCONJ
rather ADV
modifies VERB
current ADJ
concepts NOUN
of ADP
disease PROPN
. PUNCT
> X
So ADV
, PUNCT
if SCONJ
you PRON
have AUX
any DET
evidence NOUN
* PUNCT
against ADP
* PUNCT
the DET
hypothesis NOUN
--- PUNCT
for ADP
example NOUN
, PUNCT
> X
controlled VERB
double ADJ
- PUNCT
blind ADJ
studies NOUN
showing VERB
that SCONJ
the DET
anti NOUN
- NOUN
fungals NOUN
do AUX
n't PART
do AUX
any DET
> X
better ADJ
than SCONJ
sugar NOUN
water NOUN
--- PUNCT
then ADV
let VERB
's PRON
hear VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
, PUNCT
then ADV
what PRON
we PRON
> X
have AUX
is AUX
anecdotal ADJ
and CCONJ
uncontrolled ADJ
evidence NOUN
on ADP
one NUM
side NOUN
, PUNCT
and CCONJ
abject VERB
> X
disbelief NOUN
on ADP
the DET
other ADJ
. PUNCT
  SPACE
In ADP
which PRON
case NOUN
, PUNCT
please INTJ
, PUNCT
there PRON
is AUX
no DET
point NOUN
in ADP
yelling VERB
> X
back ADV
and CCONJ
forth ADV
at ADP
each DET
other ADJ
any DET
longer ADV
since SCONJ
neither DET
side NOUN
has AUX
any DET
> X
convincing ADJ
evidence NOUN
either CCONJ
positive ADJ
or CCONJ
negative ADJ
. PUNCT
  SPACE
I PRON
would AUX
characterize VERB
it PRON
not PART
as SCONJ
' PUNCT
abject ADJ
disbelief NOUN
' PUNCT
but CCONJ
rather ADV
' PUNCT
scientific ADJ
outrage NOUN
over ADP
vastly ADV
overstated VERB
conclusions NOUN
' PUNCT
. PUNCT
> X
it PRON
appears VERB
to ADP
me PRON
the DET
main ADJ
question NOUN
now ADV
is AUX
whether SCONJ
the DET
proponents NOUN
can AUX
> X
marshall PROPN
enough ADJ
anecdotal ADJ
evidence NOUN
in ADP
a DET
convincing ADJ
and CCONJ
documented VERB
enough ADJ
> X
manner NOUN
to PART
make VERB
a DET
good ADJ
case NOUN
for ADP
carrying VERB
out ADP
a DET
good ADJ
controlled VERB
double ADJ
- PUNCT
blind ADJ
> X
study NOUN
of ADP
antifungals NOUN
( PUNCT
or CCONJ
else ADV
, PUNCT
forget VERB
convincing VERB
anybody PRON
else ADV
to PART
carry VERB
out ADP
> X
the DET
test NOUN
, PUNCT
just ADV
carry VERB
it PRON
out ADP
themselves PRON
! PUNCT
) PUNCT
--- PUNCT
and CCONJ
also ADV
, PUNCT
whether SCONJ
they PRON
can AUX
> X
adequately ADV
define VERB
the DET
patient ADJ
population NOUN
or CCONJ
symptoms NOUN
on ADP
which PRON
such DET
a DET
study NOUN
> X
should AUX
be AUX
carried VERB
out ADP
to PART
provide VERB
a DET
fair ADJ
test NOUN
of ADP
the DET
hypothesis NOUN
. PUNCT
I PRON
have AUX
no DET
problem NOUN
with ADP
such DET
an DET
approach NOUN
; PUNCT
but CCONJ
this DET
is AUX
NOT ADV
whatis NOUN
happening VERB
in ADP
the DET
' PUNCT
trenches NOUN
' PUNCT
of ADP
this DET
diagnosis NOUN
. PUNCT
Bob PROPN
SchmiegNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59253From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject NOUN
: PUNCT
Adenocarcinoma PROPN
of ADP
the DET
LungsPutting PROPN
aside ADV
our PRON
substantial ADJ
differences NOUN
, PUNCT
I PRON
'd AUX
like VERB
to PART
ask VERB
the DET
knowledgeableones NOUN
to PART
give VERB
feedback NOUN
on ADP
this DET
. PUNCT
  SPACE
Let VERB
me PRON
explain VERB
. PUNCT
One NUM
of ADP
my PRON
family NOUN
members NOUN
last ADJ
week NOUN
was AUX
discovered VERB
to PART
have AUX
a DET
brain NOUN
tumor NOUN
afterhaving VERB
some DET
difficulties NOUN
with ADP
walking NOUN
and CCONJ
writing NOUN
( PUNCT
she PRON
is AUX
64 NUM
years NOUN
old).Otherwise ADV
, PUNCT
she PRON
is AUX
in ADP
fine ADJ
health NOUN
. PUNCT
  SPACE
The DET
discovery NOUN
was AUX
made VERB
via ADP
CAT NOUN
scans NOUN
. PUNCT
She PRON
then ADV
had AUX
MRI PROPN
scans NOUN
done VERB
, PUNCT
where ADV
small ADJ
cancerous ADJ
areas NOUN
were AUX
discoveredin ADJ
her PRON
lungs NOUN
. PUNCT
  SPACE
Biopsies PROPN
showed VERB
it PRON
to PART
be AUX
adenocarcinoma PROPN
. PUNCT
  SPACE
One NUM
spot NOUN
isin PROPN
the DET
lungs NOUN
, PUNCT
and CCONJ
another DET
in ADP
the DET
pneumothorax NOUN
. PUNCT
  SPACE
The DET
oncologists NOUN
believethe DET
cancer NOUN
started VERB
in ADP
the DET
lungs NOUN
and CCONJ
caused VERB
the DET
brain NOUN
tumor NOUN
( PUNCT
she PRON
smokeduntil ADP
four NUM
years NOUN
ago).Anyway ADV
, PUNCT
I PRON
'd AUX
like INTJ
feedback VERB
as SCONJ
to ADP
what PRON
adenocarcinoma PROPN
is AUX
, PUNCT
how ADV
it PRON
is AUX
differentfrom ADP
other ADJ
cancers NOUN
, PUNCT
how ADV
she PRON
will AUX
be AUX
treated VERB
( PUNCT
luckily ADV
the DET
tumor NOUN
is AUX
rightbelow VERB
the DET
skull NOUN
and CCONJ
can AUX
be AUX
easily ADV
removed VERB
) PUNCT
, PUNCT
and CCONJ
statistically ADV
what PRON
arethe VERB
chances NOUN
for ADP
full ADJ
remission NOUN
/ SYM
recovery?Thanks NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59254From NUM
: PUNCT
x91hozak@gw.wmich.eduSubject PROPN
: PUNCT
PRK PROPN
referral NOUN
in ADP
CanadaCould PROPN
some DET
please INTJ
refer VERB
me PRON
to ADP
someone PRON
who PRON
can AUX
perform VERB
PRK PROPN
( PUNCT
Photo PROPN
Refractive PROPN
Keratostomy PROPN
) PUNCT
in ADP
Canada PROPN
( PUNCT
preferably ADV
eastern ADJ
portion NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
looked VERB
inthe ADV
yellow ADJ
pages NOUN
with ADP
little ADJ
success NOUN
, PUNCT
and CCONJ
if SCONJ
someone PRON
has AUX
had VERB
a DET
good ADJ
( PUNCT
orbad NOUN
, PUNCT
for ADP
that DET
matter NOUN
) PUNCT
experience NOUN
, PUNCT
that PRON
would AUX
be AUX
especially ADV
helpful ADJ
if SCONJ
youcould PRON
please INTJ
let VERB
me PRON
know VERB
. PUNCT
Thanks NOUN
, PUNCT
Kurt PROPN
Hozak92hozak@lab.cc.wmich.edu PROPN
( PUNCT
preferred ADJ
address)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59255From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
cholistasis(sp?)/fat ADJ
- PUNCT
free ADJ
diet/pregnancy!!aldridge@netcom.com NOUN
( PUNCT
Jacquelin PROPN
Aldridge PROPN
) PUNCT
writes VERB
: PUNCT
I PRON
decided VERB
to PART
come VERB
back ADV
and CCONJ
amend VERB
this DET
so SCONJ
it PRON
quotes VERB
me PRON
and CCONJ
has AUX
addedcomments...>heart@access.digex.com X
( PUNCT
G PROPN
) PUNCT
writes:>>Hi,>>it PROPN
started VERB
to PART
hurt VERB
when ADV
I PRON
lay VERB
on ADP
my PRON
right ADJ
side NOUN
, PUNCT
and CCONJ
then ADV
it PRON
hurt VERB
  SPACE
> X
> X
no ADV
matter ADV
what PRON
position NOUN
I PRON
was AUX
in ADV
. PUNCT
  SPACE
Next ADV
, PUNCT
I PRON
noticed VERB
that SCONJ
when ADV
I PRON
> X
> X
ate VERB
greasy NOUN
or CCONJ
fatty NOUN
foods NOUN
I PRON
felt VERB
like SCONJ
my PRON
entire ADJ
abdomen NOUN
had AUX
> X
> X
turned VERB
to ADP
stone NOUN
, PUNCT
and CCONJ
the DET
pain NOUN
in ADP
the DET
area NOUN
got VERB
worse ADJ
. PUNCT
  SPACE
However ADV
if SCONJ
> X
> X
I PRON
ate VERB
sauerkraut NOUN
or CCONJ
vinegar NOUN
or CCONJ
something PRON
to PART
' PUNCT
cut VERB
' PUNCT
the DET
fat NOUN
it PRON
> X
> X
was AUX
n't PART
as ADV
much ADJ
of ADP
a DET
problem.>>So NOUN
the DET
doctor NOUN
says VERB
I PRON
have AUX
cholistatis NOUN
, PUNCT
and CCONJ
that SCONJ
I PRON
should AUX
avoid VERB
> X
> X
fatty PROPN
foods NOUN
. PUNCT
  SPACE
This DET
makes VERB
sense NOUN
, PUNCT
and CCONJ
because SCONJ
I PRON
was AUX
already ADV
aware ADJ
> X
> X
of ADP
what PRON
seemed VERB
to ADP
me PRON
this DET
cause NOUN
and CCONJ
effect NOUN
relationship NOUN
I PRON
have AUX
> X
> X
been AUX
avoiding VERB
these DET
foods NOUN
on ADP
my PRON
own ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
still ADV
able ADJ
to PART
eat VERB
> X
> X
foods NOUN
with ADP
Ricotta PROPN
cheese NOUN
for ADP
instance NOUN
and CCONJ
other ADJ
low ADJ
fat ADJ
foods NOUN
. PUNCT
  SPACE
> X
> X
But CCONJ
doc PROPN
wants VERB
me PRON
to PART
be AUX
on ADP
a DET
non ADJ
- ADJ
fat ADJ
diet NOUN
. PUNCT
  SPACE
This DET
means VERB
no DET
meat NOUN
> X
> X
except SCONJ
fish NOUN
and CCONJ
chicken NOUN
w/o ADP
skin NOUN
( PUNCT
I PRON
do AUX
this DET
anyway ADV
) PUNCT
. PUNCT
  SPACE
No DET
nuts NOUN
, PUNCT
> X
> X
fried VERB
food NOUN
, PUNCT
cheese NOUN
etc X
. PUNCT
  SPACE
I PRON
am AUX
allowed VERB
skim PROPN
milk NOUN
. PUNCT
  SPACE
She PRON
said VERB
I PRON
> X
> X
should AUX
avoid VERB
anything PRON
sweet ADJ
( PUNCT
e.g. ADV
bananas PROPN
) PUNCT
. PUNCT
  SPACE
Also ADV
I PRON
must AUX
only ADV
> X
> X
have AUX
one NUM
serving VERB
of ADP
something PRON
high ADJ
in ADP
carbohydrates NOUN
a DET
day NOUN
( PUNCT
> X
> X
potatoes PROPN
, PUNCT
pasta NOUN
, PUNCT
rice NOUN
) PUNCT
! PUNCT
  SPACE
She PRON
said VERB
I PRON
ca AUX
n't PART
even ADV
cook VERB
vegetables NOUN
in ADP
> X
> X
a DET
little ADJ
bit NOUN
of ADP
oil NOUN
and CCONJ
that SCONJ
I PRON
should AUX
eat VERB
vegetables NOUN
raw ADJ
or CCONJ
> X
> X
steamed PROPN
. PUNCT
  SPACE
I PRON
'm AUX
concerned ADJ
because SCONJ
I PRON
understand VERB
you PRON
need VERB
to PART
have AUX
> X
> X
some DET
fat NOUN
in ADP
your PRON
diet NOUN
to PART
help VERB
in ADP
the DET
digestive ADJ
process NOUN
. PUNCT
  SPACE
And CCONJ
if SCONJ
> X
> X
G PROPN
> X
For ADP
one NUM
week NOUN
, PUNCT
she PRON
probably ADV
wants VERB
to PART
see VERB
how ADV
you PRON
react VERB
to ADP
the DET
diet NOUN
. PUNCT
If SCONJ
it PRON
> PUNCT
changes VERB
anything PRON
. PUNCT
> X
You PRON
can AUX
live VERB
on ADP
the DET
diet NOUN
but CCONJ
you PRON
need VERB
to PART
up ADP
your PRON
non ADJ
- ADJ
fat ADJ
calories NOUN
. PUNCT
Wherebefore NOUN
you PRON
had AUX
a DET
pat NOUN
of ADP
butter NOUN
, PUNCT
now ADV
you PRON
need VERB
a DET
medium ADJ
apple NOUN
( PUNCT
probably ADV
microwave VERB
> X
cooked VERB
) PUNCT
. PUNCT
  SPACE
Smaller ADJ
meals NOUN
but CCONJ
more ADJ
of ADP
them PRON
. PUNCT
Not PART
terrific ADJ
amounts NOUN
of ADP
meat NOUN
, PUNCT
it's PRON
> X
hard ADV
to PART
digest VERB
anyway ADV
. PUNCT
First ADV
, PUNCT
even ADV
fish NOUN
, PUNCT
fowl NOUN
and CCONJ
breads NOUN
have AUX
fat ADJ
. PUNCT
Second ADV
, PUNCT
the DET
body NOUN
will AUX
make VERB
fat NOUN
out SCONJ
of ADP
carbohydrates NOUN
if SCONJ
it PRON
needs VERB
them PRON
. PUNCT
Third ADV
, PUNCT
yourbody NOUN
, PUNCT
like SCONJ
most ADJ
peoples NOUN
, PUNCT
was AUX
n't PART
bred VERB
to PART
live VERB
on ADP
a DET
high ADJ
fat NOUN
, PUNCT
modern ADJ
diet NOUN
. PUNCT
If SCONJ
you PRON
read VERB
texts NOUN
about ADP
ancient ADJ
and CCONJ
primative ADJ
people NOUN
you PRON
will AUX
read VERB
aboutthe DET
luxury NOUN
of ADP
eating VERB
fat NOUN
, PUNCT
how ADV
people NOUN
enjoyed VERB
it PRON
. PUNCT
This DET
was AUX
because SCONJ
it PRON
was AUX
sorare ADJ
. PUNCT
Even ADV
cows NOUN
did AUX
n't PART
put VERB
out ADP
nearly ADV
the DET
amount NOUN
of ADP
butterfat NOUN
in ADP
milk NOUN
thatthey NOUN
do AUX
now ADV
. PUNCT
  SPACE
> X
For ADP
comfort NOUN
and CCONJ
to PART
make VERB
the DET
carbohydrate NOUN
meal NOUN
" PUNCT
last ADJ
" PUNCT
longer ADJ
eat VERB
pasta NOUN
or CCONJ
> X
rice NOUN
which PRON
give VERB
their PRON
calories NOUN
up ADP
slowly ADV
rather ADV
than SCONJ
bread NOUN
or CCONJ
corn NOUN
. PUNCT
Maybe ADV
> X
smaller ADJ
meals NOUN
as SCONJ
you PRON
may AUX
be AUX
getting VERB
less ADJ
room NOUN
in ADP
the DET
stomach NOUN
area NOUN
. PUNCT
Is AUX
the DET
> X
baby NOUN
still ADV
coming VERB
up ADP
. PUNCT
Is AUX
it PRON
starting VERB
to PART
push VERB
or CCONJ
rub VERB
under ADP
your PRON
ribs NOUN
? PUNCT
How ADV
> X
tight ADV
are AUX
your PRON
clothes NOUN
. PUNCT
You PRON
should AUX
n't PART
be AUX
wearing VERB
any DET
clothing NOUN
that PRON
compresses VERB
> X
your PRON
middle NOUN
. PUNCT
Be AUX
sure ADJ
not PART
to PART
" PUNCT
suck VERB
in ADP
" PUNCT
your PRON
stomach NOUN
when ADV
sitting VERB
, PUNCT
again ADV
it PRON
> X
will AUX
put VERB
pressure NOUN
on ADP
the DET
digestive ADJ
tract NOUN
. PUNCT
> X
Try VERB
laying VERB
on ADP
your PRON
sides NOUN
, PUNCT
back,>and CCONJ
stay VERB
in ADP
reclining VERB
positions NOUN
for ADP
the DET
many ADJ
hours NOUN
you PRON
are AUX
being AUX
inactive.>Easier ADJ
on ADP
your PRON
legs NOUN
( PUNCT
circulation NOUN
) PUNCT
as ADV
well ADV
. PUNCT
You PRON
might AUX
try VERB
letting VERB
the DET
baby>"turn PROPN
" PUNCT
or CCONJ
at ADP
least ADJ
not PART
be AUX
forced VERB
under ADP
the DET
ribs NOUN
during ADP
the DET
last ADJ
months.>When ADP
you PRON
are AUX
shortwaisted VERB
it PRON
's AUX
easy ADJ
for ADP
that DET
baby NOUN
to PART
end VERB
up ADP
right ADV
under ADP
the DET
> X
diaphram NOUN
, PUNCT
especially ADV
if SCONJ
you PRON
have AUX
tight ADJ
abdominal ADJ
muscles NOUN
. PUNCT
If SCONJ
I PRON
had AUX
my PRON
> X
second ADJ
one NOUN
to PART
do AUX
over ADP
again ADV
I PRON
think VERB
I PRON
'd AUX
have AUX
tried VERB
to PART
loosen VERB
up ADP
since SCONJ
he PRON
> X
didn't PROPN
turn VERB
sideways ADV
until ADP
late ADJ
and CCONJ
the DET
relief NOUN
was AUX
enormous.>Maybe PROPN
this DET
doctor NOUN
does AUX
have AUX
a DET
thing NOUN
about ADP
weight NOUN
gain NOUN
in ADP
pregnancy NOUN
or CCONJ
maybe ADV
> X
she PRON
just ADV
nags VERB
all DET
her PRON
patients NOUN
this DET
way NOUN
. PUNCT
Especially ADV
if SCONJ
she PRON
's AUX
young ADJ
. PUNCT
  SPACE
> X
But CCONJ
this DET
gallbladder NOUN
/ PUNCT
whatever PRON
problem NOUN
that PRON
might AUX
be AUX
coming VERB
up ADP
is AUX
something PRON
> X
to PART
be AUX
avoided VERB
if SCONJ
possible ADJ
. PUNCT
You PRON
do AUX
n't PART
want VERB
to PART
become VERB
ill ADJ
with ADP
it PRON
while SCONJ
youare NOUN
pregnant ADJ
. PUNCT
If SCONJ
you PRON
are AUX
lucky ADJ
you PRON
can AUX
work VERB
on ADP
getting VERB
rid VERB
of ADP
it PRON
after ADP
thebaby PROPN
. PUNCT
( PUNCT
It PRON
is AUX
said VERB
that SCONJ
doctors NOUN
have AUX
less ADJ
gallbadder NOUN
surgery NOUN
than SCONJ
the DET
restof NOUN
the DET
population NOUN
, PUNCT
a DET
good ADJ
part NOUN
of ADP
it PRON
is AUX
that SCONJ
they PRON
are AUX
willing ADJ
to PART
do AUX
thedieting NOUN
, PUNCT
etc X
that PRON
helps VERB
them PRON
avoid VERB
surgery NOUN
. PUNCT
Also ADV
, PUNCT
I PRON
do AUX
n't PART
think VERB
the DET
surgerylets NOUN
a DET
person NOUN
go VERB
back ADV
to ADP
eating VERB
a DET
high ADJ
fat ADJ
diet NOUN
. PUNCT
) PUNCT
> X
Nausea PROPN
, PUNCT
etc X
. PUNCT
can AUX
vary VERB
from ADP
person NOUN
to ADP
person NOUN
and CCONJ
with ADP
each DET
pregnancy NOUN
. PUNCT
My PRON
> NOUN
first ADJ
pregnancy NOUN
was AUX
miserable ADJ
. PUNCT
During ADP
the DET
second ADJ
I PRON
had AUX
very ADV
little ADJ
trouble.>Some NOUN
articles NOUN
have AUX
said VERB
that SCONJ
women NOUN
with ADP
nausea NOUN
had AUX
a DET
statistically ADV
better ADJ
> X
chance NOUN
of ADP
carrying VERB
their PRON
baby NOUN
. PUNCT
( PUNCT
grain NOUN
of ADP
salt NOUN
here ADV
) PUNCT
> X
Good ADJ
luck>-Jackie PROPN
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59256From NUM
: PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition?These NOUN
are AUX
MY ADP
last ADJ
words NOUN
on ADP
the DET
subjectFrom PROPN
: PUNCT
lundby@rtsg.mot.com PROPN
( PUNCT
Walter PROPN
F. PROPN
Lundby PROPN
) PUNCT
writes VERB
: PUNCT
> X
As SCONJ
a DET
person NOUN
who PRON
is AUX
very ADV
sensitive ADJ
to ADP
msg NOUN
and CCONJ
whose PRON
wife NOUN
and CCONJ
kids NOUN
are AUX
> X
too ADV
, PUNCT
I PRON
WANT VERB
TO PART
KNOW VERB
WHY ADV
THE DET
FOOD NOUN
INDUSTRY NOUN
WANTS VERB
TO PART
PUT VERB
MSG NOUN
IN ADP
FOOD!!!Some PROPN
people NOUN
think VERB
it PRON
enhances VERB
the DET
flavor NOUN
. PUNCT
  SPACE
I PRON
personally ADV
do AUX
n't PART
think VERB
ithelps ADP
the DET
taste NOUN
, PUNCT
it PRON
makes VERB
me PRON
sick ADJ
, PUNCT
so ADV
I PRON
try VERB
to PART
avoid VERB
it PRON
. PUNCT
> X
From ADP
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
Sez CCONJ
you PRON
. PUNCT
  SPACE
Such DET
an DET
effect NOUN
in ADP
humans NOUN
has AUX
not PART
been AUX
demonstrated VERB
in ADP
any DET
> X
controlled VERB
studies NOUN
. PUNCT
  SPACE
Infant NOUN
mice NOUN
and CCONJ
other ADJ
models NOUN
are AUX
useful ADJ
as ADV
far ADV
> X
as SCONJ
they PRON
go VERB
, PUNCT
but CCONJ
they PRON
're AUX
not PART
relevant ADJ
to ADP
the DET
matter NOUN
at ADP
hand NOUN
. PUNCT
  SPACE
Which PRON
is AUX
> X
not PART
to PART
say VERB
that SCONJ
I PRON
favor VERB
its PRON
use NOUN
in ADP
things NOUN
like SCONJ
baby NOUN
food NOUN
-- PUNCT
a DET
patently ADV
> X
ridiculous ADJ
use NOUN
of ADP
the DET
additive ADJ
. PUNCT
  SPACE
But CCONJ
we PRON
have AUX
no DET
reason NOUN
to PART
believe VERB
> X
that SCONJ
MSG PROPN
in ADP
the DET
diet NOUN
effects NOUN
humans NOUN
adversely ADV
. PUNCT
Well INTJ
, PUNCT
I PRON
know VERB
that SCONJ
MSG NOUN
effects NOUN
ME PROPN
adversely ADV
- PUNCT
maybe ADV
not PART
permanently ADV
butat ADJ
least ADJ
temporarily ADV
enough ADV
that SCONJ
I PRON
like VERB
to PART
try VERB
to PART
avoid VERB
the DET
stuff NOUN
. PUNCT
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
Writes VERB
: PUNCT
> X
If SCONJ
you PRON
do AUX
n't PART
like VERB
additives NOUN
, PUNCT
then ADV
for ADP
godsake NOUN
, PUNCT
> X
get AUX
off ADP
the DET
net NOUN
and CCONJ
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
. PUNCT
  SPACE
Sheesh PROPN
. PUNCT
EXCUSE NOUN
ME!!!!!!!!!!!!Why NOUN
ca AUX
n't PART
people NOUN
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
* PUNCT
ON ADP
* PUNCT
the DET
net NOUN
. PUNCT
  SPACE
I PRON
've AUX
gottenLOTS PUNCT
of ADP
recipes NOUN
off ADP
the DET
net NOUN
that PRON
do AUX
n't PART
use VERB
additives NOUN
. PUNCT
If SCONJ
you PRON
LIKE VERB
additives NOUN
then ADV
get AUX
off ADP
the DET
net NOUN
and CCONJ
go VERB
to ADP
your PRON
localsupermarket NOUN
, PUNCT
buy VERB
lots NOUN
of ADP
packaged VERB
foods NOUN
, PUNCT
and CCONJ
YOU PRON
get VERB
OFF PROPN
THE DET
NET NOUN
! PUNCT
! PUNCT
> X
> X
IS VERB
IT PRON
TO PART
COVER VERB
UP ADP
THE DET
FACT NOUN
THAT PRON
THE DET
RECIPES NOUN
ARE VERB
NOT ADV
VERY ADV
GOOD ADJ
> X
> X
OR CCONJ
THE DET
FOOD NOUN
IS VERB
POOR PROPN
QUALITY VERB
? PUNCT
> X
> X
Yes INTJ
, PUNCT
and CCONJ
YOU PRON
buy VERB
it PRON
. PUNCT
  SPACE
Says VERB
something PRON
about ADP
your PRON
taste NOUN
, PUNCT
eh?I NOUN
do AUX
n't PART
! PUNCT
! PUNCT
> X
> X
And CCONJ
what PRON
happens VERB
when ADV
the DET
companies NOUN
forced VERB
to PART
submit VERB
to ADP
your PRON
silly ADJ
notions NOUN
> X
go VERB
out SCONJ
of ADP
business NOUN
because SCONJ
nobody PRON
wants VERB
to PART
buy VERB
their PRON
overpriced VERB
bad ADJ
food NOUN
? PUNCT
> X
( PUNCT
Removing VERB
preservatives NOUN
directly ADV
raises VERB
food NOUN
costs NOUN
by ADP
reducing VERB
shelf NOUN
life.)HEY PROPN
- PUNCT
I PRON
'll AUX
pay VERB
* PUNCT
MY INTJ
* PUNCT
hard ADV
earned VERB
dollars NOUN
to PART
buy VERB
food NOUN
that PRON
costs VERB
morebut PROPN
does AUX
NOT ADV
have AUX
preservatives NOUN
. PUNCT
  SPACE
I PRON
choose VERB
to PART
speak VERB
with ADP
my PRON
pocketbookin NOUN
many ADJ
ways NOUN
. PUNCT
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
> X
You PRON
have AUX
a DET
good ADJ
point NOUN
. PUNCT
  SPACE
MSG PROPN
is AUX
commonly ADV
used VERB
in ADP
soups NOUN
, PUNCT
in ADP
bottled ADJ
> X
sauces NOUN
, PUNCT
in ADP
seasoning VERB
mixtures NOUN
, PUNCT
and CCONJ
in ADP
the DET
coating NOUN
on ADP
barbecue NOUN
potato NOUN
> X
chips NOUN
. PUNCT
  SPACE
Nacho PROPN
cheese NOUN
Doritos PROPN
, PUNCT
breading VERB
for ADP
MANY ADJ
frozen ADJ
fried VERB
foods NOUN
( PUNCT
like SCONJ
fishand PROPN
chicken NOUN
) PUNCT
, PUNCT
etc X
. PUNCT
ad PROPN
naseum PROPN
. PUNCT
> X
If SCONJ
MSG PROPN
is AUX
really ADV
the DET
problem NOUN
, PUNCT
we PRON
should AUX
call VERB
this DET
" PUNCT
barbecue NOUN
potato NOUN
> X
chip PROPN
syndrome PROPN
" PUNCT
or CCONJ
maybe ADV
" PUNCT
diner NOUN
syndrome NOUN
. PUNCT
" PUNCT
   SPACE
Or CCONJ
the DET
" PUNCT
and CCONJ
other ADJ
natural ADJ
flavorings NOUN
syndrome NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
's AUX
been AUX
a DET
few ADJ
yearssince NOUN
I PRON
've AUX
bought VERB
anything PRON
labelled VERB
with ADP
" PUNCT
and CCONJ
other ADJ
naturalflavorings NOUN
" PUNCT
. PUNCT
  SPACE
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
> X
> X
THE DET
REACTION NOUN
CAME VERB
THE DET
TIME NOUN
THE DET
MSG NOUN
WAS VERB
IN ADP
THE DET
FOOD PROPN
> X
> X
THAT PRON
WAS VERB
THE DET
ONLY ADJ
DIFFERENCE PROPN
> X
> X
SAME PROPN
RESTAURANT PROPN
- PUNCT
SAME PROPN
INGREDIENTS PROPN
! PUNCT
! PUNCT
! PUNCT
> X
> X
How ADV
do AUX
you PRON
know VERB
this DET
? PUNCT
> X
> X
In ADP
order NOUN
to PART
demonstrate VERB
your PRON
claim NOUN
, PUNCT
you PRON
would AUX
have AUX
had VERB
to PART
supervise VERB
the DET
> X
preparation NOUN
on ADP
both DET
occasions NOUN
. PUNCT
  SPACE
Perhaps ADV
they PRON
used VERB
MSG PROPN
both DET
times NOUN
, PUNCT
and CCONJ
lied VERB
> X
about ADP
it PRON
. PUNCT
  SPACE
Perhaps ADV
once SCONJ
they PRON
used VERB
something PRON
that PRON
had AUX
begun VERB
to PART
spoil VERB
, PUNCT
and CCONJ
> PROPN
produced VERB
some DET
bizarre ADJ
toxin NOUN
that PRON
you PRON
're AUX
allergic ADJ
to ADP
. PUNCT
Well INTJ
, PUNCT
I PRON
had AUX
had VERB
similar ADJ
reactions NOUN
many ADJ
times NOUN
. PUNCT
  SPACE
That DET
was AUX
when ADV
I PRON
reallystarted VERB
WATCHING PROPN
CAREFULLY PROPN
- PUNCT
reaction NOUN
to ADP
Doritos PROPN
- PUNCT
hey INTJ
guess VERB
what PRON
's AUX
inthere NOUN
- PUNCT
reaction NOUN
to ADP
Lawry PROPN
's PART
season NOUN
salt NOUN
- PUNCT
guess NOUN
what PRON
's AUX
in ADP
THEREI'll PROPN
give VERB
you PRON
a DET
hint NOUN
- PUNCT
I PRON
've AUX
had VERB
enough ADJ
problems NOUN
with ADP
MANY ADJ
MANY ADJ
MANYdifferent NOUN
products NOUN
with ADP
MSG PROPN
that PRON
I PRON
figured VERB
out ADP
one NUM
thing NOUN
. PUNCT
UNLESS ADP
I PRON
plan VERB
on ADP
getting VERB
sick ADJ
- PUNCT
I PRON
wo AUX
n't PART
eat VERB
the DET
stuff NOUN
without ADP
mySeldane PROPN
. PUNCT
  SPACE
And CCONJ
did AUX
I PRON
ever ADV
learn VERB
to PART
read VERB
labels NOUN
. PUNCT
> X
PLEASE INTJ
note VERB
that SCONJ
I PRON
am AUX
NOT ADV
saying VERB
you PRON
are AUX
making VERB
it PRON
up ADP
, PUNCT
I PRON
am AUX
just ADV
> X
trying VERB
to PART
point VERB
out ADP
that SCONJ
the DET
situation NOUN
is AUX
not PART
always ADV
as ADV
simple ADJ
as SCONJ
it PRON
> X
might AUX
seem VERB
. PUNCT
  SPACE
Which PRON
was AUX
why ADV
I PRON
started VERB
checking VERB
EVERY DET
time NOUN
I PRON
got VERB
sick ADJ
. PUNCT
  SPACE
And CCONJ
EVERYtime NOUN
I PRON
got VERB
sick ADJ
MSG PROPN
was AUX
somehow ADV
involved VERB
in ADP
one NUM
of ADP
the DET
food NOUN
products NOUN
. PUNCT
And CCONJ
consider VERB
there PRON
were AUX
no DET
other ADJ
similar ADJ
ingredients NOUN
( PUNCT
to ADP
my PRON
knowledge)- NOUN
it PRON
might AUX
not PART
please VERB
a DET
medical ADJ
researcher NOUN
- PUNCT
but CCONJ
it PRON
pleased VERB
my PRON
ownpersonal ADJ
physician NOUN
enough ADV
for ADP
him PRON
to PART
give VERB
me PRON
allergy ADJ
medicine NOUN
and CCONJ
MOSTIMPORTANTLY NOUN
it PRON
's AUX
enough ADJ
proof NOUN
for ADP
ME PROPN
to PART
avoid VERB
it PRON
( PUNCT
and CCONJ
enough ADV
proofthat ADP
my PRON
INCREDIBLY ADJ
frugal ADJ
fiance NOUN
did AUX
n't PART
flinch VERB
when ADV
I PRON
literally ADV
threwout VERB
or CCONJ
gave VERB
away ADP
all DET
the DET
food NOUN
products NOUN
in ADP
his PRON
pantry NOUN
that PRON
had AUX
msg NOUN
-and CCONJ
he PRON
always ADV
flinches VERB
when ADV
there PRON
's AUX
waste NOUN
- PUNCT
but CCONJ
it PRON
was AUX
a DET
simpleexplanation NOUN
- PUNCT
I PRON
wo AUX
n't PART
eat VERB
this DET
stuff NOUN
, PUNCT
I PRON
WON'T VERB
cook VERB
with ADP
this DET
stuff NOUN
, PUNCT
soI PROPN
can AUX
either CCONJ
throw VERB
it PRON
out ADP
or CCONJ
give VERB
it PRON
away ADV
. PUNCT
) PUNCT
> X
From ADP
: PUNCT
pattee@ucsu NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Donna PROPN
Pattee PROPN
) PUNCT
> X
My PRON
guess NOUN
was AUX
that SCONJ
the DET
spice NOUN
mix NOUN
on ADP
the DET
fries NOUN
contained VERB
MSG PROPN
, PUNCT
Probably ADV
Lawry PROPN
's PART
seasoning VERB
salt NOUN
. PUNCT
  SPACE
I PRON
LOVE VERB
the DET
way NOUN
that PRON
tastes VERB
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
I PRON
NEVER ADV
consume VERB
ANYTHING NOUN
with ADP
MSG PROPN
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
Ihave PROPN
a DET
certain ADJ
tolerance NOUN
level NOUN
- PUNCT
like SCONJ
a DET
( PUNCT
small ADJ
) PUNCT
bag NOUN
of ADP
bbq PROPN
chips NOUN
oncea PROPN
month NOUN
or CCONJ
so ADV
it PRON
not PART
a DET
problem NOUN
- PUNCT
but CCONJ
that DET
same ADJ
bag NOUN
of ADP
chips NOUN
willbother ADP
me PRON
if SCONJ
I PRON
also ADV
had AUX
chicken NOUN
bouillon NOUN
yesterday NOUN
and CCONJ
lunch NOUN
at ADP
one NUM
ofthe NOUN
Chinese ADJ
restaurants NOUN
the DET
day NOUN
before ADV
. PUNCT
  SPACE
> X
From ADP
: PUNCT
kelley@healthy.uwaterloo.ca X
( PUNCT
Catherine PROPN
L. PROPN
Kelley PROPN
) PUNCT
> X
> X
> X
All DET
that PRON
's AUX
needed VERB
now ADV
is AUX
that DET
final ADJ
step NOUN
, PUNCT
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
done VERB
> X
on ADP
humans NOUN
. PUNCT
  SPACE
There PRON
is AUX
n't PART
even ADV
an DET
ethical ADJ
question NOUN
about ADP
" PUNCT
possible ADJ
> X
harm NOUN
" PUNCT
, PUNCT
as SCONJ
this DET
is AUX
a DET
widely ADV
used VERB
and CCONJ
approved VERB
food NOUN
additive ADJ
. PUNCT
But CCONJ
- PUNCT
some DET
say VERB
that SCONJ
only ADV
2 NUM
% NOUN
of ADP
the DET
population NOUN
has AUX
a DET
problem NOUN
with ADP
MSG PROPN
-some PROPN
say VERB
it PRON
's AUX
more ADJ
like SCONJ
20 NUM
% NOUN
- PUNCT
but CCONJ
let VERB
's PRON
say VERB
that SCONJ
it PRON
's AUX
5 NUM
% NOUN
. PUNCT
  SPACE
How ADV
manypeople NOUN
would AUX
have AUX
to PART
be AUX
tested VERB
that PRON
would AUX
have AUX
a DET
problem NOUN
? PUNCT
  SPACE
Also ADV
- PUNCT
IKNOW PROPN
I PRON
have AUX
a DET
problem NOUN
with ADP
it PRON
, PUNCT
and CCONJ
I PRON
would AUX
n't PART
VOLUNTEER VERB
for ADP
a DET
test NOUN
. PUNCT
Like SCONJ
thanks NOUN
guys NOUN
but CCONJ
I PRON
do AUX
n't PART
WANT VERB
to PART
get AUX
sick ADJ
. PUNCT
  SPACE
Also ADV
- PUNCT
I PRON
'm AUX
sure ADJ
thatmost ADJ
people NOUN
probably ADV
have AUX
varying VERB
degrees NOUN
of ADP
sensitivities NOUN
atdifferent PROPN
times NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
have AUX
a DET
cold ADJ
I PRON
'm AUX
MUCH ADV
more ADV
susceptible ADJ
to ADP
thereaction NOUN
than SCONJ
when ADV
I PRON
'm AUX
healthy ADJ
( PUNCT
as SCONJ
proven VERB
today NOUN
- PUNCT
when ADV
I PRON
'm AUX
stuffy PROPN
butfor PROPN
some DET
silly ADJ
reason NOUN
I PRON
still ADV
gave VERB
in ADP
and CCONJ
decided VERB
to PART
have AUX
the DET
BBQchips PROPN
; PUNCT
} PUNCT
) PUNCT
. PUNCT
> X
From ADP
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle PROPN
) PUNCT
> X
Because SCONJ
too ADV
many ADJ
of ADP
you PRON
( PUNCT
generic ADJ
rhetorical PROPN
' PUNCT
you PRON
, PUNCT
' PUNCT
not PART
' PUNCT
you PRON
Cathy PROPN
' PUNCT
) PUNCT
go VERB
> X
around ADP
calling VERB
this DET
" PUNCT
Chinese ADJ
restaurant NOUN
syndrome NOUN
, PUNCT
" PUNCT
thus ADV
suggesting VERB
to ADP
the DET
> X
people NOUN
you PRON
complain VERB
to ADP
that SCONJ
you PRON
experience VERB
this DET
ONLY ADV
from ADP
Chinese ADJ
food NOUN
. PUNCT
> X
MSG PROPN
is AUX
prevalent ADJ
in ADP
a DET
LOT PROPN
more ADJ
things NOUN
than SCONJ
Chinese ADJ
food NOUN
-- PUNCT
thats NOUN
why ADV
I PRON
> X
suggested VERB
calling VERB
this DET
" PUNCT
Diner PROPN
syndrome NOUN
. PUNCT
" PUNCT
  SPACE
Cathy PROPN
does AUX
n't PART
- PUNCT
I PRON
have AUX
n't PART
saved VERB
all DET
my PRON
postings NOUN
but CCONJ
I PRON
NEVER ADV
called VERB
it"chinese ADJ
restaurant NOUN
syndrome NOUN
" PUNCT
and CCONJ
I PRON
NEVER ADV
stated VERB
I PRON
got VERB
it PRON
only ADV
fromChinese ADJ
food NOUN
. PUNCT
  SPACE
I PRON
just ADV
thought VERB
it PRON
would AUX
be AUX
easiest ADJ
to PART
conduct VERB
mypersonal ADJ
test NOUN
at ADP
a DET
Chinese PROPN
take VERB
out ADP
place NOUN
that PRON
I PRON
knew VERB
would AUX
hold VERB
( PUNCT
ornot NOUN
hold NOUN
) PUNCT
the DET
MSG PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
call VERB
up ADP
whoever PRON
makes VERB
Doritos PROPN
and CCONJ
ask VERB
themto PROPN
make VERB
me PRON
ONE NUM
back ADV
of ADP
chips NOUN
without ADP
MSG PROPN
. PUNCT
> X
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
if SCONJ
one PRON
complains VERB
about ADP
potatoes NOUN
from ADP
a DET
mix NOUN
, PUNCT
or CCONJ
> X
restaurant NOUN
spice NOUN
mixes NOUN
, PUNCT
I PRON
'm AUX
going VERB
to PART
believe VERB
them PRON
, PUNCT
and CCONJ
if SCONJ
anyone PRON
says VERB
they PRON
> X
got VERB
( PUNCT
MSG-)sick PROPN
after ADP
eating VERB
too ADV
many ADJ
barbecue NOUN
potato NOUN
chips NOUN
at ADP
a DET
party NOUN
, PUNCT
I PRON
'm AUX
> X
REALLY PROPN
going VERB
to PART
believe VERB
them PRON
. PUNCT
  SPACE
Well INTJ
, PUNCT
I PRON
believe VERB
I PRON
mentioned VERB
that SCONJ
in ADP
an DET
earlier ADJ
post NOUN
Let VERB
's PRON
see VERB
you PRON
wrote VERB
this DET
message NOUN
atDate NOUN
: PUNCT
20 NUM
Apr PROPN
1993 NUM
00:09:31 NUM
-0500but NOUN
on ADP
Date NOUN
: PUNCT
19 NUM
Apr PROPN
1993 NUM
16:33:18 NUM
GMTI PROPN
wrote VERB
: PUNCT
> X
> X
Has AUX
anyone PRON
had AUX
an DET
MSG PROPN
reaction NOUN
from ADP
something PRON
* PUNCT
other ADJ
than SCONJ
* PUNCT
a DET
> X
> X
Chinese ADJ
restaurant NOUN
? PUNCT
  SPACE
> X
LOTS PROPN
of ADP
times NOUN
- PUNCT
that DET
's AUX
why ADV
it PRON
was AUX
so ADV
hard ADJ
for ADP
me PRON
to PART
pin VERB
down ADP
. PUNCT
  SPACE
I PRON
> X
would AUX
probably ADV
have AUX
been AUX
EASIER ADJ
if SCONJ
I PRON
'd AUX
only ADV
have AUX
the DET
reaction NOUN
in ADP
a DET
> X
certain ADJ
type NOUN
of ADP
restaurant NOUN
but CCONJ
I PRON
've AUX
had VERB
the DET
reaction NOUN
in ADP
Chinese ADJ
> X
restaurants NOUN
and CCONJ
Greek ADJ
restaurants NOUN
and CCONJ
Italian ADJ
restaurants NOUN
and CCONJ
Steak VERB
> X
places NOUN
( PUNCT
I PRON
can AUX
tell VERB
you PRON
when ADV
a DET
steak NOUN
joint NOUN
uses VERB
Accent PROPN
to PART
tenderize VERB
> X
their PRON
meat NOUN
) PUNCT
. PUNCT
   SPACE
OH PROPN
- PUNCT
and CCONJ
just ADV
in ADP
case NOUN
anyone PRON
thinks VERB
I PRON
'm AUX
prejudice NOUN
against ADP
eitherChinese ADJ
food NOUN
or CCONJ
Asian ADJ
people NOUN
- PUNCT
I PRON
'm AUX
not PART
going VERB
home ADV
to PART
cook VERB
some DET
Chinesefood PROPN
for ADP
the DET
guy NOUN
I PRON
'm AUX
marrying VERB
next ADJ
week NOUN
. PUNCT
  SPACE
Incidentally ADV
, PUNCT
his PRON
last ADJ
nameis NOUN
Wu PROPN
. PUNCT
SO ADV
STOP VERB
IT PRON
WITH ADP
THE DET
FLAME PROPN
MAIL PROPN
-- PUNCT
Why ADV
does AUX
a DET
woman NOUN
work VERB
ten NUM
years NOUN
to PART
change VERB
a DET
man NOUN
's PART
habits NOUN
and CCONJ
then ADV
complain VERB
that SCONJ
he PRON
's AUX
not PART
the DET
man NOUN
she PRON
married VERB
? PUNCT
      SPACE
-- PUNCT
Barbra PROPN
Streisand PROPN
    SPACE
Mary PROPN
Allison PROPN
( PUNCT
mary@uicsl.csl.uiuc.edu PROPN
) PUNCT
Urbana PROPN
, PUNCT
IllinoisNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59257From NUM
: PUNCT
jpc@avdms8.msfc.nasa.gov PROPN
( PUNCT
J. PROPN
Porter PROPN
Clark)Subject PROPN
: PUNCT
Annual ADJ
inguinal ADJ
hernia PROPN
repairLast PROPN
year NOUN
, PUNCT
I PRON
was AUX
totally ADV
surprised ADJ
when ADV
my PRON
annual ADJ
physical ADJ
disclosed VERB
aninguinal ADJ
hernia PROPN
. PUNCT
  SPACE
I PRON
could AUX
n't PART
remember VERB
doing VERB
anything PRON
that PRON
would AUX
havecaused VERB
it PRON
. PUNCT
  SPACE
That ADV
is ADV
, PUNCT
I PRON
had AUX
n't PART
been AUX
lifting VERB
more ADJ
than SCONJ
other ADJ
people NOUN
do AUX
, PUNCT
and CCONJ
in ADP
fact NOUN
probably ADV
somewhat ADV
less ADJ
. PUNCT
  SPACE
Eventually ADV
the DET
thing NOUN
became VERB
morepainful ADJ
and CCONJ
I PRON
had AUX
the DET
repair NOUN
operation NOUN
. PUNCT
This DET
year NOUN
I PRON
developed VERB
a DET
pain NOUN
on ADP
the DET
other ADJ
side NOUN
. PUNCT
  SPACE
This DET
turned VERB
out ADP
to ADP
beanother PROPN
inguinal ADJ
hernia PROPN
. PUNCT
  SPACE
So ADV
I PRON
go VERB
back ADV
to ADP
the DET
hospital NOUN
Monday PROPN
foranother ADJ
fun NOUN
8-) NUM
operation NOUN
. PUNCT
I PRON
do AUX
n't PART
know VERB
of ADP
anything PRON
I PRON
'm AUX
doing VERB
to PART
cause VERB
this DET
to PART
happen VERB
. PUNCT
  SPACE
I PRON
'm AUX
38years NOUN
old ADJ
and CCONJ
I PRON
do AUX
n't PART
think VERB
I PRON
'm AUX
old ADJ
enough ADV
for ADP
things NOUN
to PART
start VERB
fallingapart NOUN
like SCONJ
this DET
. PUNCT
  SPACE
The DET
surgeon NOUN
who PRON
is AUX
doing VERB
the DET
operation NOUN
seems VERB
tosuspect VERB
a DET
congenital ADJ
weakness NOUN
, PUNCT
but CCONJ
if SCONJ
so ADV
, PUNCT
why ADV
did AUX
it PRON
suddenly ADV
appearwhen VERB
I PRON
was AUX
37 NUM
and CCONJ
not PART
really ADV
as ADV
active ADJ
as SCONJ
I PRON
was AUX
when ADV
I PRON
was AUX
younger?Does PROPN
anyone PRON
know VERB
how ADV
to PART
prevent VERB
a DET
hernia PROPN
, PUNCT
other ADJ
than SCONJ
not PART
liftinganything VERB
? PUNCT
  SPACE
It PRON
's AUX
rare ADJ
that SCONJ
I PRON
lift VERB
more ADJ
than SCONJ
my PRON
16-month NUM
- PUNCT
old ADJ
or CCONJ
a DET
sackfull NOUN
of ADP
groceries NOUN
, PUNCT
and CCONJ
you PRON
may AUX
have AUX
noticed VERB
that SCONJ
your PRON
typical ADJ
grocerysack NOUN
is AUX
fairly ADV
small ADJ
these DET
days NOUN
. PUNCT
  SPACE
Is AUX
there PRON
some DET
sort NOUN
of ADP
exercise NOUN
thatwill NOUN
reduce VERB
the DET
risk?Of PROPN
course NOUN
, PUNCT
my PRON
wife NOUN
thinks VERB
it PRON
's AUX
from ADP
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
atthe NOUN
computer NOUN
, PUNCT
reading VERB
news NOUN
... PUNCT
-- PUNCT
J. PROPN
Porter PROPN
Clark PROPN
    SPACE
jpc@avdms8.msfc.nasa.gov PROPN
or CCONJ
jpc@gaia.msfc.nasa.govNASA/MSFC PROPN
Flight PROPN
Data PROPN
Systems PROPN
BranchNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59258Subject VERB
: PUNCT
CALCIUM ADJ
deposits NOUN
on ADP
heart NOUN
valveFrom PROPN
: PUNCT
john.greze@execnet.com PROPN
( PUNCT
John PROPN
Greze)A PROPN
friend NOUN
, PUNCT
a DET
62 NUM
year NOUN
old ADJ
man NOUN
, PUNCT
has AUX
calcium NOUN
deposits NOUN
on ADP
one NUM
of ADP
hisheart PROPN
valves NOUN
. PUNCT
   SPACE
What PRON
causes VERB
this DET
to PART
happen VERB
and CCONJ
what PRON
can AUX
be AUX
done VERB
aboutit?John.Greze@execnet.comNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59259From NUM
: PUNCT
vrao@nyx.cs.du.edu PROPN
( PUNCT
Vinay PROPN
Rao)Subject NOUN
: PUNCT
Density NOUN
of ADP
the DET
skull NOUN
boneCould PROPN
someone PRON
tell VERB
me PRON
what PRON
the DET
density NOUN
of ADP
skull NOUN
bone NOUN
is AUX
or CCONJ
direct VERB
me PRON
to ADP
a DET
reference NOUN
that PRON
contains VERB
this DET
info NOUN
? PUNCT
  SPACE
I PRON
would AUX
appreciate VERB
it PRON
very ADV
much ADV
. PUNCT
Thanks NOUN
. PUNCT
Vinay--**********************************************Vinay PROPN
J. PROPN
Rao PROPN
                SPACE
vrao@nyx.cs.du.edu**********************************************Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59260From NUM
: PUNCT
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant VERB
Edwards)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyHOLFELTZ@LSTC2VM.stortek.com PROPN
writes VERB
: PUNCT
: PUNCT
As SCONJ
you PRON
know VERB
all ADV
ready ADJ
, PUNCT
it PRON
is AUX
the DET
pattern NOUN
in ADP
the DET
bioplasmic ADJ
energy NOUN
: PUNCT
field NOUN
that PRON
is AUX
significant ADJ
. PUNCT
No INTJ
, PUNCT
I PRON
did AUX
n't PART
already ADV
know VERB
that DET
. PUNCT
  SPACE
I PRON
've AUX
never ADV
even ADV
heard VERB
of ADP
a"bioplasmic ADJ
energy NOUN
field NOUN
. PUNCT
" PUNCT
  SPACE
Care VERB
to PART
explain VERB
it PRON
? PUNCT
  SPACE
It PRON
's AUX
been AUX
a DET
few ADJ
yearssince NOUN
my PRON
last ADJ
fields NOUN
class NOUN
so ADV
I PRON
may AUX
have AUX
forgotten VERB
( PUNCT
or CCONJ
maybe ADV
I PRON
skippedthat ADV
day NOUN
) PUNCT
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
as SCONJ
Ross PROPN
Perot PROPN
said VERB
, PUNCT
I PRON
'm AUX
all DET
ears NOUN
. PUNCT
  SPACE
Well INTJ
, PUNCT
eyes NOUN
inthis VERB
case.--Grant NOUN
Edwards PROPN
                                 SPACE
|Yow PROPN
! PUNCT
  SPACE
Is AUX
something PRON
VIOLENTRosemount PROPN
Inc. PROPN
                                SPACE
|going PROPN
to PART
happen VERB
to ADP
a DET
GARBAGE NOUN
                                              SPACE
|CAN?grante@aquarius.rosemount.com X
                 SPACE
|Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59261From NUM
: PUNCT
vrao@nyx.cs.du.edu PROPN
( PUNCT
Vinay PROPN
Rao)Subject NOUN
: PUNCT
Perception NOUN
of ADP
doctors NOUN
and CCONJ
health NOUN
careThe PROPN
following VERB
article NOUN
by ADP
columnist NOUN
Mike PROPN
Royko PROPN
is AUX
his PRON
humorous ADJ
commentaryon NOUN
some DET
of ADP
the DET
public NOUN
's PART
perception NOUN
of ADP
doctors NOUN
and CCONJ
their PRON
salaries NOUN
. PUNCT
I PRON
hope VERB
some DET
of ADP
you PRON
will AUX
find VERB
it PRON
as ADV
amusing ADJ
as SCONJ
I PRON
did.____________________________________________________________________________[Reprinted VERB
w/o ADP
permission]"There PROPN
's PART
no DET
cure NOUN
for ADP
stupidity NOUN
of ADP
poll NOUN
on ADP
doctors NOUN
' PART
salaries"By ADJ
Mike PROPN
RoykoTribune PROPN
Media PROPN
Services PROPN
     SPACE
On ADP
a DET
stupidity NOUN
scale NOUN
, PUNCT
a DET
recent ADJ
poll NOUN
about ADP
doctors NOUN
' PART
earnings NOUN
is AUX
right ADV
up ADV
there ADV
. PUNCT
  SPACE
It PRON
almost ADV
scored VERB
a DET
perfect ADJ
brain NOUN
- PUNCT
dead ADJ
10 NUM
. PUNCT
     SPACE
It PRON
  SPACE
was AUX
  SPACE
commissioned VERB
by ADP
some DET
whiny ADJ
consumers NOUN
  SPACE
group NOUN
  SPACE
called VERB
Families PROPN
USA PROPN
. PUNCT
      SPACE
The DET
  SPACE
poll NOUN
tells VERB
us PRON
that SCONJ
the DET
majority NOUN
of ADP
  SPACE
Americans PROPN
  SPACE
believe VERB
that SCONJ
doctors NOUN
make VERB
too ADV
much ADJ
money NOUN
. PUNCT
     SPACE
The DET
  SPACE
pollsters NOUN
  SPACE
also ADV
asked VERB
what PRON
a DET
fair ADJ
income NOUN
would AUX
  SPACE
be AUX
  SPACE
for ADP
physicians NOUN
. PUNCT
  SPACE
Those DET
polled VERB
said VERB
, PUNCT
oh INTJ
, PUNCT
about ADV
$ SYM
80,000 NUM
a DET
year NOUN
would AUX
be AUX
OK ADJ
. PUNCT
     SPACE
How ADV
generous ADJ
. PUNCT
  SPACE
How ADV
sporting VERB
. PUNCT
  SPACE
How ADV
stupid ADJ
. PUNCT
     SPACE
Why ADV
is AUX
this DET
poll NOUN
stupid ADJ
? PUNCT
   SPACE
Because SCONJ
it PRON
is AUX
based VERB
on ADP
resentment NOUN
and CCONJ
envy NOUN
, PUNCT
two NUM
emotions NOUN
that PRON
ran VERB
hot ADJ
during ADP
the DET
political ADJ
campaign NOUN
and CCONJ
are AUX
still ADV
simmering VERB
. PUNCT
     SPACE
You PRON
could AUX
conduct VERB
the DET
same ADJ
kind NOUN
of ADP
poll NOUN
about ADP
any DET
group NOUN
that PRON
earns VERB
$ SYM
100,000-plus NUM
and CCONJ
get AUX
the DET
same ADJ
results NOUN
. PUNCT
  SPACE
Since SCONJ
the DET
majority NOUN
of ADP
Americans PROPN
do AUX
n't PART
make VERB
those DET
bucks NOUN
, PUNCT
  SPACE
they PRON
assume VERB
that SCONJ
those DET
  SPACE
who PRON
do AUX
are AUX
stealing VERB
it PRON
from ADP
them PRON
. PUNCT
     SPACE
Maybe ADV
  SPACE
the DET
Berlin PROPN
Wall PROPN
came VERB
down ADP
, PUNCT
  SPACE
but CCONJ
do AUX
n't PART
  SPACE
kid NOUN
  SPACE
yourself PRON
. PUNCT
  SPACE
Karl PROPN
Marx PROPN
lives VERB
. PUNCT
     SPACE
It PRON
's AUX
also ADV
stupid ADJ
because SCONJ
it PRON
did AUX
n't PART
ask VERB
key ADJ
  SPACE
questions NOUN
, PUNCT
  SPACE
such ADJ
as SCONJ
: PUNCT
  SPACE
Do AUX
  SPACE
you PRON
  SPACE
know VERB
how ADV
much ADJ
education NOUN
and CCONJ
training NOUN
  SPACE
it PRON
  SPACE
takes VERB
  SPACE
to PART
become VERB
a DET
physician NOUN
? PUNCT
     SPACE
If SCONJ
those DET
polled VERB
said VERB
no INTJ
, PUNCT
  SPACE
they PRON
did AUX
n't PART
know VERB
, PUNCT
then ADV
they PRON
should AUX
have AUX
  SPACE
been AUX
disqualified VERB
. PUNCT
   SPACE
If SCONJ
they PRON
gave VERB
the DET
wrong ADJ
  SPACE
answers NOUN
, PUNCT
  SPACE
they PRON
should AUX
have AUX
been AUX
dropped VERB
. PUNCT
   SPACE
What PRON
good NOUN
are AUX
their PRON
views NOUN
on ADP
how ADV
much ADJ
a DET
doctor NOUN
should AUX
earn VERB
if SCONJ
they PRON
do AUX
n't PART
know VERB
what PRON
it PRON
takes VERB
to PART
become VERB
a DET
doctor NOUN
? PUNCT
     SPACE
Or CCONJ
maybe ADV
a DET
question NOUN
should AUX
have AUX
been AUX
phrased VERB
this DET
way NOUN
: PUNCT
  SPACE
" PUNCT
How ADV
much ADJ
  SPACE
should AUX
  SPACE
a DET
person NOUN
earn VERB
if SCONJ
he PRON
or CCONJ
she PRON
must AUX
( PUNCT
a DET
) PUNCT
  SPACE
get AUX
  SPACE
excellent ADJ
grades NOUN
and CCONJ
a DET
fine ADJ
educational ADJ
foundation NOUN
in ADP
high ADJ
school NOUN
in ADP
  SPACE
order NOUN
to ADP
( PUNCT
b X
) PUNCT
be AUX
accepted VERB
by ADP
a DET
good ADJ
college NOUN
and CCONJ
spend VERB
four NUM
years NOUN
  SPACE
taking VERB
courses NOUN
heavy ADJ
in ADP
math NOUN
, PUNCT
physics NOUN
, PUNCT
chemistry NOUN
, PUNCT
and CCONJ
other ADJ
lab NOUN
work NOUN
and CCONJ
maintain VERB
a DET
3.5 NUM
average ADJ
or CCONJ
better ADJ
, PUNCT
  SPACE
and CCONJ
( PUNCT
c NOUN
) PUNCT
spend VERB
four NUM
more ADJ
  SPACE
years NOUN
of ADP
  SPACE
grinding VERB
study NOUN
in ADP
medical ADJ
school NOUN
, PUNCT
  SPACE
with ADP
the DET
third ADJ
and CCONJ
  SPACE
fourth ADJ
years NOUN
in ADP
clinical ADJ
training NOUN
, PUNCT
  SPACE
working VERB
80 NUM
to PART
100 NUM
hours NOUN
a DET
week NOUN
, PUNCT
  SPACE
and CCONJ
( PUNCT
d PROPN
) PUNCT
spend VERB
another DET
year NOUN
as SCONJ
a DET
low ADJ
- PUNCT
pay NOUN
, PUNCT
  SPACE
hard ADJ
- PUNCT
work NOUN
intern NOUN
, PUNCT
  SPACE
and CCONJ
  SPACE
( PUNCT
e X
) PUNCT
put VERB
  SPACE
in ADP
  SPACE
another DET
  SPACE
three NUM
to PART
10 NUM
years NOUN
  SPACE
of ADP
  SPACE
post ADJ
- ADJ
graduate ADJ
  SPACE
training NOUN
, PUNCT
depending VERB
  SPACE
on ADP
  SPACE
your PRON
specialty NOUN
and CCONJ
( PUNCT
f X
) PUNCT
maybe ADV
wind VERB
up ADV
  SPACE
$ SYM
100,000 NUM
  SPACE
in ADP
debt NOUN
  SPACE
after ADP
  SPACE
medical PROPN
school PROPN
and CCONJ
( PUNCT
g NOUN
) PUNCT
then ADV
work VERB
an DET
  SPACE
average NOUN
  SPACE
of ADP
  SPACE
60 NUM
hours NOUN
  SPACE
a DET
week NOUN
, PUNCT
  SPACE
with ADP
many ADJ
family NOUN
doctors NOUN
putting VERB
in ADP
70 NUM
  SPACE
hours NOUN
  SPACE
or CCONJ
more ADJ
until ADP
they PRON
retire VERB
or CCONJ
fall VERB
over ADP
? PUNCT
" PUNCT
     SPACE
As SCONJ
  SPACE
you PRON
have AUX
probably ADV
guessed VERB
by ADP
now ADV
, PUNCT
  SPACE
I PRON
  SPACE
have AUX
  SPACE
considerably ADV
more ADJ
  SPACE
respect NOUN
for ADP
doctors NOUN
than SCONJ
does AUX
the DET
law NOUN
firm NOUN
of ADP
  SPACE
Clinton PROPN
  SPACE
and CCONJ
Clinton PROPN
, PUNCT
  SPACE
and CCONJ
all DET
the DET
lawyers NOUN
and CCONJ
insurance NOUN
executives NOUN
they PRON
  SPACE
have AUX
called VERB
together ADV
to PART
remake VERB
America PROPN
's PART
health NOUN
care NOUN
. PUNCT
     SPACE
Based VERB
  SPACE
on ADP
what PRON
doctors NOUN
contribute VERB
to ADP
society NOUN
, PUNCT
  SPACE
they PRON
are AUX
  SPACE
far ADV
more ADV
useful ADJ
than SCONJ
the DET
power NOUN
- PUNCT
happy ADJ
, PUNCT
  SPACE
ego ADV
- PUNCT
tripping VERB
, PUNCT
program NOUN
- PUNCT
spewing VERB
, PUNCT
social ADJ
tinkerers NOUN
who PRON
will AUX
probably ADV
give VERB
us PRON
a DET
medical ADJ
plan NOUN
that PRON
is AUX
to PART
health VERB
what PRON
Clinton PROPN
's PART
first ADJ
budget NOUN
is AUX
to ADP
frugality NOUN
. PUNCT
     SPACE
But CCONJ
propaganda NOUN
works VERB
. PUNCT
   SPACE
And CCONJ
, PUNCT
  SPACE
as SCONJ
the DET
stupid ADJ
poll NOUN
  SPACE
indicates VERB
, PUNCT
many ADJ
Americans PROPN
wrongly ADV
believe VERB
that SCONJ
profiteering NOUN
doctors NOUN
are AUX
  SPACE
the DET
major ADJ
cause NOUN
of ADP
high ADJ
medical ADJ
costs NOUN
. PUNCT
     SPACE
Of ADP
  SPACE
course NOUN
doctors NOUN
are AUX
well ADV
- PUNCT
compensated VERB
. PUNCT
   SPACE
They PRON
  SPACE
should AUX
  SPACE
be AUX
. PUNCT
  SPACE
Americans PROPN
now ADV
live VERB
longer ADV
than SCONJ
ever ADV
. PUNCT
   SPACE
But CCONJ
who PRON
is AUX
responsible ADJ
for ADP
our PRON
longevity NOUN
-- PUNCT
lawyers NOUN
, PUNCT
  SPACE
Congress PROPN
, PUNCT
or CCONJ
the DET
guy NOUN
flipping VERB
burgers NOUN
in ADP
a DET
McDonald PROPN
's PART
? PUNCT
     SPACE
And CCONJ
the DET
doctors NOUN
prolong VERB
our PRON
lives NOUN
despite SCONJ
our PRON
having VERB
  SPACE
become VERB
a DET
  SPACE
nation NOUN
  SPACE
of ADP
  SPACE
self NOUN
- PUNCT
indulgent ADJ
, PUNCT
   SPACE
lard NOUN
- PUNCT
butted VERB
, PUNCT
   SPACE
TV NOUN
- PUNCT
gaping VERB
   SPACE
couch NOUN
cabbages NOUN
. PUNCT
     SPACE
Ah INTJ
, PUNCT
  SPACE
that SCONJ
  SPACE
is AUX
not PART
something PRON
you PRON
heard VERB
President PROPN
  SPACE
Clinton PROPN
  SPACE
or CCONJ
Super PROPN
  SPACE
Spouse NOUN
  SPACE
talk NOUN
  SPACE
about ADP
during ADP
the DET
  SPACE
campaign NOUN
  SPACE
or CCONJ
  SPACE
since ADV
. PUNCT
   SPACE
But CCONJ
instead ADV
of ADP
trying VERB
to PART
turn VERB
the DET
medical ADJ
profession NOUN
into ADP
a DET
  SPACE
villain NOUN
, PUNCT
they PRON
might AUX
have AUX
been AUX
more ADV
honest ADJ
if SCONJ
they PRON
had AUX
said VERB
: PUNCT
     SPACE
" PUNCT
Let VERB
  SPACE
us PRON
  SPACE
talk NOUN
  SPACE
about ADP
medical ADJ
care NOUN
and CCONJ
one NUM
  SPACE
of ADP
  SPACE
the DET
  SPACE
biggest ADJ
problems NOUN
we PRON
have AUX
. PUNCT
   SPACE
That DET
problem NOUN
is AUX
you PRON
, PUNCT
my PRON
fellow ADJ
American PROPN
. PUNCT
Yes INTJ
, PUNCT
you PRON
, PUNCT
  SPACE
eating VERB
  SPACE
too ADV
much ADJ
and CCONJ
eating VERB
the DET
wrong ADJ
foods NOUN
; PUNCT
  SPACE
many ADJ
  SPACE
of ADP
  SPACE
you PRON
guzzling VERB
  SPACE
too ADV
  SPACE
much ADJ
hooch PROPN
; PUNCT
  SPACE
still ADV
puffing VERB
away ADV
at ADP
$ SYM
2.50 NUM
  SPACE
a DET
  SPACE
pack NOUN
; PUNCT
getting VERB
  SPACE
your PRON
daily ADJ
exercise NOUN
by ADP
lumbering VERB
from ADP
the DET
fridge NOUN
to ADP
  SPACE
the DET
microwave NOUN
to ADP
the DET
couch NOUN
; PUNCT
doing VERB
dope NOUN
and CCONJ
bringing VERB
crack NOUN
babies NOUN
into ADP
the DET
  SPACE
world NOUN
; PUNCT
  SPACE
filling VERB
  SPACE
the DET
big ADJ
city NOUN
emergency NOUN
rooms NOUN
  SPACE
with ADP
  SPACE
gunshot NOUN
victims NOUN
; PUNCT
  SPACE
engaging VERB
  SPACE
in ADP
unsafe ADJ
sex NOUN
and CCONJ
catching VERB
a DET
  SPACE
deadly ADJ
  SPACE
disease NOUN
while SCONJ
blaming VERB
the DET
world NOUN
for ADP
not PART
finding VERB
an DET
instant ADJ
cure NOUN
. PUNCT
     SPACE
" PUNCT
You PRON
  SPACE
and CCONJ
  SPACE
your PRON
habits NOUN
, PUNCT
  SPACE
not PART
the DET
  SPACE
doctors NOUN
, PUNCT
  SPACE
are AUX
  SPACE
the DET
  SPACE
single ADV
biggest ADJ
  SPACE
health NOUN
  SPACE
problem NOUN
in ADP
this DET
country NOUN
. PUNCT
   SPACE
If SCONJ
  SPACE
anything PRON
, PUNCT
  SPACE
it PRON
  SPACE
is AUX
amazing ADJ
that SCONJ
the DET
docs NOUN
keep VERB
you PRON
alive ADJ
as ADV
long ADV
as SCONJ
they PRON
do AUX
. PUNCT
     SPACE
" PUNCT
In ADP
fact NOUN
, PUNCT
  SPACE
I PRON
do AUX
n't PART
understand VERB
how ADV
they PRON
can AUX
stand VERB
looking VERB
  SPACE
at ADP
your PRON
blubbery NOUN
bods NOUN
all DET
day NOUN
. PUNCT
     SPACE
" PUNCT
So ADV
as SCONJ
your PRON
president NOUN
, PUNCT
  SPACE
I PRON
call VERB
upon SCONJ
you PRON
to PART
stop VERB
whining VERB
  SPACE
and CCONJ
start VERB
living VERB
cleanly ADV
. PUNCT
   SPACE
Now ADV
I PRON
must AUX
go VERB
get AUX
myself PRON
a DET
triple ADJ
cheesy NOUN
- PUNCT
greasy NOUN
with ADP
double ADJ
fries NOUN
. PUNCT
  SPACE
Do AUX
as SCONJ
I PRON
say VERB
, PUNCT
not PART
as SCONJ
I PRON
do AUX
. PUNCT
" PUNCT
     SPACE
But CCONJ
  SPACE
for ADP
those DET
who PRON
truly ADV
believe VERB
that SCONJ
doctors NOUN
are AUX
  SPACE
overpaid VERB
, PUNCT
there PRON
is AUX
another DET
solution NOUN
: PUNCT
Do AUX
n't PART
use VERB
them PRON
. PUNCT
     SPACE
That DET
's AUX
right ADJ
. PUNCT
   SPACE
You PRON
do AUX
n't PART
feel VERB
well ADJ
? PUNCT
   SPACE
Then ADV
try VERB
one NUM
of ADP
those DET
spine NOUN
poppers NOUN
, PUNCT
  SPACE
needle NOUN
twirlers NOUN
, PUNCT
or CCONJ
have AUX
Rev. PROPN
Bubba PROPN
lay VERB
his PRON
hands NOUN
upon SCONJ
your PRON
head NOUN
and CCONJ
declare VERB
you PRON
fit ADJ
. PUNCT
     SPACE
Or CCONJ
  SPACE
there PRON
is AUX
the DET
do AUX
- PUNCT
it PRON
- PUNCT
yourself PRON
approach NOUN
. PUNCT
   SPACE
You PRON
  SPACE
have AUX
  SPACE
chest NOUN
pains NOUN
? PUNCT
   SPACE
Then ADV
sit VERB
in ADP
front NOUN
of ADP
a DET
mirror NOUN
, PUNCT
  SPACE
make VERB
a DET
slit NOUN
here ADV
, PUNCT
a DET
slit NOUN
there ADV
, PUNCT
and CCONJ
pop VERB
in ADP
a DET
couple NOUN
of ADP
valves NOUN
. PUNCT
     SPACE
You PRON
're AUX
  SPACE
going VERB
to PART
have AUX
a DET
kid NOUN
? PUNCT
   SPACE
Why ADV
throw VERB
your PRON
money NOUN
at ADP
  SPACE
that PRON
overpaid VERB
  SPACE
sawbones NOUN
so SCONJ
he PRON
can AUX
buy VERB
a DET
better ADJ
car NOUN
and CCONJ
a DET
bigger ADJ
  SPACE
house NOUN
than SCONJ
  SPACE
you PRON
  SPACE
will AUX
  SPACE
ever ADV
  SPACE
have AUX
  SPACE
( PUNCT
while SCONJ
  SPACE
paying VERB
  SPACE
more ADJ
  SPACE
in ADP
  SPACE
taxes NOUN
  SPACE
and CCONJ
malpractice NOUN
insurance NOUN
than SCONJ
you PRON
will AUX
ever ADV
earn VERB
) PUNCT
? PUNCT
     SPACE
Just ADV
have AUX
the DET
kid NOUN
the DET
old ADJ
- PUNCT
fashioned ADJ
way NOUN
. PUNCT
   SPACE
Squat PROPN
and CCONJ
do AUX
  SPACE
it PRON
. PUNCT
  SPACE
And CCONJ
if SCONJ
it PRON
survives VERB
, PUNCT
  SPACE
you PRON
can AUX
go VERB
to ADP
the DET
library NOUN
and CCONJ
find VERB
a DET
book NOUN
on ADP
how ADV
to PART
give VERB
it PRON
its PRON
shots NOUN
. PUNCT
     SPACE
By ADP
  SPACE
the DET
  SPACE
way NOUN
, PUNCT
  SPACE
has AUX
  SPACE
anyone PRON
  SPACE
ever ADV
done VERB
a DET
  SPACE
poll NOUN
  SPACE
on ADP
  SPACE
how ADV
  SPACE
much ADJ
pollsters NOUN
should AUX
earn?Royko VERB
  SPACE
is AUX
  SPACE
a DET
Pulitzer PROPN
Prize PROPN
- PUNCT
winning VERB
columnist NOUN
for ADP
  SPACE
Tribune PROPN
  SPACE
Media PROPN
Services.____________________________________________________________________________--**********************************************Vinay PROPN
J. PROPN
Rao PROPN
                SPACE
vrao@nyx.cs.du.edu**********************************************Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59262From NUM
: PUNCT
oldman@coos.dartmouth.edu PROPN
( PUNCT
Prakash PROPN
Das)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr20.173019.11903@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>As NOUN
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
like VERB
> X
the DET
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
use VERB
> X
it PRON
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighbor NOUN
> X
has AUX
an DET
ulcer NOUN
. PUNCT
Julie PROPN
, PUNCT
it PRON
does AUX
n't PART
necessarily ADV
follow VERB
that SCONJ
you PRON
should AUX
use VERB
it PRON
( PUNCT
MSG NOUN
orsomething VERB
else ADV
for ADP
that DET
matter NOUN
) PUNCT
simply ADV
because SCONJ
you PRON
are AUX
not PART
allergicto VERB
it PRON
. PUNCT
For ADP
example NOUN
you PRON
might AUX
not PART
be AUX
allergic ADJ
to ADP
( PUNCT
animal NOUN
) PUNCT
fats NOUN
, PUNCT
andlike ADP
their PRON
taste NOUN
, PUNCT
yet CCONJ
it PRON
does AUX
n't PART
follow VERB
that SCONJ
you PRON
should AUX
be AUX
using VERB
them(regularly PROPN
) PUNCT
. PUNCT
MSG PROPN
might AUX
have AUX
other ADJ
bad ADJ
( PUNCT
or CCONJ
good ADJ
, PUNCT
I PRON
am AUX
not PART
up ADV
on ADP
knowledge NOUN
of ADP
MSG NOUN
) PUNCT
effects NOUN
on ADP
your PRON
body NOUN
in ADP
the DET
long ADJ
run NOUN
, PUNCT
maybe ADV
that'sreason ADV
enough ADV
not PART
to PART
use VERB
it PRON
. PUNCT
Altho ADV
' PUNCT
your PRON
example NOUN
of ADP
the DET
ulcer NOUN
is AUX
funny ADJ
, PUNCT
it PRON
is AUX
n't PART
anappropriate ADJ
comparison NOUN
at ADP
all.-Prakash ADJ
DasNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59263From NUM
: PUNCT
ttrusk@its.mcw.edu NOUN
( PUNCT
Thomas PROPN
Trusk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
20APR199315574161@vxcrna.cern.ch NUM
> X
filipe@vxcrna.cern.ch PROPN
( PUNCT
VINCI PROPN
) PUNCT
writes VERB
: PUNCT
> X
How ADV
about ADP
Kirlian ADJ
imaging NOUN
? PUNCT
I PRON
believe VERB
the DET
FAQ PROPN
for ADP
sci.skeptics PROPN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
> X
has AUX
a DET
nice ADJ
write NOUN
- PUNCT
up NOUN
on ADP
this DET
. PUNCT
They PRON
would AUX
certainly ADV
be AUX
most ADV
supportive ADJ
> X
on ADP
helping VERB
you PRON
to PART
build VERB
such DET
a DET
device NOUN
and CCONJ
connect NOUN
to ADP
a DET
120Kvolt NUM
> X
supply NOUN
so SCONJ
that SCONJ
you PRON
can AUX
take VERB
a DET
serious ADJ
look NOUN
at ADP
your PRON
" PUNCT
aura PROPN
" PUNCT
... PUNCT
: PUNCT
- PUNCT
) PUNCT
> X
> X
Filipe PROPN
Santos PROPN
> X
CERN PROPN
- PUNCT
European PROPN
Laboratory PROPN
for ADP
Particle PROPN
Physics PROPN
> X
SwitzerlandPlease PROPN
sign VERB
the DET
relevant ADJ
documents NOUN
and CCONJ
forward ADV
the DET
remaining VERB
partsto NOUN
our PRON
study NOUN
' PUNCT
Effect NOUN
of ADP
120 NUM
Kv PROPN
on ADP
Human PROPN
Tissue PROPN
wrapped VERB
in ADP
Film' PROPN
. PUNCT
Thanks NOUN
for ADP
your PRON
support NOUN
... PUNCT
*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*==*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*Dr PUNCT
. PUNCT
Thomas PROPN
Trusk PROPN
                    SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Dept PROPN
. NOUN
of ADP
Cellular PROPN
Biology PROPN
& CCONJ
Anatomy PROPN
* PUNCT
Email NOUN
to PART
ttrusk@its.mcw.edu VERB
  SPACE
* PUNCT
* PUNCT
Medical PROPN
College PROPN
of ADP
Wisconsin PROPN
        SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Milwaukee PROPN
, PUNCT
WI PROPN
  SPACE
53226 NUM
              SPACE
DISCLAIMER PROPN
( PUNCT
ala PROPN
Foghorn PROPN
Leghorn):**(414 PROPN
) PUNCT
257 NUM
- SYM
8504 NUM
                     SPACE
It PRON
's AUX
a DET
joke NOUN
, PUNCT
son NOUN
. PUNCT
A DET
joke NOUN
I PRON
say VERB
! PUNCT
* PUNCT
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59264From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
net ADJ
address NOUN
for ADP
WHOIn PROPN
article NOUN
< X
1993Apr24.162351.4408@mintaka.lcs.mit.edu NUM
> X
, PUNCT
elg@silver.lcs.mit.edu PROPN
( PUNCT
Elizabeth PROPN
Glaser PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
am AUX
looking VERB
for ADP
the DET
email NOUN
address NOUN
of ADP
the DET
World PROPN
Health PROPN
Organization PROPN
, PUNCT
> X
in ADP
particular ADJ
the DET
address NOUN
for ADP
the DET
Department PROPN
of ADP
Nursing PROPN
or CCONJ
the DET
Chief ADJ
> X
Scientist NOUN
for ADP
Nursing NOUN
: PUNCT
Dr. PROPN
Miriam PROPN
Hirschfeld PROPN
. PUNCT
The DET
snail ADJ
- PUNCT
mail NOUN
address NOUN
I PRON
> X
have AUX
is AUX
the DET
following VERB
: PUNCT
> X
> X
     SPACE
World PROPN
Health PROPN
Organization PROPN
> X
     SPACE
20 NUM
Avenue PROPN
Appia PROPN
> X
     SPACE
1211 NUM
Geneva PROPN
27 NUM
> X
     SPACE
SwitzerlandThe PROPN
domain NOUN
address NOUN
of ADP
the DET
WHO PROPN
is AUX
: PUNCT
  SPACE
who.arcom.chSo PROPN
try VERB
sending VERB
email NOUN
to ADP
  SPACE
postmaster@who.arcom.chJoshbackon@VMS.HUJI.AC.IL PROPN
> X
> X
Please INTJ
respond VERB
directly ADV
to ADP
me PRON
. PUNCT
Thank VERB
you PRON
for ADP
your PRON
assistance NOUN
. PUNCT
> X
> X
> X
> X
    SPACE
--- PUNCT
   SPACE
elg PROPN
   SPACE
--- PUNCT
> X
> X
Elizabeth PROPN
Glaser PROPN
, PUNCT
RN PROPN
> X
elg@silver.lcs.mit.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59265From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition NOUN
? PUNCT
To PART
: PUNCT
milsh@nmr-z.mgh.harvard.edu PUNCT
( PUNCT
Alex PROPN
Milshteyn PROPN
) PUNCT
AM VERB
> X
Having VERB
said VERB
that DET
, PUNCT
i PRON
might AUX
add VERB
, PUNCT
that SCONJ
in ADP
MHO PROPN
, PUNCT
MSG PROPN
does AUX
not PART
enhance VERB
AM PROPN
> X
flavor NOUN
enoughf VERB
for ADP
me PRON
to PART
miss VERB
it PRON
. PUNCT
  SPACE
When ADV
I PRON
go VERB
to ADP
chinese ADJ
places NOUN
, PUNCT
AM PROPN
> X
I PRON
order VERB
food NOUN
without ADP
MSG PROPN
. PUNCT
  SPACE
To ADP
me PRON
, PUNCT
MSG PROPN
tastes VERB
just ADV
like SCONJ
a DET
mixture NOUN
of ADP
salt NOUN
and CCONJ
sugar NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
that DET
is AUX
the DET
case NOUN
with ADP
most ADJ
people NOUN
. PUNCT
  SPACE
What PRON
does AUX
it PRON
taste VERB
like SCONJ
to ADP
you PRON
? PUNCT
... PUNCT
If SCONJ
wishes NOUN
were AUX
horses NOUN
, PUNCT
we PRON
'd AUX
all DET
have AUX
to PART
wear VERB
hip NOUN
boots NOUN
! PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59266From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections NOUN
? PUNCT
To PART
: PUNCT
smithmc@mentor.cc.purdue.edu NUM
( PUNCT
Lost VERB
Boy PROPN
) PUNCT
LB PROPN
> X
I PRON
know VERB
from ADP
personal ADJ
experience NOUN
that PRON
men NOUN
CAN AUX
get AUX
yeast NOUN
infections NOUN
. PUNCT
I PRON
  SPACE
LB PROPN
> X
get AUX
rather ADV
nasty ADJ
ones NOUN
from ADP
time NOUN
to ADP
time NOUN
, PUNCT
mostly ADV
in ADP
the DET
area NOUN
of ADP
the DET
LB PROPN
> X
scrotum NOUN
and CCONJ
the DET
base NOUN
of ADP
the DET
penis PROPN
. PUNCT
I PRON
used VERB
to PART
have AUX
problems NOUN
with ADP
recurrent NOUN
athlete NOUN
's PART
foot NOUN
until ADP
I PRON
started VERB
drying VERB
between ADP
my PRON
toes NOUN
with ADP
my PRON
blow NOUN
drier NOUN
after ADP
each DET
time NOUN
I PRON
bathe VERB
. PUNCT
  SPACE
I PRON
also ADV
dry VERB
my PRON
pubic ADJ
area NOUN
while SCONJ
I PRON
am AUX
at ADP
it PRON
to PART
prevent VERB
problems NOUN
. PUNCT
  SPACE
You PRON
might AUX
want VERB
to PART
try VERB
it PRON
.... PUNCT
My PRON
cat NOUN
types NOUN
with ADP
his PRON
tail NOUN
. PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59267From NUM
: PUNCT
westes@netcom.com X
( PUNCT
Will AUX
Estes)Subject VERB
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyDoes PROPN
anyone PRON
know VERB
of ADP
research NOUN
done VERB
on ADP
the DET
use NOUN
of ADP
haldol NOUN
in ADP
the DET
elderly ADJ
? PUNCT
  SPACE
Does AUX
short ADJ
- PUNCT
term NOUN
use NOUN
of ADP
the DET
drug NOUN
ever ADV
produce VERB
long ADJ
- PUNCT
term NOUN
side NOUN
- PUNCT
effects NOUN
afterthe DET
use NOUN
of ADP
the DET
drug NOUN
? PUNCT
  SPACE
My PRON
grandmother NOUN
recently ADV
had AUX
to PART
be AUX
hospitalizedand ADJ
was AUX
given VERB
large ADJ
doses NOUN
of ADP
haldol NOUN
for ADP
several ADJ
weeks NOUN
. PUNCT
  SPACE
Although SCONJ
thedrug PROPN
has AUX
been AUX
terminated VERB
, PUNCT
she PRON
has AUX
changed VERB
from ADP
a DET
perky ADJ
, PUNCT
slightlysenile ADJ
woman NOUN
into ADP
a DET
virtual ADJ
vegetable NOUN
who PRON
does AUX
not PART
talk VERB
to ADP
anyoneand PROPN
who PRON
can AUX
not PART
even ADV
eat VERB
or CCONJ
brush VERB
her PRON
teeth NOUN
without ADP
assistance NOUN
. PUNCT
  SPACE
Itseems NOUN
incredible ADJ
to ADP
me PRON
that SCONJ
such ADJ
changes NOUN
could AUX
take VERB
place NOUN
in ADP
thecourse NOUN
of ADP
just ADV
one NUM
and CCONJ
one NUM
- PUNCT
half NOUN
months NOUN
. PUNCT
  SPACE
I PRON
have AUX
to PART
believe VERB
that SCONJ
thecombination NOUN
of ADP
the DET
hospital NOUN
stay NOUN
and CCONJ
some DET
drug(s PROPN
) PUNCT
are AUX
in ADP
partcatalysts NOUN
for ADP
this DET
. PUNCT
  SPACE
Any DET
comments?-- PROPN
Will AUX
Estes VERB
		 SPACE
Internet NOUN
: PUNCT
westes@netcom.comNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59268Subject NUM
: PUNCT
hypodermic PROPN
needleFrom ADV
: PUNCT
bolsen@eis.calstate.edu PROPN
( PUNCT
Becky PROPN
Olsen)Hi PROPN
, PUNCT
I PRON
am AUX
doing VERB
a DET
term NOUN
paper NOUN
on ADP
the DET
syringe NOUN
and CCONJ
I PRON
have AUX
found VERB
someinformation NOUN
. PUNCT
  SPACE
It PRON
is AUX
said VERB
that SCONJ
Charles PROPN
Pravaz PROPN
has AUX
invented VERB
the DET
hypodermicneedle NOUN
, PUNCT
but CCONJ
then ADV
I PRON
have AUX
also ADV
found VERB
that SCONJ
Alexander PROPN
Wood PROPN
has AUX
invented VERB
it PRON
. PUNCT
Does AUX
anyone PRON
know VERB
which PRON
one NOUN
it PRON
is AUX
, PUNCT
of ADP
if SCONJ
it PRON
was AUX
anyone PRON
else ADV
? PUNCT
  SPACE
If SCONJ
there ADV
isanymore VERB
information NOUN
that PRON
is AUX
out ADV
there PRON
could AUX
you PRON
please INTJ
send VERB
it PRON
to ADP
me PRON
. PUNCT
Thank VERB
you PRON
very ADV
much ADV
. PUNCT
Becky PROPN
OlsenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59269From NUM
: PUNCT
haynes@cats.ucsc.edu PROPN
( PUNCT
Jim PROPN
Haynes)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Poisoning VERB
with ADP
heavy ADJ
water NOUN
( PUNCT
was AUX
Re ADP
: PUNCT
Too ADV
many ADJ
MRIs?)All NOUN
I PRON
can AUX
remember VERB
is AUX
that SCONJ
there PRON
was AUX
an DET
article NOUN
in ADP
Scientific PROPN
Americanmaybe PROPN
20 NUM
years NOUN
ago ADV
. PUNCT
  SPACE
As SCONJ
someone PRON
else ADV
noted VERB
rats NOUN
or CCONJ
mice NOUN
fed PROPN
nothingbut PROPN
heavy ADJ
water NOUN
eventually ADV
died VERB
, PUNCT
and CCONJ
the DET
explanation NOUN
was AUX
given.-- PROPN
haynes@cats.ucsc.eduhaynes@cats.bitnet"Ya NOUN
can AUX
talk VERB
all DET
ya PROPN
wanna PROPN
, PUNCT
but CCONJ
it PRON
's AUX
dif'rent ADJ
than SCONJ
it PRON
was!""No VERB
it PRON
ai VERB
nt PART
! PUNCT
  SPACE
But CCONJ
ya PRON
got VERB
ta PART
know VERB
the DET
territory NOUN
! PUNCT
" PUNCT
        SPACE
Meredith PROPN
Willson PROPN
: PUNCT
" PUNCT
The DET
Music NOUN
Man"Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59270From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
hypodermic PROPN
needleIn NUM
article NOUN
< X
C60vIJ.Co6@eis.calstate.edu PROPN
> X
Becky PROPN
Olsen,bolsen@eis.calstate.edu PROPN
writes:>Hi PROPN
, PUNCT
I PRON
am AUX
doing VERB
a DET
term NOUN
paper NOUN
on ADP
the DET
syringe NOUN
and CCONJ
I PRON
have AUX
found VERB
some DET
> X
information NOUN
. PUNCT
  SPACE
It PRON
is AUX
said VERB
that SCONJ
Charles PROPN
Pravaz PROPN
has AUX
invented VERB
thehypodermic ADJ
> X
needle NOUN
, PUNCT
but CCONJ
then ADV
I PRON
have AUX
also ADV
found VERB
that SCONJ
Alexander PROPN
Wood PROPN
has AUX
inventedit VERB
. PUNCT
> X
Does AUX
anyone PRON
know VERB
which PRON
one NOUN
it PRON
is AUX
, PUNCT
of ADP
if SCONJ
it PRON
was AUX
anyone PRON
else ADV
? PUNCT
  SPACE
Ifthere PROPN
is AUX
> X
anymore ADV
information NOUN
that PRON
is AUX
out ADV
there PRON
could AUX
you PRON
please INTJ
send VERB
it PRON
tome.>Thank PROPN
you PRON
very ADV
much.>Becky ADJ
OlsenLooking PROPN
in ADP
The DET
Evolution PROPN
of ADP
Anaesthesia PROPN
by ADP
M.H. PROPN
Armstrong PROPN
Davison(pub PROPN
Williams PROPN
& CCONJ
Wilkins PROPN
, PUNCT
Baltimore PROPN
1965 NUM
) PUNCT
I PRON
found VERB
the DET
followingchronology:"1853 NOUN
. PUNCT
  SPACE
Charles PROPN
- PUNCT
Gabriel PROPN
Pravaz PROPN
( PUNCT
1791 NUM
- SYM
1853 NUM
) PUNCT
, PUNCT
inventor NOUN
of ADP
thegalvanocautery PROPN
, PUNCT
describes VERB
a DET
glass NOUN
syringe NOUN
with ADP
tapered ADJ
nozzle NOUN
. PUNCT
Thissyringe PROPN
was AUX
intended VERB
to PART
be AUX
used VERB
with ADP
a DET
special ADJ
trocar NOUN
for ADP
injectingferric ADJ
chloride NOUN
into ADP
aneurysms NOUN
, PUNCT
and CCONJ
thus ADV
to PART
heal VERB
them PRON
by ADP
coagulation.1853 PROPN
. PUNCT
  SPACE
Alexander PROPN
Wood PROPN
( PUNCT
1817 NUM
- SYM
84 NUM
) PUNCT
  SPACE
of ADP
Edinburgh PROPN
invents NOUN
the DET
hypodermicneedle NOUN
and CCONJ
adapts PROPN
Pravaz PROPN
's PART
syringe NOUN
for ADP
use NOUN
with ADP
it PRON
. PUNCT
"You PROPN
might AUX
also ADV
be AUX
interested ADJ
to PART
read VERB
about ADP
the DET
experiments NOUN
of ADP
SirChristopher PROPN
Wren PROPN
in ADP
1656 NUM
, PUNCT
described VERB
by ADP
Oldenberg PROPN
& CCONJ
Clarck PROPN
in ADP
thePhilosophical NUM
transactions NOUN
of ADP
the DET
Royal PROPN
Society PROPN
in ADP
1665 NUM
. PUNCT
Using VERB
asharpened ADJ
quill NOUN
and CCONJ
a DET
pig NOUN
's PART
bladder NOUN
he PRON
injected VERB
opium NOUN
, PUNCT
wine NOUN
and CCONJ
beerinto PROPN
the DET
veins NOUN
of ADP
dogs NOUN
. PUNCT
Don PROPN
Mackie PROPN
UM PROPN
Anesthesiology PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59271From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1rcfj2INNmds@roundup.crhc.uiuc.edu NUM
> X
, PUNCT
mary@uicsl.csl.uiuc.edu PROPN
( PUNCT
Mary PROPN
E. PROPN
Allison PROPN
) PUNCT
writes:=Which PRON
was AUX
why ADV
I PRON
started VERB
checking VERB
EVERY DET
time NOUN
I PRON
got VERB
sick ADJ
. PUNCT
  SPACE
And CCONJ
EVERY DET
= SYM
time NOUN
I PRON
got VERB
sick ADJ
MSG PROPN
was AUX
somehow ADV
involved VERB
in ADP
one NUM
of ADP
the DET
food NOUN
products NOUN
. PUNCT
Which PRON
points VERB
up ADP
the DET
" PUNCT
studies NOUN
" PUNCT
made VERB
by ADP
amateurs NOUN
: PUNCT
  SPACE
Did AUX
you PRON
ALSO ADV
check VERB
EVERY DET
TIMEYOU PROPN
DID VERB
* PUNCT
NOT ADV
* PUNCT
get AUX
sick ADJ
? PUNCT
  SPACE
" PUNCT
No INTJ
, PUNCT
" PUNCT
you PRON
say VERB
? PUNCT
  SPACE
Why ADV
not PART
check VERB
every DET
thing NOUN
you PRON
eat VERB
whenyou PRON
do AUX
n't PART
get AUX
sick ADJ
and CCONJ
find VERB
out ADP
how ADV
much ADJ
MSG NOUN
you PRON
're AUX
actually ADV
consuming?= NOUN
> X
All DET
that PRON
's AUX
needed VERB
now ADV
is AUX
that DET
final ADJ
step NOUN
, PUNCT
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
done= PUNCT
> X
on ADP
humans NOUN
. PUNCT
  SPACE
There PRON
is AUX
n't PART
even ADV
an DET
ethical ADJ
question NOUN
about ADP
" PUNCT
possible= ADJ
> X
harm NOUN
" PUNCT
, PUNCT
as SCONJ
this DET
is AUX
a DET
widely ADV
used VERB
and CCONJ
approved VERB
food NOUN
additive.==But NOUN
- PUNCT
some DET
say VERB
that SCONJ
only ADV
2 NUM
% NOUN
of ADP
the DET
population NOUN
has AUX
a DET
problem NOUN
with ADP
MSG NOUN
-=some PUNCT
say VERB
it PRON
's AUX
more ADJ
like SCONJ
20 NUM
% NOUN
- PUNCT
but CCONJ
let VERB
's PRON
say VERB
that SCONJ
it PRON
's AUX
5 NUM
% NOUN
. PUNCT
  SPACE
How ADV
many ADJ
= PUNCT
people NOUN
would AUX
have AUX
to PART
be AUX
tested VERB
that PRON
would AUX
have AUX
a DET
problem NOUN
? PUNCT
  SPACE
Also ADV
- PUNCT
I PRON
= VERB
KNOW VERB
I PRON
have AUX
a DET
problem NOUN
with ADP
it PRON
, PUNCT
and CCONJ
I PRON
would AUX
n't PART
VOLUNTEER VERB
for ADP
a DET
test NOUN
. PUNCT
If SCONJ
you PRON
knew VERB
enough ADV
about ADP
what PRON
the DET
test NOUN
was AUX
about ADJ
to PART
decide VERB
that SCONJ
you PRON
did AUX
n't PART
wantto NOUN
participate VERB
because SCONJ
it PRON
involved VERB
MSG PROPN
, PUNCT
you PRON
'd AUX
've AUX
already ADV
made VERB
yourselfineligible ADJ
( PUNCT
since SCONJ
MSG PROPN
IS VERB
detectable ADJ
by ADP
taste NOUN
) PUNCT
. PUNCT
How ADV
can AUX
anybody PRON
be AUX
so ADV
cluelessas ADJ
to ADP
what PRON
double ADJ
blind ADJ
studies NOUN
are AUX
all DET
about?--------------------------------------------------------------------------------Carl PROPN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59272From NUM
: PUNCT
< X
ICBAL@ASUACAD.BITNET NOUN
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1993Apr22.143929.26131@midway.uchicago.edu>,jacquier@gsbux1.uchicago.edu PROPN
( PUNCT
Eric PROPN
Jacquier PROPN
) PUNCT
says:>>From PROPN
now ADV
on ADP
it PRON
looks VERB
like SCONJ
2 NUM
shots NOUN
per ADP
week NOUN
for>6 ADJ
months NOUN
followed VERB
by ADP
1 NUM
shot NOUN
per ADP
month NOUN
or CCONJ
so ADV
. PUNCT
Each DET
shot VERB
costs>$20 NOUN
. PUNCT
Talking VERB
about ADP
soaring VERB
costs NOUN
and CCONJ
the DET
Health PROPN
care NOUN
system NOUN
, PUNCT
I PRON
would AUX
> X
call VERB
that SCONJ
a DET
racket NOUN
. PUNCT
We PRON
are AUX
not PART
talking VERB
about ADP
rare ADJ
Amazonian ADJ
grasses NOUN
> X
here ADV
, PUNCT
but CCONJ
the DET
garbage NOUN
which PRON
grows VERB
behind ADP
the DET
doctor NOUN
's PART
office.>Apart PROPN
from ADP
this DET
issue NOUN
, PUNCT
I PRON
was AUX
somewhat ADV
disappointed ADJ
to PART
find VERB
out ADP
> X
that SCONJ
you PRON
have AUX
to PART
keep VERB
getting VERB
the DET
shots NOUN
forever ADV
. PUNCT
Is AUX
that DET
right?>You NOUN
might AUX
look VERB
for ADP
an DET
allergy ADJ
doctor NOUN
in ADP
your PRON
area NOUN
who PRON
uses VERB
sublingualdrops NOUN
instead ADV
of ADP
shots NOUN
for ADP
treatment NOUN
. PUNCT
( PUNCT
You PRON
are AUX
given VERB
a DET
small ADJ
bottle NOUN
ofantigens NOUN
; PUNCT
3 NUM
drops NOUN
are AUX
placed VERB
under ADP
the DET
tongue NOUN
for ADP
5 NUM
minutes NOUN
. PUNCT
) PUNCT
Myallergy NOUN
to PART
bermuda VERB
grass PROPN
was AUX
neutralized VERB
this DET
way NOUN
. PUNCT
Throughout ADP
the DET
treatmentprocess NOUN
I PRON
had AUX
to PART
return VERB
to ADP
the DET
doctor NOUN
's PART
office NOUN
every DET
month NOUN
for ADP
re NOUN
- VERB
testingand VERB
a DET
new ADJ
bottle NOUN
of ADP
antigens NOUN
. PUNCT
After ADP
the DET
allergy NOUN
was AUX
completely ADV
neutralizeda ADJ
bottle NOUN
of ADP
maintenance NOUN
antigens NOUN
lasts VERB
me PRON
about ADV
4 NUM
months NOUN
( PUNCT
the DET
sublingualdrops NOUN
are AUX
then ADV
taken VERB
3 NUM
times NOUN
per ADP
week NOUN
) PUNCT
, PUNCT
and CCONJ
costs VERB
$ SYM
20 NUM
. PUNCT
So ADV
the DET
cost NOUN
isless NOUN
than SCONJ
shots NOUN
and CCONJ
it PRON
is AUX
more ADV
convenient ADJ
just ADV
to PART
take VERB
the DET
drops NOUN
at ADP
home NOUN
. PUNCT
Bruce PROPN
LongNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59273From NUM
: PUNCT
hchung@nyx.cs.du.edu PROPN
( PUNCT
H. PROPN
Anthony PROPN
Chung)Subject NUM
: PUNCT
Localized VERB
fat ADJ
reduction NOUN
due ADP
to ADP
exercise NOUN
( PUNCT
question).I X
was AUX
just ADV
wondering VERB
if SCONJ
exercises NOUN
specific ADJ
to ADP
particular ADJ
regions NOUN
of ADP
thebody NOUN
( PUNCT
such ADJ
as SCONJ
thighs NOUN
) PUNCT
will AUX
basically ADV
only ADV
tone VERB
the DET
thighs NOUN
, PUNCT
or CCONJ
if SCONJ
fatfrom ADP
other ADJ
parts NOUN
of ADP
the DET
body NOUN
( PUNCT
such ADJ
as SCONJ
breasts NOUN
) PUNCT
would AUX
be AUX
affected VERB
just ADV
asmuch.-- ADP
   SPACE
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
+ SYM
--------H. PROPN
Anthony PROPN
Chung--------+--C= PROPN
AMIGAs--+ NUM
  SPACE
/ PUNCT
//_/ PUNCT
// SYM
/ SYM
_ PROPN
_ PROPN
_ PROPN
  SPACE
// SYM
/ SYM
_ PROPN
_ PROPN
_ PROPN
_ PROPN
//|Case PUNCT
Western PROPN
Reserve PROPN
University PROPN
| CCONJ
  SPACE
/\/\ PUNCT
R PROPN
The DET
| PROPN
/ SYM
_ PROPN
_ PROPN
_ PROPN
  SPACE
// SYM
/ SYM
_ PROPN
_ PROPN
_ PROPN
  SPACE
// SYM
/ PUNCT
//___~ PUNCT
| CCONJ
       SPACE
School PROPN
of ADP
Dentistry PROPN
      SPACE
| PROPN
  SPACE
\ X
  SPACE
/ SYM
Future|/_// PROPN
/_// NOUN
/_// PUNCT
/_// PUNCT
/_____// PUNCT
  SPACE
+ SYM
-hac@po PUNCT
. PUNCT
CWRU.Edu-(Cabal PROPN
on ADP
IRC)-+-ac\/is------+Newsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59274From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu PROPN
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
re ADP
: PUNCT
use NOUN
of ADP
haldol NOUN
and CCONJ
the DET
elderlyI'm PROPN
a DET
nursing NOUN
student NOUN
, PUNCT
and CCONJ
I PRON
would AUX
like VERB
to PART
respond VERB
to ADP
# SYM
66966 NUM
on ADP
haldoland PROPN
the DET
elderly ADJ
. PUNCT
Message NOUN
- PUNCT
ID PROPN
: PUNCT
< X
25APR199316225142@fsphy1.physics.fsu.edu>Organization NUM
: PUNCT
Florida PROPN
State PROPN
University PROPN
- PUNCT
School PROPN
of ADP
Higher ADJ
ThoughtNews PROPN
- PUNCT
Software PROPN
: PUNCT
VAX PROPN
/ SYM
VMS PROPN
VNEWS PROPN
1.4-b1 NUM
  SPACE
First ADV
, PUNCT
I PRON
'm AUX
sorry ADJ
to PART
hear VERB
that SCONJ
you PRON
have AUX
had VERB
to PART
see VERB
your PRON
grandmother NOUN
gothrough VERB
this DET
. PUNCT
  SPACE
I PRON
know VERB
it PRON
has AUX
to PART
have AUX
been AUX
tough ADJ
. PUNCT
There PRON
are AUX
many ADJ
things NOUN
that PRON
can AUX
cause VERB
long ADJ
term NOUN
confusion NOUN
in ADP
elderlyadults NOUN
. PUNCT
  SPACE
The DET
change NOUN
in ADP
environment NOUN
can AUX
cause VERB
problems NOUN
. PUNCT
  SPACE
Anesthetic ADJ
agentscan ADJ
cause NOUN
confusion NOUN
because SCONJ
the DET
body NOUN
can AUX
not PART
clear VERB
the DET
medicines NOUN
out SCONJ
ofthe DET
body NOUN
as ADV
easily ADV
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
medications NOUN
and CCONJ
interactions NOUN
betweenmedications NOUN
can AUX
cause VERB
confusion NOUN
. PUNCT
As ADV
far ADV
as SCONJ
whether SCONJ
or CCONJ
not PART
haldol PROPN
can AUX
have AUX
long ADJ
lasting VERB
effects NOUN
even ADV
afterthe DET
drug NOUN
has AUX
been AUX
discontinued VERB
, PUNCT
I PRON
do AUX
not PART
know VERB
. PUNCT
  SPACE
I PRON
have AUX
not PART
_ ADV
seen VERB
_ DET
anythingto NOUN
that DET
effect NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
I PRON
also ADV
had AUX
not PART
been AUX
looking VERB
for ADP
that DET
information NOUN
. PUNCT
I PRON
can AUX
see VERB
what PRON
I PRON
can AUX
find VERB
... PUNCT
I PRON
can AUX
tell VERB
you PRON
that SCONJ
haldol PROPN
is AUX
an DET
antipsychotic ADJ
drug NOUN
, PUNCT
and CCONJ
, PUNCT
according VERB
tothe DET
Nursing93 NUM
Drug PROPN
handbook NOUN
, PUNCT
it PRON
is AUX
" PUNCT
Especially ADV
useful ADJ
for ADP
agitationassociated VERB
with ADP
senile ADJ
dementia NOUN
" PUNCT
  SPACE
( PUNCT
p. NOUN
400 NUM
) PUNCT
. PUNCT
  SPACE
It PRON
also ADV
should AUX
not PART
be AUX
discontinued VERB
abruptly ADV
. PUNCT
  SPACE
It PRON
did AUX
not PART
say VERB
anything PRON
about ADP
long ADJ
lastingeffects NOUN
. PUNCT
Because SCONJ
so ADV
many ADJ
things NOUN
can AUX
cause VERB
confusion NOUN
, PUNCT
it PRON
is AUX
hard ADJ
for ADP
me PRON
to ADP
knowwhat PROPN
else ADV
was AUX
going VERB
on ADP
at ADP
the DET
time NOUN
; PUNCT
if SCONJ
I PRON
had AUX
more ADJ
history NOUN
, PUNCT
i PRON
might AUX
be AUX
ableto PROPN
answer VERB
you PRON
better ADV
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
send VERB
me PRON
e NOUN
- NOUN
mail NOUN
with ADP
more ADJ
information NOUN
, PUNCT
I PRON
would AUX
be AUX
happy ADJ
to PART
try VERB
to PART
  SPACE
help VERB
you PRON
piece VERB
together ADV
what PRON
might AUX
havehappened.Elisapicl25@fsphy1.physics.fsu.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59275From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
ROC PROPN
curves NOUN
softwareI PROPN
understand VERB
Robert PROPN
Centor PROPN
has AUX
a DET
program NOUN
called VERB
ROC PROPN
ANALYZER PROPN
, PUNCT
that PRON
can AUX
beused VERB
to PART
do AUX
receiver NOUN
operating VERB
characteristic NOUN
( PUNCT
ROC PROPN
) PUNCT
curve NOUN
analysis NOUN
. PUNCT
Does AUX
anyone PRON
know VERB
if SCONJ
this DET
is AUX
avaliable ADJ
from ADP
an DET
FTP PROPN
site NOUN
? PUNCT
If SCONJ
not PART
, PUNCT
does AUX
anyoneknow VERB
how ADV
to PART
get AUX
a DET
copy NOUN
of ADP
it?==============================Howard NOUN
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59276From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
re ADP
: PUNCT
use NOUN
of ADP
haldol NOUN
and CCONJ
the DET
elderlyIn PROPN
article NOUN
< X
C623Az.M85@mailer.cc.fsu.edu PROPN
> X
PICL PROPN
account_25,picl25@fsphy1.physics.fsu.edu PROPN
writes:>adults NOUN
. PUNCT
  SPACE
The DET
change NOUN
in ADP
environment NOUN
can AUX
cause VERB
problems NOUN
. PUNCT
  SPACE
Anestheticagents NOUN
> X
can AUX
cause VERB
confusion NOUN
because SCONJ
the DET
body NOUN
can AUX
not PART
clear VERB
the DET
medicines NOUN
outof PROPN
> X
the DET
body NOUN
as ADV
easily ADV
. PUNCT
The DET
original ADJ
poster NOUN
did AUX
not PART
say VERB
why ADV
his PRON
mother NOUN
had AUX
been AUX
in ADP
hospitalbut NOUN
I PRON
can AUX
answer VERB
a DET
few ADJ
general ADJ
points NOUN
. PUNCT
Elderly ADJ
patients NOUN
may AUX
exhibit VERB
a DET
marked ADJ
difficulty NOUN
in ADP
coping VERB
afterbeing VERB
in ADP
hospital NOUN
for ADP
a DET
few ADJ
days NOUN
. PUNCT
The DET
drastic ADJ
change NOUN
of ADP
environmentwill PROPN
often ADV
unmask VERB
how ADV
marginally ADV
they PRON
have AUX
been AUX
coping VERB
at ADP
home NOUN
. PUNCT
Evenyoung NOUN
people NOUN
find VERB
the DET
change NOUN
unsettling VERB
. PUNCT
Though SCONJ
we PRON
have AUX
thought VERB
that SCONJ
this DET
decrement NOUN
in ADP
function NOUN
after ADP
- PUNCT
say VERB
-anaesthesia NOUN
and CCONJ
surgery NOUN
for ADP
a DET
fractured ADJ
hip NOUN
( PUNCT
a DET
common ADJ
event NOUN
in ADP
theelderly ADV
) PUNCT
was AUX
due ADJ
to ADP
anaesthesia PROPN
there PRON
is AUX
good ADJ
evidence NOUN
that SCONJ
thechange NOUN
of ADP
situation NOUN
is AUX
much ADV
more ADV
important ADJ
. PUNCT
Some DET
hospitals NOUN
havetried VERB
a DET
' PUNCT
rapid ADJ
transit NOUN
' PUNCT
system NOUN
for ADP
hip NOUN
fractures NOUN
, PUNCT
aiming VERB
to PART
have AUX
thepatient ADJ
back ADV
at ADP
home NOUN
within ADP
24 NUM
hours NOUN
of ADP
admission NOUN
. PUNCT
The DET
selection NOUN
ofthe NOUN
anaesthetic NOUN
has AUX
no DET
effect NOUN
on ADP
the DET
ability NOUN
to PART
discharge VERB
thesepatients NOUN
early ADV
. PUNCT
Anaesthetists NOUN
who PRON
work VERB
with ADP
the DET
elderly ADJ
( PUNCT
which PRON
is AUX
almost ADV
all DET
of ADP
us)generally PROPN
take VERB
care NOUN
to PART
tailor VERB
the DET
choice NOUN
and CCONJ
dose NOUN
of ADP
drugs NOUN
used VERB
tothe DET
individual ADJ
patient NOUN
. PUNCT
Even ADV
so ADV
, PUNCT
there PRON
is AUX
some DET
evidence NOUN
that SCONJ
fullmental ADJ
recovery NOUN
may AUX
take VERB
a DET
surprisingly ADV
long ADJ
time NOUN
to PART
return VERB
. PUNCT
This DET
isthe ADJ
sort NOUN
of ADP
thing NOUN
which PRON
is AUX
detected VERB
by ADP
setting VERB
quite ADV
difficulttasks NOUN
, PUNCT
not PART
the DET
gross ADJ
change NOUN
that SCONJ
the DET
original ADJ
poster NOUN
noted VERB
. PUNCT
Haloperidol NOUN
( PUNCT
Haldol PROPN
TM PROPN
) PUNCT
is AUX
a DET
long ADJ
acting VERB
drug NOUN
. PUNCT
The DET
plasma NOUN
half NOUN
lifeof VERB
the DET
drug NOUN
is AUX
up ADP
to PART
35 NUM
hours NOUN
. PUNCT
If SCONJ
the DET
decanoate NOUN
( PUNCT
a DET
sort NOUN
of ADP
slowrelease ADJ
formulation NOUN
) PUNCT
is AUX
used VERB
it PRON
may AUX
be AUX
weeks NOUN
. PUNCT
The DET
elderly ADJ
aresensitive NOUN
to ADP
haloperidol NOUN
for ADP
a DET
number NOUN
of ADP
reasons NOUN
. PUNCT
Without ADP
knowingmore NOUN
it PRON
is AUX
hard ADJ
to PART
comment VERB
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsesiology NOUN
will AUX
disavow VERB
... PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59277From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyI've DET
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented VERB
anddemented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
weredefinitely ADV
involved VERB
. PUNCT
My PRON
own ADJ
father NOUN
turned VERB
into ADP
a DET
vegetable NOUN
for ADP
a DET
short ADJ
time NOUN
while SCONJ
in ADP
thehospital NOUN
. PUNCT
He PRON
was AUX
fifty NUM
- PUNCT
three NUM
at ADP
the DET
time NOUN
, PUNCT
and CCONJ
he PRON
was AUX
on ADP
21 NUM
separatemedications NOUN
. PUNCT
The DET
family NOUN
protested VERB
, PUNCT
but CCONJ
the DET
doctors NOUN
were AUX
adamant ADJ
, PUNCT
tellingus VERB
that SCONJ
none NOUN
of ADP
the DET
drugs NOUN
interact VERB
. PUNCT
They PRON
even ADV
took VERB
the DET
attitude NOUN
that PRON
, PUNCT
ifhe NOUN
was AUX
disoriented VERB
, PUNCT
they PRON
should AUX
put VERB
him PRON
on ADP
something PRON
else ADV
as ADV
well ADV
! PUNCT
Withthe DET
help NOUN
of ADP
an DET
MD PROPN
friend NOUN
of ADP
the DET
family NOUN
, PUNCT
we PRON
had AUX
all DET
his PRON
medicationdiscontinued VERB
. PUNCT
He PRON
had AUX
a DET
seizure NOUN
that DET
night NOUN
, PUNCT
and CCONJ
was AUX
put VERB
back ADV
on ADP
one NUM
drug NOUN
. PUNCT
Two NUM
days NOUN
later ADV
, PUNCT
he PRON
was AUX
his PRON
old ADJ
self NOUN
again ADV
. PUNCT
I PRON
guess VERB
there PRON
are AUX
n't PART
manymedical ADJ
texts NOUN
that PRON
address VERB
the DET
subject NOUN
of ADP
21-way NUM
interactions NOUN
. PUNCT
I PRON
do AUX
n't PART
mean VERB
this DET
as SCONJ
a DET
cheap ADJ
shot NOUN
at ADP
the DET
medical ADJ
profession NOUN
. PUNCT
It PRON
is AUX
anaspect ADJ
of ADP
hospitals NOUN
that PRON
is AUX
very ADV
frightening ADJ
to ADP
me PRON
. PUNCT
Docs PROPN
seem VERB
to ADP
believethat VERB
, PUNCT
because SCONJ
they PRON
have AUX
close ADJ
control NOUN
of ADP
you PRON
, PUNCT
it PRON
's AUX
quite ADV
all ADV
right ADJ
totake VERB
your PRON
bodily ADJ
equilibria VERB
into ADP
their PRON
own ADJ
hands NOUN
. PUNCT
That DET
control NOUN
reducesthe ADJ
chance NOUN
that SCONJ
the DET
patient NOUN
will AUX
make VERB
a DET
mistake NOUN
, PUNCT
but CCONJ
health NOUN
careproviders NOUN
can AUX
make VERB
mistakes NOUN
too ADV
, PUNCT
and CCONJ
mistakes NOUN
can AUX
be AUX
deadly ADJ
under ADP
thosecircumstances NOUN
. PUNCT
I PRON
grant VERB
you PRON
that SCONJ
sometimes ADV
there PRON
's AUX
no DET
choice NOUN
. PUNCT
Nevertheless ADV
, PUNCT
I PRON
suggestyou VERB
procure VERB
a DET
list NOUN
of ADP
the DET
drugs NOUN
your PRON
grandmother NOUN
is AUX
getting VERB
, PUNCT
and CCONJ
discussit VERB
with ADP
an DET
independent ADJ
doc NOUN
. PUNCT
Her PRON
problems NOUN
may AUX
not PART
be AUX
the DET
effect NOUN
of ADP
HALDOLat PROPN
all DET
. PUNCT
HALDOL PROPN
may AUX
have AUX
been AUX
used VERB
validly ADV
, PUNCT
or CCONJ
it PRON
may AUX
have AUX
beenprescribed VERB
because SCONJ
OTHER ADJ
medication NOUN
confused VERB
her PRON
, PUNCT
and CCONJ
because SCONJ
thehospital ADJ
normally ADV
prescribes VERB
HALDOL PROPN
for ADP
the DET
confused ADJ
elderly ADV
. PUNCT
Just ADV
my PRON
opinion,-Larry NOUN
( PUNCT
obviously ADV
not PART
a DET
doc NOUN
) PUNCT
C. PROPN
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59278From NUM
: PUNCT
jowalker@polyslo.csc.calpoly.edu PROPN
( PUNCT
The DET
Thespian)Subject NUM
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceI PROPN
got VERB
this DET
recipe NOUN
from ADP
a DET
watier ADJ
on ADP
the DET
greek PROPN
island NOUN
of ADP
samos ADJ
. PUNCT
They PRON
use VERB
it PRON
as SCONJ
a DET
spread NOUN
for ADP
bread NOUN
there ADV
butit NOUN
is AUX
excellent ADJ
ongyro PROPN
's PART
as ADV
well ADV
. PUNCT
By ADP
the DET
way NOUN
, PUNCT
the DET
actual ADJ
name NOUN
is AUX
tzatziki ADJ
. PUNCT
Here ADV
is AUX
the DET
recipe NOUN
: PUNCT
yoghurt PROPN
, PUNCT
chopped VERB
garlic NOUN
, PUNCT
peeled VERB
chopped VERB
cucumber NOUN
, PUNCT
salt NOUN
, PUNCT
whitepepper NOUN
, PUNCT
a DET
little ADJ
olive ADJ
oil NOUN
and CCONJ
a DET
little ADJ
vinegar NOUN
. PUNCT
I PRON
would AUX
love VERB
to PART
hear VERB
of ADP
any DET
other ADJ
good ADJ
greek ADJ
recipes NOUN
out ADP
there.-- PROPN
Jon PROPN
Walkerjowalker@oboe.calpoly.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59279From NUM
: PUNCT
dbaker@utkvx.utk.edu PROPN
( PUNCT
Baker PROPN
, PUNCT
David)Subject NUM
: PUNCT
Hypodermic PROPN
SyringeWhile PROPN
I PRON
do AUX
n't PART
have AUX
an DET
answer NOUN
for ADP
you PRON
, PUNCT
I PRON
reckon VERB
Blaise PROPN
Pascal PROPN
is AUX
generallycredited VERB
with ADP
inventing VERB
the DET
syringe NOUN
per ADP
se X
. PROPN
  SPACE
I PRON
do AUX
n't PART
know VERB
much ADJ
about ADP
theneedles NOUN
; PUNCT
however ADV
, PUNCT
I PRON
do AUX
know VERB
of ADP
a DET
southwest NOUN
Virginia PROPN
country NOUN
doctor NOUN
whosome PROPN
thrity PROPN
or CCONJ
more ADJ
years NOUN
ago ADV
invented VERB
, PUNCT
patented VERB
, PUNCT
used VERB
, PUNCT
and CCONJ
sold VERB
a DET
syringe NOUN
/ SYM
hypodermic ADJ
needle NOUN
combination NOUN
that PRON
retracted VERB
, PUNCT
injected VERB
with ADP
the DET
flip NOUN
of ADP
atrigger NOUN
, PUNCT
then ADV
retracted VERB
, PUNCT
giving VERB
a DET
near ADJ
- PUNCT
painless ADJ
injection NOUN
. PUNCT
  SPACE
The DET
fellow ADJ
wasDr PROPN
. PUNCT
Daniel PROPN
Gabriel PROPN
, PUNCT
and CCONJ
it PRON
was AUX
termed VERB
the DET
Gabriel PROPN
-- PUNCT
somebody PRON
else ADV
syringe NOUN
. PUNCT
Did AUX
you PRON
come VERB
across ADP
that DET
one NUM
. PUNCT
  SPACE
( PUNCT
Plastic ADJ
, PUNCT
disposable ADJ
syringes NOUN
came VERB
onto ADP
themarket NOUN
about ADP
that DET
time NOUN
and CCONJ
his PRON
product NOUN
went VERB
by ADP
the DET
wayside NOUN
, PUNCT
to ADP
my PRON
knowledge.)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59280From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu NUM
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyIn PROPN
article NOUN
< X
YfqmleK00iV185Co5L@andrew.cmu.edu ADJ
> X
, PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu NOUN
> X
writes VERB
... PUNCT
>I've PUNCT
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented ADJ
and CCONJ
> X
demented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
were AUX
> X
definitely ADV
involved ADJ
. PUNCT
> X
> X
My PRON
own ADJ
father NOUN
turned VERB
into ADP
a DET
vegetable NOUN
for ADP
a DET
short ADJ
time NOUN
while SCONJ
in ADP
the DET
> X
hospital NOUN
. PUNCT
He PRON
was AUX
fifty NUM
- PUNCT
three NUM
at ADP
the DET
time NOUN
, PUNCT
and CCONJ
he PRON
was AUX
on ADP
21 NUM
separate ADJ
> NOUN
drugs NOUN
... PUNCT
No DET
wonder NOUN
he PRON
became VERB
confused ADJ
! PUNCT
  SPACE
With ADP
so ADV
many ADJ
drugs NOUN
, PUNCT
it PRON
is AUX
almost ADV
impossibleto ADJ
know VERB
which PRON
one NOUN
is AUX
causing VERB
the DET
problem NOUN
. PUNCT
  SPACE
And CCONJ
because SCONJ
some DET
drugs NOUN
potentiate VERB
the DET
effect NOUN
of ADP
each DET
other ADJ
, PUNCT
they PRON
can AUX
make VERB
the DET
side NOUN
effectsall VERB
the DET
worse ADJ
, PUNCT
and CCONJ
even ADV
dangerous ADJ
. PUNCT
  SPACE
( PUNCT
kinda ADV
like SCONJ
mixing VERB
alcohol NOUN
and CCONJ
antihistamines!)> PROPN
... PUNCT
he PRON
was AUX
disoriened VERB
[ PUNCT
the DET
doctors NOUN
thougt NOUN
] PUNCT
they PRON
should AUX
put VERB
him PRON
on ADP
something PRON
> X
else ADV
as SCONJ
well!Unfortunately ADV
, PUNCT
doctors NOUN
prescribe VERB
drugs NOUN
to PART
treat VERB
the DET
side NOUN
effects NOUN
ofthe NOUN
drugs NOUN
a DET
patient NOUN
is AUX
receiving VERB
. PUNCT
  SPACE
If SCONJ
one NUM
drug NOUN
they PRON
are AUX
taking VERB
causesthe NOUN
patient NOUN
's PART
blood NOUN
pressure NOUN
to PART
go VERB
up ADP
, PUNCT
many ADJ
times NOUN
an DET
antihypertensiveis PROPN
prescribed VERB
instead ADV
of ADP
re NOUN
- VERB
evaluating VERB
the DET
need NOUN
for ADP
the DET
original ADJ
drug NOUN
. PUNCT
This DET
is AUX
why ADV
many ADJ
older ADJ
adults NOUN
are AUX
trying VERB
to PART
take VERB
a DET
dozen NOUN
or CCONJ
so ADV
drugsat VERB
home!!!!> NOUN
.... PUNCT
procure NOUN
a DET
list NOUN
of ADP
the DET
drugs NOUN
your PRON
grandmother NOUN
is AUX
getting VERB
, PUNCT
and CCONJ
discuss VERB
> X
it PRON
with ADP
an DET
independent ADJ
doc NOUN
. PUNCT
Her PRON
problems NOUN
may AUX
not PART
be AUX
the DET
effect NOUN
of ADP
HALDOL PROPN
> X
at ADV
all ADV
. PUNCT
HALDOL PROPN
may AUX
have AUX
been AUX
used VERB
validly ADV
, PUNCT
or CCONJ
it PRON
may AUX
have AUX
been AUX
> X
prescribed VERB
because SCONJ
OTHER ADJ
medication NOUN
confused VERB
her PRON
, PUNCT
and CCONJ
because SCONJ
the DET
> X
hospital NOUN
normally ADV
prescribes VERB
HALDOL PROPN
for ADP
the DET
confused ADJ
elderly ADV
. PUNCT
I PRON
fully ADV
agree VERB
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
she PRON
proably ADV
should AUX
be AUX
examined VERB
by ADP
anotherdoctor NOUN
who PRON
can AUX
re VERB
- VERB
evaluate VERB
the DET
need NOUN
for ADP
the DET
medications NOUN
she PRON
is AUX
taking VERB
. PUNCT
I PRON
ca AUX
n't PART
remember VERB
the DET
guidelines NOUN
I PRON
either CCONJ
saw VERB
in ADP
a DET
text NOUN
or CCONJ
heard VERB
duringa PROPN
lecture NOUN
, PUNCT
but CCONJ
any DET
elderly ADJ
adult NOUN
who PRON
is AUX
receiving VERB
medications NOUN
should AUX
havethe NOUN
need NOUN
for ADP
the DET
drug NOUN
re NOUN
- VERB
evaluated VERB
regularly ADV
. PUNCT
  SPACE
If SCONJ
her PRON
current ADJ
physicianis NOUN
unwilling ADJ
to PART
do AUX
this DET
, PUNCT
find VERB
one NUM
who PRON
will AUX
. PUNCT
  SPACE
Either CCONJ
check VERB
the DET
phone NOUN
book NOUN
for ADP
a DET
physician NOUN
who PRON
specializes VERB
in ADP
geriatric ADJ
medicine NOUN
or CCONJ
gerontology NOUN
, PUNCT
or CCONJ
contact VERB
a DET
physician ADJ
referral NOUN
line NOUN
or CCONJ
the DET
American PROPN
Medical PROPN
Society PROPN
. PUNCT
By ADP
finding VERB
a DET
geriatric ADJ
specialist NOUN
, PUNCT
he PRON
( PUNCT
she PRON
) PUNCT
will AUX
more ADV
likely ADV
be AUX
in ADP
tunewith PROPN
the DET
special ADJ
needs NOUN
of ADP
elderly ADJ
adults NOUN
and CCONJ
maybe ADV
can AUX
help VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59281From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject PROPN
: PUNCT
Fibromyalgia PROPN
, PUNCT
CFS PROPN
and CCONJ
sleep NOUN
levelsI PROPN
know VERB
that SCONJ
there PRON
is AUX
a DET
relationship NOUN
between ADP
Fibromyalgia PROPN
and CCONJ
deep ADJ
sleep NOUN
. PUNCT
  SPACE
I PRON
believe VERB
that SCONJ
there PRON
are AUX
five NUM
levels NOUN
of ADP
sleep NOUN
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
R.E.M. PROPN
sleep NOUN
is AUX
the DET
third ADJ
deepest ADJ
level NOUN
of ADP
sleep NOUN
and CCONJ
that SCONJ
there PRON
are AUX
two NUM
deeper ADJ
levels NOUN
of ADP
sleep NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
am AUX
in ADP
error NOUN
in ADP
any DET
of ADP
this DET
, PUNCT
please INTJ
let VERB
me PRON
know VERB
. PUNCT
Which PRON
level NOUN
of ADP
sleep NOUN
is AUX
thought VERB
to PART
be AUX
deficient ADJ
in ADP
people NOUN
with ADP
Fibromyalgia PROPN
? PUNCT
  SPACE
Are AUX
there PRON
any DET
known VERB
sleep NOUN
disturbances NOUN
associated VERB
with ADP
CFS PROPN
? PUNCT
  SPACE
What PRON
sleep NOUN
disturbances VERB
( PUNCT
if SCONJ
any DET
) PUNCT
are AUX
associated VERB
with ADP
clinical ADJ
depression NOUN
? PUNCT
  SPACE
Do AUX
antidepressants NOUN
correct VERB
the DET
sleep NOUN
disturbances NOUN
in ADP
these DET
diseases NOUN
? PUNCT
  SPACE
Are AUX
there PRON
any DET
good ADJ
books NOUN
or CCONJ
medical ADJ
journal NOUN
articles NOUN
about ADP
sleep NOUN
disturbances NOUN
and CCONJ
these DET
diseases NOUN
? PUNCT
  SPACE
Thank VERB
you PRON
in ADP
advance NOUN
for ADP
all DET
replies NOUN
.... PUNCT
The DET
more ADV
inconvenient ADJ
it PRON
is AUX
to PART
answer VERB
the DET
phone NOUN
, PUNCT
the DET
more ADV
it PRON
rings VERB
. PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59282From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
Pregnency NOUN
without ADP
sex?When PROPN
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incidentin NOUN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
havingsexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
spermcells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation NOUN
. PUNCT
Was AUX
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actuallyoccur?StephenNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59283From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
1/4 NUM
- SYM
------------ PUNCT
cut NOUN
here ADV
-----------------Volume NOUN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
              SPACE
+ CCONJ
------------------------------------------------+ PUNCT
              SPACE
! PUNCT
                                                SPACE
! PUNCT
              SPACE
! PUNCT
              SPACE
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
           SPACE
! PUNCT
              SPACE
! PUNCT
                SPACE
Medical PROPN
Newsletter PROPN
              SPACE
! PUNCT
              SPACE
+ X
------------------------------------------------+ PUNCT
                         SPACE
Editor NOUN
: PUNCT
David PROPN
Dodell PROPN
, PUNCT
D.M.D. PROPN
    SPACE
10250 NUM
North PROPN
92nd NOUN
Street PROPN
, PUNCT
Suite PROPN
210 NUM
, PUNCT
Scottsdale PROPN
, PUNCT
Arizona PROPN
85258 NUM
- SYM
4599 NUM
USA PROPN
                          SPACE
Telephone PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
860 NUM
- SYM
1121 NUM
                              SPACE
FAX PROPN
+1 NOUN
( PUNCT
602 NUM
) PUNCT
451 NUM
- PUNCT
1165Compilation NUM
Copyright PROPN
1993 NUM
by ADP
David PROPN
Dodell PROPN
, PUNCT
  SPACE
D.M.D. PROPN
  SPACE
All DET
  SPACE
rights NOUN
  SPACE
Reserved VERB
. PUNCT
  SPACE
License NOUN
  SPACE
is AUX
  SPACE
hereby PROPN
  SPACE
granted VERB
  SPACE
to PART
republish VERB
on ADP
electronic ADJ
media NOUN
for ADP
which PRON
no DET
fees NOUN
are AUX
charged VERB
, PUNCT
  SPACE
so ADV
long ADV
as SCONJ
the DET
text NOUN
of ADP
this DET
copyright NOUN
notice NOUN
and CCONJ
license NOUN
are AUX
attached VERB
intact ADJ
to ADP
any DET
and CCONJ
all DET
republished VERB
portion NOUN
or CCONJ
portions NOUN
. PUNCT
  SPACE
The DET
Health PROPN
Info PROPN
- PUNCT
Com PROPN
Network PROPN
Newsletter PROPN
is AUX
  SPACE
distributed VERB
  SPACE
biweekly ADV
. PUNCT
  SPACE
Articles NOUN
on ADP
  SPACE
a DET
medical ADJ
nature NOUN
are AUX
welcomed VERB
. PUNCT
  SPACE
If SCONJ
you PRON
have AUX
an DET
article NOUN
, PUNCT
  SPACE
please INTJ
contact VERB
the DET
editor NOUN
for ADP
information NOUN
on ADP
how ADV
to PART
submit VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
are AUX
  SPACE
interested ADJ
  SPACE
in ADP
joining VERB
the DET
automated VERB
distribution NOUN
system NOUN
, PUNCT
please INTJ
contact VERB
the DET
editor NOUN
. PUNCT
  SPACE
E PROPN
- PROPN
Mail PROPN
Address NOUN
: PUNCT
                                    SPACE
Editor NOUN
: PUNCT
                            SPACE
Internet NOUN
: PUNCT
david@stat.com X
                              SPACE
FidoNet PROPN
= SYM
1:114/15 NUM
                           SPACE
Bitnet NOUN
= SYM
ATW1H@ASUACAD VERB
LISTSERV PROPN
= SYM
MEDNEWS@ASUACAD.BITNET NOUN
( PUNCT
or CCONJ
internet NOUN
: PUNCT
mednews@asuvm.inre.asu.edu PROPN
) PUNCT
                          SPACE
anonymous ADJ
ftp NOUN
= X
vm1.nodak.edu PROPN
               SPACE
Notification PROPN
List PROPN
= SYM
hicn-notify-request@stat.com X
                 SPACE
FAX PROPN
Delivery NOUN
= SYM
Contact PROPN
Editor PROPN
for ADP
information NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                       SPACE
T NOUN
A PROPN
B NOUN
L NOUN
E NOUN
   SPACE
O INTJ
F NOUN
   SPACE
C NOUN
O NOUN
N NOUN
T NOUN
E NOUN
N NOUN
T NOUN
S1 PROPN
. PUNCT
  SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
     SPACE
[ PUNCT
23 NUM
April PROPN
1993 NUM
] PUNCT
Rates PROPN
of ADP
Cesarean PROPN
Delivery PROPN
........................... PUNCT
  SPACE
1 NUM
     SPACE
Malaria PROPN
Among ADP
U.S. PROPN
Embassy PROPN
Personnel NOUN
................................. PUNCT
  SPACE
5 NUM
     SPACE
FDA PROPN
Approval PROPN
of ADP
Hib PROPN
Vaccine PROPN
for ADP
Children NOUN
/ SYM
Infants NOUN
..................... PUNCT
  SPACE
82 NUM
. PUNCT
  SPACE
Dental PROPN
News PROPN
     SPACE
Workshop PROPN
Explores PROPN
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
............... PUNCT
113 NUM
. PUNCT
  SPACE
Food PROPN
& CCONJ
Drug PROPN
Administration PROPN
News PROPN
     SPACE
FDA PROPN
Approves PROPN
Depo PROPN
Provera PROPN
, PUNCT
injectable ADJ
contraceptive NOUN
.................. PUNCT
14 NUM
     SPACE
New PROPN
Rules PROPN
Speed PROPN
Approval NOUN
of ADP
Drugs NOUN
for ADP
Life NOUN
- PUNCT
Threatening VERB
Illnesses PROPN
..... PUNCT
164 NUM
. PUNCT
  SPACE
Articles PROPN
     SPACE
Research PROPN
Promises PROPN
Preventing PROPN
/ SYM
Slowing VERB
Blindness PROPN
from ADP
Retinal PROPN
Disease PROPN
.. PUNCT
18 NUM
     SPACE
Affluent PROPN
Diet PROPN
Increases PROPN
Risk PROPN
Of ADP
Heart PROPN
Disease PROPN
........................ PUNCT
205 NUM
. PUNCT
  SPACE
General PROPN
Announcments PROPN
     SPACE
Publications PROPN
for ADP
Health PROPN
Professionals PROPN
from ADP
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
23 NUM
     SPACE
Publications NOUN
for ADP
Patients NOUN
Available ADJ
from ADP
National PROPN
Cancer PROPN
Institute PROPN
... PUNCT
306 NUM
. PUNCT
  SPACE
AIDS PROPN
News PROPN
Summaries PROPN
     SPACE
AIDS PROPN
Daily PROPN
Summary PROPN
for ADP
April PROPN
19 NUM
to ADP
April PROPN
23 NUM
, PUNCT
1993 NUM
.................... PUNCT
387 NUM
. PUNCT
  SPACE
AIDS PROPN
Statistics PROPN
     SPACE
Worldwide PROPN
AIDS PROPN
Statistics PROPN
............................................ PUNCT
48HICNet NUM
Medical PROPN
Newsletter PROPN
                                            SPACE
Page PROPN
    SPACE
iVolume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
- PUNCT
MMWR PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Rates NOUN
of ADP
Cesarean PROPN
Delivery PROPN
-- PUNCT
United PROPN
States PROPN
, PUNCT
1991 NUM
               SPACE
= X
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(15 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
23 NUM
, PUNCT
1993 NUM
     SPACE
Cesarean ADJ
deliveries NOUN
have AUX
accounted VERB
for ADP
nearly ADV
1 NUM
million NUM
of ADP
the DET
approximately ADV
4 NUM
million NUM
annual ADJ
deliveries NOUN
in ADP
the DET
United PROPN
States PROPN
since SCONJ
1986 NUM
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
The DET
cesarean ADJ
rate NOUN
in ADP
the DET
United PROPN
States PROPN
is AUX
the DET
third ADJ
highest ADJ
among ADP
21 NUM
reporting NOUN
countries NOUN
, PUNCT
exceeded VERB
only ADV
by ADP
Brazil PROPN
and CCONJ
Puerto PROPN
Rico PROPN
( PUNCT
1 NUM
) PUNCT
. PUNCT
This DET
report NOUN
presents VERB
data NOUN
on ADP
cesarean ADJ
deliveries NOUN
from ADP
CDC PROPN
's PART
National PROPN
Hospital PROPN
Discharge PROPN
Survey PROPN
( PUNCT
NHDS PROPN
) PUNCT
for ADP
1991 NUM
and CCONJ
compares VERB
these DET
data NOUN
with ADP
previous ADJ
years NOUN
. PUNCT
      SPACE
Data PROPN
on ADP
discharges NOUN
from ADP
short ADJ
- PUNCT
stay NOUN
, PUNCT
nonfederal ADJ
hospitals NOUN
have AUX
been AUX
collected VERB
annually ADV
since SCONJ
1965 NUM
in ADP
the DET
NHDS PROPN
, PUNCT
conducted VERB
by ADP
CDC PROPN
's PART
National PROPN
Center PROPN
for ADP
Health PROPN
Statistics PROPN
. PUNCT
For ADP
1991 NUM
, PUNCT
medical ADJ
and CCONJ
demographic ADJ
information NOUN
were AUX
abstracted VERB
from ADP
a DET
sample NOUN
of ADP
274,000 NUM
inpatients NOUN
discharged VERB
from ADP
484 NUM
participating VERB
hospitals NOUN
. PUNCT
The DET
1991 NUM
cesareans NOUN
and CCONJ
vaginal ADJ
births NOUN
after ADP
a DET
prior ADJ
cesarean NOUN
( PUNCT
VBAC PROPN
) PUNCT
presented VERB
in ADP
this DET
report NOUN
are AUX
based VERB
on ADP
weighted VERB
national ADJ
estimates NOUN
from ADP
the DET
NHDS PROPN
sample NOUN
of ADP
approximately ADV
31,000 NUM
( PUNCT
11 NUM
% NOUN
) PUNCT
women NOUN
discharged VERB
after ADP
delivery NOUN
. PUNCT
The DET
estimated VERB
numbers NOUN
of ADP
live ADJ
births NOUN
by ADP
type NOUN
of ADP
delivery NOUN
were AUX
calculated VERB
by ADP
applying VERB
cesarean ADJ
rates NOUN
from ADP
the DET
NHDS PROPN
to PART
live VERB
births NOUN
from ADP
national ADJ
vital ADJ
registration NOUN
data NOUN
. PUNCT
Therefore ADV
, PUNCT
estimates NOUN
of ADP
the DET
number NOUN
of ADP
cesareans PROPN
in ADP
this DET
report NOUN
will AUX
not PART
agree VERB
with ADP
previously ADV
published VERB
data NOUN
based VERB
solely ADV
on ADP
the DET
NHDS PROPN
( PUNCT
2 NUM
) PUNCT
. PUNCT
Stated VERB
differences NOUN
in ADP
this DET
analysis NOUN
are AUX
significant ADJ
at ADP
the DET
95 NUM
% NOUN
confidence NOUN
level NOUN
, PUNCT
based VERB
on ADP
the DET
two NUM
- PUNCT
tailed VERB
t NOUN
- PUNCT
test NOUN
with ADP
a DET
critical ADJ
value NOUN
of ADP
1.96 NUM
. PUNCT
      SPACE
In ADP
1991 NUM
, PUNCT
there PRON
were AUX
23.5 NUM
cesareans NOUN
per ADP
100 NUM
deliveries NOUN
, PUNCT
the DET
same ADJ
rate NOUN
as SCONJ
in ADP
1990 NUM
and CCONJ
similar ADJ
to ADP
rates NOUN
during ADP
1986 NUM
- SYM
1989 NUM
( PUNCT
Table NOUN
1 NUM
) PUNCT
. PUNCT
The DET
primary ADJ
cesarean ADJ
rate NOUN
( PUNCT
i.e. X
, PUNCT
number NOUN
of ADP
first ADJ
cesareans PROPN
per ADP
100 NUM
deliveries NOUN
to ADP
women NOUN
who PRON
had AUX
no DET
previous ADJ
cesareans NOUN
) PUNCT
for ADP
1986 NUM
- SYM
1991 NUM
also ADV
was AUX
stable ADJ
, PUNCT
ranging VERB
from ADP
16.8 NUM
to ADP
17.5 NUM
. PUNCT
In ADP
1991 NUM
, PUNCT
the DET
cesarean ADJ
rate NOUN
in ADP
the DET
South PROPN
was AUX
27.6 NUM
, PUNCT
significantly ADV
( PUNCT
p<0.05 NOUN
) PUNCT
higher ADJ
than SCONJ
the DET
rates NOUN
for ADP
the DET
West PROPN
( PUNCT
19.8 NUM
) PUNCT
, PUNCT
Midwest PROPN
( PUNCT
21.8 NUM
) PUNCT
, PUNCT
and CCONJ
Northeast PROPN
( PUNCT
22.6 NUM
) PUNCT
. PUNCT
Rates NOUN
were AUX
higher ADJ
for ADP
mothers NOUN
aged VERB
greater ADJ
than SCONJ
or CCONJ
equal ADJ
to ADP
30 NUM
years NOUN
than SCONJ
for ADP
younger ADJ
women NOUN
; PUNCT
in ADP
proprietary ADJ
hospitals NOUN
than SCONJ
in ADP
nonprofit ADJ
or CCONJ
government NOUN
hospitals NOUN
; PUNCT
in ADP
hospitals NOUN
with ADP
fewer ADJ
than SCONJ
300 NUM
beds NOUN
than SCONJ
in ADP
larger ADJ
hospitals NOUN
; PUNCT
and CCONJ
for ADP
deliveries NOUN
for ADP
which PRON
Blue PROPN
Cross PROPN
/ SYM
Blue PROPN
Shield PROPN
* PUNCT
and CCONJ
other ADJ
private ADJ
insurance NOUN
is AUX
the DET
expected VERB
source NOUN
of ADP
payment NOUN
than SCONJ
for ADP
other ADJ
sources NOUN
of ADP
payment NOUN
( PUNCT
Table NOUN
2 NUM
) PUNCT
. PUNCT
The DET
same ADJ
pattern NOUN
characterized VERB
primary ADJ
cesarean ADJ
deliveries NOUN
. PUNCT
      SPACE
Since SCONJ
the DET
early ADJ
1970s NOUN
, PUNCT
the DET
number NOUN
and CCONJ
percentage NOUN
of ADP
births NOUN
to ADP
older ADJ
women NOUN
increased VERB
; PUNCT
however ADV
, PUNCT
if SCONJ
the DET
age NOUN
distribution NOUN
of ADP
mothers NOUN
in ADP
1991 NUM
had AUX
remained VERB
the DET
same ADJ
as SCONJ
in ADP
1986 NUM
, PUNCT
the DET
overall ADJ
cesarean ADJ
rate NOUN
in ADP
1991 NUM
would AUX
have AUX
been AUX
23.3 NUM
, PUNCT
essentially ADV
the DET
same ADJ
as SCONJ
the DET
23.5 NUM
observed VERB
. PUNCT
      SPACE
Based PROPN
on ADP
the DET
NHDS NOUN
, PUNCT
of ADP
the DET
approximately ADV
4,111,000 NUM
live ADJ
births NOUN
in ADP
1991 NUM
, PUNCT
an DET
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
1Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993estimated NUM
966,000 NUM
( PUNCT
23.5 NUM
% NOUN
) PUNCT
were AUX
by ADP
cesarean ADJ
delivery NOUN
. PUNCT
Of ADP
these DET
, PUNCT
an DET
estimated VERB
338,000 NUM
( PUNCT
35.0 NUM
% NOUN
) PUNCT
births NOUN
were AUX
repeat NOUN
cesareans NOUN
, PUNCT
and CCONJ
628,000 NUM
( PUNCT
65.0 NUM
% NOUN
) PUNCT
were AUX
primary ADJ
cesareans NOUN
. PUNCT
Since SCONJ
1986 NUM
, PUNCT
approximately ADV
600,000 NUM
primary ADJ
cesareans NOUN
have AUX
been AUX
performed VERB
annually ADV
. PUNCT
In ADP
1986 NUM
, PUNCT
8.5 NUM
% NOUN
of ADP
women NOUN
who PRON
had AUX
a DET
previous ADJ
cesarean NOUN
delivered VERB
vaginally ADV
, PUNCT
compared VERB
with ADP
24.2 NUM
% NOUN
in ADP
1991 NUM
. PUNCT
Of ADP
all DET
cesareans NOUN
in ADP
1991 NUM
, PUNCT
35.0 NUM
% NOUN
were AUX
associated VERB
with ADP
a DET
previous ADJ
cesarean NOUN
, PUNCT
30.4 NUM
% NOUN
with ADP
dystocia PROPN
( PUNCT
i.e. X
, PUNCT
failure NOUN
of ADP
labor NOUN
to PART
progress VERB
) PUNCT
, PUNCT
11.7 NUM
% NOUN
with ADP
breech ADJ
presentation NOUN
, PUNCT
9.2 NUM
% NOUN
with ADP
fetal ADJ
distress NOUN
, PUNCT
and CCONJ
13.7 NUM
% NOUN
with ADP
all DET
other ADJ
specified VERB
complications NOUN
. PUNCT
      SPACE
The DET
average ADJ
hospital NOUN
stay NOUN
for ADP
all DET
deliveries NOUN
in ADP
1991 NUM
was AUX
2.8 NUM
days NOUN
. PUNCT
In ADP
comparison NOUN
, PUNCT
the DET
hospital NOUN
stay VERB
for ADP
a DET
primary ADJ
cesarean ADJ
delivery NOUN
was AUX
4.5 NUM
days NOUN
, PUNCT
and CCONJ
for ADP
a DET
repeat NOUN
cesarean NOUN
, PUNCT
4.2 NUM
days NOUN
-- PUNCT
nearly ADV
twice DET
the DET
duration NOUN
for ADP
VBAC PROPN
deliveries NOUN
( PUNCT
2.2 NUM
days NOUN
) PUNCT
or CCONJ
for ADP
vaginal ADJ
deliveries NOUN
that PRON
were AUX
not PART
VBACs NOUN
( PUNCT
2.3 NUM
days NOUN
) PUNCT
. PUNCT
In ADP
1986 NUM
, PUNCT
the DET
average ADJ
hospital NOUN
stay NOUN
for ADP
all DET
deliveries NOUN
was AUX
3.2 NUM
days NOUN
, PUNCT
for ADP
primary ADJ
cesareans NOUN
5.2 NUM
days NOUN
, PUNCT
for ADP
repeat NOUN
cesareans NOUN
4.7 NUM
days NOUN
, PUNCT
and CCONJ
for ADP
VBAC NOUN
and CCONJ
non ADJ
- ADJ
VBAC ADJ
vaginal ADJ
deliveries NOUN
2.7 NUM
and CCONJ
2.6 NUM
days NOUN
, PUNCT
respectively ADV
. PUNCT
Reported VERB
by ADP
: PUNCT
Office PROPN
of ADP
Vital PROPN
and CCONJ
Health PROPN
Statistics PROPN
Systems PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Health PROPN
Statistics PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
The DET
cesarean ADJ
rate NOUN
in ADP
the DET
United PROPN
States PROPN
steadily ADV
increased VERB
from ADP
1965 NUM
through ADP
1986 NUM
; PUNCT
however ADV
, PUNCT
the DET
findings NOUN
in ADP
this DET
report NOUN
indicate VERB
that SCONJ
rates NOUN
have AUX
been AUX
stable ADJ
since SCONJ
1986 NUM
( PUNCT
3 NUM
) PUNCT
. PUNCT
Because SCONJ
there PRON
is AUX
little ADJ
evidence NOUN
that SCONJ
maternal ADJ
and CCONJ
child NOUN
health NOUN
status NOUN
has AUX
improved VERB
during ADP
this DET
time NOUN
and CCONJ
because SCONJ
cesareans PROPN
are AUX
associated VERB
with ADP
an DET
increased VERB
risk NOUN
for ADP
complications NOUN
of ADP
childbirth NOUN
, PUNCT
a DET
national ADJ
health NOUN
objective NOUN
for ADP
the DET
year NOUN
2000 NUM
( PUNCT
4 NUM
) PUNCT
is AUX
to PART
reduce VERB
the DET
overall ADJ
cesarean ADJ
rate NOUN
to ADP
15 NUM
or CCONJ
fewer ADJ
per ADP
100 NUM
deliveries NOUN
and CCONJ
the DET
primary ADJ
cesarean ADJ
rate NOUN
to ADP
12 NUM
or CCONJ
fewer ADJ
per ADP
100 NUM
deliveries NOUN
( PUNCT
objective ADJ
14.8 NUM
) PUNCT
. PUNCT
      SPACE
Postpartum PROPN
complications NOUN
-- PUNCT
including VERB
urinary ADJ
tract NOUN
and CCONJ
wound NOUN
infections NOUN
-- PUNCT
may AUX
account VERB
in ADP
part NOUN
for ADP
the DET
longer ADJ
hospital NOUN
stays VERB
for ADP
cesarean ADJ
deliveries NOUN
than SCONJ
for ADP
vaginal ADJ
births NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
Moreover ADV
, PUNCT
the DET
prolonged ADJ
hospital NOUN
stays VERB
for ADP
cesarean ADJ
deliveries NOUN
substantially ADV
increase VERB
health NOUN
- PUNCT
care NOUN
costs NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
in ADP
1991 NUM
, PUNCT
the DET
average ADJ
costs NOUN
for ADP
cesarean ADJ
and CCONJ
vaginal ADJ
deliveries NOUN
were AUX
$ SYM
7826 NUM
and CCONJ
$ SYM
4720 NUM
, PUNCT
respectively ADV
. PUNCT
The DET
additional ADJ
cost NOUN
for ADP
each DET
cesarean ADJ
delivery NOUN
includes VERB
$ SYM
611 NUM
for ADP
physician NOUN
fees NOUN
and CCONJ
$ SYM
2495 NUM
for ADP
hospital NOUN
charges NOUN
( PUNCT
6 NUM
) PUNCT
. PUNCT
If SCONJ
the DET
cesarean ADJ
rate NOUN
in ADP
1991 NUM
had AUX
been AUX
15 NUM
( PUNCT
the DET
year NOUN
2000 NUM
objective NOUN
) PUNCT
instead ADV
of ADP
23.5 NUM
, PUNCT
the DET
number NOUN
of ADP
cesarean ADJ
births NOUN
would AUX
have AUX
decreased VERB
by ADP
349,000 NUM
( PUNCT
617,000 NUM
versus ADP
966,000 NUM
) PUNCT
, PUNCT
resulting VERB
in ADP
a DET
savings NOUN
of ADP
more ADJ
than SCONJ
$ SYM
1 NUM
billion NUM
in ADP
physician NOUN
fees NOUN
and CCONJ
hospital NOUN
charges NOUN
. PUNCT
      SPACE
Despite SCONJ
the DET
steady ADJ
increase NOUN
in ADP
VBAC PROPN
rates NOUN
since SCONJ
1986 NUM
, PUNCT
several ADJ
factors NOUN
may AUX
impede VERB
progress NOUN
toward ADP
the DET
year NOUN
2000 NUM
national PROPN
health PROPN
objectives NOUN
for ADP
cesarean ADJ
delivery NOUN
. PUNCT
For ADP
example NOUN
, PUNCT
VBAC PROPN
rates NOUN
substantially ADV
reflect VERB
the DET
number NOUN
of ADP
women NOUN
offered VERB
trial NOUN
of ADP
labor NOUN
, PUNCT
which PRON
has AUX
been AUX
increasingly ADV
encouraged VERB
since SCONJ
1982 NUM
( PUNCT
7 NUM
) PUNCT
. PUNCT
Of ADP
women NOUN
who PRON
are AUX
offered VERB
a DET
trial NOUN
of ADP
labor NOUN
, PUNCT
50%-70 NUM
% NOUN
could AUX
deliver VERB
vaginally ADV
( PUNCT
7 NUM
) PUNCT
--a NOUN
level NOUN
already ADV
achieved VERB
by ADP
many ADJ
hospitals NOUN
( PUNCT
8) NUM
. PUNCT
Trial NOUN
of ADP
labor NOUN
was AUX
routinely ADV
offered VERB
in ADP
46 NUM
% NOUN
of ADP
hospitals NOUN
surveyed VERB
in ADP
1984 NUM
( PUNCT
the DET
most ADV
recent ADJ
year NOUN
for ADP
which PRON
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
2Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993national NUM
data NOUN
are AUX
available ADJ
) PUNCT
( PUNCT
9 NUM
) PUNCT
when ADV
the DET
VBAC NOUN
rate NOUN
( PUNCT
according VERB
to ADP
NHDS PROPN
data NOUN
) PUNCT
was AUX
5.7 NUM
% NOUN
. PUNCT
The DET
year NOUN
2000 NUM
objective ADJ
specifies NOUN
a DET
VBAC NOUN
rate NOUN
of ADP
35 NUM
% NOUN
, PUNCT
based VERB
on ADP
all DET
women NOUN
who PRON
had AUX
a DET
prior ADJ
cesarean NOUN
, PUNCT
regardless ADV
of ADP
whether SCONJ
a DET
trial NOUN
of ADP
labor NOUN
was AUX
attempted VERB
. PUNCT
To PART
reach VERB
the DET
overall ADJ
cesarean ADJ
rate NOUN
goal NOUN
, PUNCT
however ADV
, PUNCT
increases NOUN
in ADP
the DET
VBAC NOUN
rate NOUN
will AUX
need VERB
to PART
be AUX
combined VERB
with ADP
a DET
substantial ADJ
reduction NOUN
in ADP
the DET
primary ADJ
rate NOUN
. PUNCT
      SPACE
One NUM
hospital NOUN
succeeded VERB
in ADP
reducing VERB
the DET
rate NOUN
of ADP
cesarean ADJ
delivery NOUN
by ADP
applying VERB
objective ADJ
criteria NOUN
for ADP
the DET
four NUM
most ADV
common ADJ
indications NOUN
for ADP
cesarean ADJ
delivery NOUN
, PUNCT
by ADP
requiring VERB
a DET
second ADJ
opinion NOUN
, PUNCT
and CCONJ
by ADP
instituting VERB
a DET
peer NOUN
- PUNCT
review NOUN
process NOUN
( PUNCT
10 NUM
) PUNCT
. PUNCT
Other ADJ
recommendations NOUN
for ADP
decreasing VERB
cesarean ADJ
delivery NOUN
rates NOUN
include VERB
eliminating VERB
incentives NOUN
for ADP
physicians NOUN
and CCONJ
hospitals NOUN
by ADP
equalizing VERB
reimbursement NOUN
for ADP
vaginal ADJ
and CCONJ
cesarean ADJ
deliveries NOUN
; PUNCT
public ADJ
dissemination NOUN
of ADP
physician- PROPN
and CCONJ
hospital NOUN
- PUNCT
specific ADJ
cesarean ADJ
delivery NOUN
rates NOUN
to PART
increase VERB
public ADJ
awareness NOUN
of ADP
differences NOUN
in ADP
practices NOUN
; PUNCT
and CCONJ
addressing VERB
malpractice NOUN
concerns NOUN
, PUNCT
which PRON
may AUX
be AUX
an DET
important ADJ
factor NOUN
in ADP
maintaining VERB
the DET
high ADJ
rates NOUN
of ADP
cesarean ADJ
delivery NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
References1 ADJ
. PUNCT
Notzon PROPN
FC PROPN
. PUNCT
International ADJ
differences NOUN
in ADP
the DET
use NOUN
of ADP
obstetric ADJ
interventions NOUN
. PUNCT
JAMA PROPN
1990 NUM
; PUNCT
263:3286 NUM
- SYM
91 NUM
. PUNCT
2 NUM
. PUNCT
Graves PROPN
EJ PROPN
, PUNCT
NCHS PROPN
. PUNCT
1991 NUM
Summary PROPN
: PUNCT
National PROPN
Hospital PROPN
Discharge PROPN
Survey PROPN
. PUNCT
Hyattsville PROPN
, PUNCT
Maryland PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
CDC PROPN
, PUNCT
1993 NUM
. PUNCT
( PUNCT
Advance NOUN
data NOUN
no NOUN
. NOUN
227 NUM
) PUNCT
. PUNCT
3 X
. PUNCT
Taffel PROPN
SM PROPN
, PUNCT
Placek PROPN
PJ PROPN
, PUNCT
Kosary PROPN
CL PROPN
. PUNCT
U.S. PROPN
cesarean ADJ
section NOUN
rates NOUN
, PUNCT
1990 NUM
: PUNCT
an DET
update NOUN
. PUNCT
Birth NOUN
1992;19:21 PROPN
- PUNCT
2 NUM
. PUNCT
4 NUM
. PUNCT
Public PROPN
Health PROPN
Service PROPN
. PUNCT
Healthy ADJ
people NOUN
2000 NUM
: PUNCT
national PROPN
health PROPN
promotion PROPN
and CCONJ
disease NOUN
prevention PROPN
objectives NOUN
-- PUNCT
full ADJ
report NOUN
, PUNCT
with ADP
commentary NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1991 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
PHS)91 PROPN
- PUNCT
50212 NUM
. PUNCT
5 NUM
. PUNCT
Danforth PROPN
DN PROPN
. PUNCT
Cesarean ADJ
section NOUN
. PUNCT
JAMA PROPN
1985;253:811 NUM
- SYM
8 NUM
. PUNCT
6 NUM
. PUNCT
Hospital PROPN
Insurance PROPN
Association PROPN
of ADP
America PROPN
. PUNCT
Table NOUN
4.15 NUM
: PUNCT
cost NOUN
of ADP
maternity NOUN
care NOUN
, PUNCT
physicians NOUN
' PART
fees NOUN
, PUNCT
and CCONJ
hospital NOUN
charges NOUN
, PUNCT
by ADP
census NOUN
region NOUN
, PUNCT
based VERB
on ADP
Consumer PROPN
Price PROPN
Index PROPN
( PUNCT
1991 NUM
) PUNCT
. PUNCT
In ADP
: PUNCT
1992 NUM
Source NOUN
book NOUN
of ADP
health NOUN
insurance NOUN
data NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
Hospital PROPN
Insurance PROPN
Association PROPN
of ADP
America PROPN
, PUNCT
1992 NUM
. PUNCT
7 NUM
. PUNCT
Committee PROPN
on ADP
Obstetrics PROPN
. PUNCT
ACOG PROPN
committee NOUN
opinion NOUN
no NOUN
. PROPN
64 NUM
: PUNCT
guidelines NOUN
for ADP
vaginal ADJ
delivery NOUN
after ADP
a DET
previous ADJ
cesarean ADJ
birth NOUN
. PUNCT
Washington PROPN
, PUNCT
DC PROPN
: PUNCT
American PROPN
College PROPN
of ADP
Obstetricians PROPN
and CCONJ
Gynecologists PROPN
, PUNCT
1988 NUM
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
3Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
19938 NUM
. PUNCT
Rosen PROPN
MG PROPN
, PUNCT
Dickinson PROPN
JC PROPN
. PUNCT
Vaginal ADJ
birth NOUN
after ADP
cesarean NOUN
: PUNCT
a DET
meta NOUN
- PUNCT
analysis NOUN
of ADP
indicators NOUN
for ADP
success NOUN
. PUNCT
Obstet PROPN
Gynecol PROPN
1990;76:865 PROPN
- SYM
9 NUM
. NOUN
9 NUM
. PUNCT
Shiono PROPN
PH PROPN
, PUNCT
Fielden PROPN
JG PROPN
, PUNCT
McNellis PROPN
D PROPN
, PUNCT
Rhoads VERB
GG PROPN
, PUNCT
Pearse PROPN
WH PROPN
. PUNCT
Recent ADJ
trends NOUN
in ADP
cesarean ADJ
birth NOUN
and CCONJ
trial NOUN
of ADP
labor NOUN
rates NOUN
in ADP
the DET
United PROPN
States PROPN
. PUNCT
JAMA PROPN
1987;257:494 PROPN
- SYM
7 NUM
. PUNCT
10 NUM
. PUNCT
Myers PROPN
SA PROPN
, PUNCT
Gleicher PROPN
N. PROPN
A DET
successful ADJ
program NOUN
to PART
lower VERB
cesarean ADJ
- PUNCT
section NOUN
rates NOUN
. PUNCT
N PROPN
Engl PROPN
J PROPN
Med PROPN
1988;319:1511 NUM
- SYM
6 NUM
. PUNCT
* PUNCT
Use NOUN
of ADP
trade NOUN
names NOUN
and CCONJ
commercial ADJ
sources NOUN
is AUX
for ADP
identification NOUN
only ADV
and CCONJ
does AUX
not PART
imply VERB
endorsement NOUN
by ADP
the DET
Public PROPN
Health PROPN
Service PROPN
or CCONJ
the DET
U.S. PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
4Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
         SPACE
Malaria PROPN
Among ADP
U.S. PROPN
Embassy PROPN
Personnel PROPN
-- PUNCT
Kampala PROPN
, PUNCT
Uganda PROPN
, PUNCT
1992 NUM
         SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(15 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
23 NUM
, PUNCT
1993 NUM
     SPACE
The DET
treatment NOUN
and CCONJ
prevention NOUN
of ADP
malaria PROPN
in ADP
Africa PROPN
has AUX
become VERB
a DET
challenging ADJ
and CCONJ
complex ADJ
problem NOUN
because SCONJ
of ADP
increasing VERB
drug NOUN
resistance NOUN
. PUNCT
Although SCONJ
the DET
risk NOUN
of ADP
acquiring VERB
malaria NOUN
for ADP
U.S. PROPN
citizens NOUN
and CCONJ
their PRON
dependents NOUN
stationed VERB
overseas ADV
generally ADV
has AUX
been AUX
low ADJ
, PUNCT
this DET
risk NOUN
varies VERB
substantially ADV
and CCONJ
unpredictably ADV
. PUNCT
During ADP
May PROPN
1992 NUM
, PUNCT
the DET
Office PROPN
of ADP
Medical PROPN
Services PROPN
, PUNCT
Department PROPN
of ADP
State PROPN
( PUNCT
OMS PROPN
/ SYM
DOS PROPN
) PUNCT
, PUNCT
and CCONJ
CDC PROPN
were AUX
notified VERB
of ADP
an DET
increased VERB
number NOUN
of ADP
malaria NOUN
cases NOUN
among ADP
official ADJ
U.S. PROPN
personnel NOUN
stationed VERB
in ADP
Kampala PROPN
, PUNCT
Uganda PROPN
. PUNCT
A DET
review NOUN
of ADP
the DET
health NOUN
records NOUN
from ADP
the DET
Embassy PROPN
Health PROPN
Unit PROPN
( PUNCT
EHU PROPN
) PUNCT
in ADP
Kampala PROPN
indicated VERB
that SCONJ
27 NUM
cases NOUN
of ADP
malaria NOUN
were AUX
diagnosed VERB
in ADP
official ADJ
personnel NOUN
from ADP
March PROPN
through ADP
June PROPN
1992 NUM
compared VERB
with ADP
two NUM
cases NOUN
during ADP
the DET
same ADJ
period NOUN
in ADP
1991 NUM
. PUNCT
EHU PROPN
, PUNCT
OMS PROPN
/ SYM
DOS PROPN
, PUNCT
and CCONJ
CDC PROPN
conducted VERB
an DET
investigation NOUN
to PART
confirm VERB
all DET
reported VERB
malaria NOUN
cases NOUN
and CCONJ
identify VERB
potential ADJ
risk NOUN
factors NOUN
for ADP
malaria NOUN
among ADP
U.S. PROPN
Embassy PROPN
personnel NOUN
. PUNCT
This DET
report NOUN
summarizes VERB
the DET
results NOUN
of ADP
the DET
investigation NOUN
. PUNCT
      SPACE
Malaria PROPN
blood NOUN
smears NOUN
from ADP
25 NUM
of ADP
the DET
27 NUM
reported VERB
case NOUN
- PUNCT
patients NOUN
were AUX
available ADJ
for ADP
review NOUN
by ADP
OMS PROPN
/ SYM
DOS PROPN
and CCONJ
CDC PROPN
. PUNCT
A DET
case NOUN
of ADP
malaria PROPN
was AUX
confirmed VERB
if SCONJ
the DET
slide NOUN
was AUX
positive ADJ
for ADP
Plasmodium PROPN
sp PROPN
. PUNCT
Of ADP
the DET
25 NUM
persons NOUN
, PUNCT
17 NUM
were AUX
slide NOUN
- PUNCT
confirmed VERB
as SCONJ
having VERB
malaria NOUN
. PUNCT
      SPACE
A PROPN
questionnaire NOUN
was AUX
distributed VERB
to ADP
all DET
persons NOUN
served VERB
by ADP
the DET
EHU PROPN
to PART
obtain VERB
information NOUN
about ADP
residence NOUN
, PUNCT
activities NOUN
, PUNCT
use NOUN
of ADP
malaria NOUN
chemoprophylaxis NOUN
, PUNCT
and CCONJ
use NOUN
of ADP
personal ADJ
protection NOUN
measures NOUN
( PUNCT
i.e. X
, PUNCT
using VERB
bednets NOUN
and CCONJ
insect ADJ
repellents NOUN
, PUNCT
having VERB
window NOUN
and CCONJ
door NOUN
screens NOUN
, PUNCT
and CCONJ
wearing VERB
long ADJ
sleeves NOUN
and CCONJ
pants NOUN
in ADP
the DET
evening NOUN
) PUNCT
. PUNCT
Of ADP
the DET
157 NUM
persons NOUN
eligible ADJ
for ADP
the DET
survey NOUN
, PUNCT
128 NUM
( PUNCT
82 NUM
% NOUN
) PUNCT
responded VERB
. PUNCT
      SPACE
Risk PROPN
for ADP
malaria PROPN
was AUX
not PART
associated VERB
with ADP
sex NOUN
or CCONJ
location NOUN
of ADP
residence NOUN
in ADP
Kampala PROPN
. PUNCT
Although SCONJ
the DET
risk NOUN
for ADP
malaria PROPN
was AUX
higher ADJ
among ADP
children NOUN
aged VERB
less ADV
than SCONJ
or CCONJ
equal ADJ
to ADP
15 NUM
years NOUN
( PUNCT
6/32 NUM
19 NUM
% NOUN
) PUNCT
than SCONJ
among ADP
persons NOUN
greater ADJ
than SCONJ
15 NUM
years NOUN
( PUNCT
11/94 NUM
12 NUM
% NOUN
) PUNCT
, PUNCT
this DET
difference NOUN
was AUX
not PART
significant ADJ
( PUNCT
relative ADJ
risk NOUN
RR=1.6 NUM
; PUNCT
95 NUM
% NOUN
confidence NOUN
interval NOUN
CI=0.6 PROPN
- SYM
4.0 NUM
) PUNCT
. PUNCT
Eighty NUM
- PUNCT
two NUM
percent NOUN
of ADP
the DET
cases NOUN
occurred VERB
among ADP
persons NOUN
who PRON
had AUX
been AUX
living VERB
in ADP
Kampala PROPN
for ADP
1 NUM
- SYM
5 NUM
years NOUN
, PUNCT
compared VERB
with ADP
those DET
living VERB
there ADV
less ADJ
than SCONJ
1 NUM
year NOUN
. PUNCT
Travel VERB
outside ADP
of ADP
the DET
Kampala PROPN
area NOUN
to ADP
more ADJ
rural ADJ
settings NOUN
was AUX
not PART
associated VERB
with ADP
increased VERB
risk NOUN
for ADP
malaria PROPN
. PUNCT
      SPACE
Four PROPN
malaria NOUN
chemoprophylaxis NOUN
regimens NOUN
were AUX
used VERB
by ADP
persons NOUN
who PRON
participated VERB
in ADP
the DET
survey NOUN
: PUNCT
mefloquine PROPN
, PUNCT
chloroquine NOUN
and CCONJ
proguanil PROPN
, PUNCT
chloroquine NOUN
alone ADV
, PUNCT
and CCONJ
proguanil VERB
alone ADV
. PUNCT
In ADP
addition NOUN
, PUNCT
23 NUM
( PUNCT
18 NUM
% NOUN
) PUNCT
persons NOUN
who PRON
responded VERB
were AUX
not PART
using VERB
any DET
malaria NOUN
chemoprophylaxis NOUN
. PUNCT
The DET
risk NOUN
for ADP
malaria PROPN
was AUX
significantly ADV
lower ADJ
among ADP
persons NOUN
using VERB
either CCONJ
mefloquine NOUN
or CCONJ
chloroquine NOUN
and CCONJ
proguanil NOUN
( PUNCT
8/88 NUM
9 NUM
% NOUN
) PUNCT
than SCONJ
among ADP
persons NOUN
using VERB
the DET
other ADJ
regimens NOUN
or CCONJ
no DET
prophylaxis PROPN
( PUNCT
9/37 NUM
24 NUM
% NOUN
) PUNCT
( PUNCT
RR=0.4 PROPN
; PUNCT
95 NUM
% NOUN
CI=0.2 NUM
- SYM
0.9 NUM
) PUNCT
. PUNCT
Twelve NUM
persons NOUN
not PART
using VERB
prophylaxis PROPN
reported VERB
side NOUN
effects NOUN
or CCONJ
fear NOUN
of ADP
possible ADJ
side NOUN
effects NOUN
as SCONJ
a DET
reason NOUN
. PUNCT
      SPACE
The DET
risk NOUN
for ADP
malaria PROPN
was AUX
lower ADJ
among ADP
persons NOUN
who PRON
reported VERB
using VERB
bednets NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
5Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993all NUM
or CCONJ
most ADJ
of ADP
the DET
time NOUN
( PUNCT
2/27 NUM
7 NUM
% NOUN
) PUNCT
than SCONJ
among ADP
persons NOUN
who PRON
sometimes ADV
or CCONJ
rarely ADV
used VERB
bednets NOUN
( PUNCT
15/99 NUM
15 NUM
% NOUN
) PUNCT
( PUNCT
RR=0.5 PROPN
; PUNCT
95 NUM
% NOUN
CI=0.1 PROPN
- SYM
2.0 NUM
) PUNCT
. PUNCT
The DET
risk NOUN
for ADP
malaria PROPN
was AUX
also ADV
lower ADJ
among ADP
persons NOUN
who PRON
consistently ADV
used VERB
insect ADJ
repellent NOUN
in ADP
the DET
evening NOUN
( PUNCT
0/16 NUM
) PUNCT
, PUNCT
compared VERB
with ADP
those DET
who PRON
rarely ADV
used VERB
repellent NOUN
( PUNCT
17/110 NUM
15 NUM
% NOUN
) PUNCT
( PUNCT
RR=0 NOUN
; PUNCT
upper ADJ
95 NUM
% NOUN
confidence NOUN
limit=1.2 NOUN
) PUNCT
. PUNCT
Risk NOUN
for ADP
malaria NOUN
was AUX
not PART
associated VERB
with ADP
failure NOUN
to PART
have AUX
window NOUN
or CCONJ
door NOUN
screens NOUN
or CCONJ
wear VERB
long ADJ
sleeves NOUN
or CCONJ
pants NOUN
in ADP
the DET
evening NOUN
. PUNCT
      SPACE
As SCONJ
a DET
result NOUN
of ADP
this DET
investigation NOUN
, PUNCT
EHU PROPN
staff NOUN
reviewed VERB
with ADP
all DET
personnel NOUN
the DET
need NOUN
to PART
use VERB
and CCONJ
comply VERB
with ADP
the DET
recommended VERB
malaria PROPN
chemoprophylaxis PROPN
regimens VERB
. PUNCT
EHU PROPN
staff NOUN
also ADV
emphasized VERB
the DET
need NOUN
to PART
use VERB
personal ADJ
protection NOUN
measures NOUN
and CCONJ
made VERB
plans NOUN
to PART
obtain VERB
insecticide NOUN
- PUNCT
impregnated VERB
bednets NOUN
and CCONJ
to PART
provide VERB
window NOUN
and CCONJ
door NOUN
screens NOUN
for ADP
all DET
personnel NOUN
. PUNCT
Reported VERB
by ADP
: PUNCT
U.S. PROPN
Embassy PROPN
Health PROPN
Unit PROPN
, PUNCT
Kampala PROPN
, PUNCT
Uganda PROPN
; PUNCT
Office PROPN
of ADP
Medical PROPN
Svcs PROPN
, PUNCT
Dept PROPN
of ADP
State PROPN
, PUNCT
Washington PROPN
, PUNCT
D.C. PROPN
Malaria PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Parasitic PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
Editorial PROPN
Note NOUN
: PUNCT
In ADP
Uganda PROPN
, PUNCT
the DET
increase NOUN
in ADP
malaria NOUN
among ADP
U.S. PROPN
personnel NOUN
was AUX
attributed VERB
to ADP
poor ADJ
adherence NOUN
to ADP
both DET
recommended VERB
malaria PROPN
chemoprophylaxis PROPN
regimens NOUN
and CCONJ
use NOUN
of ADP
personal ADJ
protection NOUN
measures NOUN
during ADP
a DET
period NOUN
of ADP
increased VERB
malaria NOUN
transmission NOUN
and CCONJ
intensified VERB
chloroquine NOUN
resistance NOUN
in ADP
sub ADJ
- ADJ
Saharan PROPN
Africa PROPN
. PUNCT
The DET
findings NOUN
in ADP
this DET
report NOUN
underscore VERB
the DET
need NOUN
to PART
provide VERB
initial ADJ
and CCONJ
continued ADJ
counseling NOUN
regarding VERB
malaria PROPN
prevention NOUN
for ADP
persons NOUN
living VERB
abroad ADV
in ADP
malaria NOUN
- PUNCT
endemic ADJ
areas NOUN
-- PUNCT
preventive ADJ
measures NOUN
that PRON
are AUX
also ADV
important ADJ
for ADP
short ADJ
- PUNCT
term NOUN
travelers NOUN
to ADP
such ADJ
areas NOUN
. PUNCT
      SPACE
Mefloquine PROPN
is AUX
an DET
effective ADJ
prophylaxis PROPN
regimen NOUN
in ADP
Africa PROPN
and CCONJ
in ADP
most ADJ
other ADJ
areas NOUN
with ADP
chloroquine NOUN
- PUNCT
resistant ADJ
P. PROPN
falciparum NOUN
; PUNCT
however ADV
, PUNCT
in ADP
some DET
areas NOUN
( PUNCT
e.g. ADV
, PUNCT
Thailand PROPN
) PUNCT
, PUNCT
resistance NOUN
to ADP
mefloquine PROPN
may AUX
limit VERB
its PRON
effectiveness NOUN
. PUNCT
In ADP
Africa PROPN
, PUNCT
the DET
efficacy NOUN
of ADP
mefloquine NOUN
, PUNCT
compared VERB
with ADP
chloroquine NOUN
alone ADV
, PUNCT
in ADP
preventing VERB
infection NOUN
with ADP
P. PROPN
falciparum NOUN
is AUX
92 NUM
% NOUN
( PUNCT
1 NUM
) PUNCT
. PUNCT
Mefloquine PROPN
is AUX
safe ADJ
and CCONJ
well ADV
tolerated VERB
when ADV
given VERB
at ADP
250 NUM
mg NOUN
per ADP
week NOUN
over ADP
a DET
2-year NUM
period NOUN
. PUNCT
The DET
risk NOUN
for ADP
serious ADJ
adverse ADJ
reactions NOUN
possibly ADV
associated VERB
with ADP
mefloquine PROPN
prophylaxis PROPN
( PUNCT
e.g. ADV
, PUNCT
psychosis NOUN
and CCONJ
convulsions NOUN
) PUNCT
is AUX
low ADJ
( PUNCT
i.e. X
, PUNCT
1.3 NUM
- SYM
1.9 NUM
episodes NOUN
per ADP
100,000 NUM
users NOUN
2 NUM
) PUNCT
, PUNCT
while SCONJ
the DET
risk NOUN
for ADP
less ADV
severe ADJ
adverse ADJ
reactions NOUN
( PUNCT
e.g. ADV
, PUNCT
dizziness NOUN
, PUNCT
gastrointestinal ADJ
complaints NOUN
, PUNCT
and CCONJ
sleep NOUN
disturbances NOUN
) PUNCT
is AUX
similar ADJ
to ADP
that DET
for ADP
other ADJ
antimalarial ADJ
chemoprophylactics NOUN
( PUNCT
1 NUM
) PUNCT
. PUNCT
      SPACE
Doxycycline PROPN
has AUX
similar ADJ
prophylactic ADJ
efficacy NOUN
to ADP
mefloquine VERB
, PUNCT
but CCONJ
the DET
need NOUN
for ADP
daily ADJ
dosing NOUN
may AUX
reduce VERB
compliance NOUN
with ADP
and CCONJ
effectiveness NOUN
of ADP
this DET
regimen NOUN
( PUNCT
3,4 NUM
) PUNCT
. PUNCT
Chloroquine PROPN
alone ADV
is AUX
not PART
effective ADJ
as SCONJ
prophylaxis PROPN
in ADP
areas NOUN
of ADP
intense ADJ
chloroquine NOUN
resistance NOUN
( PUNCT
e.g. ADV
, PUNCT
Southeast PROPN
Asia PROPN
and CCONJ
Africa PROPN
) PUNCT
. PUNCT
In ADP
Africa PROPN
, PUNCT
for ADP
persons NOUN
who PRON
can AUX
not PART
take VERB
mefloquine NOUN
or CCONJ
doxycycline NOUN
, PUNCT
chloroquine NOUN
and CCONJ
proguanil NOUN
is AUX
an DET
alternative NOUN
, PUNCT
although SCONJ
less ADV
effective ADJ
, PUNCT
regimen PROPN
. PUNCT
Chloroquine PROPN
should AUX
be AUX
used VERB
for ADP
malaria PROPN
prevention NOUN
in ADP
areas NOUN
only ADV
where ADV
chloroquine NOUN
- PUNCT
resistant ADJ
P. PROPN
falciparum NOUN
has AUX
not PART
been AUX
reported VERB
. PUNCT
      SPACE
Country NOUN
- PUNCT
specific ADJ
recommendations NOUN
for ADP
preventing VERB
malaria NOUN
and CCONJ
information NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
6Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993on NUM
the DET
dosage NOUN
and CCONJ
precautions NOUN
for ADP
malaria PROPN
chemoprophylaxis PROPN
regimens NOUN
are AUX
available ADJ
from ADP
Health PROPN
Information PROPN
for ADP
International PROPN
Travel PROPN
, PUNCT
1992 NUM
( PUNCT
i.e. X
, PUNCT
" PUNCT
yellow ADJ
book NOUN
" PUNCT
) PUNCT
( PUNCT
5 NUM
) PUNCT
or CCONJ
24 NUM
hours NOUN
a DET
day NOUN
by ADP
telephone NOUN
or CCONJ
fax NOUN
, PUNCT
( PUNCT
404 NUM
) PUNCT
332 NUM
- SYM
4555 NUM
. PUNCT
References1 ADJ
. PUNCT
Lobel PROPN
HO PROPN
, PUNCT
Miani PROPN
M PROPN
, PUNCT
Eng PROPN
T PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Long ADJ
- PUNCT
term NOUN
malaria NOUN
prophylaxis PROPN
with ADP
weekly ADJ
mefloquine NOUN
in ADP
Peace PROPN
Corps PROPN
volunteers NOUN
: PUNCT
an DET
effective ADJ
and CCONJ
well ADV
tolerated VERB
regimen NOUN
. PUNCT
Lancet PROPN
1993;341:848 NUM
- SYM
51 NUM
. PUNCT
2 NUM
. PUNCT
World PROPN
Health PROPN
Organization PROPN
. PUNCT
Review NOUN
of ADP
central ADJ
nervous ADJ
system NOUN
adverse ADJ
events NOUN
related VERB
to ADP
the DET
antimalarial ADJ
drug NOUN
, PUNCT
mefloquine NOUN
( PUNCT
1985 NUM
- SYM
1990 NUM
) PUNCT
. PUNCT
Geneva PROPN
: PUNCT
World PROPN
Health PROPN
Organization PROPN
, PUNCT
1991 NUM
; PUNCT
publication NOUN
no INTJ
. PUNCT
WHO PROPN
/ SYM
MAL/91.1063 PROPN
. PUNCT
3 X
. PUNCT
Pang PROPN
L PROPN
, PUNCT
Limsomwong PROPN
N PROPN
, PUNCT
Singharaj PROPN
P. PROPN
Prophylactic ADJ
treatment NOUN
of ADP
vivax PROPN
and CCONJ
falciparum PROPN
malaria PROPN
with ADP
low ADJ
- PUNCT
dose NOUN
doxycycline NOUN
. PUNCT
J PROPN
Infect PROPN
Dis PROPN
1988;158:1124 NUM
- SYM
7 NUM
. PUNCT
4 NUM
. PUNCT
Pang PROPN
L PROPN
, PUNCT
Limsomwong PROPN
N PROPN
, PUNCT
Boudreau PROPN
EF PROPN
, PUNCT
Singharaj PROPN
P. PROPN
Doxycycline PROPN
prophylaxis PROPN
for ADP
falciparum PROPN
malaria PROPN
. PUNCT
Lancet PROPN
1987;1:1161 NUM
- SYM
4 NUM
. PUNCT
5 NUM
. PUNCT
CDC PROPN
. PUNCT
Health NOUN
information NOUN
for ADP
international ADJ
travel NOUN
, PUNCT
1992 NUM
. PUNCT
Atlanta PROPN
: PUNCT
US PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
, PUNCT
Public PROPN
Health PROPN
Service PROPN
, PUNCT
1992:98 NUM
; PUNCT
DHHS PROPN
publication NOUN
no NOUN
. PUNCT
( PUNCT
CDC)92 PROPN
- PUNCT
8280.HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
7Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
FDA PROPN
Approval PROPN
of ADP
Use PROPN
of ADP
a DET
New PROPN
Haemophilus PROPN
b NOUN
Conjugate PROPN
Vaccine PROPN
and CCONJ
a DET
       SPACE
Combined PROPN
Diphtheria PROPN
- PUNCT
Tetanus PROPN
- PUNCT
Pertussis PROPN
and CCONJ
Haemophilus PROPN
b NOUN
Conjugate PROPN
                       SPACE
Vaccine NOUN
for ADP
Infants PROPN
and CCONJ
Children PROPN
      SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                   SPACE
SOURCE NOUN
: PUNCT
MMWR PROPN
42(15 NUM
) PUNCT
   SPACE
DATE NOUN
: PUNCT
Apr PROPN
23 NUM
, PUNCT
1993 NUM
     SPACE
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
( PUNCT
Hib PROPN
) PUNCT
conjugate VERB
vaccines NOUN
have AUX
been AUX
recommended VERB
for ADP
use NOUN
in ADP
infants NOUN
since SCONJ
1990 NUM
, PUNCT
and CCONJ
their PRON
routine ADJ
use NOUN
in ADP
infant NOUN
vaccination NOUN
has AUX
contributed VERB
to ADP
the DET
substantial ADJ
decline NOUN
in ADP
the DET
incidence NOUN
of ADP
Hib PROPN
disease NOUN
in ADP
the DET
United PROPN
States PROPN
( PUNCT
1 NUM
- SYM
3 NUM
) PUNCT
. PUNCT
Vaccines NOUN
against ADP
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
and CCONJ
pertussis NOUN
during ADP
infancy NOUN
and CCONJ
childhood NOUN
have AUX
been AUX
administered VERB
routinely ADV
in ADP
the DET
United PROPN
States PROPN
since SCONJ
the DET
late ADJ
1940s NOUN
and CCONJ
has AUX
been AUX
associated VERB
with ADP
a DET
greater ADJ
than SCONJ
90 NUM
% NOUN
reduction NOUN
in ADP
morbidity NOUN
and CCONJ
mortality NOUN
associated VERB
with ADP
infection NOUN
by ADP
these DET
organisms NOUN
. PUNCT
Because SCONJ
of ADP
the DET
increasing VERB
number NOUN
of ADP
vaccines NOUN
now ADV
routinely ADV
recommended VERB
for ADP
infants NOUN
, PUNCT
a DET
high ADJ
priority NOUN
is AUX
the DET
development NOUN
of ADP
combined VERB
vaccines NOUN
that PRON
allow VERB
simultaneous ADJ
administration NOUN
with ADP
fewer ADJ
separate ADJ
injections NOUN
. PUNCT
      SPACE
The DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
( PUNCT
FDA PROPN
) PUNCT
recently ADV
licensed VERB
two NUM
new ADJ
products NOUN
for ADP
vaccinating VERB
children NOUN
against ADP
these DET
diseases NOUN
: PUNCT
1 X
) PUNCT
the DET
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
( PUNCT
tetanus NOUN
toxoid NOUN
conjugate VERB
, PUNCT
ActHIB PROPN
Trademark PROPN
) PUNCT
, PUNCT
* PUNCT
for ADP
vaccination NOUN
against ADP
Hib PROPN
disease NOUN
only ADV
and CCONJ
2 X
) PUNCT
a DET
combined VERB
diphtheria NOUN
and CCONJ
tetanus NOUN
toxoids NOUN
and CCONJ
whole ADJ
- PUNCT
cell NOUN
pertussis NOUN
vaccine NOUN
( PUNCT
DTP PROPN
) PUNCT
and CCONJ
Hib PROPN
conjugate VERB
vaccine NOUN
( PUNCT
TETRAMUNE PROPN
Trademark PROPN
) PUNCT
, PUNCT
a DET
combination NOUN
of ADP
vaccines NOUN
formulated VERB
for ADP
use NOUN
in ADP
vaccinating VERB
children NOUN
against ADP
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
pertussis NOUN
, PUNCT
and CCONJ
Hib PROPN
disease NOUN
. PUNCT
                                SPACE
ActHIB PROPN
Trademark PROPN
      SPACE
On ADP
March PROPN
30 NUM
, PUNCT
1993 NUM
, PUNCT
the DET
FDA PROPN
approved VERB
a DET
new ADJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
, PUNCT
polyribosylribitol PROPN
phosphate NOUN
- PUNCT
tetanus NOUN
toxoid NOUN
conjugate NOUN
( PUNCT
PRP PROPN
- PUNCT
T PROPN
) PUNCT
, PUNCT
manufactured VERB
by ADP
Pasteur PROPN
Merieux PROPN
Serum PROPN
et X
Vaccins PROPN
and CCONJ
distributed VERB
as SCONJ
ActHIB PROPN
Trademark PROPN
by ADP
Connaught PROPN
Laboratories PROPN
, PUNCT
Inc. PROPN
( PUNCT
Swiftwater PROPN
, PUNCT
Pennsylvania PROPN
) PUNCT
. PUNCT
This DET
vaccine NOUN
has AUX
been AUX
licensed VERB
for ADP
use NOUN
in ADP
infants NOUN
in ADP
a DET
three NUM
- PUNCT
dose NOUN
primary ADJ
vaccination NOUN
series NOUN
administered VERB
at ADP
ages NOUN
2 NUM
, PUNCT
4 NUM
, PUNCT
and CCONJ
6 NUM
months NOUN
. PUNCT
Previously ADV
unvaccinated ADJ
infants NOUN
7 NUM
- SYM
11 NUM
months NOUN
of ADP
age NOUN
should AUX
receive VERB
two NUM
doses NOUN
2 NUM
months NOUN
apart ADV
. PUNCT
Previously ADV
unvaccinated ADJ
children NOUN
12 NUM
- PUNCT
14 NUM
months NOUN
of ADP
age NOUN
should AUX
receive VERB
one NUM
dose NOUN
. PUNCT
A DET
booster NOUN
dose NOUN
administered VERB
at ADP
15 NUM
months NOUN
of ADP
age NOUN
is AUX
recommended VERB
for ADP
all DET
children NOUN
. PUNCT
Previously ADV
unvaccinated ADJ
children NOUN
15 NUM
- SYM
59 NUM
months NOUN
of ADP
age NOUN
should AUX
receive VERB
a DET
single ADJ
dose NOUN
and CCONJ
do AUX
not PART
require VERB
a DET
booster NOUN
. PUNCT
More ADJ
than SCONJ
90 NUM
% NOUN
of ADP
infants NOUN
receiving VERB
a DET
primary ADJ
vaccination NOUN
series NOUN
of ADP
ActHIB PROPN
Trademark PROPN
( PUNCT
consecutive ADJ
doses NOUN
at ADP
2 NUM
, PUNCT
4 NUM
, PUNCT
and CCONJ
6 NUM
months NOUN
of ADP
age NOUN
) PUNCT
develop VERB
a DET
geometric ADJ
mean ADJ
titer NOUN
of ADP
anti ADJ
- ADJ
Haemophilus ADJ
b NOUN
polysaccharide NOUN
antibody NOUN
greater ADJ
than SCONJ
1 NUM
ug NOUN
/ SYM
mL X
( PUNCT
4 NUM
) PUNCT
. PUNCT
This DET
response NOUN
is AUX
similar ADJ
to ADP
that DET
of ADP
infants NOUN
who PRON
receive VERB
recommended VERB
series NOUN
of ADP
previously ADV
licensed VERB
Haemophilus PROPN
b NOUN
conjugate VERB
vaccines NOUN
for ADP
which PRON
efficacy NOUN
has AUX
been AUX
demonstrated VERB
in ADP
prospective ADJ
trials NOUN
. PUNCT
Two NUM
U.S. PROPN
efficacy NOUN
trials NOUN
of ADP
PRP PROPN
- PUNCT
T PROPN
were AUX
terminated VERB
early ADV
because SCONJ
of ADP
the DET
concomitant ADJ
licensure NOUN
of ADP
other ADJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccines NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
8Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993for NUM
use NOUN
in ADP
infants NOUN
( PUNCT
4 NUM
) PUNCT
. PUNCT
In ADP
these DET
studies NOUN
, PUNCT
no DET
cases NOUN
of ADP
invasive ADJ
Hib PROPN
disease NOUN
were AUX
detected VERB
in ADP
approximately ADV
6000 NUM
infants NOUN
vaccinated VERB
with ADP
PRP PROPN
- PUNCT
T. PROPN
These DET
and CCONJ
other ADJ
studies NOUN
suggest VERB
that SCONJ
the DET
efficacy NOUN
of ADP
PRP PROPN
- PUNCT
T PROPN
vaccine NOUN
will AUX
be AUX
similar ADJ
to ADP
that DET
of ADP
the DET
other ADJ
licensed VERB
Hib PROPN
vaccines NOUN
. PUNCT
TETRAMUNE PROPN
Trademark PROPN
      SPACE
On ADP
March PROPN
30 NUM
, PUNCT
1993 NUM
, PUNCT
the DET
FDA PROPN
approved VERB
a DET
combined VERB
diphtheria NOUN
and CCONJ
tetanus NOUN
toxoids NOUN
and CCONJ
whole ADJ
- PUNCT
cell NOUN
pertussis NOUN
vaccine NOUN
( PUNCT
DTP PROPN
) PUNCT
and CCONJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
. PUNCT
TETRAMUNE PROPN
Trademark PROPN
, PUNCT
available ADJ
from ADP
Lederle PROPN
- PUNCT
Praxis PROPN
Biologicals PROPN
( PUNCT
Pearl PROPN
River PROPN
, PUNCT
New PROPN
York PROPN
) PUNCT
, PUNCT
combines VERB
two NUM
previously ADV
licensed VERB
products NOUN
, PUNCT
DTP PROPN
( PUNCT
TRIIMMUNOL PROPN
Registered PROPN
, PUNCT
manufactured VERB
by ADP
Lederle PROPN
Laboratories PROPN
Pearl PROPN
River PROPN
, PUNCT
New PROPN
York PROPN
) PUNCT
and CCONJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
( PUNCT
HibTITER PROPN
Registered PROPN
, PUNCT
manufactured VERB
by ADP
Praxis PROPN
Biologics PROPN
, PUNCT
Inc. PROPN
Rochester PROPN
, PUNCT
New PROPN
York PROPN
) PUNCT
. PUNCT
      SPACE
This DET
vaccine NOUN
has AUX
been AUX
licensed VERB
for ADP
use NOUN
in ADP
children NOUN
aged VERB
2 NUM
months-5 PROPN
years NOUN
for ADP
protection NOUN
against ADP
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
pertussis NOUN
, PUNCT
and CCONJ
Hib PROPN
disease NOUN
when ADV
indications NOUN
for ADP
vaccination NOUN
with ADP
DTP PROPN
vaccine NOUN
and CCONJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccine NOUN
coincide NOUN
. PUNCT
Based VERB
on ADP
demonstration NOUN
of ADP
co NOUN
mparable ADJ
or CCONJ
higher ADJ
antibody NOUN
responses VERB
to ADP
each DET
of ADP
the DET
components NOUN
of ADP
the DET
two NUM
vaccines NOUN
, PUNCT
TETRAMUNE PROPN
Trademark PROPN
is AUX
expected VERB
to PART
provide VERB
protection NOUN
against ADP
Hib PROPN
, PUNCT
as ADV
well ADV
as SCONJ
diphtheria NOUN
, PUNCT
tetanus NOUN
, PUNCT
and CCONJ
pertussis NOUN
, PUNCT
equivalent ADJ
to ADP
that DET
of ADP
already ADV
licensed VERB
formulations NOUN
of ADP
other ADJ
DTP PROPN
and CCONJ
Haemophilus PROPN
b NOUN
vaccines NOUN
. PUNCT
      SPACE
The DET
Advisory PROPN
Committee PROPN
for ADP
Immunization PROPN
Practices PROPN
( PUNCT
ACIP PROPN
) PUNCT
recommends VERB
that SCONJ
all DET
infants NOUN
receive VERB
a DET
primary ADJ
series NOUN
of ADP
one NUM
of ADP
the DET
licensed ADJ
Haemophilus PROPN
b NOUN
conjugate VERB
vaccines NOUN
beginning VERB
at ADP
2 NUM
months NOUN
of ADP
age NOUN
and CCONJ
a DET
booster NOUN
dose NOUN
at ADP
age NOUN
12 NUM
- SYM
15 NUM
months NOUN
( PUNCT
5 NUM
) PUNCT
. PUNCT
The DET
ACIP PROPN
also ADV
recommends VERB
that SCONJ
all DET
infants NOUN
receive VERB
a DET
four NUM
- PUNCT
dose NOUN
primary ADJ
series NOUN
of ADP
diphtheria PROPN
and CCONJ
tetanus NOUN
toxoids NOUN
and CCONJ
pertussis NOUN
vaccine NOUN
at ADP
2 NUM
, PUNCT
4 NUM
, PUNCT
6 NUM
, PUNCT
and CCONJ
15 NUM
- SYM
18 NUM
months NOUN
of ADP
age NOUN
, PUNCT
and CCONJ
a DET
booster NOUN
dose NOUN
at ADP
4 NUM
- SYM
6 NUM
years NOUN
( PUNCT
6 NUM
- SYM
8 NUM
) PUNCT
. PUNCT
A DET
complete ADJ
statement NOUN
regarding VERB
recommendations NOUN
for ADP
use NOUN
of ADP
ActHIB NUM
Trademark PROPN
and CCONJ
TETRAMUNE PROPN
Trademark PROPN
is AUX
being AUX
developed VERB
. PUNCT
Reported VERB
by ADP
: PUNCT
Office PROPN
of ADP
Vaccines PROPN
Research PROPN
and CCONJ
Review PROPN
, PUNCT
Center PROPN
for ADP
Biologics PROPN
Evaluation PROPN
and CCONJ
Research PROPN
, PUNCT
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
. PUNCT
Div PROPN
of ADP
Immunization PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Prevention PROPN
Svcs PROPN
; PUNCT
Meningitis PROPN
and CCONJ
Special PROPN
Pathogens PROPN
Br PROPN
, PUNCT
Div PROPN
of ADP
Bacterial PROPN
and CCONJ
Mycotic PROPN
Diseases PROPN
, PUNCT
National PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
, PUNCT
CDC PROPN
. PUNCT
References1 PROPN
. PUNCT
Adams PROPN
WG PROPN
, PUNCT
Deaver PROPN
KA PROPN
, PUNCT
Cochi PROPN
SL PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Decline NOUN
of ADP
childhood NOUN
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
( PUNCT
Hib PROPN
) PUNCT
disease NOUN
in ADP
the DET
Hib PROPN
vaccine NOUN
era NOUN
. PUNCT
JAMA PROPN
1993;269:221 NUM
- SYM
6 NUM
. PUNCT
2 NUM
. PUNCT
Broadhurst PROPN
LE PROPN
, PUNCT
Erickson PROPN
RL PROPN
, PUNCT
Kelley PROPN
PW PROPN
. PUNCT
Decrease VERB
in ADP
invasive ADJ
Haemophilus PROPN
influenzae NOUN
disease NOUN
in ADP
U.S. PROPN
Army PROPN
children NOUN
, PUNCT
1984 NUM
through ADP
1991 NUM
. PUNCT
JAMA PROPN
1993;269:227 PROPN
- SYM
31 NUM
. PUNCT
3 NUM
. PUNCT
Murphy PROPN
TV PROPN
, PUNCT
White PROPN
KE PROPN
, PUNCT
Pastor PROPN
P PROPN
, PUNCT
et PROPN
al PROPN
. PUNCT
Declining VERB
incidence NOUN
of ADP
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
disease NOUN
since SCONJ
introduction NOUN
of ADP
vaccination NOUN
. PUNCT
JAMA PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
  SPACE
9Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
19931993;269:246 NUM
- SYM
8 NUM
. PUNCT
4 NUM
. PUNCT
Fritzell PROPN
B PROPN
, PUNCT
Plotkin PROPN
S. PROPN
Efficacy PROPN
and CCONJ
safety NOUN
of ADP
a DET
Haemophilus PROPN
influenzae NOUN
type NOUN
b NOUN
capsular ADJ
polysaccharide NOUN
- PUNCT
tetanus NOUN
protein NOUN
conjugate VERB
vaccine NOUN
. PUNCT
J PROPN
Pediatr PROPN
1992;121:355 NUM
- PUNCT
62 NUM
. PUNCT
5 NUM
. PUNCT
ACIP PROPN
. PUNCT
Haemophilus PROPN
b AUX
conjugate VERB
vaccines NOUN
for ADP
prevention NOUN
of ADP
Haemophilus PROPN
influenzae PROPN
type NOUN
b NOUN
disease NOUN
among ADP
infants NOUN
and CCONJ
children NOUN
two NUM
months NOUN
of ADP
age NOUN
and CCONJ
older ADJ
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1991;40(no NUM
. PUNCT
RR-1 PROPN
) PUNCT
. PUNCT
6 NUM
. PUNCT
ACIP PROPN
. PUNCT
Diphtheria PROPN
, PUNCT
tetanus NOUN
, PUNCT
and CCONJ
pertussis NOUN
-- PUNCT
recommendations NOUN
for ADP
vaccine NOUN
use NOUN
and CCONJ
other ADJ
preventive ADJ
measures NOUN
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1991;40(no NUM
. PUNCT
RR-10 PROPN
) PUNCT
. PUNCT
7 NUM
. PUNCT
ACIP PROPN
. PUNCT
Pertussis NOUN
vaccination NOUN
: PUNCT
acellular ADJ
pertussis NOUN
vaccine NOUN
for ADP
reinforcing VERB
and CCONJ
booster NOUN
use NOUN
-- PUNCT
supplementary ADJ
ACIP ADJ
statement NOUN
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1992;41(no NUM
. PUNCT
RR-1 PROPN
) PUNCT
. PUNCT
8 NUM
. PUNCT
ACIP PROPN
. PUNCT
Pertussis NOUN
vaccination NOUN
: PUNCT
acellular ADJ
pertussis NOUN
vaccine NOUN
for ADP
the DET
fourth ADJ
and CCONJ
fifth ADJ
doses NOUN
of ADP
the DET
DTP PROPN
series NOUN
-- PUNCT
update VERB
to ADP
supplementary ADJ
ACIP ADJ
statement NOUN
: PUNCT
recommendations NOUN
of ADP
the DET
Immunization PROPN
Practices PROPN
Advisory PROPN
Committee PROPN
( PUNCT
ACIP PROPN
) PUNCT
. PUNCT
MMWR PROPN
1992;41(no NUM
. PUNCT
RR-15 PROPN
) PUNCT
. PUNCT
* PUNCT
Use NOUN
of ADP
trade NOUN
names NOUN
and CCONJ
commercial ADJ
sources NOUN
is AUX
for ADP
identification NOUN
only ADV
and CCONJ
does AUX
not PART
imply VERB
endorsement NOUN
by ADP
the DET
Public PROPN
Health PROPN
Service PROPN
or CCONJ
the DET
U.S. PROPN
Department PROPN
of ADP
Health PROPN
and CCONJ
Human PROPN
Services PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
10Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                  SPACE
Dental PROPN
News PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
            SPACE
International PROPN
Workshop PROPN
Explores PROPN
Oral PROPN
Manifestations PROPN
of ADP
                                 SPACE
HIV PROPN
Infection PROPN
                             SPACE
NIDR PROPN
Research PROPN
Digest PROPN
                             SPACE
written VERB
by ADP
Jody PROPN
Dove PROPN
                                  SPACE
March PROPN
1993 NUM
                     SPACE
National PROPN
Institute PROPN
of ADP
Dental PROPN
Research PROPN
     SPACE
At ADP
the DET
Second PROPN
International PROPN
Workshop PROPN
on ADP
the DET
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
, PUNCT
held VERB
January PROPN
31-February PROPN
3 NUM
in ADP
San PROPN
Francisco PROPN
, PUNCT
participants NOUN
explored VERB
issues NOUN
related VERB
to ADP
the DET
epidemiology NOUN
, PUNCT
basic ADJ
molecular ADJ
virology NOUN
, PUNCT
mucosal ADJ
immunology NOUN
, PUNCT
and CCONJ
oral ADJ
clinical ADJ
presentations NOUN
of ADP
HIV PROPN
infection NOUN
. PUNCT
      SPACE
The DET
workshop NOUN
was AUX
organized VERB
by ADP
Dr. PROPN
John PROPN
Greenspan PROPN
and CCONJ
Dr. PROPN
Deborah PROPN
Greenspan PROPN
of ADP
the DET
Department PROPN
of ADP
Stomatology PROPN
, PUNCT
School PROPN
of ADP
Dentistry PROPN
, PUNCT
University PROPN
of ADP
California PROPN
, PUNCT
San PROPN
Francisco PROPN
. PUNCT
  SPACE
An DET
international ADJ
steering NOUN
committee NOUN
and CCONJ
scientific ADJ
program NOUN
committee NOUN
provided VERB
guidance NOUN
. PUNCT
      SPACE
The DET
conference NOUN
drew VERB
more ADJ
than SCONJ
260 NUM
scientists NOUN
from ADP
39 NUM
countries NOUN
, PUNCT
including VERB
Asia PROPN
, PUNCT
Africa PROPN
, PUNCT
Europe PROPN
, PUNCT
Central PROPN
America PROPN
, PUNCT
South PROPN
America PROPN
, PUNCT
as ADV
well ADV
as SCONJ
the DET
United PROPN
States PROPN
and CCONJ
Canada PROPN
. PUNCT
  SPACE
Support NOUN
tor NOUN
the DET
workshop NOUN
was AUX
provided VERB
by ADP
the DET
National PROPN
Institute PROPN
of ADP
Dental PROPN
Research PROPN
, PUNCT
the DET
National PROPN
Cancer PROPN
Institute PROPN
, PUNCT
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases PROPN
, PUNCT
the DET
NIH PROPN
Office PROPN
of ADP
AIDS PROPN
Research PROPN
, PUNCT
and CCONJ
the DET
Procter PROPN
and CCONJ
Gamble PROPN
Company PROPN
. PUNCT
      SPACE
Among ADP
the DET
topics NOUN
discussed VERB
were AUX
: PUNCT
the DET
epidemiology NOUN
of ADP
HIV PROPN
lesions NOUN
; PUNCT
ethics NOUN
, PUNCT
professional ADJ
responsibility NOUN
, PUNCT
and CCONJ
public ADJ
policy NOUN
; PUNCT
occupational ADJ
issues NOUN
; PUNCT
provision NOUN
of ADP
oral ADJ
care NOUN
to ADP
the DET
HIV PROPN
- PUNCT
positive ADJ
population NOUN
; PUNCT
salivary ADJ
HIV PROPN
transmission NOUN
and CCONJ
mucosal ADJ
immunity NOUN
; PUNCT
opportunistic ADJ
infections NOUN
; PUNCT
pediatric ADJ
HIV PROPN
infection NOUN
; PUNCT
and CCONJ
women NOUN
's PART
issues NOUN
. PUNCT
                                 SPACE
Recommendations PROPN
     SPACE
Recommendations PROPN
emerged VERB
from ADP
the DET
workshop NOUN
to PART
define VERB
the DET
association NOUN
between ADP
the DET
appearance NOUN
of ADP
oral ADJ
lesions NOUN
and CCONJ
rate NOUN
of ADP
progression NOUN
of ADP
HIV PROPN
, PUNCT
to PART
establish VERB
a DET
universal ADJ
terminology NOUN
for ADP
HIV PROPN
- PUNCT
associated VERB
oral ADJ
lesions NOUN
, PUNCT
to PART
look VERB
for ADP
more ADJ
effective ADJ
treatments NOUN
for ADP
oral ADJ
manifestations NOUN
, PUNCT
to PART
expand VERB
molecular ADJ
biology NOUN
studies NOUN
to PART
understand VERB
the DET
relationship NOUN
between ADP
HIV PROPN
infection NOUN
and CCONJ
common ADJ
oral ADJ
lesions NOUN
, PUNCT
and CCONJ
to PART
study VERB
the DET
effects NOUN
of ADP
HIV PROPN
therapy NOUN
on ADP
oral ADJ
lesions NOUN
. PUNCT
                                  SPACE
Epidemiology PROPN
     SPACE
Since SCONJ
the DET
First PROPN
International PROPN
Workshop PROPN
on ADP
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
was AUX
convened VERB
five NUM
years NOUN
ago ADV
, PUNCT
the DET
epidemiology NOUN
of ADP
HIV PROPN
infection NOUN
has AUX
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
11Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993radically NUM
changed VERB
. PUNCT
  SPACE
In ADP
1988 NUM
, PUNCT
HIV PROPN
infection NOUN
was AUX
detected VERB
and CCONJ
reported VERB
largely ADV
in ADP
homosexual ADJ
and CCONJ
bisexual ADJ
males NOUN
, PUNCT
intravenous ADJ
drug NOUN
users NOUN
, PUNCT
and CCONJ
hemophiliacs PROPN
. PUNCT
  SPACE
Today NOUN
, PUNCT
more ADJ
HIV PROPN
infection NOUN
is AUX
seen VERB
in ADP
heterosexual ADJ
males NOUN
and CCONJ
females NOUN
and CCONJ
in ADP
children NOUN
and CCONJ
adolescents NOUN
. PUNCT
      SPACE
While SCONJ
the DET
predominant ADJ
impact NOUN
of ADP
HIV PROPN
infection NOUN
has AUX
been AUX
felt VERB
in ADP
Africa PROPN
, PUNCT
a DET
major ADJ
increase NOUN
in ADP
infection NOUN
rate NOUN
is AUX
being AUX
seen VERB
in ADP
Southeast PROPN
Asia PROPN
as ADV
well ADV
. PUNCT
  SPACE
Five NUM
hundred NUM
thousand NUM
cases NOUN
have AUX
been AUX
reported VERB
to ADP
date NOUN
in ADP
this DET
region NOUN
and CCONJ
more ADJ
are AUX
appearing VERB
all DET
the DET
time NOUN
. PUNCT
      SPACE
Researchers PROPN
are AUX
continuing VERB
to PART
document VERB
the DET
epidemiology NOUN
of ADP
oral ADJ
lesions NOUN
such ADJ
as SCONJ
hairy ADJ
leukoplakia NOUN
and CCONJ
candidiasis NOUN
. PUNCT
  SPACE
They PRON
also ADV
are AUX
beginning VERB
to PART
explore VERB
the DET
relationships NOUN
between ADP
specific ADJ
oral ADJ
lesions NOUN
and CCONJ
HIV PROPN
disease NOUN
progression NOUN
and CCONJ
prognosis NOUN
. PUNCT
                             SPACE
Social PROPN
/ SYM
political ADJ
Issues PROPN
     SPACE
Discussion NOUN
on ADP
the DET
social ADJ
and CCONJ
political ADJ
implications NOUN
of ADP
HIV PROPN
infection NOUN
focused VERB
on ADP
changing VERB
the DET
public NOUN
's PART
attitude NOUN
that SCONJ
AIDS PROPN
is AUX
retribution NOUN
for ADP
indiscriminate ADJ
sexual ADJ
behavior NOUN
and CCONJ
drug NOUN
use NOUN
. PUNCT
  SPACE
Speakers NOUN
also ADV
addressed VERB
health NOUN
care NOUN
delivery NOUN
for ADP
HIV PROPN
- PUNCT
infected VERB
patients NOUN
, PUNCT
and CCONJ
the DET
need NOUN
to PART
educate VERB
the DET
public NOUN
about ADP
what PRON
AIDS PROPN
is AUX
, PUNCT
and CCONJ
how ADV
it PRON
is AUX
acquired VERB
. PUNCT
                           SPACE
Saliva PROPN
and CCONJ
Salivary PROPN
Glands PROPN
     SPACE
Conference PROPN
speakers NOUN
described VERB
transmission NOUN
issues NOUN
and CCONJ
the DET
HIV PROPN
- PUNCT
inhibitory NOUN
activity NOUN
of ADP
saliva NOUN
, PUNCT
the DET
strength NOUN
of ADP
which PRON
varies VERB
among ADP
the DET
different ADJ
salivary ADJ
secretions NOUN
. PUNCT
  SPACE
Whole ADJ
saliva NOUN
has AUX
a DET
greater ADJ
inhibitory ADJ
effect NOUN
than SCONJ
submandibular ADJ
secretions NOUN
, PUNCT
which PRON
in ADP
turn NOUN
have AUX
a DET
greater ADJ
inhibitory ADJ
effect NOUN
than SCONJ
parotid PROPN
secretions NOUN
. PUNCT
  SPACE
Research PROPN
has AUX
shown VERB
that SCONJ
at ADV
least ADV
two NUM
mechanisms NOUN
are AUX
responsible ADJ
for ADP
salivary ADJ
inhibitory ADJ
activity NOUN
. PUNCT
  SPACE
They PRON
attributed VERB
the DET
HIV PROPN
- PUNCT
inhibitory ADJ
effect NOUN
of ADP
saliva NOUN
to ADP
the DET
1 NUM
) PUNCT
aggregation NOUN
/ SYM
agglutination NOUN
of ADP
HIV PROPN
by ADP
saliva NOUN
, PUNCT
which PRON
may AUX
both DET
promote VERB
clearance NOUN
of ADP
virus NOUN
and CCONJ
prevent VERB
it PRON
reaching VERB
a DET
target NOUN
cell NOUN
, PUNCT
and CCONJ
2 X
) PUNCT
direct ADJ
effects NOUN
on ADP
the DET
virus NOUN
or CCONJ
target NOUN
cells NOUN
. PUNCT
      SPACE
Other ADJ
topics NOUN
discussed VERB
were AUX
the DET
manifestation NOUN
of ADP
salivary ADJ
gland PROPN
disease NOUN
in ADP
HIV PROPN
- PUNCT
infected VERB
persons NOUN
and CCONJ
current ADJ
research NOUN
on ADP
oral ADJ
mucosal ADJ
immunity NOUN
. PUNCT
                                SPACE
Pediatric PROPN
Issues PROPN
     SPACE
Pediatric PROPN
AIDS PROPN
recently ADV
has AUX
emerged VERB
as SCONJ
an DET
area NOUN
of ADP
intense ADJ
interest NOUN
. PUNCT
  SPACE
With ADP
early ADJ
and CCONJ
accurate ADJ
diagnosis NOUN
and CCONJ
proper ADJ
treatment NOUN
, PUNCT
the DET
life NOUN
expectancy NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
children NOUN
has AUX
tripled VERB
. PUNCT
  SPACE
The DET
prevention NOUN
of ADP
transmission NOUN
of ADP
HIV PROPN
from ADP
mother NOUN
to ADP
child NOUN
may AUX
be AUX
possible ADJ
in ADP
many ADJ
cases NOUN
, PUNCT
particularly ADV
if SCONJ
the DET
mother NOUN
's PART
sero NOUN
- PUNCT
status NOUN
is AUX
known VERB
prior ADV
to ADP
giving VERB
birth NOUN
. PUNCT
                     SPACE
Periodontal PROPN
and CCONJ
Gingival PROPN
Tissue PROPN
DiseaseHICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
12Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
Oral ADJ
health NOUN
researchers NOUN
continue VERB
to PART
explore VERB
periodontal ADJ
diseases NOUN
and CCONJ
gingivitis NOUN
found VERB
in ADP
individuals NOUN
with ADP
HIV PROPN
infection NOUN
. PUNCT
  SPACE
Recommendations NOUN
made VERB
at ADP
the DET
workshop NOUN
include VERB
the DET
standardization NOUN
of ADP
terminology NOUN
, PUNCT
refinement NOUN
of ADP
diagnostic ADJ
markers NOUN
, PUNCT
standardization NOUN
of ADP
study NOUN
design NOUN
, PUNCT
and CCONJ
proper ADJ
consideration NOUN
of ADP
confounding VERB
variables NOUN
resulting VERB
from ADP
periodontal ADJ
therapy NOUN
. PUNCT
                        SPACE
Occupational PROPN
and CCONJ
Treatment PROPN
Issues PROPN
     SPACE
Occupational ADJ
issues NOUN
surrounding VERB
the DET
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
individuals NOUN
and CCONJ
treatment NOUN
rendered VERB
by ADP
HIV PROPN
- PUNCT
infected VERB
health NOUN
care NOUN
professionals NOUN
still ADV
command VERB
considerable ADJ
attention NOUN
. PUNCT
  SPACE
Factors NOUN
under ADP
consideration NOUN
include VERB
the DET
cost NOUN
/ SYM
benefit NOUN
of ADP
HIV PROPN
testing NOUN
, PUNCT
patient NOUN
- PUNCT
to ADP
- PUNCT
health NOUN
care NOUN
provider NOUN
transmission NOUN
of ADP
HIV PROPN
infection NOUN
and CCONJ
the DET
reverse NOUN
, PUNCT
and CCONJ
the DET
use NOUN
of ADP
mainstream NOUN
versus ADP
dedicated ADJ
facilities NOUN
for ADP
the DET
treatment NOUN
of ADP
HIV PROPN
- PUNCT
infected VERB
patients NOUN
. PUNCT
      SPACE
Conference PROPN
participants NOUN
anticipate VERB
that SCONJ
a DET
third ADJ
International PROPN
Workshop PROPN
on ADP
the DET
Oral PROPN
Manifestations PROPN
of ADP
HIV PROPN
Infection PROPN
will AUX
be AUX
held VERB
in ADP
five NUM
years NOUN
or CCONJ
less ADJ
. PUNCT
  SPACE
Proceedings NOUN
from ADP
the DET
second ADJ
workshop NOUN
will AUX
be AUX
published VERB
by ADP
the DET
Quintessence PROPN
Company PROPN
in ADP
late ADJ
1993.--------- NUM
end NOUN
of ADP
part NOUN
1 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59284From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
2/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
-----------------HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
13Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                        SPACE
Food PROPN
& CCONJ
Drug PROPN
Administration PROPN
News PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
              SPACE
FDA PROPN
Approves PROPN
Depo PROPN
Provera PROPN
, PUNCT
injectable ADJ
contraceptive NOUN
                      SPACE
P92 PROPN
- PUNCT
31 NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
              SPACE
FOR ADP
IMMEDIATE PROPN
RELEASE PROPN
Susan PROPN
Cruzan PROPN
- PUNCT
( PUNCT
301 NUM
) PUNCT
443 NUM
- SYM
3285The NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
today NOUN
announced VERB
the DET
approval NOUN
of ADP
Depo PROPN
Provera PROPN
, PUNCT
an DET
injectable ADJ
contraceptive ADJ
drug NOUN
. PUNCT
The DET
drug NOUN
, PUNCT
which PRON
contains VERB
a DET
synthetic ADJ
hormone NOUN
similar ADJ
to ADP
the DET
natural ADJ
hormone NOUN
progesterone NOUN
, PUNCT
protects VERB
women NOUN
from ADP
pregnancy NOUN
for ADP
three NUM
months NOUN
per ADP
injection NOUN
. PUNCT
The DET
hormone NOUN
is AUX
injected VERB
into ADP
the DET
muscle NOUN
of ADP
the DET
arm NOUN
or CCONJ
buttock NOUN
where ADV
it PRON
is AUX
released VERB
into ADP
the DET
bloodstream NOUN
to PART
prevent VERB
pregnancy NOUN
. PUNCT
It PRON
is AUX
more ADJ
than SCONJ
99 NUM
percent NOUN
effective ADJ
. PUNCT
"This PUNCT
drug NOUN
presents VERB
another DET
long ADJ
- PUNCT
term NOUN
, PUNCT
effective ADJ
option NOUN
for ADP
women NOUN
to PART
prevent VERB
pregnancy NOUN
, PUNCT
" PUNCT
said VERB
FDA PROPN
Commissioner PROPN
David PROPN
A. PROPN
Kessler PROPN
, PUNCT
M.D. PROPN
" PUNCT
As SCONJ
an DET
injectable NOUN
, PUNCT
given VERB
once ADV
every DET
three NUM
months NOUN
, PUNCT
Depo PROPN
Provera PROPN
eliminates VERB
problems NOUN
related VERB
to ADP
missing VERB
a DET
daily ADJ
dose NOUN
. PUNCT
"Depo PUNCT
Provera PROPN
is AUX
available ADJ
in ADP
150 NUM
mg PROPN
. PROPN
single ADJ
dose NOUN
vials NOUN
from ADP
doctors NOUN
and CCONJ
clinics NOUN
and CCONJ
must AUX
be AUX
given VERB
on ADP
a DET
regular ADJ
basis NOUN
to PART
maintain VERB
contraceptive ADJ
protection NOUN
. PUNCT
If SCONJ
a DET
patient NOUN
decides VERB
to PART
become VERB
pregnant ADJ
, PUNCT
she PRON
discontinues VERB
the DET
injections NOUN
. PUNCT
As SCONJ
with ADP
any DET
such ADJ
products NOUN
, PUNCT
FDA PROPN
advises VERB
patients NOUN
to PART
discuss VERB
the DET
benefits NOUN
and CCONJ
risks NOUN
of ADP
Depo PROPN
Provera PROPN
with ADP
their PRON
doctor NOUN
or CCONJ
other ADJ
health NOUN
care NOUN
professional NOUN
before ADP
making VERB
a DET
decision NOUN
to PART
use VERB
it PRON
. PUNCT
Depo PROPN
Provera PROPN
's PART
effectiveness NOUN
as SCONJ
a DET
contraceptive NOUN
was AUX
established VERB
in ADP
extensive ADJ
studies NOUN
by ADP
the DET
manufacturer NOUN
, PUNCT
the DET
World PROPN
Health PROPN
Organization PROPN
and CCONJ
health NOUN
agencies NOUN
in ADP
other ADJ
countries NOUN
. PUNCT
U.S. PROPN
clinical ADJ
trials NOUN
, PUNCT
begun VERB
in ADP
1963 NUM
, PUNCT
also ADV
found VERB
Depo PROPN
Provera PROPN
effective ADJ
as SCONJ
an DET
injectable ADJ
contraceptive NOUN
. PUNCT
The DET
most ADV
common ADJ
side NOUN
effects NOUN
are AUX
menstrual ADJ
irregularities NOUN
and CCONJ
weight NOUN
gain NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
some DET
patients NOUN
may AUX
experience VERB
headache NOUN
, PUNCT
nervousness NOUN
, PUNCT
abdominal ADJ
pain NOUN
, PUNCT
dizziness NOUN
, PUNCT
weakness NOUN
or CCONJ
fatigue NOUN
. PUNCT
The DET
drug NOUN
should AUX
not PART
be AUX
used VERB
in ADP
women NOUN
who PRON
have AUX
acute ADJ
liver NOUN
disease NOUN
, PUNCT
unexplained ADJ
vaginal ADJ
bleeding NOUN
, PUNCT
breast NOUN
cancer NOUN
or CCONJ
blood NOUN
clots NOUN
in ADP
the DET
legs NOUN
, PUNCT
lungs NOUN
or CCONJ
eyes NOUN
. PUNCT
The DET
labeling NOUN
advises VERB
doctors NOUN
to PART
rule VERB
out ADP
pregnancy NOUN
before ADP
prescribing VERB
the DET
drug NOUN
, PUNCT
due ADP
to ADP
concerns NOUN
about ADP
low ADJ
birth NOUN
weight NOUN
in ADP
babies NOUN
exposed VERB
to ADP
the DET
drug NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
14Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Recent NUM
data NOUN
have AUX
also ADV
demonstrated VERB
that SCONJ
long ADJ
- PUNCT
term NOUN
use NOUN
may AUX
contribute VERB
to ADP
osteoporosis NOUN
. PUNCT
The DET
manufacturer NOUN
will AUX
conduct VERB
additional ADJ
research NOUN
to PART
study VERB
this DET
potential ADJ
effect NOUN
. PUNCT
Depo PROPN
Provera PROPN
was AUX
Developed VERB
in ADP
the DET
1960s NOUN
and CCONJ
has AUX
been AUX
approved VERB
for ADP
contraception NOUN
in ADP
many ADJ
other ADJ
countries NOUN
. PUNCT
The DET
UpJohn PROPN
Company PROPN
of ADP
Kalamazoo PROPN
, PUNCT
Mich. PROPN
, PUNCT
which PRON
will AUX
market VERB
the DET
drug NOUN
under ADP
the DET
name NOUN
, PUNCT
Depo PROPN
Provera PROPN
Contraceptive PROPN
Injection PROPN
, PUNCT
first ADV
submitted VERB
it PRON
for ADP
approval NOUN
in ADP
the DET
United PROPN
States PROPN
in ADP
the DET
1970s NOUN
. PUNCT
At ADP
that DET
time NOUN
, PUNCT
animal NOUN
studies NOUN
raised VERB
questions NOUN
about ADP
its PRON
potential NOUN
to PART
cause VERB
breast NOUN
cancer NOUN
. PUNCT
Worldwide ADJ
studies NOUN
have AUX
since SCONJ
found VERB
the DET
overall ADJ
risk NOUN
of ADP
cancer NOUN
, PUNCT
including VERB
breast NOUN
cancer NOUN
in ADP
humans NOUN
, PUNCT
to PART
be AUX
minimal ADJ
if SCONJ
any DET
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
15Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
       SPACE
New PROPN
Rules PROPN
Speed PROPN
Approval NOUN
of ADP
Drugs NOUN
for ADP
Life NOUN
- PUNCT
Threatening VERB
Illnesses PROPN
                      SPACE
P92 PROPN
- PUNCT
37 NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
                        SPACE
Monica PROPN
Revelle PROPN
- PUNCT
( PUNCT
301 NUM
) PUNCT
443 NUM
- SYM
4177The NUM
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
today NOUN
announced VERB
that SCONJ
it PRON
will AUX
soon ADV
publish VERB
new ADJ
rules NOUN
to PART
shed VERB
the DET
approval NOUN
of ADP
drugs NOUN
for ADP
patients NOUN
with ADP
serious ADJ
or CCONJ
life NOUN
- PUNCT
threatening VERB
illnesses NOUN
, PUNCT
such ADJ
as SCONJ
AIDS PROPN
, PUNCT
cancer NOUN
and CCONJ
Alzheimer PROPN
's PART
disease NOUN
. PUNCT
" PUNCT
These DET
final ADJ
rules NOUN
will AUX
help VERB
patients NOUN
who PRON
are AUX
suffering VERB
the DET
most ADV
serious ADJ
illnesses NOUN
to PART
get AUX
access NOUN
to ADP
new ADJ
drugs NOUN
months NOUN
or CCONJ
even ADV
years NOUN
earlier ADV
than SCONJ
would AUX
otherwise ADV
be AUX
possible ADJ
, PUNCT
" PUNCT
said VERB
HHS PROPN
Secretary PROPN
Louis PROPN
W. PROPN
Sullivan PROPN
, PUNCT
M.D. PROPN
" PUNCT
The DET
effort NOUN
to PART
accelerate VERB
FDA PROPN
review NOUN
for ADP
these DET
drugs NOUN
has AUX
been AUX
a DET
long ADJ
- PUNCT
term NOUN
commitment NOUN
and CCONJ
indeed ADV
a DET
hallmark NOUN
of ADP
this DET
administration NOUN
. PUNCT
" PUNCT
These DET
rules NOUN
establish VERB
procedures NOUN
for ADP
the DET
Food PROPN
and CCONJ
Drug PROPN
Administration PROPN
to PART
approve VERB
a DET
drug NOUN
based VERB
on ADP
" PUNCT
surrogate ADJ
endpoints NOUN
" PUNCT
or CCONJ
markers NOUN
. PUNCT
They PRON
apply VERB
when ADV
the DET
drug NOUN
provides VERB
a DET
meaningful ADJ
benefit NOUN
over ADP
currently ADV
available ADJ
therapies NOUN
. PUNCT
Such ADJ
endpoints NOUN
would AUX
include VERB
laboratory NOUN
tests NOUN
or CCONJ
physical ADJ
signs NOUN
that PRON
do AUX
not PART
in ADP
themselves PRON
constitute VERB
a DET
clinical ADJ
effect NOUN
but CCONJ
that PRON
are AUX
judged VERB
by ADP
qualified ADJ
scientists NOUN
to PART
be AUX
likely ADJ
to PART
correspond VERB
to ADP
real ADJ
benefits NOUN
to ADP
the DET
patient NOUN
. PUNCT
Use NOUN
of ADP
surrogate ADJ
endpoints NOUN
for ADP
measurement NOUN
of ADP
drug NOUN
efficacy NOUN
permits VERB
approval NOUN
earlier ADV
than SCONJ
if SCONJ
traditional ADJ
endpoints NOUN
-- PUNCT
such ADJ
as SCONJ
relief NOUN
of ADP
disease NOUN
symptoms NOUN
or CCONJ
prevention NOUN
of ADP
disability NOUN
and CCONJ
death NOUN
from ADP
the DET
disease NOUN
-- PUNCT
are AUX
used VERB
. PUNCT
The DET
new ADJ
rules NOUN
provide VERB
for ADP
therapies NOUN
to PART
be AUX
approved VERB
as ADV
soon ADV
as SCONJ
safety NOUN
and CCONJ
effectiveness NOUN
, PUNCT
based VERB
on ADP
surrogate ADJ
endpoints NOUN
, PUNCT
can AUX
be AUX
reasonably ADV
established VERB
. PUNCT
The DET
drug NOUN
's PART
sponsor NOUN
will AUX
be AUX
required VERB
to PART
agree VERB
to PART
continue VERB
or CCONJ
conduct VERB
postmarketing VERB
human ADJ
studies NOUN
to PART
confirm VERB
that SCONJ
the DET
drug NOUN
's PART
effect NOUN
on ADP
the DET
surrogate ADJ
endpoint NOUN
is AUX
an DET
indicator NOUN
of ADP
its PRON
clinical ADJ
effectiveness NOUN
. PUNCT
One NUM
new ADJ
drug NOUN
-- PUNCT
zalcitabine PROPN
( PUNCT
also ADV
called VERB
ddC NOUN
) PUNCT
-- PUNCT
was AUX
approved VERB
June PROPN
19 NUM
, PUNCT
using VERB
a DET
model NOUN
of ADP
this DET
process NOUN
, PUNCT
for ADP
treating VERB
the DET
human ADJ
immunodeficiency NOUN
virus NOUN
, PUNCT
HIV PROPN
, PUNCT
the DET
cause NOUN
of ADP
AIDS PROPN
. PUNCT
Accelerated ADJ
approval NOUN
can AUX
also ADV
be AUX
used VERB
, PUNCT
if SCONJ
necessary ADJ
, PUNCT
when ADV
FDA PROPN
determines VERB
that SCONJ
a DET
drug NOUN
, PUNCT
judged VERB
to PART
be AUX
effective ADJ
for ADP
the DET
treatment NOUN
of ADP
a DET
disease NOUN
, PUNCT
can AUX
be AUX
used VERB
safely ADV
only ADV
under ADP
a DET
restricted ADJ
distribution NOUN
plan NOUN
. PUNCT
" PUNCT
The DET
new ADJ
rules NOUN
will AUX
help VERB
streamline VERB
the DET
drug NOUN
development NOUN
and CCONJ
review NOUN
process NOUN
without ADP
sacrificing VERB
goad NOUN
science NOUN
and CCONJ
rigorous ADJ
FDA PROPN
oversight NOUN
, PUNCT
" PUNCT
said VERB
FDA PROPN
commissioner NOUN
David PROPN
A. PROPN
Kessler PROPN
, PUNCT
M.D. PROPN
" PUNCT
While SCONJ
drug NOUN
approval NOUN
will AUX
be AUX
accomplished VERB
faster ADV
, PUNCT
these DET
drugs NOUN
and CCONJ
biological ADJ
products NOUN
must AUX
still ADV
meet VERB
safety NOUN
and CCONJ
effectiveness NOUN
standards NOUN
required VERB
by ADP
law NOUN
. PUNCT
" PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
16Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993The NUM
new ADJ
procedures NOUN
also ADV
allow VERB
for ADP
a DET
streamlined ADJ
withdrawal NOUN
process NOUN
if SCONJ
the DET
postmarketing NOUN
studies NOUN
do AUX
not PART
verify VERB
the DET
drug NOUN
's PART
clinical ADJ
benefit NOUN
, PUNCT
if SCONJ
there PRON
is AUX
new ADJ
evidence NOUN
that SCONJ
the DET
drug NOUN
product NOUN
is AUX
not PART
shown VERB
to PART
be AUX
safe ADJ
and CCONJ
effective ADJ
, PUNCT
or CCONJ
if SCONJ
other ADJ
specified VERB
circumstances NOUN
arise VERB
that SCONJ
necessitate VERB
expeditious ADJ
withdrawal NOUN
of ADP
the DET
drug NOUN
or CCONJ
biologic NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
17Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                   SPACE
Articles NOUN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
Research NOUN
Shows VERB
Promise PROPN
for ADP
Preventing PROPN
or CCONJ
Slowing VERB
                       SPACE
Blindness NOUN
due ADP
to ADP
Retinal PROPN
Disease PROPN
                   SPACE
National PROPN
Retinitis PROPN
Pigmentosa PROPN
Foundation PROPN
        SPACE
Neutrophilic PROPN
Factors PROPN
Rescue PROPN
Photoreceptor PROPN
Cells PROPN
in ADP
Animal PROPN
Tests PROPN
     SPACE
Baltimore PROPN
, PUNCT
MD PROPN
- PUNCT
Researchers PROPN
at ADP
the DET
University PROPN
of ADP
California PROPN
San PROPN
Francisco PROPN
and CCONJ
Regeneron PROPN
Pharmaceuticals PROPN
, PUNCT
Inc. PROPN
[ PUNCT
NASDAQ PROPN
: PUNCT
REGN NOUN
] PUNCT
have AUX
discovered VERB
that SCONJ
certain ADJ
naturally ADV
occurring VERB
substances NOUN
known VERB
as SCONJ
neurotrophic ADJ
factors NOUN
can AUX
prevent VERB
the DET
degeneration NOUN
of ADP
light ADJ
- PUNCT
sensing VERB
cells NOUN
in ADP
the DET
retina NOUN
of ADP
the DET
eye NOUN
. PUNCT
The DET
degeneration NOUN
of ADP
these DET
cells NOUN
, PUNCT
known VERB
as SCONJ
photoreceptors NOUN
, PUNCT
is AUX
a DET
major ADJ
cause NOUN
of ADP
visual ADJ
impairment NOUN
      SPACE
This DET
research NOUN
, PUNCT
published VERB
to ADP
in ADP
the DET
December PROPN
issue NOUN
of ADP
the DET
Proceedings NOUN
of ADP
the DET
National PROPN
Academy PROPN
of ADP
Science PROPN
( PUNCT
PNAS NOUN
) PUNCT
, PUNCT
holds VERB
promise NOUN
for ADP
people NOUN
who PRON
may AUX
lose VERB
their PRON
sight NOUN
due ADP
to ADP
progressive ADJ
retinal ADJ
degeneration NOUN
-- PUNCT
currently ADV
, PUNCT
no DET
drug NOUN
treatment NOUN
for ADP
retinal ADJ
degeneration NOUN
exists VERB
. PUNCT
It PRON
is AUX
estimated VERB
that SCONJ
2.5 NUM
million NUM
Americans PROPN
have AUX
severe ADJ
vision NOUN
loss NOUN
due ADP
to ADP
age NOUN
- PUNCT
related VERB
macular ADJ
degeneration NOUN
and CCONJ
100,000 NUM
Americans PROPN
are AUX
affected VERB
by ADP
retinitis PROPN
pigmentosus PROPN
, PUNCT
a DET
hereditary ADJ
disease NOUN
that PRON
causes VERB
blindness NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
each DET
year NOUN
more ADJ
than SCONJ
15,000 NUM
people NOUN
undergo VERB
surgical ADJ
procedures NOUN
to PART
repair VERB
retinal ADJ
detachments NOUN
and CCONJ
other ADJ
retinal ADJ
traumas NOUN
. PUNCT
      SPACE
The DET
research NOUN
was AUX
funded VERB
in ADP
part NOUN
by ADP
the DET
RP PROPN
( PUNCT
Retinitis PROPN
Pigmentosa PROPN
) PUNCT
Foundation PROPN
Fighting PROPN
Blindness PROPN
, PUNCT
Regeneron PROPN
Pharmaceuticals PROPN
and CCONJ
the DET
National PROPN
Eye PROPN
Institute PROPN
. PUNCT
It PRON
was AUX
conducted VERB
by ADP
Drs PROPN
. PUNCT
Matthew PROPN
M. PROPN
LaVail PROPN
, PUNCT
Kazuhiko PROPN
Unoki PROPN
, PUNCT
Douglas PROPN
Yasurnura PROPN
, PUNCT
Michael PROPN
T. PROPN
Matthes PROPN
and CCONJ
Roy PROPN
H. PROPN
Steinberg PROPN
at ADP
UCSF PROPN
, PUNCT
arld NOUN
Dr. PROPN
C;eorge PROPN
Yancoooulos PROPN
, PUNCT
Regeneron PROPN
's PART
Vice PROPN
President PROPN
for ADP
Discovery PROPN
. PUNCT
Regeneron PROPN
holds VERB
an DET
exclusive ADJ
license NOUN
for ADP
this DET
research NOUN
from ADP
UCSF PROPN
. PUNCT
     SPACE
In ADP
the DET
research NOUN
described VERB
in ADP
the DET
PNAS NOUN
, PUNCT
a DET
light ADJ
- PUNCT
damage NOUN
model NOUN
was AUX
used VERB
to PART
assess VERB
the DET
survival NOUN
- PUNCT
promoting VERB
activity NOUN
of ADP
a DET
number NOUN
of ADP
naturally ADV
occurring VERB
substances NOUN
. PUNCT
Experimental ADJ
rats NOUN
were AUX
exposed VERB
to ADP
constant ADJ
light NOUN
for ADP
one NUM
week NOUN
. PUNCT
Eyes NOUN
that DET
had AUX
not PART
been AUX
treated VERB
with ADP
an DET
effective ADJ
factor NOUN
lost VERB
most ADJ
of ADP
their PRON
photoreceptor NOUN
cells NOUN
-- PUNCT
the DET
rods NOUN
and CCONJ
cones NOUN
of ADP
the DET
retina NOUN
-- PUNCT
after ADP
light ADJ
exposure NOUN
. PUNCT
Brain NOUN
Derived VERB
Neurotrophic PROPN
Factor PROPN
( PUNCT
BDNF PROPN
) PUNCT
and CCONJ
Ciliary PROPN
Neurotrophic PROPN
Factor PROPN
( PUNCT
CNTF PROPN
) PUNCT
were AUX
particularly ADV
effective ADJ
in ADP
this DET
model NOUN
without ADP
causing VERB
unwanted ADJ
side NOUN
effects NOUN
; PUNCT
other ADJ
factors NOUN
such ADJ
as SCONJ
Nerve PROPN
Growth PROPN
Factor PROPN
( PUNCT
NGF PROPN
) PUNCT
and CCONJ
Insulin PROPN
- PUNCT
like ADJ
Growth PROPN
Factor PROPN
( PUNCT
IGF-1 PROPN
) PUNCT
were AUX
not PART
effective ADJ
in ADP
these DET
experiments NOUN
. PUNCT
      SPACE
Discussing VERB
the DET
research NOUN
, PUNCT
Dr. PROPN
Jesse PROPN
M. PROPN
Cedarbaum PROPN
, PUNCT
Regeneron PROPN
's PART
Director PROPN
of ADP
Clinical PROPN
Research PROPN
, PUNCT
said VERB
, PUNCT
" PUNCT
BDNF PROPN
's PART
ability NOUN
to PART
rescue VERB
neurons NOUN
in ADP
the DET
retina NOUN
that PRON
have AUX
been AUX
damaged VERB
by ADP
light ADJ
exposure NOUN
may AUX
hold VERB
promise NOUN
for ADP
the DET
treatment NOUN
of ADP
age NOUN
- PUNCT
related VERB
macular ADJ
degeneration NOUN
, PUNCT
one NUM
of ADP
the DET
leading VERB
causes NOUN
of ADP
vision NOUN
impairment NOUN
, PUNCT
and CCONJ
for ADP
retinal ADJ
detachment NOUN
. PUNCT
Following VERB
detachment NOUN
, PUNCT
permanent ADJ
vision NOUN
loss NOUN
may AUX
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
18Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993result NUM
frorn VERB
the DET
death NOUN
of ADP
detached ADJ
retinal ADJ
cells NOUN
. PUNCT
It PRON
is AUX
possible ADJ
that SCONJ
BDNF PROPN
could AUX
play VERB
a DET
role NOUN
in ADP
rescuing VERB
those DET
cells NOUN
once SCONJ
the DET
retina NOUN
has AUX
been AUX
reattached VERB
surgically ADV
. PUNCT
" PUNCT
      SPACE
" PUNCT
Retinitis PROPN
pigmentosa PROPN
is AUX
a DET
slowly ADV
progressing VERB
disease NOUN
that PRON
causes VERB
the DET
retina NOUN
to PART
degenerate VERB
over ADP
a DET
period NOUN
of ADP
years NOUN
or CCONJ
even ADV
decades NOUN
. PUNCT
Vision NOUN
decreases VERB
to ADP
a DET
small ADJ
tunnel NOUN
of ADP
sight NOUN
and CCONJ
can AUX
result VERB
in ADP
total ADJ
blindness NOUN
. PUNCT
It PRON
is AUX
our PRON
hope NOUN
that SCONJ
research NOUN
on ADP
growth NOUN
factors NOUN
will AUX
provide VERB
a DET
means NOUN
to PART
slow VERB
the DET
progression NOUN
and CCONJ
preserve VERB
useful ADJ
vision NOUN
throughout ADP
life NOUN
, PUNCT
" PUNCT
stated VERB
Jeanette PROPN
S. PROPN
Felix PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
Director PROPN
of ADP
Science PROPN
for ADP
the DET
RP PROPN
Foundation PROPN
Fighting PROPN
Blindness PROPN
. PUNCT
      SPACE
In ADP
addition NOUN
to ADP
the DET
work NOUN
described VERB
, PUNCT
Regeneron PROPN
is AUX
developing VERB
BDNF PROPN
in ADP
conjunction NOUN
with ADP
Aingen PROPN
Inc. PROPN
[ PUNCT
NASDAQ PROPN
: PUNCT
AMGN PROPN
] PUNCT
as SCONJ
a DET
possible ADJ
treatment NOUN
for ADP
peripheral ADJ
neuropathies NOUN
associated VERB
with ADP
diabetes NOUN
and CCONJ
cancer NOUN
chemotherapy NOUN
, PUNCT
motor PROPN
neuron PROPN
diseases NOUN
, PUNCT
Parkinson PROPN
's PART
disease NOUN
, PUNCT
and CCONJ
Alzheimer PROPN
's PART
disease NOUN
. PUNCT
By ADP
itself PRON
, PUNCT
Regeneron PROPN
is AUX
testing VERB
CNTF PROPN
in ADP
patients NOUN
with ADP
arnyotrophic ADJ
lateral PROPN
sclerosis PROPN
( PUNCT
commonly ADV
known VERB
as SCONJ
Lou PROPN
Gehrig PROPN
's PART
disease NOUN
) PUNCT
. PUNCT
      SPACE
Regeneron PROPN
Pharlnaceuticals PROPN
, PUNCT
Inc. PROPN
, PUNCT
based VERB
in ADP
Tarrytown PROPN
, PUNCT
New PROPN
York PROPN
, PUNCT
is AUX
a DET
leader NOUN
in ADP
the DET
discovery NOUN
and CCONJ
development NOUN
of ADP
biotechnology NOUN
- PUNCT
based VERB
compounds NOUN
for ADP
the DET
treatment NOUN
of ADP
neurodegenerative ADJ
diseases NOUN
, PUNCT
peripheral ADJ
neuropathies NOUN
and CCONJ
nerve NOUN
injuries NOUN
, PUNCT
which PRON
affect VERB
more ADJ
than SCONJ
seven NUM
million NUM
Americans PROPN
. PUNCT
Drs PROPN
. PUNCT
LaVail PROPN
and CCONJ
Steinberg PROPN
of ADP
UCSF PROPN
are AUX
consultants NOUN
to ADP
Regeneron PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
19Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
                 SPACE
Affluent PROPN
Diet PROPN
Increases PROPN
Risk PROPN
Of ADP
Heart PROPN
Disease PROPN
                          SPACE
Research PROPN
Resources PROPN
Reporter NOUN
                           SPACE
written VERB
by ADP
Mary PROPN
Weideman PROPN
                                 SPACE
Nov PROPN
/ SYM
Dec PROPN
1992 NUM
                         SPACE
National PROPN
Institutes PROPN
of ADP
Health PROPN
     SPACE
High ADJ
- PUNCT
fat NOUN
, PUNCT
high ADJ
- PUNCT
calorie NOUN
diets NOUN
rapidly ADV
increase VERB
risk NOUN
factors NOUN
for ADP
coronary ADJ
heart NOUN
disease NOUN
in ADP
native ADJ
populations NOUN
of ADP
developing VERB
countries NOUN
that PRON
have AUX
traditionally ADV
consumed VERB
diets NOUN
low ADJ
in ADP
fat NOUN
. PUNCT
  SPACE
These DET
findings NOUN
, PUNCT
according VERB
to ADP
investigators NOUN
at ADP
the DET
Oregon PROPN
Health PROPN
Sciences PROPN
University PROPN
in ADP
Portland PROPN
, PUNCT
have AUX
serious ADJ
implications NOUN
for ADP
public ADJ
health NOUN
in ADP
both DET
industrialized VERB
and CCONJ
developing VERB
countries NOUN
. PUNCT
      SPACE
" PUNCT
This DET
study NOUN
demonstrates VERB
why ADV
we PRON
can AUX
develop VERB
coronary ADJ
heart NOUN
disease NOUN
and CCONJ
have AUX
higher ADJ
blood NOUN
cholesterol NOUN
and CCONJ
triglyceride ADJ
levels NOUN
. PUNCT
  SPACE
It PRON
shows VERB
also ADV
the DET
importance NOUN
of ADP
diet NOUN
and CCONJ
particularly ADV
the DET
potential NOUN
of ADP
the DET
diet NOUN
to PART
increase VERB
body NOUN
weight NOUN
, PUNCT
thereby ADV
leading VERB
to ADP
a DET
whole ADJ
host NOUN
of ADP
other ADJ
health NOUN
problems NOUN
in ADP
developing VERB
countries NOUN
and CCONJ
affluent ADJ
nations NOUN
as ADV
well ADV
, PUNCT
" PUNCT
explains VERB
principal ADJ
investigator NOUN
Dr. PROPN
William PROPN
E. PROPN
Connor PROPN
, PUNCT
head NOUN
of ADP
the DET
section NOUN
of ADP
clinical ADJ
nutrition NOUN
and CCONJ
lipid NOUN
metabolism NOUN
at ADP
Oregon PROPN
Health PROPN
Sciences PROPN
University PROPN
. PUNCT
      SPACE
Over ADP
the DET
past ADJ
25 NUM
years NOUN
Dr. PROPN
Connor PROPN
and CCONJ
his PRON
team NOUN
have AUX
characterized VERB
the DET
food NOUN
and CCONJ
nutrient ADJ
intakes NOUN
of ADP
the DET
Tara PROPN
humara PROPN
Indians PROPN
in ADP
Mexico PROPN
, PUNCT
while SCONJ
simultaneously ADV
documenting VERB
various ADJ
aspects NOUN
of ADP
Tarahumara PROPN
lipid NOUN
metabolism NOUN
. PUNCT
  SPACE
These DET
native ADJ
Mexicans PROPN
number VERB
approximately ADV
50,000 NUM
and CCONJ
reside VERB
in ADP
the DET
Sierra PROPN
Madre PROPN
Occidental PROPN
Mountains PROPN
in ADP
the DET
state NOUN
of ADP
Chihuahua PROPN
. PUNCT
  SPACE
The DET
Tarahumaras PROPN
have AUX
coupled VERB
an DET
agrarian ADJ
diet NOUN
to ADP
endurance VERB
racing NOUN
. PUNCT
  SPACE
Probably ADV
as SCONJ
a DET
result NOUN
, PUNCT
coronary ADJ
heart NOUN
disease NOUN
, PUNCT
which PRON
is AUX
so ADV
prevalent ADJ
in ADP
Western ADJ
industrialized ADJ
nations NOUN
, PUNCT
is AUX
virtually ADV
non ADJ
existent NOUN
in ADP
their PRON
culture NOUN
. PUNCT
  SPACE
Loosely ADV
translated VERB
, PUNCT
the DET
name NOUN
Tarahumara PROPN
means VERB
" PUNCT
fleet NOUN
of ADP
foot NOUN
, PUNCT
" PUNCT
reflecting VERB
a DET
tribal ADJ
passion NOUN
for ADP
betting VERB
on ADP
" PUNCT
kickball NOUN
" PUNCT
races NOUN
, PUNCT
in ADP
which PRON
participants NOUN
run VERB
distances NOUN
of ADP
100 NUM
miles NOUN
or CCONJ
more ADJ
while SCONJ
kicking VERB
a DET
machete NOUN
- PUNCT
carved VERB
wooden ADJ
ball NOUN
. PUNCT
     SPACE
The DET
typical ADJ
Tarahumara PROPN
diet NOUN
consists VERB
primarily ADV
of ADP
pinto ADJ
beans NOUN
, PUNCT
tortillas NOUN
, PUNCT
and CCONJ
pinole PROPN
, PUNCT
a DET
drink NOUN
made VERB
of ADP
ground NOUN
roasted VERB
corn NOUN
mixed VERB
with ADP
cold ADJ
water NOUN
, PUNCT
together ADV
with ADP
squash NOUN
and CCONJ
gath PROPN
ered VERB
fruits NOUN
and CCONJ
vegetables NOUN
. PUNCT
  SPACE
The DET
Tara PROPN
humaras NOUN
also ADV
eat VERB
small ADJ
amounts NOUN
of ADP
game NOUN
, PUNCT
fish NOUN
, PUNCT
and CCONJ
eggs NOUN
. PUNCT
  SPACE
Their PRON
food NOUN
contains VERB
approximately ADV
12 NUM
percent NOUN
of ADP
total ADJ
calories NOUN
as SCONJ
fat NOUN
of ADP
which PRON
the DET
majority NOUN
( PUNCT
69 NUM
percent NOUN
) PUNCT
is AUX
of ADP
vegetable ADJ
origin NOUN
. PUNCT
  SPACE
Dietician PROPN
Martha PROPN
McMurry PROPN
, PUNCT
a DET
coinvestigator NOUN
in ADP
the DET
study NOUN
, PUNCT
describes VERB
their PRON
diet NOUN
as SCONJ
simple ADJ
and CCONJ
very ADV
rich ADJ
in ADP
nutrients NOUN
while SCONJ
low ADJ
in ADP
cholesterol NOUN
and CCONJ
fat NOUN
. PUNCT
     SPACE
The DET
Tarahumaras PROPN
have AUX
average ADJ
plasma NOUN
cholesterol NOUN
levels NOUN
of ADP
121 NUM
mg/ NOUN
dL ADJ
, PUNCT
low ADJ
- PUNCT
density NOUN
lipoprotein NOUN
( PUNCT
LDL)-cholesterol ADJ
levels NOUN
of ADP
72 NUM
mg PROPN
/ SYM
dl PROPN
, PUNCT
and CCONJ
high ADJ
- PUNCT
density NOUN
lipoprotein NOUN
( PUNCT
HDL)-cholesterol PROPN
levels NOUN
of ADP
32 NUM
to PART
42 NUM
mg PROPN
/ SYM
dl PROPN
. PROPN
  SPACE
All DET
of ADP
those DET
values NOUN
are AUX
in ADP
the DET
good ADJ
, PUNCT
low ADJ
- PUNCT
risk NOUN
range NOUN
, PUNCT
according VERB
to ADP
the DET
researchers NOUN
. PUNCT
  SPACE
Elevated ADJ
cholesterol NOUN
and CCONJ
LDL NOUN
- PUNCT
cholesterol NOUN
levels NOUN
are AUX
considered VERB
risk NOUN
factors NOUN
for ADP
heart NOUN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
20Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993disease PROPN
. PROPN
  SPACE
HDL PROPN
- PUNCT
cholesterol NOUN
is AUX
considered VERB
beneficial ADJ
. PUNCT
  SPACE
In ADP
previous ADJ
studies NOUN
the DET
Tarahumaras PROPN
had AUX
been AUX
found VERB
to PART
be AUX
at ADP
low ADJ
risk NOUN
for ADP
cardiac ADJ
disease NOUN
, PUNCT
although SCONJ
able ADJ
to PART
respond VERB
to ADP
high ADJ
- PUNCT
cholesterol NOUN
diets NOUN
with ADP
elevations NOUN
in ADP
total NOUN
and CCONJ
LDL PROPN
- PUNCT
cholesterol NOUN
. PUNCT
      SPACE
Clinical PROPN
Research PROPN
Center PROPN
dietitian ADJ
McMurry PROPN
and CCONJ
coinvestigator NOUN
Maria PROPN
Teresa PROPN
Cerqueira PROPN
established VERB
a DET
metabolic ADJ
unit NOUN
in ADP
a DET
Jesuit PROPN
mission NOUN
school NOUN
building NOUN
near SCONJ
a DET
community NOUN
hospital NOUN
in ADP
the DET
small ADJ
village NOUN
of ADP
Sisoguichi PROPN
. PUNCT
  SPACE
Food PROPN
was AUX
weighed VERB
, PUNCT
cooked VERB
, PUNCT
and CCONJ
fed VERB
to ADP
the DET
study NOUN
participants NOUN
under ADP
the DET
investigators NOUN
' PART
direct ADJ
supervision NOUN
, PUNCT
ensuring VERB
that SCONJ
subjects NOUN
ate VERB
only ADV
food NOUN
stipulated VERB
by ADP
the DET
research NOUN
protocol NOUN
. PUNCT
  SPACE
Fasting VERB
blood NOUN
was AUX
drawn VERB
twice ADV
weekly ADJ
, PUNCT
and CCONJ
plasma NOUN
samples NOUN
were AUX
frozen VERB
and CCONJ
shipped VERB
to ADP
Dr. PROPN
Connors PROPN
laboratory NOUN
for ADP
cholesterol NOUN
, PUNCT
triglyceride PROPN
, PUNCT
and CCONJ
lipoprotein PROPN
analyses NOUN
. PUNCT
  SPACE
Regular ADJ
measurements NOUN
included VERB
participant ADJ
body NOUN
weight NOUN
, PUNCT
height NOUN
, PUNCT
and CCONJ
triceps NOUN
skin NOUN
fold VERB
thickness ADJ
. PUNCT
  SPACE
Thirteen NUM
Tarahumaras PROPN
, PUNCT
five NUM
women NOUN
and CCONJ
eight NUM
men NOUN
, PUNCT
including VERB
one NUM
adolescent NOUN
, PUNCT
were AUX
fed VERB
their PRON
native ADJ
diet NOUN
for ADP
1 NUM
week NOUN
, PUNCT
followed VERB
by ADP
5 NUM
weeks NOUN
of ADP
an DET
" PUNCT
affluent ADJ
" PUNCT
diet NOUN
. PUNCT
      SPACE
" PUNCT
In ADP
this DET
study NOUN
we PRON
went VERB
up ADP
to ADP
a DET
concentration NOUN
of ADP
dietary ADJ
fat NOUN
that PRON
was AUX
40 NUM
percent NOUN
of ADP
total ADJ
calories NOUN
. PUNCT
  SPACE
This DET
is AUX
the DET
prototype NOUN
of ADP
the DET
holiday NOUN
diet NOUN
that SCONJ
many ADJ
Americans PROPN
consume VERB
a DET
diet NOUN
high ADJ
in ADP
fat NOUN
, PUNCT
sugar NOUN
, PUNCT
and CCONJ
cholesterol NOUN
, PUNCT
low ADJ
in ADP
fiber NOUN
, PUNCT
" PUNCT
elaborates VERB
Dr. PROPN
Conners PROPN
. PUNCT
Such ADJ
dietary ADJ
characteristics NOUN
are AUX
reflected VERB
in ADP
the DET
cholesterol NOUN
- PUNCT
saturation NOUN
index NOUN
, PUNCT
or CCONJ
CSI PROPN
, PUNCT
recently ADV
devised VERB
research NOUN
dietitian NOUN
Sonja PROPN
Conner PROPN
working VERB
with ADP
Dr. PROPN
Connor PROPN
. PUNCT
  SPACE
" PUNCT
The DET
CSI PROPN
is AUX
a DET
single ADJ
number NOUN
that PRON
incorporates VERB
both DET
the DET
amount NOUN
of ADP
cholesterol NOUN
and CCONJ
the DET
amount NOUN
of ADP
saturated VERB
fat NOUN
in ADP
the DET
diet NOUN
. PUNCT
  SPACE
CSI PROPN
indicates VERB
the DET
diet NOUN
's PART
potential NOUN
to PART
elevate VERB
the DET
cholesterol NOUN
level NOUN
, PUNCT
particularly ADV
the DET
LDL NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connor PROPN
explains VERB
. PUNCT
  SPACE
The DET
Tarahumaran PROPN
diet NOUN
averages VERB
a DET
very ADV
low ADJ
CSI PROPN
of ADP
20 NUM
; PUNCT
Dr. PROPN
Connor PROPN
's PART
" PUNCT
affluent ADJ
" PUNCT
diet NOUN
used VERB
in ADP
the DET
study NOUN
ranks VERB
a DET
CSI PROPN
of ADP
149 NUM
. PUNCT
      SPACE
The DET
experimental ADJ
design NOUN
of ADP
this DET
study NOUN
reflects VERB
the DET
importance NOUN
of ADP
establishing VERB
baseline NOUN
plasma NOUN
lipid NOUN
levels NOUN
, PUNCT
typical ADJ
of ADP
the DET
native ADJ
diet NOUN
, PUNCT
before ADP
exposing VERB
subjects NOUN
to ADP
the DET
experimental ADJ
diet NOUN
. PUNCT
  SPACE
The DET
standard ADJ
curve NOUN
relating VERB
dietary ADJ
food NOUN
intake NOUN
to PART
plasma VERB
cholesterol NOUN
demonstrates VERB
a DET
leveling NOUN
off ADP
, PUNCT
or CCONJ
plateau NOUN
, PUNCT
for ADP
consumption NOUN
of ADP
large ADJ
amounts NOUN
of ADP
fat NOUN
. PUNCT
  SPACE
Changes NOUN
in ADP
dietary ADJ
fat NOUN
and/or CCONJ
cholesterol NOUN
in ADP
this DET
range NOUN
have AUX
little ADJ
effect NOUN
on ADP
plasma NOUN
levels NOUN
. PUNCT
  SPACE
" PUNCT
You PRON
must AUX
have AUX
the DET
baseline NOUN
diet NOUN
almost ADV
free ADJ
of ADP
the DET
variables NOUN
you PRON
are AUX
going VERB
to PART
put VERB
into ADP
the DET
experimental ADJ
diet NOUN
. PUNCT
  SPACE
The DET
Framingham PROPN
study NOUN
, PUNCT
for ADP
example NOUN
, PUNCT
did AUX
not PART
discriminate VERB
on ADP
the DET
basis NOUN
of ADP
diet NOUN
between ADP
individuals NOUN
who PRON
got VERB
heart NOUN
disease NOUN
because SCONJ
the DET
diet NOUN
was AUX
already ADV
high ADJ
in ADP
fat NOUN
. PUNCT
  SPACE
All DET
subjects NOUN
were AUX
already ADV
eating VERB
on ADP
a DET
plateau NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connor PROPN
says VERB
. PUNCT
      SPACE
After ADP
5 NUM
weeks NOUN
of ADP
consuming VERB
the DET
" PUNCT
affluent ADJ
" PUNCT
diet NOUN
, PUNCT
the DET
subjects NOUN
' PART
mean ADJ
plasma NOUN
cholesterol NOUN
levels NOUN
had AUX
in ADP
creased VERB
by ADP
31 NUM
percent NOUN
, PUNCT
primarily ADV
in ADP
the DET
LDL PROPN
fraction NOUN
, PUNCT
which PRON
rose VERB
39 NUM
percent NOUN
. PUNCT
  SPACE
HDL PROPN
- PUNCT
cholesterol NOUN
increased VERB
by ADP
31 NUM
per ADP
cent NOUN
, PUNCT
and CCONJ
LDL PROPN
to ADP
HDL PROPN
ratios NOUN
changed VERB
therefore ADV
very ADV
little ADJ
. PUNCT
  SPACE
Plasma PROPN
triglyceride ADJ
levels NOUN
increased VERB
by ADP
18 NUM
percent NOUN
, PUNCT
and CCONJ
subjects NOUN
averaged VERB
an DET
8-pound NUM
gain NOUN
in ADP
weight NOUN
. PUNCT
  SPACE
According VERB
to ADP
Dr. PROPN
Connor PROPN
, PUNCT
lipid NOUN
changes NOUN
occurred VERB
surprisingly ADV
soon ADV
, PUNCT
yielding VERB
nearly ADV
the DET
same ADJ
results NOUN
after ADP
7 NUM
days NOUN
of ADP
affluent ADJ
diet NOUN
as SCONJ
after ADP
35 NUM
days NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
21Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
The DET
increase NOUN
in ADP
HDL PROPN
carries VERB
broad ADJ
dietary ADJ
implications NOUN
for ADP
industrialized ADJ
nations NOUN
. PUNCT
  SPACE
" PUNCT
We PRON
think VERB
HDL PROPN
- PUNCT
cholesterol NOUN
increased VERB
because SCONJ
we PRON
increased VERB
the DET
amount NOUN
of ADP
dietary ADJ
fat NOUN
over ADP
the DET
fat ADJ
content NOUN
used VERB
in ADP
the DET
previous ADJ
Tarahumara PROPN
metabolic ADJ
study NOUN
. PUNCT
  SPACE
In ADP
that DET
study NOUN
we PRON
saw VERB
no DET
change NOUN
in ADP
HDL PROPN
levels NOUN
after ADP
raising VERB
the DET
dietary ADJ
cholesterol NOUN
but CCONJ
keeping VERB
the DET
fat NOUN
relatively ADV
consistent ADJ
with ADP
native ADJ
consumption NOUN
. PUNCT
  SPACE
In ADP
the DET
present ADJ
study NOUN
we PRON
increased VERB
fat ADJ
intake NOUN
to ADP
40 NUM
percent NOUN
of ADP
the DET
total ADJ
calories NOUN
. PUNCT
  SPACE
We PRON
reached VERB
the DET
conclusion NOUN
in ADP
the DET
Tarahumara PROPN
study NOUN
that SCONJ
HDL PROPN
reflects VERB
the DET
amount NOUN
of ADP
dietary ADJ
fat NOUN
in ADP
general ADJ
and CCONJ
not PART
the DET
amount NOUN
of ADP
dietary ADJ
cholesterol NOUN
. PUNCT
  SPACE
HDL PROPN
must AUX
increase VERB
to PART
help VERB
metabolize VERB
the DET
fat NOUN
, PUNCT
and CCONJ
it PRON
increased VERB
quite DET
a DET
bit NOUN
in ADP
this DET
study NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connor PROPN
explains VERB
. PUNCT
     SPACE
Low PROPN
HDL PROPN
in ADP
the DET
Tarahumarans PROPN
is AUX
not PART
typically ADV
an DET
important ADJ
predictor NOUN
of ADP
coronary ADJ
heart NOUN
disease NOUN
because SCONJ
they PRON
do AUX
not PART
normally ADV
consume VERB
large ADJ
amounts NOUN
of ADP
fat NOUN
or CCONJ
cholesterol NOUN
. PUNCT
  SPACE
HDL PROPN
remains VERB
an DET
important ADJ
predictor NOUN
to ADP
Americans PROPN
because SCONJ
of ADP
their PRON
usual ADJ
high ADJ
fat NOUN
intake NOUN
. PUNCT
      SPACE
Dr. PROPN
Connor PROPN
recommends VERB
a DET
diet NOUN
for ADP
Americans PROPN
that PRON
contains VERB
less ADJ
than SCONJ
20 NUM
percent NOUN
of ADP
total ADJ
calories NOUN
as SCONJ
fat ADJ
, PUNCT
less ADJ
than SCONJ
100 NUM
mg NOUN
of ADP
cholesterol NOUN
, PUNCT
and CCONJ
a DET
CSI PROPN
around ADP
20 NUM
, PUNCT
varying VERB
in ADP
accordance NOUN
with ADP
caloric ADJ
needs NOUN
. PUNCT
  SPACE
Such DET
a DET
diet NOUN
is AUX
low ADJ
in ADP
meat NOUN
and CCONJ
dairy NOUN
fat NOUN
, PUNCT
high ADJ
in ADP
fiber NOUN
. PUNCT
  SPACE
Dr. PROPN
Connor PROPN
also ADV
comments VERB
on ADP
recent ADJ
suggestions NOUN
that PRON
Americans PROPN
adopt VERB
a DET
" PUNCT
Mediterranean PROPN
- PUNCT
style NOUN
" PUNCT
diet NOUN
. PUNCT
  SPACE
" PUNCT
The DET
original ADJ
Mediterranean PROPN
diet NOUN
, PUNCT
in ADP
its PRON
pristine ADJ
state NOUN
, PUNCT
consisted VERB
of ADP
a DET
very ADV
low ADJ
intake NOUN
of ADP
fat ADJ
and CCONJ
very ADV
few ADJ
animal NOUN
and CCONJ
dairy NOUN
products NOUN
. PUNCT
  SPACE
We PRON
are AUX
already ADV
eating VERB
a DET
lot NOUN
of ADP
meat NOUN
and CCONJ
dairy NOUN
products NOUN
. PUNCT
  SPACE
Simply ADV
to PART
continue VERB
that DET
pattern NOUN
while SCONJ
switching VERB
to ADP
olive ADJ
oil NOUN
is AUX
not PART
going VERB
to PART
help VERB
the DET
situation NOUN
. PUNCT
" PUNCT
      SPACE
The DET
World PROPN
Health PROPN
Organization PROPN
( PUNCT
WHO PROPN
) PUNCT
is AUX
focusing VERB
much ADJ
attention NOUN
on ADP
the DET
emergence NOUN
of ADP
diseases NOUN
such ADJ
as SCONJ
coronary ADJ
heart NOUN
disease NOUN
in ADP
nations NOUN
and CCONJ
societies NOUN
undergoing VERB
technological ADJ
development NOUN
. PUNCT
  SPACE
Dr. PROPN
Connor PROPN
says VERB
that SCONJ
coronary ADJ
heart NOUN
disease NOUN
starts VERB
with ADP
a DET
given VERB
society NOUN
's PART
elite NOUN
, PUNCT
who PRON
typically ADV
eat VERB
a DET
different ADJ
diet NOUN
than SCONJ
the DET
average ADJ
citizen NOUN
. PUNCT
  SPACE
" PUNCT
If SCONJ
the DET
pattern NOUN
of ADP
afluence NOUN
increases NOUN
, PUNCT
the DET
entire ADJ
population NOUN
will AUX
have AUX
have AUX
a DET
higher ADJ
incidence NOUN
of ADP
coronary ADJ
heart NOUN
disease NOUN
, PUNCT
which PRON
places VERB
a DET
termendous ADJ
health NOUN
care NOUN
burden NOUN
on ADP
a DET
society NOUN
. PUNCT
  SPACE
WHO PRON
would AUX
like VERB
the DET
developing VERB
countries NOUN
to PART
prevent VERB
coronary ADJ
heart NOUN
disease NOUN
, PUNCT
so SCONJ
they PRON
can AUX
concentrate VERB
on ADP
other ADJ
aspects NOUN
of ADP
their PRON
economic ADJ
development NOUN
and CCONJ
on ADP
public ADJ
health NOUN
measures NOUN
to PART
improve VERB
general ADJ
well ADV
- PUNCT
being NOUN
, PUNCT
rather ADV
than SCONJ
paying VERB
for ADP
unnecessary ADJ
, PUNCT
expensive ADJ
medical ADJ
technology NOUN
, PUNCT
" PUNCT
Dr. PROPN
Connors PROPN
says VERB
. PUNCT
     SPACE
" PUNCT
The DET
overall ADJ
implication NOUN
of ADP
this DET
study NOUN
is AUX
that SCONJ
humans NOUN
can AUX
readily ADV
move VERB
their PRON
plasma NOUN
lipids NOUN
and CCONJ
lipoprotein ADJ
values NOUN
into ADP
a DET
high ADJ
- PUNCT
risk NOUN
range NOUN
within ADP
a DET
very ADV
short ADJ
time NOUN
by ADP
an DET
affluent ADJ
, PUNCT
excessive ADJ
diet NOUN
. PUNCT
  SPACE
The DET
present ADJ
rate NOUN
of ADP
coronary ADJ
heart NOUN
disease NOUN
in ADP
the DET
United PROPN
States PROPN
is AUX
30 NUM
percent NOUN
less ADJ
than SCONJ
it PRON
was AUX
20 NUM
years NOUN
ago ADV
, PUNCT
so ADV
a DET
lot NOUN
has AUX
been AUX
accomplished VERB
. PUNCT
  SPACE
We PRON
are AUX
changing VERB
rapidly ADV
, PUNCT
" PUNCT
he PRON
concludes VERB
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
22Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                             SPACE
General PROPN
Announcments PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
        SPACE
Publications PROPN
for ADP
Health PROPN
Professionals PROPN
Available ADJ
from ADP
NCI PROPN
( PUNCT
1/93)Unless NUM
otherwise ADV
noted VERB
, PUNCT
the DET
following VERB
materials NOUN
are AUX
provided VERB
free ADJ
of ADP
charge NOUN
by ADP
calling VERB
the DET
NCI PROPN
's PART
Publication PROPN
Ordering PROPN
Service PROPN
, PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
4-CANCER NOUN
. PUNCT
  SPACE
Because SCONJ
Federal PROPN
Government PROPN
publications NOUN
are AUX
not PART
subject ADJ
to ADP
copyright NOUN
restriction NOUN
, PUNCT
you PRON
are AUX
free ADJ
to PART
photocopy VERB
NCI PROPN
material NOUN
. PUNCT
   SPACE
GENERAL PROPN
INFORMATION PROPN
       SPACE
ANTICANCER PROPN
DRUG PROPN
INFORMATION NOUN
SHEETS VERB
IN ADP
SPANISH PROPN
/ SYM
ENGLISH PROPN
. PUNCT
  SPACE
Two- PROPN
     SPACE
sided ADJ
fact NOUN
sheets NOUN
( PUNCT
in ADP
English PROPN
and CCONJ
Spanish PROPN
) PUNCT
provide VERB
     SPACE
information NOUN
about ADP
side NOUN
effects NOUN
of ADP
common ADJ
drugs NOUN
used VERB
to PART
treat VERB
     SPACE
cancer NOUN
, PUNCT
their PRON
proper ADJ
usage NOUN
, PUNCT
and CCONJ
precautions NOUN
for ADP
patients NOUN
. PUNCT
     SPACE
The DET
fact NOUN
sheets NOUN
were AUX
prepared VERB
by ADP
the DET
United PROPN
States PROPN
     SPACE
Pharmacopeial PROPN
Convention PROPN
, PUNCT
Inc. PROPN
, PUNCT
for ADP
distribution NOUN
by ADP
the DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
Single ADJ
sets NOUN
only ADV
may AUX
be AUX
ordered VERB
. PUNCT
      SPACE
CANCER PROPN
RATES NOUN
AND CCONJ
RISKS PROPN
, PUNCT
3RD NUM
EDITION PROPN
( PUNCT
85 NUM
- SYM
691 NUM
) PUNCT
. PUNCT
  SPACE
This DET
book NOUN
is AUX
     SPACE
a DET
compact ADJ
guide NOUN
to ADP
statistics NOUN
, PUNCT
risk NOUN
factors NOUN
, PUNCT
and CCONJ
risks NOUN
for ADP
     SPACE
major ADJ
cancer NOUN
sites NOUN
. PUNCT
  SPACE
It PRON
includes VERB
charts NOUN
and CCONJ
graphs NOUN
showing VERB
     SPACE
incidence NOUN
, PUNCT
mortality NOUN
, PUNCT
and CCONJ
survival NOUN
worldwide ADV
and CCONJ
in ADP
the DET
     SPACE
United PROPN
States PROPN
. PUNCT
  SPACE
It PRON
also ADV
contains VERB
a DET
section NOUN
on ADP
the DET
costs NOUN
of ADP
     SPACE
cancer NOUN
. PUNCT
136 NUM
pages NOUN
. PUNCT
      SPACE
DIET PROPN
, PUNCT
NUTRITION PROPN
& CCONJ
CANCER PROPN
PREVENTION PROPN
: PUNCT
A DET
GUIDE NOUN
TO ADP
FOOD NOUN
CHOICES NOUN
     SPACE
( PUNCT
87 NUM
- SYM
2778 NUM
) PUNCT
. PUNCT
  SPACE
This DET
booklet NOUN
describes VERB
what PRON
is AUX
now ADV
known VERB
about ADP
     SPACE
diet NOUN
, PUNCT
nutrition NOUN
, PUNCT
and CCONJ
cancer NOUN
prevention NOUN
. PUNCT
  SPACE
It PRON
provides VERB
     SPACE
information NOUN
about ADP
foods NOUN
that PRON
contain VERB
components NOUN
like SCONJ
fiber NOUN
, PUNCT
     SPACE
fat NOUN
, PUNCT
and CCONJ
vitamins NOUN
that PRON
may AUX
affect VERB
a DET
person NOUN
's PART
risk NOUN
of ADP
getting VERB
     SPACE
certain ADJ
cancers NOUN
. PUNCT
  SPACE
It PRON
suggests VERB
ways NOUN
to PART
use VERB
that DET
information NOUN
     SPACE
to PART
select VERB
from ADP
a DET
broad ADJ
variety NOUN
of ADP
foods NOUN
-- PUNCT
choosing VERB
more ADJ
of ADP
     SPACE
some DET
foods NOUN
and CCONJ
less ADJ
of ADP
others NOUN
. PUNCT
Includes VERB
recipes NOUN
and CCONJ
sample NOUN
     SPACE
menus NOUN
. PUNCT
  SPACE
39 NUM
pages NOUN
. PUNCT
      SPACE
NATIONAL PROPN
CANCER PROPN
INSTITUTE PROPN
FACT PROPN
BOOK PROPN
. PUNCT
  SPACE
This DET
book NOUN
presents VERB
     SPACE
general ADJ
information NOUN
about ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
     SPACE
including VERB
budget NOUN
data NOUN
, PUNCT
grants NOUN
and CCONJ
contracts NOUN
, PUNCT
and CCONJ
historical ADJ
     SPACE
information NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
23Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
NATIONAL PROPN
CANCER PROPN
INSTITUTE NOUN
GRANTS NOUN
PROCESS PROPN
( PUNCT
91 NUM
- SYM
1222 NUM
) PUNCT
( PUNCT
Revised VERB
     SPACE
3/90 NUM
) PUNCT
. PUNCT
  SPACE
This DET
booklet NOUN
describes VERB
general ADJ
NCI PROPN
grant NOUN
award NOUN
     SPACE
procedures NOUN
; PUNCT
includes VERB
chapters NOUN
on ADP
eligibility NOUN
, PUNCT
preparation NOUN
of ADP
     SPACE
grant NOUN
application NOUN
, PUNCT
peer NOUN
review NOUN
, PUNCT
eligible ADJ
costs NOUN
, PUNCT
and CCONJ
post- PROPN
     SPACE
award NOUN
activities NOUN
. PUNCT
  SPACE
62 NUM
pages NOUN
. PUNCT
      SPACE
PHYSICIAN PROPN
TO ADP
PHYSICIAN NOUN
: PUNCT
PERSPECTIVE NOUN
ON ADP
CLINICAL NOUN
TRIALS NOUN
. PUNCT
This DET
     SPACE
15-minute NUM
videocassette NOUN
discusses NOUN
why ADV
and CCONJ
how ADV
to PART
enter VERB
     SPACE
patients NOUN
on ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
It PRON
was AUX
produced VERB
in ADP
     SPACE
collaboration NOUN
with ADP
the DET
American PROPN
College PROPN
of ADP
Surgeons PROPN
     SPACE
Commission PROPN
on ADP
Cancer PROPN
. PUNCT
       SPACE
STUDENTS NOUN
WITH ADP
CANCER NOUN
: PUNCT
A DET
RESOURCE NOUN
FOR ADP
THE DET
EDUCATOR PROPN
( PUNCT
91 NUM
- PUNCT
2086 NUM
) PUNCT
. PUNCT
     SPACE
( PUNCT
Revised VERB
4/87 NUM
) PUNCT
This DET
booklet NOUN
is AUX
designed VERB
for ADP
teachers NOUN
who PRON
     SPACE
have AUX
students NOUN
with ADP
cancer NOUN
in ADP
their PRON
classrooms NOUN
or CCONJ
schools NOUN
. PUNCT
It PRON
     SPACE
includes VERB
an DET
explanation NOUN
of ADP
cancer NOUN
, PUNCT
its PRON
treatment NOUN
and CCONJ
     SPACE
effects NOUN
, PUNCT
and CCONJ
guidelines NOUN
for ADP
the DET
young ADJ
person NOUN
's PART
re NOUN
- NOUN
entry NOUN
to ADP
     SPACE
school NOUN
and CCONJ
for ADP
dealing VERB
with ADP
terminally ADV
ill ADJ
students NOUN
. PUNCT
     SPACE
Bibliographies NOUN
are AUX
included VERB
for ADP
both DET
educators NOUN
and CCONJ
young ADJ
     SPACE
people NOUN
. PUNCT
  SPACE
22 NUM
pages NOUN
. PUNCT
      SPACE
UNDERSTANDING PROPN
THE DET
IMMUNE PROPN
SYSTEM PROPN
( PUNCT
92 NUM
- SYM
529 NUM
) PUNCT
. PUNCT
This DET
booklet NOUN
     SPACE
describes VERB
the DET
complex ADJ
network NOUN
of ADP
specialized ADJ
cells NOUN
and CCONJ
     SPACE
organs NOUN
that PRON
make VERB
up ADP
the DET
human ADJ
immune ADJ
system NOUN
. PUNCT
It PRON
explains VERB
how ADV
     SPACE
the DET
system NOUN
works VERB
to PART
fight VERB
off ADP
disease NOUN
caused VERB
by ADP
invading VERB
     SPACE
agents NOUN
such ADJ
as SCONJ
bacteria NOUN
and CCONJ
viruses NOUN
, PUNCT
and CCONJ
how ADV
it PRON
sometimes ADV
     SPACE
malfunctions NOUN
, PUNCT
resulting VERB
in ADP
a DET
variety NOUN
of ADP
diseases NOUN
from ADP
     SPACE
allergies NOUN
, PUNCT
to ADP
arthritis NOUN
, PUNCT
to ADP
cancer NOUN
. PUNCT
It PRON
was AUX
developed VERB
by ADP
the DET
     SPACE
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
Infectious PROPN
Diseases NOUN
and CCONJ
     SPACE
printed VERB
by ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
     SPACE
presents VERB
college NOUN
level NOUN
instruction NOUN
in ADP
immunology NOUN
. PUNCT
  SPACE
It PRON
is AUX
     SPACE
appropriate ADJ
for ADP
nursing NOUN
or CCONJ
pharmacology NOUN
students NOUN
and CCONJ
for ADP
     SPACE
persons NOUN
receiving VERB
college NOUN
training NOUN
in ADP
other ADJ
areas NOUN
within ADP
the DET
     SPACE
health NOUN
professions NOUN
. PUNCT
  SPACE
36 NUM
pages NOUN
. PUNCT
  SPACE
MATERIALS NOUN
TO PART
HELP VERB
STOP PROPN
TOBACCO PROPN
USE PROPN
      SPACE
CHEW NOUN
OR CCONJ
SNUFF PROPN
EDUCATOR PROPN
PACKAGE NOUN
( PUNCT
91 NUM
- SYM
2976 NUM
) PUNCT
. PUNCT
  SPACE
Each DET
package NOUN
     SPACE
contains VERB
: PUNCT
           SPACE
Ten NUM
copies NOUN
of ADP
CHEW NOUN
OR CCONJ
SNUFF PROPN
IS VERB
REAL ADV
BAD ADJ
STUFF NOUN
, PUNCT
a DET
          SPACE
brochure NOUN
designed VERB
for ADP
seventh ADJ
and CCONJ
eighth ADJ
graders NOUN
that PRON
          SPACE
describes VERB
the DET
health NOUN
and CCONJ
social ADJ
effects NOUN
of ADP
usingHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
24Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
          SPACE
smokeless ADJ
tobacco NOUN
products NOUN
. PUNCT
  SPACE
When ADV
fully ADV
opened VERB
, PUNCT
the DET
          SPACE
brochure NOUN
can AUX
be AUX
used VERB
as SCONJ
a DET
poster NOUN
. PUNCT
           SPACE
One NUM
copy NOUN
of ADP
CHEW NOUN
OR CCONJ
SNUFF PROPN
IS VERB
REAL ADV
BAD ADJ
STUFF NOUN
: PUNCT
  SPACE
A DET
GUIDE PROPN
          SPACE
TO PART
MAKE VERB
YOUNG ADJ
PEOPLE NOUN
AWARE ADJ
OF ADP
THE DET
DANGERS NOUN
OF ADP
USING VERB
          SPACE
SMOKELESS PROPN
TOBACCO PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
a DET
lesson NOUN
plan NOUN
for ADP
          SPACE
teachers NOUN
. PUNCT
  SPACE
It PRON
contains VERB
facts NOUN
about ADP
smokeless NOUN
tobacco NOUN
, PUNCT
          SPACE
suggested VERB
classroom NOUN
activities NOUN
, PUNCT
and CCONJ
selected VERB
          SPACE
educational ADJ
resources NOUN
. PUNCT
      SPACE
HOW ADV
TO PART
HELP VERB
YOUR PRON
PATIENTS NOUN
STOP VERB
SMOKING NOUN
: PUNCT
A DET
NATIONAL PROPN
CANCER PROPN
     SPACE
INSTITUTE PROPN
MANUAL PROPN
FOR ADP
PHYSICIANS NOUN
( PUNCT
92 NUM
- PUNCT
3064 NUM
) PUNCT
. PUNCT
  SPACE
This DET
is AUX
a DET
step- ADJ
     SPACE
by ADP
- PUNCT
step NOUN
handbook NOUN
for ADP
instituting VERB
smoking NOUN
cessation NOUN
     SPACE
techniques NOUN
in ADP
medical ADJ
practices NOUN
. PUNCT
  SPACE
The DET
manual NOUN
, PUNCT
with ADP
resource NOUN
     SPACE
lists NOUN
and CCONJ
tear NOUN
- PUNCT
out ADP
materials NOUN
, PUNCT
is AUX
based VERB
on ADP
the DET
results NOUN
of ADP
NCI PROPN
     SPACE
clinical ADJ
trials NOUN
. PUNCT
  SPACE
75 NUM
pages NOUN
. PUNCT
      SPACE
HOW ADV
TO PART
HELP VERB
YOUR PRON
PATIENTS NOUN
STOP VERB
USING VERB
TOBACCO NOUN
: PUNCT
A DET
NATIONAL PROPN
     SPACE
CANCER PROPN
INSTITUTE PROPN
MANUAL PROPN
FOR ADP
THE DET
ORAL PROPN
HEALTH NOUN
TEAM NOUN
( PUNCT
91 NUM
- PUNCT
3191 NUM
) PUNCT
. PUNCT
     SPACE
This DET
is AUX
a DET
handbook NOUN
for ADP
dentists NOUN
, PUNCT
dental ADJ
hygienists NOUN
, PUNCT
and CCONJ
     SPACE
dental ADJ
assistants NOUN
. PUNCT
  SPACE
It PRON
complements VERB
the DET
physicians PROPN
' PART
manual ADJ
     SPACE
and CCONJ
includes VERB
additional ADJ
information NOUN
on ADP
smoking VERB
prevention NOUN
     SPACE
and CCONJ
on ADP
smokeless ADJ
tobacco NOUN
use NOUN
. PUNCT
  SPACE
58 NUM
pages NOUN
. PUNCT
      SPACE
PHARMACISTS PROPN
HELPING PROPN
SMOKERS NOUN
QUIT PROPN
KIT PROPN
. PUNCT
  SPACE
A DET
packet NOUN
of ADP
materials NOUN
     SPACE
to PART
help VERB
pharmacists NOUN
encourage VERB
their PRON
smoking NOUN
patients NOUN
to ADP
     SPACE
quit NOUN
. PUNCT
  SPACE
Contains VERB
a DET
pharmacist NOUN
's PART
guide NOUN
and CCONJ
self NOUN
- PUNCT
help NOUN
materials NOUN
     SPACE
for ADP
25 NUM
patients NOUN
. PUNCT
      SPACE
SCHOOL PROPN
PROGRAMS PROPN
TO PART
PREVENT VERB
SMOKING NOUN
: PUNCT
THE DET
NATIONAL PROPN
CANCER PROPN
     SPACE
INSTITUTE VERB
GUIDE PROPN
TO PART
STRATEGIES NOUN
THAT ADP
SUCCEED PROPN
( PUNCT
90 NUM
- SYM
500 NUM
) PUNCT
. PUNCT
  SPACE
This DET
     SPACE
guide NOUN
outlines VERB
eight NUM
essential ADJ
elements NOUN
of ADP
a DET
successful ADJ
     SPACE
school NOUN
- PUNCT
based VERB
smoking NOUN
prevention NOUN
program NOUN
based VERB
on ADP
NCI PROPN
     SPACE
research NOUN
. PUNCT
  SPACE
It PRON
includes VERB
a DET
list NOUN
of ADP
available ADJ
curriculum NOUN
     SPACE
resources NOUN
and CCONJ
selected VERB
references NOUN
. PUNCT
  SPACE
24 NUM
pages NOUN
. PUNCT
       SPACE
SELF PROPN
- PUNCT
GUIDED PROPN
STRATEGIES NOUN
FOR ADP
SMOKING NOUN
CESSATION NOUN
: PUNCT
A DET
PROGRAM PROPN
     SPACE
PLANNER PROPN
'S PART
GUIDE PROPN
( PUNCT
91 NUM
- SYM
3104 NUM
) PUNCT
. PUNCT
This DET
booklet NOUN
outlines VERB
key VERB
     SPACE
characteristics NOUN
of ADP
successful ADJ
self NOUN
- PUNCT
help NOUN
materials NOUN
and CCONJ
     SPACE
programs NOUN
based VERB
on ADP
NCI PROPN
collaborative ADJ
research NOUN
. PUNCT
  SPACE
It PRON
lists VERB
     SPACE
additional ADJ
resources NOUN
and CCONJ
references NOUN
. PUNCT
36 NUM
pages NOUN
. PUNCT
       SPACE
SMOKING PROPN
POLICY PROPN
: PUNCT
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
. PUNCT
These DET
ten NUM
fact NOUN
sheetsHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
25Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
provide VERB
basic ADJ
information NOUN
about ADP
the DET
establishment NOUN
of ADP
     SPACE
worksite ADJ
smoking NOUN
policies NOUN
. PUNCT
Topics NOUN
range VERB
from ADP
the DET
health NOUN
     SPACE
effects NOUN
of ADP
environmental ADJ
tobacco NOUN
smoke NOUN
to ADP
legal ADJ
issues NOUN
     SPACE
concerning VERB
policy NOUN
implementation NOUN
. PUNCT
      SPACE
STRATEGIES VERB
TO PART
CONTROL VERB
TOBACCO NOUN
USE NOUN
IN ADP
THE DET
UNITED PROPN
STATES PROPN
: PUNCT
  SPACE
A DET
     SPACE
BLUEPRINT NOUN
FOR ADP
PUBLIC ADJ
HEALTH NOUN
ACTION NOUN
IN ADP
THE DET
1990s NOUN
( PUNCT
92 NUM
- SYM
3316 NUM
: PUNCT
     SPACE
Smoking PROPN
and CCONJ
Control PROPN
Monograph PROPN
No PROPN
. NOUN
1 NUM
) PUNCT
. PUNCT
  SPACE
This DET
volume NOUN
provides VERB
     SPACE
a DET
summary NOUN
of ADP
what PRON
has AUX
been AUX
learned VERB
from ADP
40 NUM
years NOUN
of ADP
a DET
public ADJ
     SPACE
health NOUN
effort NOUN
against ADP
smoking NOUN
, PUNCT
from ADP
the DET
early ADJ
trial NOUN
- PUNCT
and- ADP
     SPACE
error NOUN
health NOUN
information NOUN
campaigns NOUN
of ADP
the DET
1960s NOUN
to ADP
the DET
NCI PROPN
's PART
     SPACE
science NOUN
- PUNCT
based VERB
project NOUN
, PUNCT
American PROPN
Stop PROPN
Smoking PROPN
Intervention NOUN
     SPACE
Study NOUN
for ADP
Cancer PROPN
Prevention PROPN
, PUNCT
which PRON
began VERB
in ADP
1991 NUM
. PUNCT
  SPACE
It PRON
offers VERB
     SPACE
reasons NOUN
why ADV
comprehensive ADJ
smoking NOUN
control NOUN
strategies NOUN
are AUX
now ADV
     SPACE
needed VERB
to PART
address VERB
the DET
smoker NOUN
's PART
total ADJ
environment NOUN
and CCONJ
to PART
     SPACE
reduce VERB
smoking NOUN
prevalence NOUN
significantly ADV
over ADP
the DET
next ADJ
     SPACE
decade NOUN
. PUNCT
  SPACE
MATERIALS PROPN
FOR ADP
OUTREACH PROPN
PROGRAMS PROPN
      SPACE
CANCER PROPN
PREVENTION PROPN
AND CCONJ
EARLY PROPN
DETECTION NOUN
: PUNCT
  SPACE
COMMUNITY PROPN
OUTREACH VERB
     SPACE
PROGRAMS PROPN
FOR ADP
HEALTH NOUN
PROFESSIONALS NOUN
         SPACE
Three NUM
kits NOUN
are AUX
available ADJ
for ADP
community NOUN
program NOUN
planners NOUN
        SPACE
and CCONJ
health NOUN
professionals NOUN
to PART
set VERB
up ADP
local ADJ
cancer NOUN
        SPACE
prevention NOUN
and CCONJ
early ADJ
detection NOUN
education NOUN
projects NOUN
: PUNCT
            SPACE
DO VERB
THE DET
RIGHT ADJ
THING NOUN
. PUNCT
. PUNCT
. PUNCT
GET VERB
A DET
NEW ADJ
ATTITUDE NOUN
ABOUT ADP
           SPACE
CANCER PROPN
COMMUNITY PROPN
OUTREACH VERB
PROGRAM PROPN
. PUNCT
  SPACE
This DET
community NOUN
           SPACE
outreach NOUN
kit NOUN
targets VERB
Black ADJ
American ADJ
audiences NOUN
. PUNCT
  SPACE
It PRON
           SPACE
contains VERB
materials NOUN
to PART
help VERB
health NOUN
professionals NOUN
           SPACE
conduct NOUN
community NOUN
education NOUN
programs NOUN
for ADP
black ADJ
           SPACE
audiences NOUN
. PUNCT
  SPACE
The DET
kit NOUN
emphasizes VERB
the DET
early ADJ
detection NOUN
of ADP
           SPACE
breast NOUN
cancer NOUN
by ADP
mammography NOUN
and CCONJ
of ADP
cervical ADJ
cancer NOUN
by ADP
           SPACE
the DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
It PRON
also ADV
discusses VERB
smoking NOUN
and CCONJ
           SPACE
nutrition NOUN
. PUNCT
  SPACE
The DET
kit NOUN
includes VERB
helpful ADJ
program NOUN
guidance NOUN
, PUNCT
           SPACE
facts NOUN
, PUNCT
news NOUN
articles NOUN
, PUNCT
visuals NOUN
, PUNCT
and CCONJ
brochures NOUN
. PUNCT
            SPACE
HAGALO PROPN
HOY PROPN
COMMUNITY PROPN
OUTREACH PROPN
PROGRAM PROPN
. PUNCT
  SPACE
This DET
community NOUN
           SPACE
outreach NOUN
kit NOUN
targets VERB
Hispanic ADJ
audiences NOUN
. PUNCT
  SPACE
It PRON
contains VERB
           SPACE
bilingual ADJ
and CCONJ
Spanish ADJ
language NOUN
materials NOUN
to PART
help VERB
           SPACE
health NOUN
professionals NOUN
conduct VERB
community PROPN
education NOUN
           SPACE
programs NOUN
. PUNCT
  SPACE
The DET
materials NOUN
educate VERB
Hispanic ADJ
audiences NOUN
           SPACE
about ADP
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
by ADP
mammographyHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
26Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
           SPACE
and CCONJ
of ADP
cervical ADJ
cancer NOUN
by ADP
Pap PROPN
tests NOUN
. PUNCT
  SPACE
The DET
kit NOUN
also ADV
           SPACE
discusses NOUN
smoking VERB
and CCONJ
related ADJ
issues NOUN
. PUNCT
  SPACE
The DET
kit NOUN
           SPACE
includes VERB
helpful ADJ
guidance NOUN
, PUNCT
facts NOUN
, PUNCT
news NOUN
articles NOUN
, PUNCT
           SPACE
visuals NOUN
and CCONJ
brochures NOUN
. PUNCT
            SPACE
ONCE ADV
A DET
YEAR NOUN
.. PUNCT
FOR ADP
A DET
LIFETIME NOUN
COMMUNITY PROPN
OUTREACH VERB
           SPACE
MAMMOGRAPHY PROPN
PROGRAM PROPN
. PUNCT
  SPACE
This DET
community NOUN
outreach NOUN
kit PROPN
           SPACE
targets VERB
all DET
women NOUN
age VERB
40 NUM
or CCONJ
over ADV
. PUNCT
  SPACE
It PRON
supplies VERB
           SPACE
community NOUN
program NOUN
planners NOUN
and CCONJ
health NOUN
professionals NOUN
           SPACE
with ADP
planning VERB
guidance NOUN
, PUNCT
facts NOUN
about ADP
mammography NOUN
, PUNCT
news NOUN
           SPACE
articles NOUN
, PUNCT
visuals NOUN
and CCONJ
brochures NOUN
. PUNCT
       SPACE
MAKING PROPN
HEALTH NOUN
COMMUNICATION NOUN
PROGRAMS PROPN
WORK NOUN
: PUNCT
A DET
PLANNER PROPN
'S PART
GUIDE PROPN
     SPACE
( PUNCT
92 NUM
- PUNCT
1493 NUM
) PUNCT
. PUNCT
  SPACE
This DET
handbook NOUN
presents VERB
key ADJ
principles NOUN
and CCONJ
steps NOUN
     SPACE
in ADP
developing VERB
and CCONJ
evaluating VERB
health NOUN
communications NOUN
programs NOUN
     SPACE
for ADP
the DET
public NOUN
, PUNCT
patients NOUN
, PUNCT
and CCONJ
health NOUN
professionals NOUN
. PUNCT
  SPACE
It PRON
     SPACE
expands VERB
upon SCONJ
and CCONJ
replaces VERB
" PUNCT
Pretesting VERB
in ADP
Health PROPN
     SPACE
Communications PROPN
" PUNCT
and CCONJ
" PUNCT
Making VERB
PSAs NOUN
Work VERB
. PUNCT
" PUNCT
131 NUM
pages NOUN
. PUNCT
      SPACE
SUPPORT PROPN
MATERIAL NOUN
FOR ADP
COMMUNITY PROPN
OUTREACH PROPN
PROGRAMS PROPN
      SPACE
The DET
video NOUN
and CCONJ
slide NOUN
presentations NOUN
listed VERB
below ADP
support NOUN
the DET
     SPACE
mammography NOUN
outreach NOUN
programs NOUN
. PUNCT
         SPACE
ONCE PROPN
A DET
YEAR NOUN
... PUNCT
FOR ADP
A DET
LIFETIME PROPN
VIDEOTAPE NOUN
. PUNCT
  SPACE
This DET
5-minute NUM
        SPACE
VHS PROPN
videotape NOUN
uses VERB
a DET
dramatic ADJ
format NOUN
to PART
highlight VERB
the DET
        SPACE
important ADJ
facts NOUN
about ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
        SPACE
cancer NOUN
by ADP
mammography NOUN
. PUNCT
         SPACE
UNA PROPN
VEZ PROPN
AL PROPN
ANO PROPN
... PUNCT
PARA PROPN
TODA PROPN
UNA PROPN
VIDA PROPN
VIDEOTAPE NOUN
. PUNCT
  SPACE
This DET
27- NUM
        SPACE
minute ADJ
Spanish ADJ
videotape NOUN
informs NOUN
Spanish PROPN
- PUNCT
speaking VERB
women NOUN
        SPACE
of ADP
the DET
need NOUN
for ADP
medical ADJ
screening NOUN
, PUNCT
particularly ADV
        SPACE
mammography NOUN
. PUNCT
  SPACE
It PRON
explains VERB
commonly ADV
misunderstood NOUN
facts NOUN
        SPACE
about ADP
breast NOUN
cancer NOUN
and CCONJ
early ADJ
detection NOUN
. PUNCT
  SPACE
The DET
program NOUN
, PUNCT
in ADP
        SPACE
a DET
dramatic ADJ
format NOUN
, PUNCT
features VERB
Edward PROPN
James PROPN
Olmos PROPN
and CCONJ
        SPACE
Cristina PROPN
Saralegui PROPN
. PUNCT
         SPACE
ONCE PROPN
A DET
YEAR NOUN
... PUNCT
FOR ADP
A DET
LIFETIME PROPN
SPEAKER NOUN
'S PART
KIT PROPN
( PUNCT
SLIDE PROPN
SHOW PROPN
) PUNCT
. PUNCT
        SPACE
This DET
kit NOUN
includes VERB
66 NUM
full ADJ
- PUNCT
color NOUN
slides NOUN
and CCONJ
a DET
number- ADJ
        SPACE
coded VERB
, PUNCT
ready ADJ
- PUNCT
to PART
- PUNCT
read VERB
script NOUN
suitable ADJ
for ADP
a DET
mammography NOUN
        SPACE
presentation NOUN
to ADP
a DET
large ADJ
group NOUN
. PUNCT
  SPACE
It PRON
addresses VERB
the DET
        SPACE
misconceptions NOUN
prevalent ADJ
about ADP
mammography NOUN
and CCONJ
urges VERB
        SPACE
women NOUN
age NOUN
40 NUM
and CCONJ
older ADJ
to PART
get AUX
regular ADJ
mammograms NOUN
so SCONJ
that SCONJ
        SPACE
breast NOUN
cancer NOUN
can AUX
be AUX
detected VERB
as ADV
early ADV
as SCONJ
possible ADJ
. PUNCT
  SPACE
KitHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
27Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
        SPACE
includes VERB
a DET
guide NOUN
, PUNCT
poster NOUN
, PUNCT
media NOUN
announcement NOUN
, PUNCT
news NOUN
        SPACE
feature NOUN
, PUNCT
flyer NOUN
, PUNCT
and CCONJ
pamphlets NOUN
on ADP
mammography NOUN
. PUNCT
  SPACE
This DET
kit NOUN
        SPACE
is AUX
available ADJ
directly ADV
by ADP
writing VERB
to ADP
: PUNCT
  SPACE
Modern PROPN
, PUNCT
5000 NUM
Park PROPN
        SPACE
Street PROPN
North PROPN
, PUNCT
St. PROPN
Petersburg PROPN
, PUNCT
FL PROPN
33709 NUM
- SYM
9989.--------- NUM
end NOUN
of ADP
part NOUN
2 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59285From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
4/4 NUM
- PUNCT
------------ ADV
cut NOUN
here ADV
-----------------call PROPN
for ADP
employers NOUN
to PART
keep VERB
  SPACE
information NOUN
about ADP
the DET
HIV PROPN
status NOUN
of ADP
health NOUN
- PUNCT
care NOUN
workers NOUN
  SPACE
confidential ADJ
. PUNCT
  SPACE
But CCONJ
doctors NOUN
who PRON
know VERB
of ADP
an DET
HIV PROPN
- PUNCT
positive ADJ
colleague NOUN
  SPACE
who PRON
has AUX
not PART
sought VERB
advice NOUN
must AUX
inform VERB
the DET
employing VERB
authority NOUN
and CCONJ
the DET
appropriate ADJ
professional ADJ
regulatory ADJ
body NOUN
. PUNCT
  SPACE
The DET
guidelines NOUN
  SPACE
also ADV
emphasize VERB
the DET
significance NOUN
of ADP
notifying VERB
all DET
patients NOUN
on ADP
whom PRON
an DET
invasive ADJ
procedure NOUN
has AUX
been AUX
done VERB
by ADP
an DET
infected ADJ
health NOUN
- PUNCT
care NOUN
  SPACE
worker NOUN
. PUNCT
  SPACE
A DET
model NOUN
letter NOUN
to ADP
patients NOUN
who PRON
have AUX
come VERB
into ADP
contact NOUN
  SPACE
with ADP
such DET
an DET
individual NOUN
is AUX
provided VERB
, PUNCT
along ADP
with ADP
suggestions NOUN
for ADP
  SPACE
health NOUN
officials NOUN
on ADP
how ADV
to PART
deal VERB
with ADP
the DET
media NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
a DET
  SPACE
U.K. PROPN
advisory ADJ
panel NOUN
on ADP
HIV PROPN
infection NOUN
in ADP
health NOUN
- PUNCT
care NOUN
workers NOUN
has AUX
  SPACE
been AUX
formed VERB
to PART
provide VERB
specific ADJ
occupational ADJ
recommendations NOUN
to ADP
  SPACE
those DET
treating VERB
such ADJ
patients NOUN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Properties NOUN
of ADP
an DET
HIV PROPN
' PUNCT
Vaccine PROPN
' PUNCT
" PUNCT
Nature PROPN
( PUNCT
04/08/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
362 NUM
, PUNCT
No NOUN
. NOUN
6420 NUM
, PUNCT
P. PROPN
504 NUM
   SPACE
( PUNCT
Volvovitz PROPN
, PUNCT
Franklin PROPN
and CCONJ
Smith PROPN
, PUNCT
Gale PROPN
) PUNCT
      SPACE
The DET
questions NOUN
raised VERB
by ADP
Moore PROPN
et PROPN
al PROPN
. PUNCT
about ADP
recombinant ADJ
gp160 PROPN
  SPACE
envelope PROPN
glycoprotein PROPN
precursor NOUN
from ADP
HIV-1 PROPN
produced VERB
by ADP
  SPACE
MicroGeneSys PROPN
are AUX
advantages NOUN
rather ADV
than SCONJ
disadvantages NOUN
, PUNCT
write VERB
  SPACE
Franklin PROPN
Volvovitz PROPN
and CCONJ
Gale PROPN
Smith PROPN
of ADP
MicroGeneSys PROPN
in ADP
Meriden PROPN
, PUNCT
  SPACE
Conn. PROPN
  SPACE
Moore PROPN
et PROPN
al PROPN
. PROPN
says VERB
that SCONJ
gp160 PROPN
in ADP
a DET
baculovirus ADJ
expression NOUN
  SPACE
system NOUN
does AUX
not PART
bind VERB
strongly ADV
to ADP
the DET
CD4 PROPN
receptor NOUN
, PUNCT
and CCONJ
that SCONJ
this DET
  SPACE
recombinant ADJ
gp160 PROPN
does AUX
not PART
stimulate VERB
the DET
same ADJ
antibodies NOUN
as SCONJ
the DET
  SPACE
HIV-1 PROPN
virus NOUN
does AUX
in ADP
natural ADJ
infection NOUN
. PUNCT
  SPACE
But CCONJ
vaccination NOUN
with ADP
  SPACE
recombinant ADJ
gp160 PROPN
in ADP
patients NOUN
infected VERB
with ADP
HIV-1 PROPN
broadens NOUN
HIV-1 PROPN
  SPACE
specific ADJ
envelope NOUN
- PUNCT
directed VERB
immune ADJ
responses NOUN
, PUNCT
including VERB
  SPACE
crossreactive ADJ
antibodies NOUN
to ADP
gp160 PROPN
epitopes NOUN
and CCONJ
CD4 PROPN
and CCONJ
CD8 PROPN
  SPACE
cytotoxic PROPN
T PROPN
- PUNCT
cell NOUN
responses NOUN
. PUNCT
  SPACE
Volvovitz PROPN
and CCONJ
Smith PROPN
claim NOUN
that SCONJ
they PRON
  SPACE
never ADV
intended VERB
their PRON
gp160 PROPN
molecule NOUN
to PART
be AUX
identical ADJ
to ADP
the DET
native ADJ
protein NOUN
. PUNCT
  SPACE
Antibody NOUN
responses VERB
against ADP
native ADJ
HIV-1 PROPN
proteins NOUN
, PUNCT
  SPACE
including VERB
the DET
types NOUN
described VERB
by ADP
Moore PROPN
et PROPN
al PROPN
. PROPN
, PUNCT
exist VERB
in ADP
nearly ADV
  SPACE
all DET
AIDS PROPN
patients NOUN
but CCONJ
do AUX
not PART
prevent VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
42Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993progression NUM
of ADP
HIV PROPN
disease NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
binding NOUN
of ADP
gp120 PROPN
or CCONJ
gp120-antibody PROPN
complexes NOUN
to ADP
  SPACE
CD4 PROPN
has AUX
been AUX
shown VERB
to PART
interfere VERB
with ADP
antigen PROPN
specific ADJ
activation NOUN
  SPACE
of ADP
CD4 PROPN
cells NOUN
and CCONJ
trigger NOUN
programmed VERB
cell NOUN
death NOUN
in ADP
vitro PROPN
, PUNCT
which PRON
  SPACE
may AUX
contribute VERB
to ADP
the DET
pathogenesis NOUN
of ADP
HIV PROPN
infection NOUN
. PUNCT
  SPACE
The DET
absence NOUN
of ADP
CD4 PROPN
binding VERB
by ADP
the DET
MicroGeneSys PROPN
gp160 PROPN
vaccine NOUN
may AUX
therefore ADV
be AUX
viewed VERB
as SCONJ
an DET
added VERB
safety NOUN
feature NOUN
. PUNCT
  SPACE
Phase NOUN
I PRON
studies NOUN
have AUX
  SPACE
demonstrated VERB
stable ADJ
CD4 PROPN
counts NOUN
, PUNCT
stimulation NOUN
of ADP
cytotoxic PROPN
T PROPN
cells NOUN
, PUNCT
and CCONJ
the DET
suggestion NOUN
of ADP
restoration NOUN
of ADP
immune ADJ
function NOUN
. PUNCT
  SPACE
Based VERB
on ADP
  SPACE
these DET
and CCONJ
other ADJ
clinical ADJ
results NOUN
, PUNCT
MicroGeneSys PROPN
gp160 PROPN
was AUX
chosen VERB
  SPACE
by ADP
researchers NOUN
at ADP
the DET
Karolinska PROPN
Institute PROPN
in ADP
Sweden PROPN
for ADP
the DET
  SPACE
first ADJ
phase NOUN
III NUM
vaccine NOUN
therapy NOUN
studies NOUN
, PUNCT
conclude VERB
Volvovitz PROPN
and CCONJ
  SPACE
Smith PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
HIV-1 PROPN
Infection NOUN
: PUNCT
Breast PROPN
Milk PROPN
and CCONJ
HIV-1 PROPN
Transmission PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
930 NUM
  SPACE
( PUNCT
Mok PROPN
, PUNCT
Jacqueline PROPN
) PUNCT
      SPACE
There PRON
are AUX
still ADV
more ADJ
questions NOUN
than SCONJ
answers NOUN
regarding VERB
  SPACE
HIV-1-positive ADJ
women NOUN
breastfeeding VERB
their PRON
babies NOUN
, PUNCT
writes VERB
  SPACE
Jacqueline PROPN
Mok PROPN
of ADP
the DET
Lancet PROPN
. PUNCT
  SPACE
The DET
anti ADJ
- ADJ
infective ADJ
properties NOUN
of ADP
  SPACE
milk NOUN
are AUX
well ADV
documented VERB
. PUNCT
  SPACE
While SCONJ
the DET
numbers NOUN
of ADP
leukocytes NOUN
, PUNCT
  SPACE
concentrations NOUN
of ADP
lactoferrin PROPN
and CCONJ
IgA PROPN
, PUNCT
and CCONJ
lymphocyte PROPN
mitogenic NOUN
  SPACE
activity NOUN
decline NOUN
sharply ADV
during ADP
the DET
first ADJ
two NUM
to PART
three NUM
months NOUN
of ADP
  SPACE
lactation NOUN
to ADP
barely ADV
detectable ADJ
levels NOUN
, PUNCT
lactoferrin PROPN
and CCONJ
IgA PROPN
then ADV
  SPACE
increase NOUN
from ADP
three NUM
to ADP
twelve NUM
months NOUN
, PUNCT
with ADP
90 NUM
percent NOUN
of ADP
total ADJ
  SPACE
IgA PROPN
in ADP
milk NOUN
being AUX
secretory ADJ
IgA. NOUN
  SPACE
Breastfeeding PROPN
protects VERB
infants NOUN
  SPACE
against ADP
gastrointestinal ADJ
and CCONJ
respiratory ADJ
illnesses NOUN
, PUNCT
in ADP
both DET
  SPACE
normal ADJ
and CCONJ
uninfected ADJ
children NOUN
born VERB
to ADP
HIV PROPN
- PUNCT
positive ADJ
mothers NOUN
. PUNCT
  SPACE
The DET
Italian PROPN
National PROPN
Registry PROPN
of ADP
AIDS PROPN
discovered VERB
that SCONJ
breastfed VERB
HIV-1 PROPN
infected ADJ
children NOUN
had AUX
a DET
longer ADV
median ADJ
incubation NOUN
time NOUN
( PUNCT
19 NUM
months NOUN
) PUNCT
than SCONJ
bottlefed VERB
infants NOUN
( PUNCT
9.7 NUM
months NOUN
) PUNCT
. PUNCT
  SPACE
Breastfed ADJ
children NOUN
also ADV
had AUX
a DET
slower ADJ
progression NOUN
to ADP
AIDS PROPN
. PUNCT
  SPACE
There PRON
is AUX
no DET
agreement NOUN
on ADP
which PRON
  SPACE
antibodies NOUN
offer VERB
protection NOUN
against ADP
HIV-1 PROPN
infection NOUN
. PUNCT
  SPACE
Studies NOUN
of ADP
  SPACE
the DET
biological ADJ
properties NOUN
of ADP
milk NOUN
from ADP
15 NUM
HIV-1 PROPN
infected ADJ
women NOUN
  SPACE
showed VERB
the DET
presence NOUN
of ADP
IgG PROPN
and CCONJ
IgA NOUN
antibodies NOUN
against ADP
envelope NOUN
  SPACE
glycoproteins NOUN
, PUNCT
as ADV
well ADV
as SCONJ
IgA NOUN
antibodies NOUN
against ADP
core NOUN
antigens NOUN
. PUNCT
   SPACE
Binding PROPN
of ADP
HIV-1 PROPN
to ADP
the DET
CD4 PROPN
receptor NOUN
can AUX
be AUX
inhibited VERB
by ADP
a DET
human ADJ
  SPACE
milk NOUN
factor NOUN
. PUNCT
  SPACE
In ADP
the DET
developing VERB
world NOUN
, PUNCT
where ADV
infectious ADJ
disease NOUN
  SPACE
and CCONJ
malnutrition NOUN
contribute VERB
significantly ADV
to ADP
infant NOUN
mortality NOUN
, PUNCT
  SPACE
breast NOUN
milk NOUN
is AUX
still ADV
the DET
best ADJ
food NOUN
for ADP
infants NOUN
, PUNCT
regardless ADV
of ADP
the DET
mother NOUN
's PART
HIV PROPN
status NOUN
. PUNCT
  SPACE
Transmission PROPN
might AUX
be AUX
restricted VERB
by ADP
  SPACE
breastfeeding NOUN
after ADP
colostrum NOUN
and CCONJ
early ADJ
milk NOUN
have AUX
been AUX
expressed VERB
  SPACE
and CCONJ
discarded VERB
. PUNCT
  SPACE
The DET
possibility NOUN
remains VERB
that SCONJ
breast NOUN
milk NOUN
could AUX
  SPACE
protect VERB
the DET
infant NOUN
who PRON
is AUX
already ADV
infected VERB
with ADP
HIV PROPN
at ADP
birth NOUN
and CCONJ
  SPACE
may AUX
even ADV
delay VERB
progression NOUN
to ADP
AIDS PROPN
, PUNCT
concludes VERB
Mok PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Absence PROPN
of ADP
HIV PROPN
Transmission PROPN
From ADP
an DET
Infected ADJ
Dentist NOUN
to ADP
His PRON
Patients PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
1802 NUM
  SPACE
( PUNCT
Dickinson PROPN
, PUNCT
Gordon PROPN
M. PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
If SCONJ
universal ADJ
precautions NOUN
are AUX
practiced VERB
, PUNCT
the DET
risk NOUN
of ADP
HIV PROPN
  SPACE
transmission NOUN
from ADP
dentist NOUN
to ADP
patient NOUN
appears NOUN
to PART
be AUX
infinitesimal ADJ
, PUNCT
write VERB
Gordon PROPN
M. PROPN
Dickinson PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
43Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993et NUM
al PROPN
. PROPN
of ADP
the DET
University PROPN
of ADP
Miami PROPN
  SPACE
School PROPN
of ADP
Medicine PROPN
in ADP
Miami PROPN
, PUNCT
Fla. PROPN
  SPACE
The DET
researchers NOUN
contacted VERB
all DET
  SPACE
patients NOUN
treated VERB
by ADP
a DET
dentist NOUN
with ADP
AIDS PROPN
and CCONJ
attempts NOUN
were AUX
made VERB
to PART
contact VERB
all DET
patients NOUN
for ADP
HIV PROPN
testing NOUN
. PUNCT
  SPACE
Living VERB
patients NOUN
with ADP
newly ADV
detected VERB
HIV PROPN
infection NOUN
were AUX
interviewed VERB
, PUNCT
and CCONJ
DNA NOUN
sequence NOUN
  SPACE
analysis NOUN
was AUX
performed VERB
to PART
compare VERB
genetic ADJ
relatedness NOUN
of ADP
their PRON
  SPACE
HIV PROPN
to ADP
that DET
of ADP
the DET
dentist NOUN
. PUNCT
  SPACE
Death NOUN
certificates NOUN
were AUX
obtained VERB
for ADP
deceased ADJ
patients NOUN
, PUNCT
and CCONJ
the DET
medical ADJ
records NOUN
of ADP
those DET
with ADP
  SPACE
diagnoses NOUN
suggestive ADJ
of ADP
HIV PROPN
disease NOUN
or CCONJ
drug NOUN
abuse NOUN
and CCONJ
those DET
dying VERB
under ADP
the DET
age NOUN
of ADP
50 NUM
years NOUN
were AUX
examined VERB
in ADP
detail NOUN
. PUNCT
  SPACE
There PRON
were AUX
  SPACE
1,192 NUM
patients NOUN
who PRON
had AUX
undergone VERB
9,267 NUM
procedures NOUN
, PUNCT
of ADP
whom PRON
124 NUM
  SPACE
were AUX
deceased ADJ
. PUNCT
  SPACE
An DET
examination NOUN
of ADP
the DET
death NOUN
certificates NOUN
of ADP
  SPACE
patients NOUN
identified VERB
five NUM
who PRON
had AUX
died VERB
with ADP
HIV PROPN
infection NOUN
, PUNCT
all DET
of ADP
  SPACE
whom PRON
were AUX
either CCONJ
homosexuals NOUN
or CCONJ
IV PROPN
- PUNCT
drug NOUN
users NOUN
. PUNCT
  SPACE
The DET
researchers NOUN
  SPACE
were AUX
able ADJ
to PART
detect VERB
962 NUM
of ADP
the DET
remaining VERB
1,048 NUM
patients NOUN
, PUNCT
and CCONJ
900 NUM
  SPACE
agreed VERB
to PART
be AUX
tested VERB
. PUNCT
  SPACE
HIV PROPN
infection NOUN
was AUX
reported VERB
in ADP
five NUM
of ADP
the DET
  SPACE
900 NUM
patients NOUN
, PUNCT
including VERB
four NUM
who PRON
had AUX
clear ADJ
evidence NOUN
of ADP
risk NOUN
  SPACE
factors NOUN
for ADP
the DET
disease NOUN
. PUNCT
  SPACE
One NUM
patient NOUN
who PRON
had AUX
only ADV
a DET
single ADJ
  SPACE
evaluation NOUN
by ADP
the DET
dentist NOUN
denied VERB
high ADJ
- PUNCT
risk NOUN
behavior NOUN
. PUNCT
  SPACE
Comparative ADJ
DNA PROPN
sequence NOUN
analysis NOUN
showed VERB
that SCONJ
the DET
viruses NOUN
from ADP
the DET
dentists NOUN
  SPACE
and CCONJ
these DET
five NUM
patients NOUN
were AUX
not PART
closely ADV
related ADJ
. PUNCT
  SPACE
The DET
study NOUN
  SPACE
suggests VERB
the DET
potential NOUN
for ADP
HIV PROPN
transmission NOUN
from ADP
a DET
general ADJ
  SPACE
dentist NOUN
to ADP
his PRON
patients NOUN
is AUX
minimal ADJ
in ADP
a DET
setting NOUN
in ADP
which PRON
  SPACE
universal ADJ
precautions NOUN
are AUX
strictly ADV
observed VERB
, PUNCT
conclude VERB
Dickinson PROPN
  SPACE
et PROPN
al PROPN
. PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
22 NUM
, PUNCT
1993 NUM
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
AIDS PROPN
Patients NOUN
are AUX
Susceptible ADJ
to ADP
Recurrences NOUN
of ADP
TB PROPN
, PUNCT
Study PROPN
Says VERB
" PUNCT
Washington PROPN
Post PROPN
( PUNCT
04/22/93 PUNCT
) PUNCT
, PUNCT
P. PROPN
A13 PROPN
      SPACE
Tuberculosis PROPN
can AUX
strike VERB
AIDS PROPN
patients NOUN
more ADV
than SCONJ
once ADV
, PUNCT
which PRON
makes VERB
the DET
resurging VERB
health NOUN
hazard NOUN
harder ADV
to PART
control VERB
, PUNCT
according VERB
to ADP
a DET
  SPACE
study NOUN
published VERB
in ADP
today NOUN
's PART
New PROPN
England PROPN
Journal PROPN
of ADP
Medicine PROPN
. PUNCT
   SPACE
People NOUN
who PRON
contract VERB
TB PROPN
usually ADV
develop VERB
an DET
immunity NOUN
that PRON
protects VERB
  SPACE
them PRON
if SCONJ
they PRON
are AUX
exposed VERB
to ADP
the DET
bacteria NOUN
again ADV
. PUNCT
  SPACE
But CCONJ
a DET
person NOUN
  SPACE
whose PRON
immune ADJ
system NOUN
is AUX
depleted VERB
may AUX
not PART
be AUX
able ADJ
to PART
fight VERB
off ADP
a DET
  SPACE
new ADJ
TB PROPN
infection NOUN
, PUNCT
doctors NOUN
found VERB
. PUNCT
  SPACE
Peter PROPN
M. PROPN
Small PROPN
of ADP
the DET
Howard PROPN
  SPACE
Hughes PROPN
Medical PROPN
Institute PROPN
at ADP
Stanford PROPN
University PROPN
, PUNCT
director NOUN
of ADP
the DET
  SPACE
study NOUN
, PUNCT
said VERB
that SCONJ
in ADP
order NOUN
to PART
protect VERB
against ADP
reinfection NOUN
, PUNCT
it PRON
may AUX
  SPACE
be AUX
necessary ADJ
for ADP
some DET
people NOUN
to PART
use VERB
TB PROPN
medicines NOUN
permanently ADV
. PUNCT
   SPACE
The DET
study NOUN
examined VERB
the DET
genetic ADJ
makeup NOUN
of ADP
TB ADJ
bacteria NOUN
and CCONJ
how ADV
the DET
  SPACE
germs NOUN
changed VERB
over ADP
time NOUN
in ADP
17 NUM
patients NOUN
at ADP
Kings PROPN
County PROPN
Hospital PROPN
  SPACE
in ADP
New PROPN
York PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
HIV-1 PROPN
Infection NOUN
: PUNCT
Breast PROPN
Milk PROPN
and CCONJ
HIV-1 PROPN
Transmission PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
930 NUM
  SPACE
( PUNCT
Mok PROPN
, PUNCT
Jacqueline PROPN
) PUNCT
      SPACE
There PRON
are AUX
still ADV
more ADJ
questions NOUN
than SCONJ
answers NOUN
regarding VERB
  SPACE
HIV-1-positive ADJ
women NOUN
breastfeeding VERB
their PRON
babies NOUN
, PUNCT
writes VERB
  SPACE
Jacqueline PROPN
Mok PROPN
of ADP
the DET
Lancet PROPN
. PUNCT
  SPACE
The DET
anti ADJ
- ADJ
infective ADJ
properties NOUN
of ADP
  SPACE
milk NOUN
are AUX
well ADV
documented VERB
. PUNCT
  SPACE
While SCONJ
the DET
numbers NOUN
of ADP
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
44Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993leukocytes NUM
, PUNCT
  SPACE
concentrations NOUN
of ADP
lactoferrin PROPN
and CCONJ
IgA PROPN
, PUNCT
and CCONJ
lymphocyte PROPN
mitogenic NOUN
  SPACE
activity NOUN
decline NOUN
sharply ADV
during ADP
the DET
first ADJ
two NUM
to PART
three NUM
months NOUN
of ADP
  SPACE
lactation NOUN
to ADP
barely ADV
detectable ADJ
levels NOUN
, PUNCT
lactoferrin PROPN
and CCONJ
IgA PROPN
then ADV
  SPACE
increase NOUN
from ADP
three NUM
to ADP
twelve NUM
months NOUN
, PUNCT
with ADP
90 NUM
percent NOUN
of ADP
total ADJ
  SPACE
IgA PROPN
in ADP
milk NOUN
being AUX
secretory ADJ
IgA. NOUN
  SPACE
Breastfeeding PROPN
protects VERB
infants NOUN
  SPACE
against ADP
gastrointestinal ADJ
and CCONJ
respiratory ADJ
illnesses NOUN
, PUNCT
in ADP
both DET
  SPACE
normal ADJ
and CCONJ
uninfected ADJ
children NOUN
born VERB
to ADP
HIV PROPN
- PUNCT
positive ADJ
mothers NOUN
. PUNCT
  SPACE
The DET
Italian PROPN
National PROPN
Registry PROPN
of ADP
AIDS PROPN
discovered VERB
that SCONJ
breastfed VERB
HIV-1 PROPN
infected ADJ
children NOUN
had AUX
a DET
longer ADV
median ADJ
incubation NOUN
time NOUN
( PUNCT
19 NUM
months NOUN
) PUNCT
than SCONJ
bottlefed VERB
infants NOUN
( PUNCT
9.7 NUM
months NOUN
) PUNCT
. PUNCT
  SPACE
Breastfed ADJ
children NOUN
also ADV
had AUX
a DET
slower ADJ
progression NOUN
to ADP
AIDS PROPN
. PUNCT
  SPACE
There PRON
is AUX
no DET
agreement NOUN
on ADP
which PRON
  SPACE
antibodies NOUN
offer VERB
protection NOUN
against ADP
HIV-1 PROPN
infection NOUN
. PUNCT
  SPACE
Studies NOUN
of ADP
  SPACE
the DET
biological ADJ
properties NOUN
of ADP
milk NOUN
from ADP
15 NUM
HIV-1 PROPN
infected ADJ
women NOUN
  SPACE
showed VERB
the DET
presence NOUN
of ADP
IgG PROPN
and CCONJ
IgA NOUN
antibodies NOUN
against ADP
envelope NOUN
  SPACE
glycoproteins NOUN
, PUNCT
as ADV
well ADV
as SCONJ
IgA NOUN
antibodies NOUN
against ADP
core NOUN
antigens NOUN
. PUNCT
   SPACE
Binding PROPN
of ADP
HIV-1 PROPN
to ADP
the DET
CD4 PROPN
receptor NOUN
can AUX
be AUX
inhibited VERB
by ADP
a DET
human ADJ
  SPACE
milk NOUN
factor NOUN
. PUNCT
  SPACE
In ADP
the DET
developing VERB
world NOUN
, PUNCT
where ADV
infectious ADJ
disease NOUN
  SPACE
and CCONJ
malnutrition NOUN
contribute VERB
significantly ADV
to ADP
infant NOUN
mortality NOUN
, PUNCT
  SPACE
breast NOUN
milk NOUN
is AUX
still ADV
the DET
best ADJ
food NOUN
for ADP
infants NOUN
, PUNCT
regardless ADV
of ADP
the DET
mother NOUN
's PART
HIV PROPN
status NOUN
. PUNCT
  SPACE
Transmission PROPN
might AUX
be AUX
restricted VERB
by ADP
  SPACE
breastfeeding NOUN
after ADP
colostrum NOUN
and CCONJ
early ADJ
milk NOUN
have AUX
been AUX
expressed VERB
  SPACE
and CCONJ
discarded VERB
. PUNCT
  SPACE
The DET
possibility NOUN
remains VERB
that SCONJ
breast NOUN
milk NOUN
could AUX
  SPACE
protect VERB
the DET
infant NOUN
who PRON
is AUX
already ADV
infected VERB
with ADP
HIV PROPN
at ADP
birth NOUN
and CCONJ
  SPACE
may AUX
even ADV
delay VERB
progression NOUN
to ADP
AIDS PROPN
, PUNCT
concludes VERB
Mok PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
HIV PROPN
and CCONJ
the DET
Aetiology PROPN
of ADP
AIDS PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
957 NUM
  SPACE
( PUNCT
Duesberg PROPN
, PUNCT
Peter PROPN
) PUNCT
      SPACE
Because SCONJ
there PRON
is AUX
no DET
proof NOUN
that SCONJ
HIV PROPN
is AUX
the DET
cause NOUN
of ADP
AIDS PROPN
, PUNCT
the DET
  SPACE
hypothesis NOUN
that SCONJ
drug NOUN
use NOUN
leads VERB
to ADP
AIDS PROPN
will AUX
hopefully ADV
become VERB
a DET
  SPACE
hindrance NOUN
to ADP
the DET
physiologically ADV
( PUNCT
AZT PROPN
) PUNCT
and CCONJ
psychologically ADV
  SPACE
( PUNCT
positive ADJ
AIDS PROPN
test NOUN
) PUNCT
toxic ADJ
public ADJ
health NOUN
initiatives NOUN
, PUNCT
writes VERB
  SPACE
Peter PROPN
Duesberg PROPN
of ADP
the DET
University PROPN
of ADP
California PROPN
-- PUNCT
Berkeley PROPN
. PUNCT
  SPACE
In ADP
the DET
Lancet PROPN
's PART
March PROPN
13 NUM
issue NOUN
, PUNCT
Schechter PROPN
et PROPN
al PROPN
. PROPN
call VERB
Duesberg PROPN
's PART
  SPACE
hypothesis NOUN
that PRON
injected VERB
and CCONJ
orally ADV
used VERB
recreational ADJ
drugs NOUN
and CCONJ
  SPACE
AZT PROPN
lead VERB
to ADP
AIDS PROPN
, PUNCT
" PUNCT
a DET
hindrance NOUN
to ADP
public ADJ
health NOUN
initiatives NOUN
. PUNCT
" PUNCT
   SPACE
However ADV
, PUNCT
their PRON
hypothesis NOUN
that SCONJ
HIV PROPN
is AUX
the DET
cause NOUN
of ADP
AIDS PROPN
has AUX
not PART
  SPACE
attained VERB
any DET
public ADJ
health NOUN
benefits NOUN
. PUNCT
  SPACE
The DET
U.S. PROPN
government NOUN
spends VERB
  SPACE
$ SYM
4 NUM
billion NUM
annually ADV
, PUNCT
but CCONJ
no DET
vaccine NOUN
, PUNCT
no DET
therapy NOUN
, PUNCT
no DET
prevention NOUN
, PUNCT
  SPACE
and CCONJ
no DET
AIDS PROPN
control NOUN
have AUX
resulted VERB
from ADP
work NOUN
on ADP
this DET
hypothesis NOUN
. PUNCT
   SPACE
Schechter PROPN
et PROPN
al PROPN
. PUNCT
conclude VERB
that SCONJ
HIV PROPN
has AUX
a DET
key ADJ
role NOUN
in ADP
CD4 PROPN
  SPACE
depletion NOUN
and CCONJ
AIDS PROPN
based VERB
on ADP
epidemiological ADJ
correlations NOUN
with ADP
  SPACE
antibodies NOUN
against ADP
HIV PROPN
and CCONJ
with ADP
self NOUN
reported VERB
recreational ADJ
drug NOUN
  SPACE
use NOUN
among ADP
homosexuals NOUN
from ADP
Vancouver PROPN
. PUNCT
  SPACE
However ADV
, PUNCT
their PRON
survey NOUN
  SPACE
neglects NOUN
to PART
disprove VERB
Duesberg PROPN
's PART
drug NOUN
- PUNCT
AIDS PROPN
hypothesis NOUN
, PUNCT
because SCONJ
it PRON
  SPACE
does AUX
not PART
provide VERB
controls NOUN
-- PUNCT
i.e PROPN
. PROPN
, PUNCT
confirmed VERB
drug NOUN
- PUNCT
free ADJ
AIDS PROPN
  SPACE
cases NOUN
-- PUNCT
and CCONJ
because SCONJ
it PRON
does AUX
not PART
quantify VERB
drug NOUN
use NOUN
and CCONJ
ignores VERB
AZT PROPN
  SPACE
use VERB
altogether ADV
. PUNCT
  SPACE
To PART
refute VERB
Duesberg PROPN
's PART
hypothesis NOUN
Schechter PROPN
would AUX
  SPACE
have AUX
to PART
produce VERB
a DET
controlled VERB
study NOUN
demonstrating VERB
that SCONJ
over ADP
a DET
  SPACE
period NOUN
of ADP
up ADP
to PART
10 NUM
years NOUN
HIV PROPN
- PUNCT
positive ADJ
patients NOUN
who PRON
use VERB
  SPACE
recreational ADJ
drugs NOUN
or CCONJ
AZT PROPN
or CCONJ
both DET
have AUX
the DET
same ADJ
AIDS PROPN
risks NOUN
as SCONJ
  SPACE
positives NOUN
who PRON
do AUX
not PART
do AUX
so ADV
. PUNCT
  SPACE
The DET
10 NUM
year NOUN
period NOUN
is AUX
claimed VERB
by ADP
  SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
45Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993proponents NUM
of ADP
the DET
HIV PROPN
hypothesis NOUN
to PART
be AUX
the DET
time NOUN
needed VERB
for ADP
HIV PROPN
to PART
cause VERB
AIDS PROPN
. PUNCT
  SPACE
Alternatively ADV
, PUNCT
they PRON
could AUX
show VERB
that SCONJ
HIV PROPN
- PUNCT
free ADJ
  SPACE
individuals NOUN
who PRON
have AUX
used VERB
drugs NOUN
for ADP
10 NUM
years NOUN
never ADV
get AUX
  SPACE
AIDS PROPN
- PUNCT
defining VERB
illnesses NOUN
, PUNCT
concludes VERB
Duesberg PROPN
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
   SPACE
" PUNCT
Rapid ADJ
Decline PROPN
of ADP
CD4 PROPN
+ SYM
Cells NOUN
After ADP
IFNa NOUN
Treatment NOUN
in ADP
HIV-1 PROPN
  SPACE
Infection PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
959 NUM
   SPACE
( PUNCT
Vento PROPN
, PUNCT
Sandro PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
Interferon PROPN
( PUNCT
IFN PROPN
) PUNCT
, PUNCT
which PRON
induces VERB
autoantibodies NOUN
and CCONJ
autoimmune NOUN
  SPACE
diseases NOUN
in ADP
some DET
settings NOUN
, PUNCT
may AUX
hasten VERB
CD4 PROPN
T NOUN
- PUNCT
cell NOUN
loss NOUN
in ADP
some DET
  SPACE
HIV-1 PROPN
infected ADJ
individuals NOUN
through ADP
the DET
amplification NOUN
of ADP
harmful ADJ
  SPACE
" PUNCT
autoimmune ADJ
" PUNCT
reactions NOUN
, PUNCT
write VERB
Sandro PROPN
Vento PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
A. NOUN
  SPACE
Pugliese PROPN
Hospital PROPN
in ADP
Catanzaro PROPN
, PUNCT
Italy PROPN
. PUNCT
  SPACE
The DET
researchers NOUN
report VERB
  SPACE
three NUM
asymptomatic ADJ
HIV-1 PROPN
infected ADJ
individuals NOUN
with ADP
hepatitis PROPN
C PROPN
  SPACE
Virus PROPN
related ADJ
chronic ADJ
active ADJ
hepatitis NOUN
( PUNCT
CAH PROPN
) PUNCT
who PRON
had AUX
a DET
rapid ADJ
, PUNCT
  SPACE
profound ADJ
decline NOUN
of ADP
CD4 PROPN
cells NOUN
after ADP
IFN PROPN
. PUNCT
  SPACE
All DET
three NUM
patients NOUN
  SPACE
throughout ADP
the DET
observation NOUN
were AUX
consistently ADV
negative ADJ
for ADP
serum PROPN
  SPACE
HIV PROPN
p24 NOUN
antigen PROPN
and CCONJ
had AUX
circulating VERB
antibodies NOUN
to ADP
p24 NOUN
. PUNCT
  SPACE
Sera PROPN
from ADP
all DET
three NUM
patients NOUN
, PUNCT
obtained VERB
at ADP
the DET
end NOUN
of ADP
IFN PROPN
treatment NOUN
and CCONJ
  SPACE
testing NOUN
in ADP
enzyme NOUN
- PUNCT
linked VERB
immunosorbent NOUN
assay NOUN
, PUNCT
contained VERB
high ADJ
  SPACE
titres NOUN
of ADP
antibodies NOUN
reacting VERB
to ADP
a DET
sequence NOUN
located VERB
in ADP
the DET
  SPACE
aminoterminal NOUN
of ADP
the DET
beta ADJ
chain NOUN
of ADP
all DET
human ADJ
HLA PROPN
class NOUN
II PROPN
  SPACE
antigens PROPN
, PUNCT
homologous ADJ
to ADP
a DET
sequence NOUN
located VERB
in ADP
the DET
carboxy NOUN
  SPACE
terminus NOUN
of ADP
HIV-1 PROPN
gp41 PROPN
. PUNCT
  SPACE
These DET
autoantibodies NOUN
, PUNCT
which PRON
also ADV
  SPACE
recognize VERB
" PUNCT
native ADJ
" PUNCT
class NOUN
II NOUN
molecules NOUN
and CCONJ
may AUX
contribute VERB
to ADP
the DET
  SPACE
elimination NOUN
of ADP
CD4 PROPN
T PROPN
cells NOUN
" PUNCT
in ADP
vivo NOUN
" PUNCT
, PUNCT
were AUX
at ADP
low ADJ
tires NOUN
( PUNCT
50 NUM
- SYM
100 NUM
) PUNCT
  SPACE
in ADP
all DET
three NUM
patients NOUN
six NUM
months NOUN
after ADP
stopping VERB
IFN PROPN
. PUNCT
  SPACE
Such ADJ
  SPACE
autoantibodies NOUN
were AUX
not PART
detected VERB
in ADP
28 NUM
other ADJ
patients NOUN
with ADP
HIV PROPN
  SPACE
infection NOUN
and CCONJ
HCV PROPN
related VERB
CAH PROPN
treated VERB
with ADP
IFN PROPN
and CCONJ
who PRON
did AUX
not PART
  SPACE
experience NOUN
CD4 PROPN
T NOUN
- PUNCT
cell NOUN
loss NOUN
in ADP
some DET
HIV-1 PROPN
infected ADJ
individuals NOUN
  SPACE
through ADP
the DET
amplification NOUN
of ADP
harmful ADJ
" PUNCT
autoimmune ADJ
" PUNCT
reactions NOUN
. PUNCT
  SPACE
The DET
subjects NOUN
had AUX
A1 PROPN
; PUNCT
B8 PROPN
; PUNCT
DR3 PROPN
; PUNCT
and CCONJ
B35 PROPN
, PUNCT
DR1 PROPN
HLA PROPN
antigen PROPN
combinations NOUN
  SPACE
which PRON
are AUX
linked VERB
with ADP
a DET
more ADV
rapid ADJ
fall NOUN
in ADP
CD4 PROPN
cell NOUN
counts NOUN
and CCONJ
  SPACE
clinical ADJ
progression NOUN
of ADP
HIV-1 PROPN
disease NOUN
. PUNCT
  SPACE
IFN PROPN
can AUX
induce VERB
a DET
very ADV
  SPACE
rapid ADJ
decline NOUN
of ADP
CD4 PROPN
cells NOUN
and CCONJ
should AUX
be AUX
used VERB
cautiously ADV
in ADP
  SPACE
patients NOUN
with ADP
these DET
HLA PROPN
haplotypes VERB
, PUNCT
the DET
researchers NOUN
conclude VERB
. PUNCT
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
                                   SPACE
April PROPN
23 NUM
, PUNCT
1993 NUM
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
TB PROPN
Makes VERB
a DET
Comeback PROPN
" PUNCT
State PROPN
Government PROPN
News PROPN
( PUNCT
04/93 NUM
) PUNCT
Vol PROPN
. PROPN
36 NUM
, PUNCT
No NOUN
. NOUN
4 NUM
, PUNCT
P. NOUN
6 NUM
   SPACE
( PUNCT
Voit PROPN
, PUNCT
William PROPN
and CCONJ
Knapp PROPN
, PUNCT
Elaine PROPN
S. PROPN
) PUNCT
      SPACE
Although SCONJ
tuberculosis NOUN
was AUX
once ADV
believed VERB
to PART
be AUX
eliminated VERB
in ADP
the DET
  SPACE
United PROPN
States PROPN
, PUNCT
it PRON
is AUX
emerging VERB
again ADV
among ADP
the DET
homeless ADJ
, PUNCT
AIDS PROPN
  SPACE
patients NOUN
, PUNCT
immigrants NOUN
, PUNCT
minorities NOUN
, PUNCT
and CCONJ
prisoners NOUN
. PUNCT
  SPACE
Dr. PROPN
Lee PROPN
B. PROPN
  SPACE
Reichman PROPN
, PUNCT
professor NOUN
of ADP
medicine NOUN
at ADP
the DET
University PROPN
of ADP
New PROPN
Jersey PROPN
  SPACE
Medical PROPN
School PROPN
and CCONJ
president NOUN
of ADP
the DET
American PROPN
Lung PROPN
Association PROPN
, PUNCT
  SPACE
said VERB
, PUNCT
" PUNCT
Right ADV
now ADV
, PUNCT
it PRON
's AUX
a DET
big ADJ
city NOUN
problem NOUN
, PUNCT
but CCONJ
potentially ADV
it PRON
's AUX
  SPACE
everyone PRON
's PART
problem NOUN
. PUNCT
" PUNCT
  SPACE
The DET
ALA PROPN
predicts VERB
that SCONJ
10 NUM
million NUM
Americans PROPN
  SPACE
are AUX
infected VERB
with ADP
TB PROPN
, PUNCT
and CCONJ
about ADV
10 NUM
percent NOUN
of ADP
them PRON
will AUX
develop VERB
  SPACE
the DET
disease NOUN
because SCONJ
their PRON
immune ADJ
systems NOUN
are AUX
depressed ADJ
, PUNCT
  SPACE
especially ADV
those DET
with ADP
AIDS PROPN
or CCONJ
HIV PROPN
. PUNCT
  SPACE
Gene PROPN
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
46Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Tammes NUM
, PUNCT
a DET
Centers PROPN
for ADP
  SPACE
Disease PROPN
Control PROPN
expert NOUN
, PUNCT
said VERB
that DET
is AUX
why ADV
the DET
CDC PROPN
has AUX
issued VERB
  SPACE
guidelines NOUN
warning NOUN
hospitals NOUN
and CCONJ
institutions NOUN
not PART
to PART
mix VERB
AIDS PROPN
  SPACE
with ADP
TB PROPN
patients NOUN
. PUNCT
  SPACE
State NOUN
health NOUN
officials NOUN
believe VERB
the DET
TB PROPN
is AUX
also ADV
  SPACE
spreading VERB
because SCONJ
those DET
who PRON
are AUX
most ADV
susceptible ADJ
are AUX
the DET
least ADJ
  SPACE
likely ADJ
to PART
follow VERB
through ADP
with ADP
treatment NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
  SPACE
increase NOUN
is AUX
attributed VERB
to ADP
a DET
shortage NOUN
of ADP
public ADJ
health NOUN
services NOUN
. PUNCT
   SPACE
In ADP
New PROPN
York PROPN
City PROPN
, PUNCT
TB PROPN
is AUX
an DET
epidemic NOUN
" PUNCT
because SCONJ
the DET
number NOUN
of ADP
cases NOUN
  SPACE
is AUX
increasing VERB
faster ADV
than SCONJ
we PRON
can AUX
treat VERB
people NOUN
, PUNCT
" PUNCT
said VERB
Dr. PROPN
George PROPN
  SPACE
Diferdinando PROPN
, PUNCT
director NOUN
of ADP
the DET
New PROPN
York PROPN
State PROPN
TB PROPN
Control PROPN
. PUNCT
   SPACE
According VERB
to ADP
Diferdinando PROPN
, PUNCT
curbing VERB
the DET
spread NOUN
of ADP
TB PROPN
entails VERB
  SPACE
keeping VERB
85 NUM
percent NOUN
or CCONJ
more ADJ
of ADP
diagnosed ADJ
TB PROPN
cases NOUN
in ADP
treatment NOUN
. PUNCT
   SPACE
About ADV
40 NUM
percent NOUN
of ADP
infected ADJ
New PROPN
York PROPN
City PROPN
residents NOUN
do AUX
n't PART
  SPACE
complete ADJ
therapy NOUN
. PUNCT
  SPACE
When ADV
TB PROPN
patients NOUN
do AUX
n't PART
finish VERB
taking VERB
their PRON
  SPACE
medication NOUN
, PUNCT
multi ADJ
- ADJ
drug ADJ
resistant ADJ
TB PROPN
can AUX
develop VERB
, PUNCT
which PRON
requires VERB
  SPACE
taking VERB
more ADV
expensive ADJ
drugs NOUN
and CCONJ
can AUX
take VERB
two NUM
years NOUN
instead ADV
of ADP
the DET
normal ADJ
six NUM
months NOUN
to PART
treat VERB
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
     SPACE
" PUNCT
Increasing VERB
Frequency PROPN
of ADP
Heterosexually PROPN
Transmitted PROPN
AIDS PROPN
in ADP
  SPACE
Southern PROPN
Florida PROPN
: PUNCT
Artifact VERB
or CCONJ
Reality NOUN
? PUNCT
" PUNCT
American PROPN
Journal PROPN
of ADP
Public PROPN
Health PROPN
( PUNCT
04/93 NUM
) PUNCT
Vol PROPN
. PROPN
83 NUM
, PUNCT
No NOUN
. NOUN
4 NUM
, PUNCT
P. PROPN
571 NUM
  SPACE
( PUNCT
Nwanyanwu PROPN
, PUNCT
Okey PROPN
C. PROPN
et X
al PROPN
. PROPN
) PUNCT
      SPACE
The DET
alarmingly ADV
high ADJ
rate NOUN
of ADP
heterosexually ADV
acquired VERB
AIDS PROPN
cases NOUN
in ADP
southern ADJ
Florida PROPN
was AUX
partially ADV
related VERB
to ADP
misclassification NOUN
of ADP
  SPACE
risk NOUN
, PUNCT
write VERB
Okey PROPN
C. PROPN
Nwanyanwu PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
Centers PROPN
for ADP
Disease PROPN
  SPACE
Control PROPN
in ADP
Atlanta PROPN
, PUNCT
Ga. PROPN
  SPACE
The DET
researchers NOUN
investigated VERB
168 NUM
such ADJ
  SPACE
AIDS PROPN
cases NOUN
from ADP
Broward PROPN
and CCONJ
coastal ADJ
Palm PROPN
Beach PROPN
counties NOUN
. PUNCT
  SPACE
All DET
of ADP
  SPACE
these DET
cases NOUN
attributed VERB
to ADP
heterosexual ADJ
transmission NOUN
reported VERB
  SPACE
sexual ADJ
contact NOUN
with ADP
bisexual ADJ
men NOUN
, PUNCT
injecting VERB
drug NOUN
users NOUN
, PUNCT
or CCONJ
  SPACE
persons NOUN
born VERB
in ADP
countries NOUN
where ADV
heterosexual ADJ
contact NOUN
is AUX
the DET
  SPACE
primary ADJ
route NOUN
of ADP
HIV PROPN
transmission NOUN
. PUNCT
  SPACE
Medical ADJ
records NOUN
of ADP
patients NOUN
, PUNCT
  SPACE
in ADP
addition NOUN
to ADP
records NOUN
from ADP
social ADJ
services NOUN
, PUNCT
HIV PROPN
counseling NOUN
and CCONJ
  SPACE
testing NOUN
centers NOUN
, PUNCT
and CCONJ
sexually ADV
transmitted VERB
disease NOUN
( PUNCT
STD PROPN
) PUNCT
clinics NOUN
  SPACE
were AUX
reviewed VERB
. PUNCT
  SPACE
If SCONJ
no DET
other ADJ
HIV PROPN
risk NOUN
factor NOUN
was AUX
found VERB
from ADP
  SPACE
medical ADJ
record NOUN
review NOUN
, PUNCT
patients NOUN
were AUX
interviewed VERB
using VERB
a DET
  SPACE
standardized ADJ
questionnaire NOUN
. PUNCT
  SPACE
Once ADV
STD PROPN
clinic NOUN
and CCONJ
other ADJ
medical ADJ
  SPACE
records NOUN
were AUX
reviewed VERB
, PUNCT
29 NUM
men NOUN
and CCONJ
7 NUM
women NOUN
were AUX
reclassified VERB
into ADP
  SPACE
other ADJ
HIV PROPN
transmission NOUN
categories NOUN
. PUNCT
  SPACE
After ADP
adjustments NOUN
were AUX
made VERB
  SPACE
for ADP
the DET
reclassification NOUN
, PUNCT
the DET
percentage NOUN
of ADP
AIDS PROPN
cases NOUN
reported VERB
  SPACE
from ADP
Palm PROPN
Beach PROPN
and CCONJ
Broward PROPN
counties NOUN
between ADP
January PROPN
1 NUM
, PUNCT
1989 NUM
, PUNCT
and CCONJ
March PROPN
31 NUM
, PUNCT
1990 NUM
, PUNCT
that PRON
was AUX
attributed VERB
to ADP
heterosexual ADJ
transmission NOUN
  SPACE
decreased VERB
from ADP
10 NUM
percent NOUN
to ADP
6 NUM
percent NOUN
among ADP
men NOUN
and CCONJ
from ADP
33 NUM
  SPACE
percent NOUN
to ADP
28 NUM
percent NOUN
among ADP
women NOUN
. PUNCT
  SPACE
While SCONJ
the DET
percentage NOUN
of ADP
  SPACE
heterosexually ADV
transmitted VERB
AIDS PROPN
cases NOUN
in ADP
southern ADJ
Florida PROPN
  SPACE
decreased VERB
after ADP
adjustment NOUN
was AUX
made VERB
for ADP
reclassified ADJ
cases NOUN
, PUNCT
it PRON
  SPACE
still ADV
remained VERB
above ADP
the DET
national ADJ
average NOUN
, PUNCT
the DET
researchers NOUN
  SPACE
conclude VERB
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
47Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                                SPACE
AIDS PROPN
Statistics PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                            SPACE
World PROPN
Health PROPN
Organization PROPN
, PUNCT
Geneva PROPN
                        SPACE
Organisation PROPN
mondiale PROPN
de X
la PROPN
Sante PROPN
, PUNCT
Geneve PROPN
                              SPACE
WEEKLY PROPN
EPIDEMIOLOGICAL PROPN
RECORD PROPN
                           SPACE
RELEVE AUX
EPIDEMIOLOGIQUE NOUN
HEBDOMADAIRE15 ADJ
January PROPN
1993 NUM
- PUNCT
68th NOUN
Year PROPN
                        SPACE
ACQUIRED PROPN
IMMUNODEFICIENCY VERB
SYNDROME PROPN
( PUNCT
AIDS PROPN
) PUNCT
                               SPACE
DATA PROPN
AS ADP
AT ADP
31 NUM
December PROPN
1992 NUM
                       SPACE
SYNDROME NOUN
D'IMMUNODEFICIENCE PROPN
ACQUISE PROPN
( PUNCT
SIDA PROPN
) PUNCT
                               SPACE
DONNEES PROPN
AU PROPN
31 NUM
Decembre PROPN
1992 NUM
                                           SPACE
NUMBER PROPN
                 SPACE
DATE NOUN
OF ADP
                                         SPACE
OF ADP
CASES PROPN
                 SPACE
REPORTCOUNTRY PROPN
/ SYM
AREA PROPN
- PUNCT
                             SPACE
NOMBRE PROPN
                 SPACE
DATE NOUN
        SPACE
PAYS PROPN
/ SYM
TERRITOIRE PROPN
                    SPACE
DE PROPN
CAS PROPN
                 SPACE
DE PROPN
                                                                  SPACE
NOTIFI- PROPN
                                                                  SPACE
CATIONAFRICA PROPN
- PUNCT
AFRIQUEAlgeria PROPN
- PUNCT
Algerie PROPN
                              SPACE
92 NUM
                 SPACE
31.08.91Angola NUM
                                        SPACE
514 NUM
                 SPACE
24.09.92Benin NUM
- PUNCT
Benin PROPN
                                 SPACE
247 NUM
                 SPACE
31.03.92Botswana NUM
                                      SPACE
353 NUM
                 SPACE
30.06.92Burkina NUM
Faso PROPN
                                SPACE
1,263 NUM
                 SPACE
20.03.92Burundi NUM
                                     SPACE
6,052 NUM
                 SPACE
20.03.92Cameroon NUM
- PUNCT
Cameroun PROPN
                         SPACE
1,407 NUM
                 SPACE
05.10.92Cape NUM
Verde PROPN
- PUNCT
Cap PROPN
- PUNCT
Vert PROPN
                          SPACE
52 NUM
                 SPACE
08.02.92Central DET
African PROPN
Republic PROPN
- PUNCT
        SPACE
Republique PROPN
centrafricaine NOUN
           SPACE
1,864 NUM
                 SPACE
20.03.92Chad PROPN
- PUNCT
Tchad PROPN
                                  SPACE
382 NUM
                 SPACE
17.09.92Comoros NUM
- SYM
Comores PROPN
                               SPACE
3 NUM
                 SPACE
11.03.92Congo NUM
                                       SPACE
3,482 NUM
                 SPACE
30.01.92Cote NUM
d'Ivoire PROPN
                              SPACE
10,792 NUM
                 SPACE
09.03.92Djibouti PUNCT
                                      SPACE
265 NUM
                 SPACE
17.12.92Egypt PROPN
- PUNCT
Egypte PROPN
                                 SPACE
57 NUM
                 SPACE
17.12.92Equatorial NUM
Guinea PROPN
- PUNCT
         SPACE
Guinee PROPN
equatoriale PROPN
                     SPACE
13 NUM
                 SPACE
16.05.92Ethiopia NUM
- PUNCT
Ethiopie PROPN
                         SPACE
3,978 NUM
                 SPACE
11.11.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
48Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Gabon NUM
                                         SPACE
215 NUM
                 SPACE
31.05.92Gambia NUM
- PUNCT
Gambie PROPN
                               SPACE
180 NUM
                 SPACE
25.02.92Ghana NUM
                                       SPACE
3,612 NUM
                 SPACE
01.07.92Guinea PROPN
- PUNCT
Guinee PROPN
                               SPACE
338 NUM
                 SPACE
20.03.92Guinea NUM
- PUNCT
Bissau PROPN
- PUNCT
Guinee PROPN
- PUNCT
Bissau PROPN
                 SPACE
189 NUM
                 SPACE
13.07.92Kenya NUM
                                      SPACE
31,185 NUM
                 SPACE
01.10.92Lesotho NUM
                                        SPACE
64 NUM
                 SPACE
31.03.92Liberia PROPN
- PUNCT
Liberia PROPN
                              SPACE
28 NUM
                 SPACE
31.03.92Libyan NUM
Arab PROPN
Jamahiriya PROPN
- PUNCT
        SPACE
Jamahiriya PROPN
arabe PROPN
libyenne VERB
               SPACE
7 NUM
                 SPACE
17.12.92Madagascar NUM
                                      SPACE
2 NUM
                 SPACE
06.11.92Malawi PROPN
                                     SPACE
22,300 NUM
                 SPACE
02.12.92Mali PROPN
                                        SPACE
1,111 NUM
                 SPACE
17.07.92Mauritania PROPN
- PUNCT
Mauritanie PROPN
                        SPACE
36 NUM
                 SPACE
19.07.92Mauritius PROPN
- PUNCT
Maurice PROPN
                            SPACE
11 NUM
                 SPACE
29.02.92Morocco PROPN
- PUNCT
Maroc PROPN
                               SPACE
121 NUM
                 SPACE
17.12.92Mozambique NUM
                                    SPACE
538 NUM
                 SPACE
10.10.92Namibia PROPN
- PUNCT
Namibie PROPN
                             SPACE
311 NUM
                 SPACE
20.03.92Niger NUM
                                         SPACE
497 NUM
                 SPACE
07.02.92Nigeria PROPN
- PUNCT
Nigeria PROPN
                             SPACE
184 NUM
                 SPACE
12.03.92Reunion NUM
- PUNCT
Reunion PROPN
                              SPACE
65 NUM
                 SPACE
20.03.92Rwanda NUM
                                      SPACE
8,483 NUM
                 SPACE
12.11.92Sao NUM
Tome PROPN
and CCONJ
Principe PROPN
- PUNCT
        SPACE
Sao PROPN
Tome PROPN
- PUNCT
et PROPN
- PUNCT
Principe PROPN
                   SPACE
11 NUM
                 SPACE
03.07.92Senegal PROPN
- PUNCT
Senegal PROPN
                             SPACE
648 NUM
                 SPACE
09.03.92Seychelles PROPN
                                    SPACE
--- PUNCT
                 SPACE
18.02.92Sierra NUM
Leone PROPN
                                   SPACE
40 NUM
                 SPACE
20.03.92Somalia NUM
- PUNCT
Somalie PROPN
                              SPACE
13 NUM
                 SPACE
17.12.92South NUM
Africa PROPN
- PUNCT
         SPACE
Afrique PROPN
du PROPN
Sud PROPN
                      SPACE
1,316 NUM
                 SPACE
30.06.92Sudan PROPN
- PUNCT
Soudan PROPN
                                SPACE
650 NUM
                 SPACE
17.12.92Swaziland NUM
                                     SPACE
197 NUM
                 SPACE
08.07.92Togo PROPN
                                        SPACE
1,278 NUM
                 SPACE
03.04.92Tunisia PROPN
- PUNCT
Tunisie PROPN
                             SPACE
114 NUM
                 SPACE
17.12.92Uganda PROPN
- PUNCT
Ouganda PROPN
                           SPACE
34,611 NUM
                 SPACE
01.11.92United PUNCT
Republic PROPN
of ADP
Tanzania PROPN
- PUNCT
        SPACE
Republique PROPN
- PUNCT
Unie PROPN
de X
        SPACE
Tanzanie PROPN
                           SPACE
34,605 NUM
                 SPACE
31.05.92Zaire PROPN
- PUNCT
Zaire PROPN
                              SPACE
18,186 NUM
                 SPACE
14.05.92Zambia PROPN
- PUNCT
Zambie PROPN
                             SPACE
6,556 NUM
                 SPACE
15.10.92Zimbabwe NUM
                                   SPACE
12,514 NUM
                 SPACE
31.03.92TOTAL NUM
                                     SPACE
211,032HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
49Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993AMERICAS NUM
- PUNCT
AMERIQUESAnguilla PROPN
                                        SPACE
6 NUM
                 SPACE
10.12.92Antigua NUM
and CCONJ
Barbuda PROPN
- PUNCT
         SPACE
Antigua PROPN
- PUNCT
et PROPN
- PUNCT
Barbuda PROPN
                      SPACE
6 NUM
                 SPACE
10.12.92Argentina NUM
- PUNCT
Argentine PROPN
                       SPACE
1,820 NUM
                 SPACE
10.12.92Bahamas NUM
                                       SPACE
934 NUM
                 SPACE
10.12.92Barbados PROPN
- PUNCT
Barbade PROPN
                            SPACE
315 NUM
                 SPACE
10.12.92Belize NUM
                                         SPACE
53 NUM
                 SPACE
10.12.92Bermuda PROPN
- SYM
Bermudes PROPN
                            SPACE
199 NUM
                 SPACE
10.12.92Bolivia NUM
- PUNCT
Bolivie PROPN
                              SPACE
49 NUM
                 SPACE
10.12.92Brazil PROPN
- PUNCT
Bresil PROPN
                            SPACE
31,364 NUM
                 SPACE
10.12.92British NUM
Virgin PROPN
Islands PROPN
- PUNCT
        SPACE
Iles PROPN
Vierges NOUN
         SPACE
britanniques NOUN
                            SPACE
4 NUM
                 SPACE
10.12.92Canada NUM
                                      SPACE
6,889 NUM
                 SPACE
10.12.92Cayman NUM
Islands PROPN
- PUNCT
Iles PROPN
Caimanes PROPN
                 SPACE
13 NUM
                 SPACE
10.12.92Chile NUM
- PUNCT
Chili PROPN
                                 SPACE
573 NUM
                 SPACE
10.12.92Colombia NUM
- PUNCT
Colombie PROPN
                         SPACE
2,957 NUM
                 SPACE
10.12.92Costa NUM
Rica PROPN
                                    SPACE
419 NUM
                 SPACE
10.12.92Cuba NUM
                                          SPACE
137 NUM
                 SPACE
10.12.92Dominica NUM
- PUNCT
Dominique PROPN
                           SPACE
12 NUM
                 SPACE
10.12.92Dominican PROPN
Republic PROPN
- PUNCT
        SPACE
Republique PROPN
dominicaine NOUN
              SPACE
1,809 NUM
                 SPACE
10.12.92Ecuador NUM
- PUNCT
Equateur ADJ
                            SPACE
224 NUM
                 SPACE
10.12.92El NUM
Salvador PROPN
                                   SPACE
382 NUM
                 SPACE
10.12.92French NUM
Guiana PROPN
- PUNCT
        SPACE
Guyane PROPN
francaise NOUN
                      SPACE
232 NUM
                 SPACE
10.12.92Grenada PROPN
- PUNCT
Grenade PROPN
                              SPACE
32 NUM
                 SPACE
10.12.92Guadeloupe PROPN
                                    SPACE
182 NUM
                 SPACE
10.12.92Guatemala NUM
                                     SPACE
273 NUM
                 SPACE
10.12.92Guyana PROPN
                                        SPACE
333 NUM
                 SPACE
10.12.92Haiti NUM
- PUNCT
Haiti PROPN
                               SPACE
3,086 NUM
                 SPACE
10.12.92Honduras NUM
                                    SPACE
1,976 NUM
                 SPACE
10.12.92Jamaica NUM
- PUNCT
Jamaique PROPN
                            SPACE
361 NUM
                 SPACE
10.12.92Martinique NUM
                                    SPACE
227 NUM
                 SPACE
10.12.92Mexico PROPN
- PUNCT
Mexique PROPN
                           SPACE
11,034 NUM
                 SPACE
10.12.92Montserrat NUM
                                      SPACE
1 NUM
                 SPACE
10.12.92Netherlands NUM
Antilles PROPN
and CCONJ
Aruba PROPN
- PUNCT
        SPACE
Antilles PROPN
neerlandaises VERB
et PROPN
        SPACE
Aruba PROPN
                                 SPACE
110 NUM
                 SPACE
10.12.92Nicaragua NUM
                                      SPACE
31 NUM
                 SPACE
10.12.92Panama NUM
                                        SPACE
388 NUM
                 SPACE
10.12.92Paraguay NUM
                                       SPACE
51 NUM
                 SPACE
10.12.92Peru NUM
- PUNCT
Perou PROPN
                                  SPACE
614 NUM
                 SPACE
10.12.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
50Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Saint NUM
Kitts PROPN
and CCONJ
Nevis PROPN
- PUNCT
        SPACE
Saint PROPN
- PUNCT
Kitts PROPN
- PUNCT
et PROPN
- PUNCT
Nevis PROPN
                   SPACE
37 NUM
                 SPACE
10.12.92Saint NUM
Lucia PROPN
- PUNCT
Sainte PROPN
- PUNCT
Lucie PROPN
                     SPACE
48 NUM
                 SPACE
10.12.92Saint NUM
Vincent PROPN
and CCONJ
the DET
        SPACE
Grenadines PROPN
- PUNCT
Saint- PROPN
        SPACE
Vincent PROPN
- PUNCT
et PROPN
- PUNCT
Grenadines PROPN
                  SPACE
41 NUM
                 SPACE
10.12.92Suriname NUM
                                      SPACE
122 NUM
                 SPACE
10.12.92Trinidad NUM
and CCONJ
Tobago PROPN
- PUNCT
        SPACE
Trinite PROPN
- PUNCT
et PROPN
- PUNCT
Tobago PROPN
                   SPACE
1,085 NUM
                 SPACE
10.12.92Turks PROPN
and CCONJ
Caicos PROPN
Islands PROPN
- PUNCT
        SPACE
Iles PROPN
Turques PROPN
et PROPN
        SPACE
Caiques PROPN
                                SPACE
25 NUM
                 SPACE
10.12.92United NUM
States PROPN
of ADP
America PROPN
- PUNCT
        SPACE
Etats PROPN
- PUNCT
Unis PROPN
d'Amerique PROPN
             SPACE
242,146 NUM
                 SPACE
10.12.92Uruguay NUM
                                       SPACE
310 NUM
                 SPACE
10.12.92Venezuela NUM
                                   SPACE
2,173 NUM
                 SPACE
10.12.92TOTAL DET
                                     SPACE
313,083ASIA NUM
- PUNCT
ASIEAfghanistan PROPN
                                   SPACE
--- PUNCT
                 SPACE
17.12.92Bahrain NUM
- PUNCT
Bahrein PROPN
                               SPACE
3 NUM
                 SPACE
31.03.92Bangladesh NUM
                                      SPACE
1 NUM
                 SPACE
30.11.92Bhutan PROPN
- PUNCT
Bhoutan PROPN
                              SPACE
--- PUNCT
                 SPACE
30.11.92Brunei PROPN
Darussalam PROPN
- PUNCT
         SPACE
Brunei PROPN
Darussalam PROPN
                       SPACE
2 NUM
                 SPACE
19.12.91Burma NUM
see VERB
Myanmar PROPN
- PUNCT
        SPACE
Birmanie PROPN
voir X
MyanmarCambodia PROPN
- PUNCT
Cambodge PROPN
                           SPACE
--- PUNCT
                 SPACE
31.10.92China(a NUM
) PUNCT
- PUNCT
Chine(a NOUN
) PUNCT
                            SPACE
11 NUM
                 SPACE
28.04.92Cyprus NUM
- PUNCT
Chypre PROPN
                                SPACE
24 NUM
                 SPACE
17.12.92Democratic NUM
People PROPN
's PART
Republic PROPN
        SPACE
of ADP
Korea PROPN
- PUNCT
  SPACE
Republique PROPN
        SPACE
populaire NOUN
democratique NOUN
        SPACE
de X
Coree PROPN
                              SPACE
--- PUNCT
                 SPACE
30.11.92Hong NUM
Kong PROPN
                                      SPACE
61 NUM
                 SPACE
26.09.92India NUM
- PUNCT
Inde ADJ
                                  SPACE
242 NUM
                 SPACE
30.11.92Indonesia PROPN
- PUNCT
Indonesie PROPN
                          SPACE
24 NUM
                 SPACE
30.11.92Iran NUM
( PUNCT
Islamic PROPN
Republic PROPN
of ADP
) PUNCT
- PUNCT
        SPACE
Iran PROPN
( PUNCT
Republique PROPN
        SPACE
islamique NOUN
d PROPN
' PUNCT
) PUNCT
                          SPACE
56 NUM
                 SPACE
17.12.92Iraq NUM
                                            SPACE
7 NUM
                 SPACE
17.12.92Israel PROPN
- PUNCT
Israel PROPN
                               SPACE
192 NUM
                 SPACE
17.12.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
51Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993Japan PROPN
- PUNCT
Japon PROPN
                                 SPACE
508 NUM
                 SPACE
04.12.92Jordan PROPN
- PUNCT
Jordanie PROPN
                              SPACE
24 NUM
                 SPACE
17.12.92Kuwait PROPN
- PUNCT
Koweit PROPN
                                 SPACE
7 NUM
                 SPACE
17.12.92Lao NUM
People PROPN
's PART
Democratic PROPN
Republic PROPN
- PUNCT
        SPACE
Republique PROPN
democratique NOUN
        SPACE
populaire PROPN
lao PROPN
                           SPACE
1 NUM
                 SPACE
23.04.92Lebanon PROPN
- PUNCT
Liban PROPN
                                SPACE
35 NUM
                 SPACE
17.12.92Macao NUM
                                           SPACE
2 NUM
                 SPACE
03.11.92Malaysia PROPN
- PUNCT
Malaisie PROPN
                            SPACE
46 NUM
                 SPACE
25.05.92Maldives NUM
                                      SPACE
--- PUNCT
                 SPACE
30.11.92Mongolia PROPN
- PUNCT
Mongolie PROPN
                             SPACE
1 NUM
                 SPACE
30.11.92Myanmar PROPN
                                        SPACE
16 NUM
                 SPACE
30.11.92Nepal PROPN
- PUNCT
Nepal PROPN
                                  SPACE
12 NUM
                 SPACE
30.11.92Oman NUM
                                           SPACE
27 NUM
                 SPACE
17.12.92Pakistan NUM
                                       SPACE
25 NUM
                 SPACE
17.12.92Philippines NUM
                                    SPACE
80 NUM
                 SPACE
07.10.92Qatar PROPN
                                          SPACE
31 NUM
                 SPACE
17.12.92Republic NUM
of ADP
Korea PROPN
- PUNCT
        SPACE
Republique PROPN
de X
Coree PROPN
                    SPACE
10 NUM
                 SPACE
19.11.92Saudi PROPN
Arabia PROPN
- PUNCT
Arabie PROPN
saoudite NOUN
                 SPACE
46 NUM
                 SPACE
17.12.92Singapore ADJ
- PUNCT
Singapour PROPN
                          SPACE
43 NUM
                 SPACE
05.08.92Sri NUM
Lanka PROPN
                                      SPACE
20 NUM
                 SPACE
30.11.92Syrian NUM
Arab PROPN
Republic PROPN
- PUNCT
         SPACE
Republique PROPN
arabe PROPN
syrienne PROPN
              SPACE
19 NUM
                 SPACE
17.12.92Thailand PROPN
- PUNCT
Thailande PROPN
                          SPACE
909 NUM
                 SPACE
30.11.92Turkey PROPN
- PUNCT
Turquie PROPN
                               SPACE
89 NUM
                 SPACE
17.12.92United PROPN
Arab PROPN
Emirates PROPN
- PUNCT
Emirats NOUN
        SPACE
arabes NOUN
unis PROPN
                             SPACE
8 NUM
                 SPACE
17.12.92Viet NUM
Nam PROPN
                                      SPACE
--- PUNCT
                 SPACE
28.04.92Yemen NUM
- PUNCT
Yemen PROPN
                                 SPACE
--- PUNCT
                 SPACE
17.12.92TOTAL NUM
                                       SPACE
2,582EUROPEAlbania NUM
- PUNCT
Albanie PROPN
                             SPACE
--- PUNCT
                 SPACE
30.09.92Austria PROPN
- PUNCT
Autriche PROPN
                            SPACE
828 NUM
                 SPACE
30.09.92Belarus PROPN
- PUNCT
Belarus PROPN
                               SPACE
6 NUM
                 SPACE
30.09.92Belgium PROPN
- PUNCT
Belgique PROPN
                          SPACE
1,224 NUM
                 SPACE
17.12.92Bulgaria PROPN
- PUNCT
Bulgarie PROPN
                            SPACE
16 NUM
                 SPACE
17.12.92Czechoslovakia PROPN
- PUNCT
Tchecoslovaquie PROPN
               SPACE
32 NUM
                 SPACE
17.12.92Denmark PROPN
- PUNCT
Danemark PROPN
                          SPACE
1,072 NUM
                 SPACE
17.12.92Finland PROPN
- PUNCT
Finlande PROPN
                            SPACE
112 NUM
                 SPACE
17.12.92HICNet NUM
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
52Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993France NUM
                                     SPACE
21,487 NUM
                 SPACE
17.12.92Germany NUM
- PUNCT
Allemagne PROPN
                         SPACE
8,893 NUM
                 SPACE
17.12.92Greece PROPN
- PUNCT
Grece PROPN
                                SPACE
689 NUM
                 SPACE
17.12.92Hungary PROPN
- PUNCT
Hongrie PROPN
                             SPACE
105 NUM
                 SPACE
17.12.92Iceland NUM
- PUNCT
Islande PROPN
                              SPACE
22 NUM
                 SPACE
17.12.92Ireland PROPN
- PUNCT
Irlande PROPN
                             SPACE
294 NUM
                 SPACE
17.12.92Italy PROPN
- PUNCT
Italie PROPN
                             SPACE
14,783 NUM
                 SPACE
17.12.92Latvia PROPN
- PUNCT
Lettonie PROPN
                               SPACE
2 NUM
                 SPACE
30.09.92Lithuania PROPN
- PUNCT
Lituanie PROPN
                            SPACE
2 NUM
                 SPACE
30.09.92Luxembourg NUM
                                     SPACE
55 NUM
                 SPACE
17.12.92Malta PROPN
- PUNCT
Malte PROPN
                                  SPACE
25 NUM
                 SPACE
17.12.92Monaco NUM
                                          SPACE
9 NUM
                 SPACE
17.12.92Netherlands PROPN
- PUNCT
Pays PROPN
- PUNCT
Bas PROPN
                      SPACE
2,330 NUM
                 SPACE
17.12.92Norway NUM
- PUNCT
Norvege PROPN
                              SPACE
283 NUM
                 SPACE
17.12.92Poland PROPN
- PUNCT
Pologne PROPN
                              SPACE
118 NUM
                 SPACE
17.12.92Portugal NUM
                                    SPACE
1,007 NUM
                 SPACE
17.12.92Romania PROPN
- PUNCT
Roumanie PROPN
                          SPACE
2,073 NUM
                 SPACE
17.12.92Russian PROPN
Federation PROPN
- PUNCT
Federation PROPN
        SPACE
de ADP
Russie PROPN
                              SPACE
94 NUM
                 SPACE
30.09.92San NUM
Marino PROPN
- PUNCT
Saint PROPN
- PUNCT
Marin PROPN
                        SPACE
1 NUM
                 SPACE
17.12.92Spain NUM
- PUNCT
Espagne PROPN
                            SPACE
14,991 NUM
                 SPACE
17.12.92Sweden PROPN
- PUNCT
Suede PROPN
                                SPACE
743 NUM
                 SPACE
17.12.92Switzerland PROPN
- PUNCT
Suisse PROPN
                        SPACE
2,691 NUM
                 SPACE
17.12.92United PROPN
Kingdom PROPN
- PUNCT
Royaume PROPN
- PUNCT
Uni NOUN
                SPACE
6,510 NUM
                 SPACE
17.12.92Yugoslavia(b NUM
) PUNCT
- PUNCT
Yougoslavie(b NOUN
) PUNCT
                SPACE
313 NUM
                 SPACE
30.09.92TOTAL NUM
                                      SPACE
80,810OCEANIA PROPN
- PUNCT
OCEANIEAmerican PROPN
Samoa PROPN
- PUNCT
Samoa PROPN
americaines NOUN
            SPACE
--- PUNCT
                 SPACE
18.11.92Australia NUM
- PUNCT
Australie PROPN
                       SPACE
3,615 NUM
                 SPACE
02.12.92Cook NUM
Islands PROPN
- PUNCT
Iles PROPN
Cook PROPN
                      SPACE
--- PUNCT
                 SPACE
18.02.92Federated NUM
States PROPN
of ADP
Micronesia PROPN
- PUNCT
        SPACE
Etats PROPN
federes NOUN
de PROPN
Micronesie PROPN
             SPACE
2 NUM
                 SPACE
01.09.92Fiji PROPN
- PUNCT
Fidji PROPN
                                    SPACE
4 NUM
                 SPACE
28.11.91French NUM
Polynesia PROPN
- PUNCT
Polynesie PROPN
francaise NOUN
         SPACE
27 NUM
                 SPACE
28.11.91Guam NUM
                                           SPACE
10 NUM
                 SPACE
13.09.91Kiribati NUM
                                      SPACE
--- PUNCT
                 SPACE
08.11.91Mariana PROPN
Islands PROPN
- PUNCT
Iles PROPN
Mariannes NOUN
                SPACE
4 NUM
                 SPACE
14.10.92Marshall NUM
Islands PROPN
- PUNCT
Iles PROPN
Marshall PROPN
                SPACE
2 NUM
                 SPACE
18.03.91Nauru NUM
                                         SPACE
--- PUNCT
                 SPACE
17.12.92New NUM
Caledonia PROPN
and CCONJ
Dependencies PROPN
-HICNet VERB
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
53Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
        SPACE
Nouvelle PROPN
- PUNCT
Caledonie PROPN
et PROPN
        SPACE
dependances NOUN
                            SPACE
22 NUM
                 SPACE
26.08.92New NUM
Zealand PROPN
- PUNCT
Nouvelle PROPN
- PUNCT
Zelande PROPN
                SPACE
348 NUM
                 SPACE
03.11.92Niue PROPN
                                          SPACE
--- PUNCT
                 SPACE
18.02.92Palau PROPN
                                         SPACE
--- PUNCT
                 SPACE
15.10.92Papua NUM
New PROPN
Guinea PROPN
- PUNCT
Papouasie- PROPN
        SPACE
Nouvelle PROPN
- PUNCT
Guinee PROPN
                        SPACE
45 NUM
                 SPACE
10.08.92Samoa NUM
                                           SPACE
1 NUM
                 SPACE
18.02.92Solomon PROPN
Islands PROPN
- PUNCT
Iles PROPN
Salomon PROPN
                SPACE
--- PUNCT
                 SPACE
19.12.91Tokelau NUM
                                       SPACE
--- PUNCT
                 SPACE
18.02.92Tonga NUM
                                           SPACE
2 NUM
                 SPACE
24.07.92Tuvalu NUM
                                        SPACE
--- PUNCT
                 SPACE
22.11.92Vanuatu NUM
                                       SPACE
--- PUNCT
                 SPACE
08.06.92Wallis PROPN
and CCONJ
Futuna PROPN
Islands PROPN
- PUNCT
Iles PROPN
        SPACE
Wallis PROPN
et PROPN
Futuna PROPN
                      SPACE
--- PUNCT
                 SPACE
27.05.91TOTAL NUM
                                       SPACE
4,082WORLD NUM
TOTAL NOUN
- PUNCT
         SPACE
TOTAL PROPN
MONDIAL PROPN
                     SPACE
611,589(a NUM
) PUNCT
The DET
above ADJ
statistics NOUN
relating VERB
to ADP
China PROPN
do AUX
not PART
include VERB
48 NUM
cases NOUN
of ADP
AIDS PROPN
inthe NOUN
Province PROPN
of ADP
Taiwan PROPN
. PUNCT
-- PUNCT
Les PROPN
statistiques VERB
ci PROPN
- PUNCT
dessus PROPN
se PROPN
rapportant VERB
a DET
la X
Chinene PROPN
comprennent NOUN
pas NOUN
48 NUM
cas NOUN
de X
SIDA PROPN
dans NOUN
la PROPN
province PROPN
de X
Taiwan.(b PROPN
) PUNCT
Refers VERB
to ADP
Republics NOUN
and CCONJ
areas NOUN
of ADP
the DET
former ADJ
Socialist PROPN
Federal PROPN
Republic PROPN
ofYugoslavia PUNCT
: PUNCT
  SPACE
Bosnia PROPN
and CCONJ
Herzegovina PROPN
; PUNCT
Croatia PROPN
; PUNCT
Macedonia PROPN
; PUNCT
Montenegro;Serbia PROPN
; PUNCT
Slovenia PROPN
. PUNCT
-- PUNCT
Se PROPN
refere ADV
aux NOUN
republiques VERB
et PROPN
territoires PROPN
de PROPN
l'ancienneRepublique PROPN
federative ADJ
socialiste NOUN
de ADP
Yougoslavie PROPN
: PUNCT
Bosnie PROPN
- PUNCT
Herzegovine PROPN
; PUNCT
Croatie;Macedoine PROPN
; PUNCT
Montenegro PROPN
; PUNCT
Serbie PROPN
; PUNCT
Slovenie PROPN
. PUNCT
                                        SPACE
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
54 NUM
- PUNCT
------------ ADV
cut NOUN
here ADV
------------------- PUNCT
This DET
is AUX
the DET
last ADJ
part NOUN
------------------ PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59286From NUM
: PUNCT
david@stat.com X
( PUNCT
David PROPN
Dodell)Subject PROPN
: PUNCT
HICN611 X
Medical PROPN
News PROPN
Part PROPN
3/4 NUM
- PUNCT
------------ PUNCT
cut NOUN
here ADV
----------------- PUNCT
         SPACE
ONCE PROPN
A DET
YEAR NOUN
... PUNCT
FOR ADP
A DET
LIFETIME PROPN
VIDEO PROPN
KIT PROPN
. PUNCT
  SPACE
This DET
kit NOUN
        SPACE
includes VERB
a DET
25-minute NUM
VHS PROPN
videotape NOUN
that PRON
presents VERB
common ADJ
        SPACE
misconceptions NOUN
about ADP
mammography NOUN
. PUNCT
  SPACE
It PRON
tells VERB
of ADP
the DET
        SPACE
benefits NOUN
gains NOUN
by ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
        SPACE
Jane PROPN
Pauley PROPN
and CCONJ
Phylicia PROPN
Rashad PROPN
are AUX
the DET
narrators NOUN
. PUNCT
  SPACE
Kit PROPN
        SPACE
includes VERB
a DET
guide NOUN
, PUNCT
poster NOUN
, PUNCT
flyer NOUN
, PUNCT
and CCONJ
pamphlets NOUN
on ADP
        SPACE
mammography NOUN
. PUNCT
  SPACE
This DET
kit NOUN
is AUX
available ADJ
directly ADV
by ADP
writing VERB
        SPACE
to ADP
: PUNCT
  SPACE
Modern PROPN
, PUNCT
5000 NUM
Park PROPN
Street PROPN
North PROPN
, PUNCT
St. PROPN
Petersburg PROPN
, PUNCT
FL PROPN
        SPACE
33709 NUM
- SYM
9989 NUM
. PUNCT
   SPACE
ADDITIONAL PROPN
RESOURCES NOUN
       SPACE
COMBINED PROPN
HEALTH NOUN
INFORMATION NOUN
DATABASE NOUN
( PUNCT
CHID PROPN
) PUNCT
. PUNCT
  SPACE
A DET
computerized ADJ
     SPACE
bibliographic ADJ
database NOUN
developed VERB
and CCONJ
managed VERB
by ADP
agencies NOUN
of ADP
     SPACE
the DET
U.S. PROPN
Public PROPN
Health PROPN
Service PROPN
. PUNCT
  SPACE
It PRON
contains VERB
references NOUN
to ADP
     SPACE
health NOUN
information NOUN
and CCONJ
health NOUN
education NOUN
resources NOUN
. PUNCT
  SPACE
The DET
     SPACE
database NOUN
provides VERB
bibliographic ADJ
citations NOUN
and CCONJ
abstracts NOUN
for ADP
     SPACE
journal NOUN
articles NOUN
, PUNCT
books NOUN
, PUNCT
reports NOUN
, PUNCT
pamphlets NOUN
, PUNCT
audiovisuals NOUN
, PUNCT
     SPACE
product NOUN
descriptions NOUN
, PUNCT
hard ADJ
- PUNCT
to PART
- PUNCT
find VERB
information NOUN
sources NOUN
, PUNCT
and CCONJ
     SPACE
health NOUN
promotion NOUN
and CCONJ
education NOUN
programs NOUN
under ADP
way NOUN
in ADP
state NOUN
     SPACE
and CCONJ
local ADJ
health NOUN
departments NOUN
and CCONJ
other ADJ
locations NOUN
. PUNCT
  SPACE
In ADP
     SPACE
addition NOUN
, PUNCT
CHID PROPN
provides VERB
source NOUN
and CCONJ
availability NOUN
information NOUN
     SPACE
for ADP
these DET
materials NOUN
, PUNCT
so SCONJ
that SCONJ
users NOUN
may AUX
obtain VERB
them PRON
directly ADV
. PUNCT
      SPACE
At ADP
present NOUN
, PUNCT
there PRON
are AUX
twenty NUM
- PUNCT
one NUM
subfiles NOUN
on ADP
CHID NOUN
. PUNCT
The DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
created VERB
the DET
Cancer PROPN
Patient PROPN
     SPACE
Education NOUN
subfile NOUN
in ADP
1990 NUM
. PUNCT
It PRON
serves VERB
as SCONJ
a DET
resource NOUN
for ADP
the DET
     SPACE
CHID PROPN
user NOUN
who PRON
is AUX
interested ADJ
in ADP
identifying VERB
patient ADJ
education NOUN
     SPACE
programs NOUN
for ADP
specific ADJ
cancer NOUN
patient NOUN
populations NOUN
, PUNCT
as ADV
well ADV
as SCONJ
     SPACE
for ADP
the DET
user NOUN
who PRON
is AUX
trying VERB
to PART
locate VERB
educational ADJ
resources NOUN
     SPACE
available ADJ
for ADP
patient NOUN
or CCONJ
family NOUN
cancer NOUN
education NOUN
. PUNCT
  SPACE
Citations PROPN
     SPACE
include VERB
the DET
contact NOUN
person NOUN
at ADP
cancer NOUN
centers NOUN
, PUNCT
so SCONJ
the DET
user NOUN
     SPACE
can AUX
follow VERB
up ADP
directly ADV
with ADP
the DET
appropriate ADJ
person NOUN
. PUNCT
      SPACE
To PART
access VERB
CHID NOUN
, PUNCT
check VERB
with ADP
your PRON
local ADJ
library NOUN
. PUNCT
  SPACE
Most ADV
medical ADJ
     SPACE
school NOUN
, PUNCT
university NOUN
, PUNCT
hospital NOUN
, PUNCT
and CCONJ
public ADJ
libraries NOUN
subscribe VERB
     SPACE
to ADP
commercial ADJ
database NOUN
vendors NOUN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
28Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
FINAL PROPN
REPORT PROPN
: PUNCT
  SPACE
AN DET
INTEGRATED PROPN
ONCOLOGY NOUN
WORKSTATION NOUN
( PUNCT
revised VERB
     SPACE
5/92 NUM
) PUNCT
. PUNCT
  SPACE
This DET
book NOUN
provides VERB
a DET
conceptual ADJ
overview NOUN
of ADP
what PRON
a DET
     SPACE
clinical ADJ
information NOUN
system NOUN
for ADP
practicing VERB
oncologists NOUN
might AUX
     SPACE
include VERB
: PUNCT
  SPACE
a DET
database NOUN
of ADP
electronic ADJ
patient NOUN
chart NOUN
records VERB
     SPACE
combined VERB
with ADP
access NOUN
to ADP
a DET
knowledge NOUN
base NOUN
of ADP
information NOUN
     SPACE
resources NOUN
such ADJ
as SCONJ
PDQ PROPN
, PUNCT
CANCERLIT NOUN
, PUNCT
and CCONJ
MEDLINE PROPN
-- PUNCT
an DET
     SPACE
integration NOUN
of ADP
data NOUN
and CCONJ
knowledge NOUN
combined VERB
to PART
create VERB
a DET
     SPACE
clinical ADJ
" PUNCT
oncology NOUN
workstation NOUN
. PUNCT
" PUNCT
  SPACE
The DET
concept NOUN
was AUX
developed VERB
     SPACE
as SCONJ
a DET
means NOUN
to PART
assist VERB
the DET
oncologist NOUN
and CCONJ
his PRON
or CCONJ
her PRON
office NOUN
     SPACE
staff NOUN
in ADP
the DET
daily ADJ
management NOUN
of ADP
patient ADJ
care NOUN
and CCONJ
clinical ADJ
     SPACE
trials NOUN
. PUNCT
  SPACE
This DET
book NOUN
can AUX
be AUX
obtained VERB
by ADP
contacting VERB
: PUNCT
  SPACE
Dr. PROPN
     SPACE
Robert PROPN
Esterhay PROPN
, PUNCT
Project PROPN
Officer PROPN
, PUNCT
Computer PROPN
Communications PROPN
     SPACE
Branch PROPN
, PUNCT
Building PROPN
82 NUM
, PUNCT
Room PROPN
201 NUM
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
20892 NUM
. PUNCT
      SPACE
SCIENTIFIC PROPN
INFORMATION PROPN
SERVICES NOUN
OF ADP
THE DET
NATIONAL PROPN
CANCER PROPN
     SPACE
INSTITUTE PROPN
. PUNCT
( PUNCT
91 NUM
- SYM
2683 NUM
) PUNCT
. PUNCT
This DET
booklet NOUN
from ADP
the DET
International PROPN
     SPACE
Cancer PROPN
Information PROPN
Center PROPN
( PUNCT
ICIC PROPN
) PUNCT
describes VERB
each DET
ICIC PROPN
product NOUN
     SPACE
or CCONJ
service NOUN
, PUNCT
including VERB
scientific ADJ
journals NOUN
( PUNCT
Journal PROPN
of ADP
the DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
and CCONJ
NCI PROPN
Monographs PROPN
) PUNCT
, PUNCT
specialized VERB
     SPACE
current ADJ
awareness NOUN
publications NOUN
( PUNCT
CANCERGRAMS PROPN
, PUNCT
and CCONJ
ONCOLOGY NOUN
     SPACE
OVERVIEWS NOUN
) PUNCT
, PUNCT
and CCONJ
online ADJ
databases NOUN
( PUNCT
PDQ PROPN
and CCONJ
CANCERLIT NOUN
) PUNCT
. PUNCT
To PART
     SPACE
obtain VERB
copies NOUN
of ADP
the DET
booklet NOUN
, PUNCT
write VERB
to ADP
: PUNCT
International PROPN
Cancer PROPN
     SPACE
Information PROPN
Center PROPN
, PUNCT
Dept PROPN
. PUNCT
JJJ PROPN
, PUNCT
National PROPN
Cancer PROPN
Institute PROPN
, PUNCT
     SPACE
Bldg PROPN
. PUNCT
82 NUM
, PUNCT
Rm PROPN
. PROPN
123 NUM
, PUNCT
Bethesda PROPN
, PUNCT
Maryland PROPN
20892 NUM
or CCONJ
fax VERB
your PRON
     SPACE
request NOUN
to ADP
301 NUM
- PUNCT
480 NUM
- PUNCT
8105.HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
29Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
            SPACE
Publications NOUN
for ADP
Patients NOUN
Available ADJ
from ADP
the DET
NCI PROPN
( PUNCT
1/93 NUM
) PUNCT
Free ADJ
copies NOUN
of ADP
the DET
following VERB
patient ADJ
education NOUN
materials NOUN
are AUX
available ADJ
( PUNCT
in ADP
single ADJ
copy NOUN
or CCONJ
bulk NOUN
) PUNCT
by ADP
calling VERB
the DET
NCI PROPN
's PART
Publication PROPN
Ordering PROPN
Service PROPN
, PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
4-CANCER PROPN
. PUNCT
   SPACE
CANCER PROPN
PREVENTION PROPN
      SPACE
CHEW NOUN
OR CCONJ
SNUFF PROPN
IS VERB
REAL ADV
BAD ADJ
STUFF NOUN
. PUNCT
  SPACE
This DET
brochure NOUN
, PUNCT
designedfor NOUN
seventh ADJ
and CCONJ
eighth ADJ
graders NOUN
, PUNCT
describes VERB
the DET
health NOUN
and CCONJ
socialeffects NOUN
of ADP
using VERB
smokeless ADJ
tobacco NOUN
products NOUN
. PUNCT
  SPACE
When ADV
fully ADV
opened VERB
, PUNCT
the DET
brochure NOUN
can AUX
be AUX
used VERB
as SCONJ
a DET
poster NOUN
. PUNCT
      SPACE
CLEARING PROPN
THE DET
AIR PROPN
: PUNCT
  SPACE
A DET
GUIDE PROPN
TO ADP
QUITTING VERB
SMOKING NOUN
. PUNCT
  SPACE
Thispamphlet PROPN
, PUNCT
designed VERB
to PART
help VERB
the DET
smoker NOUN
who PRON
wants VERB
to PART
quit VERB
, PUNCT
offers VERB
avariety NOUN
of ADP
approaches NOUN
to ADP
cessation NOUN
. PUNCT
[ PUNCT
24 NUM
pages NOUN
] PUNCT
      SPACE
DIET PROPN
, PUNCT
NUTRITION PROPN
& CCONJ
CANCER PROPN
PREVENTION PROPN
: PUNCT
  SPACE
THE DET
GOOD PROPN
NEWS PROPN
. PUNCT
  SPACE
Thisbooklet PROPN
provides VERB
an DET
overview NOUN
of ADP
dietary ADJ
guidelines NOUN
that PRON
mayassist VERB
individuals NOUN
in ADP
reducing VERB
their PRON
risks NOUN
for ADP
some DET
cancers NOUN
. PUNCT
  SPACE
Itidentifies VERB
certain ADJ
foods NOUN
to PART
choose VERB
more ADV
often ADV
and CCONJ
others NOUN
tochoose VERB
less ADV
often ADV
in ADP
the DET
context NOUN
of ADP
a DET
total ADJ
health NOUN
- PUNCT
promotingdiet NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
WHY ADV
DO VERB
YOU PRON
SMOKE VERB
? PUNCT
  SPACE
This DET
pamphlet NOUN
contains VERB
a DET
self NOUN
- PUNCT
test NOUN
todetermine NOUN
why ADV
people NOUN
smoke VERB
and CCONJ
suggests VERB
alternatives NOUN
andsubstitutes NOUN
that PRON
can AUX
help VERB
them PRON
stop VERB
. PUNCT
  SPACE
EARLY PROPN
DETECTION PROPN
       SPACE
BREAST PROPN
EXAMS PROPN
: PUNCT
  SPACE
WHAT PRON
YOU PRON
SHOULD AUX
KNOW VERB
. PUNCT
  SPACE
This DET
pamphlet ADJ
providesanswers NOUN
to ADP
questions NOUN
about ADP
breast NOUN
cancer NOUN
screening NOUN
methods NOUN
, PUNCT
including VERB
mammography NOUN
, PUNCT
the DET
medical ADJ
checkup NOUN
, PUNCT
breast PROPN
self NOUN
- PUNCT
examination NOUN
, PUNCT
and CCONJ
future ADJ
technologies NOUN
. PUNCT
  SPACE
Includes VERB
instructions NOUN
forbreast ADJ
self NOUN
- PUNCT
examination NOUN
. PUNCT
[ PUNCT
10 NUM
pages NOUN
] PUNCT
      SPACE
CANCER PROPN
TESTS NOUN
YOU PRON
SHOULD AUX
KNOW VERB
ABOUT ADV
: PUNCT
  SPACE
A DET
GUIDE PROPN
FOR ADP
PEOPLE NOUN
65AND NUM
OVER ADP
. PUNCT
  SPACE
This DET
pamphlet NOUN
describes VERB
the DET
cancer NOUN
tests NOUN
important ADJ
forpeople ADJ
age NOUN
65 NUM
and CCONJ
older ADJ
. PUNCT
  SPACE
It PRON
informs VERB
men NOUN
and CCONJ
women NOUN
of ADP
the DET
examsthey NOUN
should AUX
be AUX
requesting VERB
when ADV
they PRON
schedule VERB
checkups NOUN
with ADP
theirdoctors NOUN
. PUNCT
  SPACE
It PRON
provides VERB
a DET
checklist NOUN
for ADP
men NOUN
and CCONJ
women NOUN
to PART
recordwhen VERB
the DET
cancer NOUN
tests NOUN
occur VERB
, PUNCT
and CCONJ
it PRON
describes VERB
the DET
steps NOUN
to ADP
followHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
30Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993should NUM
cancer NOUN
be AUX
found VERB
. PUNCT
[ PUNCT
14 NUM
pages NOUN
] PUNCT
      SPACE
DO PROPN
THE DET
RIGHT ADJ
THING NOUN
: PUNCT
  SPACE
GET VERB
A DET
MAMMOGRAM PROPN
. PUNCT
  SPACE
This DET
brochure NOUN
targetsblack NOUN
women NOUN
age NOUN
40 NUM
or CCONJ
older ADJ
. PUNCT
  SPACE
It PRON
describes VERB
the DET
importance NOUN
ofregular ADJ
mammograms NOUN
in ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
  SPACE
Itstates VERB
the DET
NCI PROPN
guidelines NOUN
for ADP
mammography NOUN
. PUNCT
      SPACE
ONCE PROPN
A DET
YEAR NOUN
FOR ADP
A DET
LIFETIME NOUN
. PUNCT
  SPACE
This DET
brochure NOUN
targets VERB
all DET
womenage NOUN
40 NUM
or CCONJ
older ADJ
. PUNCT
  SPACE
It PRON
describes VERB
the DET
importance NOUN
of ADP
regularmammograms NOUN
in ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
  SPACE
It PRON
statesthe VERB
NCI PROPN
guidelines NOUN
for ADP
mammography NOUN
. PUNCT
      SPACE
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
ABOUT ADP
BREAST PROPN
LUMPS PROPN
. PUNCT
  SPACE
This DET
pamphletdescribes VERB
some DET
of ADP
the DET
most ADV
common ADJ
noncancerous ADJ
breast NOUN
lumps NOUN
andwhat PRON
can AUX
be AUX
done VERB
about ADP
them PRON
. PUNCT
  SPACE
Includes VERB
instructions NOUN
for ADP
breastself NOUN
- PUNCT
examination NOUN
. PUNCT
[ PUNCT
22 NUM
pages NOUN
] PUNCT
      SPACE
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
ABOUT ADP
CHOOSING NOUN
A DET
MAMMOGRAPHY NOUN
FACILITY.This PROPN
brochure NOUN
lists VERB
questions NOUN
to PART
ask VERB
in ADP
selecting VERB
a DET
qualitymammography ADJ
facility NOUN
. PUNCT
  SPACE
Also ADV
discusses VERB
typical ADJ
costs NOUN
and CCONJ
coverage NOUN
. PUNCT
      SPACE
TESTICULAR PROPN
SELF PROPN
- PUNCT
EXAMINATION PROPN
. PUNCT
  SPACE
This DET
pamphlet ADJ
containsinformation NOUN
about ADP
risks NOUN
and CCONJ
symptoms NOUN
of ADP
testicular ADJ
cancer NOUN
andprovides ADJ
instructions NOUN
on ADP
how ADV
to PART
perform VERB
testicular ADJ
self NOUN
- PUNCT
examination NOUN
. PUNCT
      SPACE
THE DET
PAP PROPN
TEST NOUN
: PUNCT
  SPACE
IT PRON
CAN AUX
SAVE VERB
YOUR PRON
LIFE NOUN
! PUNCT
  SPACE
This DET
easy ADJ
- PUNCT
to PART
- PUNCT
readpamphlet NOUN
tells VERB
women NOUN
the DET
importance NOUN
of ADP
getting VERB
a DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
Itexplains NOUN
who PRON
should AUX
request VERB
one NUM
, PUNCT
how ADV
often ADV
it PRON
should AUX
be AUX
done VERB
, PUNCT
andwhere ADV
to PART
go VERB
to PART
get AUX
a DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
GENERAL PROPN
       SPACE
RESEARCH PROPN
REPORTS PROPN
. PUNCT
  SPACE
In ADP
- PUNCT
depth NOUN
reports NOUN
covering VERB
currentknowledge NOUN
of ADP
the DET
causes NOUN
and CCONJ
prevention NOUN
, PUNCT
symptoms NOUN
, PUNCT
detection NOUN
anddiagnosis NOUN
, PUNCT
and CCONJ
treatment NOUN
of ADP
various ADJ
types NOUN
of ADP
cancer NOUN
. PUNCT
  SPACE
Individualreports NOUN
are AUX
available ADJ
on ADP
the DET
following ADJ
topics NOUN
: PUNCT
      SPACE
Bone PROPN
Marrow PROPN
Transplantation PROPN
     SPACE
Cancer NOUN
of ADP
the DET
Colon PROPN
and CCONJ
Rectum PROPN
     SPACE
Cancer NOUN
of ADP
the DET
Lung PROPN
     SPACE
Cancer PROPN
of ADP
the DET
Pancreas PROPN
     SPACE
MelanomaHICNet ADJ
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
31Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
Oral PROPN
Cancers PROPN
      SPACE
THE DET
IMMUNE PROPN
SYSTEM PROPN
- PUNCT
HOW ADV
IT PRON
WORKS VERB
. PUNCT
  SPACE
This DET
booklet NOUN
, PUNCT
written VERB
ata PROPN
high ADJ
school NOUN
level NOUN
, PUNCT
explains VERB
the DET
human ADJ
immune ADJ
system NOUN
for ADP
thegeneral ADJ
public NOUN
. PUNCT
  SPACE
It PRON
describes VERB
the DET
sophistication NOUN
of ADP
the DET
body'simmune NOUN
responses NOUN
, PUNCT
the DET
impact NOUN
of ADP
immune ADJ
disorders NOUN
, PUNCT
and CCONJ
therelation NOUN
of ADP
the DET
immune ADJ
system NOUN
to ADP
cancer NOUN
therapies NOUN
present VERB
andfuture NOUN
. PUNCT
[ PUNCT
28 NUM
pages NOUN
] PUNCT
       SPACE
WHAT PRON
YOU PRON
NEED VERB
TO PART
KNOW VERB
ABOUT ADP
CANCER PROPN
. PUNCT
  SPACE
This DET
series NOUN
ofpamphlets VERB
discusses VERB
symptoms NOUN
, PUNCT
diagnosis NOUN
, PUNCT
treatment NOUN
, PUNCT
emotionalissues NOUN
, PUNCT
and CCONJ
questions NOUN
to PART
ask VERB
the DET
doctor NOUN
. PUNCT
  SPACE
Includes VERB
glossary ADJ
ofterms NOUN
and CCONJ
other ADJ
resources NOUN
. PUNCT
  SPACE
Individual ADJ
pamphlets NOUN
are AUX
available ADJ
onthe ADJ
following ADJ
topics NOUN
: PUNCT
      SPACE
Bladder PROPN
     SPACE
Bone NOUN
     SPACE
Brain PROPN
     SPACE
Breast PROPN
     SPACE
Cervix PROPN
     SPACE
Colon PROPN
and CCONJ
Rectum PROPN
     SPACE
Dysplastic PROPN
Nevi PROPN
     SPACE
Esophagus NOUN
     SPACE
Hodgkin PROPN
's PART
Disease PROPN
     SPACE
Kidney PROPN
     SPACE
Larynx PROPN
     SPACE
Lung PROPN
     SPACE
Melanoma PROPN
     SPACE
Multiple PROPN
Myeloma PROPN
     SPACE
Non PROPN
- PROPN
Hodgkin PROPN
's PART
Lymphoma PROPN
     SPACE
Oral PROPN
Cancers PROPN
     SPACE
Ovary PROPN
     SPACE
Pancreas PROPN
     SPACE
Prostate PROPN
     SPACE
Skin NOUN
     SPACE
Testis PROPN
     SPACE
Uterus NOUN
  SPACE
PATIENT PROPN
EDUCATION PROPN
      SPACE
ANTICANCER PROPN
DRUG PROPN
INFORMATION NOUN
SHEETS VERB
IN ADP
SPANISH PROPN
/ SYM
ENGLISH PROPN
. PUNCT
  SPACE
Two NUM
- PUNCT
sided ADJ
fact NOUN
sheets NOUN
( PUNCT
in ADP
English PROPN
and CCONJ
Spanish PROPN
) PUNCT
provide VERB
informationabout VERB
side NOUN
effects NOUN
of ADP
common ADJ
drugs NOUN
used VERB
to PART
treat VERB
cancer NOUN
, PUNCT
theirHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
32Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993proper NUM
usage NOUN
, PUNCT
and CCONJ
precautions NOUN
for ADP
patients NOUN
. PUNCT
  SPACE
The DET
fact NOUN
sheets NOUN
wereprepared VERB
by ADP
the DET
United PROPN
States PROPN
Pharmacopeial PROPN
Convention PROPN
, PUNCT
Inc. PROPN
, PUNCT
fordistribution NOUN
by ADP
the DET
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
Single ADJ
sets NOUN
onlymay NOUN
be AUX
ordered VERB
. PUNCT
      SPACE
ADVANCED PROPN
CANCER PROPN
: PUNCT
  SPACE
LIVING NOUN
EACH PROPN
DAY PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
addressescoping VERB
with ADP
a DET
terminal ADJ
illness NOUN
by ADP
discussing VERB
practicalconsiderations NOUN
for ADP
the DET
patient NOUN
, PUNCT
the DET
family NOUN
, PUNCT
and CCONJ
friends NOUN
. PUNCT
[ PUNCT
30pages PROPN
] PUNCT
      SPACE
CHEMOTHERAPY PROPN
AND CCONJ
YOU PRON
: PUNCT
  SPACE
A DET
GUIDE PROPN
TO ADP
SELF PROPN
- PUNCT
HELP PROPN
DURINGTREATMENT NOUN
. PUNCT
This DET
booklet NOUN
, PUNCT
in ADP
question NOUN
- PUNCT
and CCONJ
- PUNCT
answer NOUN
format NOUN
, PUNCT
addressesproblems NOUN
and CCONJ
concerns NOUN
of ADP
patients NOUN
receiving VERB
chemotherapy NOUN
. PUNCT
Emphasis NOUN
is AUX
on ADP
explanation NOUN
and CCONJ
self NOUN
- PUNCT
help NOUN
. PUNCT
[ PUNCT
64 NUM
pages NOUN
] PUNCT
      SPACE
EATING NOUN
HINTS NOUN
: PUNCT
  SPACE
RECIPES NOUN
AND CCONJ
TIPS NOUN
FOR ADP
BETTER ADJ
NUTRITION NOUN
DURINGCANCER ADJ
TREATMENT NOUN
. PUNCT
  SPACE
This DET
cookbook NOUN
- PUNCT
style NOUN
booklet NOUN
includes VERB
recipesand NOUN
suggestions NOUN
for ADP
maintaining VERB
optimum ADJ
nutrition NOUN
duringtreatment NOUN
. PUNCT
  SPACE
All DET
recipes NOUN
have AUX
been AUX
tested VERB
. PUNCT
[ PUNCT
92 NUM
pages NOUN
] PUNCT
      SPACE
FACING PROPN
FORWARD PROPN
: PUNCT
A DET
GUIDE NOUN
FOR ADP
CANCER ADJ
SURVIVORS NOUN
. PUNCT
  SPACE
This DET
bookletpresents VERB
a DET
concise ADJ
overview NOUN
of ADP
important ADJ
survivor NOUN
issues NOUN
, PUNCT
including VERB
ongoing ADJ
health NOUN
needs NOUN
, PUNCT
psychosocial ADJ
concerns NOUN
, PUNCT
insurance NOUN
, PUNCT
and CCONJ
employment NOUN
. PUNCT
  SPACE
Easy ADJ
- PUNCT
to ADP
- PUNCT
use NOUN
format NOUN
includes VERB
cancer NOUN
survivors'experiences NOUN
, PUNCT
practical ADJ
tips NOUN
, PUNCT
recordkeeping VERB
forms NOUN
, PUNCT
and CCONJ
resources NOUN
. PUNCT
It PRON
is AUX
recommended VERB
for ADP
cancer NOUN
survivors NOUN
, PUNCT
their PRON
family NOUN
, PUNCT
andfriends VERB
. PUNCT
[ PUNCT
43 NUM
pages NOUN
] PUNCT
      SPACE
PATIENT PROPN
TO ADP
PATIENT VERB
: PUNCT
  SPACE
CANCER PROPN
CLINICAL PROPN
TRIALS NOUN
AND CCONJ
YOU PRON
. PUNCT
  SPACE
This15-minute PROPN
videocassette NOUN
provides VERB
simple ADJ
information NOUN
for ADP
patientsand PROPN
families NOUN
about ADP
the DET
clinical ADJ
trials NOUN
process NOUN
( PUNCT
produced VERB
incollaboration NOUN
with ADP
the DET
American PROPN
College PROPN
of ADP
Surgeons PROPN
Commission PROPN
onCancer PROPN
) PUNCT
. PUNCT
      SPACE
QUESTIONS PROPN
AND CCONJ
ANSWERS NOUN
ABOUT ADP
PAIN PROPN
CONTROL PROPN
: PUNCT
  SPACE
A DET
GUIDE PROPN
FORPEOPLE PROPN
WITH ADP
CANCER NOUN
AND CCONJ
THEIR PRON
FAMILIES PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
discussespain NOUN
control NOUN
using VERB
both CCONJ
medical ADJ
and CCONJ
nonmedical ADJ
methods NOUN
. PUNCT
  SPACE
Theemphasis PROPN
is AUX
on ADP
explanation NOUN
, PUNCT
self NOUN
- PUNCT
help NOUN
, PUNCT
and CCONJ
patient ADJ
participation NOUN
. PUNCT
This DET
booklet NOUN
is AUX
also ADV
available ADJ
from ADP
the DET
American PROPN
Cancer PROPN
Society.[44 ADJ
pages NOUN
] PUNCT
      SPACE
RADIATION PROPN
THERAPY PROPN
AND CCONJ
YOU PRON
: PUNCT
  SPACE
A DET
GUIDE PROPN
TO ADP
SELF PROPN
- PUNCT
HELP PROPN
DURINGTREATMENT NOUN
. PUNCT
This DET
booklet NOUN
addresses VERB
concerns NOUN
of ADP
patients NOUN
receivingforms NOUN
of ADP
radiation NOUN
therapy NOUN
. PUNCT
  SPACE
Emphasis NOUN
is AUX
on ADP
explanation NOUN
andself NOUN
- PUNCT
help NOUN
. PUNCT
[ PUNCT
52 NUM
pages]HICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
33Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
TAKING PROPN
TIME NOUN
: PUNCT
  SPACE
SUPPORT NOUN
FOR ADP
PEOPLE NOUN
WITH ADP
CANCER NOUN
AND CCONJ
THE DET
PEOPLEWHO NOUN
CARE VERB
ABOUT ADP
THEM PRON
. PUNCT
  SPACE
This DET
sensitively ADV
written VERB
booklet NOUN
forpersons NOUN
with ADP
cancer NOUN
and CCONJ
their PRON
families NOUN
addresses VERB
the DET
feelings NOUN
andconcerns ADV
of ADP
others NOUN
in ADP
similar ADJ
situations NOUN
and CCONJ
how ADV
they PRON
have AUX
coped.[68 PROPN
pages NOUN
] PUNCT
      SPACE
WHAT PRON
ARE VERB
CLINICAL NOUN
TRIALS NOUN
ALL DET
ABOUT ADP
? PUNCT
  SPACE
This DET
booklet NOUN
isdesigned VERB
for ADP
patients NOUN
who PRON
are AUX
considering VERB
taking VERB
part NOUN
in ADP
researchfor NOUN
new ADJ
cancer NOUN
treatments NOUN
. PUNCT
  SPACE
It PRON
explains VERB
clinical ADJ
trials NOUN
topatients NOUN
in ADP
easy ADJ
- PUNCT
to PART
- PUNCT
understand VERB
terms NOUN
and CCONJ
gives VERB
them PRON
informationthat PRON
will AUX
help VERB
them PRON
decide VERB
about ADP
participating VERB
. PUNCT
[ PUNCT
24 NUM
pages NOUN
] PUNCT
      SPACE
WHEN ADV
CANCER ADJ
RECURS NOUN
: PUNCT
  SPACE
MEETING PROPN
THE DET
CHALLENGE PROPN
AGAIN ADV
. PUNCT
  SPACE
Thisbooklet PROPN
details NOUN
the DET
different ADJ
types NOUN
of ADP
recurrence NOUN
, PUNCT
types NOUN
oftreatment NOUN
, PUNCT
and CCONJ
coping VERB
with ADP
cancer NOUN
's PART
return NOUN
. PUNCT
[ PUNCT
28 NUM
pages NOUN
] PUNCT
  SPACE
BREAST PROPN
CANCER PROPN
EDUCATION PROPN
SERIES NOUN
      SPACE
BREAST PROPN
BIOPSY PROPN
: PUNCT
  SPACE
WHAT PRON
YOU PRON
SHOULD AUX
KNOW VERB
. PUNCT
  SPACE
This DET
booklet NOUN
     SPACE
discusses VERB
biopsy NOUN
procedures NOUN
. PUNCT
  SPACE
It PRON
describes VERB
what PRON
to PART
expect VERB
in ADP
     SPACE
the DET
hospital NOUN
and CCONJ
while SCONJ
awaiting VERB
a DET
diagnosis NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
BREAST PROPN
CANCER PROPN
: PUNCT
  SPACE
UNDERSTANDING NOUN
TREATMENT NOUN
OPTIONS NOUN
. PUNCT
This DET
     SPACE
booklet NOUN
summarizes VERB
the DET
biopsy PROPN
procedure NOUN
and CCONJ
examines VERB
the DET
     SPACE
pros NOUN
and CCONJ
cons NOUN
of ADP
various ADJ
types NOUN
of ADP
breast NOUN
surgery NOUN
. PUNCT
  SPACE
It PRON
     SPACE
discusses NOUN
lumpectomy NOUN
and CCONJ
radiation NOUN
therapy NOUN
as SCONJ
primary ADJ
     SPACE
treatment NOUN
, PUNCT
adjuvant ADJ
therapy NOUN
, PUNCT
and CCONJ
the DET
process NOUN
of ADP
making VERB
     SPACE
treatment NOUN
decisions NOUN
. PUNCT
[ PUNCT
19 NUM
pages NOUN
] PUNCT
      SPACE
MASTECTOMY PROPN
: PUNCT
  SPACE
A DET
TREATMENT NOUN
FOR ADP
BREAST PROPN
CANCER PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
     SPACE
presents VERB
information NOUN
about ADP
the DET
different ADJ
types NOUN
of ADP
breast NOUN
     SPACE
surgery NOUN
. PUNCT
  SPACE
It PRON
explains VERB
what PRON
to PART
expect VERB
in ADP
the DET
hospital NOUN
and CCONJ
     SPACE
during ADP
the DET
recovery NOUN
period NOUN
following VERB
breast NOUN
cancer NOUN
surgery NOUN
. PUNCT
     SPACE
Breast PROPN
self NOUN
- PUNCT
examination NOUN
for ADP
mastectomy NOUN
patients NOUN
is AUX
also ADV
     SPACE
described VERB
. PUNCT
[ PUNCT
25 NUM
pages NOUN
] PUNCT
      SPACE
AFTER ADP
BREAST PROPN
CANCER PROPN
: PUNCT
  SPACE
A DET
GUIDE NOUN
TO ADP
FOLLOWUP ADJ
CARE PROPN
. PUNCT
  SPACE
This DET
     SPACE
booklet NOUN
is AUX
for ADP
the DET
woman NOUN
who PRON
has AUX
completed VERB
treatment NOUN
. PUNCT
  SPACE
It PRON
     SPACE
explains VERB
the DET
importance NOUN
of ADP
checking VERB
for ADP
possible ADJ
signs NOUN
of ADP
     SPACE
recurring VERB
cancer NOUN
by ADP
receiving VERB
regular ADJ
mammograms NOUN
, PUNCT
getting VERB
     SPACE
breast NOUN
exams NOUN
from ADP
a DET
doctor NOUN
, PUNCT
and CCONJ
continuing VERB
monthly ADJ
breast NOUN
     SPACE
self NOUN
- PUNCT
exams NOUN
. PUNCT
  SPACE
It PRON
offers VERB
advice NOUN
for ADP
managing VERB
the DET
physical ADJ
and CCONJ
     SPACE
emotional ADJ
side NOUN
effects NOUN
that PRON
may AUX
accompany VERB
surviving VERB
breastHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
34Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
     SPACE
cancer NOUN
. PUNCT
[ PUNCT
15 NUM
pages NOUN
] PUNCT
      SPACE
PEDIATRIC PROPN
CANCER PROPN
EDUCATION PROPN
SERIES NOUN
      SPACE
HELP PROPN
YOURSELF PROPN
: PUNCT
  SPACE
TIPS PROPN
FOR ADP
TEENAGERS NOUN
WITH ADP
CANCER PROPN
. PUNCT
This DET
     SPACE
magazine NOUN
- PUNCT
style NOUN
booklet NOUN
is AUX
designed VERB
to PART
provide VERB
information NOUN
     SPACE
and CCONJ
support NOUN
to ADP
adolescents NOUN
with ADP
cancer NOUN
. PUNCT
  SPACE
Issues NOUN
addressed VERB
     SPACE
include VERB
reactions NOUN
to ADP
diagnosis VERB
, PUNCT
relationships NOUN
with ADP
family NOUN
     SPACE
and CCONJ
friends NOUN
, PUNCT
school NOUN
attendance NOUN
, PUNCT
and CCONJ
body NOUN
image NOUN
. PUNCT
[ PUNCT
37 NUM
pages NOUN
] PUNCT
      SPACE
HOSPITAL PROPN
DAYS NOUN
, PUNCT
TREATMENT NOUN
WAYS PROPN
. PUNCT
This DET
hematology NOUN
- PUNCT
oncology NOUN
     SPACE
coloring VERB
book NOUN
helps VERB
orient ADP
the DET
child NOUN
with ADP
cancer NOUN
to ADP
hospital NOUN
     SPACE
and CCONJ
treatment NOUN
procedures NOUN
. PUNCT
[ PUNCT
26 NUM
pages NOUN
] PUNCT
      SPACE
MANAGING VERB
YOUR PRON
CHILD NOUN
'S AUX
EATING NOUN
PROBLEMS NOUN
DURING ADP
CANCER PROPN
     SPACE
TREATMENT NOUN
. PUNCT
  SPACE
This DET
booklet NOUN
contains VERB
information NOUN
about ADP
the DET
     SPACE
importance NOUN
of ADP
nutrition NOUN
, PUNCT
the DET
side NOUN
effects NOUN
of ADP
cancer NOUN
and CCONJ
its PRON
     SPACE
treatment NOUN
, PUNCT
ways NOUN
to PART
encourage VERB
a DET
child NOUN
to PART
eat VERB
, PUNCT
and CCONJ
special ADJ
     SPACE
diets NOUN
. PUNCT
[ PUNCT
32 NUM
pages NOUN
] PUNCT
      SPACE
TALKING PROPN
WITH ADP
YOUR PRON
CHILD NOUN
ABOUT ADP
CANCER PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
     SPACE
designed VERB
for ADP
the DET
parent NOUN
whose PRON
child NOUN
has AUX
been AUX
diagnosed VERB
with ADP
     SPACE
cancer NOUN
. PUNCT
  SPACE
It PRON
addresses VERB
the DET
health NOUN
- PUNCT
related VERB
concerns NOUN
of ADP
young ADJ
     SPACE
people NOUN
of ADP
different ADJ
ages NOUN
; PUNCT
it PRON
suggests VERB
ways NOUN
to PART
discuss VERB
     SPACE
disease NOUN
- PUNCT
related VERB
issues NOUN
with ADP
the DET
child NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
WHEN ADV
SOMEONE NOUN
IN ADP
YOUR PRON
FAMILY NOUN
HAS VERB
CANCER PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
     SPACE
written VERB
for ADP
young ADJ
people NOUN
whose PRON
parent NOUN
or CCONJ
sibling NOUN
has AUX
cancer NOUN
. PUNCT
     SPACE
It PRON
includes VERB
sections NOUN
on ADP
the DET
disease NOUN
, PUNCT
its PRON
treatment NOUN
, PUNCT
and CCONJ
     SPACE
emotional ADJ
concerns NOUN
. PUNCT
[ PUNCT
28 NUM
pages NOUN
] PUNCT
      SPACE
YOUNG PROPN
PEOPLE NOUN
WITH ADP
CANCER NOUN
: PUNCT
  SPACE
A DET
HANDBOOK NOUN
FOR ADP
PARENTS NOUN
. PUNCT
     SPACE
This DET
booklet NOUN
discusses VERB
the DET
most ADV
common ADJ
types NOUN
of ADP
childhood NOUN
     SPACE
cancer NOUN
, PUNCT
treatments NOUN
and CCONJ
side NOUN
effects NOUN
, PUNCT
and CCONJ
issues NOUN
that PRON
may AUX
     SPACE
arise VERB
when ADV
a DET
child NOUN
is AUX
diagnosed VERB
with ADP
cancer NOUN
. PUNCT
  SPACE
Offers VERB
medical ADJ
     SPACE
information NOUN
and CCONJ
practical ADJ
tips NOUN
gathered VERB
from ADP
the DET
experience NOUN
     SPACE
of ADP
others NOUN
. PUNCT
[ PUNCT
86 NUM
pages NOUN
] PUNCT
  SPACE
SPANISH PROPN
LANGUAGE PROPN
PUBLICATIONS PROPN
Si PROPN
desea VERB
hablar ADJ
con X
un PROPN
especialista PROPN
en ADP
informacion PROPN
sobre NOUN
elcancer NOUN
, PUNCT
por NOUN
favor NOUN
llame PROPN
al PROPN
1 NUM
- PUNCT
800 NUM
- PUNCT
422 NUM
- SYM
6237 NUM
( PUNCT
1 NUM
- PUNCT
800 NUM
- PUNCT
4-CANCER NUM
) PUNCT
. PUNCT
CANCER PROPN
PREVENTIONHICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page NOUN
35Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
A DET
TIME NOUN
OF ADP
CHANGE PROPN
/ SYM
DE PROPN
NINA PROPN
A PROPN
MUJER PROPN
. PUNCT
  SPACE
This DET
bilingual ADJ
fotonovela PROPN
     SPACE
was AUX
developed VERB
specifically ADV
for ADP
young ADJ
women NOUN
. PUNCT
  SPACE
It PRON
discusses VERB
     SPACE
various ADJ
health NOUN
promotion NOUN
issues NOUN
such ADJ
as SCONJ
nutrition NOUN
, PUNCT
no DET
     SPACE
smoking NOUN
, PUNCT
exercise NOUN
, PUNCT
and CCONJ
pelvic ADJ
, PUNCT
Pap PROPN
, PUNCT
and CCONJ
breast NOUN
examinations NOUN
. PUNCT
     SPACE
[ PUNCT
34 NUM
pages NOUN
] PUNCT
      SPACE
DATOS PROPN
SOBRE PROPN
EL PROPN
HABITO PROPN
DE PROPN
FUMAR PROPN
Y PROPN
RECOMENDACIONES NOUN
PARA NOUN
DEJAR VERB
     SPACE
DE PROPN
FUMAR PROPN
. PUNCT
  SPACE
This DET
bilingual ADJ
pamphlet NOUN
describes VERB
the DET
health NOUN
     SPACE
risks NOUN
of ADP
smoking NOUN
and CCONJ
tips NOUN
on ADP
how ADV
to PART
quit VERB
and CCONJ
how ADV
to PART
stay VERB
     SPACE
quit NOUN
. PUNCT
[ PUNCT
8 NUM
pages NOUN
] PUNCT
      SPACE
GUIA PROPN
PARA PROPN
DEJAR PROPN
DE PROPN
FUMAR PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
is AUX
a DET
full ADJ
- PUNCT
color NOUN
, PUNCT
     SPACE
self NOUN
- PUNCT
help NOUN
smoking NOUN
cessation NOUN
booklet NOUN
prepared VERB
specifically ADV
     SPACE
for ADP
Spanish PROPN
- PUNCT
speaking VERB
Americans PROPN
. PUNCT
  SPACE
It PRON
was AUX
developed VERB
by ADP
the DET
     SPACE
University PROPN
of ADP
California PROPN
, PUNCT
San PROPN
Francisco PROPN
, PUNCT
under ADP
an DET
NCI PROPN
     SPACE
research NOUN
grant NOUN
. PUNCT
[ PUNCT
36 NUM
pages NOUN
] PUNCT
  SPACE
EARLY PROPN
DETECTION PROPN
      SPACE
HAGASE VERB
LA PROPN
PRUEBA PROPN
PAP PROPN
: PUNCT
HAGALO NOUN
HOY PROPN
... PUNCT
POR PROPN
SU PROPN
SALUD NOUN
Y PROPN
SU PROPN
     SPACE
FAMILIA NOUN
. PUNCT
  SPACE
This DET
bilingual ADJ
brochure NOUN
tells VERB
women NOUN
why ADV
it PRON
is AUX
     SPACE
important ADJ
to PART
get AUX
a DET
Pap PROPN
test NOUN
. PUNCT
  SPACE
It PRON
gives VERB
brief ADJ
, PUNCT
clear ADJ
     SPACE
information NOUN
about ADP
who PRON
needs VERB
a DET
Pap PROPN
test NOUN
, PUNCT
where ADV
to PART
go VERB
to PART
get AUX
     SPACE
one NUM
, PUNCT
and CCONJ
how ADV
often ADV
the DET
Pap PROPN
test NOUN
should AUX
be AUX
done VERB
. PUNCT
      SPACE
HAGASE PROPN
UN PROPN
MAMOGRAMA PROPN
: PUNCT
UNA PROPN
VEZ PROPN
AL PROPN
ANO PROPN
... PUNCT
PARA PROPN
TODA PROPN
UNA PROPN
VIDA PROPN
. PUNCT
     SPACE
This DET
bilingual ADJ
brochure NOUN
describes VERB
the DET
importance NOUN
of ADP
     SPACE
mammograms NOUN
in ADP
the DET
early ADJ
detection NOUN
of ADP
breast NOUN
cancer NOUN
. PUNCT
  SPACE
It PRON
     SPACE
gives VERB
brief ADJ
information NOUN
about ADP
who PRON
is AUX
at ADP
risk NOUN
for ADP
breast NOUN
     SPACE
cancer NOUN
, PUNCT
how ADV
a DET
mammogram NOUN
is AUX
done VERB
, PUNCT
and CCONJ
how ADV
to PART
get AUX
one NUM
. PUNCT
      SPACE
LA PROPN
PRUEBA PROPN
PAP PROPN
: PUNCT
UN PROPN
METODO NOUN
PARA NOUN
DIAGNOSTICAR NOUN
CANCER ADJ
DEL PROPN
CUELLO NOUN
     SPACE
DEL PROPN
UTERO NOUN
. PUNCT
  SPACE
This DET
booklet NOUN
in ADP
Spanish ADJ
answers NOUN
questions NOUN
about ADP
     SPACE
the DET
Pap PROPN
test NOUN
, PUNCT
including VERB
how ADV
often ADV
it PRON
should AUX
be AUX
done VERB
, PUNCT
     SPACE
significance NOUN
of ADP
results NOUN
, PUNCT
and CCONJ
other ADJ
diagnostic ADJ
tests NOUN
and CCONJ
     SPACE
treatments NOUN
. PUNCT
[ PUNCT
16 NUM
pages NOUN
] PUNCT
      SPACE
LO PROPN
QUE PROPN
USTED PROPN
DEBE PROPN
SABER VERB
SOBRE PROPN
LOS PROPN
EXAMENES VERB
DE PROPN
LOS PROPN
SENOS PROPN
. PUNCT
     SPACE
This DET
booklet NOUN
in ADP
Spanish ADJ
explains VERB
the DET
importance NOUN
of ADP
the DET
three NUM
     SPACE
actions NOUN
recommended VERB
by ADP
the DET
NCI PROPN
to PART
detect VERB
breast NOUN
cancer NOUN
as SCONJ
     SPACE
early ADV
as SCONJ
possible ADJ
: PUNCT
  SPACE
requesting VERB
regular ADJ
mammography NOUN
, PUNCT
getting VERB
     SPACE
an DET
annual ADJ
breast NOUN
exam NOUN
from ADP
the DET
doctor NOUN
, PUNCT
and CCONJ
performing VERB
a DET
     SPACE
monthly ADJ
breast NOUN
self NOUN
- PUNCT
exam NOUN
. PUNCT
[ PUNCT
6 NUM
pages]HICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
36Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
      SPACE
PREGUNTAS PROPN
Y PROPN
RESPUESTAS PROPN
SOBRE NOUN
LA PROPN
SELECCION PROPN
DE PROPN
UN PROPN
CENTRO PROPN
DE PROPN
     SPACE
MAMOGRAFIA NOUN
. PUNCT
  SPACE
This DET
brochure NOUN
lists VERB
questions NOUN
and CCONJ
answers NOUN
to PART
     SPACE
ask NOUN
in ADP
selecting VERB
a DET
quality NOUN
mammography NOUN
facility NOUN
. PUNCT
PATIENT PROPN
EDUCATION PROPN
      SPACE
ANTICANCER PROPN
DRUG PROPN
INFORMATION NOUN
SHEETS VERB
IN ADP
SPANISH PROPN
/ SYM
ENGLISH PROPN
. PUNCT
  SPACE
Two- PROPN
     SPACE
sided ADJ
fact NOUN
sheets NOUN
( PUNCT
in ADP
English PROPN
and CCONJ
Spanish PROPN
) PUNCT
provide VERB
     SPACE
information NOUN
about ADP
side NOUN
effects NOUN
of ADP
common ADJ
drugs NOUN
used VERB
to PART
treat VERB
     SPACE
cancer NOUN
, PUNCT
their PRON
proper ADJ
usage NOUN
, PUNCT
and CCONJ
precautions NOUN
for ADP
patients NOUN
. PUNCT
     SPACE
The DET
fact NOUN
sheets NOUN
were AUX
prepared VERB
by ADP
the DET
United PROPN
States PROPN
     SPACE
Pharmacopeial PROPN
Convention PROPN
, PUNCT
Inc. PROPN
, PUNCT
for ADP
distribution NOUN
by ADP
the DET
     SPACE
National PROPN
Cancer PROPN
Institute PROPN
. PUNCT
  SPACE
Single ADJ
sets NOUN
only ADV
may AUX
be AUX
ordered VERB
. PUNCT
      SPACE
DATOS PROPN
SOBRE PROPN
EL PROPN
TRATAMIENTO PROPN
DE PROPN
QUIMIOTERAPIA PROPN
CONTRA VERB
EL PROPN
     SPACE
CANCER PROPN
. PUNCT
  SPACE
This DET
flyer NOUN
in ADP
Spanish PROPN
provides VERB
a DET
brief ADJ
introduction NOUN
     SPACE
to ADP
cancer NOUN
chemotherapy NOUN
. PUNCT
[ PUNCT
12 NUM
pages NOUN
] PUNCT
      SPACE
EL PROPN
TRATAMIENTO PROPN
DE PROPN
RADIOTERAPIA PROPN
: PUNCT
  SPACE
GUIA PROPN
PARA PROPN
EL PROPN
PACIENTE NOUN
     SPACE
DURANTE NOUN
EL PROPN
TRATAMIENTO PROPN
. PUNCT
  SPACE
This DET
booklet NOUN
in ADP
Spanish ADJ
addresses NOUN
     SPACE
the DET
concerns NOUN
of ADP
patients NOUN
receiving VERB
radiation NOUN
therapy NOUN
for ADP
     SPACE
cancer NOUN
. PUNCT
  SPACE
Emphasis NOUN
is AUX
on ADP
explanation NOUN
and CCONJ
self NOUN
- PUNCT
help NOUN
. PUNCT
[ PUNCT
48 NUM
     SPACE
pages]HICNet NOUN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
37Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993 NUM
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
                              SPACE
AIDS PROPN
News PROPN
Summaries PROPN
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
               SPACE
AIDS PROPN
Daily PROPN
Summary PROPN
for ADP
April PROPN
19 NUM
to ADP
April PROPN
23 NUM
, PUNCT
1993 NUM
            SPACE
The DET
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
( PUNCT
CDC PROPN
) PUNCT
National PROPN
AIDS PROPN
  SPACE
Clearinghouse PROPN
makes VERB
available ADJ
the DET
following VERB
information NOUN
as SCONJ
a DET
public ADJ
  SPACE
service NOUN
only ADV
. PUNCT
Providing VERB
this DET
information NOUN
does AUX
not PART
constitute VERB
endorsement NOUN
  SPACE
by ADP
the DET
CDC PROPN
, PUNCT
the DET
CDC PROPN
Clearinghouse PROPN
, PUNCT
or CCONJ
any DET
other ADJ
organization NOUN
. PUNCT
Reproduction NOUN
  SPACE
of ADP
this DET
text NOUN
is AUX
encouraged VERB
; PUNCT
however ADV
, PUNCT
copies NOUN
may AUX
not PART
be AUX
sold VERB
. PUNCT
  SPACE
Copyright NOUN
1993 NUM
, PUNCT
Information PROPN
, PUNCT
Inc. PROPN
, PUNCT
Bethesda PROPN
, PUNCT
MD PROPN
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                     SPACE
April PROPN
19 NUM
, PUNCT
1993 NUM
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
      SPACE
" PUNCT
Absence PROPN
of ADP
HIV PROPN
Transmission PROPN
From ADP
an DET
Infected ADJ
Orthopedic PROPN
Surgeon PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
Vol PROPN
. PROPN
269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
1807 NUM
  SPACE
( PUNCT
von PROPN
Reyn PROPN
, PUNCT
C. PROPN
Fordham PROPN
) PUNCT
      SPACE
The DET
risk NOUN
of ADP
HIV PROPN
transmission NOUN
from ADP
an DET
HIV PROPN
- PUNCT
positive ADJ
surgeon NOUN
to ADP
  SPACE
patient NOUN
is AUX
extremely ADV
low ADJ
, PUNCT
provided VERB
that SCONJ
the DET
surgeon NOUN
strictly ADV
  SPACE
adheres NOUN
to ADP
universal ADJ
infection NOUN
control NOUN
procedures NOUN
, PUNCT
write VERB
C. PROPN
  SPACE
Fordham PROPN
von PROPN
Reyn PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
Dartmouth PROPN
- PUNCT
Hitchcock PROPN
Medical PROPN
Center PROPN
in ADP
Lebanon PROPN
, PUNCT
N.H. PROPN
  SPACE
The DET
researchers NOUN
contacted VERB
2,317 NUM
former ADJ
patients NOUN
on ADP
whom PRON
an DET
HIV PROPN
- PUNCT
positive ADJ
orthopedic ADJ
surgeon NOUN
performed VERB
invasive NOUN
  SPACE
procedures NOUN
between ADP
January PROPN
1 NUM
, PUNCT
1978 NUM
and CCONJ
June PROPN
30 NUM
, PUNCT
1992 NUM
. PUNCT
  SPACE
The DET
  SPACE
orthopedic ADJ
surgeon NOUN
voluntarily ADV
withdrew VERB
from ADP
practice NOUN
after ADP
  SPACE
testing VERB
positive ADJ
for ADP
HIV PROPN
. PUNCT
  SPACE
A DET
total NOUN
of ADP
1,174 NUM
former ADJ
patients NOUN
  SPACE
underwent VERB
HIV PROPN
testing NOUN
, PUNCT
representing VERB
50.7 NUM
percent NOUN
of ADP
patients NOUN
on ADP
  SPACE
whom PRON
the DET
orthopedic ADJ
surgeon NOUN
performed VERB
invasive ADJ
procedures NOUN
during ADP
  SPACE
the DET
13.5-year ADJ
period NOUN
. PUNCT
  SPACE
Patients NOUN
were AUX
tested VERB
from ADP
each DET
year NOUN
and CCONJ
  SPACE
from ADP
each DET
category NOUN
of ADP
invasive ADJ
procedure NOUN
. PUNCT
  SPACE
All DET
patients NOUN
were AUX
  SPACE
found VERB
to PART
be AUX
negative ADJ
for ADP
HIV PROPN
by ADP
enzyme NOUN
- PUNCT
linked VERB
- PUNCT
immunosorbent NOUN
  SPACE
assay NOUN
. PUNCT
  SPACE
Two NUM
former ADJ
patients NOUN
reported VERB
known VERB
HIV PROPN
infection NOUN
prior ADV
to ADP
surgery NOUN
. PUNCT
  SPACE
The DET
examination NOUN
of ADP
AIDS PROPN
case NOUN
registries VERB
and CCONJ
vital ADJ
  SPACE
records NOUN
neglected VERB
to PART
detect VERB
cases NOUN
of ADP
HIV PROPN
infection NOUN
among ADP
former ADJ
  SPACE
surgical ADJ
patients NOUN
. PUNCT
  SPACE
The DET
estimated VERB
cost NOUN
of ADP
the DET
initial ADJ
patient NOUN
  SPACE
notification NOUN
and CCONJ
testing NOUN
was AUX
$ SYM
158,000 NUM
, PUNCT
with ADP
the DET
single ADJ
most ADJ
  SPACE
expensive ADJ
activity NOUN
being AUX
counseling NOUN
and CCONJ
testing NOUN
. PUNCT
  SPACE
This DET
accounted VERB
  SPACE
for ADP
37 NUM
percent NOUN
of ADP
the DET
total ADJ
expense NOUN
. PUNCT
  SPACE
The DET
patient ADJ
notification NOUN
  SPACE
and CCONJ
testing NOUN
were AUX
conducted VERB
while SCONJ
maintaining VERB
the DET
confidentiality NOUN
  SPACE
of ADP
the DET
orthopedic ADJ
surgeon NOUN
who PRON
was AUX
an DET
active ADJ
participant NOUN
in ADP
the DET
  SPACE
planning NOUN
and CCONJ
execution NOUN
of ADP
the DET
study NOUN
. PUNCT
  SPACE
Notifying VERB
patients NOUN
of ADP
the DET
  SPACE
infected VERB
surgeon NOUN
's PART
HIV PROPN
- PUNCT
status NOUN
is AUX
both CCONJ
disruptive ADJ
and CCONJ
expensive ADJ
  SPACE
and CCONJ
is AUX
not PART
routinely ADV
recommended VERB
, PUNCT
the DET
researchers NOUN
conclude VERB
. PUNCT
\ PUNCT
        SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
     SPACE
" PUNCT
Investigation PROPN
of ADP
Potential PROPN
HIV PROPN
Transmission PROPN
to ADP
the DET
Patients PROPN
of ADP
  SPACE
an DET
HIV PROPN
- PUNCT
Infected VERB
Surgeon PROPN
" PUNCT
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Association PROPN
( PUNCT
04/14/93 PROPN
) PUNCT
Vol PROPN
. PUNCT
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
38Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993269 NUM
, PUNCT
  SPACE
No NOUN
. PROPN
14 NUM
, PUNCT
P. PROPN
1795 NUM
  SPACE
( PUNCT
Smith PROPN
Rogers PROPN
, PUNCT
Audrey PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
The DET
risk NOUN
of ADP
HIV PROPN
transmission NOUN
during ADP
surgery NOUN
is AUX
so ADV
remote ADJ
that SCONJ
it PRON
  SPACE
will AUX
be AUX
quantified VERB
only ADV
by ADP
gathering VERB
data NOUN
from ADP
multiple ADJ
, PUNCT
  SPACE
methodologically ADV
similar ADJ
investigations NOUN
, PUNCT
writes VERB
Audrey PROPN
Smith PROPN
  SPACE
Rogers PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
Johns PROPN
Hopkins PROPN
University PROPN
School PROPN
of ADP
Medicine PROPN
  SPACE
in ADP
Baltimore PROPN
, PUNCT
Md. PROPN
  SPACE
The DET
researchers NOUN
identified VERB
a DET
total NOUN
of ADP
1,131 NUM
  SPACE
persons NOUN
in ADP
hospital NOUN
databases NOUN
who PRON
underwent VERB
invasive ADJ
surgical ADJ
  SPACE
procedures NOUN
between ADP
1984 NUM
and CCONJ
1990 NUM
and CCONJ
for ADP
whom PRON
the DET
HIV PROPN
- PUNCT
positive ADJ
  SPACE
surgeon NOUN
was AUX
listed VERB
as SCONJ
the DET
operating NOUN
surgeon NOUN
. PUNCT
  SPACE
The DET
AIDS PROPN
case NOUN
  SPACE
registries NOUN
were AUX
reviewed VERB
for ADP
all DET
patients NOUN
having VERB
undergone VERB
  SPACE
invasive ADJ
procedures NOUN
and CCONJ
death NOUN
certificates NOUN
were AUX
obtained VERB
. PUNCT
  SPACE
Among ADP
  SPACE
the DET
1,131 NUM
patients NOUN
, PUNCT
101 NUM
were AUX
dead ADJ
, PUNCT
119 NUM
had AUX
no DET
address NOUN
, PUNCT
413 NUM
had AUX
  SPACE
test NOUN
results NOUN
known VERB
, PUNCT
and CCONJ
498 NUM
did AUX
not PART
respond VERB
to ADP
the DET
questionnaire NOUN
. PUNCT
No DET
study NOUN
patient ADJ
name NOUN
was AUX
found VERB
in ADP
reported VERB
AIDS PROPN
case NOUN
registries VERB
. PUNCT
One NUM
newly ADV
detected VERB
, PUNCT
HIV PROPN
- PUNCT
positive ADJ
patient NOUN
was AUX
determined ADJ
to PART
have AUX
  SPACE
been AUX
most ADV
probably ADV
infected VERB
in ADP
1985 NUM
during ADP
a DET
transfusion NOUN
. PUNCT
  SPACE
There PRON
  SPACE
was AUX
no DET
HIV PROPN
transmission NOUN
in ADP
369 NUM
person NOUN
- PUNCT
hours NOUN
of ADP
surgical ADJ
exposure NOUN
, PUNCT
suggesting VERB
that SCONJ
HIV PROPN
transmission NOUN
to ADP
patients NOUN
is AUX
unlikely ADJ
to PART
occur VERB
more ADV
frequently ADV
than SCONJ
once ADV
per ADP
1000 NUM
person NOUN
- PUNCT
hours NOUN
of ADP
surgical ADJ
  SPACE
exposure NOUN
. PUNCT
  SPACE
The DET
researchers NOUN
determined VERB
there PRON
is AUX
no DET
evidence NOUN
to ADP
  SPACE
suggest VERB
that SCONJ
the DET
surgeon NOUN
failed VERB
to PART
adhere VERB
to ADP
standard ADJ
  SPACE
infection NOUN
- PUNCT
control NOUN
guidelines NOUN
; PUNCT
over ADP
50 NUM
percent NOUN
of ADP
the DET
patients NOUN
  SPACE
with ADP
invasive ADJ
procedures NOUN
chose VERB
to PART
be AUX
tested VERB
, PUNCT
and CCONJ
of ADP
those DET
whose PRON
  SPACE
results NOUN
were AUX
revealed VERB
, PUNCT
only ADV
one NUM
person NOUN
was AUX
found VERB
to PART
be AUX
infected VERB
  SPACE
with ADP
HIV PROPN
. PUNCT
  SPACE
The DET
study NOUN
patient NOUN
's PART
infection NOUN
was AUX
probably ADV
the DET
result NOUN
  SPACE
of ADP
a DET
tainted ADJ
blood NOUN
transfusion NOUN
received VERB
in ADP
1985 NUM
. PUNCT
  SPACE
As SCONJ
a DET
result NOUN
, PUNCT
  SPACE
there PRON
is AUX
no DET
evidence NOUN
that SCONJ
the DET
transmission NOUN
of ADP
HIV PROPN
from ADP
the DET
  SPACE
HIV PROPN
- PUNCT
positive ADJ
surgeon NOUN
to ADP
any DET
patient NOUN
transpired VERB
, PUNCT
the DET
researchers NOUN
  SPACE
conclude VERB
. PUNCT
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
                                SPACE
April PROPN
20 NUM
, PUNCT
1993 NUM
       SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
" PUNCT
Drug NOUN
Concerns PROPN
to PART
Share VERB
AIDS PROPN
Data PROPN
" PUNCT
New PROPN
York PROPN
Times PROPN
( PUNCT
04/20/93 PROPN
) PUNCT
, PUNCT
P. PROPN
C10 PROPN
  SPACE
( PUNCT
Kolata PROPN
, PUNCT
Gina PROPN
) PUNCT
      SPACE
A DET
total NOUN
of ADP
15 NUM
major ADJ
pharmaceutical ADJ
companies NOUN
have AUX
decided VERB
, PUNCT
in ADP
a DET
  SPACE
highly ADV
unusual ADJ
move NOUN
, PUNCT
to PART
share VERB
AIDS PROPN
drugs NOUN
and CCONJ
information NOUN
while SCONJ
  SPACE
the DET
drugs NOUN
are AUX
undergoing VERB
early ADJ
clinical ADJ
testing NOUN
. PUNCT
  SPACE
Dr. PROPN
Edward PROPN
  SPACE
Scolnick PROPN
, PUNCT
president NOUN
of ADP
the DET
Merck PROPN
Research PROPN
Laboratory PROPN
in ADP
Rahway PROPN
, PUNCT
  SPACE
N.J. PROPN
, PUNCT
arranged VERB
the DET
collaboration NOUN
. PUNCT
  SPACE
He PRON
said VERB
that SCONJ
cooperation NOUN
  SPACE
between ADP
companies NOUN
seemed VERB
increasingly ADV
significant ADJ
as SCONJ
it PRON
had AUX
  SPACE
become VERB
clear ADJ
that SCONJ
combinations NOUN
of ADP
drugs NOUN
were AUX
likely ADJ
to PART
be AUX
more ADJ
  SPACE
effective ADJ
in ADP
fighting VERB
HIV PROPN
than SCONJ
any DET
drug NOUN
used VERB
alone ADV
. PUNCT
  SPACE
The DET
  SPACE
researchers NOUN
are AUX
hopeful ADJ
that SCONJ
HIV PROPN
, PUNCT
when ADV
faced VERB
with ADP
a DET
combination NOUN
  SPACE
of ADP
several ADJ
drugs NOUN
requiring VERB
mutation NOUN
at ADP
different ADJ
sites NOUN
for ADP
  SPACE
resistance NOUN
to PART
develop VERB
, PUNCT
will AUX
be AUX
unable ADJ
to PART
evolve VERB
all DET
the DET
mutations NOUN
at ADP
the DET
same ADJ
time NOUN
. PUNCT
  SPACE
Therefore ADV
, PUNCT
several ADJ
drugs NOUN
taken VERB
together ADV
or CCONJ
one NUM
after ADP
the DET
other ADJ
could AUX
halt VERB
the DET
spread NOUN
of ADP
HIV PROPN
. PUNCT
  SPACE
Currently ADV
, PUNCT
the DET
  SPACE
drug NOUN
companies NOUN
do AUX
not PART
know VERB
what PRON
other ADJ
drugs NOUN
their PRON
competitors NOUN
are AUX
developing VERB
. PUNCT
  SPACE
The DET
new ADJ
agreement NOUN
allows VERB
companies NOUN
to PART
routinely ADV
  SPACE
exchange NOUN
animal PROPN
data NOUN
and CCONJ
safety NOUN
data NOUN
on ADP
new ADJ
AIDS PROPN
drugs NOUN
. PUNCT
  SPACE
" PUNCT
An DET
  SPACE
agreement NOUN
like SCONJ
this DET
will AUX
greatly ADV
facilitate VERB
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
39Volume PROPN
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993companies PROPN
' PART
ability NOUN
to PART
choose VERB
the DET
best ADJ
drug NOUN
combinations NOUN
much ADV
faster ADV
and CCONJ
in ADP
a DET
much ADV
more ADJ
  SPACE
efficient ADJ
way NOUN
, PUNCT
" PUNCT
said VERB
Scolnick PROPN
. PUNCT
  SPACE
He PRON
also ADV
said VERB
that SCONJ
the DET
  SPACE
collaboration NOUN
would AUX
not PART
violate VERB
antitrust ADJ
laws NOUN
. PUNCT
  SPACE
In ADP
creating VERB
the DET
  SPACE
agreement NOUN
, PUNCT
Merck PROPN
spoke VERB
frequently ADV
to ADP
members NOUN
of ADP
AIDS PROPN
advocacy NOUN
  SPACE
groups NOUN
, PUNCT
including VERB
ACT PROPN
- PUNCT
UP PROPN
. PUNCT
  SPACE
Dr. PROPN
Daniel PROPN
Hoth PROPN
, PUNCT
director NOUN
of ADP
the DET
  SPACE
division NOUN
on ADP
AIDS PROPN
at ADP
the DET
National PROPN
Institute PROPN
of ADP
Allergy PROPN
and CCONJ
  SPACE
Infectious PROPN
Disease PROPN
said VERB
, PUNCT
" PUNCT
We PRON
're AUX
delighted ADJ
to PART
see VERB
the DET
  SPACE
pharmaceutical NOUN
industry NOUN
take VERB
this DET
step NOUN
because SCONJ
we PRON
think VERB
that SCONJ
  SPACE
increasing VERB
the DET
information NOUN
flow NOUN
will AUX
likely ADV
accelerate VERB
the DET
  SPACE
discovery NOUN
of ADP
better ADJ
compounds NOUN
for ADP
AIDS PROPN
. PUNCT
" PUNCT
  SPACE
Related ADJ
Stories PROPN
: PUNCT
Wall PROPN
Street PROPN
Journal PROPN
( PUNCT
04/20 NUM
) PUNCT
P. NOUN
B1 PROPN
; PUNCT
Philadelphia PROPN
  SPACE
Inquirer PROPN
( PUNCT
04/20 NUM
) PUNCT
P. PROPN
A3 PROPN
; PUNCT
USA PROPN
Today PROPN
( PUNCT
04/20 NUM
) PUNCT
P. NOUN
1B NUM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
" PUNCT
The DET
Next PROPN
Step NOUN
in ADP
AIDS PROPN
Treatment PROPN
" PUNCT
Nature PROPN
( PUNCT
04/08/93 PUNCT
) PUNCT
Vol PROPN
. PROPN
362 NUM
, PUNCT
No NOUN
. NOUN
6420 NUM
, PUNCT
P. PROPN
493 NUM
  SPACE
( PUNCT
Maddox PROPN
, PUNCT
John PROPN
) PUNCT
      SPACE
Although SCONJ
AZT PROPN
was AUX
found VERB
to PART
be AUX
ineffective ADJ
in ADP
prolonging VERB
the DET
lives NOUN
  SPACE
of ADP
people NOUN
infected VERB
with ADP
HIV PROPN
, PUNCT
the DET
findings NOUN
do AUX
not PART
indicate VERB
that SCONJ
  SPACE
AZT PROPN
should AUX
not PART
be AUX
administered VERB
in ADP
people NOUN
with ADP
full ADV
- PUNCT
blown VERB
AIDS PROPN
, PUNCT
  SPACE
writes VERB
columnist NOUN
John PROPN
Maddox PROPN
. PUNCT
  SPACE
AZT PROPN
has AUX
been AUX
used VERB
in ADP
the DET
United PROPN
  SPACE
States PROPN
in ADP
asymptomatic ADJ
HIV PROPN
- PUNCT
positive ADJ
people NOUN
on ADP
the DET
basis NOUN
that SCONJ
  SPACE
administration NOUN
of ADP
the DET
drug NOUN
appeared VERB
to PART
abate VERB
the DET
decline NOUN
of ADP
  SPACE
T NOUN
- PUNCT
cell NOUN
counts NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
a DET
report NOUN
in ADP
the DET
Lancet PROPN
demonstrated VERB
that SCONJ
AZT PROPN
should AUX
not PART
be AUX
used VERB
early ADV
in ADP
the DET
course NOUN
of ADP
disease NOUN
. PUNCT
  SPACE
While SCONJ
the DET
CD4 PROPN
counts NOUN
of ADP
the DET
877 NUM
people NOUN
given VERB
AZT PROPN
were AUX
consistently ADV
greater ADJ
  SPACE
than SCONJ
those DET
of ADP
patients NOUN
receiving VERB
only ADJ
placebo NOUN
, PUNCT
the DET
first ADJ
three NUM
  SPACE
years NOUN
of ADP
follow NOUN
- PUNCT
up NOUN
have AUX
shown VERB
that SCONJ
the DET
proportions NOUN
of ADP
people NOUN
in ADP
  SPACE
the DET
two NUM
groups NOUN
progressing VERB
to PART
overt VERB
AIDS PROPN
or CCONJ
even ADV
to ADP
death NOUN
were AUX
  SPACE
not PART
significantly ADV
different ADJ
at ADP
roughly ADV
18 NUM
percent NOUN
. PUNCT
  SPACE
The DET
  SPACE
conclusions NOUN
are AUX
that SCONJ
AZT PROPN
is AUX
not PART
an DET
effective ADJ
AIDS PROPN
drug NOUN
in ADP
  SPACE
HIV PROPN
- PUNCT
infected VERB
individuals NOUN
, PUNCT
and CCONJ
that DET
CD4 PROPN
cell NOUN
count NOUN
may AUX
not PART
be AUX
a DET
  SPACE
reliable ADJ
proxy NOUN
for ADP
the DET
progression NOUN
to ADP
AIDS PROPN
in ADP
infected ADJ
people NOUN
. PUNCT
   SPACE
But CCONJ
nothing PRON
is AUX
implied VERB
by ADP
the DET
study NOUN
of ADP
the DET
utility NOUN
of ADP
AZT PROPN
in ADP
the DET
  SPACE
treatment NOUN
of ADP
those DET
in ADP
whom PRON
symptoms NOUN
have AUX
already ADV
appeared VERB
-- PUNCT
there PRON
  SPACE
is AUX
no DET
case NOUN
for ADP
abandoning VERB
that DET
treatment NOUN
, PUNCT
at ADP
least ADJ
on ADP
the DET
  SPACE
evidence NOUN
now ADV
available ADJ
. PUNCT
  SPACE
It PRON
is AUX
much ADV
more ADV
alarming ADJ
that SCONJ
the DET
CD4 PROPN
  SPACE
count NOUN
has AUX
proven VERB
to PART
be AUX
an DET
unreliable ADJ
mark NOUN
of ADP
the DET
efficacy NOUN
of ADP
drug NOUN
treatment NOUN
in ADP
HIV PROPN
infection NOUN
. PUNCT
  SPACE
AIDS PROPN
researchers NOUN
should AUX
acknowledge VERB
  SPACE
HIV PROPN
is AUX
alive ADJ
from ADP
the DET
beginning NOUN
of ADP
infection NOUN
and CCONJ
turn VERB
it PRON
into ADP
a DET
  SPACE
workable ADJ
assay CCONJ
of ADP
the DET
progress NOUN
of ADP
disease NOUN
. PUNCT
  SPACE
The DET
general ADJ
  SPACE
application NOUN
of ADP
such DET
an DET
assay NOUN
will AUX
probably ADV
in ADP
itself PRON
provide VERB
a DET
  SPACE
better ADJ
understanding NOUN
of ADP
the DET
pathogenesis NOUN
of ADP
AIDS PROPN
, PUNCT
concludes VERB
  SPACE
Maddox PROPN
. PUNCT
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
" PUNCT
Infective ADJ
and CCONJ
Anti ADJ
- ADJ
Infective ADJ
Properties NOUN
of ADP
Breastmilk PROPN
From ADP
  SPACE
HIV-1-Infected NUM
Women PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
914 NUM
   SPACE
( PUNCT
Van PROPN
de PROPN
Perre PROPN
, PUNCT
Philippe PROPN
et PROPN
al PROPN
. PROPN
) PUNCT
      SPACE
A DET
vaccine NOUN
preparation NOUN
inducing VERB
a DET
persistent ADJ
immune ADJ
response NOUN
of ADP
  SPACE
the DET
IgM PROPN
type NOUN
in ADP
the DET
mother NOUN
's PART
body NOUN
fluids NOUN
could AUX
be AUX
valuable ADJ
to PART
  SPACE
prevent VERB
transmission NOUN
of ADP
HIV-1 PROPN
from ADP
mother NOUN
to ADP
child NOUN
, PUNCT
write VERB
  SPACE
Philippe PROPN
Van PROPN
de PROPN
Perre PROPN
et PROPN
al PROPN
. PROPN
of ADP
the DET
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
40Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993National ADJ
AIDS PROPN
Control PROPN
Program PROPN
in ADP
Kigali PROPN
, PUNCT
Rwanda PROPN
. PUNCT
  SPACE
The DET
researchers NOUN
hypothesized VERB
that SCONJ
  SPACE
transmission NOUN
of ADP
HIV-1 PROPN
through ADP
breastmilk NOUN
could AUX
be AUX
favored VERB
by ADP
the DET
  SPACE
presence NOUN
of ADP
infected ADJ
cells NOUN
, PUNCT
by ADP
deficiency NOUN
of ADP
anti ADJ
- ADJ
infective ADJ
  SPACE
substances NOUN
in ADP
breastmilk NOUN
, PUNCT
or CCONJ
both DET
factors NOUN
. PUNCT
  SPACE
A DET
total NOUN
of ADP
215 NUM
  SPACE
HIV-1-infected VERB
women NOUN
were AUX
enrolled VERB
at ADP
delivery NOUN
in ADP
Kigali PROPN
, PUNCT
Rwanda PROPN
; PUNCT
milk NOUN
samples NOUN
were AUX
collected VERB
15 NUM
days NOUN
, PUNCT
6 NUM
months NOUN
, PUNCT
and CCONJ
18 NUM
months NOUN
post VERB
partum NOUN
. PUNCT
  SPACE
HIV-1 PROPN
IgG PROPN
, PUNCT
secretory NOUN
IgA PROPN
, PUNCT
and CCONJ
IgM PROPN
were AUX
assayed VERB
by ADP
  SPACE
western ADJ
blot PROPN
, PUNCT
for ADP
the DET
latter ADJ
two NUM
after ADP
removal NOUN
of ADP
IgG NOUN
with ADP
  SPACE
protein NOUN
G. PROPN
  SPACE
In ADP
the DET
15-day NUM
and CCONJ
6-month NUM
samples NOUN
, PUNCT
the DET
researchers NOUN
  SPACE
sought VERB
viral ADJ
genome NOUN
in ADP
milk NOUN
cells NOUN
by ADP
double ADJ
polymerase NOUN
chain NOUN
  SPACE
reaction NOUN
with ADP
three NUM
sets NOUN
of ADP
primers NOUN
( PUNCT
gag NOUN
, PUNCT
pol NOUN
, PUNCT
and CCONJ
env NOUN
) PUNCT
. PUNCT
  SPACE
At ADP
15 NUM
  SPACE
days NOUN
, PUNCT
6 NUM
months NOUN
, PUNCT
and CCONJ
18 NUM
months NOUN
post NOUN
partum NOUN
, PUNCT
HIV-1 PROPN
specific ADJ
IgG NOUN
was AUX
detected VERB
in ADP
95 NUM
percent NOUN
, PUNCT
98 NUM
percent NOUN
, PUNCT
and CCONJ
97 NUM
percent NOUN
of ADP
breastmilk NOUN
  SPACE
samples NOUN
; PUNCT
IgA PROPN
in ADP
23 NUM
percent NOUN
, PUNCT
28 NUM
percent NOUN
, PUNCT
and CCONJ
41 NUM
percent NOUN
; PUNCT
and CCONJ
IgM PROPN
  SPACE
in ADP
66 NUM
percent NOUN
, PUNCT
78 NUM
percent NOUN
, PUNCT
and CCONJ
41 NUM
percent NOUN
. PUNCT
  SPACE
In ADP
children NOUN
who PRON
  SPACE
survived VERB
longer ADJ
than SCONJ
18 NUM
months NOUN
the DET
risk NOUN
of ADP
infection NOUN
was AUX
  SPACE
associated VERB
with ADP
lack NOUN
of ADP
persistence NOUN
of ADP
IgM PROPN
and CCONJ
IgA PROPN
in ADP
their PRON
  SPACE
mothers NOUN
' PART
milk NOUN
. PUNCT
  SPACE
The DET
presence NOUN
of ADP
HIV-1-infected ADJ
cells NOUN
in ADP
the DET
milk NOUN
  SPACE
15 NUM
days NOUN
post NOUN
partum NOUN
was AUX
strongly ADV
predictive ADJ
of ADP
HIV-1 PROPN
infection NOUN
in ADP
the DET
child NOUN
by ADP
both CCONJ
univariate ADJ
and CCONJ
multivariate VERB
analysis NOUN
. PUNCT
  SPACE
The DET
  SPACE
combination NOUN
of ADP
HIV-1 PROPN
infected ADJ
cells NOUN
in ADP
breastmilk NOUN
and CCONJ
a DET
defective ADJ
IgM PROPN
response NOUN
was AUX
the DET
strongest ADJ
predictor NOUN
of ADP
infection NOUN
. PUNCT
  SPACE
IgM PROPN
and CCONJ
  SPACE
IgA PROPN
anti PROPN
- ADJ
HIV-1 PROPN
in ADP
breastmilk NOUN
may AUX
protect VERB
against ADP
postnatal NOUN
  SPACE
transmission NOUN
of ADP
HIV PROPN
, PUNCT
the DET
researchers NOUN
conclude VERB
. PUNCT
       SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
                                    SPACE
April PROPN
21 NUM
, PUNCT
1993 NUM
       SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Firms NOUN
to PART
Share VERB
AIDS PROPN
Research PROPN
in ADP
Global PROPN
Venture PROPN
" PUNCT
Journal PROPN
of ADP
Commerce PROPN
( PUNCT
04/21/93 PROPN
) PUNCT
, PUNCT
P. PROPN
7A NOUN
      SPACE
A DET
total NOUN
of ADP
fifteen NUM
U.S. PROPN
and CCONJ
European ADJ
pharmaceutical ADJ
companies NOUN
  SPACE
announced VERB
Tuesday PROPN
they PRON
will AUX
swap VERB
drug NOUN
supplies NOUN
and CCONJ
information NOUN
on ADP
early ADJ
- PUNCT
stage NOUN
AIDS PROPN
research NOUN
to PART
hasten VERB
the DET
search NOUN
for ADP
combination NOUN
  SPACE
therapies NOUN
to PART
fight VERB
HIV PROPN
infection NOUN
and CCONJ
AIDS PROPN
. PUNCT
  SPACE
The DET
companies NOUN
said VERB
  SPACE
the DET
unusual ADJ
move NOUN
resulted VERB
primarily ADV
from ADP
the DET
increasing VERB
  SPACE
concentration NOUN
of ADP
AIDS PROPN
research NOUN
on ADP
combination NOUN
therapies NOUN
since SCONJ
  SPACE
realizing VERB
that SCONJ
HIV PROPN
is AUX
likely ADJ
to PART
develop VERB
resistance NOUN
to ADP
every DET
  SPACE
individual ADJ
AIDS PROPN
drug NOUN
. PUNCT
  SPACE
Edward PROPN
Scolnick PROPN
, PUNCT
president NOUN
of ADP
Merck PROPN
& CCONJ
Co. PROPN
  SPACE
Research PROPN
Laboratories PROPN
, PUNCT
led VERB
the DET
collaborative ADJ
effort NOUN
that PRON
took VERB
a DET
  SPACE
year NOUN
of ADP
negotiations NOUN
to PART
come VERB
together ADV
, PUNCT
said VERB
participants NOUN
. PUNCT
  SPACE
In ADP
  SPACE
addition NOUN
to ADP
Merck PROPN
, PUNCT
the DET
other ADJ
companies NOUN
involved VERB
in ADP
the DET
  SPACE
Inter PROPN
- PUNCT
Company PROPN
Collaboration PROPN
for ADP
AIDS PROPN
Drug PROPN
Development PROPN
are AUX
  SPACE
Bristol PROPN
- PUNCT
Myers PROPN
Squibb PROPN
Co. PROPN
, PUNCT
Burroughs PROPN
Wellcome PROPN
, PUNCT
Glaxo PROPN
Inc. PROPN
, PUNCT
  SPACE
Hoffman PROPN
- PUNCT
La PROPN
Roche PROPN
, PUNCT
Eli PROPN
Lilly PROPN
& CCONJ
Co. PROPN
, PUNCT
Pfizer PROPN
Inc. PROPN
, PUNCT
Smithkline PROPN
  SPACE
Beecham PROPN
, PUNCT
AB PROPN
Astra PROPN
, PUNCT
Du PROPN
Pont PROPN
Merck PROPN
, PUNCT
Syntex PROPN
Inc. PROPN
, PUNCT
Boehringer PROPN
  SPACE
Ingelheim PROPN
, PUNCT
Miles PROPN
Inc. PROPN
, PUNCT
and CCONJ
Sigma PROPN
- PUNCT
Tau PROPN
. PUNCT
  SPACE
The DET
participants NOUN
said VERB
that SCONJ
all DET
companies NOUN
involved VERB
in ADP
AIDS PROPN
drug NOUN
development NOUN
they PRON
were AUX
aware ADJ
  SPACE
of ADP
had AUX
joined VERB
the DET
collaboration NOUN
, PUNCT
and CCONJ
that SCONJ
any DET
company NOUN
actively ADV
  SPACE
involved VERB
in ADP
HIV PROPN
anti ADJ
- ADJ
viral ADJ
development NOUN
may AUX
participate VERB
. PUNCT
  SPACE
Scolnick PROPN
said VERB
the DET
collaborators NOUN
would AUX
most ADV
likely ADV
meet VERB
every DET
couple NOUN
of ADP
  SPACE
months NOUN
for ADP
a DET
daylong ADJ
scientific ADJ
meeting NOUN
where ADV
they PRON
will AUX
review VERB
  SPACE
for ADP
one NUM
another DET
their PRON
preclinical ADJ
HICNet PROPN
Medical PROPN
Newsletter PROPN
                                              SPACE
Page PROPN
41Volume NUM
  SPACE
6 NUM
, PUNCT
Number NOUN
11 NUM
                                           SPACE
April PROPN
25 NUM
, PUNCT
1993and NUM
early ADJ
clinical ADJ
data NOUN
. PUNCT
  SPACE
The DET
  SPACE
American PROPN
Foundation PROPN
for ADP
AIDS PROPN
Research PROPN
( PUNCT
AmFAR PROPN
) PUNCT
was AUX
pleased ADJ
with ADP
  SPACE
the DET
news NOUN
of ADP
the DET
collaboration NOUN
, PUNCT
which PRON
it PRON
hopes VERB
will AUX
lead VERB
to ADP
the DET
  SPACE
development NOUN
of ADP
drug NOUN
combinations NOUN
that PRON
will AUX
reduce VERB
viral ADJ
  SPACE
resistance NOUN
. PUNCT
   SPACE
Related PROPN
Story PROPN
: PUNCT
Financial PROPN
Times PROPN
( PUNCT
04/21 NUM
) PUNCT
P. NOUN
1 NUM
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= SYM
    SPACE
" PUNCT
Guidance PROPN
Over ADP
HIV PROPN
- PUNCT
Infected VERB
Health PROPN
- PUNCT
Care PROPN
Workers PROPN
" PUNCT
Lancet PROPN
( PUNCT
04/10/93 PROPN
) PUNCT
Vol PROPN
. PROPN
341 NUM
, PUNCT
No NOUN
. NOUN
8850 NUM
, PUNCT
P. PROPN
952 NUM
  SPACE
( PUNCT
Horton PROPN
, PUNCT
Richard PROPN
) PUNCT
      SPACE
The DET
United PROPN
Kingdom PROPN
's PART
Department PROPN
of ADP
Health PROPN
recently ADV
followed VERB
the DET
  SPACE
advice NOUN
of ADP
AIDS PROPN
experts NOUN
that SCONJ
there PRON
is AUX
no DET
scientific ADJ
reason NOUN
for ADP
  SPACE
routine ADJ
HIV PROPN
testing VERB
among ADP
health NOUN
- PUNCT
care NOUN
workers NOUN
. PUNCT
  SPACE
Following VERB
recent ADJ
  SPACE
highly ADV
publicized VERB
reports NOUN
of ADP
health NOUN
professionals NOUN
who PRON
contracted VERB
  SPACE
HIV PROPN
, PUNCT
the DET
department NOUN
issued VERB
revised VERB
guidelines NOUN
on ADP
the DET
management NOUN
  SPACE
of ADP
such ADJ
cases NOUN
. PUNCT
  SPACE
Dr. PROPN
Kenneth PROPN
Calman PROPN
, PUNCT
Chief PROPN
Medical PROPN
Officer PROPN
, PUNCT
said VERB
  SPACE
doctors NOUN
, PUNCT
dentists NOUN
, PUNCT
nurses NOUN
, PUNCT
and CCONJ
other ADJ
health NOUN
- PUNCT
care NOUN
workers NOUN
have AUX
an DET
  SPACE
ethical ADJ
duty NOUN
to PART
seek VERB
advice NOUN
if SCONJ
they PRON
have AUX
been AUX
exposed VERB
to ADP
HIV PROPN
  SPACE
infection NOUN
, PUNCT
including VERB
, PUNCT
if SCONJ
appropriate ADJ
, PUNCT
diagnostic ADJ
HIV PROPN
testing NOUN
. PUNCT
  SPACE
He PRON
said VERB
, PUNCT
" PUNCT
Infected ADJ
health NOUN
care NOUN
workers NOUN
should AUX
not PART
perform VERB
invasive ADJ
  SPACE
procedures NOUN
that PRON
carry VERB
even ADV
a DET
remote ADJ
risk NOUN
of ADP
exposing VERB
patients NOUN
to ADP
  SPACE
the DET
virus NOUN
. PUNCT
" PUNCT
  SPACE
The DET
guidelines NOUN
--------- PUNCT
end NOUN
of ADP
part NOUN
3 NUM
--------------- PUNCT
      SPACE
Internet NOUN
: PUNCT
david@stat.com X
                  SPACE
FAX PROPN
: PUNCT
+1 PROPN
( PUNCT
602 NUM
) PUNCT
451 NUM
- SYM
1165 NUM
      SPACE
Bitnet PROPN
: PUNCT
ATW1H@ASUACAD PROPN
                     SPACE
FidoNet= NOUN
> X
1:114/15 NUM
                SPACE
Amateur PROPN
Packet PROPN
ax25 PROPN
: PUNCT
wb7tpy@wb7tpy.az.usa.naNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59287From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
FREQUENT PROPN
NOSEBLEEDSA NOUN
> X
  SPACE
From ADP
some DET
of ADP
the DET
replies NOUN
to ADP
my PRON
original ADJ
posting NOUN
, PUNCT
it PRON
's AUX
evident ADJ
that SCONJ
someA PROPN
> X
  SPACE
people NOUN
do AUX
not PART
secrete VERB
enough ADJ
mucous ADJ
to PART
keep VERB
their PRON
nose NOUN
lining NOUN
protected VERB
            SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
             SPACE
Include VERB
small ADJ
amounts NOUN
of ADP
hot ADJ
, PUNCT
spicy ADJ
foods NOUN
with ADP
your PRON
meals NOUN
. PUNCT
It PRON
's AUX
not PART
a DET
cure NOUN
, PUNCT
but CCONJ
many ADJ
people NOUN
find VERB
it PRON
helpful ADJ
to PART
create VERB
extra ADJ
mucus NOUN
. PUNCT
You PRON
may AUX
also ADV
consider VERB
taking VERB
a DET
few ADJ
drops NOUN
of ADP
iodine NOUN
in ADP
juice NOUN
or CCONJ
water NOUN
  SPACE
( PUNCT
consult VERB
your PRON
doctor NOUN
first ADV
! PUNCT
) PUNCT
, PUNCT
which PRON
is AUX
available ADJ
OTC PROPN
in ADP
Canada PROPN
. PUNCT
If SCONJ
you PRON
have AUX
a DET
sedentary ADJ
lifestyle NOUN
, PUNCT
exercising VERB
sometimes ADV
helps VERB
. PUNCT
A DET
> X
  SPACE
from ADP
environmental ADJ
influences NOUN
( PUNCT
ie X
, PUNCT
dry ADJ
air NOUN
) PUNCT
. PUNCT
But CCONJ
I PRON
've AUX
had VERB
no DET
responsesA PROPN
> X
  SPACE
from ADP
anyone PRON
with ADP
experience NOUN
with ADP
Rutin PROPN
. PUNCT
Is AUX
there PRON
another DET
newsgroup NOUN
that PRON
                      SPACE
^^^^^^^^^^^^^^^^^^^^^A NOUN
> X
  SPACE
might AUX
have AUX
specifics NOUN
on ADP
herbal ADJ
remedies?A PROPN
> X
A DET
> X
  SPACE
Robert PROPN
Allison PROPN
I PRON
tried VERB
to ADP
e NOUN
- NOUN
mail VERB
you PRON
, PUNCT
but CCONJ
our PRON
board NOUN
is AUX
having VERB
internet NOUN
problems NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
not PART
sure ADJ
whether SCONJ
you PRON
got VERB
the DET
information NOUN
on ADP
rutin PROPN
or CCONJ
not PART
. PUNCT
  SPACE
Rutin PROPN
is AUX
NOT ADV
a DET
herb NOUN
, PUNCT
but CCONJ
part NOUN
of ADP
the DET
bioflavonoid NOUN
complex NOUN
. PUNCT
You PRON
should AUX
generally ADV
* PUNCT
not PART
* PUNCT
take VERB
rutin NOUN
by ADP
itself PRON
, PUNCT
but CCONJ
take VERB
the DET
whole ADJ
bioflavonoid NOUN
  SPACE
complex NOUN
instead ADV
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
( PUNCT
and CCONJ
there PRON
are AUX
some DET
exceptions NOUN
to ADP
that DET
) PUNCT
you PRON
'll AUX
eventually ADV
create VERB
a DET
hesperidin PROPN
deficiency NOUN
, PUNCT
which PRON
is AUX
the DET
other ADJ
major ADJ
component NOUN
of ADP
the DET
bioflavonoid NOUN
complex NOUN
. PUNCT
I PRON
found VERB
out ADP
the DET
hard ADJ
way NOUN
years NOUN
ago ADV
when ADV
I PRON
recommended VERB
rutin NOUN
, PUNCT
after ADP
it PRON
showed VERB
deficient ADJ
in ADP
patients NOUN
who PRON
were AUX
NOT ADV
deficient ADJ
in ADP
hesperidin PROPN
be- PROPN
fore PROPN
. PUNCT
A DET
later ADV
retest NOUN
almost ADV
always ADV
showed VERB
a DET
subsequent ADJ
deficiency NOUN
in ADP
  SPACE
hesperidin PROPN
, PUNCT
which PRON
, PUNCT
from ADP
then ADV
on ADV
, PUNCT
made VERB
me PRON
always ADV
* PUNCT
add VERB
* PUNCT
bioflavonoids NOUN
  SPACE
to ADP
anyone PRON
that PRON
had AUX
* PUNCT
very ADV
* PUNCT
low ADJ
levels NOUN
of ADP
rutin NOUN
. PUNCT
Most ADJ
of ADP
the DET
time NOUN
people NOUN
are AUX
equally ADV
low ADJ
in ADP
rutin PROPN
* PUNCT
and CCONJ
* PUNCT
hesperidin PROPN
, PUNCT
so CCONJ
there PRON
is AUX
really ADV
no DET
reason NOUN
to PART
take VERB
rutin PROPN
by ADP
itself PRON
, PUNCT
but CCONJ
use VERB
the DET
whole ADJ
bioflavonoid NOUN
complex NOUN
instead ADV
. PUNCT
I PRON
have AUX
several ADJ
thousand NUM
patients NOUN
taking VERB
them PRON
with ADP
many ADJ
claiming VERB
that SCONJ
  SPACE
they PRON
had AUX
been AUX
helped VERB
with ADP
hemorrhoids NOUN
, PUNCT
varicose VERB
veins NOUN
, PUNCT
chronic ADJ
nose NOUN
  SPACE
bleeds NOUN
, PUNCT
aneurysms NOUN
, PUNCT
gastro PROPN
- PUNCT
intestinal ADJ
bleeding NOUN
( PUNCT
due ADP
to ADP
drugs NOUN
) PUNCT
, PUNCT
etc X
... PUNCT
One NUM
patient NOUN
in ADP
desperation NOUN
took VERB
a DET
whole ADJ
bottle NOUN
( PUNCT
100 NUM
's PART
) PUNCT
in ADP
one NUM
day NOUN
for ADP
his PRON
painful ADJ
, PUNCT
bleeding VERB
hemorrhoids NOUN
, PUNCT
without ADP
any DET
ill ADJ
effects NOUN
. PUNCT
   SPACE
They PRON
are AUX
also ADV
non ADJ
- ADJ
toxic ADJ
in ADP
very ADV
high ADJ
amounts NOUN
, PUNCT
that DET
's AUX
why ADV
they PRON
can AUX
be AUX
safely ADV
recommended VERB
. PUNCT
If SCONJ
you PRON
are AUX
allergic ADJ
to PART
citrus VERB
fruit NOUN
( PUNCT
they PRON
are AUX
made VERB
from ADP
their PRON
peels NOUN
) PUNCT
, PUNCT
pine NOUN
bark NOUN
sources NOUN
are AUX
available ADJ
as ADV
well ADV
. PUNCT
About ADV
90 NUM
% NOUN
of ADP
patients NOUN
tested VERB
show VERB
a DET
bioflavonoid NOUN
deficiency NOUN
, PUNCT
  SPACE
with ADP
the DET
average ADJ
daily ADJ
dosage NOUN
needed VERB
being AUX
about ADV
1 NUM
- SYM
2,000 NUM
mg NOUN
. PUNCT
For ADP
major ADJ
complaints NOUN
, PUNCT
4 NUM
- SYM
6,000mg+/day NOUN
is AUX
common ADJ
. PUNCT
  SPACE
In ADP
case NOUN
they PRON
can AUX
not PART
be AUX
taken VERB
, PUNCT
because SCONJ
of ADP
their PRON
size NOUN
and CCONJ
taste NOUN
( PUNCT
they PRON
are AUX
big ADJ
, PUNCT
and CCONJ
they PRON
do AUX
n't PART
taste VERB
that DET
great ADJ
) PUNCT
, PUNCT
a DET
product NOUN
made VERB
from ADP
pine PROPN
  SPACE
bark PROPN
extract PROPN
gives VERB
you PRON
the DET
same ADJ
effect NOUN
and CCONJ
the DET
tablets NOUN
are AUX
quite ADV
small ADJ
and CCONJ
taste VERB
much ADV
better ADV
, PUNCT
however ADV
the DET
cost NOUN
is AUX
about ADV
seven NUM
times NOUN
higher ADJ
for ADP
the DET
equivalent ADJ
effect NOUN
. PUNCT
One NUM
25 NUM
mg PROPN
tablet NOUN
of ADP
the DET
pine PROPN
bark NOUN
extract NOUN
gives VERB
you PRON
about ADP
the DET
same ADJ
effect NOUN
as SCONJ
1,000 NUM
mg NOUN
of ADP
bioflavonoids NOUN
. PUNCT
The DET
name NOUN
for ADP
the DET
pine ADJ
bark NOUN
product NOUN
is AUX
' PUNCT
Pycnogenol PROPN
. PUNCT
' PUNCT
     SPACE
Some DET
Canadian PROPN
brands NOUN
carrying VERB
bioflavonoids NOUN
are AUX
: PUNCT
    SPACE
Quest PROPN
............. PUNCT
1,000 NUM
mg PROPN
   SPACE
big ADJ
, PUNCT
bitter ADJ
, PUNCT
not PART
chewable ADJ
   SPACE
Swiss PROPN
Herbal PROPN
........ PUNCT
600 NUM
mg PROPN
   SPACE
smooth PROPN
, PUNCT
easier ADJ
swallowing NOUN
    SPACE
Jamieson PROPN
............ PUNCT
500 NUM
mg PROPN
   SPACE
medium NOUN
, PUNCT
bitter ADJ
, PUNCT
chewable ADJ
    SPACE
SISU NOUN
................. PUNCT
25 NUM
mg NOUN
   SPACE
( PUNCT
Pycnogenol PROPN
) PUNCT
small ADJ
, PUNCT
easy ADJ
swallowing NOUN
    SPACE
Give VERB
them PRON
a DET
try NOUN
and CCONJ
see VERB
what PRON
happens VERB
..... PUNCT
and CCONJ
good ADJ
luck NOUN
! PUNCT
   SPACE
-- PUNCT
Ron PROPN
Roth PROPN
-- PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
-- PUNCT
  SPACE
Internet NOUN
: PUNCT
rn.3228@rose.com PROPN
  SPACE
- PUNCT
  SPACE
Rosenet PROPN
: PUNCT
ron PROPN
roth@rosehamilton PROPN
  SPACE
-- PUNCT
* PUNCT
   SPACE
" PUNCT
Eating PROPN
Radium PROPN
has AUX
strange ADJ
results NOUN
, PUNCT
" PUNCT
  SPACE
Tom PROPN
said VERB
brightly.--- PROPN
   SPACE
RoseReader PROPN
2.10 NUM
  SPACE
P003228 PROPN
Entered VERB
at ADP
[ PUNCT
ROSEHAMILTON NOUN
] PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59288From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes::When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident NOUN
: PUNCT
in ADP
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having VERB
: PUNCT
sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm NOUN
: PUNCT
cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.::Was PROPN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually ADV
: PUNCT
occur?Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
forpregnancy NOUN
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
alsoartificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of"natural PUNCT
" PUNCT
acts NOUN
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen PROPN
isdeposited VERB
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that'sabout ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talkto PROPN
your PRON
biology NOUN
teacher.-- ADP
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59289From NUM
: PUNCT
ipj@unix.brighton.ac.uk ADJ
( PUNCT
( PUNCT
( PUNCT
Fleg PROPN
Software PROPN
) PUNCT
) PUNCT
) PUNCT
Subject NOUN
: PUNCT
Artificial PROPN
Intelligence PROPN
in ADP
MedicineIf PROPN
you PRON
have AUX
any DET
information NOUN
on ADP
artificial ADJ
intelligence NOUN
in ADP
medicine NOUN
, PUNCT
then ADV
Iwould AUX
appreciate VERB
it PRON
if SCONJ
you PRON
could AUX
mail VERB
me PRON
with ADP
whatever PRON
it PRON
is AUX
. PUNCT
The DET
informationsis NOUN
needed VERB
for ADP
a DET
project NOUN
. PUNCT
Thank VERB
you PRON
, PUNCT
Ian.-- PROPN
.____________________________________________________________________________.| PUNCT
  SPACE
Ian PROPN
Jukes PROPN
BSc VERB
. PUNCT
Computer NOUN
Science PROPN
( PUNCT
Hons PROPN
) PUNCT
Year NOUN
2 NUM
The DET
University PROPN
of ADP
Brighton PROPN
  SPACE
|| PROPN
           SPACE
janet PROPN
e NOUN
- NOUN
mail NOUN
: PUNCT
ipj@uk.ac.bton.unix PROPN
, PUNCT
ipj@uk.ac.bton.vms PROPN
           SPACE
|`----------------------------------------------------------------------------'Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59290From NUM
: PUNCT
< X
RFM@psuvm.psu.edu>Subject VERB
: PUNCT
Sleep NOUN
in ADP
hospitals NOUN
( PUNCT
WAS PROPN
Re PROPN
: PUNCT
EUse PROPN
of ADP
haldol PROPN
in ADP
elderlyIn PROPN
article NOUN
< X
YfqmleK00iV185Co5L@andrew.cmu.edu PROPN
> X
, PUNCT
you PRON
say VERB
: PUNCT
> X
I PRON
've AUX
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented ADJ
and CCONJ
> X
demented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
  SPACE
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
were AUX
> X
definitely ADV
involved VERB
. PUNCT
Speaking VERB
from ADP
experience NOUN
, PUNCT
one PRON
does AUX
n't PART
need VERB
drugs NOUN
to PART
become VERB
disorientedduring VERB
hospital NOUN
stays NOUN
. PUNCT
I PRON
was AUX
in ADP
hosp NOUN
for ADP
5 NUM
days NOUN
in ADP
late ADJ
Jan PROPN
; PUNCT
what PRON
withgeneral ADJ
noise NOUN
at ADP
all DET
hours NOUN
of ADP
night NOUN
, PUNCT
staff NOUN
coming VERB
every DET
time NOUN
I PRON
turned VERB
over ADP
, PUNCT
or CCONJ
whatever PRON
, PUNCT
to PART
check VERB
me PRON
out ADP
, PUNCT
I PRON
did AUX
n't PART
get AUX
much ADV
sustained ADJ
sleep NOUN
at ADP
night NOUN
. PUNCT
Spent VERB
days NOUN
groggy PROPN
& CCONJ
dozing PROPN
, PUNCT
and CCONJ
all DET
it PRON
was AUX
from ADP
my PRON
perspective NOUN
was AUX
that SCONJ
Iwas PROPN
TIRED PROPN
! PUNCT
   SPACE
BobM PROPN
- PUNCT
Let PROPN
's PART
* PUNCT
REINVENT NOUN
* PUNCT
hospital NOUN
organization!sNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59291Subject NUM
: PUNCT
Re ADP
: PUNCT
Localized VERB
fat ADJ
reduction NOUN
due ADP
to ADP
exercise NOUN
( PUNCT
questionFrom VERB
: PUNCT
RGINZBERG@eagle.wesleyan.edu NUM
( PUNCT
Ruth PROPN
Ginzberg)In PROPN
< X
1993Apr25.203223.28534@mnemosyne.cs.du.edu NUM
> X
hchung@nyx.cs.du.edu PROPN
writes VERB
: PUNCT
> X
I PRON
was AUX
just ADV
wondering VERB
if SCONJ
exercises NOUN
specific ADJ
to ADP
particular ADJ
regions NOUN
of ADP
the DET
> X
body NOUN
( PUNCT
such ADJ
as SCONJ
thighs NOUN
) PUNCT
will AUX
basically ADV
only ADV
tone VERB
the DET
thighs NOUN
, PUNCT
or CCONJ
if SCONJ
fat NOUN
> X
from ADP
other ADJ
parts NOUN
of ADP
the DET
body NOUN
( PUNCT
such ADJ
as SCONJ
breasts NOUN
) PUNCT
would AUX
be AUX
affected VERB
just ADV
as SCONJ
> X
much ADJ
. PUNCT
There PRON
are AUX
two NUM
different ADJ
mechanisms NOUN
here ADV
: PUNCT
  SPACE
toning VERB
of ADP
muscles NOUN
and CCONJ
reduction NOUN
offat NOUN
. PUNCT
  SPACE
Exercises NOUN
specific ADJ
to ADP
particular ADJ
muscles NOUN
will AUX
tone VERB
only ADV
those DET
musclesexercised VERB
( PUNCT
example NOUN
: PUNCT
look VERB
at ADP
differences NOUN
in ADP
arm NOUN
circumferences NOUN
between ADP
pitchingarms NOUN
and CCONJ
non ADJ
- ADJ
pitching ADJ
arms NOUN
in ADP
major ADJ
league NOUN
pitchers NOUN
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
if SCONJ
exercisealso NOUN
leads VERB
to ADP
reduction NOUN
of ADP
body NOUN
fat NOUN
, PUNCT
the DET
loss NOUN
of ADP
body NOUN
fat NOUN
will AUX
be AUX
equallydistributed VERB
over ADP
the DET
entire ADJ
body NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
way NOUN
to PART
" PUNCT
spot NOUN
reduce VERB
" PUNCT
body NOUN
fatother NOUN
than SCONJ
surgically ADV
, PUNCT
through ADP
liposuction NOUN
. PUNCT
Distribution NOUN
of ADP
body NOUN
fat NOUN
isgenetically ADV
determined ADJ
. PUNCT
  SPACE
Sometimes ADV
a DET
very ADV
flabby ADJ
muscle NOUN
will AUX
look VERB
like SCONJ
" PUNCT
fat",so PROPN
when ADV
that DET
muscle NOUN
gains VERB
some DET
muscle NOUN
tone NOUN
it PRON
may AUX
* PUNCT
appear VERB
* PUNCT
as SCONJ
though SCONJ
the DET
" PUNCT
fat"is PROPN
" PUNCT
changing VERB
" PUNCT
into ADP
" PUNCT
muscle NOUN
" PUNCT
, PUNCT
but CCONJ
really ADV
fat ADJ
and CCONJ
muscle NOUN
tissues NOUN
are AUX
totallyseparate ADJ
, PUNCT
and CCONJ
one PRON
does AUX
not PART
ever ADV
" PUNCT
change VERB
into ADP
" PUNCT
the DET
other.------------------------Ruth ADJ
Ginzberg PROPN
< X
rginzberg@eagle.wesleyan.edu>Philosophy NOUN
Department;Wesleyan PROPN
University;USANewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59292From NUM
: PUNCT
gpivar@maestro.mitre.org PROPN
( PUNCT
Greg PROPN
Pivarnik)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:| PROPN
> X
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:| PROPN
> X
| ADP
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
| ADP
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow| NOUN
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking| NOUN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus ADJ
for| PROPN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly| ADJ
> X
> X
appreciated.| NOUN
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
| PROPN
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.| PROPN
> X
| ADV
> X
Bill PROPN
from ADP
oz| ADP
> X
Bill PROPN
, PUNCT
No DET
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilianphotography PROPN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple ADJ
, PUNCT
it PRON
takes VERB
pictures NOUN
of ADP
your PRON
aura.| PROPN
> X
-- PUNCT
Greg NOUN
-- PUNCT
  SPACE
Be AUX
still ADV
, PUNCT
be AUX
silent ADJ
... PUNCT
the DET
rest NOUN
is AUX
easy ADJ
. PUNCT
  SPACE
--Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59293From NUM
: PUNCT
dh@fncrd6.fnal.gov PROPN
( PUNCT
don PROPN
husby)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyPoor PROPN
person NOUN
's PART
Kirlian PROPN
Photography PROPN
( PUNCT
try VERB
this DET
at ADP
home)1 PROPN
. PUNCT
Hold VERB
your PRON
hand NOUN
up ADP
to ADP
a DET
cold ADJ
window.2 NOUN
. PUNCT
Look VERB
closely ADV
at ADP
the DET
stunning ADJ
corona ADJ
effects NOUN
around ADP
   SPACE
your PRON
fingertips.3 NOUN
. PUNCT
Remove PROPN
hand NOUN
( PUNCT
from ADP
window NOUN
) PUNCT
and CCONJ
observe VERB
after ADP
image NOUN
. PUNCT
  SPACE
4 NUM
. PUNCT
Invent ADJ
crackpot NOUN
theory NOUN
to PART
explain VERB
the DET
effect NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59294From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr23.180430.1@vms.ocom.okstate.edu NOUN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>I INTJ
do AUX
n't PART
like VERB
the DET
term NOUN
" PUNCT
quack NOUN
" PUNCT
being AUX
applied VERB
to ADP
a DET
licensed ADJ
physician NOUN
David.>Questionable ADJ
conduct NOUN
is AUX
more ADV
appropriately ADV
called VERB
unethical(in NUM
my PRON
opinion NOUN
) PUNCT
. PUNCT
> X
	 SPACE
3 NUM
. PUNCT
Using VERB
laetril ADJ
to PART
treat VERB
cancer NOUN
patients NOUN
when ADV
such ADJ
treatment NOUN
has AUX
> X
	    SPACE
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
and CCONJ
dangerous(cyanide PROPN
release NOUN
) PUNCT
by ADP
> X
	    SPACE
the DET
NCI.Hmm NOUN
. PUNCT
  SPACE
This DET
is AUX
certainly ADV
among ADP
the DET
things NOUN
I PRON
would AUX
refer VERB
to ADP
as SCONJ
quacktherapy NOUN
and CCONJ
would AUX
tend VERB
to PART
refer VERB
to ADP
any DET
practitioner NOUN
who PRON
prescribedlaetrile VERB
( PUNCT
whether SCONJ
licensed ADJ
or CCONJ
not PART
) PUNCT
as SCONJ
a DET
quack NOUN
. PUNCT
  SPACE
There PRON
are AUX
unethicalbehaviors NOUN
( PUNCT
such ADJ
as SCONJ
ordering VERB
unneccessary ADJ
tests NOUN
to PART
increase VERB
fees)which PROPN
I PRON
would AUX
not PART
lable VERB
as SCONJ
quackish ADJ
, PUNCT
but CCONJ
prescribing VERB
known VERB
ineffectivetherapies NOUN
seems VERB
to ADP
me PRON
to PART
be AUX
one NUM
of ADP
the DET
hallmarks NOUN
of ADP
a DET
quack.-- NOUN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59295From NUM
: PUNCT
garyws@cbnewsg.cb.att.com X
( PUNCT
gary.schuetter)Subject NOUN
: PUNCT
A DET
Good ADJ
place NOUN
for ADP
Back PROPN
Surgery PROPN
? PUNCT
	         SPACE
Hello INTJ
, PUNCT
        SPACE
Just ADV
one NUM
quick ADJ
question NOUN
: PUNCT
        SPACE
My PRON
father NOUN
has AUX
had VERB
a DET
back ADJ
problem NOUN
for ADP
a DET
long ADJ
time NOUN
and CCONJ
doctors NOUN
        SPACE
have AUX
diagnosed VERB
an DET
operation NOUN
is AUX
needed VERB
. PUNCT
Since SCONJ
he PRON
lives VERB
down ADP
in ADP
        SPACE
Mexico PROPN
, PUNCT
he PRON
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
a DET
hospital NOUN
anywhere ADV
in ADP
        SPACE
the DET
United PROPN
States PROPN
particulary NOUN
famous ADJ
for ADP
this DET
kind NOUN
of ADP
surgery NOUN
, PUNCT
        SPACE
kind ADV
of ADV
like SCONJ
Houston PROPN
has AUX
a DET
reputation NOUN
for ADP
excellent ADJ
doctors NOUN
        SPACE
in ADP
eye NOUN
surgery NOUN
. PUNCT
Any DET
additional ADJ
info NOUN
or CCONJ
pointers NOUN
will AUX
be AUX
        SPACE
appreciated VERB
a DET
whole ADJ
lot NOUN
! PUNCT
... PUNCT
                SPACE
Thanks NOUN
in ADP
Advance PROPN
. PUNCT
                        SPACE
Gary PROPN
Sheutter PROPN
. PUNCT
                        SPACE
AT&T PROPN
Bell PROPN
Labs PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59296From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Quack PROPN
- PUNCT
Quack PROPN
( PUNCT
was AUX
Re NOUN
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fiction)In NUM
article NOUN
< X
1ravpeINNah4@gap.caltech.edu NUM
> X
ken@isis.cns.caltech.edu PROPN
( PUNCT
Ken PROPN
Miller PROPN
) PUNCT
writes:>So PROPN
, PUNCT
if SCONJ
you PRON
have AUX
any DET
evidence NOUN
* PUNCT
against ADP
* PUNCT
the DET
hypothesis NOUN
--- PUNCT
for ADP
example,>controlled ADJ
double ADJ
- PUNCT
blind ADJ
studies NOUN
showing VERB
that SCONJ
the DET
anti NOUN
- NOUN
fungals NOUN
do AUX
n't PART
do AUX
any DET
> X
better ADJ
than SCONJ
sugar NOUN
water NOUN
--- PUNCT
then ADV
let VERB
's PRON
hear VERB
it PRON
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
, PUNCT
then ADV
what PRON
we PRON
> X
have AUX
is AUX
anecdotal ADJ
and CCONJ
uncontrolled ADJ
evidence NOUN
on ADP
one NUM
side NOUN
, PUNCT
and CCONJ
abject VERB
> X
disbelief NOUN
on ADP
the DET
other ADJ
. PUNCT
I PRON
do AUX
n't PART
have AUX
any DET
evidence NOUN
against ADP
water NOUN
from ADP
Lourdes PROPN
curing VERB
MS PROPN
--I'm PUNCT
sure ADV
there PRON
is AUX
anecdotal ADJ
evidence NOUN
that SCONJ
it PRON
does AUX
. PUNCT
  SPACE
Do AUX
you PRON
really ADV
thinkthat ADP
in ADP
the DET
absence NOUN
of ADP
a DET
double ADJ
- PUNCT
blind ADJ
study NOUN
I PRON
should AUX
be AUX
indifferentto VERB
the DET
hypothesis NOUN
that PRON
water NOUN
from ADP
Lourdes PROPN
cures NOUN
MS?For X
what PRON
it PRON
's AUX
worth ADJ
, PUNCT
I PRON
know VERB
of ADP
only ADV
one NUM
double ADJ
blind ADJ
study NOUN
of ADP
Nystatinfor PROPN
" PUNCT
candida PROPN
hypersensitivity NOUN
syndrome NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
was AUX
published VERB
in ADP
the DET
New PROPN
England PROPN
Journal PROPN
( PUNCT
I PRON
think VERB
1990 NUM
) PUNCT
and CCONJ
showed VERB
no DET
benefit NOUN
on ADP
systemicsymptoms NOUN
( PUNCT
though SCONJ
I PRON
think VERB
it PRON
reduced VERB
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
notsurprisingly ADV
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
recall VERB
, PUNCT
the DET
yeast NOUN
crowd NOUN
had AUX
some DET
major ADJ
objectionsto NOUN
the DET
study NOUN
, PUNCT
though SCONJ
I PRON
do AUX
n't PART
remember VERB
what PRON
they PRON
were.-- ADP
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59297From NUM
: PUNCT
jtpoupor@undergrad.math.uwaterloo.ca X
( PUNCT
Jeff PROPN
Poupore)Subject NUM
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskHi PROPN
, PUNCT
Thought PROPN
I PRON
'd AUX
add VERB
something PRON
to ADP
the DET
conversation NOUN
. PUNCT
My PRON
girlfriend NOUN
used VERB
to PART
work VERB
in ADP
a DET
lab NOUN
studying VERB
different ADJ
natural ADJ
carcinogens NOUN
. PUNCT
She PRON
mentioned VERB
once ADV
about ADP
the DET
cancerous ADJ
effect NOUN
of ADP
barbecued VERB
food NOUN
. PUNCT
Basically ADV
, PUNCT
she PRON
said VERB
that SCONJ
if SCONJ
you PRON
eat VERB
barbecued VERB
foods NOUN
with ADP
strawberries(a PROPN
natural ADJ
carcinogen NOUN
) PUNCT
the DET
slight ADJ
carcinogenic ADJ
properties NOUN
of ADP
bothcancel NOUN
out ADP
each DET
other.--Jeff PROPN
Pouporejtpoupor@undergrad.math.uwaterloo.ca-- PROPN
Jeff PROPN
Pouporejtpoupor@undergrad.math.uwaterloo.caNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59298From NUM
: SYM
trones@dxcern.cern.ch PROPN
( PUNCT
Jostein PROPN
Lodve PROPN
Trones)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org PROPN
> X
, PUNCT
gpivar@maestro.mitre.org PROPN
( PUNCT
Greg PROPN
Pivarnik PROPN
) PUNCT
writes VERB
: PUNCT
  SPACE
| ADP
> X
In ADP
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:| PROPN
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
  SPACE
| ADP
> X
| ADP
> X
in ADP
  SPACE
| X
> X
| ADV
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.| PROPN
> X
| ADV
> X
| ADV
> X
| X
> X
Bill PROPN
from ADP
oz| ADP
> X
| CCONJ
> X
| ADV
> X
| ADV
> X
| ADV
> X
Bill,| PROPN
> X
No DET
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian| PROPN
> X
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,| PROPN
> X
it PRON
takes VERB
pictures NOUN
of ADP
your PRON
aura.| PROPN
> X
| ADP
> X
| CCONJ
> X
-- PUNCT
| ADV
> X
Greg PROPN
| ADV
> X
| ADP
> X
-- PUNCT
  SPACE
Be AUX
still ADV
, PUNCT
be AUX
silent ADJ
... PUNCT
the DET
rest NOUN
is AUX
easy ADJ
. PUNCT
  SPACE
--| PROPN
> X
Greg PROPN
, PUNCT
No DET
flame NOUN
intended VERB
, PUNCT
but CCONJ
I PRON
think VERB
you PRON
just ADV
missed VERB
one NUM
of ADP
the DET
rare ADJ
attempts NOUN
ofhumor NOUN
in ADP
sci.skeptic."Krillean PROPN
" PUNCT
against ADP
" PUNCT
Kirilian ADJ
" PUNCT
. PUNCT
Get AUX
it?;-)BTW NOUN
, PUNCT
I PRON
think VERB
you PRON
're AUX
a DET
bit NOUN
of ADP
base NOUN
yourself PRON
, PUNCT
since SCONJ
, PUNCT
to ADP
my PRON
knowledge NOUN
, PUNCT
theelectromagnetic ADJ
field NOUN
around ADP
a DET
stone NOUN
is AUX
rather ADV
abscent NOUN
. PUNCT
But CCONJ
still ADV
, PUNCT
a DET
stonehas PROPN
a DET
nice ADJ
" PUNCT
aura NOUN
" PUNCT
on ADP
the DET
Kirilian ADJ
photographs NOUN
. PUNCT
Don't NUM
remember VERB
excactly ADV
, PUNCT
but CCONJ
" PUNCT
corona ADJ
discharge NOUN
" PUNCT
I PRON
think VERB
is AUX
a DET
more ADJ
fittingexpression NOUN
than SCONJ
aura NOUN
. PUNCT
Think VERB
you PRON
'll AUX
find VERB
something PRON
on ADP
this DET
in ADP
the DET
skeptic PROPN
- PUNCT
faq NOUN
. PUNCT
Cheers NOUN
, PUNCT
	 SPACE
JosteinNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59299From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
OCDThis INTJ
is AUX
to PART
followup VERB
my PRON
previous ADJ
reply NOUN
on ADP
this DET
topic NOUN
, PUNCT
which PRON
it PRON
has AUX
beenpointed VERB
out ADP
to ADP
me PRON
might AUX
have AUX
been AUX
dangerously ADV
misleading VERB
in ADP
two NUM
spots.1 PROPN
. PUNCT
  SPACE
I PRON
stated VERB
that SCONJ
psychotherapy NOUN
( PUNCT
meaning VERB
talking VERB
therapy NOUN
and CCONJ
so ADV
on ADV
) PUNCT
was AUX
used VERB
     SPACE
to PART
treat VERB
Obsessive ADJ
Compulsive PROPN
Disorder PROPN
, PUNCT
which PRON
though SCONJ
sometimes ADV
true ADJ
is AUX
     SPACE
misleading NOUN
. PUNCT
  SPACE
It PRON
is AUX
not PART
often ADV
found VERB
effective ADJ
, PUNCT
particularly ADV
by ADP
itself PRON
. PUNCT
    SPACE
Primary ADJ
treatment NOUN
today NOUN
usually ADV
consists VERB
at ADP
least ADJ
in ADP
part NOUN
of ADP
drug NOUN
    SPACE
therapy NOUN
. PUNCT
  SPACE
The DET
most ADV
current ADJ
theories NOUN
of ADP
this DET
condition NOUN
attribute VERB
     SPACE
it PRON
to ADP
more ADJ
to ADP
biological ADJ
causes NOUN
than SCONJ
psychological ADJ
, PUNCT
in ADP
places NOUN
where ADV
this DET
    SPACE
distinction NOUN
becomes VERB
important.2 PROPN
. PUNCT
  SPACE
I PRON
mentioned VERB
that SCONJ
the DET
DSM PROPN
- PUNCT
IIIR PROPN
mentions NOUN
' PART
impulses NOUN
' PUNCT
as SCONJ
a DET
possible ADJ
	 SPACE
diagnostic ADJ
marker NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
this DET
might AUX
look VERB
like SCONJ
something PRON
	 SPACE
people NOUN
associate VERB
with ADP
psychotic ADJ
conditions NOUN
, PUNCT
uncontrollable ADJ
or CCONJ
	 SPACE
unpredictable ADJ
behaviors NOUN
, PUNCT
which PRON
is AUX
NOT ADV
the DET
case NOUN
with ADP
OCD PROPN
. PUNCT
 	 SPACE
One NUM
of ADP
the DET
diagnostic ADJ
criteria NOUN
of ADP
OCD PROPN
is AUX
that SCONJ
the DET
individual NOUN
	 SPACE
can AUX
and CCONJ
does AUX
suppress VERB
some DET
of ADP
their PRON
' PUNCT
impulses NOUN
, PUNCT
' PUNCT
although SCONJ
they PRON
	 SPACE
are AUX
an DET
unending ADJ
source NOUN
of ADP
anxiety NOUN
. PUNCT
 	 SPACE
The DET
obsessive ADJ
thoughts NOUN
and CCONJ
ritualistic ADJ
actions NOUN
usually ADV
associated VERB
with ADP
	 SPACE
OCD PROPN
are AUX
most ADV
frequently ADV
very ADV
mundane ADJ
and CCONJ
predictable ADJ
, PUNCT
closer ADV
to ADP
	 SPACE
a DET
superstitious ADJ
nature NOUN
than SCONJ
a DET
dangerous ADJ
nature NOUN
for ADP
the DET
most ADJ
part NOUN
. PUNCT
	 SPACE
Some DET
references NOUN
( PUNCT
one NUM
non ADJ
- ADJ
technical ADJ
and CCONJ
several ADJ
technical ADJ
) PUNCT
	 SPACE
that SCONJ
someone PRON
was AUX
kind ADV
enough ADV
to PART
supply VERB
for ADP
me PRON
	 SPACE
but CCONJ
was AUX
unable ADJ
to PART
post VERB
themself NOUN
: PUNCT
|"The NOUN
boy NOUN
who PRON
could AUX
n't PART
stop VERB
washing VERB
" PUNCT
by ADP
judith PROPN
rapaport PROPN
. PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
	 SPACE
( PUNCT
technical ADJ
refs PROPN
) PUNCT
:| PUNCT
	 SPACE
pharmacotherapy NOUN
of ADP
o PROPN
- PUNCT
c PROPN
disorder| PROPN
	 SPACE
donna PROPN
m PROPN
jermain PROPN
and CCONJ
lynn PROPN
crismon| PROPN
	 SPACE
pharmacotherapy PROPN
1990 NUM
; PUNCT
10(3):175 NUM
- PUNCT
198| PROPN
	 SPACE
epidemiology NOUN
of ADP
ocd| PROPN
	 SPACE
seteven VERB
a DET
rasmussen ADJ
and CCONJ
jane PROPN
eisen| PROPN
	 SPACE
j PROPN
clin PROPN
psychiatry PROPN
1990;51(2 NUM
, PUNCT
suppl.):10 PROPN
- PUNCT
13| PROPN
	 SPACE
the DET
waking VERB
nightmare NOUN
: PUNCT
an DET
overview NOUN
of ADP
ocd| PROPN
	 SPACE
judith PROPN
l PROPN
rapoport| PROPN
	 SPACE
j PROPN
clin PROPN
psychiatry PROPN
1990 NUM
; PUNCT
51(11 NUM
, PUNCT
suppl.):25 PROPN
- PUNCT
28| PROPN
	 SPACE
absence NOUN
of ADP
placebo NOUN
response NOUN
in ADP
ocd| PROPN
	 SPACE
matig PROPN
r PROPN
mavissakalian PROPN
, PUNCT
bruce PROPN
jones PROPN
, PUNCT
stephen PROPN
olson| PROPN
	 SPACE
j PROPN
nerv PROPN
ment PROPN
disease PROPN
1990 NUM
vol PROPN
178 NUM
no NOUN
. NOUN
4 NUM
	 SPACE
And CCONJ
thanks NOUN
very ADV
much ADV
to ADP
those DET
who PRON
supplied VERB
constructive ADJ
 	 SPACE
criticism NOUN
to ADP
my PRON
first ADJ
post NOUN
on ADP
OCD PROPN
. PUNCT
  SPACE
I PRON
hope VERB
this DET
helps VERB
clarify VERB
	 SPACE
the DET
parts NOUN
that PRON
were AUX
misleading VERB
. PUNCT
						 SPACE
kind PROPN
regards PROPN
, PUNCT
						 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
354 NUM
- SYM
1273 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Olliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
  SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59300From NUM
: PUNCT
mechalas@gn.ecn.purdue.edu PROPN
( PUNCT
John PROPN
P. PROPN
Mechalas)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rgnn6$lli@fnnews.fnal.gov NUM
> X
dh@fncrd6.fnal.gov PROPN
( PUNCT
don PROPN
husby PROPN
) PUNCT
writes:>>Poor NOUN
person NOUN
's PART
Kirlian PROPN
Photography PROPN
( PUNCT
try VERB
this DET
at ADP
home)>>1 X
. PUNCT
Hold VERB
your PRON
hand NOUN
up ADP
to ADP
a DET
cold ADJ
window.>2 PROPN
. PUNCT
Look VERB
closely ADV
at ADP
the DET
stunning ADJ
corona NOUN
effects NOUN
around ADP
> X
   SPACE
your PRON
fingertips.>3 PROPN
. PUNCT
Remove PROPN
hand NOUN
( PUNCT
from ADP
window NOUN
) PUNCT
and CCONJ
observe VERB
after ADP
image NOUN
. PUNCT
  SPACE
> X
4 NUM
. PUNCT
Invent ADJ
crackpot NOUN
theory NOUN
to PART
explain VERB
the DET
effect NOUN
. PUNCT
Advanced ADJ
Kirlian PROPN
Photography PROPN
( PUNCT
try VERB
this DET
at ADP
home NOUN
, PUNCT
too)1 NOUN
. PUNCT
  SPACE
Get AUX
a DET
camera2 NOUN
. PUNCT
  SPACE
Have AUX
your PRON
subject ADJ
face NOUN
you PRON
with ADP
his PRON
/ SYM
her PRON
back ADV
to ADP
the DET
sun.3 PROPN
. PUNCT
  SPACE
Take VERB
photo4 NOUN
. PUNCT
  SPACE
Observe VERB
the DET
glow NOUN
behind ADP
their PRON
silhouetted VERB
image NOUN
on ADP
the DET
photo5 NOUN
. PUNCT
  SPACE
Invent ADJ
crackpot PROPN
theory NOUN
to PART
explain VERB
the DET
effect-- PROPN
John PROPN
Mechalas PROPN
                                          SPACE
" PUNCT
I PRON
'm AUX
not PART
an DET
actor NOUN
, PUNCT
butmechalas@gn.ecn.purdue.edu PROPN
                                 SPACE
I PRON
play VERB
one NOUN
on ADP
TV."Aero PROPN
Engineering PROPN
, PUNCT
Purdue PROPN
University PROPN
                     SPACE
# SYM
include VERB
disclaimer.hNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59301From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
Mind NOUN
Machines?In PROPN
article NOUN
< X
C5snww.5GA@tripos.com X
> X
, PUNCT
homer@tripos.com X
( PUNCT
Webster PROPN
Homer PROPN
) PUNCT
writes VERB
... PUNCT
>I NUM
recently ADV
learned VERB
about ADP
these DET
devices NOUN
that PRON
supposedly ADV
induce VERB
specific ADJ
> X
brain NOUN
wave NOUN
frequencies NOUN
in ADP
their PRON
users NOUN
simply ADV
by ADP
wearing VERB
them PRON
. PUNCT
The DET
principle NOUN
underlying VERB
these DET
devices NOUN
is AUX
a DET
well ADV
establish VERB
principle ADJ
inpsychology NOUN
called VERB
' PUNCT
entrainment NOUN
, PUNCT
' PUNCT
whereby ADV
external ADJ
sensory ADJ
stimuliinfluence NOUN
gross ADJ
electrical ADJ
patterns NOUN
of ADP
brain NOUN
function NOUN
. PUNCT
They PRON
are AUX
' PUNCT
experimental ADJ
' PUNCT
in ADP
that DET
people NOUN
experiment VERB
with ADP
them PRON
and CCONJ
theyare PROPN
_ AUX
not PART
_ DET
widely ADV
( PUNCT
if SCONJ
at ADV
all ADV
) PUNCT
used VERB
in ADP
medicine NOUN
for ADP
therapeutic ADJ
purposes NOUN
. PUNCT
  SPACE
Given VERB
the DET
exception NOUN
of ADP
TENS PROPN
and CCONJ
similar ADJ
units NOUN
used VERB
for ADP
external ADJ
electrical ADJ
stimulation NOUN
, PUNCT
usually ADV
for ADP
pain NOUN
relief NOUN
, PUNCT
not PART
really ADV
a DET
light NOUN
and CCONJ
sound ADJ
machine NOUN
. PUNCT
They PRON
are AUX
_ DET
not PART
_ VERB
experimental ADJ
in ADP
the DET
sense NOUN
of ADP
a DET
specific ADJ
medical ADJ
category NOUN
to ADP
that DET
effect NOUN
, PUNCT
as SCONJ
with ADP
experimental ADJ
drugs NOUN
, PUNCT
as SCONJ
the DET
FDA PROPN
does AUX
not PART
specifically ADV
regulate VERB
medical ADJ
devices NOUN
in ADP
the DET
way NOUN
it PRON
does AUX
pharmaceuticals NOUN
. PUNCT
   SPACE
> X
I PRON
would AUX
think VERB
that SCONJ
if SCONJ
they PRON
work VERB
as SCONJ
reported VERB
they PRON
would AUX
be AUX
incredibly ADV
useful ADJ
, PUNCT
There PRON
are AUX
few ADJ
reliable ADJ
studies NOUN
of ADP
therapeutic ADJ
or CCONJ
enhancement NOUN
effectsfor NOUN
mind NOUN
machines NOUN
, PUNCT
other ADJ
than SCONJ
those DET
relaxation NOUN
- PUNCT
related VERB
effects NOUN
found VERB
with ADP
meditation NOUN
or CCONJ
self NOUN
- PUNCT
hypnosis NOUN
as ADV
well ADV
. PUNCT
  SPACE
Reported VERB
benefits NOUN
are AUX
mostly ADV
anecdotal ADJ
andsubjective ADJ
so ADV
far ADV
, PUNCT
so ADV
it PRON
's AUX
hard ADJ
to PART
generalize VERB
about ADP
their PRON
potential ADJ
value NOUN
. PUNCT
A DET
pretty ADV
good ADJ
general ADJ
non ADJ
- ADJ
technical ADJ
introduction NOUN
to ADP
a DET
wide ADJ
varietyof NOUN
these DET
devices NOUN
may AUX
be AUX
found VERB
in ADP
" PUNCT
Would AUX
the DET
Buddha PROPN
Wear PROPN
a DET
Walkman NOUN
? PUNCT
" PUNCT
Some DET
interesting ADJ
background NOUN
material NOUN
, PUNCT
names NOUN
of ADP
suppliers NOUN
, PUNCT
and CCONJ
capsule NOUN
reviewsof ADJ
specific ADJ
equipment NOUN
. PUNCT
  SPACE
> X
do AUX
these DET
mind NOUN
machines NOUN
( PUNCT
aka ADV
Light ADJ
and CCONJ
Sound PROPN
machines NOUN
) PUNCT
work NOUN
? PUNCT
can AUX
they PRON
induce VERB
> X
alpha NOUN
, PUNCT
theta NOUN
, PUNCT
and/or CCONJ
delta PROPN
waves VERB
in ADP
a DET
person NOUN
wearing VERB
them PRON
? PUNCT
What PRON
research NOUN
if SCONJ
> X
any DET
has AUX
been AUX
done VERB
on ADP
them PRON
? PUNCT
Could AUX
they PRON
be AUX
used VERB
in ADP
lieu NOUN
of ADP
a DET
tranquilizer?>Or NOUN
are AUX
they PRON
just ADV
another DET
bit NOUN
of ADP
quackery?A PROPN
more ADV
important ADJ
question NOUN
might AUX
be AUX
whether SCONJ
they PRON
have AUX
enough ADJ
additionalvalue NOUN
to PART
be AUX
worth ADJ
investing VERB
in ADP
. PUNCT
  SPACE
' PUNCT
Biofeedback PROPN
' PUNCT
was AUX
found VERB
to PART
be AUX
a DET
legitimateand NOUN
reliable ADJ
effect NOUN
experimentally ADV
under ADP
certain ADJ
conditions NOUN
, PUNCT
( PUNCT
in ADP
thatit PROPN
demonstrated VERB
that SCONJ
we PRON
can AUX
influence VERB
physiological ADJ
processes NOUN
previously ADV
considered VERB
purely ADV
autonomic ADJ
) PUNCT
but CCONJ
never ADV
panned VERB
out ADP
as SCONJ
a DET
particularly ADV
valuable ADJ
therapeutic ADJ
tool NOUN
because SCONJ
of ADP
the DET
skill NOUN
level NOUN
required VERB
and CCONJ
the DET
subtlety NOUN
andtemporary ADJ
nature NOUN
of ADP
the DET
effects NOUN
in ADP
most ADJ
cases NOUN
. PUNCT
   SPACE
Maybe ADV
someone PRON
else ADV
has AUX
more ADJ
, PUNCT
there PRON
used VERB
to PART
be AUX
a DET
whole ADJ
mailing NOUN
list NOUN
devoted VERB
to ADP
mind NOUN
machines NOUN
, PUNCT
somewhere ADV
on ADP
the DET
net.>Web PROPN
Homer>homer@tripos.com PROPN
						 SPACE
kind PROPN
regards NOUN
, PUNCT
						 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
354 NUM
- SYM
1273 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Olliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
  SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59302From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org PROPN
> X
, PUNCT
gpivar@maestro.mitre.org(Greg PROPN
Pivarnik PROPN
) PUNCT
writes:=In VERB
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding VERB
) PUNCT
writes:=| PROPN
> X
todamhyp@charles.unlv.edu PROPN
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:=| PROPN
> X
=| PUNCT
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
=| PUNCT
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow=| VERB
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking=| PROPN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for=| NOUN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly=| PROPN
> X
> X
appreciated.=| PROPN
> X
=| PUNCT
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
=| X
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.=| NUM
> X
=| PUNCT
> X
Bill PROPN
from ADP
oz=| PROPN
> X
= PUNCT
= X
= PUNCT
Bill,=No PROPN
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian PROPN
= SYM
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,=it PROPN
takes VERB
pictures NOUN
of ADP
your PRON
aura NOUN
. PUNCT
Greg PROPN
: PUNCT
  SPACE
Flame PROPN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
Itinvolves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
thesubject NOUN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
wellwith ADP
inanimate ADJ
objects.--------------------------------------------------------------------------------Carl NOUN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59303From NUM
: PUNCT
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
C60KrL.59t@dartvax.dartmouth.edu NUM
> X
oldman@coos.dartmouth.edu PROPN
( PUNCT
Prakash PROPN
Das PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr20.173019.11903@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>>>As VERB
for ADP
how ADV
foods NOUN
taste NOUN
: PUNCT
  SPACE
If SCONJ
I PRON
'm AUX
not PART
allergic ADJ
to ADP
MSG PROPN
and CCONJ
I PRON
like>>the AUX
taste NOUN
of ADP
it PRON
, PUNCT
why ADV
should AUX
n't PART
I PRON
use VERB
it PRON
? PUNCT
  SPACE
Saying VERB
I PRON
should AUX
n't PART
use>>it PROPN
is AUX
like SCONJ
saying VERB
I PRON
should AUX
n't PART
eat VERB
spicy ADJ
food NOUN
because SCONJ
my PRON
neighbor>>has NOUN
an DET
ulcer.>>Julie NOUN
, PUNCT
it PRON
does AUX
n't PART
necessarily ADV
follow VERB
that SCONJ
you PRON
should AUX
use VERB
it PRON
( PUNCT
MSG PROPN
or CCONJ
> X
something PRON
else ADV
for ADP
that DET
matter NOUN
) PUNCT
simply ADV
because SCONJ
you PRON
are AUX
not PART
allergic ADJ
> X
to ADP
it PRON
. PUNCT
For ADP
example NOUN
you PRON
might AUX
not PART
be AUX
allergic ADJ
to ADP
( PUNCT
animal NOUN
) PUNCT
fats NOUN
, PUNCT
and CCONJ
> X
like SCONJ
their PRON
taste NOUN
, PUNCT
yet CCONJ
it PRON
does AUX
n't PART
follow VERB
that SCONJ
you PRON
should AUX
be AUX
using VERB
them>(regularly ADV
) PUNCT
. PUNCT
MSG PROPN
might AUX
have AUX
other ADJ
bad ADJ
( PUNCT
or CCONJ
good ADJ
, PUNCT
I PRON
am AUX
not PART
up ADV
on ADP
> X
knowledge NOUN
of ADP
MSG PROPN
) PUNCT
effects NOUN
on ADP
your PRON
body NOUN
in ADP
the DET
long ADJ
run NOUN
, PUNCT
maybe ADV
that's ADP
> X
reason NOUN
enough ADV
not PART
to PART
use VERB
it PRON
. PUNCT
Perhaps ADV
I PRON
should AUX
quit VERB
eating VERB
mushrooms NOUN
, PUNCT
soya PROPN
beans NOUN
, PUNCT
and CCONJ
brie PROPN
cheesewhich PROPN
all DET
have AUX
MSG NOUN
in ADP
them PRON
. PUNCT
  SPACE
It PRON
occurs VERB
naturally ADV
. PUNCT
I'm PRON
not PART
going VERB
to PART
quit VERB
eating VERB
something PRON
that PRON
I PRON
like VERB
just ADV
becauseit NOUN
* PUNCT
might AUX
* PUNCT
cause VERB
me PRON
trouble NOUN
later ADV
or CCONJ
causes VERB
problems NOUN
in ADP
* PUNCT
some*people NOUN
. PUNCT
  SPACE
I PRON
would AUX
much ADV
rather ADV
avoid VERB
stress NOUN
by ADP
not PART
worrying VERB
overwhat NOUN
goes VERB
in ADP
my PRON
mouth NOUN
and CCONJ
not PART
spending VERB
every DET
day NOUN
reading VERB
conflictingreports NOUN
of ADP
what PRON
is AUX
good ADJ
/ SYM
bad ADJ
for ADP
you PRON
. PUNCT
I PRON
may AUX
eat VERB
some DET
things NOUN
in ADP
quantities NOUN
that PRON
may AUX
not PART
be AUX
good ADJ
for ADP
me PRON
. PUNCT
Fine INTJ
. PUNCT
  SPACE
I PRON
've AUX
made VERB
my PRON
decision NOUN
and CCONJ
I PRON
do AUX
n't PART
think VERB
it PRON
's AUX
appropriatefor ADV
anyone PRON
to PART
try VERB
to PART
' PUNCT
convert VERB
' PUNCT
me PRON
. PUNCT
  SPACE
" PUNCT
It PRON
's AUX
for ADP
your PRON
own ADJ
good NOUN
" PUNCT
arethe NOUN
most ADV
obnoxious ADJ
and CCONJ
harmful ADJ
words NOUN
, PUNCT
IMO ADV
, PUNCT
in ADP
the DET
English PROPN
( PUNCT
orany ADJ
other ADJ
) PUNCT
language.>>Altho ADV
' PUNCT
your PRON
example NOUN
of ADP
the DET
ulcer NOUN
is AUX
funny ADJ
, PUNCT
it PRON
is AUX
n't PART
an DET
> X
appropriate ADJ
comparison NOUN
at ADV
all ADV
. PUNCT
I PRON
think VERB
it PRON
is AUX
. PUNCT
  SPACE
I PRON
get VERB
tired ADJ
of ADP
people NOUN
saying VERB
' PUNCT
do AUX
n't PART
eat VERB
X NOUN
becauseit NOUN
's PART
BAD ADJ
! PUNCT
' PUNCT
  SPACE
Well INTJ
, PUNCT
X PROPN
may AUX
not PART
be AUX
bad ADJ
for ADP
everyone PRON
. PUNCT
  SPACE
And CCONJ
even ADV
ifit NOUN
is AUX
, PUNCT
so ADV
what PRON
? PUNCT
  SPACE
Give VERB
people NOUN
all DET
the DET
information NOUN
but CCONJ
do AUX
n't PART
ramyour VERB
decisions NOUN
down ADP
their PRON
throats NOUN
. PUNCT
JulieDISCLAIMER PROPN
: PUNCT
  SPACE
All DET
opinions NOUN
here ADV
belong VERB
to ADP
my PRON
cat NOUN
and CCONJ
no DET
one NUM
elseNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59304From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rgo4b$et4@hsdndev.harvard.edu NUM
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr23.180430.1@vms.ocom.okstate.edu NOUN
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu PROPN
writes:>>I PROPN
do AUX
n't PART
like VERB
the DET
term NOUN
" PUNCT
quack NOUN
" PUNCT
being AUX
applied VERB
to ADP
a DET
licensed ADJ
physician NOUN
David.>>Questionable ADJ
conduct NOUN
is AUX
more ADV
appropriately ADV
called VERB
unethical(in NUM
my PRON
opinion NOUN
) PUNCT
. PUNCT
> X
> X
> X
	 SPACE
3 NUM
. PUNCT
Using VERB
laetril ADJ
to PART
treat VERB
cancer NOUN
patients NOUN
when ADV
such ADJ
treatment NOUN
has AUX
> X
> X
	    SPACE
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
and CCONJ
dangerous(cyanide PROPN
release NOUN
) PUNCT
by ADP
> X
> X
	    SPACE
the DET
NCI PROPN
. PUNCT
> X
> X
Hmm INTJ
. PUNCT
  SPACE
This DET
is AUX
certainly ADV
among ADP
the DET
things NOUN
I PRON
would AUX
refer VERB
to ADP
as SCONJ
quack PROPN
> X
therapy NOUN
and CCONJ
would AUX
tend VERB
to PART
refer VERB
to ADP
any DET
practitioner NOUN
who PRON
prescribed VERB
> X
laetrile PROPN
( PUNCT
whether SCONJ
licensed ADJ
or CCONJ
not PART
) PUNCT
as SCONJ
a DET
quack NOUN
. PUNCT
  SPACE
There PRON
are AUX
unethical ADJ
> X
behaviors NOUN
( PUNCT
such ADJ
as SCONJ
ordering VERB
unneccessary ADJ
tests NOUN
to PART
increase VERB
fees NOUN
) PUNCT
> X
which PRON
I PRON
would AUX
not PART
lable VERB
as SCONJ
quackish ADJ
, PUNCT
but CCONJ
prescribing VERB
known VERB
ineffective ADJ
> NOUN
therapies NOUN
seems VERB
to ADP
me PRON
to PART
be AUX
one NUM
of ADP
the DET
hallmarks NOUN
of ADP
a DET
quack NOUN
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindOne PROPN
of ADP
the DET
responsibilities NOUN
of ADP
a DET
licensed ADJ
physician NOUN
is AUX
to PART
read VERB
the DET
medical ADJ
literature NOUN
to PART
keep VERB
up ADP
with ADP
changes NOUN
in ADP
medical ADJ
practice NOUN
. PUNCT
  SPACE
All DET
the DET
clamor NOUN
over ADP
laetril PROPN
resulted VERB
in ADP
the DET
NCI PROPN
spending VERB
quite DET
a DET
bit NOUN
of ADP
money NOUN
on ADP
clinical ADJ
trials NOUN
which PRON
proved(to VERB
me PRON
anyway ADV
) PUNCT
that SCONJ
laetril PROPN
was AUX
ineffective ADJ
against ADP
cancer NOUN
. PUNCT
  SPACE
A DET
physician NOUN
who PRON
continued VERB
to PART
use VERB
it PRON
, PUNCT
when ADV
better ADJ
, PUNCT
more ADV
effective ADJ
, PUNCT
treatments NOUN
are AUX
available ADJ
, PUNCT
may AUX
deserve VERB
to PART
be AUX
called VERB
a DET
quack NOUN
. PUNCT
  SPACE
Anti NOUN
- NOUN
fungals NOUN
are AUX
in ADP
a DET
different ADJ
class NOUN
. PUNCT
  SPACE
The DET
big ADJ
question NOUN
seems VERB
to PART
be AUX
is AUX
it PRON
reasonable ADJ
to PART
use VERB
them PRON
in ADP
patients NOUN
with ADP
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
that PRON
* PUNCT
could AUX
* PUNCT
be AUX
due ADJ
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
  SPACE
Gorden PROPN
Rubenfeld PROPN
, PUNCT
through ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
has AUX
assured VERB
me PRON
that SCONJ
most ADJ
physicians NOUN
recognize VERB
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
occuring VERB
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
and CCONJ
they PRON
therefore ADV
reinnoculate VERB
their PRON
patients NOUN
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
to PART
restore VERB
competetion NOUN
for ADP
candida PROPN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believe VERB
that SCONJ
this DET
is AUX
yet ADV
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
. PUNCT
  SPACE
He PRON
deals VERB
with ADP
critical ADJ
care NOUN
patients NOUN
where ADV
fungal PROPN
infection(systemic PROPN
) PUNCT
is AUX
a DET
real ADJ
problem NOUN
and CCONJ
just ADV
because SCONJ
he PRON
tries VERB
to PART
keep VERB
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
in ADP
his PRON
patients NOUN
does AUX
not PART
mean VERB
that SCONJ
all DET
physicians NOUN
do AUX
this DET
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
aspergillis PROPN
is AUX
more ADV
likely ADJ
to PART
be AUX
found VERB
in ADP
the DET
sinus PROPN
mucus PROPN
membranes NOUN
than SCONJ
is AUX
candida PROPN
. PUNCT
  SPACE
Women NOUN
have AUX
been AUX
known VERB
for ADP
a DET
very ADV
long ADJ
time NOUN
to PART
suffer VERB
from ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
and CCONJ
a DET
women NOUN
is AUX
lucky ADJ
to PART
find VERB
a DET
physician NOUN
who PRON
is AUX
willing ADJ
to PART
treat VERB
the DET
cause NOUN
and CCONJ
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
  SPACE
Since SCONJ
candida PROPN
colonizes VERB
primarily ADV
in ADP
the DET
ano NOUN
- PUNCT
rectal ADJ
area NOUN
, PUNCT
GI PROPN
symptoms NOUN
should AUX
be AUX
more ADV
common ADJ
than SCONJ
vaginal ADJ
problems NOUN
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
. PUNCT
The DET
problem NOUN
we PRON
have AUX
here ADV
David PROPN
is AUX
proof NOUN
that SCONJ
GI PROPN
discomfort NOUN
can AUX
be AUX
caused VERB
by ADP
a DET
candida PROPN
bloom NOUN
. PUNCT
  SPACE
The DET
arguement NOUN
is AUX
that SCONJ
without ADP
proof NOUN
, PUNCT
no DET
action NOUN
is AUX
warrented VERB
. PUNCT
Medicine NOUN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There PRON
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to PART
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
Medicine PROPN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
The DET
conventional ADJ
wisdom NOUN
in ADP
animal NOUN
husbandry NOUN
has AUX
been AUX
that SCONJ
animals NOUN
need VERB
to PART
be AUX
reinnoculated VERB
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
after ADP
coming VERB
off ADP
antibiotic ADJ
therapy NOUN
. PUNCT
If SCONJ
it PRON
makes VERB
sense NOUN
for ADP
livestock NOUN
, PUNCT
why ADV
does AUX
n't PART
it PRON
make VERB
sense NOUN
for ADP
humans NOUN
David PROPN
? PUNCT
  SPACE
We PRON
are AUX
not PART
talking VERB
about ADP
a DET
dangerous ADJ
treatment(unless NOUN
you PRON
consider VERB
yogurt PROPN
dangerous ADJ
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
should AUX
decline VERB
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59305From NUM
: PUNCT
chorley@vms.ocom.okstate.eduSubject NOUN
: PUNCT
CS PROPN
" PUNCT
gas NOUN
" PUNCT
and CCONJ
allergic ADJ
response- NOUN
Ques PROPN
. PUNCT
This DET
question NOUN
derives VERB
from ADP
the DET
Waco PROPN
incident NOUN
: PUNCT
	 SPACE
Could AUX
CS PROPN
( PUNCT
" PUNCT
gas NOUN
" PUNCT
) PUNCT
particles VERB
create VERB
an DET
allergic ADJ
response NOUN
which PRON
would AUX
result VERB
in ADP
laryngospasm PROPN
and CCONJ
asphyxiation?- PROPN
especially ADV
in ADP
children NOUN
. PUNCT
	 SPACE
DNC PROPN
in ADP
Ok PROPN
. PUNCT
	 SPACE
OSU PROPN
- PUNCT
COM PROPN
will AUX
disavow VERB
my PRON
opinion NOUN
, PUNCT
and CCONJ
my PRON
existence NOUN
, PUNCT
if SCONJ
necessary ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59306From NUM
: PUNCT
mmeyer@m2.dseg.ti.com PROPN
( PUNCT
Mark PROPN
Meyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes VERB
: PUNCT
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
> X
resident NOUN
in ADP
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
> X
them PRON
, PUNCT
perhaps ADV
. PUNCT
In ADP
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org PROPN
> X
gpivar@maestro.mitre.org PROPN
( PUNCT
Greg PROPN
Pivarnik PROPN
) PUNCT
writes VERB
: PUNCT
> X
No DET
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
> X
Kirilian ADJ
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
> X
objects NOUN
, PUNCT
in ADP
simple ADJ
, PUNCT
it PRON
takes VERB
pictures NOUN
of ADP
your PRON
aura NOUN
. PUNCT
	 SPACE
Greg PROPN
, PUNCT
no DET
flame NOUN
intended VERB
, PUNCT
but CCONJ
you PRON
have AUX
no DET
discernible ADJ
sense NOUN
ofhumor NOUN
. PUNCT
  SPACE
What PRON
Bill PROPN
wrote VERB
was AUX
intended VERB
to PART
be AUX
funny ADJ
. PUNCT
  SPACE
It PRON
's AUX
called VERB
a"joke PROPN
" PUNCT
, PUNCT
Greg PROPN
. PUNCT
  SPACE
Look VERB
into ADP
it PRON
. PUNCT
	 SPACE
Besides ADV
, PUNCT
Kirilian ADJ
photography NOUN
is AUX
actually ADV
photography NOUN
of ADP
myfriend PROPN
's PART
two NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
Kiril PROPN
. PUNCT
  SPACE
Perhaps ADV
you PRON
meant VERB
" PUNCT
Kirlian"?-- PROPN
Mark PROPN
Meyer PROPN
                                               SPACE
| PROPN
mmeyer@dseg.ti.com PROPN
|Texas PROPN
Instruments PROPN
, PUNCT
Inc. PROPN
, PUNCT
  SPACE
Plano PROPN
TX PROPN
                       SPACE
+ SYM
--------------------+Every NOUN
day NOUN
, PUNCT
Jerry PROPN
Junkins PROPN
is AUX
grateful ADJ
that SCONJ
I PRON
do AUX
n't PART
speak VERB
for ADP
TI PROPN
. PUNCT
      SPACE
" PUNCT
You PRON
have AUX
triggered VERB
primary ADJ
defense NOUN
mechanism NOUN
. PUNCT
" PUNCT
  SPACE
" PUNCT
Blast NOUN
! PUNCT
" PUNCT
  SPACE
" PUNCT
Affirmative ADJ
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59307From NUM
: PUNCT
  SPACE
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Barbecued VERB
foods NOUN
and CCONJ
health NOUN
riskIn PROPN
article NOUN
< X
C5sqv8.EDB@acsu.buffalo.edu PROPN
> X
, PUNCT
SFEGUS@ubvm.cc.buffalo.edu PROPN
wrote VERB
: PUNCT
> X
In ADP
article NOUN
< X
79857@cup.portal.com NUM
> X
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
An DET
odd ADJ
exception NOUN
to ADP
the DET
rule NOUN
seems VERB
to PART
be AUX
the DET
product NOUN
known VERB
as SCONJ
" PUNCT
gumbo PROPN
file NOUN
' PUNCT
" PUNCT
. PUNCT
> X
> X
This DET
is AUX
nothing PRON
more ADJ
than SCONJ
coarsely ADV
ground NOUN
dried VERB
sassafras PROPN
leaves NOUN
. PUNCT
  SPACE
This DET
> X
> X
is AUX
not PART
only ADV
a DET
natural ADJ
product NOUN
, PUNCT
but CCONJ
a DET
natural ADJ
product NOUN
still ADV
in ADP
its PRON
natural ADJ
> X
> X
form NOUN
, PUNCT
so ADV
maybe ADV
that DET
's AUX
how ADV
they PRON
evade VERB
Delany PROPN
. PUNCT
  SPACE
Or CCONJ
maybe ADV
a DET
special ADJ
exemption NOUN
> X
> X
was AUX
made VERB
, PUNCT
to PART
appease VERB
powerful ADJ
Louisiana PROPN
Democrats PROPN
. PUNCT
One NUM
possible ADJ
reason NOUN
is AUX
that SCONJ
file NOUN
' PUNCT
is AUX
made VERB
with ADP
sassafras PROPN
leaves NOUN
, PUNCT
while SCONJ
rootbeer NOUN
was AUX
made VERB
with ADP
sassafras PROPN
bark NOUN
or CCONJ
root NOUN
bark NOUN
. PUNCT
  SPACE
The DET
leaves NOUN
contain VERB
eithernoor PROPN
less ADJ
saffrole NOUN
than SCONJ
the DET
bark NOUN
. PUNCT
There PRON
is AUX
also ADV
some DET
sort NOUN
of ADP
treatment NOUN
which PRON
putatively ADV
removes VERB
saffrole NOUN
fromsassafras VERB
products NOUN
. PUNCT
  SPACE
I PRON
have AUX
some DET
concentrated ADJ
sassafras NOUN
tea NOUN
extract NOUN
whichisclaimed VERB
to PART
have AUX
the DET
saffrole NOUN
removed VERB
. PUNCT
> X
I PRON
think VERB
what PRON
we PRON
have AUX
to PART
keep VERB
in ADP
mind NOUN
is AUX
that SCONJ
even ADV
though SCONJ
it PRON
may AUX
be AUX
illegal ADJ
to ADP
> X
commercially ADV
produce VERB
/ SYM
sell VERB
food NOUN
with ADP
carcinogenic ADJ
substances NOUN
, PUNCT
it PRON
is AUX
not PART
illegal ADJ
> X
for ADP
people NOUN
to PART
do AUX
such ADJ
to ADP
their PRON
own ADJ
food NOUN
( PUNCT
smoking NOUN
, PUNCT
etc X
) PUNCT
. PUNCT
  SPACE
Is AUX
this DET
true?Well NOUN
, PUNCT
the DET
last ADJ
time NOUN
that PRON
I PRON
went VERB
to ADP
the DET
store NOUN
to PART
buy VERB
sassafras PROPN
bark NOUN
to PART
make VERB
root NOUN
beer NOUN
, PUNCT
there PRON
was AUX
a DET
sign NOUN
saying VERB
that SCONJ
it PRON
was AUX
n't PART
sold VERB
for ADP
humanconsumption NOUN
. PUNCT
Also ADV
, PUNCT
when ADV
I PRON
asked VERB
the DET
person NOUN
if SCONJ
they PRON
had AUX
wild ADJ
cherry NOUN
bark NOUN
and CCONJ
wintergreenbark PROPN
, PUNCT
she PRON
made VERB
a DET
point NOUN
of ADP
telling VERB
me PRON
that SCONJ
I PRON
could AUX
n't PART
buy VERB
sassafras NOUN
for ADP
human ADJ
consumption NOUN
. PUNCT
I PRON
find VERB
the DET
fact NOUN
that SCONJ
some DET
people NOUN
reckless ADJ
enough ADV
to PART
step VERB
into ADP
an DET
automobilelivein ADJ
fear NOUN
of ADP
dropping VERB
dead ADJ
because SCONJ
of ADP
a DET
pork NOUN
rib VERB
quite ADV
funny ADJ
, PUNCT
in ADP
a DET
sick ADJ
way NOUN
. PUNCT
Eric PROPN
Pepke PROPN
                                     SPACE
INTERNET:pepke@gw.scri.fsu.eduSupercomputer PROPN
Computations PROPN
Research PROPN
Institute PROPN
  SPACE
MFENET PROPN
: PUNCT
   SPACE
pepke@fsuFlorida PROPN
State PROPN
University PROPN
                       SPACE
SPAN PROPN
: PUNCT
     SPACE
scri::pepkeTallahassee PROPN
, PUNCT
FL PROPN
32306 NUM
- SYM
4052 NUM
                     SPACE
BITNET NOUN
: PUNCT
   SPACE
pepke@fsuDisclaimer PROPN
: PUNCT
My PRON
employers NOUN
seldom ADV
even ADV
LISTEN VERB
to ADP
my PRON
opinions NOUN
. PUNCT
Meta PROPN
- PUNCT
disclaimer PROPN
: PUNCT
Any DET
society NOUN
that PRON
needs VERB
disclaimers NOUN
has AUX
too ADV
many ADJ
lawyers NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59308From NUM
: PUNCT
Nigel@dataman.demon.co.uk PROPN
( PUNCT
Nigel PROPN
Ballard)Subject VERB
: PUNCT
Re ADP
: PUNCT
Mind NOUN
Machines PROPN
? PUNCT
I PRON
use VERB
a DET
ZYGON PROPN
Mind PROPN
Machine PROPN
as SCONJ
bought VERB
in ADP
the DET
USA PROPN
last ADJ
year NOUN
. PUNCT
  SPACE
Althoughit PROPN
's AUX
no DET
wonder NOUN
cure NOUN
for ADP
what PRON
ail NOUN
's AUX
you PRON
. PUNCT
  SPACE
It PRON
is AUX
however ADV
VERY ADV
good ADJ
atstopping VERB
you PRON
thinking!Sound ADV
strange ADJ
? PUNCT
  SPACE
Well INTJ
suppose VERB
you PRON
're AUX
tired ADJ
and CCONJ
want VERB
to PART
go VERB
to ADP
bed NOUN
/ SYM
sleep NOUN
. PUNCT
BUT CCONJ
your PRON
head NOUN
is AUX
full ADJ
of ADP
niggling VERB
problems NOUN
to PART
resolve VERB
, PUNCT
you PRON
lay VERB
in ADP
thebed PROPN
, PUNCT
and CCONJ
quickly ADV
they PRON
all DET
come VERB
to ADP
the DET
surface NOUN
, PUNCT
churning VERB
around ADP
from ADP
oneunresolved VERB
thing NOUN
to ADP
the DET
next ADJ
and CCONJ
then ADV
back ADV
again ADV
. PUNCT
  SPACE
Been AUX
there ADV
, PUNCT
boughtthe NOUN
t PROPN
- PUNCT
shirt?I PROPN
slip VERB
on ADP
the DET
Zygon PROPN
and CCONJ
select VERB
a DET
soothing VERB
pattern NOUN
of ADP
light NOUN
& CCONJ
sound NOUN
, PUNCT
andquickly PROPN
I PRON
just ADV
ca AUX
n't PART
concentrate VERB
on ADP
the DET
previous ADJ
stuff NOUN
. PUNCT
Your PRON
brain'scache NOUN
kinda PROPN
get VERB
's PART
flushed ADJ
, PUNCT
and CCONJ
you PRON
start VERB
on ADP
a DET
whole ADJ
new ADJ
set NOUN
of ADP
stuff NOUN
. PUNCT
A DET
useful ADJ
addition NOUN
, PUNCT
is AUX
the DET
facility NOUN
to PART
feed VERB
the DET
output NOUN
of ADP
a DET
tape NOUN
playeror NOUN
CD NOUN
through ADP
the DET
box NOUN
, PUNCT
I PRON
use VERB
New PROPN
Age PROPN
elevator NOUN
muzak NOUN
to PART
enhance VERB
theoverall NOUN
effect NOUN
. PUNCT
DEFFO NOUN
better ADV
than SCONJ
a DET
pill NOUN
. PUNCT
Cheers PROPN
Nigel PROPN
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
   SPACE
* PUNCT
NIGEL PROPN
BALLARD PROPN
  SPACE
| ADP
INT PROPN
: PUNCT
nigel@dataman.demon.co.uk PROPN
| DET
      SPACE
I'M PROPN
PINK VERB
      SPACE
* PUNCT
   SPACE
* PUNCT
BOURNEMOUTH ADV
UK PROPN
| PROPN
CIS PROPN
: PUNCT
100015.2644 NUM
   SPACE
RADIO PROPN
- PUNCT
G1HOI PROPN
| PROPN
THEREFORE PROPN
I'M NOUN
SPAM VERB
* PUNCT
   SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59309From NUM
: SYM
n3022@cray.com X
( PUNCT
Jim PROPN
Knoll)Subject PROPN
: PUNCT
Patti PROPN
Duke PROPN
's PART
ProblemDoes PROPN
anyone PRON
have AUX
information NOUN
about ADP
the DET
struggles NOUN
that PRON
PattiDuke PROPN
went VERB
through ADP
in ADP
her PRON
personal ADJ
life NOUN
with ADP
severe ADJ
mood NOUN
swings NOUN
. PUNCT
Did AUX
she PRON
have AUX
some DET
form NOUN
of ADP
chemical ADJ
imbalance NOUN
that SCONJ
triggeredthese ADJ
problems NOUN
? PUNCT
  SPACE
I PRON
recall VERB
that SCONJ
she PRON
wrote VERB
a DET
book NOUN
about ADP
her PRON
troubles NOUN
. PUNCT
Does AUX
someone PRON
have AUX
the DET
title NOUN
of ADP
that DET
book?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59310From NUM
: PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)Subject PROPN
: PUNCT
tick PROPN
fever PROPN
( PUNCT
aka ADV
rocky ADJ
mtn PROPN
spotted)Any PROPN
rocky ADJ
mountain NOUN
spotted VERB
fever NOUN
experts NOUN
out ADV
there ADV
? PUNCT
The DET
doctor NOUN
thinks VERB
a DET
friend NOUN
might AUX
have AUX
this DET
. PUNCT
The DET
question NOUN
is AUX
, PUNCT
does AUX
n't PART
the DET
tick NOUN
have AUX
to PART
bite VERB
you PRON
? PUNCT
You PRON
frequently ADV
find VERB
a DET
tick NOUN
crawling VERB
on ADP
you PRON
after ADP
a DET
walkin NOUN
the DET
woods NOUN
around ADP
here ADV
, PUNCT
but CCONJ
you PRON
tend VERB
to PART
notice VERB
it PRON
beforeit PROPN
bites VERB
you PRON
; PUNCT
pulling VERB
one NUM
out SCONJ
of ADP
your PRON
skin NOUN
is AUX
somethingyou're PUNCT
not PART
likely ADJ
to PART
forget VERB
. PUNCT
Can AUX
you PRON
get AUX
the DET
fever NOUN
without ADP
it PRON
biting VERB
you PRON
? PUNCT
  SPACE
Do AUX
theysometimes NOUN
bite VERB
you PRON
and CCONJ
then ADV
let VERB
go VERB
so ADV
you PRON
do AUX
n't PART
realizeyou VERB
were AUX
bitten VERB
? PUNCT
  SPACE
I PRON
know VERB
they PRON
will AUX
let VERB
go VERB
once SCONJ
they PRON
've AUX
hadtheir NOUN
fill VERB
, PUNCT
but CCONJ
you PRON
certainly ADV
would AUX
notice VERB
this DET
( PUNCT
arggh).So ADV
how ADV
do AUX
you PRON
get AUX
the DET
fever NOUN
if SCONJ
you PRON
never ADV
pulled VERB
a DET
tickoff NOUN
yourself PRON
( PUNCT
as SCONJ
opposed VERB
to ADP
finding VERB
one NUM
merely ADV
crawlingon NOUN
you PRON
) PUNCT
? PUNCT
John PROPN
Eylesjge@cs.unc.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59311From NUM
: PUNCT
Renee VERB
< X
rme1@cornell.edu>Subject NOUN
: PUNCT
Chelation NOUN
therapyDoes VERB
anyone PRON
here ADV
know VERB
anything PRON
about ADP
chelation NOUN
therapy NOUN
using VERB
EDTA NOUN
? PUNCT
  SPACE
Myuncle PROPN
has AUX
emphesema NOUN
, PUNCT
and CCONJ
a DET
doctor NOUN
wants VERB
to PART
try VERB
it PRON
on ADP
him PRON
. PUNCT
  SPACE
We PRON
arewondering VERB
if:1 PROPN
. PUNCT
  SPACE
Is AUX
there PRON
any DET
evidence NOUN
EDTA VERB
chelation NOUN
therapy NOUN
is AUX
beneficial ADJ
for ADP
hiscondition NOUN
, PUNCT
or CCONJ
any DET
condition?2 PROPN
. PUNCT
  SPACE
What PRON
possible ADJ
side NOUN
effects NOUN
are AUX
there ADV
. PUNCT
  SPACE
How ADV
can AUX
they PRON
be AUX
mimimized?Please VERB
respond VERB
via ADP
e NOUN
- NOUN
mail NOUN
to ADP
    SPACE
rme1@cornell.eduThanks,ReneeNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59312From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Patti PROPN
Duke PROPN
's PART
ProblemIn NOUN
article NOUN
< X
1993Apr26.070649.2138@hemlock.cray.com PROPN
> X
n3022@cray.com PUNCT
writes:>Does VERB
anyone PRON
have AUX
information NOUN
about ADP
the DET
struggles NOUN
that SCONJ
Patti PROPN
> X
Duke PROPN
went VERB
through ADP
in ADP
her PRON
personal ADJ
life NOUN
with ADP
severe ADJ
mood NOUN
swings.>Did INTJ
she PRON
have AUX
some DET
form NOUN
of ADP
chemical ADJ
imbalance NOUN
that PRON
triggered VERB
> X
these DET
problems NOUN
? PUNCT
  SPACE
I PRON
recall VERB
that SCONJ
she PRON
wrote VERB
a DET
book NOUN
about ADP
her PRON
troubles.>Does ADV
someone PRON
have AUX
the DET
title NOUN
of ADP
that DET
book?She PROPN
's PART
published VERB
two NUM
books NOUN
about ADP
her PRON
manic ADJ
- PUNCT
depressive ADJ
illness NOUN
: PUNCT
_ DET
Call VERB
Me PRON
Anna PROPN
: PUNCT
the DET
Autobiography PROPN
of ADP
Patty PROPN
Duke PROPN
_ PROPN
, PUNCT
Patty PROPN
Duke PROPN
and CCONJ
Kenneth PROPN
Turan PROPN
, PUNCT
Bantam PROPN
Books PROPN
1987 NUM
and_A PROPN
Brilliant PROPN
Madness PROPN
: PUNCT
  SPACE
Living VERB
with ADP
Manic PROPN
- PUNCT
Depressive PROPN
Illness PROPN
_ NOUN
, PUNCT
Patty PROPN
Duke PROPN
and CCONJ
Gloria PROPN
Hochman PROPN
, PUNCT
Bantam PROPN
Books PROPN
1992 NUM
- PUNCT
-Barbara PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59313From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Annual ADJ
inguinal ADJ
hernia PROPN
repairIn PROPN
article NOUN
< X
jpc.735692207@avdms8.msfc.nasa.gov PROPN
> PROPN
, PUNCT
jpc@avdms8.msfc.nasa.gov(J. PROPN
Porter PROPN
Clark PROPN
) PUNCT
wrote:[synopsis PROPN
] PUNCT
Young ADJ
man NOUN
with ADP
inguianl PROPN
hernia PROPN
on ADP
one NUM
side NOUN
, PUNCT
repaired VERB
, PUNCT
now ADV
hasnew VERB
hernia PROPN
on ADP
other ADJ
side NOUN
. PUNCT
  SPACE
What PRON
gives VERB
, PUNCT
he PRON
asks VERB
? PUNCT
  SPACE
[ PUNCT
and CCONJ
he PRON
continues VERB
... PUNCT
] PUNCT
> X
Of ADV
course ADV
, PUNCT
my PRON
wife NOUN
thinks VERB
it PRON
's AUX
from ADP
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
> X
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
... PUNCT
There PRON
is AUX
the DET
possibility NOUN
that SCONJ
there PRON
is AUX
some DET
degree NOUN
of ADP
constipation NOUN
causingchronic NOUN
straining NOUN
which PRON
has AUX
caused VERB
the DET
bowel NOUN
movements NOUN
. PUNCT
  SPACE
The DET
classic ADJ
problems NOUN
that PRON
are AUX
supposed VERB
to PART
be AUX
looked VERB
for ADP
in ADP
someone PRON
with ADP
a DET
hernia PROPN
areconstipation NOUN
, PUNCT
chronic ADJ
cough NOUN
, PUNCT
colon NOUN
cancer NOUN
( PUNCT
and CCONJ
you PRON
're AUX
not PART
too ADV
young ADJ
forthat ADV
) PUNCT
and CCONJ
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
. PUNCT
Good ADJ
Luck PROPN
with ADP
your PRON
surgery!Steve ADJ
HollandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59314From NUM
: PUNCT
aj2a@galen.med.Virginia.EDU PROPN
( PUNCT
Amir PROPN
Anthony PROPN
Jazaeri)Subject NUM
: PUNCT
Re ADP
: PUNCT
Heat PROPN
Shock PROPN
Proteinsby PROPN
the DET
way NOUN
ms PROPN
. PROPN
olmstead PROPN
dna PROPN
is AUX
not PART
degraded VERB
in ADP
the DET
stomach NOUN
norunder NOUN
pH NOUN
of ADP
2 NUM
. PUNCT
  SPACE
its PRON
degraded VERB
in ADP
the DET
duodenum NOUN
under ADP
approx.neutral NOUN
pH NOUN
by ADP
DNAase PROPN
enzymes NOUN
secreted VERB
by ADP
the DET
pancreas NOUN
. PUNCT
  SPACE
mypoint PROPN
: PUNCT
  SPACE
check VERB
your PRON
facts NOUN
before ADP
yelling VERB
at ADP
other ADJ
people NOUN
for ADP
notdoing VERB
so ADV
. PUNCT
  SPACE
just ADV
a DET
friendly ADJ
suggestion.aaj NOUN
4/26/93Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59315From NUM
: PUNCT
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister)Subject PROPN
: PUNCT
Celery NOUN
and CCONJ
HypertensionSomewhere PROPN
or CCONJ
other ADJ
I PRON
read VERB
that SCONJ
when ADV
a DET
person NOUN
of ADP
Chinese ADJ
heritage NOUN
wastold VERB
that SCONJ
he PRON
had AUX
high ADJ
blood NOUN
pressure NOUN
he PRON
responded VERB
by ADP
eating VERB
celery(sorry PROPN
, PUNCT
I PRON
do AUX
n't PART
recall VERB
the DET
" PUNCT
dosage NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Apparently ADV
this DET
is AUX
supposed VERB
towork NOUN
in ADP
reducing VERB
hypertension NOUN
. PUNCT
Can AUX
anyone PRON
out ADV
there ADV
verify VERB
this DET
? PUNCT
  SPACE
And CCONJ
if SCONJ
it PRON
does AUX
work NOUN
, PUNCT
does AUX
anyoneknow VERB
the DET
appropriate ADJ
amounts NOUN
and CCONJ
possible ADJ
side NOUN
- PUNCT
effects?Thanks NOUN
, PUNCT
Leon PROPN
Traister PROPN
( PUNCT
lmtra@uts.amdahl.com)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59316From NUM
: PUNCT
draper@gnd1.wtp.gtefsd.com X
( PUNCT
PAM PROPN
DRAPER)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
93115.120409ICBAL@ASUACAD.BITNET NUM
> X
, PUNCT
< X
ICBAL@ASUACAD.BITNET ADP
> X
writes VERB
... PUNCT
>>>You PRON
might AUX
look VERB
for ADP
an DET
allergy ADJ
doctor NOUN
in ADP
your PRON
area NOUN
who PRON
uses VERB
sublingual ADJ
> X
drops NOUN
instead ADV
of ADP
shots NOUN
for ADP
treatment NOUN
. PUNCT
( PUNCT
You PRON
are AUX
given VERB
a DET
small ADJ
bottle NOUN
of ADP
> X
antigens NOUN
; PUNCT
3 NUM
drops NOUN
are AUX
placed VERB
under ADP
the DET
tongue NOUN
for ADP
5 NUM
minutes NOUN
. PUNCT
) PUNCT
MyThis DET
homeopathic ADJ
remedies NOUN
. PUNCT
  SPACE
I PRON
tried VERB
the DET
dander NOUN
one NUM
for ADP
a DET
month NOUN
. PUNCT
15 NUM
drops VERB
three NUM
times NOUN
a DET
day NOUN
. PUNCT
  SPACE
I PRON
did AUX
n't PART
notice VERB
any DET
change NOUN
what PRON
s VERB
so ADV
ever ADV
. PUNCT
  SPACE
How ADV
long ADV
were AUX
you PRON
using VERB
the DET
drops NOUN
before ADP
you PRON
noticed VERB
a DET
difference?For NOUN
me PRON
this DET
treatment NOUN
is AUX
more ADV
expensive ADJ
because SCONJ
my PRON
insurance NOUN
will AUX
cover VERB
tradiitional ADJ
medicine NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59317From NUM
: PUNCT
lumensa@lub001.lamar.eduSubject NOUN
: PUNCT
Precocious PROPN
Puberty PROPN
Am AUX
looking VERB
for ADP
network NOUN
access NOUN
to ADP
recent ADJ
research NOUN
into ADP
treatments NOUN
forprecocious ADJ
puberty NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
know VERB
of ADP
specifics NOUN
, PUNCT
would AUX
appreciate VERB
email NOUN
. PUNCT
I PRON
have AUX
plenty NOUN
of ADP
general ADJ
textbook NOUN
type NOUN
references NOUN
. PUNCT
  SPACE
Have AUX
a DET
niece NOUN
whosedaughter NOUN
is AUX
afflicted VERB
. PUNCT
  SPACE
The DET
mother NOUN
is AUX
an DET
RN PROPN
and CCONJ
has AUX
done VERB
a DET
ratherexhaustive ADJ
search NOUN
of ADP
printed VERB
material NOUN
. PUNCT
Pls INTJ
Email NOUN
suggestions NOUN
to ADP
lumensa@lub001.lamar.eduThanx.-- PROPN
------------------------------------------------------------------------Dale ADJ
Parish PROPN
- PUNCT
Orange PROPN
, PUNCT
Texas PROPN
            SPACE
| PROPN
Is AUX
the DET
surface NOUN
of ADP
a DET
planet NOUN
theLamar NOUN
's PART
Token PROPN
Perpetual PROPN
Student PROPN
        SPACE
| ADP
proper ADJ
place NOUN
for ADP
a DET
developing VERB
( PUNCT
409)745-(vox)3899;(rec)1581;dat(2507 NUM
) PUNCT
| PROPN
industrial ADJ
civilization?------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59318From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr26.103242.1@vms.ocom.okstate.edu ADV
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>are ADJ
in ADP
a DET
different ADJ
class NOUN
. PUNCT
  SPACE
The DET
big ADJ
question NOUN
seems VERB
to PART
be AUX
is AUX
it PRON
reasonable ADJ
to PART
> X
use VERB
them PRON
in ADP
patients NOUN
with ADP
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
that PRON
* PUNCT
could AUX
* PUNCT
be AUX
due ADJ
> X
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics?I PROPN
guess NOUN
I PRON
'm AUX
still ADV
not PART
clear ADJ
on ADP
what PRON
the DET
term NOUN
" PUNCT
candida PROPN
bloom PROPN
" PUNCT
means NOUN
, PUNCT
but CCONJ
certainly ADV
it PRON
is AUX
well ADV
known ADJ
that SCONJ
thrush ADJ
( PUNCT
superficial ADJ
candidalinfections NOUN
on ADP
mucous ADJ
membranes NOUN
) PUNCT
can AUX
occur VERB
after ADP
antibiotic ADJ
use NOUN
. PUNCT
This DET
has AUX
nothing PRON
to PART
do AUX
with ADP
systemic ADJ
yeast NOUN
syndrome NOUN
, PUNCT
the DET
" PUNCT
quack"diagnosis NOUN
that PRON
has AUX
been AUX
being AUX
discussed.>found VERB
in ADP
the DET
sinus PROPN
mucus PROPN
membranes NOUN
than SCONJ
is AUX
candida PROPN
. PUNCT
  SPACE
Women NOUN
have AUX
been AUX
known VERB
> X
for ADP
a DET
very ADV
long ADJ
time NOUN
to PART
suffer VERB
from ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
and CCONJ
a DET
> X
women NOUN
is AUX
lucky ADJ
to PART
find VERB
a DET
physician NOUN
who PRON
is AUX
willing ADJ
to PART
treat VERB
the DET
cause NOUN
and CCONJ
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams NOUN
. PUNCT
Lucky ADJ
how ADV
? PUNCT
  SPACE
Since SCONJ
a DET
recent ADJ
article NOUN
( PUNCT
randomized VERB
controlled VERB
trial NOUN
) PUNCT
oforal ADJ
yogurt PROPN
on ADP
reducing VERB
vaginal ADJ
candidiasis NOUN
, PUNCT
I PRON
've AUX
mentioned VERB
to ADP
a DET
number NOUN
of ADP
patients NOUN
with ADP
frequent ADJ
vaginal ADJ
yeast NOUN
infections NOUN
that PRON
theycould AUX
try VERB
eating VERB
6 NUM
ounces NOUN
of ADP
yogurt PROPN
daily ADV
. PUNCT
  SPACE
It PRON
turns VERB
out ADP
most ADJ
wouldrather NOUN
just ADV
use VERB
anti ADJ
- ADJ
fungal ADJ
creams NOUN
when ADV
they PRON
get VERB
yeast ADJ
infections.>yogurt ADJ
dangerous ADJ
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
infections NOUN
should AUX
decline VERB
. PUNCT
Again ADV
, PUNCT
this DET
just ADV
is AUX
n't PART
what PRON
the DET
systemic ADJ
yeast NOUN
syndrome NOUN
is AUX
about ADV
, PUNCT
andhas VERB
nothing PRON
to PART
do AUX
with ADP
the DET
quack ADJ
therapies NOUN
that PRON
were AUX
being AUX
discussed VERB
. PUNCT
There PRON
is AUX
some DET
evidence NOUN
that PRON
attempts VERB
to PART
reinoculate VERB
the DET
GI PROPN
tract NOUN
withbacteria NOUN
after ADP
antibiotic ADJ
therapy NOUN
do AUX
n't PART
seem VERB
to PART
be AUX
very ADV
helpful ADJ
inreducing VERB
diarrhea NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
think VERB
anyone PRON
would AUX
view VERB
this DET
as SCONJ
aquack NOUN
therapy.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59319From NUM
: PUNCT
rhaller@ns.uoregon.edu PROPN
( PUNCT
Rich PROPN
Haller)Subject NUM
: PUNCT
Resound PROPN
Hearing PROPN
aids VERB
( PUNCT
and CCONJ
others)I NOUN
have AUX
a DET
fairly ADV
severe ADJ
high ADJ
frequency NOUN
hearing NOUN
loss NOUN
. PUNCT
A DET
recent ADJ
rough NOUN
testshowed VERB
a DET
gently ADV
sloping VERB
loss NOUN
to ADP
10 NUM
- PUNCT
20db NOUN
down ADV
at ADP
1000cps NUM
. PUNCT
Then ADV
it PRON
falls VERB
offa ADJ
cliff NOUN
to ADP
70 NUM
- PUNCT
80dbs NOUN
down ADV
from ADP
1500cps NUM
on ADP
. PUNCT
  SPACE
This DET
type NOUN
of ADP
loss NOUN
is AUX
difficultto ADJ
fit NOUN
. PUNCT
I PRON
am AUX
currently ADV
using VERB
some DET
old ADJ
siemens NOUN
behind ADP
the DET
ear PROPN
aids PROPN
whichkeep VERB
me PRON
roughly ADV
functional ADJ
, PUNCT
but CCONJ
leave VERB
a DET
lot NOUN
to PART
be AUX
desired VERB
. PUNCT
Recently ADV
I PRON
had AUX
an DET
opportunity NOUN
to PART
test VERB
the DET
Widex PROPN
Q8 PROPN
behind ADP
the DET
ear NOUN
aids VERB
forseveral ADJ
weeks NOUN
. PUNCT
These DET
have AUX
four NUM
independent ADJ
programs NOUN
which PRON
are AUX
intended VERB
tobe NOUN
customized VERB
for ADP
different ADJ
hearing NOUN
situations NOUN
and CCONJ
can AUX
be AUX
reprogramed VERB
. PUNCT
Ifound VERB
them PRON
to PART
be AUX
a DET
definite ADJ
improvement NOUN
over ADP
my PRON
current ADJ
aids NOUN
and CCONJ
was AUX
aboutto NOUN
go VERB
ahead ADV
with ADP
them PRON
until ADP
another DET
local ADJ
outfit NOUN
advertised VERB
a DET
free ADJ
trial NOUN
ofanother ADJ
programmable ADJ
system NOUN
called VERB
ReSound PROPN
. PUNCT
Unfortunately ADV
I PRON
was AUX
only ADV
able ADJ
to PART
try VERB
the DET
ReSound PROPN
aids NOUN
in ADP
their PRON
office NOUN
forabout ADV
30 NUM
minutes NOUN
and CCONJ
I PRON
could AUX
n't PART
compare VERB
them PRON
' PUNCT
head NOUN
to PART
head VERB
' PUNCT
with ADP
the DET
Widex PROPN
. PUNCT
Nevertheless ADV
, PUNCT
it PRON
did AUX
appear VERB
to ADP
me PRON
that SCONJ
they PRON
were AUX
superior ADJ
and CCONJ
I PRON
wasimpressed VERB
by ADP
what PRON
I PRON
was AUX
able ADJ
to PART
read VERB
about ADP
the DET
theory NOUN
behind ADP
them PRON
which PRON
Iwill PROPN
give VERB
in ADP
a DET
separate ADJ
posting NOUN
. PUNCT
They PRON
also ADV
carry VERB
the DET
Widex PROPN
aids NOUN
and CCONJ
had AUX
onepatient VERB
( PUNCT
presumably ADV
wealthy ADJ
) PUNCT
who PRON
decided VERB
to PART
go VERB
ahead ADV
and CCONJ
get AUX
the DET
ReSoundeven PROPN
though SCONJ
he PRON
had AUX
purchased VERB
the DET
Widex PROPN
only ADV
6 NUM
months NOUN
ago ADV
. PUNCT
The DET
problem NOUN
is AUX
that SCONJ
the DET
ReSound PROPN
aids NOUN
are AUX
about ADV
twice ADV
as ADV
expensive ADJ
as SCONJ
theWidex ADJ
and CCONJ
other ADJ
programmable ADJ
aids NOUN
. PUNCT
I PRON
could AUX
take VERB
a DET
trip NOUN
to ADP
Europe PROPN
on ADP
thedifference NOUN
! PUNCT
  SPACE
Being AUX
a DET
lover NOUN
of ADP
bargains NOUN
and CCONJ
hating VERB
to PART
spend VERB
money NOUN
, PUNCT
I PRON
amhaving VERB
a DET
hard ADJ
time NOUN
persuading VERB
myself PRON
to PART
go VERB
with ADP
the DET
ReSounds PROPN
. PUNCT
I PRON
wouldappreciate VERB
any DET
opinions NOUN
on ADP
this DET
and CCONJ
other ADJ
hearing NOUN
aids NOUN
and CCONJ
projectionsabout NOUN
when ADV
and CCONJ
if SCONJ
I PRON
might AUX
see VERB
improvements NOUN
in ADP
technology NOUN
that PRON
are AUX
n't PART
quiteso VERB
expensive.-Rich NUM
Haller PROPN
< X
rhaller@ns.uoregon.edu PROPN
> X
   SPACE
University PROPN
of ADP
Oregon PROPN
, PUNCT
Eugene PROPN
, PUNCT
OR CCONJ
, PUNCT
USANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59320From NUM
: PUNCT
andersom@spot NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Marc PROPN
Anderson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Discussions NOUN
on ADP
alt.psychoactivesIn PROPN
article NOUN
< X
0fpzY=S00WBOM2Vn1u@andrew.cmu.edu ADJ
> X
" PUNCT
Charles PROPN
D. PROPN
Nichols PROPN
" PUNCT
< X
cn0p+@andrew.cmu.edu INTJ
> X
writes:>>From PROPN
: PUNCT
herzog@sierra.lbl.gov PROPN
( PUNCT
Hanan PROPN
Herzog)>>Subject VERB
: PUNCT
Discussions NOUN
on ADP
alt.psychoactives>>Date NOUN
: PUNCT
20 NUM
Apr PROPN
1993 NUM
19:16:25 NUM
GMT PROPN
> X
> X
> X
> X
Could AUX
the DET
people NOUN
discussing VERB
recreational ADJ
drugs NOUN
such ADJ
as SCONJ
mj PROPN
, PUNCT
lsd NOUN
, PUNCT
mdma NOUN
, PUNCT
etc X
. PUNCT
,>>take PUNCT
their PRON
discussions NOUN
to ADP
alt.drugs PROPN
? PUNCT
Their PRON
discussions NOUN
will AUX
receive VERB
greatest>>contribution NOUN
and CCONJ
readership NOUN
there ADV
. PUNCT
The DET
people NOUN
interested ADJ
in ADP
strictly>>"smart PROPN
drugs NOUN
" PUNCT
( PUNCT
i.e. X
Nootropics PROPN
) PUNCT
should AUX
post VERB
to ADP
this DET
group NOUN
. PUNCT
The DET
two NUM
groups>>(alt.drugs PROPN
& CCONJ
alt.psychoactives PROPN
) PUNCT
have AUX
been AUX
used VERB
interchangably ADV
lately.>>I NOUN
do AUX
think VERB
that SCONJ
alt.psychoactives NOUN
is AUX
a DET
deceiving VERB
name NOUN
. PUNCT
alt.psychoactives>>is X
supposedly ADV
the DET
" PUNCT
smart ADJ
drug NOUN
" PUNCT
newsgroup NOUN
according VERB
to ADP
newsgroup PROPN
lists NOUN
on>>the DET
Usenet PROPN
. PUNCT
Should AUX
we PRON
establish VERB
an DET
alt.nootropics NOUN
or CCONJ
alt.sdn ADJ
( PUNCT
smart ADJ
drugs NOUN
& CCONJ
> X
> X
nutrients PROPN
) PUNCT
? PUNCT
I PRON
have AUX
noticed VERB
some DET
posts NOUN
in ADP
sci.med.nutrition NOUN
regarding>>"smart NOUN
nutrients NOUN
. PUNCT
" PUNCT
We PRON
may AUX
lower VERB
that SCONJ
groups NOUN
burden VERB
as SCONJ
well.>>I PROPN
beg VERB
to PART
disagree VERB
with ADP
you PRON
on ADP
this DET
subject NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
recall VERB
correctly,>alt.drugs PROPN
was AUX
being AUX
flodded VERB
by ADP
posts NOUN
like SCONJ
" PUNCT
how ADV
do AUX
I PRON
grow VERB
MJ PROPN
" PUNCT
" PUNCT
How ADV
do AUX
I PRON
> ADV
use VERB
a DET
bong NOUN
? PUNCT
" PUNCT
" PUNCT
wow INTJ
, PUNCT
man INTJ
, PUNCT
I PRON
just ADV
had AUX
the DET
coolest ADJ
trip NOUN
" PUNCT
etc X
... PUNCT
  SPACE
There PRON
were AUX
> X
quite DET
a DET
few ADJ
people NOUN
out SCONJ
there ADV
who PRON
were AUX
versed VERB
in ADP
pharmacology NOUN
and CCONJ
biology NOUN
> X
who PRON
wanted VERB
to PART
discuss VERB
centrally ADV
active ADJ
substabces NOUN
at ADP
a DET
higher ADJ
level NOUN
> X
without ADP
all DET
the DET
other ADJ
crap NOUN
filling VERB
the DET
bandwidth NOUN
. PUNCT
    SPACE
I PRON
would AUX
suggest VERB
> X
that SCONJ
you PRON
proceed VERB
to PART
create VERB
a DET
newsgroup NOUN
dedicated VERB
to ADP
Nootropics PROPN
if SCONJ
you PRON
> PUNCT
must AUX
have AUX
one NUM
dedicated VERB
to ADP
them PRON
, PUNCT
and CCONJ
leave VERB
alt.psychoactives PROPN
to ADP
the DET
> X
discussion NOUN
of ADP
psychoactives NOUN
( PUNCT
including VERB
nootropics NOUN
, PUNCT
which PRON
are AUX
but CCONJ
a DET
small ADJ
> X
portion NOUN
of ADP
the DET
realm NOUN
of ADP
centrally ADV
active ADJ
substances).I NUM
was AUX
wondering VERB
if SCONJ
a DET
group NOUN
called VERB
' PUNCT
sci.pharmacology NOUN
' PUNCT
would AUX
be AUX
relevent ADJ
. PUNCT
This DET
would AUX
be AUX
used VERB
for ADP
a DET
more ADV
formal ADJ
discussion NOUN
about ADP
pharmacologicalissues NOUN
( PUNCT
pharmacodynamics NOUN
, PUNCT
neuropharmacology NOUN
, PUNCT
etc.)Just PROPN
an DET
informal ADJ
proposal NOUN
( PUNCT
I PRON
do AUX
n't PART
know VERB
anything PRON
about ADP
the DET
net.politicsfor NOUN
adding VERB
a DET
newsgroup NOUN
, PUNCT
etc.)[more NOUN
alt.psychoactives PROPN
stuff NOUN
deleted]-marcandersom@spot.colorado.eduNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59321From NUM
: PUNCT
rhaller@ns.uoregon.edu PROPN
( PUNCT
Rich PROPN
Haller)Subject NUM
: PUNCT
ReSound PROPN
hearing VERB
aid NOUN
theory NOUN
as SCONJ
I PRON
understand VERB
itThe NOUN
following VERB
is AUX
based VERB
on ADP
copies NOUN
I PRON
was AUX
given VERB
of ADP
some DET
articles NOUN
published VERB
inHearing PROPN
Instruments PROPN
. PUNCT
I PRON
would AUX
appreciate VERB
any DET
comments NOUN
about ADP
this DET
and CCONJ
other'new NOUN
' PUNCT
technology NOUN
for ADP
hearing VERB
aids NOUN
. PUNCT
The DET
ReSound PROPN
system NOUN
was AUX
developed VERB
on ADP
the DET
basis NOUN
of ADP
some DET
research NOUN
at ADP
AT&T PROPN
andappears NOUN
to PART
take VERB
a DET
different ADJ
approach NOUN
from ADP
other ADJ
aids NOUN
. PUNCT
It PRON
appears VERB
to ADP
me PRON
thata VERB
new ADJ
' PUNCT
programmable ADJ
' PUNCT
aid NOUN
like SCONJ
the DET
Widex PROPN
just ADV
uses VERB
a DET
more ADV
flexible ADJ
( PUNCT
andprogrammable ADJ
) PUNCT
version NOUN
of ADP
the DET
classical ADJ
approach NOUN
of ADP
amplifying VERB
some DET
parts NOUN
ofthe VERB
spectrum NOUN
more ADJ
than SCONJ
others NOUN
and CCONJ
adding VERB
some DET
compression NOUN
to PART
try VERB
and CCONJ
helpout VERB
in ADP
' PUNCT
noisy ADJ
' PUNCT
situations NOUN
. PUNCT
The DET
major ADJ
difference NOUN
in ADP
the DET
ReSound PROPN
approach NOUN
is AUX
that SCONJ
it PRON
divides VERB
thespectrum NOUN
into ADP
low ADJ
and CCONJ
high ADJ
frequencies NOUN
( PUNCT
splitting NOUN
point NOUN
is AUX
programmable),apparently ADV
based VERB
on ADP
the DET
fact NOUN
that SCONJ
lots NOUN
of ADP
vowel NOUN
information NOUN
can AUX
be AUX
found VERB
inthe DET
low ADJ
frequencies NOUN
, PUNCT
while SCONJ
the DET
important ADJ
consonant NOUN
information(unfortunately ADV
for ADP
me PRON
) PUNCT
is AUX
in ADP
the DET
high ADJ
frequencies NOUN
. PUNCT
The DET
two NUM
bands NOUN
then ADV
aretreated VERB
with ADP
different ADJ
compression NOUN
schemes NOUN
which PRON
are AUX
programable ADJ
. PUNCT
They PRON
havealso ADV
developed VERB
a DET
new ADJ
fitting ADJ
algorythm NOUN
that PRON
builds VERB
on ADP
what PRON
they PRON
call'abnormal VERB
growth NOUN
of ADP
loudness' PROPN
. PUNCT
This DET
latter NOUN
is AUX
interesting ADJ
and CCONJ
fits VERB
my PRON
own ADJ
personal ADJ
experience NOUN
, PUNCT
though SCONJ
Ithink PROPN
the DET
phrase NOUN
is AUX
missleading VERB
. PUNCT
What PRON
appears VERB
to PART
be AUX
the DET
case NOUN
is AUX
that SCONJ
as SCONJ
youexceed NOUN
the DET
minimum NOUN
threshold NOUN
for ADP
a DET
person NOUN
with ADP
hearing VERB
loss NOUN
, PUNCT
the DET
deficitbecomes NOUN
progresslively ADV
less ADV
compared VERB
to ADP
normals NOUN
and CCONJ
by ADP
the DET
time NOUN
you PRON
reachthe VERB
' PUNCT
too ADV
loud ADJ
' PUNCT
point NOUN
the DET
sensitivity NOUN
curves NOUN
appear VERB
to PART
converge VERB
. PUNCT
  SPACE
This DET
meansthat NOUN
if SCONJ
you PRON
just ADV
boost VERB
all DET
sound NOUN
levels NOUN
, PUNCT
you PRON
are AUX
overloading VERB
at ADP
the DET
highend NOUN
for ADP
people NOUN
with ADP
hearing NOUN
losses NOUN
. PUNCT
Hence ADV
what PRON
you PRON
want VERB
is AUX
progressivelyless ADJ
amplification NOUN
as SCONJ
the DET
signal NOUN
get VERB
closer ADJ
to ADP
the DET
maximum ADJ
tolerable ADJ
point NOUN
. PUNCT
You PRON
want VERB
to PART
boost VERB
low ADJ
volume NOUN
sounds VERB
more ADJ
than SCONJ
high ADJ
and CCONJ
do AUX
so ADV
potentiallydifferently ADV
for ADP
the DET
low ADJ
and CCONJ
high ADJ
frequency NOUN
parts NOUN
of ADP
the DET
spectrum NOUN
( PUNCT
speciallyfor ADP
someone PRON
like SCONJ
me PRON
who PRON
is AUX
relatively ADV
normal ADJ
up ADP
to PART
1000 NUM
cps NOUN
and CCONJ
then ADV
fallsoff VERB
a DET
cliff).Aids NOUN
with ADP
simple ADJ
compressors NOUN
do AUX
n't PART
descriminate VERB
between ADP
energy NOUN
in ADP
the DET
lowand ADJ
high ADJ
frequencies NOUN
and CCONJ
can AUX
therefor VERB
' PUNCT
compress ADJ
' PUNCT
useful ADJ
high ADJ
frequencyinformation NOUN
because SCONJ
of ADP
high ADJ
volume NOUN
of ADP
low ADJ
frequency NOUN
components NOUN
. PUNCT
Particularly ADV
impressive ADJ
was AUX
the DET
ReSound PROPN
performance NOUN
with ADP
whispered VERB
speechand NOUN
in ADP
simulated VERB
restaurant NOUN
noise NOUN
situations NOUN
. PUNCT
-Rich PUNCT
Haller PROPN
< X
rhaller@ns.uoregon.edu PROPN
> X
   SPACE
University PROPN
of ADP
Oregon PROPN
, PUNCT
Eugene PROPN
, PUNCT
OR CCONJ
, PUNCT
USANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59322From NUM
: PUNCT
nodrog@hardy.u.washington.edu PROPN
( PUNCT
Gordon PROPN
Rubenfeld)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
Fictionbanschbach@vms.ocom.okstate.edu PROPN
writes:>to PROPN
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
  SPACE
Gorden PROPN
> X
Rubenfeld PROPN
, PUNCT
through ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
has AUX
assured VERB
me PRON
that SCONJ
most ADJ
physicians NOUN
recognize VERB
> X
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
occuring VERB
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
> X
and CCONJ
they PRON
therefore ADV
reinnoculate VERB
their PRON
patients NOUN
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
to PART
> PROPN
restore PROPN
competetion NOUN
for ADP
candida PROPN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believe VERB
that SCONJ
this DET
is AUX
> X
yet ADV
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
. PUNCT
    SPACE
Nor CCONJ
is AUX
it PRON
mine ADJ
. PUNCT
  SPACE
What PRON
I PRON
tried VERB
to PART
explain VERB
to ADP
Marty PROPN
was AUX
that SCONJ
it PRON
is AUX
clearlyunderstood NOUN
that SCONJ
antibiotic ADJ
exposure NOUN
is AUX
a DET
risk NOUN
factor NOUN
for ADP
fungal PROPN
infections- NOUN
which PRON
is AUX
not PART
the DET
same ADJ
as SCONJ
saying VERB
bacteria NOUN
prevent VERB
fungal PROPN
infections NOUN
. PUNCT
Marty PROPN
made VERB
this DET
sound NOUN
like SCONJ
a DET
secret ADJ
  SPACE
known VERB
only ADV
to ADP
veternarians NOUN
andbiochemists NOUN
. PUNCT
  SPACE
Anyone PRON
who PRON
has AUX
treated VERB
a DET
urinary ADJ
tract NOUN
infection NOUN
knownsthis NOUN
. PUNCT
At ADP
some DET
centers NOUN
pre VERB
- ADJ
op ADJ
liver NOUN
transplant NOUN
patients NOUN
receive VERB
boweldecontamination NOUN
directed VERB
at ADP
retaining VERB
" PUNCT
good ADJ
" PUNCT
anaerobic ADJ
flora PROPN
in ADP
an DET
attemptto PROPN
prevent PROPN
fungal PROPN
colonization PROPN
in ADP
this DET
soon ADV
- PUNCT
to PART
- PUNCT
be AUX
high ADJ
risk NOUN
group NOUN
. PUNCT
  SPACE
I PRON
alsouse VERB
lactobacillus NOUN
to PART
treat VERB
enteral ADJ
nutrition NOUN
associated PROPN
diarrhea PROPN
( PUNCT
that SCONJ
maybe ADV
in ADP
part NOUN
due ADJ
to ADP
alterations NOUN
in ADP
gut PROPN
flora PROPN
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
it PRON
is AUX
NOT ADV
part NOUN
ofmy PROPN
routine ADJ
practice NOUN
to PART
" PUNCT
reinnoculate VERB
" PUNCT
patients NOUN
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
afterantibiotics NOUN
. PUNCT
  SPACE
I PRON
have AUX
seen VERB
no DET
data NOUN
on ADP
this DET
practice NOUN
preventing VERB
or CCONJ
treatingfungal ADJ
infections NOUN
in ADP
at ADP
risk NOUN
patients NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
it PRON
is AUX
a DET
" PUNCT
logicalextension NOUN
" PUNCT
from ADP
the DET
available ADJ
observations NOUN
I PRON
'll AUX
leave VERB
to ADP
those DET
of ADP
you PRON
whobase VERB
strong ADJ
opinions NOUN
and CCONJ
argue VERB
over ADP
such ADJ
speculations NOUN
in ADP
the DET
absence NOUN
ofclinical ADJ
trials NOUN
. PUNCT
   SPACE
One NUM
place NOUN
such ADJ
therapy NOUN
has AUX
been AUX
described VERB
is AUX
in ADP
treating VERB
particularlyrecalcitrant ADJ
cases NOUN
of ADP
C. PROPN
difficile ADJ
colitis NOUN
( PUNCT
NOT ADV
a DET
fungal ADJ
infection NOUN
) PUNCT
. PUNCT
Thereare PROPN
case NOUN
reports VERB
of ADP
using VERB
stool NOUN
( PUNCT
ie X
someone PRON
elses NOUN
) PUNCT
enemas NOUN
to PART
repopulatethe VERB
patients NOUN
flora PROPN
. PUNCT
  SPACE
Do AUX
n't PART
try VERB
this DET
at ADP
home NOUN
. PUNCT
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
  SPACE
Since SCONJ
candida PROPN
> X
colonizes VERB
primarily ADV
in ADP
the DET
ano NOUN
- PUNCT
rectal ADJ
area NOUN
, PUNCT
GI PROPN
symptoms NOUN
should AUX
be AUX
more ADV
common ADJ
> X
than SCONJ
vaginal ADJ
problems NOUN
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
. PUNCT
  SPACE
Except SCONJ
that SCONJ
it PRON
is AUX
n't PART
. PUNCT
At ADP
least ADJ
symptomatically ADV
apparent ADJ
disease.>Medicine PROPN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There ADV
> X
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
> X
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
> X
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
> X
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
> X
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to ADP
> X
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
> X
Medicine PROPN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
> X
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
> X
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
  SPACE
Seems VERB
like SCONJ
this DET
is AUX
an DET
excellent ADJ
argument NOUN
for ADP
ignoring VERB
anecdotalconventional ADJ
wisdom NOUN
( PUNCT
a DET
euphemism NOUN
for ADP
no DET
data NOUN
) PUNCT
and CCONJ
doing VERB
a DET
good ADJ
clinicaltrial NOUN
, PUNCT
like SCONJ
: PUNCT
AU PROPN
   SPACE
Dismukes PROPN
- PUNCT
W PROPN
- PUNCT
E. PROPN
  SPACE
Wade PROPN
- PUNCT
J PROPN
- PUNCT
S. PROPN
  SPACE
Lee PROPN
- PUNCT
J PROPN
- PUNCT
Y. PROPN
  SPACE
Dockery PROPN
- PUNCT
B PROPN
- PUNCT
K. PROPN
  SPACE
Hain PROPN
- PUNCT
J PROPN
- PUNCT
D.TI PROPN
   SPACE
A DET
randomized ADJ
, PUNCT
double ADJ
- PUNCT
blind ADJ
trial NOUN
of ADP
nystatin PROPN
therapy NOUN
for ADP
the DET
     SPACE
candidiasis NOUN
hypersensitivity NOUN
syndrome NOUN
[ PUNCT
see VERB
comments]SO PROPN
   SPACE
N PROPN
- PUNCT
Engl PROPN
- PUNCT
J PROPN
- PUNCT
Med PROPN
. PUNCT
  SPACE
1990 NUM
Dec PROPN
20 NUM
. PUNCT
  SPACE
323(25 NUM
) PUNCT
. PUNCT
  SPACE
P NOUN
1717 NUM
- SYM
23 NUM
. PUNCT
     SPACE
psychological ADJ
tests NOUN
. PUNCT
RESULTS PROPN
. PUNCT
The DET
three NUM
active ADJ
- PUNCT
treatment NOUN
regimens NOUN
     SPACE
and CCONJ
the DET
all ADV
- PUNCT
placebo NOUN
regimen NOUN
     SPACE
significantly ADV
reduced VERB
both CCONJ
vaginal ADJ
and CCONJ
systemic ADJ
symptoms NOUN
( PUNCT
P NOUN
less ADJ
than SCONJ
     SPACE
0.001 NUM
) PUNCT
, PUNCT
but CCONJ
nystatin PROPN
did AUX
not PART
reduce VERB
the DET
systemic ADJ
symptoms NOUN
     SPACE
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
[ PUNCT
. PUNCT
. PUNCT
. PUNCT
] PUNCT
     SPACE
CONCLUSIONS PROPN
. PUNCT
In ADP
women NOUN
with ADP
presumed ADJ
candidiasis NOUN
     SPACE
hypersensitivity NOUN
syndrome NOUN
, PUNCT
nystatin PROPN
does AUX
not PART
reduce VERB
systemic ADJ
or CCONJ
     SPACE
psychological ADJ
symptoms NOUN
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
Consequently ADV
, PUNCT
     SPACE
the DET
empirical ADJ
recommendation NOUN
of ADP
long ADJ
- PUNCT
term NOUN
nystatin PROPN
therapy NOUN
for ADP
such ADJ
     SPACE
women NOUN
appears VERB
to PART
be AUX
unwarranted ADJ
. PUNCT
  SPACE
Does AUX
this DET
trial NOUN
address NOUN
every DET
issue NOUN
raised VERB
here ADV
, PUNCT
no INTJ
. NOUN
  SPACE
Jon PROPN
Noring PROPN
was AUX
notsurprised VERB
at ADP
this DET
negative ADJ
trial NOUN
since SCONJ
they PRON
did AUX
n't PART
use VERB
* PUNCT
Sporanox PROPN
* PUNCT
( PUNCT
despiteCrook PROPN
's PART
recommendation NOUN
for ADP
Nystatin PROPN
) PUNCT
. PUNCT
  SPACE
Maybe ADV
they PRON
did AUX
n't PART
avoid VERB
thosecarbohydrates NOUN
. PUNCT
. PUNCT
. PUNCT
> X
The DET
conventional ADJ
wisdom NOUN
in ADP
animal NOUN
husbandry NOUN
has AUX
been AUX
that SCONJ
animals NOUN
need VERB
to PART
> X
be AUX
reinnoculated VERB
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
after ADP
coming VERB
off ADP
antibiotic ADJ
therapy.>If PROPN
it PRON
makes VERB
sense NOUN
for ADP
livestock NOUN
, PUNCT
why ADV
does AUX
n't PART
it PRON
make VERB
sense NOUN
for ADP
humans NOUN
> X
David PROPN
? PUNCT
  SPACE
We PRON
are AUX
not PART
talking VERB
about ADP
a DET
dangerous ADJ
treatment(unless NOUN
you PRON
consider VERB
> X
yogurt PROPN
dangerous PROPN
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
infections NOUN
should AUX
decline VERB
. PUNCT
  SPACE
Marty PROPN
, PUNCT
you PRON
've AUX
also ADV
changed VERB
the DET
terrain NOUN
of ADP
the DET
discussion NOUN
from ADP
empiricitraconazole NOUN
for ADP
undocumented ADJ
chronic ADJ
fungal PROPN
sinusitis NOUN
with ADP
systemichypersensitivity NOUN
symptoms NOUN
( PUNCT
Noring VERB
syndrome NOUN
) PUNCT
to ADP
the DET
yoghurt PROPN
and CCONJ
vitamintherapy NOUN
of ADP
undocumented ADJ
candida PROPN
enteritis NOUN
( PUNCT
Elaine PROPN
Palmer PROPN
syndrome NOUN
) PUNCT
withsystemic ADJ
symptoms NOUN
. PUNCT
  SPACE
There PRON
is AUX
significant ADJ
difference NOUN
between ADP
the DET
cost NOUN
andrisk NOUN
of ADP
these DET
two NUM
empiric ADJ
therapeutic ADJ
trials NOUN
. PUNCT
  SPACE
Are AUX
we PRON
talking VERB
about ADP
" PUNCT
real"candida PROPN
infections NOUN
, PUNCT
the DET
whole ADJ
" PUNCT
yeast NOUN
connection NOUN
" PUNCT
hypothesis NOUN
, PUNCT
the DET
efficacyof PROPN
routine PROPN
bacterial ADJ
repopulation NOUN
in ADP
humans NOUN
, PUNCT
or CCONJ
the DET
ability NOUN
of ADP
anecdotallyeffective ADJ
therapies NOUN
( PUNCT
challenged VERB
by ADP
a DET
negative ADJ
randomized VERB
trial NOUN
) PUNCT
to PART
confirman VERB
etiologic ADJ
hypothesis NOUN
( PUNCT
post PROPN
hoc X
ergo PROPN
propter PROPN
hoc PROPN
) PUNCT
. PUNCT
  SPACE
We PRON
ca AUX
n't PART
seem VERB
tofocus NOUN
in ADP
on ADP
a DET
disease NOUN
, PUNCT
a DET
therapy NOUN
, PUNCT
or CCONJ
a DET
hypothesis NOUN
under ADP
discussion NOUN
. PUNCT
                                      SPACE
I PRON
'm AUX
lost!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59323From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject PROPN
: PUNCT
PMS PROPN
- PUNCT
Can AUX
It PRON
Be AUX
Prevented VERB
By ADP
A PROPN
Diet PROPN
Change?This PART
question NOUN
came VERB
up ADP
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
and CCONJ
I PRON
'm AUX
posting VERB
my PRON
answer NOUN
here ADV
. PUNCT
  SPACE
Only ADV
22 NUM
medical ADJ
schools NOUN
in ADP
the DET
U.S. PROPN
teach VERB
courses NOUN
on ADP
human ADJ
nutrition NOUN
. PUNCT
  SPACE
We PRON
have AUX
already ADV
seen VERB
what PRON
a DET
lack NOUN
of ADP
nutrition NOUN
education NOUN
can AUX
do AUX
when ADV
candida PROPN
and CCONJ
kidney NOUN
stones NOUN
present VERB
themselves PRON
to ADP
the DET
medical ADJ
community NOUN
. PUNCT
I PRON
think VERB
that SCONJ
the DET
best ADJ
example NOUN
of ADP
where ADV
U.S. PROPN
medicine NOUN
is AUX
really ADV
missing VERB
the DET
mark NOUN
when ADV
it PRON
comes VERB
to ADP
a DET
knowledge NOUN
of ADP
nutrition NOUN
is AUX
PMS PROPN
. PUNCT
  SPACE
So ADV
many ADJ
women(and PUNCT
their PRON
husbands NOUN
) PUNCT
suffer VERB
from ADP
this DET
disorder NOUN
that SCONJ
it PRON
is AUX
really ADV
criminal ADJ
that SCONJ
most ADJ
physicians NOUN
in ADP
the DET
U.S. PROPN
are AUX
not PART
taught VERB
that SCONJ
PMS PROPN
is AUX
primarily ADV
caused VERB
by ADP
diet NOUN
and CCONJ
diet NOUN
changes NOUN
can AUX
prevent VERB
it PRON
from ADP
ever ADV
happpening VERB
. PUNCT
  SPACE
Before ADP
shooting VERB
your PRON
flames NOUN
, PUNCT
read VERB
the DET
entire ADJ
article NOUN
and CCONJ
then ADV
decide VERB
if SCONJ
flaming NOUN
is AUX
justified ADJ
. PUNCT
From ADP
A DET
Poster NOUN
In ADP
Sci PROPN
. PUNCT
Medi PROPN
. PUNCT
Nutrition NOUN
: PUNCT
> X
	 SPACE
In ADP
a DET
psychological ADJ
anthropology NOUN
course NOUN
I PRON
am AUX
taking VERB
, PUNCT
we PRON
got VERB
> X
sidetracked VERB
onto ADP
a DET
short ADJ
conversation NOUN
about ADP
PMS PROPN
. PUNCT
  SPACE
Some DET
rumors NOUN
shared VERB
> X
by ADP
several ADJ
of ADP
the DET
students NOUN
included VERB
ideas NOUN
that SCONJ
vitamin NOUN
levels NOUN
, PUNCT
sugar NOUN
> X
intake NOUN
, PUNCT
and CCONJ
caffeine NOUN
intake NOUN
might AUX
affect VERB
PMS PROPN
symptoms NOUN
. PUNCT
> X
	 SPACE
Is AUX
there PRON
any DET
data NOUN
on ADP
this DET
, PUNCT
or CCONJ
is AUX
it PRON
just ADV
so ADV
much ADJ
hooey NOUN
? PUNCT
> X
> X
Many ADJ
thanks NOUN
, PUNCT
> X
> X
Michael PROPN
, PUNCT
I PRON
've AUX
wanted VERB
to PART
reply VERB
to ADP
this DET
post NOUN
ever ADV
since SCONJ
I PRON
saw VERB
it PRON
but CCONJ
I PRON
got VERB
side NOUN
- PUNCT
tracked VERB
with ADP
candida PROPN
. PUNCT
  SPACE
PMS PROPN
is AUX
a DET
lot NOUN
like SCONJ
Candida PROPN
blooms NOUN
, PUNCT
most ADJ
physicians NOUN
do AUX
n't PART
recognize VERB
it PRON
as SCONJ
a DET
specific ADJ
" PUNCT
disease NOUN
" PUNCT
entity NOUN
. PUNCT
  SPACE
Here ADV
is AUX
everything PRON
that PRON
you PRON
would AUX
ever ADV
want VERB
to PART
know VERB
about ADP
PMS.Premenstrual ADJ
syndrome NOUN
has AUX
been AUX
divided VERB
into ADP
four NUM
specific ADJ
subgroups NOUN
: PUNCT
	 SPACE
PMT PROPN
- PUNCT
A(Anxiety PROPN
) PUNCT
		 SPACE
PMT PROPN
- PUNCT
D(depression PROPN
) PUNCT
	 SPACE
anxiety NOUN
			 SPACE
depression NOUN
	 SPACE
irritability NOUN
		 SPACE
forgetfulness PROPN
	 SPACE
insomnia PROPN
		 SPACE
confusion PROPN
	 SPACE
depression NOUN
		 SPACE
lethargy NOUN
	 SPACE
PMT PROPN
- PUNCT
C(Craving PROPN
) PUNCT
		 SPACE
PMT PROPN
- PUNCT
H(Hyperhydration PROPN
) PUNCT
	 SPACE
craving VERB
for ADP
sweets NOUN
	 SPACE
weight NOUN
gain NOUN
	 SPACE
increased VERB
appetite PROPN
	 SPACE
breast NOUN
congestion NOUN
and CCONJ
tenderness NOUN
	 SPACE
sugar NOUN
ingestion NOUN
causes NOUN
: PUNCT
abdominal ADJ
bloating NOUN
and CCONJ
tenderness NOUN
	  SPACE
1 NUM
. PUNCT
headache PROPN
		 SPACE
edema PROPN
of ADP
the DET
face NOUN
and CCONJ
extremities NOUN
	  SPACE
2 NUM
. PUNCT
palpitations NOUN
	  SPACE
3 NUM
. PUNCT
fatigue NOUN
or CCONJ
fainting VERB
PMT PROPN
- PUNCT
A PROPN
is AUX
characterized VERB
by ADP
elevated ADJ
blood NOUN
estrogen PROPN
levels NOUN
and CCONJ
low ADJ
progesterone NOUN
levels NOUN
during ADP
the DET
luteal NOUN
phase NOUN
of ADP
a DET
women NOUN
's PART
cycle NOUN
. PUNCT
PMT PROPN
- PUNCT
C PROPN
is AUX
caused VERB
by ADP
the DET
ingestion NOUN
of ADP
large ADJ
amounts NOUN
of ADP
refined ADJ
simple ADJ
carbohydrates NOUN
. PUNCT
  SPACE
During ADP
the DET
luteal ADJ
phase NOUN
of ADP
a DET
women NOUN
's PART
cycle NOUN
, PUNCT
there PRON
is AUX
increased VERB
glucose NOUN
tolerance NOUN
with ADP
a DET
flat ADJ
glucose NOUN
curve NOUN
after ADP
oral ADJ
glucose PROPN
challenge NOUN
. PUNCT
  SPACE
The DET
metabolic ADJ
findings NOUN
believed VERB
to PART
be AUX
responsible ADJ
for ADP
PMT PROPN
- PUNCT
C PROPN
are AUX
a DET
low ADJ
magnesium NOUN
and CCONJ
a DET
low ADJ
prostaglandin NOUN
E1 PROPN
. PUNCT
  SPACE
This DET
condition NOUN
of ADP
hypoglycemia NOUN
is AUX
not PART
unique ADJ
to ADP
PMS PROPN
but CCONJ
there PRON
are AUX
a DET
number NOUN
of ADP
different ADJ
causes NOUN
of ADP
hypoglycemia NOUN
, PUNCT
magnesium NOUN
and CCONJ
PGE1 PROPN
seem VERB
to PART
be AUX
specific ADJ
to ADP
PMS PROPN
hypoglycemia NOUN
. PUNCT
	 SPACE
A. PROPN
Am PROPN
. PUNCT
J. PROPN
Psychiatry PROPN
147(4):477 NUM
- PUNCT
80(1990).Unrefined PROPN
complex ADJ
carbohydrate NOUN
should AUX
be AUX
substituted VERB
for ADP
sugar NOUN
, PUNCT
magnesium NOUN
supplementation NOUN
and CCONJ
alpha NOUN
linoleic NOUN
acid NOUN
supplementation(increased VERB
to ADP
5 NUM
- SYM
6 NUM
% NOUN
of ADP
the DET
total ADJ
calories NOUN
) PUNCT
using VERB
safflower NOUN
oil NOUN
or CCONJ
evening NOUN
primrose NOUN
oil NOUN
as SCONJ
sources NOUN
of ADP
alpha NOUN
linoleic NOUN
acid NOUN
. PUNCT
PMT PROPN
- PUNCT
D PROPN
is AUX
characterized VERB
by ADP
elevated ADJ
progesterone NOUN
levels NOUN
during ADP
the DET
midluteal ADJ
phase NOUN
of ADP
a DET
women NOUN
's PART
cycle NOUN
. PUNCT
  SPACE
Another DET
cause NOUN
of ADP
PMT PROPN
- PUNCT
D PROPN
has AUX
been AUX
found VERB
to PART
be AUX
lead ADJ
toxicity(in NUM
women NOUN
without ADP
elevated ADJ
progesterone NOUN
levels NOUN
during ADP
the DET
midluteal ADJ
phase NOUN
) PUNCT
. PUNCT
" PUNCT
Effect NOUN
of ADP
metal NOUN
ions NOUN
on ADP
the DET
binding NOUN
of ADP
estridol NOUN
to ADP
human ADJ
endometrial ADJ
cystol NOUN
" PUNCT
Fertil PROPN
. PUNCT
Steril PROPN
. PUNCT
28:312 NUM
- PUNCT
18(1972).PMT NUM
- PUNCT
H NOUN
is AUX
associated VERB
with ADP
water NOUN
and CCONJ
salt NOUN
retention NOUN
along ADP
with ADP
an DET
elevated ADJ
serum ADJ
aldosterone ADJ
level NOUN
. PUNCT
  SPACE
Salt NOUN
restriction NOUN
, PUNCT
B6 PROPN
, PUNCT
magnesium NOUN
and CCONJ
vitamin NOUN
E NOUN
for ADP
breast NOUN
tenderness NOUN
have AUX
all DET
been AUX
effective ADJ
in ADP
treating VERB
PMT PROPN
- PUNCT
HThis PROPN
general ADJ
discussion NOUN
of ADP
the DET
PMS PROPN
syndromes NOUN
came VERB
form NOUN
: PUNCT
	 SPACE
A. PROPN
" PUNCT
Management PROPN
of ADP
the DET
premenstrual ADJ
tension NOUN
sundromes NOUN
: PUNCT
Rational PROPN
for ADP
	     SPACE
a DET
nutritional ADJ
approach NOUN
" PUNCT
. PUNCT
1986 NUM
, PUNCT
A DET
Year PROPN
in ADP
Nutritional PROPN
Medicine PROPN
. PUNCT
	     SPACE
J. PROPN
Bland PROPN
, PUNCT
Ed PROPN
. PROPN
Keats PROPN
, PUNCT
Publishing PROPN
, PUNCT
1986 NUM
. PUNCT
	 SPACE
B. PROPN
" PUNCT
Nutritional PROPN
factors NOUN
in ADP
the DET
etiology NOUN
of ADP
premenstrual ADJ
tension NOUN
	     SPACE
syndromes PROPN
" PUNCT
, PUNCT
J. PROPN
Reprod PROPN
. PUNCT
Med.28(7):446 PROPN
- PUNCT
64(1983 PROPN
) PUNCT
. PUNCT
	 SPACE
C. PROPN
" PUNCT
Premenstrual ADJ
tension NOUN
" PUNCT
, PUNCT
Prob PROPN
. PUNCT
Obstet PROPN
. PUNCT
Gynecol PROPN
. PUNCT
3(12):1 NUM
- SYM
39(1980)Treatment PROPN
has AUX
traditionally ADV
involved VERB
progesterone ADJ
administration NOUN
if SCONJ
you PRON
can AUX
find VERB
a DET
doctor NOUN
who PRON
will AUX
treat VERB
you PRON
for ADP
PMS(just PROPN
about ADV
as ADV
hard ADV
as SCONJ
finding VERB
one NUM
that PRON
will AUX
treat VERB
you PRON
for ADP
candida PROPN
blooms NOUN
) PUNCT
. PUNCT
  SPACE
While SCONJ
progesterone NOUN
will AUX
work VERB
, PUNCT
supplementation NOUN
with ADP
vitamins NOUN
and CCONJ
minerals NOUN
works VERB
even ADV
better ADV
. PUNCT
  SPACE
There PRON
really ADV
has AUX
been AUX
an DET
awful ADJ
lot NOUN
of ADP
research NOUN
done VERB
on ADP
PMS(much PROPN
more ADJ
than SCONJ
candida PROPN
blooms NOUN
) PUNCT
. PUNCT
  SPACE
Many ADJ
of ADP
these DET
studies NOUN
have AUX
been AUX
what PRON
are AUX
called VERB
experimental PROPN
controlled VERB
studies(the DET
type NOUN
of ADP
rigorous ADJ
clinical ADJ
studies NOUN
that PRON
doctors NOUN
like VERB
to PART
see VERB
done).Here X
are AUX
a DET
few ADJ
of ADP
these DET
studies NOUN
: PUNCT
	 SPACE
CARBOHYDRATE NOUN
: PUNCT
Experimental PROPN
Controlled VERB
Study PROPN
, PUNCT
" PUNCT
Effect NOUN
of ADP
a DET
low ADJ
- PUNCT
fat NOUN
, PUNCT
	 SPACE
high ADJ
- PUNCT
carbohydrate NOUN
diet NOUN
on ADP
symptoms NOUN
of ADP
cyclical ADJ
mastopathy NOUN
" PUNCT
Lancet PROPN
	 SPACE
2:128 NUM
- SYM
32(1988 NUM
) PUNCT
. PUNCT
  SPACE
21 NUM
pts PROPN
with ADP
severe ADJ
persistent ADJ
cyclical ADJ
mastopathy NOUN
	 SPACE
of ADP
at ADV
least ADV
5 NUM
years NOUN
duration NOUN
were AUX
randomly ADV
selected VERB
to PART
receive VERB
	 SPACE
specific ADJ
training NOUN
to PART
reduce VERB
dietary ADJ
fat NOUN
to ADP
15 NUM
% NOUN
of ADP
total ADJ
calories NOUN
	 SPACE
and CCONJ
increase VERB
complex ADJ
carbohydrate NOUN
ingestion NOUN
or CCONJ
given VERB
general ADJ
dietary NOUN
	 SPACE
advise ADJ
with ADP
no DET
training NOUN
. PUNCT
  SPACE
After ADP
6 NUM
months NOUN
, PUNCT
there PRON
was AUX
a DET
significant ADJ
	 SPACE
reduction NOUN
in ADP
the DET
severity NOUN
of ADP
the DET
breast NOUN
swelling NOUN
and CCONJ
tenderness NOUN
in ADP
	 SPACE
the DET
trained VERB
group NOUN
as SCONJ
reported VERB
by ADP
self NOUN
- PUNCT
reported VERB
symptoms NOUN
as ADV
well ADV
as SCONJ
	 SPACE
physical ADJ
exams NOUN
which PRON
quantitated VERB
the DET
degree NOUN
of ADP
breast NOUN
swelling NOUN
, PUNCT
	 SPACE
tenderness NOUN
and CCONJ
nodularity NOUN
. PUNCT
	 SPACE
VITAMIN PROPN
A NOUN
: PUNCT
Experimental PROPN
Controlled VERB
Study PROPN
, PUNCT
" PUNCT
The DET
use NOUN
of ADP
Vitamin PROPN
A NOUN
in ADP
	 SPACE
premenstrual ADJ
tension NOUN
" PUNCT
Acta PROPN
Obstet PROPN
. PUNCT
Gynecol PROPN
Scand PROPN
. PUNCT
39:586 NUM
- PUNCT
92(1960 PROPN
) PUNCT
. PUNCT
 	 SPACE
218 NUM
pts NOUN
with ADP
severe ADJ
recurring NOUN
PMS PROPN
received VERB
200,000 NUM
to ADP
300,000IU NUM
	 SPACE
vitamin NOUN
A DET
daily NOUN
or CCONJ
a DET
placebo NOUN
. PUNCT
  SPACE
Serum PROPN
retinol NOUN
levels NOUN
were AUX
monitored VERB
	 SPACE
and CCONJ
high ADJ
dose NOUN
supplementation NOUN
was AUX
discontinued VERB
when ADV
evidence NOUN
of ADP
	 SPACE
toxicity NOUN
occured(serum ADP
retinol NOUN
above ADP
450ug PROPN
/ SYM
ml PROPN
) PUNCT
. PUNCT
  SPACE
The DET
intent NOUN
of ADP
the DET
	 SPACE
study NOUN
was AUX
to PART
load VERB
the DET
liver NOUN
up ADP
with ADP
vitamin NOUN
A NOUN
and CCONJ
get AUX
a DET
normal ADJ
pool NOUN
	 SPACE
size(500,000IU NUM
to ADP
1,000,000IU NUM
) PUNCT
and CCONJ
then ADV
see VERB
if SCONJ
this DET
	 SPACE
normal ADJ
vitamin NOUN
A DET
pool NOUN
could AUX
prevent VERB
PMS PROPN
. PUNCT
  SPACE
48 NUM
% NOUN
getting VERB
the DET
high ADJ
dose NOUN
	 SPACE
vitamin NOUN
A PROPN
had AUX
complete ADJ
remission NOUN
of ADP
the DET
symptoms NOUN
of ADP
PMS PROPN
. PUNCT
  SPACE
Only ADV
10 NUM
% NOUN
	 SPACE
getting VERB
the DET
placebo NOUN
reported VERB
getting VERB
complete ADJ
relief NOUN
of ADP
PMS PROPN
sysmptoms NOUN
. PUNCT
 	 SPACE
10 NUM
% NOUN
of ADP
the DET
vitamin NOUN
A DET
treated VERB
group NOUN
reported VERB
no DET
improvement NOUN
in ADP
PMS PROPN
	 SPACE
symptoms NOUN
. PUNCT
	 SPACE
Experimental PROPN
Controlled PROPN
Study PROPN
, PUNCT
" PUNCT
Premenstrual ADJ
tension NOUN
treated VERB
with ADP
	 SPACE
vitamin NOUN
A NOUN
" PUNCT
J. PROPN
Clinical PROPN
Endocrinology PROPN
10:1579 NUM
- PUNCT
89(1950 PROPN
) PUNCT
. PUNCT
30 NUM
pts NOUN
	 SPACE
received VERB
200,000IU NUM
of ADP
vitamin NOUN
A DET
daily ADJ
starting VERB
on ADP
day NOUN
15 NUM
of ADP
their PRON
	 SPACE
cycle NOUN
with ADP
supplementation NOUN
continuing VERB
until ADP
the DET
onset NOUN
of ADP
PMS PROPN
symptoms NOUN
. PUNCT
 	 SPACE
After ADP
2 NUM
- SYM
6 NUM
months NOUN
, PUNCT
all DET
30 NUM
pts NOUN
reported VERB
a DET
significant ADJ
improvement NOUN
in ADP
	 SPACE
PMS PROPN
symptoms NOUN
. PUNCT
  SPACE
Vitamin PROPN
A DET
supplementation NOUN
was AUX
stopped VERB
once ADV
evidence NOUN
of ADP
	 SPACE
toxicity NOUN
was AUX
demonstrated VERB
and CCONJ
all DET
30 NUM
pts NOUN
were AUX
followed VERB
for ADP
one NUM
year NOUN
	 SPACE
after ADP
high ADJ
dose NOUN
vitamin NOUN
A DET
supplementation NOUN
was AUX
stopped VERB
. PUNCT
  SPACE
PMS PROPN
symptoms NOUN
	 SPACE
did AUX
not PART
reoccur VERB
in ADP
any DET
of ADP
these DET
30 NUM
pts NOUN
for ADP
upto ADJ
one NUM
year NOUN
after ADP
the DET
	 SPACE
vitamin NOUN
A DET
supplementation NOUN
was AUX
stopped VERB
. PUNCT
Most ADJ
Americans PROPN
do AUX
not PART
have AUX
a DET
normal ADJ
store NOUN
of ADP
vitamin NOUN
A NOUN
in ADP
their PRON
liver NOUN
. PUNCT
  SPACE
These DET
studies NOUN
and CCONJ
several ADJ
others NOUN
were AUX
designed VERB
to PART
see VERB
if SCONJ
getting VERB
a DET
normal ADJ
store NOUN
of ADP
vitamin NOUN
A NOUN
into ADP
the DET
liver NOUN
could AUX
eliminate VERB
PMS PROPN
. PUNCT
  SPACE
Of ADP
all DET
the DET
vitamins NOUN
given VERB
for ADP
PMS(vitamin NOUN
A PROPN
, PUNCT
B6 PROPN
, PUNCT
and CCONJ
vitamin NOUN
E NOUN
) PUNCT
, PUNCT
vitamin NOUN
A NOUN
has AUX
shown VERB
the DET
best ADJ
single ADJ
effect NOUN
. PUNCT
  SPACE
This DET
is AUX
probably ADV
because SCONJ
vitamin NOUN
A NOUN
is AUX
involved VERB
in ADP
steroid NOUN
( PUNCT
estrogen PROPN
/ SYM
progesterone NOUN
) PUNCT
metabolism NOUN
in ADP
the DET
liver NOUN
. PUNCT
  SPACE
Getting VERB
your PRON
liver NOUN
full ADJ
of ADP
vitamin NOUN
A NOUN
seems VERB
to PART
be AUX
one NUM
of ADP
the DET
best ADJ
things NOUN
that PRON
you PRON
can AUX
do AUX
to PART
prevent VERB
the DET
symptoms NOUN
of ADP
PMS PROPN
. PUNCT
  SPACE
But CCONJ
vitamin NOUN
A PROPN
is AUX
toxic ADJ
and CCONJ
you PRON
do AUX
n't PART
want VERB
to PART
be AUX
trying VERB
to PART
do AUX
this DET
without ADP
being AUX
seen VERB
by ADP
a DET
physician NOUN
who PRON
can AUX
monitor VERB
you PRON
for ADP
vitamin NOUN
A DET
toxicity NOUN
. PUNCT
	 SPACE
VITAMIN PROPN
B6 PROPN
: PUNCT
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Crossoverr PROPN
Study PROPN
, PUNCT
" PUNCT
Pyridoxine NOUN
	 SPACE
( PUNCT
vitamin NOUN
B6 PROPN
) PUNCT
and CCONJ
the DET
premenstrual ADJ
syndrome NOUN
: PUNCT
A DET
randomized VERB
crossover NOUN
	 SPACE
trial"J.R. PROPN
Coll PROPN
. PUNCT
Gen. PROPN
Pract PROPN
. PUNCT
39:364 NUM
- PUNCT
68(1989 PROPN
) PUNCT
. PUNCT
  SPACE
32 NUM
women NOUN
aged VERB
18 NUM
- SYM
49 NUM
	 SPACE
with ADP
moderate ADJ
to ADP
severe ADJ
PMS PROPN
randomly ADV
received VERB
50 NUM
mg PROPN
B6 PROPN
daily NOUN
or CCONJ
placebo NOUN
. PUNCT
 	 SPACE
After ADP
3 NUM
months NOUN
the DET
groups NOUN
were AUX
switched VERB
and CCONJ
followed VERB
for ADP
another DET
	 SPACE
3 NUM
months NOUN
. PUNCT
  SPACE
B6 PROPN
had AUX
a DET
significant ADJ
effect NOUN
on ADP
the DET
emotional ADJ
aspects NOUN
of ADP
	 SPACE
PMS(depression NOUN
, PUNCT
irritability NOUN
and CCONJ
tiredness NOUN
) PUNCT
. PUNCT
  SPACE
Other ADJ
symptoms NOUN
of ADP
PMS PROPN
	 SPACE
were AUX
not PART
significanttly ADV
affected VERB
by ADP
B6 PROPN
supplementation NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
The DET
efects NOUN
of ADP
vitamin NOUN
B6 NOUN
	 SPACE
supplementation NOUN
on ADP
premenstrual ADJ
sysmptoms NOUN
" PUNCT
Obstet PROPN
. PUNCT
Gynecol PROPN
	 SPACE
70(2):145 NUM
- PUNCT
49(1987 PROPN
) PUNCT
. PUNCT
  SPACE
55 NUM
pts PROPN
with ADP
moderate ADJ
to ADP
severe ADJ
PMS PROPN
received VERB
	 SPACE
150 NUM
mg PROPN
B6 PROPN
daily NOUN
or CCONJ
placebo NOUN
for ADP
2 NUM
months NOUN
. PUNCT
  SPACE
Analysis NOUN
of ADP
convergence NOUN
	 SPACE
showed VERB
that SCONJ
B6 PROPN
significantly ADV
improved VERB
premenstrual ADJ
symptoms NOUN
related VERB
	 SPACE
to ADP
the DET
autonomic ADJ
nervous ADJ
system(dizziness PROPN
and CCONJ
vomiting NOUN
) PUNCT
as ADV
well ADV
as SCONJ
	 SPACE
behavior NOUN
changes(poor PROPN
mental ADJ
performance NOUN
, PUNCT
decreased VERB
social ADJ
interaction NOUN
) PUNCT
 	 SPACE
Anxiety PROPN
, PUNCT
depression NOUN
and CCONJ
water NOUN
retention NOUN
were AUX
not PART
improved VERB
by ADP
B6 PROPN
	 SPACE
supplementation NOUN
. PUNCT
Vitamin PROPN
B6 PROPN
is AUX
below ADP
the DET
RDA PROPN
for ADP
both CCONJ
American ADJ
men NOUN
and CCONJ
women NOUN
. PUNCT
  SPACE
Birth NOUN
control NOUN
pills NOUN
and CCONJ
over ADP
40 NUM
different ADJ
drugs NOUN
increase VERB
the DET
B6 PROPN
requirement NOUN
in ADP
man NOUN
. PUNCT
  SPACE
Women NOUN
on ADP
birth NOUN
control NOUN
pills NOUN
should AUX
be AUX
supplemented VERB
with ADP
10 NUM
- SYM
15 NUM
mg NOUN
of ADP
B6 PROPN
per ADP
day NOUN
. PUNCT
  SPACE
The DET
dose NOUN
should AUX
be AUX
increased VERB
if SCONJ
symptoms NOUN
of ADP
PMS PROPN
appear VERB
. PUNCT
  SPACE
Dr. PROPN
David PROPN
R. PROPN
Rubinow PROPN
who PRON
heads VERB
the DET
biological ADJ
psychiatry NOUN
branch NOUN
of ADP
NIMH PROPN
was AUX
quoted VERB
in ADP
Clin PROPN
. PUNCT
Psychiatry PROPN
News PROPN
, PUNCT
December PROPN
, PUNCT
1987 NUM
as SCONJ
stating VERB
that SCONJ
B6 PROPN
should AUX
be AUX
considered VERB
the DET
" PUNCT
first ADJ
- PUNCT
line NOUN
" PUNCT
drug NOUN
for ADP
PMS(over NOUN
progesterone NOUN
) PUNCT
and CCONJ
if SCONJ
the DET
patient NOUN
does AUX
not PART
respond VERB
, PUNCT
then ADV
other ADJ
treatments NOUN
should AUX
be AUX
tried VERB
. PUNCT
  SPACE
Vitamin PROPN
B6 PROPN
can AUX
be AUX
toxic(nerve VERB
damage NOUN
) PUNCT
if SCONJ
consumed VERB
in ADP
doses NOUN
of ADP
500 NUM
mg NOUN
or CCONJ
more ADJ
each DET
day NOUN
. PUNCT
	 SPACE
VITAMIN NOUN
E NOUN
: PUNCT
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Efficacy NOUN
of ADP
alpha- PROPN
	 SPACE
tocopherol PROPN
in ADP
the DET
treatment NOUN
of ADP
premenstrual ADJ
syndrome NOUN
" PUNCT
J. PROPN
Reprod PROPN
. PUNCT
	 SPACE
Med PROPN
. PUNCT
32(6):400 NUM
- PUNCT
04(1987 PROPN
) PUNCT
. PUNCT
35 NUM
pts NOUN
received VERB
400IU PROPN
vitamin NOUN
E NOUN
daily NOUN
for ADP
3 NUM
	 SPACE
cycles NOUN
or CCONJ
a DET
placebo NOUN
. PUNCT
  SPACE
Vitamin PROPN
E PROPN
treated VERB
pts PROPN
had AUX
33 NUM
% NOUN
who PRON
reported VERB
a DET
	 SPACE
significant ADJ
reduction NOUN
in ADP
physical ADJ
symptoms(weight PROPN
gain NOUN
and CCONJ
breast NOUN
	 SPACE
tenderness NOUN
) PUNCT
while SCONJ
the DET
placebo NOUN
group NOUN
had AUX
14 NUM
% NOUN
who PRON
reported VERB
a DET
significant ADJ
	 SPACE
reduction NOUN
in ADP
physical ADJ
symptoms NOUN
. PUNCT
The DET
vitamin NOUN
E NOUN
group NOUN
reported VERB
that SCONJ
38 NUM
% NOUN
	 SPACE
had AUX
a DET
significant ADJ
reduction NOUN
in ADP
anxiety NOUN
versus ADP
12 NUM
% NOUN
for ADP
the DET
placebo NOUN
	 SPACE
group NOUN
. PUNCT
  SPACE
For ADP
depression NOUN
, PUNCT
the DET
vitamin NOUN
E NOUN
group NOUN
had AUX
27 NUM
% NOUN
with ADP
a DET
significant ADJ
	 SPACE
decrease NOUN
in ADP
depression NOUN
compared VERB
with ADP
8 NUM
% NOUN
for ADP
the DET
placebo NOUN
group NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
The DET
effect NOUN
of ADP
alpha PROPN
- PUNCT
tocopherol PROPN
on ADP
	 SPACE
premenstrual ADJ
symptomalogy NOUN
: PUNCT
A DET
double ADJ
blind ADJ
study NOUN
" PUNCT
J. PROPN
Am PROPN
. PUNCT
Coll PROPN
. PUNCT
Nutr PROPN
. PUNCT
	 SPACE
2(2):115 NUM
- SYM
122(1983 NUM
) PUNCT
. PUNCT
75pts NOUN
with ADP
benign ADJ
breast NOUN
disease NOUN
and CCONJ
PMT PROPN
randomly ADV
	 SPACE
received VERB
vitamin NOUN
E NOUN
at ADP
75IU NUM
, PUNCT
150IU PROPN
, PUNCT
or CCONJ
300IU PROPN
daily NOUN
or CCONJ
placebo NOUN
. PUNCT
  SPACE
After ADP
	 SPACE
2 NUM
months NOUN
of ADP
supplementation NOUN
, PUNCT
150IU PROPN
of ADP
vitamin NOUN
E NOUN
or CCONJ
higher ADJ
significantly ADV
	 SPACE
improved ADJ
PMT PROPN
- PUNCT
A PROPN
and CCONJ
PMT PROPN
- PUNCT
C. PROPN
  SPACE
The DET
300IU PROPN
dose NOUN
was AUX
needed VERB
to PART
significantly ADV
	 SPACE
improve VERB
PMT PROPN
- PUNCT
D. PROPN
  SPACE
No DET
dose NOUN
of ADP
vitamin NOUN
E NOUN
significantly ADV
improved VERB
PMT PROPN
- PUNCT
H PROPN
	 SPACE
( PUNCT
other ADJ
studies NOUN
have AUX
shown VERB
that SCONJ
a DET
higher ADJ
vitamin NOUN
E NOUN
doses NOUN
will AUX
relieve VERB
	 SPACE
PMT ADJ
- PUNCT
H PROPN
symptoms NOUN
) PUNCT
. PUNCT
		 SPACE
MAGNESIUM PROPN
: PUNCT
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Magnesium PROPN
prophylaxis PROPN
	 SPACE
of ADP
menstrual ADJ
migraine NOUN
: PUNCT
effects NOUN
on ADP
itracellular ADJ
magnesium NOUN
" PUNCT
Headache PROPN
	 SPACE
31:298 PROPN
- PUNCT
304(1991 NUM
) PUNCT
. PUNCT
20 NUM
pts NOUN
with ADP
perimenstrual ADJ
headache NOUN
received VERB
360 NUM
mg PROPN
	 SPACE
daily ADV
of ADP
magnesium NOUN
as SCONJ
magnesium PROPN
pyrrolidone PROPN
carboxylic ADJ
acid NOUN
or CCONJ
a DET
	 SPACE
placebo NOUN
. PUNCT
  SPACE
Treatment NOUN
was AUX
started VERB
on ADP
the DET
15th ADJ
day NOUN
of ADP
the DET
cycle NOUN
and CCONJ
	 SPACE
continued VERB
until ADP
menstruation NOUN
. PUNCT
After ADP
2 NUM
months NOUN
, PUNCT
the DET
Pain PROPN
Total PROPN
Index PROPN
	 SPACE
was AUX
significantly ADV
lower ADJ
in ADP
the DET
magnesium NOUN
group NOUN
. PUNCT
  SPACE
Magnesium PROPN
treatment NOUN
	 SPACE
was AUX
also ADV
assocoiated VERB
with ADP
a DET
significant ADJ
reduction NOUN
in ADP
the DET
Menstrual PROPN
	 SPACE
Distress PROPN
Questionnaire PROPN
scores NOUN
. PUNCT
  SPACE
Pretreatment ADJ
magnesium NOUN
levels NOUN
in ADP
 	 SPACE
lymphocytes NOUN
and CCONJ
polymorphonuclear NOUN
leukocytes NOUN
were AUX
significantly ADV
lower ADJ
	 SPACE
in ADP
this DET
group NOUN
of ADP
20 NUM
pts NOUN
compared VERB
to PART
control VERB
women NOUN
who PRON
did AUX
not PART
suffer VERB
	 SPACE
from ADP
PMS PROPN
. PUNCT
  SPACE
After ADP
treatment NOUN
, PUNCT
magnesium NOUN
levels NOUN
in ADP
these DET
cells NOUN
was AUX
raised VERB
	 SPACE
into ADP
the DET
normal ADJ
range NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Oral PROPN
Magnesium PROPN
successfully ADV
	 SPACE
relieves VERB
premenstrual ADJ
mood NOUN
changes NOUN
" PUNCT
Obstet PROPN
. PUNCT
Gynecol PROPN
78(2):177 NUM
- PUNCT
81(1991 PROPN
) PUNCT
. PUNCT
	 SPACE
32pts NOUN
aged ADJ
24 NUM
- SYM
39 NUM
randomly ADV
received VERB
either CCONJ
magnesium ADJ
carboxylic ADJ
acid NOUN
	 SPACE
360 NUM
mg NOUN
of ADP
Mg PROPN
per ADP
day NOUN
or CCONJ
a DET
placebo NOUN
from ADP
the DET
15th ADJ
day NOUN
of ADP
the DET
cycle NOUN
to ADP
the DET
	 SPACE
onset NOUN
of ADP
the DET
menstrual ADJ
flow NOUN
. PUNCT
  SPACE
After ADP
2 NUM
cycles NOUN
, PUNCT
both DET
groups NOUN
received VERB
	 SPACE
magnesium NOUN
. PUNCT
  SPACE
The DET
Menstrual PROPN
Distress PROPN
Questionnaire PROPN
score NOUN
of ADP
the DET
cluster NOUN
	 SPACE
pain NOUN
was AUX
significantly ADV
reduced VERB
during ADP
the DET
second ADJ
cycle(month PROPN
) PUNCT
for ADP
the DET
	 SPACE
magnesium NOUN
treatment NOUN
group NOUN
as ADV
well ADV
as SCONJ
the DET
placebo NOUN
group NOUN
once SCONJ
they PRON
were AUX
	 SPACE
switched VERB
to ADP
magnesium NOUN
supplementation NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
total ADJ
score NOUN
on ADP
	 SPACE
the DET
Menstrual PROPN
Distress PROPN
Questionnaire PROPN
was AUX
significantly ADV
decreased VERB
by ADP
	 SPACE
magnesium NOUN
supplementation NOUN
. PUNCT
  SPACE
The DET
authors NOUN
suggest VERB
that SCONJ
magnesium NOUN
	 SPACE
supplemenation NOUN
should AUX
become VERB
a DET
routine ADJ
treatment NOUN
for ADP
the DET
mood NOUN
changes NOUN
	 SPACE
that PRON
occur VERB
during ADP
PMS.There NOUN
are AUX
numerous ADJ
observational ADJ
studies NOUN
that PRON
have AUX
been AUX
published VERB
in ADP
the DET
medical ADJ
literature NOUN
which PRON
also ADV
suggest VERB
that SCONJ
PMS PROPN
is AUX
primarily ADV
a DET
disorder NOUN
that PRON
arises VERB
out SCONJ
of ADP
a DET
hormone NOUN
imbalance NOUN
that PRON
is AUX
dietary ADJ
in ADP
nature NOUN
. PUNCT
  SPACE
But CCONJ
since SCONJ
observational ADJ
studies NOUN
are AUX
considered VERB
by ADP
most ADJ
physicians NOUN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
to PART
be AUX
anecdotal ADJ
in ADP
nature NOUN
, PUNCT
I PRON
have AUX
not PART
bothered VERB
to PART
cite VERB
them PRON
. PUNCT
  SPACE
There PRON
are AUX
also ADV
over ADP
a DET
half ADJ
dozen NOUN
good ADJ
experimental ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
on ADP
multivitamin PROPN
and CCONJ
mineral NOUN
supplementation NOUN
to PART
prevent VERB
PMS PROPN
. PUNCT
  SPACE
I PRON
've AUX
chosen VERB
the DET
best ADJ
specific ADJ
studies NOUN
on ADP
individual ADJ
vitamins NOUN
and CCONJ
minerals NOUN
to PART
try VERB
to PART
point VERB
out ADP
that SCONJ
PMS PROPN
is AUX
primarily ADV
a DET
nutritional ADJ
disorder NOUN
. PUNCT
  SPACE
But CCONJ
doctors NOUN
do AUX
n't PART
recognize VERB
nutritional ADJ
disorders NOUN
unless SCONJ
they PRON
can AUX
see VERB
clinical ADJ
pathology(beri PROPN
- PUNCT
beri PROPN
, PUNCT
pellagra NOUN
, PUNCT
scruvy PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
  SPACE
PMS PROPN
is AUX
probably ADV
the DET
best ADJ
reason NOUN
why ADV
every DET
doctor NOUN
being AUX
trained VERB
in ADP
the DET
U.S. PROPN
should AUX
get AUX
a DET
good ADJ
course NOUN
on ADP
human ADJ
nutrition NOUN
. PUNCT
  SPACE
PMS PROPN
is AUX
really ADV
only ADV
the DET
tip NOUN
if SCONJ
the DET
iceberg NOUN
when ADV
it PRON
comes VERB
to ADP
nutritional ADJ
disorders NOUN
. PUNCT
  SPACE
It PRON
's AUX
time NOUN
that DET
medicine NOUN
woke VERB
up ADP
and CCONJ
smelled VERB
the DET
roses NOUN
. PUNCT
Here ADV
's AUX
some DET
studies NOUN
which PRON
show VERB
the DET
importance NOUN
in ADP
multivitamin PROPN
/ SYM
mineral PROPN
supplementation NOUN
and/or CCONJ
diet NOUN
change NOUN
in ADP
preventing VERB
PMS PROPN
. PUNCT
	 SPACE
Experimental PROPN
Study PROPN
, PUNCT
" PUNCT
Effect NOUN
of ADP
a DET
nutritional ADJ
programme NOUN
on ADP
	 SPACE
premenstrual ADJ
syndrome NOUN
: PUNCT
a DET
retrospective ADJ
analysis NOUN
" PUNCT
, PUNCT
Complement PROPN
. PUNCT
Med PROPN
. PUNCT
	 SPACE
Res.5(1):8 PROPN
- PUNCT
11(1991 PROPN
) PUNCT
. PUNCT
  SPACE
200pts NUM
were AUX
given VERB
dietary ADJ
instructions NOUN
and CCONJ
	 SPACE
supplemented VERB
with ADP
Optivite(R PROPN
) PUNCT
plus CCONJ
additional ADJ
vitamin NOUN
C NOUN
, PUNCT
vitamin NOUN
E NOUN
, PUNCT
	 SPACE
magnesium NOUN
, PUNCT
zinc NOUN
and CCONJ
primrose NOUN
oil NOUN
. PUNCT
  SPACE
The DET
dietary ADJ
instructions NOUN
were AUX
to PART
	 SPACE
take VERB
the DET
supplements NOUN
and CCONJ
switch VERB
to ADP
a DET
low ADJ
fat ADJ
, PUNCT
complex ADJ
carbohydrate NOUN
	 SPACE
diet PROPN
. PUNCT
  SPACE
On ADP
a DET
retrospective ADJ
analysis NOUN
, PUNCT
96.5 NUM
% NOUN
of ADP
the DET
200pts NUM
reported VERB
an DET
	 SPACE
improvement NOUN
in ADP
their PRON
PMS PROPN
symptoms NOUN
with ADP
30 NUM
% NOUN
of ADP
the DET
sample NOUN
stating VERB
that DET
	 SPACE
they PRON
no ADV
longer ADV
suffered VERB
from ADP
PMS PROPN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Role NOUN
of ADP
Nutrition NOUN
in ADP
managing VERB
	 SPACE
premenstrual ADJ
tension NOUN
syndromes NOUN
" PUNCT
, PUNCT
J PROPN
Reprod PROPN
. PUNCT
Med PROPN
. PUNCT
32(6):405 NUM
- PUNCT
22(1987 PROPN
) PUNCT
. PUNCT
 	 SPACE
A DET
low ADJ
fat ADJ
, PUNCT
high ADJ
complex ADJ
carbohydrate NOUN
diet NOUN
along ADP
with ADP
Optivite PROPN
	 SPACE
supplementation NOUN
significantly ADV
decreased VERB
PMS PROPN
scores NOUN
compared VERB
with ADP
diet NOUN
	 SPACE
change NOUN
and CCONJ
placebo NOUN
. PUNCT
  SPACE
After ADP
6 NUM
months NOUN
on ADP
the DET
experimental ADJ
program NOUN
, PUNCT
the DET
	 SPACE
vitamin NOUN
/ SYM
mineral NOUN
supplementated VERB
group NOUN
had AUX
significantly ADV
decreased VERB
	 SPACE
estradiol NOUN
and CCONJ
increased VERB
progesterone NOUN
in ADP
serum PROPN
during ADP
the DET
midlutel NOUN
	 SPACE
phase NOUN
of ADP
their PRON
cycle NOUN
. PUNCT
	 SPACE
Experimental ADJ
Double ADJ
- PUNCT
blind ADJ
Study NOUN
, PUNCT
" PUNCT
Clinical ADJ
and CCONJ
biochemical ADJ
effects NOUN
	 SPACE
of ADP
nutritional ADJ
supplementation NOUN
on ADP
the DET
premenstrual ADJ
syndrome NOUN
" PUNCT
, PUNCT
J. PROPN
	 SPACE
Reprod PROPN
. PUNCT
Med PROPN
. PUNCT
32(6):435 PROPN
- PUNCT
41(1987 NUM
) PUNCT
. PUNCT
119pts NUM
randomly ADV
given VERB
Optivite(12 PROPN
	 SPACE
tablets NOUN
per ADP
day NOUN
) PUNCT
or CCONJ
a DET
placebo NOUN
. PUNCT
  SPACE
The DET
treated VERB
groups NOUN
showed VERB
a DET
	 SPACE
significant ADJ
decrease NOUN
in ADP
PMS PROPN
symptoms NOUN
compared VERB
to ADP
the DET
placebo NOUN
. PUNCT
  SPACE
Another DET
	 SPACE
group NOUN
of ADP
104pts PROPN
got VERB
Optivite(4 NUM
tablets NOUN
per ADP
day NOUN
) PUNCT
or CCONJ
placebo NOUN
. PUNCT
  SPACE
For ADP
this DET
	 SPACE
second ADJ
group NOUN
of ADP
patients NOUN
, PUNCT
no DET
significant ADJ
effect NOUN
of ADP
supplementation NOUN
on ADP
	 SPACE
PMS PROPN
symptoms NOUN
was AUX
observed VERB
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine1111 PROPN
W. PROPN
17th NOUN
St PROPN
. PUNCT
Tulsa PROPN
, PUNCT
Ok INTJ
74107"Without NUM
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance NOUN
" PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59324From NUM
: PUNCT
brown@spk.hp.com X
( PUNCT
Pat PROPN
R. PROPN
Brown)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
... PUNCT
REFLUX PROPN
ESOPHAGITISPlease PROPN
post VERB
your PRON
results NOUN
, PUNCT
a DET
close ADJ
friend NOUN
has AUX
this DET
condition NOUN
andhas VERB
asked VERB
these DET
same ADJ
questions NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59325From NUM
: PUNCT
mikeq@freddy PROPN
. PUNCT
CNA.TEK.COM PROPN
( PUNCT
Mike PROPN
Quigley)Subject NUM
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>When CCONJ
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident NOUN
> X
in ADP
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having VERB
> X
sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm NOUN
> X
cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>>Was PROPN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually ADV
> X
occur?Ohboy VERB
. PUNCT
Here ADV
we PRON
go VERB
again ADV
. PUNCT
And CCONJ
one NUM
wonders VERB
why ADV
the DET
Americaneducation PROPN
system NOUN
is AUX
in ADP
such ADJ
abysmal NOUN
shape?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59326From NUM
: PUNCT
scheiber@sage.cc.purdue.edu NUM
( PUNCT
Jennifer PROPN
Scheiber)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
10030@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>:When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident>:in NOUN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having>:sexual NUM
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm>:cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>:>:Was PROPN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually>:occur?>>Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
for ADP
> X
pregnancy NOUN
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
also ADV
> X
artificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of>"natural PUNCT
" PUNCT
acts VERB
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen PROPN
is AUX
> X
deposited VERB
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that's ADP
> X
about ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talk VERB
> X
to ADP
your PRON
biology NOUN
teacher.>>-- NOUN
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>= SYM
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
> X
= SYM
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
> X
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= PUNCT
what PRON
is AUX
the DET
likely ADJ
hood NOUN
of ADP
conception NOUN
if SCONJ
sperm NOUN
is AUX
deposited VERB
just ADV
outsidethe DET
vagina PROPN
? PUNCT
  SPACE
ie PROPN
. PROPN
  SPACE
_ PROPN
_ PROPN
% NOUN
chance NOUN
. PUNCT
--------------------------------------------------------------------------- PUNCT
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
* PUNCT
                  SPACE
J PROPN
e PROPN
n CCONJ
n CCONJ
i PRON
f PROPN
e NOUN
r NOUN
      SPACE
S PROPN
c NOUN
h NOUN
e NOUN
i NOUN
b NOUN
e NOUN
r NOUN
                     SPACE
* PUNCT
email NOUN
: PUNCT
scheiber@sage.cc.purdue.edu PROPN
      SPACE
School PROPN
of ADP
Nursing PROPN
- PUNCT
Purdue PROPN
University~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59327From NUM
: PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It PRON
> X
involves VERB
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the DET
> X
subject NOUN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well ADV
> X
with ADP
inanimate ADJ
objects NOUN
. PUNCT
True ADJ
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this"corona NOUN
discharge"?-- NUM
" PUNCT
THAT PRON
is AUX
a DET
DRY PROPN
turtle NOUN
. PUNCT
  SPACE
That SCONJ
turtle NOUN
is AUX
NOT ADV
moist!"Ezra PROPN
Story PROPN
, PUNCT
a DET
student NOUN
at ADP
RIT PROPN
, PUNCT
andeas3714@ultb.isc.rit.edu PROPN
, PUNCT
his PRON
trusty NOUN
( PUNCT
? PUNCT
) PUNCT
mailing NOUN
address NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59328From NUM
: PUNCT
grenus@pasture.ecn.purdue.edu PROPN
( PUNCT
Karen PROPN
M PROPN
Grenus)Subject PROPN
: PUNCT
thermogenicsHi PROPN
, PUNCT
	 SPACE
I PRON
'm AUX
an DET
avid ADJ
dieter NOUN
and CCONJ
the DET
new ADJ
miracle NOUN
drug NOUN
seems VERB
to PART
involve VERB
thermo PROPN
- PUNCT
genics PROPN
. PUNCT
The DET
drug NOUN
is AUX
claimed VERB
to PART
stimulate VERB
the DET
brown ADJ
fat NOUN
to PART
burn VERB
food NOUN
creating VERB
eat VERB
as SCONJ
opposed VERB
to ADP
the DET
fat NOUN
being AUX
stored VERB
. PUNCT
There PRON
are AUX
all DET
sorts NOUN
ofwarnings NOUN
about ADP
fevers NOUN
, PUNCT
elevated ADJ
blood NOUN
pressure NOUN
and CCONJ
heart NOUN
rate NOUN
, PUNCT
ect INTJ
.. PUNCT
	 SPACE
The DET
silver NOUN
lining NOUN
is AUX
that SCONJ
apparently ADV
some DET
weight NOUN
loss NOUN
does AUX
not PART
require VERB
a DET
change NOUN
in ADP
diet NOUN
. PUNCT
Is AUX
this DET
possible ADJ
? PUNCT
Are AUX
the DET
pills NOUN
dangerous ADJ
or CCONJ
justhoaxes?KarenNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59329From NUM
: PUNCT
dsew@troi.cc.rochester.edu PROPN
( PUNCT
David PROPN
Sewell)Subject PROPN
: PUNCT
Theophylline NOUN
/ SYM
ephedrine VERB
and CCONJ
water NOUN
bio PROPN
- PUNCT
availabilityDoes VERB
anyone PRON
know VERB
if SCONJ
either CCONJ
theophylline NUM
or CCONJ
ephedrine VERB
, PUNCT
or CCONJ
the DET
two NUM
incombination NOUN
, PUNCT
can AUX
reduce VERB
the DET
body NOUN
's PART
ability NOUN
to PART
make VERB
use NOUN
of ADP
available ADJ
water NOUN
? PUNCT
  SPACE
I PRON
had AUX
kind ADV
of ADV
an DET
odd ADJ
experience NOUN
on ADP
a DET
group NOUN
hikerecently ADV
, PUNCT
becoming VERB
dehyrated VERB
after ADP
about ADV
9 NUM
hours NOUN
of ADP
rigoroushiking VERB
despite SCONJ
having VERB
brought VERB
1 NUM
1/2 NUM
gallons NOUN
of ADP
water NOUN
( PUNCT
c. PROPN
6 NUM
liters).I NOUN
drank VERB
close ADV
to ADP
twice DET
as ADV
much ADJ
as SCONJ
anyone PRON
else ADV
, PUNCT
and CCONJ
no DET
one NOUN
else ADV
wasdehydrated VERB
. PUNCT
  SPACE
I PRON
do AUX
n't PART
think VERB
general ADJ
physical ADJ
condition NOUN
was AUX
an DET
issue NOUN
, PUNCT
since SCONJ
I PRON
was AUX
in ADP
at ADP
least ADJ
the DET
middle NOUN
of ADP
the DET
pack NOUN
in ADP
terms NOUN
of ADP
generalstamina PROPN
, PUNCT
so ADV
far ADV
as SCONJ
I PRON
could AUX
tell VERB
. PUNCT
It PRON
may AUX
be AUX
that SCONJ
I PRON
just ADV
plain ADJ
need VERB
more ADJ
water NOUN
than SCONJ
most ADJ
people NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
amwondering VERB
if SCONJ
theophylline NUM
and/or CCONJ
ephedrine PROPN
might AUX
be AUX
aggravating VERB
things NOUN
. PUNCT
I PRON
took VERB
a DET
couple NOUN
of ADP
Primatene ADJ
tablets NOUN
during ADP
the DET
hike NOUN
to PART
control VERB
asthma(24 PROPN
mg PROPN
. PROPN
ephedrine PROPN
, PUNCT
100 NUM
mg PROPN
. PROPN
theophylline PROPN
) PUNCT
. PUNCT
  SPACE
I PRON
gather VERB
that SCONJ
both DET
thosedrugs NOUN
are AUX
diuretics NOUN
. PUNCT
  SPACE
So ADV
now ADV
I PRON
'm AUX
wondering VERB
: PUNCT
does AUX
that DET
mean VERB
they PRON
canreduce VERB
the DET
body NOUN
's PART
ability NOUN
to PART
utilize VERB
available ADJ
water NOUN
? PUNCT
  SPACE
Would AUX
it PRON
be AUX
aparticularly ADV
  SPACE
stupid ADJ
thing NOUN
to PART
take VERB
that DET
medication NOUN
during ADP
hot ADJ
- PUNCT
weatherexercise NOUN
? PUNCT
  SPACE
( PUNCT
I PRON
always ADV
assumed VERB
diuresis NOUN
just ADV
meant VERB
you PRON
urinated VERB
a DET
lot NOUN
, PUNCT
butthat PROPN
was AUX
n't PART
the DET
case NOUN
yesterday.)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59330From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Chelation PROPN
therapyIn PROPN
article NOUN
< X
1rh3seINNfkc@newsstand.cit.cornell.edu NUM
> X
, PUNCT
Renee NOUN
< X
rme1@cornell.edu PROPN
> X
writes VERB
: PUNCT
> X
Does AUX
anyone PRON
here ADV
know VERB
anything PRON
about ADP
chelation NOUN
therapy NOUN
using VERB
EDTA NOUN
? PUNCT
  SPACE
My PRON
> NOUN
uncle NOUN
has AUX
emphesema PROPN
, PUNCT
and CCONJ
a DET
doctor NOUN
wants VERB
to PART
try VERB
it PRON
on ADP
him PRON
. PUNCT
  SPACE
We PRON
are AUX
> X
wondering VERB
if SCONJ
: PUNCT
> X
> X
1 NUM
. PUNCT
  SPACE
Is AUX
there PRON
any DET
evidence NOUN
EDTA VERB
chelation NOUN
therapy NOUN
is AUX
beneficial ADJ
for ADP
his PRON
> X
condition NOUN
, PUNCT
or CCONJ
any DET
condition NOUN
? PUNCT
> X
> X
2 NUM
. PUNCT
  SPACE
What PRON
possible ADJ
side NOUN
effects NOUN
are AUX
there ADV
. PUNCT
  SPACE
How ADV
can AUX
they PRON
be AUX
mimimized VERB
? PUNCT
> X
> X
Please INTJ
respond VERB
via ADP
e NOUN
- NOUN
mail NOUN
to ADP
    SPACE
rme1@cornell.edu PROPN
> X
> X
Thanks INTJ
, PUNCT
> X
ReneeEDTA(chelation NOUN
therapy NOUN
) PUNCT
has AUX
been AUX
used VERB
by ADP
some DET
physicians NOUN
to PART
try VERB
to PART
remove VERB
calcium NOUN
from ADP
calcified ADJ
plaques NOUN
in ADP
the DET
arterial ADJ
system(not NOUN
approved VERB
for ADP
such ADJ
use NOUN
) PUNCT
. PUNCT
  SPACE
There PRON
is AUX
also ADV
the DET
possibility NOUN
that SCONJ
lung NOUN
tissue NOUN
in ADP
patients NOUN
with ADP
lung NOUN
disease NOUN
has AUX
become VERB
calcified(chest PROPN
x NOUN
- NOUN
rays NOUN
would AUX
show VERB
this DET
) PUNCT
. PUNCT
  SPACE
There PRON
are AUX
side NOUN
- PUNCT
effects NOUN
to ADP
the DET
use NOUN
of ADP
EDTA NOUN
because SCONJ
it PRON
is AUX
not PART
specific ADJ
for ADP
calcium(it PROPN
also ADV
binds VERB
other ADJ
minerals NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
think VERB
that SCONJ
there PRON
have AUX
been AUX
some DET
deaths NOUN
when ADV
EDTA PROPN
chelation NOUN
therapy NOUN
has AUX
been AUX
used VERB
because SCONJ
of ADP
mineral NOUN
imbalances NOUN
that PRON
were AUX
not PART
detected VERB
and CCONJ
corrected VERB
. PUNCT
  SPACE
In ADP
animal NOUN
studies NOUN
, PUNCT
the DET
best ADJ
way NOUN
to PART
remove VERB
calcium NOUN
from ADP
plaques NOUN
in ADP
rabbits NOUN
was AUX
to PART
supplement VERB
the DET
rabbits NOUN
with ADP
vitamin NOUN
C NOUN
and CCONJ
magnesium(rabbits PROPN
already ADV
synthesize VERB
their PRON
own ADJ
vitamin NOUN
C NOUN
, PUNCT
the DET
extra ADJ
vitamin NOUN
C NOUN
was AUX
given VERB
in ADP
their PRON
diets NOUN
to PART
help VERB
the DET
magnesium NOUN
displace VERB
the DET
calcium NOUN
from ADP
the DET
plaques).The NUM
calcification NOUN
process NOUN
that PRON
occurs VERB
in ADP
both DET
plaques NOUN
and CCONJ
the DET
lung NOUN
probably ADV
can AUX
be AUX
prevented VERB
if SCONJ
magnesium NOUN
is AUX
used VERB
in ADP
supplemental ADJ
form NOUN
. PUNCT
  SPACE
Most ADJ
patietns NOUN
with ADP
calcium NOUN
deposits NOUN
are AUX
found VERB
to PART
be AUX
deficient ADJ
in ADP
calcium NOUN
. PUNCT
	 SPACE
1 NUM
. PUNCT
" PUNCT
Magnesium PROPN
interrationships NOUN
in ADP
ischemic ADJ
heart NOUN
disease NOUN
: PUNCT
A DET
review NOUN
" PUNCT
	    SPACE
Am PROPN
J PROPN
Clin PROPN
Nutr PROPN
27(1):59 NUM
- PUNCT
79(1974 PROPN
) PUNCT
. PUNCT
  SPACE
Supplementation PROPN
with ADP
	    SPACE
magnesium NOUN
will AUX
prevent VERB
clacification NOUN
of ADP
blood NOUN
vessels NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
" PUNCT
The DET
importance NOUN
of ADP
magnesium ADJ
deficiency NOUN
in ADP
cardiovascular PROPN
	     SPACE
disease NOUN
" PUNCT
Am PROPN
. PUNCT
Heart NOUN
J PROPN
94:649 NUM
- PUNCT
57(1977 PROPN
) PUNCT
. PUNCT
  SPACE
The DET
need NOUN
to PART
measure VERB
the DET
	     SPACE
serum PROPN
concentration NOUN
in ADP
all DET
patients NOUN
with ADP
heat NOUN
disease NOUN
can AUX
not PART
be AUX
	     SPACE
overemphasized VERB
. PUNCT
  SPACE
This DET
is AUX
a DET
review NOUN
article NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
" PUNCT
Effect NOUN
of ADP
dietary ADJ
magnesium NOUN
on ADP
development NOUN
of ADP
atherosclerosis NOUN
	    SPACE
in ADP
cholesterol NOUN
- PUNCT
fed VERB
rabbits NOUN
" PUNCT
Atherosclerosis PROPN
10:732 NUM
- PUNCT
7(1990 NUM
) PUNCT
. PUNCT
 	    SPACE
Magnesium PROPN
supplementation NOUN
greatly ADV
decreased VERB
the DET
formation NOUN
of ADP
	    SPACE
plaques NOUN
in ADP
rabbits NOUN
feed VERB
a DET
diet NOUN
that PRON
had AUX
1 NUM
% NOUN
by ADP
weight PROPN
cholesterrol PROPN
	    SPACE
added VERB
to ADP
their PRON
normal ADJ
food NOUN
. PUNCT
Since SCONJ
EDTA NOUN
will AUX
also ADV
bind VERB
magnesium NOUN
, PUNCT
I PRON
've AUX
never ADV
really ADV
liked VERB
it PRON
's AUX
use NOUN
for ADP
the DET
reversal NOUN
of ADP
athersclerosis NOUN
or CCONJ
now ADV
apparently ADV
in ADP
emphesema NOUN
patients NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59331From NUM
: PUNCT
blix@milton.cs.uiuc.edu PROPN
( PUNCT
Gunnar PROPN
Blix)Subject NUM
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosI PROPN
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) NUM
pros NOUN
andcons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
interested ADJ
inreferences NOUN
to ADP
studies NOUN
that PRON
indicate VERB
disadvantages NOUN
or CCONJ
refute VERB
studiesthat ADV
indicate VERB
advantages NOUN
. PUNCT
  SPACE
A DET
friend NOUN
who PRON
is AUX
a DET
medical ADJ
student NOUN
iswriting VERB
a DET
survey NOUN
paper NOUN
, PUNCT
and CCONJ
apparently ADV
the DET
studies NOUN
she PRON
has AUX
run VERB
intoare ADJ
all DET
for ADP
circumcision NOUN
, PUNCT
the DET
main ADJ
argument NOUN
being AUX
a DET
lower ADJ
risk NOUN
ofpenile NOUN
cancer NOUN
. PUNCT
Please INTJ
email NOUN
responses NOUN
as SCONJ
I PRON
am AUX
not PART
a DET
frequent ADJ
reader NOUN
of ADP
either DET
group NOUN
. PUNCT
I PRON
will AUX
summarize VERB
to ADP
the DET
net NOUN
. PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Gunnar PROPN
Blix PROPN
      SPACE
* PUNCT
Good ADJ
advice NOUN
is AUX
one NUM
of ADP
those DET
insults NOUN
that PRON
    SPACE
* PUNCT
* PUNCT
blix@cs.uiuc.edu PROPN
* PUNCT
ought AUX
to PART
be AUX
forgiven VERB
. PUNCT
              SPACE
-Unknown NUM
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
-- PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Gunnar PROPN
Blix PROPN
      SPACE
* PUNCT
Good ADJ
advice NOUN
is AUX
one NUM
of ADP
those DET
insults NOUN
that PRON
    SPACE
* PUNCT
* PUNCT
blix@cs.uiuc.edu PROPN
* PUNCT
ought AUX
to PART
be AUX
forgiven VERB
. PUNCT
              SPACE
-Unknown NUM
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59332From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rhb58$9cf@hsdndev.harvard.edu NUM
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr26.103242.1@vms.ocom.okstate.edu ADV
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu PROPN
writes:>>are PUNCT
in ADP
a DET
different ADJ
class NOUN
. PUNCT
  SPACE
The DET
big ADJ
question NOUN
seems VERB
to PART
be AUX
is AUX
it PRON
reasonable ADJ
to ADP
> X
> X
use VERB
them PRON
in ADP
patients NOUN
with ADP
GI PROPN
distress NOUN
or CCONJ
sinus NOUN
problems NOUN
that PRON
* PUNCT
could AUX
* PUNCT
be AUX
due ADJ
> X
> X
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
> X
> X
I PRON
guess VERB
I PRON
'm AUX
still ADV
not PART
clear ADJ
on ADP
what PRON
the DET
term NOUN
" PUNCT
candida PROPN
bloom PROPN
" PUNCT
means NOUN
, PUNCT
> X
but CCONJ
certainly ADV
it PRON
is AUX
well ADV
known ADJ
that SCONJ
thrush ADJ
( PUNCT
superficial ADJ
candidal NOUN
> X
infections NOUN
on ADP
mucous ADJ
membranes NOUN
) PUNCT
can AUX
occur VERB
after ADP
antibiotic ADJ
use NOUN
. PUNCT
> X
This DET
has AUX
nothing PRON
to PART
do AUX
with ADP
systemic ADJ
yeast NOUN
syndrome NOUN
, PUNCT
the DET
" PUNCT
quack NOUN
" PUNCT
> X
diagnosis NOUN
that PRON
has AUX
been AUX
being AUX
discussed VERB
. PUNCT
> X
> X
> X
> PROPN
found VERB
in ADP
the DET
sinus PROPN
mucus PROPN
membranes NOUN
than SCONJ
is AUX
candida PROPN
. PUNCT
  SPACE
Women NOUN
have AUX
been AUX
known VERB
> X
> X
for ADP
a DET
very ADV
long ADJ
time NOUN
to PART
suffer VERB
from ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
and CCONJ
a DET
> X
> X
women NOUN
is AUX
lucky ADJ
to PART
find VERB
a DET
physician NOUN
who PRON
is AUX
willing ADJ
to PART
treat VERB
the DET
cause NOUN
and CCONJ
> X
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
> X
> X
Lucky PROPN
how ADV
? PUNCT
  SPACE
Since SCONJ
a DET
recent ADJ
article NOUN
( PUNCT
randomized VERB
controlled VERB
trial NOUN
) PUNCT
of ADP
> NUM
oral ADJ
yogurt PROPN
on ADP
reducing VERB
vaginal ADJ
candidiasis NOUN
, PUNCT
I PRON
've AUX
mentioned VERB
to ADP
a DET
> X
number NOUN
of ADP
patients NOUN
with ADP
frequent ADJ
vaginal ADJ
yeast NOUN
infections NOUN
that SCONJ
they PRON
> X
could AUX
try VERB
eating VERB
6 NUM
ounces NOUN
of ADP
yogurt PROPN
daily ADV
. PUNCT
  SPACE
It PRON
turns VERB
out ADP
most ADV
would AUX
> X
rather ADV
just ADV
use VERB
anti ADJ
- ADJ
fungal ADJ
creams NOUN
when ADV
they PRON
get VERB
yeast NOUN
infections NOUN
. PUNCT
> X
> X
> X
yogurt PROPN
dangerous PROPN
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
> X
infections NOUN
should AUX
decline VERB
. PUNCT
> X
> X
Again ADV
, PUNCT
this DET
just ADV
is AUX
n't PART
what PRON
the DET
systemic ADJ
yeast NOUN
syndrome NOUN
is AUX
about ADP
, PUNCT
and CCONJ
> PROPN
has AUX
nothing PRON
to PART
do AUX
with ADP
the DET
quack ADJ
therapies NOUN
that PRON
were AUX
being AUX
discussed VERB
. PUNCT
> X
There PRON
is AUX
some DET
evidence NOUN
that PRON
attempts VERB
to PART
reinoculate VERB
the DET
GI PROPN
tract NOUN
with ADP
> NUM
bacteria NOUN
after ADP
antibiotic ADJ
therapy NOUN
do AUX
n't PART
seem VERB
to PART
be AUX
very ADV
helpful ADJ
in ADP
> X
reducing VERB
diarrhea NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
think VERB
anyone PRON
would AUX
view VERB
this DET
as SCONJ
a DET
> X
quack NOUN
therapy NOUN
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindYogurt PROPN
contains VERB
Lactobacillus PROPN
acidophilus NOUN
and CCONJ
L. PROPN
bulgaricus PROPN
. PUNCT
  SPACE
L. PROPN
acidophilus NOUN
is AUX
the DET
major ADJ
bacteria NOUN
in ADP
the DET
vaginal ADJ
tract NOUN
and CCONJ
is AUX
primarily ADV
responsible ADJ
for ADP
keeping VERB
the DET
vaginal ADJ
tract NOUN
acidic PROPN
and CCONJ
yeast NOUN
free ADJ
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
commercial ADJ
yogurt NOUN
sold VERB
in ADP
the DET
U.S. PROPN
has AUX
a DET
very ADV
low ADJ
L. PROPN
acidophilus NOUN
and CCONJ
L. PROPN
bulgaricus PROPN
count NOUN
. PUNCT
  SPACE
Neither DET
of ADP
these DET
bacteria NOUN
are AUX
obligate ADJ
anaerobes NOUN
with ADP
are AUX
much ADV
more ADV
important ADJ
in ADP
dealing VERB
with ADP
the DET
diarrhea NOUN
problem NOUN
. PUNCT
  SPACE
Gordon PROPN
R. PROPN
has AUX
told VERB
me PRON
through ADP
e NOUN
- NOUN
mail NOUN
that PRON
he PRON
gives VERB
his PRON
patients NOUN
L. PROPN
acidophilus NOUN
and CCONJ
several ADJ
different ADJ
obligate NOUN
anaerobes(which PROPN
set VERB
- PUNCT
up ADP
shop NOUN
in ADP
the DET
colon NOUN
) PUNCT
but CCONJ
he PRON
has AUX
n't PART
told VERB
me PRON
which PRON
ones NOUN
yet ADV
. PUNCT
  SPACE
The DET
Lactobacillus PROPN
genera NOUN
are AUX
mostly ADV
facultative ADJ
anaerobes NOUN
and CCONJ
will AUX
set VERB
- PUNCT
up ADP
shop NOUN
where ADV
they PRON
have AUX
access NOUN
to ADP
oxygen NOUN
if SCONJ
given VERB
a DET
chance(mouth PROPN
, PUNCT
anus NOUN
, PUNCT
sinus NOUN
cavity NOUN
and CCONJ
vagina PROPN
) PUNCT
. PUNCT
  SPACE
Having VERB
these DET
good ADJ
bacteria NOUN
around ADV
will AUX
greatly ADV
decrease VERB
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
in ADP
the DET
anal ADJ
region NOUN
or CCONJ
the DET
vagina PROPN
. PUNCT
  SPACE
I PRON
have AUX
not PART
proposed VERB
a DET
systemic ADJ
action NOUN
for ADP
candida PROPN
blooms NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
others NOUN
swear VERB
that SCONJ
all DET
kinds NOUN
of ADP
symptoms NOUN
arise VERB
from ADP
the DET
evil ADJ
yeast NOUN
blooms NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
ready ADJ
to PART
buy VERB
that DET
yet ADV
. PUNCT
  SPACE
I PRON
do AUX
believe VERB
that SCONJ
complications NOUN
at ADP
specific ADJ
sites(vagina PROPN
, PUNCT
anal ADJ
and CCONJ
maybe ADV
lower ADJ
colon NOUN
, PUNCT
sinus NOUN
and CCONJ
mouth NOUN
) PUNCT
can AUX
result VERB
from ADP
antibiotic ADJ
use NOUN
which PRON
removes VERB
the DET
competing VERB
bacteria NOUN
from ADP
these DET
sites NOUN
and CCONJ
thus ADV
lets VERB
candida PROPN
grow VERB
unchecked ADJ
. PUNCT
Restoring VERB
the DET
right ADJ
bacterial ADJ
balance NOUN
is AUX
the DET
best ADJ
way(in ADP
my PRON
opinion NOUN
) PUNCT
to PART
get AUX
rid VERB
of ADP
the DET
problem NOUN
. PUNCT
  SPACE
Anti NOUN
- NOUN
fungals NOUN
, PUNCT
a DET
low ADJ
carbohydrate NOUN
diet NOUN
and CCONJ
vitamin NOUN
A DET
supplementation NOUN
may AUX
all DET
help VERB
to PART
minimize VERB
the DET
local ADJ
irritation NOUN
until ADP
the DET
good ADJ
bacteria NOUN
can AUX
take VERB
over ADP
control NOUN
of ADP
the DET
food NOUN
supply NOUN
again ADV
and CCONJ
lower VERB
the DET
pH NOUN
to PART
basically ADV
starve VERB
the DET
candida PROPN
out ADP
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59333From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rhfrkINN816@shelley.u.washington.edu NUM
> X
, PUNCT
nodrog@hardy.u.washington.edu NOUN
( PUNCT
Gordon PROPN
Rubenfeld PROPN
) PUNCT
writes VERB
: PUNCT
> X
banschbach@vms.ocom.okstate.edu PROPN
writes VERB
: PUNCT
> X
> X
> X
to ADP
candida PROPN
blooms NOUN
following VERB
the DET
use NOUN
of ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotics NOUN
? PUNCT
  SPACE
Gorden ADJ
> X
> X
Rubenfeld PROPN
, PUNCT
through ADP
e NOUN
- NOUN
mail NOUN
, PUNCT
has AUX
assured VERB
me PRON
that SCONJ
most ADJ
physicians NOUN
recognize VERB
> X
> X
the DET
chance NOUN
of ADP
candida PROPN
blooms NOUN
occuring VERB
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
> X
> X
and CCONJ
they PRON
therefore ADV
reinnoculate VERB
their PRON
patients NOUN
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
to ADP
> X
> X
restore PROPN
competetion PROPN
for ADP
candida PROPN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
believe VERB
that SCONJ
this DET
is AUX
> X
> X
yet ADV
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
. PUNCT
  SPACE
> X
> X
   SPACE
Nor CCONJ
is AUX
it PRON
mine ADJ
. PUNCT
  SPACE
What PRON
I PRON
tried VERB
to PART
explain VERB
to ADP
Marty PROPN
was AUX
that SCONJ
it PRON
is AUX
clearly ADV
> X
understood VERB
that SCONJ
antibiotic ADJ
exposure NOUN
is AUX
a DET
risk NOUN
factor NOUN
for ADP
fungal PROPN
infections NOUN
> X
- PUNCT
which PRON
is AUX
not PART
the DET
same ADJ
as SCONJ
saying VERB
bacteria NOUN
prevent VERB
fungal PROPN
infections NOUN
. PUNCT
> X
Marty PROPN
made VERB
this DET
sound NOUN
like SCONJ
a DET
secret ADJ
  SPACE
known VERB
only ADV
to ADP
veternarians NOUN
and CCONJ
> X
biochemists NOUN
. PUNCT
  SPACE
Anyone PRON
who PRON
has AUX
treated VERB
a DET
urinary ADJ
tract NOUN
infection NOUN
knowns NOUN
> X
this DET
. PUNCT
At ADP
some DET
centers NOUN
pre VERB
- ADJ
op ADJ
liver NOUN
transplant NOUN
patients NOUN
receive VERB
bowel PROPN
> X
decontamination NOUN
directed VERB
at ADP
retaining VERB
" PUNCT
good ADJ
" PUNCT
anaerobic ADJ
flora PROPN
in ADP
an DET
attempt NOUN
> X
to PART
prevent VERB
fungal PROPN
colonization NOUN
in ADP
this DET
soon ADV
- PUNCT
to PART
- PUNCT
be AUX
high ADJ
risk NOUN
group NOUN
. PUNCT
  SPACE
I PRON
also ADV
> VERB
use VERB
lactobacillus NOUN
to PART
treat VERB
enteral ADJ
nutrition NOUN
associated PROPN
diarrhea PROPN
( PUNCT
that PRON
may AUX
> X
be AUX
in ADP
part NOUN
due ADJ
to ADP
alterations NOUN
in ADP
gut PROPN
flora PROPN
) PUNCT
. PUNCT
  SPACE
However ADV
, PUNCT
it PRON
is AUX
NOT ADV
part NOUN
of ADP
> X
my PRON
routine ADJ
practice NOUN
to PART
" PUNCT
reinnoculate VERB
" PUNCT
patients NOUN
with ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
after ADP
> NUM
antibiotics NOUN
. PUNCT
  SPACE
I PRON
have AUX
seen VERB
no DET
data NOUN
on ADP
this DET
practice NOUN
preventing VERB
or CCONJ
treating VERB
> X
fungal PROPN
infections NOUN
in ADP
at ADP
risk NOUN
patients NOUN
. PUNCT
  SPACE
Whether SCONJ
or CCONJ
not PART
it PRON
is AUX
a DET
" PUNCT
logical ADJ
> X
extension NOUN
" PUNCT
from ADP
the DET
available ADJ
observations NOUN
I PRON
'll AUX
leave VERB
to ADP
those DET
of ADP
you PRON
who PRON
> X
base VERB
strong ADJ
opinions NOUN
and CCONJ
argue VERB
over ADP
such ADJ
speculations NOUN
in ADP
the DET
absence NOUN
of ADP
> X
clinical ADJ
trials NOUN
. PUNCT
> X
   SPACE
One NUM
place NOUN
such ADJ
therapy NOUN
has AUX
been AUX
described VERB
is AUX
in ADP
treating VERB
particularly ADV
> X
recalcitrant ADJ
cases NOUN
of ADP
C. PROPN
difficile ADJ
colitis NOUN
( PUNCT
NOT ADV
a DET
fungal ADJ
infection NOUN
) PUNCT
. PUNCT
There ADV
> X
are AUX
case NOUN
reports NOUN
of ADP
using VERB
stool NOUN
( PUNCT
ie X
someone PRON
elses NOUN
) PUNCT
enemas NOUN
to PART
repopulate VERB
> X
the DET
patients NOUN
flora VERB
. PUNCT
  SPACE
Do AUX
n't PART
try VERB
this DET
at ADP
home NOUN
. PUNCT
> X
> X
> X
not PART
give VERB
give VERB
her PRON
advise NOUN
to PART
use VERB
the DET
OTC PROPN
anti ADJ
- ADJ
fungal ADJ
creams PROPN
. PUNCT
  SPACE
Since SCONJ
candida PROPN
> X
> X
colonizes VERB
primarily ADV
in ADP
the DET
ano NOUN
- PUNCT
rectal ADJ
area NOUN
, PUNCT
GI PROPN
symptoms NOUN
should AUX
be AUX
more ADV
common ADJ
> X
> X
than SCONJ
vaginal ADJ
problems NOUN
after ADP
broad ADJ
- PUNCT
spectrum NOUN
antibiotic ADJ
use NOUN
. PUNCT
> X
> X
   SPACE
Except SCONJ
that SCONJ
it PRON
is AUX
n't PART
. PUNCT
At ADP
least ADJ
symptomatically ADV
apparent ADJ
disease NOUN
. PUNCT
> X
> X
> X
Medicine PROPN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There ADV
> X
> X
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
> X
> X
kidney PROPN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
> X
> X
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
> X
> X
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
> X
> X
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to ADP
> X
> X
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
> X
> X
Medicine PROPN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
> X
> X
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
> X
> X
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
> X
> X
   SPACE
Seems VERB
like SCONJ
this DET
is AUX
an DET
excellent ADJ
argument NOUN
for ADP
ignoring VERB
anecdotal ADJ
> X
conventional ADJ
wisdom NOUN
( PUNCT
a DET
euphemism NOUN
for ADP
no DET
data NOUN
) PUNCT
and CCONJ
doing VERB
a DET
good ADJ
clinical ADJ
> X
trial NOUN
, PUNCT
like SCONJ
: PUNCT
> X
> X
AU PROPN
   SPACE
Dismukes PROPN
- PUNCT
W PROPN
- PUNCT
E. PROPN
  SPACE
Wade PROPN
- PUNCT
J PROPN
- PUNCT
S. PROPN
  SPACE
Lee PROPN
- PUNCT
J PROPN
- PUNCT
Y. PROPN
  SPACE
Dockery PROPN
- PUNCT
B PROPN
- PUNCT
K. PROPN
  SPACE
Hain PROPN
- PUNCT
J PROPN
- PUNCT
D. PROPN
> X
TI PROPN
   SPACE
A DET
randomized ADJ
, PUNCT
double ADJ
- PUNCT
blind ADJ
trial NOUN
of ADP
nystatin PROPN
therapy NOUN
for ADP
the DET
> X
      SPACE
candidiasis PROPN
hypersensitivity NOUN
syndrome NOUN
[ PUNCT
see VERB
comments NOUN
] PUNCT
> X
SO ADV
   SPACE
N PROPN
- PUNCT
Engl PROPN
- PUNCT
J PROPN
- PUNCT
Med PROPN
. PUNCT
  SPACE
1990 NUM
Dec PROPN
20 NUM
. PUNCT
  SPACE
323(25 NUM
) PUNCT
. PUNCT
  SPACE
P NOUN
1717 NUM
- SYM
23 NUM
. PUNCT
> X
      SPACE
psychological ADJ
tests NOUN
. PUNCT
RESULTS PROPN
. PUNCT
The DET
three NUM
active ADJ
- PUNCT
treatment NOUN
regimens NOUN
> X
      SPACE
and CCONJ
the DET
all ADV
- PUNCT
placebo NOUN
regimen PROPN
> X
      SPACE
significantly ADV
reduced VERB
both CCONJ
vaginal ADJ
and CCONJ
systemic ADJ
symptoms NOUN
( PUNCT
P NOUN
less ADJ
than SCONJ
> X
      SPACE
0.001 NUM
) PUNCT
, PUNCT
but CCONJ
nystatin PROPN
did AUX
not PART
reduce VERB
the DET
systemic ADJ
symptoms NOUN
> X
      SPACE
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
[ PUNCT
. PUNCT
. PUNCT
. PUNCT
] PUNCT
> X
      SPACE
CONCLUSIONS PROPN
. PUNCT
In ADP
women NOUN
with ADP
presumed ADJ
candidiasis NOUN
> X
      SPACE
hypersensitivity NOUN
syndrome NOUN
, PUNCT
nystatin PROPN
does AUX
not PART
reduce VERB
systemic ADJ
or CCONJ
> X
      SPACE
psychological ADJ
symptoms NOUN
significantly ADV
more ADV
than SCONJ
placebo NOUN
. PUNCT
Consequently ADV
, PUNCT
> X
      SPACE
the DET
empirical ADJ
recommendation NOUN
of ADP
long ADJ
- PUNCT
term NOUN
nystatin PROPN
therapy NOUN
for ADP
such ADJ
> X
      SPACE
women NOUN
appears VERB
to PART
be AUX
unwarranted ADJ
. PUNCT
> X
> X
   SPACE
Does AUX
this DET
trial NOUN
address NOUN
every DET
issue NOUN
raised VERB
here ADV
, PUNCT
no INTJ
. NOUN
  SPACE
Jon PROPN
Noring PROPN
was AUX
not PART
> X
surprised ADJ
at ADP
this DET
negative ADJ
trial NOUN
since SCONJ
they PRON
did AUX
n't PART
use VERB
* PUNCT
Sporanox PROPN
* PUNCT
( PUNCT
despite SCONJ
> X
Crook PROPN
's PART
recommendation NOUN
for ADP
Nystatin PROPN
) PUNCT
. PUNCT
  SPACE
Maybe ADV
they PRON
did AUX
n't PART
avoid VERB
those DET
> X
carbohydrates NOUN
. PUNCT
. PUNCT
. PUNCT
> X
> X
> X
The DET
conventional ADJ
wisdom NOUN
in ADP
animal NOUN
husbandry NOUN
has AUX
been AUX
that SCONJ
animals NOUN
need VERB
to PART
> X
> X
be AUX
reinnoculated VERB
with ADP
* PUNCT
good ADJ
* PUNCT
bacteria NOUN
after ADP
coming VERB
off ADP
antibiotic ADJ
therapy.>>If PROPN
it PRON
makes VERB
sense NOUN
for ADP
livestock NOUN
, PUNCT
why ADV
does AUX
n't PART
it PRON
make VERB
sense NOUN
for ADP
humans NOUN
> X
> X
David PROPN
? PUNCT
  SPACE
We PRON
are AUX
not PART
talking VERB
about ADP
a DET
dangerous ADJ
treatment(unless NOUN
you PRON
consider VERB
> X
> X
yogurt PROPN
dangerous PROPN
) PUNCT
. PUNCT
  SPACE
If SCONJ
this DET
were AUX
a DET
standard ADJ
part NOUN
of ADP
medical ADJ
practice NOUN
, PUNCT
as SCONJ
> X
> X
Gordon PROPN
R. PROPN
says VERB
it PRON
is AUX
, PUNCT
then ADV
the DET
incidence NOUN
of ADP
GI PROPN
distress NOUN
and CCONJ
vaginal ADJ
yeast NOUN
> X
> X
infections NOUN
should AUX
decline VERB
. PUNCT
> X
> X
   SPACE
Marty PROPN
, PUNCT
you PRON
've AUX
also ADV
changed VERB
the DET
terrain NOUN
of ADP
the DET
discussion NOUN
from ADP
empiric ADJ
> X
itraconazole NOUN
for ADP
undocumented ADJ
chronic ADJ
fungal PROPN
sinusitis NOUN
with ADP
systemic ADJ
> X
hypersensitivity NOUN
symptoms NOUN
( PUNCT
Noring VERB
syndrome NOUN
) PUNCT
to ADP
the DET
yoghurt PROPN
and CCONJ
vitamin PROPN
> X
therapy NOUN
of ADP
undocumented ADJ
candida PROPN
enteritis PROPN
( PUNCT
Elaine PROPN
Palmer PROPN
syndrome NOUN
) PUNCT
with ADP
> X
systemic ADJ
symptoms NOUN
. PUNCT
  SPACE
There PRON
is AUX
significant ADJ
difference NOUN
between ADP
the DET
cost NOUN
and CCONJ
> X
risk NOUN
of ADP
these DET
two NUM
empiric ADJ
therapeutic ADJ
trials NOUN
. PUNCT
  SPACE
Are AUX
we PRON
talking VERB
about ADP
" PUNCT
real ADJ
" PUNCT
> X
candida PROPN
infections NOUN
, PUNCT
the DET
whole ADJ
" PUNCT
yeast NOUN
connection NOUN
" PUNCT
hypothesis NOUN
, PUNCT
the DET
efficacy NOUN
> X
of ADP
routine ADJ
bacterial ADJ
repopulation NOUN
in ADP
humans NOUN
, PUNCT
or CCONJ
the DET
ability NOUN
of ADP
anecdotally ADV
> X
effective ADJ
therapies NOUN
( PUNCT
challenged VERB
by ADP
a DET
negative ADJ
randomized VERB
trial NOUN
) PUNCT
to PART
confirm VERB
> X
an DET
etiologic ADJ
hypothesis NOUN
( PUNCT
post X
hoc X
ergo PROPN
propter PROPN
hoc PROPN
) PUNCT
. PUNCT
  SPACE
We PRON
ca AUX
n't PART
seem VERB
to PART
> X
focus VERB
in ADP
on ADP
a DET
disease NOUN
, PUNCT
a DET
therapy NOUN
, PUNCT
or CCONJ
a DET
hypothesis NOUN
under ADP
discussion NOUN
. PUNCT
> X
           SPACE
> X
                            SPACE
I PRON
'm AUX
lost!Candida PROPN
can AUX
do AUX
that DET
to ADP
you PRON
. PUNCT
:-) PUNCT
  SPACE
Gordon PROPN
, PUNCT
I PRON
think VERB
that SCONJ
the DET
best ADV
clinical ADJ
trial NOUN
for ADP
candida PROPN
blooms NOUN
would AUX
involve VERB
giving VERB
women NOUN
with ADP
chronic ADJ
vaginal ADJ
candida PROPN
blooms NOUN
L. PROPN
Acidophilus PROPN
orally ADV
and CCONJ
see VERB
it PRON
it PRON
can AUX
decrease VERB
the DET
frequency NOUN
and CCONJ
extent NOUN
of ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
since SCONJ
most ADJ
of ADP
the DET
candida PROPN
seems VERB
to PART
be AUX
migrating VERB
in ADP
from ADP
the DET
anal ADJ
region NOUN
and CCONJ
L. PROPN
acidophilus NOUN
should AUX
be AUX
able ADJ
keep VERB
the DET
candida PROPN
in ADP
check NOUN
if SCONJ
it PRON
can AUX
make VERB
it PRON
through ADP
the DET
intestinal ADJ
tract NOUN
and CCONJ
colonize VERB
in ADP
the DET
anus NOUN
where ADV
it PRON
will AUX
have AUX
access NOUN
to ADP
oxygen(just PROPN
like SCONJ
it PRON
does AUX
in ADP
the DET
vagina PROPN
) PUNCT
. PUNCT
  SPACE
As ADV
much ADJ
stuff NOUN
as SCONJ
there PRON
is AUX
in ADP
the DET
lay NOUN
press NOUN
about ADP
L. PROPN
acidophilus NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
I PRON
'm AUX
really ADV
amazed ADJ
that SCONJ
someone PRON
has AUX
not PART
done VERB
a DET
clinical ADJ
trial NOUN
yet ADV
to PART
check VERB
it PRON
out ADP
. PUNCT
The DET
calcium NOUN
and CCONJ
kidney NOUN
stone NOUN
story NOUN
is AUX
not PART
a DET
good ADJ
reason NOUN
to PART
throw VERB
all DET
conventional ADJ
wisdom NOUN
out SCONJ
the DET
window NOUN
. PUNCT
  SPACE
Where ADV
would AUX
medicine VERB
be AUX
if SCONJ
conventional ADJ
wisdom NOUN
had AUX
not PART
been AUX
used VERB
to PART
develop VERB
many ADJ
of ADP
the DET
standard ADJ
medical ADJ
practices NOUN
that PRON
could AUX
not PART
be AUX
confirmed VERB
through ADP
clinical ADJ
trials?The ADJ
clinical ADJ
trial NOUN
is AUX
a DET
very ADV
new ADJ
arrival NOUN
on ADP
the DET
medical ADJ
scene(and NOUN
a DET
very ADV
important ADJ
one NUM
) PUNCT
. PUNCT
  SPACE
The DET
lack NOUN
of ADP
proof NOUN
that DET
reinnoculation NOUN
with ADP
good ADJ
bacteria NOUN
after ADP
antibiotic ADJ
use NOUN
is AUX
important ADJ
to ADP
the DET
health NOUN
of ADP
a DET
patient NOUN
is AUX
no DET
reason NOUN
to PART
dismiss VERB
it PRON
out ADP
- PUNCT
of ADP
- PUNCT
hand NOUN
, PUNCT
especially ADV
if SCONJ
reinnoculation NOUN
can AUX
be AUX
done VERB
cleaply NOUN
and CCONJ
safely(like CCONJ
it PRON
is AUX
in ADP
animal NOUN
husbandry).Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59334From NUM
: PUNCT
FOO@MHFOO.PC.MY NUM
( PUNCT
Dr. PROPN
Foo PROPN
Meng PROPN
How)Subject NOUN
: PUNCT
How ADV
to PART
gain VERB
access?To PROPN
Whomever PROPN
who PRON
can AUX
help VERB
me PRON
, PUNCT
	 SPACE
I PRON
am AUX
a DET
doctor NOUN
from ADP
Kota PROPN
Bharu PROPN
, PUNCT
Kelantan PROPN
, PUNCT
Malaysia PROPN
. PUNCT
I PRON
have AUX
recently ADV
hooked VERB
up ADP
my PRON
private ADJ
home NOUN
computer NOUN
to PART
EMail NOUN
via ADP
the DET
local ADJ
telephone NOUN
company NOUN
. PUNCT
I PRON
am AUX
really ADV
interestedin PROPN
corresponding VERB
with ADP
other ADJ
Doctors NOUN
or CCONJ
medical ADJ
researchers NOUN
through ADP
Email PROPN
. PUNCT
I PRON
also ADV
hopeto VERB
be VERB
able ADJ
to PART
subscribe VERB
to ADP
a DET
news NOUN
network NOUN
on ADP
medicine NOUN
. PUNCT
Can AUX
someone PRON
please INTJ
tell VERB
me PRON
what PRON
I PRON
should AUX
do AUX
? PUNCT
I PRON
am AUX
completely ADV
new ADJ
to ADP
this DET
and CCONJ
have AUX
no DET
idea NOUN
about ADP
the DET
vast ADJ
capabilities NOUN
of ADP
Email PROPN
. PUNCT
Thank VERB
you PRON
for ADP
your PRON
attention NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59335From NUM
: PUNCT
plebrun@minf.vub.ac.be PROPN
( PUNCT
Philippe PROPN
Lebrun)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
, PUNCT
stephen@mont.cs.missouri.edu PRON
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:| PROPN
> X
When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident| PROPN
> X
in ADP
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having| ADV
> X
sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm| PROPN
> X
cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.| PROPN
> X
| NOUN
> X
Was AUX
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually| PROPN
> X
occur?Sperm NOUN
deposited VERB
near SCONJ
the DET
entrance NOUN
of ADP
the DET
vagina PROPN
has AUX
been AUX
known VERB
to ADP
causepregnancy NOUN
, PUNCT
even ADV
in ADP
the DET
presence NOUN
of ADP
a DET
hymen NOUN
. PUNCT
I PRON
doubt VERB
that DET
sperm NOUN
could AUX
make VERB
it PRON
through ADP
a DET
layer NOUN
of ADP
cloth NOUN
then ADV
find VERB
the DET
right ADJ
path NOUN
to ADP
a DET
waiting NOUN
ovum ADV
, PUNCT
but CCONJ
it PRON
might AUX
be AUX
possible ADJ
. PUNCT
So ADV
, PUNCT
it PRON
is AUX
possible ADJ
for ADP
a DET
woman NOUN
to PART
be AUX
both DET
virgin ADJ
and CCONJ
pregnant ADJ
. PUNCT
Also ADV
, PUNCT
some DET
hymens NOUN
are AUX
sufficiently ADV
loose ADJ
to PART
allow VERB
near ADV
- PUNCT
normal ADJ
intercoursewithout NOUN
rupturing VERB
. PUNCT
The DET
problem NOUN
when ADV
investigating VERB
these DET
phenomenae NOUN
is AUX
, PUNCT
of ADP
course NOUN
, PUNCT
getting VERB
an DET
honest ADJ
account NOUN
of ADP
what PRON
exactly ADV
happened.-philippeNewsgroup ADJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59336From NUM
: PUNCT
plebrun@minf.vub.ac.be PROPN
( PUNCT
Philippe PROPN
Lebrun)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Frozen ADJ
shoulder NOUN
and CCONJ
lawn NOUN
mowingIn PROPN
article NOUN
< X
1993Apr23.213823.11738@ux1.cts.eiu.edu NUM
> X
, PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes:| PROPN
> X
Ihave PROPN
had AUX
a DET
frozen ADJ
shoulder NOUN
for ADP
over ADP
a DET
year NOUN
or CCONJ
about ADV
a DET
year NOUN
. PUNCT
  SPACE
It PRON
is AUX
still| PROPN
> X
partially ADV
frozen VERB
, PUNCT
and CCONJ
I PRON
am AUX
still ADV
in ADP
physical ADJ
therapy NOUN
every DET
week NOUN
. PUNCT
  SPACE
But CCONJ
the| PROPN
> X
pain NOUN
has AUX
subsided VERB
almost ADV
completely ADV
. PUNCT
  SPACE
UNTIL ADP
last ADJ
week NOUN
when ADV
I PRON
mowed VERB
the| PROPN
> X
lawn NOUN
for ADP
twenty NUM
minutes NOUN
each DET
, PUNCT
two NUM
days NOUN
in ADP
a DET
row NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
push NOUN
type NOUN
power| NOUN
> X
mower NOUN
. PUNCT
  SPACE
The DET
pain NOUN
started VERB
back ADV
up ADP
a DET
little ADJ
bit NOUN
for ADP
the DET
first ADJ
time NOUN
in ADP
quite| PROPN
> X
a DET
while NOUN
, PUNCT
and CCONJ
I PRON
used VERB
ice NOUN
and CCONJ
medicine NOUN
again ADV
. PUNCT
  SPACE
Can AUX
anybody PRON
explain VERB
why ADV
this| PROPN
> X
particular ADJ
activity NOUN
, PUNCT
which PRON
does AUX
not PART
seem VERB
to PART
stress VERB
me PRON
very ADV
much ADV
generally,| NOUN
> X
should AUX
cause VERB
this DET
shoulder NOUN
problem?You NOUN
need VERB
to PART
use VERB
your PRON
shoulder NOUN
muscles NOUN
to PART
push VERB
the DET
mower NOUN
. PUNCT
If SCONJ
you PRON
have AUX
n't PART
beendoing VERB
much ADJ
exercise NOUN
, PUNCT
as SCONJ
I PRON
suppose VERB
you PRON
have AUX
n't PART
, PUNCT
then ADV
a DET
constant ADJ
20 NUM
minutelong ADJ
effort NOUN
can AUX
cause VERB
stiffness NOUN
and CCONJ
cramps.-philippeNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59337From NUM
: PUNCT
" PUNCT
nigel PROPN
allen PROPN
" PUNCT
< X
nigel.allen@canrem.com>Subject PROPN
: PUNCT
Occupational PROPN
Injuries PROPN
and CCONJ
Disease PROPN
: PUNCT
Workers PROPN
Memorial PROPN
DayHere PROPN
is AUX
a DET
press NOUN
release NOUN
from ADP
the DET
American PROPN
Federation PROPN
of ADP
State PROPN
, PUNCT
County PROPN
and CCONJ
Municipal PROPN
Employees PROPN
. PUNCT
Unions NOUN
Point NOUN
To ADP
Deadly PROPN
Workplaces PROPN
; PUNCT
AFSCME PROPN
, PUNCT
Other ADJ
UnionsCommemorate PROPN
Workers PROPN
Memorial PROPN
Day PROPN
To ADP
: PUNCT
National PROPN
Desk PROPN
, PUNCT
Labor PROPN
Writer PROPN
Contact PROPN
: PUNCT
Janet PROPN
Rivera PROPN
of ADP
the DET
American PROPN
Federation PROPN
of ADP
State PROPN
, PUNCT
Countyand PROPN
Municipal PROPN
Employees PROPN
, PUNCT
AFL PROPN
- PUNCT
CIO PROPN
, PUNCT
202 NUM
- PUNCT
429 NUM
- PUNCT
1130 NUM
   SPACE
WASHINGTON PROPN
, PUNCT
April PROPN
23 NUM
-- PUNCT
The DET
American PROPN
Federation PROPN
of ADP
State PROPN
, PUNCT
County PROPN
and CCONJ
Municipal PROPN
Employees PROPN
( PUNCT
AFSCME PROPN
) PUNCT
and CCONJ
other ADJ
unionsof NOUN
the DET
AFL PROPN
- PUNCT
CIO PROPN
on ADP
Wednesday PROPN
, PUNCT
April PROPN
28 NUM
, PUNCT
will AUX
commemorate VERB
the DET
fifthannual ADJ
Workers PROPN
Memorial PROPN
Day PROPN
-- PUNCT
a DET
day NOUN
to PART
pay VERB
homage NOUN
to ADP
the DET
6million NUM
workers NOUN
who PRON
are AUX
killed VERB
, PUNCT
injured VERB
, PUNCT
or CCONJ
diseased VERB
on ADP
the DET
job NOUN
. PUNCT
   SPACE
This DET
year NOUN
, PUNCT
AFSCME PROPN
will AUX
focus VERB
its PRON
Workers PROPN
Memorial PROPN
Day PROPN
efforts NOUN
anthe VERB
dangerous ADJ
environment NOUN
in ADP
which PRON
corrections VERB
officers NOUN
must AUX
work VERB
. PUNCT
Earlier ADV
this DET
month NOUN
, PUNCT
an DET
AFSCME PROPN
corrections NOUN
officer NOUN
, PUNCT
RobertVallandingham PROPN
, PUNCT
was AUX
killed VERB
by ADP
inmates NOUN
who PRON
overtook VERB
the DET
correctionsfacility NOUN
in ADP
Lucasville PROPN
, PUNCT
Ohio PROPN
. PUNCT
   SPACE
The DET
law NOUN
and CCONJ
order NOUN
agenda NOUN
of ADP
the DET
1980s NUM
has AUX
resulted VERB
in ADP
a DET
steadyincrease NOUN
in ADP
the DET
prison NOUN
population NOUN
for ADP
the DET
past ADJ
five NUM
years NOUN
. PUNCT
  SPACE
OnJn PROPN
. PROPN
1 NUM
, PUNCT
1992 NUM
, PUNCT
the DET
prison NOUN
population NOUN
was AUX
709,587 NUM
. PUNCT
Projectionsshow VERB
a DET
continued VERB
increase NOUN
in ADP
the DET
number NOUN
of ADP
inmates NOUN
, PUNCT
with ADP
anexpected VERB
prison NOUN
population NOUN
of ADP
811,253 NUM
in ADP
1994 NUM
. PUNCT
   SPACE
The DET
conditions NOUN
which PRON
this DET
burgeoning VERB
prison NOUN
population NOUN
hascreated VERB
for ADP
corrections NOUN
officers NOUN
is AUX
partially ADV
reflected VERB
in ADP
thenumber NOUN
of ADP
assaults NOUN
by ADP
inmates NOUN
against ADP
staff NOUN
. PUNCT
  SPACE
Assaults NOUN
againststaff NOUN
increased VERB
dramatically ADV
between ADP
1987 NUM
and CCONJ
1989 NUM
, PUNCT
and CCONJ
remainhigh PROPN
. PUNCT
  SPACE
In ADP
1987 NUM
, PUNCT
there PRON
were AUX
808 NUM
assaults NOUN
by ADP
inmates NOUN
against ADP
staff NOUN
, PUNCT
compared VERB
to ADP
9,961 NUM
such ADJ
assaults NOUN
in ADP
1991 NUM
. PUNCT
   SPACE
The DET
increased VERB
number NOUN
of ADP
inmates NOUN
has AUX
brought VERB
on ADP
the DET
dangerouscombination NOUN
of ADP
overcrowding ADJ
and CCONJ
understaffing NOUN
. PUNCT
  SPACE
For ADP
example NOUN
in ADP
Ohioofficer PROPN
- PUNCT
to ADP
- PUNCT
inmate NOUN
ratio NOUN
is AUX
1 NUM
to ADP
8.4 NUM
-- PUNCT
the DET
second ADV
worst ADJ
ratio NOUN
inthe DET
nation NOUN
. PUNCT
The DET
national ADJ
average NOUN
is AUX
1 NUM
to ADP
5.3 NUM
. PUNCT
  SPACE
Other ADJ
health NOUN
andsafety NOUN
issues NOUN
facing VERB
corrections NOUN
officers NOUN
include VERB
AIDS PROPN
, PUNCT
HepatitisB PROPN
, PUNCT
tuberculosis NOUN
, PUNCT
stress NOUN
, PUNCT
and CCONJ
chemical NOUN
hazards NOUN
. PUNCT
   SPACE
AFSCME PROPN
has AUX
more ADJ
than SCONJ
50,000 NUM
members NOUN
who PRON
work VERB
in ADP
the DET
nation'sfederal ADJ
, PUNCT
state NOUN
and CCONJ
local ADJ
correctional ADJ
facilities NOUN
. PUNCT
   SPACE
Correction NOUN
officers NOUN
are AUX
not PART
alone ADJ
in ADP
performing VERB
their PRON
jobs NOUN
underlife NOUN
- PUNCT
threatening VERB
conditions NOUN
. PUNCT
  SPACE
Every DET
year NOUN
, PUNCT
10,000 NUM
American ADJ
workersdie NOUN
from ADP
job NOUN
- PUNCT
related VERB
injuries NOUN
, PUNCT
and CCONJ
tens NOUN
of ADP
thousands NOUN
more ADJ
die VERB
fromoccupational ADJ
disease NOUN
. PUNCT
  SPACE
Public ADJ
employees NOUN
do AUX
some DET
of ADP
the DET
nation'smost ADJ
dangerous ADJ
jobs NOUN
. PUNCT
Perilous ADJ
occupations NOUN
include VERB
: PUNCT
   SPACE
-- PUNCT
Highway PROPN
Workers PROPN
- PUNCT
Highway PROPN
workers NOUN
are AUX
often ADV
injured VERB
and CCONJ
      SPACE
frequently ADV
killed VERB
by ADP
moving VERB
traffic NOUN
because SCONJ
work NOUN
zones NOUN
are AUX
      SPACE
not PART
barricaded VERB
or CCONJ
do AUX
n't PART
have AUX
proper ADJ
lighting NOUN
. PUNCT
   SPACE
-- PUNCT
Health PROPN
Care PROPN
Workers PROPN
- PUNCT
Hospitals PROPN
have AUX
the DET
highest ADJ
number NOUN
of ADP
      SPACE
job NOUN
- PUNCT
related VERB
injuries NOUN
and CCONJ
illnesses NOUN
of ADP
any DET
private ADJ
sector NOUN
      SPACE
employer NOUN
and CCONJ
nursing NOUN
homes NOUN
ranked VERB
fifth ADJ
. PUNCT
  SPACE
There PRON
were AUX
more ADJ
      SPACE
than SCONJ
325,000 NUM
job NOUN
- PUNCT
related VERB
illnesses NOUN
and CCONJ
injuries NOUN
in ADP
private ADJ
      SPACE
sector NOUN
hospitals NOUN
in ADP
1991 NUM
, PUNCT
up ADV
almost ADV
10 NUM
percent NOUN
over ADP
the DET
      SPACE
previous ADJ
year NOUN
. PUNCT
  SPACE
It PRON
is AUX
generally ADV
believed VERB
that SCONJ
health NOUN
care NOUN
      SPACE
workers NOUN
employed VERB
at ADP
public ADJ
sector NOUN
hospitals NOUN
and CCONJ
nursing NOUN
homes NOUN
      SPACE
have AUX
a DET
significantly ADV
higher ADJ
rate NOUN
of ADP
injuries NOUN
and CCONJ
illnesses NOUN
      SPACE
than SCONJ
do AUX
their PRON
private ADJ
sector NOUN
counterparts NOUN
. PUNCT
  SPACE
Health PROPN
and CCONJ
safety PROPN
      SPACE
issues NOUN
facing VERB
health NOUN
care NOUN
workers NOUN
include VERB
exposure NOUN
to ADP
      SPACE
tuberculosis NOUN
and CCONJ
the DET
HIV PROPN
virus NOUN
, PUNCT
back ADJ
injuries NOUN
, PUNCT
and CCONJ
high ADJ
      SPACE
levels NOUN
of ADP
stress NOUN
. PUNCT
   SPACE
-- PUNCT
Social PROPN
Workers PROPN
- PUNCT
Social ADJ
workers NOUN
who PRON
work VERB
in ADP
mental ADJ
health NOUN
      SPACE
institutions NOUN
are AUX
often ADV
the DET
victims NOUN
of ADP
assaults NOUN
and CCONJ
, PUNCT
      SPACE
sometimes ADV
, PUNCT
fatal ADJ
attacks NOUN
. PUNCT
  SPACE
For ADP
instance NOUN
, PUNCT
last ADJ
October PROPN
, PUNCT
a DET
man NOUN
      SPACE
carrying VERB
a DET
semiautomatic ADJ
handgun NOUN
walked VERB
into ADP
the DET
Schuyler PROPN
      SPACE
County PROPN
Social PROPN
Services PROPN
Building PROPN
in ADP
Watkins PROPN
Glenn PROPN
, PUNCT
N.Y. PROPN
      SPACE
and CCONJ
fatally ADV
shot VERB
social ADJ
services NOUN
workers NOUN
, PUNCT
before ADP
turning VERB
the DET
      SPACE
gun NOUN
on ADP
himself PRON
. PUNCT
  SPACE
There PRON
are AUX
two NUM
basic ADJ
problems NOUN
. PUNCT
  SPACE
First PROPN
is AUX
a DET
      SPACE
growing VERB
lack NOUN
of ADP
support NOUN
services NOUN
for ADP
people NOUN
who PRON
do AUX
n't PART
have AUX
      SPACE
the DET
help NOUN
they PRON
need VERB
. PUNCT
  SPACE
Because SCONJ
workers NOUN
are AUX
overworked VERB
, PUNCT
some DET
      SPACE
clients NOUN
are AUX
not PART
given VERB
the DET
adequate ADJ
amount NOUN
of ADP
counselling NOUN
. PUNCT
      SPACE
Such ADJ
conditions NOUN
may AUX
cause VERB
clients NOUN
to PART
become VERB
more ADV
frustrated ADJ
. PUNCT
      SPACE
The DET
" PUNCT
quality NOUN
" PUNCT
of ADP
the DET
clients NOUN
is AUX
also ADV
becoming VERB
more ADV
violent ADJ
, PUNCT
      SPACE
as SCONJ
more ADJ
are AUX
moved VERB
out SCONJ
of ADP
the DET
institutions NOUN
. PUNCT
   SPACE
Nearly ADV
2 NUM
million NUM
workers NOUN
have AUX
been AUX
killed VERB
by ADP
workplace PROPN
hazardssince NOUN
OSHA PROPN
was AUX
passed VERB
. PUNCT
  SPACE
Moreover ADV
, PUNCT
as SCONJ
AFSCME PROPN
President PROPN
Gerald PROPN
W.McEntee PROPN
explains VERB
, PUNCT
OSHA PROPN
does AUX
not PART
provide VERB
workplace NOUN
safetyprotections NOUN
for ADP
public ADJ
employees NOUN
. PUNCT
   SPACE
" PUNCT
More ADJ
than SCONJ
1,600 NUM
public ADJ
employees NOUN
are AUX
killed VERB
each DET
year NOUN
on ADP
thejob PROPN
, PUNCT
yet ADV
27 NUM
states NOUN
still ADV
provide VERB
no DET
federally ADV
- PUNCT
approved VERB
OSHAcoverage NOUN
for ADP
public ADJ
employees NOUN
, PUNCT
" PUNCT
said VERB
McEntee PROPN
. PUNCT
  SPACE
" PUNCT
This DET
, PUNCT
despite SCONJ
thefact NOUN
that SCONJ
public ADJ
employees NOUN
-- PUNCT
highway NOUN
workers NOUN
, PUNCT
health NOUN
care NOUN
workers NOUN
, PUNCT
corrections NOUN
officers NOUN
, PUNCT
to PART
name VERB
but CCONJ
a DET
few ADJ
-- PUNCT
do AUX
some DET
of ADP
the DET
mostdangerous ADJ
work NOUN
in ADP
our PRON
society NOUN
. PUNCT
  SPACE
This DET
year NOUN
we PRON
are AUX
fighting VERB
forpassage NOUN
of ADP
OSHA PROPN
reform NOUN
legislation NOUN
to PART
give VERB
all DET
workers NOUN
greaterrights NOUN
and CCONJ
protections NOUN
, PUNCT
and CCONJ
finally ADV
guarantee VERB
all DET
public ADJ
employeessafe NOUN
workplaces NOUN
. PUNCT
  SPACE
We PRON
need VERB
the DET
public ADJ
support NOUN
to PART
be AUX
successful ADJ
. PUNCT
" PUNCT
   SPACE
Government PROPN
workers NOUN
suffer VERB
25 NUM
percent NOUN
more ADJ
injuries NOUN
than SCONJ
privatesector NOUN
workers NOUN
, PUNCT
and CCONJ
these DET
injuries NOUN
are AUX
almost ADV
75 NUM
percent NOUN
moresevere NOUN
. PUNCT
   SPACE
Public ADJ
employees NOUN
were AUX
exempted VERB
from ADP
OSHA PROPN
when ADV
the DET
law NOUN
was AUX
passedin PROPN
1970 NUM
and CCONJ
today NOUN
, PUNCT
public ADJ
employees NOUN
in ADP
more ADJ
than SCONJ
half DET
the DET
stateshave NOUN
no DET
OSHA PROPN
coverage NOUN
. PUNCT
-30 PROPN
- PUNCT
--Canada PUNCT
Remote PROPN
Systems PROPN
- PUNCT
Toronto PROPN
, PUNCT
Ontario416 PROPN
- PUNCT
629 NUM
- PUNCT
7000/629 NUM
- PUNCT
7044Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59338From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
nodrog@hardy.u.washington.edu NOUN
( PUNCT
Gordon PROPN
Rubenfeld PROPN
) PUNCT
writes VERB
: PUNCT
> X
  SPACE
Marty PROPN
, PUNCT
you PRON
've AUX
also ADV
changed VERB
the DET
terrain NOUN
of ADP
the DET
discussion NOUN
from ADP
empiric ADJ
> X
itraconazole NOUN
for ADP
undocumented ADJ
chronic ADJ
fungal PROPN
sinusitis NOUN
with ADP
systemic ADJ
> X
hypersensitivity NOUN
symptoms NOUN
( PUNCT
Noring VERB
syndrome NOUN
) PUNCT
to ADP
the DET
yoghurt PROPN
and CCONJ
vitamin PROPN
> X
therapy NOUN
of ADP
undocumented ADJ
candida PROPN
enteritis PROPN
( PUNCT
Elaine PROPN
Palmer PROPN
syndrome NOUN
) PUNCT
with ADP
> X
systemic ADJ
symptoms NOUN
. PUNCT
  SPACE
There PRON
is AUX
significant ADJ
difference NOUN
between ADP
the DET
cost NOUN
and CCONJ
> X
risk NOUN
of ADP
these DET
two NUM
empiric ADJ
therapeutic ADJ
trials NOUN
. PUNCT
  SPACE
Are AUX
we PRON
talking VERB
about ADP
" PUNCT
real">candida PROPN
infections NOUN
, PUNCT
the DET
whole ADJ
" PUNCT
yeast NOUN
connection NOUN
" PUNCT
hypothesis NOUN
, PUNCT
the DET
efficacy NOUN
> X
of ADP
routine ADJ
bacterial ADJ
repopulation NOUN
in ADP
humans NOUN
, PUNCT
or CCONJ
the DET
ability NOUN
of ADP
anecdotally ADV
> X
effective ADJ
therapies NOUN
( PUNCT
challenged VERB
by ADP
a DET
negative ADJ
randomized VERB
trial NOUN
) PUNCT
to PART
confirm VERB
> X
an DET
etiologic ADJ
hypothesis NOUN
( PUNCT
post X
hoc X
ergo PROPN
propter PROPN
hoc PROPN
) PUNCT
. PUNCT
  SPACE
We PRON
ca AUX
n't PART
seem VERB
to PART
> X
focus VERB
in ADP
on ADP
a DET
disease NOUN
, PUNCT
a DET
therapy NOUN
, PUNCT
or CCONJ
a DET
hypothesis NOUN
under ADP
discussion NOUN
. PUNCT
> X
          SPACE
> X
                           SPACE
I PRON
'm AUX
lost!Point NOUN
1 NUM
: PUNCT
I'm NOUN
beginning VERB
to PART
see VERB
that DET
* PUNCT
part NOUN
* PUNCT
of ADP
the DET
disagreements NOUN
about ADP
the DET
whole"yeast PROPN
issue NOUN
" PUNCT
is AUX
on ADP
differing VERB
perceptions NOUN
and CCONJ
on ADP
differing VERB
meaningsof ADJ
words NOUN
. PUNCT
  SPACE
Medical ADJ
doctors NOUN
have AUX
a DET
very ADV
specific ADJ
and CCONJ
specialized ADJ
" PUNCT
jargon",necessary PROPN
for ADP
precise ADJ
communication NOUN
within ADP
their PRON
field NOUN
( PUNCT
which PRON
I PRON
'm AUX
fullycognizant ADJ
of ADP
since SCONJ
I PRON
, PUNCT
too ADV
, PUNCT
speak VERB
" PUNCT
jargonese ADJ
" PUNCT
when ADV
with ADP
my PRON
peers NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
thesituation NOUN
in ADP
sci.med VERB
, PUNCT
many ADJ
times NOUN
the DET
words NOUN
or CCONJ
phrases NOUN
used VERB
by ADP
doctors NOUN
canhave VERB
a DET
different ADJ
and CCONJ
more ADV
specific ADJ
meaning NOUN
than SCONJ
the DET
same ADJ
word NOUN
used VERB
in ADP
theworld NOUN
at ADP
large ADJ
, PUNCT
causing VERB
significant ADJ
miscommunication NOUN
. PUNCT
  SPACE
One NUM
example NOUN
word NOUN
, PUNCT
and CCONJ
very ADV
relevant ADJ
to ADP
the DET
yeast NOUN
discussion NOUN
, PUNCT
is AUX
the DET
exact ADJ
meaning NOUN
of ADP
" PUNCT
systemic" NOUN
. PUNCT
It PRON
is AUX
now ADV
obvious ADJ
to ADP
me PRON
that SCONJ
the DET
meaning NOUN
of ADP
this DET
word NOUN
is AUX
very ADV
specific ADJ
, PUNCT
muchmore ADV
so ADV
than SCONJ
its PRON
meaning NOUN
to ADP
a DET
non ADJ
- ADJ
doctor ADJ
. PUNCT
  SPACE
There PRON
is AUX
also ADV
the DET
observation NOUN
ofthis PRON
newsgroup NOUN
that SCONJ
both DET
doctors NOUN
and CCONJ
non NOUN
- NOUN
doctors NOUN
come VERB
together ADV
on ADP
essentiallyequal ADJ
terms NOUN
, PUNCT
which PRON
, PUNCT
when ADV
combined VERB
with ADP
the DET
jargon PROPN
issue NOUN
, PUNCT
can AUX
further VERB
fanthe VERB
flames NOUN
. PUNCT
  SPACE
This DET
is AUX
probably ADV
the DET
first ADJ
time NOUN
that SCONJ
practicing VERB
doctors NOUN
getreally ADV
" PUNCT
beat VERB
up ADP
" PUNCT
by ADP
non NOUN
- NOUN
doctors NOUN
for ADP
their PRON
views NOUN
on ADP
medicine NOUN
, PUNCT
which PRON
theyotherwise NOUN
do AUX
n't PART
see VERB
much ADJ
of ADP
in ADP
their PRON
practice NOUN
except SCONJ
for ADP
the DET
occasional"difficult ADJ
" PUNCT
patient ADJ
. PUNCT
Point NOUN
2 NUM
: PUNCT
I PRON
understand VERB
the DET
viewpoint NOUN
among ADP
many ADJ
practicing VERB
doctors NOUN
that SCONJ
they PRON
will AUX
notprescribe VERB
any DET
treatments NOUN
/ SYM
therapies NOUN
for ADP
their PRON
patients NOUN
unless SCONJ
such ADJ
treatmentshave NOUN
been AUX
shown VERB
to PART
be AUX
effective ADJ
and CCONJ
the DET
risks NOUN
understood VERB
from ADP
well ADV
- PUNCT
constructedclinical ADJ
trials NOUN
( PUNCT
usually ADV
double ADJ
- PUNCT
blind ADJ
) PUNCT
, PUNCT
or CCONJ
that SCONJ
such ADJ
treatments NOUN
/ SYM
therapies NOUN
arepart NOUN
of ADP
an DET
approved VERB
and CCONJ
funded VERB
clinical ADJ
trial NOUN
. PUNCT
  SPACE
To ADP
these DET
doctors NOUN
, PUNCT
to PART
do AUX
anydifferently ADV
would AUX
, PUNCT
in ADP
this DET
belief NOUN
system NOUN
, PUNCT
be AUX
unethical ADJ
practice NOUN
. PUNCT
  SPACE
And CCONJ
itfollows VERB
that SCONJ
any DET
therapy NOUN
not PART
on ADP
the DET
" PUNCT
accepted VERB
" PUNCT
list NOUN
is AUX
therefore ADV
a DET
non ADJ
- ADJ
therapy ADJ
- PUNCT
it PRON
does AUX
not PART
even ADV
exist VERB
, PUNCT
nor CCONJ
does AUX
the DET
underlying ADJ
hypothesis NOUN
ortheory NOUN
have AUX
any DET
validity NOUN
, PUNCT
even ADV
if SCONJ
it PRON
sounds VERB
very ADV
plausible ADJ
by ADP
extrapolationof PROPN
what PRON
is AUX
currently ADV
known VERB
. PUNCT
  SPACE
Anecdotal ADJ
evidence NOUN
has AUX
no DET
value NOUN
, PUNCT
either ADV
, PUNCT
froma ADJ
treatment NOUN
point NOUN
- PUNCT
of ADP
- PUNCT
view NOUN
. PUNCT
And CCONJ
by ADV
and CCONJ
large ADJ
, PUNCT
as SCONJ
a DET
scientist NOUN
myself PRON
, PUNCT
I PRON
am AUX
glad ADJ
that SCONJ
medical ADJ
practice NOUN
/ SYM
science NOUN
takes VERB
such DET
a DET
rigorous ADJ
approach NOUN
to ADP
medical ADJ
treatment NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
asalso NOUN
being AUX
a DET
human ADJ
being NOUN
( PUNCT
last ADJ
I PRON
checked VERB
) PUNCT
, PUNCT
and CCONJ
having VERB
been AUX
one NUM
of ADP
those DET
peoplethat NOUN
has AUX
been AUX
significantly ADV
helped VERB
by ADP
a DET
currently ADV
unaccepted ADJ
treatment NOUN
, PUNCT
where"standard PROPN
" PUNCT
medicine NOUN
was AUX
not PART
able ADJ
to PART
help VERB
me PRON
, PUNCT
has AUX
caused VERB
me PRON
to PART
sit VERB
back ADV
andwonder ADV
if SCONJ
holding VERB
such DET
an DET
extreme ADJ
and CCONJ
rigid ADJ
" PUNCT
scientific ADJ
" PUNCT
viewpoint NOUN
is AUX
initself PRON
unethical ADJ
from ADP
humanitarian ADJ
considerations NOUN
. PUNCT
  SPACE
After ADV
all ADV
, PUNCT
the DET
underlyingintent NOUN
of ADP
the DET
" PUNCT
scientific ADJ
" PUNCT
approach NOUN
to ADP
medicine NOUN
is AUX
to PART
protect VERB
the DET
health NOUN
ofthe NOUN
patient NOUN
by ADP
providing VERB
the DET
best ADJ
possible ADJ
care NOUN
for ADP
the DET
patient NOUN
, PUNCT
so ADV
thepatient ADJ
should AUX
come VERB
first ADV
when ADV
considering VERB
treatment NOUN
. PUNCT
What PRON
we PRON
need VERB
is AUX
a DET
slightly ADV
modified VERB
approach NOUN
to ADP
treatment NOUN
that PRON
satisfies VERB
boththe NOUN
" PUNCT
scientific ADJ
" PUNCT
and CCONJ
the DET
" PUNCT
humanitarian ADJ
" PUNCT
viewpoints NOUN
. PUNCT
  SPACE
In ADP
an DET
earlier ADJ
post NOUN
Ioutlined VERB
a DET
crazy ADJ
idea NOUN
for ADP
doing VERB
just ADV
that DET
. PUNCT
  SPACE
The DET
gist NOUN
of ADP
it PRON
was AUX
to PART
give VERB
anyphysician ADJ
freedom NOUN
and CCONJ
encouragement NOUN
by ADP
the DET
medical ADJ
community NOUN
to PART
prescribealternate VERB
, PUNCT
not PART
yet ADV
proven VERB
therapies NOUN
( PUNCT
maybe ADV
supported VERB
by ADP
anecdotal ADJ
evidence)for PROPN
patients NOUN
who PRON
* PUNCT
all DET
* PUNCT
avenues NOUN
of ADP
accepted VERB
therapies NOUN
have AUX
been AUX
exhausted(and NUM
not PART
until ADP
then ADV
) PUNCT
. PUNCT
  SPACE
The DET
patient NOUN
would AUX
be AUX
fully ADV
informed VERB
that SCONJ
suchtherapies NOUN
/ SYM
treatments NOUN
are AUX
not PART
supported VERB
by ADP
the DET
proper ADJ
clinical ADJ
trials NOUN
and CCONJ
thatthere NOUN
are AUX
real ADJ
potential ADJ
risks NOUN
with ADP
real ADJ
possibilities NOUN
of ADP
no DET
benefit NOUN
derivedfrom ADP
them PRON
. PUNCT
This DET
approach NOUN
satisfies VERB
the DET
need NOUN
for ADP
scientific ADJ
rigor NOUN
. PUNCT
  SPACE
It PRON
also ADV
satisfiesthe VERB
humanitarian ADJ
needs NOUN
of ADP
the DET
patient NOUN
. PUNCT
  SPACE
And CCONJ
the DET
reality NOUN
is AUX
that SCONJ
many ADJ
patientswho PROPN
have AUX
reached VERB
a DET
dead ADJ
- PUNCT
end NOUN
in ADP
the DET
treatment NOUN
of ADP
their PRON
symptoms NOUN
using VERB
acceptedmedicine NOUN
* PUNCT
will AUX
* PUNCT
go VERB
outside ADP
the DET
orthodox ADJ
medical ADJ
community NOUN
: PUNCT
  SPACE
either CCONJ
to ADP
thedoctors NOUN
who PRON
are AUX
brave ADJ
enough ADV
to PART
prescribe VERB
such ADJ
treatments NOUN
at ADP
the DET
risk NOUN
of ADP
losingtheir ADJ
license NOUN
, PUNCT
or CCONJ
worse ADJ
, PUNCT
to ADP
non NOUN
- NOUN
doctors NOUN
who PRON
have AUX
not PART
had VERB
the DET
proper ADJ
medicaltraining NOUN
. PUNCT
  SPACE
This DET
approach NOUN
also ADV
recognizes VERB
this DET
reality NOUN
and CCONJ
keeps VERB
the DET
controlmore NOUN
within ADP
orthodox ADJ
medicine NOUN
, PUNCT
with ADP
the DET
benefits NOUN
that PRON
the DET
information NOUN
gleanedcould AUX
help VERB
focus VERB
limited ADJ
resources NOUN
towards ADP
future ADJ
clinical ADJ
trials NOUN
in ADP
the DET
mostproductive ADJ
way NOUN
. PUNCT
  SPACE
Everybody PRON
wins VERB
in ADP
this DET
admittedly ADV
rose VERB
- PUNCT
colored VERB
approach NOUN
- PUNCT
I'msure PROPN
there PRON
are AUX
real ADJ
problems NOUN
with ADP
this DET
approach NOUN
as SCONJ
well ADV
- PUNCT
it PRON
is AUX
presentedmore ADJ
as SCONJ
a DET
strawman NOUN
to PART
stimulate VERB
discussion NOUN
. PUNCT
Hopefully ADV
what PRON
I PRON
write VERB
here ADV
may AUX
give VERB
the DET
sci.med VERB
doctors NOUN
a DET
better ADJ
idea NOUN
as SCONJ
towhy ADV
I PRON
am AUX
" PUNCT
open ADJ
" PUNCT
to ADP
alternative ADJ
therapies NOUN
, PUNCT
as ADV
well ADV
as SCONJ
why ADV
I PRON
have AUX
realdifficulty NOUN
( PUNCT
read VERB
" PUNCT
apparent ADJ
hostility NOUN
" PUNCT
) PUNCT
with ADP
the DET
" PUNCT
coldness NOUN
" PUNCT
of ADP
the DET
99.9 NUM
% NOUN
pure"scientific PROPN
" PUNCT
approach NOUN
to ADP
medicine NOUN
. PUNCT
  SPACE
I PRON
believe VERB
the DET
best ADJ
approach NOUN
to ADP
medicaltreatment NOUN
is AUX
one NUM
where ADV
both DET
the DET
" PUNCT
humanitarian ADJ
" PUNCT
aspects NOUN
are AUX
balanced VERB
with ADP
andby PROPN
the DET
" PUNCT
scientific ADJ
" PUNCT
aspects NOUN
. PUNCT
  SPACE
Anything PRON
else ADV
is AUX
just ADV
not PART
good ADJ
medicine NOUN
, PUNCT
imho PROPN
. PUNCT
Just ADV
my PRON
' PUNCT
NF PROPN
' PART
leanings NOUN
, PUNCT
I PRON
guess VERB
. PUNCT
  SPACE
: PUNCT
^)Comments?Jon X
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59339From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
C63zF3.7n5@mentor.cc.purdue.edu NOUN
> X
scheiber@sage.cc.purdue.edu NUM
( PUNCT
Jennifer PROPN
Scheiber PROPN
) PUNCT
writes::In PROPN
article NOUN
< X
10030@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes::>Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
for:>pregnancy PUNCT
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
also:>artificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of:>"natural PROPN
" PUNCT
acts VERB
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen NOUN
is:>deposited PUNCT
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that's:>about ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talk:>to PUNCT
your PRON
biology NOUN
teacher NOUN
. PUNCT
: PUNCT
: PUNCT
what PRON
is AUX
the DET
likely ADJ
hood NOUN
of ADP
conception NOUN
if SCONJ
sperm NOUN
is AUX
deposited VERB
just ADV
outside ADV
: PUNCT
the DET
vagina PROPN
? PUNCT
  SPACE
ie PROPN
. PROPN
  SPACE
_ PROPN
_ PROPN
% NOUN
chance NOUN
. PUNCT
: PUNCT
-------------------------------------------------------------------------Hmmm X
.... PUNCT
I PRON
really ADV
do AUX
n't PART
know VERB
. PUNCT
  SPACE
Probably ADV
quite ADV
low ADJ
overall ADV
. PUNCT
  SPACE
Why ADV
do AUX
n't PART
weget VERB
a DET
couple NOUN
hundred NUM
willing ADJ
couples NOUN
together ADV
and CCONJ
find VERB
out ADP
; PUNCT
->-- PUNCT
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59340From NUM
: PUNCT
ebrandt@jarthur.claremont.edu PROPN
( PUNCT
Eli PROPN
Brandt)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
MMEYER.93Apr26102056@m2.dseg.ti.com X
> X
mmeyer@m2.dseg.ti.com PROPN
( PUNCT
Mark PROPN
Meyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Besides ADV
, PUNCT
Kirilian ADJ
photography NOUN
is AUX
actually ADV
photography NOUN
of ADP
my PRON
> X
friend NOUN
's PART
two NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
Kiril PROPN
. PUNCT
  SPACE
Perhaps ADV
you PRON
meant VERB
" PUNCT
Kirlian"?I PROPN
think VERB
it PRON
was AUX
a DET
typo NOUN
for ADP
" PUNCT
Karelian ADJ
photography NOUN
" PUNCT
, PUNCT
which PRON
is AUX
thepractice NOUN
of ADP
taking VERB
pictures NOUN
of ADP
either CCONJ
Finns PROPN
or CCONJ
Russians PROPN
, PUNCT
dependingon PROPN
whom PRON
one PRON
asks VERB
. PUNCT
   SPACE
Eli PROPN
   SPACE
ebrandt@jarthur.claremont.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59341From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr26.172836.1@vms.ocom.okstate.edu NOUN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>Neither PROPN
of ADP
these DET
bacteria NOUN
are AUX
obligate ADJ
anaerobes NOUN
with ADP
are AUX
> X
much ADV
more ADV
important ADJ
in ADP
dealing VERB
with ADP
the DET
diarrhea NOUN
problem NOUN
. PUNCT
THE DET
diarrhea NOUN
problem NOUN
? PUNCT
  SPACE
WHAT PRON
diarrhea NOUN
problem NOUN
? PUNCT
  SPACE
First ADV
, PUNCT
candidal ADJ
overgrowth NOUN
isnot NOUN
a DET
frequent ADJ
problem NOUN
during ADP
antibiotic ADJ
therapy NOUN
, PUNCT
and CCONJ
not PART
all DET
cases NOUN
ofantibiotic ADJ
- PUNCT
related VERB
diarrhea NOUN
have AUX
anything PRON
to PART
do AUX
with ADP
candida PROPN
. PUNCT
  SPACE
But CCONJ
a DET
caseof NOUN
vaginal ADJ
candidiasis NOUN
or CCONJ
oral ADJ
thrush NOUN
after ADP
antibiotic ADJ
therapy NOUN
is AUX
n't PART
goingto PROPN
surprise VERB
anyone PRON
either ADV
. PUNCT
  SPACE
That DET
's AUX
not PART
what PRON
people NOUN
are AUX
disagreeing VERB
with.>Anti NOUN
- PUNCT
fungals NOUN
, PUNCT
a DET
low ADJ
carbohydrate NOUN
diet NOUN
and CCONJ
vitamin NOUN
A NOUN
> NOUN
supplementation NOUN
may AUX
all DET
help VERB
to PART
minimize VERB
the DET
local ADJ
irritation NOUN
until ADP
the DET
> X
good ADJ
bacteria NOUN
can AUX
take VERB
over ADP
control NOUN
of ADP
the DET
food NOUN
supply NOUN
again ADV
and CCONJ
lower VERB
the DET
> X
pH NOUN
to PART
basically ADV
starve VERB
the DET
candida PROPN
out ADP
. PUNCT
Oh INTJ
, PUNCT
really ADV
? PUNCT
  SPACE
Where ADV
'd AUX
you PRON
come VERB
up ADP
with ADP
this DET
? PUNCT
  SPACE
You PRON
know VERB
, PUNCT
it PRON
's AUX
reallyappalling VERB
to PART
see VERB
you PRON
try VERB
to PART
comment VERB
authoritatively ADV
on ADP
clinical ADJ
mattersin NOUN
a DET
bizarre ADJ
synthesis NOUN
from ADP
reading VERB
reports NOUN
in ADP
the DET
literature NOUN
. PUNCT
Bobbing VERB
for ADP
citations NOUN
in ADP
the DET
research NOUN
literature NOUN
is AUX
n't PART
medicine NOUN
. PUNCT
I PRON
hope VERB
you PRON
're AUX
not PART
giving VERB
the DET
wrong ADJ
idea NOUN
to ADP
your PRON
medical ADJ
students.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59342From NUM
: PUNCT
klaus@ipri.go.jp PROPN
( PUNCT
Klaus PROPN
Hofmann;(6663))Subject NOUN
: PUNCT
cats NOUN
and CCONJ
pregnancyHello NOUN
, PUNCT
I PRON
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
whichcan PROPN
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?Thanks-- PROPN
Klaus PROPN
HofmannNational PROPN
Institute PROPN
of ADP
Materials PROPN
and CCONJ
Chemical PROPN
Research1 PROPN
- PUNCT
1 NUM
, PUNCT
Higashi PROPN
Tsukuba PROPN
, PUNCT
Ibaraki PROPN
305 NUM
, PUNCT
JapanNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59343From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Re ADP
: PUNCT
A DET
Good ADJ
place NOUN
for ADP
Back PROPN
Surgery?gary.schuetter NOUN
( PUNCT
garyws@cbnewsg.cb.att.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
	 SPACE
: PUNCT
         SPACE
Hello INTJ
, PUNCT
: PUNCT
         SPACE
Just ADV
one NUM
quick ADJ
question NOUN
: PUNCT
: PUNCT
         SPACE
My PRON
father NOUN
has AUX
had VERB
a DET
back ADJ
problem NOUN
for ADP
a DET
long ADJ
time NOUN
and CCONJ
doctors NOUN
: PUNCT
         SPACE
have AUX
diagnosed VERB
an DET
operation NOUN
is AUX
needed VERB
. PUNCT
Since SCONJ
he PRON
lives VERB
down ADP
in ADP
: PUNCT
         SPACE
Mexico PROPN
, PUNCT
he PRON
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
a DET
hospital NOUN
anywhere ADV
in ADV
: PUNCT
         SPACE
the DET
United PROPN
States PROPN
particulary NOUN
famous ADJ
for ADP
this DET
kind NOUN
of ADP
surgery NOUN
, PUNCT
: PUNCT
         SPACE
kind ADV
of ADV
like SCONJ
Houston PROPN
has AUX
a DET
reputation NOUN
for ADP
excellent ADJ
doctors NOUN
: PUNCT
         SPACE
in ADP
eye NOUN
surgery NOUN
. PUNCT
Any DET
additional ADJ
info NOUN
or CCONJ
pointers NOUN
will AUX
be AUX
: PUNCT
         SPACE
appreciated VERB
a DET
whole ADJ
lot! NOUN
... PUNCT
There PRON
is AUX
one NUM
hospital NOUN
that PRON
is AUX
here ADV
in ADP
New PROPN
York PROPN
City PROPN
that PRON
is AUX
famous ADJ
for ADP
itsorthopedists NOUN
, PUNCT
namely ADV
the DET
Hospital PROPN
for ADP
Special PROPN
Surgery PROPN
. PUNCT
They PRON
are AUX
located VERB
onthe PROPN
upper PROPN
east PROPN
side NOUN
of ADP
manhattan PROPN
. PUNCT
If SCONJ
you PRON
want VERB
their PRON
address NOUN
and CCONJ
phone NOUN
letme PROPN
know VERB
, PUNCT
i PRON
'll AUX
get AUX
them PRON
, PUNCT
i PRON
do AUX
nt PART
know VERB
them PRON
off ADP
hand.-- PROPN
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59344From NUM
: PUNCT
battin@cyclops.iucf.indiana.edu NOUN
( PUNCT
Laurence PROPN
Gene PROPN
Battin)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
E.A. PROPN
Story PROPN
( PUNCT
eas3714@ultb.isc.rit.edu PROPN
) PUNCT
wrote VERB
: PUNCT
> X
In ADP
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU PROPN
writes VERB
: PUNCT
> X
> X
Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It PRON
> X
> X
involves VERB
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the DET
> X
> X
subject NOUN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well ADV
> X
> X
with ADP
inanimate ADJ
objects NOUN
. PUNCT
> X
True ADJ
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this DET
> X
" PUNCT
corona ADJ
discharge"?No NOUN
. PUNCT
It PRON
's AUX
called VERB
" PUNCT
not PART
wiping VERB
off ADP
the DET
apparatus NOUN
after ADP
taking VERB
a DET
picture NOUN
of ADP
thewhole NOUN
leaf NOUN
. PUNCT
"Gene PUNCT
Battinbattin@cyclops.iucf.indiana.eduno PROPN
.sig PUNCT
yetNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59345From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Med NOUN
school NOUN
admissionhi NOUN
all ADV
, PUNCT
I PRON
ve VERB
applied VERB
for ADP
the DET
class NOUN
of ADP
93 NUM
at ADP
quite DET
a DET
number NOUN
of ADP
schools NOUN
( PUNCT
20)and NUM
have AUX
gotten VERB
13 NUM
rejects NOUN
, PUNCT
4 NUM
interviews NOUN
and CCONJ
3 NUM
no DET
responses NOUN
. PUNCT
Any DET
one NOUN
know VERB
when ADV
the DET
heck NOUN
these DET
people NOUN
send VERB
out ADP
their PRON
acceptance NOUN
letters?According VERB
to ADP
the DET
med PROPN
school NOUN
admissions NOUN
book NOUN
they PRON
re VERB
supposed VERB
to PART
send VERB
outthe DET
number NOUN
of ADP
their PRON
class NOUN
in ADP
acceptances NOUN
by ADP
mid ADJ
March PROPN
. PUNCT
What PRON
s VERB
going VERB
on ADP
... PUNCT
Iam PROPN
losing VERB
my PRON
sanity NOUN
checking VERB
my PRON
mailbox NOUN
every DET
day NOUN
. PUNCT
Also ADV
does AUX
anyone PRON
have AUX
some DET
useful ADJ
alternatives NOUN
in ADP
case NOUN
i PRON
do AUX
nt PART
get AUX
in ADP
, PUNCT
ikind NOUN
of ADP
looked VERB
into ADP
Chiropractic PROPN
and CCONJ
Podiatry PROPN
but CCONJ
they PRON
really ADV
dontinterest VERB
me PRON
. PUNCT
Thanks.-- NUM
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59346From NUM
: PUNCT
mymail@integral.stavropol.su PROPN
( PUNCT
Sidelnikov PROPN
Igor PROPN
Vladimirovich)Subject ADJ
: PUNCT
PLEASE NOUN
, PUNCT
HELP VERB
A DET
PATIENT!!!% PROPN
mail NOUN
newsserv@kiae.suSubject NOUN
: PUNCT
  SPACE
PLEASE PROPN
, PUNCT
HELP PROPN
! PUNCT
! PUNCT
! PUNCT
                    SPACE
Dear ADJ
  SPACE
Ladies NOUN
and CCONJ
  SPACE
Gentlemen PROPN
! PUNCT
      SPACE
We PRON
should AUX
be AUX
grateful ADJ
for ADP
any DET
information NOUN
about ADP
address NOUN
and CCONJ
( PUNCT
or CCONJ
) PUNCT
   SPACE
E NOUN
- NOUN
mail NOUN
address NOUN
of ADP
Loma PROPN
- PUNCT
Linda PROPN
Hospital PROPN
( PUNCT
approximate ADJ
position NOUN
: PUNCT
USA PROPN
, PUNCT
   SPACE
California PROPN
, PUNCT
near SCONJ
Vaimor PROPN
town NOUN
, PUNCT
60 NUM
miles NOUN
from ADP
Los PROPN
- PUNCT
Angelos PROPN
) PUNCT
. PUNCT
      SPACE
A DET
patient NOUN
needs VERB
consultation NOUN
in ADP
this DET
clinics NOUN
before ADP
operation NOUN
. PUNCT
                SPACE
With ADP
respect NOUN
, PUNCT
                  SPACE
Igor PROPN
V. PROPN
SidelnikovQUIT.Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59347From NUM
: PUNCT
mcg2@Lehigh X
. PUNCT
EDU PROPN
( PUNCT
Marc PROPN
Gabriel)Subject PROPN
: PUNCT
LymeNet PROPN
Newsletter PROPN
vol#1 PROPN
# SYM
09 NUM
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                  SPACE
Lyme PROPN
Disease PROPN
Electronic PROPN
Mail PROPN
Network PROPN
                     SPACE
* PUNCT
* PUNCT
                          SPACE
LymeNet PROPN
Newsletter PROPN
                               SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
                      SPACE
Volume NOUN
1 NUM
- PUNCT
Number PROPN
09 NUM
- SYM
4/26/93I. NUM
    SPACE
IntroductionII PROPN
. PUNCT
   SPACE
AnnouncementsIII PROPN
. PUNCT
  SPACE
News PROPN
from ADP
the DET
wiresIV PROPN
. PUNCT
   SPACE
Questions PROPN
' PART
n CCONJ
' CCONJ
AnswersV. NOUN
    SPACE
Op PROPN
- PUNCT
Ed PROPN
SectionVI PROPN
. PUNCT
   SPACE
Jargon PROPN
IndexVII PROPN
. PUNCT
  SPACE
How ADV
to ADP
Subscribe PROPN
, PUNCT
Contribute VERB
and CCONJ
Get AUX
Back ADV
IssuesI. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
INTRODUCTION NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
In ADP
this DET
issue NOUN
of ADP
the DET
Newsletter PROPN
, PUNCT
we PRON
learn VERB
of ADP
the DET
CDC PROPN
's PART
announced ADJ
concern NOUN
forthe ADJ
" PUNCT
resurgence NOUN
of ADP
infectious ADJ
diseases NOUN
" PUNCT
in ADP
the DET
United PROPN
States PROPN
. PUNCT
  SPACE
Thanks NOUN
toJonathan ADP
Lord PROPN
for ADP
sending VERB
me PRON
the DET
UPI PROPN
release NOUN
. PUNCT
  SPACE
The DET
CDC PROPN
announced VERB
they PRON
wouldfeature VERB
a DET
new ADJ
series NOUN
of ADP
articles NOUN
in ADP
the DET
Morbidity PROPN
and CCONJ
Mortality PROPN
WeeklyReport PROPN
on ADP
these DET
infectious ADJ
diseases NOUN
( PUNCT
LD PROPN
is AUX
one NUM
of ADP
them PRON
) PUNCT
. PUNCT
  SPACE
We PRON
will AUX
keep VERB
youup NOUN
to ADP
date NOUN
on ADP
this DET
series NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
we PRON
feature VERB
a DET
The DET
Wall PROPN
Street PROPN
Journal PROPN
article NOUN
on ADP
the DET
legal ADJ
issuessurrounding VERB
LD PROPN
. PUNCT
  SPACE
We PRON
also ADV
look VERB
at ADP
Lyme PROPN
's PART
effects NOUN
from ADP
the DET
perspective NOUN
ofurologists VERB
in ADP
an DET
abstract ADJ
entitled VERB
" PUNCT
Urinary PROPN
Dysfunction PROPN
in ADP
Lyme PROPN
Disease PROPN
. PUNCT
"Finally PROPN
, PUNCT
Terry PROPN
Morse PROPN
asks VERB
an DET
intriguing ADJ
question NOUN
about ADP
a DET
tick NOUN
's PART
habitat.-Marc NUM
. PUNCT
II PROPN
. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
ANNOUNCEMENTS NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
SOURCE NOUN
: PUNCT
The DET
Lyme PROPN
Disease PROPN
UpdateSUBJECT PROPN
: PUNCT
Call VERB
for ADP
ArticlesAttention PROPN
Health PROPN
Care PROPN
Professionals NOUN
: PUNCT
The DET
Lyme PROPN
Disease PROPN
Update PROPN
would AUX
like VERB
to PART
publish VERB
your PRON
articles NOUN
on ADP
Lyme PROPN
diseasediagnosis NOUN
, PUNCT
Lyme PROPN
treatment NOUN
, PUNCT
and CCONJ
the DET
effects NOUN
on ADP
Lyme PROPN
on ADP
Lyme PROPN
patients NOUN
' PART
physicaland ADJ
mental ADJ
health NOUN
. PUNCT
The DET
LDU PROPN
has AUX
a DET
monthly ADJ
circulation NOUN
of ADP
6,000 NUM
. PUNCT
  SPACE
Our PRON
mailing NOUN
list NOUN
includes VERB
Lymepatients NOUN
, PUNCT
physicians NOUN
, PUNCT
researchers NOUN
, PUNCT
county NOUN
health NOUN
departments NOUN
, PUNCT
and CCONJ
over ADP
100Lyme NUM
support NOUN
groups NOUN
nationwide ADV
. PUNCT
  SPACE
We PRON
strive VERB
to PART
give VERB
our PRON
readers NOUN
up ADP
- PUNCT
to ADP
- PUNCT
dateinformation NOUN
on ADP
Lyme PROPN
disease NOUN
prevention NOUN
, PUNCT
diagnosis NOUN
, PUNCT
and CCONJ
treatment NOUN
, PUNCT
and CCONJ
asource NOUN
for ADP
support NOUN
and CCONJ
practical ADJ
advice NOUN
on ADP
living VERB
with ADP
Lyme PROPN
disease NOUN
. PUNCT
Articles NOUN
for ADP
the DET
LDU PROPN
should AUX
be AUX
approximately ADV
900 NUM
to PART
1200 NUM
words NOUN
and CCONJ
shouldaddress NOUN
Lyme PROPN
disease NOUN
issues NOUN
in ADP
non ADJ
- ADJ
scientific ADJ
language NOUN
. PUNCT
  SPACE
To PART
submit VERB
yourarticle NOUN
, PUNCT
mail NOUN
to ADP
: PUNCT
Lyme PROPN
Disease PROPN
Update PROPN
                  SPACE
P.O. PROPN
Box PROPN
15711 NUM
- SYM
0711 NUM
                  SPACE
Evansville PROPN
, PUNCT
IN ADP
47716 NUM
      SPACE
or CCONJ
FAX PROPN
to PART
: PUNCT
  SPACE
812 NUM
- PUNCT
471 NUM
- PUNCT
1990One NUM
year NOUN
subscriptions NOUN
to ADP
the DET
Lyme PROPN
Disease PROPN
Update PROPN
are AUX
$ SYM
19 NUM
( PUNCT
$ SYM
24 NUM
outside ADP
theUS PROPN
) PUNCT
. PUNCT
  SPACE
Mail VERB
your PRON
subscription NOUN
requests NOUN
to ADP
the DET
above ADJ
address NOUN
, PUNCT
or CCONJ
call812 NOUN
- PUNCT
471 NUM
- PUNCT
1990 NUM
for ADP
more ADJ
information NOUN
. PUNCT
III PROPN
. PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
NEWS NOUN
FROM ADP
THE DET
WIRES PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Sender NOUN
: PUNCT
Jonathan PROPN
Lord PROPN
< X
jml4s@uva.pcmail.virginia.edu>Subject X
: PUNCT
RESURGENCE PROPN
OF ADP
INFECTIOUS PROPN
DISEASE NOUN
CONCERNS NOUN
CDCDate NOUN
: PUNCT
Thursday PROPN
April PROPN
15 NUM
, PUNCT
1993ATLANTA NUM
( PUNCT
UPI PROPN
) PUNCT
-- PUNCT
   SPACE
A DET
resurgence NOUN
of ADP
infectious ADJ
diseases NOUN
blamed VERB
on ADP
newlyemerging VERB
viruses NOUN
and CCONJ
bacteria NOUN
pose VERB
a DET
major ADJ
challenge NOUN
for ADP
the DET
nation'shealth NOUN
care NOUN
system NOUN
, PUNCT
federal ADJ
health NOUN
officials NOUN
said VERB
Thursday PROPN
. PUNCT
The DET
Centers PROPN
for ADP
Disease PROPN
Control PROPN
and CCONJ
Prevention PROPN
, PUNCT
reporting VERB
its PRON
latestfindings NOUN
in ADP
an DET
investigation NOUN
of ADP
contaminated VERB
hamburger NOUN
meat NOUN
thatsickened VERB
hundreds NOUN
in ADP
4 NUM
states NOUN
and CCONJ
killed VERB
at ADP
least ADV
four NUM
, PUNCT
said VERB
it PRON
willput VERB
renewed VERB
emphasis NOUN
on ADP
battling VERB
infectious ADJ
diseases NOUN
. PUNCT
Part NOUN
of ADP
that DET
emphasis NOUN
includes VERB
a DET
new ADJ
series NOUN
titled VERB
" PUNCT
EmergingInfectious PROPN
Diseases NOUN
" PUNCT
to PART
be AUX
featured VERB
in ADP
the DET
CDC PROPN
's PART
Morbidity PROPN
& CCONJ
MortalityWeekly PROPN
Report PROPN
, PUNCT
which PRON
has AUX
a DET
wide ADJ
circulation NOUN
in ADP
the DET
health NOUN
community NOUN
. PUNCT
The DET
issue NOUN
also ADV
will AUX
top VERB
the DET
agenda NOUN
of ADP
a DET
two NUM
- PUNCT
day NOUN
meeting NOUN
of ADP
scientificcounselors NOUN
to PART
update VERB
the DET
CDC PROPN
's PART
draft NOUN
plan NOUN
for ADP
dealing VERB
with ADP
the DET
growingthreat NOUN
of ADP
infectious ADJ
ailments NOUN
. PUNCT
"This PUNCT
is AUX
an DET
issue NOUN
that PRON
has AUX
been AUX
coming VERB
and CCONJ
we PRON
do AUX
have AUX
a DET
responsibilityto ADJ
deal NOUN
with ADP
it PRON
, PUNCT
" PUNCT
said VERB
Dr. PROPN
Ruth PROPN
Berkelman PROPN
, PUNCT
deputy NOUN
director NOUN
of ADP
the DET
CDC'sNational PROPN
Center PROPN
for ADP
Infectious PROPN
Diseases PROPN
. PUNCT
There PRON
were AUX
more ADJ
cases NOUN
of ADP
malaria NOUN
in ADP
the DET
U.S. PROPN
in ADP
1992 NUM
than SCONJ
in ADP
any DET
yearsince NOUN
the DET
1960s NOUN
, PUNCT
and CCONJ
Latin PROPN
America PROPN
is AUX
experiencing VERB
a DET
cholera NOUN
epidemic NOUN
, PUNCT
the DET
first ADJ
in ADP
this DET
century NOUN
, PUNCT
she PRON
said VERB
. PUNCT
Resistance NOUN
of ADP
disease NOUN
- PUNCT
causing VERB
agents NOUN
to ADP
antibiotics NOUN
is AUX
also ADV
a DET
problem NOUN
. PUNCT
"We NOUN
are AUX
seeing VERB
much ADV
more ADV
antibiotic ADJ
resistance NOUN
than SCONJ
we PRON
have AUX
in ADP
the DET
past"Berkleman NOUN
said VERB
. PUNCT
  SPACE
She PRON
said VERB
even ADV
common ADJ
ear NOUN
infections NOUN
frequently ADV
seen VERB
inchildren NOUN
are AUX
becoming VERB
resistant ADJ
to ADP
antibiotic ADJ
treatment NOUN
. PUNCT
"Despite VERB
predictions NOUN
earlier ADV
this DET
century NOUN
that PRON
infectious ADJ
  SPACE
diseaseswould AUX
soon ADV
be AUX
eliminated VERB
as SCONJ
a DET
public ADJ
health NOUN
problem NOUN
, PUNCT
infectious ADJ
diseasesremain NOUN
the DET
major ADJ
cause NOUN
of ADP
death NOUN
worldwide ADV
and CCONJ
a DET
leading VERB
cause NOUN
of ADP
illnessand NOUN
death NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
" PUNCT
the DET
CDC PROPN
said VERB
. PUNCT
It PRON
  SPACE
cited VERB
  SPACE
the DET
  SPACE
emergence NOUN
since SCONJ
the DET
1970s NOUN
of ADP
a DET
" PUNCT
myriad NOUN
" PUNCT
of ADP
newlyidentified ADJ
pathogens NOUN
and CCONJ
syndromes NOUN
, PUNCT
such ADJ
as SCONJ
Escherichia PROPN
coli NOUN
O157 NOUN
: PUNCT
H7 NOUN
, PUNCT
adeadly ADV
bacterial ADJ
infection NOUN
; PUNCT
the DET
hepatitis PROPN
C PROPN
virus NOUN
; PUNCT
HIV PROPN
, PUNCT
the DET
virus NOUN
thatcauses VERB
AIDS PROPN
; PUNCT
Legionnaires NOUN
disease NOUN
; PUNCT
Lyme PROPN
disease NOUN
; PUNCT
and CCONJ
toxic ADJ
shock NOUN
syndrome NOUN
. PUNCT
"The PUNCT
incidences NOUN
of ADP
many ADJ
diseases NOUN
widely ADV
presumed VERB
to PART
be AUX
under ADP
control NOUN
, PUNCT
such ADJ
as SCONJ
cholera PROPN
, PUNCT
malaria PROPN
and CCONJ
tuberculosis NOUN
, PUNCT
have AUX
increased VERB
in ADP
many ADJ
areas,"the PROPN
CDC PROPN
said VERB
. PUNCT
  SPACE
It PRON
said VERB
efforts NOUN
at ADP
control NOUN
and CCONJ
prevention NOUN
have AUX
beenundermined VERB
by ADP
drug NOUN
resistance.=====*=====SOURCE PUNCT
: PUNCT
  SPACE
WALL PROPN
STREET PROPN
JOURNALREFERENCE PROPN
: PUNCT
04/15/93 PROPN
, PUNCT
pB1HEADLINE NOUN
: PUNCT
Lyme PROPN
- PUNCT
Disease PROPN
Ruling PROPN
Raises VERB
Liability NOUN
IssuesThe PROPN
tick VERB
that DET
causes VERB
Lyme PROPN
disease NOUN
may AUX
have AUX
found VERB
a DET
new ADJ
way NOUN
to PART
causedamage VERB
: PUNCT
legal ADJ
liability NOUN
. PUNCT
A DET
federal ADJ
judge NOUN
's PART
decision NOUN
holding VERB
a DET
property NOUN
owner NOUN
liable ADJ
for ADP
notdoing VERB
enough ADV
to PART
protect VERB
workers NOUN
from ADP
Lyme PROPN
disease NOUN
is AUX
getting VERB
as SCONJ
muchattention NOUN
as SCONJ
the DET
latest ADJ
medical ADJ
study NOUN
on ADP
the DET
disease NOUN
, PUNCT
a DET
flu NOUN
- PUNCT
likeillness NOUN
that PRON
can AUX
cause VERB
severe ADJ
physical ADJ
and CCONJ
mental ADJ
disabilities NOUN
and CCONJ
inrare ADJ
instances NOUN
death NOUN
. PUNCT
The DET
decision NOUN
last ADJ
week NOUN
has AUX
put VERB
property NOUN
ownerson NOUN
notice NOUN
that SCONJ
they PRON
may AUX
have AUX
to PART
do AUX
more ADJ
than SCONJ
protect VERB
themselves PRON
fromthe PROPN
ticks NOUN
- PUNCT
they PRON
also ADV
may AUX
have AUX
to PART
protect VERB
themselves PRON
from ADP
litigation PROPN
ifsomeone PROPN
becomes VERB
infected VERB
while SCONJ
on ADP
the DET
property NOUN
. PUNCT
The DET
decision NOUN
by ADP
U.S. PROPN
District PROPN
Judge PROPN
Robert PROPN
J. PROPN
Ward PROPN
in ADP
New PROPN
York PROPN
cameafter NOUN
a DET
week NOUN
- PUNCT
long ADJ
trial NOUN
in ADP
a DET
case NOUN
involving VERB
four NUM
track NOUN
workers NOUN
for ADP
theLong PROPN
Island PROPN
Railroad PROPN
. PUNCT
Judge PROPN
Ward PROPN
found VERB
that SCONJ
the DET
workers NOUN
contracted VERB
thedisease NOUN
after ADP
they PRON
were AUX
bitten VERB
by ADP
ticks NOUN
while SCONJ
on ADP
the DET
job NOUN
. PUNCT
He PRON
orderedthe VERB
New PROPN
York PROPN
state NOUN
- PUNCT
owned VERB
commuter NOUN
line NOUN
to PART
pay VERB
the DET
workers NOUN
more ADJ
than$560,000 NOUN
to PART
compensate VERB
for ADP
pain NOUN
and CCONJ
suffering NOUN
, PUNCT
in ADP
addition NOUN
to ADP
medicalexpenses NOUN
and CCONJ
lost VERB
wages NOUN
. PUNCT
Summer NOUN
camps NOUN
, PUNCT
schools NOUN
, PUNCT
companies NOUN
with ADP
facilities NOUN
in ADP
rural ADJ
orsemirural ADJ
areas NOUN
, PUNCT
and CCONJ
homeowners NOUN
who PRON
rent VERB
to ADP
vacationers NOUN
are AUX
among ADP
thegroups NOUN
that PRON
need VERB
to PART
be AUX
worried ADJ
about ADP
this DET
ruling NOUN
, PUNCT
says VERB
Stephen PROPN
L.Kass PROPN
, PUNCT
an DET
attorney NOUN
at ADP
New PROPN
York PROPN
law NOUN
firm NOUN
Berle PROPN
, PUNCT
Kass PROPN
& CCONJ
Case PROPN
, PUNCT
who PRON
wrote VERB
alegal PROPN
article NOUN
three NUM
years NOUN
ago ADV
warning VERB
property NOUN
owners NOUN
of ADP
the DET
potentialliability NOUN
. PUNCT
Even ADV
a DET
family NOUN
that PRON
invites VERB
friends NOUN
over ADP
for ADP
a DET
backyardbarbecue NOUN
might AUX
be AUX
potentially ADV
liable ADJ
. PUNCT
Lawsuits NOUN
for ADP
insect ADJ
bites NOUN
, PUNCT
while SCONJ
rare ADJ
, PUNCT
are AUX
n't PART
unheard ADJ
- PUNCT
of ADJ
. PUNCT
A DET
summervacationer NOUN
in ADP
Southampton PROPN
, PUNCT
N.Y. PROPN
, PUNCT
last ADJ
year NOUN
sued VERB
the DET
owner NOUN
of ADP
the DET
homeshe PROPN
rented VERB
, PUNCT
claiming VERB
that SCONJ
a DET
tick NOUN
on ADP
the DET
property NOUN
gave VERB
her PRON
RockyMountain PROPN
spotted VERB
fever NOUN
. PUNCT
In ADP
1988 NUM
, PUNCT
also ADV
on ADP
Long PROPN
Island PROPN
, PUNCT
a DET
jury NOUN
orderedan PROPN
outdoor PROPN
restaurant NOUN
to PART
pay VERB
more ADJ
than SCONJ
$ SYM
3 NUM
million NUM
to ADP
a DET
patron NOUN
who PRON
wasstung VERB
by ADP
a DET
bee NOUN
, PUNCT
causing VERB
an DET
allergic ADJ
reaction NOUN
and CCONJ
permanentquadriplegia NOUN
. PUNCT
The DET
judge NOUN
later ADV
threw VERB
out ADP
the DET
award NOUN
, PUNCT
citing VERB
no ADV
evidencethat NOUN
a DET
beehive NOUN
was AUX
near SCONJ
the DET
restaurant NOUN
. PUNCT
But CCONJ
lawyers NOUN
say VERB
that SCONJ
the DET
attention NOUN
to ADP
Lyme PROPN
disease NOUN
throughout ADP
thecountry NOUN
-- PUNCT
it PRON
's AUX
most ADV
prevalent ADJ
in ADP
New PROPN
England PROPN
, PUNCT
the DET
Middle PROPN
Atlanticstates PROPN
, PUNCT
Wisconsin PROPN
, PUNCT
Minnesota PROPN
and CCONJ
the DET
Northwest PROPN
-- PUNCT
may AUX
make VERB
thisparticular ADJ
insect NOUN
bite NOUN
a DET
particularly ADV
litigious ADJ
one NOUN
. PUNCT
The DET
illness NOUN
already ADV
has AUX
proved VERB
to PART
be AUX
a DET
source NOUN
of ADP
controversy NOUN
in ADP
thecourtroom NOUN
over ADP
such ADJ
issues NOUN
as SCONJ
the DET
type NOUN
of ADP
medical ADJ
care NOUN
insurers NOUN
willcover NOUN
and CCONJ
medical ADJ
malpractice NOUN
claims NOUN
against ADP
doctors NOUN
for ADP
notdiagnosing VERB
the DET
disease NOUN
. PUNCT
Lawyers NOUN
say VERB
worker's ADJ
- PUNCT
compensation NOUN
claims NOUN
related VERB
to ADP
Lyme PROPN
diseasehave NOUN
become VERB
common ADJ
in ADP
some DET
states NOUN
in ADP
recent ADJ
years NOUN
. PUNCT
Payments NOUN
inworker's PROPN
- PUNCT
compensation NOUN
cases NOUN
, PUNCT
however ADV
, PUNCT
are AUX
limited VERB
to ADP
medical ADJ
costs NOUN
andlost VERB
earnings NOUN
. PUNCT
The DET
case NOUN
before ADP
Judge PROPN
Ward PROPN
dealt VERB
with ADP
a DET
potentially ADV
much ADJ
morelucrative ADJ
avenue NOUN
for ADP
damages NOUN
, PUNCT
because SCONJ
it PRON
involved VERB
the DET
question NOUN
ofnegligence NOUN
. PUNCT
Unlike ADP
the DET
worker NOUN
's PART
compensation NOUN
process NOUN
, PUNCT
the DET
law NOUN
governinginjuries NOUN
to PART
rail NOUN
workers NOUN
allows VERB
for ADP
a DET
finding NOUN
of ADP
negligence NOUN
and CCONJ
, PUNCT
as SCONJ
aresult ADJ
, PUNCT
for ADP
additional ADJ
payments NOUN
for ADP
pain NOUN
and CCONJ
suffering NOUN
. PUNCT
Propertyowners NOUN
and CCONJ
lawyers NOUN
say VERB
that SCONJ
negligence NOUN
claims NOUN
can AUX
be AUX
made VERB
in ADP
manyother NOUN
situations NOUN
where ADV
people NOUN
are AUX
exposed VERB
to ADP
the DET
ticks NOUN
that PRON
carry VERB
thedisease NOUN
. PUNCT
Ira PROPN
M. PROPN
Maurer PROPN
, PUNCT
a DET
partner NOUN
at ADP
New PROPN
York PROPN
law NOUN
firm NOUN
Elkind PROPN
, PUNCT
Flynn PROPN
& CCONJ
Maurer PROPN
, PUNCT
who PRON
represented VERB
the DET
rail NOUN
workers NOUN
, PUNCT
says VERB
the DET
decision NOUN
will AUX
helpto VERB
establish VERB
" PUNCT
the DET
duty NOUN
of ADP
all DET
sorts NOUN
of ADP
property NOUN
owners NOUN
to ADP
protectagainst PROPN
Lyme PROPN
disease NOUN
. PUNCT
"Lawyers NOUN
caution VERB
that SCONJ
despite SCONJ
Judge PROPN
Ward PROPN
's PART
decision NOUN
, PUNCT
winning VERB
alawsuit NOUN
for ADP
damages NOUN
caused VERB
by ADP
Lyme PROPN
disease NOUN
may AUX
prove VERB
difficult ADJ
. PUNCT
Forone NOUN
thing NOUN
, PUNCT
victims NOUN
have AUX
to PART
demonstrate VERB
that SCONJ
they PRON
have AUX
pinned VERB
down ADP
whenand ADV
where ADV
they PRON
got VERB
the DET
tick ADJ
bite NOUN
. PUNCT
Judge PROPN
Ward PROPN
found VERB
that SCONJ
the DET
plaintiffsin NOUN
the DET
railroad NOUN
case NOUN
got VERB
Lyme PROPN
disease NOUN
while SCONJ
working VERB
on ADP
property NOUN
ownedby ADP
the DET
railroad NOUN
, PUNCT
even ADV
though SCONJ
none NOUN
of ADP
the DET
men NOUN
remembered VERB
being AUX
bitten VERB
. PUNCT
The DET
workers NOUN
, PUNCT
who PRON
were AUX
n't PART
outdoorsmen NOUN
likely ADJ
to PART
be AUX
exposed VERB
elsewhere ADV
tothe DET
insects NOUN
, PUNCT
said VERB
they PRON
saw VERB
ticks NOUN
in ADP
the DET
high ADJ
grass NOUN
that PRON
surroundedsome VERB
work NOUN
sites NOUN
. PUNCT
A DET
spokeswoman NOUN
for ADP
the DET
railroad NOUN
says VERB
that SCONJ
there PRON
was AUX
no DET
proof NOUN
thatthe DET
four NUM
men NOUN
were AUX
bitten VERB
while SCONJ
on ADP
the DET
job NOUN
and CCONJ
that SCONJ
the DET
railroad NOUN
isconsidering VERB
an DET
appeal NOUN
. PUNCT
The DET
railroad NOUN
also ADV
disputes VERB
Judge PROPN
Ward PROPN
's PART
findingthat NOUN
it PRON
did AUX
n't PART
do AUX
enough ADJ
to PART
protect VERB
employees NOUN
. PUNCT
The DET
spokeswoman NOUN
saysthe NOUN
railroad NOUN
provides VERB
track NOUN
workers NOUN
with ADP
insect ADJ
repellent NOUN
and CCONJ
specialpants NOUN
to PART
protect VERB
against ADP
bug NOUN
bites NOUN
. PUNCT
Debate NOUN
in ADP
the DET
scientific ADJ
community NOUN
over ADP
Lyme PROPN
disease NOUN
could AUX
open VERB
upsome ADJ
legal ADJ
defenses NOUN
for ADP
property NOUN
owners NOUN
, PUNCT
such ADJ
as SCONJ
questioning VERB
whether SCONJ
avictim NOUN
actually ADV
has AUX
the DET
disease NOUN
rather ADV
than SCONJ
some DET
other ADJ
illness NOUN
. PUNCT
Earlier ADV
this DET
week NOUN
, PUNCT
the DET
Journal PROPN
of ADP
the DET
American PROPN
Medical PROPN
Associationreported PROPN
that SCONJ
doctors NOUN
overly ADV
diagnose VERB
patients NOUN
as SCONJ
having VERB
Lyme PROPN
disease NOUN
. PUNCT
And CCONJ
damages NOUN
awarded VERB
to ADP
a DET
victim NOUN
also ADV
might AUX
be AUX
influenced VERB
by ADP
medicaldisputes NOUN
over ADP
the DET
degree NOUN
of ADP
harm NOUN
that PRON
Lyme PROPN
disease NOUN
causes VERB
. PUNCT
Because SCONJ
of ADP
health NOUN
and CCONJ
safety NOUN
concerns NOUN
, PUNCT
some DET
groups NOUN
and CCONJ
companiesalready ADJ
take VERB
special ADJ
measures NOUN
to PART
protect VERB
against ADP
Lyme PROPN
disease NOUN
. PUNCT
Lastyear NOUN
, PUNCT
at ADP
its PRON
headquarters NOUN
in ADP
Franklin PROPN
Lakes PROPN
, PUNCT
N.J. PROPN
, PUNCT
Becton PROPN
, PUNCT
Dickinson PROPN
& CCONJ
Co. PROPN
began VERB
using VERB
Damminix PROPN
, PUNCT
a DET
pesticide NOUN
made VERB
by ADP
EcoHealth PROPN
Inc. PROPN
of ADP
Bostonthat PROPN
is AUX
designed VERB
to PART
kill VERB
ticks NOUN
carrying VERB
the DET
disease NOUN
. PUNCT
The DET
medical ADJ
- PUNCT
supply NOUN
company NOUN
's PART
headquarters NOUN
include VERB
a DET
120-acre NUM
park NOUN
, PUNCT
and CCONJ
the DET
companywas NOUN
worried VERB
that SCONJ
employees NOUN
who PRON
walk VERB
on ADP
its PRON
trails NOUN
for ADP
recreation NOUN
mightget NOUN
infected VERB
. PUNCT
Ruth PROPN
Lister PROPN
, PUNCT
a DET
spokeswoman NOUN
for ADP
the DET
American PROPN
Camping PROPN
Association PROPN
inIndianapolis PROPN
, PUNCT
says VERB
that SCONJ
many ADJ
youth NOUN
camps NOUN
accredited VERB
by ADP
herorganization NOUN
also ADV
have AUX
begun VERB
to PART
check VERB
children NOUN
for ADP
ticks NOUN
. PUNCT
And CCONJ
CaroleKatz PROPN
, PUNCT
a DET
member NOUN
of ADP
the DET
board NOUN
of ADP
the DET
Fire PROPN
Island PROPN
Pines PROPN
Property PROPN
OwnersAssociation PROPN
, PUNCT
says VERB
her PRON
group NOUN
spends VERB
$ SYM
30,000 NUM
each DET
year NOUN
to PART
treat VERB
their100-acre PROPN
site NOUN
off ADP
the DET
coast NOUN
of ADP
New PROPN
York PROPN
with ADP
the DET
tick PROPN
- PUNCT
killingpesticide.=====*=====TITLE PROPN
: PUNCT
Urinary ADJ
dysfunction NOUN
in ADP
Lyme PROPN
disease NOUN
. PUNCT
AUTHORS PROPN
: PUNCT
Chancellor PROPN
MB NOUN
; PUNCT
McGinnis PROPN
DE PROPN
; PUNCT
Shenot PROPN
PJ PROPN
; PUNCT
Kiilholma PROPN
P PROPN
; PUNCT
Hirsch PROPN
IH PROPN
, PUNCT
Department PROPN
of ADP
Urology PROPN
, PUNCT
Jefferson PROPN
Medical PROPN
College PROPN
, PUNCT
Thomas PROPN
JeffersonUniversity PROPN
, PUNCT
Philadelphia PROPN
, PUNCT
Pennsylvania PROPN
. PUNCT
REFERENCE PROPN
: PUNCT
J PROPN
Urol PROPN
1993 NUM
Jan PROPN
; PUNCT
149 NUM
( PUNCT
1 NUM
) PUNCT
: PUNCT
26 NUM
- SYM
30Lyme NUM
disease NOUN
, PUNCT
which PRON
is AUX
caused VERB
by ADP
the DET
spirochete ADJ
Borrelia PROPN
burgdorferi PROPN
, PUNCT
isassociated VERB
with ADP
a DET
variety NOUN
of ADP
neurological ADJ
sequelae PROPN
. PUNCT
  SPACE
We PRON
describe VERB
7 NUM
patientswith PROPN
neuro PROPN
- PUNCT
borreliosis PROPN
who PRON
also ADV
had AUX
lower ADJ
urinary ADJ
tract NOUN
dysfunction NOUN
. PUNCT
Urodynamic ADJ
evaluation NOUN
revealed VERB
detrusor PROPN
hyperreflexia PROPN
in ADP
5 NUM
patients NOUN
anddetrusor NOUN
areflexia PROPN
in ADP
2 NUM
. PUNCT
  SPACE
Detrusor PROPN
external ADJ
sphincter NOUN
dyssynergia PROPN
was AUX
notnoted VERB
on ADP
electromyography NOUN
in ADP
any DET
patient NOUN
. PUNCT
  SPACE
We PRON
observed VERB
that SCONJ
the DET
urinary ADJ
tractmay NOUN
be AUX
involved VERB
in ADP
2 NUM
respects NOUN
in ADP
the DET
course NOUN
of ADP
Lyme PROPN
  SPACE
disease NOUN
: PUNCT
1 X
) PUNCT
voidingdysfunction NOUN
may AUX
be AUX
part NOUN
of ADP
neuro PROPN
- PUNCT
borreliosis PROPN
and CCONJ
2 X
) PUNCT
the DET
spirochete NOUN
maydirectly ADV
invade VERB
the DET
urinary ADJ
tract NOUN
. PUNCT
  SPACE
In ADP
1 NUM
patient ADJ
bladder NOUN
infection NOUN
by ADP
theLyme PROPN
spirochete NOUN
was AUX
documented VERB
on ADP
biopsy NOUN
. PUNCT
  SPACE
Neurological PROPN
and CCONJ
urologicalsymptoms NOUN
in ADP
all DET
patients NOUN
were AUX
slow ADJ
to PART
resolve VERB
and CCONJ
convalescence NOUN
wasprotracted VERB
. PUNCT
  SPACE
Relapses NOUN
of ADP
active ADJ
Lyme PROPN
disease NOUN
and CCONJ
residual ADJ
neurologicaldeficits NOUN
were AUX
common ADJ
. PUNCT
  SPACE
Urologists NOUN
practicing VERB
in ADP
areas NOUN
endemic ADJ
for ADP
Lymedisease PROPN
need NOUN
to PART
be AUX
aware ADJ
of ADP
B. PROPN
burgdorferi PROPN
infection NOUN
in ADP
the DET
differentialdiagnosis NOUN
of ADP
neurogenic ADJ
bladder NOUN
dysfunction NOUN
. PUNCT
  SPACE
Conservative ADJ
bladdermanagement NOUN
including VERB
clean ADJ
intermittent ADJ
catheterization NOUN
guided VERB
by ADP
urodynamicevaluation NOUN
is AUX
recommended VERB
. PUNCT
IV PROPN
. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
QUESTIONS PROPN
' PART
N CCONJ
' PUNCT
ANSWERS NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Note VERB
: PUNCT
If SCONJ
you PRON
have AUX
a DET
response NOUN
to ADP
this DET
question NOUN
, PUNCT
please INTJ
forward ADV
it PRON
to ADP
theeditor VERB
. PUNCT
Sender NOUN
: PUNCT
Terry PROPN
Morse PROPN
< X
morset@ccmail.orst.edu>Subject NOUN
: PUNCT
Question NOUN
on ADP
Lyme PROPN
Vectors PROPN
and CCONJ
Compost PROPN
Piles PROPN
  SPACE
When ADV
I PRON
visited VERB
my PRON
sister NOUN
on ADP
Long PROPN
Island PROPN
, PUNCT
NY PROPN
, PUNCT
I PRON
was AUX
cautioned VERB
to PART
avoid VERB
thecompost ADJ
heap NOUN
in ADP
her PRON
back NOUN
yard NOUN
, PUNCT
as SCONJ
she PRON
thinks VERB
this DET
is AUX
where ADV
she PRON
becameinfected VERB
. PUNCT
  SPACE
A DET
friend NOUN
of ADP
mine PRON
here ADV
in ADP
Oregon PROPN
who PRON
has AUX
a DET
compost ADJ
heap NOUN
would AUX
like VERB
me PRON
toback VERB
that DET
claim VERB
up ADP
with ADP
documentation NOUN
. PUNCT
  SPACE
Do AUX
lyme NOUN
- PUNCT
carrying VERB
ticks NOUN
hang VERB
out ADP
incompost NOUN
heaps?Thank VERB
you PRON
. PUNCT
V. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
OP PROPN
- PUNCT
ED NOUN
SECTION NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
This DET
section NOUN
is AUX
open ADJ
to ADP
all DET
subscribers NOUN
who PRON
would AUX
like VERB
to PART
express VERB
an DET
opinion NOUN
. PUNCT
VI PROPN
. PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
JARGON PROPN
INDEX PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Bb PROPN
- PUNCT
Borrelia PROPN
burgdorferi PROPN
- PUNCT
The DET
scientific ADJ
name NOUN
for ADP
the DET
LD PROPN
bacterium NOUN
. PUNCT
CDC PROPN
- PUNCT
Centers PROPN
for ADP
Disease PROPN
Control PROPN
- PUNCT
Federal PROPN
agency NOUN
in ADP
charge NOUN
of ADP
tracking VERB
      SPACE
diseases NOUN
and CCONJ
programs NOUN
to PART
prevent VERB
them PRON
. PUNCT
CNS PROPN
- PUNCT
Central PROPN
Nervous PROPN
System PROPN
. PUNCT
ELISA PROPN
- PUNCT
Enzyme PROPN
- PUNCT
linked VERB
Immunosorbent PROPN
Assays PROPN
- PUNCT
Common PROPN
antibody NOUN
testEM PROPN
- PUNCT
Erythema PROPN
Migrans PROPN
- PUNCT
The DET
name NOUN
of ADP
the DET
" PUNCT
bull NOUN
's PART
eye NOUN
" PUNCT
rash NOUN
that PRON
appears VERB
in ADP
     SPACE
~60 NUM
% NOUN
of ADP
the DET
patients NOUN
early ADV
in ADP
the DET
infection NOUN
. PUNCT
IFA PROPN
- PUNCT
Indirect PROPN
Fluorescent PROPN
Antibody PROPN
- PUNCT
Common PROPN
antibody NOUN
test NOUN
. PUNCT
LD PROPN
- PUNCT
Common ADJ
abbreviation NOUN
for ADP
Lyme PROPN
Disease PROPN
. PUNCT
NIH PROPN
- PUNCT
National PROPN
Institutes PROPN
of ADP
Health PROPN
- PUNCT
Federal PROPN
agency NOUN
that PRON
conducts VERB
medical PROPN
      SPACE
research NOUN
and CCONJ
issues NOUN
grants NOUN
to PART
research NOUN
interests NOUN
. PUNCT
PCR PROPN
- PUNCT
Polymerase PROPN
Chain PROPN
Reaction PROPN
- PUNCT
A DET
new ADJ
test NOUN
that PRON
detects VERB
the DET
DNA PROPN
sequence NOUN
      SPACE
of ADP
the DET
microbe NOUN
in ADP
question NOUN
. PUNCT
  SPACE
Currently ADV
being AUX
tested VERB
for ADP
use NOUN
in ADP
      SPACE
detecting VERB
LD PROPN
, PUNCT
TB PROPN
, PUNCT
and CCONJ
AIDS.Spirochete VERB
- PUNCT
The DET
LD PROPN
bacterium NOUN
. PUNCT
  SPACE
It PRON
's AUX
given VERB
this DET
name NOUN
due ADP
to ADP
it PRON
's AUX
spiral ADJ
      SPACE
shape NOUN
. PUNCT
Western ADJ
Blot PROPN
- PUNCT
A NOUN
more ADV
precise ADJ
antibody NOUN
test NOUN
. PUNCT
VII PROPN
. PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
HOW ADV
TO PART
SUBSCRIBE VERB
, PUNCT
CONTRIBUTE NOUN
AND CCONJ
GET VERB
BACK PROPN
ISSUES ADV
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
SUBSCRIPTIONS NOUN
: PUNCT
Anyone PRON
with ADP
an DET
Internet NOUN
address NOUN
may AUX
subscribe VERB
. PUNCT
Send VERB
a DET
memo NOUN
to ADP
    SPACE
listserv@Lehigh NOUN
. PUNCT
EDUin VERB
the DET
body NOUN
, PUNCT
type NOUN
: PUNCT
subscribe VERB
LymeNet PROPN
- PUNCT
L PROPN
< X
Your PRON
Real ADJ
Name NOUN
> X
FAX NOUN
subscriptions NOUN
are AUX
also ADV
available ADJ
. PUNCT
  SPACE
Send VERB
a DET
single ADJ
page NOUN
FAX NOUN
to ADP
215 NUM
- SYM
974 NUM
- PUNCT
6410for NUM
further ADJ
information NOUN
. PUNCT
DELETIONS PROPN
: PUNCT
Send VERB
a DET
memo NOUN
to ADP
    SPACE
listserv@Lehigh NOUN
. PUNCT
EDUin VERB
the DET
body NOUN
, PUNCT
type NOUN
: PUNCT
unsubscribe ADJ
LymeNet PROPN
- PUNCT
LCONTRIBUTIONS PROPN
: PUNCT
Send VERB
all DET
contributions NOUN
to PART
   SPACE
LymeNet PROPN
- PUNCT
L@Lehigh PROPN
. PUNCT
EDU PROPN
  SPACE
or CCONJ
FAX VERB
them PRON
to ADP
215 NUM
- SYM
974 NUM
- PUNCT
6410.All NOUN
are AUX
encouraged VERB
to PART
submit VERB
questions NOUN
, PUNCT
news NOUN
items NOUN
, PUNCT
announcements NOUN
, PUNCT
andcommentaries NOUN
. PUNCT
BACK PROPN
ISSUES ADV
: PUNCT
Send VERB
a DET
memo NOUN
to ADP
    SPACE
listserv@Lehigh NOUN
. PUNCT
EDUin VERB
the DET
body NOUN
, PUNCT
type NOUN
: PUNCT
get AUX
LymeNet PROPN
- PUNCT
L PROPN
/ SYM
Newsletters PROPN
x PROPN
- PUNCT
yy NOUN
              SPACE
( PUNCT
where ADV
x NOUN
= SYM
vol PROPN
# PROPN
and CCONJ
yy NOUN
= SYM
issue NOUN
# NOUN
) PUNCT
example NOUN
: PUNCT
  SPACE
get AUX
LymeNet PROPN
- PUNCT
L PROPN
/ SYM
Newsletters PROPN
1 NUM
- SYM
01 NUM
    SPACE
( PUNCT
will AUX
get AUX
vol#1 PROPN
, PUNCT
issue#01)-----------------------------------------------------------------------------LymeNet ADJ
- PUNCT
The DET
Internet NOUN
Lyme PROPN
Disease PROPN
Information PROPN
Source-----------------------------------------------------------------------------Editor NOUN
- PUNCT
in ADP
- PUNCT
Chief NOUN
: PUNCT
Marc PROPN
C. PROPN
Gabriel PROPN
< X
mcg2@Lehigh PRON
. PUNCT
EDU PROPN
> PROPN
            SPACE
FAX PROPN
: PUNCT
215 NUM
- PUNCT
974 NUM
- PUNCT
6410Contributing NOUN
Editors NOUN
: PUNCT
Carl PROPN
Brenner PROPN
< X
brenner@lamont.ldgo.Columbia.EDU ADV
> X
                      SPACE
John PROPN
Setel PROPN
O'Donnell PROPN
< X
jod@Equator NOUN
. PUNCT
COM NOUN
> X
Advisors NOUN
: PUNCT
Carol PROPN
- PUNCT
Jane PROPN
Stolow PROPN
, PUNCT
Director PROPN
          SPACE
William PROPN
S. PROPN
Stolow PROPN
, PUNCT
President PROPN
          SPACE
The DET
Lyme PROPN
Disease PROPN
Network PROPN
of ADP
New PROPN
Jersey PROPN
( PUNCT
908 NUM
- PUNCT
390 NUM
- PUNCT
5027)Chief NUM
Proofreader NOUN
: PUNCT
Ed PROPN
Mackey PROPN
< X
elm4@Lehigh X
. PUNCT
EDU>-----------------------------------------------------------------------------WHEN PROPN
COMMENTS NOUN
ARE VERB
PRESENTED VERB
WITH ADP
AN DET
ATTRIBUTION NOUN
, PUNCT
THEY PRON
DO VERB
NOT ADV
NECESSARILYREPRESENT VERB
THE DET
OPINIONS PROPN
/ SYM
ANALYSES PROPN
OF ADP
THE DET
EDITOR.-----------------------------------------------------------------------------THIS NOUN
NEWSLETTER NOUN
MAY AUX
BE VERB
REPRODUCED NOUN
AND CCONJ
/ SYM
OR CCONJ
POSTED VERB
ON ADP
BULLETIN PROPN
BOARDS NOUN
FREELYAS NOUN
LONG ADV
AS ADP
IT PRON
IS VERB
NOT ADV
MODIFIED PROPN
OR CCONJ
ABRIDGED PROPN
IN ADP
ANY DET
WAY.-----------------------------------------------------------------------------SEND NOUN
ALL DET
BUG PROPN
REPORTS NOUN
TO PART
mcg2@Lehigh VERB
. PUNCT
EDU.-----------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59348From NUM
: PUNCT
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections?>>>Can PROPN
men NOUN
get VERB
yeast NOUN
infections NOUN
? PUNCT
Spread VERB
them PRON
? PUNCT
What PRON
kind NOUN
of ADP
symptoms?My PROPN
ENT PROPN
doctor NOUN
told VERB
me PRON
that SCONJ
it PRON
is AUX
not PART
uncommon ADJ
for ADP
the DET
wife NOUN
to PART
get AUX
a DET
vaginalyeast ADJ
infection NOUN
after ADP
the DET
husband NOUN
takes VERB
antibiotics NOUN
. PUNCT
  SPACE
In ADP
fact NOUN
this DET
recentlyhappened VERB
to ADP
my PRON
wife NOUN
. PUNCT
  SPACE
Explanation NOUN
is AUX
that SCONJ
the DET
antibiotics NOUN
kill VERB
the DET
yeast'scompetition NOUN
, PUNCT
they PRON
then ADV
thrive VERB
and CCONJ
increased VERB
yeast NOUN
around ADP
the DET
penis PROPN
spreadthe NOUN
infection NOUN
during ADP
intercourse NOUN
. PUNCT
  SPACE
I PRON
was AUX
on ADP
ceclor NOUN
for ADP
30 NUM
days NOUN
, PUNCT
then ADV
my PRON
wifegot NOUN
the DET
yeast NOUN
. PUNCT
Jay PROPN
Kellerbadboy@netcom.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59350From NUM
: PUNCT
gary@concave.cs.wits.ac.za PROPN
( PUNCT
Gary PROPN
Taylor)Subject NUM
: PUNCT
Umbilical PROPN
HerniaCould PROPN
anyone PRON
give VERB
me PRON
information NOUN
on ADP
Umbilical ADJ
hernias NOUN
. PUNCT
The DET
patient NOUN
is AUX
over ADP
weight NOUN
and CCONJ
has AUX
a DET
protruding VERB
hernia NOUN
. PUNCT
Surgery NOUN
may AUX
be AUX
risky ADJ
due ADP
to ADP
the DET
obesity NOUN
. PUNCT
What PRON
other ADJ
remedies NOUN
could AUX
I PRON
try?Thanx VERB
in ADP
advanceDr PROPN
. PUNCT
Gary PROPN
TaylorNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59351From NUM
: PUNCT
spp@zabriskie.berkeley.edu PRON
( PUNCT
Steve PROPN
Pope)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast ADJ
infections?A PROPN
woman NOUN
once ADV
told VERB
me PRON
her PRON
doctor NOUN
told VERB
her PRON
that SCONJ
Icould AUX
catch VERB
, PUNCT
asymptomatically ADV
, PUNCT
her PRON
yeast NOUN
infectionfrom VERB
her PRON
, PUNCT
then ADV
give VERB
it PRON
back ADV
to ADP
her PRON
, PUNCT
causinga ADJ
relapse PROPN
. PUNCT
Probably ADV
bogus ADJ
, PUNCT
but CCONJ
if SCONJ
not PART
, PUNCT
it PRON
's AUX
another DET
reason NOUN
to ADP
uselatex NOUN
... PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59352From NUM
: PUNCT
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Proventil PROPN
InhalerIn PROPN
article NOUN
< X
16BB6CDEB.RICK@ysub.ysu.edu NUM
> X
RICK@ysub.ysu.edu PROPN
( PUNCT
Rick PROPN
Marsico PROPN
) PUNCT
writes:>Does VERB
the DET
Proventil PROPN
inhaler NOUN
for ADP
asthma NOUN
relief NOUN
fall NOUN
into ADP
the DET
steroid NOUN
> X
or CCONJ
nonsteroid PROPN
category NOUN
? PUNCT
  SPACE
Looking VERB
at ADP
the DET
product NOUN
literature NOUN
it's PRON
> X
not PART
clear ADJ
. PUNCT
Non ADJ
- NOUN
steroid ADJ
. PUNCT
  SPACE
Proventil PROPN
is AUX
a DET
brand NOUN
of ADP
albuterol NOUN
, PUNCT
a DET
bronchodilator NOUN
. PUNCT
  SPACE
Regards PROPN
, PUNCT
Jay PROPN
Keller(asthmatic PROPN
Proventil PROPN
- PUNCT
head)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59353From NUM
: PUNCT
res4w@galen.med.Virginia.EDU PROPN
( PUNCT
Robert PROPN
E. PROPN
Schmieg)Subject NUM
: PUNCT
Re ADP
: PUNCT
Med NOUN
school NOUN
admissionhoss@panix.com NOUN
  SPACE
writes VERB
: PUNCT
> X
hi INTJ
all DET
, PUNCT
I PRON
ve VERB
applied VERB
for ADP
the DET
class NOUN
of ADP
93 NUM
at ADP
quite DET
a DET
number NOUN
of ADP
schools NOUN
( PUNCT
20 NUM
) PUNCT
> X
and CCONJ
have AUX
gotten VERB
13 NUM
rejects NOUN
, PUNCT
4 NUM
interviews NOUN
and CCONJ
3 NUM
no DET
responses NOUN
. PUNCT
Three NUM
possible ADJ
results NOUN
after ADP
interview:1 NUM
) PUNCT
rejection NOUN
outright2 NOUN
) PUNCT
acceptance NOUN
outright3 NOUN
) PUNCT
the DET
infamous ADJ
' PUNCT
wait NOUN
list NOUN
' PUNCT
... PUNCT
If SCONJ
you PRON
are AUX
on ADP
a DET
' PUNCT
wait NOUN
list NOUN
' PUNCT
, PUNCT
your PRON
entrance NOUN
into ADP
medical ADJ
schoolis ADJ
dependent ADJ
upon SCONJ
some DET
other ADJ
applicant NOUN
withdrawing VERB
theiracceptance NOUN
. PUNCT
  SPACE
This DET
can AUX
happen VERB
as ADV
late ADV
as SCONJ
day NOUN
-1 PUNCT
of ADP
startingclasses NOUN
. PUNCT
  SPACE
> X
Any DET
one NUM
know VERB
when ADV
the DET
heck NOUN
these DET
people NOUN
send VERB
out ADP
their PRON
acceptance NOUN
letters NOUN
? PUNCT
> X
According VERB
to ADP
the DET
med PROPN
school NOUN
admissions NOUN
book NOUN
they PRON
re VERB
supposed VERB
to PART
send VERB
out ADP
> X
the DET
number NOUN
of ADP
their PRON
class NOUN
in ADP
acceptances NOUN
by ADP
mid ADJ
March PROPN
. PUNCT
What PRON
s VERB
going VERB
on ADP
... PUNCT
I PRON
> X
am AUX
losing VERB
my PRON
sanity NOUN
checking VERB
my PRON
mailbox NOUN
every DET
day NOUN
. PUNCT
You PRON
can AUX
always ADV
call VERB
the DET
admissions NOUN
office NOUN
. PUNCT
  SPACE
The DET
secretariesshould AUX
have AUX
some DET
idea NOUN
of ADP
when ADV
a DET
decision NOUN
might AUX
be AUX
made VERB
on ADP
yourapplication NOUN
. PUNCT
  SPACE
Be AUX
calm ADJ
, PUNCT
respectful ADJ
, PUNCT
and CCONJ
friendly ADJ
; PUNCT
secretarieshave VERB
more ADJ
power NOUN
than SCONJ
you PRON
might AUX
realize VERB
, PUNCT
and CCONJ
you PRON
never ADV
know VERB
- PUNCT
could AUX
be AUX
the DET
dean NOUN
of ADP
admissions NOUN
answering VERB
the DET
phone NOUN
. PUNCT
> X
Also ADV
does AUX
anyone PRON
have AUX
some DET
useful ADJ
alternatives NOUN
in ADP
case NOUN
i PRON
do AUX
nt PART
get AUX
in ADV
, PUNCT
iIf INTJ
you PRON
do AUX
n't PART
get AUX
in ADP
this DET
year NOUN
, PUNCT
sit VERB
down ADP
and CCONJ
re VERB
- NOUN
evaluateyourself VERB
: PUNCT
your PRON
motives NOUN
, PUNCT
desires NOUN
, PUNCT
and CCONJ
goals NOUN
that PRON
are AUX
directingyou NOUN
into ADP
medicine NOUN
; PUNCT
your PRON
academic ADJ
and CCONJ
extracurricularaccomplishments NOUN
. PUNCT
  SPACE
Make VERB
a DET
decision NOUN
about ADP
whether SCONJ
you PRON
* PUNCT
really*want NOUN
to PART
be AUX
a DET
medical ADJ
doctor NOUN
. PUNCT
  SPACE
I PRON
had AUX
classmates NOUN
who PRON
dropped VERB
outin PROPN
the DET
first ADJ
semester NOUN
of ADP
med PROPN
school NOUN
because SCONJ
they PRON
found VERB
it PRON
wasnot VERB
what PRON
they PRON
wanted VERB
to PART
do AUX
; PUNCT
I PRON
have AUX
friends NOUN
who PRON
applied VERB
fouryears NOUN
in ADP
a DET
row NOUN
before ADP
they PRON
were AUX
accepted VERB
. PUNCT
  SPACE
Medicine PROPN
as SCONJ
acareer NOUN
is AUX
a DET
choice NOUN
you PRON
must AUX
make VERB
for ADP
yourself PRON
; PUNCT
DON'T VERB
bepushed VERB
into ADP
it PRON
because SCONJ
of ADP
your PRON
parents NOUN
/ SYM
family NOUN
/ SYM
significantother NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
still ADV
want VERB
to PART
be AUX
a DET
medical ADJ
doctor NOUN
, PUNCT
determine VERB
how ADV
youcan PROPN
improve VERB
your PRON
application NOUN
. PUNCT
  SPACE
A DET
letter NOUN
of ADP
recommendation NOUN
froma NOUN
professor NOUN
who PRON
knows VERB
you PRON
well ADV
and CCONJ
can AUX
give VERB
an DET
honest ADJ
positiverecommendation NOUN
is AUX
far ADV
better ADJ
than SCONJ
one NUM
from ADP
a DET
' PUNCT
big ADJ
- PUNCT
shot NOUN
' PART
famousprofessor NOUN
who PRON
only ADV
vaguely ADV
remembers VERB
your PRON
face NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
don'tbe X
afraid ADJ
to PART
ask VERB
these DET
people NOUN
if SCONJ
they PRON
can AUX
give VERB
you PRON
an DET
honestand NOUN
positive ADJ
recommendation NOUN
; PUNCT
give VERB
them PRON
a DET
chance NOUN
to PART
say VERB
' PUNCT
no INTJ
, PUNCT
sorry INTJ
' PUNCT
instead ADV
of ADP
the DET
medical ADJ
school NOUN
saying VERB
' PUNCT
no INTJ
, PUNCT
sorry INTJ
' PUNCT
. PUNCT
  SPACE
Ihave PROPN
turned VERB
down ADP
writing NOUN
recommendations NOUN
for ADP
some DET
studentsbecause NOUN
I PRON
did AUX
not PART
know VERB
them PRON
well ADV
enough ADV
to PART
make VERB
any DET
meaningfulcomments NOUN
, PUNCT
and CCONJ
some DET
because SCONJ
I PRON
honestly ADV
could AUX
not PART
recommend VERB
themat NOUN
that DET
point NOUN
. PUNCT
  SPACE
Rewrite VERB
your PRON
personal ADJ
statement NOUN
; PUNCT
take VERB
it PRON
by ADP
an DET
Englishprofessor PROPN
or CCONJ
some DET
other ADJ
friendly ADJ
person NOUN
with ADP
skill NOUN
andexperience NOUN
in ADP
writing NOUN
and CCONJ
proof NOUN
- PUNCT
reading NOUN
and CCONJ
get AUX
theircriticism NOUN
, PUNCT
both CCONJ
about ADP
what PRON
you PRON
are AUX
saying VERB
as ADV
well ADV
as SCONJ
how ADV
yousay VERB
it PRON
. PUNCT
Review VERB
your PRON
academic ADJ
accomplishments NOUN
. PUNCT
  SPACE
If SCONJ
your PRON
grades NOUN
are AUX
poorin VERB
some DET
area NOUN
, PUNCT
do AUX
n't PART
be AUX
afraid ADJ
to PART
spend VERB
some DET
time NOUN
in ADP
furthercoursework NOUN
. PUNCT
  SPACE
Evidence NOUN
of ADP
determined VERB
committment NOUN
will AUX
helphere VERB
. PUNCT
  SPACE
If SCONJ
you PRON
filled VERB
your PRON
pre ADJ
- ADJ
medicine ADJ
curriculum NOUN
with ADP
gutcourses NOUN
, PUNCT
it PRON
usually ADV
shows VERB
. PUNCT
Look VERB
at ADP
your PRON
extracurricular ADJ
involvements NOUN
. PUNCT
  SPACE
Participating VERB
inlocal ADJ
philanthropic NOUN
or CCONJ
service NOUN
organizations NOUN
is AUX
a DET
plus;substantial ADJ
leadership NOUN
roles NOUN
in ADP
an DET
organization NOUN
help NOUN
also ADV
. PUNCT
Beware VERB
of ADP
' PUNCT
resume VERB
padding NOUN
' PUNCT
; PUNCT
such ADJ
things NOUN
are AUX
not PART
difficult ADJ
tospot NOUN
and CCONJ
weed VERB
out ADP
. PUNCT
Overall ADV
, PUNCT
a DET
clear ADJ
conception NOUN
of ADP
where ADV
you PRON
wish VERB
to PART
head VERB
and CCONJ
whyyou NOUN
want VERB
to PART
get AUX
there ADV
, PUNCT
combined VERB
with ADP
an DET
honest ADJ
self NOUN
- PUNCT
appraisalof ADJ
skills NOUN
and CCONJ
aptitude NOUN
, PUNCT
will AUX
be AUX
the DET
best ADJ
path NOUN
to PART
take VERB
inapplying VERB
to ADP
any DET
program NOUN
, PUNCT
medical ADJ
or CCONJ
what PRON
- PUNCT
have AUX
- PUNCT
you PRON
. PUNCT
Good ADJ
luck NOUN
with ADP
the DET
process NOUN
-- PUNCT
as SCONJ
Tom PROPN
Petty PROPN
says VERB
, PUNCT
' PUNCT
the DET
waitingis NOUN
the DET
hardest ADJ
part NOUN
' PUNCT
, PUNCT
at ADP
least ADJ
emotionally ADV
. PUNCT
: PUNCT
) PUNCT
Bob PROPN
SchmiegNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59354From NUM
: PUNCT
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller)Subject PROPN
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
Septoplasty PROPN
My PRON
ENT PROPN
doctor NOUN
recommended VERB
surgery NOUN
to PART
fix VERB
my PRON
sinuses NOUN
. PUNCT
  SPACE
I PRON
have AUX
a DET
very ADV
deviatednasal ADJ
septum NOUN
( PUNCT
probably ADV
the DET
result NOUN
at ADP
least ADJ
partially ADV
from ADP
several ADJ
fractures).One PROPN
side NOUN
has AUX
approximately ADV
10 NUM
- SYM
15 NUM
% NOUN
of ADP
normal ADJ
flow NOUN
. PUNCT
  SPACE
Of ADV
course ADV
I PRON
have AUX
known VERB
thisfor ADJ
years NOUN
but CCONJ
recently ADV
discovered VERB
that SCONJ
I PRON
suffer VERB
from ADP
chronic ADJ
sinus NOUN
infection NOUN
, PUNCT
discovered VERB
during ADP
an DET
MRI NOUN
after ADP
a DET
severe ADJ
migraine NOUN
. PUNCT
  SPACE
A DET
CT PROPN
scan AUX
subsequently ADV
confirmed VERB
the DET
problems NOUN
in ADP
the DET
sinuses NOUN
. PUNCT
He PRON
wants VERB
to PART
do AUX
endoscopic ADJ
sinus NOUN
surgery NOUN
on ADP
the DET
ethmoid ADJ
, PUNCT
maxillary ADJ
, PUNCT
frontal ADJ
, PUNCT
and CCONJ
sphenoid VERB
, PUNCT
along ADP
with ADP
nasal ADJ
septoplasty NOUN
. PUNCT
He PRON
explained VERB
the DET
procedure NOUN
, PUNCT
and CCONJ
the DET
risks NOUN
. PUNCT
  SPACE
What PRON
I PRON
would AUX
like VERB
to PART
know VERB
is AUX
ifthere NOUN
is AUX
anyone PRON
out ADV
there ADV
who PRON
can AUX
tell VERB
me PRON
" PUNCT
I PRON
had AUX
this DET
surgery NOUN
, PUNCT
and CCONJ
it PRON
helpedme"?(I've VERB
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn'treally ADV
help VERB
them).I NUM
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see VERB
somerelief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
ofthat ADP
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved VERB
. PUNCT
I PRON
am AUX
42.Any NUM
relevant ADJ
information NOUN
is AUX
appreciated VERB
. PUNCT
Regards NOUN
, PUNCT
Jay PROPN
KellerSunnyvale PROPN
, PUNCT
Californiabadboy@netcom.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59355From NUM
: PUNCT
jprice@dpw.com X
( PUNCT
Janice PROPN
Price)Subject NUM
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???I PROPN
saw VERB
a DET
printed VERB
up ADP
flyer NOUN
that PRON
stated VERB
the DET
person NOUN
was AUX
a"licensed VERB
herbologist NOUN
and CCONJ
iridologist"What PRON
are AUX
your PRON
opinions?How NOUN
much ADJ
can AUX
you PRON
tell VERB
about ADP
a DET
person NOUN
's PART
health NOUN
by ADP
looking VERB
into ADP
their PRON
eyes?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59356From NUM
: PUNCT
chcho@vnet NOUN
. PUNCT
IBM.COM PROPN
( PUNCT
Chul PROPN
- PUNCT
hee PROPN
Cho PROPN
) PUNCT
Subject NOUN
: PUNCT
ProHibit PROPN
for ADP
Spiral PROPN
MeningitisI PROPN
like VERB
to PART
know VERB
how ADV
effective ADJ
ProHibit PROPN
is AUX
to PART
prevent VERB
spiral NOUN
meningitisfor ADP
a DET
child NOUN
who PRON
is AUX
five NUM
years NOUN
old ADJ
. PUNCT
  SPACE
I PRON
heard VERB
it PRON
's AUX
from ADP
Canada PROPN
. PUNCT
What PRON
sort NOUN
of ADP
side NOUN
effects NOUN
, PUNCT
etc X
. PUNCT
Chul PROPN
- PUNCT
hee PROPN
ChoNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59357From NUM
: PUNCT
Stephen PROPN
Dubin PROPN
< X
sdubin@igc.apc.org>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?I PROPN
think VERB
you PRON
must AUX
have AUX
the DET
same ADJ
hygiene NOUN
teacher NOUN
I PRON
had AUX
in ADP
1955 NUM
. PUNCT
  SPACE
There PRON
is AUX
a DET
story NOUN
about ADP
the DET
Civil PROPN
War PROPN
about ADP
a DET
soldier NOUN
who PRON
was AUX
shot VERB
in ADP
thegroin NOUN
. PUNCT
  SPACE
The DET
bullet NOUN
, PUNCT
after ADP
passing VERB
through ADP
one NUM
of ADP
his PRON
testes NOUN
, PUNCT
then ADV
enteredthe VERB
abdomen NOUN
of ADP
a DET
young ADJ
woman NOUN
standing VERB
nearby ADV
. PUNCT
  SPACE
Later ADV
, PUNCT
  SPACE
when ADV
she PRON
( PUNCT
a DET
youngwoman NOUN
of ADP
unimpeachible ADJ
virtue NOUN
) PUNCT
was AUX
shown VERB
to PART
be AUX
pregnant ADJ
; PUNCT
the DET
soldier NOUN
didthe NOUN
honorable ADJ
thing NOUN
of ADP
marrying VERB
her PRON
. PUNCT
  SPACE
According VERB
to ADP
this DET
story NOUN
, PUNCT
they PRON
livedhappily ADV
ever ADV
after ADV
. PUNCT
  SPACE
Perhaps ADV
the DET
most ADV
famous ADJ
of ADP
Mr. PROPN
Rau PROPN
's PART
classes NOUN
was AUX
the DET
time NOUN
he PRON
would AUX
comeinto VERB
class NOUN
brandishing VERB
an DET
aluminum NOUN
turning VERB
mandrel NOUN
  SPACE
( PUNCT
tapering VERB
from ADP
about3/8 PROPN
" PUNCT
to ADP
1/2 NUM
" PUNCT
over ADP
a DET
10 NUM
inch NOUN
length NOUN
) PUNCT
. PUNCT
  SPACE
He PRON
would AUX
say VERB
, PUNCT
" PUNCT
Boys NOUN
, PUNCT
do AUX
you PRON
knowwhat ADP
this DET
is AUX
? PUNCT
  SPACE
It PRON
's AUX
a DET
medical ADJ
instrument NOUN
called VERB
a DET
' PUNCT
cock ADJ
reamer NOUN
' PUNCT
and CCONJ
it'sused VERB
to PART
unclog VERB
your PRON
penis NOUN
when ADV
you PRON
have AUX
VD PROPN
. PUNCT
  SPACE
They PRON
just ADV
ram VERB
it PRON
up ADP
therewithout ADP
an DET
anesthetic NOUN
! PUNCT
" PUNCT
  SPACE
Needless PROPN
to PART
say VERB
this DET
had AUX
a DET
chilling ADJ
effect NOUN
. PUNCT
I PRON
did AUX
n't PART
have AUX
lascivious ADJ
thoughts NOUN
for ADP
at ADV
least ADJ
an DET
hour NOUN
. PUNCT
  SPACE
Later ADV
in ADP
lifeas NOUN
I PRON
perused VERB
medical ADJ
instrument NOUN
catelogs NOUN
and CCONJ
saw VERB
the DET
slender ADJ
flexibleurethral ADJ
sounds NOUN
that PRON
are AUX
actually ADV
used VERB
, PUNCT
I PRON
could AUX
not PART
escape VERB
thinkingthat ADP
I PRON
might AUX
one NUM
day NOUN
see VERB
, PUNCT
" PUNCT
Reamer PROPN
, PUNCT
Cock NOUN
( PUNCT
style NOUN
of ADP
Rau PROPN
) PUNCT
. PUNCT
" PUNCT
        SPACE
] PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59358From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?Speaking VERB
of ADP
educational ADJ
systems NOUN
, PUNCT
I PRON
recently ADV
had AUX
a DET
colleaguetell NOUN
me PRON
that SCONJ
the DET
reason NOUN
one NUM
of ADP
our PRON
fifth ADJ
grade NOUN
students NOUN
is AUX
sophysically ADV
developed VERB
is AUX
because SCONJ
she PRON
was AUX
sexually ADV
abused VERB
as SCONJ
a DET
youngerchild NOUN
. PUNCT
This DET
, PUNCT
she PRON
went VERB
on ADP
to PART
say VERB
, PUNCT
kicks VERB
the DET
pituitary ADJ
gland NOUN
intoaction NOUN
and CCONJ
causes VERB
puberty NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59359From NUM
: PUNCT
kiran@village.com X
( PUNCT
Kiran PROPN
Wagle)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?I PROPN
wrote VERB
: PUNCT
KW PROPN
> X
If SCONJ
you PRON
do AUX
n't PART
like VERB
additives NOUN
, PUNCT
then ADV
for ADP
godsake NOUN
, PUNCT
KW PROPN
> X
get AUX
off ADP
the DET
net NOUN
and CCONJ
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
. PUNCT
  SPACE
Sheesh PROPN
. PUNCT
Mary PROPN
Allison PROPN
exclaims VERB
: PUNCT
MA PROPN
> X
EXCUSE PROPN
ME!!!!!!!!!!!!MA NOUN
> X
Why ADV
ca AUX
n't PART
people NOUN
learn VERB
to PART
cook VERB
from ADP
scratch NOUN
* PUNCT
ON ADP
* PUNCT
the DET
net NOUN
. PUNCT
MA PROPN
> X
I PRON
've AUX
gotten VERB
LOTS NOUN
of ADP
recipes NOUN
off ADP
the DET
net NOUN
that PRON
do AUX
n't PART
use VERB
additives NOUN
. PUNCT
Because SCONJ
one NUM
simply ADV
_ VERB
ca AUX
n't PART
_ VERB
cook VERB
on ADP
the DET
net NOUN
, PUNCT
nor CCONJ
can AUX
one NUM
cook VERB
while SCONJ
ON ADP
thenet NOUN
. PUNCT
  SPACE
Cooking NOUN
is AUX
best ADV
done VERB
IN ADP
a DET
kitchen NOUN
, PUNCT
ON ADP
a DET
stove NOUN
. PUNCT
  SPACE
( PUNCT
Gotcha PROPN
! PUNCT
* PUNCT
grin*)(I PROPN
said VERB
this DET
out SCONJ
of ADP
general ADJ
frustration NOUN
at ADP
people NOUN
( PUNCT
not PART
anyone PRON
in ADP
particular ADJ
) PUNCT
who PRON
seem VERB
to PART
expect VERB
packaged VERB
food NOUN
to PART
conform VERB
to ADP
their PRON
tastes NOUN
. PUNCT
  SPACE
In ADP
other ADJ
words NOUN
, PUNCT
if SCONJ
packaged VERB
foods NOUN
are AUX
not PART
to ADP
your PRON
liking NOUN
, PUNCT
prepare VERB
foods NOUN
that PRON
are.)MA VERB
> X
If SCONJ
you PRON
LIKE VERB
additives NOUN
then ADV
get AUX
off ADP
the DET
net NOUN
and CCONJ
go VERB
to ADP
your PRON
localMA PROPN
> X
supermarket NOUN
, PUNCT
buy VERB
lots NOUN
of ADP
packaged VERB
foods NOUN
, PUNCT
and CCONJ
YOU PRON
get VERB
OFF PROPN
THE DET
NET!!I PROPN
do AUX
n't PART
have AUX
strong ADJ
feelings NOUN
about ADP
additives NOUN
, PUNCT
as ADV
long ADV
as SCONJ
I PRON
ca AUX
n't PART
taste VERB
' PUNCT
em.(As NOUN
for ADP
the DET
rest NOUN
of ADP
your PRON
reply NOUN
to ADP
me PRON
, PUNCT
I PRON
am AUX
sorry ADJ
it PRON
it PRON
seemed VERB
as SCONJ
if SCONJ
i PRON
was AUX
  SPACE
picking VERB
on ADP
you PRON
. PUNCT
  SPACE
I PRON
was AUX
n't PART
trying VERB
to PART
do AUX
so ADV
. PUNCT
  SPACE
Please INTJ
accept VERB
my PRON
apologies.)~ DET
Kiran PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59360From NUM
: PUNCT
chungy2@rebecca.its.rpi.edu PROPN
( PUNCT
Yau PROPN
Felix PROPN
Chung)Subject PROPN
: PUNCT
Nasopharinx PROPN
Carcenoma PROPN
... PUNCT
Hi INTJ
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
the DET
possible ADJ
causes NOUN
of ADP
nasoparynx ADJ
carcenomaand NOUN
what PRON
are AUX
the DET
chances NOUN
of ADP
it PRON
being AUX
hereditary?Also PROPN
, PUNCT
in ADP
the DET
advacned VERB
cases NOUN
, PUNCT
what PRON
is AUX
the DET
general ADJ
procedure NOUN
to PART
reduce VERB
the DET
pain NOUN
the DET
area NOUN
as SCONJ
it PRON
prevents VERB
the DET
patient NOUN
from ADP
eatingdue PROPN
to ADP
the DET
excessive ADJ
pain NOUN
of ADP
swallowing NOUN
and CCONJ
even ADV
talking?Thanks.-F ADJ
.. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59361From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
cats NOUN
and CCONJ
pregnancyIn PROPN
article NOUN
< X
1993Apr27.043035.22609@etl.go.jp NUM
> X
klaus@ipri.go.jp PUNCT
( PUNCT
Klaus PROPN
Hofmann;(6663 PROPN
) PUNCT
) PUNCT
writes::Hello,:I PROPN
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
which PRON
: PUNCT
can AUX
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
: PUNCT
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?:Having VERB
the DET
cat NOUN
around ADV
is AUX
not PART
a DET
problem NOUN
, PUNCT
but CCONJ
the DET
pregnant ADJ
woman NOUN
should AUX
notchange VERB
the DET
litter NOUN
box NOUN
. PUNCT
  SPACE
Toxoplasmosis NOUN
can AUX
be AUX
transmitted VERB
from ADP
the DET
stool NOUN
ofsome NOUN
cats.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59362From NUM
: PUNCT
tegarr01@ulkyvx.louisville.eduSubject NOUN
: PUNCT
Herpes PROPN
question?I PROPN
am AUX
looking VERB
for ADP
some DET
clarification NOUN
on ADP
a DET
subject NOUN
that PRON
I PRON
am AUX
trying VERB
to PART
find VERB
someinformation NOUN
on ADP
. PUNCT
How ADV
is AUX
HSV-2 PROPN
( PUNCT
Herpes PROPN
) PUNCT
transmitted VERB
? PUNCT
  SPACE
I PRON
currently ADV
know VERB
that SCONJ
it PRON
can AUX
be AUX
transmittedduring VERB
inflammation NOUN
but CCONJ
, PUNCT
what PRON
I PRON
am AUX
looking VERB
for ADP
is AUX
if SCONJ
it PRON
can AUX
be AUX
transmitted VERB
during ADP
in ADP
other ADJ
periods NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
I PRON
want VERB
to PART
know VERB
if SCONJ
you PRON
can AUX
be AUX
accurately ADV
tested VERB
for ADP
it PRON
while SCONJ
you PRON
are AUX
not PART
showing VERB
symtoms?If NOUN
you PRON
can AUX
help VERB
I PRON
would AUX
greatly ADV
appreciate VERB
it PRON
. PUNCT
TegNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59363From NUM
: PUNCT
lim@graphics.rent.com PROPN
( PUNCT
Julie PROPN
Lim)Subject X
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?michael@iastate.edu PROPN
( PUNCT
Michael PROPN
M. PROPN
Huang PROPN
) PUNCT
writes VERB
: PUNCT
> X
MSG PROPN
is AUX
common ADJ
in ADP
many ADJ
food NOUN
we PRON
eat VERB
, PUNCT
including VERB
Chinese PROPN
( PUNCT
though SCONJ
some DET
oriental ADJ
> X
restaurants NOUN
might AUX
put VERB
a DET
tad NOUN
too ADV
much ADJ
in ADP
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
when ADV
I PRON
> X
go VERB
out ADP
and CCONJ
eat VERB
in ADP
most ADJ
of ADP
the DET
Chinese ADJ
food NOUN
restaurants NOUN
, PUNCT
I PRON
will AUX
usually ADV
get AUX
> X
a DET
slight ADJ
headache NOUN
and CCONJ
an DET
ununsual ADJ
thirst NOUN
afterwards ADV
. PUNCT
  SPACE
This DET
happens VERB
to ADP
many ADJ
> X
of ADP
my PRON
friends NOUN
and CCONJ
relatives NOUN
too ADV
. PUNCT
  SPACE
And CCONJ
, PUNCT
heh INTJ
, PUNCT
we PRON
eat VERB
Chinese ADJ
food NOUN
all DET
the DET
> X
time NOUN
at ADP
home NOUN
:) PUNCT
( PUNCT
but CCONJ
we PRON
do AUX
n't PART
use VERB
MSG PROPN
when ADV
we PRON
're AUX
cooking VERB
for ADP
ourselves PRON
) PUNCT
        SPACE
Heck INTJ
, PUNCT
I PRON
seem VERB
to PART
feel VERB
like SCONJ
that DET
* PUNCT
every DET
* PUNCT
time NOUN
I PRON
eat VERB
out ADP
. PUNCT
Including VERB
in ADP
the DET
cafeteria NOUN
at ADP
work NOUN
. PUNCT
About ADV
half DET
the DET
time NOUN
, PUNCT
the DET
headache NOUN
intensifies VERB
until ADP
nothing PRON
will AUX
make VERB
it PRON
go VERB
away ADV
except SCONJ
throwing VERB
up ADP
. PUNCT
Ick PROPN
. PROPN
        SPACE
As SCONJ
you PRON
might AUX
imagine VERB
, PUNCT
I PRON
do AUX
n't PART
eat VERB
out ADP
a DET
lot NOUN
. PUNCT
I PRON
guess VERB
my PRON
tolerance NOUN
for ADP
food NOUN
additives NOUN
has AUX
plummeted VERB
since SCONJ
I PRON
switched VERB
to ADP
eating VERB
mostly ADV
steamed VERB
veggies NOUN
. PUNCT
They PRON
're AUX
easy ADJ
to PART
fix VERB
, PUNCT
that DET
's AUX
all DET
. PUNCT
        SPACE
I PRON
wo AUX
n't PART
even ADV
mention VERB
what PRON
happened VERB
the DET
last ADJ
time NOUN
I PRON
ate VERB
corned ADJ
beef NOUN
. PUNCT
( PUNCT
Oops INTJ
. PUNCT
Too ADV
late ADV
. PUNCT
) PUNCT
The DET
Graphics PROPN
BBS PROPN
  SPACE
908/469 NUM
- PUNCT
0049 NUM
  SPACE
" PUNCT
It PRON
's AUX
better ADJ
than SCONJ
a DET
sharp ADJ
stick NOUN
in ADP
the DET
eye NOUN
! PUNCT
" PUNCT
  SPACE
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
Internet NOUN
: PUNCT
lim@graphics.rent.com PROPN
( PUNCT
Julie PROPN
Lim PROPN
) PUNCT
     SPACE
UUCP NOUN
: PUNCT
rutgers!bobsbox!graphics!limNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59364From NUM
: PUNCT
andrea@unity.ncsu.edu PROPN
( PUNCT
Andrea PROPN
M PROPN
Free PROPN
- PUNCT
Kwiatkowski)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections?Steve ADJ
Pope PROPN
( PUNCT
spp@zabriskie.berkeley.edu ADV
) PUNCT
wrote VERB
: PUNCT
: PUNCT
A DET
woman NOUN
once ADV
told VERB
me PRON
her PRON
doctor NOUN
told VERB
her PRON
that SCONJ
I PRON
: PUNCT
could AUX
catch VERB
, PUNCT
asymptomatically ADV
, PUNCT
her PRON
yeast NOUN
infection NOUN
: PUNCT
from ADP
her PRON
, PUNCT
then ADV
give VERB
it PRON
back ADV
to ADP
her PRON
, PUNCT
causing VERB
: PUNCT
a DET
relapse NOUN
. PUNCT
: PUNCT
Probably ADV
bogus ADJ
, PUNCT
but CCONJ
if SCONJ
not PART
, PUNCT
it PRON
's AUX
another DET
reason NOUN
to PART
use VERB
: PUNCT
latex NOUN
... PUNCT
: PUNCT
SteveIt PROPN
is AUX
n't PART
bogus ADJ
. PUNCT
  SPACE
I PRON
had AUX
chronic ADJ
vaginal ADJ
yeast NOUN
infections NOUN
that PRON
would AUX
go VERB
awaywith PROPN
cream NOUN
but CCONJ
reappear VERB
in ADP
about ADV
2 NUM
weeks NOUN
. PUNCT
  SPACE
I PRON
had AUX
been AUX
on ADP
3 NUM
rounds VERB
ofantibiotics NOUN
for ADP
a DET
resistant ADJ
sinus NOUN
infection NOUN
and CCONJ
my PRON
husband NOUN
had AUX
been AUX
onamoxicillin ADJ
also ADV
for ADP
a DET
sinus NOUN
infection NOUN
. PUNCT
  SPACE
After ADP
six NUM
months NOUN
of ADP
this DET
, PUNCT
I PRON
wentto VERB
a DET
gynecologist NOUN
who PRON
had AUX
me PRON
culture NOUN
my PRON
husband NOUN
seminal ADJ
fluid PROPN
. PUNCT
  SPACE
After ADP
7days NUM
incubation NOUN
he PRON
had AUX
quite DET
a DET
bit NOUN
of ADP
yeast NOUN
growth NOUN
( PUNCT
it PRON
was AUX
confirmed VERB
bythe NOUN
lab NOUN
) PUNCT
. PUNCT
  SPACE
A DET
round NOUN
of ADP
Nizerol PROPN
for ADP
him PRON
cleared VERB
both DET
of ADP
us PRON
. PUNCT
Andrea PROPN
KwiatkowskiNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59365From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?mmatusev@radford.vak12ed.edu NOUN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich PROPN
) PUNCT
writes:>Speaking VERB
of ADP
educational ADJ
systems NOUN
, PUNCT
I PRON
recently ADV
had AUX
a DET
colleague NOUN
> X
tell VERB
me PRON
that SCONJ
the DET
reason NOUN
one NUM
of ADP
our PRON
fifth ADJ
grade NOUN
students NOUN
is AUX
so ADV
> X
physically ADV
developed VERB
is AUX
because SCONJ
she PRON
was AUX
sexually ADV
abused VERB
as SCONJ
a DET
younger ADJ
> X
child NOUN
. PUNCT
This DET
, PUNCT
she PRON
went VERB
on ADP
to PART
say VERB
, PUNCT
kicks VERB
the DET
pituitary ADJ
gland NOUN
into ADP
> X
action NOUN
and CCONJ
causes VERB
puberty NOUN
. PUNCT
Nonsense NOUN
! PUNCT
I PRON
've AUX
taught VERB
fifth ADJ
, PUNCT
sixth ADJ
, PUNCT
seventh ADJ
. PUNCT
There PRON
are AUX
a DET
few ADJ
early ADJ
puberty NOUN
types NOUN
in ADP
fifth ADJ
and CCONJ
it PRON
has AUX
nothing PRON
to PART
do AUX
with ADP
early ADJ
sexual ADJ
experience NOUN
. PUNCT
-Jackie NUM
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59366From NUM
: PUNCT
russ@pmafire.inel.gov PROPN
( PUNCT
Russ PROPN
Brown)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Nasopharinx PROPN
Carcenoma PROPN
... PUNCT
In ADP
article NOUN
< X
+ CCONJ
y55z0d@rpi.edu INTJ
> X
chungy2@rebecca.its.rpi.edu PROPN
( PUNCT
Yau PROPN
Felix PROPN
Chung PROPN
) PUNCT
writes:>>Hi PROPN
. PUNCT
  SPACE
Does AUX
anyone PRON
know VERB
the DET
possible ADJ
causes NOUN
of ADP
nasoparynx ADJ
carcenoma NOUN
> X
and CCONJ
what PRON
are AUX
the DET
chances NOUN
of ADP
it PRON
being AUX
hereditary?Nasopharyngeal VERB
cancer NOUN
is AUX
( PUNCT
roughly ADV
, PUNCT
do AUX
n't PART
have AUX
references NOUN
at ADP
hand NOUN
) PUNCT
20 NUM
- SYM
30times NUM
more ADV
prevalent ADJ
in ADP
Chinese ADJ
than SCONJ
Caucasians PROPN
, PUNCT
particularly ADV
those DET
Chinesefrom PROPN
southern ADJ
China PROPN
. PUNCT
  SPACE
One NUM
province NOUN
( PUNCT
or CCONJ
region NOUN
) PUNCT
has AUX
an DET
extraordinary ADJ
excess NOUN
. PUNCT
The DET
Chinese PROPN
and CCONJ
others NOUN
have AUX
done VERB
major ADJ
studies NOUN
. PUNCT
  SPACE
Some DET
association NOUN
withthe NOUN
Epstein PROPN
- PUNCT
Barr PROPN
virus NOUN
has AUX
been AUX
noted.>>Also ADV
, PUNCT
in ADP
the DET
advacned VERB
cases NOUN
, PUNCT
what PRON
is AUX
the DET
general ADJ
procedure NOUN
to PART
> X
reduce VERB
the DET
pain NOUN
the DET
area NOUN
as SCONJ
it PRON
prevents VERB
the DET
patient NOUN
from ADP
eating VERB
> X
due ADP
to ADP
the DET
excessive ADJ
pain NOUN
of ADP
swallowing NOUN
and CCONJ
even ADV
talking?>Palliative PUNCT
radiotherapy PROPN
is AUX
used VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59367From NUM
: PUNCT
sutton@vxcrna.cern.ch PROPN
( PUNCT
SUTTON PROPN
, PUNCT
BERN./SL)Subject PROPN
: PUNCT
Hip PROPN
replacementNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59368From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
pros-*----In PROPN
article NOUN
< X
C63yG5.8tH@cs.uiuc.edu NUM
> X
blix@milton.cs.uiuc.edu NOUN
( PUNCT
Gunnar PROPN
Blix PROPN
) PUNCT
writes VERB
: PUNCT
> X
I PRON
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) NUM
pros NOUN
and CCONJ
> X
cons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
... PUNCT
I PRON
pity VERB
those DET
who PRON
hope VERB
that SCONJ
medical ADJ
knowledge NOUN
can AUX
resolve VERB
issuessuch ADJ
as SCONJ
this DET
. PUNCT
  SPACE
This DET
issue NOUN
has AUX
been AUX
rehashed VERB
in ADP
sci.med VERB
time NOUN
andtime NOUN
again ADV
. PUNCT
  SPACE
The DET
bottom ADJ
line NOUN
is AUX
this DET
: PUNCT
in ADP
normal ADJ
circumstances NOUN
, PUNCT
both CCONJ
the DET
medical ADJ
advantages NOUN
of ADP
and CCONJ
the DET
medical ADJ
risks NOUN
ofcircumcision NOUN
are AUX
minor ADJ
. PUNCT
  SPACE
This DET
means VERB
that SCONJ
the DET
decision NOUN
is AUX
left VERB
tothe DET
religious ADJ
, PUNCT
cultural ADJ
, PUNCT
ethical ADJ
, PUNCT
and CCONJ
aesthetic ADJ
mores NOUN
of ADP
theparents NOUN
, PUNCT
at ADP
best ADJ
, PUNCT
or CCONJ
to ADP
the DET
habit NOUN
of ADP
the DET
concerned ADJ
hospital NOUN
orcaregivers NOUN
, PUNCT
at ADP
worst ADJ
. PUNCT
As SCONJ
( PUNCT
prospective ADJ
) PUNCT
parents NOUN
, PUNCT
you PRON
should AUX
do AUX
what PRON
you PRON
want VERB
in ADP
thisregard NOUN
and CCONJ
not PART
worry VERB
about ADP
it PRON
too ADV
much ADV
. PUNCT
  SPACE
In ADP
terms NOUN
of ADP
decisionsyou NOUN
make VERB
for ADP
your PRON
child NOUN
, PUNCT
it PRON
will AUX
have AUX
far ADV
less ADJ
importance NOUN
thanmany NOUN
-- PUNCT
such ADJ
as SCONJ
which PRON
schools NOUN
you PRON
choose VERB
-- PUNCT
that SCONJ
most ADV
parentsthink VERB
about ADP
only ADV
a DET
little ADJ
. PUNCT
This DET
question NOUN
will AUX
undoubtedly ADV
push VERB
the DET
buttons NOUN
of ADP
people NOUN
whofeel VERB
that SCONJ
the DET
decision NOUN
to PART
circumcise VERB
your PRON
infant NOUN
or CCONJ
not PART
is AUX
amomentous ADJ
medical ADJ
decision NOUN
. PUNCT
  SPACE
It PRON
is AUX
not PART
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59369From NUM
: PUNCT
tuser@azbuka.kharkov.ua PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
WE PRON
CAN AUX
SUPPLY VERB
YOU PRON
WITH ADP
THE DET
TRANSPLANTANTS PROPN
& CCONJ
OTHER PROPN
    SPACE
The DET
Private PROPN
Scietific PROPN
& CCONJ
industrial ADJ
firm NOUN
" PUNCT
Intercom PROPN
2000 NUM
" PUNCT
cansupply NOUN
You PRON
with ADP
the DET
transplantants NOUN
that PRON
could AUX
be AUX
delivered VERB
accordingto PROPN
Your PRON
order NOUN
. PUNCT
    SPACE
Selection NOUN
and CCONJ
preparation NOUN
of ADP
the DET
materials NOUN
is AUX
carried VERB
out ADP
by ADP
thequalified ADJ
personnel NOUN
having VERB
20-year NUM
experience NOUN
in ADP
this DET
sphere NOUN
. PUNCT
    SPACE
We PRON
provide VERB
: PUNCT
- PUNCT
Immunological ADJ
selection NOUN
of ADP
tissues NOUN
( PUNCT
on ADP
the DET
special ADJ
request NOUN
) PUNCT
; PUNCT
- PUNCT
AIDS PROPN
, PUNCT
Syphilis PROPN
& CCONJ
other ADJ
infection NOUN
diseases NOUN
tests NOUN
; PUNCT
- PUNCT
bio ADJ
- PUNCT
chemical ADJ
tests NOUN
. PUNCT
    SPACE
We PRON
guarantee VERB
deliverance NOUN
of ADP
our PRON
products NOUN
within ADP
temperaturehabital ADJ
providing VERB
their PRON
prime ADJ
condition NOUN
. PUNCT
                SPACE
O.Yarosha PROPN
st PROPN
. PROPN
39 NUM
                SPACE
apart ADV
. PUNCT
49 NUM
                SPACE
Kharkov PROPN
, PUNCT
Ukraine PROPN
. PUNCT
                SPACE
tel PROPN
. PUNCT
+7 PROPN
( PUNCT
057)-2 NUM
- SYM
323177 NUM
                SPACE
fax NOUN
  SPACE
+7 NOUN
( PUNCT
057)-2 NUM
- SYM
431651 NUM
, PUNCT
231192 NUM
                SPACE
e NOUN
- NOUN
mail NOUN
: PUNCT
tuser%azbuka.kharkov.ua@relay.ussr.eu.netNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59370From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???In NUM
article NOUN
< X
9304261811.AA07821@DPW.COM NOUN
> X
Janice PROPN
Price PROPN
, PUNCT
jprice@dpw.comwrites:>How PUNCT
much ADV
can AUX
you PRON
tell VERB
about ADP
a DET
person NOUN
's PART
health NOUN
by ADP
looking VERB
into ADP
theireyes?By PROPN
looking VERB
at ADP
the DET
iris PROPN
( PUNCT
iridology NOUN
) PUNCT
- PUNCT
virtually ADV
nothing PRON
. PUNCT
Looking VERB
at ADP
the DET
retina NOUN
allows VERB
one NUM
to PART
visualise VERB
the DET
small ADJ
bloodvessels NOUN
and CCONJ
is AUX
helpful ADJ
in ADP
assessing VERB
various ADJ
systemic ADJ
diseases NOUN
, PUNCT
hypertension NOUN
and CCONJ
diabetes NOUN
for ADP
example NOUN
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionUM PROPN
will AUX
disavowNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59371From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
thermogenicsFirst NOUN
off ADV
, PUNCT
if SCONJ
I PRON
'm AUX
not PART
mistaken ADJ
, PUNCT
only ADV
hibernating VERB
animals NOUN
have AUX
brown ADJ
fat NOUN
, PUNCT
not PART
humans NOUN
. PUNCT
Secondly ADV
, PUNCT
your PRON
description NOUN
sounds VERB
just ADV
like SCONJ
2,4-dinitrophenol NUM
. PUNCT
  SPACE
This DET
is AUX
anuncoupler NOUN
of ADP
respiratory PROPN
chain NOUN
oxidative ADJ
phosphorylation NOUN
. PUNCT
  SPACE
Put VERB
in ADP
layman'sterms NOUN
, PUNCT
it PRON
short ADJ
- PUNCT
circuits NOUN
the DET
mitochondria NOUN
, PUNCT
causing VERB
food NOUN
energy NOUN
to PART
beturned VERB
into ADP
heat.2,4-DNP PROPN
was AUX
popular ADJ
in ADP
the DET
1930 NUM
's PART
for ADP
weight NOUN
reduction NOUN
. PUNCT
  SPACE
In ADP
controlledamounts NOUN
, PUNCT
it PRON
raises VERB
body NOUN
temperature NOUN
as SCONJ
the DET
body NOUN
compensates VERB
for ADP
thereduced ADJ
amount NOUN
of ADP
useful ADJ
energy NOUN
available ADJ
. PUNCT
  SPACE
It PRON
is AUX
very ADV
dangerous ADJ
. PUNCT
It PRON
would AUX
be AUX
wiser ADJ
to PART
adjust VERB
to ADP
your PRON
present ADJ
body NOUN
form NOUN
, PUNCT
rather ADV
thanplay VERB
around ADP
with ADP
2,4-DNP.But NUM
if SCONJ
you PRON
insist VERB
, PUNCT
I PRON
suggest VERB
you PRON
look VERB
up ADP
the DET
literature NOUN
in ADP
your PRON
ownuniversity NOUN
library NOUN
. PUNCT
  SPACE
You PRON
can AUX
obtain VERB
2,4-DNP NUM
by ADP
taking VERB
a DET
first ADJ
yearorganic NOUN
chemistry NOUN
lab NOUN
course NOUN
and CCONJ
swiping VERB
it PRON
from ADP
the DET
supplies NOUN
( PUNCT
it'sa PROPN
commonly ADV
- PUNCT
used VERB
reagent).Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59372From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
hypodermic ADJ
needleScientific NOUN
American PROPN
had AUX
a DET
nice ADJ
short ADJ
article NOUN
on ADP
the DET
history NOUN
of ADP
thehypodermic ADJ
about ADV
10 NUM
or CCONJ
15 NUM
years NOUN
ago ADV
. PUNCT
  SPACE
Prior ADV
to ADP
liquid NOUN
injectables NOUN
, PUNCT
there PRON
were AUX
paddle NOUN
- PUNCT
like ADJ
needles NOUN
used VERB
to PART
implant VERB
a DET
tiny ADJ
pill NOUN
under ADP
theskin NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59373From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1993Apr26.174538.1@vms.ocom.okstate.edu PROPN
> X
banschbach@vms.ocom.okstate.edu PROPN
writes:>oxygen(just INTJ
like INTJ
it PRON
does AUX
in ADP
the DET
vagina PROPN
) PUNCT
. PUNCT
  SPACE
As ADV
much ADJ
stuff NOUN
as SCONJ
there PRON
is AUX
in ADP
the DET
> X
lay NOUN
press NOUN
about ADP
L. PROPN
acidophilus NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
I PRON
'm AUX
really ADV
> X
amazed ADJ
that SCONJ
someone PRON
has AUX
not PART
done VERB
a DET
clinical ADJ
trial NOUN
yet ADV
to PART
check VERB
it PRON
out ADP
. PUNCT
I've PROPN
mentioned VERB
this DET
study NOUN
a DET
couple NOUN
of ADP
times NOUN
now ADV
: PUNCT
Ingestion NOUN
of ADP
yogurtcontaining VERB
Lactobacillus PROPN
acidophilus NOUN
as SCONJ
prophylaxis PROPN
for ADP
candidalvaginitis NOUN
, PUNCT
Annals PROPN
of ADP
Internal PROPN
Medicine PROPN
, PUNCT
3/1/92 NUM
116(5):353 NUM
- SYM
7 NUM
. PUNCT
  SPACE
Do AUX
youhave VERB
a DET
problem NOUN
with ADP
the DET
study NOUN
because SCONJ
they PRON
used VERB
yogurt PROPN
rather ADV
thancapsules NOUN
of ADP
lactobacillus NOUN
( PUNCT
even ADV
though SCONJ
it PRON
had AUX
positive ADJ
results)?The PROPN
study NOUN
was AUX
a DET
crossover NOUN
trial NOUN
of ADP
daily ADJ
ingestion NOUN
of ADP
8 NUM
ounces NOUN
ofyogurt NOUN
. PUNCT
  SPACE
There PRON
was AUX
a DET
marked ADJ
decrease NOUN
in ADP
infections NOUN
while SCONJ
women NOUN
wereingesting VERB
the DET
yogurt PROPN
. PUNCT
  SPACE
Problems NOUN
with ADP
the DET
study NOUN
included VERB
very ADV
smallnumbers NOUN
( PUNCT
33 NUM
patients NOUN
enrolled VERB
) PUNCT
and CCONJ
many ADJ
protocol NOUN
violations NOUN
( PUNCT
only21 PROPN
patients NOUN
were AUX
analyzed VERB
) PUNCT
. PUNCT
  SPACE
Still ADV
, PUNCT
the DET
difference NOUN
in ADP
rates NOUN
of ADP
infectionbetween NUM
the DET
two NUM
groups NOUN
was AUX
so ADV
large ADJ
that SCONJ
the DET
study NOUN
remains VERB
fairlybelievable.-- ADP
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59374From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Can AUX
men NOUN
get AUX
yeast NOUN
infections?My PUNCT
( PUNCT
then ADV
) PUNCT
wife NOUN
used VERB
to PART
get AUX
recurrent ADJ
yeast NOUN
infections NOUN
. PUNCT
One NUM
day NOUN
, PUNCT
herdoctor NOUN
sent VERB
her PRON
home NOUN
with ADP
medication NOUN
for ADP
her PRON
and CCONJ
a DET
pill NOUN
for ADP
me PRON
. PUNCT
I PRON
tookthe NOUN
pill NOUN
, PUNCT
upon SCONJ
her PRON
insistence NOUN
, PUNCT
and CCONJ
was AUX
very ADV
relieved VERB
the DET
next ADJ
day NOUN
when ADV
Ilooked VERB
it PRON
up ADP
in ADP
the DET
PDR PROPN
. PUNCT
It PRON
only ADV
RARELY NOUN
causes VERB
testicular ADJ
atrophy NOUN
... PUNCT
Anyway INTJ
, PUNCT
men NOUN
apparently ADV
do AUX
get AUX
yeast NOUN
infections NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59375From NUM
: PUNCT
wiesel-elisha@cs.yale.edu PROPN
( PUNCT
Elisha PROPN
Wiesel)Subject NUM
: PUNCT
INFO NOUN
: PUNCT
Colonics NOUN
and CCONJ
Purification?Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
coloncleansing VERB
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
Inparticular PROPN
, PUNCT
Dr. PROPN
Bernard PROPN
Jenssen PROPN
in ADP
his PRON
book NOUN
" PUNCT
Colon PROPN
Cleansing PROPN
forHealth PROPN
and CCONJ
Longevity PROPN
" PUNCT
-- PUNCT
the DET
title NOUN
actually ADV
escapes VERB
me PRON
, PUNCT
but CCONJ
it PRON
is AUX
verysimilar ADJ
to ADP
that DET
-- PUNCT
claims VERB
that SCONJ
regular ADJ
self NOUN
- PUNCT
administered VERB
colonics NOUN
, PUNCT
along ADP
with ADP
certain ADJ
orally ADV
ingested VERB
" PUNCT
debris NOUN
- PUNCT
loosening VERB
agents NOUN
" PUNCT
, PUNCT
booststhe NOUN
immune ADJ
system NOUN
to ADP
a DET
significant ADJ
degree NOUN
. PUNCT
He PRON
also ADV
plugs VERB
a DET
unique ADJ
appliance NOUN
called VERB
the DET
" PUNCT
Colema PROPN
Board PROPN
" PUNCT
, PUNCT
whichfacilitates VERB
the DET
self NOUN
- PUNCT
administration NOUN
of ADP
colonics NOUN
. PUNCT
  SPACE
It PRON
sells VERB
for ADP
over$100 PROPN
from ADP
a DET
California PROPN
- PUNCT
based VERB
company NOUN
. PUNCT
  SPACE
He PRON
also ADV
plugs VERB
Vitra PROPN
- PUNCT
Toxproducts PROPN
as SCONJ
his PRON
chemical ADJ
agents NOUN
of ADP
choice NOUN
: PUNCT
these DET
include VERB
volcanic ADJ
ash NOUN
, PUNCT
supposedly ADV
for ADP
its PRON
electrical ADJ
charge NOUN
, PUNCT
and CCONJ
psyllium NOUN
powder NOUN
, PUNCT
for ADP
itsbulkiness NOUN
. PUNCT
If SCONJ
anyone PRON
knows VERB
anything PRON
about ADP
colon NOUN
cleansing NOUN
theory NOUN
, PUNCT
itsparticulars NOUN
, PUNCT
or CCONJ
the DET
Colema PROPN
Board PROPN
and CCONJ
related ADJ
products NOUN
, PUNCT
I PRON
'd AUX
be AUX
veryinterested VERB
to PART
hear VERB
about ADP
research NOUN
and CCONJ
personal ADJ
experience NOUN
. PUNCT
This DET
article NOUN
is AUX
crossposted VERB
to ADP
alt.magick PROPN
as SCONJ
the DET
issue NOUN
touches VERB
uponfasting VERB
and CCONJ
cleansing VERB
through ADP
a DET
" PUNCT
ritual ADJ
" PUNCT
system NOUN
of ADP
purification.-- PROPN
Eli-- PROPN
/-------------------------------------------------------------------------\![wiesel@cs.yale.edu PUNCT
] PUNCT
Elisha PROPN
Wiesel PROPN
, PUNCT
Davenport PROPN
College PROPN
' PART
94 NUM
Yale PROPN
University PROPN
! PUNCT
    SPACE
! PUNCT
[ PUNCT
wiesel@minerva.cis.yale.edu PROPN
] PUNCT
( PUNCT
203 NUM
) PUNCT
436 NUM
- SYM
1338<-School NUM
( PUNCT
212 NUM
) PUNCT
371 NUM
- PUNCT
2756<-Home!\-------------------------------------------------------------------------/Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59376From NUM
: PUNCT
wiesel-elisha@yale.edu NUM
( PUNCT
Elisha PROPN
Wiesel)Subject NUM
: PUNCT
INFO NOUN
: PUNCT
Colonics NOUN
and CCONJ
Purification?Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
coloncleansing VERB
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
Inparticular PROPN
, PUNCT
Dr. PROPN
Bernard PROPN
Jenssen PROPN
in ADP
his PRON
book NOUN
" PUNCT
Colon PROPN
Cleansing PROPN
forHealth PROPN
and CCONJ
Longevity PROPN
" PUNCT
-- PUNCT
the DET
title NOUN
actually ADV
escapes VERB
me PRON
, PUNCT
but CCONJ
it PRON
is AUX
verysimilar ADJ
to ADP
that DET
-- PUNCT
claims VERB
that SCONJ
regular ADJ
self NOUN
- PUNCT
administered VERB
colonics NOUN
, PUNCT
along ADP
with ADP
certain ADJ
orally ADV
ingested VERB
" PUNCT
debris NOUN
- PUNCT
loosening VERB
agents NOUN
" PUNCT
, PUNCT
booststhe NOUN
immune ADJ
system NOUN
to ADP
a DET
significant ADJ
degree NOUN
. PUNCT
He PRON
also ADV
plugs VERB
a DET
unique ADJ
appliance NOUN
called VERB
the DET
" PUNCT
Colema PROPN
Board PROPN
" PUNCT
, PUNCT
whichfacilitates VERB
the DET
self NOUN
- PUNCT
administration NOUN
of ADP
colonics NOUN
. PUNCT
  SPACE
It PRON
sells VERB
for ADP
over$100 PROPN
from ADP
a DET
California PROPN
- PUNCT
based VERB
company NOUN
. PUNCT
  SPACE
He PRON
also ADV
plugs VERB
Vitra PROPN
- PUNCT
Toxproducts PROPN
as SCONJ
his PRON
chemical ADJ
agents NOUN
of ADP
choice NOUN
: PUNCT
these DET
include VERB
volcanic ADJ
ash NOUN
, PUNCT
supposedly ADV
for ADP
its PRON
electrical ADJ
charge NOUN
, PUNCT
and CCONJ
psyllium NOUN
powder NOUN
, PUNCT
for ADP
itsbulkiness NOUN
. PUNCT
If SCONJ
anyone PRON
knows VERB
anything PRON
about ADP
colon NOUN
cleansing NOUN
theory NOUN
, PUNCT
itsparticulars NOUN
, PUNCT
or CCONJ
the DET
Colema PROPN
Board PROPN
and CCONJ
related ADJ
products NOUN
, PUNCT
I PRON
'd AUX
be AUX
veryinterested VERB
to PART
hear VERB
about ADP
research NOUN
and CCONJ
personal ADJ
experience NOUN
. PUNCT
This DET
article NOUN
is AUX
crossposted VERB
to ADP
alt.magick PROPN
as SCONJ
the DET
issue NOUN
touches VERB
uponfasting VERB
and CCONJ
cleansing VERB
through ADP
a DET
" PUNCT
ritual ADJ
" PUNCT
system NOUN
of ADP
purification.-- PROPN
Eli-- PROPN
/-------------------------------------------------------------------------\![wiesel@cs.yale.edu PUNCT
] PUNCT
Elisha PROPN
Wiesel PROPN
, PUNCT
Davenport PROPN
College PROPN
' PART
94 NUM
Yale PROPN
University PROPN
! PUNCT
    SPACE
! PUNCT
[ PUNCT
wiesel@minerva.cis.yale.edu PROPN
] PUNCT
( PUNCT
203 NUM
) PUNCT
436 NUM
- SYM
1338<-School NUM
( PUNCT
212 NUM
) PUNCT
371 NUM
- PUNCT
2756<-Home!\-------------------------------------------------------------------------/Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59377From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu NUM
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
cats NOUN
and CCONJ
pregnancyIn PROPN
article NOUN
< X
1993Apr27.043035.22609@etl.go.jp NUM
> X
, PUNCT
klaus@ipri.go.jp PUNCT
( PUNCT
Klaus PROPN
Hofmann;(6663 PROPN
) PUNCT
) PUNCT
writes VERB
... PUNCT
>I NUM
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
which PRON
> X
can AUX
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
> X
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?The ADJ
disease NOUN
you PRON
are AUX
talking VERB
about ADP
is AUX
toxoplasmosis NOUN
. PUNCT
  SPACE
It PRON
is AUX
a DET
protozoan NOUN
that PRON
lives VERB
and CCONJ
multiplies NOUN
within ADP
cells NOUN
. PUNCT
  SPACE
In ADP
cats NOUN
, PUNCT
the DET
protozoan NOUN
multiplies NOUN
in ADP
theintestinal ADJ
cells NOUN
and CCONJ
eggs NOUN
are AUX
shed VERB
in ADP
the DET
cat NOUN
's PART
feces NOUN
. PUNCT
  SPACE
The DET
protozoa NOUN
cancross VERB
the DET
placenta NOUN
to PART
infect VERB
the DET
fetus NOUN
. PUNCT
  SPACE
The DET
disease NOUN
may AUX
be AUX
asymptomaticafter VERB
the DET
baby NOUN
is AUX
born VERB
, PUNCT
or CCONJ
it PRON
may AUX
be AUX
very ADV
severe ADJ
. PUNCT
  SPACE
Toxo PROPN
may AUX
cause VERB
blindnessand PROPN
mental ADJ
retardation NOUN
. PUNCT
Having VERB
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
; PUNCT
however ADV
, PUNCT
pregnantwomen NOUN
should AUX
not PART
scoop VERB
or CCONJ
change VERB
the DET
cat NOUN
's PART
litterbox NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
whoeverdoes NOUN
empty VERB
the DET
litterbox NOUN
should AUX
thoroughly ADV
wash VERB
his PRON
/ SYM
her PRON
hands NOUN
before ADP
handlinganything VERB
else ADV
, PUNCT
especially ADV
food NOUN
. PUNCT
Information NOUN
came VERB
from ADP
_ PROPN
The DET
Merck PROPN
Manual PROPN
, PUNCT
15th ADJ
Ed._I NOUN
hope VERB
this DET
information NOUN
is AUX
helpful ADJ
to ADP
you.Elisapicl25@fsphy1.physics.fsu.eduNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59378From NUM
: PUNCT
daniel@siemens.com X
. PUNCT
( PUNCT
Daniel PROPN
L. PROPN
Theivanayagam)Subject PROPN
: PUNCT
USMLE PROPN
( PUNCT
formerly ADV
National PROPN
Boards PROPN
) PUNCT
Part NOUN
1- NUM
Request NOUN
to ADP
Medical PROPN
StudentsThis PROPN
request NOUN
goes VERB
out ADP
to ADP
medical ADJ
students NOUN
who PRON
have AUX
doneor NOUN
are AUX
planning VERB
to PART
sit VERB
the DET
USMLE PROPN
( PUNCT
or CCONJ
National PROPN
Boards PROPN
) PUNCT
Part NOUN
1.My NUM
wife NOUN
is AUX
sitting VERB
this DET
examination NOUN
in ADP
early ADJ
June PROPN
this DET
year NOUN
and CCONJ
wouldlike VERB
to PART
have AUX
a DET
look NOUN
at ADP
some DET
old ADJ
National PROPN
Boards PROPN
, PUNCT
Part NOUN
1 NUM
questionsfound NOUN
in ADP
the DET
following VERB
books NOUN
. PUNCT
These DET
books NOUN
are AUX
currently ADV
out SCONJ
of ADP
print NOUN
. PUNCT
The DET
books NOUN
are:(1 NUM
) PUNCT
Retired VERB
NBME PROPN
Basic PROPN
Medical PROPN
Science PROPN
Test PROPN
Items PROPN
, PUNCT
NBME PROPN
; PUNCT
    SPACE
Published VERB
by ADP
NBME PROPN
in ADP
1991(2 NUM
) PUNCT
Self NOUN
- PUNCT
test NOUN
in ADP
the DET
Part PROPN
1 NUM
Basic PROPN
Medical PROPN
Sciences PROPN
, PUNCT
NBME PROPN
; PUNCT
    SPACE
Published VERB
by ADP
NBME PROPN
in ADP
1989I PROPN
would AUX
appreciate VERB
if SCONJ
anyone PRON
who PRON
has AUX
these DET
books NOUN
is AUX
willingto NOUN
loan VERB
it PRON
to ADP
her PRON
for ADP
a DET
couple NOUN
of ADP
days NOUN
. PUNCT
Obviously ADV
, PUNCT
I PRON
wouldreimburse VERB
for ADP
you PRON
all DET
postage VERB
and CCONJ
related ADJ
charges NOUN
. PUNCT
Failingthat ADP
it PRON
would AUX
be AUX
beneficial ADJ
if SCONJ
anyone PRON
could AUX
point VERB
to ADP
anylibrary NOUN
in ADP
the DET
NY PROPN
, PUNCT
NJ PROPN
or CCONJ
PA PROPN
area NOUN
that PRON
may AUX
have AUX
these DET
books NOUN
. PUNCT
Please INTJ
respond VERB
by ADP
e NOUN
- NOUN
mail NOUN
since SCONJ
I PRON
do AUX
not PART
read VERB
this DET
newsgroupregularly ADV
. PUNCT
Thanks NOUN
in ADP
advance NOUN
. PUNCT
Daniele ADJ
- PUNCT
mail NOUN
: PUNCT
daniel@learning.siemens.comNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59379From NUM
: PUNCT
giamomj@duvm.ocs.drexel.edu PROPN
( PUNCT
Mike PROPN
G.)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosNeed VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosIn NOUN
article NOUN
< X
C63yG5.8tH@cs.uiuc.edu NOUN
> X
Gunnar PROPN
Blix PROPN
, PUNCT
blix@milton.cs.uiuc.eduwrites:>I PROPN
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) NUM
pros NOUN
and CCONJ
> X
cons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
interested ADJ
in ADP
> NUM
references NOUN
to ADP
studies NOUN
that PRON
indicate VERB
disadvantages NOUN
or CCONJ
refute VERB
studies NOUN
> X
that PRON
indicate VERB
advantages NOUN
. PUNCT
  SPACE
A DET
friend NOUN
who PRON
is AUX
a DET
medical ADJ
student NOUN
is AUX
> X
writing VERB
a DET
survey NOUN
paper NOUN
, PUNCT
and CCONJ
apparently ADV
the DET
studies NOUN
she PRON
has AUX
run VERB
into ADP
> X
are AUX
all DET
for ADP
circumcision NOUN
, PUNCT
the DET
main ADJ
argument NOUN
being AUX
a DET
lower ADJ
risk NOUN
of ADP
> PROPN
penile PROPN
cancer.>>Please PROPN
email NOUN
responses NOUN
as SCONJ
I PRON
am AUX
not PART
a DET
frequent ADJ
reader NOUN
of ADP
either DET
group.>I PROPN
will AUX
summarize VERB
to ADP
the DET
net NOUN
. PUNCT
I'm PRON
very ADV
surprised VERB
that SCONJ
medical ADJ
schools NOUN
still ADV
push VERB
routine ADJ
circumcisionof NOUN
newborn ADJ
males NOUN
on ADP
the DET
population NOUN
. PUNCT
Since SCONJ
your PRON
friend NOUN
is AUX
not PART
a DET
man NOUN
, PUNCT
shecan't ADV
imagine VERB
what PRON
it PRON
's AUX
like ADJ
to PART
have AUX
a DET
penis NOUN
, PUNCT
much ADV
less ADJ
a DET
foreskin NOUN
. PUNCT
Iguess VERB
if SCONJ
American ADJ
medicine NOUN
did AUX
an DET
artistic ADJ
job NOUN
of ADP
circumcising VERB
everymale PROPN
, PUNCT
then ADV
the DET
visual ADJ
result NOUN
would AUX
be AUX
somewhat ADV
more ADV
natural ADJ
inappearance NOUN
... PUNCT
The DET
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
begoing VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journalor PROPN
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
oldJewish ADJ
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
thecancer NOUN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
likecrazy PROPN
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
alittle VERB
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung ADJ
up ADP
onthe DET
penis PROPN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADJ
likemastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basicallyunnecessary ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59380From NUM
: PUNCT
sjg@maths.warwick.ac.uk ADJ
( PUNCT
Susannah ADV
Gort)Subject NUM
: PUNCT
Allergies NOUN
and CCONJ
stuff NOUN
( PUNCT
Was AUX
: PUNCT
Is AUX
MSG NOUN
sensitivity NOUN
superstition NOUN
? PUNCT
) PUNCT
> X
UNLESS ADP
I PRON
plan VERB
on ADP
getting VERB
sick ADJ
- PUNCT
I PRON
wo AUX
n't PART
eat VERB
the DET
stuff NOUN
without ADP
my PRON
> X
Seldane PROPN
. PUNCT
  SPACE
And CCONJ
did AUX
I PRON
ever ADV
learn VERB
to PART
read VERB
labels NOUN
. PUNCT
> X
- PUNCT
it PRON
might AUX
not PART
please VERB
a DET
medical ADJ
researcher NOUN
- PUNCT
but CCONJ
it PRON
pleased VERB
my PRON
own ADJ
> X
personal ADJ
physician NOUN
enough ADV
for ADP
him PRON
to PART
give VERB
me PRON
allergy ADJ
medicine NOUN
  SPACE
-Allergy PROPN
medicine NOUN
, PUNCT
huh INTJ
? PUNCT
  SPACE
Is AUX
this DET
just ADV
to PART
get AUX
rid VERB
of ADP
the DET
resultant ADJ
migraine NOUN
orwhatever NOUN
, PUNCT
or CCONJ
does AUX
it PRON
actually ADV
suppress VERB
allergic ADJ
reactions NOUN
? PUNCT
( PUNCT
i.e. X
like SCONJ
anantihistamine NOUN
does AUX
? PUNCT
) PUNCT
  SPACE
As ADV
far ADV
as SCONJ
doctors NOUN
over ADV
here ADV
are AUX
concerned VERB
, PUNCT
if SCONJ
you PRON
slip VERB
upand PROPN
eat VERB
something PRON
you PRON
're AUX
allergic ADJ
to PART
( PUNCT
even ADV
if SCONJ
they PRON
wo AUX
n't PART
test VERB
you PRON
to PART
tell VERB
youwhat PRON
to PART
avoid VERB
) PUNCT
then ADV
tough ADJ
; PUNCT
if SCONJ
a DET
_ PROPN
cheap ADJ
_ PROPN
medicine NOUN
will AUX
alleviate VERB
your PRON
symptoms NOUN
, PUNCT
then ADV
fine ADV
, PUNCT
otherwise ADV
you PRON
just ADV
suffer VERB
. PUNCT
  SPACE
One NUM
doctor NOUN
did AUX
prescribe VERB
me PRON
imigran PROPN
( PUNCT
coststhe NOUN
NHS PROPN
# SYM
48 NUM
for ADP
6 NUM
tablets NOUN
) PUNCT
after ADP
having VERB
to PART
rehydrate VERB
me PRON
because SCONJ
I PRON
'd AUX
been AUX
throwingup NOUN
for ADP
four NUM
solid ADJ
days NOUN
and CCONJ
could AUX
n't PART
even ADV
drink VERB
water NOUN
- PUNCT
but CCONJ
I PRON
got VERB
taken VERB
off ADP
itagain NOUN
when ADV
I PRON
moved VERB
and CCONJ
had AUX
to PART
change VERB
doctors NOUN
. PUNCT
  SPACE
Reasoning NOUN
: PUNCT
they PRON
did AUX
not PART
know VERB
whatthe NOUN
side NOUN
- PUNCT
effects NOUN
were AUX
because SCONJ
it PRON
was AUX
new ADJ
. PUNCT
  SPACE
OK INTJ
, PUNCT
fine ADV
- PUNCT
but CCONJ
it PRON
has AUX
passed VERB
thesafety NOUN
tests NOUN
to PART
get AUX
on ADP
the DET
prescription NOUN
list NOUN
, PUNCT
and CCONJ
anyway INTJ
I PRON
was AUX
prepared ADJ
to PART
takethe VERB
risk NOUN
to PART
have AUX
quality NOUN
of ADP
life NOUN
now ADV
. PUNCT
  SPACE
The DET
only ADJ
alternatives NOUN
I PRON
have AUX
is AUX
to PART
get AUX
itprescribed VERB
privately ADV
, PUNCT
which PRON
I PRON
can AUX
not PART
afford VERB
, PUNCT
or CCONJ
to PART
pay VERB
a DET
private ADJ
allergyspecialist NOUN
to PART
test VERB
me PRON
and CCONJ
tell VERB
me PRON
what PRON
to PART
avoid VERB
. PUNCT
  SPACE
I PRON
am AUX
fairly ADV
certain ADJ
I PRON
amallergic VERB
to ADP
more ADJ
than SCONJ
one NUM
chemical NOUN
additive ADJ
, PUNCT
as SCONJ
a DET
lot NOUN
of ADP
things NOUN
I PRON
ca AUX
n't PART
eat VERB
havenothing VERB
in ADP
common ADJ
except SCONJ
things NOUN
I PRON
know VERB
are AUX
safe ADJ
, PUNCT
so CCONJ
testing VERB
myself PRON
is AUX
n't PART
reallyan ADJ
option NOUN
; PUNCT
there PRON
are AUX
too ADV
many ADJ
permutations NOUN
. PUNCT
> X
I PRON
'm AUX
not PART
saying VERB
I PRON
NEVER ADV
consume VERB
ANYTHING NOUN
with ADP
MSG PROPN
. PUNCT
  SPACE
I PRON
've AUX
noticed VERB
that SCONJ
I PRON
> X
have AUX
a DET
certain ADJ
tolerance NOUN
level NOUN
- PUNCT
like SCONJ
a DET
( PUNCT
small ADJ
) PUNCT
bag NOUN
of ADP
bbq ADJ
chips NOUN
once ADV
> X
a DET
month NOUN
or CCONJ
so ADV
it PRON
not PART
a DET
problem NOUN
- PUNCT
but CCONJ
that DET
same ADJ
bag NOUN
of ADP
chips NOUN
will AUX
> X
bother VERB
me PRON
if SCONJ
I PRON
also ADV
had AUX
chicken NOUN
bouillon NOUN
yesterday NOUN
and CCONJ
lunch NOUN
at ADP
one NUM
of ADP
> X
the DET
Chinese ADJ
restaurants NOUN
the DET
day NOUN
before ADV
. PUNCT
  SPACE
Yes INTJ
, PUNCT
I PRON
've AUX
noticed VERB
that SCONJ
- PUNCT
and CCONJ
I PRON
can AUX
work VERB
it PRON
up ADP
by ADP
eating VERB
just ADV
under ADP
the DET
tolerancelevel NOUN
fairly ADV
regularly ADV
. PUNCT
  SPACE
If SCONJ
I PRON
do AUX
n't PART
eat VERB
anything PRON
except SCONJ
home NOUN
cooking NOUN
for ADP
a DET
monthor NOUN
so ADV
I PRON
lose VERB
it PRON
and CCONJ
have AUX
to PART
work VERB
it PRON
up ADP
from ADP
scratch NOUN
... PUNCT
a DET
bad ADJ
experience NOUN
. PUNCT
  SPACE
Now ADV
Iknow VERB
what PRON
the DET
early ADV
- PUNCT
warning NOUN
symptoms NOUN
are AUX
, PUNCT
though ADV
, PUNCT
I PRON
can AUX
usually ADV
tell VERB
whether SCONJ
I PRON
amallergic VERB
to ADP
food NOUN
before ADP
I PRON
've AUX
eaten VERB
too ADV
much ADJ
of ADP
it PRON
... PUNCT
usually ADV
... PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59381From NUM
: PUNCT
kryan@stein.u.washington.edu PROPN
( PUNCT
Kerry PROPN
Ryan)Subject PROPN
: PUNCT
looking VERB
for ADP
info NOUN
on ADP
kemotherapy(sp?)Hello PROPN
, PUNCT
a DET
friend NOUN
is AUX
under ADP
going VERB
kemotherapy(sp PROPN
? PUNCT
) PUNCT
for ADP
breast NOUN
cancer NOUN
. PUNCT
I'mtrying VERB
to PART
learn VERB
what PRON
I PRON
can AUX
about ADP
it PRON
. PUNCT
Any DET
info NOUN
would AUX
be AUX
appreciated VERB
. PUNCT
Thanks NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59382From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:=In VERB
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:=>Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
= PUNCT
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It=>involves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the=>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well=>with ADJ
inanimate ADJ
objects.==True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this="corona X
discharge"?Yup ADJ
. PUNCT
  SPACE
The DET
demonstration NOUN
to PART
which PRON
you PRON
refer VERB
consists NOUN
of ADP
placing VERB
a DET
leaf NOUN
betweenthe NOUN
plates NOUN
, PUNCT
and CCONJ
taking VERB
a DET
Kirlian ADJ
photograph NOUN
of ADP
it PRON
. PUNCT
  SPACE
You PRON
then ADV
cut VERB
off ADP
part NOUN
ofthe NOUN
leaf NOUN
, PUNCT
put VERB
the DET
top ADJ
plate NOUN
back ADV
on ADV
, PUNCT
and CCONJ
take VERB
another DET
Kirlian ADJ
photograph NOUN
. PUNCT
  SPACE
Yousee PROPN
pretty ADV
much ADV
the DET
same ADJ
image NOUN
in ADP
both DET
cases NOUN
. PUNCT
  SPACE
Turns VERB
out ADP
the DET
effect NOUN
isn'tnearly ADV
so ADV
striking ADJ
if SCONJ
you PRON
take VERB
the DET
trouble NOUN
to PART
clean VERB
the DET
plates NOUN
betweenphotographs NOUN
. PUNCT
  SPACE
Seems VERB
that SCONJ
the DET
moisture NOUN
from ADP
the DET
leaf NOUN
that PRON
you PRON
left VERB
on ADP
the DET
placeconducts NOUN
electricity NOUN
. PUNCT
  SPACE
Surprise PROPN
, PUNCT
surprise!--------------------------------------------------------------------------------Carl PROPN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59383From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
etxmow.735561695@garboc29 PROPN
> X
etxmow@garbo.ericsson.se PROPN
( PUNCT
Mats PROPN
Winberg PROPN
) PUNCT
writes VERB
: PUNCT
> X
   SPACE
Is AUX
n't PART
there PRON
a DET
relatively ADV
new ADJ
treatment NOUN
for ADP
kidney NOUN
stones NOUN
involving VERB
> X
   SPACE
a DET
non ADJ
- ADJ
invasive ADJ
use NOUN
of ADP
ultra ADJ
- ADJ
sound ADJ
where ADV
the DET
patient NOUN
is AUX
lowered VERB
> X
   SPACE
into ADP
some DET
sort NOUN
of ADP
liquid NOUN
when ADV
he PRON
/ SYM
she PRON
undergoes VERB
treatment NOUN
? PUNCT
I PRON
'm AUX
sure ADJ
> X
   SPACE
I PRON
've AUX
read VERB
about ADP
it PRON
somewhere ADV
. PUNCT
If SCONJ
I PRON
remember VERB
it PRON
correctly ADV
it PRON
is AUX
a DET
> X
   SPACE
painless ADJ
and CCONJ
effective ADJ
treatment NOUN
. PUNCT
> X
   SPACE
A DET
couple NOUN
of ADP
weeks NOUN
ago ADV
I PRON
visited VERB
a DET
hospital NOUN
here ADV
in ADP
Stockholm PROPN
and CCONJ
> X
   SPACE
saw VERB
big ADJ
signs NOUN
showing VERB
the DET
way NOUN
to ADP
the DET
" PUNCT
Kidney PROPN
stone NOUN
chrusher NOUN
" PUNCT
... PUNCT
I PRON
saw VERB
this DET
a DET
few ADJ
years NOUN
ago ADV
on ADP
" PUNCT
Tomorrow PROPN
's PART
World NOUN
" PUNCT
( PUNCT
low ADJ
- PUNCT
brow NOUN
BBCtechnology NOUN
news NOUN
program NOUN
) PUNCT
. PUNCT
  SPACE
The DET
patient NOUN
is AUX
lowered VERB
into ADP
a DET
bath ADJ
ofde NOUN
- PUNCT
ionized VERB
water NOUN
and CCONJ
carefully ADV
positioned VERB
. PUNCT
  SPACE
High ADJ
intensity NOUN
pressurewaves NOUN
are AUX
generated VERB
by ADP
an DET
electric ADJ
spark NOUN
in ADP
the DET
water NOUN
( PUNCT
you PRON
do AUX
n't PART
getelectrocuted VERB
because SCONJ
de PROPN
- ADJ
ionised VERB
water NOUN
does AUX
not PART
conduct VERB
) PUNCT
. PUNCT
  SPACE
These DET
waves NOUN
arefocused VERB
on ADP
the DET
kidneys NOUN
by ADP
a DET
parabolic NOUN
reflector NOUN
and CCONJ
cause VERB
the DET
stone NOUN
tobreak VERB
up ADP
. PUNCT
  SPACE
This DET
is AUX
completely ADV
painless ADJ
. PUNCT
Of ADV
course ADV
, PUNCT
you PRON
then ADV
have AUX
to PART
get AUX
these DET
little ADJ
bits NOUN
of ADP
gravel NOUN
throughthe PROPN
urethra PROPN
. PUNCT
  SPACE
Ouch!Paul.-- PROPN
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59384From NUM
: PUNCT
hd0022@albnyvms.bitnet PROPN
( PUNCT
Chip NOUN
Dunham)Subject NUM
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyIn PROPN
article NOUN
< X
westesC60xqF.59r@netcom.com PROPN
> PROPN
, PUNCT
westes@netcom.com X
( PUNCT
Will AUX
Estes NOUN
) PUNCT
writes:>Does VERB
anyone PRON
know VERB
of ADP
research NOUN
done VERB
on ADP
the DET
use NOUN
of ADP
haldol NOUN
in ADP
the DET
elderly ADJ
? PUNCT
  SPACE
Does AUX
> X
short ADJ
- PUNCT
term NOUN
use NOUN
of ADP
the DET
drug NOUN
ever ADV
produce VERB
long ADJ
- PUNCT
term NOUN
side NOUN
- PUNCT
effects NOUN
after ADP
> X
the DET
use NOUN
of ADP
the DET
drug NOUN
? PUNCT
  SPACE
My PRON
grandmother NOUN
recently ADV
had AUX
to PART
be AUX
hospitalized VERB
> X
and CCONJ
was AUX
given VERB
large ADJ
doses NOUN
of ADP
haldol NOUN
for ADP
several ADJ
weeks NOUN
. PUNCT
  SPACE
Although SCONJ
the DET
> X
drug NOUN
has AUX
been AUX
terminated VERB
, PUNCT
she PRON
has AUX
changed VERB
from ADP
a DET
perky NOUN
, PUNCT
slightly ADV
> X
senile ADJ
woman NOUN
into ADP
a DET
virtual ADJ
vegetable NOUN
who PRON
does AUX
not PART
talk VERB
to ADP
anyone PRON
> X
and CCONJ
who PRON
can AUX
not PART
even ADV
eat VERB
or CCONJ
brush VERB
her PRON
teeth NOUN
without ADP
assistance NOUN
. PUNCT
  SPACE
It PRON
> X
seems VERB
incredible ADJ
to ADP
me PRON
that SCONJ
such ADJ
changes NOUN
could AUX
take VERB
place NOUN
in ADP
the DET
> X
course NOUN
of ADP
just ADV
one NUM
and CCONJ
one NUM
- PUNCT
half NOUN
months NOUN
. PUNCT
  SPACE
I PRON
have AUX
to PART
believe VERB
that SCONJ
the DET
> X
combination NOUN
of ADP
the DET
hospital NOUN
stay NOUN
and CCONJ
some DET
drug(s PROPN
) PUNCT
are AUX
in ADP
part NOUN
> X
catalysts NOUN
for ADP
this DET
. PUNCT
  SPACE
Any DET
comments?>>-- NOUN
> X
Will AUX
Estes VERB
		 SPACE
Internet NOUN
: PUNCT
westes@netcom.comHaldol PROPN
, PUNCT
one NUM
of ADP
the DET
wonder NOUN
drugs NOUN
that PRON
works VERB
wonders NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
're AUX
a DET
carrot NOUN
thatis.***************************************************************************Henry PUNCT
Dunham PROPN
( PUNCT
Chip PROPN
) PUNCT
EMT PROPN
- PUNCT
D PROPN
, PUNCT
NREMTCoordinator NOUN
of ADP
EMS PROPN
OperationsHouston PROPN
Field PROPN
House PROPN
EMSHD0022@albnyvms.bitnet***************************************************************************Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59385From NUM
: PUNCT
westes@netcom.com X
( PUNCT
Will AUX
Estes)Subject VERB
: PUNCT
Re ADP
: PUNCT
Use NOUN
of ADP
haldol NOUN
in ADP
elderlyLawrence NOUN
Curcio PROPN
( PUNCT
lc2b+@andrew.cmu.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
I PRON
've AUX
seen VERB
people NOUN
in ADP
their PRON
forties NOUN
and CCONJ
fifties NOUN
become VERB
disoriented ADJ
and CCONJ
: PUNCT
demented VERB
during ADP
hospital NOUN
stays NOUN
. PUNCT
In ADP
the DET
examples NOUN
I PRON
've AUX
seen VERB
, PUNCT
drugs NOUN
were AUX
: PUNCT
definitely ADV
involved ADJ
. PUNCT
: PUNCT
My PRON
own ADJ
father NOUN
turned VERB
into ADP
a DET
vegetable NOUN
for ADP
a DET
short ADJ
time NOUN
while SCONJ
in ADP
the DET
: PUNCT
hospital NOUN
. PUNCT
He PRON
was AUX
fifty NUM
- PUNCT
three NUM
at ADP
the DET
time NOUN
, PUNCT
and CCONJ
he PRON
was AUX
on ADP
21 NUM
separate ADJ
: PUNCT
medications NOUN
. PUNCT
The DET
family NOUN
protested VERB
, PUNCT
but CCONJ
the DET
doctors NOUN
were AUX
adamant ADJ
, PUNCT
telling VERB
: PUNCT
us PRON
that SCONJ
none NOUN
of ADP
the DET
drugs NOUN
interact VERB
. PUNCT
They PRON
even ADV
took VERB
the DET
attitude NOUN
that PRON
, PUNCT
if SCONJ
: PUNCT
he PRON
was AUX
disoriented VERB
, PUNCT
they PRON
should AUX
put VERB
him PRON
on ADP
something PRON
else ADV
as ADV
well ADV
! PUNCT
With ADP
: PUNCT
the DET
help NOUN
of ADP
an DET
MD PROPN
friend NOUN
of ADP
the DET
family NOUN
, PUNCT
we PRON
had AUX
all DET
his PRON
medication NOUN
: PUNCT
discontinued VERB
. PUNCT
He PRON
had AUX
a DET
seizure NOUN
that DET
night NOUN
, PUNCT
and CCONJ
was AUX
put VERB
back ADV
on ADP
one NUM
drug NOUN
. PUNCT
: PUNCT
Two NUM
days NOUN
later ADV
, PUNCT
he PRON
was AUX
his PRON
old ADJ
self NOUN
again ADV
. PUNCT
I PRON
guess VERB
there PRON
are AUX
n't PART
many ADJ
: PUNCT
medical ADJ
texts NOUN
that PRON
address VERB
the DET
subject NOUN
of ADP
21-way NUM
interactions NOUN
. PUNCT
I PRON
saw VERB
the DET
same ADJ
thing NOUN
happen VERB
to ADP
my PRON
father NOUN
, PUNCT
and CCONJ
I PRON
can AUX
more ADV
or CCONJ
less ADV
validate ADJ
yourtake NOUN
on ADP
hospitals NOUN
. PUNCT
  SPACE
It PRON
seems VERB
to ADP
me PRON
that SCONJ
medical ADJ
science NOUN
understands VERB
preciouslittle NOUN
about ADP
taking VERB
care NOUN
of ADP
the DET
human ADJ
machine NOUN
. PUNCT
  SPACE
Drugs NOUN
are AUX
given VERB
as SCONJ
aresponse ADJ
to ADP
symptoms NOUN
( PUNCT
and CCONJ
I PRON
guess VERB
that DET
makes VERB
sense NOUN
since SCONJ
all DET
the DET
studies NOUN
that PRON
validate VERB
the DET
effectiveness NOUN
of ADP
those DET
drugs NOUN
are AUX
based VERB
on ADP
a DET
narrowassessment NOUN
of ADP
the DET
degree NOUN
of ADP
particular ADJ
symptoms NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
there PRON
seemsto NOUN
be AUX
very ADV
little ADJ
appreciation NOUN
for ADP
the DET
well NOUN
- PUNCT
being NOUN
of ADP
a DET
personoutside NOUN
of ADP
the DET
numbers NOUN
that PRON
appear VERB
on ADP
a DET
test NOUN
. PUNCT
  SPACE
I PRON
watched VERB
my PRON
dadwither NOUN
away ADV
and CCONJ
lose VERB
huge ADJ
amounts NOUN
of ADP
body NOUN
fat NOUN
and CCONJ
muscles NOUN
tissuewhile NOUN
in ADP
the DET
hospital NOUN
. PUNCT
  SPACE
There PRON
is AUX
something PRON
a DET
little ADJ
crazy ADJ
about ADP
asystem NOUN
in ADP
which PRON
there PRON
is AUX
more ADJ
attention NOUN
paid VERB
to ADP
giving VERB
you PRON
everylatest ADJ
drug NOUN
available ADJ
than SCONJ
there PRON
is AUX
attention NOUN
paid VERB
to ADP
whether SCONJ
youhave PROPN
had AUX
enough ADJ
to PART
eat VERB
to PART
prevent VERB
loss NOUN
of ADP
muscle NOUN
tissue NOUN
. PUNCT
  SPACE
It PRON
isreally ADV
, PUNCT
really ADV
bizarre ADJ
. PUNCT
    SPACE
-- PUNCT
Will AUX
Estes NOUN
		 SPACE
Internet NOUN
: PUNCT
westes@netcom.comNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59386From NUM
: PUNCT
matthews@Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?All PROPN
right ADV
, PUNCT
listen VERB
up ADP
.... PUNCT
  SPACE
What PRON
are AUX
the DET
possibilities NOUN
of ADP
transmission NOUN
throughswimming VERB
pool NOUN
water NOUN
? PUNCT
  SPACE
Especially ADV
if SCONJ
the DET
chlorination NOUN
is AUX
n't PART
up ADP
to ADP
par?I've VERB
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
whatelse ADV
is AUX
going VERB
on?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59387From NUM
: PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyFLAME PROPN
ONReading PROPN
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)photography NOUN
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
thenarrow NOUN
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
ormeasure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADV
there ADV
. PUNCT
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
toso NOUN
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
justas NOUN
likely ADJ
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
bequite VERB
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
I PRON
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
tosomething NOUN
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frameof ADJ
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists NOUN
, PUNCT
were AUX
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
Especially ADV
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
notdrop NOUN
off ADP
the DET
edge NOUN
of ADP
the DET
earth NOUN
. PUNCT
FLAME PROPN
OFF PROPN
, PUNCT
or CCONJ
end NOUN
sermon NOUN
: PUNCT
-)-- PUNCT
AlexNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59388From NUM
: PUNCT
pyan@ehd.hwc.ca X
( PUNCT
Ping PROPN
Yan)Subject NOUN
: PUNCT
What PRON
is AUX
the DET
medical ADJ
term NOUN
for ADP
this DET
sensation?Dear PROPN
Netters PROPN
: PUNCT
Maybe ADV
one NUM
of ADP
you PRON
can AUX
explain VERB
this DET
. PUNCT
  SPACE
From ADP
time NOUN
to ADP
time NOUN
I PRON
experience VERB
a DET
strange ADJ
kind NOUN
of ADP
feeling NOUN
( PUNCT
I PRON
have AUX
all DET
kinds NOUN
of ADP
weird ADJ
feelings NOUN
) PUNCT
which PRON
can AUX
be AUX
best ADV
described VERB
as SCONJ
the DET
feeling NOUN
of ADP
" PUNCT
losing VERB
gravity NOUN
" PUNCT
, PUNCT
like SCONJ
that DET
one NUM
experiences VERB
in ADP
a DET
descending VERB
elevator NOUN
. PUNCT
  SPACE
Needless ADJ
to PART
say VERB
, PUNCT
it PRON
is AUX
not PART
enjoyable ADJ
. PUNCT
  SPACE
It PRON
sometimes ADV
comes VERB
with ADP
shortness NOUN
of ADP
breath NOUN
and CCONJ
extreme ADJ
fatigue NOUN
. PUNCT
  SPACE
It PRON
lasts VERB
from ADP
a DET
few ADJ
minutes NOUN
to ADP
an DET
hour NOUN
and CCONJ
when ADV
it PRON
lasts VERB
that SCONJ
long ADV
, PUNCT
it PRON
makes VERB
me PRON
sweatening VERB
. PUNCT
Initially ADV
I PRON
called VERB
it PRON
" PUNCT
palpitation NOUN
( PUNCT
spelling NOUN
? PUNCT
) PUNCT
" PUNCT
until ADP
I PRON
later ADV
learnt VERB
that SCONJ
the DET
terminology NOUN
has AUX
been AUX
reserved VERB
for ADP
the DET
self NOUN
- PUNCT
awareness NOUN
of ADP
heart NOUN
beats NOUN
. PUNCT
So ADV
, PUNCT
is AUX
there PRON
a DET
specific ADJ
term NOUN
for ADP
this DET
feeling NOUN
, PUNCT
or CCONJ
am AUX
I PRON
a DET
stragne NOUN
person?I VERB
always ADV
believe VERB
I PRON
am AUX
unique ADJ
. PUNCT
Thanks NOUN
. PUNCT
PingNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59389From NUM
: PUNCT
groleau@e7sa.crd.ge.com X
( PUNCT
Wes PROPN
Groleau PROPN
X7574)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Discussions NOUN
on ADP
alt.psychoactivesRe PROPN
: PUNCT
serious ADJ
discussion NOUN
about ADP
drugs NOUN
vs. ADP
" PUNCT
Where ADV
can AUX
I PRON
get AUX
a DET
good ADJ
bong NOUN
, PUNCT
man?"Why PROPN
not PART
have AUX
the DET
group NOUN
moderated VERB
? PUNCT
  SPACE
That DET
would AUX
eliminate VERB
some DET
of ADP
the DET
idiots NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59390Subject NUM
: PUNCT
Vasectomy NOUN
: PUNCT
Health PROPN
Effects PROPN
on ADP
Women?From NOUN
: PUNCT
eskagerb@nermal.santarosa.edu NUM
( PUNCT
Eric PROPN
Skagerberg)Does VERB
anyone PRON
know VERB
of ADP
any DET
studies NOUN
done VERB
on ADP
the DET
long ADJ
- PUNCT
term NOUN
health NOUN
effects NOUN
of ADP
aman PROPN
's PART
vasectomy NOUN
on ADP
his PRON
female ADJ
partner?I've NOUN
seen VERB
plenty NOUN
of ADP
study NOUN
results NOUN
about ADP
vasectomy PROPN
's PART
effects NOUN
on ADP
men NOUN
's PART
health NOUN
, PUNCT
but CCONJ
what PRON
about ADP
women NOUN
? PUNCT
For ADP
example NOUN
, PUNCT
might AUX
the DET
wife NOUN
of ADP
a DET
vasectomized VERB
man NOUN
become VERB
more ADV
at ADP
risk NOUN
for ADP
, PUNCT
say INTJ
, PUNCT
cervical ADJ
cancer NOUN
? PUNCT
  SPACE
Adverse ADJ
effects NOUN
from ADP
sperm NOUN
antibodies NOUN
? PUNCT
  SPACE
Changes NOUN
in ADP
thevagina PROPN
's PART
pH NOUN
? PUNCT
  SPACE
Yeast NOUN
or CCONJ
bacterial ADJ
infections?Outside NOUN
of ADP
study NOUN
results NOUN
, PUNCT
how ADV
about ADP
informed ADJ
speculation?Thanks NOUN
in ADP
advance NOUN
for ADP
your PRON
help!--Eric ADJ
Skagerberg PROPN
        SPACE
< X
eskagerb@nermal.santarosa.edu>Santa PROPN
Rosa PROPN
, PUNCT
California PROPN
        SPACE
Telephone PROPN
( PUNCT
707 NUM
) PUNCT
573 NUM
- PUNCT
1460Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59391From NUM
: PUNCT
lipofsky@zach.fit.edu PROPN
( PUNCT
Judy PROPN
Lipofsky PROPN
( PUNCT
ACS))Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org NUM
> X
gpivar@mitre.org(The PROPN
Pancake PROPN
Emporium PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:>| PUNCT
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>| PUNCT
> X
> X
| CCONJ
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
>| PROPN
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow>| VERB
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking>| NOUN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for>| PROPN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly>| PROPN
> X
> X
appreciated.>| PROPN
> X
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
> X
| CCONJ
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.>| PROPN
> X
> X
| CCONJ
> X
Bill PROPN
from ADP
oz>| PROPN
> X
> X
> X
> X
Bill,>No PROPN
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian ADJ
> PROPN
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,>it PROPN
takes VERB
pictures NOUN
of ADP
your PRON
aura.>| NOUN
> X
> X
> X
-- PUNCT
> X
Greg PROPN
> X
> X
-- PUNCT
  SPACE
Be AUX
still ADV
, PUNCT
be AUX
silent ADJ
... PUNCT
the DET
rest NOUN
is AUX
easy ADJ
. PUNCT
  SPACE
--Dear PROPN
Bill PROPN
, PUNCT
I PRON
think VERB
you PRON
forgot VERB
the DET
smileys NOUN
. PUNCT
  SPACE
SOME DET
of ADP
us PRON
got VERB
the DET
joke!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59392From NUM
: PUNCT
jhsu@Xenon PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Jeffrey PROPN
H. PROPN
Hsu)Subject X
: PUNCT
Re ADP
: PUNCT
Med NOUN
school NOUN
admissionI'm ADP
a DET
fellow ADJ
applicant NOUN
and CCONJ
my PRON
situation NOUN
is AUX
not PART
too ADV
much ADV
better ADJ
. PUNCT
  SPACE
I PRON
appliedto VERB
about ADV
20 NUM
schools NOUN
, PUNCT
got VERB
two NUM
interviews NOUN
, PUNCT
got VERB
one NUM
offer NOUN
, PUNCT
and CCONJ
am AUX
waiting VERB
tohear NOUN
from ADP
the DET
other ADJ
school NOUN
. PUNCT
Let VERB
me PRON
be AUX
honest ADJ
about ADP
my PRON
experiences NOUN
and CCONJ
impressions NOUN
about ADP
the DET
medicalschool NOUN
admissions NOUN
process NOUN
. PUNCT
  SPACE
Numbers PROPN
( PUNCT
GPA PROPN
, PUNCT
MCATs PROPN
) PUNCT
are AUX
not PART
everything PRON
, PUNCT
but CCONJ
they PRON
are AUX
probably ADV
more ADV
important ADJ
than SCONJ
anything PRON
else ADV
. PUNCT
  SPACE
In ADP
fact NOUN
, PUNCT
someschools VERB
screen VERB
out ADP
applicants NOUN
based VERB
on ADP
these DET
numbers NOUN
and CCONJ
never ADV
even ADV
lookat VERB
your PRON
other ADJ
qualities NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
when ADV
this DET
happens VERB
, PUNCT
do AUX
n't PART
expect VERB
a DET
refundon NOUN
your PRON
$ SYM
50 NUM
application NOUN
fee NOUN
. PUNCT
But CCONJ
, PUNCT
the DET
fact NOUN
that SCONJ
you PRON
got VERB
four NUM
interviews NOUN
tells VERB
me PRON
that SCONJ
you PRON
have AUX
the DET
numbersand NOUN
are AUX
very ADV
well ADV
qualified ADJ
academically ADV
. PUNCT
  SPACE
You PRON
mentioned VERB
one NUM
response NOUN
, PUNCT
was AUX
itan PROPN
acceptance NOUN
, PUNCT
denial NOUN
, PUNCT
or CCONJ
wait NOUN
- PUNCT
list NOUN
? PUNCT
  SPACE
If SCONJ
I PRON
assume VERB
the DET
worst ADJ
, PUNCT
that SCONJ
it PRON
was AUX
adenial ADJ
, PUNCT
then ADV
you PRON
still ADV
have AUX
a DET
great ADJ
probability NOUN
of ADP
acceptance NOUN
somewhere ADV
. PUNCT
  SPACE
Howdid VERB
your PRON
interviews NOUN
go?As PROPN
for ADP
how ADV
long ADV
you PRON
have AUX
to PART
wait VERB
, PUNCT
I PRON
've AUX
called VERB
a DET
few ADJ
schools NOUN
who PRON
never ADV
contactedme VERB
for ADP
anything PRON
. PUNCT
  SPACE
Many ADJ
of ADP
them PRON
told VERB
me PRON
that SCONJ
the DET
interview NOUN
season NOUN
for ADP
them PRON
wasover ADV
and CCONJ
that SCONJ
if SCONJ
I PRON
have AUX
n't PART
heard VERB
by ADP
now ADV
, PUNCT
I PRON
can AUX
assume VERB
a DET
denial NOUN
. PUNCT
  SPACE
Many ADJ
rejectionletters NOUN
are AUX
not PART
sent VERB
out ADP
until ADP
May PROPN
or CCONJ
as ADV
late ADV
as SCONJ
June PROPN
. PUNCT
  SPACE
But CCONJ
some DET
schools NOUN
arestill VERB
interviewing VERB
. PUNCT
I PRON
really ADV
do AUX
n't PART
think VERB
you PRON
should AUX
worry VERB
. PUNCT
  SPACE
Do AUX
n't PART
becomefixated VERB
on ADP
the DET
mailbox NOUN
, PUNCT
go VERB
out ADP
, PUNCT
have AUX
fun NOUN
, PUNCT
be AUX
very ADV
proud ADJ
of ADP
yourself PRON
. PUNCT
What PRON
do AUX
people NOUN
think VERB
of ADP
the DET
medical ADJ
school NOUN
admissions NOUN
process NOUN
? PUNCT
  SPACE
I PRON
had AUX
a DET
verymediocre ADJ
GPA PROPN
, PUNCT
but CCONJ
high ADJ
MCAT ADJ
scores NOUN
, PUNCT
and CCONJ
I PRON
have AUX
been AUX
working VERB
as SCONJ
a DET
softwareengineer NOUN
for ADP
two NUM
years NOUN
. PUNCT
  SPACE
I PRON
majored VERB
in ADP
Computer PROPN
Science PROPN
at ADP
Stanford PROPN
. PUNCT
  SPACE
Still ADV
, PUNCT
I PRON
think VERB
the DET
profile NOUN
of ADP
the DET
person NOUN
who PRON
has AUX
the DET
best ADJ
chance NOUN
of ADP
getting VERB
admittedis PROPN
something PRON
like SCONJ
this DET
: PUNCT
VERY ADJ
IMPORTANT--------------GPA PROPN
: PUNCT
	 SPACE
3.5 NUM
or CCONJ
betterMCAT NOUN
: PUNCT
   SPACE
top ADJ
15 NUM
% NOUN
in ADP
all DET
subjectMEDIUM NUM
IMPORTANCE-----------------Writing PROPN
/ SYM
Speaking VERB
abilityMaturityMotivation PROPN
for ADP
going VERB
into ADP
medicineActivitiesLESS ADJ
IMPORTANT--------------College NOUN
or CCONJ
UniversityMajorWork PROPN
experienceAnything VERB
else ADV
you PRON
want VERB
them PRON
to ADP
knowAnyway PROPN
, PUNCT
you PRON
are AUX
in ADP
good ADJ
shape NOUN
. PUNCT
  SPACE
I PRON
think VERB
admissions NOUN
committees NOUN
are AUX
bound VERB
inmany ADJ
ways NOUN
by ADP
the DET
numbers NOUN
, PUNCT
but CCONJ
would AUX
like VERB
very ADV
much ADV
to PART
understand VERB
eachperson PROPN
as SCONJ
an DET
individual NOUN
. PUNCT
  SPACE
Sometimes ADV
that DET
s VERB
just ADV
not PART
practical ADJ
. PUNCT
  SPACE
But CCONJ
getting VERB
four NUM
interviews NOUN
is AUX
an DET
indicator NOUN
that PRON
you PRON
have AUX
the DET
numbers NOUN
. PUNCT
  SPACE
Hopefully ADV
, PUNCT
youwere ADV
able ADJ
to PART
impress VERB
them PRON
with ADP
your PRON
character NOUN
. PUNCT
Good ADJ
luck NOUN
, PUNCT
JeffNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59393From NUM
: PUNCT
fzjaffe@hamlet.ucdavis.edu PROPN
( PUNCT
Rory ADJ
Jaffe)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
etxmow@garbo.ericsson.se X
( PUNCT
Mats PROPN
Winberg PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
: PUNCT
    SPACE
Is AUX
n't PART
there PRON
a DET
relatively ADV
new ADJ
treatment NOUN
for ADP
kidney NOUN
stones NOUN
involving VERB
: PUNCT
    SPACE
a DET
non ADJ
- ADJ
invasive ADJ
use NOUN
of ADP
ultra ADJ
- ADJ
sound ADJ
where ADV
the DET
patient NOUN
is AUX
lowered VERB
: PUNCT
    SPACE
into ADP
some DET
sort NOUN
of ADP
liquid NOUN
when ADV
he PRON
/ SYM
she PRON
undergoes VERB
treatment NOUN
? PUNCT
I PRON
'm AUX
sure ADJ
: PUNCT
    SPACE
I PRON
've AUX
read VERB
about ADP
it PRON
somewhere ADV
. PUNCT
If SCONJ
I PRON
remember VERB
it PRON
correctly ADV
it PRON
is AUX
a DET
: PUNCT
    SPACE
painless ADJ
and CCONJ
effective ADJ
treatment NOUN
. PUNCT
The DET
use NOUN
of ADP
shock NOUN
waves NOUN
( PUNCT
not PART
ultrasound ADJ
) PUNCT
to PART
break VERB
up ADP
stones NOUN
has AUX
beenaround VERB
for ADP
a DET
few ADJ
years NOUN
. PUNCT
  SPACE
Depending VERB
on ADP
the DET
type NOUN
of ADP
machine NOUN
, PUNCT
and CCONJ
intensityof VERB
the DET
shock NOUN
waves NOUN
, PUNCT
it PRON
is AUX
usually ADV
uncomfortable ADJ
enough ADV
to PART
requiresomething VERB
... PUNCT
  SPACE
The DET
high ADJ
- PUNCT
power NOUN
machines NOUN
cause SCONJ
enough ADJ
pain NOUN
to PART
requiregeneral ADJ
or CCONJ
regional ADJ
anesthesia PROPN
. PUNCT
  SPACE
Afterwards ADV
, PUNCT
it PRON
feels VERB
like SCONJ
someoneslugged VERB
you PRON
pretty ADV
good!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59394From NUM
: PUNCT
alan@lancaster.nsc.com X
( PUNCT
The DET
Hepburn)Subject NUM
: PUNCT
Re ADP
: PUNCT
Resound PROPN
Hearing PROPN
aids VERB
( PUNCT
and CCONJ
others)In NOUN
article NOUN
< X
rhaller-260493122521@rhaller.cc.uoregon.edu PROPN
> X
, PUNCT
rhaller@ns.uoregon.edu PROPN
( PUNCT
Rich PROPN
Haller PROPN
) PUNCT
writes:| PROPN
> X
I PRON
have AUX
a DET
fairly ADV
severe ADJ
high ADJ
frequency NOUN
hearing NOUN
loss NOUN
. PUNCT
A DET
recent ADJ
rough ADJ
test| PROPN
> X
showed VERB
a DET
gently ADV
sloping VERB
loss NOUN
to ADP
10 NUM
- PUNCT
20db NOUN
down ADV
at ADP
1000cps NUM
. PUNCT
Then ADV
it PRON
falls VERB
off| PROPN
> X
a DET
cliff NOUN
to ADP
70 NUM
- PUNCT
80dbs NOUN
down ADV
from ADP
1500cps NUM
on ADP
. PUNCT
  SPACE
This DET
type NOUN
of ADP
loss NOUN
is AUX
difficult| ADJ
> X
to PART
fit VERB
. PUNCT
I PRON
am AUX
currently ADV
using VERB
some DET
old ADJ
siemens NOUN
behind ADP
the DET
ear PROPN
aids PROPN
which| PROPN
> X
keep VERB
me PRON
roughly ADV
functional ADJ
, PUNCT
but CCONJ
leave VERB
a DET
lot NOUN
to PART
be AUX
desired.| PROPN
> X
| ADV
> X
Recently ADV
I PRON
had AUX
an DET
opportunity NOUN
to PART
test VERB
the DET
Widex PROPN
Q8 PROPN
behind ADP
the DET
ear NOUN
aids PROPN
for| PROPN
> X
several ADJ
weeks NOUN
. PUNCT
These DET
have AUX
four NUM
independent ADJ
programs NOUN
which PRON
are AUX
intended VERB
to| DET
> X
be AUX
customized VERB
for ADP
different ADJ
hearing NOUN
situations NOUN
and CCONJ
can AUX
be AUX
reprogramed VERB
. PUNCT
I| PROPN
> X
found VERB
them PRON
to PART
be AUX
a DET
definite ADJ
improvement NOUN
over ADP
my PRON
current ADJ
aids NOUN
and CCONJ
was AUX
about| PROPN
> X
to PART
go VERB
ahead ADV
with ADP
them PRON
until ADP
another DET
local ADJ
outfit NOUN
advertised VERB
a DET
free ADJ
trial NOUN
of| ADP
> X
another DET
programmable ADJ
system NOUN
called VERB
ReSound.| PROPN
> X
| ADV
> X
Unfortunately ADV
I PRON
was AUX
only ADV
able ADJ
to PART
try VERB
the DET
ReSound PROPN
aids NOUN
in ADP
their PRON
office NOUN
for| NOUN
> X
about ADV
30 NUM
minutes NOUN
and CCONJ
I PRON
could AUX
n't PART
compare VERB
them PRON
' PUNCT
head NOUN
to PART
head VERB
' PUNCT
with ADP
the DET
Widex.| PROPN
> X
Nevertheless ADV
, PUNCT
it PRON
did AUX
appear VERB
to ADP
me PRON
that SCONJ
they PRON
were AUX
superior ADJ
and CCONJ
I PRON
was| PROPN
> X
impressed VERB
by ADP
what PRON
I PRON
was AUX
able ADJ
to PART
read VERB
about ADP
the DET
theory NOUN
behind ADP
them PRON
which PRON
I| PROPN
> X
will AUX
give VERB
in ADP
a DET
separate ADJ
posting NOUN
. PUNCT
They PRON
also ADV
carry VERB
the DET
Widex PROPN
aids NOUN
and CCONJ
had AUX
one| ADV
> X
patient NOUN
( PUNCT
presumably ADV
wealthy ADJ
) PUNCT
who PRON
decided VERB
to PART
go VERB
ahead ADV
and CCONJ
get AUX
the DET
ReSound| NOUN
> X
even ADV
though SCONJ
he PRON
had AUX
purchased VERB
the DET
Widex PROPN
only ADV
6 NUM
months NOUN
ago.| PROPN
> X
| ADV
> X
The DET
problem NOUN
is AUX
that SCONJ
the DET
ReSound PROPN
aids NOUN
are AUX
about ADV
twice ADV
as ADV
expensive ADJ
as SCONJ
the| PROPN
> X
Widex PROPN
and CCONJ
other ADJ
programmable ADJ
aids NOUN
. PUNCT
I PRON
could AUX
take VERB
a DET
trip NOUN
to ADP
Europe PROPN
on ADP
the| PROPN
> X
difference NOUN
! PUNCT
  SPACE
Being AUX
a DET
lover NOUN
of ADP
bargains NOUN
and CCONJ
hating VERB
to PART
spend VERB
money NOUN
, PUNCT
I PRON
am| VERB
> X
having VERB
a DET
hard ADJ
time NOUN
persuading VERB
myself PRON
to PART
go VERB
with ADP
the DET
ReSounds PROPN
. PUNCT
I PRON
would| VERB
> X
appreciate VERB
any DET
opinions NOUN
on ADP
this DET
and CCONJ
other ADJ
hearing NOUN
aids NOUN
and CCONJ
projections| NOUN
> X
about ADP
when ADV
and CCONJ
if SCONJ
I PRON
might AUX
see VERB
improvements NOUN
in ADP
technology NOUN
that PRON
are AUX
n't PART
quite| PROPN
> X
so ADV
expensive.| PROPN
> X
| ADV
> X
Your PRON
hearing NOUN
curve NOUN
sounds VERB
a DET
lot NOUN
like SCONJ
mine NOUN
( PUNCT
thanks NOUN
, PUNCT
Uncle PROPN
Sam PROPN
! PUNCT
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
beenwearing VERB
Miracle PROPN
Ear PROPN
canal NOUN
aids NOUN
for ADP
about ADV
5 NUM
months NOUN
now ADV
and CCONJ
I PRON
find VERB
them PRON
to ADP
beacceptable VERB
. PUNCT
  SPACE
They PRON
are AUX
molded VERB
to ADP
the DET
shape NOUN
of ADP
your PRON
ear NOUN
canal NOUN
, PUNCT
and CCONJ
tuned VERB
to ADP
your PRON
hearing NOUN
curve NOUN
. PUNCT
  SPACE
They PRON
are AUX
comfortable ADJ
to PART
wear VERB
and CCONJ
almost ADV
invisible ADJ
, PUNCT
ifyou're VERB
worried ADJ
about ADP
that DET
( PUNCT
although SCONJ
if SCONJ
you PRON
're AUX
currently ADV
wearing VERB
behind ADP
theear NOUN
models NOUN
, PUNCT
that DET
's AUX
not PART
an DET
issue NOUN
) PUNCT
. PUNCT
  SPACE
The DET
cost NOUN
: PUNCT
  SPACE
I PRON
paid VERB
$ SYM
1200 NUM
each DET
for ADP
mine PRON
, PUNCT
through ADP
the DET
Miracle PROPN
Ear PROPN
counter NOUN
at ADP
Sears PROPN
. PUNCT
  SPACE
I PRON
've AUX
heard VERB
that SCONJ
there PRON
is AUX
asubstantial ADJ
discount NOUN
for ADP
senior ADJ
citizens NOUN
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
researched VERB
that SCONJ
, PUNCT
becauseI'm PROPN
not PART
a DET
senior ADJ
citizen NOUN
, PUNCT
yet!Give VERB
them PRON
a DET
try NOUN
; PUNCT
you PRON
might AUX
be AUX
pleasantly ADV
surprised!-- PROPN
Alan PROPN
Hepburn PROPN
           SPACE
" PUNCT
A DET
man NOUN
does AUX
n't PART
know VERB
what PRON
he PRON
knowsNational ADJ
Semiconductor PROPN
       SPACE
until ADP
he PRON
knows VERB
what PRON
he PRON
does AUX
n't PART
know VERB
. PUNCT
"Santa PUNCT
Clara PROPN
, PUNCT
Ca AUX
              SPACE
alan@berlioz.nsc.com PROPN
                              SPACE
Thomas PROPN
CarlyleNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59395From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn NUM
article NOUN
< X
1rjifg$bgm@hsdndev.harvard.edu NUM
> X
, PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr26.174538.1@vms.ocom.okstate.edu PROPN
> X
> X
  SPACE
banschbach@vms.ocom.okstate.edu PROPN
writes:>>oxygen(just ADV
like SCONJ
it PRON
does AUX
in ADP
the DET
vagina PROPN
) PUNCT
. PUNCT
  SPACE
As ADV
much ADJ
stuff NOUN
as SCONJ
there PRON
is AUX
in ADP
the DET
> X
> X
lay VERB
press NOUN
about ADP
L. PROPN
acidophilus NOUN
and CCONJ
vaginal ADJ
yeast NOUN
infections NOUN
, PUNCT
I PRON
'm AUX
really ADV
> X
> X
amazed ADJ
that SCONJ
someone PRON
has AUX
not PART
done VERB
a DET
clinical ADJ
trial NOUN
yet ADV
to PART
check VERB
it PRON
out ADP
. PUNCT
> X
> X
I PRON
've AUX
mentioned VERB
this DET
study NOUN
a DET
couple NOUN
of ADP
times NOUN
now ADV
: PUNCT
Ingestion NOUN
of ADP
yogurt PROPN
> X
containing VERB
Lactobacillus PROPN
acidophilus NOUN
as SCONJ
prophylaxis PROPN
for ADP
candidal PROPN
> X
vaginitis NOUN
, PUNCT
Annals PROPN
of ADP
Internal PROPN
Medicine PROPN
, PUNCT
3/1/92 NUM
116(5):353 NUM
- SYM
7 NUM
. PUNCT
  SPACE
Do AUX
you PRON
> X
have AUX
a DET
problem NOUN
with ADP
the DET
study NOUN
because SCONJ
they PRON
used VERB
yogurt PROPN
rather ADV
than SCONJ
> X
capsules NOUN
of ADP
lactobacillus NOUN
( PUNCT
even ADV
though SCONJ
it PRON
had AUX
positive ADJ
results NOUN
) PUNCT
? PUNCT
> X
> X
The DET
study NOUN
was AUX
a DET
crossover NOUN
trial NOUN
of ADP
daily ADJ
ingestion NOUN
of ADP
8 NUM
ounces NOUN
of ADP
> X
yogurt PROPN
. PUNCT
  SPACE
There PRON
was AUX
a DET
marked ADJ
decrease NOUN
in ADP
infections NOUN
while SCONJ
women NOUN
were AUX
> X
ingesting VERB
the DET
yogurt NOUN
. PUNCT
  SPACE
Problems NOUN
with ADP
the DET
study NOUN
included VERB
very ADV
small ADJ
> NUM
numbers NOUN
( PUNCT
33 NUM
patients NOUN
enrolled VERB
) PUNCT
and CCONJ
many ADJ
protocol NOUN
violations NOUN
( PUNCT
only ADV
> X
21 NUM
patients NOUN
were AUX
analyzed VERB
) PUNCT
. PUNCT
  SPACE
Still ADV
, PUNCT
the DET
difference NOUN
in ADP
rates NOUN
of ADP
infection NOUN
> X
between ADP
the DET
two NUM
groups NOUN
was AUX
so ADV
large ADJ
that SCONJ
the DET
study NOUN
remains VERB
fairly ADV
> X
believable ADJ
. PUNCT
> X
-- PUNCT
> X
David PROPN
RindDavid PROPN
, PUNCT
this DET
study NOUN
looks VERB
like SCONJ
a DET
good ADJ
one NUM
. PUNCT
  SPACE
Gordon PROPN
Rubenfeld PROPN
did AUX
a DET
Medline PROPN
search NOUN
and CCONJ
also ADV
sent VERB
me PRON
the DET
same ADJ
reference NOUN
through ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
  SPACE
Since SCONJ
commercial ADJ
yogurt PROPN
does AUX
not PART
always ADV
have AUX
a DET
good ADJ
Lactobacillus PROPN
a. NOUN
or CCONJ
bulgaricus NOUN
culture NOUN
, PUNCT
a DET
negative ADJ
finding NOUN
would AUX
not PART
have AUX
been AUX
too ADV
informative ADJ
. PUNCT
This DET
is AUX
often ADV
the DET
reason NOUN
why ADV
Lactobacillus PROPN
acidophilus ADJ
tablets NOUN
are AUX
recommended VERB
rather ADV
than SCONJ
yogurt PROPN
. PUNCT
I PRON
guess VERB
the DET
next ADJ
question NOUN
is AUX
why ADV
would AUX
this DET
introduction NOUN
of ADP
" PUNCT
good ADJ
" PUNCT
bacteria NOUN
back ADV
into ADP
the DET
gut NOUN
decrease VERB
the DET
incidence NOUN
of ADP
vaginal ADJ
candida PROPN
blooms NOUN
if SCONJ
the DET
anus NOUN
was AUX
not PART
serving VERB
as SCONJ
a DET
candida PROPN
reservoir(a PROPN
fact NOUN
that SCONJ
Gordon PROPN
R. PROPN
vehementydenys PROPN
) PUNCT
? PUNCT
  SPACE
I PRON
see VERB
two NUM
possible ADJ
theories NOUN
. PUNCT
  SPACE
One NUM
, PUNCT
the DET
L. PROPN
acidophilus NOUN
, PUNCT
which PRON
is AUX
a DET
facultatively ADV
anaerobic ADJ
bacterium NOUN
, PUNCT
could AUX
make VERB
it PRON
through ADP
the DET
gut NOUN
and CCONJ
colonize VERB
the DET
rectal ADJ
area NOUN
to PART
overgrow VERB
the DET
candida PROPN
. PUNCT
  SPACE
This DET
would AUX
not PART
explain VERB
the DET
reoccurance NOUN
of ADP
candida PROPN
blooms NOUN
in ADP
the DET
vagina PROPN
after ADP
the DET
yogurt PROPN
ingestion NOUN
was AUX
stopped VERB
though ADV
. PUNCT
  SPACE
The DET
other ADJ
is AUX
that SCONJ
the DET
additional ADJ
bacteria NOUN
in ADP
the DET
intestinal ADJ
tract NOUN
remove VERB
most ADJ
of ADP
the DET
glucose NOUN
from ADP
the DET
feces NOUN
and CCONJ
candida PROPN
looses PROPN
it PRON
's AUX
major ADJ
food NOUN
source NOUN
. PUNCT
Getting VERB
Lactobacillus PROPN
acidophilus NOUN
to PART
colonize VERB
the DET
vaginal NOUN
tract(where NOUN
it PRON
is AUX
normally ADV
found VERB
) PUNCT
would AUX
have AUX
a DET
much ADV
better ADJ
effect NOUN
on ADP
the DET
recurrance NOUN
of ADP
vaginal ADJ
yeast NOUN
blooms NOUN
though ADV
. PUNCT
  SPACE
An DET
acetic ADJ
acid NOUN
, PUNCT
Lactobacillus PROPN
acidophilus ADJ
douche PROPN
has AUX
been AUX
used VERB
to PART
get AUX
this DET
effect NOUN
but CCONJ
I PRON
've AUX
not PART
seen VERB
any DET
such ADJ
treatment NOUN
reported VERB
in ADP
the DET
medical ADJ
literature NOUN
. PUNCT
  SPACE
This DET
would AUX
be AUX
an DET
example NOUN
of ADP
physicians NOUN
conducting VERB
their PRON
own ADJ
clinical ADJ
trials NOUN
to PART
try VERB
to PART
come VERB
up ADP
with ADP
treatments NOUN
that PRON
help VERB
their PRON
patients NOUN
. PUNCT
  SPACE
When ADV
this DET
is AUX
done VERB
in ADP
private ADJ
practice NOUN
, PUNCT
the DET
results NOUN
are AUX
rarely ADV
, PUNCT
if SCONJ
ever ADV
published VERB
. PUNCT
  SPACE
It PRON
was AUX
the DET
hallmark NOUN
of ADP
medicine NOUN
until ADP
the DET
modern ADJ
age NOUN
emerged VERB
with ADP
clinical ADJ
trials NOUN
. PUNCT
  SPACE
It PRON
really ADV
raises VERB
a DET
big ADJ
question NOUN
. PUNCT
  SPACE
Does AUX
the DET
medical ADJ
profession NOUN
cast VERB
out ADP
the DET
adventerous ADJ
few ADJ
who PRON
try VERB
new ADJ
treatments NOUN
to PART
help VERB
patients NOUN
or CCONJ
does AUX
it PRON
look VERB
the DET
other ADJ
way NOUN
. PUNCT
This DET
particular ADJ
issue NOUN
is AUX
really ADV
a DET
very ADV
simple ADJ
one NOUN
since SCONJ
no DET
real ADJ
dangerous ADJ
therapy NOUN
is AUX
involved(even ADP
the DET
anti NOUN
- NOUN
fungals NOUN
are AUX
not PART
all ADV
that ADV
dangerous ADJ
) PUNCT
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
some DET
areas(like PROPN
EDTA PROPN
chelation NOUN
therapy NOUN
) PUNCT
, PUNCT
where ADV
the DET
fire NOUN
is AUX
pretty ADV
hot ADJ
and CCONJ
somebody PRON
could AUX
get AUX
burned VERB
. PUNCT
  SPACE
It PRON
's AUX
really ADV
tough ADJ
. PUNCT
  SPACE
Do AUX
I PRON
follow VERB
only ADV
well ADV
established VERB
protocols NOUN
and CCONJ
then ADV
give VERB
up ADP
if SCONJ
they PRON
do AUX
n't PART
work VERB
that DET
well INTJ
or CCONJ
do AUX
it PRON
try VERB
something PRON
that PRON
looks VERB
like SCONJ
it PRON
will AUX
work VERB
but CCONJ
has AUX
n't PART
been AUX
proven VERB
to PART
work VERB
yet?My PROPN
stand VERB
is AUX
to PART
consider VERB
other ADJ
treatment NOUN
possibilities NOUN
, PUNCT
especially ADV
if SCONJ
they PRON
involve VERB
little ADJ
or CCONJ
no DET
risk NOUN
to ADP
the DET
patient NOUN
. PUNCT
  SPACE
Getting VERB
good ADJ
bacteria NOUN
back ADV
into ADP
the DET
gut NOUN
after ADP
antibiotic ADJ
treatment NOUN
is AUX
one NUM
treatment NOUN
possibility NOUN
. PUNCT
  SPACE
The DET
other ADJ
is AUX
getting VERB
L. PROPN
acidophilus NOUN
into ADP
the DET
vaginal ADJ
tract NOUN
of ADP
a DET
woman NOUN
who PRON
is AUX
having VERB
a DET
problem NOUN
with ADP
recurring VERB
yeast NOUN
infections NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59396From NUM
: PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rjr1uINNh8@gap.caltech.edu NUM
> X
, PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick PROPN
) PUNCT
writes VERB
... PUNCT
>In PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:>=In ADV
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>=>Greg NOUN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
= PUNCT
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It>=>involves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the>=>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well>=>with VERB
inanimate ADJ
objects.>=>=True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this>="corona SYM
discharge NOUN
" PUNCT
? PUNCT
> X
> X
Yup INTJ
. PUNCT
  SPACE
The DET
demonstration NOUN
to PART
which PRON
you PRON
refer VERB
consists NOUN
of ADP
placing VERB
a DET
leaf NOUN
between ADP
> X
the DET
plates NOUN
, PUNCT
and CCONJ
taking VERB
a DET
Kirlian ADJ
photograph NOUN
of ADP
it PRON
. PUNCT
  SPACE
You PRON
then ADV
cut VERB
off ADP
part NOUN
of ADP
> X
the DET
leaf NOUN
, PUNCT
put VERB
the DET
top ADJ
plate NOUN
back ADV
on ADV
, PUNCT
and CCONJ
take VERB
another DET
Kirlian ADJ
photograph NOUN
. PUNCT
  SPACE
You PRON
> X
see VERB
pretty ADV
much ADV
the DET
same ADJ
image NOUN
in ADP
both DET
cases NOUN
. PUNCT
  SPACE
Turns VERB
out ADP
the DET
effect NOUN
isn't ADV
> X
nearly ADV
so ADV
striking ADJ
if SCONJ
you PRON
take VERB
the DET
trouble NOUN
to PART
clean VERB
the DET
plates NOUN
between ADP
> PROPN
photographs NOUN
. PUNCT
  SPACE
Seems VERB
that SCONJ
the DET
moisture NOUN
from ADP
the DET
leaf NOUN
that PRON
you PRON
left VERB
on ADP
the DET
place NOUN
> X
conducts VERB
electricity NOUN
. PUNCT
  SPACE
Surprise NOUN
, PUNCT
surprise NOUN
! PUNCT
	 SPACE
This DET
is AUX
true ADJ
, PUNCT
but CCONJ
it PRON
's AUX
not PART
quite DET
the DET
whole ADJ
story NOUN
. PUNCT
  SPACE
There PRON
were AUX
	 SPACE
actually ADV
some DET
people NOUN
who PRON
were AUX
more ADV
careful ADJ
in ADP
their PRON
methodology NOUN
	 SPACE
who PRON
also ADV
replicated VERB
the DET
' PUNCT
phantom ADJ
leaf NOUN
effect NOUN
. PUNCT
' PUNCT
    SPACE
One NUM
of ADP
the DET
most ADV
influential ADJ
critics NOUN
of ADP
Kirlian PROPN
Electrophotography PROPN
    SPACE
is AUX
a DET
Theosophist PROPN
( PUNCT
and CCONJ
threfore NOUN
presumably ADV
willing ADJ
to PART
entertain VERB
the DET
    SPACE
hypothesis NOUN
of ADP
scientific ADJ
evidence NOUN
for ADP
a DET
human ADJ
aura NOUN
, PUNCT
electromagnetic ADJ
    SPACE
or CCONJ
otherwise ADV
) PUNCT
, PUNCT
professor NOUN
of ADP
electrical ADJ
engineering NOUN
at ADP
London PROPN
's PART
    SPACE
City PROPN
University PROPN
, PUNCT
and CCONJ
a DET
past ADJ
president NOUN
of ADP
the DET
Society PROPN
for ADP
Psychic PROPN
Research PROPN
     SPACE
named VERB
A. PROPN
J. PROPN
Ellison PROPN
. PUNCT
    SPACE
After ADP
years NOUN
of ADP
studying VERB
the DET
method NOUN
and CCONJ
the DET
claims NOUN
, PUNCT
Ellison PROPN
    SPACE
came VERB
to ADP
the DET
conclusion NOUN
that SCONJ
the DET
photographic ADJ
images NOUN
are AUX
what PRON
we PRON
    SPACE
calls VERB
' PUNCT
Lichtenberg PROPN
Figures PROPN
, PUNCT
' PUNCT
an DET
effect NOUN
of ADP
intermittent ADJ
ionization NOUN
of ADP
    SPACE
the DET
air NOUN
around ADP
the DET
object NOUN
. PUNCT
  SPACE
It PRON
's AUX
a DET
bit NOUN
more ADV
complicated ADJ
than SCONJ
    SPACE
' PUNCT
not PART
wiping VERB
off ADP
the DET
plates NOUN
, PUNCT
' PUNCT
but CCONJ
it PRON
comes VERB
down ADP
to ADP
the DET
same ADJ
thing NOUN
    SPACE
in ADP
the DET
end NOUN
, PUNCT
Kirlian ADJ
electrophotography NOUN
has AUX
much ADV
more ADV
limited ADJ
    SPACE
value NOUN
( PUNCT
if SCONJ
any DET
) PUNCT
than SCONJ
was AUX
previously ADV
widely ADV
thought VERB
. PUNCT
  SPACE
Electrical ADJ
and CCONJ
    SPACE
magnetic ADJ
fields NOUN
generated VERB
by ADP
the DET
body NOUN
are AUX
much ADV
too ADV
small ADJ
to PART
be AUX
    SPACE
of ADP
much ADJ
use NOUN
diagnostically ADV
without ADP
very ADV
elaborate ADJ
equipment NOUN
and CCONJ
    SPACE
usually ADV
also ADV
tracer NOUN
chemicals NOUN
. PUNCT
					 SPACE
kind PROPN
regards VERB
, PUNCT
					 SPACE
todd+-----------------------------------------------------------------------------+| PROPN
Todd PROPN
I. PROPN
Stark PROPN
				   SPACE
stark@dwovax.enet.dec.com PROPN
           SPACE
|| PROPN
Digital PROPN
Equipment PROPN
Corporation PROPN
		              SPACE
( PUNCT
215 NUM
) PUNCT
542 NUM
- SYM
3573 NUM
           SPACE
|| PROPN
Philadelphia PROPN
, PUNCT
Pa. PROPN
USA PROPN
                                                       SPACE
|| PROPN
    SPACE
" PUNCT
( PUNCT
A DET
word NOUN
is AUX
) PUNCT
the DET
skin NOUN
of ADP
a DET
living NOUN
thought NOUN
" PUNCT
  SPACE
Oliver PROPN
Wendell PROPN
Holmes PROPN
, PUNCT
Jr. PROPN
   SPACE
|+-----------------------------------------------------------------------------+Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59397From NUM
: PUNCT
samuel@paul.rutgers.edu PROPN
( PUNCT
Empress NOUN
Carrena PROPN
Kristina PROPN
I)Subject X
: PUNCT
REQUEST NOUN
: PUNCT
FAQHi NOUN
. PUNCT
I PRON
have AUX
a DET
friend NOUN
who PRON
is AUX
interested ADJ
in ADP
subscribing VERB
to ADP
this DET
newsgroup NOUN
. PUNCT
Unfortunatly ADV
she PRON
does AUX
not PART
have AUX
usenet ADJ
access NOUN
. PUNCT
If SCONJ
someone PRON
could AUX
sendher VERB
a DET
faq NOUN
and CCONJ
info NOUN
on ADP
how ADV
to PART
subscribe VERB
, PUNCT
we PRON
'd AUX
be AUX
very ADV
appreciative ADJ
Ifyou NOUN
want VERB
to PART
send VERB
it PRON
to ADP
me PRON
, PUNCT
you PRON
can AUX
and CCONJ
I PRON
will AUX
get AUX
it PRON
to ADP
her PRON
. PUNCT
I PRON
do AUX
notread ADV
this DET
newsgroup NOUN
regularly ADV
though ADV
so ADV
e NOUN
- NOUN
mail NOUN
please INTJ
. PUNCT
Thank VERB
youJody-- PRON
-------------------------------------------------------------------------------Jody NUM
Rebecca PROPN
		 SPACE
Colby PROPN
College PROPN
		 SPACE
Majors NOUN
: PUNCT
History NOUN
/ SYM
Sociology NOUN
			 SPACE
Class NOUN
o NOUN
' PUNCT
' NUM
94 NUM
            SPACE
E PROPN
- NOUN
Mail NOUN
: PUNCT
  SPACE
jrgould@colby.edu X
	  SPACE
samuel@paul.rutgers.eduFantasy PROPN
, PUNCT
Music PROPN
, PUNCT
Colors PROPN
, PUNCT
and CCONJ
Animals NOUN
will AUX
lead VERB
this DET
society NOUN
out SCONJ
of ADP
oppression.-------------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59398From NUM
: PUNCT
samuel@paul.rutgers.edu PROPN
( PUNCT
Empress NOUN
Carrena PROPN
Kristina PROPN
I)Subject X
: PUNCT
Oops INTJ
. PUNCT
SIlly VERB
me PRON
. PUNCT
Sorry INTJ
. PUNCT
My PRON
friend NOUN
's PART
address NOUN
who PRON
wants VERB
the DET
faq NOUN
and CCONJ
info PROPN
isjjsulliv@colby.eduSorry PROPN
about ADP
that DET
folks NOUN
. PUNCT
Jody-- PROPN
-------------------------------------------------------------------------------Jody PROPN
Rebecca PROPN
		 SPACE
Colby PROPN
College PROPN
		 SPACE
Majors NOUN
: PUNCT
History NOUN
/ SYM
Sociology NOUN
			 SPACE
Class NOUN
o NOUN
' PUNCT
' NUM
94 NUM
            SPACE
E PROPN
- NOUN
Mail NOUN
: PUNCT
  SPACE
jrgould@colby.edu X
	  SPACE
samuel@paul.rutgers.eduFantasy PROPN
, PUNCT
Music PROPN
, PUNCT
Colors PROPN
, PUNCT
and CCONJ
Animals NOUN
will AUX
lead VERB
this DET
society NOUN
out SCONJ
of ADP
oppression.-------------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59399From NUM
: PUNCT
werckme1@eecs.uic.edu PROPN
( PUNCT
robert PROPN
werckmeister)Subject NUM
: PUNCT
ECG NOUN
data NOUN
neededI PROPN
need VERB
some DET
ECG NOUN
data NOUN
, PUNCT
uncompressed VERB
, PUNCT
  SPACE
hopefully ADV
in ADP
ascii ADJ
format NOUN
. PUNCT
Don't NUM
care VERB
what PRON
it PRON
looks VERB
like SCONJ
, PUNCT
this DET
is AUX
for ADP
a DET
signal ADJ
processingproject NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59400From NUM
: PUNCT
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field))Subject PROPN
: PUNCT
Re ADP
: PUNCT
PLEASE INTJ
, PUNCT
HELP VERB
A DET
PATIENT!!!In PROPN
article NOUN
< X
AAghzshe-3@integral.stavropol.su X
> X
mymail@integral.stavropol.su PROPN
writes:>% PROPN
mail NOUN
newsserv@kiae.su>Subject X
: PUNCT
  SPACE
PLEASE PROPN
, PUNCT
HELP PROPN
! PUNCT
! PUNCT
! PUNCT
> X
                    SPACE
Dear ADJ
  SPACE
Ladies NOUN
and CCONJ
  SPACE
Gentlemen PROPN
! PUNCT
> X
      SPACE
We PRON
should AUX
be AUX
grateful ADJ
for ADP
any DET
information NOUN
about ADP
address NOUN
and CCONJ
( PUNCT
or CCONJ
) PUNCT
> X
   SPACE
E PROPN
- NOUN
mail NOUN
address NOUN
of ADP
Loma PROPN
- PUNCT
Linda PROPN
Hospital PROPN
( PUNCT
approximate ADJ
position NOUN
: PUNCT
USA PROPN
, PUNCT
> X
   SPACE
California PROPN
, PUNCT
near SCONJ
Vaimor PROPN
town NOUN
, PUNCT
60 NUM
miles NOUN
from ADP
Los PROPN
- PUNCT
Angelos PROPN
) PUNCT
. PUNCT
> X
      SPACE
A DET
patient NOUN
needs VERB
consultation NOUN
in ADP
this DET
clinics NOUN
before ADP
operation NOUN
. PUNCT
> X
                SPACE
With ADP
respect NOUN
, PUNCT
                  SPACE
Igor PROPN
V. PROPN
Sidelnikov PROPN
> X
QUITThis NOUN
is AUX
also ADV
being AUX
replied VERB
to ADP
via ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
  SPACE
I PRON
dialed VERB
my PRON
universitylibrarian NOUN
, PUNCT
and CCONJ
he PRON
looked VERB
it PRON
up ADP
: PUNCT
Loma PROPN
Linda PROPN
University PROPN
Medical PROPN
CenterLoma PROPN
Linda PROPN
, PUNCT
CA PROPN
92350I VERB
do AUX
n't PART
know VERB
an DET
Internet NOUN
address NOUN
for ADP
them PRON
, PUNCT
but CCONJ
they PRON
can AUX
be AUX
reached VERB
bytelephone PROPN
at ADP
( PUNCT
714 NUM
) PUNCT
824 NUM
- PUNCT
4300.Good NUM
luck.-- PROPN
| PROPN
Daniel PROPN
R. PROPN
Field PROPN
, PUNCT
AKA PROPN
InfoSpunj PROPN
| PROPN
" PUNCT
Never ADV
believe VERB
any DET
experiment NOUN
until ADP
|| PROPN
dfield@oboe.calpoly.edu NUM
        SPACE
| PROPN
it PRON
has AUX
been AUX
confirmed VERB
by ADP
theory NOUN
. PUNCT
" PUNCT
   SPACE
|| PROPN
Biochemistry PROPN
, PUNCT
Biotechnology PROPN
    SPACE
| PROPN
-Arthur PUNCT
Eddington PROPN
                   SPACE
|| PROPN
California PROPN
Polytechnic PROPN
State PROPN
U PROPN
| PROPN
Tongue PROPN
- PUNCT
in ADP
- PUNCT
cheek NOUN
or CCONJ
foot NOUN
- PUNCT
in ADP
- PUNCT
mouth NOUN
? PUNCT
   SPACE
| PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59401From NUM
: PUNCT
aezpete@deja-vu.aiss.uiuc.edu PROPN
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosIn NOUN
article NOUN
< X
1993Apr27.151619.2636@netnews.noc.drexel.edu NUM
> X
giamomj@duvm.ocs.drexel.edu PROPN
( PUNCT
Mike PROPN
G. PROPN
) PUNCT
writes:>Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
pros>>In PROPN
article NOUN
< X
C63yG5.8tH@cs.uiuc.edu NOUN
> X
Gunnar PROPN
Blix PROPN
, PUNCT
blix@milton.cs.uiuc.edu>writes:>>I NOUN
need VERB
information NOUN
on ADP
the DET
medical ADJ
( PUNCT
including VERB
emotional ADJ
:-) PUNCT
pros NOUN
and>>cons NOUN
of ADP
circumcision NOUN
( PUNCT
at ADP
birth NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
am AUX
especially ADV
interested ADJ
in>>references NOUN
to ADP
studies NOUN
that PRON
indicate VERB
disadvantages NOUN
or CCONJ
refute VERB
studies>>that PRON
indicate VERB
advantages NOUN
. PUNCT
  SPACE
A DET
friend NOUN
who PRON
is AUX
a DET
medical ADJ
student NOUN
is>>writing NOUN
a DET
survey NOUN
paper NOUN
, PUNCT
and CCONJ
apparently ADV
the DET
studies NOUN
she PRON
has AUX
run VERB
into>>are NUM
all DET
for ADP
circumcision NOUN
, PUNCT
the DET
main ADJ
argument NOUN
being AUX
a DET
lower ADJ
risk NOUN
of>>penile NOUN
cancer.>>>>Please NOUN
email NOUN
responses NOUN
as SCONJ
I PRON
am AUX
not PART
a DET
frequent ADJ
reader NOUN
of ADP
either DET
group.>>I PROPN
will AUX
summarize VERB
to ADP
the DET
net.>>I'm PROPN
very ADV
surprised VERB
that SCONJ
medical ADJ
schools NOUN
still ADV
push VERB
routine ADJ
circumcision NOUN
> X
of ADP
newborn ADJ
males NOUN
on ADP
the DET
population NOUN
. PUNCT
Since SCONJ
your PRON
friend NOUN
is AUX
not PART
a DET
man NOUN
, PUNCT
sheMoney PROPN
probably ADV
has AUX
a DET
lot NOUN
to PART
do AUX
with ADP
keeping VERB
the DET
practice NOUN
of ADP
routine ADJ
circumcision NOUN
alive ADJ
... PUNCT
It PRON
's AUX
another DET
opporitunity NOUN
to PART
charge VERB
a DET
few ADJ
hundredextra ADJ
bucks NOUN
for ADP
a DET
completely ADV
unnecessary ADJ
procedure NOUN
, PUNCT
the DET
rationale NOUN
for ADP
which PRON
until ADP
recently ADV
has AUX
been AUX
accepted VERB
without ADP
question NOUN
by ADP
mostparents NOUN
of ADP
newborns NOUN
. PUNCT
  SPACE
One PRON
could AUX
also ADV
imagine VERB
that SCONJ
complications NOUN
arising VERB
from ADP
circumcision(infections PROPN
, PUNCT
sloppy ADJ
jobs NOUN
, PUNCT
etc X
) PUNCT
are AUX
far ADV
more ADV
common ADJ
than SCONJ
the DET
remote ADJ
chanceof ADJ
penile NOUN
cancer NOUN
it PRON
is AUX
purported VERB
to PART
prevent VERB
. PUNCT
   SPACE
> X
ca AUX
n't PART
imagine VERB
what PRON
it PRON
's AUX
like ADJ
to PART
have AUX
a DET
penis NOUN
, PUNCT
much ADV
less ADJ
a DET
foreskin NOUN
. PUNCT
I PRON
> X
guess VERB
if SCONJ
American ADJ
medicine NOUN
did AUX
an DET
artistic ADJ
job NOUN
of ADP
circumcising VERB
every DET
> X
male NOUN
, PUNCT
then ADV
the DET
visual ADJ
result NOUN
would AUX
be AUX
somewhat ADV
more ADV
natural ADJ
in ADP
> X
appearance NOUN
... PUNCT
>>The PUNCT
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
be AUX
> X
going VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journal PROPN
> X
or CCONJ
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
old ADJ
> X
Jewish ADJ
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
the DET
> X
cancer NOUN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
like SCONJ
> X
crazy ADJ
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
a DET
> X
little ADJ
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung VERB
up ADP
on ADP
> X
the DET
penis PROPN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADV
like SCONJ
> X
mastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basically ADV
> X
unnecessary ADJ
. PUNCT
Peter PROPN
SchlumpfUniversity PROPN
of ADP
Illinois PROPN
at ADP
Urbana PROPN
- PUNCT
ChampaignNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59402From NUM
: PUNCT
OPDBS@vm.cc.latech.eduSubject NUM
: PUNCT
Can AUX
I PRON
sell VERB
my PRON
TENS PROPN
unit NOUN
? PUNCT
Sci PROPN
med VERB
people NOUN
: PUNCT
Can AUX
I PRON
sell VERB
my PRON
TENS PROPN
unit NOUN
or CCONJ
does AUX
it PRON
have AUX
to PART
be AUX
sold VERB
by ADP
a DET
physician NOUN
orother NOUN
liscened VERB
person NOUN
? PUNCT
Dougopdbs@vm.cc.latech.edu NUM
  SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59403From NUM
: PUNCT
scheiber@sage.cc.purdue.edu NUM
( PUNCT
Jennifer PROPN
Scheiber)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
matthews@oswego PROPN
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews PROPN
) PUNCT
writes:>All PROPN
right ADV
, PUNCT
listen VERB
up ADP
.... PUNCT
  SPACE
What PRON
are AUX
the DET
possibilities NOUN
of ADP
transmission NOUN
through ADP
> X
swimming VERB
pool NOUN
water NOUN
? PUNCT
  SPACE
Especially ADV
if SCONJ
the DET
chlorination NOUN
is AUX
n't PART
up ADP
to PART
par?>>I've VERB
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
> X
else ADV
is AUX
going VERB
on?>>But CCONJ
the DET
sperm NOUN
would AUX
be AUX
very ADV
diluted ADJ
in ADP
a DET
" PUNCT
x ADJ
" PUNCT
gallon NOUN
swimming NOUN
pool NOUN
   SPACE
-- PUNCT
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
* PUNCT
                  SPACE
J PROPN
e PROPN
n CCONJ
n CCONJ
i PRON
f PROPN
e NOUN
r NOUN
      SPACE
S PROPN
c NOUN
h NOUN
e NOUN
i NOUN
b NOUN
e NOUN
r NOUN
                     SPACE
* PUNCT
email NOUN
: PUNCT
scheiber@sage.cc.purdue.edu PROPN
      SPACE
School PROPN
of ADP
Nursing PROPN
- PUNCT
Purdue PROPN
University~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59404From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:=FLAME PROPN
ON==Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)=photography NOUN
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
= SYM
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
= SYM
measure VERB
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADV
there ADV
. PUNCT
Where ADV
have AUX
you PRON
seen VERB
that SCONJ
attitude?=I NOUN
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
= SYM
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
= PUNCT
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
= SYM
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.=I X
am AUX
convinced VERB
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
= SYM
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
= SYM
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,=were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
Fine ADV
, PUNCT
jackass NOUN
. PROPN
  SPACE
Suppose VERB
you PRON
point VERB
out ADP
even ADV
ONE NUM
aspect NOUN
of ADP
Kirlian PROPN
photographythat NOUN
's AUX
not PART
explained VERB
by ADP
a DET
corona NOUN
discharge.--------------------------------------------------------------------------------Carl NOUN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59406From NUM
: PUNCT
enea1@applelink.apple.com PROPN
( PUNCT
Horace PROPN
Enea)Subject NOUN
: PUNCT
Persistent PROPN
vs ADP
ChronicCan VERB
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
diseaseand NOUN
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis PROPN
vs ADP
chronichepatitis NOUN
. PUNCT
Thanks NOUN
, PUNCT
HoraceNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59407From NUM
: PUNCT
brenda@bookhouse NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Brenda PROPN
Bowden)Subject PROPN
: PUNCT
feverfew ADJ
for ADP
migrainesI PROPN
heard VERB
a DET
short ADJ
blurb NOUN
on ADP
the DET
news NOUN
yesterday NOUN
about ADP
an DET
herb NOUN
called VERB
feverfew ADJ
( PUNCT
? PUNCT
) PUNCT
that SCONJ
some DET
say VERB
is AUX
good ADJ
for ADP
preventing VERB
migraines NOUN
. PUNCT
I PRON
think VERB
the DET
news NOUN
said VERB
therewere ADJ
two NUM
double ADJ
- PUNCT
blind ADJ
studies NOUN
that PRON
found VERB
this DET
effective ADJ
. PUNCT
Does AUX
anyone PRON
know VERB
about ADP
these DET
studies NOUN
? PUNCT
Or CCONJ
have AUX
experience NOUN
with ADP
feverfew?I'm PROPN
skeptical ADJ
, PUNCT
but CCONJ
open ADJ
to ADP
trying VERB
it PRON
if SCONJ
I PRON
can AUX
find VERB
out ADP
more ADJ
about ADP
this DET
. PUNCT
What PRON
is AUX
feverfew ADJ
, PUNCT
and CCONJ
how ADV
much ADJ
would AUX
you PRON
take VERB
to PART
prevent VERB
migraines NOUN
( PUNCT
if SCONJ
this DET
is AUX
a DET
good ADJ
idea NOUN
, PUNCT
that DET
is ADV
) PUNCT
? PUNCT
Are AUX
there PRON
any DET
known VERB
risks NOUN
or CCONJ
side NOUN
effectsof NOUN
feverfew ADJ
? PUNCT
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
info!BrendaNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59408From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???Iridology PROPN
is AUX
descendant ADJ
from ADP
a DET
19th ADJ
- PUNCT
century NOUN
theory NOUN
which PRON
mapped VERB
certaindiseases NOUN
to ADP
sectors NOUN
of ADP
the DET
iris NOUN
of ADP
the DET
eye NOUN
. PUNCT
  SPACE
There PRON
's AUX
enough ADJ
naturalvariation NOUN
in ADP
color NOUN
that SCONJ
a DET
skilled ADJ
examiner NOUN
can AUX
find VERB
indicators NOUN
ofvirtually ADV
any DET
disease NOUN
. PUNCT
Modern ADJ
scientists NOUN
consider VERB
it PRON
to PART
be AUX
complete ADJ
bunk NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59409From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
WE PRON
CAN AUX
SUPPLY VERB
YOU PRON
WITH ADP
THE DET
TRANSPLANTANTS PROPN
& CCONJ
OTHERHarvested VERB
to ADP
order?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59410From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics NOUN
and CCONJ
Purification?Colonics NOUN
were AUX
a DET
health NOUN
fad NOUN
of ADP
the DET
19th ADJ
century NOUN
, PUNCT
which PRON
persists VERB
to ADP
this DET
day NOUN
. PUNCT
Except SCONJ
for ADP
certain ADJ
medical ADJ
conditions NOUN
, PUNCT
there PRON
is AUX
no DET
reason NOUN
to PART
do AUX
this DET
. PUNCT
Certainly ADV
no DET
normal ADJ
person NOUN
should AUX
do AUX
this DET
. PUNCT
Frequent ADJ
use NOUN
of ADP
enemas NOUN
can AUX
lead VERB
to ADP
a DET
condition NOUN
in ADP
which PRON
a DET
person NOUN
is AUX
unableto PROPN
have AUX
normal ADJ
bowel NOUN
passage NOUN
, PUNCT
essentially ADV
a DET
person NOUN
becomes VERB
addicted VERB
toenemas NOUN
. PUNCT
  SPACE
As SCONJ
I PRON
understand VERB
it PRON
, PUNCT
this DET
is AUX
a DET
very ADV
unpleasant ADJ
condition NOUN
, PUNCT
and CCONJ
itwould AUX
be AUX
best ADJ
to PART
avoid VERB
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59411From NUM
: PUNCT
< X
RFM@psuvm.psu.edu>Subject VERB
: PUNCT
Re ADP
: PUNCT
Med NOUN
school NOUN
admissionThen ADV
there PRON
are AUX
always ADV
osteopathy ADJ
colleges NOUN
.... PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59412From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
< X
4974@master NOUN
. PUNCT
CNA.TEK.COM PROPN
> PROPN
mikeq@freddy PROPN
. PUNCT
CNA.TEK.COM PROPN
( PUNCT
Mike PROPN
Quigley PROPN
) PUNCT
writes:>In PROPN
article NOUN
? PUNCT
? PUNCT
? PUNCT
? PUNCT
? PUNCT
? PUNCT
I PRON
write:>>When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident>>in PROPN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having>>sexual ADJ
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm>>cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>>>>Was PUNCT
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually>>occur?>Ohboy PROPN
. PUNCT
Here ADV
we PRON
go VERB
again ADV
. PUNCT
And CCONJ
one NUM
wonders VERB
why ADV
the DET
American ADJ
> NUM
education NOUN
system NOUN
is AUX
in ADP
such ADJ
abysmal NOUN
shape?Actually ADV
, PUNCT
this DET
was AUX
a DET
school NOUN
in ADP
England PROPN
. PUNCT
  SPACE
This DET
same ADJ
biology NOUN
teacher NOUN
alsotold ADP
me PRON
that SCONJ
the DET
reason NOUN
that PRON
stars VERB
twinkle ADJ
is AUX
that SCONJ
the DET
small ADJ
spot NOUN
oflight NOUN
on ADP
the DET
retina NOUN
sometimes ADV
falls VERB
between ADP
the DET
light ADJ
recepive ADJ
cells NOUN
. PUNCT
So ADV
his PRON
info NOUN
was AUX
suspect ADJ
from ADP
the DET
start NOUN
. PUNCT
  SPACE
StephenNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59413From NUM
: PUNCT
pinn@cpqhou.se.hou.compaq.com X
( PUNCT
Steve PROPN
Pinn PROPN
x44304)Subject NOUN
: PUNCT
Re ADP
: PUNCT
REQUEST NOUN
: PUNCT
Gyro PROPN
( PUNCT
souvlaki NOUN
) PUNCT
sauceMichael PROPN
Trofimoff PROPN
( PUNCT
tron@fafnir.la.locus.com X
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Hi INTJ
All DET
, PUNCT
: PUNCT
Would AUX
anyone PRON
out ADV
there ADV
in ADP
' PUNCT
net ADJ
- PUNCT
land NOUN
' PUNCT
happen VERB
to PART
have AUX
an DET
: PUNCT
authentic ADJ
, PUNCT
sure ADJ
- PUNCT
fire ADJ
way NOUN
of ADP
making VERB
this DET
great ADJ
sauce NOUN
that PRON
: PUNCT
is AUX
used VERB
to PART
adorn VERB
Gyro PROPN
's PART
and CCONJ
Souvlaki PROPN
? PUNCT
: PUNCT
Thanks NOUN
, PUNCT
I PRON
have AUX
a DET
receipe NOUN
at ADP
home NOUN
that PRON
was AUX
posted VERB
to ADP
me PRON
by ADP
one NUM
of ADP
our PRON
fellownetters NOUN
about ADP
a DET
month NOUN
ago ADV
. PUNCT
  SPACE
I PRON
am AUX
recalling VERB
this DET
from ADP
memory NOUN
butI NOUN
think VERB
I PRON
'm AUX
fairly ADV
close ADJ
( PUNCT
by ADP
the DET
way NOUN
it PRON
was AUX
GREAT!)1 PROPN
	 SPACE
pint NOUN
of ADP
plain ADJ
yogurt PROPN
1/2 NUM
	 SPACE
med PROPN
. PUNCT
sized ADJ
cucumber PROPN
finely ADV
shredded3 NOUN
	 SPACE
cloves NOUN
of ADP
garlic NOUN
( PUNCT
more ADV
or CCONJ
less ADJ
by ADP
taste)1/4 PROPN
tsp PROPN
	 SPACE
dill NOUN
weedThe PROPN
yogurt PROPN
is AUX
dumped VERB
into ADP
a DET
strainer NOUN
lined VERB
with ADP
a DET
coffeefilter NOUN
and CCONJ
allowed VERB
to PART
drain VERB
at ADV
least ADV
2 NUM
hours NOUN
( PUNCT
you PRON
canadjust VERB
the DET
consistancy NOUN
of ADP
the DET
sauce NOUN
by ADP
increasing VERB
this DET
timeup NOUN
to ADP
24 NUM
hours)The PROPN
shredded VERB
cuc PROPN
is AUX
drained VERB
the DET
same ADJ
wayMix NOUN
it PRON
all DET
together ADV
and CCONJ
let VERB
it PRON
steep VERB
for ADP
at ADP
least2 PROPN
hours NOUN
( PUNCT
it PRON
's AUX
better ADJ
the DET
next ADJ
day NOUN
) PUNCT
and CCONJ
enjoy!SteveNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59414From NUM
: PUNCT
cjh@tinton.ccur.com PROPN
( PUNCT
Christopher PROPN
J. PROPN
Henrich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU NOUN
writes:>>Greg PROPN
: PUNCT
Flame NOUN
definitely ADV
intended VERB
here ADV
. PUNCT
  SPACE
Bill PROPN
was AUX
making VERB
fun NOUN
of ADP
the DET
misspelling NOUN
. PUNCT
> X
> X
Go VERB
look VERB
up ADP
the DET
word NOUN
" PUNCT
krill PROPN
. PUNCT
" PUNCT
  SPACE
Also ADV
, PUNCT
the DET
correct ADJ
spelling NOUN
is AUX
Kirlian ADJ
. PUNCT
  SPACE
It>>involves X
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the>>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well>>with PROPN
inanimate ADJ
objects.>>True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this>"corona PUNCT
discharge"?>I ADV
think VERB
I PRON
can AUX
explain VERB
the DET
" PUNCT
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
" PUNCT
story NOUN
. PUNCT
I PRON
have AUX
actually ADV
seen VERB
a DET
reproduction NOUN
of ADP
that DET
particular ADJ
Kirlianphotograph PROPN
, PUNCT
in ADP
a DET
book NOUN
compiled VERB
by ADP
people NOUN
who PRON
were AUX
enthusiasts NOUN
ofKirlian PROPN
photography NOUN
. PUNCT
  SPACE
" PUNCT
That DET
particular ADJ
photograph NOUN
" PUNCT
... PUNCT
? PUNCT
  SPACE
That'sright PROPN
, PUNCT
the DET
effect NOUN
has AUX
been AUX
observed VERB
only ADV
once ADV
. PUNCT
  SPACE
Even ADV
the DET
writers NOUN
ofthe PROPN
book NOUN
were AUX
inclined VERB
to PART
disbelieve VERB
in ADP
it PRON
. PUNCT
  SPACE
I PRON
conjecture VERB
that SCONJ
the DET
maker NOUN
of ADP
that DET
photograph NOUN
began VERB
by ADP
placinga PROPN
whole ADJ
leaf NOUN
between ADP
two NUM
plates NOUN
and CCONJ
taking VERB
its PRON
Kirlian ADJ
photo NOUN
. PUNCT
For ADP
his PRON
next ADJ
experiment NOUN
, PUNCT
he PRON
cut VERB
the DET
leaf NOUN
in ADP
half NOUN
, PUNCT
put VERB
one NUM
half NOUN
downbetween PUNCT
the DET
same ADJ
two NUM
plates NOUN
, PUNCT
and CCONJ
took VERB
another DET
K. PROPN
p. NOUN
  SPACE
The"missing VERB
half DET
" PUNCT
effect NOUN
was AUX
created VERB
by ADP
water NOUN
, PUNCT
oils NOUN
, PUNCT
etc X
. PUNCT
left VERB
behind ADV
after ADP
the DET
first ADJ
photo NOUN
. PUNCT
This DET
explanation NOUN
must AUX
be AUX
tentative ADJ
, PUNCT
because SCONJ
after ADV
all DET
I PRON
was AUX
n't PART
therewhen VERB
it PRON
happened VERB
. PUNCT
  SPACE
Regards PROPN
, PUNCT
Chris PROPN
HenrichNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59415From NUM
: PUNCT
wvhorn@magnus.acs.ohio-state.edu PROPN
( PUNCT
William PROPN
VanHorne)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>>Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>photography PUNCT
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
> X
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
> X
measure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADP
there.>>I PUNCT
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>I PROPN
am AUX
convinced VERB
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics.>>Especially ADV
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not PART
> X
drop VERB
off ADP
the DET
edge NOUN
of ADP
the DET
earth NOUN
. PUNCT
It PRON
is AUX
one NUM
thing NOUN
to PART
be AUX
open ADJ
- PUNCT
minded ADJ
about ADP
phenomona PROPN
that PRON
have AUX
notbe PROPN
demonstrated VERB
to PART
be AUX
false ADJ
, PUNCT
and CCONJ
quite DET
another DET
to PART
" PUNCT
believe VERB
" PUNCT
insomething VERB
like SCONJ
Krilian ADJ
photography NOUN
, PUNCT
where ADV
* PUNCT
all DET
* PUNCT
the DET
claimed VERB
effectshave NOUN
be AUX
demonstrated VERB
to PART
be AUX
artifacts NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
longer ADV
any DET
reasonto PROPN
adopt VERB
a DET
" PUNCT
wait VERB
and CCONJ
see VERB
" PUNCT
attitude NOUN
about ADP
Krilian ADJ
photography NOUN
, PUNCT
ithas VERB
been AUX
experimentally ADV
shown VERB
to PART
be AUX
nothing PRON
but SCONJ
simple ADJ
coronaldischarge NOUN
. PUNCT
  SPACE
The DET
" PUNCT
auras X
" PUNCT
shown VERB
by ADP
missing VERB
leaf NOUN
parts NOUN
came VERB
from ADP
moisture NOUN
left VERB
by ADP
the DET
original ADJ
whole ADJ
leaf NOUN
, PUNCT
for ADP
example NOUN
. PUNCT
  SPACE
That DET
's AUX
what PRON
science NOUN
is AUX
, PUNCT
son.---Bill ADJ
VanHorneNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59416From NUM
: PUNCT
< X
ICBAL@ASUACAD.BITNET NOUN
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1rhb0e$9ks@europa.eng.gtefsd.com NUM
> X
, PUNCT
draper@gnd1.wtp.gtefsd.com X
( PUNCT
PAMDRAPER PROPN
) PUNCT
says:>>This DET
homeopathic ADJ
remedies NOUN
. PUNCT
  SPACE
I PRON
tried VERB
the DET
dander NOUN
one NUM
for ADP
a DET
month NOUN
. PUNCT
15 NUM
drops NOUN
> X
three NUM
times NOUN
a DET
day NOUN
. PUNCT
  SPACE
I PRON
did AUX
n't PART
notice VERB
any DET
change NOUN
what PRON
s VERB
so ADV
ever ADV
. PUNCT
  SPACE
How ADV
long ADV
> X
were AUX
you PRON
using VERB
the DET
drops NOUN
before ADP
you PRON
noticed VERB
a DET
difference?>It NOUN
is AUX
NOT ADV
a DET
homeopathic ADJ
remedy NOUN
. PUNCT
Improvement NOUN
began VERB
in ADP
a DET
few ADJ
months NOUN
. PUNCT
I PRON
am AUX
allergic ADJ
to PART
bermuda VERB
grass PROPN
and CCONJ
if SCONJ
anyone PRON
nearby ADV
was AUX
mowing VERB
a DET
lawnmy NOUN
nose NOUN
would AUX
start VERB
to PART
run VERB
. PUNCT
  SPACE
Now ADV
I PRON
can AUX
walk VERB
right ADV
by ADV
and CCONJ
it PRON
does AUX
n't PART
botherme VERB
at ADV
all ADV
. PUNCT
  SPACE
The DET
same ADJ
success NOUN
with ADP
desert NOUN
ragweed NOUN
. PUNCT
   SPACE
Bruce PROPN
LongNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59417From NUM
: PUNCT
dozonoff@bu.edu PROPN
( PUNCT
david PROPN
ozonoff)Subject PROPN
: PUNCT
Re ADP
: PUNCT
food NOUN
- PUNCT
related VERB
seizures?Michael DET
Covington PROPN
( PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
: PUNCT
How ADV
about ADP
contaminants NOUN
on ADP
the DET
corn NOUN
, PUNCT
e.g. ADV
aflatoxin NOUN
? PUNCT
? PUNCT
? PUNCT
: PUNCT
Little ADJ
alflatoxin NOUN
on ADP
commercial ADJ
cereal NOUN
products NOUN
and CCONJ
certainly ADV
wouldn'tcause VERB
seizures.--David ADJ
Ozonoff PROPN
, PUNCT
MD PROPN
, PUNCT
MPH PROPN
		  SPACE
|Boston PROPN
University PROPN
School PROPN
of ADP
Public PROPN
Healthdozonoff@med-itvax1.bu.edu PROPN
	  SPACE
|80 PROPN
East PROPN
Concord PROPN
St. PROPN
, PUNCT
T3C(617 PROPN
) PUNCT
638 NUM
- SYM
4620 NUM
			  SPACE
|Boston PROPN
, PUNCT
MA PROPN
02118 NUM
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59418From NUM
: PUNCT
carl@SOL1.GPS.CALTECH.EDU NOUN
( PUNCT
Carl PROPN
J PROPN
Lydick)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1rk5miINNkju@usenet.pa.dec.com PROPN
> X
, PUNCT
stark@dwovax.enet.dec.com PROPN
( PUNCT
Todd PROPN
I. PROPN
Stark PROPN
) PUNCT
writes:=>Yup X
. PUNCT
  SPACE
The DET
demonstration NOUN
to PART
which PRON
you PRON
refer VERB
consists NOUN
of ADP
placing VERB
a DET
leaf NOUN
between=>the NOUN
plates NOUN
, PUNCT
and CCONJ
taking VERB
a DET
Kirlian ADJ
photograph NOUN
of ADP
it PRON
. PUNCT
  SPACE
You PRON
then ADV
cut VERB
off ADP
part NOUN
of=>the DET
leaf NOUN
, PUNCT
put VERB
the DET
top ADJ
plate NOUN
back ADV
on ADV
, PUNCT
and CCONJ
take VERB
another DET
Kirlian ADJ
photograph NOUN
. PUNCT
  SPACE
You=>see PROPN
pretty ADV
much ADV
the DET
same ADJ
image NOUN
in ADP
both DET
cases NOUN
. PUNCT
  SPACE
Turns VERB
out ADP
the DET
effect NOUN
isn't=>nearly ADV
so ADV
striking ADJ
if SCONJ
you PRON
take VERB
the DET
trouble NOUN
to PART
clean VERB
the DET
plates NOUN
between=>photographs NOUN
. PUNCT
  SPACE
Seems VERB
that SCONJ
the DET
moisture NOUN
from ADP
the DET
leaf NOUN
that PRON
you PRON
left VERB
on ADP
the DET
place=>conducts NOUN
electricity NOUN
. PUNCT
  SPACE
Surprise PROPN
, PUNCT
surprise!== PROPN
	 SPACE
This DET
is AUX
true ADJ
, PUNCT
but CCONJ
it PRON
's AUX
not PART
quite DET
the DET
whole ADJ
story NOUN
. PUNCT
  SPACE
There PRON
were AUX
= X
	 SPACE
actually ADV
some DET
people NOUN
who PRON
were AUX
more ADV
careful ADJ
in ADP
their PRON
methodology= PROPN
	 SPACE
who PRON
also ADV
replicated VERB
the DET
' PUNCT
phantom ADJ
leaf NOUN
effect NOUN
. PUNCT
'You PRON
can AUX
also ADV
replicate VERB
the DET
effect NOUN
with ADP
a DET
rock NOUN
: PUNCT
  SPACE
Take VERB
your PRON
first ADJ
Kirlianphotograph PROPN
. PUNCT
  SPACE
Then ADV
moisten VERB
one NUM
edge NOUN
of ADP
the DET
rock NOUN
. PUNCT
  SPACE
Lo PROPN
! PUNCT
and CCONJ
behold VERB
! PUNCT
  SPACE
Phantom PROPN
rock!--------------------------------------------------------------------------------Carl PROPN
J PROPN
Lydick PROPN
| CCONJ
INTERnet NOUN
: PUNCT
CARL@SOL1.GPS.CALTECH.EDU PROPN
| PROPN
NSI PROPN
/ SYM
HEPnet PROPN
: PUNCT
SOL1::CARLDisclaimer NOUN
: PUNCT
  SPACE
Hey INTJ
, PUNCT
I PRON
understand VERB
VAXen PROPN
and CCONJ
VMS PROPN
. PUNCT
  SPACE
That DET
's AUX
what PRON
I PRON
get VERB
paid VERB
for ADP
. PUNCT
  SPACE
Myunderstanding VERB
of ADP
astronomy NOUN
is AUX
purely ADV
at ADP
the DET
amateur ADJ
level NOUN
( PUNCT
or CCONJ
below ADV
) PUNCT
. PUNCT
  SPACE
Sounless NOUN
what PRON
I PRON
'm AUX
saying VERB
is AUX
directly ADV
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
do AUX
n't PART
hold VERB
me PRON
or CCONJ
myorganization NOUN
responsible ADJ
for ADP
it PRON
. PUNCT
  SPACE
If SCONJ
it PRON
IS VERB
related VERB
to ADP
VAX PROPN
/ SYM
VMS PROPN
, PUNCT
you PRON
can AUX
try VERB
tohold VERB
me PRON
responsible ADJ
for ADP
it PRON
, PUNCT
but CCONJ
my PRON
organization NOUN
had AUX
nothing PRON
to PART
do AUX
with ADP
it PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59419From NUM
: PUNCT
joel@cray.com X
( PUNCT
Joel PROPN
Broude)Subject PROPN
: PUNCT
Mevicore PROPN
vs. ADP
Lopid PROPN
vs. NOUN
? PUNCT
I PRON
used VERB
to PART
be AUX
on ADP
lopid PROPN
. PUNCT
  SPACE
It PRON
did AUX
a DET
good ADJ
job NOUN
of ADP
reducing VERB
cholesterol NOUN
( PUNCT
295down NUM
to ADP
around ADP
214 NUM
) PUNCT
, PUNCT
as ADV
well ADV
as SCONJ
LDL PROPN
and CCONJ
triglycerides NOUN
. PUNCT
  SPACE
Then ADV
, PUNCT
I PRON
gotpneumonia VERB
, PUNCT
and CCONJ
for ADP
some DET
reason NOUN
, PUNCT
the DET
Lopid PROPN
stopped VERB
working VERB
very ADV
well;cholesterol PROPN
and CCONJ
triglycerides NOUN
soared VERB
. PUNCT
  SPACE
The DET
levels NOUN
might AUX
have AUX
stabilizedover NOUN
time NOUN
, PUNCT
but CCONJ
a DET
new ADJ
doctor NOUN
had AUX
me PRON
quit VERB
, PUNCT
wait VERB
a DET
month NOUN
, PUNCT
then ADV
switchto VERB
Mevicore PROPN
. PUNCT
  SPACE
On ADP
Mevicore PROPN
, PUNCT
my PRON
total ADJ
cholesterol NOUN
was AUX
down ADV
to ADP
207 NUM
, PUNCT
  SPACE
LDL PROPN
was AUX
108 NUM
, PUNCT
and CCONJ
HDL PROPN
was AUX
35 NUM
; PUNCT
but CCONJ
the DET
trig NOUN
's PART
were AUX
stillvery NOUN
high ADJ
, PUNCT
around ADV
318 NUM
, PUNCT
and CCONJ
my PRON
liver NOUN
tests NOUN
came VERB
back ADV
slightly ADV
abnormal ADJ
, PUNCT
SGOT PROPN
= SYM
83 NUM
( PUNCT
N PROPN
= SYM
1 NUM
- SYM
35 NUM
) PUNCT
, PUNCT
  SPACE
GGTP(?hard NOUN
to PART
read VERB
copy NOUN
) PUNCT
= SYM
42 NUM
( PUNCT
N PROPN
= SYM
0 NUM
- SYM
35).He NUM
said VERB
the DET
liver NOUN
numbers NOUN
were AUX
not PART
offbase VERB
enough ADJ
to PART
cause VERB
himconcern ADJ
, PUNCT
and CCONJ
the DET
triglycerides NOUN
are AUX
not PART
as ADV
important ADJ
as SCONJ
the DET
cholesterolfigures NOUN
. PUNCT
  SPACE
He PRON
had AUX
me PRON
stop VERB
the DET
Mevicore PROPN
to PART
allow VERB
the DET
liver NOUN
to PART
heal VERB
( PUNCT
" PUNCT
Justto PROPN
be AUX
extra ADV
cautious ADJ
, PUNCT
though SCONJ
I PRON
'm AUX
sure ADJ
it PRON
's AUX
not PART
a DET
problem NOUN
. PUNCT
"),and PUNCT
wants VERB
me PRON
to PART
go VERB
back ADV
on ADP
it PRON
after ADP
that DET
. PUNCT
  SPACE
I PRON
suggested VERB
maybe ADV
Lopid PROPN
mightbe VERB
the DET
better ADJ
choice NOUN
, PUNCT
and CCONJ
he PRON
said VERB
that SCONJ
he PRON
would AUX
n't PART
object VERB
if SCONJ
that DET
's AUX
whatI PROPN
want VERB
to PART
do AUX
. PUNCT
  SPACE
But CCONJ
Lopid PROPN
has AUX
one NUM
particular ADJ
side NOUN
effect NOUN
I PRON
'm AUX
not PART
fond ADJ
of ADP
. PUNCT
Should AUX
the DET
above ADJ
liver NOUN
and CCONJ
trig NOUN
figures NOUN
be AUX
feared VERB
? PUNCT
  SPACE
What PRON
happens VERB
tofolks NOUN
with ADP
high ADJ
trig NOUN
levels NOUN
? PUNCT
  SPACE
Is AUX
my PRON
liver NOUN
in ADP
danger NOUN
with ADP
the DET
aboveresults NOUN
? PUNCT
  SPACE
Would AUX
I PRON
be AUX
better ADJ
off ADP
on ADP
Lopid PROPN
, PUNCT
despite SCONJ
its PRON
inconvenient ADJ
side NOUN
effect NOUN
, PUNCT
or CCONJ
, PUNCT
perhaps ADV
, PUNCT
some DET
other ADJ
drug NOUN
? PUNCT
  SPACE
( PUNCT
Niacin PROPN
affected VERB
my PRON
liver NOUN
, PUNCT
too).Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59420Subject NUM
: PUNCT
EXPERTS NOUN
ON ADP
EDWARD PROPN
JENNER PROPN
... PUNCT
LOOK!!!From PROPN
: PUNCT
pkwok@eis.calstate.edu PROPN
( PUNCT
Philip PROPN
Kwok)I PROPN
am AUX
a DET
student NOUN
from ADP
San PROPN
Leandro PROPN
High PROPN
school NOUN
. PUNCT
  SPACE
I PRON
am AUX
doing VERB
a DET
researchproject NOUN
for ADP
physics NOUN
and CCONJ
I PRON
would AUX
like VERB
information NOUN
on ADP
Edward PROPN
Jenner PROPN
and CCONJ
thevaccination NOUN
for ADP
small ADJ
pox NOUN
. PUNCT
  SPACE
Any DET
information NOUN
at ADV
all DET
would AUX
be AUX
greatlyapprectiated VERB
. PUNCT
  SPACE
Thank VERB
you PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59421From NUM
: PUNCT
kring@pamuk.physik.uni-kl.de PROPN
( PUNCT
Thomas PROPN
Kettenring)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
, PUNCT
eas3714@ultb.isc.rit.edu PROPN
( PUNCT
E.A. PROPN
Story PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1rgrsvINNmpr@gap.caltech.edu NUM
> X
carl@SOL1.GPS.CALTECH.EDU PROPN
writes VERB
: PUNCT
> X
> X
[ PUNCT
.. PUNCT
] PUNCT
It>>involves NOUN
taking VERB
photographs NOUN
of ADP
corona NOUN
discharges NOUN
created VERB
by ADP
attaching VERB
the>>subject PROPN
to ADP
a DET
high ADJ
- PUNCT
voltage NOUN
source NOUN
, PUNCT
not PART
of ADP
some DET
" PUNCT
aura NOUN
. PUNCT
" PUNCT
  SPACE
It PRON
works VERB
equally ADV
well>>with PROPN
inanimate ADJ
objects.>>True PROPN
.. PUNCT
but CCONJ
what PRON
about ADP
showing VERB
the DET
missing VERB
part NOUN
of ADP
a DET
leaf NOUN
? PUNCT
  SPACE
Is AUX
this>"corona PUNCT
discharge"?This ADJ
effect NOUN
disappears VERB
if SCONJ
you PRON
clean VERB
your PRON
apparatus NOUN
after ADP
you PRON
kirlianedthe VERB
whole ADJ
leaf NOUN
and CCONJ
before ADP
kirlianing VERB
the DET
leaf NOUN
part.--thomas PROPN
kettenring NOUN
, PUNCT
3 NUM
dan PROPN
, PUNCT
kaiserslautern PROPN
, PUNCT
germanyThe PROPN
extraterrestrials NOUN
do AUX
n't PART
even ADV
know VERB
this DET
planet NOUN
has AUX
native ADJ
inhabitants NOUN
. PUNCT
Their PRON
government NOUN
does AUX
n't PART
tell VERB
them PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59422From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject PROPN
: PUNCT
med VERB
school NOUN
admission NOUN
continued.hi X
all DET
, PUNCT
i PRON
got VERB
several ADJ
emails NOUN
and CCONJ
a DET
couple NOUN
news NOUN
replies NOUN
and CCONJ
i PRON
guess VERB
ishoulda ADV
went VERB
into ADP
more ADJ
detail NOUN
... PUNCT
Being AUX
my PRON
anxiety NOUN
level NOUN
is AUX
peaking VERB
and CCONJ
youfolks NOUN
have AUX
no DET
clue NOUN
who PRON
I PRON
am AUX
I PRON
may AUX
as ADV
well ADV
post VERB
the DET
specifics NOUN
and CCONJ
see VERB
whatyou NOUN
people NOUN
think VERB
regarding VERB
my PRON
previous ADJ
post NOUN
. PUNCT
To PART
recap PROPN
i PRON
applied VERB
to ADP
20 NUM
schools NOUN
total ADJ
, PUNCT
16 NUM
of ADP
which PRON
were AUX
MD PROPN
and CCONJ
4 NUM
DO.as PUNCT
it PRON
stands VERB
now ADV
i PRON
have AUX
had VERB
13 NUM
rejects NOUN
, PUNCT
4 NUM
interviews NOUN
( PUNCT
2 NUM
MD PROPN
and CCONJ
2 NUM
DO PROPN
) PUNCT
, PUNCT
theresults NOUN
of ADP
which PRON
are AUX
2 NUM
waiting NOUN
lists NOUN
( PUNCT
1 NUM
MD PROPN
and CCONJ
one NUM
DO)3 PROPN
schools NOUN
i PRON
heard VERB
nothing PRON
from ADP
at ADV
all ADV
. PUNCT
I PRON
have AUX
contacted VERB
all DET
institutions NOUN
other ADJ
than SCONJ
the DET
rejects NOUN
and CCONJ
they PRON
have AUX
noinfo PROPN
whatsoever ADV
to PART
tell VERB
me PRON
. PUNCT
I PRON
have AUX
taken VERB
a DET
good ADJ
mix NOUN
to PART
apply VERB
to ADP
.. PUNCT
2 NUM
- SYM
3 NUM
top ADJ
schools NOUN
a DET
bunch NOUN
of ADP
middlesand NOUN
a DET
few ADJ
" PUNCT
safety NOUN
" PUNCT
  SPACE
( PUNCT
funny ADJ
that SCONJ
most ADJ
of ADP
my PRON
safety NOUN
schools NOUN
were AUX
the DET
firstto NOUN
reject VERB
me)my PROPN
index NOUN
is AUX
at ADP
like SCONJ
a DET
3.5 NUM
mcats NOUN
were AUX
R7 PROPN
P9 PROPN
B10 PROPN
WQ NOUN
and CCONJ
R7 PROPN
P9 PROPN
B11 PROPN
WRI PROPN
could AUX
nt PART
get AUX
the DET
damn ADJ
reading VERB
score VERB
up ADV
... PUNCT
i PRON
never ADV
stuff VERB
like SCONJ
arthistory NOUN
, PUNCT
politics NOUN
etc X
I PRON
ve VERB
done VERB
medical ADJ
research NOUN
at ADP
the DET
undergrad ADJ
level NOUN
, PUNCT
done VERB
clinical ADJ
lab NOUN
workfor NOUN
years NOUN
now ADV
, PUNCT
but CCONJ
unfortunately ADV
i PRON
have AUX
no DET
patient ADJ
contact NOUN
experience NOUN
. PUNCT
I PRON
ca AUX
nt PART
think VERB
of ADP
what PRON
else ADV
i PRON
left VERB
out ADP
... PUNCT
but CCONJ
that DET
s VERB
the DET
summary NOUN
. PUNCT
Whatpercent NOUN
of ADP
people NOUN
are AUX
usually ADV
called VERB
from ADP
the DET
waiting VERB
lists NOUN
on ADP
an DET
average?I PROPN
felt VERB
that SCONJ
my PRON
interviews NOUN
went VERB
quite ADV
well ADV
yet ADV
i PRON
do AUX
nt PART
have AUX
a DET
firmacceptance NOUN
in ADP
my PRON
hand NOUN
... PUNCT
anyone PRON
have AUX
any DET
suggestions NOUN
as SCONJ
to PART
calm VERB
themailbox NOUN
anxiety NOUN
? PUNCT
  SPACE
If SCONJ
you PRON
premeds VERB
out ADV
there ADV
or CCONJ
med VERB
students NOUN
have AUX
any DET
questions NOUN
or CCONJ
commentsfor VERB
me PRON
feel VERB
free ADJ
to PART
send VERB
them PRON
down ADP
... PUNCT
Typing NOUN
is AUX
a DET
form NOUN
of ADP
anti ADJ
- ADJ
anxietythereapy ADJ
hehehehe NOUN
: PUNCT
) PUNCT
-- PUNCT
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59423From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Re ADP
: PUNCT
med PROPN
schoolJohn PROPN
Carey PROPN
( PUNCT
jcarey@news.weeg.uiowa.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Actually ADV
I PRON
am AUX
entering VERB
vet NOUN
school NOUN
next ADJ
year NOUN
, PUNCT
but CCONJ
the DET
question NOUN
is AUX
: PUNCT
relevant ADJ
for ADP
med ADJ
students NOUN
too ADV
. PUNCT
: PUNCT
Memorizing VERB
large ADJ
amounts NOUN
has AUX
never ADV
been AUX
my PRON
strong ADJ
point NOUN
academically ADV
. PUNCT
: PUNCT
Since SCONJ
this DET
is AUX
a DET
major ADJ
portion NOUN
of ADP
medical ADJ
education NOUN
-- PUNCT
anatomy NOUN
, PUNCT
: PUNCT
histology NOUN
, PUNCT
pathology NOUN
, PUNCT
pharmacology NOUN
, PUNCT
are AUX
for ADP
the DET
most ADJ
part NOUN
mass NOUN
: PUNCT
memorization NOUN
-- PUNCT
I PRON
am AUX
a DET
little ADV
concerned ADJ
. PUNCT
  SPACE
As SCONJ
I PRON
am AUX
sure ADJ
most ADV
: PUNCT
med VERB
students NOUN
are AUX
. PUNCT
: PUNCT
Can AUX
anyone PRON
suggest VERB
techniques NOUN
for ADP
this DET
type NOUN
of ADP
memorization NOUN
? PUNCT
  SPACE
I PRON
: PUNCT
have AUX
had VERB
reasonable ADJ
success NOUN
with ADP
nemonics NOUN
and CCONJ
memory NOUN
tricks NOUN
like SCONJ
: PUNCT
thinking VERB
up ADP
little ADJ
stories NOUN
to PART
associate VERB
unrelated ADJ
things NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
have AUX
: PUNCT
never ADV
applied VERB
them PRON
to ADP
large ADJ
amounts NOUN
of ADP
" PUNCT
data NOUN
" PUNCT
. PUNCT
: PUNCT
Has AUX
anyone PRON
had AUX
luck NOUN
with ADP
any DET
particular ADJ
books NOUN
, PUNCT
memory NOUN
systems NOUN
, PUNCT
or CCONJ
: PUNCT
cheap ADJ
software NOUN
? PUNCT
   SPACE
: PUNCT
Can AUX
you PRON
suggest VERB
any DET
helpful ADJ
organizational ADJ
techniques NOUN
? PUNCT
  SPACE
Being AUX
an DET
: PUNCT
older ADJ
student NOUN
who PRON
returned VERB
to ADP
school NOUN
this DET
year NOUN
, PUNCT
organization NOUN
( PUNCT
another DET
: PUNCT
one NUM
of ADP
my PRON
weak ADJ
points NOUN
) PUNCT
has AUX
been AUX
a DET
major ADJ
help NOUN
to ADP
my PRON
success NOUN
. PUNCT
: PUNCT
Please INTJ
no DET
griping NOUN
about ADP
how ADV
all DET
you PRON
have AUX
to PART
do AUX
is AUX
" PUNCT
learn VERB
" PUNCT
the DET
material NOUN
: PUNCT
conceptually ADV
. PUNCT
  SPACE
I PRON
have AUX
no DET
problem NOUN
with ADP
that DET
, PUNCT
it PRON
is AUX
one NUM
of ADP
my PRON
strong ADJ
: PUNCT
points NOUN
. PUNCT
  SPACE
But CCONJ
you PRON
ca AUX
n't PART
get AUX
around ADP
the DET
fact NOUN
that SCONJ
much ADJ
of ADP
medicine NOUN
is AUX
: PUNCT
rote VERB
memorization NOUN
. PUNCT
  SPACE
: PUNCT
Thanks NOUN
for ADP
your PRON
help NOUN
. PUNCT
The DET
only ADJ
suggestion NOUN
i PRON
can AUX
think VERB
of ADP
off ADP
the DET
top NOUN
of ADP
my PRON
head NOUN
is AUX
get AUX
a DET
largesupply NOUN
of ADP
index NOUN
cards NOUN
and CCONJ
memorize VERB
small ADJ
amounts NOUN
of ADP
info NOUN
at ADP
a DET
time NOUN
, PUNCT
makingflash NOUN
cards NOUN
and CCONJ
quesitons NOUN
. PUNCT
Everytime ADV
i PRON
get VERB
a DET
question NOUN
wrong ADJ
I PRON
alwaysmanage VERB
to PART
get AUX
the DET
damn ADJ
thing NOUN
right INTJ
the DET
next ADJ
time NOUN
-- PUNCT
          SPACE
/\ PROPN
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59424From NUM
: PUNCT
hoss@panix.com X
( PUNCT
Felix PROPN
the DET
Cat)Subject NOUN
: PUNCT
Re ADP
: PUNCT
A DET
Good ADJ
place NOUN
for ADP
Back PROPN
Surgery PROPN
? PUNCT
: PUNCT
gary.schuetter NOUN
( PUNCT
garyws@cbnewsg.cb.att.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
: PUNCT
	 SPACE
: PUNCT
: PUNCT
         SPACE
Hello INTJ
, PUNCT
: PUNCT
: PUNCT
         SPACE
Just ADV
one NUM
quick ADJ
question NOUN
: PUNCT
: PUNCT
: PUNCT
         SPACE
My PRON
father NOUN
has AUX
had VERB
a DET
back ADJ
problem NOUN
for ADP
a DET
long ADJ
time NOUN
and CCONJ
doctors NOUN
: PUNCT
: PUNCT
         SPACE
have AUX
diagnosed VERB
an DET
operation NOUN
is AUX
needed VERB
. PUNCT
Since SCONJ
he PRON
lives VERB
down ADP
in ADP
: PUNCT
: PUNCT
         SPACE
Mexico PROPN
, PUNCT
he PRON
wants VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
a DET
hospital NOUN
anywhere ADV
in ADV
: PUNCT
: PUNCT
         SPACE
the DET
United PROPN
States PROPN
particulary NOUN
famous ADJ
for ADP
this DET
kind NOUN
of ADP
surgery NOUN
, PUNCT
: PUNCT
: PUNCT
         SPACE
kind ADV
of ADV
like SCONJ
Houston PROPN
has AUX
a DET
reputation NOUN
for ADP
excellent ADJ
doctors NOUN
: PUNCT
: PUNCT
         SPACE
in ADP
eye NOUN
surgery NOUN
. PUNCT
Any DET
additional ADJ
info NOUN
or CCONJ
pointers NOUN
will AUX
be AUX
: PUNCT
: PUNCT
         SPACE
appreciated VERB
a DET
whole ADJ
lot NOUN
! PUNCT
... PUNCT
: PUNCT
There PRON
is AUX
one NUM
hospital NOUN
that PRON
is AUX
here ADV
in ADP
New PROPN
York PROPN
City PROPN
that PRON
is AUX
famous ADJ
for ADP
its PRON
: PUNCT
orthopedists NOUN
, PUNCT
namely ADV
the DET
Hospital PROPN
for ADP
Special PROPN
Surgery PROPN
. PUNCT
They PRON
are AUX
located VERB
on ADP
: PUNCT
the DET
upper PROPN
east PROPN
side NOUN
of ADP
manhattan PROPN
. PUNCT
If SCONJ
you PRON
want VERB
their PRON
address NOUN
and CCONJ
phone NOUN
let VERB
: PUNCT
me PRON
know VERB
, PUNCT
i PRON
'll AUX
get AUX
them PRON
, PUNCT
i PRON
do AUX
nt PART
know VERB
them PRON
off ADP
hand.for PROPN
those DET
who PRON
are AUX
interested ADJ
the DET
hospitals NOUN
i PRON
was AUX
referring VERB
to ADP
are AUX
: PUNCT
The DET
Hospital PROPN
for ADP
Special PROPN
Surgery535 PROPN
East PROPN
70th NOUN
StreetNew PROPN
York PROPN
, PUNCT
NY PROPN
10021212 NUM
- SYM
606 NUM
- PUNCT
1555 NUM
( PUNCT
Physician PROPN
Referral PROPN
Service PROPN
& CCONJ
info NOUN
) PUNCT
The DET
Hospital PROPN
for ADP
Joint PROPN
Diseases301 PROPN
East PROPN
17th NOUN
StreetNew PROPN
York PROPN
, PUNCT
NY PROPN
10003212 NUM
- SYM
598 NUM
- PUNCT
7600 NUM
- PUNCT
- PUNCT
          SPACE
/\ PUNCT
_ PROPN
/\ PUNCT
          SPACE
| PROPN
            SPACE
Felix PROPN
The DET
Cat PROPN
        SPACE
| PROPN
  SPACE
0 NUM
0 NUM
  SPACE
|-------\== NOUN
     SPACE
The DET
Wonderful ADJ
, PUNCT
Wonderful ADJ
Cat NOUN
! PUNCT
                          SPACE
\==@==/\ NOUN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
\ PROPN
| PROPN
     SPACE
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
Meow!--- PROPN
\_-_/ PROPN
  SPACE
|| PROPN
     SPACE
|| SYM
            SPACE
hoss@panix.comNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59425From NUM
: PUNCT
oldman@coos.dartmouth.edu PROPN
( PUNCT
Prakash PROPN
Das)Subject VERB
: PUNCT
Re ADP
: PUNCT
Is AUX
MSG PROPN
sensitivity NOUN
superstition?In PROPN
article NOUN
< X
1993Apr26.143101.4307@llyene.jpl.nasa.gov NUM
> X
julie@eddie.jpl.nasa.gov PROPN
( PUNCT
Julie PROPN
Kangas PROPN
) PUNCT
writes:>>I VERB
get AUX
tired ADJ
of ADP
people NOUN
saying VERB
' PUNCT
do AUX
n't PART
eat VERB
X NOUN
because SCONJ
> X
it PRON
's AUX
BAD ADJ
! PUNCT
' PUNCT
  SPACE
Well INTJ
, PUNCT
X PROPN
may AUX
not PART
be AUX
bad ADJ
for ADP
everyone PRON
. PUNCT
  SPACE
And CCONJ
even ADV
if SCONJ
> X
it PRON
is AUX
, PUNCT
so ADV
what PRON
? PUNCT
  SPACE
Give VERB
people NOUN
all DET
the DET
information NOUN
but CCONJ
do AUX
n't PART
ram VERB
> X
your PRON
decisions NOUN
down ADP
their PRON
throats.>It NUM
is AUX
evident ADJ
you PRON
did AUX
not PART
read VERB
my PRON
post NOUN
carefully ADV
. PUNCT
I PRON
wasn'ttrying VERB
to PART
tell VERB
you PRON
not PART
to PART
eat VERB
MSG NOUN
products NOUN
and CCONJ
produce VERB
, PUNCT
nor CCONJ
was AUX
Iarguing VERB
for ADP
or CCONJ
against ADP
MSG PROPN
. PUNCT
I PRON
was AUX
simply ADV
questioning VERB
the DET
logic NOUN
ofyour PRON
statement NOUN
that SCONJ
simply ADV
because(a PROPN
) PUNCT
one NUM
is AUX
not PART
allergic ADJ
to ADP
something PRON
, PUNCT
and(b PROPN
) PUNCT
likes VERB
eating VERB
thatit NOUN
follows VERB
that SCONJ
one PRON
could AUX
keep VERB
eating VERB
whatever PRON
it PRON
is AUX
. PUNCT
In ADP
my PRON
post NOUN
, PUNCT
I PRON
had AUX
clearly ADV
said VERB
that SCONJ
I PRON
do AUX
n't PART
know VERB
enough ADJ
about ADP
MSG.The ADJ
statement NOUN
" PUNCT
do AUX
n't PART
eat VERB
X NOUN
because SCONJ
its PRON
bad ADJ
" PUNCT
is AUX
just ADV
_ VERB
your PRON
_ DET
interpretation NOUN
of ADP
nutritional ADJ
info NOUN
out ADV
there ADV
. PUNCT
Prakash NOUN
DasNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59426From NUM
: PUNCT
tad@ssc.com X
( PUNCT
Tad PROPN
Cook)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr26.120417.22328@linus.mitre.org NUM
> X
gpivar@mitre.org(The PROPN
Pancake PROPN
Emporium PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr22.211005.21578@scorch.apana.org.au NUM
> X
, PUNCT
bill@scorch.apana.org.au PROPN
( PUNCT
Bill PROPN
Dowding PROPN
) PUNCT
writes:>| PUNCT
> X
todamhyp@charles.unlv.edu NUM
( PUNCT
Brian PROPN
M. PROPN
Huey PROPN
) PUNCT
writes:>| PUNCT
> X
> X
| CCONJ
> X
> X
I PRON
think VERB
that DET
's AUX
the DET
correct ADJ
spelling NOUN
.. PUNCT
>| PROPN
> X
> X
	 SPACE
I PRON
am AUX
looking VERB
for ADP
any DET
information NOUN
/ SYM
supplies NOUN
that PRON
will AUX
allow>| VERB
> X
> X
do AUX
- PUNCT
it PRON
- PUNCT
yourselfers NOUN
to PART
take VERB
Krillean PROPN
Pictures PROPN
. PUNCT
I PRON
'm AUX
thinking>| NOUN
> X
> X
that SCONJ
education NOUN
suppliers NOUN
for ADP
schools NOUN
might AUX
have AUX
a DET
appartus NOUN
for>| PROPN
> X
> X
sale NOUN
, PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
companies NOUN
. PUNCT
Any DET
info NOUN
is AUX
greatly>| PROPN
> X
> X
appreciated.>| PROPN
> X
> X
| ADV
> X
Krillean PROPN
photography NOUN
involves VERB
taking VERB
pictures NOUN
of ADP
minute NOUN
decapods NOUN
resident NOUN
in ADP
> X
| CCONJ
> X
the DET
seas NOUN
surrounding VERB
the DET
antarctic NOUN
. PUNCT
Or CCONJ
pictures NOUN
taken VERB
by ADP
them PRON
, PUNCT
perhaps.>| PROPN
> X
> X
| CCONJ
> X
Bill PROPN
from ADP
oz>| PROPN
> X
> X
> X
> X
Bill,>No PROPN
flame NOUN
intended VERB
but CCONJ
you PRON
're AUX
way NOUN
, PUNCT
way NOUN
off ADP
base NOUN
. PUNCT
In ADP
simple ADJ
terms NOUN
Kirilian ADJ
> PROPN
photography NOUN
registers VERB
the DET
electromagnetical ADJ
fields NOUN
around ADP
objects NOUN
, PUNCT
in ADP
simple,>it PROPN
takes VERB
pictures NOUN
of ADP
your PRON
aura.>| NOUN
> X
> X
> X
-- PUNCT
> X
Greg PROPN
> X
You PRON
're AUX
confused ADJ
. PUNCT
  SPACE
You PRON
are AUX
talking VERB
about ADP
KIRILIAN PROPN
photography NOUN
. PUNCT
Bill PROPN
is AUX
talking VERB
KRILLEAN PROPN
photography.-- PROPN
   SPACE
| PROPN
   SPACE
tad@ssc.com X
  SPACE
( PUNCT
if SCONJ
it PRON
bounces VERB
, PUNCT
use VERB
3288544@mcimail.com NOUN
) PUNCT
   SPACE
| PROPN
  SPACE
| CCONJ
   SPACE
Tad PROPN
Cook PROPN
     SPACE
| NOUN
  SPACE
Packet PROPN
Amateur PROPN
Radio PROPN
: PUNCT
  SPACE
| ADP
  SPACE
Home PROPN
Phone PROPN
: PUNCT
   SPACE
| PROPN
  SPACE
| PROPN
   SPACE
Seattle PROPN
, PUNCT
WA PROPN
  SPACE
| ADP
  SPACE
KT7H PROPN
@ ADP
N7DUO.WA.USA.NA PROPN
| ADJ
  SPACE
206 NUM
- PUNCT
527 NUM
- PUNCT
4089 NUM
  SPACE
|Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59427From NUM
: PUNCT
ac940@Freenet.carleton.ca PROPN
( PUNCT
Lau PROPN
Hon PROPN
- PUNCT
Wah)Subject NOUN
: PUNCT
Copper PROPN
Bracelet PROPN
( PUNCT
Sabona PROPN
by ADP
Dr. PROPN
John PROPN
Sorenson)I NOUN
have AUX
seen VERB
Copper PROPN
Bracelet PROPN
by ADP
the DET
name NOUN
of ADP
Sabona PROPN
created VERB
by ADP
Dr. PROPN
JohnSorenson PROPN
. PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
literature NOUN
on ADP
the DET
effectiveness NOUN
of ADP
CopperBracelet PROPN
in ADP
dealing VERB
with ADP
Arthritis PROPN
. PUNCT
I PRON
know VERB
in ADP
one NUM
case NOUN
a DET
70-year NUM
old ADJ
person NOUN
developed VERB
bruise NOUN
at ADP
the DET
base NOUN
of ADP
herleft ADJ
thumb NOUN
after ADP
wearing VERB
the DET
copper NOUN
bracelet NOUN
on ADP
her PRON
left ADJ
wrist NOUN
for ADP
severalmonths NOUN
. PUNCT
  SPACE
She PRON
was AUX
told VERB
the DET
bruise NOUN
is AUX
" PUNCT
normal ADJ
" PUNCT
and CCONJ
would AUX
disappear VERB
. PUNCT
Is AUX
the DET
bruise NOUN
reason NOUN
to PART
be AUX
concerned?Should AUX
the DET
person NOUN
discontinued VERB
wearing VERB
the DET
copper NOUN
bracelet?Could NOUN
anyone PRON
kindly ADV
point VERB
me PRON
to PART
literature VERB
on ADP
copper NOUN
bracelet?What PROPN
are AUX
the DET
other ADJ
information NOUN
on ADP
copper NOUN
bracelet?Your PROPN
response NOUN
would AUX
be AUX
very ADV
much ADV
appreciated VERB
. PUNCT
Thank VERB
you PRON
. PUNCT
Lau PROPN
Hon PROPN
- PUNCT
Wah-- PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59428From NUM
: PUNCT
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder)Subject PROPN
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesDoes CCONJ
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someonewas NOUN
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
wouldbe VERB
liable ADJ
to PART
happen VERB
to ADP
the DET
person?(Just NOUN
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
myhouse NOUN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case'.)RebeccaNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59429From NUM
: PUNCT
help4@dcs2.dc PROPN
( PUNCT
len VERB
ramirez)Subject ADJ
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographyvery PROPN
good ADJ
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59430From NUM
: PUNCT
ohandley@betsy.gsfc.nasa.govSubject NUM
: PUNCT
Schatzki PROPN
Ring/ PROPN
PVC'sCan NUM
anybody PRON
out ADV
there ADV
provide VERB
me PRON
with ADP
any DET
advice NOUN
concerning VERB
thefollowing VERB
two NUM
health NOUN
problems NOUN
: PUNCT
First ADV
, PUNCT
I PRON
was AUX
recently ADV
diagnosed VERB
( PUNCT
using VERB
a DET
UGI PROPN
series NOUN
) PUNCT
as SCONJ
having VERB
aSchatzki PROPN
ring NOUN
and CCONJ
small ADJ
sliding VERB
hiatal ADJ
hernia NOUN
. PUNCT
As SCONJ
I PRON
understand VERB
it PRON
, PUNCT
the DET
hernia PROPN
is AUX
a DET
relatively ADV
minor ADJ
problem NOUN
, PUNCT
though SCONJ
I PRON
do AUX
occasionallyhave ADP
some DET
nasty ADJ
heartburn NOUN
that PRON
is AUX
probably ADV
related ADJ
to ADP
it PRON
. PUNCT
The DET
Schatzkiring NOUN
, PUNCT
on ADP
the DET
other ADJ
hand NOUN
, PUNCT
is AUX
causing VERB
swallowing VERB
difficulty NOUN
. PUNCT
In ADP
particular ADJ
, PUNCT
if SCONJ
I PRON
'm AUX
not PART
careful ADJ
about ADP
eating VERB
slowly ADV
, PUNCT
and CCONJ
thoroughly ADV
chewing VERB
food NOUN
, PUNCT
food NOUN
occasionally ADV
gets VERB
" PUNCT
stuck ADJ
" PUNCT
before ADP
reaching VERB
my PRON
stomach NOUN
. PUNCT
This DET
resultsin NOUN
a DET
period NOUN
of ADP
painful ADJ
spasms NOUN
as SCONJ
the DET
food NOUN
attempts VERB
to PART
pass VERB
the DET
obstruction NOUN
. PUNCT
Fortunately ADV
, PUNCT
the DET
food NOUN
has AUX
always ADV
managed VERB
to PART
pass VERB
, PUNCT
but CCONJ
this DET
is AUX
annoying ADJ
, PUNCT
and CCONJ
causes VERB
frequent ADJ
discomfort NOUN
. PUNCT
My PRON
doctor NOUN
wants VERB
to PART
" PUNCT
dilate VERB
" PUNCT
the DET
ring NOUN
using VERB
thefollowing VERB
procedure NOUN
: PUNCT
use VERB
an DET
endoscope NOUN
to PART
examine VERB
the DET
esophagus NOUN
and CCONJ
stomachfor VERB
any DET
inflammation NOUN
, PUNCT
then ADV
cut VERB
through ADP
the DET
ring NOUN
and CCONJ
dilate VERB
it PRON
by ADP
passingsome PROPN
kind NOUN
of ADP
balloon NOUN
or CCONJ
something PRON
thru ADP
the DET
esophagous ADJ
. PUNCT
I PRON
would AUX
like VERB
to ADP
knowif NOUN
anyone PRON
out ADV
there ADV
has AUX
had VERB
this DET
( PUNCT
or CCONJ
a DET
similar ADJ
) PUNCT
procedure NOUN
done VERB
- PUNCT
if NOUN
so ADV
, PUNCT
was AUX
it PRON
painful ADJ
, PUNCT
successful ADJ
, PUNCT
etc X
. PUNCT
Also ADV
, PUNCT
can AUX
anyone PRON
  SPACE
comment VERB
onsafety NOUN
, PUNCT
advisability NOUN
, PUNCT
and CCONJ
success NOUN
rate NOUN
of ADP
this DET
procedure NOUN
? PUNCT
Has AUX
it PRON
becomea VERB
common ADJ
procedure NOUN
? PUNCT
I PRON
am AUX
kind ADV
of ADV
leery ADJ
of ADP
having VERB
such DET
an DET
invasive ADJ
- PUNCT
soundingprocedure NOUN
performed VERB
for ADP
a DET
( PUNCT
currently ADV
) PUNCT
non ADJ
- ADJ
threatening ADJ
condition NOUN
such ADJ
as SCONJ
this DET
, PUNCT
especially ADV
considering VERB
the DET
possible ADJ
side NOUN
effects NOUN
( PUNCT
bleeding NOUN
, PUNCT
perforation NOUN
, PUNCT
reaction NOUN
to ADP
anesthesia).The DET
second ADJ
issue NOUN
: PUNCT
for ADP
the DET
past ADJ
3 NUM
- SYM
4 NUM
years NOUN
I PRON
have AUX
had VERB
a DET
large ADJ
numberof NOUN
" PUNCT
extra ADJ
" PUNCT
heartbeats NOUN
. PUNCT
In ADP
particular ADJ
, PUNCT
during ADP
the DET
past ADJ
month NOUN
or CCONJ
so ADV
therehas ADJ
been AUX
a DET
dramatic ADJ
increase NOUN
- PUNCT
a DET
Holter ADJ
monitor NOUN
recently ADV
showed VERB
50 NUM
PVC PROPN
's PART
in ADP
24hrs NUM
, PUNCT
along ADP
with ADP
a DET
few ADJ
PAC PROPN
's PART
. PUNCT
( PUNCT
Many ADJ
days NOUN
, PUNCT
there PRON
are AUX
far ADV
more ADJ
than SCONJ
this DET
, PUNCT
however ADV
- PUNCT
five NUM
to PART
ten NUM
per ADP
hour NOUN
) PUNCT
. PUNCT
All DET
of ADP
them PRON
were AUX
isolated VERB
, PUNCT
and CCONJ
the DET
cardiologistindicated ADJ
that SCONJ
such DET
a DET
number NOUN
was AUX
" PUNCT
normal ADJ
" PUNCT
. PUNCT
It PRON
certainly ADV
doesn'tfeel VERB
normal ADJ
. PUNCT
In ADP
the DET
past NOUN
there PRON
have AUX
also ADV
been AUX
a DET
couple NOUN
of ADP
episodes NOUN
ofextended VERB
" PUNCT
runs NOUN
" PUNCT
of ADP
these DET
beats NOUN
, PUNCT
one NUM
of ADP
which PRON
lasted VERB
long ADV
enough ADV
to PART
causesevere VERB
light ADJ
- PUNCT
headedness NOUN
. PUNCT
I PRON
am AUX
relatively ADV
young ADJ
( PUNCT
30-ish NUM
) PUNCT
, PUNCT
thin ADJ
and CCONJ
in ADP
goodhealth PROPN
( PUNCT
recent ADJ
bloodtests NOUN
were AUX
all DET
normal ADJ
) PUNCT
, PUNCT
and CCONJ
do AUX
not PART
smoke VERB
, PUNCT
use VERB
drugs NOUN
orcaffeine ADJ
, PUNCT
etc X
. PUNCT
I PRON
'm AUX
willing ADJ
to PART
accept VERB
the DET
extra ADJ
beats NOUN
as SCONJ
" PUNCT
normal ADJ
" PUNCT
, PUNCT
but CCONJ
don'twant VERB
to PART
ignore VERB
them PRON
if SCONJ
they PRON
might AUX
be AUX
some DET
kind NOUN
of ADP
warning NOUN
symptom NOUN
. PUNCT
The DET
numberof NOUN
PVC PROPN
's PART
seems VERB
to PART
increase VERB
throughout ADP
the DET
day NOUN
, PUNCT
and CCONJ
with ADP
exercise NOUN
( PUNCT
or CCONJ
somethingas NOUN
simple ADJ
as SCONJ
climbing VERB
some DET
stairs NOUN
) PUNCT
. PUNCT
Also ADV
, PUNCT
if SCONJ
I PRON
get VERB
up ADP
after ADP
sitting VERB
or CCONJ
lyingdown VERB
for ADP
a DET
while NOUN
, PUNCT
I PRON
tend VERB
to PART
get AUX
a DET
couple NOUN
of ADP
extra ADJ
beats NOUN
. PUNCT
Could AUX
they PRON
possiblybe ADV
related ADJ
to ADP
the DET
esophagous ADJ
problems NOUN
? PUNCT
Both DET
seemed VERB
to PART
develop VERB
at ADP
about ADP
thesame NOUN
time NOUN
. PUNCT
Thanks NOUN
for ADP
any DET
help NOUN
/ SYM
advice!==============================================================================================================================================================Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59431From NUM
: PUNCT
rmccown@world.std.com PROPN
( PUNCT
Bob PROPN
McCown)Subject PROPN
: PUNCT
Miscelaneous ADJ
soon ADV
- PUNCT
to PART
- PUNCT
have AUX
- PUNCT
baby NOUN
questionsWe're NOUN
about ADJ
to PART
have AUX
our PRON
first ADJ
baby NOUN
, PUNCT
and CCONJ
have AUX
a DET
few ADJ
questions NOUN
that PRON
wedont VERB
seem VERB
to PART
be AUX
able ADJ
to PART
get AUX
answered VERB
to ADP
our PRON
satisfaction NOUN
. PUNCT
Reguarding VERB
having VERB
a DET
baby NOUN
boy NOUN
circumsized VERB
, PUNCT
what PRON
are AUX
the DET
medical ADJ
prosand NOUN
cons NOUN
? PUNCT
  SPACE
All DET
we PRON
've AUX
heard VERB
is AUX
' PUNCT
its PRON
up ADP
to ADP
the DET
parents' PROPN
. PUNCT
How ADV
about ADP
the DET
pregnant ADJ
woman NOUN
sitting VERB
in ADP
a DET
tub NOUN
of ADP
water NOUN
? PUNCT
  SPACE
We PRON
've AUX
heard VERB
stories NOUN
of ADP
infection NOUN
, PUNCT
etc X
. PUNCT
  SPACE
How ADV
about ADP
after ADP
the DET
water NOUN
has AUX
broken?rmccown@world.std.comOld PROPN
MacDonald PROPN
had AUX
an DET
agricultural ADJ
real ADJ
estate NOUN
tax NOUN
abatement NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59432From NUM
: PUNCT
cfaks@ux1.cts.eiu.edu NOUN
( PUNCT
Alice PROPN
Sanders)Subject NUM
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesA PROPN
student NOUN
told VERB
me PRON
today NOUN
that SCONJ
she PRON
has AUX
been AUX
diagnosed VERB
with ADP
kidney NOUN
stones NOUN
, PUNCT
acyst VERB
on ADP
one NUM
kidney NOUN
, PUNCT
and CCONJ
a DET
kidney NOUN
infection NOUN
. PUNCT
  SPACE
She PRON
was AUX
upset ADJ
because SCONJ
hercondition NOUN
had AUX
been AUX
misdiagnosed VERB
since SCONJ
last ADJ
fall NOUN
, PUNCT
and CCONJ
she PRON
has AUX
been AUX
ill ADJ
allthis DET
time NOUN
. PUNCT
  SPACE
During ADP
her PRON
most ADV
recent ADJ
doctor NOUN
's PART
appointment NOUN
at ADP
her PRON
parents'HMO PROPN
clinic NOUN
, PUNCT
she PRON
said VERB
that SCONJ
about ADP
FORTY PROPN
! PUNCT
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
of ADP
her PRON
kidney NOUN
. PUNCT
When ADV
she PRON
asked VERB
why ADV
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
were AUX
being AUX
made VERB
, PUNCT
she PRON
was AUX
told VERB
by ADP
atechnician PROPN
that SCONJ
they PRON
need VERB
to PART
see VERB
the DET
area NOUN
from ADP
different ADJ
views NOUN
, PUNCT
but CCONJ
shesays NOUN
that SCONJ
about ADV
five NUM
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
from ADP
EACH PROPN
angle NOUN
. PUNCT
  SPACE
She PRON
could AUX
n't PART
helpfeeling VERB
that SCONJ
something PRON
must AUX
be AUX
wrong ADJ
with ADP
the DET
procedure NOUN
or CCONJ
something PRON
. PUNCT
  SPACE
Sheis PROPN
a DET
pre ADJ
- ADJ
med ADJ
student NOUN
and CCONJ
feels VERB
she PRON
could AUX
have AUX
understood VERB
what PRON
washappening VERB
if SCONJ
someone PRON
would AUX
have AUX
explained VERB
. PUNCT
  SPACE
When ADV
nobody PRON
would AUX
, PUNCT
she PRON
gotworried VERB
. PUNCT
	 SPACE
Also ADV
, PUNCT
she PRON
is AUX
told VERB
that SCONJ
thre PROPN
are AUX
300 NUM
! PUNCT
surgery NOUN
patients NOUN
ahead ADV
of ADP
herand NOUN
that SCONJ
they PRON
can AUX
not PART
do AUX
surgery NOUN
until ADP
August PROPN
or CCONJ
so ADV
. PUNCT
  SPACE
It PRON
is AUX
now ADV
April PROPN
... PUNCT
She PRON
is AUX
supposed VERB
to PART
rest VERB
a DET
lot NOUN
and CCONJ
drink NOUN
fluids NOUN
. PUNCT
  SPACE
But CCONJ
she PRON
has AUX
to PART
go VERB
toclasses NOUN
. PUNCT
  SPACE
She PRON
wonders VERB
why ADV
they PRON
have AUX
given VERB
her PRON
no DET
medicine NOUN
. PUNCT
  SPACE
She PRON
plans VERB
tocall NOUN
back ADV
her PRON
doctor NOUN
's PART
office NOUN
/ SYM
clinic NOUN
and CCONJ
try VERB
to PART
get AUX
answers NOUN
to ADP
thesequestions NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
told VERB
her PRON
I PRON
would AUX
also ADV
write VERB
in ADP
to ADP
sci.med VERB
and CCONJ
see VERB
what PRON
Icould AUX
find VERB
out ADP
about ADP
why ADV
there PRON
were AUX
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
and CCONJ
whether SCONJ
it PRON
seemso.k PROPN
. PUNCT
to PART
wait VERB
in ADP
line NOUN
3 NUM
or CCONJ
more ADJ
months NOUN
for ADP
surgery NOUN
for ADP
something PRON
like SCONJ
thisor VERB
whether SCONJ
she PRON
should AUX
be AUX
looking VERB
elsewhere ADV
for ADP
her PRON
care NOUN
. PUNCT
  SPACE
She PRON
does AUX
plan VERB
toget VERB
a DET
second ADJ
opinion NOUN
, PUNCT
too ADV
. PUNCT
	 SPACE
I PRON
will AUX
pass VERB
info NOUN
on ADP
to ADP
her PRON
. PUNCT
  SPACE
It PRON
never ADV
hurts VERB
to PART
get AUX
informationfrom ADP
more ADJ
than SCONJ
one NUM
source NOUN
. PUNCT
  SPACE
You PRON
can AUX
e NOUN
- VERB
mail VERB
me PRON
or CCONJ
post VERB
. PUNCT
Thanks NOUN
. PUNCT
AliceNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59433From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
matthews@oswego PROPN
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews PROPN
) PUNCT
writes::All VERB
right ADV
, PUNCT
listen VERB
up ADP
.... PUNCT
  SPACE
What PRON
are AUX
the DET
possibilities NOUN
of ADP
transmission NOUN
through ADP
: PUNCT
swimming VERB
pool NOUN
water NOUN
? PUNCT
  SPACE
Especially ADV
if SCONJ
the DET
chlorination NOUN
is AUX
n't PART
up ADP
to PART
par?::I've VERB
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
: PUNCT
else ADV
is AUX
going VERB
on?No PROPN
dice NOUN
. PUNCT
  SPACE
As ADV
soon ADV
as SCONJ
the DET
sperm NOUN
cells NOUN
hit VERB
the DET
water NOUN
they PRON
would AUX
virtuallyexplode VERB
. PUNCT
  SPACE
The DET
inside NOUN
of ADP
the DET
cell NOUN
is AUX
hypertonic ADJ
, PUNCT
and CCONJ
since SCONJ
the DET
membrane NOUN
issemipermeable ADJ
water NOUN
would AUX
rush VERB
in ADV
and CCONJ
cause VERB
the DET
cell NOUN
to ADP
burst.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59435From NUM
: PUNCT
" PUNCT
nigel PROPN
allen PROPN
" PUNCT
< X
nigel.allen@canrem.com>Subject PROPN
: PUNCT
New PROPN
Method PROPN
For ADP
Diagnosing VERB
Alzheimer PROPN
's PART
Disease PROPN
DiscoveredHere PROPN
is AUX
a DET
press NOUN
release NOUN
from ADP
Huntington PROPN
Medical PROPN
Research PROPN
Institutes PROPN
. PUNCT
New PROPN
Method PROPN
For ADP
Diagnosing VERB
Alzheimer PROPN
's PART
Disease PROPN
Discovered PROPN
atHuntington PROPN
Medical PROPN
Research PROPN
Institutes PROPN
: PUNCT
Results NOUN
to PART
Be AUX
Reported VERB
To ADP
: PUNCT
National PROPN
Desk PROPN
, PUNCT
Health PROPN
Writer PROPN
Contact PROPN
: PUNCT
John PROPN
Lockhart PROPN
or CCONJ
Belinda PROPN
Gerber PROPN
, PUNCT
310 NUM
- PUNCT
444 NUM
- PUNCT
7000 NUM
, PUNCT
or CCONJ
          SPACE
800 NUM
- PUNCT
522 NUM
- PUNCT
8877 NUM
, PUNCT
for ADP
the DET
Huntington PROPN
Medical PROPN
Research PROPN
          SPACE
Institutes PROPN
. PUNCT
   SPACE
LOS PROPN
ANGELES PROPN
, PUNCT
April PROPN
28 NUM
  SPACE
-- PUNCT
A DET
new ADJ
method NOUN
for ADP
diagnosing VERB
and CCONJ
measuring VERB
chemical NOUN
imbalances NOUN
in ADP
the DET
brainwhich PROPN
lead NOUN
to ADP
Alzheimer PROPN
's PART
disease NOUN
and CCONJ
other ADJ
dementias NOUN
has AUX
beendiscovered VERB
by ADP
researchers NOUN
at ADP
the DET
Huntington PROPN
Medical PROPN
ResearchInstitutes PROPN
( PUNCT
HMRI PROPN
) PUNCT
in ADP
Pasadena PROPN
, PUNCT
Calif. PROPN
  SPACE
Results NOUN
of ADP
their PRON
researchwill NOUN
be AUX
reported VERB
in ADP
the DET
May PROPN
issue NOUN
of ADP
the DET
scientific ADJ
journal NOUN
, PUNCT
Radiology PROPN
. PUNCT
   SPACE
Using VERB
an DET
advanced ADJ
form NOUN
of ADP
magnetic ADJ
resonance NOUN
imaging NOUN
( PUNCT
MRI)called ADJ
magnetic ADJ
resonance NOUN
spectroscopy NOUN
( PUNCT
MRS PROPN
) PUNCT
, PUNCT
a DET
research NOUN
team NOUN
ledby NOUN
Brian PROPN
D. PROPN
Ross PROPN
, PUNCT
M.D. PROPN
, PUNCT
D. PROPN
Phil PROPN
. PROPN
, PUNCT
conducted VERB
a DET
study NOUN
on ADP
21 NUM
elderlypatients NOUN
who PRON
were AUX
believed VERB
to PART
be AUX
suffering VERB
from ADP
some DET
form NOUN
ofdementia NOUN
. PUNCT
The DET
exams NOUN
used VERB
standard ADJ
MRI PROPN
equipment NOUN
fitted VERB
with ADP
specialsoftware NOUN
developed VERB
at ADP
HMRI PROPN
called VERB
Clinical PROPN
Proton PROPN
MRS PROPN
. PUNCT
  SPACE
ClinicalProton PROPN
MRS PROPN
is AUX
easily ADV
applied VERB
, PUNCT
giving VERB
doctors NOUN
confirmatory NOUN
diagnosesin NOUN
less ADJ
than SCONJ
30 NUM
minutes NOUN
. PUNCT
  SPACE
An DET
automated VERB
version NOUN
of ADP
Clinical PROPN
ProtonMRS PROPN
called VERB
Proton PROPN
Brain PROPN
Examination PROPN
( PUNCT
PROBE PROPN
) PUNCT
reduces VERB
the DET
examinationtime NOUN
yet ADV
further ADV
, PUNCT
providing VERB
confirmatory NOUN
diagnoses NOUN
in ADP
less ADJ
than SCONJ
10minutes NUM
. PUNCT
  SPACE
By ADP
comparison NOUN
, PUNCT
the DET
current ADJ
" PUNCT
standard NOUN
of ADP
care NOUN
" PUNCT
in ADP
testingfor PROPN
Alzheimer PROPN
's PART
disease NOUN
calls VERB
for ADP
lengthy ADJ
memory NOUN
function NOUN
andneuropsychological ADJ
tests NOUN
, PUNCT
which PRON
can AUX
be AUX
very ADV
upsetting ADJ
to ADP
thepatient ADJ
, PUNCT
are AUX
not PART
definitive ADJ
and CCONJ
can AUX
only ADV
be AUX
confirmed VERB
by ADP
autopsy ADJ
. PUNCT
   SPACE
In ADP
addition NOUN
to ADP
Alzheimer PROPN
's PART
disease NOUN
, PUNCT
the DET
new ADJ
Clinical PROPN
Proton PROPN
MRSexam PROPN
may AUX
have AUX
applications NOUN
in ADP
diagnosing VERB
other ADJ
dementias NOUN
, PUNCT
includingAIDS NUM
- PUNCT
related VERB
dementia NOUN
, PUNCT
Parkinson PROPN
's PART
disease NOUN
and CCONJ
Huntington'sdisease PROPN
. PUNCT
   SPACE
" PUNCT
We PRON
've AUX
developed VERB
a DET
simple ADJ
test NOUN
which PRON
can AUX
be AUX
administered VERB
quicklyand PROPN
relatively ADV
inexpensively ADV
using VERB
existing VERB
MRI PROPN
equipment NOUN
fittedwith NOUN
either CCONJ
the DET
MRS PROPN
or CCONJ
PROBE PROPN
software NOUN
, PUNCT
" PUNCT
said VERB
Dr. PROPN
Ross PROPN
, PUNCT
adding,"this PROPN
will AUX
help VERB
physicians NOUN
to PART
diagnose VERB
Alzheimer PROPN
's PART
earlier ADJ
andintervene NOUN
with ADP
therapeutics NOUN
before ADP
the DET
progression NOUN
of ADP
the DET
diseasecauses NOUN
further ADJ
damage NOUN
to ADP
the DET
delicate ADJ
inner ADJ
workings NOUN
of ADP
the DET
brain NOUN
. PUNCT
" PUNCT
   SPACE
Dr. PROPN
Ross PROPN
and CCONJ
his PRON
HMRI PROPN
team NOUN
measured VERB
a DET
family NOUN
of ADP
chemicals NOUN
in ADP
thebrain NOUN
known VERB
as SCONJ
inositols NOUN
, PUNCT
and CCONJ
myo NOUN
- PUNCT
inositol PROPN
( PUNCT
MI PROPN
) PUNCT
acted VERB
as SCONJ
a DET
markerin NOUN
the DET
study NOUN
. PUNCT
  SPACE
In ADP
comparison NOUN
to ADP
healthy ADJ
patients NOUN
, PUNCT
those DET
diagnosedwith NOUN
Alzheimer PROPN
's PART
showed VERB
a DET
22 NUM
percent NOUN
increase NOUN
in ADP
MI PROPN
, PUNCT
while SCONJ
theirlevel NOUN
of ADP
another DET
chemical NOUN
called VERB
N NOUN
- PUNCT
acetylaspartate ADJ
( PUNCT
NAA PROPN
) PUNCT
wassignificantly ADV
lower ADV
, PUNCT
indicating VERB
a DET
loss NOUN
of ADP
brain NOUN
- PUNCT
stimulating VERB
neuronsbelieved VERB
to PART
be AUX
associated VERB
with ADP
the DET
progression NOUN
of ADP
the DET
disease NOUN
. PUNCT
   SPACE
Current ADJ
drug NOUN
therapy NOUN
for ADP
Alzheimer PROPN
's PART
disease NOUN
is AUX
widelyconsidered VERB
to PART
be AUX
inadequate ADJ
. PUNCT
  SPACE
This DET
is AUX
attributable ADJ
, PUNCT
Dr. PROPN
Rossbelieves PROPN
, PUNCT
to ADP
the DET
theory NOUN
that SCONJ
Alzheimer PROPN
's PART
is AUX
caused VERB
by ADP
aninterruption NOUN
in ADP
the DET
transmission NOUN
of ADP
the DET
chemical PROPN
acetylcholine PROPN
tothe PROPN
nerve NOUN
cells NOUN
. PUNCT
This DET
belief NOUN
has AUX
been AUX
adhered VERB
to ADP
over ADP
the DET
last ADJ
15years NUM
, PUNCT
and CCONJ
consequently ADV
, PUNCT
most ADJ
drugs NOUN
to PART
treat VERB
Alzheimer PROPN
's PART
were AUX
basedon ADJ
the DET
changing VERB
receptors NOUN
for ADP
acetylcholine NOUN
. PUNCT
   SPACE
" PUNCT
Physicians PROPN
have AUX
a DET
real ADJ
need NOUN
for ADP
a DET
test NOUN
to ADP
differentiateAlzheimer NOUN
's PART
from ADP
other ADJ
dementias NOUN
, PUNCT
to PART
provide VERB
the DET
patient NOUN
and CCONJ
his PRON
orher NOUN
family NOUN
with ADP
a DET
firm ADJ
diagnosis NOUN
and CCONJ
to PART
monitor VERB
future ADJ
treatmentprotocols NOUN
for ADP
the DET
treatment NOUN
of ADP
this DET
disease NOUN
. PUNCT
  SPACE
For ADP
this DET
reason NOUN
, PUNCT
weconsider VERB
this DET
test NOUN
a DET
major ADJ
advancement NOUN
in ADP
medicine NOUN
, PUNCT
" PUNCT
said VERB
BruceMiller PROPN
, PUNCT
M.D. PROPN
, PUNCT
a DET
noted VERB
neurologist NOUN
at ADP
Harbor PROPN
- PUNCT
UCLA PROPN
, PUNCT
MRS PROPN
researcherand VERB
a DET
co NOUN
- NOUN
author NOUN
of ADP
the DET
study NOUN
. PUNCT
   SPACE
Other ADJ
members NOUN
of ADP
the DET
HMRI PROPN
research NOUN
team NOUN
included VERB
Rex PROPN
A. PROPN
Moats PROPN
, PUNCT
Ph PROPN
. PROPN
D. PROPN
, PUNCT
Truda PROPN
Shonk PROPN
, PUNCT
B.S. PROPN
, PUNCT
Thomas PROPN
Ernst PROPN
, PUNCT
Ph.D. NOUN
, PUNCT
and CCONJ
Suzanne PROPN
Woolley PROPN
, PUNCT
R.N. PROPN
  SPACE
The DET
PROBE PROPN
software NOUN
can AUX
be AUX
fitted VERB
on ADP
the DET
approximately ADV
1,200General PROPN
Electric PROPN
MRI PROPN
units NOUN
currently ADV
in ADP
use NOUN
in ADP
the DET
United PROPN
States PROPN
, PUNCT
and CCONJ
will AUX
be AUX
configured VERB
for ADP
other ADJ
manufacturers NOUN
' PART
MRI PROPN
units NOUN
soon ADV
. PUNCT
   SPACE
For ADP
interviews NOUN
with ADP
Dr. PROPN
Ross PROPN
, PUNCT
advance NOUN
copies NOUN
of ADP
the DET
RadiologyMay PROPN
issue NOUN
, PUNCT
and CCONJ
other ADJ
information NOUN
, PUNCT
please INTJ
contact VERB
John PROPN
Lockhart PROPN
orBelinda PROPN
Gerber PROPN
for ADP
HMRI PROPN
at ADP
310 NUM
- SYM
444 NUM
- PUNCT
7000 NUM
or CCONJ
800 NUM
- PUNCT
522 NUM
- PUNCT
8877 NUM
. PUNCT
   SPACE
Q PROPN
& CCONJ
A PROPN
on ADP
Alzheimer PROPN
's PART
Disease PROPN
: PUNCT
   SPACE
What PRON
is AUX
Alzheimer PROPN
's PART
disease NOUN
and CCONJ
how ADV
is AUX
it PRON
caused VERB
? PUNCT
   SPACE
Alzheimer PROPN
's PART
disease NOUN
( PUNCT
AD NOUN
) PUNCT
is AUX
an DET
incurable ADJ
degenerative ADJ
disease NOUN
ofthe PROPN
brain NOUN
first ADV
described VERB
in ADP
1906 NUM
by ADP
the DET
German ADJ
neuropathologistAlois NOUN
Alzheimer PROPN
. PUNCT
  SPACE
As SCONJ
the DET
disease NOUN
progresses VERB
, PUNCT
it PRON
leads VERB
to PART
loss VERB
ofmemory NOUN
and CCONJ
mental ADJ
functioning NOUN
, PUNCT
followed VERB
by ADP
changes NOUN
in ADP
personality NOUN
, PUNCT
loss NOUN
of ADP
control NOUN
of ADP
bodily ADJ
functions NOUN
, PUNCT
and CCONJ
, PUNCT
eventually ADV
, PUNCT
death NOUN
. PUNCT
   SPACE
How ADV
many ADJ
people NOUN
does AUX
it PRON
affect VERB
? PUNCT
   SPACE
Alzheimer PROPN
's PART
disease NOUN
affects VERB
an DET
estimated VERB
4 NUM
million NUM
adults NOUN
inthe NOUN
United PROPN
States PROPN
and CCONJ
is AUX
the DET
fourth ADJ
leading ADJ
cause NOUN
of ADP
death NOUN
, PUNCT
takingapproximately ADV
100,000 NUM
lives NOUN
each DET
year NOUN
. PUNCT
  SPACE
While SCONJ
Alzheimer'sdebilitates VERB
its PRON
victims NOUN
, PUNCT
it PRON
is AUX
equally ADV
devastating ADJ
, PUNCT
bothemotionally ADV
and CCONJ
financially ADV
, PUNCT
for ADP
patients NOUN
' PART
families NOUN
. PUNCT
  SPACE
AD PROPN
is AUX
themost ADJ
common ADJ
cause NOUN
of ADP
dementia NOUN
in ADP
adults NOUN
. PUNCT
  SPACE
Symptoms NOUN
worsen ADJ
everyyear NOUN
, PUNCT
and CCONJ
death NOUN
usually ADV
occurs VERB
within ADP
10 NUM
years NOUN
of ADP
initial ADJ
onset NOUN
. PUNCT
   SPACE
What PRON
are AUX
its PRON
signs NOUN
and CCONJ
symptoms NOUN
? PUNCT
   SPACE
Although SCONJ
the DET
cause NOUN
of ADP
AD NOUN
is AUX
not PART
known VERB
, PUNCT
two NUM
risk NOUN
factors NOUN
havebeen PROPN
identified VERB
: PUNCT
advanced ADJ
age NOUN
and CCONJ
genetic ADJ
predisposition NOUN
. PUNCT
  SPACE
The DET
riskof NOUN
developing VERB
AD NOUN
is AUX
less ADJ
than SCONJ
one NUM
percent NOUN
before ADP
the DET
age NOUN
of ADP
50yars NUM
old ADJ
, PUNCT
but CCONJ
increases VERB
steeply ADV
in ADP
each DET
successive ADJ
decade NOUN
of ADP
lifeto NOUN
reach VERB
30 NUM
percent NOUN
by ADP
the DET
age NOUN
of ADP
90 NUM
. PUNCT
  SPACE
In ADP
patients NOUN
with ADP
familialAD PROPN
, PUNCT
immediate ADJ
family NOUN
relatives NOUN
have AUX
a DET
50 NUM
percent NOUN
chance NOUN
ofdeveloping VERB
AD NOUN
. PUNCT
  SPACE
One NUM
of ADP
its PRON
first ADJ
symptoms NOUN
is AUX
severe ADJ
" PUNCT
forgetfulness"caused VERB
by ADP
short ADJ
- PUNCT
term NOUN
memory NOUN
loss NOUN
. PUNCT
  SPACE
Dr. PROPN
Herman PROPN
Weinreb PROPN
of ADP
the DET
Schoolof PROPN
Medicine PROPN
at ADP
New PROPN
York PROPN
University PROPN
says VERB
" PUNCT
whether SCONJ
forgetfulness NOUN
isa PROPN
serious ADJ
symptom NOUN
or CCONJ
not PART
is AUX
largely ADV
a DET
matter NOUN
of ADP
degree NOUN
" PUNCT
andsuggests VERB
the DET
following VERB
criteria NOUN
: PUNCT
   SPACE
-- PUNCT
Forgetting VERB
the DET
name NOUN
of ADP
someone PRON
you PRON
see VERB
infrequently ADV
is AUX
      SPACE
normal ADJ
. PUNCT
   SPACE
-- PUNCT
Forgetting VERB
the DET
name NOUN
of ADP
a DET
loved VERB
one NOUN
is AUX
serious ADJ
. PUNCT
   SPACE
-- PUNCT
Forgetting VERB
where ADV
you PRON
left VERB
your PRON
keys NOUN
is AUX
normal ADJ
. PUNCT
   SPACE
-- PUNCT
Forgetting VERB
how ADV
to PART
get AUX
home NOUN
is AUX
serious ADJ
. PUNCT
   SPACE
Doctors NOUN
suggest VERB
that SCONJ
people NOUN
with ADP
severe ADJ
symptoms NOUN
should AUX
beevaluated VERB
in ADP
order NOUN
to PART
rule VERB
out ADP
Alzheimer PROPN
's PART
disease NOUN
and CCONJ
other ADJ
formsof ADJ
dementia NOUN
. PUNCT
-30 PROPN
- PUNCT
--Canada PUNCT
Remote PROPN
Systems PROPN
- PUNCT
Toronto PROPN
, PUNCT
Ontario416 PROPN
- PUNCT
629 NUM
- PUNCT
7000/629 NUM
- PUNCT
7044Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59436From NUM
: PUNCT
" PUNCT
nigel PROPN
allen PROPN
" PUNCT
< X
nigel.allen@canrem.com>Subject PROPN
: PUNCT
Results NOUN
of ADP
GUSTO PROPN
Heart PROPN
Attack PROPN
Study PROPN
to PART
be AUX
Released VERB
FridayHere PROPN
is AUX
a DET
press NOUN
release NOUN
from ADP
Medical PROPN
Science PROPN
Communications PROPN
. PUNCT
Results NOUN
of ADP
GUSTO PROPN
Heart PROPN
Attack PROPN
Study PROPN
to PART
be AUX
Released VERB
Friday PROPN
To PART
: PUNCT
Assignment PROPN
Desk PROPN
, PUNCT
Medical PROPN
Writer PROPN
Contact PROPN
: PUNCT
Jim PROPN
Augustine PROPN
of ADP
Medical PROPN
Science PROPN
Communication PROPN
, PUNCT
          SPACE
703 NUM
- PUNCT
644 NUM
- PUNCT
6824 NUM
, PUNCT
or CCONJ
Steve PROPN
Hull PROPN
or CCONJ
Tracy PROPN
Furey PROPN
, PUNCT
          SPACE
800 NUM
- SYM
477 NUM
- PUNCT
9626 NUM
or CCONJ
April PROPN
29 NUM
- SYM
30 NUM
, PUNCT
202 NUM
- PUNCT
393 NUM
- PUNCT
2000 NUM
or CCONJ
          SPACE
202 NUM
- PUNCT
662 NUM
- PUNCT
7592 NUM
( PUNCT
J.W. PROPN
Marriott PROPN
) PUNCT
   SPACE
News PROPN
Advisory PROPN
: PUNCT
   SPACE
Results NOUN
of ADP
the DET
largest ADJ
heart NOUN
attack NOUN
study NOUN
ever ADV
undertaken VERB
, PUNCT
the DET
Global PROPN
Utilization PROPN
of ADP
Streptokinase PROPN
and CCONJ
t PROPN
- PUNCT
PA PROPN
for ADP
OccludedCoronary PROPN
Arteries PROPN
trial NOUN
( PUNCT
GUSTO PROPN
) PUNCT
, PUNCT
will AUX
be AUX
presented VERB
Friday PROPN
, PUNCT
April30 PROPN
, PUNCT
at ADP
the DET
Clinical PROPN
Research PROPN
Meeting PROPN
. PUNCT
   SPACE
A DET
press NOUN
conference NOUN
will AUX
be AUX
held VERB
at ADP
12:30 NUM
p.m. NOUN
   SPACE
GUSTO PROPN
evaluates VERB
the DET
most ADV
aggressive ADJ
emergency NOUN
- PUNCT
room NOUN
treatmentstrategies NOUN
available ADJ
to PART
clear VERB
blocked VERB
heart NOUN
arteries NOUN
and CCONJ
restoreblood NOUN
flow NOUN
to ADP
the DET
heart NOUN
, PUNCT
a DET
process NOUN
called VERB
thrombolysis NOUN
. PUNCT
  SPACE
Thethrombolytic ADJ
strategies NOUN
compared VERB
in ADP
GUSTO PROPN
use VERB
powerful ADJ
drugs NOUN
to PART
breakup VERB
blood NOUN
clots NOUN
in ADP
heart NOUN
vessels NOUN
quickly ADV
and CCONJ
prevent VERB
clots NOUN
fromrecurring VERB
. PUNCT
  SPACE
These DET
strategies NOUN
have AUX
never ADV
been AUX
compared VERB
directly ADV
in ADP
alarge NOUN
- PUNCT
scale NOUN
clinical ADJ
trial NOUN
until ADP
GUSTO PROPN
. PUNCT
  SPACE
The DET
results NOUN
are AUX
expected VERB
tohave ADP
an DET
important ADJ
impact NOUN
on ADP
heart NOUN
attack NOUN
treatment NOUN
worldwide ADV
. PUNCT
   SPACE
The DET
press NOUN
conference NOUN
will AUX
be AUX
held VERB
at ADP
two NUM
locations NOUN
: PUNCT
live VERB
at ADP
theNational PROPN
Press PROPN
Club PROPN
, PUNCT
Main PROPN
Lounge PROPN
, PUNCT
13th ADJ
Floor NOUN
, PUNCT
529 NUM
14th ADJ
St. PROPN
, PUNCT
N.W.,Washington PROPN
D.C. PROPN
, PUNCT
and CCONJ
via ADP
satellite NOUN
at ADP
The DET
Hotel PROPN
Macklowe PROPN
, PUNCT
145 NUM
W. PROPN
44thStreet NUM
, PUNCT
4th ADJ
Floor PROPN
, PUNCT
New PROPN
York PROPN
City PROPN
, PUNCT
between ADP
Broadway PROPN
and CCONJ
6th ADJ
Avenue PROPN
. PUNCT
   SPACE
GUSTO PROPN
results NOUN
will AUX
be AUX
presented VERB
by ADP
Eric PROPN
Topol PROPN
M.D. PROPN
, PUNCT
GUSTO PROPN
StudyChairman PROPN
, PUNCT
professor NOUN
and CCONJ
chairman NOUN
of ADP
the DET
Department PROPN
of ADP
Cardiology PROPN
atThe PROPN
Cleveland PROPN
Clinic PROPN
Foundation PROPN
; PUNCT
Robert PROPN
Califf PROPN
, PUNCT
M.D. PROPN
, PUNCT
clinicaldirector NOUN
, PUNCT
GUSTO PROPN
Coordinating PROPN
Center PROPN
and CCONJ
Associate PROPN
Professor PROPN
ofMedicine PROPN
at ADP
Duke PROPN
University PROPN
Medical PROPN
Center PROPN
; PUNCT
and CCONJ
Allan PROPN
Ross PROPN
, PUNCT
M.D.,coordinator NOUN
of ADP
the DET
GUSTO PROPN
Angiographic PROPN
Substudy PROPN
and CCONJ
professor NOUN
anddirector NOUN
of ADP
the DET
Division PROPN
of ADP
Cardiology PROPN
at ADP
The DET
George PROPN
WashingtonUniversity PROPN
Medical PROPN
Center PROPN
. PUNCT
    SPACE
------ PUNCT
   SPACE
Editorial PROPN
Notes PROPN
/ SYM
Attention PROPN
television NOUN
: PUNCT
The DET
press NOUN
conference NOUN
may AUX
beviewed VERB
in ADP
its PRON
entirety NOUN
via ADP
satellite NOUN
starting VERB
at ADP
12:30 NUM
p.m. NOUN
( PUNCT
EDT)C PROPN
- PUNCT
band NOUN
Telestar PROPN
302 NUM
, PUNCT
Transponder PROPN
2V NOUN
( PUNCT
dual ADJ
audio PROPN
6.2 NUM
, PUNCT
6.8 NUM
) PUNCT
or CCONJ
KUSBS6,Transponder PROPN
8 NUM
. PUNCT
  SPACE
Following VERB
the DET
press NOUN
conference NOUN
, PUNCT
there PRON
will AUX
be AUX
a DET
newspackage NOUN
and CCONJ
b NOUN
- PUNCT
roll NOUN
feed NOUN
. PUNCT
  SPACE
Camera NOUN
- PUNCT
ready ADJ
illustrations NOUN
also ADV
will AUX
beavailable VERB
at ADP
the DET
press NOUN
conference NOUN
. PUNCT
   SPACE
Telephone PROPN
hook NOUN
up ADP
to ADP
the DET
press NOUN
conference NOUN
is AUX
planned VERB
. PUNCT
Availability NOUN
is AUX
limited ADJ
; PUNCT
please INTJ
call VERB
MCS PROPN
for ADP
more ADJ
information NOUN
. PUNCT
   SPACE
For ADP
reporters NOUN
who PRON
will AUX
be AUX
at ADP
the DET
Sheraton PROPN
Washington PROPN
attending VERB
theClinical PROPN
Research PROPN
Meeting PROPN
on ADP
Friday PROPN
morning NOUN
, PUNCT
minibus PROPN
transportationwill ADV
be AUX
provided VERB
to ADP
the DET
press NOUN
conference NOUN
. PUNCT
  SPACE
The DET
bus NOUN
will AUX
depart VERB
at12 PROPN
p.m. NOUN
; PUNCT
it PRON
also ADV
will AUX
be AUX
available ADJ
for ADP
return NOUN
to ADP
the DET
Sheratonafter PROPN
the DET
press NOUN
conference NOUN
. PUNCT
   SPACE
For ADP
more ADJ
information NOUN
, PUNCT
contact NOUN
Steve PROPN
Hull PROPN
or CCONJ
Tracy PROPN
Furey PROPN
of ADP
MCS PROPN
, PUNCT
for ADP
the DET
GUSTO PROPN
Study PROPN
Group PROPN
, PUNCT
at ADP
800 NUM
- SYM
477 NUM
- PUNCT
9626 NUM
; PUNCT
or CCONJ
at ADP
the DET
J.W. PROPN
MarriottApril PROPN
29 NUM
to ADP
April PROPN
30 NUM
at ADP
202 NUM
- SYM
393 NUM
- PUNCT
2000 NUM
or CCONJ
202 NUM
- PUNCT
662 NUM
- PUNCT
7592 NUM
. PUNCT
  SPACE
For ADP
moreinformation NOUN
about ADP
the DET
Clinical PROPN
Research PROPN
Meeting PROPN
, PUNCT
contact NOUN
JimAugustine PROPN
of ADP
Medical PROPN
Science PROPN
Communications PROPN
at ADP
703 NUM
- PUNCT
644 NUM
- PUNCT
6824 NUM
. PUNCT
-30 PROPN
- PUNCT
--Canada PUNCT
Remote PROPN
Systems PROPN
- PUNCT
Toronto PROPN
, PUNCT
Ontario416 PROPN
- PUNCT
629 NUM
- PUNCT
7000/629 NUM
- PUNCT
7044Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59437From NUM
: PUNCT
rrome@nyx.cs.du.edu PROPN
( PUNCT
Robert PROPN
Rome)Subject NUM
: PUNCT
Need VERB
Prozac VERB
infoI'm ADV
looking VERB
for ADP
information NOUN
regarding VERB
dosages NOUN
of ADP
prozac NOUN
used VERB
in ADP
minordepression NOUN
. PUNCT
  SPACE
Also ADV
any DET
other ADJ
information NOUN
regarding VERB
the DET
drug NOUN
is AUX
helpful ADJ
. PUNCT
Please INTJ
send VERB
responses NOUN
direct ADJ
. PUNCT
  SPACE
Thanks!rrome@nyx.cs.du.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59438From NUM
: PUNCT
andrewm@bio.uts.EDU.AU PROPN
( PUNCT
Andrew PROPN
Mears)Subject PROPN
: PUNCT
sheep NOUN
in ADP
cardiac ADJ
researchDear PROPN
news NOUN
readers NOUN
, PUNCT
Is AUX
there PRON
anyone PRON
using VERB
sheep NOUN
models NOUN
for ADP
cardiac ADJ
research NOUN
, PUNCT
specificallyconcerned VERB
with ADP
arrhythmias PROPN
, PUNCT
pacing NOUN
or CCONJ
defibrillation NOUN
? PUNCT
I PRON
would AUX
liketo VERB
hear VERB
from ADP
you PRON
. PUNCT
Many ADJ
thanks NOUN
, PUNCT
Andrew PROPN
Mears PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Please INTJ
email VERB
me PRON
< X
andrewm@iris.bio.uts.edu.au PROPN
> X
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
Andrew PROPN
Mears PROPN
                            SPACE
h NOUN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
9774245 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
CRC PROPN
for ADP
Cardiac PROPN
Technology PROPN
, PUNCT
UTS PROPN
         SPACE
w PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
3304091 NUM
	         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
Westbourne PROPN
St PROPN
, PUNCT
GORE PROPN
HILL PROPN
                SPACE
F PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- SYM
3304003 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
N.S.W PROPN
  SPACE
2065 NUM
               SPACE
email NOUN
: PUNCT
< X
andrewm@iris.bio.uts.edu.au PROPN
> X
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59439From NUM
: PUNCT
larpjb@selway.umt.edu PROPN
( PUNCT
Philip PROPN
J PROPN
Bowman)Subject NUM
: PUNCT
Re ADP
: PUNCT
Strain VERB
Gage PROPN
Applications PROPN
in ADP
vivoIn PROPN
article NOUN
< X
1993Apr28.173600.21703@organpipe.uug.arizona.edu NUM
> X
ame_0123@bigdog.engr.arizona.edu ADJ
( PUNCT
Terrance PROPN
J. PROPN
Dishongh PROPN
) PUNCT
writes:>Greeting>>I NOUN
am AUX
starting VERB
work NOUN
on ADP
a DET
project NOUN
where ADV
I PRON
am AUX
trying VERB
to PART
make VERB
strain VERB
gages NOUN
> X
bond NOUN
to ADP
bone NOUN
in ADP
vivo NOUN
or CCONJ
a DET
period NOUN
of ADP
several ADJ
months NOUN
. PUNCT
  SPACE
I PRON
am AUX
currently ADV
> X
using VERB
hydroxyapaptite ADJ
back ADP
gages NOUN
, PUNCT
and CCONJ
I PRON
have AUX
tried VERB
M NOUN
- PUNCT
bonding VERB
the DET
gages NOUN
> X
to ADP
the DET
bone NOUN
. PUNCT
  SPACE
Apart ADV
from ADP
those DET
two NUM
application NOUN
methods NOUN
there ADV
doesn't VERB
> X
seem VERB
to PART
be AUX
much ADV
else ADV
in ADP
the DET
literature NOUN
. PUNCT
  SPACE
I PRON
have AUX
only ADV
an DET
engineering NOUN
> X
background NOUN
not PART
medical ADJ
or CCONJ
biological ADJ
. PUNCT
  SPACE
I PRON
would AUX
be AUX
interest NOUN
in ADP
any DET
> NUM
ideas NOUN
about ADP
how ADV
to PART
stimulte VERB
bone NOUN
growth NOUN
on ADP
the DET
surface NOUN
of ADP
cortical ADJ
bone.>>Thanks NOUN
for ADP
oyur NOUN
help NOUN
in ADP
Advance.>>Terrance NOUN
J PROPN
Dishongh>ame_0123@bigdog.engr.arizona.eduIt PROPN
sounds VERB
as SCONJ
though SCONJ
you PRON
might AUX
want VERB
to PART
try VERB
a DET
product NOUN
such ADJ
as SCONJ
" PUNCT
super ADJ
- ADJ
glue" ADJ
. PUNCT
The DET
active ADJ
ingredient NOUN
is AUX
cynoacrylate ADJ
, PUNCT
the DET
same ADJ
compound NOUN
used VERB
to ADP
reconstructbones NOUN
. PUNCT
  SPACE
I PRON
have AUX
successfully ADV
used VERB
superglue NOUN
for ADP
a DET
number NOUN
of ADP
procedures NOUN
on ADP
manydifferent NOUN
species NOUN
of ADP
animal NOUN
. PUNCT
If SCONJ
you PRON
are AUX
simply ADV
trying VERB
to PART
adhear VERB
somethingto NOUN
bone NOUN
for ADP
several ADJ
months NOUN
, PUNCT
this DET
would AUX
be AUX
ideal ADJ
. PUNCT
It PRON
bonds VERB
almost ADV
immediatly ADV
, PUNCT
is AUX
resistant ADJ
to ADP
infection NOUN
, PUNCT
and CCONJ
is AUX
non ADJ
- ADJ
irritating ADJ
to ADP
surrounding VERB
tissue NOUN
. PUNCT
Phil PROPN
Bowman PROPN
, PUNCT
ManagerLab PROPN
Animal PROPN
ResourcesUniversity PROPN
of ADP
MontanaMissoula PROPN
, PUNCT
MT PROPN
59812larpjb@selway.umt.edu NOUN
: PUNCT
wg-- ADJ
                          SPACE
/\---/\ PUNCT
          SPACE
Phil PROPN
Bowman PROPN
, PUNCT
Manager PROPN
               SPACE
\ NOUN
* PUNCT
* PUNCT
/ SYM
          SPACE
Laboratory PROPN
Animal PROPN
ResourcesNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59441From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Urine NOUN
analysisIn PROPN
article NOUN
< X
1rm2bn$kps@transfer.stratus.com NUM
> X
Randy_Faneuf@vos.stratus.com PROPN
writes VERB
: PUNCT
> X
> X
Someone PRON
please INTJ
help VERB
me PRON
. PUNCT
I PRON
am AUX
searching VERB
to PART
find VERB
out ADP
( PUNCT
as ADV
many ADJ
others NOUN
may)>an PROPN
absolute PROPN
' PUNCT
cure NOUN
' PUNCT
to ADP
removing VERB
all DET
detectable ADJ
traces NOUN
of ADP
marijuana PROPN
from ADP
> X
a DET
persons NOUN
body NOUN
. PUNCT
Is AUX
there PRON
a DET
chemical ADJ
or CCONJ
natural ADJ
substance NOUN
that PRON
can AUX
be AUX
> X
ingested VERB
or CCONJ
added VERB
to PART
urine VERB
to PART
make VERB
it PRON
undetectable ADJ
in ADP
urine NOUN
analysis.>If PROPN
so ADV
where ADV
can AUX
these DET
substances NOUN
be AUX
found VERB
. PUNCT
You PRON
could AUX
do AUX
what PRON
I PRON
do AUX
: PUNCT
never ADV
go VERB
near SCONJ
the DET
stuff NOUN
! PUNCT
  SPACE
: PUNCT
) PUNCT
-- PUNCT
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59442From NUM
: PUNCT
andrewm@bio.uts.EDU.AU PROPN
( PUNCT
Andrew PROPN
Mears)Subject PROPN
: PUNCT
sheep NOUN
models NOUN
in ADP
cardiologyDear ADJ
news NOUN
readers NOUN
, PUNCT
Is AUX
there PRON
anyone PRON
using VERB
sheep NOUN
models NOUN
for ADP
cardiac ADJ
research NOUN
, PUNCT
specificallyconcerned VERB
with ADP
arrhythmias PROPN
, PUNCT
pacing NOUN
or CCONJ
defibrillation NOUN
? PUNCT
I PRON
would AUX
liketo VERB
hear VERB
from ADP
you PRON
. PUNCT
Many ADJ
thanks NOUN
, PUNCT
Andrew PROPN
Mears PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
PLEASE INTJ
EMAIL VERB
ME PROPN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
-- PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
Andrew PROPN
Mears PROPN
                            SPACE
h NOUN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
9774245 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
CRC PROPN
for ADP
Cardiac PROPN
Technology PROPN
, PUNCT
UTS PROPN
         SPACE
w PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- PUNCT
3304091 NUM
	         SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
    SPACE
Westbourne PROPN
St PROPN
, PUNCT
GORE PROPN
HILL PROPN
                SPACE
F PROPN
: PUNCT
61 NUM
- PUNCT
2 NUM
- SYM
3304003 NUM
         SPACE
* PUNCT
* PUNCT
* PUNCT
  SPACE
* PUNCT
   SPACE
N.S.W PROPN
  SPACE
2065 NUM
               SPACE
email NOUN
: PUNCT
< X
andrewm@iris.bio.uts.edu.au PROPN
> X
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59443From NUM
: PUNCT
eileen@microware.com X
( PUNCT
Eileen PROPN
Beck)Subject NUM
: PUNCT
cortisone NOUN
shotsI PROPN
need VERB
some DET
information NOUN
on ADP
the DET
implications NOUN
of ADP
receivingcortisone NOUN
shots NOUN
for ADP
a DET
seasonal ADJ
allergic ADJ
condition NOUN
. PUNCT
  SPACE
I PRON
've AUX
had VERB
the DET
usual ADJ
" PUNCT
skin NOUN
prick NOUN
" PUNCT
tests NOUN
for ADP
thecommon PROPN
allergies NOUN
, PUNCT
but CCONJ
reacted VERB
to ADP
none NOUN
of ADP
the DET
substances NOUN
. PUNCT
So ADV
for ADP
the DET
last ADJ
two NUM
seasons NOUN
I PRON
've AUX
received VERB
cortisone NOUN
shotsbut PROPN
the DET
doctors NOUN
seem VERB
reluctant ADJ
to PART
give VERB
more ADJ
than SCONJ
two NUM
orthree ADJ
shots NOUN
. PUNCT
  SPACE
Why ADV
? PUNCT
  SPACE
What PRON
are AUX
the DET
dangers?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59444From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu PROPN
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
looking VERB
for ADP
info NOUN
on ADP
kemotherapy(p PROPN
? PUNCT
) PUNCT
( PUNCT
KINDA PROPN
LONG)In PROPN
article NOUN
< X
1rjpu7INNmij@shelley.u.washington.edu NUM
> X
, PUNCT
kryan@stein.u.washington.edu PROPN
( PUNCT
Kerry PROPN
Ryan PROPN
) PUNCT
writes VERB
... PUNCT
> X
> X
Hello INTJ
, PUNCT
a DET
friend NOUN
is AUX
under ADP
going VERB
kemotherapy(sp PROPN
? PUNCT
) PUNCT
for ADP
breast NOUN
cancer NOUN
. PUNCT
I'm PROPN
> X
trying VERB
to PART
learn VERB
what PRON
I PRON
can AUX
about ADP
it PRON
. PUNCT
Any DET
info NOUN
would AUX
be AUX
appreciated.>Thanks PROPN
. PUNCT
You've PROPN
asked VERB
a DET
toughie NOUN
of ADP
a DET
question NOUN
. PUNCT
  SPACE
There PRON
are AUX
many ADJ
different ADJ
drugs NOUN
whichare VERB
used VERB
for ADP
chemotherapy NOUN
. PUNCT
The DET
overall ADJ
purpose NOUN
of ADP
chemotherapy NOUN
( PUNCT
do AUX
n't PART
worry VERB
about ADP
the DET
spelling NOUN
. PUNCT
  SPACE
Some DET
ofthese ADJ
crazy ADJ
medical ADJ
words NOUN
are AUX
impossible ADJ
to PART
spell VERB
! PUNCT
:-) PUNCT
is AUX
to ADP
either CCONJ
destroycancer NOUN
cells NOUN
or CCONJ
to PART
keep VERB
them PRON
from ADP
growing VERB
. PUNCT
  SPACE
Different ADJ
drugs NOUN
have AUX
differenteffects NOUN
on ADP
cancer NOUN
cells NOUN
, PUNCT
and CCONJ
therefore ADV
, PUNCT
it PRON
is AUX
not PART
uncommon ADJ
to PART
use VERB
more ADJ
thanone NOUN
drug NOUN
at ADP
a DET
time NOUN
. PUNCT
Some DET
chemotherapeutic ADJ
drugs NOUN
are AUX
effective ADJ
anytime NOUN
during ADP
the DET
growth NOUN
cycleof VERB
a DET
cell NOUN
. PUNCT
  SPACE
Others NOUN
work VERB
only ADV
at ADP
specific ADJ
times NOUN
during ADP
the DET
cell NOUN
cycle NOUN
. PUNCT
The DET
first ADJ
phase NOUN
of ADP
the DET
cell NOUN
cycle NOUN
is AUX
G1 PROPN
; PUNCT
it PRON
is AUX
when ADV
the DET
protein NOUN
synthesisand NOUN
RNA PROPN
systhesis NOUN
occurs VERB
. PUNCT
  SPACE
In ADP
the DET
second ADJ
phase NOUN
, PUNCT
S PROPN
, PUNCT
synthesis NOUN
of ADP
DNA NOUN
occurs VERB
. PUNCT
The DET
third ADJ
phase NOUN
is AUX
G2 PROPN
; PUNCT
The DET
DNA PROPN
splits VERB
and CCONJ
RNA PROPN
and CCONJ
protein NOUN
are AUX
synthesized VERB
aagain ADV
. PUNCT
  SPACE
In ADP
the DET
fourth ADJ
phase NOUN
, PUNCT
M PROPN
( PUNCT
or CCONJ
Mitosis PROPN
) PUNCT
, PUNCT
the DET
cell NOUN
may AUX
divide VERB
. PUNCT
There PRON
are AUX
drugs NOUN
which PRON
are AUX
effective ADJ
in ADP
each DET
phase NOUN
. PUNCT
  SPACE
Some DET
stop VERB
DNA NOUN
synthesis NOUN
. PUNCT
Others NOUN
stop VERB
the DET
cell NOUN
from ADP
dividing NOUN
. PUNCT
Others NOUN
wreck VERB
protein NOUN
synthesis NOUN
. PUNCT
At ADP
any DET
rate NOUN
, PUNCT
the DET
end NOUN
result NOUN
that PRON
is AUX
being AUX
sought VERB
is AUX
for ADP
the DET
cancer NOUN
cellsto NOUN
stop VERB
growing VERB
. PUNCT
If SCONJ
what PRON
you PRON
are AUX
seeking VERB
is AUX
" PUNCT
practical ADJ
" PUNCT
advice NOUN
, PUNCT
I PRON
apologize VERB
for ADP
ramblingon VERB
the DET
techno NOUN
stuff NOUN
. PUNCT
  SPACE
Some DET
side NOUN
effects NOUN
are AUX
pretty ADV
common ADJ
. PUNCT
  SPACE
Chemo NOUN
. PUNCT
drugsare VERB
rather ADV
nasty ADJ
. PUNCT
  SPACE
It PRON
can AUX
cause VERB
a DET
person NOUN
to PART
lose VERB
their PRON
appetite NOUN
and CCONJ
to PART
experience VERB
nausea NOUN
and CCONJ
vomiting NOUN
. PUNCT
  SPACE
Things NOUN
to PART
help VERB
this DET
include VERB
eating VERB
smallfrequent ADJ
meals NOUN
. PUNCT
  SPACE
It PRON
is AUX
also ADV
suggested VERB
that SCONJ
if SCONJ
nausea NOUN
/ SYM
vomiting NOUN
( PUNCT
hereafterknown VERB
as SCONJ
n PROPN
/ SYM
v X
) PUNCT
occurs VERB
that SCONJ
the DET
person NOUN
notify VERB
the DET
doctor NOUN
; PUNCT
there PRON
are AUX
medicinestthat PROPN
help VERB
nausea NOUN
. PUNCT
  SPACE
Diarrhea PROPN
can AUX
be AUX
an DET
effect NOUN
. PUNCT
  SPACE
Antidiarrheal ADJ
medications NOUN
can AUX
be AUX
given VERB
, PUNCT
and CCONJ
good ADJ
skincare NOUN
and CCONJ
fluid NOUN
intake NOUN
are AUX
important ADJ
. PUNCT
Probably ADV
the DET
one NUM
of ADP
biggest ADJ
concsern NOUN
is AUX
hair NOUN
loss NOUN
. PUNCT
  SPACE
This DET
does AUX
not PART
alwayshappen VERB
. PUNCT
  SPACE
It PRON
depends VERB
on ADP
what PRON
drugs NOUN
are AUX
being AUX
given VERB
, PUNCT
and CCONJ
on ADP
the DET
person NOUN
themself PRON
. PUNCT
  SPACE
Different ADJ
people NOUN
taking VERB
the DET
same ADJ
drug NOUN
can AUX
and CCONJ
do AUX
have AUX
differentside NOUN
effects NOUN
. PUNCT
  SPACE
I PRON
have AUX
seen VERB
some DET
literature NOUN
which PRON
states VERB
that SCONJ
wearing VERB
a DET
snugheadband NOUN
and/or CCONJ
wearing VERB
an DET
ice NOUN
cap NOUN
can AUX
help VERB
reduce VERB
hair NOUN
loss NOUN
, PUNCT
presumablyby ADJ
reducing VERB
blood NOUN
flow NOUN
to ADP
the DET
scalp NOUN
. PUNCT
  SPACE
If SCONJ
anyone PRON
has AUX
seen VERB
research NOUN
on ADP
thistoo NOUN
, PUNCT
I PRON
would AUX
love VERB
to PART
see VERB
it PRON
, PUNCT
and CCONJ
possibly ADV
some DET
bib PROPN
data NOUN
. PUNCT
I PRON
highly ADV
recommend VERB
making VERB
contact NOUN
with ADP
the DET
American PROPN
Cancer PROPN
Society PROPN
. PUNCT
They PRON
have AUX
a DET
vast ADJ
selection NOUN
of ADP
literature NOUN
and CCONJ
information NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
if SCONJ
your PRON
friend NOUN
has AUX
had VERB
a DET
mastectomy NOUN
, PUNCT
I PRON
highly ADV
recommend VERB
" PUNCT
Reach VERB
for ADP
Recovery" PROPN
. PUNCT
It PRON
is AUX
a DET
support NOUN
group NOUN
comprised VERB
entirely ADV
of ADP
women NOUN
who PRON
have AUX
lost VERB
a DET
breast NOUN
because SCONJ
of ADP
cancer NOUN
. PUNCT
  SPACE
They PRON
can AUX
offer VERB
some DET
excellent ADJ
support NOUN
and CCONJ
suggestions NOUN
. PUNCT
If SCONJ
you PRON
have AUX
further ADJ
questions NOUN
, PUNCT
please INTJ
send VERB
me PRON
E NOUN
- NOUN
mail NOUN
. PUNCT
  SPACE
I PRON
hav VERB
some DET
goodaccess NOUN
to ADP
information NOUN
, PUNCT
and CCONJ
I PRON
enjoy VERB
trying VERB
to PART
help VERB
other ADJ
people NOUN
. PUNCT
I PRON
wish VERB
the DET
best ADJ
to ADP
you PRON
and CCONJ
your PRON
friend NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59445From NUM
: PUNCT
isckbk@nuscc.nus.sg PROPN
( PUNCT
Kiong PROPN
Beng PROPN
Kee)Subject NOUN
: PUNCT
HivesMy ADJ
wife NOUN
had AUX
hives NOUN
during ADP
the DET
first ADJ
two NUM
monthsof NOUN
her PRON
pregnancy NOUN
. PUNCT
  SPACE
My PRON
son NOUN
( PUNCT
3 NUM
months NOUN
old ADJ
) PUNCT
, PUNCT
breast NOUN
- PUNCT
fed PROPN
, PUNCT
now ADV
has AUX
the DET
same ADJ
symptoms NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
to ADP
a DET
skin NOUN
- PUNCT
specialist NOUN
, PUNCT
but CCONJ
he PRON
has AUX
merely ADV
prescribed VERB
various ADJ
medicines NOUN
( PUNCT
oneeach NOUN
visit NOUN
as SCONJ
though SCONJ
by ADP
trial NOUN
and CCONJ
error NOUN
: PUNCT
-))Anti PROPN
- PUNCT
histamines NOUN
worked VERB
on ADP
both DET
of ADP
them PRON
, PUNCT
but CCONJ
looks VERB
likebecoming VERB
less ADV
effective ADJ
. PUNCT
Are AUX
there PRON
other ADJ
solutions NOUN
? PUNCT
  SPACE
Thanks.-- PROPN
Kiong PROPN
Beng PROPN
KeeDept PROPN
of ADP
Information PROPN
Systems PROPN
and CCONJ
Computer PROPN
ScienceNational PROPN
University PROPN
of ADP
SingaporeLower PROPN
Kent PROPN
Ridge PROPN
Road PROPN
, PUNCT
SINGAPORE PROPN
0511Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59446From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu NUM
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Miscelaneous ADJ
soon ADV
- PUNCT
to PART
- PUNCT
have AUX
- PUNCT
baby NOUN
questionsIn PROPN
article NOUN
< X
C66919.Inz@world.std.com PROPN
> X
, PUNCT
rmccown@world.std.com PROPN
( PUNCT
Bob PROPN
McCown PROPN
) PUNCT
writes VERB
... PUNCT
>We're X
about ADP
to PART
have AUX
our PRON
first ADJ
baby NOUN
, PUNCT
and CCONJ
have AUX
a DET
few ADJ
questions NOUN
that PRON
we PRON
> X
dont PROPN
seem VERB
to PART
be AUX
able ADJ
to PART
get AUX
answered VERB
to ADP
our PRON
satisfaction NOUN
. PUNCT
> X
> X
Reguarding VERB
having VERB
a DET
baby NOUN
boy NOUN
circumsized VERB
, PUNCT
what PRON
are AUX
the DET
medical ADJ
pros NOUN
> X
and CCONJ
cons NOUN
? PUNCT
  SPACE
All DET
we PRON
've AUX
heard VERB
is AUX
' PUNCT
its PRON
up ADP
to ADP
the DET
parents NOUN
' PUNCT
. PUNCT
> X
Unfortonately ADV
, PUNCT
that SCONJ
truly ADV
is AUX
about ADP
the DET
best ADJ
summation NOUN
of ADP
the DET
researchthat NOUN
there PRON
is AUX
. PUNCT
  SPACE
Advantages NOUN
stated VERB
of ADP
circumcison NOUN
included VERB
probablyprevention NOUN
of ADP
penile NOUN
cancer NOUN
, PUNCT
( PUNCT
which PRON
, PUNCT
interestingly ADV
, PUNCT
occurs VERB
mostly ADV
in ADP
menwhose ADJ
personal ADJ
hygiene NOUN
is AUX
exceptionally ADV
poor ADJ
) PUNCT
, PUNCT
simplicity NOUN
of ADP
personalhygiene NOUN
, PUNCT
prevention NOUN
of ADP
urinary ADJ
tract NOUN
infections NOUN
, PUNCT
and CCONJ
prevention NOUN
ofa NOUN
unretractible ADJ
foreskin X
, PUNCT
  SPACE
Disadvantages NOUN
include VERB
infection NOUN
from ADP
the DET
procedure NOUN
, PUNCT
pain NOUN
, PUNCT
etc X
. PUNCT
  SPACE
I PRON
apologize VERB
; PUNCT
I PRON
am AUX
trying VERB
to PART
pull VERB
this DET
offthe NOUN
top NOUN
of ADP
my PRON
head NOUN
. PUNCT
  SPACE
I PRON
will AUX
post VERB
what PRON
I PRON
discovered VERB
in ADP
research NOUN
; PUNCT
I PRON
dida NOUN
paper NOUN
on ADP
the DET
topic NOUN
in ADP
my PRON
research NOUN
class NOUN
in ADP
Nursing PROPN
school NOUN
. PUNCT
It PRON
really ADV
is AUX
a DET
decision NOUN
that PRON
is AUX
up ADP
to ADP
the DET
parents NOUN
. PUNCT
  SPACE
Some DET
parents NOUN
usethe VERB
reasoning NOUN
that SCONJ
they PRON
will AUX
" PUNCT
look VERB
like SCONJ
Daddy NOUN
" PUNCT
and CCONJ
like SCONJ
their PRON
friendsas ADJ
justification NOUN
. PUNCT
  SPACE
There PRON
is AUX
nothing PRON
wrong ADJ
with ADP
this DET
; PUNCT
just ADV
be AUX
sure ADJ
it PRON
iswhat ADP
you PRON
want VERB
to PART
do AUX
, PUNCT
since SCONJ
it PRON
is AUX
rather ADV
difficult ADJ
to ADP
uncircumcisea ADJ
male NOUN
, PUNCT
although SCONJ
a DET
major ADJ
surgical ADJ
procedure NOUN
exists.>How NOUN
about ADP
the DET
pregnant ADJ
woman NOUN
sitting VERB
in ADP
a DET
tub NOUN
of ADP
water NOUN
? PUNCT
  SPACE
We PRON
've AUX
heard VERB
> X
stories NOUN
of ADP
infection NOUN
, PUNCT
etc X
. PUNCT
  SPACE
How ADV
about ADP
after ADP
the DET
water NOUN
has AUX
broken VERB
? PUNCT
> X
As ADV
long ADV
as SCONJ
your PRON
membranes NOUN
have AUX
not PART
broken VERB
and CCONJ
you PRON
have AUX
not PART
had VERB
anyproblems NOUN
with ADP
your PRON
pregnancy NOUN
, PUNCT
it PRON
should AUX
be AUX
OK ADJ
to PART
sit VERB
in ADP
a DET
tub NOUN
of ADP
water NOUN
. PUNCT
HOWEVER ADV
, PUNCT
I PRON
WOULD AUX
RECOMMEND VERB
USING VERB
YOUR PRON
OWN ADJ
BATHTUB NOUN
IN ADP
YOUR PRON
OWN ADJ
HOME!It NOUN
is AUX
nearly ADV
impossible ADJ
to PART
guarantee VERB
the DET
cleanliness NOUN
and CCONJ
safety NOUN
of ADP
" PUNCT
public"hot PROPN
tubs NOUN
. PUNCT
  SPACE
A DET
nice ADJ
warm ADJ
bath NOUN
can AUX
be AUX
very ADV
relaxing ADJ
, PUNCT
especially ADV
if SCONJ
your PRON
backis NOUN
killing VERB
you PRON
! PUNCT
  SPACE
And CCONJ
it PRON
would AUX
possibly ADV
be AUX
advisable ADJ
to PART
avoid VERB
bubble NOUN
bathsoap NOUN
, PUNCT
esp ADV
. PUNCT
if SCONJ
you PRON
are AUX
prone ADJ
to ADP
yeast NOUN
infection NOUN
. PUNCT
Hope VERB
these DET
tips NOUN
help VERB
you PRON
some.Elisapicl25@fsphy1.physics.fsu.eduNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59447From NUM
: PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth)Subject PROPN
: PUNCT
Kidney PROPN
Stones PROPN
     SPACE
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
Marty PROPN
Banschbach PROPN
) PUNCT
writes:[ NOUN
... PUNCT
]B X
> X
  SPACE
Medicine PROPN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
ThereB PROPN
> X
  SPACE
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
isB PROPN
> X
  SPACE
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
beenB PROPN
> X
  SPACE
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng PROPN
theB PROPN
> X
  SPACE
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stonesB PROPN
> X
  SPACE
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
toB PROPN
> X
  SPACE
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
ofB NOUN
> X
  SPACE
Medicine NOUN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
B NOUN
> X
  SPACE
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
isB ADJ
> X
  SPACE
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
    SPACE
[ PUNCT
... PUNCT
] PUNCT
B NOUN
> X
  SPACE
Marty PROPN
B. PROPN
Marty PROPN
, PUNCT
I PRON
personally ADV
would AUX
n't PART
be AUX
so ADV
quick ADJ
and CCONJ
take VERB
that SCONJ
NEJM PROPN
article NOUN
  SPACE
on ADP
kidney NOUN
stones NOUN
as SCONJ
gospel NOUN
. PUNCT
First ADV
of ADP
all DET
, PUNCT
I PRON
would AUX
want VERB
to PART
know VERB
who PRON
sponsored VERB
that DET
study NOUN
. PUNCT
I PRON
have AUX
seen VERB
too ADV
many ADJ
" PUNCT
nutrition NOUN
" PUNCT
bulletins NOUN
over ADP
the DET
years NOUN
from ADP
local ADJ
newspapers NOUN
, PUNCT
magazines NOUN
, PUNCT
to ADP
TV NOUN
- PUNCT
guide NOUN
, PUNCT
with ADP
disclaimers NOUN
on ADP
the DET
bottom NOUN
informing VERB
us PRON
that SCONJ
this DET
great ADJ
health NOUN
news NOUN
was AUX
brought VERB
to ADP
us PROPN
compliments NOUN
of ADP
the DET
Dairy PROPN
Industries PROPN
. PUNCT
There PRON
are AUX
of ADP
course NOUN
numerous ADJ
other ADJ
interest NOUN
groups NOUN
now ADV
that PRON
thrive VERB
financially ADV
on ADP
the DET
media NOUN
hype NOUN
created VERB
from ADP
the DET
supposedly ADV
enormous ADJ
  SPACE
benefits NOUN
of ADP
increasing VERB
one PRON
's PART
calcium NOUN
intake NOUN
. PUNCT
Secondly ADV
, PUNCT
were AUX
ALL DET
the DET
kidney NOUN
stones NOUN
of ADP
the DET
test NOUN
subjects NOUN
involved VERB
  SPACE
in ADP
that DET
project NOUN
analysed VERB
for ADP
their PRON
chemical NOUN
composition NOUN
? PUNCT
  SPACE
The DET
study NOUN
did AUX
n't PART
say VERB
that DET
, PUNCT
it PRON
only ADV
claimed VERB
that SCONJ
" PUNCT
most ADJ
kidney NOUN
stones NOUN
are AUX
large- ADJ
ly PROPN
calcium NOUN
. PUNCT
" PUNCT
Perhaps ADV
it PRON
wo AUX
n't PART
be AUX
long ADJ
before ADP
another DET
study NOUN
comes VERB
up ADP
with ADP
the DET
exact ADJ
opposite ADJ
findings NOUN
. PUNCT
A DET
curious ADJ
phenomenon NOUN
with ADP
researchers NOUN
is AUX
that SCONJ
they PRON
are AUX
oftentimes NOUN
just ADV
plain ADV
wrong ADJ
. PUNCT
It PRON
would AUX
n't PART
be AUX
the DET
first ADJ
time NOUN
. PUNCT
  SPACE
Sodium PROPN
/ SYM
magnesium PROPN
/ SYM
calcium NOUN
/ SYM
phosphorus PROPN
ratios NOUN
are AUX
, PUNCT
in ADP
my PRON
opinion NOUN
, PUNCT
still ADV
  SPACE
the DET
most ADV
reliable ADJ
indicators NOUN
for ADP
the DET
cause NOUN
, PUNCT
treatment NOUN
, PUNCT
and CCONJ
prevention NOUN
  SPACE
of ADP
kidney NOUN
stones NOUN
. PUNCT
I PRON
, PUNCT
for ADP
one NUM
, PUNCT
will AUX
continue VERB
to PART
recommend VERB
the DET
most ADV
logical ADJ
changes NOUN
in ADP
one NUM
's PART
diet NOUN
or CCONJ
through ADP
supplementation NOUN
to PART
counteract VERB
or CCONJ
prevent VERB
kidney NOUN
stones NOUN
of ADP
either DET
type NOUN
; PUNCT
and CCONJ
they PRON
definitely ADV
wo AUX
n't PART
include VERB
an DET
INCREASE NOUN
in ADP
calcium NOUN
if SCONJ
the DET
stones NOUN
have AUX
been AUX
identified VERB
as SCONJ
being AUX
of ADP
the DET
calcium NOUN
type NOUN
and CCONJ
people NOUN
's PART
chemical ADJ
analysis NOUN
confirms VERB
that SCONJ
they PRON
would AUX
benefit VERB
from ADP
a DET
PHOSPHORUS PROPN
- PUNCT
raising VERB
approach NOUN
instead ADV
! PUNCT
     SPACE
Ron PROPN
Roth PROPN
= SYM
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
-- PUNCT
  SPACE
Internet NOUN
: PUNCT
rn.3228@rose.com PROPN
  SPACE
- PUNCT
  SPACE
Rosenet PROPN
: PUNCT
ron PROPN
roth@rosehamilton PROPN
  SPACE
-- PUNCT
* PUNCT
A DET
stone NOUN
on ADP
the DET
ground NOUN
is AUX
better ADJ
than SCONJ
a DET
stone NOUN
in ADP
the DET
body.--- NOUN
   SPACE
RoseReader PROPN
2.10 NUM
  SPACE
P003228 PROPN
Entered VERB
at ADP
[ PUNCT
ROSEHAMILTON NOUN
] PUNCT
   SPACE
RoseMail PROPN
2.10 NUM
: PUNCT
Usenet PROPN
: PUNCT
Rose PROPN
Media PROPN
- PUNCT
Hamilton PROPN
( PUNCT
416 NUM
) PUNCT
575 NUM
- PUNCT
5363Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59448From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Umbilical PROPN
HerniaIn PROPN
article NOUN
< X
1993Apr27.060740.3068@shannon.ee.wits.ac.za NUM
> X
gary@concave.cs.wits.ac.za NOUN
( PUNCT
Gary PROPN
Taylor PROPN
) PUNCT
writes:>Could AUX
anyone PRON
give VERB
me PRON
information NOUN
on ADP
Umbilical PROPN
hernias.>The NOUN
patient NOUN
is AUX
over ADP
weight NOUN
and CCONJ
has AUX
a DET
protruding ADJ
hernia.>>Surgery NOUN
may AUX
be AUX
risky ADJ
due ADP
to ADP
the DET
obesity.>What X
other ADJ
remedies NOUN
could AUX
I PRON
try?Unless VERB
the DET
patient NOUN
has AUX
a DET
very ADV
short ADJ
life NOUN
expectancy NOUN
, PUNCT
the DET
possible ADJ
complicationsfrom PROPN
a DET
hernia NOUN
that PRON
has AUX
n't PART
been AUX
repaired VERB
far ADV
outweigh VERB
the DET
risks NOUN
of ADP
surgery NOUN
. PUNCT
The DET
risks NOUN
of ADP
surgery NOUN
, PUNCT
anyway ADV
, PUNCT
are AUX
minimal ADJ
. PUNCT
Unless SCONJ
they PRON
are AUX
exceedingly ADV
large ADJ
, PUNCT
hernias PROPN
can AUX
be AUX
fixed VERB
under ADP
local ADJ
anesthesia PROPN
. PUNCT
Do AUX
n't PART
forget VERB
that SCONJ
hernias NOUN
are AUX
one NUM
the DET
leading VERB
causes NOUN
of ADP
small ADJ
bowel NOUN
obstruction NOUN
. PUNCT
And CCONJ
the DET
smaller ADJ
the DET
hernia PROPN
is AUX
, PUNCT
the DET
higher ADJ
the DET
chances NOUN
that PRON
a DET
loop NOUN
of ADP
bowel PROPN
willbecome PROPN
incarcerated VERB
or CCONJ
strangulated.===============================Howard PROPN
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59449Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
FictionFrom PROPN
: PUNCT
pchurch@swell.actrix.gen.nz PROPN
( PUNCT
Pat PROPN
Churchill)I PROPN
am AUX
currently ADV
in ADP
the DET
throes NOUN
of ADP
a DET
hay NOUN
fever NOUN
attack NOUN
. PUNCT
  SPACE
SO ADV
who PRON
certainlynever VERB
reads VERB
Usenet PROPN
, PUNCT
let VERB
alone ADV
Sci.med VERB
, PUNCT
said VERB
quite ADV
spontaneously ADV
" PUNCT
There PRON
are AUX
a DET
lot NOUN
of ADP
mushrooms NOUN
and CCONJ
toadstools NOUN
out ADP
on ADP
the DET
lawn NOUN
at ADP
themoment NOUN
. PUNCT
  SPACE
Sure INTJ
that DET
's AUX
not PART
your PRON
problem?"Well NOUN
, PUNCT
who PRON
knows VERB
? PUNCT
  SPACE
Or CCONJ
maybe ADV
it PRON
's AUX
the DET
sourdough NOUN
bread NOUN
I PRON
bake?After VERB
reading NOUN
learned VERB
, PUNCT
semi ADV
- ADJ
learned ADJ
, PUNCT
possibly ADV
ignorant ADJ
and CCONJ
downrightludicrous ADJ
stuff NOUN
in ADP
this DET
thread NOUN
, PUNCT
I PRON
am AUX
about ADV
ready ADJ
to PART
believe VERB
anything PRON
: PUNCT
-)If VERB
the DET
hayfever NOUN
gets VERB
any DET
worse ADJ
, PUNCT
maybe ADV
I PRON
will AUX
cook VERB
those DET
toadstools NOUN
... PUNCT
-- PUNCT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PUNCT
            SPACE
The DET
floggings NOUN
will AUX
continue VERB
until ADP
morale NOUN
improves VERB
                  SPACE
pchurch@swell.actrix.gen.nz PROPN
  SPACE
Pat PROPN
Churchill PROPN
, PUNCT
Wellington PROPN
New PROPN
Zealand PROPN
     SPACE
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59450From NUM
: PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf)Subject NUM
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1993Apr22.143929.26131@midway.uchicago.edu NUM
> X
jacquier@gsbux1.uchicago.edu NOUN
( PUNCT
Eric PROPN
Jacquier PROPN
) PUNCT
writes:>>I PROPN
am AUX
interested ADJ
in ADP
trying VERB
this DET
" PUNCT
desensitization NOUN
" PUNCT
( PUNCT
? PUNCT
) PUNCT
method NOUN
> X
against ADP
hay PROPN
fever.>What PROPN
is AUX
the DET
state NOUN
of ADP
affairs NOUN
about ADP
this DET
. PUNCT
I PRON
went VERB
to ADP
a DET
doctor NOUN
and CCONJ
> X
paid VERB
$ SYM
85 NUM
for ADP
a DET
10 NUM
minute NOUN
interview NOUN
+ CCONJ
3 NUM
scratches NOUN
, PUNCT
leading VERB
to ADP
the DET
> X
diagnostic ADJ
that PRON
I PRON
am AUX
allergic ADJ
to ADP
( PUNCT
June PROPN
and CCONJ
Timothy PROPN
) PUNCT
grass.>I PROPN
believe VERB
this DET
. PUNCT
From ADP
now ADV
on ADP
it PRON
looks VERB
like SCONJ
2 NUM
shots NOUN
per ADP
week NOUN
for>6 ADJ
months NOUN
followed VERB
by ADP
1 NUM
shot NOUN
per ADP
month NOUN
or CCONJ
so ADV
. PUNCT
Each DET
shot VERB
costs>$20 NOUN
. PUNCT
Talking VERB
about ADP
soaring VERB
costs NOUN
and CCONJ
the DET
Health PROPN
care NOUN
system NOUN
, PUNCT
I PRON
would AUX
> X
call VERB
that SCONJ
a DET
racket NOUN
. PUNCT
We PRON
are AUX
not PART
talking VERB
about ADP
rare ADJ
Amazonian ADJ
grasses NOUN
> X
here ADV
, PUNCT
but CCONJ
the DET
garbage NOUN
which PRON
grows VERB
behind ADP
the DET
doctor NOUN
's PART
office.>Apart PROPN
from ADP
this DET
issue NOUN
, PUNCT
I PRON
was AUX
somewhat ADV
disappointed ADJ
to PART
find VERB
out ADP
> X
that SCONJ
you PRON
have AUX
to PART
keep VERB
getting VERB
the DET
shots NOUN
forever ADV
. PUNCT
Is AUX
that DET
right?>Thanks PUNCT
for ADP
information.>>Go PROPN
to ADP
your PRON
public ADJ
library NOUN
and CCONJ
get AUX
the DET
February PROPN
, PUNCT
1988 NUM
issue NOUN
of ADP
ConsumerReports PROPN
. PUNCT
  SPACE
An DET
article NOUN
on ADP
allergy ADJ
shots NOUN
begins VERB
on ADP
page NOUN
96 NUM
. PUNCT
  SPACE
This DET
articleis PROPN
MUST AUX
reading VERB
for ADP
anyone PRON
contemplating VERB
allergy NOUN
shots NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59451From NUM
: PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
Septoplasty PROPN
In ADP
article NOUN
< X
badboyC64t0z.FGq@netcom.com PROPN
> X
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller PROPN
) PUNCT
writes:>>(I've NOUN
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn't ADV
> X
really ADV
help VERB
them).>>I PART
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see VERB
some DET
> ADJ
relief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
of ADP
> X
that SCONJ
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved.>>>Did PUNCT
your PRON
ENT PROPN
also ADV
tell VERB
you PRON
that SCONJ
this DET
procedure NOUN
may AUX
remove VERB
warts NOUN
from ADP
the DET
solesof NOUN
your PRON
feet NOUN
and CCONJ
improve VERB
your PRON
sex NOUN
life?Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59452From NUM
: PUNCT
rdd@uts.ipp-garching.mpg.de PROPN
( PUNCT
Reinhard PROPN
Drube)Subject NUM
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser PROPN
printers??Hello PROPN
, PUNCT
does AUX
anyone PRON
know VERB
about ADP
allergic ADJ
reactions NOUN
caused VERB
by ADP
the DET
developer NOUN
/ SYM
tonerof ADJ
laser NOUN
printers NOUN
? PUNCT
What PRON
chemical NOUN
stuff NOUN
is AUX
involved?Thanks VERB
in ADP
advance!Reinhardemail NOUN
: PUNCT
rdd@ibma.ipp-garching.mpg.deNewsgroup X
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59453From NUM
: PUNCT
pkhalsa@wpi X
. PUNCT
WPI.EDU PROPN
( PUNCT
Partap PROPN
S PROPN
Khalsa)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Strain VERB
Gage PROPN
Applications PROPN
in ADP
vivoIn PROPN
article NOUN
< X
1993Apr28.173600.21703@organpipe.uug.arizona.edu NUM
> X
ame_0123@bigdog.engr.arizona.edu ADJ
( PUNCT
Terrance PROPN
J. PROPN
Dishongh PROPN
) PUNCT
writes:>Greeting>>I NOUN
am AUX
starting VERB
work NOUN
on ADP
a DET
project NOUN
where ADV
I PRON
am AUX
trying VERB
to PART
make VERB
strain VERB
gages NOUN
> X
bond NOUN
to ADP
bone NOUN
in ADP
vivo NOUN
or CCONJ
a DET
period NOUN
of ADP
several ADJ
months NOUN
. PUNCT
  SPACE
I PRON
am AUX
currently ADV
> X
using VERB
hydroxyapaptite ADJ
back ADP
gages NOUN
, PUNCT
and CCONJ
I PRON
have AUX
tried VERB
M NOUN
- PUNCT
bonding VERB
the DET
gages NOUN
> X
to ADP
the DET
bone NOUN
. PUNCT
  SPACE
Apart ADV
from ADP
those DET
two NUM
application NOUN
methods NOUN
there ADV
doesn't VERB
> X
seem VERB
to PART
be AUX
much ADV
else ADV
in ADP
the DET
literature NOUN
. PUNCT
  SPACE
I PRON
have AUX
only ADV
an DET
engineering NOUN
> X
background NOUN
not PART
medical ADJ
or CCONJ
biological ADJ
. PUNCT
  SPACE
I PRON
would AUX
be AUX
interest NOUN
in ADP
any DET
> NUM
ideas NOUN
about ADP
how ADV
to PART
stimulte VERB
bone NOUN
growth NOUN
on ADP
the DET
surface NOUN
of ADP
cortical ADJ
bone.>>Thanks NOUN
for ADP
oyur NOUN
help NOUN
in ADP
Advance.>>Terrance NOUN
J PROPN
Dishongh>ame_0123@bigdog.engr.arizona.eduTerrance PROPN
, PUNCT
  SPACE
There PRON
is AUX
a DET
good ADJ
article NOUN
entitled VERB
: PUNCT
  SPACE
" PUNCT
A DET
long ADJ
- PUNCT
term NOUN
in ADP
vivo NOUN
bone NOUN
strainmeasurement NOUN
device NOUN
, PUNCT
" PUNCT
  SPACE
Journal PROPN
of ADP
Investigative PROPN
Surgery PROPN
1989 NUM
; PUNCT
2(2 X
) PUNCT
: PUNCT
195 NUM
- PUNCT
206by NOUN
Szivek PROPN
JA PROPN
& CCONJ
Magee PROPN
FP PROPN
. PUNCT
  SPACE
I PRON
think VERB
you PRON
can AUX
find VERB
some DET
others NOUN
by ADP
searching VERB
MedLine PROPN
. PUNCT
Partap PROPN
S. PROPN
Khalsa PROPN
, PUNCT
MS PROPN
, PUNCT
DC PROPN
, PUNCT
FACOPost PROPN
- PUNCT
Doc PROPN
Research PROPN
FellowU.Mass PROPN
. PUNCT
Med PROPN
. PUNCT
SchoolNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59454From NUM
: PUNCT
johnf@HQ.Ileaf PROPN
. PUNCT
COM PROPN
( PUNCT
John PROPN
Finlayson)Subject NUM
: PUNCT
Re ADP
: PUNCT
feverfew ADJ
for ADP
migrainesIn PROPN
article NOUN
< X
ltrdroINNltf@exodus NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
> X
brenda@bookhouse NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
Brenda PROPN
Bowden PROPN
) PUNCT
writes:>>Does VERB
anyone PRON
know VERB
about ADP
these DET
studies NOUN
? PUNCT
Or CCONJ
have AUX
experience NOUN
with ADP
feverfew?>I'm NOUN
skeptical ADJ
, PUNCT
but CCONJ
open ADJ
to ADP
trying VERB
it PRON
if SCONJ
I PRON
can AUX
find VERB
out ADP
more ADJ
about ADP
this.>What DET
is AUX
feverfew ADJ
, PUNCT
and CCONJ
how ADV
much ADJ
would AUX
you PRON
take VERB
to PART
prevent VERB
migraines NOUN
( PUNCT
if SCONJ
> X
this DET
is AUX
a DET
good ADJ
idea NOUN
, PUNCT
that DET
is ADV
) PUNCT
? PUNCT
Are AUX
there PRON
any DET
known VERB
risks NOUN
or CCONJ
side NOUN
effects NOUN
> X
of ADP
feverfew PROPN
? PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
info!>BrendaI've NOUN
tried VERB
it PRON
, PUNCT
and CCONJ
so ADV
has AUX
one NUM
friend NOUN
of ADP
mine PRON
. PUNCT
  SPACE
No DET
known VERB
side NOUN
effects NOUN
orrisks NOUN
. PUNCT
  SPACE
It PRON
did AUX
n't PART
seem VERB
to PART
work VERB
for ADP
us PRON
, PUNCT
but CCONJ
several ADJ
studies NOUN
now ADV
have AUX
suggested VERB
it PRON
does AUX
work NOUN
for ADP
many ADJ
people NOUN
, PUNCT
so ADV
I PRON
think VERB
it PRON
's AUX
worth ADJ
a DET
try NOUN
. PUNCT
You PRON
can AUX
find VERB
it PRON
in ADP
capsule NOUN
form NOUN
at ADP
health NOUN
food NOUN
stores NOUN
. PUNCT
  SPACE
Up ADP
to PART
six NUM
capsulesa NOUN
day NOUN
was AUX
recommended VERB
, PUNCT
if SCONJ
I PRON
remember VERB
correctly ADV
. PUNCT
  SPACE
It PRON
can AUX
also ADV
be AUX
prepared VERB
as SCONJ
a DET
tea NOUN
. PUNCT
Good ADJ
luck NOUN
, PUNCT
JohnNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59455From NUM
: PUNCT
Randy_Faneuf@vos.stratus.comSubject NUM
: PUNCT
Urine ADJ
analysis NOUN
Someone PRON
please INTJ
help VERB
me PRON
. PUNCT
I PRON
am AUX
searching VERB
to PART
find VERB
out ADP
( PUNCT
as ADV
many ADJ
others NOUN
may)an VERB
absolute ADJ
' PUNCT
cure NOUN
' PUNCT
to ADP
removing VERB
all DET
detectable ADJ
traces NOUN
of ADP
marijuana PROPN
froma PROPN
persons NOUN
body NOUN
. PUNCT
Is AUX
there PRON
a DET
chemical ADJ
or CCONJ
natural ADJ
substance NOUN
that PRON
can AUX
beingested VERB
or CCONJ
added VERB
to PART
urine VERB
to PART
make VERB
it PRON
undetectable ADJ
in ADP
urine ADJ
analysis NOUN
. PUNCT
If SCONJ
so ADV
where ADV
can AUX
these DET
substances NOUN
be AUX
found VERB
. PUNCT
             SPACE
If SCONJ
you PRON
know VERB
this DET
information NOUN
, PUNCT
please INTJ
Email VERB
me PRON
directly ADV
                             SPACE
Thank VERB
You PRON
Kindly ADV
for ADP
your PRON
support NOUN
, PUNCT
                         SPACE
RandyNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59456From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
Septoplasty PROPN
In ADP
article NOUN
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf PROPN
) PUNCT
writes:>In PROPN
article NOUN
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller PROPN
) PUNCT
writes:>>(I've NOUN
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn't>>really ADV
help VERB
them).>>>>I NOUN
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see NOUN
some>>relief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
of>>that ADP
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved.>Did NOUN
your PRON
ENT PROPN
also ADV
tell VERB
you PRON
that SCONJ
this DET
procedure NOUN
may AUX
remove VERB
warts NOUN
from ADP
the DET
soles NOUN
> X
of ADP
your PRON
feet NOUN
and CCONJ
improve VERB
your PRON
sex NOUN
life?Actually ADV
, PUNCT
severe ADJ
headaches NOUN
due ADJ
to ADP
stopped VERB
up ADP
sinuses NOUN
( PUNCT
plugged VERB
ostia NOUN
) PUNCT
arepossible ADJ
, PUNCT
and CCONJ
sinus NOUN
surgery NOUN
which PRON
widens VERB
the DET
ostia NOUN
- PUNCT
from ADP
the DET
normal ADJ
2 NUM
mm PROPN
to ADP
about ADV
10 NUM
mm NOUN
- PUNCT
should AUX
relieve VERB
this DET
. PUNCT
  SPACE
There PRON
are AUX
non ADJ
- ADJ
surgical ADJ
ways NOUN
, PUNCT
however ADV
, PUNCT
to PART
keep VERB
the DET
ostia NOUN
open ADJ
( PUNCT
however ADV
, PUNCT
in ADP
a DET
few ADJ
individuals NOUN
, PUNCT
theirostia PROPN
are AUX
naturally ADV
very ADV
small ADJ
) PUNCT
, PUNCT
and CCONJ
Dr. PROPN
Ivker PROPN
's PART
book NOUN
talks NOUN
about ADP
this DET
. PUNCT
The DET
underlying ADJ
cause NOUN
of ADP
chronic ADJ
sinusitis NOUN
is AUX
NOT ADV
cured VERB
by ADP
this DET
kind NOUN
ofsinus NOUN
surgery NOUN
, PUNCT
though ADV
. PUNCT
About ADP
asthma PROPN
, PUNCT
that DET
's AUX
a DET
little ADJ
more ADV
controversial ADJ
. PUNCT
  SPACE
Dr. PROPN
Ivker PROPN
, PUNCT
in ADP
his PRON
book,"Sinus PROPN
Survival PROPN
" PUNCT
, PUNCT
* PUNCT
speculates VERB
* PUNCT
( PUNCT
and CCONJ
says VERB
it PRON
's AUX
not PART
proven VERB
) PUNCT
, PUNCT
that SCONJ
many ADJ
casesof NOUN
asthma NOUN
are AUX
triggered VERB
by ADP
chronic ADJ
sinusitis NOUN
due ADP
to ADP
the DET
excessive ADJ
drainage(postnasal PROPN
drip NOUN
) PUNCT
from ADP
the DET
sinuses NOUN
. PUNCT
  SPACE
He PRON
's AUX
had AUX
many ADJ
patients NOUN
who PRON
've AUX
foundrelief NOUN
from ADP
asthma NOUN
when ADV
the DET
chronic ADJ
sinusitis NOUN
is AUX
reduced VERB
or CCONJ
eliminated VERB
-not PUNCT
clinical ADJ
proof NOUN
, PUNCT
but CCONJ
compelling ADJ
anecdotal ADJ
information NOUN
of ADP
this DET
speculation NOUN
. PUNCT
Before ADP
doing VERB
any DET
sinus NOUN
surgery NOUN
, PUNCT
first ADV
get AUX
THE DET
BOOK PROPN
- PUNCT
it PRON
discusses VERB
surgery NOUN
, PUNCT
as ADV
well ADV
as SCONJ
a DET
good ADJ
non ADJ
- ADJ
surgical ADJ
treatment NOUN
program NOUN
for ADP
chronic ADJ
sinusitis NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59457From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
What PRON
's AUX
the DET
origin NOUN
of ADP
" PUNCT
STAT?"In NOUN
article NOUN
< X
1993Apr28.100131.157926@zeus.calpoly.edu NUM
> X
dfield@flute.calpoly.edu PROPN
( PUNCT
InfoSpunj PROPN
( PUNCT
Dan PROPN
Field PROPN
) PUNCT
) PUNCT
writes:>The ADJ
term NOUN
" PUNCT
stat NOUN
" PUNCT
is AUX
used VERB
not PART
only ADV
in ADP
medicine NOUN
, PUNCT
but CCONJ
is AUX
a DET
commonly ADV
used VERB
> X
indicator NOUN
that SCONJ
something PRON
is AUX
urgent ADJ
. PUNCT
  SPACE
> X
> X
Does AUX
anyone PRON
know VERB
where ADV
it PRON
came VERB
from ADP
? PUNCT
  SPACE
My PRON
dictionary NOUN
was AUX
not PART
helpful.>>-- PUNCT
From ADP
the DET
word NOUN
' PUNCT
statim NOUN
' PUNCT
( PUNCT
Latin PROPN
, PUNCT
I PRON
think VERB
) PUNCT
, PUNCT
meaning VERB
immediately.=========================Howard ADP
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59458From NUM
: PUNCT
hartman@informix.com X
( PUNCT
Robert PROPN
Hartman)Subject NUM
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
1rjn0eINNnqn@MINERVA.CIS.YALE.EDU NUM
> X
wiesel-elisha@yale.edu NUM
( PUNCT
Elisha PROPN
Wiesel PROPN
) PUNCT
writes:>Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
colon NOUN
> X
cleansing NOUN
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
No ADV
doubt ADV
the DET
sci.med NOUN
* PUNCT
folks NOUN
are AUX
getting VERB
out ADP
their PRON
flamethrowers NOUN
. PUNCT
  SPACE
I'mrather PROPN
certain ADJ
that SCONJ
the DET
information NOUN
you PRON
got VERB
was AUX
not PART
medical ADJ
literaturein NOUN
the DET
accepted VERB
academic ADJ
/ SYM
scientific ADJ
journals NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
the DET
righteous ADJ
amongthem NOUN
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
. PUNCT
Also ADV
, PUNCT
insofar ADV
as SCONJ
it PRON
does AUX
n't PART
conform VERB
to ADP
the DET
accepted VERB
medical ADJ
presumptionthat PROPN
it PRON
just ADV
does AUX
n't PART
matter VERB
what PRON
you PRON
eat VERB
, PUNCT
and CCONJ
that SCONJ
we PRON
can AUX
think VERB
of ADP
theGI PROPN
tract NOUN
as SCONJ
a DET
black ADJ
box NOUN
in ADP
which PRON
nothing PRON
ever ADV
goes VERB
wrong ADJ
( PUNCT
except SCONJ
formaybe PROPN
cancer NOUN
and CCONJ
ulcers NOUN
) PUNCT
, PUNCT
the DET
righteous ADJ
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
too ADV
. PUNCT
Then ADV
there PRON
'll AUX
be AUX
the DET
ones NOUN
who PRON
call VERB
your PRON
doctor NOUN
a DET
raving NOUN
quack NOUN
, PUNCT
eventhough VERB
he PRON
, PUNCT
like SCONJ
Linus PROPN
Pauling PROPN
, PUNCT
is AUX
lucid ADJ
and CCONJ
robust ADJ
well ADV
into ADP
hisnineties NOUN
-- PUNCT
but CCONJ
nevermind VERB
about ADP
that DET
. PUNCT
  SPACE
He PRON
should AUX
n't PART
charge VERB
for ADP
hisequipment NOUN
and CCONJ
supplies NOUN
, PUNCT
since SCONJ
they PRON
're AUX
no ADV
doubt NOUN
not PART
approved VERB
by ADP
theFDA PROPN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
with ADP
FDA PROPN
approval NOUN
an DET
MD PROPN
or CCONJ
pharmaceutical NOUN
company NOUN
cancharge NOUN
whatever PRON
they PRON
can AUX
get AUX
for ADP
such ADJ
safe ADJ
and CCONJ
effective ADJ
treatments NOUN
asthalidomide VERB
. PUNCT
  SPACE
But CCONJ
nevermind NOUN
about ADP
that DET
either ADV
. PUNCT
Unfortunately ADV
, PUNCT
you PRON
dared VERB
to PART
step VERB
into ADP
the DET
sacred ADJ
turf NOUN
of ADP
Net PROPN
. PUNCT
Medical ADJ
. PUNCT
Discussion NOUN
without ADP
a DET
credential ADJ
and CCONJ
without ADP
understanding VERB
that SCONJ
therighteous ADJ
among ADP
them PRON
will AUX
make VERB
certain ADJ
that SCONJ
you PRON
are AUX
suitably ADV
denouncedbefore ADV
dismissing VERB
you PRON
as SCONJ
a DET
fool NOUN
. PUNCT
But CCONJ
maybe ADV
somebody PRON
without ADP
such DET
a DET
huge ADJ
chip NOUN
on ADP
their PRON
shoulder NOUN
willsend VERB
you PRON
some DET
reasonable ADJ
responses NOUN
by ADP
e PROPN
- PUNCT
mail.1/2 PROPN
; PUNCT
^ PROPN
) PUNCT
  SPACE
1/2 NUM
; PUNCT
^(Oh ADV
yes INTJ
, PUNCT
I PRON
did AUX
have AUX
a DET
point NOUN
. PUNCT
  SPACE
A DET
few ADJ
years NOUN
ago ADV
an DET
MD NOUN
with ADP
a DET
thrivingpractice NOUN
in ADP
a DET
very ADV
wealthy ADJ
part NOUN
of ADP
Silicon PROPN
Valley PROPN
once ADV
recommended VERB
thatI PROPN
take VERB
such ADJ
treatments NOUN
to PART
clear VERB
up ADP
a DET
skin NOUN
condition NOUN
. PUNCT
  SPACE
( PUNCT
Not PART
through ADP
hisoffice NOUN
, PUNCT
I PRON
might AUX
add VERB
. PUNCT
) PUNCT
  SPACE
Although SCONJ
I PRON
'm AUX
sure ADJ
that DET
's AUX
not PART
conclusive ADJ
, PUNCT
it PRON
wassure VERB
an DET
unusual ADJ
prescription!-rNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59459From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesIn PROPN
article NOUN
< X
1993Apr29.003406.55029@ux1.cts.eiu.edu NUM
> X
, PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes VERB
: PUNCT
> X
A DET
student NOUN
told VERB
me PRON
today NOUN
that SCONJ
she PRON
has AUX
been AUX
diagnosed VERB
with ADP
kidney NOUN
stones NOUN
, PUNCT
a DET
> X
cyst NOUN
on ADP
one NUM
kidney NOUN
, PUNCT
and CCONJ
a DET
kidney NOUN
infection NOUN
. PUNCT
  SPACE
She PRON
was AUX
upset ADJ
because SCONJ
her PRON
> X
condition NOUN
had AUX
been AUX
misdiagnosed VERB
since SCONJ
last ADJ
fall NOUN
, PUNCT
and CCONJ
she PRON
has AUX
been AUX
ill ADV
all DET
> X
this DET
time NOUN
. PUNCT
  SPACE
During ADP
her PRON
most ADV
recent ADJ
doctor NOUN
's PART
appointment NOUN
at ADP
her PRON
parents NOUN
' PART
> X
HMO PROPN
clinic NOUN
, PUNCT
she PRON
said VERB
that SCONJ
about ADP
FORTY PROPN
! PUNCT
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
of ADP
her PRON
kidney NOUN
. PUNCT
> X
When ADV
she PRON
asked VERB
why ADV
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
were AUX
being AUX
made VERB
, PUNCT
she PRON
was AUX
told VERB
by ADP
a DET
> X
technician NOUN
that SCONJ
they PRON
need VERB
to PART
see VERB
the DET
area NOUN
from ADP
different ADJ
views NOUN
, PUNCT
but CCONJ
she PRON
> X
says VERB
that SCONJ
about ADV
five NUM
x NOUN
- NOUN
rays NOUN
were AUX
made VERB
from ADP
EACH PROPN
angle NOUN
. PUNCT
  SPACE
She PRON
could AUX
n't PART
help VERB
> X
feeling VERB
that SCONJ
something PRON
must AUX
be AUX
wrong ADJ
with ADP
the DET
procedure NOUN
or CCONJ
something PRON
. PUNCT
  SPACE
She PRON
> X
is AUX
a DET
pre ADJ
- ADJ
med ADJ
student NOUN
and CCONJ
feels VERB
she PRON
could AUX
have AUX
understood VERB
what PRON
was AUX
> X
happening VERB
if SCONJ
someone PRON
would AUX
have AUX
explained VERB
. PUNCT
  SPACE
When ADV
nobody PRON
would AUX
, PUNCT
she PRON
got VERB
> X
worried VERB
. PUNCT
> X
	 SPACE
Also ADV
, PUNCT
she PRON
is AUX
told VERB
that SCONJ
thre PROPN
are AUX
300 NUM
! PUNCT
surgery NOUN
patients NOUN
ahead ADV
of ADP
her PRON
> X
and CCONJ
that SCONJ
they PRON
can AUX
not PART
do AUX
surgery NOUN
until ADP
August PROPN
or CCONJ
so ADV
. PUNCT
  SPACE
It PRON
is AUX
now ADV
April PROPN
... PUNCT
> X
She PRON
is AUX
supposed VERB
to PART
rest VERB
a DET
lot NOUN
and CCONJ
drink NOUN
fluids NOUN
. PUNCT
  SPACE
But CCONJ
she PRON
has AUX
to PART
go VERB
to ADP
> X
classes NOUN
. PUNCT
  SPACE
She PRON
wonders VERB
why ADV
they PRON
have AUX
given VERB
her PRON
no DET
medicine NOUN
. PUNCT
  SPACE
She PRON
plans VERB
to PART
> X
call VERB
back ADP
her PRON
doctor NOUN
's PART
office NOUN
/ SYM
clinic NOUN
and CCONJ
try VERB
to PART
get AUX
answers NOUN
to ADP
these DET
> NOUN
questions NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
told VERB
her PRON
I PRON
would AUX
also ADV
write VERB
in ADP
to ADP
sci.med VERB
and CCONJ
see VERB
what PRON
I PRON
> X
could AUX
find VERB
out ADP
about ADP
why ADV
there PRON
were AUX
so ADV
many ADJ
x NOUN
- NOUN
rays NOUN
and CCONJ
whether SCONJ
it PRON
seems VERB
> X
o.k PROPN
. PROPN
to PART
wait VERB
in ADP
line NOUN
3 NUM
or CCONJ
more ADJ
months NOUN
for ADP
surgery NOUN
for ADP
something PRON
like SCONJ
this DET
> X
or CCONJ
whether SCONJ
she PRON
should AUX
be AUX
looking VERB
elsewhere ADV
for ADP
her PRON
care NOUN
. PUNCT
  SPACE
She PRON
does AUX
plan VERB
to PART
> X
get AUX
a DET
second ADJ
opinion NOUN
, PUNCT
too ADV
. PUNCT
> X
> X
	 SPACE
I PRON
will AUX
pass VERB
info NOUN
on ADP
to ADP
her PRON
. PUNCT
  SPACE
It PRON
never ADV
hurts VERB
to PART
get AUX
information NOUN
> X
from ADP
more ADJ
than SCONJ
one NUM
source NOUN
. PUNCT
  SPACE
> X
> X
You PRON
can AUX
e NOUN
- VERB
mail VERB
me PRON
or CCONJ
post VERB
. PUNCT
> X
> X
Thanks INTJ
. PUNCT
> X
> X
AliceMy PROPN
opinion(for ADP
what PRON
it PRON
's AUX
worth ADJ
) PUNCT
is AUX
that SCONJ
40 NUM
x NOUN
- NOUN
rays NOUN
is AUX
* PUNCT
way NOUN
* PUNCT
too ADV
many ADJ
. PUNCT
  SPACE
Guidleines NOUN
have AUX
been AUX
set VERB
on ADP
the DET
number NOUN
of ADP
dental ADJ
x NOUN
- NOUN
rays NOUN
and CCONJ
chest NOUN
x NOUN
- PUNCT
rays NOUN
that SCONJ
one PRON
should AUX
have AUX
over ADP
a DET
given VERB
period NOUN
of ADP
time NOUN
because SCONJ
of ADP
all DET
the DET
environmental ADJ
factors NOUN
that PRON
can AUX
cause VERB
cancer NOUN
in ADP
humans NOUN
, PUNCT
ionizing VERB
radiation NOUN
is AUX
one NUM
of ADP
the DET
most ADV
potent(splits PROPN
DNA NOUN
and CCONJ
causes VERB
hydroxyl NOUN
free ADJ
radical ADJ
formation NOUN
in ADP
tissue NOUN
cells NOUN
) PUNCT
. PUNCT
  SPACE
Ultasound(like ADP
that DET
used VERB
in ADP
seeing VERB
the DET
fetus NOUN
in ADP
the DET
uterus NOUN
) PUNCT
has AUX
been AUX
shown VERB
to PART
be AUX
extremely ADV
good ADJ
at ADP
picking VERB
up ADP
tumors NOUN
in ADP
the DET
prostate NOUN
and CCONJ
gallstones NOUN
in ADP
the DET
gallbladder NOUN
. PUNCT
  SPACE
But CCONJ
kidney NOUN
tissue NOUN
may AUX
be AUX
too ADV
dense ADJ
for ADP
ultrasound NOUN
to PART
work VERB
for ADP
kidney NOUN
stones(any NUM
radiologists NOUN
care VERB
to ADP
comment?).Most PROPN
stones NOUN
will AUX
pass(but ADP
it PRON
's AUX
a DET
very ADV
painful ADJ
process NOUN
) PUNCT
. PUNCT
  SPACE
Unlike ADP
gallstones NOUN
, PUNCT
I PRON
do AUX
n't PART
think VERB
that SCONJ
there PRON
are AUX
many ADJ
drugs NOUN
that PRON
can AUX
help VERB
" PUNCT
dissolve VERB
" PUNCT
the DET
kidney NOUN
stone(which PROPN
is AUX
probably ADV
calcium NOUN
- PUNCT
oxalate NOUN
) PUNCT
. PUNCT
  SPACE
Vitamin PROPN
C PROPN
and CCONJ
magnesium NOUN
have AUX
worked VERB
in ADP
rabbits NOUN
to PART
remove VERB
calcium NOUN
from ADP
calcified ADJ
plaques NOUN
in ADP
the DET
aterial ADJ
wall NOUN
. PUNCT
  SPACE
I PRON
have AUX
no DET
idea NOUN
if SCONJ
a DET
diet NOUN
change NOUN
or CCONJ
supplementation NOUN
could AUX
speed VERB
up ADP
the DET
process NOUN
of ADP
kidney NOUN
stone NOUN
passage(but NOUN
I PRON
'm AUX
pretty ADV
confident ADJ
that SCONJ
a DET
diet NOUN
change NOUN
and/or CCONJ
supplementation NOUN
can AUX
prevent VERB
a DET
reoccurance NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
surgery NOUN
is AUX
being AUX
contemplated VERB
, PUNCT
the DET
stone NOUN
must AUX
be AUX
in ADP
the DET
kidney NOUN
tubule NOUN
. PUNCT
  SPACE
A DET
second ADJ
opinion NOUN
is AUX
a DET
good ADJ
idea NOUN
because SCONJ
there PRON
are AUX
better(less PROPN
damaging ADJ
) PUNCT
ways NOUN
to PART
break VERB
up ADP
the DET
stone NOUN
if SCONJ
it PRON
's AUX
logged VERB
within ADP
the DET
kidney(sonic PROPN
blasts NOUN
) PUNCT
. PUNCT
  SPACE
HMO PROPN
's PART
are AUX
notorious ADJ
for ADP
conservative ADJ
care NOUN
and CCONJ
long ADJ
waits NOUN
for ADP
expensvie NOUN
treatments NOUN
. PUNCT
  SPACE
My PRON
condolences NOUN
to ADP
your PRON
friend NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59460From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
EarwaxWhat PROPN
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leaveit VERB
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
outevery VERB
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage NOUN
your PRON
eardrums?Are NOUN
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked?StephenNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59461From NUM
: PUNCT
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
enea1-270493135255@enea.apple.com X
> X
enea1@applelink.apple.com PROPN
( PUNCT
Horace PROPN
Enea PROPN
) PUNCT
writes:>Can VERB
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
disease NOUN
> X
and CCONJ
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis PROPN
vs ADP
chronic PROPN
> X
hepatitis NOUN
. PUNCT
I PRON
do AUX
n't PART
think VERB
there PRON
is AUX
a DET
general ADJ
distinction NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
there PRON
aretwo VERB
classes NOUN
of ADP
chronic ADJ
hepatitis NOUN
: PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
and CCONJ
chronicpersistent PROPN
hepatitis PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
think VERB
of ADP
any DET
other ADJ
disease NOUN
where ADV
theterm ADJ
persistent NOUN
is AUX
used VERB
with ADP
or CCONJ
in ADP
preference NOUN
to ADP
chronic NOUN
. PUNCT
Much ADV
as SCONJ
these DET
two NUM
terms NOUN
" PUNCT
chronic ADJ
active ADJ
" PUNCT
and CCONJ
" PUNCT
chronic ADJ
persistent"sound NOUN
fuzzy NOUN
, PUNCT
the DET
actual ADJ
distinction NOUN
between ADP
the DET
two NUM
conditionsis NOUN
often ADV
fairly ADV
fuzzy ADJ
as SCONJ
well.-- PROPN
David PROPN
Rindrind@enterprise.bih.harvard.eduNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59462From NUM
: PUNCT
kring@efes.physik.uni-kl.de PROPN
( PUNCT
Thomas PROPN
Kettenring)Subject PROPN
: PUNCT
Old PROPN
Sermon PROPN
( PUNCT
was AUX
: PUNCT
Krillean PROPN
Photography)In NOUN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>FLAME VERB
ON>>Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>photography PUNCT
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
> X
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
> X
measure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADP
there.>>I PUNCT
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>I PROPN
am AUX
convinced VERB
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics.>>Especially ADV
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not PART
> X
drop VERB
off ADP
the DET
edge NOUN
of ADP
the DET
earth.>>FLAME PROPN
OFF PROPN
, PUNCT
or CCONJ
end NOUN
sermon NOUN
: PUNCT
-)We PUNCT
know VERB
that DET
sermon NOUN
. PUNCT
  SPACE
It PRON
is AUX
posted VERB
roughly ADV
every DET
month NOUN
or CCONJ
so ADV
by ADP
differentpersons NOUN
, PUNCT
and CCONJ
that DET
does AUX
n't PART
make VERB
it PRON
any ADV
better ADV
. PUNCT
How ADV
did AUX
you PRON
get AUX
the DET
idea NOUN
that SCONJ
skeptics NOUN
are AUX
closed VERB
- PUNCT
minded ADJ
? PUNCT
  SPACE
Why ADV
do AUX
n't PART
youconsider VERB
the DET
possibility NOUN
that SCONJ
they PRON
came VERB
to ADP
their PRON
conclusions NOUN
by ADP
theproper NOUN
methods NOUN
? PUNCT
  SPACE
Besides ADV
, PUNCT
one PRON
can AUX
come VERB
to ADP
a DET
conclusion NOUN
without ADP
closingone NOUN
's PART
mind NOUN
to ADP
other ADJ
possibilities NOUN
. PUNCT
I PRON
you PRON
do AUX
n't PART
agree VERB
with ADP
a DET
person NOUN
, PUNCT
please INTJ
ask VERB
him PRON
why ADV
he PRON
thinks VERB
like SCONJ
that DET
, PUNCT
instead ADV
of ADP
insulting VERB
him PRON
. PUNCT
  SPACE
Perhaps ADV
he PRON
's AUX
right ADJ
. PUNCT
  SPACE
Follow VERB
your PRON
own ADJ
advice NOUN
, PUNCT
be AUX
open ADJ
- PUNCT
minded ADJ
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
post VERB
a DET
bit NOUN
of ADP
evidence NOUN
for ADP
your PRON
claims NOUN
, PUNCT
I PRON
'll AUX
complain VERB
thatit PROPN
's AUX
always ADV
those DET
" PUNCT
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever ADJ
" PUNCT
types NOUN
who PRON
narrow VERB
- PUNCT
mindedly ADJ
judge VERB
others NOUN
without ADP
knowing VERB
their PRON
motives.--thomas NUM
kettenring NOUN
, PUNCT
3 NUM
dan PROPN
, PUNCT
kaiserslautern PROPN
, PUNCT
germanyThe PROPN
extraterrestrials NOUN
do AUX
n't PART
even ADV
know VERB
this DET
planet NOUN
has AUX
native ADJ
inhabitants NOUN
. PUNCT
Their PRON
government NOUN
does AUX
n't PART
tell VERB
them PRON
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59463From NUM
: PUNCT
bpeters@oasys.dt.navy.mil NUM
( PUNCT
Brenda PROPN
Peters)Subject PUNCT
: PUNCT
Re ADP
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser NOUN
printers??In PROPN
sci.med NUM
, PUNCT
rdd@uts.ipp-garching.mpg.de PROPN
( PUNCT
Reinhard PROPN
Drube PROPN
) PUNCT
writes:>Hello,>>does VERB
anyone PRON
know VERB
about ADP
allergic ADJ
reactions NOUN
caused VERB
by ADP
the DET
developer NOUN
/ SYM
toner NOUN
> X
of ADP
laser NOUN
printers NOUN
? PUNCT
What PRON
chemical NOUN
stuff NOUN
is AUX
involved?>>Thanks NOUN
in ADP
advance!>>Reinhard>>email PROPN
: PUNCT
rdd@ibma.ipp-garching.mpg.deDo PUNCT
I PRON
ever ADV
! PUNCT
! PUNCT
! PUNCT
! PUNCT
! PUNCT
! PUNCT
  SPACE
After ADP
2 NUM
years NOUN
of ADP
having VERB
health NOUN
problems NOUN
that PRON
had AUX
beencleared VERB
up ADP
w PROPN
/ SYM
allery NOUN
shots NOUN
, PUNCT
and CCONJ
not PART
knowing VERB
why ADV
, PUNCT
I PRON
went VERB
and CCONJ
was AUX
re VERB
- VERB
tested VERB
. PUNCT
I PRON
actually ADV
did AUX
better ADV
than SCONJ
when ADV
I PRON
had AUX
been AUX
tested VERB
2 NUM
years NOUN
ago ADV
.... PUNCT
Then ADV
putting VERB
2 NUM
+ SYM
2 NUM
together ADV
, PUNCT
I PRON
realized VERB
that SCONJ
it PRON
all DET
started VERB
back ADV
upwhen PROPN
the DET
laser NOUN
printer NOUN
came VERB
into ADP
the DET
office NOUN
. PUNCT
  SPACE
I PRON
kept VERB
track NOUN
of ADP
the DET
usage NOUN
, PUNCT
andon PROPN
hi INTJ
use NOUN
days NOUN
, PUNCT
I PRON
was AUX
worse ADJ
. PUNCT
  SPACE
I PRON
got VERB
better ADJ
over ADP
the DET
weekends NOUN
.... PUNCT
The DET
laser NOUN
printer NOUN
is AUX
gone VERB
, PUNCT
I PRON
'm AUX
100 NUM
% NOUN
better ADJ
! PUNCT
! PUNCT
! PUNCT
..... PUNCT
Whether SCONJ
it PRON
is AUX
the DET
tonerdust NOUN
or CCONJ
chemicals NOUN
, PUNCT
I PRON
do AUX
nt PART
know VERB
( PUNCT
I PRON
am AUX
highly ADV
allergic ADJ
to ADP
dust NOUN
... PUNCT
) PUNCT
, PUNCT
butit NOUN
definitely ADV
was AUX
the DET
laser NOUN
printer NOUN
.... PUNCT
		      SPACE
brenda PROPN
peters PROPN
		      SPACE
carderock PROPN
div PROPN
, PUNCT
nswc PROPN
, PUNCT
david PROPN
taylor PROPN
model PROPN
basin PROPN
		      SPACE
bethesda PROPN
, PUNCT
md PROPN
  SPACE
20084 NUM
		      SPACE
e NOUN
- NOUN
mail NOUN
: PUNCT
   SPACE
cape@dtvms.dt.navy.mil NUM
				  SPACE
or CCONJ
				  SPACE
bpeters@oasys.dt.navy.milNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59464From NUM
: PUNCT
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister)Subject PROPN
: PUNCT
Vitamin PROPN
B6 PROPN
dosesForgive ADJ
me PRON
, PUNCT
but CCONJ
just ADV
the DET
other ADJ
day NOUN
I PRON
read VERB
on ADP
some DET
newsgroup NOUN
or CCONJ
other ADJ
aphysician PROPN
's PART
posting VERB
about ADP
the DET
theraputic ADJ
uses NOUN
of ADP
vitamin NOUN
B6 NOUN
. PUNCT
  SPACE
I PRON
can'tseem VERB
to PART
locate VERB
the DET
article NOUN
, PUNCT
but CCONJ
I PRON
recall VERB
there PRON
was AUX
mention NOUN
of ADP
some DET
safelimits NOUN
. PUNCT
I PRON
looked VERB
at ADP
a DET
" PUNCT
Balanced PROPN
100 NUM
" PUNCT
time NOUN
release NOUN
formulation NOUN
from ADP
Walgreen'sand PROPN
noted VERB
that SCONJ
the DET
100 NUM
mg NOUN
of ADP
B6 PROPN
was AUX
some DET
thousands NOUN
times NOUN
the DET
RDA PROPN
. PUNCT
  SPACE
Isthis PROPN
safe?!?.Also PROPN
what PRON
was AUX
the DET
condition NOUN
that PRON
B6 PROPN
was AUX
theraputic ADJ
for?Mail PROPN
would AUX
be AUX
just ADV
fine ADJ
if SCONJ
you PRON
do AUX
n't PART
want VERB
to PART
clog VERB
the DET
net NOUN
. PUNCT
Thanks NOUN
, PUNCT
Leon PROPN
Traister PROPN
( PUNCT
lmtra@uts.amdahl.com)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59465From NUM
: PUNCT
spl@pitstop.ucsd.edu PROPN
( PUNCT
Steve PROPN
Lamont)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C64FuM.5B8@news.claremont.edu ADJ
> X
ebrandt@jarthur.claremont.edu PROPN
( PUNCT
Eli PROPN
Brandt PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
MMEYER.93Apr26102056@m2.dseg.ti.com X
> X
mmeyer@m2.dseg.ti.com PROPN
( PUNCT
Mark PROPN
Meyer PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
	 SPACE
Besides ADV
, PUNCT
Kirilian ADJ
photography NOUN
is AUX
actually ADV
photography NOUN
of ADP
my>>friend PROPN
's PART
two NUM
- PUNCT
year NOUN
- PUNCT
old ADJ
son NOUN
Kiril PROPN
. PUNCT
  SPACE
Perhaps ADV
you PRON
meant VERB
" PUNCT
Kirlian"?>>I NUM
think VERB
it PRON
was AUX
a DET
typo NOUN
for ADP
" PUNCT
Karelian ADJ
photography NOUN
" PUNCT
, PUNCT
which PRON
is AUX
the DET
> X
practice NOUN
of ADP
taking VERB
pictures NOUN
of ADP
either CCONJ
Finns PROPN
or CCONJ
Russians PROPN
, PUNCT
depending VERB
> X
on ADP
whom PRON
one PRON
asks VERB
. PUNCT
Think VERB
we PRON
can AUX
lose VERB
the DET
sci.image.processing NOUN
group NOUN
from ADP
this DET
thread NOUN
, PUNCT
folks?Thanks VERB
bunches NOUN
. PUNCT
							 SPACE
spl-- NOUN
Steve PROPN
Lamont PROPN
, PUNCT
SciViGuy PROPN
-- PUNCT
( PUNCT
619 NUM
) PUNCT
534 NUM
- SYM
7968 NUM
-- PUNCT
spl@szechuan.ucsd.eduSan PROPN
Diego PROPN
Microscopy PROPN
and CCONJ
Imaging PROPN
Resource PROPN
/ SYM
UC PROPN
San PROPN
Diego PROPN
/ SYM
La PROPN
Jolla PROPN
, PUNCT
CA PROPN
92093 NUM
- SYM
0608"My NUM
other ADJ
car NOUN
is AUX
a DET
car NOUN
, PUNCT
too ADV
. PUNCT
" PUNCT
                 SPACE
- PUNCT
Bumper PROPN
strip NOUN
seen VERB
on ADP
I-805Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59466From NUM
: PUNCT
rhca80@melton.sps.mot.com PROPN
( PUNCT
Henry PROPN
Melton)Subject PROPN
: PUNCT
Chromium NOUN
as SCONJ
dietary ADJ
suppliment NOUN
for ADP
weight NOUN
lossMy PROPN
wife NOUN
has AUX
requested VERB
that SCONJ
I PRON
poll VERB
the DET
Sages NOUN
of ADP
Usenet PROPN
to PART
see VERB
what PRON
isknown ADJ
about ADP
the DET
use NOUN
of ADP
chromium NOUN
in ADP
weight NOUN
- PUNCT
control NOUN
diet NOUN
suppliments NOUN
. PUNCT
She PRON
has AUX
seen VERB
multiple ADJ
products NOUN
advertising VERB
it PRON
and CCONJ
would AUX
like VERB
any DET
kindreal ADJ
information NOUN
. PUNCT
My PRON
first ADJ
impulse NOUN
was AUX
" PUNCT
Yuck PROPN
! PUNCT
a DET
metal NOUN
! PUNCT
" PUNCT
but CCONJ
I PRON
have AUX
zero NUM
data NOUN
on ADP
it PRON
. PUNCT
What PRON
do AUX
you PRON
know?-- PUNCT
Henry PROPN
Melton PROPN
rhca80@melton.sps.mot.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59467From NUM
: PUNCT
gtclark@festival.ed.ac.uk PROPN
( PUNCT
G NOUN
T NOUN
Clark)Subject NOUN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesmsnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes:>Does VERB
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someone PRON
> X
was AUX
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
would AUX
> X
be AUX
liable ADJ
to PART
happen VERB
to ADP
the DET
person?>(Just NOUN
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
my PRON
> X
house PROPN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case'.)>Rebecca NOUN
	 SPACE
Millipedes PROPN
, PUNCT
I PRON
understand VERB
, PUNCT
are AUX
vegetarian ADJ
, PUNCT
and CCONJ
therefore ADV
almostcertainly ADV
will AUX
not PART
bite VERB
and CCONJ
are AUX
not PART
poisonous ADJ
. PUNCT
Centipedes VERB
arecarnivorous ADJ
, PUNCT
and CCONJ
although SCONJ
I PRON
do AUX
n't PART
have AUX
any DET
absolute ADJ
knowledge NOUN
on ADP
this DET
, PUNCT
Iwould AUX
tend VERB
to PART
think VERB
that SCONJ
you PRON
're AUX
in ADP
no DET
danger NOUN
from ADP
anything PRON
but CCONJ
aconcerted VERB
assault NOUN
by ADP
several ADJ
million NUM
of ADP
them PRON
. PUNCT
			 SPACE
G.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59468From NUM
: PUNCT
ttrusk@its.mcw.edu NOUN
( PUNCT
Thomas PROPN
Trusk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C67G01.2J1@efi.com X
> X
alanm@efi.com X
( PUNCT
Alan PROPN
Morgan PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
> X
  SPACE
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>>>I NOUN
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to>>so PROPN
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just>>as NOUN
likely ADJ
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be>>quite VERB
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>Oooooh NOUN
. PUNCT
  SPACE
Bad ADJ
example NOUN
. PUNCT
  SPACE
I PRON
'm AUX
an DET
atheist.>This NOUN
is AUX
not PART
flame ADJ
, PUNCT
or CCONJ
abuse NOUN
, PUNCT
nor CCONJ
do AUX
I PRON
want VERB
to PART
start VERB
another DET
thread NOUN
( PUNCT
thisis NOUN
, PUNCT
after ADV
all ADV
, PUNCT
supposed VERB
to PART
be AUX
about ADP
IMAGE NOUN
PROCESSING).BUT NOUN
, PUNCT
to PART
say VERB
you PRON
're AUX
an DET
atheist NOUN
is AUX
to PART
suggest VERB
you PRON
have AUX
PROOF PROPN
there PRON
is AUX
NO DET
GOD.To NOUN
be AUX
a DET
politically ADV
- PUNCT
correct ADJ
skeptic NOUN
, PUNCT
better ADJ
to PART
go VERB
with ADP
agnostic NOUN
, PUNCT
like SCONJ
me PRON
! PUNCT
: PUNCT
) PUNCT
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
* PUNCT
Dr PROPN
. PUNCT
Thomas PROPN
Trusk PROPN
                    SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Dept PROPN
. NOUN
of ADP
Cellular PROPN
Biology PROPN
& CCONJ
Anatomy PROPN
* PUNCT
Email NOUN
to PART
ttrusk@its.mcw.edu VERB
  SPACE
* PUNCT
* PUNCT
Medical PROPN
College PROPN
of ADP
Wisconsin PROPN
        SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
Milwaukee PROPN
, PUNCT
WI PROPN
  SPACE
53226 NUM
                SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
( PUNCT
414 NUM
) PUNCT
257 NUM
- SYM
8504 NUM
                      SPACE
* PUNCT
                              SPACE
* PUNCT
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= X
* PUNCT
= PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59469From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Schatzki PROPN
Ring/ PROPN
PVC'sIn NUM
article NOUN
< X
1993Apr27.180334@betsy.gsfc.nasa.gov>,ohandley@betsy.gsfc.nasa.gov NUM
wrote VERB
: PUNCT
> X
> X
[ PUNCT
summarized]A NOUN
person NOUN
with ADP
a DET
Schatzki PROPN
's PART
ring NOUN
( PUNCT
a DET
membrane NOUN
partially ADV
blocking VERB
the DET
espphagus NOUN
) PUNCT
has AUX
worsening VERB
dysphagia PROPN
( PUNCT
difficulty NOUN
swallowing VERB
) PUNCT
and CCONJ
the DET
doctor NOUN
proposes VERB
dilation NOUN
by ADP
balloow NOUN
or CCONJ
bougie NOUN
( PUNCT
using VERB
an DET
inflatableballoon NOUN
to PART
rupture VERB
the DET
ring NOUN
or CCONJ
a DET
rubber NOUN
hose NOUN
to PART
push VERB
through ADP
it PRON
. PUNCT
  SPACE
Question NOUN
: PUNCT
is AUX
balloon NOUN
dilation NOUN
safe ADJ
, PUNCT
common ADJ
, PUNCT
and CCONJ
indicated VERB
? PUNCT
  SPACE
It PRON
soundspretty ADV
invasive ADJ
. PUNCT
> X
[ PUNCT
end NOUN
summary]Yes PROPN
, PUNCT
this DET
is AUX
a DET
common ADJ
and CCONJ
safe ADJ
procedure NOUN
. PUNCT
  SPACE
The DET
majority NOUN
of ADP
Schatzki'srings NOUN
described VERB
by ADP
x NOUN
- NOUN
ray PROPN
, PUNCT
however ADV
, PUNCT
wnd VERB
up ADP
being AUX
due ADJ
to ADP
inflammationinstead NOUN
of ADP
the DET
congenital ADJ
Schatzki PROPN
's PART
ring NOUN
. PUNCT
  SPACE
Occassionally ADV
a DET
cancermasquerades NOUN
as SCONJ
a DET
ring NOUN
. PUNCT
  SPACE
You PRON
should AUX
have AUX
the DET
endoscopy NOUN
to PART
see VERB
if SCONJ
itis NOUN
due ADP
to ADP
the DET
heartburn NOUN
, PUNCT
and CCONJ
if SCONJ
so ADV
, PUNCT
you PRON
will AUX
need VERB
treatment NOUN
for ADP
theheartburn PROPN
ong PROPN
term NOUN
. PUNCT
  SPACE
The DET
balloon NOUN
dilation NOUN
is AUX
an DET
alternative NOUN
to PART
cuttingopen VERB
your PRON
chest NOUN
and CCONJ
cutting VERB
out ADP
a DET
section NOUN
of ADP
the DET
esophagus NOUN
, PUNCT
so CCONJ
dilationis PROPN
not PART
at ADV
all ADV
invasive ADJ
, PUNCT
considering VERB
the DET
alternative NOUN
. PUNCT
  SPACE
> X
The DET
second ADJ
issue NOUN
: PUNCT
[ PUNCT
summarized VERB
] PUNCT
  SPACE
He PRON
has AUX
had VERB
extra ADJ
heartbeats NOUN
for ADP
the DET
past3 NOUN
to ADP
4 NUM
years NOUN
, PUNCT
and CCONJ
once ADV
was AUX
symptomatic ADJ
from ADP
them PRON
, PUNCT
with ADP
somelightheadedness NOUN
. PUNCT
He PRON
is AUX
young ADJ
, PUNCT
( PUNCT
30-ish NUM
) PUNCT
, PUNCT
thin ADJ
and CCONJ
in ADP
good ADJ
> X
health PROPN
( PUNCT
recent ADJ
bloodtests NOUN
were AUX
all DET
normal ADJ
) PUNCT
, PUNCT
and CCONJ
do AUX
not PART
smoke VERB
, PUNCT
use VERB
drugs NOUN
or CCONJ
> X
caffeine NOUN
, PUNCT
etc X
. PUNCT
I PRON
'm AUX
willing ADJ
to PART
accept VERB
the DET
extra ADJ
beats NOUN
as SCONJ
" PUNCT
normal ADJ
" PUNCT
, PUNCT
but CCONJ
do AUX
n't PART
> X
want VERB
to PART
ignore VERB
them PRON
if SCONJ
they PRON
might AUX
be AUX
some DET
kind NOUN
of ADP
warning NOUN
symptom NOUN
. PUNCT
The DET
number NOUN
> X
of ADP
PVC PROPN
's PART
seems VERB
to PART
increase VERB
throughout ADP
the DET
day NOUN
, PUNCT
and CCONJ
with ADP
exercise NOUN
( PUNCT
or CCONJ
something PRON
> X
as ADV
simple ADJ
as SCONJ
climbing VERB
some DET
stairs NOUN
) PUNCT
. PUNCT
Also ADV
, PUNCT
if SCONJ
I PRON
get VERB
up ADP
after ADP
sitting VERB
or CCONJ
lying VERB
> X
down ADV
for ADP
a DET
while NOUN
, PUNCT
I PRON
tend VERB
to PART
get AUX
a DET
couple NOUN
of ADP
extra ADJ
beats NOUN
. PUNCT
Could AUX
they PRON
possibly ADV
> X
be AUX
related VERB
to ADP
the DET
esophagous ADJ
problems NOUN
? PUNCT
Both DET
seemed VERB
to PART
develop VERB
at ADP
about ADP
the DET
> X
same ADJ
time NOUN
. PUNCT
I PRON
' PUNCT
not PART
an DET
expert NOUN
on ADP
heart NOUN
problems NOUN
, PUNCT
but CCONJ
PVC PROPN
's PART
are AUX
common ADJ
and CCONJ
have AUX
beenovertreated VERB
in ADP
the DET
past NOUN
. PUNCT
  SPACE
My PRON
personal ADJ
experience NOUN
, PUNCT
and CCONJ
I PRON
have AUX
the DET
same ADJ
history NOUN
an DET
build NOUN
you PRON
do AUX
( PUNCT
related VERB
to ADP
the DET
heart NOUN
, PUNCT
that ADV
is ADV
) PUNCT
, PUNCT
is AUX
that SCONJ
my PRON
PVC'scome NUM
and CCONJ
go VERB
, PUNCT
with ADP
some DET
months NOUN
causing VERB
anxiety NOUN
. PUNCT
  SPACE
Taking VERB
on ADP
more ADJ
fluidsseems NOUN
to PART
help VERB
, PUNCT
and CCONJ
they PRON
seem VERB
worse ADJ
in ADP
the DET
summer NOUN
. PUNCT
  SPACE
Remember VERB
that SCONJ
a DET
slow ADJ
heart NOUN
rate NOUN
will AUX
allow VERB
more ADJ
PVC PROPN
's PART
to PART
be AUX
apparent ADJ
, PUNCT
so ADV
perhaps ADV
it PRON
is AUX
an DET
indication NOUN
of ADP
a DET
healthy ADJ
cardiac ADJ
system NOUN
( PUNCT
but CCONJ
ask VERB
an DET
expert NOUN
about ADP
thatlast ADJ
point NOUN
, PUNCT
especially)Good PROPN
luck NOUN
, PUNCT
hope VERB
we PRON
do AUX
n't PART
die VERB
of ADP
arrhythmias PROPN
. PUNCT
  SPACE
( PUNCT
God PROPN
, PUNCT
what PRON
a DET
happy ADJ
thought)Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59470From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
1993Apr28.023749.9259@informix.com NUM
> X
, PUNCT
hartman@informix.com X
( PUNCT
Robert PROPN
Hartman PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1rjn0eINNnqn@MINERVA.CIS.YALE.EDU NUM
> X
wiesel-elisha@yale.edu NUM
( PUNCT
Elisha PROPN
Wiesel PROPN
) PUNCT
writes:>>Recently ADV
I PRON
've AUX
come VERB
upon SCONJ
a DET
body NOUN
of ADP
literature NOUN
which PRON
promotes VERB
colon>>cleansing PROPN
as SCONJ
a DET
vital ADJ
aid NOUN
to ADP
preventive ADJ
medicine NOUN
through ADP
nutrition NOUN
. PUNCT
  SPACE
> X
> X
No ADV
doubt ADV
the DET
sci.med NOUN
* PUNCT
folks NOUN
are AUX
getting VERB
out ADP
their PRON
flamethrowers NOUN
. PUNCT
  SPACE
I PRON
'm AUX
> X
rather ADV
certain ADJ
that SCONJ
the DET
information NOUN
you PRON
got VERB
was AUX
not PART
medical ADJ
literature NOUN
> X
in ADP
the DET
accepted VERB
academic ADJ
/ SYM
scientific ADJ
journals NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
the DET
righteous ADJ
among ADP
> X
them PRON
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
. PUNCT
> X
> X
Also ADV
, PUNCT
insofar ADV
as SCONJ
it PRON
does AUX
n't PART
conform VERB
to ADP
the DET
accepted VERB
medical ADJ
presumption NOUN
> X
that SCONJ
it PRON
just ADV
does AUX
n't PART
matter VERB
what PRON
you PRON
eat VERB
, PUNCT
and CCONJ
that SCONJ
we PRON
can AUX
think VERB
of ADP
the DET
> X
GI PROPN
tract NOUN
as SCONJ
a DET
black ADJ
box NOUN
in ADP
which PRON
nothing PRON
ever ADV
goes VERB
wrong ADJ
( PUNCT
except SCONJ
for ADP
> X
maybe ADV
cancer NOUN
and CCONJ
ulcers NOUN
) PUNCT
, PUNCT
the DET
righteous ADJ
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
too ADV
. PUNCT
> X
> X
Then ADV
there PRON
'll AUX
be AUX
the DET
ones NOUN
who PRON
call VERB
your PRON
doctor NOUN
a DET
raving NOUN
quack NOUN
, PUNCT
even ADV
> X
though SCONJ
he PRON
, PUNCT
like SCONJ
Linus PROPN
Pauling PROPN
, PUNCT
is AUX
lucid ADJ
and CCONJ
robust ADJ
well ADV
into ADP
his PRON
> X
nineties NOUN
-- PUNCT
but CCONJ
nevermind VERB
about ADP
that DET
. PUNCT
  SPACE
He PRON
should AUX
n't PART
charge VERB
for ADP
his PRON
> X
equipment NOUN
and CCONJ
supplies NOUN
, PUNCT
since SCONJ
they PRON
're AUX
no ADV
doubt NOUN
not PART
approved VERB
by ADP
the DET
> X
FDA PROPN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
with ADP
FDA PROPN
approval NOUN
an DET
MD PROPN
or CCONJ
pharmaceutical NOUN
company NOUN
can AUX
> X
charge VERB
whatever PRON
they PRON
can AUX
get AUX
for ADP
such ADJ
safe ADJ
and CCONJ
effective ADJ
treatments NOUN
as SCONJ
> X
thalidomide ADV
. PUNCT
  SPACE
But CCONJ
nevermind NOUN
about ADP
that DET
either ADV
. PUNCT
> X
> X
Unfortunately ADV
, PUNCT
you PRON
dared VERB
to PART
step VERB
into ADP
the DET
sacred ADJ
turf NOUN
of ADP
Net PROPN
. PUNCT
Medical ADJ
. PUNCT
> X
Discussion NOUN
without ADP
a DET
credential ADJ
and CCONJ
without ADP
understanding VERB
that SCONJ
the DET
> X
righteous ADJ
among ADP
them PRON
will AUX
make VERB
certain ADJ
that SCONJ
you PRON
are AUX
suitably ADV
denounced VERB
> X
before ADP
dismissing VERB
you PRON
as SCONJ
a DET
fool NOUN
. PUNCT
> X
> X
But CCONJ
maybe ADV
somebody PRON
without ADP
such DET
a DET
huge ADJ
chip NOUN
on ADP
their PRON
shoulder NOUN
will AUX
> X
send VERB
you PRON
some DET
reasonable ADJ
responses NOUN
by ADP
e NOUN
- NOUN
mail NOUN
. PUNCT
> X
> X
1/2 NUM
; PUNCT
^ PROPN
) PUNCT
  SPACE
> X
> X
1/2 NUM
; PUNCT
^ PROPN
( PUNCT
> X
> X
Oh INTJ
yes INTJ
, PUNCT
I PRON
did AUX
have AUX
a DET
point NOUN
. PUNCT
  SPACE
A DET
few ADJ
years NOUN
ago ADV
an DET
MD NOUN
with ADP
a DET
thriving VERB
> X
practice NOUN
in ADP
a DET
very ADV
wealthy ADJ
part NOUN
of ADP
Silicon PROPN
Valley PROPN
once ADV
recommended VERB
that SCONJ
> X
I PRON
take VERB
such ADJ
treatments NOUN
to PART
clear VERB
up ADP
a DET
skin NOUN
condition NOUN
. PUNCT
  SPACE
( PUNCT
Not PART
through ADP
his PRON
> X
office NOUN
, PUNCT
I PRON
might AUX
add VERB
. PUNCT
) PUNCT
  SPACE
Although SCONJ
I PRON
'm AUX
sure ADJ
that DET
's AUX
not PART
conclusive ADJ
, PUNCT
it PRON
was AUX
> X
sure ADJ
an DET
unusual ADJ
prescription NOUN
! PUNCT
> X
The DET
bacteria NOUN
in ADP
your PRON
gut NOUN
are AUX
important ADJ
. PUNCT
  SPACE
But CCONJ
colonic ADJ
flushes NOUN
are AUX
not PART
the DET
way NOUN
to PART
improve VERB
gut NOUN
function NOUN
. PUNCT
  SPACE
Each DET
person NOUN
has AUX
almost ADV
a DET
unique ADJ
mix NOUN
of ADP
bacteria NOUN
in ADP
his PRON
/ SYM
her PRON
gut NOUN
. PUNCT
  SPACE
Diet PROPN
affects VERB
this DET
mix NOUN
as SCONJ
does AUX
the DET
use NOUN
of ADP
antibiotics NOUN
. PUNCT
  SPACE
A DET
diet NOUN
change NOUN
is AUX
a DET
much ADV
better ADJ
way NOUN
to PART
alter VERB
the DET
players NOUN
in ADP
your PRON
gut NOUN
than SCONJ
is AUX
colonic ADJ
flushes NOUN
. PUNCT
  SPACE
Cross PROPN
contamination NOUN
has AUX
been AUX
a DET
real ADJ
problem NOUN
in ADP
some DET
of ADP
the DET
outfits NOUN
that PRON
do AUX
this DET
" PUNCT
treatment NOUN
" PUNCT
since SCONJ
the DET
equipment NOUN
is AUX
not PART
always ADV
cleaned VERB
as ADV
well ADV
as SCONJ
it PRON
should AUX
be AUX
between ADP
patient NOUN
" PUNCT
treatments" NOUN
. PUNCT
Dental ADJ
drills NOUN
have AUX
me PRON
a DET
little ADV
concerned ADJ
about ADP
HIV PROPN
infection NOUN
and CCONJ
I PRON
've AUX
picked VERB
a DET
dentist NOUN
that PRON
uses VERB
both DET
chemical NOUN
and CCONJ
autoclave VERB
sterilization NOUN
of ADP
his PRON
instruments(more NOUN
clostly ADV
but CCONJ
much ADV
safer ADJ
) PUNCT
. PUNCT
  SPACE
Full ADJ
sterile ADJ
technique NOUN
is AUX
also ADV
used VERB
just ADV
like SCONJ
that DET
practiced VERB
in ADP
an DET
OR(mask NOUN
, PUNCT
gloves NOUN
and CCONJ
gowns NOUN
worn VERB
and CCONJ
disposed VERB
of ADP
between ADP
patients NOUN
) PUNCT
. PUNCT
  SPACE
Each DET
visit NOUN
costs VERB
me PRON
15 NUM
dollars NOUN
more ADJ
than SCONJ
the DET
standard ADJ
and CCONJ
customary ADJ
fee NOUN
so ADV
I PRON
have AUX
to PART
pay VERB
it PRON
out SCONJ
of ADP
pocket NOUN
. PUNCT
  SPACE
His PRON
much ADV
higher ADJ
fees NOUN
do AUX
not PART
drive VERB
away ADP
patients NOUN
. PUNCT
I PRON
can AUX
not PART
think VERB
of ADP
any DET
good ADJ
reason NOUN
why ADV
someone PRON
should AUX
subject VERB
themselves PRON
to ADP
this DET
colonic ADJ
flush ADJ
procedure NOUN
. PUNCT
  SPACE
For ADP
very ADV
little ADJ
, PUNCT
if SCONJ
any DET
benefit NOUN
, PUNCT
you PRON
subject VERB
yourself PRON
to ADP
hepatitis PROPN
, PUNCT
cholera PROPN
, PUNCT
parasitic ADJ
disease NOUN
and CCONJ
even ADV
HIV.Just NUM
ask VERB
yourself PRON
why ADV
someone PRON
might AUX
resort VERB
to ADP
this DET
kind NOUN
of ADP
treatment?Could AUX
they PRON
be VERB
having VERB
GI PROPN
distress NOUN
? PUNCT
  SPACE
Could AUX
this DET
distress NOUN
be AUX
due ADJ
to ADP
a DET
pathogenic ADJ
organism NOUN
? PUNCT
  SPACE
Could AUX
I PRON
get AUX
this DET
organism NOUN
if SCONJ
the DET
equipment NOUN
is AUX
not PART
cleaned VERB
properly ADV
between ADP
patients NOUN
? PUNCT
  SPACE
Do AUX
I PRON
really ADV
want VERB
to PART
take VERB
this DET
risk?Food PROPN
for ADP
thought NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59471From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 ADJ
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HivesIn PROPN
article NOUN
< X
1993Apr28.064144.24115@nuscc.nus.sg NUM
> X
, PUNCT
isckbk@nuscc.nus.sg(Kiong PROPN
Beng PROPN
Kee PROPN
) PUNCT
wrote VERB
: PUNCT
> X
> X
> X
My PRON
wife NOUN
had AUX
hives NOUN
during ADP
the DET
first ADJ
two NUM
months NOUN
> X
of ADP
her PRON
pregnancy NOUN
. PUNCT
  SPACE
My PRON
son NOUN
( PUNCT
3 NUM
months NOUN
old ADJ
) PUNCT
, PUNCT
breast NOUN
- PUNCT
fed PROPN
, PUNCT
> X
now ADV
has AUX
the DET
same ADJ
symptoms NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
to ADP
a DET
skin NOUN
- PUNCT
specialist NOUN
, PUNCT
> X
but CCONJ
he PRON
has AUX
merely ADV
prescribed VERB
various ADJ
medicines NOUN
( PUNCT
one NUM
> X
each DET
visit NOUN
as SCONJ
though SCONJ
by ADP
trial NOUN
and CCONJ
error NOUN
:-)) PUNCT
> X
> X
Anti PROPN
- NOUN
histamines NOUN
worked VERB
on ADP
both DET
of ADP
them PRON
, PUNCT
but CCONJ
looks VERB
like SCONJ
> X
becoming VERB
less ADV
effective ADJ
. PUNCT
> X
> X
Are AUX
there PRON
other ADJ
solutions NOUN
? PUNCT
  SPACE
Thanks INTJ
. PUNCT
> X
-- PUNCT
> X
Kiong PROPN
Beng PROPN
Kee PROPN
> X
Dept PROPN
of ADP
Information PROPN
Systems PROPN
and CCONJ
Computer PROPN
Science PROPN
> X
National PROPN
University PROPN
of ADP
Singapore PROPN
> X
Lower PROPN
Kent PROPN
Ridge PROPN
Road PROPN
, PUNCT
SINGAPORE PROPN
0511Food NUM
products NOUN
can AUX
get AUX
through ADP
breast NOUN
milk NOUN
and CCONJ
cause VERB
allergies NOUN
in ADP
theyoung PROPN
. PUNCT
  SPACE
Since SCONJ
the DET
son NOUN
is AUX
allergic ADJ
it PRON
would AUX
be AUX
best ADJ
not PART
to PART
go VERB
tobottle ADJ
feedings NOUN
, PUNCT
but CCONJ
rather ADV
eliminate VERB
foods NOUN
from ADP
mother NOUN
's PART
diet NOUN
. PUNCT
  SPACE
Yourpediatrician PROPN
should AUX
be AUX
able ADJ
to PART
give VERB
you PRON
a DET
list NOUN
of ADP
foods NOUN
to PART
avoid VERB
. PUNCT
Good ADJ
luck NOUN
, PUNCT
SteveNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59472From NUM
: PUNCT
chorley@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesIn PROPN
article NOUN
< X
35004@castle.ed.ac.uk NOUN
> X
, PUNCT
gtclark@festival.ed.ac.uk PROPN
( PUNCT
G PROPN
T PROPN
Clark PROPN
) PUNCT
writes VERB
: PUNCT
> X
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
Does AUX
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someone>>was DET
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
would>>be VERB
liable ADJ
to PART
happen VERB
to ADP
the DET
person NOUN
? PUNCT
> X
> X
> X
( PUNCT
Just ADV
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
my>>house PROPN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case NOUN
' PUNCT
. PUNCT
) PUNCT
> X
> X
> X
Rebecca PROPN
> X
> X
> X
	 SPACE
Millipedes NOUN
, PUNCT
I PRON
understand VERB
, PUNCT
are AUX
vegetarian ADJ
, PUNCT
and CCONJ
therefore ADV
almost ADV
> X
certainly ADV
will AUX
not PART
bite VERB
and CCONJ
are AUX
not PART
poisonous ADJ
. PUNCT
Centipedes NOUN
are AUX
> X
carnivorous ADJ
, PUNCT
and CCONJ
although SCONJ
I PRON
do AUX
n't PART
have AUX
any DET
absolute ADJ
knowledge NOUN
on ADP
this DET
, PUNCT
I PRON
> X
would AUX
tend VERB
to PART
think VERB
that SCONJ
you PRON
're AUX
in ADP
no DET
danger NOUN
from ADP
anything PRON
but SCONJ
a DET
> X
concerted ADJ
assault NOUN
by ADP
several ADJ
million NUM
of ADP
them PRON
. PUNCT
> X
> X
			 SPACE
G.Not ADP
sure ADJ
of ADP
this DET
but CCONJ
I PRON
think VERB
some DET
millipedes NOUN
cause VERB
a DET
toxic ADJ
reaction NOUN
( PUNCT
sting?So PROPN
I PRON
would AUX
not PART
assume VERB
that SCONJ
they PRON
are AUX
not PART
dangerous ADJ
merely ADV
on ADP
the DET
basis NOUN
of ADP
vegetarianism NOUN
, PUNCT
after ADP
all DET
wasps NOUN
are AUX
vegetarian ADJ
too.dnc.Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59473From NUM
: PUNCT
mikeq@freddy PROPN
. PUNCT
CNA.TEK.COM PROPN
( PUNCT
Mike PROPN
Quigley)Subject NUM
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?How NOUN
about ADP
going VERB
to ADP
a DET
doctor NOUN
to PART
get AUX
some DET
minor ADJ
surgery NOUN
done VERB
. PUNCT
Doctorrefuses NOUN
to PART
do AUX
it PRON
because SCONJ
it PRON
's AUX
` PUNCT
` PUNCT
to ADP
risky ADJ
' PUNCT
' PUNCT
( PUNCT
still ADV
charges VERB
me PRON
$ SYM
50!).I NUM
go VERB
home ADV
and CCONJ
do AUX
it PRON
myself PRON
. PUNCT
No DET
problem NOUN
. PUNCT
The DET
` PUNCT
` PUNCT
surgery NOUN
' PUNCT
' PUNCT
involved VERB
digging VERB
out ADP
a DET
pine ADJ
needle NOUN
that PRON
had AUX
burieditself NOUN
under ADP
my PRON
tongue NOUN
. PUNCT
MikeNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59474From NUM
: PUNCT
jeffs@sr.hp.com PROPN
( PUNCT
Jeff PROPN
Silva)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
pk115050@wvnvms.wvnet.edu PROPN
wrote VERB
: PUNCT
: PUNCT
My PRON
girlfriend NOUN
is AUX
in ADP
pain NOUN
from ADP
kidney NOUN
stones NOUN
. PUNCT
She PRON
says VERB
that SCONJ
because SCONJ
she PRON
has AUX
no DET
: PUNCT
medical ADJ
insurance NOUN
, PUNCT
she PRON
can AUX
not PART
get AUX
them PRON
removed VERB
. PUNCT
: PUNCT
: PUNCT
My PRON
question NOUN
: PUNCT
Is AUX
there PRON
any DET
way NOUN
she PRON
can AUX
treat VERB
them PRON
herself PRON
, PUNCT
or CCONJ
at ADP
least ADJ
mitigate VERB
: PUNCT
their PRON
effects NOUN
? PUNCT
Any DET
help NOUN
is AUX
deeply ADV
appreciated VERB
. PUNCT
( PUNCT
Advice NOUN
, PUNCT
referral NOUN
to PART
literature NOUN
, PUNCT
: PUNCT
etc X
... PUNCT
) PUNCT
: PUNCT
: PUNCT
Thank VERB
you PRON
, PUNCT
: PUNCT
: PUNCT
Dave PROPN
Carvell PROPN
: PUNCT
pk115050@wvnvms.wvnet.eduFirst NOUN
off ADV
, PUNCT
I PRON
would AUX
consider VERB
the DET
severity NOUN
of ADP
the DET
pain NOUN
. PUNCT
I PRON
had AUX
stonesseveral ADJ
years NOUN
ago ADV
, PUNCT
and CCONJ
there PRON
's AUX
now ADV
way NOUN
I PRON
could AUX
have AUX
made VERB
it PRON
withoutheavy VERB
duty NOUN
doses NOUN
of ADP
morphine NOUN
and CCONJ
demerol NOUN
and CCONJ
a DET
two NUM
week NOUN
stay NOUN
in ADP
thehospital NOUN
. PUNCT
I PRON
was AUX
told VERB
that SCONJ
there PRON
was AUX
nothing PRON
that PRON
I PRON
could AUX
take VERB
that DET
woulddissolve VERB
them PRON
. PUNCT
If SCONJ
the DET
stones NOUN
are AUX
passible ADJ
, PUNCT
the DET
best ADJ
thing NOUN
she PRON
could AUX
dois VERB
drink VERB
LOTS NOUN
of ADP
water NOUN
, PUNCT
and CCONJ
hope VERB
that SCONJ
they PRON
pass VERB
, PUNCT
but CCONJ
every DET
time NOUN
theymove VERB
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctorat NOUN
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes INTJ
, PUNCT
by ADP
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'dreally ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
whohave VERB
had AUX
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
--Jeff PROPN
Silva(707 PROPN
) PUNCT
577-2681jeffs@sr.hp.comNewsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59475From NUM
: PUNCT
backon@vms.huji.ac.ilSubject NOUN
: PUNCT
Re ADP
: PUNCT
Sinus PROPN
Surgery PROPN
/ SYM
SeptoplastyIn PROPN
article NOUN
< X
C670zy.DA@utdallas.edu PROPN
> X
, PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
badboyC64t0z.FGq@netcom.com PROPN
> X
badboy@netcom.com X
( PUNCT
Jay PROPN
Keller PROPN
) PUNCT
writes:>>>>(I've PROPN
already ADV
heard VERB
from ADP
a DET
couple NOUN
who PRON
said VERB
they PRON
had AUX
it PRON
and CCONJ
it PRON
didn't>>really ADV
help VERB
them).>>>>I NOUN
am AUX
a DET
moderately ADV
severe ADJ
asthmatic NOUN
. PUNCT
  SPACE
ENT PROPN
doc PROPN
says VERB
large ADJ
percentage NOUN
see NOUN
some>>relief NOUN
of ADP
their PRON
asthma NOUN
after ADP
sinus NOUN
surgery NOUN
. PUNCT
  SPACE
Also ADV
he PRON
said VERB
it PRON
is AUX
not PART
unheard ADJ
of>>that ADP
migraines NOUN
go VERB
away ADV
after ADP
chronis PROPN
sinusitis NOUN
is AUX
relieved VERB
. PUNCT
> X
> X
> X
> X
> X
> X
> X
Did AUX
your PRON
ENT PROPN
also ADV
tell VERB
you PRON
that SCONJ
this DET
procedure NOUN
may AUX
remove VERB
warts NOUN
from ADP
the DET
soles NOUN
> X
of ADP
your PRON
feet NOUN
and CCONJ
improve VERB
your PRON
sex NOUN
life?>You PROPN
probably ADV
were AUX
trying VERB
to PART
be AUX
facetious ADJ
but CCONJ
just ADV
for ADP
the DET
record ADJ
partial ADJ
nasalobstruction NOUN
is AUX
correlated VERB
with ADP
a DET
number NOUN
of ADP
chronic ADJ
disorders NOUN
such ADJ
as SCONJ
migraine NOUN
, PUNCT
hyperthyroidism NOUN
, PUNCT
asthma NOUN
, PUNCT
peptic ADJ
ulcer NOUN
, PUNCT
dysmenorrhea PROPN
, PUNCT
and CCONJ
lack NOUN
of ADP
libido PROPN
( PUNCT
:-) PUNCT
) PUNCT
[ PUNCT
Riga PROPN
IN PROPN
. PUNCT
Rev PROPN
d'Oto PROPN
- PUNCT
Neuro PROPN
- PUNCT
Ophthalmol PROPN
1957;24:325 PROPN
- PUNCT
335 NUM
] PUNCT
, PUNCT
cardiac ADJ
symptoms[Jackson PROPN
RT PROPN
. PUNCT
Annals NOUN
of ADP
Otology PROPN
1976;85:65 PROPN
- SYM
70 NUM
  SPACE
Cvetnic PROPN
MH PROPN
, PUNCT
Cvetnic PROPN
V. PROPN
Rhinology1980;18:47 PROPN
- PUNCT
50 NUM
     SPACE
Cottle PROPN
MH PROPN
. PUNCT
Rhinology VERB
1980;18:67 NUM
- SYM
81 NUM
] PUNCT
, PUNCT
and CCONJ
fever NOUN
, PUNCT
inadequateoral ADJ
intake NOUN
and CCONJ
electrolyte ADJ
imbalance NOUN
[ PUNCT
Fairbanks PROPN
DNF PROPN
. PUNCT
Otorhinolaryngology PROPN
Headand PROPN
Neck PROPN
Surgery PROPN
1986;94:412 NUM
- PUNCT
415).So PROPN
before ADP
you PRON
post VERB
your PRON
inane ADJ
comments NOUN
it PRON
would AUX
be AUX
nice ADJ
if SCONJ
you PRON
'd AUX
run VERB
a DET
MEDLINEsearch NOUN
on ADP
the DET
topic NOUN
say VERB
back ADV
to ADP
1966 NUM
. PUNCT
There PRON
's AUX
been AUX
extensive ADJ
literature NOUN
on ADP
thisfor NOUN
over ADP
a DET
100 NUM
years NOUN
. PUNCT
I PRON
may AUX
be AUX
in ADP
cardiology NOUN
but CCONJ
I PRON
've AUX
had VERB
a DET
very ADV
good ADJ
working NOUN
relationship NOUN
withmy NOUN
colleagues NOUN
from ADP
ENT.Joshbackon@VMS.HUJI.AC.ILNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59476From NUM
: PUNCT
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Earwaxstephen@mont.cs.missouri.edu PROPN
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>What DET
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leave VERB
> X
it PRON
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
out ADP
> X
every ADV
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage VERB
your PRON
eardrums?>Are NOUN
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked?Assuming VERB
that SCONJ
the DET
wax NOUN
is AUX
causing VERB
hearing NOUN
loss NOUN
, PUNCT
congestion NOUN
or CCONJ
poppingin NOUN
the DET
ears NOUN
, PUNCT
you PRON
can AUX
try VERB
some DET
cautious ADJ
tepid ADJ
water NOUN
irrigation NOUN
with ADP
abulb NOUN
syringe NOUN
, PUNCT
but CCONJ
it PRON
is AUX
awkward ADJ
to PART
do AUX
for ADP
oneself PRON
and CCONJ
may AUX
not PART
work VERB
ormay NOUN
even ADV
make VERB
things NOUN
worse ADJ
. PUNCT
  SPACE
( PUNCT
My PRON
wife NOUN
would AUX
disagree VERB
, PUNCT
she PRON
does AUX
itsuccessfully ADV
every DET
six NUM
months NOUN
or CCONJ
so ADV
. PUNCT
) PUNCT
  SPACE
In ADP
any DET
case NOUN
DO VERB
NOT ADV
ATTEMPTANYTHING NOUN
WITH ADP
Q PROPN
- PUNCT
TIPS!!!My NOUN
experience NOUN
has AUX
been AUX
that SCONJ
this DET
is AUX
initially ADV
best ADV
handled VERB
by ADP
aEar PROPN
/ SYM
Nose PROPN
/ SYM
Throat PROPN
person NOUN
. PUNCT
  SPACE
I PRON
say VERB
initially ADV
, PUNCT
because SCONJ
an DET
ENT PROPN
can AUX
evaluatewhether ADV
or CCONJ
not PART
you PRON
might AUX
have AUX
success NOUN
on ADP
your PRON
own ADJ
with ADP
a DET
littleinstruction NOUN
. PUNCT
I PRON
am AUX
not PART
a DET
physician NOUN
( PUNCT
obviously ADV
, PUNCT
because SCONJ
I PRON
eschew VERB
the DET
termotolaryngologist NOUN
) PUNCT
; PUNCT
this DET
posting NOUN
is AUX
based VERB
only ADV
on ADP
personal ADJ
experience.========================================================================<Usual PROPN
Disclaimer PROPN
> X
        SPACE
" PUNCT
The DET
best ADJ
is AUX
the DET
enemy NOUN
of ADP
the DET
good ADJ
" PUNCT
- PUNCT
VoltaireLeon PROPN
Traister PROPN
( PUNCT
lmtra@amdahl.uts.amdahl.com)c/o VERB
Amdahl PROPN
Corporation PROPN
            SPACE
( PUNCT
408)737 PROPN
- PUNCT
54491250 NUM
E. PROPN
Arques PROPN
Ave PROPN
. PUNCT
  SPACE
M PROPN
/ SYM
S PROPN
338P.O. PROPN
Box PROPN
3470Sunnyvale NUM
, PUNCT
CA PROPN
  SPACE
94088 NUM
- PUNCT
3470Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59477From NUM
: PUNCT
ame_0123@bigdog.engr.arizona.edu PROPN
( PUNCT
Terrance PROPN
J. PROPN
Dishongh)Subject NUM
: PUNCT
Strain PROPN
Gage PROPN
Applications PROPN
in ADP
vivoGreetingI NOUN
am AUX
starting VERB
work NOUN
on ADP
a DET
project NOUN
where ADV
I PRON
am AUX
trying VERB
to PART
make VERB
strain VERB
gagesbond NOUN
to ADP
bone NOUN
in ADP
vivo NOUN
or CCONJ
a DET
period NOUN
of ADP
several ADJ
months NOUN
. PUNCT
  SPACE
I PRON
am AUX
currentlyusing VERB
hydroxyapaptite ADJ
back ADJ
gages NOUN
, PUNCT
and CCONJ
I PRON
have AUX
tried VERB
M PROPN
- PUNCT
bonding VERB
the DET
gagesto NOUN
the DET
bone NOUN
. PUNCT
  SPACE
Apart ADV
from ADP
those DET
two NUM
application NOUN
methods NOUN
there ADV
doesn'tseem VERB
to PART
be AUX
much ADV
else ADV
in ADP
the DET
literature NOUN
. PUNCT
  SPACE
I PRON
have AUX
only ADV
an DET
engineering NOUN
background NOUN
not PART
medical ADJ
or CCONJ
biological ADJ
. PUNCT
  SPACE
I PRON
would AUX
be AUX
interest NOUN
in ADP
anyideas NOUN
about ADP
how ADV
to PART
stimulte VERB
bone NOUN
growth NOUN
on ADP
the DET
surface NOUN
of ADP
cortical ADJ
bone NOUN
. PUNCT
Thanks NOUN
for ADP
oyur NOUN
help NOUN
in ADP
Advance PROPN
. PUNCT
Terrance NOUN
J PROPN
Dishonghame_0123@bigdog.engr.arizona.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59478From NUM
: PUNCT
shell@cs.sfu.ca PROPN
( PUNCT
Barry PROPN
Shell)Subject PROPN
: PUNCT
Great ADJ
Canadian ADJ
ScientistsAbout PROPN
two NUM
years NOUN
ago ADV
I PRON
posted VERB
the DET
following VERB
: PUNCT
I PRON
am AUX
planning VERB
to PART
write VERB
a DET
new ADJ
book NOUN
called VERB
" PUNCT
Great PROPN
Canadian ADJ
Scientists PROPN
. PUNCT
"Please PUNCT
forward ADV
your PRON
nominations NOUN
to ADP
me PRON
: PUNCT
shell@cs.sfu.ca X
The DET
rules NOUN
are AUX
that SCONJ
the DET
person NOUN
must AUX
be AUX
a DET
Canadian ADJ
citizen NOUN
. PUNCT
They PRON
do AUX
n't PART
haveto NOUN
be AUX
born VERB
in ADP
Canada PROPN
or CCONJ
even ADV
live VERB
in ADP
Canada PROPN
, PUNCT
but CCONJ
they PRON
must AUX
have AUX
( PUNCT
or CCONJ
havehad VERB
, PUNCT
if SCONJ
they PRON
are AUX
dead ADJ
) PUNCT
Canadian ADJ
citizenship NOUN
while SCONJ
they PRON
are AUX
/ SYM
were AUX
greatCanadian ADJ
scientists NOUN
. PUNCT
About ADV
70 NUM
people NOUN
have AUX
been AUX
nominated VERB
already ADV
and CCONJ
they PRON
are AUX
listed VERB
at ADP
theend NOUN
of ADP
this DET
posting NOUN
. PUNCT
I PRON
'm AUX
not PART
quite ADV
sure ADJ
what PRON
should AUX
constitute VERB
greatness NOUN
, PUNCT
and CCONJ
there PRON
may AUX
be AUX
agray ADV
area NOUN
here ADV
. PUNCT
If SCONJ
you PRON
have AUX
any DET
ideas NOUN
on ADP
criteria NOUN
for ADP
greatness NOUN
, PUNCT
I PRON
would AUX
bepleased VERB
to PART
hear VERB
them PRON
. PUNCT
In ADP
any DET
event NOUN
, PUNCT
please INTJ
nominate VERB
people NOUN
even ADV
if SCONJ
you PRON
arenot VERB
sure ADJ
they PRON
are AUX
great ADJ
. PUNCT
I PRON
would AUX
like VERB
as ADV
big ADJ
a DET
list NOUN
as SCONJ
possible ADJ
. PUNCT
Please INTJ
give VERB
me PRON
a DET
name NOUN
and CCONJ
email NOUN
address NOUN
, PUNCT
phone NOUN
number NOUN
or CCONJ
mail NOUN
address NOUN
, PUNCT
sothat PROPN
I PRON
can AUX
contact VERB
the DET
person NOUN
. PUNCT
If SCONJ
you PRON
do AUX
n't PART
know VERB
any DET
of ADP
the DET
above ADJ
, PUNCT
thengive VERB
me PRON
their PRON
last ADJ
known VERB
whereabouts NOUN
. PUNCT
Also ADV
please INTJ
give VERB
your PRON
reason NOUN
for ADP
whyyou NOUN
think VERB
the DET
person NOUN
should AUX
be AUX
considered VERB
a DET
great ADJ
Canadian ADJ
scientist NOUN
. PUNCT
After ADP
I PRON
have AUX
the DET
list NOUN
, PUNCT
I PRON
will AUX
choose VERB
about ADV
six NUM
of ADP
the DET
most ADV
interesting ADJ
onesand NOUN
do AUX
in ADP
- PUNCT
depth NOUN
biographies NOUN
of ADP
those DET
individuals NOUN
in ADP
the DET
style NOUN
of ADP
TracyKidder PROPN
's PART
" PUNCT
Soul PROPN
of ADP
a DET
New PROPN
Machine PROPN
" PUNCT
or CCONJ
some DET
other ADJ
dramatic ADJ
technique NOUN
. PUNCT
The DET
rest NOUN
of ADP
the DET
great ADJ
Canadian ADJ
scientists NOUN
will AUX
appear VERB
in ADP
an DET
appedix NOUN
with ADP
one NUM
paragraph NOUN
biographies NOUN
. PUNCT
If SCONJ
you PRON
have AUX
any DET
other ADJ
ideas NOUN
about ADP
this DET
project NOUN
, PUNCT
I PRON
am AUX
interested ADJ
to ADP
hearthem PROPN
. PUNCT
So ADV
far ADV
, PUNCT
I PRON
have AUX
received VERB
68 NUM
nominations NOUN
as SCONJ
follows VERB
: PUNCT
  SPACE
First PROPN
Name PROPN
     SPACE
Last ADJ
Name PROPN
      SPACE
Nominator PROPN
            SPACE
Famous PROPN
For---------- PROPN
     SPACE
--------- PUNCT
      SPACE
--------- PUNCT
            SPACE
----------Sid NOUN
            SPACE
Altman PROPN
         SPACE
Kuszewski PROPN
, PUNCT
John PROPN
      SPACE
Catalytic PROPN
RNA(Nobel PROPN
Chem PROPN
89)Frederick PROPN
      SPACE
Banting VERB
        SPACE
me PRON
                   SPACE
Insulin PROPN
( PUNCT
Nobel PROPN
U23 PROPN
medicine)Davidson PROPN
       SPACE
Black PROPN
          SPACE
Stanley PROPN
, PUNCT
Robert PROPN
      SPACE
Discovered VERB
Peking PROPN
ManJames PROPN
R. PROPN
       SPACE
Bolton PROPN
         SPACE
Warden PROPN
, PUNCT
Joseph PROPN
       SPACE
chemistry?Raoul VERB
          SPACE
Bott PROPN
           SPACE
Smith PROPN
, PUNCT
Steven PROPN
        SPACE
Math PROPN
: PUNCT
algebraic ADJ
topology NOUN
. PUNCT
Willard PROPN
        SPACE
Boyle PROPN
          SPACE
Chamm PROPN
, PUNCT
Craig PROPN
         SPACE
Co PROPN
inventor NOUN
of ADP
CCDGerard NOUN
         SPACE
Bull PROPN
           SPACE
Stanley PROPN
, PUNCT
Robert PROPN
      SPACE
Ballistics PROPN
and CCONJ
gunneryDennis PROPN
         SPACE
Chitty PROPN
         SPACE
Galindo PROPN
- PUNCT
Leal PROPN
, PUNCT
Carlos PROPN
First PROPN
animal NOUN
ecologistBrian NOUN
C. PROPN
       SPACE
Conway PROPN
         SPACE
Tellefsen PROPN
, PUNCT
Karen PROPN
     SPACE
ElectrochemistryStephen PROPN
        SPACE
Cook PROPN
           SPACE
Mendelzon PROPN
, PUNCT
Alberto PROPN
   SPACE
NP PROPN
- PUNCT
completeness NOUN
, PUNCT
complexity NOUN
? PUNCT
              SPACE
Copp PROPN
           SPACE
Kuch PROPN
, PUNCT
Gerald PROPN
         SPACE
biochem ADJ
aspects NOUN
of ADP
physiolH.S.M. PROPN
         SPACE
Coxeter PROPN
        SPACE
Calkin PROPN
, PUNCT
Neil PROPN
J. PROPN
      SPACE
Regular PROPN
polytopes NOUN
( PUNCT
math)P. PROPN
N. PROPN
          SPACE
Daykin PROPN
         SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Chem PROPN
, PUNCT
mosquito PROPN
repellantH. NUM
E. PROPN
          SPACE
Duckworth PROPN
      SPACE
anonymous PROPN
            SPACE
Mass PROPN
Spectroscopy PROPN
, PUNCT
  SPACE
adminJack PROPN
           SPACE
Edmonds PROPN
        SPACE
Snoeyink PROPN
, PUNCT
Jack PROPN
       SPACE
Math PROPN
, PUNCT
Operations NOUN
researchReginald NOUN
       SPACE
Fessenden PROPN
      SPACE
Johnsen PROPN
, PUNCT
Hans PROPN
        SPACE
Wire PROPN
insulation NOUN
, PUNCT
light ADJ
bulbUrsula NOUN
         SPACE
Franklin PROPN
       SPACE
McKellin PROPN
, PUNCT
William PROPN
    SPACE
Physics PROPN
archeol NOUN
. PUNCT
materialsJ. PROPN
A. PROPN
          SPACE
Gray PROPN
           SPACE
Gray PROPN
, PUNCT
Tom PROPN
            SPACE
Nuclear ADJ
physics NOUN
, PUNCT
The DET
GrayE. PROPN
W. PROPN
          SPACE
Guptill PROPN
        SPACE
Chamm PROPN
, PUNCT
Craig PROPN
         SPACE
Slotted PROPN
array NOUN
radarDonald ADP
         SPACE
Hebb PROPN
           SPACE
Lyons PROPN
, PUNCT
Michael PROPN
       SPACE
Learning PROPN
( PUNCT
Hebbian PROPN
synapses)Gerhard PROPN
        SPACE
Herzberg PROPN
       SPACE
me PRON
                   SPACE
Optical ADJ
spectr NOUN
Nobel PROPN
71James PROPN
          SPACE
Hillier PROPN
        SPACE
me PRON
                   SPACE
Electron PROPN
Microscope PROPN
( PUNCT
Can AUX
/ SYM
Am)Crawford NOUN
S. PROPN
    SPACE
Holling VERB
        SPACE
Galindo PROPN
- PUNCT
Leal PROPN
, PUNCT
Carlos PROPN
Ecology PROPN
, PUNCT
predators NOUN
and CCONJ
preyDavid NOUN
          SPACE
Hubel PROPN
          SPACE
Lyons PROPN
, PUNCT
Michael PROPN
       SPACE
Visual ADJ
cortex NOUN
( PUNCT
Nobel PROPN
med VERB
? PUNCT
) PUNCT
Kenneth PROPN
        SPACE
Iverson PROPN
        SPACE
Dare PROPN
, PUNCT
Gary PROPN
           SPACE
Invented PROPN
APLJ PROPN
. PUNCT
D. PROPN
          SPACE
Jackson PROPN
        SPACE
Austern PROPN
, PUNCT
Matt PROPN
        SPACE
Elementary PROPN
Particle PROPN
TheoryAndre PROPN
          SPACE
Joyal PROPN
          SPACE
Pananagden PROPN
, PUNCT
Prakash PROPN
  SPACE
Category PROPN
theory NOUN
, PUNCT
categ NOUN
LogicMartin PROPN
         SPACE
Kamen PROPN
          SPACE
me PRON
                   SPACE
Carbon-14 PROPN
( PUNCT
Canadian PROPN
/ SYM
Amer.)Irving NUM
         SPACE
Kaplansky PROPN
      SPACE
Knighten PROPN
, PUNCT
Bob PROPN
        SPACE
Algebra PROPN
, PUNCT
functional ADJ
analysisGeorge NOUN
S. PROPN
      SPACE
Kell PROPN
           SPACE
Kell PROPN
, PUNCT
Dave PROPN
           SPACE
Hot PROPN
water NOUN
freezingT. NUM
E. PROPN
          SPACE
Kellogg PROPN
        SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Chem PROPN
, PUNCT
mosquito PROPN
repellantGeraldine PROPN
      SPACE
Kenney PROPN
- PUNCT
Wallace PROPN
Siegman PROPN
, PUNCT
Anthony PROPN
     SPACE
Chemistry PROPN
? PUNCT
AdministrationBrian PROPN
          SPACE
Kernaghan PROPN
      SPACE
Brader PROPN
, PUNCT
Mark PROPN
         SPACE
C PROPN
programming NOUN
languageMichael PROPN
L. PROPN
     SPACE
Klein PROPN
          SPACE
Marchi PROPN
, PUNCT
Massimo PROPN
      SPACE
Theoretical PROPN
ChemistryCharles PROPN
J. PROPN
     SPACE
Krebs PROPN
          SPACE
Galindo PROPN
- PUNCT
Leal PROPN
, PUNCT
Carlos PROPN
Ecology PROPN
, PUNCT
Krebs PROPN
effectK. VERB
J. PROPN
          SPACE
Laidler PROPN
        SPACE
Tellefsen PROPN
, PUNCT
Karen PROPN
     SPACE
Chemical PROPN
KineticsG. PROPN
C. PROPN
          SPACE
Laurence PROPN
       SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Physics PROPN
? PUNCT
? PUNCT
? PUNCT
? PUNCT
Raymond PROPN
        SPACE
Lemieux PROPN
        SPACE
Smith PROPN
, PUNCT
Earl PROPN
          SPACE
First PROPN
synthesized VERB
glucoseMartin NOUN
         SPACE
Levine PROPN
         SPACE
Meunier PROPN
, PUNCT
Robert PROPN
      SPACE
Computer PROPN
visionEdward NOUN
S. PROPN
      SPACE
Lowry PROPN
          SPACE
himself PRON
              SPACE
Computer PROPN
programmingPere NOUN
           SPACE
Marie PROPN
- PUNCT
Victorin PROPN
Meunier PROPN
, PUNCT
Robert PROPN
      SPACE
Jardin PROPN
Botanique PROPN
de ADP
MontrealColin PROPN
          SPACE
MacLeod PROPN
        SPACE
Turner PROPN
, PUNCT
Steven PROPN
       SPACE
Nobel PROPN
( PUNCT
? PUNCT
) PUNCT
DNA NOUN
discovery?Marshall NOUN
       SPACE
McLuhan PROPN
        SPACE
Clamen PROPN
, PUNCT
Stewart PROPN
      SPACE
Social PROPN
sci PROPN
, PUNCT
communicationsBen PROPN
            SPACE
Morrison PROPN
       SPACE
Willson PROPN
, PUNCT
David PROPN
       SPACE
Aurora PROPN
BorealisLawrence PROPN
       SPACE
Morley PROPN
         SPACE
Strome PROPN
, PUNCT
Murray PROPN
       SPACE
Plate PROPN
Tektonics PROPN
/ SYM
Remote ADJ
senseFarley NOUN
         SPACE
Mowat PROPN
          SPACE
Abbott PROPN
, PUNCT
John PROPN
         SPACE
Northern PROPN
Animal PROPN
rights?Kevin NOUN
          SPACE
Ogilvie PROPN
        SPACE
Kendrick PROPN
, PUNCT
Kelly PROPN
      SPACE
Genetics PROPN
, PUNCT
cure VERB
for ADP
herpes?Sir PROPN
William PROPN
    SPACE
Osler PROPN
          SPACE
Lyons PROPN
, PUNCT
Michael PROPN
       SPACE
MedicineP.J.E. PROPN
         SPACE
Peebles PROPN
        SPACE
Vishniac PROPN
, PUNCT
Ethan PROPN
      SPACE
Most ADV
important ADJ
cosmologistWilder NOUN
         SPACE
Penfield PROPN
       SPACE
Perri PROPN
, PUNCT
Marie PROPN
         SPACE
Anatomical PROPN
basis NOUN
for ADP
memoryJohn PROPN
           SPACE
Polanyi PROPN
        SPACE
me PRON
                   SPACE
chemiluminescensce NOUN
Nobel86Denis PROPN
          SPACE
Poussart PROPN
       SPACE
Meunier PROPN
, PUNCT
Robert PROPN
      SPACE
Computer PROPN
VisionAnatol PROPN
         SPACE
Rapoport PROPN
       SPACE
Lloyd PROPN
- PUNCT
Jones PROPN
, PUNCT
David PROPN
   SPACE
conflict NOUN
theory NOUN
, PUNCT
game NOUN
theoryHoward NOUN
         SPACE
Rapson PROPN
         SPACE
Sutherland PROPN
, PUNCT
Russell PROPN
  SPACE
Pulp PROPN
chemistryHans PROPN
           SPACE
Selye PROPN
          SPACE
Goel PROPN
, PUNCT
Anil PROPN
K. PROPN
        SPACE
Psychology PROPN
of ADP
stress NOUN
. PUNCT
William PROPN
        SPACE
Stephenson PROPN
     SPACE
Wilkins PROPN
, PUNCT
Darin PROPN
       SPACE
WW2 PROPN
Enigma PROPN
code NOUN
, PUNCT
Wire ADJ
photoBoris NOUN
          SPACE
Stoicheff PROPN
      SPACE
Siegman PROPN
, PUNCT
Anthony PROPN
     SPACE
Raman PROPN
SpectroscopyDavid PROPN
          SPACE
Suzuki PROPN
         SPACE
Meister PROPN
, PUNCT
Darren PROPN
      SPACE
Science PROPN
communicationHenry NOUN
          SPACE
Taube PROPN
          SPACE
Parker PROPN
, PUNCT
Wiley PROPN
        SPACE
Physical PROPN
Chemistry PROPN
Nobel83Richard PROPN
        SPACE
Taylor PROPN
         SPACE
Manuel PROPN
, PUNCT
John PROPN
         SPACE
Verified PROPN
Quark PROPN
model NOUN
Nobel90David PROPN
          SPACE
Thompson PROPN
       SPACE
Eisler PROPN
, PUNCT
Michael PROPN
      SPACE
Mapped PROPN
western ADJ
CanadaEndel PROPN
          SPACE
Tulving PROPN
        SPACE
Green PROPN
, PUNCT
Christopher PROPN
   SPACE
Psychology PROPN
of ADP
memoryBill PROPN
           SPACE
Tutte PROPN
          SPACE
Royle PROPN
, PUNCT
Gordon PROPN
        SPACE
matroid PROPN
theory NOUN
( PUNCT
math)I X
              SPACE
Uchida PROPN
         SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Down PROPN
's PART
syndromeJ. NUM
Tuzo PROPN
        SPACE
Wilson PROPN
         SPACE
Collier PROPN
, PUNCT
John PROPN
        SPACE
Continental PROPN
Drift PROPN
theoryR. NOUN
H. PROPN
          SPACE
Wright PROPN
         SPACE
Palmer PROPN
, PUNCT
Bill PROPN
         SPACE
Chem PROPN
, PUNCT
mosquito PROPN
repellantJ.L.(Allen PROPN
) PUNCT
    SPACE
Yen NOUN
            SPACE
Leone PROPN
, PUNCT
Pasquale PROPN
      SPACE
VL PROPN
baseline NOUN
interferometryWalter NOUN
         SPACE
Zinn PROPN
           SPACE
me PRON
                   SPACE
Breader PROPN
Reactor PROPN
( PUNCT
Can AUX
/ SYM
Amer.)---------------------------------------------------------------------------- PUNCT
The DET
list NOUN
is AUX
growing VERB
nicely ADV
. PUNCT
It PRON
's AUX
amazing ADJ
to PART
see VERB
just ADV
how ADV
much ADJ
was AUX
discoveredby ADJ
Canadians PROPN
. PUNCT
Actually ADV
there PRON
are AUX
many ADJ
more ADJ
who PRON
were AUX
born VERB
in ADP
Canada PROPN
, PUNCT
butbecame VERB
Americans PROPN
after ADP
graduate NOUN
school NOUN
. PUNCT
Please INTJ
note VERB
: PUNCT
a DET
lot NOUN
of ADP
people NOUN
have AUX
nominated VERB
Alexander PROPN
Graham PROPN
Bell PROPN
but CCONJ
Ifeel PROPN
he PRON
was AUX
really ADV
a DET
Scottish ADJ
/ SYM
American PROPN
with ADP
a DET
summer NOUN
home NOUN
in ADP
Canada PROPN
. PUNCT
NowI DET
know VERB
this DET
is AUX
debatable ADJ
, PUNCT
but CCONJ
please INTJ
do AUX
n't PART
nominate VERB
him PRON
again ADV
. PUNCT
If SCONJ
anyone PRON
can AUX
fill VERB
in ADP
some DET
of ADP
the DET
question NOUN
marks VERB
on ADP
the DET
list NOUN
, PUNCT
please INTJ
dropme VERB
a DET
line.================================================== PROPN
That PRON
was AUX
two NUM
years NOUN
ago ADV
. PUNCT
Since SCONJ
then ADV
, PUNCT
I PRON
have AUX
received VERB
a DET
grant NOUN
from ADP
ScienceCulture PROPN
Canada PROPN
, PUNCT
a DET
division NOUN
of ADP
Supply PROPN
and CCONJ
Services PROPN
Canada PROPN
to PART
research VERB
thebook NOUN
. PUNCT
Since SCONJ
my PRON
old ADJ
posting VERB
the DET
book NOUN
has AUX
evolved VERB
into ADP
an DET
educational ADJ
bookfor NOUN
kids NOUN
aged ADJ
9 NUM
- SYM
14 NUM
( PUNCT
though SCONJ
this DET
may AUX
change VERB
again ADV
) PUNCT
It PRON
will AUX
have AUX
about40 ADV
two NUM
- PUNCT
page NOUN
spreads VERB
with ADP
a DET
large ADJ
graphic NOUN
in ADP
the DET
middle NOUN
and CCONJ
text NOUN
/ SYM
graphicboxes NOUN
all ADV
around ADV
on ADP
the DET
following VERB
subjects NOUN
: PUNCT
Vital ADJ
statistics NOUN
and CCONJ
photo NOUN
ofthe NOUN
scientist NOUN
, PUNCT
Personal ADJ
statement NOUN
from ADP
the DET
scientist NOUN
, PUNCT
Narrative PROPN
of ADP
a DET
fewmoments NOUN
in ADP
the DET
life NOUN
of ADP
the DET
scientist NOUN
, PUNCT
" PUNCT
What PRON
I PRON
was AUX
doing VERB
when ADV
I PRON
was AUX
12",So NUM
you PRON
want VERB
to PART
be AUX
a DET
< X
insert NOUN
kind NOUN
of ADP
scientist NOUN
> X
, PUNCT
Experiment NOUN
you PRON
can AUX
do AUX
. PUNCT
There PRON
will AUX
be AUX
an DET
appendix PROPN
with ADP
100 NUM
- SYM
200 NUM
more ADJ
scientists NOUN
with ADP
one NUM
paragraphbiographies NOUN
who PRON
did AUX
n't PART
quite ADV
make VERB
it PRON
to ADP
the DET
double ADJ
spreads NOUN
. PUNCT
The DET
whole ADJ
thingwill NOUN
then ADV
be AUX
published VERB
on ADP
CD NOUN
- PUNCT
ROM NOUN
with ADP
video NOUN
and CCONJ
sound NOUN
clips NOUN
for ADP
addedrichness NOUN
. PUNCT
I PRON
am AUX
looking VERB
for ADP
a DET
CD NOUN
- PUNCT
ROM NOUN
publisher NOUN
as ADV
well ADV
. PUNCT
The DET
text NOUN
part NOUN
mayalso ADV
be AUX
available ADJ
on ADP
the DET
CANARIE PROPN
electronic ADJ
highway NOUN
being AUX
developed VERB
inCanada PUNCT
as ADV
well ADV
. PUNCT
I PRON
am AUX
still ADV
looking VERB
for ADP
a DET
publisher NOUN
though SCONJ
Penguin PROPN
Canada PROPN
came VERB
close ADV
to ADP
being AUX
it PRON
. PUNCT
Hope VERB
to PART
find VERB
one NOUN
soon ADV
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to PART
again ADV
ask VERB
for ADP
more ADJ
nominations NOUN
, PUNCT
especially ADV
in ADP
thepure NOUN
sciences NOUN
of ADP
Physics PROPN
, PUNCT
Chemistry PROPN
and CCONJ
Biology PROPN
. PUNCT
Also ADV
criticisms NOUN
of ADP
the DET
list NOUN
are AUX
welcomed VERB
. PUNCT
Also ADV
women NOUN
and CCONJ
French ADJ
- PUNCT
Canadian ADJ
scientists NOUN
are AUX
needed VERB
. PUNCT
I PRON
hope VERB
this DET
posting NOUN
will AUX
get AUX
others NOUN
to PART
nominate VERB
more ADJ
Great ADJ
CanadianScientists PROPN
, PUNCT
and CCONJ
to PART
discuss VERB
what PRON
is AUX
" PUNCT
great ADJ
" PUNCT
what PRON
is AUX
" PUNCT
Canadian PROPN
" PUNCT
and CCONJ
what PRON
is"scientist NOUN
" PUNCT
. PUNCT
Please INTJ
respond VERB
to:shell@sfu.ca PROPN
orBarry PROPN
Shell PROPN
   SPACE
604 NUM
- PUNCT
876 NUM
- PUNCT
5790 NUM
4692 NUM
Quebec PROPN
St. PROPN
Vancouver PROPN
, PUNCT
B.C. PROPN
  SPACE
V5V NOUN
3M1 NUM
Canada PROPN
Thanks NOUN
to ADP
all DET
who PRON
responded VERB
already ADV
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59479From NUM
: PUNCT
king@reasoning.com X
( PUNCT
Dick PROPN
King)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>FLAME VERB
ON>>Especially PROPN
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not PART
> X
drop VERB
off ADP
the DET
edge NOUN
of ADP
the DET
earth.(WITH PROPN
- PUNCT
COUNTERFLAME PROPN
- PUNCT
ENABLED VERB
Columbus PROPN
was AUX
indeed ADV
a DET
crank NOUN
, PUNCT
but CCONJ
not PART
in ADP
the DET
manner NOUN
you PRON
think VERB
. PUNCT
The DET
fact NOUN
that SCONJ
the DET
world NOUN
was AUX
round ADJ
was AUX
well ADV
known VERB
when ADV
he PRON
set VERB
sail NOUN
. PUNCT
  SPACE
It PRON
was AUX
also ADV
well ADV
known ADJ
that SCONJ
the DET
circumference NOUN
was AUX
about ADV
25 NUM
K NOUN
miles NOUN
, PUNCT
and CCONJ
that SCONJ
you PRON
could AUX
not PART
reach VERB
Asia PROPN
bo NOUN
going VERB
west PROPN
with ADP
current ADJ
technology NOUN
-- PUNCT
you PRON
would AUX
neither CCONJ
be AUX
able ADJ
to PART
carry VERB
enough ADJ
supplies NOUN
, PUNCT
nor CCONJ
get AUX
a DET
long ADJ
enough ADJ
stretch NOUN
of ADP
good ADJ
sailing NOUN
weather NOUN
. PUNCT
  SPACE
Nobody PRON
thought VERB
he PRON
would AUX
fall VERB
off ADP
the DET
edge NOUN
of ADP
the DET
world NOUN
. PUNCT
  SPACE
Instead ADV
, PUNCT
they PRON
expected VERB
him PRON
to PART
die VERB
at ADP
sea NOUN
. PUNCT
Columbus PROPN
thought VERB
for ADP
no DET
good ADJ
reason NOUN
that SCONJ
the DET
circumference NOUN
was AUX
only ADV
16 NUM
K NOUN
miles NOUN
, PUNCT
making VERB
the DET
trip NOUN
practical ADJ
. PUNCT
Unfortunately ADV
for ADP
Columbus PROPN
and CCONJ
his PRON
shipmates NOUN
, PUNCT
the DET
Earth PROPN
's PART
circumference NOUN
is AUX
indeed ADV
25 NUM
K NOUN
miles NOUN
. PUNCT
Fortunately ADV
for ADP
Columbus PROPN
and CCONJ
his PRON
shipmates NOUN
, PUNCT
there PRON
was AUX
a DET
stopping VERB
place NOUN
right ADV
about ADP
where ADV
Asia PROPN
would AUX
have AUX
been AUX
had VERB
the DET
circumference NOUN
been AUX
16 NUM
K NOUN
miles NOUN
. PUNCT
My PRON
source NOUN
is AUX
the DET
recent ADJ
PBS PROPN
series NOUN
on ADP
Columbus.)>>FLAME PROPN
OFF PROPN
, PUNCT
or CCONJ
end NOUN
sermon NOUN
: PUNCT
-)>>-- PUNCT
AlexNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59480From NUM
: PUNCT
jcarey@news.weeg.uiowa.edu PROPN
( PUNCT
John PROPN
Carey)Subject PROPN
: PUNCT
med VERB
schoolActually ADV
I PRON
am AUX
entering VERB
vet NOUN
school NOUN
next ADJ
year NOUN
, PUNCT
but CCONJ
the DET
question NOUN
is AUX
relevant ADJ
for ADP
med ADJ
students NOUN
too ADV
. PUNCT
Memorizing VERB
large ADJ
amounts NOUN
has AUX
never ADV
been AUX
my PRON
strong ADJ
point NOUN
academically ADV
. PUNCT
Since SCONJ
this DET
is AUX
a DET
major ADJ
portion NOUN
of ADP
medical ADJ
education NOUN
-- PUNCT
anatomy NOUN
, PUNCT
histology NOUN
, PUNCT
pathology NOUN
, PUNCT
pharmacology NOUN
, PUNCT
are AUX
for ADP
the DET
most ADJ
part NOUN
mass NOUN
memorization NOUN
-- PUNCT
I PRON
am AUX
a DET
little ADV
concerned ADJ
. PUNCT
  SPACE
As SCONJ
I PRON
am AUX
sure ADJ
most ADJ
med ADJ
students NOUN
are AUX
. PUNCT
Can AUX
anyone PRON
suggest VERB
techniques NOUN
for ADP
this DET
type NOUN
of ADP
memorization NOUN
? PUNCT
  SPACE
I PRON
have AUX
had VERB
reasonable ADJ
success NOUN
with ADP
nemonics NOUN
and CCONJ
memory NOUN
tricks NOUN
likethinking VERB
up ADP
little ADJ
stories NOUN
to PART
associate VERB
unrelated ADJ
things NOUN
. PUNCT
  SPACE
But CCONJ
I PRON
havenever ADV
applied VERB
them PRON
to ADP
large ADJ
amounts NOUN
of ADP
" PUNCT
data" NOUN
. PUNCT
Has AUX
anyone PRON
had AUX
luck NOUN
with ADP
any DET
particular ADJ
books NOUN
, PUNCT
memory NOUN
systems NOUN
, PUNCT
orcheap PROPN
software NOUN
? PUNCT
   SPACE
Can AUX
you PRON
suggest VERB
any DET
helpful ADJ
organizational ADJ
techniques NOUN
? PUNCT
  SPACE
Being AUX
anolder NOUN
student NOUN
who PRON
returned VERB
to ADP
school NOUN
this DET
year NOUN
, PUNCT
organization NOUN
( PUNCT
anotherone NOUN
of ADP
my PRON
weak ADJ
points NOUN
) PUNCT
has AUX
been AUX
a DET
major ADJ
help NOUN
to ADP
my PRON
success NOUN
. PUNCT
Please INTJ
no DET
griping NOUN
about ADP
how ADV
all DET
you PRON
have AUX
to PART
do AUX
is AUX
" PUNCT
learn VERB
" PUNCT
the DET
materialconceptually ADV
. PUNCT
  SPACE
I PRON
have AUX
no DET
problem NOUN
with ADP
that DET
, PUNCT
it PRON
is AUX
one NUM
of ADP
my PRON
strong ADJ
points NOUN
. PUNCT
  SPACE
But CCONJ
you PRON
ca AUX
n't PART
get AUX
around ADP
the DET
fact NOUN
that SCONJ
much ADJ
of ADP
medicine NOUN
isrote PROPN
memorization NOUN
. PUNCT
  SPACE
Thanks NOUN
for ADP
your PRON
help NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59481From NUM
: PUNCT
daless@di.unipi.it PROPN
( PUNCT
Antonella PROPN
Dalessandro)Subject NUM
: PUNCT
Epilepsy NOUN
and CCONJ
video NOUN
gamesThere NOUN
have AUX
been AUX
a DET
few ADJ
postings NOUN
in ADP
the DET
past NOUN
on ADP
alleged VERB
pathological PROPN
( PUNCT
esp ADV
. PUNCT
neurological ADJ
) PUNCT
conditions NOUN
induced VERB
by ADP
playing VERB
video NOUN
games(e.g PROPN
. PUNCT
Nintendo PROPN
) PUNCT
. PUNCT
Apparently ADV
, PUNCT
there PRON
have AUX
been AUX
reported VERB
several ADJ
cases NOUN
of"photosensitive NUM
epilepsy NOUN
" PUNCT
, PUNCT
due ADP
to ADP
the DET
flashing NOUN
of ADP
somepatterns NOUN
and CCONJ
the DET
strong ADJ
attention NOUN
of ADP
the DET
( PUNCT
young ADJ
) PUNCT
players NOUN
. PUNCT
One NUM
poster NOUN
to PART
comp.risks PROPN
reported VERB
some DET
action NOUN
fromthe NOUN
British ADJ
Government PROPN
. PUNCT
A DET
quick ADJ
search NOUN
in ADP
a DET
database NOUN
reported VERB
the DET
following VERB
two NUM
publishedreferences:1 NUM
. PUNCT
E.J. PROPN
Hart PROPN
, PUNCT
Nintendo PROPN
epilepsy NOUN
, PUNCT
in ADP
New PROPN
England PROPN
J. PROPN
of ADP
Med PROPN
. PROPN
, PUNCT
322(20 NUM
) PUNCT
, PUNCT
14732 NUM
. PUNCT
TK PROPN
Daneshmend PROPN
et PROPN
al PROPN
. PROPN
, PUNCT
Dark PROPN
Warrior PROPN
epilepsy NOUN
, PUNCT
BMJ PROPN
1982 NUM
; PUNCT
284:1751 NUM
- PUNCT
2.I NUM
would AUX
appreciate VERB
if SCONJ
someone PRON
could AUX
post VERB
( PUNCT
or CCONJ
e ADJ
- NOUN
mail NOUN
) PUNCT
any DET
reference NOUN
to ADP
( PUNCT
preferably ADV
published VERB
) PUNCT
further ADV
work NOUN
on ADP
the DET
subject NOUN
. PUNCT
Any DET
pointer NOUN
to ADP
other ADJ
information NOUN
and/or CCONJ
to ADP
possible ADJ
technical ADJ
tools NOUN
( PUNCT
if SCONJ
any DET
) PUNCT
for ADP
reducing VERB
the DET
risks NOUN
are AUX
appreciated VERB
. PUNCT
Many ADJ
thanks NOUN
, PUNCT
Antonella PROPN
D'Alessandro PROPN
, PUNCT
Pisa PROPN
-- PUNCT
Italy PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59482From NUM
: PUNCT
adwright@iastate.edu X
( PUNCT
) PUNCT
Subject NOUN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedesIn PROPN
< X
1993Apr29.112642.1@vms.ocom.okstate.edu NUM
> X
chorley@vms.ocom.okstate.edu PROPN
writes:>In PROPN
article NOUN
< X
35004@castle.ed.ac.uk NOUN
> X
, PUNCT
gtclark@festival.ed.ac.uk PROPN
( PUNCT
G PROPN
T PROPN
Clark PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
Does AUX
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
If SCONJ
someone>>>was INTJ
bitten VERB
, PUNCT
how ADV
soon ADV
would AUX
medical ADJ
treatment NOUN
be AUX
needed VERB
, PUNCT
and CCONJ
what PRON
would>>>be NOUN
liable ADJ
to PART
happen VERB
to ADP
the DET
person NOUN
? PUNCT
> X
> X
> X
> X
> X
( PUNCT
Just ADV
for ADP
clarification NOUN
- PUNCT
I PRON
have AUX
NOT ADV
been AUX
bitten VERB
by ADP
one NUM
of ADP
these DET
, PUNCT
  SPACE
but CCONJ
my>>>house NOUN
seems VERB
to PART
be AUX
infested VERB
, PUNCT
and CCONJ
I PRON
want VERB
to PART
know VERB
' PUNCT
just ADV
in ADP
case NOUN
' PUNCT
. PUNCT
) PUNCT
> X
> X
> X
> X
> X
Rebecca PROPN
> X
> X
> X
> X
> X
> X
	 SPACE
Millipedes NOUN
, PUNCT
I PRON
understand VERB
, PUNCT
are AUX
vegetarian ADJ
, PUNCT
and CCONJ
therefore ADV
almost ADV
> X
> X
certainly ADV
will AUX
not PART
bite VERB
and CCONJ
are AUX
not PART
poisonous ADJ
. PUNCT
Centipedes NOUN
are AUX
> X
> X
carnivorous ADJ
, PUNCT
and CCONJ
although SCONJ
I PRON
do AUX
n't PART
have AUX
any DET
absolute ADJ
knowledge NOUN
on ADP
this DET
, PUNCT
I PRON
> X
> X
would AUX
tend VERB
to PART
think VERB
that SCONJ
you PRON
're AUX
in ADP
no DET
danger NOUN
from ADP
anything PRON
but SCONJ
a DET
> X
> X
concerted ADJ
assault NOUN
by ADP
several ADJ
million NUM
of ADP
them PRON
. PUNCT
> X
> X
> X
> X
			 SPACE
G.>Not INTJ
sure ADJ
of ADP
this DET
but CCONJ
I PRON
think VERB
some DET
millipedes NOUN
cause VERB
a DET
toxic ADJ
reaction NOUN
( PUNCT
sting?>So NOUN
I PRON
would AUX
not PART
assume VERB
that SCONJ
they PRON
are AUX
not PART
dangerous ADJ
merely ADV
on ADP
the DET
basis NOUN
of ADP
> X
vegetarianism NOUN
, PUNCT
after ADP
all DET
wasps NOUN
are AUX
vegetarian ADJ
too.>dnc NOUN
. PUNCT
As SCONJ
a DET
child NOUN
i PRON
can AUX
remember VERB
picking VERB
up ADP
a DET
centipede NOUN
and CCONJ
getting VERB
a DET
rather ADV
painful ADJ
sting NOUN
, PUNCT
but CCONJ
it PRON
quickly ADV
subsided VERB
. PUNCT
Much ADV
less ADV
painful ADJ
compared VERB
to ADP
a DET
bee NOUN
sting NOUN
. PUNCT
Centipedes NOUN
have AUX
a DET
poison NOUN
claw NOUN
( PUNCT
one NUM
of ADP
the DET
front ADJ
feet NOUN
) PUNCT
to PART
stun VERB
their PRON
prey NOUN
, PUNCT
butin VERB
my PRON
single ADJ
experience NOUN
it PRON
did AUX
not PART
have AUX
a DET
lot NOUN
of ADP
" PUNCT
bite NOUN
" PUNCT
to ADP
it PRON
. PUNCT
A.Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59483From NUM
: PUNCT
wdh@faron.mitre.org PROPN
( PUNCT
Dale PROPN
Hall)Subject NUM
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
8frk1ym00Vp5Apxl1q@andrew.cmu.edu NUM
> X
" PUNCT
Gabriel PROPN
D. PROPN
Underwood PROPN
" PUNCT
< X
gabe+@CMU.EDU PROPN
> X
writes:>I PROPN
heard VERB
a DET
great ADJ
Civil PROPN
War PROPN
story NOUN
... PUNCT
      SPACE
A DET
guy NOUN
on ADP
the DET
battlfield NOUN
is AUX
shot VERB
> X
in ADP
the DET
groin NOUN
, PUNCT
   SPACE
the DET
bullet NOUN
continues VERB
on ADP
it PRON
's AUX
path NOUN
, PUNCT
and CCONJ
lodges NOUN
in ADP
the DET
> X
abdomen NOUN
of ADP
a DET
female ADJ
spectator NOUN
. PUNCT
    SPACE
Lo PROPN
and CCONJ
behold VERB
.... PUNCT
>>As X
the DET
legend NOUN
goes VERB
, PUNCT
   SPACE
both DET
parents NOUN
survived VERB
, PUNCT
  SPACE
married VERB
, PUNCT
  SPACE
and CCONJ
raised VERB
the DET
child NOUN
. PUNCT
> X
	 SPACE
.... PUNCT
who PRON
turned VERB
out ADP
to PART
be AUX
a DET
real ADJ
son NOUN
- PUNCT
of ADP
- PUNCT
a DET
- PUNCT
gun NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59484From NUM
: PUNCT
< X
ICBAL@ASUACAD.BITNET NOUN
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Depression NOUN
> X
I PRON
do AUX
believe VERB
that SCONJ
depression NOUN
can AUX
have AUX
a DET
dietary ADJ
component NOUN
. PUNCT
Depression NOUN
can AUX
also ADV
have AUX
various ADJ
chemical NOUN
( PUNCT
environmental ADJ
) PUNCT
components NOUN
. PUNCT
I PRON
noticed VERB
that SCONJ
I PRON
became VERB
depressed ADJ
in ADP
various ADJ
buildings NOUN
, PUNCT
and CCONJ
at ADP
homewhen ADV
the DET
air NOUN
conditioning NOUN
was AUX
on ADV
. PUNCT
Subsequent ADJ
testing NOUN
revealed VERB
thatI PROPN
was AUX
allergic ADJ
to ADP
stemphyllium NOUN
, PUNCT
a DET
mold NOUN
commonly ADV
found VERB
in ADP
air NOUN
conditioners NOUN
. PUNCT
After ADP
I PRON
began VERB
taking VERB
antigens NOUN
, PUNCT
that DET
problem NOUN
disappeared VERB
. PUNCT
Bruce PROPN
L.Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59485From NUM
: PUNCT
mcovingt@aisun4.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser NOUN
printers??Laser NOUN
printers NOUN
often ADV
emit VERB
ozone NOUN
( PUNCT
which PRON
smells VERB
sort ADV
of ADV
like INTJ
Clorox).Adequate PROPN
ventilation NOUN
is AUX
recommended.-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59486From NUM
: PUNCT
mcovingt@aisun4.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
C697IJ.IuA@srgenprp.sr.hp.com X
> X
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
writes:>pk115050@wvnvms.wvnet.edu PROPN
wrote:>move PROPN
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes,>by NOUN
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'd NOUN
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
One NUM
more ADJ
reason NOUN
for ADP
men NOUN
to PART
learn VERB
the DET
Lamaze PROPN
breathing NOUN
techniques NOUN
, PUNCT
in ADP
orderto ADJ
be AUX
able ADJ
to PART
get AUX
some DET
pain NOUN
reduction NOUN
instantly ADV
, PUNCT
wherever ADV
you PRON
are.-- VERB
: PUNCT
- SYM
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59487From NUM
: PUNCT
brian@ucsd.edu X
( PUNCT
Brian PROPN
Kantor)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
As SCONJ
I PRON
recall VERB
from ADP
my PRON
bout NOUN
with ADP
kidney NOUN
stones NOUN
, PUNCT
there PRON
is AUX
n't PART
anymedication NOUN
that PRON
can AUX
do AUX
anything PRON
about ADP
them PRON
except PART
relieve VERB
the DET
pain NOUN
. PUNCT
Either CCONJ
they PRON
pass VERB
, PUNCT
or CCONJ
they PRON
have AUX
to PART
be AUX
broken VERB
up ADP
with ADP
sound NOUN
, PUNCT
or CCONJ
they PRON
haveto AUX
be AUX
extracted VERB
surgically ADV
. PUNCT
When ADV
I PRON
was AUX
in ADV
, PUNCT
the DET
X NOUN
- NOUN
ray NOUN
tech NOUN
happened VERB
to PART
mention VERB
that SCONJ
she PRON
'd AUX
had VERB
kidneystones NOUN
and CCONJ
children NOUN
, PUNCT
and CCONJ
the DET
childbirth ADJ
hurt NOUN
less ADV
. PUNCT
Demerol PROPN
worked VERB
, PUNCT
although SCONJ
I PRON
nearly ADV
got VERB
arrested VERB
on ADP
my PRON
way NOUN
home ADV
when ADV
I PRON
barfedall VERB
over ADP
the DET
police NOUN
car NOUN
parked VERB
just ADV
outside ADP
the DET
ER PROPN
. PUNCT
	 SPACE
- PUNCT
BrianNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59488From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject X
: PUNCT
DepressionSome PROPN
of ADP
the DET
MD PROPN
's PART
in ADP
this DET
newsgroup NOUN
have AUX
been AUX
riding VERB
my PRON
butt NOUN
pretty ADV
good(maybe PROPN
in ADP
some DET
cases NOUN
with ADP
good ADJ
reason NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
this DET
post NOUN
on ADP
depression NOUN
, PUNCT
I PRON
'm AUX
laying VERB
it PRON
all DET
out ADP
. PUNCT
  SPACE
I PRON
'll AUX
continue VERB
to PART
post VERB
here ADV
because SCONJ
I PRON
think VERB
that SCONJ
I PRON
have AUX
some DET
knowledge NOUN
that PRON
could AUX
be AUX
useful ADJ
. PUNCT
  SPACE
Once SCONJ
you PRON
have AUX
read VERB
this DET
post NOUN
, PUNCT
you PRON
should AUX
know VERB
where ADV
I PRON
'm AUX
coming VERB
from ADP
when ADV
I PRON
post VERB
again ADV
in ADP
the DET
future NOUN
. PUNCT
In ADP
article NOUN
< X
123552@netnews.upenn.edu NUM
> X
, PUNCT
lchaplyn@mail.sas.upenn.edu PROPN
( PUNCT
Lida PROPN
Chaplynsky PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
A DET
family NOUN
member NOUN
of ADP
mine NOUN
is AUX
suffering VERB
from ADP
a DET
severe ADJ
depression NOUN
brought VERB
on ADP
> X
by ADP
menopause NOUN
as ADV
well ADV
as SCONJ
a DET
mental ADJ
break NOUN
down ADP
. PUNCT
  SPACE
She PRON
is AUX
being AUX
treated VERB
with ADP
> X
Halydol PROPN
with ADP
some DET
success NOUN
but CCONJ
the DET
treatments NOUN
being AUX
provided VERB
through ADP
her PRON
> X
psychiatrist NOUN
are AUX
not PART
satisfactory ADJ
. PUNCT
  SPACE
Someone PRON
suggested VERB
contacting VERB
a DET
> X
nutritionist NOUN
to ADP
> X
discuss VERB
alternative ADJ
treatment NOUN
. PUNCT
  SPACE
Since SCONJ
she PRON
is AUX
sensitive ADJ
to ADP
medication NOUN
, PUNCT
I PRON
> X
think VERB
this DET
is AUX
a DET
good ADJ
suggestion NOUN
but CCONJ
do AUX
n't PART
know VERB
where ADV
to PART
begin VERB
. PUNCT
  SPACE
If SCONJ
anyone PRON
> X
can AUX
suggest VERB
a DET
Philly ADJ
area NOUN
nutritionist NOUN
, PUNCT
or CCONJ
else ADV
some DET
literature NOUN
to PART
read VERB
, PUNCT
> X
I PRON
'd AUX
appreciate VERB
it PRON
. PUNCT
Lida PROPN
, PUNCT
I PRON
can AUX
emphasize VERB
with ADP
your PRON
situation NOUN
. PUNCT
  SPACE
Both CCONJ
my PRON
wife NOUN
and CCONJ
I PRON
suffered VERB
from ADP
bouts NOUN
of ADP
depression NOUN
. PUNCT
  SPACE
Her PRON
's PART
was AUX
brought VERB
on ADP
by ADP
breast NOUN
cancer NOUN
and CCONJ
mine NOUN
was AUX
a DET
rebound ADJ
stress NOUN
reaction NOUN
to ADP
her PRON
modified VERB
radical ADJ
mastectomy NOUN
and CCONJ
chemotherapy NOUN
. PUNCT
  SPACE
Lida PROPN
, PUNCT
I PRON
used VERB
my PRON
knowledge NOUN
of ADP
nutrition NOUN
to PART
get AUX
her PRON
through ADP
her PRON
six NUM
months NOUN
of ADP
chemotherapy(with PROPN
the DET
approval NOUN
of ADP
her PRON
oncologist NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
severe ADJ
depression NOUN
set VERB
in ADP
a DET
few ADJ
months NOUN
after ADP
the DET
chemo NOUN
stopped VERB
, PUNCT
I PRON
tried VERB
to PART
use VERB
supplements NOUN
to PART
bring VERB
her PRON
out SCONJ
of ADP
it PRON
. PUNCT
  SPACE
I PRON
had AUX
" PUNCT
cured VERB
" PUNCT
her PRON
PMS PROPN
using VERB
supplements NOUN
and CCONJ
I PRON
really ADV
thought VERB
that SCONJ
I PRON
knew VERB
enough ADV
about ADP
the DET
role NOUN
of ADP
diet NOUN
in ADP
depression NOUN
to PART
take VERB
care NOUN
of ADP
her PRON
depression NOUN
as ADV
well ADV
. PUNCT
  SPACE
It PRON
did AUX
n't PART
work VERB
and CCONJ
she PRON
was AUX
put VERB
on ADP
Prozac PROPN
by ADP
her PRON
oncologist NOUN
. PUNCT
  SPACE
Two NUM
Winters PROPN
ago(three NUM
years NOUN
after ADP
by ADP
wife NOUN
's PART
breast NOUN
cancer NOUN
) PUNCT
I PRON
got VERB
hit VERB
with ADP
severe ADJ
depression(pretty PROPN
typical ADJ
and CCONJ
one NUM
reason NOUN
why ADV
many ADJ
marriages NOUN
break VERB
up ADP
after ADP
breast NOUN
cancer NOUN
or CCONJ
another DET
stressor NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
tried VERB
to PART
take VERB
care NOUN
of ADP
it PRON
for ADP
several ADJ
months NOUN
with ADP
supplementation NOUN
. PUNCT
  SPACE
Did AUX
n't PART
work VERB
. PUNCT
  SPACE
My PRON
internist NOUN
ended VERB
up ADP
putting VERB
me PRON
on ADP
Prozac PROPN
. PUNCT
I PRON
was AUX
going VERB
to PART
give VERB
you PRON
a DET
list NOUN
of ADP
several ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
using VERB
B6 PROPN
, PUNCT
niacin PROPN
, PUNCT
folate NOUN
and CCONJ
B12 PROPN
to PART
" PUNCT
cure VERB
" PUNCT
depression NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
going VERB
to PART
do AUX
that DET
because SCONJ
all DET
you PRON
would AUX
be AUX
doing VERB
is AUX
flying VERB
blind ADJ
like SCONJ
I PRON
was AUX
. PUNCT
Lida PROPN
, PUNCT
I PRON
do AUX
believe VERB
that SCONJ
depression NOUN
can AUX
have AUX
a DET
dietary ADJ
component NOUN
. PUNCT
  SPACE
But CCONJ
the DET
problem NOUN
is AUX
that SCONJ
you PRON
need VERB
to PART
know VERB
exactly ADV
what PRON
the DET
problem NOUN
is AUX
and CCONJ
then ADV
use VERB
an DET
approach NOUN
which PRON
will AUX
" PUNCT
fix VERB
" PUNCT
the DET
problem NOUN
. PUNCT
  SPACE
For ADP
chemotherapy NOUN
, PUNCT
I PRON
knew VERB
exactly ADV
what PRON
drugs NOUN
were AUX
going VERB
to PART
be AUX
used VERB
and CCONJ
exactly ADV
what PRON
nutrients NOUN
would AUX
be AUX
affected VERB
. PUNCT
  SPACE
Same ADJ
thing NOUN
for ADP
PMS PROPN
. PUNCT
  SPACE
I PRON
was AUX
flying VERB
blind ADJ
for ADP
both DET
of ADP
these DET
stressors NOUN
but CCONJ
the DET
literature NOUN
that PRON
I PRON
used VERB
to PART
devise VERB
a DET
treatment NOUN
program NOUN
was AUX
pretty ADV
good ADJ
. PUNCT
  SPACE
Depression NOUN
is AUX
just ADV
too ADV
complicated ADJ
. PUNCT
  SPACE
What PRON
you PRON
really ADV
need VERB
is AUX
a DET
nutritional ADJ
scan NOUN
. PUNCT
  SPACE
This DET
is AUX
not PART
a DET
diet NOUN
analysis NOUN
but CCONJ
an DET
analysis NOUN
of ADP
your PRON
bodies NOUN
nutrient ADJ
reserves NOUN
. PUNCT
  SPACE
For ADP
every DET
vitamin NOUN
and CCONJ
mineral(except PROPN
vitamin NOUN
C PROPN
) PUNCT
, PUNCT
you PRON
have AUX
a DET
reserve NOUN
. PUNCT
  SPACE
The DET
RDA PROPN
is AUX
not PART
designed VERB
to PART
give VERB
you PRON
enough ADJ
of ADP
any DET
nutrient NOUN
to PART
keep VERB
these DET
reserves NOUN
full ADJ
, PUNCT
it PRON
is AUX
only ADV
designed VERB
to PART
keep VERB
them PRON
from ADP
being AUX
emptied VERB
which PRON
would AUX
cause VERB
clinical ADJ
pathology NOUN
. PUNCT
  SPACE
Stress NOUN
will AUX
increase VERB
your PRON
need NOUN
for ADP
many ADJ
vitamins NOUN
and CCONJ
minerals NOUN
. PUNCT
  SPACE
This DET
is AUX
when ADV
your PRON
reserves NOUN
become VERB
very ADV
important ADJ
. PUNCT
Lida PROPN
, PUNCT
without ADP
your PRON
permission NOUN
, PUNCT
I PRON
'm AUX
going VERB
to PART
use VERB
your PRON
post NOUN
as SCONJ
a DET
conduit NOUN
to PART
try VERB
to PART
explain VERB
to ADP
the DET
readers NOUN
in ADP
this DET
group NOUN
and CCONJ
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
where ADV
I PRON
'm AUX
coming VERB
from ADP
. PUNCT
  SPACE
I PRON
have AUX
taught VERB
a DET
course NOUN
on ADP
human ADJ
nutrition NOUN
in ADP
one NUM
of ADP
the DET
Osteopathic PROPN
Medical PROPN
schools NOUN
for ADP
ten NUM
years NOUN
now ADV
. PUNCT
  SPACE
I PRON
've AUX
written VERB
my PRON
own ADJ
textbook NOUN
because SCONJ
none NOUN
was AUX
available ADJ
. PUNCT
  SPACE
What PRON
I PRON
teach VERB
is AUX
not PART
a DET
rehash NOUN
of ADP
biochemistry NOUN
. PUNCT
  SPACE
I PRON
preach VERB
nutrient ADJ
reserves(yes VERB
my PRON
lectures NOUN
in ADP
this DET
course NOUN
are AUX
referred VERB
to ADP
by ADP
my PRON
students NOUN
as SCONJ
sermons NOUN
) PUNCT
. PUNCT
  SPACE
Here ADV
is AUX
what PRON
I PRON
cover VERB
: PUNCT
Indroduction NOUN
and CCONJ
Carbohydrates PROPN
			 SPACE
LipidsProteins PROPN
I PRON
					 SPACE
Proteins NOUN
IIEnergy VERB
Balance NOUN
					 SPACE
Evaluation PROPN
of ADP
Nutritional PROPN
						 SPACE
Status PROPN
I PRON
, PUNCT
A DET
Clinical PROPN
						 SPACE
PerspectiveEvaluation PROPN
of ADP
Nutritional PROPN
Status PROPN
II PROPN
, PUNCT
            SPACE
Evaluation PROPN
of ADP
Nutritional PROPN
		 SPACE
A PROPN
Biochemical PROPN
Perspective PROPN
			 SPACE
Status PROPN
III PROPN
, PUNCT
Homework PROPN
						 SPACE
Assignment PROPN
Using VERB
the DET
						 SPACE
Nutritionist PROPN
IV PROPN
Diet PROPN
and CCONJ
						 SPACE
Fitness PROPN
Analysis PROPN
Software PROPN
						 SPACE
programWeight NOUN
Control NOUN
					 SPACE
Food PROPN
Fads PROPN
and CCONJ
FactsAge PROPN
- PUNCT
Related VERB
Change NOUN
in ADP
Nutrient PROPN
Requirements PROPN
	 SPACE
Food PROPN
Additives PROPN
, PUNCT
						 SPACE
Contaminants PROPN
and CCONJ
CancerDrug PROPN
- PUNCT
Nutrient PROPN
Interactions PROPN
			 SPACE
Mineral PROPN
and CCONJ
Water PROPN
BalanceSodium PROPN
, PUNCT
Potassium PROPN
and CCONJ
Chloride PROPN
			 SPACE
Calcium PROPN
, PUNCT
Magnesium PROPN
and CCONJ
						 SPACE
PhosphorusIron PROPN
						 SPACE
Zinc PROPN
and CCONJ
CopperIodine PROPN
and CCONJ
Fluoride PROPN
				 SPACE
Other PROPN
Trace PROPN
MineralsVitamin PROPN
A DET
					 SPACE
Vitamin NOUN
EVitamins VERB
D NOUN
and CCONJ
K PROPN
				 SPACE
Vitamin PROPN
CThiamin PROPN
and CCONJ
Niacin PROPN
				 SPACE
Riboflavin PROPN
and CCONJ
PyridoxinePantothenic PROPN
and CCONJ
Folic ADJ
acids NOUN
			 SPACE
Biotin PROPN
and CCONJ
B12Other ADJ
Nutrient PROPN
Factors NOUN
				 SPACE
Enteral PROPN
NutritionParenteral PROPN
NutritionEvery PROPN
three NUM
years NOUN
I PRON
spend VERB
my PRON
entire ADJ
Summer NOUN
reviewing VERB
the DET
Medical ADJ
literature NOUN
to PART
find VERB
material NOUN
that PRON
I PRON
can AUX
use VERB
in ADP
my PRON
nutrition NOUN
textbook NOUN
. PUNCT
  SPACE
I PRON
last ADV
did AUX
this DET
in ADP
the DET
Summer PROPN
of ADP
1991 NUM
. PUNCT
  SPACE
I PRON
read VERB
everything PRON
that PRON
I PRON
can AUX
find VERB
and CCONJ
then ADV
sit VERB
down ADP
and CCONJ
rewrite VERB
my PRON
lecture NOUN
handouts NOUN
which PRON
are AUX
bound VERB
in ADP
three NUM
separate ADJ
books NOUN
that PRON
have AUX
217 NUM
, PUNCT
237 NUM
and CCONJ
122 NUM
pages NOUN
. PUNCT
  SPACE
Opposite ADP
each DET
page NOUN
of ADP
written VERB
text(which PROPN
I PRON
write VERB
myself PRON
) PUNCT
I PRON
've AUX
pulled VERB
figures NOUN
, PUNCT
tables NOUN
and CCONJ
graphs NOUN
from ADP
various ADJ
copyrighted VERB
sources NOUN
. PUNCT
  SPACE
Since SCONJ
this DET
material NOUN
is AUX
only ADV
being AUX
used VERB
for ADP
educational ADJ
purposes NOUN
, PUNCT
I PRON
can AUX
get AUX
around ADP
the DET
copyright NOUN
laws NOUN
( PUNCT
so ADV
far ADV
) PUNCT
. PUNCT
  SPACE
I PRON
can AUX
not PART
send VERB
this DET
material NOUN
out SCONJ
to PART
newsgroup VERB
readers(as NOUN
I PRON
've AUX
been AUX
asked VERB
to PART
do).I PROPN
am AUX
now ADV
in ADP
the DET
process NOUN
of ADP
trying VERB
to PART
get AUX
a DET
grant NOUN
to PART
setup VERB
a DET
nutrition NOUN
assessment NOUN
lab NOUN
. PUNCT
  SPACE
This DET
is AUX
the DET
last ADJ
peice NOUN
of ADP
the DET
nutrition NOUN
puzzle NOUN
that PRON
I PRON
need VERB
to PART
make VERB
my PRON
education NOUN
program NOUN
complete ADJ
. PUNCT
  SPACE
This DET
lab NOUN
will AUX
let VERB
me PRON
measure VERB
the DET
nutrient PROPN
reserve NOUN
for ADP
almost ADV
all DET
the DET
vitamins NOUN
and CCONJ
minerals NOUN
that PRON
are AUX
known VERB
to PART
be AUX
required VERB
in ADP
humans NOUN
. PUNCT
  SPACE
The DET
Mayo PROPN
clinic NOUN
already ADV
uses VERB
a DET
similiar ADJ
lab NOUN
to PART
design VERB
supplement NOUN
programs NOUN
for ADP
their PRON
cancer NOUN
patients NOUN
. PUNCT
  SPACE
Cancer PROPN
Treatment PROPN
Centers PROPN
of ADP
America PROPN
, PUNCT
which PRON
is AUX
a DET
private ADJ
for ADP
- PUNCT
profit NOUN
organization NOUN
with ADP
hospitals NOUN
in ADP
Illinois PROPN
and CCONJ
Oklahoma(Tulsa PROPN
) PUNCT
also ADV
operates VERB
a DET
nutritional ADJ
assessment NOUN
clinical ADJ
lab NOUN
. PUNCT
  SPACE
I PRON
also ADV
believe VERB
that SCONJ
the DET
Pritikin PROPN
Clinic PROPN
in ADP
California PROPN
has AUX
a DET
similiar ADJ
lab NOUN
setup NOUN
. PUNCT
For ADP
physicians NOUN
reading VERB
this DET
post NOUN
, PUNCT
I PRON
would AUX
suggest VERB
that SCONJ
you PRON
get VERB
the DET
new ADJ
Clinical PROPN
Nutrition PROPN
Textbook PROPN
that PRON
has AUX
just ADV
been AUX
published(Feb ADJ
) PUNCT
by ADP
Mosby PROPN
. PUNCT
  SPACE
I PRON
have AUX
been AUX
using VERB
Alpers PROPN
Manual PROPN
of ADP
Nutritional PROPN
Therapeutics(a PROPN
Little PROPN
Brown PROPN
series NOUN
book NOUN
) PUNCT
as SCONJ
a DET
supplemental ADJ
text NOUN
for ADP
my PRON
course NOUN
but CCONJ
Alpers PROPN
is AUX
geared VERB
more ADV
to ADP
residency NOUN
training NOUN
. PUNCT
  SPACE
Two NUM
M.D PROPN
's PART
have AUX
written VERB
this DET
new ADJ
Clinical PROPN
Nutritiontextbook PROPN
and CCONJ
it PRON
is AUX
geared VERB
more ADV
towards ADP
medical ADJ
student NOUN
education NOUN
and CCONJ
it PRON
does AUX
a DET
good ADJ
job NOUN
of ADP
covering VERB
the DET
lab NOUN
tests NOUN
that PRON
can AUX
be AUX
run VERB
to PART
assess VERB
a DET
patient NOUN
's PART
nutritional ADJ
status NOUN
. PUNCT
  SPACE
Let VERB
me PRON
quote VERB
a DET
few ADJ
sentences NOUN
from ADP
the DET
Preface PROPN
of ADP
this DET
new ADJ
text:"So PROPN
- PUNCT
called VERB
nutrition NOUN
specialists NOUN
were AUX
in ADP
reality NOUN
gastroenterologists NOUN
, PUNCT
hematologists NOUN
, PUNCT
or CCONJ
pediatricians NOUN
who PRON
just ADV
happened VERB
to PART
profess VERB
some DET
knowledge NOUN
of ADP
nutrition NOUN
as SCONJ
it PRON
related VERB
to ADP
their PRON
field NOUN
of ADP
practice NOUN
. PUNCT
" PUNCT
  SPACE
" PUNCT
Unfortunately ADV
, PUNCT
about ADV
two NUM
thirds NOUN
of ADP
the DET
medical ADJ
schools NOUN
in ADP
the DET
United PROPN
States PROPN
require VERB
no DET
formal ADJ
instruction NOUN
in ADP
nutrition NOUN
. PUNCT
""But PUNCT
times NOUN
and CCONJ
medical ADJ
practice NOUN
have AUX
changed VERB
. PUNCT
  SPACE
More ADJ
than SCONJ
half NOUN
of ADP
the DET
leading VERB
causes NOUN
of ADP
death NOUN
in ADP
this DET
country NOUN
are AUX
nutrition NOUN
related ADJ
. PUNCT
" PUNCT
" PUNCT
... PUNCT
this DET
monograph NOUN
should AUX
accomplish VERB
the DET
following VERB
two NUM
objectives NOUN
: PUNCT
( PUNCT
1 X
) PUNCT
it PRON
should AUX
complement VERB
your PRON
medical ADJ
training NOUN
by ADP
emphasizing VERB
the DET
relevance NOUN
of ADP
nutrition NOUN
to ADP
your PRON
medical ADJ
practice NOUN
; PUNCT
and CCONJ
( PUNCT
2 X
) PUNCT
it PRON
should AUX
heighten VERB
your PRON
awareness NOUN
of ADP
nutrition NOUN
as SCONJ
a DET
medical ADJ
speciality NOUN
that PRON
is AUX
vitally ADV
important ADJ
for ADP
both CCONJ
disease PROPN
prevention PROPN
and CCONJ
the DET
treatment NOUN
of ADP
diseases NOUN
of ADP
essentially ADV
every DET
organ NOUN
system NOUN
. PUNCT
"Roland PUNCT
L. PROPN
Weinsier PROPN
, PUNCT
MD PROPN
, PUNCT
DrPH VERB
Lida PROPN
, PUNCT
my PRON
advise NOUN
to ADP
you PRON
is AUX
that SCONJ
you PRON
tell VERB
your PRON
family NOUN
members NOUN
to PART
try VERB
to PART
find VERB
a DET
physician NOUN
who PRON
has AUX
an DET
understanding NOUN
of ADP
the DET
role NOUN
that PRON
vitamins VERB
and CCONJ
minerals(yes X
even ADV
magnesium NOUN
may AUX
play VERB
a DET
role NOUN
in ADP
depression NOUN
) PUNCT
play VERB
in ADP
depression NOUN
and CCONJ
who PRON
could AUX
get AUX
a DET
nutritional ADJ
profile NOUN
run NOUN
. PUNCT
  SPACE
Menopause PROPN
is AUX
often ADV
a DET
time NOUN
when ADV
women NOUN
suffer VERB
depression NOUN
. PUNCT
  SPACE
There PRON
are AUX
a DET
lot NOUN
of ADP
hormonal ADJ
changes NOUN
that PRON
are AUX
occuring VERB
but CCONJ
they PRON
are AUX
not PART
the DET
same ADJ
ones NOUN
that PRON
occur VERB
during ADP
PMS PROPN
. PUNCT
  SPACE
A DET
nutritionist NOUN
may AUX
also ADV
be AUX
able ADJ
to PART
help VERB
. PUNCT
  SPACE
Not PART
too ADV
long ADV
ago ADV
a DET
poster NOUN
mentioned VERB
that SCONJ
his PRON
nutritionist NOUN
had AUX
diagnosed VERB
a DET
selenium NOUN
deficiency NOUN
based VERB
on ADP
a DET
red ADJ
cell NOUN
glutathionine NOUN
peroxidase NOUN
test(the DET
specific ADJ
test NOUN
for ADP
the DET
selenium NOUN
reserve PROPN
) PUNCT
. PUNCT
  SPACE
Most ADV
clinical ADJ
labs NOUN
will AUX
not PART
run VERB
this DET
test NOUN
and CCONJ
I PRON
advised VERB
him PRON
to PART
try VERB
to PART
make VERB
sure ADJ
that SCONJ
the DET
lab NOUN
that PRON
did AUX
the DET
test NOUN
was AUX
certified VERB
. PUNCT
  SPACE
There PRON
are AUX
also ADV
a DET
lot NOUN
of ADP
hair NOUN
and CCONJ
nail NOUN
analysis NOUN
labs NOUN
setup NOUN
to PART
do AUX
trace NOUN
mineral NOUN
analysis NOUN
but CCONJ
these DET
labs NOUN
are AUX
not PART
regulated VERB
. PUNCT
  SPACE
Checks NOUN
of ADP
these DET
labs NOUN
using VERB
certified VERB
standards NOUN
, PUNCT
and CCONJ
also ADV
those DET
doing VERB
water NOUN
lead NOUN
analysis NOUN
, PUNCT
showed VERB
some DET
pretty ADV
shoddy ADJ
testing NOUN
was AUX
going VERB
on ADP
. PUNCT
  SPACE
If SCONJ
you PRON
or CCONJ
anyone PRON
else ADV
finds VERB
someone PRON
who PRON
will AUX
run VERB
these DET
speciality NOUN
nutrition NOUN
tests NOUN
, PUNCT
make VERB
sure ADJ
that SCONJ
they PRON
are AUX
using VERB
a DET
lab NOUN
that PRON
has AUX
been AUX
certified VERB
under ADP
CLIA(the PROPN
Clinical PROPN
Laboratory PROPN
Improvement PROPN
Act PROPN
) PUNCT
. PUNCT
  SPACE
A DET
diet NOUN
analysis NOUN
may AUX
be AUX
helpful ADJ
since SCONJ
many ADJ
nutrient ADJ
reserves NOUN
have AUX
been AUX
shown VERB
to PART
correlate VERB
fairly ADV
well ADV
with ADP
the DET
dietary ADJ
intake NOUN
as SCONJ
monitored VERB
by ADP
food NOUN
logging NOUN
and CCONJ
software NOUN
analysis(Nutritionist NOUN
IV PROPN
and CCONJ
other ADJ
software NOUN
programs NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
still ADV
about ADP
half NOUN
of ADP
the DET
nutrients NOUN
required VERB
by ADP
humans NOUN
that PRON
do AUX
not PART
show VERB
a DET
very ADV
good ADJ
correlation NOUN
between ADP
apparent ADJ
dietary ADJ
intake NOUN
and CCONJ
reserve NOUN
status NOUN
. PUNCT
Until ADP
we PRON
have AUX
more ADJ
nutritional ADJ
assessment NOUN
clinical ADJ
labs NOUN
in ADP
operation NOUN
in ADP
the DET
U.S. PROPN
and CCONJ
physicians NOUN
who PRON
have AUX
been AUX
trained VERB
how ADV
to PART
use VERB
the DET
nutritional ADJ
profile NOUN
that PRON
these DET
labs NOUN
provide VERB
to PART
devise VERB
a DET
treatment NOUN
approach NOUN
that PRON
uses VERB
diet NOUN
changes NOUN
and CCONJ
supplementation NOUN
, PUNCT
anti NOUN
- NOUN
depressants NOUN
will AUX
probably ADV
continue VERB
to PART
be AUX
the DET
best ADJ
approach NOUN
to ADP
depression NOUN
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine"Without PROPN
discourse NOUN
, PUNCT
there PRON
is AUX
no DET
remembering NOUN
, PUNCT
without ADP
remembering VERB
, PUNCT
there PRON
is AUX
no DET
learning NOUN
, PUNCT
without ADP
learning VERB
, PUNCT
there PRON
is AUX
only ADV
ignorance NOUN
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59489From NUM
: PUNCT
hbloom@moose.uvm.edu PROPN
( PUNCT
* PUNCT
Heather*)Subject PUNCT
: PUNCT
re ADP
: PUNCT
earwaxHi PROPN
StephenEar PROPN
wax NOUN
is AUX
a DET
healthy ADJ
way NOUN
to PART
help VERB
prevent VERB
ear NOUN
infections NOUN
, PUNCT
both CCONJ
by ADP
preventinga PROPN
barrier PROPN
and CCONJ
also ADV
with ADP
some DET
antibiotic ADJ
properties NOUN
. PUNCT
  SPACE
Too ADV
much ADV
can AUX
block VERB
theexternal ADJ
auditory PROPN
canal PROPN
( PUNCT
the DET
hole NOUN
in ADP
the DET
outside NOUN
of ADP
the DET
ear NOUN
) PUNCT
and CCONJ
cause VERB
some DET
hearing NOUN
problems NOUN
. PUNCT
  SPACE
It PRON
is AUX
very ADV
simple ADJ
, PUNCT
and CCONJ
safe ADJ
, PUNCT
to PART
remove VERB
excess ADJ
wax NOUN
on ADP
yourown NOUN
, PUNCT
or CCONJ
at ADP
your PRON
physician NOUN
's PART
office NOUN
. PUNCT
  SPACE
You PRON
can AUX
take VERB
a DET
syringe NOUN
( PUNCT
no DET
needles NOUN
! PUNCT
) PUNCT
andfill VERB
it PRON
with ADP
50 NUM
% NOUN
warm ADJ
water NOUN
( PUNCT
cold ADJ
can AUX
cause VERB
fainting NOUN
) PUNCT
and CCONJ
50 NUM
% NOUN
OTC PROPN
hydrogenperoxide NOUN
. PUNCT
  SPACE
Then ADV
point VERB
the DET
ear NOUN
towards ADP
the DET
ceiling NOUN
( PUNCT
about ADP
45 NUM
degrees NOUN
up)and ADJ
insert NOUN
the DET
tip NOUN
of ADP
the DET
syringe NOUN
( PUNCT
helps VERB
to PART
have AUX
someone PRON
else ADV
do AUX
this DET
! PUNCT
) PUNCT
and CCONJ
  SPACE
firmly ADV
expell VERB
the DET
solution NOUN
. PUNCT
  SPACE
Depending VERB
on ADP
the DET
size NOUN
of ADP
the DET
syringe NOUN
and CCONJ
thetenacity NOUN
of ADP
the DET
wax NOUN
, PUNCT
this DET
could AUX
take VERB
several ADJ
rinses NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
place VERB
a DET
bowl NOUN
under ADP
the DET
ear NOUN
to PART
catch VERB
the DET
water NOUN
, PUNCT
it PRON
will AUX
be AUX
much ADV
drier ADJ
:-) PUNCT
. PUNCT
  SPACE
You PRON
can AUX
buya VERB
syringe VERB
with ADP
a DET
special ADJ
tip NOUN
at ADP
your PRON
local ADJ
pharmacy NOUN
, PUNCT
or CCONJ
just ADV
use VERB
whateveryou NOUN
may AUX
have AUX
. PUNCT
  SPACE
If SCONJ
wax NOUN
is AUX
old ADJ
, PUNCT
it PRON
will AUX
be AUX
harder ADJ
, PUNCT
and CCONJ
darker ADJ
. PUNCT
  SPACE
You PRON
can AUX
tryadding VERB
a DET
few ADJ
drops NOUN
of ADP
olive ADJ
oil NOUN
into ADP
the DET
ear NOUN
during ADP
a DET
shower NOUN
to PART
soften VERB
upthe PROPN
wax NOUN
. PUNCT
  SPACE
Do AUX
this DET
for ADP
a DET
couple NOUN
days NOUN
, PUNCT
then ADV
try VERB
syringing VERB
again ADV
. PUNCT
  SPACE
It PRON
is AUX
alsosafe ADJ
to PART
point VERB
your PRON
ear NOUN
up ADP
at ADP
the DET
shower NOUN
head NOUN
, PUNCT
and CCONJ
allow VERB
the DET
water NOUN
to PART
rinseit VERB
out ADP
. PUNCT
Good PROPN
Luck PROPN
- PUNCT
heatherNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59490From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesIn PROPN
article NOUN
< X
1993Apr28.095305.3587@rose.com NUM
> X
, PUNCT
ron.roth@rose.com PROPN
( PUNCT
ron PROPN
roth PROPN
) PUNCT
writes VERB
: PUNCT
> X
      SPACE
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
Marty PROPN
Banschbach PROPN
) PUNCT
writes VERB
: PUNCT
> X
[ PUNCT
... PUNCT
] PUNCT
> X
B NOUN
> X
  SPACE
Medicine NOUN
has AUX
not PART
, PUNCT
and CCONJ
probalby PROPN
never ADV
will AUX
be AUX
, PUNCT
practiced VERB
this DET
way NOUN
. PUNCT
  SPACE
There ADV
> X
B NOUN
> X
  SPACE
has AUX
always ADV
been AUX
the DET
use NOUN
of ADP
conventional ADJ
wisdom NOUN
. PUNCT
  SPACE
A DET
very ADV
good ADJ
example NOUN
is AUX
> X
B NOUN
> X
  SPACE
kidney NOUN
stones NOUN
. PUNCT
  SPACE
Conventional PROPN
wisdom(because PROPN
clinical ADJ
trails NOUN
have AUX
not PART
been AUX
> X
B NOUN
> X
  SPACE
done VERB
to PART
come VERB
up ADP
with ADP
an DET
effective ADJ
prevention NOUN
) PUNCT
, PUNCT
was AUX
that SCONJ
restricitng VERB
the DET
> X
B NOUN
> X
  SPACE
intake NOUN
of ADP
calcium NOUN
and CCONJ
oxalates NOUN
was AUX
the DET
best ADJ
way NOUN
to PART
prevent VERB
kidney NOUN
stones NOUN
> X
B PROPN
> X
  SPACE
from ADP
forming VERB
. PUNCT
  SPACE
Clinical ADJ
trials NOUN
focused VERB
on ADP
drugs NOUN
or CCONJ
ultrasonic ADJ
blasts NOUN
to ADP
> X
B PROPN
> X
  SPACE
breakdown VERB
the DET
stone NOUN
once SCONJ
it PRON
formed VERB
. PUNCT
  SPACE
Through ADP
the DET
recent ADJ
New PROPN
England PROPN
J PROPN
of ADP
> X
B NOUN
> X
  SPACE
Medicine NOUN
article NOUN
, PUNCT
we PRON
now ADV
know VERB
that SCONJ
conventional ADJ
wisdom NOUN
was AUX
wrong ADJ
, PUNCT
> X
B NOUN
> X
  SPACE
increasing VERB
calcium NOUN
intake NOUN
is AUX
better ADJ
at ADP
preventing VERB
stone NOUN
formation NOUN
than SCONJ
is AUX
> X
B NOUN
> X
  SPACE
restricting VERB
calcium NOUN
intake NOUN
. PUNCT
    SPACE
> X
[ PUNCT
... PUNCT
] PUNCT
> X
B NOUN
> X
  SPACE
Marty PROPN
B. PROPN
> X
> X
  SPACE
Marty PROPN
, PUNCT
I PRON
personally ADV
would AUX
n't PART
be AUX
so ADV
quick ADJ
and CCONJ
take VERB
that SCONJ
NEJM PROPN
article NOUN
> X
  SPACE
on ADP
kidney NOUN
stones NOUN
as SCONJ
gospel NOUN
. PUNCT
First ADV
of ADP
all DET
, PUNCT
I PRON
would AUX
want VERB
to PART
know VERB
who PRON
> X
  SPACE
sponsored VERB
that DET
study NOUN
. PUNCT
> X
  SPACE
I PRON
have AUX
seen VERB
too ADV
many ADJ
" PUNCT
nutrition NOUN
" PUNCT
bulletins NOUN
over ADP
the DET
years NOUN
from ADP
> X
  SPACE
local ADJ
newspapers NOUN
, PUNCT
magazines NOUN
, PUNCT
to ADP
TV NOUN
- PUNCT
guide NOUN
, PUNCT
with ADP
disclaimers NOUN
on ADP
the DET
> X
  SPACE
bottom NOUN
informing VERB
us PRON
that SCONJ
this DET
great ADJ
health NOUN
news NOUN
was AUX
brought VERB
to ADP
us PRON
> X
  SPACE
compliments NOUN
of ADP
the DET
Dairy PROPN
Industries PROPN
. PUNCT
> X
  SPACE
There PRON
are AUX
of ADP
course NOUN
numerous ADJ
other ADJ
interest NOUN
groups NOUN
now ADV
that PRON
thrive VERB
> X
  SPACE
financially ADV
on ADP
the DET
media NOUN
hype NOUN
created VERB
from ADP
the DET
supposedly ADV
enormous ADJ
> X
  SPACE
benefits NOUN
of ADP
increasing VERB
one PRON
's PART
calcium NOUN
intake NOUN
. PUNCT
> X
> X
  SPACE
Secondly ADV
, PUNCT
were AUX
ALL DET
the DET
kidney NOUN
stones NOUN
of ADP
the DET
test NOUN
subjects NOUN
involved VERB
> X
  SPACE
in ADP
that DET
project NOUN
analysed VERB
for ADP
their PRON
chemical NOUN
composition NOUN
? PUNCT
  SPACE
The DET
study NOUN
> X
  SPACE
did AUX
n't PART
say VERB
that DET
, PUNCT
it PRON
only ADV
claimed VERB
that SCONJ
" PUNCT
most ADJ
kidney NOUN
stones NOUN
are AUX
large- PROPN
> X
  SPACE
ly PROPN
calcium PROPN
. PUNCT
" PUNCT
> X
  SPACE
Perhaps ADV
it PRON
wo AUX
n't PART
be AUX
long ADJ
before ADP
another DET
study NOUN
comes VERB
up ADP
with ADP
the DET
exact ADJ
> X
  SPACE
opposite ADJ
findings NOUN
. PUNCT
A DET
curious ADJ
phenomenon NOUN
with ADP
researchers NOUN
is AUX
that SCONJ
they PRON
> X
  SPACE
are AUX
oftentimes NOUN
just ADV
plain ADV
wrong ADJ
. PUNCT
It PRON
would AUX
n't PART
be AUX
the DET
first ADJ
time NOUN
. PUNCT
> X
  SPACE
> X
  SPACE
Sodium PROPN
/ SYM
magnesium PROPN
/ SYM
calcium NOUN
/ SYM
phosphorus PROPN
ratios NOUN
are AUX
, PUNCT
in ADP
my PRON
opinion NOUN
, PUNCT
still ADV
> X
  SPACE
the DET
most ADV
reliable ADJ
indicators NOUN
for ADP
the DET
cause NOUN
, PUNCT
treatment NOUN
, PUNCT
and CCONJ
prevention NOUN
> X
  SPACE
of ADP
kidney NOUN
stones NOUN
. PUNCT
> X
  SPACE
I PRON
, PUNCT
for ADP
one NUM
, PUNCT
will AUX
continue VERB
to PART
recommend VERB
the DET
most ADV
logical ADJ
changes NOUN
in ADP
> X
  SPACE
one PRON
's PART
diet NOUN
or CCONJ
through ADP
supplementation NOUN
to PART
counteract VERB
or CCONJ
prevent VERB
kidney NOUN
> X
  SPACE
stones NOUN
of ADP
either DET
type NOUN
; PUNCT
and CCONJ
they PRON
definitely ADV
wo AUX
n't PART
include VERB
an DET
INCREASE PROPN
> X
  SPACE
in ADP
calcium NOUN
if SCONJ
the DET
stones NOUN
have AUX
been AUX
identified VERB
as SCONJ
being AUX
of ADP
the DET
calcium NOUN
> X
  SPACE
type NOUN
and CCONJ
people NOUN
's PART
chemical ADJ
analysis NOUN
confirms VERB
that SCONJ
they PRON
would AUX
benefit VERB
> X
  SPACE
from ADP
a DET
PHOSPHORUS PROPN
- PUNCT
raising VERB
approach NOUN
instead ADV
! PUNCT
> X
> X
      SPACE
Ron PROPN
RothRon PROPN
, PUNCT
you PRON
are AUX
absolutely ADV
right ADJ
. PUNCT
  SPACE
Not PART
all DET
kidney NOUN
stones NOUN
have AUX
calcium NOUN
and CCONJ
not PART
all DET
calcium NOUN
stones NOUN
are AUX
calcium NOUN
- PUNCT
oxalate NOUN
. PUNCT
  SPACE
But CCONJ
the DET
vast ADJ
majority NOUN
are AUX
calcium NOUN
- PUNCT
oxalate NOUN
. PUNCT
  SPACE
Calcium PROPN
is AUX
just ADV
one NUM
piece NOUN
of ADP
the DET
puzzle NOUN
. PUNCT
  SPACE
I PRON
cited VERB
that SCONJ
NEJM PROPN
article NOUN
as SCONJ
a DET
way NOUN
of ADP
pointing VERB
out ADP
to ADP
some DET
of ADP
the DET
physicians NOUN
in ADP
this DET
group NOUN
that SCONJ
conventional ADJ
wisdom NOUN
is AUX
used VERB
in ADP
medicine NOUN
, PUNCT
always ADV
has AUX
been AUX
and CCONJ
probably ADV
always ADV
will AUX
be AUX
. PUNCT
  SPACE
If SCONJ
one PRON
uses VERB
conventional ADJ
wisdom NOUN
, PUNCT
there PRON
is AUX
a DET
chance NOUN
that SCONJ
you PRON
will AUX
be AUX
wrong ADJ
. PUNCT
  SPACE
As ADV
long ADV
as SCONJ
the DET
error NOUN
is AUX
not PART
going VERB
to PART
cause VERB
a DET
lot NOUN
of ADP
damage NOUN
, PUNCT
what PRON
's AUX
the DET
big ADJ
deal(why NOUN
call VERB
a DET
physician NOUN
who PRON
gives VERB
anti NOUN
- NOUN
fungals NOUN
to ADP
sinus NOUN
suffers NOUN
or CCONJ
GI PROPN
distress NOUN
patients NOUN
a DET
quack?).On NOUN
the DET
kidney NOUN
stone NOUN
problem NOUN
. PUNCT
  SPACE
I PRON
'd AUX
want VERB
a DET
mineral NOUN
profile NOUN
run VERB
in ADP
a DET
clinical ADJ
chemistry NOUN
lab NOUN
. PUNCT
  SPACE
Balance PROPN
is AUX
much ADV
more ADV
important ADJ
than SCONJ
the DET
dietary ADJ
intake NOUN
of ADP
calcium NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
you PRON
use VERB
an DET
electrical ADJ
conductance NOUN
technique NOUN
to PART
measure VERB
mineral NOUN
balance NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
I PRON
know VERB
that SCONJ
you PRON
do AUX
n't PART
think VERB
that SCONJ
the DET
serum ADJ
levels NOUN
for ADP
minerals NOUN
are AUX
very ADV
useful(I NOUN
agree VERB
) PUNCT
. PUNCT
  SPACE
If SCONJ
I PRON
can AUX
get AUX
a DET
good ADJ
nutritional ADJ
assessment NOUN
lab NOUN
setup NOUN
where ADV
I PRON
can AUX
actually ADV
measure VERB
the DET
tissue NOUN
reserve NOUN
for ADP
minerals NOUN
, PUNCT
I PRON
'd AUX
like VERB
to PART
do AUX
a DET
collaborative ADJ
study NOUN
with ADP
you PRON
to PART
see VERB
how ADV
your PRON
technique NOUN
compares VERB
with ADP
mine NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59491From NUM
: PUNCT
tung@paaiec.enet.dec.comSubject NOUN
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?I NOUN
have AUX
just ADV
started VERB
taking VERB
allergy ADJ
shots NOUN
a DET
month NOUN
ago ADV
and CCONJ
is AUX
still ADV
wondering VERB
what PRON
I PRON
am AUX
getting VERB
into ADP
. PUNCT
A DET
friend NOUN
of ADP
mine NOUN
toldme VERB
that SCONJ
the DET
body NOUN
change VERB
every DET
7 NUM
years NOUN
( PUNCT
whatever PRON
that SCONJ
means)and PROPN
I PRON
do AUX
n't PART
need VERB
those DET
antibody NOUN
- PUNCT
building VERB
allergy NOUN
shots NOUN
at ADV
all ADV
. PUNCT
Does AUX
that DET
make VERB
sense NOUN
to ADP
anyone?BTW PROPN
, PUNCT
can AUX
someone PRON
summarize VERB
what PRON
is AUX
in ADP
the DET
Consumer PROPN
ReportFebruary PROPN
, PUNCT
1988 NUM
article?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59492From NUM
: PUNCT
mou@nova1.stanford.edu PROPN
( PUNCT
Alex PROPN
Mou)Subject NUM
: PUNCT
cure VERB
for ADP
dry ADJ
skin?Hi PROPN
all DET
, PUNCT
My PRON
skin NOUN
is AUX
very ADV
dry ADJ
in ADP
general ADJ
. PUNCT
But CCONJ
the DET
most ADV
serious ADJ
part NOUN
is AUX
locatedfrom ADJ
knees NOUN
down ADP
. PUNCT
The DET
skin NOUN
there PRON
looks VERB
like SCONJ
segmented VERB
. PUNCT
The DET
segmentationactually ADV
happens VERB
beneath ADP
the DET
skin NOUN
. PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
anycure NOUN
for ADP
this DET
. PUNCT
At ADP
the DET
supermarkets NOUN
or CCONJ
pharmacies NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
lot NOUN
of ADP
stuffs NOUN
fordry ADJ
skins NOUN
, PUNCT
but CCONJ
what PRON
to ADP
chose?Thanks NOUN
in ADP
advance NOUN
for ADP
all DET
advices NOUN
and CCONJ
hints NOUN
. PUNCT
Reply VERB
by ADP
email NOUN
preferred VERB
. PUNCT
AlexNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59493From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- PROPN
pedes-*----In PROPN
article NOUN
< X
1993Apr28.081953.21043@nmt.edu NUM
> NUM
msnyder@nmt.edu NUM
( PUNCT
Rebecca PROPN
Snyder PROPN
) PUNCT
writes VERB
: PUNCT
> X
Does AUX
anyone PRON
know VERB
how ADV
posionous ADJ
centipedes NOUN
and CCONJ
millipedes NOUN
are AUX
? PUNCT
... PUNCT
The DET
millipede NOUN
's AUX
around ADV
here ADV
( PUNCT
Austin PROPN
) PUNCT
have AUX
no DET
sting NOUN
. PUNCT
  SPACE
Some DET
of ADP
thecentipedes NOUN
do AUX
. PUNCT
  SPACE
The DET
question NOUN
Rebecca PROPN
Snyder PROPN
asks VERB
is AUX
much ADV
likeasking VERB
" PUNCT
How ADV
venomous ADJ
are AUX
snakes NOUN
? PUNCT
" PUNCT
  SPACE
One NUM
either CCONJ
wants VERB
to PART
ask VERB
" PUNCT
whichsnake VERB
? PUNCT
" PUNCT
or CCONJ
point VERB
to ADP
some DET
reference NOUN
on ADP
the DET
many ADJ
different ADJ
speciesof NOUN
snake NOUN
. PUNCT
  SPACE
Similarly ADV
, PUNCT
there PRON
are AUX
many ADJ
different ADJ
species NOUN
ofmillipede NOUN
and CCONJ
centipede PROPN
. PUNCT
  SPACE
( PUNCT
These DET
are AUX
different ADJ
families;millipedes NOUN
have AUX
two NUM
pairs NOUN
of ADP
legs NOUN
per ADP
body NOUN
segment NOUN
, PUNCT
whilecentipedes NOUN
have AUX
but CCONJ
one NUM
pair.)Sorry NOUN
if SCONJ
this DET
information NOUN
is AUX
not PART
useful ADJ
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59494From NUM
: PUNCT
roxannen@cruzio.santa-cruz.ca.usSubject NOUN
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)I PROPN
recently ADV
heard VERB
of ADP
some DET
testing NOUN
of ADP
a DET
new ADJ
migraine ADJ
drug NOUN
called VERB
sumatripton(I PROPN
have AUX
no DET
idea NOUN
of ADP
the DET
actual ADJ
spelling NOUN
) PUNCT
that PRON
supposedly ADV
utilizes VERB
a DET
chemicalthat PROPN
trips VERB
neuro PROPN
- PUNCT
transmitters PROPN
. PUNCT
  SPACE
My PRON
mother NOUN
has AUX
regular ADJ
migraines NOUN
and CCONJ
nothingseems NOUN
to PART
help VERB
- PUNCT
does AUX
anyone PRON
know VERB
anything PRON
about ADP
this DET
new ADJ
drug NOUN
? PUNCT
  SPACE
Is AUX
it PRON
ina NOUN
testing VERB
phaze NOUN
or CCONJ
anywhere ADV
near ADJ
approval NOUN
? PUNCT
  SPACE
Does AUX
it PRON
seem VERB
to PART
be AUX
working?Any ADJ
information NOUN
would AUX
help VERB
. PUNCT
Please INTJ
feel VERB
free ADJ
to ADP
e NOUN
- NOUN
mail NOUN
rather ADV
than SCONJ
take VERB
up ADP
bandwidth ADJ
if SCONJ
you PRON
prefer VERB
. PUNCT
Thanks NOUN
in ADP
advance,-Rox-- PROPN
roxannen@cruzio.santa-cruz.ca.us"Virtue PROPN
is AUX
a DET
relative ADJ
term NOUN
. PUNCT
"Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59496From NUM
: PUNCT
bechtler@asdg.enet.dec.com PROPN
( PUNCT
Laurie PROPN
Bechtler)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Urine NOUN
analysisIn PROPN
article NOUN
< X
C67t3M.Fxx@athena.cs.uga.edu PROPN
> X
, PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington PROPN
) PUNCT
writes VERB
... PUNCT
>In PROPN
article NOUN
< X
1rm2bn$kps@transfer.stratus.com X
> X
Randy_Faneuf@vos.stratus.com PROPN
writes VERB
: PUNCT
> X
> X
> X
> X
Someone PRON
please INTJ
help VERB
me PRON
. PUNCT
I PRON
am AUX
searching VERB
to PART
find VERB
out ADP
( PUNCT
as ADV
many ADJ
others NOUN
may)>>an PROPN
absolute ADJ
' PUNCT
cure NOUN
' PUNCT
to ADP
removing VERB
all DET
detectable ADJ
traces NOUN
of ADP
marijuana PROPN
from>>a PROPN
persons NOUN
body NOUN
. PUNCT
Is AUX
there PRON
a DET
chemical ADJ
or CCONJ
natural ADJ
substance NOUN
that PRON
can AUX
be>>ingested VERB
or CCONJ
added VERB
to PART
urine VERB
to PART
make VERB
it PRON
undetectable ADJ
in ADP
urine NOUN
analysis.>>If NOUN
so ADV
where ADV
can AUX
these DET
substances NOUN
be AUX
found VERB
. PUNCT
> X
> X
You PRON
could AUX
do AUX
what PRON
I PRON
do AUX
: PUNCT
never ADV
go VERB
near SCONJ
the DET
stuff NOUN
! PUNCT
  SPACE
:) PUNCT
> X
> X
> X
-- PUNCT
There PRON
's AUX
always ADV
the DET
old ADJ
switcheroo NOUN
. PUNCT
My PRON
brother NOUN
works VERB
at ADP
a DET
dialysis NOUN
clinic NOUN
. PUNCT
  SPACE
They PRON
were AUX
interviewing VERB
candidates NOUN
for ADP
a DET
technician ADJ
job NOUN
( PUNCT
mainly ADV
electronics NOUN
tech NOUN
) PUNCT
, PUNCT
and CCONJ
aurine NOUN
screen NOUN
was AUX
part NOUN
of ADP
the DET
interview NOUN
. PUNCT
  SPACE
The DET
bathroom NOUN
was AUX
acrossthe PROPN
hall NOUN
from ADP
a DET
lab NOUN
. PUNCT
  SPACE
One NUM
candidate NOUN
managed VERB
to PART
switch VERB
his PRON
urinesample ADJ
with ADP
one NUM
he PRON
grabbed VERB
from ADP
the DET
lab NOUN
. PUNCT
  SPACE
( PUNCT
No DET
one NOUN
was AUX
in ADP
it PRON
atthe NOUN
time.)Most ADJ
inner ADJ
- PUNCT
city NOUN
dialysis NOUN
patients NOUN
have AUX
quite DET
a DET
few ADJ
medical ADJ
problems NOUN
, PUNCT
so CCONJ
it PRON
was AUX
immediately ADV
obvious ADJ
what PRON
had AUX
happened VERB
. PUNCT
  SPACE
My PRON
brother NOUN
fleetingly ADV
considered VERB
telling VERB
the DET
candidate NOUN
, PUNCT
" PUNCT
I PRON
'm AUX
sorry ADJ
but CCONJ
youare VERB
very ADV
ill ADV
and CCONJ
need VERB
medical ADJ
attention NOUN
immediately ADV
. PUNCT
" PUNCT
  SPACE
They PRON
offeredhim VERB
another DET
* PUNCT
well ADV
- PUNCT
monitored VERB
* PUNCT
chance NOUN
and CCONJ
he PRON
declined VERB
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59497From NUM
: PUNCT
markv@pixar.com X
( PUNCT
Mark PROPN
T. PROPN
VandeWettering)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographyalex@vuse.vanderbilt.edu NOUN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>FLAME VERB
ON ADP
> X
Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>photography PUNCT
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the DET
> X
narrow ADJ
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or CCONJ
> X
measure NOUN
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADV
there ADV
. PUNCT
	 SPACE
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
	 SPACE
Accepted VERB
by ADP
whom PRON
? PUNCT
  SPACE
People NOUN
who PRON
think VERB
digital ADJ
watches NOUN
are AUX
a DET
	 SPACE
real ADJ
good ADJ
idea NOUN
? PUNCT
  SPACE
That SCONJ
60 NUM
channels NOUN
of ADP
television NOUN
is AUX
10x NOUN
better ADV
	 SPACE
than SCONJ
6 NUM
channels NOUN
of ADP
television NOUN
? PUNCT
  SPACE
> X
I PRON
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>were NUM
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
	 SPACE
You PRON
're AUX
right ADJ
. PUNCT
  SPACE
Keep VERB
an DET
open ADJ
mind NOUN
to ADP
the DET
following VERB
: PUNCT
	 SPACE
1 NUM
. PUNCT
Taco PROPN
flavored VERB
donuts NOUN
. PUNCT
	 SPACE
2 NUM
. PUNCT
Cannibalism NOUN
. PUNCT
  SPACE
Good ADJ
way NOUN
to PART
get AUX
that DET
extra ADJ
protein NOUN
in ADP
the DET
diet NOUN
. PUNCT
	 SPACE
3 NUM
. PUNCT
Belief NOUN
in ADP
Yawanga PROPN
, PUNCT
armadillo PROPN
god PROPN
of ADP
parking PROPN
meters.----------------------------------------------------------------------Mark PROPN
VandeWetteringTruest PROPN
Servant PROPN
of ADP
Yawanga PROPN
! PUNCT
  SPACE
Oh INTJ
Yawanga PROPN
! PUNCT
  SPACE
He PRON
who PRON
never ADV
will AUX
become VERB
a DET
road NOUN
- PUNCT
pizza!All NOUN
of ADP
my PRON
quarters NOUN
and CCONJ
dimes NOUN
, PUNCT
nay PROPN
even ADV
nickels NOUN
, PUNCT
will AUX
be AUX
spent VERB
to PART
buy VERB
time NOUN
to ADP
		 SPACE
park PROPN
in ADP
your PRON
eternal ADJ
parking NOUN
lot!Newsgroup ADJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59498From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
article NOUN
< X
C697IJ.IuA@srgenprp.sr.hp.com X
> X
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
writes:>pk115050@wvnvms.wvnet.edu PROPN
wrote:>move PROPN
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes,>by NOUN
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'd NOUN
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
I PRON
've AUX
had VERB
neither CCONJ
a DET
baby NOUN
nor CCONJ
a DET
kidney NOUN
stone NOUN
, PUNCT
but CCONJ
according VERB
to ADP
my PRON
aunt NOUN
, PUNCT
who PRON
has AUX
had VERB
plenty NOUN
of ADP
both DET
, PUNCT
a DET
kidney NOUN
stone NOUN
is AUX
worse ADJ
. PUNCT
--Barbara PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59499From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
Chromium NOUN
as SCONJ
dietary ADJ
suppliment NOUN
for ADP
weight NOUN
lossIn PROPN
article NOUN
< X
1993Apr29.145140.10559@newsgate.sps.mot.com NUM
> X
, PUNCT
rhca80@melton.sps.mot.com PROPN
( PUNCT
Henry PROPN
Melton PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
My PRON
wife NOUN
has AUX
requested VERB
that SCONJ
I PRON
poll VERB
the DET
Sages NOUN
of ADP
Usenet PROPN
to PART
see VERB
what PRON
is AUX
> X
known VERB
about ADP
the DET
use NOUN
of ADP
chromium NOUN
in ADP
weight NOUN
- PUNCT
control NOUN
diet NOUN
suppliments NOUN
. PUNCT
> X
She PRON
has AUX
seen VERB
multiple ADJ
products NOUN
advertising VERB
it PRON
and CCONJ
would AUX
like VERB
any DET
kind NOUN
> X
real ADJ
information NOUN
. PUNCT
> X
> X
My PRON
first ADJ
impulse NOUN
was AUX
" PUNCT
Yuck PROPN
! PUNCT
a DET
metal NOUN
! PUNCT
" PUNCT
but CCONJ
I PRON
have AUX
zero NUM
data NOUN
on ADP
it PRON
. PUNCT
> X
> X
What PRON
do AUX
you PRON
know VERB
? PUNCT
> X
> X
-- PUNCT
> X
Henry PROPN
Melton PROPN
I PRON
'll AUX
tell VERB
you PRON
all DET
that PRON
I PRON
know VERB
about ADP
chromium NOUN
. PUNCT
  SPACE
But CCONJ
before ADP
I PRON
do AUX
, PUNCT
I PRON
want VERB
to PART
get AUX
a DET
few ADJ
things NOUN
off ADP
my PRON
chest NOUN
. PUNCT
  SPACE
I PRON
just ADV
got VERB
blasted VERB
in ADP
e NOUN
- NOUN
mail NOUN
for ADP
my PRON
kidney NOUN
stone NOUN
posts NOUN
. PUNCT
  SPACE
Kidney NOUN
stones NOUN
are AUX
primarily ADV
caused VERB
by ADP
diet NOUN
, PUNCT
as SCONJ
is AUX
heart NOUN
disease NOUN
and CCONJ
cancer NOUN
. PUNCT
  SPACE
When ADV
I PRON
give VERB
dietary ADJ
advise NOUN
, PUNCT
it PRON
is AUX
not PART
intended VERB
to PART
encourage VERB
people NOUN
reading VERB
this DET
news NOUN
group(or NOUN
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
Nutrition NOUN
where ADV
I PRON
do AUX
most ADJ
of ADP
my PRON
posting NOUN
) PUNCT
to PART
avoid VERB
seeing VERB
a DET
doctor NOUN
. PUNCT
  SPACE
Nothing PRON
can AUX
be AUX
further ADV
from ADP
the DET
truth NOUN
. PUNCT
  SPACE
Kidney NOUN
stones NOUN
can AUX
be AUX
caused VERB
by ADP
tumors NOUN
and CCONJ
this DET
possibility NOUN
has AUX
to PART
be AUX
ruled VERB
out ADP
. PUNCT
  SPACE
But CCONJ
once SCONJ
it PRON
is AUX
, PUNCT
diet PROPN
is AUX
a DET
good ADJ
way NOUN
of ADP
preventing VERB
a DET
reoccurance NOUN
. PUNCT
Same ADJ
thing NOUN
with ADP
heart NOUN
disease NOUN
and CCONJ
cancer NOUN
, PUNCT
if SCONJ
you PRON
suspect VERB
that SCONJ
you PRON
may AUX
have AUX
a DET
problem NOUN
with ADP
one NUM
of ADP
these DET
diseases NOUN
, PUNCT
do AUX
n't PART
use VERB
what PRON
I PRON
'm AUX
going VERB
to PART
tell VERB
you PRON
or CCONJ
what PRON
you PRON
read VERB
in ADP
some DET
book NOUN
to PART
avoid VERB
going VERB
to ADP
a DET
doctor NOUN
. PUNCT
  SPACE
You PRON
have AUX
to PART
go VERB
. PUNCT
Hopefully ADV
you PRON
will AUX
find VERB
a DET
doctor NOUN
who PRON
knows VERB
enough ADJ
about ADP
nutrition NOUN
to PART
help VERB
you PRON
change VERB
your PRON
risk NOUN
factors NOUN
for ADP
both DET
diseases NOUN
as SCONJ
part NOUN
of ADP
a DET
treatment NOUN
program(but ADP
the DET
odds NOUN
are AUX
that SCONJ
you PRON
will AUX
not PART
and CCONJ
that DET
's AUX
why ADV
I PRON
'm AUX
here ADV
) PUNCT
. PUNCT
  SPACE
When ADV
my PRON
wife NOUN
detected VERB
a DET
lump NOUN
in ADP
here ADV
breast NOUN
I PRON
did AUX
n't PART
say VERB
, PUNCT
do AUX
n't PART
worry VERB
my PRON
vitamin NOUN
E NOUN
will AUX
take VERB
care NOUN
of ADP
it PRON
. PUNCT
  SPACE
Any DET
breast NOUN
lump NOUN
has AUX
to PART
be AUX
worked VERB
up ADP
by ADP
a DET
physician NOUN
, PUNCT
plan NOUN
and CCONJ
simple ADJ
. PUNCT
  SPACE
If SCONJ
it PRON
's AUX
begnin(which PROPN
most ADJ
are AUX
) PUNCT
fine ADJ
, PUNCT
then ADV
maybe ADV
a DET
diet NOUN
change NOUN
and CCONJ
supplementation NOUN
will AUX
prevent VERB
further ADJ
breast NOUN
lumps NOUN
from ADP
occuring VERB
. PUNCT
But CCONJ
let VERB
me PRON
tell VERB
you PRON
right ADV
now ADV
, PUNCT
if SCONJ
you PRON
have AUX
tried VERB
diet NOUN
and CCONJ
supplementation NOUN
and CCONJ
another DET
lump NOUN
returns NOUN
, PUNCT
get AUX
your PRON
butt NOUN
into ADP
the DET
doctor NOUN
's PART
office NOUN
as ADV
fast ADV
as SCONJ
your PRON
little ADJ
feet NOUN
can AUX
carry VERB
you(better NOUN
yet ADV
, PUNCT
have AUX
a DET
mammography NOUN
done VERB
on ADP
a DET
regular ADJ
basis NOUN
, PUNCT
my PRON
wife NOUN
kept VERB
putting VERB
her PRON
's AUX
off ADP
, PUNCT
both DET
myself PRON
and CCONJ
her PRON
gynocologist NOUN
told VERB
her PRON
she PRON
needed VERB
to PART
have AUX
one NUM
done VERB
) PUNCT
. PUNCT
  SPACE
Her PRON
gynocologist NOUN
even ADV
scheduled VERB
one NUM
, PUNCT
but CCONJ
she PRON
did AUX
n't PART
show VERB
up(too PUNCT
busy ADJ
running VERB
the DET
Operating PROPN
Room PROPN
for ADP
the DET
biggest ADJ
Hospital PROPN
in ADP
Tulsa).One SYM
more ADJ
thing NOUN
, PUNCT
I PRON
am AUX
not PART
an DET
orthomolecular ADJ
nutritionist NOUN
. PUNCT
  SPACE
This DET
group NOUN
uses VERB
high ADJ
dose NOUN
vitamins NOUN
and CCONJ
minerals NOUN
to PART
treat VERB
all DET
kinds NOUN
of ADP
disease NOUN
. PUNCT
  SPACE
There PRON
is AUX
absolutely ADV
no DET
doubt NOUN
in ADP
my PRON
mind NOUN
that SCONJ
vitamins NOUN
and CCONJ
minerals NOUN
can AUX
and CCONJ
do AUX
have AUX
drug NOUN
actions NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
But CCONJ
you PRON
talk VERB
about ADP
flying VERB
blind ADJ
, PUNCT
man NOUN
this DET
is AUX
really ADV
blind ADJ
treatment NOUN
. PUNCT
  SPACE
No DET
drug NOUN
could AUX
ever ADV
be AUX
used VERB
as SCONJ
these DET
vitamins NOUN
and CCONJ
minerals NOUN
are AUX
being AUX
used VERB
. PUNCT
  SPACE
I PRON
'm AUX
not PART
saying VERB
that SCONJ
some DET
of ADP
this DET
stuff NOUN
could AUX
n't PART
be AUX
right ADJ
on ADP
the DET
money NOUN
, PUNCT
it PRON
may AUX
well ADV
be AUX
. PUNCT
  SPACE
But CCONJ
my PRON
approach NOUN
to ADP
nutrition NOUN
is AUX
a DET
lot NOUN
like SCONJ
that DET
of ADP
Weinsier PROPN
and CCONJ
Morgan PROPN
, PUNCT
the DET
two NUM
M.D PROPN
's PART
who PRON
wrote VERB
the DET
new ADJ
Clinical PROPN
Nutrition PROPN
textbook NOUN
. PUNCT
  SPACE
My PRON
push NOUN
is AUX
the DET
nutrient ADJ
reserves NOUN
and CCONJ
the DET
lab NOUN
tests NOUN
needed VERB
to PART
measure VERB
these DET
reserves NOUN
and CCONJ
then ADV
supplementation NOUN
or CCONJ
diet NOUN
changes NOUN
to PART
get AUX
these DET
reserves NOUN
built VERB
up ADP
to ADP
where ADV
they PRON
should AUX
be AUX
to PART
let VERB
you PRON
handle VERB
stress NOUN
. PUNCT
  SPACE
That DET
's AUX
where ADV
I PRON
'm AUX
coming VERB
from ADP
folks NOUN
. PUNCT
  SPACE
Blast VERB
away ADV
if SCONJ
you PRON
want VERB
, PUNCT
I'm PRON
not PART
going VERB
to PART
change VERB
. PUNCT
  SPACE
Put VERB
me PRON
in ADP
your PRON
killfile NOUN
if SCONJ
you PRON
want VERB
, PUNCT
I PRON
really ADV
do AUX
n't PART
care VERB
. PUNCT
  SPACE
I PRON
'm AUX
averaging VERB
8 NUM
- SYM
10 NUM
e NOUN
- PUNCT
mail NOUN
messages NOUN
a DET
day NOUN
from ADP
people NOUN
who PRON
think VERB
that SCONJ
I PRON
've AUX
got VERB
something PRON
important ADJ
to PART
say VERB
. PUNCT
  SPACE
But CCONJ
I PRON
'm AUX
also ADV
getting VERB
hit VERB
by ADP
a DET
few ADJ
with ADP
an DET
axe NOUN
to PART
grind VERB
. PUNCT
  SPACE
That DET
's AUX
life NOUN
. PUNCT
Chromium NOUN
is AUX
one NUM
of ADP
the DET
trace NOUN
elements NOUN
. PUNCT
  SPACE
It PRON
has AUX
a DET
very ADV
limited(but CCONJ
very ADV
important ADJ
) PUNCT
role NOUN
in ADP
the DET
body NOUN
. PUNCT
  SPACE
It PRON
is AUX
used VERB
to PART
form VERB
glucose NOUN
tolerance NOUN
factor(GTF NOUN
) PUNCT
. PUNCT
  SPACE
GTF PROPN
is AUX
made VERB
up ADP
of ADP
chromium NOUN
, PUNCT
nicinamide(niacin PROPN
) PUNCT
, PUNCT
glycine PROPN
, PUNCT
cysteine PROPN
and CCONJ
glutamic PROPN
. PUNCT
  SPACE
Only ADV
the DET
chromium NOUN
and CCONJ
the DET
niacin PROPN
are AUX
needed VERB
from ADP
the DET
diet NOUN
to PART
form VERB
GTF PROPN
. PUNCT
  SPACE
Some DET
foods NOUN
already ADV
have AUX
GTF(Liver PROPN
, PUNCT
brewers NOUN
or CCONJ
nutritional ADJ
yeast NOUN
, PUNCT
and CCONJ
black ADJ
pepper NOUN
) PUNCT
. PUNCT
  SPACE
When ADV
chromium NOUN
is AUX
in ADP
GTF PROPN
, PUNCT
a DET
pretty ADV
good ADJ
absorption NOUN
is AUX
seen(about PROPN
20 NUM
% NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
when ADV
it PRON
is AUX
simply ADV
present ADJ
as SCONJ
a DET
mineral NOUN
or CCONJ
mineral NOUN
chelate(chromium NOUN
picolinate NOUN
) PUNCT
it PRON
's AUX
absorption NOUN
is AUX
much ADV
lower(1 ADJ
to ADP
2 NUM
% NOUN
, PUNCT
lowest ADJ
for ADP
all DET
the DET
minerals NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
've AUX
been AUX
posting VERB
in ADP
Misc PROPN
. PUNCT
Fitness NOUN
and CCONJ
chromium NOUN
has AUX
come VERB
up ADV
there ADV
several ADJ
times NOUN
as SCONJ
a DET
" PUNCT
fat ADJ
burner NOUN
" PUNCT
. PUNCT
  SPACE
Chromium NOUN
is AUX
among ADP
the DET
least ADJ
toxic ADJ
of ADP
the DET
minerals NOUN
so SCONJ
you PRON
could AUX
really ADV
load VERB
yourself PRON
up ADP
and CCONJ
not PART
really ADV
do AUX
any DET
harm NOUN
. PUNCT
  SPACE
I PRON
would AUX
n't PART
do AUX
it PRON
though ADV
. PUNCT
  SPACE
The DET
adequate ADJ
and CCONJ
safe ADJ
range NOUN
for ADP
chromium NOUN
is AUX
50 NUM
to PART
200ug NOUN
per ADP
day NOUN
. PUNCT
  SPACE
The DET
average ADJ
American PROPN
is AUX
getting VERB
about ADP
30ug NOUN
per ADP
day NOUN
from ADP
his PRON
/ SYM
her PRON
diet NOUN
. PUNCT
  SPACE
Chromium NOUN
levels NOUN
decrease VERB
with ADP
age NOUN
and CCONJ
many ADJ
believe VERB
that SCONJ
adult NOUN
onset NOUN
diabetes NOUN
is AUX
primarily ADV
a DET
chromium NOUN
deficiency NOUN
. PUNCT
  SPACE
I PRON
can AUX
cite VERB
you PRON
several ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
with ADP
glucose NOUN
tolerance NOUN
in ADP
Type NOUN
II PROPN
diabetes NOUN
but CCONJ
I PRON
'm AUX
not PART
going VERB
to PART
because SCONJ
for ADP
each DET
positive ADJ
one NUM
, PUNCT
there PRON
also ADV
seems VERB
to PART
be AUX
a DET
negative ADJ
one NOUN
as ADV
well ADV
. PUNCT
  SPACE
I PRON
'm AUX
convinced ADJ
that SCONJ
the DET
problem NOUN
is AUX
bioavailability NOUN
. PUNCT
  SPACE
When ADV
yeast(GTF PROPN
) PUNCT
is AUX
used VERB
, PUNCT
good ADJ
results NOUN
are AUX
obtained VERB
but CCONJ
when ADV
chromium NOUN
itself PRON
is AUX
used VERB
the DET
results NOUN
are AUX
usually ADV
negative ADJ
. PUNCT
  SPACE
In ADP
addition NOUN
to ADP
Type NOUN
II PROPN
diabetes NOUN
, PUNCT
chromiuum NOUN
has AUX
been AUX
examined VERB
in ADP
cardiovascular ADJ
disease NOUN
and CCONJ
glucoma PROPN
, PUNCT
again ADV
with ADP
mixed ADJ
results NOUN
as ADV
far ADV
as SCONJ
cardiovascular ADJ
disease NOUN
is AUX
concernedSince NOUN
a DET
high ADJ
blood NOUN
glucose NOUN
level NOUN
can AUX
lead VERB
to ADP
cardiovascular ADJ
disease NOUN
, PUNCT
this DET
possible ADJ
link NOUN
with ADP
chromium NOUN
is AUX
n't PART
too ADV
surprising ADJ
. PUNCT
  SPACE
Glucoma PROPN
is AUX
a DET
little ADV
more ADV
interesting ADJ
. PUNCT
  SPACE
Muscle NOUN
eye NOUN
focusing VERB
activity NOUN
is AUX
primarily ADV
an DET
insulin NOUN
responsive ADJ
glucose NOUN
- PUNCT
driven VERB
metabolic ADJ
function NOUN
. PUNCT
  SPACE
If SCONJ
this DET
eye NOUN
focusing VERB
activity NOUN
is AUX
impaired(by X
a DET
lack NOUN
of ADP
glucose NOUN
due ADP
to ADP
a DET
poor ADJ
insulin NOUN
response NOUN
) PUNCT
, PUNCT
intraocular ADJ
pressure NOUN
is AUX
believed VERB
to PART
be AUX
elevated VERB
. PUNCT
  SPACE
In ADP
a DET
fairly ADV
large ADJ
study NOUN
of ADP
400 NUM
pts NOUN
with ADP
glaucoma NOUN
, PUNCT
the DET
one NUM
consistent ADJ
finding NOUN
was AUX
a DET
low ADJ
RBC PROPN
chromium NOUN
. PUNCT
J. PROPN
Am PROPN
. PUNCT
Coll PROPN
. PUNCT
Nutr PROPN
. PROPN
10(5):536,(1991 NUM
) PUNCT
. PUNCT
  SPACE
But CCONJ
this DET
one NUM
preliminary ADJ
study NOUN
should AUX
not PART
prompt VERB
people NOUN
to PART
go VERB
out ADP
and CCONJ
start VERB
popping VERB
chromium NOUN
supplements NOUN
. PUNCT
  SPACE
For ADP
one NUM
thing NOUN
, PUNCT
just ADV
about ADV
every DET
older ADJ
person NOUN
is AUX
going VERB
to PART
have AUX
a DET
low ADJ
RBC PROPN
chromium NOUN
unless SCONJ
they PRON
have AUX
been AUX
taking VERB
chromium NOUN
suppleemnts(yeast NOUN
) PUNCT
. PUNCT
  SPACE
Since SCONJ
glucoma NOUN
is AUX
often ADV
found VERB
in ADP
older ADJ
people NOUN
, PUNCT
it PRON
's AUX
not PART
too ADV
surprising ADJ
that SCONJ
chromium NOUN
was AUX
low ADJ
in ADP
the DET
RBC PROPN
's PART
. PUNCT
  SPACE
If SCONJ
chromium NOUN
supplementation NOUN
could AUX
reverse VERB
glucoma NOUN
, PUNCT
that PRON
would AUX
prompt VERB
some DET
attention NOUN
. PUNCT
  SPACE
I PRON
suspect VERB
that SCONJ
there PRON
will AUX
be AUX
a DET
clinical ADJ
trail NOUN
to PART
check VERB
out ADP
this DET
possible ADJ
chromium NOUN
link NOUN
to ADP
glucoma PROPN
. PUNCT
You PRON
could AUX
find VERB
out ADP
what PRON
your PRON
body NOUN
chromium NOUN
pool NOUN
size NOUN
was AUX
by ADP
either CCONJ
the DET
RBC PROPN
chromium NOUN
test NOUN
or CCONJ
hair NOUN
analysis NOUN
. PUNCT
  SPACE
Most ADV
clinical ADJ
labs NOUN
are AUX
not PART
going VERB
to PART
run VERB
a DET
RBC PROPN
chromium NOUN
. PUNCT
  SPACE
There PRON
are AUX
plenty NOUN
of ADP
labs NOUN
that PRON
will AUX
do AUX
a DET
hair NOUN
and CCONJ
nail NOUN
analysis NOUN
for ADP
you PRON
, PUNCT
but CCONJ
I PRON
would AUX
n't PART
use VERB
them PRON
. PUNCT
  SPACE
There PRON
is AUX
just ADV
too ADV
much ADJ
funny ADJ
business NOUN
going VERB
on ADP
in ADP
these DET
unregulated ADJ
labs NOUN
right ADV
now ADV
. PUNCT
Here ADV
's AUX
Weinsier PROPN
and CCONJ
Morgan PROPN
, PUNCT
advise VERB
on ADP
chromium NOUN
. PUNCT
  SPACE
They PRON
do AUX
not PART
consider VERB
chromium NOUN
to PART
be AUX
one NUM
of ADP
those DET
minerals NOUN
for ADP
which PRON
a DET
reliable ADJ
clinical ADJ
test NOUN
is AUX
available(they PROPN
do AUX
n't PART
like VERB
the DET
hair NOUN
and CCONJ
nail NOUN
analysis NOUN
labs NOUN
either ADV
, PUNCT
and CCONJ
they PRON
also ADV
recognize VERB
the DET
RBC PROPN
chromium NOUN
is AUX
primarily ADV
a DET
research NOUN
test NOUN
that PRON
is AUX
not PART
routinely ADV
available ADJ
in ADP
most ADJ
clinical ADJ
chemistry NOUN
labs NOUN
) PUNCT
. PUNCT
  SPACE
This DET
has AUX
to PART
change VERB
and CCONJ
as SCONJ
more ADJ
labs NOUN
run VERB
a DET
RBC PROPN
chromiuum NOUN
, PUNCT
it PRON
will AUX
. PUNCT
  SPACE
What PRON
then ADV
do AUX
they PRON
suggest?Make VERB
a DET
diagnosis NOUN
of ADP
chromium NOUN
deficiency NOUN
based VERB
on ADP
a DET
documented VERB
clinical ADJ
response NOUN
to PART
chromium(run VERB
a DET
glucose NOUN
tolerance NOUN
test NOUN
before ADP
and CCONJ
after ADP
chromium NOUN
supplementation NOUN
) PUNCT
. PUNCT
  SPACE
Once SCONJ
you PRON
make VERB
the DET
diagnosis NOUN
, PUNCT
put VERB
the DET
patient NOUN
on ADP
200ug NOUN
of ADP
CrCl3 ADJ
orally ADV
each DET
day NOUN
or CCONJ
10grams NUM
of ADP
yeast NOUN
per ADP
day NOUN
. PUNCT
What PRON
's AUX
my PRON
advise NOUN
? PUNCT
  SPACE
Do AUX
n't PART
take VERB
chromium NOUN
supplements NOUN
to PART
try VERB
to PART
loose VERB
weight(they PROPN
just ADV
do AUX
not PART
work VERB
that DET
way NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
want VERB
to PART
take VERB
them PRON
and CCONJ
then ADV
exercise VERB
, PUNCT
that DET
would AUX
be AUX
great ADJ
. PUNCT
  SPACE
Do AUX
include VERB
yeast NOUN
as SCONJ
part NOUN
of ADP
your PRON
diet(most ADJ
Americans PROPN
are AUX
not PART
getting VERB
enough ADJ
chromium NOUN
from ADP
their PRON
diet NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
have AUX
a DET
poor ADJ
glucose NOUN
tolerance NOUN
, PUNCT
ask VERB
your PRON
doctor NOUN
to PART
check VERB
your PRON
chromium NOUN
status NOUN
. PUNCT
  SPACE
When ADV
he PRON
or CCONJ
she PRON
says VERB
, PUNCT
" PUNCT
what PRON
in ADP
the DET
world NOUN
are AUX
you PRON
talking VERB
about ADP
" PUNCT
, PUNCT
just ADV
say VERB
, PUNCT
please INTJ
get AUX
a DET
copy NOUN
of ADP
Weinsier PROPN
and CCONJ
Morgan PROPN
's PART
new ADJ
Clinical PROPN
Nutrition PROPN
textbook NOUN
and CCONJ
do AUX
what PRON
they PRON
say VERB
to PART
do AUX
with ADP
patients NOUN
who PRON
present VERB
with ADP
a DET
poor ADJ
glucose NOUN
tolerance NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
ca AUX
n't PART
do AUX
that DET
, PUNCT
I PRON
'll AUX
find VERB
a DET
doctor NOUN
who PRON
can AUX
, PUNCT
thank VERB
you PRON
very ADV
much ADV
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59500From NUM
: PUNCT
jeffs@sr.hp.com PROPN
( PUNCT
Jeff PROPN
Silva)Subject PROPN
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
Michael PROPN
Covington PROPN
( PUNCT
mcovingt@aisun4.ai.uga.edu PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
C697IJ.IuA@srgenprp.sr.hp.com X
> X
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
pk115050@wvnvms.wvnet.edu PROPN
wrote VERB
: PUNCT
: PUNCT
: PUNCT
> X
move VERB
a DET
little ADJ
, PUNCT
the DET
pain NOUN
will AUX
be AUX
excrutiating VERB
. PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
: PUNCT
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes INTJ
, PUNCT
: PUNCT
> X
by ADP
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I PRON
'd AUX
: PUNCT
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
: PUNCT
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
: PUNCT
: PUNCT
One NUM
more ADJ
reason NOUN
for ADP
men NOUN
to PART
learn VERB
the DET
Lamaze PROPN
breathing NOUN
techniques NOUN
, PUNCT
in ADP
order NOUN
: PUNCT
to PART
be AUX
able ADJ
to PART
get AUX
some DET
pain NOUN
reduction NOUN
instantly ADV
, PUNCT
wherever ADV
you PRON
are AUX
. PUNCT
: PUNCT
-- PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
It PRON
would AUX
have AUX
been AUX
pretty ADV
difficult ADJ
to PART
practice VERB
my PRON
hee NOUN
hee PROPN
's AUX
while SCONJ
I PRON
waskeeled VERB
over ADP
pukeing VERB
my PRON
guts NOUN
out ADP
though.--Jeff PROPN
Silvajeffs@sr.hp.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59501From NUM
: PUNCT
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyBefore PROPN
more ADJ
bandwidth NOUN
gets VERB
wasted VERB
on ADP
this DET
: PUNCT
I PRON
APOLOGIZE VERB
for ADP
my PRON
flame NOUN
. PUNCT
First ADV
, PUNCT
because SCONJ
I PRON
distributed VERB
the DET
message NOUN
to ADP
so ADV
many ADJ
newsgroups NOUN
; PUNCT
I PRON
did AUX
       SPACE
not PART
check VERB
the DET
crosspostings NOUN
of ADP
the DET
article NOUN
I PRON
followed VERB
up ADP
on ADV
. PUNCT
Second ADV
, PUNCT
for ADP
not PART
making VERB
my PRON
argument NOUN
clear ADV
enough ADV
. PUNCT
I PRON
reacted VERB
to ADP
the DET
tone NOUN
        SPACE
of ADP
many ADJ
of ADP
the DET
anti ADJ
- ADJ
Kirlian ADJ
posts NOUN
, PUNCT
not PART
to ADP
their PRON
content NOUN
. PUNCT
Right ADJ
        SPACE
or CCONJ
wrong NOUN
, PUNCT
I PRON
found VERB
the DET
arguments NOUN
set VERB
in ADP
arrogant ADJ
and CCONJ
sneering NOUN
words NOUN
        SPACE
( PUNCT
that PRON
includes VERB
" PUNCT
jokes NOUN
" PUNCT
) PUNCT
, PUNCT
which PRON
I PRON
still ADV
think VERB
is AUX
unwarranted ADJ
. PUNCT
And CCONJ
, PUNCT
obviously ADV
, PUNCT
I PRON
should AUX
not PART
have AUX
done VERB
the DET
same.-- PROPN
AlexNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59502From NUM
: PUNCT
green@island NOUN
. PUNCT
COM PROPN
( PUNCT
Robert PROPN
Greenstein)Subject NUM
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???In NUM
article NOUN
< X
9304261811.AA07821@DPW.COM NOUN
> X
jprice@dpw.com X
( PUNCT
Janice PROPN
Price PROPN
) PUNCT
writes:>>I NOUN
saw VERB
a DET
printed VERB
up ADP
flyer NOUN
that PRON
stated VERB
the DET
person NOUN
was AUX
a>"licensed VERB
herbologist NOUN
and CCONJ
iridologist"I PROPN
do AUX
n't PART
believe VERB
any DET
state NOUN
licenses NOUN
herbologists NOUN
or CCONJ
iridologists.-- NOUN
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
Robert PROPN
Greenstein PROPN
           SPACE
What PRON
the DET
fool NOUN
can AUX
not PART
learn VERB
he PRON
laughs VERB
at ADP
, PUNCT
thinkinggreen@srilanka.island.com X
   SPACE
that SCONJ
by ADP
his PRON
laughter NOUN
he PRON
shows VERB
superiority NOUN
instead ADV
                            SPACE
of ADP
latent NOUN
idiocy PROPN
- PUNCT
M. PROPN
CorelliNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59503From NUM
: PUNCT
meg_arnold@qm.sri.com X
( PUNCT
Meg PROPN
Arnold)Subject NUM
: PUNCT
Botulinum PROPN
Toxin PROPN
, PUNCT
type NOUN
AI PROPN
am AUX
looking VERB
for ADP
statistics NOUN
on ADP
the DET
prevalence NOUN
of ADP
disorders NOUN
that PRON
aretreatable ADJ
with ADP
Botulinum PROPN
Type PROPN
A. NOUN
  SPACE
These DET
disorders NOUN
include VERB
: PUNCT
facialdyskinesia PROPN
, PUNCT
meige PROPN
syndrome PROPN
, PUNCT
hemifacial ADJ
spasm NOUN
, PUNCT
apraxia PROPN
of ADP
eyelid NOUN
openeing VERB
, PUNCT
aberrant ADJ
regeneration NOUN
of ADP
the DET
facial ADJ
nerve NOUN
, PUNCT
facial ADJ
paralysis NOUN
, PUNCT
strabismus PROPN
, PUNCT
spasmodic PROPN
torticollis PROPN
, PUNCT
muscle NOUN
spasm NOUN
, PUNCT
occupational PROPN
dystonia PROPN
( PUNCT
i.e. X
writerscramp PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
spasmodic PROPN
dysphonia PROPN
, PUNCT
and CCONJ
temporal ADJ
mandibular ADJ
joint ADJ
disease NOUN
. PUNCT
I PRON
realize VERB
many ADJ
of ADP
the DET
disorders NOUN
I PRON
listed VERB
( PUNCT
such ADJ
as SCONJ
" PUNCT
muscle NOUN
spasm NOUN
" PUNCT
! PUNCT
! PUNCT
) PUNCT
arevaguely ADV
defined VERB
and CCONJ
may AUX
encompass VERB
a DET
wide ADJ
range NOUN
of ADP
particular ADJ
disorders NOUN
. PUNCT
  SPACE
Myapologies PROPN
; PUNCT
the DET
list NOUN
was AUX
provided VERB
to ADP
me PRON
as SCONJ
is AUX
. PUNCT
  SPACE
I PRON
have AUX
some DET
numbers NOUN
, PUNCT
but CCONJ
notreliable ADJ
. PUNCT
  SPACE
Any DET
ideas NOUN
on ADP
sources NOUN
or CCONJ
, PUNCT
even ADV
bbetter ADJ
, PUNCT
any DET
actual ADJ
figures NOUN
( PUNCT
with ADP
sourcelisted)?Many PROPN
thanks,- PUNCT
Meg~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PROPN
  SPACE
Meg PROPN
Arnold PROPN
, PUNCT
Business PROPN
Intelligence PROPN
Center PROPN
, PUNCT
SRI PROPN
International PROPN
. PUNCT
~ PUNCT
~ PUNCT
  SPACE
333 NUM
Ravenswood PROPN
Avenue PROPN
, PUNCT
Menlo PROPN
Park PROPN
, PUNCT
CA PROPN
  SPACE
94025 NUM
. PUNCT
                SPACE
~ PUNCT
     SPACE
~ PUNCT
  SPACE
phone NOUN
: PUNCT
( PUNCT
415 NUM
) PUNCT
859 NUM
- SYM
3764 NUM
    SPACE
internet NOUN
: PUNCT
meg_arnold@qm.sri.com X
     SPACE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59504From NUM
: PUNCT
esd3@po X
. PUNCT
CWRU.Edu PROPN
( PUNCT
Elisabeth PROPN
S. PROPN
Davidson)Subject NUM
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact PROPN
or CCONJ
FictionIn PROPN
a DET
previous ADJ
article NOUN
, PUNCT
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
) PUNCT
says:>least VERB
a DET
few ADJ
" PUNCT
enlightened VERB
" PUNCT
physicians NOUN
practicing VERB
in ADP
the DET
U.S. PROPN
  SPACE
It PRON
's AUX
really ADV
> X
too ADV
bad ADJ
that SCONJ
most ADJ
U.S. PROPN
medical ADJ
schools NOUN
do AUX
n't PART
cover VERB
nutrition NOUN
because SCONJ
if SCONJ
> X
they PRON
did AUX
, PUNCT
candida PROPN
would AUX
not PART
be AUX
viewed VERB
as SCONJ
a DET
non ADJ
- ADJ
disease NOUN
by ADP
so ADV
many ADJ
in ADP
the DET
> X
medical ADJ
profession NOUN
. PUNCT
Case NOUN
Western PROPN
Reserve PROPN
Med PROPN
School PROPN
teaches VERB
nutrition NOUN
in ADP
its PRON
own ADJ
section NOUN
aswell NOUN
as SCONJ
covering VERB
it PRON
in ADP
other ADJ
sections NOUN
as SCONJ
they PRON
apply VERB
( PUNCT
i.e. X
B12deficiency PROPN
in ADP
neuro PROPN
as SCONJ
a DET
cause NOUN
of ADP
neuropathy NOUN
, PUNCT
B12 PROPN
deficiency NOUN
inhematology NOUN
as SCONJ
a DET
cause NOUN
of ADP
megaloblastic ADJ
anemia NOUN
) PUNCT
, PUNCT
yet CCONJ
I PRON
sillhold VERB
the DET
viewpoint NOUN
of ADP
mainstream ADJ
medicine NOUN
: PUNCT
  SPACE
candida PROPN
can AUX
causemucocutaneous ADJ
candidiasis NOUN
, PUNCT
and CCONJ
, PUNCT
in ADP
already ADV
very ADV
sick ADJ
patientswith NOUN
damaged VERB
immune ADJ
systems NOUN
like SCONJ
AIDS PROPN
and CCONJ
cancer NOUN
patients NOUN
, PUNCT
systemic ADJ
candida PROPN
infection NOUN
. PUNCT
  SPACE
I PRON
think VERB
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
isa NOUN
bunch NOUN
of ADP
hooey NOUN
. PUNCT
  SPACE
What PRON
does AUX
this DET
have AUX
to PART
do AUX
with ADP
how ADV
wellnutrition NOUN
is AUX
taught VERB
, PUNCT
anyway?>>Here PUNCT
is AUX
a DET
brief ADJ
primer NOUN
on ADP
yeast NOUN
. PUNCT
  SPACE
Yeast NOUN
infections NOUN
, PUNCT
as SCONJ
they PRON
are AUX
commonly ADV
> X
called VERB
, PUNCT
are AUX
not PART
truely ADV
caused VERB
by ADP
yeasts NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
organism NOUN
responsible ADJ
> X
for ADP
this DET
type NOUN
of ADP
infection NOUN
is AUX
Candida PROPN
albicans NOUN
or CCONJ
Monilia PROPN
which PRON
is AUX
actually ADV
a DET
> X
yeast NOUN
- PUNCT
like ADJ
fungus NOUN
. PUNCT
  SPACE
Well INTJ
, PUNCT
maybe ADV
I PRON
'm AUX
getting VERB
picky ADJ
, PUNCT
but CCONJ
I PRON
always ADV
thought VERB
that SCONJ
a DET
yeastwas PROPN
one NUM
form NOUN
that PRON
a DET
fungus NOUN
could AUX
exist VERB
in ADV
, PUNCT
the DET
other ADJ
being AUX
themold NOUN
form NOUN
. PUNCT
  SPACE
Many ADJ
fungi NOUN
can AUX
occur VERB
as SCONJ
either CCONJ
yeasts NOUN
or CCONJ
molds NOUN
, PUNCT
depending VERB
on ADP
environment NOUN
. PUNCT
  SPACE
Candida PROPN
exibits VERB
what PRON
is AUX
known VERB
asreverse PROPN
dimorphism NOUN
- PUNCT
it PRON
exists VERB
as SCONJ
a DET
mold NOUN
in ADP
the DET
tissuesbut NOUN
exists VERB
as SCONJ
a DET
yeast NOUN
in ADP
the DET
environment NOUN
. PUNCT
  SPACE
Should AUX
we PRON
maybecall VERB
it PRON
a DET
mold NOUN
infection NOUN
? PUNCT
  SPACE
a DET
fungus ADJ
infection NOUN
? PUNCT
  SPACE
Maybe ADV
weshould NOUN
say VERB
it PRON
is AUX
caused VERB
by ADP
a DET
mold NOUN
- PUNCT
like ADJ
fungus PROPN
. PUNCT
> X
> X
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PUNCT
D.>Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
Chairman PROPN
> X
Department PROPN
of ADP
Biochemistry PROPN
and CCONJ
Microbiology PROPN
> X
OSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine>1111 NOUN
West PROPN
17th NOUN
St.>Tulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107 NUM
> X
You're PROPN
the DET
chairman NOUN
of ADP
Biochem PROPN
and CCONJ
Micro PROPN
and CCONJ
you PRON
did AUX
n't PART
know VERB
that SCONJ
a DET
yeast NOUN
is AUX
a DET
form NOUN
of ADP
a DET
fungus NOUN
? PUNCT
  SPACE
( PUNCT
shudder)Or PROPN
maybe ADV
you PRON
did AUX
know VERB
, PUNCT
and CCONJ
were AUX
oversimplifying?Newsgroup ADJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59505From NUM
: PUNCT
twain@carson.u.washington.edu PROPN
( PUNCT
Barbara PROPN
Hlavin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Schatzki PROPN
Ring/ PROPN
PVC'sIn NUM
article NOUN
< X
uabdpo.dpo.uab.edu-280493114107@spam.dom.uab.edu NUM
> X
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1993Apr27.180334@betsy.gsfc.nasa.gov>,>ohandley@betsy.gsfc.nasa.gov PROPN
wrote VERB
: PUNCT
> X
> X
> X
> X
The DET
second ADJ
issue NOUN
: PUNCT
[ PUNCT
summarized VERB
] PUNCT
  SPACE
He PRON
has AUX
had VERB
extra ADJ
heartbeats NOUN
for ADP
the DET
past>3 NOUN
to ADP
4 NUM
years NOUN
, PUNCT
and CCONJ
once ADV
was AUX
symptomatic ADJ
from ADP
them PRON
, PUNCT
with ADP
some DET
> X
lightheadedness.>He NOUN
is AUX
young ADJ
, PUNCT
( PUNCT
30-ish NUM
) PUNCT
, PUNCT
thin ADJ
and CCONJ
in ADP
good ADJ
> X
> X
health PROPN
( PUNCT
recent ADJ
bloodtests NOUN
were AUX
all DET
normal ADJ
) PUNCT
, PUNCT
and CCONJ
do AUX
not PART
smoke VERB
, PUNCT
use VERB
drugs NOUN
or CCONJ
> X
> X
caffeine PROPN
, PUNCT
etc X
. PUNCT
I PRON
'm AUX
willing ADJ
to PART
accept VERB
the DET
extra ADJ
beats NOUN
as SCONJ
" PUNCT
normal ADJ
" PUNCT
, PUNCT
but CCONJ
do AUX
n't PART
> X
> X
want VERB
to PART
ignore VERB
them PRON
if SCONJ
they PRON
might AUX
be AUX
some DET
kind NOUN
of ADP
warning NOUN
symptom NOUN
. PUNCT
The DET
number NOUN
> X
> X
of ADP
PVC PROPN
's PART
seems VERB
to PART
increase VERB
throughout ADP
the DET
day NOUN
, PUNCT
and CCONJ
with ADP
exercise NOUN
( PUNCT
or CCONJ
something PRON
> X
> X
as ADV
simple ADJ
as SCONJ
climbing VERB
some DET
stairs NOUN
) PUNCT
. PUNCT
Also ADV
, PUNCT
if SCONJ
I PRON
get VERB
up ADP
after ADP
sitting VERB
or CCONJ
lying VERB
> X
> X
down ADV
for ADP
a DET
while NOUN
, PUNCT
I PRON
tend VERB
to PART
get AUX
a DET
couple NOUN
of ADP
extra ADJ
beats NOUN
. PUNCT
Could AUX
they PRON
possibly ADV
> X
> X
be AUX
related VERB
to ADP
the DET
esophagous ADJ
problems NOUN
? PUNCT
Both DET
seemed VERB
to PART
develop VERB
at ADP
about ADP
the DET
> X
> X
same ADJ
time.>>I PROPN
' PUNCT
not PART
an DET
expert NOUN
on ADP
heart NOUN
problems NOUN
, PUNCT
but CCONJ
PVC PROPN
's PART
are AUX
common ADJ
and CCONJ
have AUX
been AUX
> X
overtreated VERB
in ADP
the DET
past NOUN
. PUNCT
  SPACE
My PRON
personal ADJ
experience NOUN
, PUNCT
and CCONJ
I PRON
have AUX
the DET
same ADJ
> X
history NOUN
an DET
build NOUN
you PRON
do AUX
( PUNCT
related VERB
to ADP
the DET
heart NOUN
, PUNCT
that ADV
is ADV
) PUNCT
, PUNCT
is AUX
that SCONJ
my PRON
PVC's NOUN
> X
come VERB
and CCONJ
go VERB
, PUNCT
with ADP
some DET
months NOUN
causing VERB
anxiety NOUN
. PUNCT
  SPACE
Taking VERB
on ADP
more ADJ
fluids NOUN
> X
seems VERB
to PART
help VERB
, PUNCT
and CCONJ
they PRON
seem VERB
worse ADJ
in ADP
the DET
summer NOUN
. PUNCT
  SPACE
Remember VERB
that SCONJ
a DET
slow ADJ
> X
heart NOUN
rate NOUN
will AUX
allow VERB
more ADJ
PVC PROPN
's PART
to PART
be AUX
apparent ADJ
, PUNCT
so ADV
perhaps ADV
it PRON
is AUX
an DET
> ADJ
indication NOUN
of ADP
a DET
healthy ADJ
cardiac ADJ
system NOUN
( PUNCT
but CCONJ
ask VERB
an DET
expert NOUN
about ADP
that DET
> X
last ADJ
point NOUN
, PUNCT
especially)I ADJ
too ADV
have AUX
had VERB
premature ADJ
ventricular ADJ
heartbeat NOUN
, PUNCT
starting VERB
in ADP
1974 NUM
. PUNCT
  SPACE
( PUNCT
These DET
are AUX
not PART
, PUNCT
by ADP
the DET
way NOUN
, PUNCT
" PUNCT
extra ADJ
" PUNCT
heartbeats NOUN
. PUNCT
  SPACE
This DET
is AUX
how ADV
they PRON
feel VERB
, PUNCT
and CCONJ
this DET
is AUX
how ADV
I PRON
described VERB
them PRON
initially ADV
to ADP
the DET
doctor NOUN
, PUNCT
but CCONJ
they PRON
're AUX
actually ADV
* PUNCT
premature ADJ
* PUNCT
heartbeats NOUN
. PUNCT
  SPACE
I PRON
would AUX
sometimes ADV
experience VERB
a DET
lapse NOUN
after ADP
one NUM
of ADP
these DET
that PRON
went VERB
on ADP
for ADP
a DET
suffocatingly ADV
long ADJ
period NOUN
of ADP
time NOUN
, PUNCT
making VERB
me PRON
wonder VERB
if SCONJ
my PRON
heart NOUN
were AUX
ever ADV
going VERB
to PART
beat VERB
again ADV
. PUNCT
) PUNCT
I PRON
had AUX
them PRON
persistently ADV
for ADP
eighteen NUM
years NOUN
. PUNCT
  SPACE
Then ADV
I PRON
went VERB
on ADP
a DET
low ADJ
- PUNCT
fat NOUN
diet NOUN
, PUNCT
and CCONJ
they PRON
just ADV
stopped VERB
. PUNCT
  SPACE
I PRON
have AUX
n't PART
had VERB
a DET
single ADJ
episode NOUN
of ADP
PVH PROPN
for ADP
almost ADV
two NUM
years NOUN
. PUNCT
  SPACE
I PRON
know VERB
: PUNCT
  SPACE
correlation NOUN
does AUX
not PART
imply VERB
causation NOUN
. PUNCT
This DET
is AUX
just ADV
FWIW PROPN
. PUNCT
  SPACE
--Barbara PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59506From NUM
: PUNCT
tysoem@facman.ohsu.edu PROPN
( PUNCT
Marie PROPN
E NOUN
Tysoe)Subject NOUN
: PUNCT
Natural ADJ
Alternatives NOUN
to ADP
EstrogenNeed PROPN
Diet PROPN
for ADP
Diverticular PROPN
Diseaseand PROPN
ideas NOUN
for ADP
gastrointestinal ADJ
distressNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59507From NUM
: PUNCT
tysoem@facman.ohsu.edu PROPN
( PUNCT
Marie PROPN
E PROPN
Tysoe)Subject NOUN
: PUNCT
sciaticaIdeas NOUN
for ADP
the DET
relief NOUN
of ADP
sciatica PROPN
. PUNCT
Please INTJ
respond VERB
to ADP
my PRON
E NOUN
- NOUN
mailNewsgroup ADJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59508From NUM
: PUNCT
" PUNCT
Gabriel PROPN
D. PROPN
Underwood PROPN
" PUNCT
< X
gabe+@CMU.EDU PUNCT
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?I PROPN
heard VERB
a DET
great ADJ
Civil PROPN
War PROPN
story NOUN
... PUNCT
      SPACE
A DET
guy NOUN
on ADP
the DET
battlfield NOUN
is AUX
shotin VERB
the DET
groin NOUN
, PUNCT
   SPACE
the DET
bullet NOUN
continues VERB
on ADP
it PRON
's AUX
path NOUN
, PUNCT
and CCONJ
lodges NOUN
in ADP
theabdomen NOUN
of ADP
a DET
female ADJ
spectator NOUN
. PUNCT
    SPACE
Lo PROPN
and CCONJ
behold VERB
.... PUNCT
As SCONJ
the DET
legend NOUN
goes VERB
, PUNCT
   SPACE
both DET
parents NOUN
survived VERB
, PUNCT
  SPACE
married VERB
, PUNCT
  SPACE
and CCONJ
raised VERB
the DET
child.--"Death NOUN
. PUNCT
Taxes NOUN
. PUNCT
  SPACE
Math PROPN
. PUNCT
  SPACE
Jazz NOUN
. PUNCT
"- PUNCT
Wean PROPN
Hall PROPN
Bathroom PROPN
GraffitiGabriel PROPN
Underwoodgabe+@cmu.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59509From NUM
: PUNCT
Daniel PROPN
. PUNCT
Prince@f129.n102.z1.calcom.socal.com PROPN
( PUNCT
Daniel PROPN
Prince)Subject NUM
: PUNCT
Re ADP
: PUNCT
Placebo NOUN
effects NOUN
To PART
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin PROPN
) PUNCT
RT PROPN
> X
o X
  SPACE
Those DET
administering VERB
the DET
treatment NOUN
do AUX
not PART
know VERB
which PRON
subjects NOUN
  SPACE
RT PROPN
> X
receive VERB
a DET
placebo NOUN
or CCONJ
the DET
test NOUN
treatment NOUN
. PUNCT
It PRON
seems VERB
to ADP
me PRON
that SCONJ
many ADJ
drugs NOUN
have AUX
such ADJ
severe ADJ
side NOUN
effects NOUN
that SCONJ
it PRON
might AUX
not PART
be AUX
possible ADJ
to PART
keep VERB
the DET
doctors NOUN
from ADP
knowing VERB
who PRON
is AUX
getting VERB
the DET
true ADJ
drug NOUN
. PUNCT
  SPACE
This DET
is AUX
especially ADV
true ADJ
of ADP
the DET
drugs NOUN
used VERB
for ADP
" PUNCT
mental ADJ
" PUNCT
illnesses NOUN
.... PUNCT
My PRON
cat NOUN
is AUX
very ADV
smart ADJ
. PUNCT
  SPACE
He PRON
has AUX
ME PROPN
well ADV
trained VERB
. PUNCT
* PUNCT
Origin NOUN
: PUNCT
ONE NUM
WORLD PROPN
Los PROPN
Angeles PROPN
310/372 NUM
- PUNCT
0987 NUM
32b NOUN
( PUNCT
1:102/129.0)Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59510From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
Should AUX
I PRON
be AUX
angry ADJ
at ADP
this DET
doctor?brandon@caldonia.nlm.nih.gov PROPN
( PUNCT
Brandon PROPN
Brylawski PROPN
) PUNCT
writes:>mryan@stsci.edu PROPN
writes VERB
: PUNCT
> X
: PUNCT
Am AUX
I PRON
justified ADJ
in ADP
being AUX
pissed VERB
off ADP
at ADP
this DET
doctor NOUN
? PUNCT
> X
: PUNCT
> X
: PUNCT
Last ADJ
Saturday PROPN
evening NOUN
my PRON
6 NUM
year NOUN
old ADJ
son NOUN
cut VERB
his PRON
finger NOUN
badly ADV
with ADP
a DET
knife NOUN
. PUNCT
> X
: PUNCT
I PRON
took VERB
him PRON
to ADP
a DET
local ADJ
" PUNCT
Urgent PROPN
and CCONJ
General PROPN
Care PROPN
" PUNCT
clinic NOUN
at ADP
5:50 NUM
pm NOUN
. PUNCT
  SPACE
The DET
> X
: PUNCT
clinic NOUN
was AUX
open ADJ
till SCONJ
6:00 NUM
pm NOUN
. PUNCT
  SPACE
The DET
receptionist NOUN
went VERB
to ADP
the DET
back NOUN
and CCONJ
told VERB
the DET
< X
: PUNCT
  SPACE
.... PUNCT
other ADJ
good ADJ
stuff NOUN
about ADP
the DET
Drs PROPN
idiocyOk PROPN
, PUNCT
much ADV
as SCONJ
I PRON
hate VERB
to PART
do AUX
it PRON
, PUNCT
here ADV
I PRON
am AUX
posting VERB
an DET
EVEN PROPN
BETTER ADJ
" PUNCT
Dr. PROPN
Idiot"story NUM
. PUNCT
I PRON
was AUX
in ADP
my PRON
18th ADJ
hour NOUN
of ADP
labor NOUN
, PUNCT
had AUX
been AUX
pushing VERB
for ADP
4.5 NUM
hours NOUN
and CCONJ
wasexhausted VERB
. PUNCT
  SPACE
My PRON
OB NOUN
and CCONJ
I PRON
decided VERB
to PART
go VERB
for ADP
a DET
csec NOUN
. PUNCT
  SPACE
The DET
OB PROPN
called VERB
inthe DET
anesthisiologist NOUN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
and CCONJ
asked VERB
him PRON
to PART
help VERB
prep VERB
me PRON
for ADP
surgery NOUN
. PUNCT
AFTER ADV
, PUNCT
watching VERB
me PRON
go VERB
through ADP
a DET
couple NOUN
contractions NOUN
, PUNCT
the DET
anes NOUN
( PUNCT
or CCONJ
anus VERB
asI NOUN
like VERB
to PART
refer VERB
to ADP
him PRON
) PUNCT
said VERB
, PUNCT
" PUNCT
Well INTJ
, PUNCT
I PRON
am AUX
off ADP
duty NOUN
now ADV
. PUNCT
" PUNCT
( PUNCT
still ADV
staringbetween ADJ
my PRON
legs NOUN
at ADP
that DET
) PUNCT
. PUNCT
  SPACE
The DET
OB PROPN
asked VERB
to PART
go VERB
call VERB
whomever NOUN
it PRON
was AUX
whowas VERB
on ADP
duty NOUN
and CCONJ
ask VERB
him PRON
/ SYM
her PRON
how ADV
long ADV
it PRON
would AUX
take VERB
... PUNCT
and CCONJ
if SCONJ
it PRON
was AUX
goingto PROPN
take VERB
more ADJ
than SCONJ
a DET
few ADJ
minutes NOUN
, PUNCT
to PART
please VERB
stay VERB
even ADV
though SCONJ
he PRON
was AUX
off ADP
duty NOUN
. PUNCT
The DET
anes NOUN
. PUNCT
went VERB
out ADP
, PUNCT
supposedly ADV
to PART
call VERB
the DET
on ADP
- PUNCT
call NOUN
anes NOUN
. PUNCT
   SPACE
In ADP
a DET
couple NOUN
ofminutes VERB
the DET
nurse NOUN
came VERB
running VERB
in ADP
to PART
tell VERB
the DET
OB PROPN
that SCONJ
the DET
anes NOUN
. PUNCT
had AUX
leftwithout ADV
even ADV
trying VERB
to PART
get AUX
ahold ADP
of ADP
the DET
on ADP
- PUNCT
call NOUN
. PUNCT
  SPACE
It PRON
was AUX
the DET
only ADJ
time NOUN
during ADP
my PRON
labor NOUN
that PRON
I PRON
swore VERB
. PUNCT
  SPACE
The DET
on ADP
- PUNCT
call NOUN
anes NOUN
. PUNCT
took VERB
20 NUM
minutes NOUN
to PART
getthere VERB
. PUNCT
Come VERB
to PART
find VERB
out ADP
, PUNCT
the DET
anes NOUN
. PUNCT
had AUX
only ADV
just ADV
gone VERB
off ADP
duty NOUN
( PUNCT
about ADV
2 NUM
minutesbefore NOUN
) PUNCT
and CCONJ
technically ADV
was AUX
supposed VERB
to PART
stay VERB
in ADP
the DET
hospital NOUN
until ADP
thenext NOUN
on ADP
- PUNCT
call NOUN
got VERB
there ADV
. PUNCT
  SPACE
Good ADJ
thing NOUN
for ADP
all DET
of ADP
us PRON
( PUNCT
especially ADV
him PRON
) PUNCT
thatit PROPN
was AUX
not PART
a DET
critical ADJ
emergency NOUN
. PUNCT
  SPACE
But CCONJ
boy NOUN
would AUX
I PRON
love VERB
to PART
knock VERB
thatfellow PROPN
's PART
ouchie NOUN
places NOUN
... PUNCT
just ADV
to PART
let VERB
him PRON
be AUX
in ADP
pain NOUN
afew ADJ
little ADJ
minutes NOUN
. PUNCT
I PRON
have AUX
run VERB
into ADP
" PUNCT
Dr. PROPN
Idiots PROPN
" PUNCT
, PUNCT
" PUNCT
Mechanic ADJ
Idiots NOUN
" PUNCT
, PUNCT
" PUNCT
Clerk PROPN
Idiots NOUN
" PUNCT
and CCONJ
" PUNCT
Etc PROPN
. PUNCT
Idiots NOUN
" PUNCT
in ADP
my PRON
time NOUN
, PUNCT
but CCONJ
this DET
fellow NOUN
I PRON
would AUX
like VERB
to PART
have AUX
words NOUN
with ADP
. PUNCT
DeanthaNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59511From NUM
: PUNCT
lkherold@athena.mit.edu PROPN
( PUNCT
Lori PROPN
K PROPN
Herold)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Kidney PROPN
StonesIf PROPN
the DET
student NOUN
has AUX
a DET
kidney NOUN
infection NOUN
, PUNCT
she PRON
ought AUX
to PART
be AUX
on ADP
antibiotics NOUN
. PUNCT
Kidney PROPN
infections-- PROPN
left VERB
untreated-- PROPN
can AUX
cause VERB
permanent ADJ
damage NOUN
tothe PROPN
kidneys NOUN
. PUNCT
  SPACE
I PRON
was AUX
hospitalized VERB
with ADP
a DET
kidney NOUN
infection NOUN
a DET
while NOUN
agoand NOUN
I PRON
was AUX
very ADV
sick ADJ
. PUNCT
In ADP
article NOUN
< X
1993Apr29.003406.55029@ux1.cts.eiu.edu NUM
> X
, PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes VERB
: PUNCT
...... PUNCT
> X
	 SPACE
Also ADV
, PUNCT
she PRON
is AUX
told VERB
that SCONJ
thre PROPN
are AUX
300 NUM
! PUNCT
surgery NOUN
patients NOUN
ahead ADV
of ADP
her PRON
> X
and CCONJ
that SCONJ
they PRON
can AUX
not PART
do AUX
surgery NOUN
until ADP
August PROPN
or CCONJ
so ADV
. PUNCT
  SPACE
It PRON
is AUX
now ADV
April PROPN
... PUNCT
> X
She PRON
is AUX
supposed VERB
to PART
rest VERB
a DET
lot NOUN
and CCONJ
drink NOUN
fluids NOUN
. PUNCT
  SPACE
But CCONJ
she PRON
has AUX
to PART
go VERB
to ADP
> X
classes NOUN
. PUNCT
  SPACE
She PRON
wonders VERB
why ADV
they PRON
have AUX
given VERB
her PRON
no DET
medicine NOUN
. PUNCT
  SPACE
She PRON
plans VERB
to PART
           SPACE
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59512From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosaezpete@deja-vu.aiss.uiuc.edu PROPN
( PUNCT
) PUNCT
writes:>>can't VERB
imagine VERB
what PRON
it PRON
's AUX
like ADJ
to PART
have AUX
a DET
penis NOUN
, PUNCT
much ADV
less ADJ
a DET
foreskin NOUN
. PUNCT
I>>guess ADJ
if SCONJ
American ADJ
medicine NOUN
did AUX
an DET
artistic ADJ
job NOUN
of ADP
circumcising NOUN
every>>male NOUN
, PUNCT
then ADV
the DET
visual ADJ
result NOUN
would AUX
be AUX
somewhat ADV
more ADV
natural ADJ
in>>appearance NOUN
... PUNCT
>>>>The X
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
be>>going VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journal>>or NOUN
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
old>>Jewish NUM
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
the>>cancer PROPN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
like>>crazy PUNCT
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
a>>little PROPN
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung ADJ
up ADP
on>>the PROPN
penis PROPN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADJ
like>>mastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basically>>unnecessary.>Peter NOUN
Schlumpf PROPN
> X
University PROPN
of ADP
Illinois PROPN
at ADP
Urbana PROPN
- PUNCT
ChampaignFirst PROPN
off ADP
, PUNCT
use VERB
some DET
decent ADJ
terms NOUN
if SCONJ
ya PRON
do AUX
n't PART
mind VERB
. PUNCT
  SPACE
This DET
is AUX
sci.med VERB
, PUNCT
notalt.sex.Secondly ADV
, PUNCT
how ADV
absolutely ADV
bogus ADJ
to PART
assume VERB
that SCONJ
" PUNCT
American PROPN
's PART
are AUX
just ADV
too ADV
hungup ADJ
on ADP
the DET
penis PROPN
.... PUNCT
blah INTJ
, PUNCT
blah INTJ
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
most ADJ
American PROPN
's PART
do AUX
n't PART
care VERB
aboutanything NOUN
so ADV
comlicated VERB
as SCONJ
that DET
. PUNCT
  SPACE
They PRON
just ADV
think VERB
it PRON
" PUNCT
looks VERB
nicer ADV
" PUNCT
. PUNCT
  SPACE
Ask VERB
a DET
few ADJ
of ADP
them PRON
and CCONJ
see VERB
what PRON
response NOUN
you PRON
get VERB
. PUNCT
  SPACE
Others NOUN
still ADV
opt VERB
forcircumcision NOUN
due ADJ
to ADP
religious ADJ
traditions NOUN
and CCONJ
beliefs NOUN
. PUNCT
  SPACE
Some DET
think VERB
it PRON
iseasier VERB
to PART
clean VERB
. PUNCT
  SPACE
Still ADV
others NOUN
do AUX
it PRON
because SCONJ
" PUNCT
Daddy NOUN
was" ADV
. PUNCT
Dont PROPN
' PUNCT
be AUX
so ADV
naive ADJ
as SCONJ
to PART
think VERB
American PROPN
's PART
are AUX
afraid ADJ
of ADP
sexuality NOUN
. PUNCT
My PRON
son NOUN
is AUX
not PART
circumcised VERB
, PUNCT
and CCONJ
I PRON
can AUX
vouch VERB
for ADP
the DET
argument NOUN
that SCONJ
it PRON
ismore VERB
difficult ADJ
to PART
keep VERB
clean ADJ
than SCONJ
a DET
circumcised VERB
kids NOUN
' PUNCT
. PUNCT
  SPACE
Not PART
so ADV
much ADJ
thatthe DET
foreskin NOUN
is AUX
difficult ADJ
to PART
pull VERB
back ADV
( PUNCT
it PRON
is AUX
n't PART
) PUNCT
but CCONJ
because SCONJ
my PRON
sondoesn't NOUN
want VERB
to PART
wait VERB
long ADV
enough ADV
for ADP
a DET
thorough ADJ
check NOUN
for ADP
smega NOUN
or CCONJ
misplacedfeces NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
many ADJ
times NOUN
it PRON
just ADV
gets VERB
a DET
once ADV
over ADP
dab PROPN
. PUNCT
  SPACE
It PRON
worries VERB
methat ADP
he PRON
might AUX
get AUX
an DET
infection NOUN
due ADP
to ADP
his PRON
lack NOUN
of ADP
cooperation NOUN
. PUNCT
  SPACE
I PRON
amsure VERB
, PUNCT
however ADV
, PUNCT
that SCONJ
he PRON
will AUX
be AUX
able ADJ
to PART
handle VERB
cleaning VERB
under ADP
the DET
foreskinhimself NOUN
once SCONJ
he PRON
is AUX
old ADJ
enough ADV
. PUNCT
  SPACE
Until ADP
, PUNCT
there PRON
is AUX
always ADV
the DET
decision NOUN
ateach NOUN
diaper NOUN
change NOUN
... PUNCT
is AUX
this DET
the DET
time NOUN
to PART
clean VERB
or CCONJ
can AUX
we PRON
wait VERB
till SCONJ
nexttime NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59513From NUM
: PUNCT
cacci@interlan.interlan.com PROPN
( PUNCT
Ernie PROPN
Cacciapuoti)Subject PROPN
: PUNCT
Question NOUN
: PUNCT
Phosphorylase PROPN
Kinase PROPN
Deficiency???If PROPN
anyone PRON
has AUX
any DET
information NOUN
on ADP
this DET
deficiency NOUN
I PRON
would AUX
very ADV
greatlyappreciate VERB
a DET
response NOUN
here ADV
or CCONJ
preferably ADV
by ADP
Email NOUN
. PUNCT
  SPACE
All DET
I PRON
know VERB
at ADP
thispoint NOUN
is AUX
a DET
deficiency NOUN
can AUX
cause VERB
myoglobin PROPN
to PART
be AUX
released VERB
, PUNCT
and CCONJ
in ADP
timesof NOUN
stress NOUN
and CCONJ
high ADJ
ambient NOUN
temperature NOUN
could AUX
cause VERB
renal ADJ
failure.xNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59514From NUM
: PUNCT
atae@spva.ph.ic.ac.uk PROPN
( PUNCT
Ata PROPN
Etemadi)Subject NUM
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C67G01.2J1@efi.com PROPN
> X
, PUNCT
alanm@efi.com X
( PUNCT
Alan PROPN
Morgan PROPN
) PUNCT
writes:-| PROPN
In ADP
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
-| PUNCT
   SPACE
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:-| PROPN
Okay INTJ
. PUNCT
  SPACE
Name VERB
one NUM
single ADJ
effect NOUN
that PRON
Kirlian ADJ
photography NOUN
gives VERB
that-| NUM
ca AUX
n't PART
be AUX
explained VERB
by ADP
corona ADJ
discharge NOUN
. PUNCT
Dozens NOUN
of ADP
very ADV
funny ADJ
postings NOUN
to ADP
sci.image.processing DET
[ PUNCT
of ADP
which PRON
this DET
may AUX
not PART
be AUX
one NUM
:-] ADJ
. PUNCT
	 SPACE
Ata PROPN
< X
( PUNCT
|)>Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59516From NUM
: PUNCT
< X
U18183@uicvm.uic.edu>Subject NUM
: PUNCT
Re ADP
: PUNCT
Chromium NOUN
for ADP
weight NOUN
loss NOUN
  SPACE
There PRON
is AUX
no DET
data NOUN
to PART
show VERB
chromium NOUN
is AUX
effective ADJ
in ADP
promoting VERB
weight NOUN
loss NOUN
. PUNCT
  SPACE
The DET
few ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
using VERB
chromium NOUN
have AUX
been AUX
very ADV
flawed ADJ
and CCONJ
inherently ADV
biased ADJ
( PUNCT
the DET
investigators NOUN
were AUX
making VERB
money NOUN
from ADP
marketing VERB
it PRON
) PUNCT
. PUNCT
  SPACE
Theoretically ADV
it PRON
really ADV
does AUX
nt PART
make VERB
sense NOUN
either ADV
. PUNCT
The DET
claim NOUN
is AUX
that DET
chromiumwill NOUN
increase VERB
muscle NOUN
mass NOUN
and CCONJ
decrease VERB
fat NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
chromium NOUN
is AUX
also ADV
used VERB
to PART
cure VERB
diabetes NOUN
, PUNCT
high ADJ
blood NOUN
pressure NOUN
and CCONJ
increase VERB
muscle NOUN
mass NOUN
in ADP
athletes(justas PROPN
well ADV
as SCONJ
anabolic ADJ
steroids NOUN
) PUNCT
. PUNCT
Sounds VERB
like SCONJ
snake NOUN
oil NOUN
for ADP
the DET
1990 NUM
's PART
:-) PUNCT
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
it PRON
really ADV
ca AUX
nt PART
hurt VERB
you PRON
anywhere ADV
but CCONJ
your PRON
wallet NOUN
, PUNCT
and CCONJ
placebo NOUN
effects NOUN
of ADP
anything PRON
can AUX
be AUX
pretty ADV
dramatic ADJ
... PUNCT
                                    SPACE
-Paul PUNCT
     SPACE
---------------------------------------------------------- PUNCT
    SPACE
| NOUN
  SPACE
Paul PROPN
Sovcik PROPN
, PUNCT
Pharm PROPN
. PUNCT
D. PROPN
U PROPN
of ADP
Illinois PROPN
College PROPN
of ADP
Pharmacy PROPN
| PROPN
    SPACE
| CCONJ
                                                          SPACE
| PROPN
    SPACE
| CCONJ
    SPACE
Email- PROPN
U18183@UICVM.UIC.EDU PROPN
                           SPACE
| PROPN
    SPACE
| CCONJ
                                                          SPACE
| PROPN
     SPACE
----------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59517From NUM
: PUNCT
bobm@Ingres NOUN
. PUNCT
COM PROPN
( PUNCT
Bob PROPN
McQueer)Subject PROPN
: PUNCT
Re ADP
: PUNCT
EarwaxIn PROPN
< X
faUk03m6d0Kq00@amdahl.uts.amdahl.com X
> X
, PUNCT
	 SPACE
dated VERB
29 NUM
Apr PROPN
93 NUM
15:43:10 NUM
GMT PROPN
, PUNCT
	 SPACE
lmtra@uts.amdahl.com PROPN
( PUNCT
Leon PROPN
Traister PROPN
) PUNCT
writes VERB
: PUNCT
> X
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
What PRON
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leave VERB
> X
> X
it PRON
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
out ADP
> X
> X
every DET
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage NOUN
your PRON
eardrums NOUN
? PUNCT
> X
> X
Are AUX
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked VERB
? PUNCT
> X
> X
Assuming VERB
that SCONJ
the DET
wax NOUN
is AUX
causing VERB
hearing NOUN
loss NOUN
, PUNCT
congestion NOUN
or CCONJ
popping VERB
> X
in ADP
the DET
ears NOUN
, PUNCT
you PRON
can AUX
try VERB
some DET
cautious ADJ
tepid ADJ
water NOUN
irrigation NOUN
with ADP
a DET
> X
bulb NOUN
syringe NOUN
, PUNCT
but CCONJ
it PRON
is AUX
awkward ADJ
to PART
do AUX
for ADP
oneself PRON
and CCONJ
may AUX
not PART
work VERB
or CCONJ
> X
may AUX
even ADV
make VERB
things NOUN
worse ADJ
. PUNCT
  SPACE
( PUNCT
My PRON
wife NOUN
would AUX
disagree VERB
, PUNCT
she PRON
does AUX
it PRON
> X
successfully ADV
every DET
six NUM
months NOUN
or CCONJ
so ADV
. PUNCT
) PUNCT
  SPACE
In ADP
any DET
case NOUN
DO VERB
NOT ADV
ATTEMPT PROPN
> X
ANYTHING NOUN
WITH ADP
Q PROPN
- PUNCT
TIPS!!!I'll NOUN
agree VERB
with ADP
your PRON
wife NOUN
. PUNCT
  SPACE
While SCONJ
I PRON
was AUX
a DET
student NOUN
, PUNCT
I PRON
had AUX
doctors NOUN
removerather VERB
surprising ADJ
amounts NOUN
of ADP
wax NOUN
from ADP
my PRON
ears NOUN
by ADP
flushing VERB
them PRON
out ADP
a DET
coupletimes NOUN
, PUNCT
usually ADV
because SCONJ
they PRON
were AUX
examining VERB
my PRON
ears NOUN
for ADP
some DET
other ADJ
reason NOUN
, PUNCT
andsaid VERB
something PRON
like SCONJ
" PUNCT
Gee PROPN
, PUNCT
you PRON
've AUX
got VERB
a DET
lot NOUN
of ADP
wax NOUN
in ADV
there ADV
" PUNCT
. PUNCT
  SPACE
In ADP
my PRON
case NOUN
, PUNCT
removal NOUN
of ADP
these DET
large ADJ
wax NOUN
buildups NOUN
did AUX
noticeably ADV
improve VERB
my PRON
hearing NOUN
, PUNCT
andI've PROPN
since SCONJ
gotten VERB
in ADP
the DET
same ADJ
habit NOUN
as SCONJ
your PRON
wife NOUN
of ADP
flushing VERB
them PRON
out ADP
withwarm NOUN
water NOUN
from ADP
a DET
little ADJ
rubber NOUN
bulb NOUN
every DET
few ADJ
months NOUN
. PUNCT
  SPACE
You PRON
can AUX
buy VERB
littlebulbs NOUN
together ADV
with ADP
ear NOUN
drops NOUN
for ADP
this DET
express ADJ
purpose NOUN
from ADP
the DET
drug NOUN
store NOUN
-I PROPN
do AUX
n't PART
notice VERB
that SCONJ
the DET
drops NOUN
accomplish VERB
much ADJ
of ADP
anything PRON
. PUNCT
One NUM
question NOUN
I PRON
do AUX
have AUX
- PUNCT
a DET
doctor NOUN
who PRON
flushed VERB
out ADP
my PRON
ears NOUN
once SCONJ
also ADV
advocateda VERB
drop NOUN
of ADP
rubbing VERB
alcohol NOUN
in ADP
them PRON
afterwards ADV
to PART
flush VERB
out ADP
any DET
remainingtrapped VERB
water NOUN
- PUNCT
said VERB
he PRON
told VERB
swimmers NOUN
to PART
do AUX
this DET
after ADP
swimming VERB
, PUNCT
too ADV
. PUNCT
  SPACE
Itworks PROPN
, PUNCT
but CCONJ
it PRON
stings VERB
like SCONJ
the DET
devil NOUN
, PUNCT
so CCONJ
I PRON
've AUX
always ADV
been AUX
content ADJ
to PART
let VERB
anywater NOUN
in ADP
my PRON
ears NOUN
from ADP
swimming VERB
or CCONJ
flushing VERB
them PRON
out ADP
figure VERB
out ADP
how ADV
to PART
getout VERB
by ADP
itself PRON
if SCONJ
shaking VERB
my PRON
head NOUN
a DET
few ADJ
times NOUN
wo AUX
n't PART
do AUX
the DET
trick NOUN
. PUNCT
  SPACE
Anycomments?Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59518From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADP
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
< X
1rp8p1$2d3@usenet NUM
. PUNCT
INS.CWRU.Edu NUM
> X
, PUNCT
esd3@po PROPN
. PUNCT
CWRU.Edu PROPN
( PUNCT
Elisabeth PROPN
S. PROPN
Davidson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
In ADP
a DET
previous ADJ
article NOUN
, PUNCT
banschbach@vms.ocom.okstate.edu PROPN
( PUNCT
) PUNCT
says:>>least PUNCT
a DET
few ADJ
" PUNCT
enlightened VERB
" PUNCT
physicians NOUN
practicing VERB
in ADP
the DET
U.S. PROPN
  SPACE
It PRON
's AUX
really ADV
> X
> X
too ADV
bad ADJ
that SCONJ
most ADJ
U.S. PROPN
medical ADJ
schools NOUN
do AUX
n't PART
cover VERB
nutrition NOUN
because SCONJ
if SCONJ
> X
> X
they PRON
did AUX
, PUNCT
candida PROPN
would AUX
not PART
be AUX
viewed VERB
as SCONJ
a DET
non ADJ
- ADJ
disease NOUN
by ADP
so ADV
many ADJ
in ADP
the DET
> X
> X
medical PROPN
profession NOUN
. PUNCT
> X
> X
Case PROPN
Western PROPN
Reserve PROPN
Med PROPN
School PROPN
teaches VERB
nutrition NOUN
in ADP
its PRON
own ADJ
section NOUN
as SCONJ
> X
well INTJ
as SCONJ
covering VERB
it PRON
in ADP
other ADJ
sections NOUN
as SCONJ
they PRON
apply VERB
( PUNCT
i.e. X
B12 PROPN
> X
deficiency NOUN
in ADP
neuro PROPN
as SCONJ
a DET
cause NOUN
of ADP
neuropathy NOUN
, PUNCT
B12 PROPN
deficiency NOUN
in ADP
> PROPN
hematology PROPN
as SCONJ
a DET
cause NOUN
of ADP
megaloblastic ADJ
anemia NOUN
) PUNCT
, PUNCT
yet CCONJ
I PRON
sill VERB
> X
hold VERB
the DET
viewpoint NOUN
of ADP
mainstream ADJ
medicine NOUN
: PUNCT
  SPACE
candida PROPN
can AUX
cause VERB
> X
mucocutaneous ADJ
candidiasis PROPN
, PUNCT
and CCONJ
, PUNCT
in ADP
already ADV
very ADV
sick ADJ
patients NOUN
> X
with ADP
damaged VERB
immune ADJ
systems NOUN
like SCONJ
AIDS PROPN
and CCONJ
cancer NOUN
patients NOUN
, PUNCT
> X
systemic PROPN
candida PROPN
infection NOUN
. PUNCT
  SPACE
I PRON
think VERB
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
is AUX
> X
a DET
bunch NOUN
of ADP
hooey NOUN
. PUNCT
  SPACE
What PRON
does AUX
this DET
have AUX
to PART
do AUX
with ADP
how ADV
well ADV
> X
nutrition NOUN
is AUX
taught VERB
, PUNCT
anyway?Elisabeth PROPN
, PUNCT
let VERB
's PRON
set VERB
the DET
record NOUN
straight NOUN
for ADP
the DET
nth ADJ
time NOUN
, PUNCT
I PRON
have AUX
not PART
read VERB
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
. PUNCT
  SPACE
So ADV
anything PRON
that PRON
I PRON
say VERB
is AUX
not PART
due ADJ
to ADP
brainwashing VERB
by ADP
this DET
" PUNCT
hated ADJ
" PUNCT
book NOUN
. PUNCT
  SPACE
It PRON
's AUX
okay ADJ
I PRON
guess VERB
to PART
hate VERB
the DET
book NOUN
, PUNCT
by ADP
why ADV
hate VERB
me?Elisabeth PROPN
, PUNCT
I PRON
'm AUX
going VERB
to PART
quote VERB
from ADP
Zinsser PROPN
's PART
Microbiology PROPN
, PUNCT
20th ADJ
Edition NOUN
. PUNCT
A DET
book NOUN
that PRON
you PRON
should AUX
be AUX
familiar ADJ
with ADP
and CCONJ
not PART
" PUNCT
hate VERB
" PUNCT
. PUNCT
" PUNCT
Candida PROPN
species NOUN
colonize VERB
the DET
mucosal ADJ
surfaces NOUN
of ADP
all DET
humans NOUN
during ADP
birth NOUN
or CCONJ
shortly ADV
thereafter ADV
. PUNCT
  SPACE
The DET
risk NOUN
of ADP
endogenous ADJ
infection NOUN
is AUX
clearly ADV
ever ADV
present ADJ
. PUNCT
  SPACE
Indeed ADV
, PUNCT
candidiasis NOUN
occurs VERB
worldwide ADV
and CCONJ
is AUX
the DET
most ADV
common ADJ
systemic ADJ
mycosis NOUN
. PUNCT
" PUNCT
  SPACE
Neutrophils PROPN
play VERB
the DET
main ADJ
role NOUN
in ADP
preventing VERB
a DET
systemic ADJ
infection(candidiasis NOUN
) PUNCT
so ADV
you PRON
would AUX
have AUX
to PART
have AUX
a DET
low ADJ
neutrophil ADJ
count NOUN
or CCONJ
" PUNCT
sick ADJ
" PUNCT
neutrophils NOUN
to PART
see VERB
a DET
systemic ADJ
infection NOUN
. PUNCT
  SPACE
Poor ADJ
diet NOUN
and CCONJ
persistent ADJ
parasitic ADJ
infestation NOUN
set VERB
many ADJ
third ADJ
world NOUN
residents NOUN
up ADP
for ADP
candidiasis NOUN
. PUNCT
Your PRON
assessment NOUN
of ADP
candidiasis NOUN
in ADP
the DET
U.S. PROPN
is AUX
correct ADJ
and CCONJ
I PRON
do AUX
not PART
dispute VERB
it PRON
. PUNCT
What PRON
I PRON
posted VERB
was AUX
a DET
discussion NOUN
of ADP
candida PROPN
blooms NOUN
, PUNCT
without ADP
systemic ADJ
infection NOUN
. PUNCT
  SPACE
These DET
blooms NOUN
would AUX
be AUX
responsible ADJ
for ADP
local ADJ
sites NOUN
of ADP
irritation(GI PROPN
tract NOUN
, PUNCT
mouth PROPN
, PUNCT
vagina PROPN
and CCONJ
sinus NOUN
cavity NOUN
) PUNCT
. PUNCT
  SPACE
Knocking VERB
down ADP
the DET
bacterial ADJ
competition NOUN
for ADP
candida PROPN
was AUX
proposed VERB
as SCONJ
a DET
possible ADJ
trigger NOUN
for ADP
candida PROPN
blooms NOUN
. PUNCT
  SPACE
Let VERB
me PRON
quote VERB
from ADP
Zinsser PROPN
's PART
again ADV
: PUNCT
" PUNCT
However ADV
, PUNCT
some DET
factors NOUN
, PUNCT
such ADJ
as SCONJ
the DET
use NOUN
of ADP
a DET
broad ADJ
- PUNCT
spectrum NOUN
antibacterial ADJ
antibiotic NOUN
, PUNCT
may AUX
predispose VERB
to ADP
both CCONJ
mucosal ADJ
and CCONJ
systemic ADJ
infections NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
was AUX
addressing VERB
mucosal ADJ
infections(I PROPN
like SCONJ
the DET
term NOUN
blooms NOUN
better ADV
) PUNCT
. PUNCT
  SPACE
The DET
nutrition NOUN
course NOUN
that PRON
I PRON
teach VERB
covers VERB
this DET
effect NOUN
of ADP
antibiotic ADJ
treatment NOUN
as ADV
well ADV
as SCONJ
the DET
" PUNCT
cure NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
guess VERB
that SCONJ
your PRON
nutrition NOUN
course NOUN
does AUX
not PART
, PUNCT
too ADV
bad ADJ
. PUNCT
  SPACE
> X
> X
Here ADV
is AUX
a DET
brief ADJ
primer NOUN
on ADP
yeast NOUN
. PUNCT
  SPACE
Yeast NOUN
infections NOUN
, PUNCT
as SCONJ
they PRON
are AUX
commonly ADV
> X
> X
called VERB
, PUNCT
are AUX
not PART
truely ADV
caused VERB
by ADP
yeasts NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
organism NOUN
responsible>>for ADP
this DET
type NOUN
of ADP
infection NOUN
is AUX
Candida PROPN
albicans NOUN
or CCONJ
Monilia PROPN
which PRON
is AUX
actually ADV
a DET
> X
> X
yeast NOUN
- PUNCT
like ADJ
fungus PROPN
. PUNCT
  SPACE
> X
> X
Well INTJ
, PUNCT
maybe ADV
I PRON
'm AUX
getting VERB
picky ADJ
, PUNCT
but CCONJ
I PRON
always ADV
thought VERB
that SCONJ
a DET
yeast NOUN
> X
was AUX
one NUM
form NOUN
that PRON
a DET
fungus NOUN
could AUX
exist VERB
in ADV
, PUNCT
the DET
other ADJ
being AUX
the DET
> X
mold NOUN
form NOUN
. PUNCT
  SPACE
Many ADJ
fungi NOUN
can AUX
occur VERB
as SCONJ
either CCONJ
yeasts NOUN
or CCONJ
molds NOUN
, PUNCT
> X
depending VERB
on ADP
environment NOUN
. PUNCT
  SPACE
Candida PROPN
exibits VERB
what PRON
is AUX
known VERB
as SCONJ
> X
reverse ADJ
dimorphism NOUN
- PUNCT
it PRON
exists VERB
as SCONJ
a DET
mold NOUN
in ADP
the DET
tissues NOUN
> X
but CCONJ
exists VERB
as SCONJ
a DET
yeast NOUN
in ADP
the DET
environment NOUN
. PUNCT
  SPACE
Should AUX
we PRON
maybe ADV
> X
call VERB
it PRON
a DET
mold NOUN
infection NOUN
? PUNCT
  SPACE
a DET
fungus ADJ
infection NOUN
? PUNCT
  SPACE
Maybe ADV
we PRON
> X
should AUX
say VERB
it PRON
is AUX
caused VERB
by ADP
a DET
mold NOUN
- PUNCT
like ADJ
fungus PROPN
. PUNCT
> X
  SPACE
> X
> X
> X
> X
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PUNCT
D.>>Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
Chairman>>Department NOUN
of ADP
Biochemistry PROPN
and CCONJ
Microbiology>>OSU PROPN
College PROPN
of ADP
Osteopathic PROPN
Medicine>>1111 NUM
West PROPN
17th ADJ
St.>>Tulsa PROPN
, PUNCT
Ok INTJ
. PUNCT
74107 NUM
> X
> X
> X
> X
You PRON
're AUX
the DET
chairman NOUN
of ADP
Biochem PROPN
and CCONJ
Micro PROPN
and CCONJ
you PRON
did AUX
n't PART
know VERB
> X
that SCONJ
a DET
yeast NOUN
is AUX
a DET
form NOUN
of ADP
a DET
fungus NOUN
? PUNCT
  SPACE
( PUNCT
shudder NOUN
) PUNCT
> X
Or CCONJ
maybe ADV
you PRON
did AUX
know VERB
, PUNCT
and CCONJ
were AUX
oversimplifying?My PROPN
, PUNCT
my PRON
Elisabeth PROPN
, PUNCT
do AUX
I PRON
detect VERB
a DET
little ADJ
of ADP
Steve PROPN
Dyer PROPN
in ADP
you PRON
? PUNCT
  SPACE
If SCONJ
you PRON
noticed VERB
my PRON
faculty NOUN
rank NOUN
, PUNCT
I PRON
'm AUX
a DET
biochemist NOUN
, PUNCT
not PART
a DET
microbiologist NOUN
. PUNCT
Candida PROPN
is AUX
classifed VERB
as SCONJ
a DET
fungus(according NOUN
to ADP
Zinsser PROPN
's PART
) PUNCT
. PUNCT
  SPACE
But CCONJ
, PUNCT
as SCONJ
you PRON
point VERB
out ADP
, PUNCT
it PRON
displays VERB
dimorphism NOUN
. PUNCT
  SPACE
It PRON
is AUX
capable ADJ
of ADP
producing VERB
yeast NOUN
cells NOUN
, PUNCT
pseudohyphae ADJ
and CCONJ
true ADJ
hyphae NOUN
. PUNCT
  SPACE
Elisabeth PROPN
, PUNCT
you PRON
are AUX
probably ADV
a DET
microbiologist NOUN
and CCONJ
that DET
makes VERB
a DET
lot NOUN
of ADP
sense NOUN
to ADP
you PRON
. PUNCT
  SPACE
To ADP
a DET
biochemist NOUN
, PUNCT
it PRON
's AUX
a DET
lot NOUN
of ADP
Greek PROPN
. PUNCT
  SPACE
So ADV
I PRON
called VERB
it PRON
a DET
yeast NOUN
- PUNCT
like ADJ
fungus NOUN
, PUNCT
go VERB
ahead ADV
and CCONJ
crucify VERB
me PRON
. PUNCT
You PRON
know VERB
Elisabeth PROPN
, PUNCT
I PRON
still ADV
have AUX
n't PART
been AUX
able ADJ
to PART
figure VERB
out ADP
why ADV
such DET
a DET
small ADJ
little ADJ
organism NOUN
like SCONJ
Candida PROPN
can AUX
bring VERB
out ADP
so ADV
much ADJ
hostility NOUN
in ADP
people NOUN
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
  SPACE
And CCONJ
I PRON
must AUX
admitt VERB
that SCONJ
I PRON
got VERB
sucked VERB
into ADP
the DET
mud NOUN
slinging VERB
too ADV
. PUNCT
I PRON
keep VERB
hoping VERB
that SCONJ
if SCONJ
people NOUN
will AUX
just ADV
take VERB
the DET
time NOUN
to PART
think VERB
about ADP
what PRON
I PRON
've AUX
said VERB
, PUNCT
that SCONJ
it PRON
will AUX
make VERB
sense NOUN
. PUNCT
  SPACE
I PRON
'm AUX
not PART
asking VERB
anyone PRON
here ADV
to PART
buy VERB
into ADP
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
book NOUN
because SCONJ
I PRON
do AUX
n't PART
know VERB
what PRON
's AUX
in ADP
that DET
book NOUN
, PUNCT
plain ADJ
and CCONJ
simple ADJ
. PUNCT
And CCONJ
to PART
be AUX
honest ADJ
with ADP
you PRON
, PUNCT
I PRON
'm AUX
beginning VERB
to PART
wish VERB
that SCONJ
it PRON
was AUX
never ADV
written VERB
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59519From NUM
: PUNCT
alan.barclay@almac.co.uk PROPN
( PUNCT
Alan PROPN
Barclay)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
CircumciTO NOUN
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)RO PUNCT
> X
First ADV
off ADV
, PUNCT
use VERB
some DET
decent ADJ
terms NOUN
if SCONJ
ya PRON
do AUX
n't PART
mind VERB
. PUNCT
  SPACE
This DET
is AUX
sci.med VERB
, PUNCT
notRO PROPN
> X
alt.sex.Would INTJ
you PRON
like VERB
to PART
rephrase VERB
that DET
? PUNCT
  SPACE
--- PUNCT
. PUNCT
ATP PROPN
/ SYM
Unix1.40a PROPN
. PUNCT
G'day PROPN
mate NOUN
, PUNCT
throw VERB
another DET
cat NOUN
on ADP
the DET
barbie PROPN
! PUNCT
                                                                                                        SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59520From NUM
: PUNCT
jhl14@cunixb.cc.columbia.edu PROPN
( PUNCT
Jonathan PROPN
H. PROPN
Lin)Subject ADV
: PUNCT
atrial ADJ
natriuretic ADJ
factorANP CCONJ
is AUX
secreted VERB
by ADP
the DET
atria NOUN
in ADP
response NOUN
to ADP
increases NOUN
in ADP
fluid ADJ
volumeand NOUN
acts NOUN
to PART
facilitate VERB
sodium NOUN
and CCONJ
water NOUN
excretion NOUN
from ADP
the DET
kidneys NOUN
. PUNCT
Can AUX
someone PRON
tell VERB
me PRON
the DET
molecular ADJ
mechanism NOUN
by ADP
which PRON
this DET
is AUX
done?Please NOUN
email VERB
your PRON
responseThanks------------------------------------------------------------------------------- NOUN
                                   SPACE
Po'g PROPN
Mo PROPN
Thon PROPN
                              SPACE
-------------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59521From NUM
: PUNCT
Lauger@ssdgwy.mdc.com PROPN
( PUNCT
John PROPN
Lauger)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)In NUM
article NOUN
< X
5531@cruzio.santa-cruz.ca.us NUM
> X
, PUNCT
roxannen@cruzio.santa-cruz.ca.uswrote VERB
: PUNCT
> X
> X
I PRON
recently ADV
heard VERB
of ADP
some DET
testing NOUN
of ADP
a DET
new ADJ
migraine ADJ
drug NOUN
called VERB
sumatripton PROPN
> PUNCT
( PUNCT
I PRON
have AUX
no DET
idea NOUN
of ADP
the DET
actual ADJ
spelling NOUN
) PUNCT
that PRON
supposedly ADV
utilizes VERB
a DET
chemical NOUN
> X
that PRON
trips VERB
neuro PROPN
- PUNCT
transmitters PROPN
. PUNCT
  SPACE
My PRON
mother NOUN
has AUX
regular ADJ
migraines NOUN
and CCONJ
nothing PRON
> NOUN
seems VERB
to PART
help VERB
- PUNCT
does AUX
anyone PRON
know VERB
anything PRON
about ADP
this DET
new ADJ
drug NOUN
? PUNCT
  SPACE
Is AUX
it PRON
in ADP
> X
a DET
testing NOUN
phaze NOUN
or CCONJ
anywhere ADV
near ADJ
approval NOUN
? PUNCT
  SPACE
Does AUX
it PRON
seem VERB
to PART
be AUX
working VERB
? PUNCT
> X
My PRON
girlfriend NOUN
just ADV
started VERB
taking VERB
this DET
drug NOUN
for ADP
her PRON
migranes NOUN
. PUNCT
  SPACE
It PRON
reallyhelped VERB
her PRON
get AUX
through ADP
the DET
rebound PROPN
withdrawl NOUN
when ADV
she PRON
got VERB
off ADP
analgesics NOUN
. PUNCT
She PRON
does AUX
n't PART
have AUX
a DET
mail NOUN
account NOUN
, PUNCT
but CCONJ
asked VERB
me PRON
to ADP
forward ADV
this:"Glaxo PROPN
is AUX
the DET
distributor NOUN
; PUNCT
Imitrex PROPN
is AUX
the DET
drug NOUN
's PART
brand NOUN
name NOUN
. PUNCT
  SPACE
It PRON
works VERB
. PUNCT
She PRON
can AUX
call VERB
her PRON
pharmacy NOUN
for ADP
more ADJ
info NOUN
. PUNCT
The DET
" PUNCT
miracle NOUN
" PUNCT
drug NOUN
has AUX
been AUX
usedfor ADP
years NOUN
in ADP
Europe PROPN
and CCONJ
for ADP
some DET
time NOUN
in ADP
Canada PROPN
. PUNCT
  SPACE
Trials NOUN
in ADP
the DET
U.S. PROPN
werecompleted VERB
and CCONJ
the DET
drug NOUN
hit VERB
the DET
US PROPN
market NOUN
at ADP
the DET
end NOUN
of ADP
March PROPN
. PUNCT
  SPACE
Somepharmacies NOUN
do AUX
n't PART
stock VERB
it PRON
yet ADV
. PUNCT
  SPACE
Presently ADV
it PRON
needs VERB
to PART
be AUX
injectedsubcutaneously ADV
; PUNCT
although SCONJ
testing NOUN
is AUX
starting VERB
with ADP
a DET
nasal ADJ
spray NOUN
form NOUN
. PUNCT
  SPACE
Itmimics PROPN
serotonin ADV
( PUNCT
its PRON
molecular ADJ
structure NOUN
that PRON
fits VERB
onto ADP
pain NOUN
receptorslooks NOUN
identical ADJ
to PART
serotonin VERB
on ADP
a DET
model NOUN
I PRON
saw)"Opinions NOUN
are AUX
mine PRON
or CCONJ
others NOUN
but CCONJ
definately ADV
not PART
MDA's!Lauger@ssdgwy.mdc.comMcDonnell PROPN
Douglas PROPN
Aerospace PROPN
, PUNCT
Huntington PROPN
Beach PROPN
, PUNCT
California PROPN
, PUNCT
USANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59522From NUM
: PUNCT
mcelwre@cnsvax.uwec.eduSubject NOUN
: PUNCT
BIOLOGICAL PROPN
ALCHEMY PROPN
                                        SPACE
BIOLOGICAL PROPN
ALCHEMY PROPN
                                                  SPACE
( PUNCT
ANOTHER DET
Form NOUN
of ADP
COLD PROPN
FUSION NOUN
) PUNCT
               SPACE
( PUNCT
ALTERNATIVE PROPN
Heavy PROPN
Element PROPN
Creation PROPN
in ADP
Universe PROPN
) PUNCT
                SPACE
A DET
very ADV
simple ADJ
experiment NOUN
can AUX
demonstrate VERB
( PUNCT
PROVE VERB
) PUNCT
the DET
           SPACE
FACT NOUN
of ADP
" PUNCT
BIOLOGICAL PROPN
TRANSMUTATIONS PROPN
" PUNCT
( PUNCT
reactions NOUN
like SCONJ
Mg PROPN
+ INTJ
O INTJ
           SPACE
-- PUNCT
> X
Ca AUX
, PUNCT
Si PROPN
+ CCONJ
C PROPN
-- PUNCT
> X
Ca AUX
, PUNCT
K NOUN
+ CCONJ
H NOUN
-- PUNCT
> X
Ca NOUN
, PUNCT
N2 PROPN
-- PUNCT
> X
CO PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
, PUNCT
as SCONJ
           SPACE
described VERB
in ADP
the DET
BOOK PROPN
" PUNCT
Biological PROPN
Transmutations PROPN
" PUNCT
by ADP
Louis PROPN
           SPACE
Kervran PROPN
, PUNCT
[ PUNCT
1972 NUM
Edition NOUN
is AUX
BEST PROPN
. PUNCT
] PUNCT
, PUNCT
and CCONJ
in ADP
Chapter NOUN
17 NUM
of ADP
the DET
           SPACE
book NOUN
" PUNCT
THE DET
SECRET PROPN
LIFE PROPN
OF ADP
PLANTS NOUN
" PUNCT
by ADP
Peter PROPN
Tompkins PROPN
and CCONJ
           SPACE
Christopher PROPN
Bird PROPN
, PUNCT
1973 NUM
: PUNCT
                SPACE
( PUNCT
1 X
) PUNCT
Obtain VERB
a DET
good ADJ
sample NOUN
of ADP
plant NOUN
seeds NOUN
, PUNCT
all DET
of ADP
the DET
same ADJ
                    SPACE
kind NOUN
. PUNCT
  SPACE
[ PUNCT
Some DET
kinds NOUN
might AUX
work VERB
better ADV
that SCONJ
others NOUN
. PUNCT
] PUNCT
               SPACE
( PUNCT
2 NUM
) PUNCT
Divide VERB
the DET
sample NOUN
into ADP
two NUM
groups NOUN
of ADP
equal ADJ
weight NOUN
                    SPACE
and CCONJ
number NOUN
. PUNCT
               SPACE
( PUNCT
3 NUM
) PUNCT
Sprout VERB
one NUM
group NOUN
in ADP
distilled ADJ
water NOUN
on ADP
filter NOUN
paper NOUN
                    SPACE
for ADP
three NUM
or CCONJ
four NUM
weeks NOUN
. PUNCT
               SPACE
( PUNCT
4 NUM
) PUNCT
Separately ADV
incinerate VERB
both DET
groups NOUN
. PUNCT
               SPACE
( PUNCT
5 NUM
) PUNCT
Weigh VERB
the DET
residue NOUN
from ADP
each DET
group NOUN
. PUNCT
  SPACE
[ PUNCT
The DET
residue NOUN
of ADP
                    SPACE
the DET
sprouted ADJ
group NOUN
will AUX
usually ADV
weigh VERB
at ADP
least ADJ
                    SPACE
SEVERAL ADJ
PERCENT NOUN
MORE ADJ
than SCONJ
the DET
other ADJ
group NOUN
. PUNCT
] PUNCT
               SPACE
( PUNCT
6 NUM
) PUNCT
Analyze VERB
quantitatively ADV
the DET
residue NOUN
of ADP
each DET
group NOUN
for ADP
                    SPACE
mineral NOUN
content NOUN
. PUNCT
  SPACE
[ PUNCT
Some DET
of ADP
the DET
mineral NOUN
atoms NOUN
of ADP
the DET
                    SPACE
sprouted VERB
group NOUN
have AUX
been AUX
TRANSMUTED VERB
into ADP
heavier ADJ
                    SPACE
mineral NOUN
elements NOUN
by ADP
FUSING NOUN
with ADP
atoms NOUN
of ADP
oxygen NOUN
, PUNCT
                    SPACE
hydrogen NOUN
, PUNCT
carbon NOUN
, PUNCT
nitrogen NOUN
, PUNCT
etc X
.. PUNCT
] PUNCT
                         SPACE
BIOLOGICAL PROPN
TRANSMUTATIONS NOUN
occur VERB
ROUTINELY PROPN
, PUNCT
even ADV
in ADP
our PRON
           SPACE
own ADJ
bodies NOUN
. PUNCT
                          SPACE
Ingesting VERB
a DET
source NOUN
of ADP
organic ADJ
silicon NOUN
( PUNCT
silicon NOUN
with ADP
           SPACE
carbon NOUN
, PUNCT
such ADJ
as SCONJ
" PUNCT
horsetail NOUN
" PUNCT
extract NOUN
, PUNCT
or CCONJ
radishes NOUN
) PUNCT
can AUX
SPEED PROPN
           SPACE
HEALING PROPN
OF ADP
BROKEN PROPN
BONES NOUN
via ADP
the DET
reaction NOUN
Si PROPN
+ CCONJ
C PROPN
-- PUNCT
> X
Ca NOUN
, PUNCT
( PUNCT
much ADJ
           SPACE
faster ADV
than SCONJ
by ADP
merely ADV
ingesting VERB
the DET
calcium NOUN
directly ADV
) PUNCT
. PUNCT
                           SPACE
Some DET
MINERAL NOUN
DEPOSITS NOUN
in ADP
the DET
ground NOUN
are AUX
formed VERB
by ADP
micro- PROPN
          SPACE
organisms PROPN
FUSING PROPN
together ADV
atoms NOUN
of ADP
silicon NOUN
, PUNCT
carbon NOUN
, PUNCT
nitrogen PROPN
, PUNCT
           SPACE
oxygen NOUN
, PUNCT
hydrogen NOUN
, PUNCT
etc X
.. PUNCT
                          SPACE
The DET
two NUM
reactions NOUN
Si PROPN
+ CCONJ
C NOUN
< X
-- PUNCT
> X
Ca AUX
, PUNCT
by ADP
micro NOUN
- NOUN
organisms PROPN
, PUNCT
           SPACE
cause SCONJ
" PUNCT
STONE PROPN
SICKNESS NOUN
" PUNCT
in ADP
statues NOUN
, PUNCT
building VERB
bricks NOUN
, PUNCT
etc X
.. PUNCT
                           SPACE
The DET
reaction NOUN
N2 PROPN
-- PUNCT
> X
CO PROPN
, PUNCT
catalysed VERB
by ADP
very ADV
hot ADJ
iron NOUN
, PUNCT
           SPACE
creates VERB
a DET
CARBON NOUN
- PUNCT
MONOXIDE NOUN
POISON NOUN
HAZARD NOUN
for ADP
welder PROPN
operators NOUN
           SPACE
and CCONJ
people NOUN
near SCONJ
woodstoves NOUN
( PUNCT
even ADV
properly ADV
sealed VERB
ones NOUN
) PUNCT
. PUNCT
                          SPACE
Some DET
bacteria NOUN
can AUX
even ADV
NEUTRALIZE PROPN
RADIOACTIVITY PROPN
! PUNCT
                          SPACE
ALL DET
OF ADP
THESE DET
THINGS NOUN
AND CCONJ
MORE ADJ
HAPPEN PROPN
, PUNCT
IN ADP
SPITE NOUN
OF ADP
the DET
           SPACE
currently ADV
accepted VERB
" PUNCT
laws NOUN
" PUNCT
of ADP
physics NOUN
, PUNCT
( PUNCT
including VERB
the DET
law NOUN
           SPACE
which PRON
says VERB
that SCONJ
atomic ADJ
fusion NOUN
requires VERB
EXTREMELY PROPN
HIGH PROPN
           SPACE
temperatures NOUN
and CCONJ
pressures NOUN
. PUNCT
) PUNCT
           SPACE
" PUNCT
BIOLOGICAL PROPN
TRANSMUTATIONS PROPN
, PUNCT
And CCONJ
Their PRON
Applications NOUN
In ADP
                SPACE
CHEMISTRY PROPN
, PUNCT
PHYSICS PROPN
, PUNCT
BIOLOGY PROPN
, PUNCT
ECOLOGY PROPN
, PUNCT
MEDICINE PROPN
, PUNCT
                SPACE
NUTRITION PROPN
, PUNCT
AGRIGULTURE PROPN
, PUNCT
GEOLOGY PROPN
" PUNCT
, PUNCT
           SPACE
1st PROPN
Edition PROPN
, PUNCT
           SPACE
by ADP
C. PROPN
Louis PROPN
Kervran PROPN
, PUNCT
Active PROPN
Member PROPN
of ADP
New PROPN
York PROPN
Academy PROPN
of ADP
                SPACE
Science PROPN
, PUNCT
           SPACE
1972 NUM
, PUNCT
           SPACE
163 NUM
Pages PROPN
, PUNCT
Illustrated PROPN
, PUNCT
           SPACE
Swan PROPN
House PROPN
Publishing PROPN
Co. PROPN
, PUNCT
               SPACE
P.O. PROPN
Box PROPN
638 NUM
, PUNCT
                SPACE
Binghamton PROPN
, PUNCT
NY PROPN
  SPACE
13902 NUM
                     SPACE
" PUNCT
THE DET
SECRET PROPN
LIFE PROPN
OF ADP
PLANTS PROPN
" PUNCT
, PUNCT
           SPACE
by ADP
Peter PROPN
Tompkins PROPN
and CCONJ
Christopher PROPN
Bird PROPN
, PUNCT
           SPACE
1973 NUM
, PUNCT
           SPACE
402 NUM
Pages PROPN
, PUNCT
           SPACE
Harper PROPN
& CCONJ
Row PROPN
, PUNCT
                SPACE
New PROPN
York PROPN
          SPACE
[ PUNCT
Chapters PROPN
19 NUM
and CCONJ
20 NUM
are AUX
about ADP
" PUNCT
RADIONICS PROPN
" PUNCT
. PUNCT
  SPACE
Entire ADJ
book NOUN
is AUX
                SPACE
FASCINATING PROPN
! PUNCT
] PUNCT
                         SPACE
For ADP
more ADJ
information NOUN
, PUNCT
answers NOUN
to ADP
your PRON
questions NOUN
, PUNCT
etc X
. PROPN
, PUNCT
           SPACE
please INTJ
consult VERB
my PRON
CITED VERB
SOURCES PROPN
( PUNCT
the DET
two NUM
books NOUN
) PUNCT
. PUNCT
                SPACE
UN PROPN
- PUNCT
altered VERB
REPRODUCTION NOUN
and CCONJ
DISSEMINATION NOUN
of ADP
this DET
           SPACE
IMPORTANT PROPN
Information PROPN
is AUX
ENCOURAGED PROPN
. PUNCT
                                    SPACE
Robert PROPN
E. PROPN
McElwaine PROPN
                                   SPACE
B.S. PROPN
, PUNCT
Physics PROPN
and CCONJ
Astronomy PROPN
, PUNCT
UW PROPN
- PUNCT
ECNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59523From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)It PROPN
just ADV
received VERB
FDA PROPN
approval NOUN
a DET
few ADJ
months NOUN
ago ADV
. PUNCT
I PRON
have AUX
aprescription NOUN
which PRON
I PRON
have AUX
n't PART
had VERB
to PART
use VERB
yet ADV
. PUNCT
I PRON
believe VERB
thecompany ADJ
[ PUNCT
Glaxol PROPN
] PUNCT
is AUX
developing VERB
an DET
oral ADJ
form NOUN
. PUNCT
At ADP
this DET
stage NOUN
, PUNCT
onemust ADV
inject VERB
the DET
drug NOUN
into ADP
one NOUN
's PART
muscle NOUN
. PUNCT
The DET
doctor NOUN
said VERB
thatwithin ADV
30 NUM
minutes NOUN
, PUNCT
the DET
migraine NOUN
is AUX
gone VERB
for ADP
good ADJ
! PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59524From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?I PROPN
cured VERB
mine NOUN
with ADP
Bag PROPN
Balm PROPN
which PRON
I PRON
bought VERB
at ADP
the DET
local ADJ
farmsupply NOUN
store NOUN
. PUNCT
It PRON
is AUX
relatively ADV
cheap ADJ
and CCONJ
works VERB
in ADP
a DET
few ADJ
days NOUN
. PUNCT
The DET
product NOUN
was AUX
developed VERB
to PART
treat VERB
sore ADJ
udders NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59525From NUM
: PUNCT
joshm@yang.earlham.eduSubject PROPN
: PUNCT
Re ADP
: PUNCT
Vasectomy NOUN
: PUNCT
Health PROPN
Effects PROPN
on ADP
Women?In NUM
article NOUN
< X
1993Apr27.110440.5069@nic.csu.net NUM
> X
, PUNCT
eskagerb@nermal.santarosa.edu PROPN
( PUNCT
Eric PROPN
Skagerberg PROPN
) PUNCT
writes VERB
: PUNCT
> X
Does AUX
anyone PRON
know VERB
of ADP
any DET
studies NOUN
done VERB
on ADP
the DET
long ADJ
- PUNCT
term NOUN
health NOUN
effects NOUN
of ADP
a DET
> X
man NOUN
's PART
vasectomy NOUN
on ADP
his PRON
female ADJ
partner NOUN
? PUNCT
> X
> X
I PRON
've AUX
seen VERB
plenty NOUN
of ADP
study NOUN
results NOUN
about ADP
vasectomy PROPN
's PART
effects NOUN
on ADP
men NOUN
's PART
health NOUN
, PUNCT
> X
but CCONJ
what PRON
about ADP
women NOUN
? PUNCT
> X
> X
For ADP
example NOUN
, PUNCT
might AUX
the DET
wife NOUN
of ADP
a DET
vasectomized VERB
man NOUN
become VERB
more ADV
at ADP
risk NOUN
for ADP
, PUNCT
> X
say VERB
, PUNCT
cervical ADJ
cancer NOUN
? PUNCT
  SPACE
Adverse ADJ
effects NOUN
from ADP
sperm NOUN
antibodies NOUN
? PUNCT
  SPACE
Changes NOUN
in ADP
the DET
> X
vagina PROPN
's PART
pH NOUN
? PUNCT
  SPACE
Yeast NOUN
or CCONJ
bacterial ADJ
infections NOUN
? PUNCT
> X
> X
Outside ADP
of ADP
study NOUN
results NOUN
, PUNCT
how ADV
about ADP
informed VERB
speculation?I've NOUN
heard VERB
of ADP
NO PROPN
studies NOUN
, PUNCT
but CCONJ
speculation NOUN
: PUNCT
Why ADV
on ADP
_ DET
earth NOUN
_ PROPN
would AUX
there PRON
be AUX
any DET
effect NOUN
on ADP
women NOUN
's PART
health NOUN
? PUNCT
  SPACE
That DET
's AUX
about ADP
the DET
most ADV
absurd ADJ
idea NOUN
I PRON
've AUX
heard VERB
since SCONJ
Ted PROPN
Kaldis PROPN
's PART
claim NOUN
that SCONJ
no DET
more ADJ
than SCONJ
35,000 NUM
people NOUN
would AUX
march VERB
on ADP
Washington PROPN
. PUNCT
Ok INTJ
, PUNCT
_ DET
one PRON
_ PROPN
point NOUN
: PUNCT
  SPACE
Greatly ADV
reduced ADJ
chance NOUN
of ADP
pregnancy NOUN
. PUNCT
  SPACE
But CCONJ
that DET
's AUX
it.--JoshNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59526From NUM
: PUNCT
cindy@berkp.uadv.uci.edu PROPN
( PUNCT
Cindy PROPN
Windham)Subject VERB
: PUNCT
What PRON
's AUX
a DET
bone NOUN
scan?My PROPN
mother NOUN
has AUX
been AUX
advised VERB
to PART
have AUX
a DET
bone NOUN
scan NOUN
performed VERB
? PUNCT
  SPACE
What PRON
is AUX
thisprocedure NOUN
for ADP
, PUNCT
and CCONJ
is AUX
it PRON
painful ADJ
? PUNCT
  SPACE
She PRON
's AUX
been AUX
having VERB
leg NOUN
and CCONJ
back ADV
painwhich NOUN
her PRON
GP PROPN
said VERB
was AUX
sciatica PROPN
. PUNCT
  SPACE
Her PRON
oncologist NOUN
listened VERB
to ADP
her PRON
symptomsand NOUN
said VERB
that SCONJ
it PRON
did AUX
n't PART
sound VERB
like SCONJ
sciatica PROPN
, PUNCT
and CCONJ
she PRON
should AUX
get AUX
a DET
bonescan NOUN
. PUNCT
  SPACE
- PUNCT
Cindy PROPN
W.Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59527From NUM
: PUNCT
noring@netcom.com X
( PUNCT
Jon PROPN
Noring)Subject VERB
: PUNCT
Re ADP
: PUNCT
Candida(yeast NOUN
) PUNCT
Bloom PROPN
, PUNCT
Fact NOUN
or CCONJ
FictionIn PROPN
article NOUN
banschbach@vms.ocom.okstate.edu PROPN
writes:> PROPN
... PUNCT
I'm PRON
not PART
asking VERB
anyone PRON
here ADV
to PART
buy VERB
into ADP
" PUNCT
The DET
Yeast PROPN
Connection PROPN
" PUNCT
book NOUN
> X
because SCONJ
I PRON
do AUX
n't PART
know VERB
what PRON
's AUX
in ADP
that DET
book NOUN
, PUNCT
plain ADJ
and CCONJ
simple ADJ
. PUNCT
And CCONJ
to PART
be AUX
honest ADJ
> X
with ADP
you PRON
, PUNCT
I PRON
'm AUX
beginning VERB
to PART
wish VERB
that SCONJ
it PRON
was AUX
never ADV
written VERB
. PUNCT
I PRON
agree VERB
with ADP
this DET
consensus NOUN
that SCONJ
it PRON
should AUX
not PART
have AUX
been AUX
written VERB
the DET
wayit NOUN
was AUX
. PUNCT
  SPACE
My PRON
doctor NOUN
- PUNCT
who PRON
claims VERB
to PART
have AUX
introduced VERB
Dr. PROPN
Crook PROPN
to ADP
thepossibility NOUN
of ADP
candida PROPN
overbloom PROPN
causing VERB
diffuse NOUN
symptoms NOUN
way ADV
back ADV
in1961 INTJ
( PUNCT
I PRON
have AUX
no DET
reason NOUN
to PART
doubt VERB
him PRON
on ADP
this DET
) PUNCT
- PUNCT
does AUX
not PART
like VERB
the DET
bookbecause NOUN
1 NUM
) PUNCT
it PRON
makes VERB
too ADV
many ADJ
unfounded ADJ
claims NOUN
, PUNCT
and CCONJ
2 X
) PUNCT
is AUX
horribly ADV
writtenfrom ADP
a DET
scientific ADJ
viewpoint NOUN
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
my PRON
doctor NOUN
has AUX
always ADV
keptan PROPN
open ADJ
mind NOUN
on ADP
the DET
subject NOUN
and CCONJ
does AUX
believe VERB
in ADP
aspects NOUN
of ADP
the DET
" PUNCT
yeastconnection" NOUN
. PUNCT
But CCONJ
, PUNCT
I PRON
believe VERB
there PRON
is AUX
some DET
truth NOUN
to ADP
the DET
book NOUN
. PUNCT
  SPACE
Hopefully ADV
the DET
rightclinical ADJ
studies NOUN
can AUX
be AUX
done VERB
to PART
separate VERB
the DET
fact NOUN
from ADP
the DET
fiction NOUN
. PUNCT
  SPACE
Inthe DET
meantime NOUN
, PUNCT
I PRON
'd AUX
still ADV
encourage VERB
people NOUN
who PRON
have AUX
" PUNCT
incurable ADJ
" PUNCT
chronic NOUN
sinusproblems NOUN
( PUNCT
especially ADV
if SCONJ
they PRON
overused VERB
antibiotics NOUN
) PUNCT
, PUNCT
to PART
find VERB
a DET
doctor NOUN
toadminister ADP
a DET
systemic ADJ
- PUNCT
type NOUN
anti ADJ
- ADJ
fungal ADJ
such ADJ
as SCONJ
itraconazole NOUN
( PUNCT
along ADP
withliver PROPN
panels NOUN
before ADV
, PUNCT
during ADP
and CCONJ
after ADP
treatment NOUN
just ADV
to PART
play VERB
it PRON
safe ADJ
) PUNCT
. PUNCT
  SPACE
Itis VERB
an DET
empirical ADJ
approach NOUN
for ADP
sure ADJ
, PUNCT
but CCONJ
when ADV
all DET
else ADV
fails VERB
, PUNCT
and CCONJ
your PRON
ENTsays NOUN
" PUNCT
sorry INTJ
, PUNCT
you PRON
'll AUX
just ADV
have AUX
to PART
live VERB
with ADP
it PRON
" PUNCT
, PUNCT
it PRON
is AUX
time NOUN
to PART
step VERB
out ADP
andtry NOUN
an DET
empirical ADJ
approach NOUN
backed VERB
up ADP
with ADP
significant ADJ
anecdotal ADJ
evidence(Dr PROPN
. PUNCT
Ivker PROPN
) PUNCT
, PUNCT
supported VERB
by ADP
plausible ADJ
theories NOUN
( PUNCT
outlined VERB
by ADP
Marty PROPN
) PUNCT
. PUNCT
  SPACE
Atthis DET
stage NOUN
you PRON
have AUX
little ADJ
to PART
lose VERB
, PUNCT
particularly ADV
if SCONJ
you PRON
use VERB
itraconazole NOUN
andhave VERB
the DET
proper ADJ
monitoring NOUN
- PUNCT
the DET
health NOUN
risk NOUN
has AUX
been AUX
shown VERB
through ADP
extensiveclinical ADJ
studies NOUN
both DET
in ADP
Europe PROPN
and CCONJ
the DET
U.S. PROPN
to PART
be AUX
very ADV
minimal ADJ
withrelatively ADV
healthy ADJ
( PUNCT
i.e. X
, PUNCT
non ADJ
- ADJ
AIDS PROPN
) PUNCT
patients NOUN
. PUNCT
  SPACE
I PRON
'm AUX
glad ADJ
I PRON
did AUX
this DET
, PUNCT
since SCONJ
Isaw PROPN
remarkable ADJ
results NOUN
after ADP
only ADV
one NUM
week NOUN
on ADP
Sporanox PROPN
( PUNCT
itraconazole NOUN
) PUNCT
. PUNCT
  SPACE
Ofcourse PROPN
, PUNCT
your PRON
mileage NOUN
may AUX
vary VERB
a DET
lot NOUN
- PUNCT
everyone PRON
is AUX
different ADJ
so SCONJ
it PRON
may AUX
notwork VERB
for ADP
you PRON
. PUNCT
  SPACE
Talk VERB
to ADP
your PRON
doctor NOUN
. PUNCT
Jon PROPN
Noring-- ADP
Charter PROPN
Member PROPN
--- PUNCT
> X
> X
> X
  SPACE
INFJ PROPN
Club PROPN
. PUNCT
If SCONJ
you PRON
're AUX
dying VERB
to PART
know VERB
what PRON
INFJ NOUN
means VERB
, PUNCT
be AUX
brave ADJ
, PUNCT
e NOUN
- NOUN
mail VERB
me PRON
, PUNCT
I PRON
'll AUX
send VERB
info.=============================================================================| ADJ
Jon PROPN
Noring PROPN
          SPACE
| PROPN
noring@netcom.com X
        SPACE
| PROPN
                          SPACE
|| PROPN
JKN PROPN
International PROPN
   SPACE
| PROPN
IP PROPN
    SPACE
: PUNCT
192.100.81.100 NUM
   SPACE
| PROPN
FRED PROPN
'S PART
GOURMET NOUN
CHOCOLATE PROPN
|| SYM
1312 NUM
Carlton PROPN
Place PROPN
  SPACE
| PROPN
Phone NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
294 NUM
- SYM
8153 NUM
   SPACE
| ADP
CHIPS PROPN
- PUNCT
World PROPN
's PART
Best ADJ
! PUNCT
    SPACE
|| PUNCT
Livermore PROPN
, PUNCT
CA PROPN
94550 NUM
| PROPN
V PROPN
- PUNCT
Mail NOUN
: PUNCT
( PUNCT
510 NUM
) PUNCT
417 NUM
- SYM
4101 NUM
   SPACE
| PROPN
                          SPACE
|=============================================================================Who PROPN
are AUX
you PRON
? PUNCT
  SPACE
Read VERB
alt.psychology.personality NOUN
! PUNCT
  SPACE
That DET
's AUX
where ADV
the DET
action NOUN
is AUX
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59528From NUM
: PUNCT
picl25@fsphy1.physics.fsu.edu PROPN
( PUNCT
PICL PROPN
account_25)Subject NOUN
: PUNCT
Re ADP
: PUNCT
What PRON
's AUX
a DET
bone NOUN
scan?In PROPN
article NOUN
< X
cindy.349@berkp.uadv.uci.edu NUM
> X
, PUNCT
cindy@berkp.uadv.uci.edu PROPN
( PUNCT
Cindy PROPN
Windham PROPN
) PUNCT
writes VERB
... PUNCT
>My PROPN
mother NOUN
has AUX
been AUX
advised VERB
to PART
have AUX
a DET
bone NOUN
scan NOUN
performed VERB
? PUNCT
  SPACE
What PRON
is AUX
this DET
> X
procedure NOUN
for ADP
, PUNCT
and CCONJ
is AUX
it PRON
painful ADJ
? PUNCT
  SPACE
She PRON
's AUX
been AUX
having VERB
leg NOUN
and CCONJ
back ADJ
pain NOUN
> X
which PRON
her PRON
GP PROPN
said VERB
was AUX
sciatica PROPN
. PUNCT
  SPACE
Her PRON
oncologist NOUN
listened VERB
to ADP
her PRON
symptoms NOUN
> X
and CCONJ
said VERB
that SCONJ
it PRON
did AUX
n't PART
sound VERB
like SCONJ
sciatica PROPN
, PUNCT
and CCONJ
she PRON
should AUX
get AUX
a DET
bone NOUN
> X
scan NOUN
. PUNCT
Do AUX
I PRON
assume VERB
correctly ADV
from ADP
the DET
above ADJ
aricle NOUN
that SCONJ
your PRON
mother NOUN
has AUX
a DET
historyyof NOUN
cancer NOUN
? PUNCT
  SPACE
I PRON
was AUX
just ADV
wondeing VERB
, PUNCT
since SCONJ
you PRON
mentioned VERB
thhat ADP
she PRON
has AUX
anoncologist NOUN
. PUNCT
A DET
bone NOUN
scan NOUN
is AUX
a DET
nuclear ADJ
scan NOUN
. PUNCT
  SPACE
Thperson PROPN
receivving VERB
the DET
scan PROPN
is AUX
gven VERB
adose NOUN
of ADP
a DET
radioactive ADJ
tracer NOUN
, PUNCT
and CCONJ
an DET
imaging VERB
device NOUN
is AUX
used VERB
to PART
track VERB
thedistribution NOUN
of ADP
the DET
tracer NOUN
wwithin VERB
the DET
body NOUN
. PUNCT
  SPACE
The DET
tracer NOUN
is AUX
usually ADV
givenintravenously ADV
. PUNCT
  SPACE
( PUNCT
IV PROPN
) PUNCT
This DET
means VERB
that SCONJ
the DET
physician NOUN
or CCONJ
his PRON
assistant NOUN
willinsert NOUN
a DET
needle NOUN
into ADP
a DET
vein NOUN
and CCONJ
inject NOUN
  SPACE
medicine NOUN
into ADP
the DET
vein NOUN
. PUNCT
After ADP
a DET
few ADJ
minutes NOUN
has AUX
passed VERB
for ADP
the DET
tracer NOUN
to PART
circulate VERB
through ADP
thebody NOUN
, PUNCT
the DET
person NOUN
is AUX
scanned VERB
with ADP
an DET
imaging VERB
device NOUN
to PART
detect VERB
high ADJ
concentrations NOUN
of ADP
the DET
tracer NOUN
. PUNCT
  SPACE
The DET
radiologist NOUN
or CCONJ
doctor NOUN
is AUX
looking VERB
forareas NOUN
that PRON
take VERB
up ADP
more ADJ
of ADP
the DET
radioactive ADJ
tracer NOUN
or CCONJ
less ADJ
of ADP
it PRON
. PUNCT
As ADV
far ADV
as SCONJ
pain NOUN
, PUNCT
the DET
only ADJ
pain NOUN
comes VERB
from ADP
the DET
needle NOUN
stick NOUN
that PRON
is AUX
requiredto PROPN
start VERB
the DET
IV PROPN
line NOUN
. PUNCT
What PRON
the DET
doctor NOUN
is AUX
probably ADV
looking VERB
for ADP
are AUX
changes NOUN
in ADP
the DET
bones NOUN
that PRON
mayhave VERB
resulted VERB
from ADP
cancer NOUN
. PUNCT
  SPACE
This DET
is AUX
also ADV
why ADV
I PRON
was AUX
wondering VERB
if SCONJ
your PRON
motherhas NOUN
had AUX
cancer NOUN
, PUNCT
since SCONJ
cancer NOUN
can AUX
spread VERB
from ADP
one NUM
site NOUN
and CCONJ
wind NOUN
up ADP
in ADP
theskeletal ADJ
system NOUN
. PUNCT
I PRON
hope VERB
I PRON
have AUX
answered VERB
some DET
of ADP
your PRON
questions NOUN
. PUNCT
  SPACE
Feel VERB
free ADJ
to ADP
e NOUN
- NOUN
mail VERB
me PRON
ifyou NOUN
have AUX
more ADJ
questions NOUN
related VERB
to ADP
the DET
bone NOUN
scan NOUN
or CCONJ
anything PRON
else ADV
relatedto VERB
your PRON
mother NOUN
's PART
care NOUN
. PUNCT
  SPACE
I PRON
'm AUX
a DET
newly ADV
graduated VERB
nurse NOUN
, PUNCT
and CCONJ
I PRON
enjoy VERB
sharinginformation NOUN
with ADP
other ADJ
people NOUN
to PART
help VERB
them PRON
understand VERB
things NOUN
that PRON
they PRON
didnot ADV
know VERB
about ADP
before ADV
. PUNCT
My PRON
thoughts NOUN
are AUX
with ADP
you PRON
both DET
. PUNCT
Elisa PROPN
B. PROPN
Hanson PROPN
   SPACE
( PUNCT
picl25@fsphy1.physics.fsu.edu)"The NUM
chief ADJ
function NOUN
of ADP
the DET
body NOUN
is AUX
to PART
carry VERB
the DET
head NOUN
around ADV
. PUNCT
" PUNCT
                                        SPACE
--Albert PUNCT
EinsteinNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59529From NUM
: PUNCT
houle@nmt.edu NUM
( PUNCT
Paul PROPN
Houle)Subject PROPN
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aid NOUN
	 SPACE
For ADP
a DET
very ADV
long ADJ
time NOUN
I PRON
've AUX
had VERB
a DET
problem NOUN
with ADP
feeling NOUN
really ADV
awfulwhen ADV
I PRON
try VERB
to PART
get AUX
up ADP
in ADP
the DET
morning NOUN
. PUNCT
  SPACE
My PRON
sleep NOUN
latency NOUN
at ADP
night NOUN
is AUX
alsopretty PROPN
long ADV
, PUNCT
  SPACE
ranging VERB
from ADP
30 NUM
min NOUN
to ADP
an DET
hour NOUN
. PUNCT
  SPACE
I PRON
get VERB
about ADV
7 NUM
hours NOUN
ofbedtime NOUN
( PUNCT
maybe ADV
6 NUM
of ADP
actual ADJ
sleep NOUN
) PUNCT
a DET
night NOUN
and CCONJ
more ADJ
on ADP
the DET
weekends NOUN
. PUNCT
  SPACE
Iwill PROPN
spend VERB
two NUM
or CCONJ
three NUM
hours NOUN
laying VERB
in ADP
bed NOUN
after ADP
this DET
if SCONJ
I PRON
can AUX
, PUNCT
  SPACE
becauseI PROPN
feel VERB
so ADV
tired ADJ
when ADV
I PRON
wake VERB
up ADP
, PUNCT
  SPACE
even ADV
more ADV
tired ADJ
than SCONJ
I PRON
was AUX
when ADV
Iwent PROPN
to ADP
bed NOUN
, PUNCT
  SPACE
which PRON
is AUX
usually ADV
too ADV
tired ADJ
to ADP
work NOUN
. PUNCT
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
recently ADV
had AUX
a DET
really ADV
bad ADJ
flu NOUN
, PUNCT
  SPACE
so ADV
I PRON
called VERB
a DET
friend NOUN
toget VERB
me PRON
some DET
cough NOUN
syrup NOUN
with ADP
both CCONJ
an DET
expectorant ADJ
and CCONJ
a DET
nasal NOUN
decongestant;but CCONJ
he PRON
got VERB
Vicks NOUN
formula NOUN
44 NUM
M NOUN
which PRON
has AUX
everything PRON
but SCONJ
an DET
expectorant NOUN
. PUNCT
  SPACE
SoI PROPN
used VERB
that SCONJ
anyway ADV
, PUNCT
  SPACE
and CCONJ
the DET
three NUM
nights NOUN
I PRON
used VERB
it PRON
, PUNCT
  SPACE
I PRON
fell VERB
asleep ADJ
rapidlyand PROPN
felt VERB
that SCONJ
I PRON
got VERB
really ADV
good ADJ
quality NOUN
sleep NOUN
-- PUNCT
that ADV
is ADV
, PUNCT
  SPACE
I PRON
actuallyfelt VERB
refreshed VERB
the DET
next ADJ
morning NOUN
. PUNCT
	 SPACE
So ADV
, PUNCT
  SPACE
I PRON
am AUX
now ADV
trying VERB
to PART
look VERB
into ADP
, PUNCT
  SPACE
both DET
in ADP
the DET
literature NOUN
andexperimentally ADV
, PUNCT
  SPACE
the DET
use NOUN
of ADP
antihistamines NOUN
as SCONJ
sleep PROPN
aids PROPN
, PUNCT
  SPACE
since SCONJ
I PRON
ampresuming VERB
that SCONJ
it PRON
was AUX
the DET
antihistamine NOUN
that PRON
caused VERB
the DET
effect NOUN
. PUNCT
  SPACE
Theantihistamine PROPN
in ADP
Vicks PROPN
formula NOUN
44 NUM
is AUX
Chloriphenamine ADJ
maleate NOUN
, PUNCT
  SPACE
so ADV
I PRON
boughtsome VERB
generic ADJ
tablets NOUN
of ADP
that DET
, PUNCT
  SPACE
and CCONJ
tried VERB
one NUM
last ADJ
night NOUN
and CCONJ
didn'tnotice PUNCT
any DET
improvement NOUN
. PUNCT
  SPACE
I PRON
might AUX
try VERB
one NUM
with ADP
a DET
little ADJ
alcohol NOUN
( PUNCT
about1 DET
beer NOUN
) PUNCT
to PART
see VERB
if SCONJ
it PRON
is AUX
a DET
synergism NOUN
effect NOUN
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
library NOUN
researchseems NOUN
to PART
show VERB
that SCONJ
Benadryl PROPN
is AUX
the DET
antihistamine NOUN
with ADP
the DET
strongestsedative ADJ
effect NOUN
of ADP
what PRON
is AUX
availible ADJ
OTC PROPN
. PUNCT
  SPACE
So ADV
I PRON
might AUX
also ADV
buy VERB
a DET
genericform NOUN
of ADP
that DET
and CCONJ
try VERB
that DET
; PUNCT
  SPACE
the DET
PDR PROPN
seems VERB
to PART
suggest VERB
that SCONJ
50 NUM
mg PROPN
is AUX
a DET
gooddosage NOUN
level NOUN
to PART
try VERB
. PUNCT
	 SPACE
For ADP
other ADJ
medical ADJ
information NOUN
, PUNCT
  SPACE
I PRON
have AUX
allergies NOUN
but CCONJ
rarely ADV
havean ADJ
allergic ADJ
reaction NOUN
living VERB
in ADP
New PROPN
Mexico PROPN
. PUNCT
  SPACE
I PRON
also ADV
have AUX
chronically ADV
dryeyes ADV
, PUNCT
  SPACE
which PRON
get VERB
horrible ADJ
if SCONJ
I PRON
try VERB
to PART
use VERB
most ADV
underarm ADJ
deoderants NOUN
. PUNCT
  SPACE
I PRON
didguess VERB
that SCONJ
my PRON
problem NOUN
might AUX
be AUX
caused VERB
by ADP
hypoglycemia NOUN
, PUNCT
  SPACE
so ADV
I PRON
made VERB
somechanges NOUN
in ADP
my PRON
diet NOUN
consistent NOUN
with ADP
that DET
, PUNCT
  SPACE
and CCONJ
it PRON
did AUX
n't PART
help VERB
, PUNCT
  SPACE
so ADV
Iwent PROPN
back ADV
to ADP
a DET
normal ADJ
diet NOUN
( PUNCT
Pretty ADV
diverse ADJ
, PUNCT
  SPACE
also ADV
taking VERB
vitamin NOUN
supplements NOUN
) PUNCT
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
advice NOUN
for ADP
the DET
use NOUN
ofantihistamines NOUN
as SCONJ
sleep NOUN
aids PROPN
, PUNCT
  SPACE
and CCONJ
if SCONJ
there PRON
are AUX
any DET
dangers NOUN
of ADP
such ADJ
use(Seems PUNCT
safe ADJ
to ADP
me PRON
since SCONJ
they PRON
are AUX
used VERB
chronically ADV
for ADP
allergies NOUN
bymillions NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
want VERB
to PART
try VERB
BZs NOUN
, PUNCT
  SPACE
because SCONJ
BZ PROPN
addiction NOUN
seems VERB
to PART
bea VERB
serious ADJ
threat NOUN
, PUNCT
  SPACE
and CCONJ
from ADP
what PRON
I PRON
hear VERB
, PUNCT
  SPACE
BZ PROPN
sleep NOUN
quality NOUN
is AUX
not PART
good ADJ
, PUNCT
whereas SCONJ
antihistamine ADJ
sleep NOUN
quality NOUN
seems VERB
to PART
be AUX
better ADJ
for ADP
me PRON
. PUNCT
  SPACE
I PRON
havetried VERB
some DET
dietary ADJ
tryptophan ADJ
loading NOUN
stuff NOUN
, PUNCT
  SPACE
and CCONJ
that SCONJ
also ADV
seems VERB
tolower NOUN
sleep NOUN
quality NOUN
, PUNCT
  SPACE
I PRON
seem VERB
to PART
wake VERB
up ADP
around ADV
4:00 NUM
or CCONJ
so ADV
and CCONJ
be AUX
in ADP
somekind NOUN
of ADP
mental ADJ
haze NOUN
until ADP
7:00 NUM
or CCONJ
8:00 NUM
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
I PRON
would AUX
be AUX
interested ADJ
inany ADJ
other ADJ
advice NOUN
for ADP
helping VERB
my PRON
problem NOUN
. PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
've AUX
already ADV
triedmany ADJ
of ADP
the DET
non ADJ
- ADJ
pharmacological ADJ
solutions)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59530From NUM
: PUNCT
goldstej@bag_end.pad.otc.com.au NOUN
( PUNCT
Johnathon PROPN
Goldstein)Subject PROPN
: PUNCT
Bates NOUN
eye NOUN
- PUNCT
exercisesHave PROPN
I PRON
mailed VERB
this DET
to ADP
the DET
correct ADJ
newsgroup(s PROPN
) PUNCT
? PUNCT
Are AUX
there PRON
other ADJ
newsgroup(s)which NOUN
cover VERB
the DET
following VERB
topic?--------Has NUM
anyone PRON
with ADP
myopia NOUN
( PUNCT
short ADJ
- PUNCT
sightedness NOUN
) PUNCT
ever ADV
done VERB
the DET
Bates PROPN
eye NOUN
- PUNCT
exercises?If NOUN
so ADV
, PUNCT
could AUX
you PRON
please VERB
e NOUN
- NOUN
mail VERB
me PRON
the DET
following VERB
information NOUN
: PUNCT
	 SPACE
- PUNCT
age NOUN
and CCONJ
state NOUN
of ADP
sight NOUN
before ADP
exercises NOUN
were AUX
commenced VERB
; PUNCT
	 SPACE
- PUNCT
type NOUN
, PUNCT
frequency NOUN
, PUNCT
and CCONJ
length NOUN
of ADP
time NOUN
spent VERB
on ADP
exercises NOUN
performed VERB
; PUNCT
	 SPACE
- PUNCT
improvements NOUN
noticed VERB
immediately ADV
after ADP
performing VERB
exercises NOUN
; PUNCT
	 SPACE
- PUNCT
length NOUN
of ADP
period NOUN
before ADP
any DET
improved ADJ
sight NOUN
deteriorates;Thanks NOUN
in ADP
advance NOUN
for ADP
any DET
replies NOUN
. PUNCT
I PRON
'll AUX
summarise VERB
and CCONJ
post VERB
results NOUN
if SCONJ
there'senough NUM
interest NOUN
. PUNCT
- PUNCT
Jonathan PROPN
Goldstein-- NOUN
Jonathan PROPN
Goldstein PROPN
       SPACE
goldstej@nms.otc.com.au NOUN
       SPACE
+61 PROPN
2 NUM
339 NUM
3683Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59531From NUM
: PUNCT
tas@pegasus.com PROPN
( PUNCT
Len PROPN
Howard)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
10030@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
stephen.735806195@mont PROPN
> PROPN
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>:When ADV
I PRON
was AUX
a DET
school NOUN
boy NOUN
, PUNCT
my PRON
biology NOUN
teacher NOUN
told VERB
us PRON
of ADP
an DET
incident>:in NOUN
which PRON
a DET
couple NOUN
were AUX
very ADV
passionate ADJ
without ADP
actually ADV
having>:sexual NUM
intercourse NOUN
. PUNCT
  SPACE
Somehow ADV
the DET
girl NOUN
became VERB
pregnent ADJ
as SCONJ
sperm>:cells NOUN
made VERB
their PRON
way NOUN
to ADP
her PRON
through ADP
the DET
clothes NOUN
via ADP
persperation.>:Was NOUN
my PRON
biology NOUN
teacher NOUN
misinforming VERB
us PRON
, PUNCT
or CCONJ
do AUX
such ADJ
incidents NOUN
actually>:occur?>>Sounds VERB
to ADP
me PRON
like SCONJ
someone PRON
was AUX
pulling VERB
your PRON
leg NOUN
. PUNCT
  SPACE
There PRON
is AUX
only ADV
one NUM
way NOUN
for ADP
> X
pregnancy NOUN
to PART
occur VERB
: PUNCT
intercourse NOUN
. PUNCT
  SPACE
These DET
days NOUN
however ADV
there PRON
is AUX
also ADV
> X
artificial ADJ
insemination NOUN
and CCONJ
implantation NOUN
techniques NOUN
, PUNCT
but CCONJ
we PRON
're AUX
speaking VERB
of>"natural PUNCT
" PUNCT
acts VERB
here ADV
. PUNCT
  SPACE
It PRON
is AUX
possible ADJ
for ADP
pregnancy NOUN
to PART
occur VERB
if SCONJ
semen PROPN
is AUX
> X
deposited VERB
just ADV
outside ADV
of ADP
the DET
vagina PROPN
( PUNCT
i.e. X
coitus PROPN
interruptus PROPN
) PUNCT
, PUNCT
but CCONJ
that's ADP
> X
about ADV
at ADV
far ADV
as SCONJ
you PRON
can AUX
get AUX
. PUNCT
  SPACE
Through ADP
clothes NOUN
-- PUNCT
no DET
way NOUN
. PUNCT
  SPACE
Better ADV
go VERB
talk VERB
> X
to ADP
your PRON
biology NOUN
teacher.>= NOUN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= PUNCT
Well INTJ
, PUNCT
now ADV
, PUNCT
Doc PROPN
, PUNCT
I PRON
sure ADV
would AUX
not PART
want VERB
to PART
bet VERB
my PRON
life NOUN
on ADP
those DET
littlecritters NOUN
not PART
being AUX
able ADJ
to PART
get AUX
thru ADP
one NUM
layer NOUN
of ADP
sweat NOUN
- PUNCT
soaked VERB
cottonon NOUN
their PRON
way NOUN
to PART
do AUX
their PRON
programmed VERB
task NOUN
. PUNCT
  SPACE
Infrequent PROPN
, PUNCT
yes INTJ
, PUNCT
unlikely ADJ
, PUNCT
yes INTJ
, PUNCT
but CCONJ
impossible ADJ
? PUNCT
  SPACE
I PRON
learned VERB
a DET
long ADJ
time NOUN
ago ADV
never ADV
to PART
say VERB
never ADV
inmedicine VERB
   SPACE
< X
g NOUN
> X
                        SPACE
Len PROPN
Howard PROPN
MD PROPN
, PUNCT
FACOGNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59532From NUM
: PUNCT
davec@ecst.csuchico.edu PROPN
( PUNCT
Dave PROPN
Childs)Subject PROPN
: PUNCT
Dental PROPN
Fillings NOUN
questionI PROPN
have AUX
been AUX
hearing VERB
bad ADJ
thing NOUN
about ADP
amalgam PROPN
dental ADJ
fillings NOUN
. PUNCT
  SPACE
Some DET
saythe ADJ
lead/ PROPN
mercury NOUN
leeches NOUN
into ADP
your PRON
system NOUN
and CCONJ
this DET
is AUX
bad ADJ
. PUNCT
  SPACE
And CCONJ
I PRON
haverecently ADV
heard VERB
that SCONJ
there PRON
is AUX
some DET
suspicion NOUN
that SCONJ
the DET
mercury NOUN
is AUX
a DET
breedingground NOUN
for ADP
bacteria NOUN
that PRON
will AUX
be AUX
resistant ADJ
to ADP
antibiotics NOUN
. PUNCT
   SPACE
My PRON
dentist NOUN
wants VERB
to PART
use VERB
an DET
amalgam NOUN
filling VERB
for ADP
me PRON
in ADP
a DET
place NOUN
where ADV
I PRON
havetwo VERB
cavaties NOUN
in ADP
one NUM
tooth NOUN
and CCONJ
wants VERB
to PART
use VERB
one NUM
filling VERB
to PART
cover VERB
both DET
. PUNCT
He PRON
says VERB
that SCONJ
composite ADJ
filling NOUN
do AUX
n't PART
hold VERB
up ADP
well ADV
when ADV
they PRON
are AUX
large ADJ
. PUNCT
So ADV
, PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
are AUX
any DET
other ADJ
choices NOUN
besides SCONJ
amalgamand PROPN
composite PROPN
. PUNCT
  SPACE
And CCONJ
, PUNCT
should AUX
I PRON
really ADV
even ADV
be AUX
worried ADJ
about ADP
amalgam NOUN
? PUNCT
  SPACE
Iheard VERB
that SCONJ
some DET
scandanavian ADJ
country NOUN
does AUX
not PART
even ADV
use VERB
them PRON
any DET
more- NOUN
is AUX
this DET
true ADJ
. PUNCT
Any DET
information NOUN
you PRON
can AUX
give VERB
me PRON
will AUX
be AUX
greatly ADV
appreciated VERB
. PUNCT
Thanks!Dave PROPN
ChildsNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59533From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidI'm ADV
interested ADJ
in ADP
this DET
from ADP
the DET
other ADJ
angle NOUN
: PUNCT
what PRON
antihistamine NOUN
can AUX
Itake PROPN
at ADP
bedtime NOUN
for ADP
relief NOUN
of ADP
allergies NOUN
, PUNCT
with ADP
the DET
assurance NOUN
that SCONJ
itssedative ADJ
effect NOUN
will AUX
have AUX
completely ADV
worn VERB
off ADP
by ADP
the DET
next ADJ
morning NOUN
, PUNCT
butpreferably ADV
with ADP
the DET
anti ADJ
- ADJ
allergy ADJ
effect NOUN
lasting VERB
longer?I'm PROPN
thinking NOUN
mainly ADV
of ADP
OTC PROPN
products NOUN
. PUNCT
Which PRON
has AUX
the DET
least ADJ
duration NOUN
ofsedative NOUN
action NOUN
: PUNCT
Benadryl PROPN
, PUNCT
Chlor PROPN
- PUNCT
Trimeton PROPN
, PUNCT
or CCONJ
what?Note NOUN
that SCONJ
I PRON
'm AUX
asking VERB
about ADP
duration NOUN
, PUNCT
not PART
intensity.-- ADV
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59534From NUM
: PUNCT
kcarver@dante.nmsu.edu PROPN
( PUNCT
Kenneth PROPN
Carver)Subject PROPN
: PUNCT
Isolation NOUN
amplifiers NOUN
for ADP
EEG PROPN
/ SYM
ECG NOUN
* PUNCT
cheap*I NOUN
have AUX
several ADJ
isolation NOUN
amplifier NOUN
boards NOUN
that PRON
are AUX
the DET
ideal NOUN
interfacefor ADP
EEG PROPN
and CCONJ
ECG NOUN
. PUNCT
  SPACE
Isolation NOUN
is AUX
essential ADJ
for ADP
safety NOUN
when ADV
connectingline NOUN
- PUNCT
powered VERB
equipment NOUN
to ADP
electrodes NOUN
on ADP
the DET
body NOUN
. PUNCT
  SPACE
These DET
boardsincorporate VERB
the DET
Burr PROPN
- PUNCT
Brown PROPN
3656 NUM
isolation NOUN
module NOUN
that PRON
currently ADV
sellsfor VERB
$ SYM
133 NUM
, PUNCT
plus CCONJ
other ADJ
op NOUN
amps NOUN
to PART
produce VERB
an DET
overall ADJ
voltage NOUN
gain VERB
of350 PROPN
- PUNCT
400 NUM
. PUNCT
  SPACE
They PRON
are AUX
like SCONJ
new ADJ
and CCONJ
guaranteed VERB
good NOUN
. PUNCT
  SPACE
$ SYM
20 NUM
postpaid NOUN
, PUNCT
schematic ADJ
included VERB
. PUNCT
  SPACE
Please INTJ
email VERB
me PRON
for ADP
more ADJ
data.--Ken PROPN
CarverNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59535From NUM
: PUNCT
per-arne.melander@histocel.umu.se NOUN
( PUNCT
Per ADP
- PUNCT
Arne PROPN
Melander)Subject NUM
: PUNCT
HELP NOUN
- PUNCT
purification NOUN
of ADP
neutrophils NOUN
from ADP
mice NOUN
. PUNCT
Hello!I PROPN
need VERB
a DET
technique NOUN
for ADP
separation NOUN
of ADP
polymorphonuclear NOUN
neutrophils NOUN
( PUNCT
PMN)from ADP
the DET
peripheral ADJ
blood NOUN
of ADP
mice NOUN
. PUNCT
Because SCONJ
of ADP
the DET
low ADJ
PMN PROPN
: PUNCT
Lymphocyte PROPN
ratio(approx PROPN
. PROPN
20:80 NUM
) PUNCT
its PRON
not PART
just ADV
as ADV
easy ADJ
as SCONJ
the DET
corresponding ADJ
technique NOUN
usedwith PROPN
human ADJ
blood NOUN
. PUNCT
																																										 SPACE
Yours NOUN
, PUNCT
                                          													  SPACE
Per ADP
- PUNCT
Arne PROPN
MelanderPs NOUN
. PUNCT
My PRON
E NOUN
- NOUN
mail NOUN
address NOUN
is AUX
: PUNCT
per-arne.melander@histocel.umu.se ADJ
. PUNCT
DS PROPN
. PUNCT
       SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59536From NUM
: PUNCT
nyeda@cnsvax.uwec.edu PROPN
( PUNCT
David PROPN
Nye)Subject NUM
: PUNCT
Re ADP
: PUNCT
Sumatripton PROPN
( PUNCT
spelling?)[reply NUM
to ADP
roxannen@cruzio.santa-cruz.ca.u VERB
] PUNCT
> X
I PRON
recently ADV
heard VERB
of ADP
some DET
testing NOUN
of ADP
a DET
new ADJ
migraine ADJ
drug NOUN
called VERB
> PROPN
sumatripton PROPN
( PUNCT
I PRON
have AUX
no DET
idea NOUN
of ADP
the DET
actual ADJ
spelling NOUN
) PUNCT
that PRON
supposedly ADV
> X
utilizes VERB
a DET
chemical NOUN
that PRON
trips VERB
neuro PROPN
- PUNCT
transmitters PROPN
. PUNCT
  SPACE
My PRON
mother NOUN
has AUX
> X
regular ADJ
migraines NOUN
and CCONJ
nothing PRON
seems VERB
to PART
help VERB
- PUNCT
does AUX
anyone PRON
know VERB
anything PRON
> X
about ADP
this DET
new ADJ
drug NOUN
? PUNCT
  SPACE
Is AUX
it PRON
in ADP
a DET
testing NOUN
phaze NOUN
or CCONJ
anywhere ADV
near SCONJ
> X
approval NOUN
? PUNCT
  SPACE
Does AUX
it PRON
seem VERB
to PART
be AUX
working VERB
? PUNCT
I PRON
just ADV
got VERB
back ADV
from ADP
the DET
American PROPN
Academy PROPN
of ADP
Neurology PROPN
annual ADJ
meeting NOUN
, PUNCT
where ADV
the DET
consensus NOUN
was AUX
that SCONJ
sumatriptan ADJ
( PUNCT
Imitrex PROPN
) PUNCT
has AUX
no DET
advantagesover NOUN
DHE-45 NUM
nasal ADJ
spray NOUN
, PUNCT
which PRON
is AUX
much ADV
less ADV
expensive ADJ
, PUNCT
has AUX
fewer ADJ
sideeffects NOUN
, PUNCT
is AUX
as ADV
effective ADJ
, PUNCT
and CCONJ
works VERB
more ADV
quickly ADV
( PUNCT
5 NUM
- SYM
10 NUM
minutes NOUN
vs. ADP
30).Besides NUM
, PUNCT
who PRON
wants VERB
to PART
give VERB
themselves PRON
a DET
shot NOUN
( PUNCT
sumatriptan PROPN
) PUNCT
when ADV
a DET
nasalspray NOUN
works VERB
? PUNCT
  SPACE
DHE PROPN
nasal ADJ
spray NOUN
is AUX
not PART
widely ADV
available ADJ
yet ADV
-- PUNCT
it PRON
has AUX
tobe NOUN
mail NOUN
ordered VERB
from ADP
one NUM
of ADP
a DET
few ADJ
pharmacies NOUN
in ADP
the DET
country NOUN
-- PUNCT
but CCONJ
mostneurologists NOUN
now ADV
know VERB
about ADP
it PRON
and CCONJ
know VERB
how ADV
to PART
order VERB
it PRON
. PUNCT
David PROPN
Nye PROPN
( PUNCT
nyeda@cnsvax.uwec.edu PROPN
) PUNCT
. PUNCT
  SPACE
Midelfort PROPN
Clinic PROPN
, PUNCT
Eau PROPN
Claire PROPN
WIThis PROPN
is AUX
patently ADV
absurd ADJ
; PUNCT
but CCONJ
whoever PRON
wishes VERB
to PART
become VERB
a DET
philosophermust NOUN
learn VERB
not PART
to PART
be AUX
frightened VERB
by ADP
absurdities NOUN
. PUNCT
-- PUNCT
Bertrand PROPN
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59537From NUM
: PUNCT
barkdoll@lepomis.psych.upenn.edu NOUN
( PUNCT
Edwin PROPN
Barkdoll)Subject NUM
: PUNCT
Re ADP
: PUNCT
thermogenicsIn PROPN
article NOUN
< X
80389@cup.portal.com NUM
> X
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes:>First VERB
off ADP
, PUNCT
if SCONJ
I PRON
'm AUX
not PART
mistaken ADJ
, PUNCT
only ADV
hibernating VERB
animals NOUN
have AUX
brown ADJ
fat,>not NOUN
humans NOUN
. PUNCT
	 SPACE
Human ADJ
infants NOUN
do AUX
have AUX
bown VERB
fat ADJ
deposits NOUN
while SCONJ
adult NOUN
humans NOUN
arebelieved VERB
not PART
to PART
have AUX
brown ADJ
fat NOUN
. PUNCT
	 SPACE
Also ADV
while SCONJ
brown ADJ
fat NOUN
may AUX
play VERB
an DET
important ADJ
role NOUN
in ADP
rousinghibernators NOUN
, PUNCT
it PRON
is AUX
definitely ADV
not PART
limited VERB
to ADP
hibernating NOUN
animals NOUN
-- PUNCT
itis VERB
a DET
common ADJ
energy NOUN
source NOUN
for ADP
nonshivering VERB
thermogenesis.-- PROPN
Edwin PROPN
Barkdollbarkdoll@lepomis.psych.upenn.edueb3@world.std.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59538From NUM
: PUNCT
jlecher@pbs.orgSubject X
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?In PROPN
article NOUN
< X
1rmn0c$83v@morrow.stanford.edu PROPN
> X
, PUNCT
mou@nova1.stanford.edu PROPN
( PUNCT
Alex PROPN
Mou PROPN
) PUNCT
writes VERB
: PUNCT
> X
Hi INTJ
all DET
, PUNCT
> X
> X
My PRON
skin NOUN
is AUX
very ADV
dry ADJ
in ADP
general ADJ
. PUNCT
But CCONJ
the DET
most ADV
serious ADJ
part NOUN
is AUX
located VERB
> X
from ADP
knees NOUN
down ADV
. PUNCT
The DET
skin NOUN
there PRON
looks VERB
like SCONJ
segmented VERB
. PUNCT
The DET
segmentation NOUN
> X
actually ADV
happens VERB
beneath ADP
the DET
skin NOUN
. PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
> X
cure NOUN
for ADP
this DET
. PUNCT
> X
> X
At ADP
the DET
supermarkets NOUN
or CCONJ
pharmacies NOUN
, PUNCT
there PRON
are AUX
quite DET
a DET
lot NOUN
of ADP
stuffs NOUN
for ADP
> X
dry ADJ
skins NOUN
, PUNCT
but CCONJ
what PRON
to PART
chose VERB
? PUNCT
> X
> X
Thanks NOUN
in ADP
advance NOUN
for ADP
all DET
advices NOUN
and CCONJ
hints NOUN
. PUNCT
> X
> X
Reply PROPN
by ADP
email NOUN
preferred VERB
. PUNCT
> X
> X
Alex PROPN
> X
> X
As SCONJ
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
just ADV
saw VERB
a DET
dermatologist NOUN
the DET
other ADJ
day NOUN
, PUNCT
and CCONJ
while SCONJ
I PRON
was AUX
there ADV
, PUNCT
I PRON
asked VERB
him PRON
about ADP
dry ADJ
skin NOUN
. PUNCT
I PRON
'd AUX
been AUX
spending VERB
a DET
small ADJ
fortuneon NOUN
various ADJ
creams NOUN
, PUNCT
lotions NOUN
, PUNCT
and CCONJ
other ADJ
dry ADJ
skin NOUN
treatments NOUN
. PUNCT
He PRON
said VERB
all DET
I PRON
needed VERB
was AUX
a DET
large ADJ
jar NOUN
of ADP
vaseline NOUN
. PUNCT
Soak VERB
in ADP
a DET
lukewarm ADJ
tubof NOUN
water NOUN
for ADP
10 NUM
minutes NOUN
( PUNCT
ONLY ADV
10 NUM
minutes NOUN
! PUNCT
) PUNCT
then ADV
massage VERB
in ADP
the DET
vaseline NOUN
, PUNCT
to PART
trap VERB
the DET
moisture NOUN
in ADP
. PUNCT
That DET
will AUX
help VERB
. PUNCT
I PRON
have AUX
n't PART
tried VERB
it PRON
yet ADV
, PUNCT
but CCONJ
youcan PROPN
bet PROPN
I PRON
will AUX
. PUNCT
The DET
hard ADJ
part NOUN
will AUX
be AUX
finding VERB
the DET
time NOUN
to PART
rub VERB
in ADP
thevaseline NOUN
properly ADV
. PUNCT
If SCONJ
it PRON
's AUX
not PART
done VERB
right ADV
, PUNCT
you PRON
remain VERB
greasy NOUN
and CCONJ
stickto VERB
your PRON
clothes NOUN
. PUNCT
Try VERB
it PRON
. PUNCT
It PRON
's AUX
got VERB
to PART
be AUX
cheaper ADJ
then ADV
spending VERB
$ SYM
30 NUM
for ADP
8 NUM
oz PROPN
. PUNCT
of ADP
' PUNCT
natural'lotion X
. PUNCT
JaneNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59539Subject NUM
: PUNCT
Re ADP
: PUNCT
EarwaxFrom PROPN
: PUNCT
nicholson_s@kosmos.wcc.govt.nzIn X
article NOUN
< X
stephen.736092732@mont ADJ
> X
, PUNCT
stephen@mont.cs.missouri.edu PRON
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes:>What DET
is AUX
the DET
healthiest ADJ
way NOUN
to PART
deal VERB
with ADP
earwax PROPN
? PUNCT
  SPACE
Should AUX
one PRON
just ADV
leave VERB
> X
it PRON
in ADP
your PRON
ear NOUN
and CCONJ
not PART
mess VERB
with ADP
it PRON
, PUNCT
or CCONJ
should AUX
you PRON
clean VERB
it PRON
out ADP
> X
every ADV
so ADV
often ADV
? PUNCT
  SPACE
Can AUX
cleaning VERB
it PRON
out ADP
damage VERB
your PRON
eardrums?>Are NOUN
there PRON
any DET
tubes NOUN
in ADP
your PRON
ear NOUN
that PRON
might AUX
get AUX
blocked?>>Stephen ADV
> X
The DET
best ADJ
thing NOUN
to PART
do AUX
is AUX
leave VERB
it PRON
, PUNCT
it PRON
will AUX
work VERB
its PRON
own ADJ
way NOUN
out SCONJ
to ADP
the DET
surface NOUN
. PUNCT
Anything PRON
you PRON
stick VERB
up ADP
there ADV
to PART
try VERB
and CCONJ
clean VERB
it PRON
is AUX
just ADV
going VERB
to PART
push VERB
the DET
waxup NOUN
against ADP
your PRON
eardrum NOUN
and CCONJ
pack VERB
it PRON
on ADP
there ADV
solid ADJ
, PUNCT
thus ADV
impairing VERB
yourhearing VERB
.SeanNewsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59540From NUM
: PUNCT
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
BIOLOGICAL PROPN
ALCHEMYmcelwre@cnsvax.uwec.edu PROPN
writes:| PROPN
          SPACE
| PROPN
                              SPACE
BIOLOGICAL PROPN
ALCHEMY| PROPN
                          SPACE
| PROPN
                        SPACE
( PUNCT
ANOTHER DET
Form NOUN
of ADP
COLD PROPN
FUSION NOUN
) PUNCT
Gee PROPN
, PUNCT
I PRON
'd AUX
FORGOTTEN PROPN
about ADP
THIS PROPN
NUT.| NOUN
               SPACE
UN PROPN
- PUNCT
altered VERB
REPRODUCTION NOUN
and CCONJ
DISSEMINATION NOUN
of ADP
this DET
| PROPN
          SPACE
IMPORTANT PROPN
Information PROPN
is AUX
ENCOURAGED PROPN
. PUNCT
| DET
                                   SPACE
Robert PROPN
E. PROPN
McElwaine| PROPN
                                   SPACE
B.S. PROPN
, PUNCT
Physics PROPN
and CCONJ
Astronomy PROPN
, PUNCT
UW PROPN
- PUNCT
ECAnd PROPN
we PRON
KNOW VERB
( PUNCT
CAN AUX
PROVE VERB
) PUNCT
what PRON
B.S. PROPN
stands VERB
for ADP
in ADP
this DET
case NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59541From NUM
: PUNCT
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Earwaxbobm@Ingres NOUN
. PUNCT
COM PROPN
( PUNCT
Bob PROPN
McQueer PROPN
) PUNCT
writes:|One NOUN
question NOUN
I PRON
do AUX
have AUX
- PUNCT
a DET
doctor NOUN
who PRON
flushed VERB
out ADP
my PRON
ears NOUN
once ADV
also ADV
advocated|a VERB
drop NOUN
of ADP
rubbing VERB
alcohol NOUN
in ADP
them PRON
afterwards ADV
to PART
flush VERB
out ADP
any DET
remaining|trapped NOUN
water NOUN
- PUNCT
said VERB
he PRON
told VERB
swimmers NOUN
to PART
do AUX
this DET
after ADP
swimming VERB
, PUNCT
too ADV
. PUNCT
  SPACE
It|works ADV
, PUNCT
but CCONJ
it PRON
stings VERB
like SCONJ
the DET
devil NOUN
, PUNCT
so CCONJ
I PRON
've AUX
always ADV
been AUX
content ADJ
to PART
let VERB
any|water NOUN
in ADP
my PRON
ears NOUN
from ADP
swimming VERB
or CCONJ
flushing VERB
them PRON
out ADP
figure VERB
out ADP
how ADV
to PART
get|out VERB
by ADP
itself PRON
if SCONJ
shaking VERB
my PRON
head NOUN
a DET
few ADJ
times NOUN
wo AUX
n't PART
do AUX
the DET
trick NOUN
. PUNCT
  SPACE
Any|comments?When ADV
I PRON
have AUX
trouble NOUN
it PRON
's AUX
usually ADV
because SCONJ
of ADP
water NOUN
trapped VERB
by ADP
someremaining VERB
wax PROPN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
see VERB
why ADV
you PRON
ca AUX
n't PART
just ADV
let VERB
it PRON
evaporate VERB
; PUNCT
itshould AUX
do AUX
this DET
eventually ADV
. PUNCT
	 SPACE
/J PUNCT
= SYM
Nets NOUN
: PUNCT
levin@bbn.com X
  SPACE
| ADP
  SPACE
" PUNCT
Earn VERB
more ADJ
sessions NOUN
by ADP
sleeving VERB
. PUNCT
"pots NOUN
: PUNCT
( PUNCT
617)873 NUM
- PUNCT
3463 NUM
  SPACE
| ADP
              SPACE
N1MNF PROPN
  SPACE
| PROPN
                               SPACE
-- PUNCT
Roxanne PROPN
KowalskiNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59542From NUM
: PUNCT
theisen@uni-duesseldorf.de PROPN
( PUNCT
Herr PROPN
Theisen)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
1993Apr27.233234.2929@magnus.acs.ohio-state.edu NUM
> X
wvhorn@magnus.acs.ohio-state.edu PROPN
( PUNCT
William PROPN
VanHorne PROPN
) PUNCT
writes:>Newsgroups NOUN
: PUNCT
sci.energy,sci.image.processing,sci.anthropology,alt.sci.physics.new-theories,sci.skeptic,sci.med,alt.alien.visitors>Path NUM
: PUNCT
unidus.rz.uni-duesseldorf.de!rrz.uni-koeln.de!gmd.de!newsserver.jvnc.net!howland.reston.ans.net!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!wvhorn>From NUM
: PUNCT
wvhorn@magnus.acs.ohio-state.edu PROPN
( PUNCT
William PROPN
VanHorne)>Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photography PROPN
> PROPN
Message NOUN
- PUNCT
ID PROPN
: PUNCT
< X
1993Apr27.233234.2929@magnus.acs.ohio-state.edu>>Sender NUM
: PUNCT
news@magnus.acs.ohio-state.edu>Nntp-Posting-Host PROPN
: PUNCT
bottom.magnus.acs.ohio-state.edu>Organization NOUN
: PUNCT
The DET
Ohio PROPN
State PROPN
University PROPN
> X
References NOUN
: PUNCT
< X
1993Apr26.204319.11231@ultb.isc.rit.edu NUM
> X
< X
C64MvG.BoI@usenet.ucs.indiana.edu NOUN
> X
< X
C65oIL.436@vuse.vanderbilt.edu>>Date NOUN
: PUNCT
Tue PROPN
, PUNCT
27 NUM
Apr PROPN
1993 NUM
23:32:34 NUM
GMT PROPN
> X
Lines NOUN
: PUNCT
33 NUM
> X
Xref NOUN
: PUNCT
unidus.rz.uni-duesseldorf.de PROPN
sci.energy:6430 PROPN
sci.image.processing:2668 PROPN
sci.anthropology:2183 VERB
alt.sci.physics.new-theories:1762 PROPN
sci.skeptic:18848 PART
sci.med:18773 PROPN
alt.alien.visitors:10138>In NOUN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes:>>>>Reading VERB
through ADP
the DET
posts NOUN
about ADP
Kirlian PROPN
( PUNCT
whatever PRON
spelling)>>photography PROPN
I PRON
could AUX
n't PART
help VERB
but CCONJ
being AUX
slightly ADV
disgusted VERB
by ADP
the>>narrow NOUN
- PUNCT
minded ADJ
, PUNCT
" PUNCT
I PRON
know VERB
it PRON
all DET
" PUNCT
, PUNCT
" PUNCT
I PRON
do AUX
n't PART
believe VERB
what PRON
I PRON
ca AUX
n't PART
see VERB
or>>measure ADP
" PUNCT
attitude NOUN
of ADP
many ADJ
people NOUN
out ADP
there.>>>>I PROPN
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to>>so PROPN
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just>>as NOUN
likely ADJ
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be>>quite VERB
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis.>>>>I NOUN
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to>>something NOUN
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame>>of NOUN
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists,>>were PROPN
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics.>>>>Especially PROPN
the DET
USA PROPN
should AUX
be AUX
grateful ADJ
; PUNCT
after ADV
all ADV
, PUNCT
Columbus PROPN
did AUX
not>>drop PROPN
off ADP
the DET
edge NOUN
of ADP
the DET
earth.>It NUM
is AUX
one NUM
thing NOUN
to PART
be AUX
open ADJ
- PUNCT
minded ADJ
about ADP
phenomona PROPN
that PRON
have AUX
not PART
> X
be AUX
demonstrated VERB
to PART
be AUX
false ADJ
, PUNCT
and CCONJ
quite DET
another DET
to PART
" PUNCT
believe VERB
" PUNCT
in ADP
> NUM
something PRON
like SCONJ
Krilian ADJ
photography NOUN
, PUNCT
where ADV
* PUNCT
all DET
* PUNCT
the DET
claimed VERB
effects NOUN
> X
have AUX
be AUX
demonstrated VERB
to PART
be AUX
artifacts NOUN
. PUNCT
  SPACE
There PRON
is AUX
no DET
longer ADV
any DET
reason NOUN
> X
to PART
adopt VERB
a DET
" PUNCT
wait VERB
and CCONJ
see VERB
" PUNCT
attitude NOUN
about ADP
Krilian ADJ
photography NOUN
, PUNCT
it PRON
> X
has AUX
been AUX
experimentally ADV
shown VERB
to PART
be AUX
nothing PRON
but CCONJ
simple ADJ
coronal ADJ
> X
discharge NOUN
. PUNCT
  SPACE
The DET
" PUNCT
auras X
" PUNCT
shown VERB
by ADP
missing VERB
leaf NOUN
parts NOUN
came VERB
from ADP
> PROPN
moisture NOUN
left VERB
by ADP
the DET
original ADJ
whole ADJ
leaf NOUN
, PUNCT
for ADP
example NOUN
. PUNCT
  SPACE
> X
That DET
's AUX
what PRON
science NOUN
is AUX
, PUNCT
son.>---Bill ADP
VanHorneNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59543From NUM
: PUNCT
yozzo@watson.ibm.com PROPN
( PUNCT
Ralph PROPN
Yozzo)Subject PROPN
: PUNCT
Cold PROPN
Sore PROPN
Location?I've PROPN
had AUX
cold ADJ
sores NOUN
in ADP
the DET
past NOUN
. PUNCT
  SPACE
But CCONJ
they PRON
have AUX
always ADV
been AUX
in ADP
the DET
corner NOUN
of ADP
my PRON
mouth NOUN
. PUNCT
  SPACE
Recently ADV
, PUNCT
  SPACE
I PRON
've AUX
had VERB
what PRON
appears VERB
to ADP
bea PROPN
cold ADJ
sore ADJ
, PUNCT
but CCONJ
on ADP
my PRON
lower ADJ
lip NOUN
in ADP
the DET
middle NOUN
( PUNCT
above ADP
the DET
chin).Can NOUN
cold ADJ
sores NOUN
appear VERB
anywhere ADV
around ADP
the DET
mouth NOUN
( PUNCT
or CCONJ
body)?Is PUNCT
there PRON
a DET
medical ADJ
term NOUN
for ADP
cold ADJ
sore?-- NUM
  SPACE
Ralph PROPN
Yozzo PROPN
( PUNCT
yozzo@watson.ibm.com PROPN
) PUNCT
   SPACE
From ADP
the DET
beautiful ADJ
and CCONJ
historic ADJ
New PROPN
York PROPN
State PROPN
Mid PROPN
- PUNCT
Hudson PROPN
Valley PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59544From NUM
: PUNCT
ewolff@ps.ic.ac.uk PROPN
( PUNCT
Erik PROPN
The DET
Viking)Subject NOUN
: PUNCT
thyroidal VERB
deficiencyHi PROPN
. PUNCT
My PRON
wife NOUN
has AUX
aquired VERB
some DET
thyroidal ADJ
( PUNCT
sp PROPN
? PUNCT
) PUNCT
deficiency NOUN
over ADP
the DET
past NOUN
yearthat NOUN
gives VERB
symptoms NOUN
such ADJ
as SCONJ
needing VERB
much ADJ
sleep NOUN
, PUNCT
coldness NOUN
and CCONJ
pronenessto NOUN
gaining VERB
weight NOUN
. PUNCT
She PRON
has AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
taken VERB
the DET
ordinary ADJ
( PUNCT
? PUNCT
) PUNCT
tests NOUN
and CCONJ
her PRON
values NOUN
were AUX
regarded VERB
as ADV
low ADJ
. PUNCT
The DET
doctor NOUN
( PUNCT
and CCONJ
my PRON
wife NOUN
) PUNCT
arenot NOUN
very ADV
interested ADJ
in ADP
starting VERB
medication NOUN
as SCONJ
this DET
" PUNCT
deactivates VERB
" PUNCT
the DET
gland NOUN
, PUNCT
giving VERB
life NOUN
- PUNCT
long ADJ
dependency NOUN
to ADP
the DET
drug NOUN
( PUNCT
hormone NOUN
? PUNCT
) PUNCT
. PUNCT
The DET
last ADJ
couple NOUN
of ADP
monthes NOUN
she PRON
has AUX
been AUX
seeing VERB
a DET
hoemoepath NOUN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
and CCONJ
been AUX
givensome ADJ
drops NOUN
to PART
re VERB
- VERB
activate VERB
either CCONJ
her PRON
thyroidal ADJ
gland NOUN
and/or CCONJ
the DET
' PUNCT
message NOUN
- PUNCT
center NOUN
' PUNCT
in ADP
the DET
brain NOUN
( PUNCT
sorry ADJ
about ADP
the DET
approximate ADJ
language NOUN
, PUNCT
but CCONJ
I PRON
have AUX
n't PART
got VERB
many ADJ
clues NOUN
to ADP
what PRON
the DET
english ADJ
terms NOUN
are AUX
, PUNCT
but CCONJ
the DET
brain NOUN
- PUNCT
area NOUN
is AUX
called VERB
the DET
' PUNCT
hypofyse NOUN
' PUNCT
in ADP
norwegian PROPN
. PUNCT
) PUNCT
My PRON
questions NOUN
are AUX
: PUNCT
has AUX
anyone PRON
had VERB
/ SYM
heard VERB
of ADP
success NOUN
in ADP
using VERB
this DET
approach?Her NOUN
values NOUN
have AUX
been AUX
( PUNCT
slowly ADV
but CCONJ
) PUNCT
steadily ADV
sinking VERB
, PUNCT
any DET
comment NOUN
on ADP
theprobability NOUN
of ADP
improvement NOUN
? PUNCT
Although SCONJ
the DET
doctor NOUN
has AUX
told VERB
her PRON
to PART
' PUNCT
eatnormally ADV
' PUNCT
, PUNCT
my PRON
wife NOUN
has AUX
dieted VERB
vigorously ADV
to PART
keep VERB
her PRON
weight NOUN
as SCONJ
she PRON
feelsthat NOUN
is AUX
part NOUN
of ADP
keeping VERB
an DET
edge NOUN
over ADP
the DET
illness NOUN
/ SYM
condition NOUN
, PUNCT
may AUX
thisaffect VERB
the DET
treatment NOUN
, PUNCT
development?I PROPN
can AUX
get AUX
the DET
exact ADJ
figures NOUN
for ADP
her PRON
tests NOUN
for ADP
anyone PRON
interested ADJ
, PUNCT
and CCONJ
Iwill PROPN
greatly ADV
value VERB
any DET
information NOUN
/ SYM
opinion NOUN
/ SYM
experience NOUN
on ADP
this DET
topic NOUN
. PUNCT
I PRON
do AUX
n't PART
intend VERB
this DET
post NOUN
to PART
be AUX
either CCONJ
a DET
flaming NOUN
of ADP
the DET
establishedmedical ADJ
profession NOUN
or CCONJ
a DET
praise NOUN
for ADP
alternatives NOUN
, PUNCT
I PRON
am AUX
just ADV
relayingevents NOUN
as SCONJ
they PRON
have AUX
happened VERB
. PUNCT
Sincerely ADV
, PUNCT
Erik PROPN
A. NOUN
WolffNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59545From NUM
: PUNCT
resinfo@resinfo.demon.co.uk PROPN
( PUNCT
resinfo)Subject NOUN
: PUNCT
Investigating VERB
Phenylanine?Resinfo NOUN
( PUNCT
research NOUN
and CCONJ
information NOUN
) PUNCT
is AUX
currently ADV
seeking VERB
contact_IN NOUN
_ VERB
the DET
United PROPN
Kingdom PROPN
with ADP
researchers NOUN
of ADP
' PUNCT
phenylanine NOUN
' PUNCT
, PUNCT
or CCONJ
isthis DET
amino ADJ
acid NOUN
uninspiring?Resinfo PRON
is AUX
not PART
a DET
regular ADJ
subscriber NOUN
to ADP
sci.med VERB
due ADP
to ADP
the DET
excessive ADJ
load NOUN
of ADP
data NOUN
and CCONJ
regrettably ADV
, PUNCT
our PRON
limited ADJ
abilityto PROPN
monitor NOUN
. PUNCT
It PRON
would AUX
therefore ADV
be AUX
appreciated VERB
if SCONJ
repliescould ADV
be AUX
sent VERB
direct ADJ
to;resinfo@resinfo.demon.co.ukusing NOUN
the DET
ref NOUN
: PUNCT
mr PROPN
t.a.t PROPN
. PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59546From NUM
: PUNCT
jge@cs.unc.edu PROPN
( PUNCT
John PROPN
Eyles)Subject PROPN
: PUNCT
insensitive ADJ
techniciansA PROPN
friend NOUN
was AUX
recently ADV
admitted VERB
to ADP
North PROPN
Carolina PROPN
Memorial PROPN
Hospitalbecause PROPN
of ADP
suspected VERB
meningitis NOUN
. PUNCT
  SPACE
Serious ADJ
business NOUN
. PUNCT
  SPACE
They PRON
wanted VERB
to PART
doa PROPN
lumbar ADJ
puncture NOUN
, PUNCT
for ADP
which PRON
a DET
CT PROPN
scan NOUN
is AUX
a DET
prerequisite NOUN
. PUNCT
I PRON
arrived VERB
in ADP
her PRON
hospital NOUN
room NOUN
about ADP
an DET
hour NOUN
after ADP
she PRON
had AUX
returnedfrom VERB
the DET
CT PROPN
. PUNCT
   SPACE
She PRON
was AUX
in ADP
tears NOUN
. PUNCT
  SPACE
Evidently ADV
the DET
technicians NOUN
in ADP
the DET
CTlab NOUN
had AUX
been AUX
very ADV
unpleasant ADJ
to ADP
her PRON
. PUNCT
To PART
begin VERB
with ADP
, PUNCT
they PRON
put VERB
her PRON
on ADP
the DET
apparatus NOUN
that PRON
moves VERB
you PRON
into ADP
themachine NOUN
itself PRON
, PUNCT
and CCONJ
just ADV
pushed VERB
a DET
button NOUN
to PART
slide VERB
her PRON
straight ADJ
into ADP
themachine NOUN
, PUNCT
without ADP
any DET
explanation NOUN
. PUNCT
  SPACE
Imagine VERB
this DET
. PUNCT
  SPACE
You PRON
worried VERB
you PRON
mayhave VERB
a DET
deadly ADJ
disease NOUN
, PUNCT
and CCONJ
next ADJ
thing NOUN
you PRON
know VERB
you PRON
're AUX
being AUX
put VERB
intothis DET
big ADJ
scary ADJ
machine NOUN
, PUNCT
without ADP
a DET
word NOUN
of ADP
explanation NOUN
about ADP
what PRON
isgoing VERB
to PART
happen VERB
to ADP
you PRON
. PUNCT
  SPACE
I PRON
believe VERB
this DET
is AUX
inexcusable ADJ
. PUNCT
   SPACE
She PRON
waved VERB
herhand ADV
as SCONJ
if SCONJ
to PART
say VERB
what PRON
are AUX
you PRON
doing VERB
to ADP
me PRON
, PUNCT
and CCONJ
they PRON
responded VERB
withannoyance NOUN
and CCONJ
anger NOUN
. PUNCT
  SPACE
Next ADV
they PRON
inserted VERB
, PUNCT
or CCONJ
tried VERB
to PART
insert VERB
, PUNCT
an DET
IVcatheter NOUN
. PUNCT
  SPACE
Apparently ADV
she PRON
has AUX
a DET
lot NOUN
of ADP
trouble NOUN
with ADP
these DET
and CCONJ
complainedof VERB
the DET
pain NOUN
. PUNCT
  SPACE
The DET
technician NOUN
just ADV
stopped VERB
and CCONJ
fixed VERB
her PRON
with ADP
a DET
glarewithout NOUN
any DET
words NOUN
of ADP
explanation NOUN
. PUNCT
Is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
about ADP
these DET
pigs NOUN
? PUNCT
I PRON
realize VERB
that SCONJ
these DET
technicians NOUN
do AUX
this DET
sort NOUN
of ADP
job NOUN
day NOUN
in ADV
and CCONJ
dayout NOUN
. PUNCT
  SPACE
And CCONJ
that SCONJ
some DET
patients NOUN
can AUX
be AUX
very ADV
irritating ADJ
and CCONJ
uncooperative ADJ
. PUNCT
But CCONJ
this DET
is AUX
simply ADV
no DET
excuse NOUN
. PUNCT
  SPACE
Their PRON
purpose NOUN
for ADP
existing VERB
is AUX
to PART
helpsick VERB
people NOUN
, PUNCT
and CCONJ
there PRON
is AUX
no DET
excuse NOUN
for ADP
this DET
sort NOUN
of ADP
behavior NOUN
. PUNCT
Fortunately ADV
my PRON
friend NOUN
is AUX
fine ADJ
. PUNCT
  SPACE
But CCONJ
I PRON
imagine VERB
a DET
large ADJ
proportion NOUN
of ADP
thepeople NOUN
who PRON
get VERB
CT PROPN
scans NOUN
are AUX
not PART
fine ADJ
at ADV
all ADV
. PUNCT
  SPACE
They PRON
have AUX
cancer NOUN
and CCONJ
thatsort NOUN
of ADP
thing NOUN
. PUNCT
  SPACE
They PRON
do AUX
n't PART
need VERB
this DET
kind NOUN
of ADP
shit NOUN
. PUNCT
Also ADV
, PUNCT
since SCONJ
I PRON
named VERB
the DET
hospital NOUN
involved VERB
, PUNCT
I PRON
should AUX
also ADV
point VERB
out ADP
thatneither ADV
she PRON
nor CCONJ
I PRON
have AUX
any DET
complaints NOUN
about ADP
the DET
competence NOUN
or CCONJ
compassionof NOUN
any DET
of ADP
the DET
other ADJ
personnel NOUN
at ADP
NCMH.Thanks PROPN
for ADP
listening NOUN
, PUNCT
John PROPN
Eylesjge@cs.unc.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59547From NUM
: PUNCT
u2nmh@csc.liv.ac.uk PROPN
( PUNCT
N.M. PROPN
Humphries)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyThomas PROPN
Trusk PROPN
( PUNCT
ttrusk@its.mcw.edu NOUN
) PUNCT
wrote VERB
: PUNCT
> X
In ADP
article NOUN
< X
C67G01.2J1@efi.com X
> X
alanm@efi.com X
( PUNCT
Alan PROPN
Morgan PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
In ADP
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
> X
> X
  SPACE
alex@vuse.vanderbilt.edu PROPN
( PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
> X
> X
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
> X
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
> X
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
> X
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
> X
> X
> X
> X
Oooooh PROPN
. PUNCT
  SPACE
Bad ADJ
example NOUN
. PUNCT
  SPACE
I PRON
'm AUX
an DET
atheist NOUN
. PUNCT
> X
> X
> X
This DET
is AUX
not PART
flame ADJ
, PUNCT
or CCONJ
abuse NOUN
, PUNCT
nor CCONJ
do AUX
I PRON
want VERB
to PART
start VERB
another DET
thread NOUN
( PUNCT
this DET
> X
is AUX
, PUNCT
after ADV
all ADV
, PUNCT
supposed VERB
to PART
be AUX
about ADP
IMAGE NOUN
PROCESSING NOUN
) PUNCT
. PUNCT
> X
BUT CCONJ
, PUNCT
to PART
say VERB
you PRON
're AUX
an DET
atheist NOUN
is AUX
to PART
suggest VERB
you PRON
have AUX
PROOF PROPN
there PRON
is AUX
NO DET
GOD.-- PROPN
That PRON
means VERB
that SCONJ
there PRON
can AUX
not PART
be AUX
any DET
atheists NOUN
  SPACE
since SCONJ
there PRON
is AUX
NO DET
WAY NOUN
that PRON
youcan AUX
prove VERB
that SCONJ
there PRON
is AUX
no DET
god NOUN
. PUNCT
Atheists NOUN
are AUX
people NOUN
who PRON
BELIEVE VERB
that SCONJ
there PRON
is AUX
nogod NOUN
, PUNCT
most ADV
not PART
only ADV
believe VERB
, PUNCT
but CCONJ
also ADV
are AUX
damn ADV
sure ADJ
that SCONJ
there PRON
is AUX
n't PART
a DET
god PROPN
( PUNCT
likeme PROPN
) PUNCT
. PUNCT
  SPACE
--------------------------------------------------------------------------- PUNCT
     SPACE
The DET
Cursor PROPN
, PUNCT
aka ADV
Nick PROPN
Humphries PROPN
, PUNCT
u2nmh@csc.liv.ac.uk PROPN
, PUNCT
at ADP
your PRON
service NOUN
. PUNCT
  SPACE
--------------------------------------------------------------------------- PUNCT
   SPACE
" PUNCT
What PRON
's AUX
the DET
use NOUN
of ADP
computers NOUN
? PUNCT
They PRON
'll AUX
never ADV
play VERB
  SPACE
| X
" PUNCT
Why ADV
pay VERB
money NOUN
to PART
see VERB
   SPACE
chess NOUN
, PUNCT
draw VERB
art NOUN
or CCONJ
make VERB
music NOUN
. PUNCT
" PUNCT
- PUNCT
Jean PROPN
Genet PROPN
. PUNCT
     SPACE
| ADJ
bad ADJ
films NOUN
? PUNCT
Stay VERB
home NOUN
    SPACE
" PUNCT
Intelligence NOUN
is AUX
n't PART
to PART
make VERB
no DET
mistakes NOUN
, PUNCT
but CCONJ
how ADV
  SPACE
| ADV
and CCONJ
see VERB
bad ADJ
TV NOUN
for ADP
   SPACE
to PART
make VERB
them PRON
look VERB
good ADJ
. PUNCT
" PUNCT
- PUNCT
Bertolt PROPN
Brecht PROPN
. PUNCT
        SPACE
| PROPN
free ADJ
. PUNCT
" PUNCT
- PUNCT
Sam PROPN
Goldwyn PROPN
. PUNCT
  SPACE
---------------------------------------------------------------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59548From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject NOUN
: PUNCT
RE PROPN
: PUNCT
Robert PROPN
's PART
Biological PROPN
AlchemyRobert PROPN
, PUNCT
I'm PROPN
* PUNCT
so ADV
* PUNCT
glad ADJ
that SCONJ
you PRON
posted VERB
your PRON
Biological PROPN
Alchemy PROPN
discussion NOUN
. PUNCT
  SPACE
I PRON
've AUX
been AUX
compared VERB
to ADP
the DET
famous ADJ
Robert PROPN
McElwaine PROPN
by ADP
some DET
readers NOUN
of ADP
Sci PROPN
. PUNCT
Med INTJ
. PUNCT
I PRON
did AUX
n't PART
know VERB
how ADV
to PART
respond VERB
since SCONJ
I PRON
had AUX
not PART
seen VERB
one NUM
of ADP
your PRON
posts(just NOUN
like INTJ
I PRON
have AUX
n't PART
read VERB
" PUNCT
The DET
Yeast PROPN
Connection").Let PROPN
me PRON
just ADV
start VERB
by ADP
stating VERB
that SCONJ
the DET
authors NOUN
of ADP
the DET
" PUNCT
Cold PROPN
Fusion PROPN
" PUNCT
papers NOUN
of ADP
recent ADJ
years NOUN
are AUX
now ADV
in ADP
scientific ADJ
exile(I PROPN
believe VERB
that SCONJ
one NOUN
has AUX
actually ADV
left VERB
the DET
country NOUN
) PUNCT
. PUNCT
  SPACE
Scientific ADJ
fraud NOUN
is AUX
rare ADJ
. PUNCT
  SPACE
I PRON
'm AUX
still ADV
not PART
sure ADJ
that SCONJ
if SCONJ
a DET
review NOUN
of ADP
the DET
research NOUN
notes NOUN
of ADP
the DET
" PUNCT
cold ADJ
fusion NOUN
scientists NOUN
" PUNCT
actually ADV
proved VERB
fraud NOUN
or CCONJ
just ADV
very ADV
shoddy ADJ
experimentation NOUN
. PUNCT
Your PRON
sources NOUN
do AUX
not PART
seem VERB
to PART
be AUX
research NOUN
articles NOUN
. PUNCT
  SPACE
They PRON
are AUX
more ADV
like SCONJ
lay VERB
texts NOUN
designed VERB
to PART
pique VERB
human ADJ
interest NOUN
in ADP
a DET
subject NOUN
area(just NOUN
like SCONJ
the DET
food NOUN
combining VERB
and CCONJ
life NOUN
extension NOUN
texts NOUN
) PUNCT
. PUNCT
  SPACE
Robert PROPN
, PUNCT
I PRON
try VERB
to PART
keep VERB
an DET
open ADJ
mind NOUN
. PUNCT
But CCONJ
some DET
things NOUN
I PRON
just ADV
ca AUX
n't PART
buy(one PROPN
is AUX
taking VERB
SOD PROPN
orally ADV
to PART
prevent VERB
oxidative ADJ
damage NOUN
in ADP
the DET
body).Your PROPN
experiment NOUN
, PUNCT
if SCONJ
conducted VERB
by ADP
readers NOUN
of ADP
this DET
news NOUN
group NOUN
, PUNCT
would AUX
prove VERB
that SCONJ
you PRON
are AUX
right(more ADJ
ash NOUN
after ADP
seed NOUN
sprouting NOUN
than SCONJ
before ADV
) PUNCT
. PUNCT
  SPACE
Unless SCONJ
you PRON
use VERB
a DET
muffle ADJ
furnance NOUN
and CCONJ
obtain VERB
a DET
very ADV
high ADJ
temperature(above NOUN
600 NUM
degrees NOUN
I PRON
believe VERB
) PUNCT
, PUNCT
you PRON
will AUX
get AUX
organic ADJ
residue NOUN
in ADP
the DET
ash NOUN
. PUNCT
  SPACE
Even ADV
the DET
residue NOUN
in ADP
commercial ADJ
incinerators NOUN
contains VERB
organic ADJ
residue NOUN
. PUNCT
  SPACE
I PRON
remember VERB
doing VERB
this DET
kind NOUN
of ADP
experiment NOUN
in ADP
my PRON
organic ADJ
chemistry NOUN
couurse NOUN
in ADP
College PROPN
but CCONJ
I PRON
could AUX
n't PART
find VERB
a DET
temperature NOUN
for ADP
mineral NOUN
ash NOUN
formation NOUN
so ADV
I PRON
'm AUX
really ADV
guessing VERB
at ADP
600 NUM
degrees NOUN
F PROPN
, PUNCT
it PRON
may AUX
actually ADV
be AUX
much ADV
higher ADJ
. PUNCT
  SPACE
The DET
point NOUN
is AUX
that SCONJ
no DET
one NOUN
in ADP
their PRON
home NOUN
could AUX
ever ADV
get AUX
a DET
high ADJ
enough ADJ
temperature NOUN
to PART
produce VERB
* PUNCT
only ADV
* PUNCT
a DET
mineral NOUN
ash NOUN
. PUNCT
  SPACE
They PRON
also ADV
could AUX
not PART
measure VERB
the DET
minerals NOUN
so SCONJ
they PRON
could AUX
only ADV
weigh VERB
the DET
ash NOUN
and CCONJ
find VERB
out ADP
that SCONJ
you PRON
appear VERB
to PART
be AUX
correct ADJ
. PUNCT
Chemical ADJ
reactions NOUN
abound VERB
in ADP
our PRON
body NOUN
, PUNCT
in ADP
our PRON
atmosphere NOUN
, PUNCT
in ADP
our PRON
water NOUN
and CCONJ
in ADP
our PRON
soil NOUN
. PUNCT
  SPACE
Are AUX
these DET
fusion NOUN
reactions NOUN
? PUNCT
  SPACE
Yes INTJ
many ADJ
of ADP
them PRON
do AUX
involve VERB
fusing VERB
oxygen NOUN
, PUNCT
nitrogen NOUN
and CCONJ
sulfur NOUN
to ADP
both DET
organics NOUN
and CCONJ
inorganics NOUN
. PUNCT
  SPACE
Do AUX
we PRON
really ADV
have AUX
the DET
transformation NOUN
of ADP
silicone NOUN
to ADP
calcium NOUN
if SCONJ
carbon NOUN
is AUX
fused VERB
with ADP
silicon NOUN
? PUNCT
  SPACE
Not PART
in ADP
my PRON
book NOUN
Robert PROPN
. PUNCT
Silicon PROPN
is AUX
the DET
most ADV
abundant ADJ
mineral NOUN
on ADP
our PRON
planet NOUN
. PUNCT
  SPACE
I PRON
've AUX
seen VERB
speculation NOUN
that SCONJ
man NOUN
could AUX
have AUX
evolved VERB
to PART
be AUX
a DET
silicon NOUN
based VERB
rather ADV
than SCONJ
a DET
carbon NOUN
based VERB
life NOUN
- PUNCT
form NOUN
. PUNCT
  SPACE
I PRON
like VERB
reading VERB
science NOUN
fiction NOUN
, PUNCT
as SCONJ
many ADJ
people NOUN
do AUX
. PUNCT
  SPACE
But CCONJ
I PRON
know VERB
enough ADJ
about ADP
biochemistry(and NUM
nutrition NOUN
) PUNCT
to PART
be AUX
able(in ADJ
most ADJ
cases NOUN
) PUNCT
to PART
separate VERB
the DET
fiction NOUN
from ADP
the DET
fact NOUN
. PUNCT
Silicon PROPN
may AUX
be AUX
one NUM
of ADP
the DET
trace NOUN
elements NOUN
that PRON
turns VERB
out ADP
to PART
be AUX
essential ADJ
in ADP
humans NOUN
. PUNCT
  SPACE
We PRON
have AUX
several ADJ
grams NOUN
of ADP
the DET
stuff NOUN
in ADP
our PRON
body NOUN
. PUNCT
  SPACE
What PRON
's AUX
it PRON
doing VERB
there ADV
? PUNCT
  SPACE
Only ADV
the DET
Lord PROPN
knows VERB
right ADV
now ADV
. PUNCT
  SPACE
But CCONJ
I PRON
will AUX
tell VERB
you PRON
what PRON
I PRON
do AUX
know VERB
about ADP
silicon NOUN
and CCONJ
why ADV
, PUNCT
as SCONJ
you PRON
state VERB
, PUNCT
it PRON
helps VERB
bone NOUN
healing(and ADP
it PRON
is AUX
not PART
because SCONJ
silicon NOUN
is AUX
transformed VERB
into ADP
calcium).Almost NOUN
all DET
of ADP
the DET
silicon NOUN
in ADP
the DET
human ADJ
body NOUN
is AUX
found VERB
in ADP
the DET
connective NOUN
tissue(collagen PROPN
and CCONJ
elastin PROPN
) PUNCT
. PUNCT
  SPACE
There PRON
have AUX
been AUX
studies NOUN
published VERB
which PRON
show VERB
that SCONJ
the DET
very ADV
high ADJ
silicon NOUN
content NOUN
in ADP
elastin PROPN
may AUX
be AUX
an DET
important ADJ
protective ADJ
factor NOUN
against ADP
atherosclerosis(the DET
higher ADJ
the DET
silicon NOUN
content NOUN
in ADP
elastin PROPN
, PUNCT
the DET
more ADV
resistant ADJ
the DET
elastin NOUN
is AUX
to ADP
a DET
an DET
age NOUN
- PUNCT
related VERB
loss NOUN
of ADP
elasticity NOUN
which PRON
may AUX
play VERB
a DET
role NOUN
in ADP
the DET
increase NOUN
in ADP
blood NOUN
pressure NOUN
that PRON
is AUX
often ADV
seen VERB
as SCONJ
part NOUN
of ADP
the DET
ageing NOUN
process NOUN
in ADP
humans).For DET
bone NOUN
fracture NOUN
healing NOUN
, PUNCT
the DET
first ADJ
step NOUN
is AUX
a DET
collagen NOUN
matrix NOUN
into ADP
which PRON
calcium NOUN
and CCONJ
phosphate NOUN
are AUX
pumped VERB
by ADP
osteoblasts NOUN
. PUNCT
  SPACE
A DET
high ADJ
level NOUN
of ADP
silicon NOUN
in ADP
the DET
diet NOUN
seems VERB
to PART
speed VERB
up ADP
this DET
matrix NOUN
formation NOUN
. PUNCT
  SPACE
This DET
first ADJ
step NOUN
in ADP
the DET
bone NOUN
healing NOUN
process NOUN
seems VERB
to PART
be AUX
the DET
hardest ADJ
for ADP
some DET
people NOUN
to PART
get AUX
going VERB
. PUNCT
Electriacl NOUN
currents NOUN
have AUX
been AUX
used VERB
in ADP
an DET
attempt NOUN
to PART
get AUX
the DET
matrix NOUN
forming VERB
cells NOUN
oriented VERB
in ADP
the DET
right ADJ
direction NOUN
so SCONJ
that SCONJ
the DET
matrix NOUN
can AUX
be AUX
formed VERB
in ADP
the DET
gap(or NOUN
gaps NOUN
) PUNCT
between ADP
the DET
ends NOUN
of ADP
the DET
broken ADJ
bone NOUN
. PUNCT
  SPACE
A DET
vitamin NOUN
C NOUN
deficiency(by NOUN
slowing VERB
collagen NOUN
formation NOUN
as ADV
well ADV
as SCONJ
causing VERB
the DET
prodcution NOUN
of ADP
defective ADJ
collagen NOUN
) PUNCT
does AUX
slow VERB
down ADP
both CCONJ
bone NOUN
and CCONJ
wound VERB
healing NOUN
. PUNCT
  SPACE
Zinc PROPN
is AUX
also ADV
another DET
big ADJ
player NOUN
in ADP
bone NOUN
and CCONJ
wound NOUN
healing NOUN
. PUNCT
  SPACE
And CCONJ
so ADV
is AUX
silicon(in PROPN
an DET
  SPACE
undetermined ADJ
role NOUN
that SCONJ
most ADV
likely ADV
involes VERB
matrix NOUN
formation NOUN
and CCONJ
not PART
transformation NOUN
of ADP
silicon NOUN
to ADP
calcium NOUN
) PUNCT
. PUNCT
  SPACE
For ADP
you PRON
to PART
take VERB
this DET
bone NOUN
healing VERB
observation NOUN
and CCONJ
use VERB
it PRON
as SCONJ
proof NOUN
that SCONJ
silicon NOUN
is AUX
transformed VERB
into ADP
calcium NOUN
is AUX
an DET
interesting ADJ
little ADJ
trick NOUN
. PUNCT
But CCONJ
Robert PROPN
, PUNCT
I PRON
have AUX
the DET
same ADJ
problem NOUN
myself PRON
when ADV
I PRON
read VERB
the DET
lay NOUN
press(and PROPN
yes INTJ
even ADV
some DET
scientific ADJ
papers NOUN
) PUNCT
. PUNCT
  SPACE
Is AUX
the DET
explanation NOUN
reasonable ADJ
? PUNCT
  SPACE
Without ADP
a DET
very ADV
good ADJ
science NOUN
knowledge NOUN
base NOUN
, PUNCT
you PRON
and CCONJ
most ADJ
readers NOUN
of ADP
this DET
news NOUN
group NOUN
are AUX
flying VERB
blind(you PROPN
have AUX
to PART
take VERB
it PRON
on ADP
faith NOUN
because SCONJ
you PRON
do AUX
n't PART
know VERB
any DET
better).If NOUN
the DET
explanation NOUN
seems VERB
to PART
make VERB
sense NOUN
to ADP
me PRON
based VERB
on ADP
my PRON
knowledge NOUN
base NOUN
, PUNCT
I PRON
'm AUX
inclined ADJ
to PART
consider VERB
it(this PRON
usually ADV
means VERB
trying VERB
to PART
find VERB
other ADJ
sources NOUN
that PRON
come VERB
to ADP
the DET
same ADJ
conclusion NOUN
) PUNCT
. PUNCT
  SPACE
If SCONJ
the DET
idea(like PROPN
a DET
candida PROPN
bloom NOUN
) PUNCT
seems VERB
to PART
make VERB
sense NOUN
to ADP
me PRON
, PUNCT
I PRON
tend VERB
to PART
pursue VERB
it PRON
as ADV
long ADV
as SCONJ
any DET
advice NOUN
that PRON
I PRON
'm AUX
going VERB
to PART
give VERB
is AUX
n't PART
going VERB
to PART
really ADV
mess VERB
somebody PRON
up ADP
. PUNCT
  SPACE
If SCONJ
this DET
makes VERB
us PRON
kindred VERB
souls NOUN
Robert PROPN
, PUNCT
then ADV
I PRON
guess VERB
I PRON
'll AUX
have AUX
to PART
live VERB
with ADP
that DET
label NOUN
. PUNCT
For ADP
the DET
physicians NOUN
who PRON
have AUX
decided VERB
to PART
read VERB
my PRON
response NOUN
to ADP
Robert PROPN
's PART
interesting ADJ
post NOUN
, PUNCT
I PRON
hope VERB
that SCONJ
you PRON
saw VERB
the DET
segment NOUN
on ADP
the DET
pediatric ADJ
neurosurgeon NOUN
last ADJ
night NOUN
on ADP
U.S. PROPN
TV PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
remember VERB
the DET
network NOUN
or CCONJ
his PRON
name(like PROPN
many ADJ
nights NOUN
, PUNCT
I PRON
was AUX
on ADP
my PRON
computer NOUN
and CCONJ
my PRON
wife NOUN
was AUX
watching VERB
TV NOUN
in ADP
our PRON
Den PROPN
where ADV
I PRON
have AUX
my PRON
computer NOUN
setup NOUN
) PUNCT
. PUNCT
  SPACE
This DET
neurosurgeon NOUN
takes VERB
kids NOUN
with ADP
brain NOUN
tumors NOUN
that SCONJ
everyone PRON
else ADV
has AUX
given VERB
up ADP
on ADV
and CCONJ
he PRON
uses"unconventional"treatments(his PRON
own ADJ
words NOUN
) PUNCT
. PUNCT
  SPACE
He PRON
says VERB
that SCONJ
he PRON
has AUX
a DET
70 NUM
% NOUN
success NOUN
rate NOUN
. PUNCT
  SPACE
The DET
one NUM
case NOUN
that PRON
I PRON
heard VERB
him PRON
discussing VERB
would AUX
normally ADV
use VERB
radiation(conventional ADJ
treatment NOUN
) PUNCT
. PUNCT
  SPACE
He PRON
was AUX
going VERB
to PART
go VERB
in ADV
and CCONJ
cut VERB
. PUNCT
  SPACE
You PRON
guys NOUN
complain VERB
about ADP
the DET
cost NOUN
of ADP
the DET
anti NOUN
- NOUN
fungals NOUN
. PUNCT
  SPACE
What PRON
do AUX
you PRON
think VERB
the DET
cost NOUN
difference NOUN
between ADP
radiation NOUN
treatment NOUN
and CCONJ
surgery NOUN
is AUX
guys NOUN
? PUNCT
I PRON
'm AUX
going VERB
to PART
ask VERB
you PRON
guys NOUN
one NUM
more ADJ
time NOUN
, PUNCT
why ADV
blast VERB
a DET
physician NOUN
who PRON
takes VERB
the DET
chronic ADJ
sinus NOUN
sufferer(like PROPN
Jon PROPN
) PUNCT
and CCONJ
the DET
chronic ADJ
GI PROPN
sufferer(like PROPN
Elaine)and PROPN
tries VERB
to PART
help VERB
them PRON
using VERB
unconventional ADJ
treatments NOUN
? PUNCT
  SPACE
Treatments NOUN
which PRON
do AUX
not PART
result VERB
in ADP
death(like PROPN
those DET
that SCONJ
the DET
neurosurgeon NOUN
uses VERB
? PUNCT
) PUNCT
. PUNCT
  SPACE
Is AUX
it PRON
because SCONJ
candida PROPN
blooms NOUN
are AUX
not PART
life NOUN
- PUNCT
threatening VERB
while SCONJ
brain NOUN
tumors NOUN
are?How INTJ
about ADP
quality NOUN
of ADP
life NOUN
guys NOUN
? PUNCT
  SPACE
May AUX
the DET
candida PROPN
demon NOUN
never ADV
cross VERB
your PRON
sinus NOUN
cavity NOUN
or CCONJ
gut(if NOUN
it PRON
does AUX
, PUNCT
you PRON
may AUX
feel VERB
differently ADV
about ADP
the DET
issue).Marty NOUN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59549From NUM
: PUNCT
sdl@linus.mitre.org PROPN
( PUNCT
Steven PROPN
D. PROPN
Litvintchouk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidIn NOUN
article NOUN
< X
1993Apr29.052044.23918@nmt.edu NUM
> X
houle@nmt.edu NUM
( PUNCT
Paul PROPN
Houle PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
advice NOUN
for ADP
the DET
use NOUN
of ADP
> X
antihistamines NOUN
as SCONJ
sleep PROPN
aids PROPN
, PUNCT
  SPACE
and CCONJ
if SCONJ
there PRON
are AUX
any DET
dangers NOUN
of ADP
such ADJ
use NOUN
> X
( PUNCT
Seems VERB
safe ADJ
to ADP
me PRON
since SCONJ
they PRON
are AUX
used VERB
chronically ADV
for ADP
allergies NOUN
by ADP
> X
millions NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
want VERB
to PART
try VERB
BZs NOUN
, PUNCT
  SPACE
because SCONJ
BZ PROPN
addiction NOUN
seems VERB
to PART
be AUX
> X
a DET
serious ADJ
threat NOUN
, PUNCT
  SPACE
and CCONJ
from ADP
what PRON
I PRON
hear VERB
, PUNCT
  SPACE
BZ PROPN
sleep NOUN
quality NOUN
is AUX
not PART
good ADJ
, PUNCT
> X
whereas SCONJ
antihistamine PROPN
sleep NOUN
quality NOUN
seems VERB
to PART
be AUX
better ADJ
for ADP
me PRON
. PUNCT
  SPACE
I PRON
have AUX
> X
tried VERB
some DET
dietary ADJ
tryptophan ADJ
loading NOUN
stuff NOUN
, PUNCT
  SPACE
and CCONJ
that SCONJ
also ADV
seems VERB
to PART
> VERB
lower ADJ
sleep NOUN
quality NOUN
, PUNCT
  SPACE
I PRON
seem VERB
to PART
wake VERB
up ADP
around ADV
4:00 NUM
or CCONJ
so ADV
and CCONJ
be AUX
in ADP
some DET
> X
kind NOUN
of ADP
mental ADJ
haze NOUN
until ADP
7:00 NUM
or CCONJ
8:00 NUM
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
I PRON
would AUX
be AUX
interested ADJ
in ADP
> X
any DET
other ADJ
advice NOUN
for ADP
helping VERB
my PRON
problem NOUN
. PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
've AUX
already ADV
tried VERB
> X
many ADJ
of ADP
the DET
non ADJ
- ADJ
pharmacological ADJ
solutions)Antihistamines NOUN
have AUX
been AUX
the DET
active ADJ
ingredient NOUN
of ADP
OTC PROPN
sleep NOUN
aids PROPN
fordecades NOUN
. PUNCT
  SPACE
Go VERB
to ADP
any DET
drugstore NOUN
and CCONJ
look VERB
at ADP
the DET
packages NOUN
of ADP
such ADJ
sleepaids NOUN
as SCONJ
Sominex PROPN
, PUNCT
Nytol PROPN
, PUNCT
etc X
. PUNCT
  SPACE
The DET
active ADJ
ingredient NOUN
is AUX
: PUNCT
diphenhydramine PROPN
, PUNCT
the DET
same ADJ
antihistamine NOUN
that PRON
's AUX
in ADP
Benadryl.--Steven NUM
LitvintchoukMITRE PROPN
Corporation202 PROPN
Burlington PROPN
RoadBedford PROPN
, PUNCT
MA PROPN
  SPACE
01730 NUM
- SYM
1420Fone NUM
: SYM
  SPACE
( PUNCT
617)271 NUM
- PUNCT
7753ARPA NUM
: PUNCT
  SPACE
sdl@mitre.orgUUCP X
: PUNCT
  SPACE
linus!sdlNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59550From NUM
: PUNCT
uabdpo.dpo.uab.edu!gila005 NOUN
( PUNCT
Stephen PROPN
Holland)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Annual ADJ
inguinal ADJ
hernia PROPN
repair NOUN
> X
> X
In ADP
article NOUN
< X
jpc.735692207@avdms8.msfc.nasa.gov PROPN
> PROPN
, PUNCT
jpc@avdms8.msfc.nasa.gov PROPN
> X
( PUNCT
J. PROPN
Porter PROPN
Clark PROPN
) PUNCT
wrote VERB
: PUNCT
> X
[ PUNCT
synopsis NOUN
] PUNCT
Young ADJ
man NOUN
with ADP
inguianl PROPN
hernia PROPN
on ADP
one NUM
side NOUN
, PUNCT
repaired VERB
, PUNCT
now ADV
has AUX
> X
new ADJ
hernia PROPN
on ADP
other ADJ
side NOUN
. PUNCT
  SPACE
What PRON
gives VERB
, PUNCT
he PRON
asks VERB
? PUNCT
  SPACE
[ PUNCT
and CCONJ
he PRON
continues VERB
... PUNCT
] PUNCT
> X
> X
Of ADV
course ADV
, PUNCT
my PRON
wife NOUN
thinks VERB
it PRON
's AUX
from ADP
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
> X
> X
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
... PUNCT
> X
> X
There PRON
is AUX
the DET
possibility NOUN
that SCONJ
there PRON
is AUX
some DET
degree NOUN
of ADP
constipation NOUN
causing VERB
> X
chronic NOUN
straining NOUN
which PRON
has AUX
caused VERB
the DET
bowel NOUN
movements NOUN
. PUNCT
  SPACE
The DET
classic ADJ
> X
problems NOUN
that PRON
are AUX
supposed VERB
to PART
be AUX
looked VERB
for ADP
in ADP
someone PRON
with ADP
a DET
hernia PROPN
are AUX
> X
constipation NOUN
, PUNCT
chronic ADJ
cough NOUN
, PUNCT
colon NOUN
cancer NOUN
( PUNCT
and CCONJ
you PRON
're AUX
not PART
too ADV
young ADJ
for ADP
> X
that DET
) PUNCT
and CCONJ
sitting VERB
for ADP
long ADJ
periods NOUN
of ADP
time NOUN
at ADP
the DET
computer NOUN
, PUNCT
reading VERB
news NOUN
. PUNCT
> X
> X
Good ADJ
Luck PROPN
with ADP
your PRON
surgery NOUN
! PUNCT
> X
> X
Steve PROPN
HollandWell PROPN
, PUNCT
that DET
post NOUN
was AUX
not PART
that ADV
accurate ADJ
. PUNCT
  SPACE
People NOUN
with ADP
early ADJ
life NOUN
herniasare NOUN
felt VERB
to PART
have AUX
a DET
congenital ADJ
sack NOUN
that PRON
promotes VERB
the DET
formation NOUN
of ADP
hernias NOUN
. PUNCT
The DET
hernias NOUN
of ADP
later ADJ
life NOUN
may AUX
be AUX
more ADV
associated VERB
with ADP
chronic ADJ
straining NOUN
. PUNCT
  SPACE
However ADV
, PUNCT
the DET
risk NOUN
of ADP
damage NOUN
to ADP
the DET
intestine NOUN
without ADP
an DET
operation NOUN
is AUX
high ADJ
enough ADV
that SCONJ
it PRON
ought AUX
to PART
be AUX
repaired VERB
. PUNCT
  SPACE
The DET
risk NOUN
of ADP
cancer NOUN
is AUX
probablyno NOUN
higher ADJ
than SCONJ
the DET
general ADJ
population NOUN
, PUNCT
but CCONJ
since SCONJ
you PRON
are AUX
near SCONJ
40 NUM
, PUNCT
it PRON
wouldbe VERB
sensible ADJ
to PART
have AUX
some DET
sort NOUN
of ADP
cancer NOUN
screening NOUN
, PUNCT
such ADJ
as SCONJ
a DET
flexiblesigmoidoscopy NOUN
. PUNCT
  SPACE
Sorry ADJ
for ADP
the DET
misleading ADJ
info NOUN
. PUNCT
Steve PROPN
HollandNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59551From NUM
: PUNCT
klier@iscsvax.uni.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
allergic ADJ
reactions NOUN
against ADP
laser NOUN
printers??In NUM
article NOUN
< X
1993Apr29.124806.4599@Informatik PROPN
. PUNCT
TU PROPN
- PUNCT
Muenchen PROPN
. PUNCT
DE PROPN
> PROPN
, PUNCT
rdd@uts.ipp-garching.mpg.de PROPN
( PUNCT
Reinhard PROPN
Drube PROPN
) PUNCT
writes VERB
: PUNCT
> X
does AUX
anyone PRON
know VERB
about ADP
allergic ADJ
reactions NOUN
caused VERB
by ADP
the DET
developer NOUN
/ SYM
toner NOUN
> X
of ADP
laser NOUN
printers NOUN
? PUNCT
What PRON
chemical NOUN
stuff NOUN
is AUX
involved?Mainly ADV
carbon NOUN
dust NOUN
with ADP
iron NOUN
in ADP
a DET
plastic ADJ
binder NOUN
that PRON
is AUX
melted VERB
on ADP
to PART
thepaper VERB
. PUNCT
  SPACE
Same ADJ
stuff NOUN
as SCONJ
dry ADJ
paper NOUN
photocopiers NOUN
. PUNCT
Allergies NOUN
? PUNCT
  SPACE
Have AUX
n't PART
heard VERB
of ADP
any DET
, PUNCT
but CCONJ
anything PRON
's AUX
possible ADJ
with ADP
allergies NOUN
; PUNCT
-)Kay PROPN
Klier PROPN
  SPACE
Biology PROPN
Dept PROPN
  SPACE
UNINewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59552From NUM
: PUNCT
gecko@camelot.bradley.edu NUM
( PUNCT
Anastasia PROPN
Defend)Subject NUM
: PUNCT
Physical PROPN
Therapy NOUN
StudentsI NOUN
am AUX
interested ADJ
in ADP
finding VERB
other ADJ
Physical PROPN
Therapy PROPN
Students PROPN
on ADP
thenet NOUN
... PUNCT
If SCONJ
you PRON
are AUX
one NUM
, PUNCT
or CCONJ
you PRON
know VERB
anyone PRON
could AUX
you PRON
get AUX
into ADP
contactwith PROPN
me PRON
via ADP
email NOUN
, PUNCT
my PRON
address NOUN
isgecko@camelot.bradley.edu PROPN
				 SPACE
thankyou NOUN
					 SPACE
anastasia PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59553From NUM
: PUNCT
SFB2763@MVS.draper.com X
( PUNCT
Eileen PROPN
Bauer)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
1993Apr30.162636.22327@cc.ic.ac.uk>,ewolff@ps.ic.ac.uk NUM
( PUNCT
Erik PROPN
The DET
Viking PROPN
) PUNCT
writes:>Hi.>>My NOUN
wife NOUN
has AUX
aquired VERB
some DET
thyroidal ADJ
( PUNCT
sp PROPN
? PUNCT
) PUNCT
deficiency NOUN
over ADP
the DET
past ADJ
year NOUN
> X
that PRON
gives VERB
symptoms NOUN
such ADJ
as SCONJ
needing VERB
much ADJ
sleep NOUN
, PUNCT
coldness NOUN
and CCONJ
proneness NOUN
> X
to ADP
gaining VERB
weight NOUN
. PUNCT
She PRON
has AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
taken VERB
the DET
ordinary ADJ
( PUNCT
? PUNCT
) PUNCT
> X
tests NOUN
and CCONJ
her PRON
values NOUN
were AUX
regarded VERB
as ADV
low ADJ
. PUNCT
The DET
doctor NOUN
( PUNCT
and CCONJ
my PRON
wife NOUN
) PUNCT
are AUX
> X
not PART
very ADV
interested ADJ
in ADP
starting VERB
medication NOUN
as SCONJ
this DET
" PUNCT
deactivates VERB
" PUNCT
the DET
> X
gland NOUN
, PUNCT
giving VERB
life NOUN
- PUNCT
long ADJ
dependency NOUN
to ADP
the DET
drug NOUN
( PUNCT
hormone?).> PROPN
... PUNCT
>My PROPN
questions NOUN
are AUX
: PUNCT
has AUX
anyone PRON
had VERB
/ SYM
heard VERB
of ADP
success NOUN
in ADP
using VERB
this DET
approach?>Her NOUN
values NOUN
have AUX
been AUX
( PUNCT
slowly ADV
but CCONJ
) PUNCT
steadily ADV
sinking VERB
, PUNCT
any DET
comment NOUN
on ADP
the DET
> X
probability NOUN
of ADP
improvement NOUN
? PUNCT
Although SCONJ
the DET
doctor NOUN
has AUX
told VERB
her PRON
to PART
' PUNCT
eat VERB
> X
normally ADV
' PUNCT
, PUNCT
my PRON
wife NOUN
has AUX
dieted VERB
vigorously ADV
to PART
keep VERB
her PRON
weight NOUN
as SCONJ
she PRON
feels VERB
> X
that DET
is AUX
part NOUN
of ADP
keeping VERB
an DET
edge NOUN
over ADP
the DET
illness NOUN
/ SYM
condition NOUN
, PUNCT
may AUX
this DET
> X
affect VERB
the DET
treatment NOUN
, PUNCT
development?>There PUNCT
are AUX
several ADJ
different ADJ
types NOUN
of ADP
Thyroid PROPN
diseases NOUN
which PRON
would AUX
causea VERB
hypothyroid ADJ
condition NOUN
( PUNCT
reduction NOUN
in ADP
the DET
output NOUN
of ADP
the DET
thyroid NOUN
, PUNCT
mainlythyroxin NOUN
) PUNCT
. PUNCT
Except SCONJ
for ADP
ones NOUN
caused VERB
by ADP
infections NOUN
, PUNCT
the DET
treatment NOUN
isgenerally ADV
thyroxin VERB
pills NOUN
. PUNCT
Hypothyroid ADJ
conditions NOUN
caused VERB
by ADP
infectionsusually ADV
disappear VERB
when ADV
the DET
infection NOUN
does AUX
... PUNCT
this DET
does AUX
n't PART
sound VERB
like SCONJ
thecase NOUN
with ADP
your PRON
wife NOUN
. PUNCT
Thyroxin NOUN
orally ADV
does AUX
" PUNCT
shut VERB
down ADP
the DET
thyroid NOUN
" PUNCT
through ADP
a DET
feedback NOUN
loopinvolving VERB
the DET
pituitary NOUN
( PUNCT
I PRON
believe VERB
) PUNCT
. PUNCT
The DET
pituitary NOUN
" PUNCT
thinks VERB
" PUNCT
that DET
thecorrect NOUN
amount NOUN
of ADP
thyroxin NOUN
is AUX
being AUX
produced VERB
so SCONJ
it PRON
does AUX
n't PART
have AUX
totell PROPN
the DET
thyroid NOUN
to PART
produce VERB
more ADJ
. PUNCT
This DET
process NOUN
is AUX
reversable ADJ
! PUNCT
I PRON
haveHashimoto VERB
's PART
thyroiditis NOUN
( PUNCT
an DET
autoimmune ADJ
condition NOUN
) PUNCT
and CCONJ
was AUX
on ADP
thyroxinfor ADP
approx PROPN
6 NUM
mo NOUN
when ADV
my PRON
endocrinologist NOUN
suggested VERB
I PRON
not PART
take VERB
the DET
pillsfor NOUN
6 NUM
wks NOUN
. PUNCT
When ADV
I PRON
was AUX
retested VERB
for ADP
thyroxin NOUN
levels NOUN
, PUNCT
they PRON
were AUX
normal ADJ
. PUNCT
I PRON
still ADV
get VERB
tested VERB
every DET
6mo NOUN
because SCONJ
the DET
condition NOUN
might AUX
reappear VERB
. PUNCT
The DET
pills NOUN
are AUX
safe ADJ
and CCONJ
have AUX
very ADV
few ADJ
side NOUN
- PUNCT
affects NOUN
( PUNCT
& CCONJ
those DET
mostly ADV
atbeginning VERB
of ADP
treatment NOUN
) PUNCT
. PUNCT
Having VERB
a DET
baby NOUN
might AUX
be AUX
a DET
problem NOUN
and CCONJ
would AUX
atleast ADV
require VERB
closer ADJ
monitoring NOUN
of ADP
hormone NOUN
levels NOUN
. PUNCT
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart),changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things NOUN
. PUNCT
I PRON
am AUX
not PART
a DET
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
I PRON
mistated VERB
something PRON
, PUNCT
but CCONJ
the DET
importantthing NOUN
is AUX
that SCONJ
thyroid NOUN
problems NOUN
are AUX
usually ADV
easily ADV
corrected VERB
and CCONJ
if SCONJ
theyaren't PROPN
corrected VERB
can AUX
cause VERB
problems NOUN
in ADP
the DET
rest NOUN
of ADP
the DET
body NOUN
. PUNCT
Get AUX
asecond NOUN
opinion NOUN
from ADP
a DET
good ADJ
endocrinologist NOUN
and CCONJ
have AUX
him PRON
/ SYM
her PRON
explainthings NOUN
in ADP
detail NOUN
to ADP
you PRON
and CCONJ
your PRON
wife.- NOUN
Eileen PROPN
BauerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59554From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Vitamin PROPN
A NOUN
and CCONJ
InfectionI've NOUN
sent VERB
Gordon PROPN
R. PROPN
my PRON
posts NOUN
on ADP
protein NOUN
, PUNCT
vitamin NOUN
C NOUN
and CCONJ
vitamin NOUN
A NOUN
prior ADV
to ADP
posting VERB
on ADP
internet NOUN
as SCONJ
a DET
professional ADJ
courtesy NOUN
. PUNCT
  SPACE
Somehow ADV
I PRON
've AUX
managed VERB
to PART
delete VERB
my PRON
vitamin NOUN
A DET
post NOUN
from ADP
my PRON
text NOUN
file NOUN
. PUNCT
  SPACE
Gordon PROPN
R. PROPN
had AUX
promised VERB
to PART
send VERB
it PRON
back ADV
to ADP
me PRON
but CCONJ
he PRON
's AUX
pretty ADV
mad ADJ
at ADP
me PRON
right ADV
now ADV
so ADV
I PRON
'll AUX
just ADV
retype VERB
it PRON
. PUNCT
Since SCONJ
digging VERB
through ADP
all DET
my PRON
references NOUN
is AUX
very ADV
time NOUN
consuming(took VERB
me PRON
all DET
day NOUN
for ADP
that DET
PMS PROPN
post NOUN
) PUNCT
, PUNCT
I PRON
'm AUX
not PART
going VERB
to PART
cite VERB
any DET
references(Gordon PROPN
R. PROPN
has AUX
them PRON
) PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
going VERB
to PART
include VERB
some DET
of ADP
the DET
material NOUN
from ADP
Weinsier PROPN
and CCONJ
Morgan PROPN
's PART
new ADJ
Nutrition PROPN
textbook(which PROPN
was AUX
not PART
in ADP
my PRON
original ADJ
material NOUN
) PUNCT
to PART
point VERB
out ADP
that SCONJ
what PRON
I PRON
'm AUX
going VERB
to PART
say VERB
has AUX
some DET
support NOUN
in ADP
the DET
medical ADJ
community NOUN
. PUNCT
Diet PROPN
has AUX
been AUX
know VERB
to PART
affect VERB
the DET
immune ADJ
system NOUN
of ADP
man NOUN
for ADP
a DET
very ADV
, PUNCT
very ADV
long ADJ
time NOUN
. PUNCT
  SPACE
Protein PROPN
has AUX
always ADV
had VERB
the DET
biggest ADJ
role NOUN
in ADP
infection NOUN
and CCONJ
I PRON
've AUX
already ADV
covered VERB
the DET
role NOUN
of ADP
protein NOUN
in ADP
protecting VERB
you PRON
against ADP
infection NOUN
. PUNCT
Now ADV
I PRON
'm AUX
going VERB
to PART
hit VERB
what PRON
I PRON
consider VERB
to PART
be AUX
the DET
most ADV
important ADJ
nutrient NOUN
in ADP
the DET
U.S. PROPN
as ADV
far ADV
as SCONJ
infection NOUN
is AUX
concerned(vitamin PROPN
A).When PROPN
vitamin PROPN
A PROPN
was AUX
originally ADV
discovered VERB
, PUNCT
it PRON
was AUX
commonly ADV
referred VERB
to ADP
as SCONJ
the DET
anti ADJ
- ADJ
infection ADJ
vitamin NOUN
. PUNCT
  SPACE
Many ADJ
people(Linus NOUN
Pauling VERB
being AUX
one NUM
) PUNCT
have AUX
decided VERB
to PART
take VERB
this DET
title NOUN
away ADV
from ADP
vitamin NOUN
A NOUN
and CCONJ
give VERB
it PRON
to ADP
vitamin NOUN
C(which PROPN
I PRON
've AUX
already ADV
covered VERB
) PUNCT
. PUNCT
  SPACE
Big ADJ
mistake(in PROPN
my PRON
opinion NOUN
) PUNCT
. PUNCT
  SPACE
Vitamin PROPN
A PROPN
is AUX
also ADV
getting VERB
a DET
reputation NOUN
as SCONJ
an DET
anti ADJ
- ADJ
cancer ADJ
vitamin(with PROPN
good ADJ
reason).The PROPN
NCI PROPN
currently ADV
has AUX
numerous ADJ
clinical ADJ
trials NOUN
in ADP
progress NOUN
to PART
see VERB
if SCONJ
vitamin NOUN
A NOUN
can AUX
not PART
only ADV
prevent VERB
cancer NOUN
but CCONJ
cure VERB
it PRON
as ADV
well ADV
. PUNCT
  SPACE
It PRON
's AUX
role NOUN
in ADP
both CCONJ
cancer NOUN
and CCONJ
infection NOUN
is AUX
almost ADV
identical(but NUM
not PART
quite).Vitamin PUNCT
A DET
comes VERB
in ADP
two NUM
completely ADV
different ADJ
forms(retinol NOUN
and CCONJ
beta NOUN
- PUNCT
carotene NOUN
) PUNCT
. PUNCT
  SPACE
Retinol PROPN
is AUX
the DET
animal NOUN
form NOUN
and CCONJ
it PRON
's AUX
toxic ADJ
, PUNCT
beta NOUN
- PUNCT
carotene NOUN
is AUX
the DET
plant NOUN
form NOUN
and CCONJ
it PRON
's AUX
completely ADV
nontoxic ADJ
. PUNCT
  SPACE
Both CCONJ
retinol NOUN
and CCONJ
beta NOUN
- PUNCT
carotene NOUN
display NOUN
good ADJ
absorption NOUN
in ADP
the DET
human ADJ
gut NOUN
if SCONJ
bile NOUN
is AUX
present(60 PROPN
- PUNCT
80 NUM
% NOUN
) PUNCT
. PUNCT
  SPACE
The DET
liver NOUN
stores NOUN
all DET
of ADP
your PRON
retinol NOUN
and CCONJ
doles VERB
it PRON
out ADP
for ADP
other ADJ
tissues NOUN
to PART
use VERB
by ADP
synthesizing VERB
retinol NOUN
binding NOUN
protein(RBP NOUN
) PUNCT
. PUNCT
  SPACE
A DET
normal ADJ
human ADJ
adult NOUN
liver NOUN
should AUX
have AUX
500,000IU NUM
to PART
1,000,000IU NUM
of ADP
retinol NOUN
stored VERB
. PUNCT
  SPACE
We PRON
are AUX
born VERB
with ADP
10,000IU NUM
in ADP
our PRON
liver NOUN
. PUNCT
  SPACE
U.S. PROPN
autopsy ADV
has AUX
shown VERB
that SCONJ
about ADV
30 NUM
% NOUN
of ADP
Americans PROPN
die VERB
with ADP
the DET
same(or PROPN
less ADV
) PUNCT
amount NOUN
of ADP
vitamin NOUN
A NOUN
as SCONJ
they PRON
were AUX
born VERB
with ADP
. PUNCT
  SPACE
If SCONJ
you PRON
do AUX
n't PART
believe VERB
that DET
nutritional NOUN
reserves(like PROPN
that DET
of ADP
retinol NOUN
in ADP
the DET
liver NOUN
) PUNCT
are AUX
important ADJ
, PUNCT
then ADV
this DET
low ADJ
vitamin NOUN
A DET
reserve NOUN
is AUX
not PART
going VERB
to PART
affect VERB
you PRON
. PUNCT
  SPACE
But CCONJ
if SCONJ
you PRON
believe(like VERB
I PRON
do AUX
) PUNCT
that SCONJ
the DET
nutrient ADJ
reserves NOUN
are AUX
important ADJ
, PUNCT
then ADV
there PRON
is AUX
a DET
problem NOUN
with ADP
vitamin NOUN
A NOUN
in ADP
the DET
U.S.The PROPN
U.S. PROPN
RDA PROPN
for ADP
vitamin NOUN
A NOUN
in ADP
an DET
adult NOUN
male NOUN
is AUX
1,000 NUM
RE PROPN
or CCONJ
5,000IU NUM
of ADP
vitamin NOUN
A. NOUN
  SPACE
For ADP
adult NOUN
feamles NOUN
its PRON
800 NUM
RE PROPN
or CCONJ
4,000IU NUM
of ADP
vitamin NOUN
A. NOUN
  SPACE
Diet PROPN
surveys NOUN
show VERB
that SCONJ
most ADJ
Americans PROPN
are AUX
getting VERB
this DET
amount NOUN
of ADP
vitamin NOUN
A(either NOUN
retinol NOUN
or CCONJ
Beta NOUN
- PUNCT
carotene NOUN
) PUNCT
from ADP
their PRON
diet NOUN
. PUNCT
  SPACE
But CCONJ
the DET
NRC(National PROPN
Research PROPN
Council PROPN
) PUNCT
was AUX
going VERB
to PART
release VERB
a DET
new ADJ
RDA PROPN
table NOUN
in ADP
1985 NUM
that PRON
had AUX
the DET
RDA PROPN
for ADP
both DET
vitamin NOUN
A NOUN
and CCONJ
vitamin NOUN
C NOUN
raised(C NOUN
to ADP
90 NUM
mg NOUN
per ADP
day NOUN
and CCONJ
A NOUN
to ADP
7,500IU NUM
per ADP
day NOUN
for ADP
adult NOUN
males NOUN
) PUNCT
. PUNCT
  SPACE
That DET
report NOUN
and CCONJ
it PRON
's AUX
recommendations NOUN
was AUX
killed VERB
. PUNCT
  SPACE
Why ADV
? PUNCT
Concern NOUN
over ADP
the DET
increasing VERB
supplementation NOUN
was AUX
the DET
main ADJ
reason NOUN
. PUNCT
  SPACE
RDAs NOUN
are AUX
set VERB
to PART
prevent VERB
clinical ADJ
disease NOUN
, PUNCT
not PART
to PART
keep VERB
nutrient ADJ
reserves NOUN
full ADJ
. PUNCT
  SPACE
Many ADJ
scientist NOUN
in ADP
the DET
U.S. PROPN
feel VERB
that SCONJ
the DET
time NOUN
has AUX
come VERB
to PART
move VERB
away ADV
from ADP
the DET
prevention NOUN
of ADP
clinical ADJ
pathology NOUN
concept NOUN
and CCONJ
move VERB
towards ADP
the DET
promotion NOUN
of ADP
optimum ADJ
health NOUN
concept NOUN
, PUNCT
especially ADV
since SCONJ
we PRON
have AUX
some DET
very ADV
good ADJ
data NOUN
now ADV
that PRON
show VERB
that SCONJ
nutrient ADJ
reserves NOUN
are AUX
extremely ADV
important ADJ
during ADP
periods NOUN
of ADP
stress NOUN
. PUNCT
  SPACE
The DET
nutritonal ADJ
concervatives NOUN
won VERB
that DET
battle NOUN
and CCONJ
a DET
new ADJ
group NOUN
of ADP
scientist NOUN
were AUX
collected VERB
to PART
come VERB
out ADP
with ADP
the DET
1989 NUM
RDA PROPN
list NOUN
which PRON
lowered VERB
the DET
RDA PROPN
for ADP
several ADJ
nutrients NOUN
and CCONJ
moved VERB
the DET
dietary ADJ
guidelines NOUN
back ADV
to ADP
where ADV
they PRON
were AUX
when ADV
we PRON
first ADV
started VERB
in ADP
the DET
1940's(get PROPN
enough ADV
to PART
prevent VERB
clinical ADJ
pathology NOUN
, PUNCT
but CCONJ
not PART
enough ADJ
to PART
fill VERB
the DET
reserves).We ADJ
know NOUN
from ADP
autopsy ADV
that SCONJ
only ADV
about ADV
10 NUM
% NOUN
of ADP
Americans PROPN
have AUX
a DET
liver NOUN
with ADP
a DET
normal ADJ
vitamin NOUN
A DET
reserve(500,000IU NOUN
to ADP
1,000,000IU NUM
) PUNCT
. PUNCT
  SPACE
I PRON
preach VERB
nutrient ADJ
reserves NOUN
to ADP
my PRON
students NOUN
and CCONJ
tell VERB
them PRON
to PART
measure VERB
them PRON
in ADP
their PRON
patients NOUN
. PUNCT
But CCONJ
for ADP
vitamin NOUN
A NOUN
, PUNCT
only ADV
a DET
liver NOUN
biopsy(or X
autopsy ADJ
data NOUN
) PUNCT
will AUX
tell VERB
you PRON
how ADV
much ADJ
somebody PRON
has AUX
stored VERB
. PUNCT
  SPACE
We PRON
can AUX
tell VERB
very ADV
easily ADV
if SCONJ
someone PRON
has AUX
overfilled VERB
his PRON
or CCONJ
her PRON
liver NOUN
with ADP
vitamin NOUN
A NOUN
by ADP
measuring VERB
the DET
serium NOUN
retinol NOUN
level(levels PROPN
above ADP
450ug PROPN
/ SYM
dl PROPN
are AUX
highly ADV
suggestive ADJ
that SCONJ
you PRON
have AUX
filled VERB
your PRON
liver NOUN
with ADP
vitamin NOUN
A NOUN
and CCONJ
it PRON
's AUX
time NOUN
to PART
stop VERB
taking VERB
retinol NOUN
) PUNCT
. PUNCT
  SPACE
The DET
normal ADJ
range NOUN
of ADP
serum ADJ
retinol NOUN
will AUX
be AUX
20 NUM
- PUNCT
100ug PROPN
/ SYM
dl PROPN
. PROPN
  SPACE
Hypervitaminosis PROPN
A PROPN
is AUX
diagnosed VERB
with ADP
a DET
serum ADJ
retinol NOUN
level NOUN
of ADP
2,000ug NUM
/ SYM
dl PROPN
or CCONJ
higher(Interpretation NOUN
of ADP
Diagnostic PROPN
Test PROPN
, PUNCT
Wallach PROPN
, PUNCT
M.D. PROPN
, PUNCT
a DET
Little PROPN
Brown PROPN
Series PROPN
book NOUN
) PUNCT
. PUNCT
  SPACE
This DET
level NOUN
of ADP
vitamin NOUN
A NOUN
in ADP
blood NOUN
means VERB
that SCONJ
medical ADJ
attention NOUN
is AUX
necessary ADJ
due ADP
to ADP
vitamin NOUN
A DET
toxicity NOUN
. PUNCT
  SPACE
Weinsier PROPN
and CCONJ
Morgan PROPN
take VERB
a DET
much ADV
more ADV
conservative ADJ
approach NOUN
to PART
vitamin NOUN
A DET
toxicity NOUN
than SCONJ
does AUX
Wallach PROPN
, PUNCT
as SCONJ
you PRON
will AUX
see VERB
later ADV
in ADP
this DET
post NOUN
. PUNCT
  SPACE
Between ADP
450ug PROPN
/ SYM
dl PROPN
and CCONJ
2,000ug PROPN
/ SYM
dl PROPN
you PRON
should AUX
have AUX
plenty NOUN
of ADP
warning NOUN
that SCONJ
it PRON
's AUX
time NOUN
to PART
eliminate VERB
the DET
retinol NOUN
from ADP
your PRON
diet(headache PROPN
, PUNCT
redness NOUN
of ADP
the DET
skin NOUN
, PUNCT
hair NOUN
loss NOUN
, PUNCT
joint ADJ
pain).I X
tell VERB
all DET
my PRON
students NOUN
that PRON
will AUX
use VERB
vitamin NOUN
A NOUN
in ADP
their PRON
practice NOUN
that SCONJ
they PRON
had AUX
better ADV
monitor VERB
the DET
serum NOUN
retinol NOUN
level NOUN
and CCONJ
stop VERB
when ADV
there PRON
are AUX
clear ADJ
signs NOUN
that SCONJ
the DET
liver NOUN
is AUX
full ADJ
. PUNCT
  SPACE
You PRON
will AUX
never ADV
really ADV
know VERB
if SCONJ
the DET
patient NOUN
needs VERB
the DET
vitamin NOUN
A(because VERB
you PRON
can AUX
not PART
measure VERB
the DET
pool NOUN
in ADP
liver NOUN
) PUNCT
but CCONJ
you PRON
will AUX
always ADV
know VERB
when ADV
it PRON
's AUX
time NOUN
to ADP
stop(just PROPN
like INTJ
in ADP
those DET
vitamin NOUN
A NOUN
for ADP
PMS PROPN
studies).Beta NOUN
- PUNCT
carotene NOUN
can AUX
be AUX
taken VERB
to PART
fill VERB
up ADP
your PRON
liver NOUN
with ADP
retinol NOUN
and CCONJ
you PRON
will AUX
never ADV
have AUX
to PART
worry VERB
about ADP
toxicity NOUN
because SCONJ
the DET
conversion NOUN
of ADP
beta NOUN
- PUNCT
carotene NOUN
to PART
retinol VERB
that PRON
occurs VERB
in ADP
both CCONJ
your PRON
gut NOUN
and CCONJ
your PRON
liver NOUN
will AUX
slow VERB
down(stops NOUN
in ADP
the DET
liver NOUN
and CCONJ
slows VERB
down ADP
in ADP
the DET
gut NOUN
) PUNCT
when ADV
your PRON
liver NOUN
is AUX
full ADJ
of ADP
retinol NOUN
. PUNCT
  SPACE
But CCONJ
taking VERB
Beta NOUN
- PUNCT
carotene NOUN
as SCONJ
the DET
source NOUN
of ADP
retinol NOUN
takes VERB
a DET
very ADV
long ADJ
time NOUN
to PART
fill VERB
the DET
liver NOUN
up(I've NOUN
seen VERB
estimates NOUN
of ADP
20 NUM
- SYM
30 NUM
years NOUN
) PUNCT
if SCONJ
you PRON
are AUX
in ADP
the DET
30 NUM
% NOUN
that PRON
only ADV
has AUX
as ADV
much ADJ
as SCONJ
you PRON
were AUX
born VERB
with ADP
in ADP
your PRON
liver(10,000IU NOUN
) PUNCT
. PUNCT
  SPACE
One NUM
other ADJ
problem NOUN
with ADP
beta NOUN
- PUNCT
carotene NOUN
, PUNCT
if SCONJ
you PRON
have AUX
a DET
zinc NOUN
deficit NOUN
, PUNCT
you PRON
will AUX
not PART
convert VERB
as SCONJ
much ADJ
beta NOUN
- PUNCT
carotene NOUN
to PART
retinol VERB
in ADP
the DET
gut NOUN
or CCONJ
the DET
liver NOUN
because SCONJ
the DET
enxzyme NOUN
that PRON
does AUX
this DET
conversion NOUN
requires VERB
zinc NOUN
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
the DET
release NOUN
of ADP
retinol NOUN
from ADP
the DET
liver NOUN
is AUX
a DET
zinc NOUN
dependent ADJ
process NOUN
so SCONJ
a DET
zinc NOUN
deficit NOUN
will AUX
cause VERB
a DET
vitamin NOUN
A DET
deficit NOUN
even ADV
if SCONJ
your PRON
liver NOUN
has AUX
plenty NOUN
of ADP
vitamin NOUN
A.Now PROPN
what PRON
does AUX
vitamin NOUN
A DET
do NOUN
in ADP
cancer NOUN
and CCONJ
infection NOUN
protection NOUN
? PUNCT
  SPACE
The DET
body NOUN
uses VERB
vitamin NOUN
A(retinol PROPN
) PUNCT
for ADP
many ADJ
different ADJ
things NOUN
. PUNCT
  SPACE
Vision(the PROPN
first ADJ
to PART
be AUX
nailed VERB
down ADP
and CCONJ
where ADV
you PRON
see VERB
overt ADJ
clinical ADJ
pathology NOUN
) PUNCT
uses VERB
the DET
aldehyde(retinal PROPN
) PUNCT
and CCONJ
alcohol(retinol PROPN
) PUNCT
form NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
Reproduction NOUN
uses VERB
the DET
retinol NOUN
form NOUN
  SPACE
and CCONJ
some DET
retinal ADJ
. PUNCT
  SPACE
Infection NOUN
and CCONJ
cancer NOUN
protection NOUN
uses VERB
retinoic ADJ
acid NOUN
. PUNCT
  SPACE
How ADV
do AUX
you PRON
convert VERB
retinol(which PROPN
your PRON
white ADJ
blood NOUN
cells NOUN
and CCONJ
the DET
mucosal ADJ
cells NOUN
get VERB
from ADP
blood NOUN
) PUNCT
to PART
retinoic VERB
acid NOUN
? PUNCT
  SPACE
You PRON
use VERB
enzymes NOUN
, PUNCT
one NUM
of ADP
which PRON
requires VERB
vitamin NOUN
C(this PROPN
is AUX
why ADV
Pauling PROPN
has AUX
tried VERB
to PART
pull VERB
the DET
title NOUN
of ADP
anti ADJ
- ADJ
infection ADJ
vitamin NOUN
away ADV
from ADP
vitamin NOUN
A NOUN
) PUNCT
. PUNCT
  SPACE
Vitamin PROPN
C PROPN
does AUX
play VERB
a DET
role NOUN
in ADP
infection(interferon PROPN
production NOUN
for ADP
example NOUN
) PUNCT
but CCONJ
it PRON
's AUX
biggest ADJ
role NOUN
is AUX
the DET
conversion NOUN
of ADP
retinol NOUN
to PART
retinoic VERB
acid NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
increase VERB
your PRON
intake NOUN
of ADP
vitamin NOUN
C NOUN
, PUNCT
you PRON
will AUX
increase VERB
your PRON
formation NOUN
of ADP
retinoic ADJ
acid NOUN
. PUNCT
  SPACE
But CCONJ
retinoic ADJ
acid NOUN
can AUX
not PART
be AUX
converted VERB
back ADV
to ADP
retinol(as PROPN
retinal PROPN
can AUX
) PUNCT
and CCONJ
once SCONJ
it PRON
's AUX
formed VERB
, PUNCT
it PRON
's AUX
used VERB
and CCONJ
then ADV
lost VERB
to ADP
the DET
body NOUN
. PUNCT
  SPACE
This DET
is AUX
why ADV
the DET
1985 NUM
NRC PROPN
group NOUN
wanted VERB
to PART
increase VERB
both DET
vitamin NOUN
C NOUN
and CCONJ
vitamin NOUN
A DET
RDA's NOUN
. PUNCT
Most ADJ
people NOUN
taking VERB
large ADJ
amounts NOUN
of ADP
vitamin NOUN
C NOUN
really ADV
think VERB
that SCONJ
they PRON
are AUX
helping VERB
themselves PRON
. PUNCT
  SPACE
If SCONJ
they PRON
do AUX
n't PART
have AUX
much ADJ
vitamin NOUN
A NOUN
in ADP
their PRON
liver NOUN
and CCONJ
they PRON
are AUX
not PART
also ADV
increasing VERB
their PRON
intake NOUN
of ADP
vitamin NOUN
A NOUN
, PUNCT
they PRON
actually ADV
do AUX
themselves PRON
more ADJ
harm NOUN
than SCONJ
good ADJ
. PUNCT
Retinoic ADJ
acid NOUN
functions NOUN
in ADP
white ADJ
blood NOUN
cells NOUN
to PART
promote VERB
antibody NOUN
formation NOUN
. PUNCT
In ADP
the DET
mucus PROPN
membrane NOUN
, PUNCT
it PRON
is AUX
the DET
main ADJ
factor NOUN
in ADP
promoting VERB
good ADJ
mucus NOUN
production NOUN
and CCONJ
a DET
good ADJ
epithelial ADJ
cell NOUN
barrier NOUN
to PART
prevent VERB
infectious ADJ
agents NOUN
from ADP
entering VERB
the DET
blood NOUN
system NOUN
. PUNCT
  SPACE
The DET
mucus ADJ
membrane NOUN
is AUX
referred VERB
to ADP
as SCONJ
the DET
" PUNCT
first ADJ
line NOUN
" PUNCT
defense NOUN
against ADP
infection NOUN
. PUNCT
  SPACE
For ADP
cancer NOUN
, PUNCT
retinoic NOUN
acid NOUN
has AUX
been AUX
shown VERB
to PART
act VERB
as SCONJ
a DET
cell NOUN
brake(it NOUN
counteracts VERB
the DET
effect NOUN
of ADP
cell NOUN
promoters NOUN
which PRON
stimulate VERB
cells NOUN
to PART
divide VERB
) PUNCT
. PUNCT
  SPACE
Cancer NOUN
has AUX
two NUM
distinct ADJ
steps NOUN
, PUNCT
DNA NOUN
alteration NOUN
and CCONJ
cell NOUN
promotion NOUN
. PUNCT
  SPACE
For ADP
cells NOUN
that PRON
normally ADV
divide VERB
all DET
the DET
time NOUN
, PUNCT
promoters NOUN
are AUX
not PART
that ADV
important ADJ
. PUNCT
  SPACE
But CCONJ
for ADP
lung NOUN
and CCONJ
breast NOUN
tissue NOUN
which PRON
does AUX
not PART
normally ADV
divide VERB
, PUNCT
promoters NOUN
are AUX
real ADV
important ADJ
in ADP
the DET
malignant ADJ
process NOUN
. PUNCT
This DET
is AUX
the DET
major ADJ
reason NOUN
why ADV
the DET
NCI PROPN
has AUX
so ADV
many ADJ
different ADJ
clinical ADJ
trials NOUN
in ADP
progress NOUN
using VERB
retinol NOUN
and/or CCONJ
beta NOUN
- PUNCT
carotene NOUN
. PUNCT
Chronic PROPN
infection(irritation PROPN
) PUNCT
of ADP
the DET
mucus PROPN
membranes PROPN
is AUX
a DET
signal NOUN
that SCONJ
vitamin NOUN
A NOUN
may AUX
not PART
be AUX
adequate ADJ
. PUNCT
  SPACE
I PRON
tell VERB
my PRON
students NOUN
that SCONJ
any DET
patient NOUN
who PRON
walks VERB
into ADP
their PRON
office NOUN
with ADP
a DET
complaint NOUN
of ADP
chronic ADJ
infection NOUN
has AUX
to PART
be AUX
worked VERB
up ADP
for ADP
vitamin NOUN
A(along ADP
with ADP
the DET
other ADJ
factors NOUN
that PRON
medicine NOUN
already ADV
has AUX
on ADP
it PRON
's PART
list NOUN
of ADP
causes NOUN
for ADP
chronic ADJ
infection NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
drive VERB
this DET
home NOUN
in ADP
my PRON
course NOUN
at ADP
the DET
Osteopathic PROPN
College PROPN
in ADP
Tulsa PROPN
, PUNCT
when ADV
I PRON
teach VERB
at ADP
the DET
allopathic ADJ
medical ADJ
school NOUN
in ADP
Tulsa(OU PROPN
's PART
branch NOUN
campus NOUN
) PUNCT
and CCONJ
when ADV
I PRON
give VERB
CME PROPN
lectures NOUN
. PUNCT
Dark ADJ
adaptation NOUN
is AUX
the DET
best ADJ
clinical ADJ
test NOUN
for ADP
vitamin NOUN
A DET
status NOUN
since SCONJ
night NOUN
vision NOUN
is AUX
impacted VERB
when ADV
liver NOUN
reverves NOUN
drop VERB
to ADP
50,000IU NUM
of ADP
retinol NOUN
. PUNCT
  SPACE
The DET
serum ADJ
level NOUN
of ADP
retinol NOUN
can AUX
also ADV
be AUX
used VERB
, PUNCT
but CCONJ
it PRON
does AUX
not PART
drop VERB
until ADP
liver NOUN
reserves NOUN
drop VERB
below ADP
10,000 NUM
to ADP
20,000IU NUM
. PUNCT
  SPACE
Asking VERB
a DET
patient NOUN
if SCONJ
they PRON
have AUX
trouble NOUN
seeing VERB
at ADP
night NOUN
is AUX
a DET
good ADJ
initial ADJ
screen(if NOUN
cataracts NOUN
are AUX
ruled VERB
out ADP
) PUNCT
. PUNCT
  SPACE
In ADP
one NUM
study NOUN
done VERB
on ADP
U.S. PROPN
Spanish PROPN
- PUNCT
Americans PROPN
where ADV
serum ADJ
retinol NOUN
levels NOUN
were AUX
measured VERB
, PUNCT
25 NUM
% NOUN
of ADP
the DET
sample NOUN
population NOUN
had AUX
a DET
serum ADJ
retinol NOUN
level NOUN
below ADP
20ug NOUN
/ SYM
dl PROPN
. PUNCT
As SCONJ
more ADJ
studies NOUN
are AUX
done VERB
on ADP
serum ADJ
retinol NOUN
levels NOUN
in ADP
population NOUN
groups NOUN
of ADP
the DET
U.S. PROPN
that PRON
have AUX
had VERB
a DET
history NOUN
of ADP
high ADJ
infection NOUN
rates NOUN
, PUNCT
we PRON
will AUX
probably ADV
see VERB
a DET
much ADJ
stonger NOUN
correlation NOUN
between ADP
infection NOUN
incidence NOUN
rates NOUN
and CCONJ
low ADJ
serum ADJ
retinol NOUN
levels NOUN
. PUNCT
What PRON
do AUX
Weinsier PROPN
and CCONJ
Morgan PROPN
have AUX
to PART
say VERB
about ADP
vitamin NOUN
A NOUN
? PUNCT
  SPACE
Here ADV
are AUX
excerptsfrom PROPN
their PRON
book NOUN
: PUNCT
Vitamin PROPN
A DET
functions NOUN
in ADP
vision NOUN
in ADP
the DET
forrm NOUN
of ADP
retinol NOUN
, PUNCT
it PRON
is AUX
necessay ADJ
for ADP
growth NOUN
and CCONJ
differentation NOUN
of ADP
epithelial ADJ
tissue NOUN
, PUNCT
and CCONJ
is AUX
required VERB
for ADP
reproduction NOUN
, PUNCT
embryonic ADJ
development NOUN
, PUNCT
and CCONJ
bone NOUN
growth NOUN
. PUNCT
  SPACE
Protein NOUN
- PUNCT
calorie NOUN
malnutrition NOUN
and CCONJ
zinc NOUN
deficiency NOUN
may AUX
impair VERB
the DET
absorption NOUN
, PUNCT
transport NOUN
, PUNCT
and CCONJ
metabolism NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
Retinaldehyde PROPN
is AUX
converted VERB
to PART
retinoic VERB
acid NOUN
, PUNCT
which PRON
has AUX
biological ADJ
activity NOUN
in ADP
growth NOUN
and CCONJ
in ADP
cell NOUN
diferentiation NOUN
but CCONJ
not PART
in ADP
reproduction NOUN
or CCONJ
vision NOUN
. PUNCT
  SPACE
The DET
most ADV
common ADJ
procedure NOUN
to PART
evaluate VERB
vitamin NOUN
A DET
status NOUN
is AUX
to PART
measure VERB
the DET
retinol NOUN
level NOUN
in ADP
plasma NOUN
or CCONJ
serum NOUN
. PUNCT
  SPACE
The DET
normal ADJ
range NOUN
for ADP
vitamin NOUN
A DET
content NOUN
for ADP
a DET
child NOUN
is AUX
20 NUM
to PART
90ug NOUN
/ SYM
dl PROPN
. PROPN
  SPACE
Lower ADJ
values NOUN
are AUX
indicators NOUN
of ADP
deficiency NOUN
or CCONJ
depleted VERB
body NOUN
stores NOUN
. PUNCT
  SPACE
Serum PROPN
levels NOUN
greater ADJ
than SCONJ
100ug ADV
/ SYM
dl PROPN
are AUX
indicative ADJ
of ADP
toxic ADJ
levels NOUN
of ADP
vitamin NOUN
A. NOUN
  SPACE
Dark ADJ
adaptation NOUN
tests NOUN
and CCONJ
electroretinogram NOUN
measurements NOUN
are AUX
also ADV
useful ADJ
but CCONJ
difficult ADJ
to PART
perform VERB
on ADP
young ADJ
children NOUN
. PUNCT
  SPACE
Rapidly ADV
proliferating VERB
tissues NOUN
are AUX
sensitive ADJ
to PART
vitamin NOUN
A DET
deficiency NOUN
and CCONJ
may AUX
revert VERB
to ADP
an DET
undifferentiated ADJ
state NOUN
. PUNCT
  SPACE
The DET
bronchorespiratory ADJ
tract NOUN
, PUNCT
skin NOUN
, PUNCT
genitourinary ADJ
system NOUN
, PUNCT
gastrointestinal ADJ
tract NOUN
and CCONJ
sweat NOUN
glands NOUN
are AUX
adversely ADV
affected ADJ
. PUNCT
  SPACE
A DET
daily ADJ
intake NOUN
of ADP
more ADJ
than SCONJ
7.5mg(about PROPN
37,000IU X
) PUNCT
of ADP
retinol NOUN
is AUX
not PART
advised VERB
and CCONJ
chronic ADJ
use NOUN
of ADP
amounts NOUN
over ADP
20mg(100,000IU NUM
) PUNCT
can AUX
result VERB
in ADP
a DET
dry ADJ
and CCONJ
itching VERB
skin NOUN
, PUNCT
desquamation NOUN
, PUNCT
erythematous ADJ
dermatitis NOUN
, PUNCT
hair NOUN
loss NOUN
, PUNCT
joint ADJ
pain NOUN
, PUNCT
chapped VERB
lips NOUN
, PUNCT
hyperostois(bony PROPN
depositis PROPN
) PUNCT
, PUNCT
headaches PROPN
, PUNCT
anorexia PROPN
, PUNCT
edema PROPN
and CCONJ
fatigue NOUN
. PUNCT
  SPACE
They PRON
recommend VERB
30 NUM
mg NOUN
of ADP
retinol NOUN
via ADP
IM PROPN
injection NOUN
in ADP
children NOUN
for ADP
vitamin NOUN
A DET
deficiency NOUN
but CCONJ
do AUX
not PART
discuss VERB
treatment NOUN
for ADP
adults NOUN
. PUNCT
  SPACE
Their PRON
toxic ADJ
serum ADJ
retinol NOUN
level NOUN
is AUX
very ADV
conservative ADJ
. PUNCT
  SPACE
I PRON
recommend VERB
that SCONJ
my PRON
students NOUN
try VERB
25,000IU NUM
in ADP
adults NOUN
that PRON
are AUX
having VERB
problems NOUN
with ADP
chronic ADJ
infection NOUN
. PUNCT
  SPACE
They PRON
have AUX
to PART
rule VERB
out ADP
a DET
zinc NOUN
deficit NOUN
first ADV
by ADP
getting VERB
an DET
RBC PROPN
zinc NOUN
run(or NOUN
if SCONJ
their PRON
clinical ADJ
lab NOUN
ca AUX
n't PART
run VERB
it PRON
, PUNCT
I PRON
tell VERB
them PRON
to PART
do AUX
what PRON
Weinsier PROPN
and CCONJ
Morgan PROPN
suggest VERB
, PUNCT
give VERB
them PRON
the DET
zinc NOUN
along ADP
with ADP
the DET
vitamin NOUN
A. NOUN
  SPACE
At ADP
25,000IU NUM
per ADP
day NOUN
, PUNCT
toxicity NOUN
should AUX
not PART
be AUX
a DET
problem NOUN
and CCONJ
you PRON
will AUX
not PART
have AUX
to PART
worry VERB
about ADP
pulling VERB
the DET
patient NOUN
into ADP
the DET
office NOUN
on ADP
a DET
regular ADJ
basis NOUN
to PART
run VERB
a DET
serum ADJ
retinol NOUN
. PUNCT
Both CCONJ
Elaine PROPN
and CCONJ
Jon PROPN
found VERB
doctors NOUN
who PRON
used VERB
a DET
much ADV
higher ADJ
dose NOUN
of ADP
vitamin NOUN
A.Recall NOUN
that SCONJ
the DET
PMS PROPN
papers NOUN
were AUX
using VERB
100,000IU NUM
to ADP
200,000IU NUM
of ADP
vitamin NOUN
A.I PROPN
do AUX
n't PART
suggest VERB
that SCONJ
my PRON
students NOUN
use VERB
these DET
high ADJ
doses NOUN
. PUNCT
  SPACE
If SCONJ
you PRON
wanted VERB
to PART
fill VERB
the DET
liver NOUN
up ADP
fast(as PUNCT
part NOUN
of ADP
a DET
clinical ADJ
trial NOUN
) PUNCT
and CCONJ
were AUX
monitoring VERB
the DET
serum NOUN
retinol NOUN
level NOUN
, PUNCT
then ADV
you PRON
would AUX
be AUX
okay ADJ
. PUNCT
  SPACE
But CCONJ
my PRON
knowledge NOUN
of ADP
the DET
vitamin NOUN
A DET
literature NOUN
suggests VERB
to ADP
me PRON
that SCONJ
25,000IU NUM
for ADP
patients NOUN
with ADP
a DET
demonstrated ADJ
vitamin NOUN
A DET
deficit(dark PROPN
adapatation NOUN
test NOUN
or CCONJ
serum ADJ
retinol NOUN
) PUNCT
will AUX
provide VERB
a DET
good ADJ
and CCONJ
steady ADJ
improvement(as NOUN
long ADV
as SCONJ
zinc NOUN
and CCONJ
vitamin NOUN
C NOUN
status NOUN
are AUX
good ADJ
) PUNCT
without ADP
having VERB
to PART
worry VERB
about ADP
toxicity NOUN
. PUNCT
  SPACE
If SCONJ
they PRON
want VERB
to PART
get AUX
more ADV
agressive ADJ
, PUNCT
fine ADJ
if SCONJ
they PRON
follow VERB
my PRON
advise NOUN
to PART
check VERB
the DET
serum NOUN
retinol NOUN
. PUNCT
  SPACE
But CCONJ
vitamin NOUN
A(retinol PROPN
) PUNCT
should AUX
never ADV
be AUX
given VERB
in ADP
high ADJ
dose NOUN
to ADP
women NOUN
who PRON
could AUX
become VERB
pregnant ADJ
since SCONJ
vitamin NOUN
A NOUN
shows VERB
teratogenicity NOUN
towards ADP
the DET
human PROPN
fetus NOUN
. PUNCT
  SPACE
The DET
dose NOUN
needed VERB
to PART
show VERB
this DET
effect NOUN
on ADP
the DET
developing VERB
fetus NOUN
is AUX
18,000IU NUM
of ADP
retinol NOUN
per ADP
day NOUN
. PUNCT
  SPACE
Beta NOUN
- PUNCT
carotene NOUN
will AUX
never ADV
have AUX
this DET
effect NOUN
on ADP
the DET
human ADJ
fetus NOUN
. PUNCT
Could AUX
just ADV
taking VERB
Beta NOUN
- PUNCT
carotene NOUN
instead ADV
of ADP
retinol NOUN
supplements NOUN
help VERB
? PUNCT
  SPACE
Yes INTJ
but CCONJ
the DET
effect NOUN
will AUX
take VERB
a DET
long ADJ
time NOUN
to PART
develop VERB
. PUNCT
  SPACE
My PRON
advise NOUN
is AUX
to PART
use VERB
retinol NOUN
to PART
fill VERB
the DET
liver NOUN
up ADP
and CCONJ
then ADV
switch VERB
to ADP
beta NOUN
- PUNCT
carotene NOUN
to PART
keep VERB
it PRON
full ADJ
. PUNCT
  SPACE
Vitamin PROPN
A PROPN
is AUX
probably ADV
one NUM
nutrient NOUN
that PRON
is AUX
better ADJ
off ADP
left VERB
to ADP
prescription NOUN
by ADP
doctors NOUN
. PUNCT
  SPACE
But CCONJ
when ADV
we PRON
have AUX
the DET
M.D. PROPN
's PART
in ADP
this DET
newsgroup NOUN
jumping VERB
all ADV
over ADP
me PRON
and CCONJ
other ADJ
doctors NOUN
that PRON
propose VERB
the DET
use NOUN
of ADP
vitamin NOUN
A DET
supplements NOUN
for ADP
treating VERB
patients NOUN
with ADP
chronic ADJ
sinus NOUN
and CCONJ
GI PROPN
distress NOUN
, PUNCT
I PRON
think VERB
that SCONJ
the DET
most ADV
prudent ADJ
option NOUN
is AUX
to PART
keep VERB
vitamin NOUN
A NOUN
in ADP
the DET
OTC PROPN
market NOUN
but CCONJ
require VERB
manufactors NOUN
to PART
provide VERB
package NOUN
inserts NOUN
to PART
educate VERB
the DET
general ADJ
public NOUN
about ADP
the DET
dangers NOUN
of ADP
vitamin NOUN
A DET
supplementation NOUN
. PUNCT
Marty PROPN
B.Newsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59555From NUM
: PUNCT
donrm@sr.hp.com X
( PUNCT
Don PROPN
Montgomery)Subject PROPN
: PUNCT
Re ADP
: PUNCT
feverfew ADJ
for ADP
migrainesBrenda PROPN
Bowden PROPN
( PUNCT
brenda@bookhouse NOUN
. PUNCT
Eng INTJ
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Does AUX
anyone PRON
know VERB
about ADP
these DET
studies NOUN
? PUNCT
Or CCONJ
have AUX
experience NOUN
with ADP
feverfew?I PRON
keep VERB
an DET
accurate ADJ
log NOUN
of ADP
my PRON
migraine ADJ
attack NOUN
frequency NOUN
; PUNCT
feverfew ADJ
didn'tseem NOUN
to PART
do AUX
anything PRON
for ADP
me PRON
. PUNCT
  SPACE
However ADV
, PUNCT
eliminating VERB
caffeine NOUN
seems VERB
to PART
pre VERB
- VERB
vent VERB
the DET
onset NOUN
of ADP
migraine NOUN
in ADP
my PRON
case NOUN
. PUNCT
  SPACE
In ADP
other ADJ
words NOUN
, PUNCT
no DET
caffeine NOUN
, PUNCT
no DET
migraines NOUN
. PUNCT
Don PROPN
Montgomerydonrm@sr.hp.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59556From NUM
: PUNCT
jhilmer@ruc.dk PROPN
( PUNCT
Jakob PROPN
Hilmer)Subject VERB
: PUNCT
NEED VERB
VALUES NOUN
FOR ADP
AORTA!We NOUN
need VERB
following VERB
data NOUN
for ADP
human ADJ
aorta NOUN
: PUNCT
  SPACE
Tear ADJ
and CCONJ
shear ADJ
stress NOUN
for ADP
aorta PROPN
. PUNCT
  SPACE
A DET
plot NOUN
of ADP
the DET
aortic PROPN
cross ADJ
- ADJ
sectional ADJ
area NOUN
. PUNCT
    SPACE
Stroke NOUN
- PUNCT
volume NOUN
at ADP
the DET
aortic ADJ
root NOUN
. PUNCT
  SPACE
Approximate ADJ
distribution NOUN
of ADP
blood NOUN
through ADP
the DET
major ADJ
arterial ADJ
      SPACE
branches NOUN
of ADP
the DET
aorta NOUN
. PUNCT
  SPACE
Flow NOUN
velocity NOUN
of ADP
blood NOUN
in ADP
aorta PROPN
. PUNCT
  SPACE
We PRON
have AUX
various ADJ
values NOUN
for ADP
flow NOUN
velocity NOUN
, PUNCT
If SCONJ
you PRON
have AUX
any DET
data NOUN
remember VERB
togive ADJ
us PRON
the DET
references NOUN
too ADV
include VERB
in ADP
our PRON
report NOUN
-- PUNCT
Stud PROPN
. PUNCT
Jakob PROPN
Hilmer PROPN
		 SPACE
Fax NOUN
: PUNCT
( PUNCT
+45 PROPN
) PUNCT
45 NUM
93 NUM
34 NUM
34Hus NUM
7.1 NUM
Gr PROPN
. PUNCT
8a PUNCT
			 SPACE
Roskilde PROPN
University PROPN
, PUNCT
DenmarkPostbox PROPN
260DK-4000 NUM
Roskilde PROPN
    SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59557From NUM
: PUNCT
wdw@dragon.acadiau.ca NOUN
( PUNCT
Bill PROPN
Wilder)Subject PROPN
: PUNCT
Seeking VERB
info NOUN
on ADP
retinal ADJ
detachmentI PROPN
am AUX
quite ADV
near ADV
sighted ADJ
. PUNCT
I've PROPN
recently ADV
received VERB
laser NOUN
treatment NOUN
for ADP
both DET
eyes NOUN
to ADP
sealholes NOUN
in ADP
the DET
retinas PROPN
to PART
help VERB
prevent VERB
retinal ADJ
detachment NOUN
. PUNCT
In ADP
myleft PROPN
eye NOUN
a DET
small ADJ
detachment NOUN
had AUX
begun VERB
already ADV
and CCONJ
apparently ADV
thelaser PROPN
was AUX
used VERB
to PART
" PUNCT
weld VERB
" PUNCT
this DET
back ADV
in ADP
place NOUN
as ADV
well ADV
. PUNCT
My PRON
right ADJ
eye NOUN
seems VERB
fine ADJ
. PUNCT
In ADP
my PRON
left ADJ
eye NOUN
I PRON
was AUX
seeing VERB
occasionalflashes NOUN
of ADP
bright ADJ
light NOUN
prior ADV
to ADP
the DET
treatment NOUN
. PUNCT
Since SCONJ
thetreatment NOUN
( PUNCT
two NUM
weeks NOUN
) PUNCT
these DET
flashes NOUN
are AUX
now ADV
occuring VERB
more ADV
often- ADJ
several ADJ
each DET
hour NOUN
. PUNCT
The DET
opthamologist NOUN
explained VERB
the DET
flashes NOUN
are AUX
caused VERB
because SCONJ
thevitreous ADJ
body NOUN
has AUX
attached VERB
to ADP
the DET
retina NOUN
and CCONJ
is AUX
pulling VERB
on ADP
it PRON
. PUNCT
Hesays NOUN
this DET
is AUX
not PART
treatable ADJ
and CCONJ
he PRON
hopes VERB
it PRON
may AUX
go VERB
away ADV
on ADP
its PRON
ownaccord NOUN
- PUNCT
if SCONJ
it PRON
tugs VERB
enough ADV
I PRON
may AUX
well ADV
face VERB
retinal ADJ
detachment NOUN
. PUNCT
I PRON
am AUX
seeking VERB
( PUNCT
via ADP
sci.med VERB
) PUNCT
additional ADJ
info NOUN
on ADP
retinal ADJ
detachments NOUN
. PUNCT
The DET
Dr. PROPN
did AUX
not PART
wish VERB
to PART
spend VERB
much ADJ
time NOUN
with ADP
me PRON
in ADP
explanationsso PROPN
I PRON
appreciate VERB
any DET
further ADJ
details NOUN
anyone PRON
can AUX
provide VERB
. PUNCT
Of ADV
mostinterest ADV
to ADP
me PRON
: PUNCT
If SCONJ
my PRON
retina NOUN
does AUX
detach VERB
what PRON
should AUX
be AUX
my PRON
immediate ADJ
courseof NOUN
action?If PROPN
conventional ADJ
surgery NOUN
is AUX
need NOUN
to PART
repair VERB
the DET
detachment NOUN
what PRON
isthe ADJ
procedure NOUN
like SCONJ
and CCONJ
what PRON
kind NOUN
of ADP
vision NOUN
can AUX
I PRON
expectafterwards NOUN
. PUNCT
Do AUX
the DET
symptoms NOUN
( PUNCT
fairly ADV
frequent ADJ
flashes NOUN
) PUNCT
imply VERB
that SCONJ
detachmentmaybe PROPN
near SCONJ
at ADP
hand NOUN
or CCONJ
is AUX
this DET
not PART
necessarily ADV
cause VERB
for ADP
alarm NOUN
. PUNCT
Many ADJ
thanksBill-- PUNCT
Bill PROPN
Wilder PROPN
, PUNCT
Computer PROPN
Systems PROPN
Manager PROPN
Kentville PROPN
Research PROPN
StationAgriculture PROPN
CanadaKentville PROPN
, PUNCT
Nova PROPN
ScotiaNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59558From NUM
: PUNCT
ningeg@leland PROPN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Nick PROPN
Ingegneri)Subject NOUN
: PUNCT
Ethics NOUN
regarding VERB
placebo NOUN
/ SYM
homeopathic ADJ
" PUNCT
medicines"I PROPN
would AUX
like VERB
to PART
know VERB
if SCONJ
their PRON
is AUX
any DET
medical ADJ
consensus(or NOUN
consensus NOUN
within ADP
this DET
group NOUN
) PUNCT
regarding VERB
the DET
ethicsof NOUN
the DET
following VERB
: PUNCT
  SPACE
1 NUM
: PUNCT
Prescription NOUN
of ADP
placebo NOUN
medications NOUN
when ADV
the DET
patient NOUN
     SPACE
did AUX
not PART
specifically ADV
request VERB
any DET
sort NOUN
of ADP
treatment NOUN
. PUNCT
  SPACE
2 X
: PUNCT
Selling VERB
a DET
placebo NOUN
medication NOUN
for ADP
a DET
profit NOUN
. PUNCT
  SPACE
3 NUM
: PUNCT
Prescribing VERB
homeopathic ADJ
remedies NOUN
without ADP
advising VERB
     SPACE
a DET
patient NOUN
of ADP
their PRON
" PUNCT
controversial ADJ
nature NOUN
" PUNCT
. PUNCT
  SPACE
4 NUM
: PUNCT
Representing VERB
homeopathic ADJ
remedies NOUN
as SCONJ
" PUNCT
over ADP
the DET
counter NOUN
" PUNCT
     SPACE
medications NOUN
. PUNCT
Thanks NOUN
, PUNCT
Nick PROPN
IngegneriNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59559From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidIn NOUN
article NOUN
< X
1993Apr29.052044.23918@nmt.edu NUM
> X
houle@nmt.edu NUM
( PUNCT
Paul PROPN
Houle PROPN
) PUNCT
writes VERB
: PUNCT
> X
	 SPACE
Anyway ADV
, PUNCT
  SPACE
I PRON
am AUX
looking VERB
for ADP
advice NOUN
for ADP
the DET
use NOUN
of ADP
> X
antihistamines NOUN
as SCONJ
sleep PROPN
aids PROPN
, PUNCT
  SPACE
and CCONJ
if SCONJ
there PRON
are AUX
any DET
dangers NOUN
of ADP
such ADJ
use>(Seems NOUN
safe ADJ
to ADP
me PRON
since SCONJ
they PRON
are AUX
used VERB
chronically ADV
for ADP
allergies NOUN
by ADP
> X
millions NOUN
) PUNCT
. PUNCT
  SPACE
I PRON
do AUX
n't PART
want VERB
to PART
try VERB
BZs NOUN
, PUNCT
  SPACE
because SCONJ
BZ PROPN
addiction NOUN
seems VERB
to PART
be AUX
> X
a DET
serious ADJ
threat NOUN
, PUNCT
  SPACE
and CCONJ
from ADP
what PRON
I PRON
hear VERB
, PUNCT
  SPACE
BZ PROPN
sleep NOUN
quality NOUN
is AUX
not PART
good,>whereas NOUN
antihistamine ADJ
sleep NOUN
quality NOUN
seems VERB
to PART
be AUX
better ADJ
for ADP
me PRON
. PUNCT
  SPACE
I PRON
have AUX
> X
tried VERB
some DET
dietary ADJ
tryptophan ADJ
loading NOUN
stuff NOUN
, PUNCT
  SPACE
and CCONJ
that SCONJ
also ADV
seems VERB
to PART
> VERB
lower ADJ
sleep NOUN
quality NOUN
, PUNCT
  SPACE
I PRON
seem VERB
to PART
wake VERB
up ADP
around ADV
4:00 NUM
or CCONJ
so ADV
and CCONJ
be AUX
in ADP
some DET
> X
kind NOUN
of ADP
mental ADJ
haze NOUN
until ADP
7:00 NUM
or CCONJ
8:00 NUM
. PUNCT
  SPACE
Also ADV
, PUNCT
  SPACE
I PRON
would AUX
be AUX
interested ADJ
in ADP
> X
any DET
other ADJ
advice NOUN
for ADP
helping VERB
my PRON
problem NOUN
. PUNCT
  SPACE
( PUNCT
Although SCONJ
I PRON
've AUX
already ADV
tried VERB
> X
many ADJ
of ADP
the DET
non ADJ
- ADJ
pharmacological ADJ
solutions)Well NOUN
, PUNCT
I PRON
think VERB
you PRON
might AUX
want VERB
to PART
visit VERB
a DET
doctor NOUN
who PRON
is AUX
familiar ADJ
withsleep ADJ
disturbances NOUN
, PUNCT
because SCONJ
antihistamines NOUN
only ADV
help VERB
induce VERB
sleep NOUN
whenthey're ADV
used VERB
intermittently ADV
; PUNCT
they PRON
lose VERB
their PRON
sedative ADJ
effect NOUN
if SCONJ
they'reused VERB
on ADP
a DET
nightly ADJ
basis NOUN
. PUNCT
  SPACE
Their PRON
anticholinergic ADJ
effects NOUN
( PUNCT
drying VERB
of ADP
secretions NOUN
, PUNCT
relaxing VERB
effects NOUN
on ADP
smooth ADJ
muscle NOUN
) PUNCT
can AUX
be AUX
problematic ADJ
in ADP
some DET
people NOUN
, PUNCT
such ADJ
asthose VERB
with ADP
glaucoma NOUN
or CCONJ
prostate NOUN
enlargement NOUN
. PUNCT
Antihistamines NOUN
like SCONJ
diphenhydramine NOUN
( PUNCT
Benadryl PROPN
) PUNCT
or CCONJ
doxylamine NOUN
( PUNCT
Unisom)are VERB
potent ADJ
sedatives NOUN
which PRON
are AUX
useful ADJ
occasionally ADV
. PUNCT
  SPACE
Chlorpheniramine(Chlor PROPN
- PUNCT
Trimeton PROPN
) PUNCT
is AUX
said VERB
to PART
be AUX
less ADV
sedative ADJ
, PUNCT
but CCONJ
8 NUM
mg PROPN
seems VERB
to PART
workwell VERB
in ADP
some DET
people NOUN
. PUNCT
  SPACE
Both DET
chlorpheniramine NOUN
and CCONJ
doxylamine NOUN
have AUX
longhalf NOUN
- PUNCT
lives NOUN
compared VERB
to ADP
diphenhydramine NOUN
, PUNCT
and CCONJ
so ADV
may AUX
produce VERB
a DET
residualhangover NOUN
or CCONJ
" PUNCT
drugged VERB
" PUNCT
feeling VERB
the DET
next ADJ
morning.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59560From NUM
: PUNCT
dyer@spdcc.com X
( PUNCT
Steve PROPN
Dyer)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
1993Apr30.162636.22327@cc.ic.ac.uk NUM
> X
ewolff@ps.ic.ac.uk PROPN
( PUNCT
Erik PROPN
The DET
Viking PROPN
) PUNCT
writes:>She PROPN
has AUX
been AUX
to ADP
a DET
doctor NOUN
and CCONJ
taken VERB
the DET
ordinary ADJ
( PUNCT
? PUNCT
) PUNCT
> X
tests NOUN
and CCONJ
her PRON
values NOUN
were AUX
regarded VERB
as ADV
low ADJ
. PUNCT
The DET
doctor NOUN
( PUNCT
and CCONJ
my PRON
wife NOUN
) PUNCT
are AUX
> X
not PART
very ADV
interested ADJ
in ADP
starting VERB
medication NOUN
as SCONJ
this DET
" PUNCT
deactivates VERB
" PUNCT
the DET
> X
gland NOUN
, PUNCT
giving VERB
life NOUN
- PUNCT
long ADJ
dependency NOUN
to ADP
the DET
drug NOUN
( PUNCT
hormone?).This PROPN
is AUX
ridiculous ADJ
, PUNCT
and CCONJ
your PRON
doctor NOUN
sounds VERB
like SCONJ
a DET
nut NOUN
, PUNCT
if SCONJ
what PRON
isreported VERB
here ADV
is AUX
what PRON
the DET
doctor NOUN
actually ADV
said VERB
. PUNCT
  SPACE
If SCONJ
your PRON
wife'spancreas NOUN
stops VERB
producing VERB
insulin NOUN
and CCONJ
therefore ADV
becomes VERB
diabetic ADJ
, PUNCT
she'llneed PROPN
insulin NOUN
replacement NOUN
. PUNCT
  SPACE
That DET
does AUX
n't PART
mean VERB
she PRON
's AUX
" PUNCT
dependent ADJ
" PUNCT
oninsulin PROPN
, PUNCT
anymore ADV
than SCONJ
she PRON
was AUX
beforehand ADV
-- PUNCT
if SCONJ
her PRON
body NOUN
does AUX
n't PART
makeenough VERB
, PUNCT
she PRON
'll AUX
have AUX
to PART
get AUX
it PRON
elsewhere ADV
. PUNCT
  SPACE
Oral ADJ
thyroid NOUN
replacementhormone NOUN
therapy NOUN
is AUX
the DET
cornerstone NOUN
of ADP
treatment NOUN
for ADP
hypothyroidism NOUN
, PUNCT
andit PROPN
's AUX
really ADV
the DET
only ADJ
effective ADJ
therapy NOUN
available ADJ
anyway ADV
. PUNCT
  SPACE
Plus CCONJ
, PUNCT
it'scheap PROPN
. PUNCT
  SPACE
Taking VERB
thyroid NOUN
hormone NOUN
when ADV
it PRON
is AUX
n't PART
needed VERB
does NOUN
cause VERB
yourthyroid PROPN
gland PROPN
to PART
reduce VERB
its PRON
own ADJ
production NOUN
of ADP
the DET
hormone NOUN
, PUNCT
but CCONJ
that DET
's AUX
a_feature NOUN
_ ADV
, PUNCT
not PART
a DET
_ PROPN
bug NOUN
_ PROPN
, PUNCT
and CCONJ
it PRON
's AUX
irrelevant ADJ
in ADP
any DET
case NOUN
in ADP
the DET
face NOUN
ofhypothyroidism NOUN
, PUNCT
because SCONJ
her PRON
problem NOUN
that SCONJ
her PRON
gland NOUN
is AUX
n't PART
producingenough ADJ
. PUNCT
  SPACE
There PRON
is AUX
n't PART
a DET
clinical ADJ
phenomenon NOUN
of ADP
" PUNCT
thyroid NOUN
insufficiency"caused VERB
by ADP
a DET
sudden ADJ
discontinuation NOUN
of ADP
exogenous ADJ
thyroid NOUN
hormoneanalogous ADJ
to ADP
adrenal ADJ
insufficiency NOUN
caused VERB
by ADP
the DET
sudden ADJ
cessation NOUN
ofprolonged VERB
administration NOUN
of ADP
corticosteroids NOUN
, PUNCT
so CCONJ
there PRON
should AUX
be AUX
noworry ADJ
about ADP
inappropriately ADV
" PUNCT
suppressing VERB
" PUNCT
the DET
thyroid NOUN
gland.>The ADP
last ADJ
couple NOUN
of ADP
> NUM
monthes NOUN
she PRON
has AUX
been AUX
seeing VERB
a DET
hoemoepath NOUN
( PUNCT
sp PROPN
? PUNCT
) PUNCT
and CCONJ
been AUX
given VERB
> X
some DET
drops NOUN
to PART
re VERB
- VERB
activate VERB
either CCONJ
her PRON
thyroidal ADJ
gland NOUN
and/or CCONJ
the DET
> X
' PART
message NOUN
- PUNCT
center NOUN
' PUNCT
in ADP
the DET
brain NOUN
( PUNCT
sorry ADJ
about ADP
the DET
approximate ADJ
language,>but NOUN
I PRON
have AUX
n't PART
got VERB
many ADJ
clues NOUN
to ADP
what PRON
the DET
english ADJ
terms NOUN
are AUX
, PUNCT
but CCONJ
the DET
> X
brain NOUN
- PUNCT
area NOUN
is AUX
called VERB
the DET
' PUNCT
hypofyse NOUN
' PUNCT
in ADP
norwegian PROPN
. PUNCT
) PUNCT
Homeopathy PROPN
is AUX
nonsense NOUN
. PUNCT
  SPACE
Tell VERB
her PRON
to PART
stop VERB
wasting VERB
her PRON
money NOUN
, PUNCT
health NOUN
and CCONJ
time NOUN
, PUNCT
and CCONJ
get AUX
her PRON
to ADP
a DET
legitimate ADJ
doctor NOUN
who PRON
will AUX
be AUX
in ADP
a DET
position NOUN
to PART
makea VERB
proper ADJ
diagnosis NOUN
and CCONJ
recommend VERB
the DET
right NOUN
therapy.-- PROPN
Steve PROPN
Dyerdyer@ursa-major.spdcc.com X
aka ADV
{ PUNCT
ima PROPN
, PUNCT
harvard PROPN
, PUNCT
rayssd PROPN
, PUNCT
linus PROPN
, PUNCT
m2c}!spdcc!dyerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59561From NUM
: PUNCT
bai@msiadmin.cit.cornell.edu NOUN
( PUNCT
Dov PROPN
Bai PROPN
- PUNCT
MSI PROPN
Visitor)Subject NOUN
: PUNCT
Re ADP
: PUNCT
EarwaxIn PROPN
article NOUN
< X
lu2defINNac7@news.bbn.com PROPN
> X
levin@bbn.com X
( PUNCT
Joel PROPN
B PROPN
Levin PROPN
) PUNCT
writes:>bobm@Ingres VERB
. PUNCT
COM PROPN
( PUNCT
Bob PROPN
McQueer PROPN
) PUNCT
writes:>|One PROPN
question NOUN
I PRON
do AUX
have AUX
- PUNCT
a DET
doctor NOUN
who PRON
flushed VERB
out ADP
my PRON
ears NOUN
once SCONJ
also ADV
advocated>|a NUM
drop NOUN
of ADP
rubbing VERB
alcohol NOUN
in ADP
them PRON
afterwards ADV
to PART
flush VERB
out ADP
any DET
remaining>|trapped PUNCT
water NOUN
- PUNCT
said VERB
he PRON
told VERB
swimmers NOUN
to PART
do AUX
this DET
after ADP
swimming VERB
, PUNCT
too ADV
. PUNCT
  SPACE
It>|works NOUN
, PUNCT
but CCONJ
it PRON
stings VERB
like SCONJ
the DET
devil NOUN
, PUNCT
so CCONJ
I PRON
've AUX
always ADV
been AUX
content ADJ
to PART
let VERB
any>|water PROPN
in ADP
my PRON
ears NOUN
from ADP
swimming VERB
or CCONJ
flushing VERB
them PRON
out ADP
figure VERB
out ADP
how ADV
to PART
get>|out VERB
by ADP
itself PRON
if SCONJ
shaking VERB
my PRON
head NOUN
a DET
few ADJ
times NOUN
wo AUX
n't PART
do AUX
the DET
trick NOUN
. PUNCT
  SPACE
Any>|comments?Perhaps ADV
diluting VERB
the DET
rubbing VERB
alcohol NOUN
in ADP
some DET
water NOUN
, PUNCT
until ADP
youfeels NOUN
comfortable ADJ
will AUX
do AUX
the DET
trick NOUN
? PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59562From NUM
: PUNCT
cfaks@ux1.cts.eiu.edu PROPN
( PUNCT
Alice PROPN
Sanders)Subject NUM
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidBut NOUN
after ADP
you PRON
have AUX
taken VERB
antihistamines NOUN
for ADP
a DET
few ADJ
nights NOUN
, PUNCT
does AUX
n't PART
it PRON
startto VERB
have AUX
a DET
paradoxical ADJ
effect NOUN
? PUNCT
  SPACE
I PRON
used VERB
to PART
take VERB
one NUM
every DET
night NOUN
forallergies NOUN
and CCONJ
could AUX
n't PART
figure VERB
out ADP
why ADV
I PRON
developed VERB
bad ADJ
insomnia NOUN
. PUNCT
  SPACE
Finallyfigured VERB
out ADP
it PRON
was AUX
the DET
antihistamines NOUN
. PUNCT
  SPACE
I PRON
would AUX
fall VERB
asleep ADJ
for ADP
a DET
fewminutes NOUN
but CCONJ
would AUX
awaken VERB
at ADP
the DET
drop NOUN
of ADP
a DET
pin NOUN
a DET
little ADJ
later ADV
and CCONJ
could AUX
notget VERB
back ADV
to ADP
sleep NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
have AUX
that DET
problem NOUN
since SCONJ
I PRON
stopped VERB
theantihistamines NOUN
at ADP
bedtime PROPN
. PUNCT
  SPACE
? PUNCT
AliceNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59563From NUM
: PUNCT
george@crayola NOUN
. PUNCT
East PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
( PUNCT
George PROPN
A. PROPN
Perkins PROPN
  SPACE
Sun PROPN
Microsystems PROPN
  SPACE
Tampa PROPN
FL PROPN
  SPACE
Systems NOUN
Engineer)Subject VERB
: PUNCT
Lithium NOUN
questions NOUN
, PUNCT
Doctor PROPN
wants VERB
my PRON
10 NUM
year NOUN
old ADJ
on ADP
it PRON
... PUNCT
Hi INTJ
sci.med PUNCT
folks NOUN
... PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
anything PRON
you PRON
folks NOUN
can AUX
tell VERB
me PRON
regarding VERB
Lithium PROPN
. PUNCT
I PRON
have AUX
a DET
10 NUM
year NOUN
old ADJ
son NOUN
that PRON
lives VERB
with ADP
my PRON
ex NOUN
- NOUN
wife NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
havingdifficulty VERB
with ADP
his PRON
behavior NOUN
and CCONJ
has AUX
had VERB
him PRON
on ADP
Ritalin PROPN
, PUNCT
Tofranil PROPN
, PUNCT
and CCONJ
nowwants NOUN
to PART
try VERB
Lithuim PROPN
at ADP
the DET
local ADJ
doctors NOUN
suggestion NOUN
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to PART
know VERB
whatever PRON
is AUX
important ADJ
that SCONJ
I PRON
should AUX
know VERB
. PUNCT
  SPACE
I PRON
worry VERB
about ADP
this DET
sort NOUN
ofthing NOUN
and CCONJ
would AUX
like VERB
pros NOUN
/ SYM
cons NOUN
regarding VERB
Lithium PROPN
therapy NOUN
. PUNCT
I PRON
have AUX
a DET
booklet NOUN
from ADP
the DET
" PUNCT
Lithium PROPN
Information PROPN
Center PROPN
" PUNCT
based VERB
at ADP
the DET
University PROPN
of ADP
Wisconsin PROPN
, PUNCT
but CCONJ
feel VERB
that SCONJ
it PRON
is AUX
pro ADJ
- ADJ
lithium ADJ
and CCONJ
would AUX
beinterested VERB
in ADP
comments NOUN
from ADP
the DET
" PUNCT
not PART
necessarily ADV
PRO PROPN
" PUNCT
side NOUN
of ADP
the DET
fence NOUN
. PUNCT
I PRON
am AUX
a DET
concerned ADJ
father NOUN
and CCONJ
just ADV
wish VERB
to PART
be AUX
well ADV
informed ADJ
... PUNCT
Thanks NOUN
for ADP
any DET
information NOUN
you PRON
can AUX
provide VERB
. PUNCT
Please INTJ
email VERB
me PRON
directly ADV
... PUNCT
--- PUNCT
    SPACE
/\ PUNCT
        SPACE
George PROPN
A. PROPN
Perkins PROPN
   SPACE
\\ PROPN
\ PROPN
       SPACE
Systems PROPN
Engineer PROPN
  SPACE
\ PROPN
\\ PROPN
/ SYM
      SPACE
Sun PROPN
Microsystems PROPN
Computer PROPN
Corporation PROPN
/ SYM
\/ PROPN
/ SYM
/ SYM
     SPACE
6200 NUM
Courtney PROPN
Campbell PROPN
Causeway/ PROPN
/ SYM
   SPACE
\//\ PROPN
    SPACE
Suite PROPN
840\//\ NUM
   SPACE
/ SYM
/ SYM
    SPACE
Tampa PROPN
, PUNCT
FL PROPN
  SPACE
33607 NUM
/ SYM
/ SYM
/\ PUNCT
/ SYM
       SPACE
/ SYM
\\ PROPN
\ PROPN
      SPACE
Phone PROPN
: PUNCT
  SPACE
( PUNCT
813 NUM
) PUNCT
289 NUM
- SYM
7228 NUM
   SPACE
\ PUNCT
\\ PROPN
       SPACE
Fax PROPN
: PUNCT
    SPACE
( PUNCT
813 NUM
) PUNCT
281 NUM
- SYM
0219 NUM
    SPACE
\/ SYM
        SPACE
EMail NOUN
: PUNCT
  SPACE
george.perkins@East.Sun.COMNewsgroup ADV
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59564From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?In PROPN
article NOUN
< X
1993Apr30.035235.26613@pbs.org NUM
> X
, PUNCT
jlecher@pbs.org PROPN
writes:>As PROPN
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
just ADV
saw VERB
a DET
dermatologist NOUN
the DET
other ADJ
day NOUN
, PUNCT
andwhile VERB
I PRON
Seeing VERB
a DET
dermatologist NOUN
sounds VERB
like SCONJ
a DET
very ADV
good ADJ
idea NOUN
if SCONJ
you PRON
areworried VERB
about ADP
your PRON
dry ADJ
skin NOUN
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59565From NUM
: PUNCT
Donald PROPN
Mackie PROPN
< X
Donald_Mackie@med.umich.edu>Subject NOUN
: PUNCT
Re ADP
: PUNCT
insensitive ADJ
techniciansIn PROPN
article NOUN
< X
1rrhi9INN2bq@ceti.cs.unc.edu X
> X
John PROPN
Eyles PROPN
, PUNCT
jge@cs.unc.eduwrites:Friend's PROPN
unpleasant ADJ
experience NOUN
uring VERB
CT PROPN
scan NOUN
deleted VERB
> PUNCT
Is AUX
there PRON
anything PRON
I PRON
can AUX
do AUX
about ADP
these DET
pigs NOUN
? PUNCT
I PRON
'd AUX
suggest VERB
writing VERB
a DET
detailed ADJ
letter NOUN
about ADP
the DET
incident NOUN
to ADP
thehospital ADJ
administrator NOUN
. PUNCT
Specify VERB
the DET
date NOUN
and CCONJ
time NOUN
. PUNCT
If SCONJ
possible ADJ
thenames NOUN
of ADP
the DET
technicians NOUN
. PUNCT
Send VERB
a DET
copy NOUN
to ADP
the DET
clinician NOUN
under ADP
whose PRON
care NOUN
your PRON
friend NOUN
wasadmitted VERB
. PUNCT
I PRON
say VERB
this DET
because SCONJ
, PUNCT
though SCONJ
your PRON
friend NOUN
has AUX
no DET
argumentwith NOUN
the DET
doctor NOUN
, PUNCT
I PRON
have AUX
found VERB
that SCONJ
administrators NOUN
sometimes ADV
ignorecomplaints NOUN
until ADP
the DET
patient NOUN
becomes VERB
litigious ADJ
. PUNCT
Clinicians NOUN
may AUX
nothave VERB
been AUX
informed VERB
of ADP
the DET
complaint NOUN
and CCONJ
are AUX
very ADV
surprised ADJ
to ADP
findthemselves NOUN
named VERB
in ADP
a DET
suit NOUN
. PUNCT
If SCONJ
there PRON
is AUX
no DET
response NOUN
within ADP
a DET
week NOUN
send VERB
a DET
follow NOUN
up ADP
letter NOUN
. PUNCT
Attach VERB
a DET
photocopy NOUN
of ADP
the DET
original ADJ
letter NOUN
. PUNCT
Do AUX
this DET
weekly NOUN
until ADP
youdo NOUN
get VERB
a DET
response NOUN
. PUNCT
CAT PROPN
scans NOUN
are AUX
non ADJ
- ADJ
invasive ADJ
but CCONJ
they PRON
can AUX
be AUX
very ADV
scary ADJ
. PUNCT
The DET
scannercan NOUN
be AUX
a DET
bad ADJ
place NOUN
for ADP
the DET
claustrophobic NOUN
. PUNCT
There PRON
was AUX
an DET
interestingstudy NOUN
in ADP
the DET
BMJ PROPN
, PUNCT
about ADV
10 NUM
years NOUN
ago ADV
, PUNCT
which PRON
found VERB
that SCONJ
around ADP
10 NUM
% NOUN
ofpeople NOUN
who PRON
had AUX
CAT NOUN
scans NOUN
found VERB
it PRON
so ADV
unpleasant ADJ
that SCONJ
they PRON
wouldnever VERB
have AUX
another DET
. PUNCT
This DET
compares VERB
with ADP
15 NUM
% NOUN
who PRON
said VERB
the DET
same ADJ
about ADP
alumbar VERB
puncture NOUN
. PUNCT
Don PROPN
Mackie PROPN
- PUNCT
his PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59566From NUM
: PUNCT
calzone@athena.mit.eduSubject NOUN
: PUNCT
Legality NOUN
of ADP
placebos?How NOUN
is AUX
it PRON
that SCONJ
placebos NOUN
are AUX
legal ADJ
? PUNCT
  SPACE
It PRON
would AUX
seem VERB
to ADP
me PRON
that SCONJ
if SCONJ
, PUNCT
as SCONJ
a DET
patient NOUN
, PUNCT
you PRON
purchase VERB
a DET
drug NOUN
you PRON
've AUX
been AUX
prescribed VERB
and CCONJ
it PRON
's AUX
just ADV
sugar NOUN
( PUNCT
or CCONJ
whatever),there PUNCT
's AUX
a DET
few ADJ
legal ADJ
complications NOUN
that PRON
arise VERB
: PUNCT
	 SPACE
1 NUM
. PUNCT
If SCONJ
you PRON
have AUX
been AUX
diagnosed VERB
with ADP
a DET
condition NOUN
and CCONJ
you PRON
are AUX
n't PART
given VERB
acceptedtreatment NOUN
for ADP
it PRON
, PUNCT
it PRON
seems VERB
like SCONJ
intentional ADJ
medical ADJ
malpractice NOUN
. PUNCT
	 SPACE
2.A NUM
placebo NOUN
should AUX
fall VERB
, PUNCT
legally ADV
, PUNCT
under ADP
the DET
label NOUN
of ADP
quackery PROPN
( PUNCT
why ADV
not PART
? PUNCT
) PUNCT
	 SPACE
3.Getting NUM
what PRON
you PRON
pay VERB
for ADP
. PUNCT
  SPACE
( PUNCT
Deceptive ADJ
" PUNCT
bait NOUN
and CCONJ
switch VERB
" PUNCT
to ADP
an DET
extreme ADJ
... PUNCT
) PUNCT
. PUNCT
  SPACE
Falseadvertising VERB
  SPACE
( PUNCT
what PRON
if SCONJ
McDonalds PROPN
did AUX
n't PART
put VERB
100 NUM
% NOUN
pure ADJ
beef NOUN
in ADP
their PRON
hamburgers NOUN
? PUNCT
) PUNCT
	 SPACE
So ADV
I PRON
'm AUX
mystified VERB
. PUNCT
  SPACE
Are AUX
these DET
assumptions NOUN
erred VERB
? PUNCT
  SPACE
If SCONJ
they PRON
are AUX
n't PART
, PUNCT
why ADV
thehell PROPN
can AUX
a DET
doctor NOUN
knowingly ADV
or CCONJ
unknowingly ADV
prescribe VERB
a DET
placebo?ThankscalzoneNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59567From NUM
: PUNCT
claude@banana.fedex.com X
( PUNCT
claude PROPN
bowie)Subject NOUN
: PUNCT
vitamin NOUN
A NOUN
and CCONJ
hearing VERB
lossi PROPN
heard VERB
a DET
news NOUN
report NOUN
indicating VERB
research NOUN
showing VERB
improved VERB
         SPACE
hearing NOUN
in ADP
people NOUN
taking VERB
vitamin NOUN
A. NOUN
the DET
research NOUN
showed VERB
that SCONJ
new ADJ
    SPACE
growth NOUN
replaced VERB
damaged VERB
" PUNCT
hairlike ADP
" PUNCT
nerves NOUN
. PUNCT
has AUX
anyone PRON
heard VERB
aboutthis PROPN
? PUNCT
thanks NOUN
, PUNCT
claude-- PROPN
claude PROPN
bowie PROPN
			 SPACE
| PROPN
voice NOUN
: PUNCT
  SPACE
( PUNCT
901)797 PROPN
- PUNCT
6332federal PROPN
express PROPN
corp PROPN
		 SPACE
| PROPN
fax PROPN
: PUNCT
    SPACE
( PUNCT
901)797 PROPN
- PUNCT
6388box NUM
727 NUM
- SYM
2891 NUM
, PUNCT
memphis PROPN
, PUNCT
tn PROPN
38194 NUM
| PROPN
email NOUN
: PUNCT
  SPACE
claude@banana.fedex.comNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59568From NUM
: PUNCT
bitn@kimbark.uchicago.edu PROPN
( PUNCT
nathan PROPN
elery NOUN
bitner)Subject PROPN
: PUNCT
Deadly PROPN
NyQuil???I PROPN
originally ADV
posted VERB
this DET
to ADP
alt.suicide.holiday PROPN
but CCONJ
it PRON
was AUX
recommendedthat ADP
I PRON
try VERB
you PRON
guys NOUN
instead ADV
: PUNCT
My PRON
friend NOUN
insists VERB
that SCONJ
Ny PROPN
- PUNCT
Quil PROPN
can AUX
be AUX
deadly ADJ
if SCONJ
enough ADJ
is AUX
taken VERB
-- PUNCT
hesuggested VERB
something PRON
like SCONJ
20 NUM
- SYM
30 NUM
of ADP
the DET
Night PROPN
- PUNCT
time NOUN
gelcaps NOUN
would AUX
do AUX
someonein NOUN
. PUNCT
  SPACE
Being AUX
a DET
NORMAL PROPN
user NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
:) NUM
, PUNCT
I PRON
checked VERB
the DET
' PUNCT
ingredients NOUN
' PUNCT
andhave VERB
a DET
very ADV
hard ADJ
time NOUN
believing VERB
it PRON
. PUNCT
  SPACE
They PRON
are:250 PROPN
g NOUN
acetaminophen30 NOUN
mg PROPN
Pseudoephedrine PROPN
HCl10 NOUN
mg PROPN
Dextromethorphan PROPN
HBr6.25 PROPN
mg PROPN
Doxylamine PROPN
Succinate(per X
softgel)Can PROPN
someone PRON
settle VERB
our PRON
bet NOUN
( PUNCT
a DET
package NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
of ADP
course NOUN
:) PUNCT
-- PUNCT
what PRON
effect NOUN
would AUX
20 NUM
- SYM
30 NUM
of ADP
these DET
babies NOUN
have?*-Nathan-*-- NOUN
------------------------------------------------------------------------| PUNCT
                         SPACE
INTER PROPN
ARMA NOUN
SILENT VERB
LEGES PROPN
                      SPACE
|| PUNCT
" PUNCT
Worship PROPN
Ditka PROPN
NOW ADV
. PUNCT
" PUNCT
                SPACE
email NOUN
: PUNCT
  SPACE
bitn@midway.uchicago.edu PROPN
||______________________________________________________________________| PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59569From NUM
: PUNCT
abruno@adobe NOUN
( PUNCT
Andrea PROPN
Bruno)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
19930430140738SFB2763@MVS.draper.com X
> X
SFB2763@MVS.draper.com SYM
  SPACE
( PUNCT
Eileen PROPN
Bauer PROPN
) PUNCT
writes VERB
: PUNCT
> X
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
> X
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart NOUN
) PUNCT
, PUNCT
> X
changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things NOUN
. PUNCT
Is AUX
there PRON
any DET
relation NOUN
between ADP
thyroid NOUN
deficiency NOUN
and CCONJ
depression?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59570From NUM
: PUNCT
George PROPN
< X
george_paap@email.sps.mot.com>Subject X
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
80412@cup.portal.com NUM
> X
Mark PROPN
Robert PROPN
Thorson PROPN
, PUNCT
mmm@cup.portal.comwrites VERB
: PUNCT
> X
Colonics NOUN
were AUX
a DET
health NOUN
fad NOUN
of ADP
the DET
19th ADJ
century NOUN
, PUNCT
which PRON
persists VERB
to ADP
thisday NOUN
. PUNCT
> X
Except SCONJ
for ADP
certain ADJ
medical ADJ
conditions NOUN
, PUNCT
there PRON
is AUX
no DET
reason NOUN
to PART
do AUX
this DET
. PUNCT
> X
Certainly ADV
no DET
normal ADJ
person NOUN
should AUX
do AUX
this DET
. PUNCT
In ADP
article NOUN
< X
1993Apr28.023749.9259@informix.com NUM
> X
Robert PROPN
Hartman,hartman@informix.com X
writes VERB
: PUNCT
> X
Also ADV
, PUNCT
insofar ADV
as SCONJ
it PRON
does AUX
n't PART
conform VERB
to ADP
the DET
accepted VERB
medical ADJ
presumption NOUN
> X
that SCONJ
it PRON
just ADV
does AUX
n't PART
matter VERB
what PRON
you PRON
eat VERB
, PUNCT
and CCONJ
that SCONJ
we PRON
can AUX
think VERB
of ADP
the DET
> X
GI PROPN
tract NOUN
as SCONJ
a DET
black ADJ
box NOUN
in ADP
which PRON
nothing PRON
ever ADV
goes VERB
wrong ADJ
( PUNCT
except SCONJ
for ADP
> X
maybe ADV
cancer NOUN
and CCONJ
ulcers NOUN
) PUNCT
, PUNCT
the DET
righteous ADJ
will AUX
no ADV
doubt ADV
jump VERB
on ADP
that DET
too ADV
. PUNCT
Recently ADV
, PUNCT
I PRON
completed VERB
a DET
2 NUM
week NOUN
juice NOUN
fast ADV
( PUNCT
with ADP
3 NUM
days NOUN
of ADP
water NOUN
) PUNCT
and CCONJ
hadtwo VERB
colonics NOUN
as SCONJ
part NOUN
of ADP
it PRON
. PUNCT
  SPACE
My PRON
motivation NOUN
was AUX
primarily ADV
spiritual ADJ
, PUNCT
tode NOUN
- PUNCT
toxify VERB
from ADP
all DET
the DET
crap NOUN
I PRON
've AUX
been AUX
putting VERB
in ADP
my PRON
body NOUN
( PUNCT
not PART
like INTJ
thatsenough VERB
to PART
clean VERB
it PRON
all DET
out ADP
but CCONJ
it PRON
did AUX
have AUX
an DET
effect NOUN
) PUNCT
. PUNCT
  SPACE
Personaly PROPN
, PUNCT
Ididn't PROPN
find VERB
it PRON
an DET
uncomfortable ADJ
experience NOUN
( PUNCT
the DET
colonic NOUN
) PUNCT
, PUNCT
lost VERB
about15lbs NOUN
of ADP
beer NOUN
belly NOUN
( PUNCT
which PRON
has AUX
n't PART
come VERB
back ADV
over ADP
the DET
last ADJ
month NOUN
) PUNCT
, PUNCT
andfeel PROPN
great ADJ
. PUNCT
  SPACE
One NUM
of ADP
the DET
things NOUN
that PRON
prompted VERB
me PRON
to PART
get AUX
the DET
colonic ADJ
wasseeing VERB
my PRON
90 NUM
year NOUN
old ADJ
grandmother NOUN
chair NOUN
ridden VERB
from ADP
colitis NOUN
( PUNCT
? PUNCT
) PUNCT
fromyears NOUN
of ADP
indulgence NOUN
. PUNCT
Not PART
everything PRON
that PRON
goes VERB
in ADV
comes VERB
out ADP
, PUNCT
and CCONJ
personaly NOUN
I PRON
do AUX
n't PART
mind VERB
givingmy NOUN
body NOUN
a DET
hand NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
Just ADV
my PRON
experience NOUN
, PUNCT
George PROPN
PaapI PROPN
am AUX
my PRON
beliefs.(which NOUN
almost ADV
certainly ADV
are AUX
not PART
those DET
of ADP
my PRON
employer)Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59571From NUM
: PUNCT
jfh@netcom.com PROPN
( PUNCT
Jack PROPN
Hamilton)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Legality NOUN
of ADP
placebos?calzone@athena.mit.edu PROPN
wrote:>>>How PUNCT
is AUX
it PRON
that SCONJ
placebos NOUN
are AUX
legal ADJ
? PUNCT
  SPACE
It PRON
would AUX
seem VERB
to ADP
me PRON
that SCONJ
if SCONJ
, PUNCT
as SCONJ
a DET
patient,>you NOUN
purchase VERB
a DET
drug NOUN
you PRON
've AUX
been AUX
prescribed VERB
and CCONJ
it PRON
's AUX
just ADV
sugar NOUN
( PUNCT
or CCONJ
whatever),>there PROPN
's AUX
a DET
few ADJ
legal ADJ
complications NOUN
that PRON
arise VERB
: PUNCT
> X
> X
	 SPACE
1 NUM
. PUNCT
> X
If SCONJ
you PRON
have AUX
been AUX
diagnosed VERB
with ADP
a DET
condition NOUN
and CCONJ
you PRON
are AUX
n't PART
given VERB
accepted ADJ
> X
treatment NOUN
for ADP
it PRON
, PUNCT
it PRON
seems VERB
like SCONJ
intentional ADJ
medical ADJ
malpractice NOUN
. PUNCT
A DET
placebo NOUN
is AUX
an DET
accepted VERB
treatment NOUN
at ADP
times NOUN
. PUNCT
> X
	 SPACE
2.>A NUM
placebo NOUN
should AUX
fall VERB
, PUNCT
legally ADV
, PUNCT
under ADP
the DET
label NOUN
of ADP
quackery PROPN
( PUNCT
why ADV
not?)Why PROPN
should AUX
it PRON
? PUNCT
  SPACE
Placebos PROPN
are AUX
effective ADJ
under ADP
certain ADJ
circumstances NOUN
. PUNCT
  SPACE
That'swhy PUNCT
they PRON
're AUX
used VERB
. PUNCT
  SPACE
Actually ADV
, PUNCT
I PRON
do AUX
n't PART
know VERB
know VERB
anyone PRON
who PRON
has AUX
actually ADV
gotten VERB
a DET
" PUNCT
sugar NOUN
pill" NOUN
. PUNCT
I PRON
do AUX
n't PART
know VERB
how ADV
it PRON
could AUX
be AUX
done VERB
, PUNCT
since SCONJ
prescription NOUN
drugs NOUN
are AUX
alwayslabeled VERB
, PUNCT
and CCONJ
it PRON
's AUX
easy ADJ
enough ADV
to PART
find VERB
out ADP
what PRON
's AUX
in ADP
a DET
pill NOUN
if SCONJ
you PRON
have AUX
thename NOUN
. PUNCT
It PRON
's AUX
more ADV
common ADJ
to PART
prescribe VERB
a DET
drug NOUN
which PRON
is AUX
effective ADJ
for ADP
something PRON
, PUNCT
justnot ADV
for ADP
what PRON
you PRON
have AUX
. PUNCT
  SPACE
Antibiotics NOUN
for ADP
viral ADJ
infections NOUN
are AUX
the DET
mostcommon ADJ
such ADJ
placebo NOUN
. PUNCT
> X
	 SPACE
3.>Getting NUM
what PRON
you PRON
pay VERB
for ADP
. PUNCT
  SPACE
( PUNCT
Deceptive ADJ
" PUNCT
bait NOUN
and CCONJ
switch VERB
" PUNCT
to ADP
an DET
extreme ADJ
... PUNCT
) PUNCT
. PUNCT
  SPACE
False ADJ
> X
advertising NOUN
  SPACE
( PUNCT
what PRON
if SCONJ
McDonalds PROPN
did AUX
n't PART
put VERB
100 NUM
% NOUN
pure ADJ
beef NOUN
in ADP
their PRON
hamburgers?)I'm PROPN
not PART
sure ADJ
what PRON
you PRON
mean VERB
by ADP
this DET
. PUNCT
  SPACE
What PRON
do AUX
you PRON
think VERB
you PRON
're AUX
paying VERB
for?You're NUM
not PART
entitled VERB
to ADP
a DET
prescription NOUN
drug NOUN
just ADV
because SCONJ
you PRON
pay VERB
for ADP
adoctor NOUN
's PART
appointment NOUN
. PUNCT
  SPACE
-- PUNCT
------------------------------------------------------------------------Jack PROPN
Hamilton PROPN
  SPACE
KD6TTL PROPN
  SPACE
jfh@netcom.com PROPN
  SPACE
PO PROPN
Box PROPN
281107 NUM
  SPACE
SF PROPN
, PUNCT
CA PROPN
  SPACE
94128 NUM
  SPACE
USANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59572From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
vitamin NOUN
A NOUN
and CCONJ
hearing VERB
lossIn PROPN
article NOUN
< X
1993Apr30.194806.10652@banana.fedex.com PROPN
> X
, PUNCT
claude@banana.fedex.com PROPN
( PUNCT
claude NOUN
bowie NOUN
) PUNCT
writes VERB
: PUNCT
> X
i PRON
heard VERB
a DET
news NOUN
report NOUN
indicating VERB
research NOUN
showing VERB
improved VERB
         SPACE
> X
hearing VERB
in ADP
people NOUN
taking VERB
vitamin NOUN
A. NOUN
the DET
research NOUN
showed VERB
that SCONJ
new ADJ
    SPACE
> X
growth NOUN
replaced VERB
damaged VERB
" PUNCT
hairlike ADP
" PUNCT
nerves NOUN
. PUNCT
has AUX
anyone PRON
heard VERB
about ADP
> X
this DET
? PUNCT
> X
Claude NOUN
, PUNCT
I PRON
've AUX
not PART
heard VERB
or CCONJ
read VERB
anything PRON
that PRON
would AUX
suggest VERB
that SCONJ
vitamin NOUN
A(retinol PROPN
) PUNCT
could AUX
reverse VERB
hearing NOUN
loss NOUN
due ADP
to ADP
nerve NOUN
damage(usually PROPN
caused VERB
by ADP
high ADJ
sound NOUN
levels NOUN
, PUNCT
but CCONJ
also ADV
occassionally ADV
due ADJ
to ADP
severe ADJ
infection NOUN
) PUNCT
. PUNCT
  SPACE
The DET
types NOUN
of ADP
cells NOUN
that PRON
vitamin NOUN
A DET
regulates NOUN
are AUX
the DET
general ADJ
epithelial ADJ
cells NOUN
and CCONJ
these DET
cell NOUN
types NOUN
are AUX
not PART
the DET
ones NOUN
that PRON
function VERB
in ADP
the DET
ear NOUN
hearing NOUN
process NOUN
. PUNCT
  SPACE
The DET
hair NOUN
cell NOUN
nerve NOUN
- PUNCT
like ADJ
epithelial ADJ
cells NOUN
in ADP
the DET
ear NOUN
may AUX
respond VERB
to ADP
vitamin NOUN
A NOUN
during ADP
cellular ADJ
differentiation(embryogenesis NOUN
) PUNCT
but CCONJ
I PRON
do AUX
n't PART
know VERB
if SCONJ
they PRON
are AUX
still ADV
capable ADJ
of ADP
responding VERB
in ADP
adults NOUN
. PUNCT
  SPACE
If SCONJ
they PRON
are AUX
capable ADJ
of ADP
responding VERB
with ADP
new ADJ
hair NOUN
growth NOUN
, PUNCT
this DET
would AUX
be AUX
a DET
very ADV
major ADJ
breakthrough NOUN
in ADP
hearing VERB
loss NOUN
. PUNCT
  SPACE
With ADP
all DET
of ADP
the DET
medical ADJ
interest NOUN
in ADP
vitamin NOUN
A NOUN
, PUNCT
it PRON
would AUX
not PART
be AUX
too ADV
surprising ADJ
if SCONJ
a DET
clinical ADJ
study NOUN
was AUX
done VERB
using VERB
vitamin NOUN
A NOUN
to PART
reverse VERB
hearing NOUN
loss NOUN
. PUNCT
  SPACE
But CCONJ
with ADP
only ADV
a DET
news NOUN
announcement NOUN
to PART
go VERB
on(and PUNCT
this DET
type NOUN
of ADP
communication NOUN
is AUX
notoriously ADV
bad ADJ
) PUNCT
, PUNCT
I PRON
ca AUX
n't PART
comment VERB
on ADP
your PRON
question NOUN
anymore ADV
than SCONJ
I PRON
already ADV
have AUX
. PUNCT
  SPACE
If SCONJ
one NUM
study NOUN
has AUX
been AUX
done VERB
, PUNCT
more ADJ
will AUX
need VERB
to PART
follow VERB
to PART
firm VERB
up ADP
a DET
link NOUN
between ADP
vitamin NOUN
A NOUN
and CCONJ
hearing VERB
loss NOUN
if SCONJ
there PRON
really ADV
is AUX
one NUM
. PUNCT
Marty PROPN
B. PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59573From NUM
: PUNCT
SFB2763@MVS.draper.com X
( PUNCT
Eileen PROPN
Bauer)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal VERB
deficiencyIn PROPN
article NOUN
< X
1993Apr30.211625.568@adobe.com>,abruno@adobe NUM
( PUNCT
Andrea PROPN
Bruno PROPN
) PUNCT
writes:>>In X
article NOUN
< X
19930430140738SFB2763@MVS.draper.com X
> X
SFB2763@MVS.draper.com>(Eileen PROPN
Bauer PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
> X
> X
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart NOUN
) PUNCT
, PUNCT
> X
> X
changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things.>>Is NOUN
there PRON
any DET
relation NOUN
between ADP
thyroid NOUN
deficiency NOUN
and CCONJ
depression?Perhaps VERB
the DET
listlessness NOUN
caused VERB
by ADP
thyroid NOUN
deficiency NOUN
could AUX
mimicdepression NOUN
, PUNCT
or CCONJ
feeling VERB
unable ADJ
to PART
do AUX
anything PRON
could AUX
cause VERB
one NUM
to ADP
getdepressed VERB
, PUNCT
but CCONJ
I PRON
know VERB
of ADP
no DET
specific ADJ
effect NOUN
on ADP
the DET
brain NOUN
caused VERB
by ADP
thethyroid NOUN
that PRON
would AUX
cause VERB
depression NOUN
. PUNCT
Note VERB
that SCONJ
weight NOUN
gain NOUN
is AUX
usuallya ADJ
symptom NOUN
of ADP
both DET
. PUNCT
Simple ADJ
blood NOUN
tests NOUN
would AUX
indicate VERB
if SCONJ
a DET
thyroidcondition NOUN
is AUX
present ADJ
. PUNCT
I PRON
do AUX
n't PART
know VERB
if SCONJ
depression NOUN
would AUX
cause VERB
a DET
reduction NOUN
in ADP
thyroid NOUN
output NOUN
, PUNCT
but CCONJ
I PRON
would AUX
tend VERB
to PART
doubt VERB
it PRON
. PUNCT
As ADV
far ADV
as SCONJ
I PRON
know VERB
clinical ADJ
depression NOUN
iscaused VERB
by ADP
a DET
chemical ADJ
imbalance NOUN
in ADP
the DET
brain NOUN
, PUNCT
and CCONJ
that SCONJ
chemicalimbalance NOUN
has AUX
no DET
direct ADJ
effect NOUN
on ADP
any DET
other ADJ
part NOUN
of ADP
the DET
body NOUN
. PUNCT
A DET
regulareveryday NOUN
depression NOUN
IMHO PROPN
should AUX
not PART
cause VERB
a DET
chemical NOUN
imbalance NOUN
in ADP
thebody NOUN
at ADV
all ADV
. PUNCT
The DET
pituitary ADJ
bases VERB
its PRON
secretions NOUN
of ADP
Thyroid NOUN
Stimulating PROPN
Hormone NOUN
( PUNCT
TSH)on PUNCT
the DET
level NOUN
of ADP
circulating VERB
Thyroxin NOUN
( PUNCT
there PRON
are AUX
two NUM
types NOUN
T3 PROPN
and CCONJ
T4 PROPN
-one PUNCT
is AUX
used VERB
as SCONJ
a DET
reserve NOUN
and CCONJ
is AUX
changed VERB
into ADP
the DET
other ADJ
-active- PUNCT
form NOUN
inthe NOUN
liver NOUN
) PUNCT
. PUNCT
The DET
ratio NOUN
of ADP
T3 PROPN
& CCONJ
T4 PROPN
can AUX
be AUX
affected VERB
by ADP
a DET
number NOUN
of ADP
otherhormones NOUN
( PUNCT
estrogen PROPN
, PUNCT
for ADP
example NOUN
) PUNCT
. PUNCT
Naturally ADV
, PUNCT
changing VERB
activity NOUN
of ADP
thebody NOUN
's PART
cells NOUN
would AUX
cause VERB
changes NOUN
in ADP
availabilty NOUN
of ADP
free ADJ
thyroxin NOUN
, PUNCT
butthe NOUN
liver NOUN
and CCONJ
a DET
healthy ADJ
thyroid NOUN
should AUX
be AUX
able ADJ
to PART
balance VERB
things NOUN
out ADP
inshort NOUN
order NOUN
. PUNCT
Good ADJ
sources NOUN
for ADP
info NOUN
on ADP
the DET
thyroid NOUN
are AUX
the DET
Merk PROPN
Manual PROPN
( PUNCT
a DET
physician'sreference NOUN
book NOUN
) PUNCT
although SCONJ
reading VERB
it PRON
is AUX
enough ADJ
to PART
get AUX
one NUM
depressed ADJ
: PUNCT
-)and PUNCT
the DET
Encyclopedia PROPN
Brittanica PROPN
( PUNCT
should AUX
be AUX
available ADJ
in ADP
your PRON
locallibrary).I NOUN
hope NOUN
this DET
has AUX
been AUX
of ADP
some DET
help.-Eileen PROPN
BauerNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59574From NUM
: PUNCT
swkirch@sun6850.nrl.navy.mil PROPN
( PUNCT
Steve PROPN
Kirchoefer)Subject PROPN
: PUNCT
RESULT NOUN
: PUNCT
misc.health.diabetes PROPN
passes VERB
155:14Voting NOUN
for ADP
creation NOUN
of ADP
the DET
newsgroup NOUN
misc.health.diabetes PROPN
ended VERB
at23:59 PUNCT
GMT PROPN
on ADP
29 NUM
Apr PROPN
93 NUM
. PUNCT
  SPACE
At ADP
this DET
time NOUN
, PUNCT
the DET
total ADJ
response NOUN
receivedconsisted VERB
of ADP
155 NUM
votes NOUN
for ADP
newsgroup PROPN
creation NOUN
and CCONJ
14 NUM
votes NOUN
againstnewsgroup NOUN
creation NOUN
. PUNCT
  SPACE
Under ADP
the DET
Guidelines PROPN
for ADP
Usenet PROPN
Group PROPN
Creation PROPN
, PUNCT
this DET
response NOUN
constitutes VERB
a DET
passing VERB
vote NOUN
. PUNCT
There PRON
will AUX
be AUX
a DET
delay NOUN
to PART
allow VERB
time NOUN
for ADP
the DET
net NOUN
to PART
respond VERB
to ADP
thisresult NOUN
, PUNCT
after ADP
which PRON
the DET
newsgroup NOUN
misc.health.diabetes PROPN
should AUX
becreated VERB
. PUNCT
Please INTJ
check VERB
the DET
vote NOUN
acknowledgement NOUN
list NOUN
to PART
be AUX
sure ADJ
that SCONJ
your PRON
votewas NOUN
received VERB
and CCONJ
properly ADV
credited VERB
. PUNCT
  SPACE
Any DET
inconsistencies NOUN
or CCONJ
errorsshould NOUN
be AUX
reported VERB
to ADP
swkirch@sun6850.nrl.navy.mil PROPN
by ADP
email NOUN
. PUNCT
I PRON
want VERB
to PART
thank VERB
everyone PRON
who PRON
participated VERB
in ADP
the DET
discussion NOUN
and CCONJ
votefor ADV
this DET
newsgroup NOUN
proposal NOUN
. PUNCT
The DET
following NOUN
is AUX
the DET
voting VERB
summary NOUN
: PUNCT
Votes NOUN
received VERB
against ADP
newsgroup PROPN
creation:cline@usceast.cs.scarolina.edu PROPN
               SPACE
Ernest PROPN
A. PROPN
Clinecoleman@twin.twinsun.com X
                     SPACE
Mike PROPN
Colemanejo@kaja.gi.alaska.edu PROPN
                       SPACE
Eric PROPN
J. PROPN
Olsonelharo@shiva.njit.edu PROPN
                        SPACE
Elliotte PROPN
Rusty PROPN
Haroldemcguire@intellection.com PROPN
                    SPACE
Ed PROPN
McGuirehansenr@ohsu.EDUhmpetro@mosaic.uncc.edu PROPN
                      SPACE
Herbert PROPN
M. PROPN
Petrojjmorris@gandalf.rutgers.edu PROPN
                 SPACE
Joyce PROPN
Morrisjulian@bongo.tele.com NOUN
                        SPACE
Julian ADJ
Macasseyknauer@cs.uiuc.edu PROPN
                           SPACE
Rob PROPN
Knauerhaselau@ai.sri.com PROPN
                               SPACE
Stephen PROPN
Laumacridis_g@kosmos.wcc.govt.nz NOUN
                SPACE
Gerry PROPN
Macridisowens@cookiemonster.cc.buffalo.edu PROPN
           SPACE
Bill PROPN
Owensrick@crick.ssctr.bcm.tmc.edu PROPN
                 SPACE
Richard PROPN
H. PROPN
MillerVotes PROPN
received VERB
for ADP
newsgroup PROPN
creation:9781BMU@VMS.CSD.MU.EDU PROPN
                       SPACE
Bill PROPN
Satterleea2wj@loki.cc.pdx.edu PROPN
                         SPACE
Jim PROPN
Williamsac534@freenet.carleton.ca X
                    SPACE
Colin PROPN
Heneinad@cat.de X
                                    SPACE
Axel PROPN
Dunkelal198723@academ07.mty.itesm.mx NUM
               SPACE
Jesus PROPN
Sanchez PROPN
Pe~aandrea@unity.ncsu.eduanugula@badlands.NoDak.edu PROPN
                   SPACE
RamaKrishna PROPN
Reddy PROPN
Anugulaapps@sneaks NOUN
. PUNCT
Kodak.com PROPN
                        SPACE
Robert PROPN
W. PROPN
Appsarperd00@mik.uky.edu PROPN
                         SPACE
Alicia PROPN
R. PROPN
Perduebaind@gov.on.ca X
                              SPACE
Dave PROPN
Bainbalamut@morris.hac.com PROPN
                       SPACE
Morris PROPN
Balamutbch@Juliet PROPN
. PUNCT
Caltech PROPN
. PUNCT
Edu PROPN
                       SPACE
Bryan ADJ
Hathornbernsteinn@LONEXA.ADMIN.RL.AF.MIL NOUN
            SPACE
Norman PROPN
P. PROPN
BernsteinBGAINES@ollamh.ucd.ie PROPN
                        SPACE
Brian PROPN
Gainesbgeer@beorn.sim.es.com PROPN
                       SPACE
Bob PROPN
GeerBjorn.B.Larsen@delab.sintef.no PROPN
               SPACE
Bjorn PROPN
B. PROPN
Larsenbobw@hpsadwc.sad.hp.com PROPN
                      SPACE
Bob PROPN
Waltenspielbock@VSIKP0.UNI PROPN
- PUNCT
MUENSTER.DE PROPN
                  SPACE
Dirk PROPN
Bockbruce@uxb.liverpool.ac.uk PROPN
                    SPACE
Bruce PROPN
Stephensbspencer@binkley.cs.mcgill.ca PROPN
                SPACE
Brian PROPN
Spencerclaudia@LONEXA.ADMIN.RL.AF.MIL PROPN
               SPACE
Claudia PROPN
Servadio-Coynecompass-da.com!tomd@compass-da.com PROPN
           SPACE
Thomas PROPN
Donnellyconstabiled@LONEXA.ADMIN.RL.AF.MIL NOUN
           SPACE
Diane PROPN
Constabilecsc@coast.ucsd.edu PROPN
                           SPACE
Charles PROPN
Coughrancurtech!sbs@unh.edu PROPN
                          SPACE
Stephanie PROPN
Bradley-Swiftdebrum#m#_brenda@msgate.corp.apple.com PROPN
       SPACE
Brenda PROPN
DeBrumdlb@fanny.wash.inmet.com NOUN
                     SPACE
David PROPN
Bartondlg1@midway.uchicago.edu NUM
                     SPACE
Deborah PROPN
Lynn PROPN
Gillaspiedougb@comm.mot.com PROPN
                           SPACE
Douglas PROPN
Bankdrs@sunsrvr3.cci.com X
                         SPACE
Dale PROPN
R. PROPN
Seimdt4%cs@hub.ucsb.edu NOUN
                          SPACE
David PROPN
E. PROPN
Goggined@titipu.resun.com PROPN
                          SPACE
Edward PROPN
Reidedmoore@hpvclc.vcd.hp.com PROPN
                    SPACE
Ed PROPN
Mooreemilio@Accurate PROPN
. PUNCT
COM PROPN
                          SPACE
Elizabeth PROPN
Milioewc@hplb.hpl.hp.com PROPN
                          SPACE
Enrico PROPN
Coiera"feathr::bluejay"@ampakz.enet.dec.comfranklig@GAS.uug.Arizona.EDU PROPN
                 SPACE
Gregory PROPN
C. PROPN
FranklinFSSPR@acad3.alaska.edugabe@angus.mi.org PROPN
                            SPACE
Gabe PROPN
Helougasp@medg.lcs.mit.edu PROPN
                        SPACE
Isaac PROPN
Kohanegavin@praxis.co.uk PROPN
                           SPACE
Gavin PROPN
FinnieGeir PROPN
. PUNCT
Millstein@TF.tele.no VERB
                    SPACE
Geir PROPN
Millsteinggurman@cory PROPN
. PUNCT
Berkeley PROPN
. PUNCT
EDU PROPN
                    SPACE
Gail PROPN
Gurmanggw@wolves VERB
. PUNCT
Durham PROPN
. PUNCT
NC.US PROPN
                      SPACE
Gregory PROPN
G. PROPN
Woodburygmalet@surfer.win.net PROPN
                        SPACE
Gary PROPN
MaletGONZALEZ@SUHEP.PHY.SYR.EDU PROPN
                   SPACE
Gabriela PROPN
Gonzalezgreenlaw@oasys.dt.navy.mil PROPN
                   SPACE
Leila PROPN
Thomasgrm+@andrew.cmu.edu PROPN
                          SPACE
Gretchen PROPN
Millerhalderc@cs.rpi.edu PROPN
                           SPACE
Carol PROPN
HalderHANDELAP%DUVM.BITNET@pucc NOUN
. PUNCT
Princeton PROPN
. PUNCT
EDU PROPN
      SPACE
Phil PROPN
Handelhc@Nyongwa.cam.orgheddings@chrisco.nrl.navy.mil PROPN
                SPACE
Hubert PROPN
Heddingsherbison@lassie.ucx.lkg.dec.comHOSCH2263@iscsvax.uni.edu PROPN
                    SPACE
Kathleen PROPN
Hoschhrubin@pop.stat.purdue.edu PROPN
                   SPACE
Herman PROPN
RubinHUDSOIB@AUDUCADM.DUC.AUBURN.EDU PROPN
              SPACE
Ingrid PROPN
B. PROPN
Hudsonhuff@MCCLB0.MED.NYU.EDU PROPN
                      SPACE
Edward PROPN
J. PROPN
Huffhuffman@ingres.com PROPN
                           SPACE
Gary PROPN
HuffmanHUYNH_1@ESTD.NRL.NAVY.MIL PROPN
                    SPACE
Minh PROPN
Huynhishbeld@cix.compulink.co.uk PROPN
                  SPACE
Ishbel PROPN
DonkinJames PROPN
. PUNCT
Langdell@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
                   SPACE
James PROPN
Langdelljamie@SSD.intel.com PROPN
                          SPACE
Jamie PROPN
Weisbrodjamyers@netcom.com PROPN
                           SPACE
John PROPN
A. PROPN
Myersjc@crosfield.co.uk PROPN
                           SPACE
Jerry PROPN
Cullingfordjcobbe@garnet.acns.fsu.edu NOUN
                   SPACE
James PROPN
Cobbejesup@cbmvax.cbm.commodore.com X
               SPACE
Randell PROPN
Jesupjoannm@hpcc01.corp.hp.com PROPN
                    SPACE
JoAnn PROPN
McGowanjoep@dap.csiro.au NOUN
                            SPACE
Joe PROPN
PetranovicJohn.Burton@acenet.auburn.edu PROPN
                SPACE
John PROPN
E. PROPN
Burton PROPN
, PUNCT
Jr.johncha@comm.mot.comJORGENSONKE@CC.UVCC.EDU PROPN
                      SPACE
Keith PROPN
Jorgensonjpsum00@mik.uky.edu PROPN
                          SPACE
Joey PROPN
P. PROPN
SumJTM@ucsfvm.ucsf.edu NOUN
                          SPACE
John PROPN
Maynardjulien@skcla.monsanto.comkaminski@netcom.com PROPN
                          SPACE
Peter PROPN
Kaminskikerry@citr.uq.oz.au PROPN
                          SPACE
Kerry PROPN
Raymondkieran@world.std.com PROPN
                         SPACE
Aaron PROPN
L. PROPN
Dickeykolar@spot PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
                      SPACE
Jennifer PROPN
Lynn PROPN
Kolarkriguer@tcs.com X
                              SPACE
Marc PROPN
Kriguerlaurie@LONEXA.ADMIN.RL.AF.MIL NOUN
                SPACE
Laurie PROPN
J. PROPN
Keylee@hal.com PROPN
                                  SPACE
Lee PROPN
Boylanlmt6@po.cwru.edu NUM
                             SPACE
Lia PROPN
M. PROPN
Treffmanlunie@Lehigh PROPN
. PUNCT
EDUlusgr@chili PROPN
. PUNCT
CC.Lehigh X
. PUNCT
EDU PROPN
                    SPACE
Stephen PROPN
G. PROPN
RosemanM.Beamish@ins.gu.edu.au PROPN
                      SPACE
Marilyn PROPN
BeamishM.Rich@ens.gu.edu.au PROPN
                         SPACE
Maurice PROPN
H. PROPN
Richmaas@cdfsga.fnal.gov PROPN
                         SPACE
Peter PROPN
Maasmarilyn@LONEXA.ADMIN.RL.AF.MIL PROPN
               SPACE
Marilyn PROPN
M. PROPN
Tuckermarkv@hpvcivm.vcd.hp.com PROPN
                     SPACE
Mark PROPN
VanderfordMASCHLER@vms.huji.ac.il PROPN
                      SPACE
Michael PROPN
Maschlermcb@net.bio.net NUM
                              SPACE
Michael PROPN
C. PROPN
Berchmcday@ux1.cso.uiuc.edu PROPN
                       SPACE
Marrianne PROPN
C. PROPN
Daymcookson@flute.calpoly.edumelynda@titipu.resun.com X
                     SPACE
Melynda PROPN
Reidmfc@isr.harvard.edu PROPN
                          SPACE
Mauricio PROPN
F. PROPN
Contrerasmg@wpi.edu PROPN
                                   SPACE
Martha PROPN
Gunnarsonmhollowa@libserv1.ic.sunysb.edu NOUN
              SPACE
Michael PROPN
Hollowaymisha@abacus.concordia.ca PROPN
                    SPACE
Misha PROPN
Glouberman PROPN
mjb@cs.brown.edu PROPN
                             SPACE
Manish ADJ
ButteMOFLNGAN@vax1.tcd.ie NOUN
                         SPACE
Margaret PROPN
O PROPN
' PUNCT
Flanaganmuir@idiom.berkeley.ca.us NOUN
                    SPACE
David PROPN
Muir PROPN
SharnoffN.D.Treby@southampton.ac.uk PROPN
                  SPACE
N. PROPN
D. PROPN
TrebyN.J.C.Hookey@durham.ac.uk PROPN
                    SPACE
N. PROPN
J. PROPN
C. PROPN
HookeyNancy PROPN
. PUNCT
Block@Eng PROPN
. PUNCT
Sun PROPN
. PUNCT
COM PROPN
                      SPACE
Nancy PROPN
Blockndallen@r-node.hub.org PROPN
                       SPACE
Nigel PROPN
Allennlemur@eecs.umich.edu PROPN
                        SPACE
Nigel PROPN
Lemurnlr@B31.nei.nih.gov PROPN
                          SPACE
Nathan PROPN
Rohrerpams@hpfcmp.fc.hp.com SYM
                        SPACE
Pam PROPN
Sullivanpapresco@undergrad.math.uwaterloo.ca NOUN
         SPACE
Paul PROPN
Prescodpaslowp@cs.rpi.edu PROPN
                           SPACE
Pam PROPN
Paslowphil@unet.umn.edu PROPN
                            SPACE
Phil PROPN
Lindbergpillinc@gov.on.ca PROPN
                            SPACE
Christopher PROPN
Pillingpkane@cisco.com PROPN
                              SPACE
Peter PROPN
Kanepmmuggli@midway.ecn.uoknor.edu PROPN
               SPACE
Pauline NOUN
Mugglipopelka@odysseus.uchicago.edu NOUN
                SPACE
Glenn PROPN
Popelkapulkka@cs.washington.edu PROPN
                     SPACE
Aaron PROPN
Pulkkapwatkins@med.unc.edu NUM
                         SPACE
Pat PROPN
Watkinsrbnsn@mosaic.shearson.com X
                    SPACE
Ken PROPN
Robinsonrmasten@magnus.acs.ohio-state.edu PROPN
            SPACE
Roger PROPN
Mastenrobyn@media.mit.edu PROPN
                          SPACE
Robyn PROPN
Kozierokrolf@green.mathematik.uni-stuttgart.de PROPN
       SPACE
Rolf PROPN
Schreibersageman@cup.portal.comsasjcs@unx.sas.com X
                           SPACE
Joan PROPN
Stoutsca@space.physics.uiowa.edu PROPN
                  SPACE
Scott PROPN
AllendorfSCOTTJOR@delphi.comscrl@hplb.hpl.hp.comscs@vectis.demon.co.uk PROPN
                       SPACE
Stuart PROPN
C. PROPN
Squibbshan@techops.cray.com X
                        SPACE
Sharan PROPN
Kalwanisharen@iscnvx.lmsc.lockheed.com PROPN
              SPACE
Sharen PROPN
A. NOUN
Rundshazam@unh.edu PROPN
                               SPACE
Matthew PROPN
T. PROPN
Thompsonshipman@csab.larc.nasa.gov PROPN
                   SPACE
Floyd PROPN
S. PROPN
Shipmanshoppa@ERIN.CALTECH.EDU NOUN
                      SPACE
Tim PROPN
Shoppasjsmith@cs NUM
. PUNCT
UMD.EDU PROPN
                           SPACE
Stephen PROPN
Joseph PROPN
Smithslillie@cs1.bradley.edu PROPN
                      SPACE
Susan PROPN
Lilliesteveo@world.std.com PROPN
                         SPACE
Steven PROPN
W. PROPN
Orrsurendar@ivy PROPN
. PUNCT
WPI.EDU PROPN
                         SPACE
Surendar PROPN
Chandraswkirch@sun6850.nrl.navy.mil PROPN
                 SPACE
Steven PROPN
KirchoeferS_FAGAN@twu.edu PROPN
                              SPACE
Liz PROPN
FaganTARYN@ARIZVM1.ccit.arizona.edu PROPN
               SPACE
Taryn PROPN
L. PROPN
WestergaardThomas.E.Taylor@gagme.chi.il.us PROPN
              SPACE
Thomas PROPN
E. PROPN
Taylortima@CFSMO.Honeywell PROPN
. PUNCT
COM PROPN
                     SPACE
Timothy PROPN
D. PROPN
Aanerudtsamuel%gollum@relay.nswc.navy.mil PROPN
           SPACE
Tony PROPN
SamuelU45301@UICVM.UIC.EDU NOUN
                         SPACE
Mary PROPN
Jacobs PROPN
  SPACE
vstern@gte.com X
                               SPACE
Vanessa PROPN
Sternwahlgren@haida.van.wti.com NUM
                   SPACE
James PROPN
WahlgrenWaldref@tv.tv.tek.com X
                        SPACE
Greg PROPN
Waldrefwaterfal@pyrsea.sea.pyramid.com X
              SPACE
Douglas PROPN
Waterfallweineja1@teomail.jhuapl.eduwgrant@informix.com X
                          SPACE
William PROPN
GrantWINGB@Underdale PROPN
. PUNCT
UniSA.edu.au PROPN
                 SPACE
Brian PROPN
WingYEAGER@mscf.med.upenn.eduyozzo@watson.ibm.com PROPN
                         SPACE
Ralph PROPN
E. PROPN
Yozzoysharma@yamuna.b11.ingr.com PROPN
                  SPACE
Yamuna PROPN
SharmaZ919016@beach.utmb.edu NOUN
                       SPACE
Molly ADV
Hamiltonzulu@iesd.auc.dk PROPN
                             SPACE
Bjoern PROPN
U. PROPN
GregersenThe PROPN
charter NOUN
for ADP
misc.health.diabetes PROPN
appears VERB
below ADV
. PUNCT
-------------------------- PUNCT
Charter NOUN
: PUNCT
   SPACE
misc.health.diabetes PROPN
                            SPACE
unmoderated ADJ
1 NUM
. PUNCT
   SPACE
The DET
purpose NOUN
of ADP
misc.health.diabetes PROPN
is AUX
to PART
provide VERB
a DET
forum NOUN
for ADP
thediscussion NOUN
of ADP
issues NOUN
pertaining VERB
to ADP
diabetes NOUN
management NOUN
, PUNCT
i.e. X
: PUNCT
diet NOUN
, PUNCT
activities NOUN
, PUNCT
medicine NOUN
schedules NOUN
, PUNCT
blood NOUN
glucose NOUN
control NOUN
, PUNCT
exercise NOUN
, PUNCT
medical ADJ
breakthroughs NOUN
, PUNCT
etc X
. PUNCT
  SPACE
This DET
group NOUN
addresses VERB
the DET
issues NOUN
ofmanagement NOUN
of ADP
both DET
Type NOUN
I PRON
( PUNCT
insulin NOUN
dependent ADJ
) PUNCT
and CCONJ
Type PROPN
II PROPN
( PUNCT
non ADJ
- ADJ
insulindependent ADJ
) PUNCT
diabetes VERB
. PUNCT
  SPACE
Both DET
technical ADJ
discussions NOUN
and CCONJ
general ADJ
supportdiscussions NOUN
relevant ADJ
to ADP
diabetes NOUN
are AUX
welcome ADJ
. PUNCT
2 NUM
. PUNCT
   SPACE
Postings NOUN
to ADP
misc.heath.diabetes NOUN
are AUX
intended VERB
to PART
be AUX
for ADP
discussionpurposes NOUN
only ADV
, PUNCT
and CCONJ
are AUX
in ADP
no DET
way NOUN
to PART
be AUX
construed VERB
as SCONJ
medical ADJ
advice NOUN
. PUNCT
Diabetes NOUN
is AUX
a DET
serious ADJ
medical ADJ
condition NOUN
requiring VERB
direct ADJ
supervisionby PROPN
a DET
primary ADJ
health NOUN
care NOUN
physician NOUN
. PUNCT
   SPACE
-----(end PROPN
of ADP
charter)------- NUM
Steve PROPN
Kirchoefer PROPN
                                             SPACE
( PUNCT
202 NUM
) PUNCT
767 NUM
- SYM
2862Code NUM
6851 NUM
                                      SPACE
kirchoefer@estd.nrl.navy.milNaval PROPN
Research PROPN
Laboratory PROPN
                       SPACE
Microwave PROPN
Technology PROPN
BranchWashington PROPN
, PUNCT
DC PROPN
  SPACE
20375 NUM
- SYM
5000 NUM
              SPACE
Electronics PROPN
Sci PROPN
. PUNCT
and CCONJ
Tech PROPN
. PUNCT
DivisionNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59575From NUM
: PUNCT
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant VERB
Edwards)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
Photographyttrusk@its.mcw.edu NOUN
( PUNCT
Thomas PROPN
Trusk PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
: PUNCT
BUT CCONJ
, PUNCT
to PART
say VERB
you PRON
're AUX
an DET
atheist NOUN
is AUX
to PART
suggest VERB
you PRON
have AUX
PROOF PROPN
there PRON
is AUX
NO DET
GOD PROPN
. PUNCT
: PUNCT
To PART
be AUX
a DET
politically ADV
- PUNCT
correct ADJ
skeptic NOUN
, PUNCT
better ADJ
to PART
go VERB
with ADP
agnostic NOUN
, PUNCT
like SCONJ
me PRON
! PUNCT
: PUNCT
) PUNCT
: PUNCT
As SCONJ
a DET
self NOUN
- PUNCT
proclaimed VERB
atheist NOUN
my PRON
position NOUN
is AUX
that SCONJ
I PRON
_ AUX
believe VERB
_ PROPN
that SCONJ
there PRON
isno NOUN
god PROPN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
claim VERB
to PART
have AUX
any DET
proof NOUN
. PUNCT
  SPACE
I PRON
interpret VERB
the DET
agnostic ADJ
position NOUN
as SCONJ
having VERB
no DET
beliefs NOUN
about ADP
god PROPN
's PART
existence.--Grant ADJ
Edwards PROPN
                                 SPACE
|Yow PROPN
! PUNCT
  SPACE
Are AUX
we PRON
THERE ADV
yet ADV
? PUNCT
  SPACE
MyRosemount PROPN
Inc. PROPN
                                SPACE
|MIND PROPN
is AUX
a DET
SUBMARINE PROPN
! PUNCT
! PUNCT
                                              SPACE
|grante@aquarius.rosemount.com PROPN
                 SPACE
|Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59576From NUM
: PUNCT
mavmav@mksol.dseg.ti.com PROPN
( PUNCT
michael PROPN
a DET
vincze)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Chromium NOUN
for ADP
weight NOUN
lossIn PROPN
article NOUN
< X
93119.141946U18183@uicvm.uic.edu NUM
> X
, PUNCT
< X
U18183@uicvm.uic.edu NOUN
> X
writes:| PROPN
> X
   SPACE
There PRON
is AUX
no DET
data NOUN
to PART
show VERB
chromium NOUN
is AUX
effective ADJ
in ADP
promoting VERB
weight NOUN
loss NOUN
. PUNCT
  SPACE
The| PROPN
> X
  SPACE
few ADJ
studies NOUN
that PRON
have AUX
been AUX
done VERB
using VERB
chromium NOUN
have AUX
been AUX
very ADV
flawed ADJ
and CCONJ
inher| NOUN
> X
ently ADV
biased VERB
( PUNCT
the DET
investigators NOUN
were AUX
making VERB
money NOUN
from ADP
marketing VERB
it).| PROPN
> X
   SPACE
Theoretically ADV
it PRON
really ADV
does AUX
nt PART
make VERB
sense NOUN
either ADV
. PUNCT
The DET
claim NOUN
is AUX
that SCONJ
chromium| NOUN
> X
will AUX
increase VERB
muscle NOUN
mass NOUN
and CCONJ
decrease VERB
fat NOUN
. PUNCT
  SPACE
Of ADV
course ADV
, PUNCT
chromium NOUN
is AUX
also ADV
used VERB
t| PROPN
> X
o X
cure NOUN
diabetes NOUN
, PUNCT
high ADJ
blood NOUN
pressure NOUN
and CCONJ
increase VERB
muscle NOUN
mass NOUN
in ADP
athletes(just| PROPN
> X
as ADV
well ADV
as SCONJ
anabolic ADJ
steroids NOUN
) PUNCT
. PUNCT
Sounds VERB
like SCONJ
snake NOUN
oil NOUN
for ADP
the DET
1990 NUM
's PART
: PUNCT
-)Where PUNCT
are AUX
your PRON
references NOUN
? PUNCT
  SPACE
I PRON
have AUX
been AUX
unable ADJ
to PART
find VERB
studies NOUN
that SCONJ
statethat DET
chromium NOUN
" PUNCT
cures VERB
diabetese PROPN
" PUNCT
. PUNCT
  SPACE
It PRON
can AUX
reduce VERB
the DET
amount NOUN
of ADP
insulin NOUN
youhave PROPN
to PART
take VERB
. PUNCT
  SPACE
" PUNCT
High ADJ
blood NOUN
pressure NOUN
" PUNCT
- PUNCT
I PRON
have AUX
never ADV
heard VERB
of ADP
this DET
claimbefore NOUN
. PUNCT
  SPACE
" PUNCT
... PUNCT
anabolic ADJ
steroids NOUN
" PUNCT
- PUNCT
I PRON
have AUX
also ADV
never ADV
heard VERB
of ADP
this DET
claimbefore NOUN
. PUNCT
  SPACE
Sounds VERB
like SCONJ
you PRON
are AUX
making VERB
things NOUN
up ADP
and CCONJ
stretching VERB
the DET
truthfor NOUN
God PROPN
knows VERB
what PRON
reason NOUN
. PUNCT
  SPACE
Did AUX
somebody PRON
piss VERB
you PRON
off ADP
at ADP
one NUM
time?| NOUN
> X
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
it PRON
really ADV
ca AUX
nt PART
hurt VERB
you PRON
anywhere ADV
but CCONJ
your PRON
wallet NOUN
, PUNCT
and CCONJ
place| PROPN
> X
bo PROPN
effects NOUN
of ADP
anything PRON
can AUX
be AUX
pretty ADV
dramatic ADJ
... PUNCT
I PRON
agree VERB
with ADP
you PRON
that DET
chromium NOUN
picolinate NOUN
by ADP
itself PRON
is AUX
n't PART
likelyto PROPN
make VERB
a DET
fat ADJ
person NOUN
thin ADJ
. PUNCT
  SPACE
But CCONJ
it PRON
can AUX
be AUX
the DET
decisive ADJ
componentof NOUN
an DET
overall ADJ
strategy NOUN
for ADP
long ADJ
- PUNCT
term NOUN
weight NOUN
control NOUN
and CCONJ
make VERB
animportant ADJ
contribution NOUN
to ADP
good ADJ
health NOUN
. PUNCT
  SPACE
It PRON
is AUX
important ADJ
toexercise NOUN
( PUNCT
11 NUM
, PUNCT
12 NUM
) PUNCT
and CCONJ
also ADV
avoid VERB
fat ADJ
calories NOUN
( PUNCT
9 NUM
, PUNCT
10).Chromium NUM
picolinate NOUN
has AUX
shown VERB
to PART
reduce VERB
fat ADJ
and CCONJ
increaselean ADJ
muscle NOUN
( PUNCT
1 NUM
, PUNCT
2 NUM
, PUNCT
3 NUM
) PUNCT
. PUNCT
  SPACE
I PRON
will AUX
not PART
bore VERB
you PRON
with ADP
thestatistics NOUN
. PUNCT
  SPACE
You PRON
would AUX
n't PART
believe VERB
these DET
anyway ADV
. PUNCT
Chromium NOUN
Picolinate PROPN
is AUX
an DET
exceptionally ADV
bioactive ADJ
source NOUN
ofthe DET
essential ADJ
mineral NOUN
chromium NOUN
. PUNCT
  SPACE
Chromium PROPN
plays VERB
a DET
vital ADJ
rolein NOUN
" PUNCT
sensitizing VERB
" PUNCT
the DET
body NOUN
's PART
tissues NOUN
to ADP
the DET
hormone NOUN
insulin NOUN
. PUNCT
Weight NOUN
gain NOUN
in ADP
the DET
form NOUN
of ADP
fat NOUN
tends VERB
to PART
impair VERB
sensitivityto ADJ
insulin NOUN
and CCONJ
thus ADV
, PUNCT
in ADP
turn NOUN
, PUNCT
makes VERB
it PRON
harder ADJ
to PART
loseweight VERB
( PUNCT
4).Insulin NUM
directly ADV
stimulates VERB
protein NOUN
synthesis NOUN
and CCONJ
retardsprotein PROPN
breakdown NOUN
in ADP
muscles NOUN
( PUNCT
5 NUM
, PUNCT
6 NUM
) PUNCT
. PUNCT
  SPACE
This DET
" PUNCT
protein NOUN
sparing"effect NOUN
of ADP
insulin NOUN
tends VERB
to PART
decline VERB
during ADP
low ADJ
calorie PROPN
dietsas PROPN
insulin NOUN
levels NOUN
decline VERB
, PUNCT
which PRON
results VERB
in ADP
loss NOUN
of ADP
muscleand ADJ
organ NOUN
tissue NOUN
. PUNCT
  SPACE
By ADP
" PUNCT
sensitizing VERB
" PUNCT
muscle NOUN
to ADP
insulin NOUN
, PUNCT
chromium NOUN
picolinate NOUN
helps VERB
to PART
preserve VERB
muscle NOUN
in ADP
dietersso PROPN
that SCONJ
they PRON
" PUNCT
burn VERB
" PUNCT
more ADV
fat ADJ
and CCONJ
less ADJ
muscle NOUN
. PUNCT
  SPACE
Preservationof PROPN
lean ADJ
body NOUN
mass NOUN
has AUX
an DET
important ADJ
long ADJ
- PUNCT
term NOUN
positiveeffect NOUN
on ADP
metabolic ADJ
rate NOUN
, PUNCT
helping VERB
dieters NOUN
keep VERB
off ADP
thefat NOUN
they PRON
've AUX
lost VERB
. PUNCT
Chromium NOUN
picolinate NOUN
promotes VERB
efficient ADJ
metabolism NOUN
by ADP
aidingthe PROPN
thermogenic NOUN
( PUNCT
heat NOUN
producing VERB
) PUNCT
effects NOUN
of ADP
insulin NOUN
. PUNCT
Insulin NOUN
levels NOUN
serve VERB
as SCONJ
a DET
rough ADJ
index NOUN
of ADP
the DET
availabilityof PROPN
food NOUN
calories VERB
, PUNCT
so CCONJ
it PRON
's AUX
not PART
at ADV
all ADV
surprising ADJ
that SCONJ
insulin NOUN
stimulates VERB
metabolism NOUN
( PUNCT
4 NUM
, PUNCT
7 NUM
, PUNCT
8) NUM
. PUNCT
  SPACE
Note VERB
that SCONJ
I PRON
did AUX
not PART
saythat VERB
chromium NOUN
picolinate NOUN
increases VERB
metabolism NOUN
. PUNCT
In ADP
summary NOUN
, PUNCT
you PRON
need VERB
to PART
change VERB
your PRON
life NOUN
style NOUN
in ADP
order NOUN
toloose NOUN
weight NOUN
and CCONJ
stay VERB
healthy ADJ
: PUNCT
  SPACE
A. PROPN
Reduce PROPN
dietary ADJ
fat ADJ
consumption NOUN
to ADP
no DET
more ADJ
than SCONJ
20 NUM
% NOUN
of ADP
calories NOUN
. PUNCT
     SPACE
- PUNCT
Eating VERB
fat NOUN
makes VERB
you PRON
fat ADJ
. PUNCT
  SPACE
B. PROPN
Increase PROPN
dietary ADJ
fiber NOUN
     SPACE
- PUNCT
low NOUN
in ADP
calories NOUN
; PUNCT
high ADJ
in ADP
nutrients NOUN
. PUNCT
  SPACE
C. PROPN
Get PROPN
regular ADJ
aerobic ADJ
exercise NOUN
at ADP
least ADJ
3 NUM
times NOUN
a DET
week NOUN
     SPACE
- PUNCT
burn NOUN
calories NOUN
. PUNCT
  SPACE
D. PROPN
Take VERB
chromium NOUN
picolinate NOUN
daily ADJ
     SPACE
- PUNCT
lose NOUN
fat NOUN
; PUNCT
keep VERB
muscleReferences:1 PROPN
. PUNCT
  SPACE
Kaats PROPN
GR PROPN
, PUNCT
Fisher PROPN
JA PROPN
, PUNCT
Blum PROPN
K. PROPN
Abstract PROPN
, PUNCT
American PROPN
Aging PROPN
    SPACE
Association PROPN
, PUNCT
21st ADJ
Annual PROPN
Meeting PROPN
, PUNCT
Denver PROPN
, PUNCT
October PROPN
1991.2 NUM
. PUNCT
  SPACE
Evans PROPN
, PUNCT
GW PROPN
. PUNCT
Int PROPN
J PROPN
Biosoc PROPN
Med PROPN
Res PROPN
1989 NUM
; PUNCT
11 NUM
: SYM
163 NUM
- SYM
180.3 NUM
. PUNCT
  SPACE
Page NOUN
TG PROPN
, PUNCT
Ward PROPN
TL PROPN
, PUNCT
Southern ADJ
LL PROPN
. PUNCT
J PROPN
Animal PROPN
Sci PROPN
69 NUM
, PUNCT
Suppl PROPN
1 NUM
: PUNCT
    SPACE
Abstract PROPN
403 NUM
, PUNCT
1991.4 NUM
. PUNCT
  SPACE
Felig PROPN
P. PROPN
Clin PROPN
Physiol PROPN
1984 NUM
; PUNCT
4 NUM
: SYM
267 NUM
- SYM
273.5 NUM
. PUNCT
  SPACE
Kimball PROPN
SR PROPN
, PUNCT
Jefferson PROPN
LS PROPN
. PUNCT
Diabetes VERB
Metab PROPN
Rev PROPN
4 NUM
: SYM
773 NUM
, PUNCT
1988.6 NUM
. PUNCT
  SPACE
Fukugawa PROPN
NK PROPN
, PUNCT
Minaher PROPN
KL PROPN
, PUNCT
Rowe PROPN
JW PROPN
. PUNCT
et PROPN
al PROPN
. PUNCT
J PROPN
Clin PROPN
Invest PROPN
76 NUM
: PUNCT
    SPACE
2306 NUM
, PUNCT
1985.7 NUM
. PUNCT
  SPACE
Fehlmann PROPN
M PROPN
, PUNCT
Freychet PROPN
P. PROPN
Biol PROPN
Chem PROPN
256 NUM
: PUNCT
7449 NUM
, PUNCT
19818 NUM
. PUNCT
  SPACE
Pittman PROPN
CS PROPN
, PUNCT
Suda PROPN
AK PROPN
, PUNCT
Chambers PROPN
JB PROPN
, PUNCT
Jr. PROPN
, PUNCT
Ray PROPN
GY PROPN
. PUNCT
Metabolism NOUN
    SPACE
28 NUM
: SYM
333 NUM
, PUNCT
1979.9 NUM
. PUNCT
  SPACE
Danforth PROPN
E PROPN
, PUNCT
Jr. PROPN
Am PROPN
J PROPN
Clin PROPN
Nutr PROPN
41 NUM
: SYM
1132 NUM
, PUNCT
1985.10 NUM
. PUNCT
McCarty PROPN
MF PROPN
. PUNCT
Med PROPN
Hypoth PROPN
20 NUM
: SYM
183 NUM
, PUNCT
1986.11 NUM
. PUNCT
Bielinski PROPN
R PROPN
, PUNCT
Schutz PROPN
Y PROPN
, PUNCT
Jequier PROPN
E. PROPN
Am PROPN
J PROPN
Clin PROPN
Nutr PROPN
42:69 NUM
, PUNCT
1985.12 NUM
. PUNCT
Young ADJ
JC PROPN
, PUNCT
Treadway PROPN
JL PROPN
, PUNCT
Balon PROPN
TW PROPN
, PUNCT
Garvas PROPN
HP PROPN
, PUNCT
Ruderman PROPN
NB PROPN
. PUNCT
    SPACE
Metabolism NOUN
35 NUM
: SYM
1048 NUM
, PUNCT
1986.Best NOUN
regards NOUN
, PUNCT
Michael PROPN
Vinczemav@asd470.dseg.ti.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59577From NUM
: PUNCT
res4w@galen.med.Virginia.EDU PROPN
( PUNCT
Robert PROPN
E. PROPN
Schmieg)Subject NUM
: PUNCT
Re ADP
: PUNCT
Deadly ADJ
NyQuil???bitn@kimbark.uchicago.edu NOUN
  SPACE
writes VERB
: PUNCT
> X
My PRON
friend NOUN
insists VERB
that SCONJ
Ny PROPN
- PUNCT
Quil PROPN
can AUX
be AUX
deadly ADJ
if SCONJ
enough ADJ
is AUX
taken VERB
-- PUNCT
he PRON
> X
suggested VERB
something PRON
like SCONJ
20 NUM
- SYM
30 NUM
of ADP
the DET
Night PROPN
- PUNCT
time NOUN
gelcaps NOUN
would AUX
do AUX
someone PRON
> X
in ADV
. PUNCT
  SPACE
Being AUX
a DET
NORMAL PROPN
user NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
:) NUM
, PUNCT
I PRON
checked VERB
the DET
' PUNCT
ingredients NOUN
' PUNCT
and CCONJ
> X
have AUX
a DET
very ADV
hard ADJ
time NOUN
believing VERB
it PRON
. PUNCT
  SPACE
They PRON
are AUX
: PUNCT
> X
> X
250 NUM
g NOUN
acetaminophen PROPN
        SPACE
^^^^^^^^^^ PUNCT
> X
30 NUM
mg PROPN
Pseudoephedrine PROPN
HCl NOUN
> X
10 NUM
mg NOUN
Dextromethorphan PROPN
HBr NOUN
> X
6.25 NUM
mg PROPN
Doxylamine PROPN
Succinate PROPN
> X
( PUNCT
per ADP
softgel PROPN
) PUNCT
> X
> X
Can AUX
someone PRON
settle VERB
our PRON
bet NOUN
( PUNCT
a DET
package NOUN
of ADP
Ny PROPN
- PUNCT
Quil PROPN
of ADP
course NOUN
:) PUNCT
-- PUNCT
what PRON
> X
effect NOUN
would AUX
20 NUM
- SYM
30 NUM
of ADP
these DET
babies NOUN
have?The ADJ
acetaminophen PROPN
is AUX
the DET
agent NOUN
of ADP
concern NOUN
in ADP
overdose NOUN
of ADP
thisOTC PROPN
medication NOUN
. PUNCT
  SPACE
A DET
single ADJ
dose NOUN
of ADP
acetaminophen PROPN
of ADP
10 NUM
grams NOUN
or CCONJ
greatercan PROPN
cause VERB
hepatotoxicity NOUN
, PUNCT
and CCONJ
doses NOUN
of ADP
25 NUM
grams NOUN
or CCONJ
more ADV
arepotentially ADV
fatal ADJ
from ADP
hepatic ADJ
necrosis NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
recallcorrectly ADV
, PUNCT
the DET
metabolism NOUN
of ADP
acetaminophen PROPN
at ADP
high ADJ
dosesinvolves NOUN
N PROPN
- PUNCT
hydroxylation NOUN
to ADP
N PROPN
- PUNCT
acetyl ADJ
- PUNCT
benzoquinoneimine NOUN
, PUNCT
whichis X
a DET
highly ADV
reactive ADJ
intermediate NOUN
, PUNCT
which PRON
then ADV
reacts VERB
withsulfhydryl NOUN
groups NOUN
of ADP
proteins NOUN
and CCONJ
glutathione NOUN
. PUNCT
  SPACE
When ADV
hepaticglutathione VERB
is AUX
used VERB
up ADP
, PUNCT
this DET
intermediate ADJ
then ADV
startsattacking VERB
the DET
hepatic ADJ
proteins NOUN
with ADP
resulting VERB
hepaticnecrosis NOUN
. PUNCT
  SPACE
The DET
insidious ADJ
part NOUN
of ADP
acetaminophen PROPN
toxicity PROPN
is AUX
thedelay ADJ
( PUNCT
2 NUM
- SYM
4 NUM
days NOUN
) PUNCT
between ADP
ingestion NOUN
and CCONJ
clinical ADJ
signs NOUN
of ADP
liverdamage NOUN
. PUNCT
  SPACE
This DET
is AUX
NOT ADV
a DET
nice ADJ
way NOUN
to PART
die VERB
. PUNCT
As SCONJ
to ADP
taking VERB
20 NUM
- SYM
30 NUM
of ADP
these DET
tablets NOUN
, PUNCT
that DET
comes VERB
to ADP
5 NUM
- SYM
7.5 NUM
gramsof NOUN
acetaminophen NOUN
. PUNCT
  SPACE
In ADP
a DET
normal ADJ
adult NOUN
, PUNCT
this DET
would AUX
probablycause VERB
nausea NOUN
, PUNCT
vomiting NOUN
, PUNCT
abdominal ADJ
pain NOUN
, PUNCT
and CCONJ
loss NOUN
of ADP
appetite NOUN
. PUNCT
Bob PROPN
SchmiegNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59578From NUM
: PUNCT
brb@falcon.is PROPN
( PUNCT
Bjorn PROPN
R. PROPN
Bjornsson)Subject NUM
: PUNCT
Re ADP
: PUNCT
earwaxhbloom@moose.uvm.edu PROPN
( PUNCT
* PUNCT
Heather NOUN
* PUNCT
) PUNCT
writes:>You NOUN
can AUX
try VERB
> X
adding VERB
a DET
few ADJ
drops NOUN
of ADP
olive ADJ
oil NOUN
into ADP
the DET
ear NOUN
during ADP
a DET
shower NOUN
to PART
soften VERB
up ADP
> X
the DET
wax NOUN
. PUNCT
  SPACE
Do AUX
this DET
for ADP
a DET
couple NOUN
days NOUN
, PUNCT
then ADV
try VERB
syringing VERB
again ADV
. PUNCT
  SPACE
It PRON
is AUX
also ADV
> X
safe ADJ
to PART
point VERB
your PRON
ear NOUN
up ADP
at ADP
the DET
shower NOUN
head NOUN
, PUNCT
and CCONJ
allow VERB
the DET
water NOUN
to PART
rinse VERB
> X
it PRON
out ADP
. PUNCT
About ADV
six NUM
years NOUN
ago ADV
my PRON
ears NOUN
clogged VERB
up ADP
with ADP
wax NOUN
, PUNCT
probably ADV
as SCONJ
aresult NOUN
of ADP
to PART
much ADJ
headphone NOUN
use NOUN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
the DET
clinic NOUN
that PRON
cleanedthem NOUN
out ADV
used VERB
the DET
following ADJ
procedure:1 NUM
. PUNCT
Inject VERB
olive ADJ
oil NOUN
into ADP
ears.2 PROPN
. PUNCT
Prevent ADJ
leakage NOUN
of ADP
oil NOUN
with ADP
cotton.3 PROPN
. PUNCT
Come VERB
back ADV
in ADP
an DET
hour.4 NOUN
. PUNCT
Rinse ADJ
ears NOUN
with ADP
warm ADJ
vater NOUN
, PUNCT
forcefully ADV
injected VERB
   SPACE
into ADP
ear NOUN
( PUNCT
very ADV
strange ADJ
sensation).5 NOUN
. PUNCT
Done VERB
. PUNCT
They PRON
had AUX
special ADJ
tools NOUN
to PART
do AUX
this DET
, PUNCT
and CCONJ
were AUX
evidently ADV
quitefamiliar ADJ
with ADP
the DET
problem NOUN
: PUNCT
Very ADV
large ADJ
steel NOUN
syringe NOUN
. PUNCT
  SPACE
Specialbowl VERB
with ADP
cutout NOUN
for ADP
ear NOUN
to PART
take VERB
the DET
grime NOUN
coming VERB
out ADP
withoutspillage.>Good PROPN
LuckSeconded PROPN
, PUNCT
Bjorn PROPN
R. PROPN
Bjornssonbrb@falcon.isNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59579From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Legality NOUN
of ADP
placebos?In PROPN
article NOUN
< X
jfhC6BG8y.D2x@netcom.com PROPN
> X
jfh@netcom.com PROPN
( PUNCT
Jack PROPN
Hamilton PROPN
) PUNCT
writes:>>Actually PROPN
, PUNCT
I PRON
do AUX
n't PART
know VERB
know VERB
anyone PRON
who PRON
has AUX
actually ADV
gotten VERB
a DET
" PUNCT
sugar NOUN
pill".[ PROPN
... PUNCT
]>>It PROPN
's PART
more ADV
common ADJ
to PART
prescribe VERB
a DET
drug NOUN
which PRON
is AUX
effective ADJ
for ADP
something PRON
, PUNCT
just ADV
> X
not PART
for ADP
what PRON
you PRON
have AUX
. PUNCT
  SPACE
Antibiotics NOUN
for ADP
viral ADJ
infections NOUN
are AUX
the DET
most ADJ
> X
common ADJ
such ADJ
placebo NOUN
. PUNCT
And CCONJ
presumably ADV
this DET
is AUX
a DET
matter NOUN
of ADP
degree NOUN
; PUNCT
it PRON
must AUX
be AUX
common ADJ
to PART
prescribea PROPN
drug NOUN
that PRON
has AUX
_ PROPN
some DET
_ ADJ
chance NOUN
of ADP
giving VERB
_ PROPN
some DET
_ PROPN
benefit NOUN
, PUNCT
but CCONJ
not PART
a DET
highprobability NOUN
of ADP
it PRON
, PUNCT
and/or CCONJ
not PART
a DET
large ADJ
benefit NOUN
. PUNCT
  SPACE
Right?-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59580From NUM
: PUNCT
sdb@ssr.com X
( PUNCT
Scott PROPN
Ballantyne)Subject NUM
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"In NOUN
article NOUN
< X
93111.145432ICGLN@ASUACAD.BITNET NUM
> X
< X
ICGLN@ASUACAD.BITNET NOUN
> X
writes VERB
: PUNCT
   SPACE
A DET
good ADJ
source NOUN
of ADP
information NOUN
on ADP
Burzynski PROPN
's PART
method NOUN
is AUX
in ADP
* PUNCT
The DET
Cancer PROPN
Industry PROPN
* PUNCT
   SPACE
by ADP
pulitzer PROPN
- PUNCT
prize NOUN
nominee NOUN
Ralph PROPN
Moss PROPN
. PUNCT
Interesting ADJ
. PUNCT
What PRON
book NOUN
got VERB
Moss PROPN
the DET
pulitzer NOUN
nomination NOUN
? PUNCT
None NOUN
of ADP
theflyers NOUN
for ADP
his PRON
books NOUN
mention VERB
this DET
, PUNCT
and CCONJ
none NOUN
of ADP
the DET
Cancer PROPN
ChronicleNewsletters PROPN
that PRON
I PRON
have AUX
mention VERB
this DET
either ADV
. PUNCT
   SPACE
Also ADV
, PUNCT
a DET
non ADJ
- ADJ
profit ADJ
organization NOUN
called VERB
" PUNCT
People NOUN
Against ADP
Cancer NOUN
, PUNCT
" PUNCT
   SPACE
which PRON
was AUX
formed VERB
for ADP
the DET
purpose NOUN
of ADP
allowing VERB
cancer NOUN
patients NOUN
to PART
   SPACE
access NOUN
information NOUN
regarding VERB
cancer NOUN
therapies NOUN
not PART
endorsed VERB
by ADP
the DET
   SPACE
cancer NOUN
industry NOUN
, PUNCT
but CCONJ
which PRON
have AUX
shown VERB
highly ADV
promising ADJ
results NOUN
( PUNCT
all DET
   SPACE
of ADP
which PRON
are AUX
non ADJ
- ADJ
toxic).Moss ADJ
is AUX
People NOUN
Against ADP
Cancer PROPN
's PART
Director PROPN
of ADP
Communications PROPN
. PUNCT
PeopleAgainst PROPN
Cancer NOUN
seems VERB
to PART
offer VERB
pretty ADV
questionable ADJ
information NOUN
, PUNCT
notexactly ADV
the DET
place NOUN
a DET
cancer NOUN
patient NOUN
should AUX
be AUX
advised VERB
to PART
turn VERB
to ADP
. PUNCT
Most(maybe ADV
all DET
) PUNCT
of ADP
the DET
infomation NOUN
in ADP
their PRON
latest ADJ
catalogue NOUN
concerntreatments NOUN
that PRON
have AUX
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
against ADP
cancer NOUN
, PUNCT
andmany NOUN
of ADP
the DET
treatments NOUN
are AUX
quite ADV
dangerous ADJ
as SCONJ
well.sdb---sdb@ssr.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59581From NUM
: PUNCT
sdb@ssr.com X
( PUNCT
Scott PROPN
Ballantyne)Subject NUM
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"In NOUN
article NOUN
< X
jschwimmer.123.735362184@wccnet.wcc.wesleyan.edu PROPN
> X
jschwimmer@wccnet.wcc.wesleyan.edu NOUN
( PUNCT
Josh PROPN
Schwimmer PROPN
) PUNCT
writes VERB
: PUNCT
   SPACE
Any DET
opinions NOUN
on ADP
Burzynski PROPN
's PART
antineoplastons NOUN
or CCONJ
information NOUN
about ADP
the DET
current ADJ
    SPACE
status NOUN
of ADP
his PRON
research NOUN
would AUX
be AUX
appreciated VERB
. PUNCT
Burzynski PROPN
's PART
work NOUN
is AUX
not PART
too ADV
promising ADJ
. PUNCT
None NOUN
of ADP
his PRON
A-1 PROPN
through ADP
A-5antineoplastons NOUN
have AUX
been AUX
shown VERB
to PART
have AUX
antineoplastic ADJ
effects NOUN
againstexperimental ADJ
cancer NOUN
. PUNCT
The DET
NCI PROPN
conducted VERB
tests NOUN
of ADP
A-2 PROPN
and CCONJ
A-5 PROPN
againstleukemia NOUN
in ADP
mice NOUN
, PUNCT
with ADP
the DET
result NOUN
that PRON
doses VERB
high ADJ
enough ADV
to PART
producetoxic VERB
effects NOUN
in ADP
the DET
mice NOUN
were AUX
not PART
effective ADJ
in ADP
inhibiting VERB
the DET
growthof NOUN
the DET
tumor NOUN
or CCONJ
killing VERB
it PRON
. PUNCT
( PUNCT
These DET
were AUX
in ADP
1983 NUM
and CCONJ
1985)Burzynski NUM
claims NOUN
that SCONJ
A-10 PROPN
is AUX
the DET
active ADJ
factor NOUN
common ADJ
to ADP
all DET
of ADP
A-1and NUM
A-5 PROPN
( PUNCT
something PRON
which PRON
he PRON
has AUX
not PART
shown VERB
, PUNCT
A-10 PROPN
has AUX
only ADV
beenextracted VERB
from ADP
A-2 PROPN
. PUNCT
He PRON
also ADV
has AUX
n't PART
shown VERB
that SCONJ
A-1 PROPN
through ADP
A-5 PROPN
are AUX
actuallydistinct ADJ
substances NOUN
) PUNCT
. PUNCT
The DET
NCI PROPN
conducted VERB
a DET
series NOUN
of ADP
tests NOUN
using VERB
A-10against PROPN
a DET
standard ADJ
panel NOUN
of ADP
tumors NOUN
that PRON
included VERB
different ADJ
cell NOUN
linesfrom NOUN
tumors NOUN
in ADP
the DET
following VERB
classes NOUN
: PUNCT
leukemia NOUN
, PUNCT
non ADJ
- ADJ
small ADJ
- PUNCT
cell NOUN
andsmall NOUN
- PUNCT
cell NOUN
lung NOUN
cancer NOUN
, PUNCT
colon NOUN
cancer NOUN
, PUNCT
cancer NOUN
of ADP
the DET
central ADJ
nervoussystem PROPN
, PUNCT
melanoma PROPN
, PUNCT
ovarian ADJ
cancer NOUN
and CCONJ
renal ADJ
cancer NOUN
. PUNCT
A-10 PROPN
exhibitedneither NOUN
growth NOUN
inhibition NOUN
nor CCONJ
cytotoxicity NOUN
at ADP
the DET
dose PROPN
levels NOUN
tested VERB
. PUNCT
It PRON
is AUX
necessary ADJ
to PART
process VERB
A-10 PROPN
since SCONJ
it PRON
is AUX
not PART
soluble ADJ
( PUNCT
Burzynski'stheory NOUN
requires VERB
soluble ADJ
agents NOUN
) PUNCT
, PUNCT
but CCONJ
this DET
basically ADV
hydrolizes VERB
it PRON
toPAG VERB
( PUNCT
which PRON
he PRON
calls VERB
AS ADP
2.5 NUM
) PUNCT
. PUNCT
PAG PROPN
is AUX
not PART
an DET
information NOUN
carryingpeptide NOUN
, PUNCT
something PRON
which PRON
Byrzynski PROPN
claims VERB
is AUX
necessary ADJ
forantineoplastic ADJ
activity NOUN
. PUNCT
AS ADP
2.1 NUM
( PUNCT
also ADV
derived VERB
from ADP
A-10 PROPN
) PUNCT
is AUX
a DET
4:1mixture NUM
of ADP
PA PROPN
and CCONJ
PAG PROPN
. PUNCT
PA PROPN
( PUNCT
also ADV
not PART
a DET
peptide NOUN
) PUNCT
can AUX
be AUX
purchased VERB
at ADP
achemical ADJ
supply NOUN
houses NOUN
for ADP
about ADV
$ SYM
0.09 NUM
a DET
gram NOUN
. PUNCT
A-10 PROPN
is AUX
chemicallyextremely ADV
similar ADJ
to PART
glutithamide VERB
and CCONJ
thalidomide ADV
, PUNCT
both DET
of ADP
which PRON
arehabit VERB
forming VERB
and CCONJ
can AUX
cause VERB
peripheral ADJ
neuropathy NOUN
. PUNCT
The DET
nasty ADJ
effectsof NOUN
thalidomide ADV
are AUX
widely ADV
known VERB
. PUNCT
In ADP
spite NOUN
of ADP
this DET
similarity NOUN
, PUNCT
A-10does PROPN
not PART
appear VERB
to PART
have AUX
been AUX
tested VERB
for ADP
it PRON
's AUX
potential ADJ
to ADP
induceteratogenicity NOUN
or CCONJ
peripheral ADJ
neuropathy NOUN
. PUNCT
Many ADJ
of ADP
Burzynski PROPN
's PART
statements NOUN
about ADP
the DET
origin NOUN
of ADP
his PRON
theory NOUN
, PUNCT
earlyresearch NOUN
, PUNCT
past ADJ
and CCONJ
present ADJ
support NOUN
by ADP
others NOUN
for ADP
his PRON
work NOUN
have AUX
beenshown VERB
to PART
be AUX
untrue.sdb---sdb@ssr.comNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59582From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Iridology NOUN
- PUNCT
Any DET
credence NOUN
to ADP
it???In NUM
article NOUN
< X
9304261811.AA07821@DPW.COM NOUN
> X
jprice@dpw.com X
( PUNCT
Janice PROPN
Price PROPN
) PUNCT
writes:>>I NOUN
saw VERB
a DET
printed VERB
up ADP
flyer NOUN
that PRON
stated VERB
the DET
person NOUN
was AUX
a>"licensed VERB
herbologist NOUN
and CCONJ
iridologist">What DET
are AUX
your PRON
opinions?>How NOUN
much ADJ
can AUX
you PRON
tell VERB
about ADP
a DET
person NOUN
's PART
health NOUN
by ADP
looking VERB
into ADP
their PRON
eyes?Its NOUN
bogus ADJ
. PUNCT
  SPACE
See VERB
the DET
sci.skeptic ADJ
FAQ PROPN
( PUNCT
I PRON
edit VERB
it).You NOUN
can AUX
diagnose VERB
some DET
things NOUN
by ADP
looking VERB
at ADP
the DET
eyes NOUN
. PUNCT
  SPACE
Glaucoma PROPN
is AUX
theClassic PROPN
Example PROPN
, PUNCT
but CCONJ
there PRON
are AUX
probably ADV
others NOUN
. PUNCT
Iridology NOUN
maps VERB
parts NOUN
of ADP
the DET
body NOUN
onto ADP
the DET
irises NOUN
of ADP
the DET
eyes NOUN
. PUNCT
  SPACE
Bylooking VERB
at ADP
the DET
patterns NOUN
, PUNCT
striations NOUN
and CCONJ
occasional ADJ
blobs NOUN
in ADP
the DET
irisesyou NOUN
are AUX
supposed VERB
to PART
be AUX
able ADJ
to PART
diagnose VERB
illnesses NOUN
all ADV
over ADP
the DET
body NOUN
. PUNCT
The DET
two NUM
questions NOUN
to PART
ask VERB
any DET
alternative ADJ
therapist NOUN
are:1 NOUN
: PUNCT
How ADV
does AUX
it PRON
work?2 VERB
: PUNCT
What PRON
evidence NOUN
is AUX
there?The ADJ
answer NOUN
to PART
question NOUN
1 NUM
takes VERB
a DET
little ADJ
knowledge NOUN
of ADP
medicine NOUN
toevaluate NOUN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
know VERB
about ADP
iridology NOUN
, PUNCT
but CCONJ
I PRON
've AUX
read VERB
a DET
book NOUN
onreflexology NOUN
, PUNCT
which PRON
is AUX
a DET
remarkably ADV
similar ADJ
notion NOUN
except SCONJ
that SCONJ
theorgans NOUN
of ADP
the DET
body NOUN
are AUX
mapped VERB
onto ADP
the DET
soles NOUN
of ADP
the DET
feet NOUN
. PUNCT
  SPACE
There PRON
aresupposed VERB
to PART
be AUX
channels NOUN
running VERB
down ADP
the DET
body NOUN
carrying VERB
information NOUN
orenergy NOUN
of ADP
some DET
sort NOUN
. PUNCT
  SPACE
Anatomists NOUN
have AUX
found VERB
no DET
such ADJ
structures.(Always NOUN
beware VERB
the DET
words NOUN
" PUNCT
channel NOUN
" PUNCT
and CCONJ
" PUNCT
energy NOUN
" PUNCT
in ADP
any DET
spiel PROPN
put VERB
outby PROPN
an DET
alternative NOUN
practitioner.)The ADP
answer NOUN
to PART
question NOUN
2 NUM
is AUX
rather ADV
simpler ADJ
. PUNCT
  SPACE
If SCONJ
all DET
they PRON
have AUX
isanecdotal ADJ
evidence NOUN
then ADV
forget VERB
it PRON
. PUNCT
  SPACE
Ask VERB
for ADP
referreed NOUN
papers NOUN
inmainstream PROPN
medical ADJ
journals NOUN
. PUNCT
  SPACE
Ignore VERB
any DET
bull NOUN
about ADP
the DET
conspiracy NOUN
ofrich NOUN
doctors NOUN
suppressing VERB
alternative ADJ
practitioners NOUN
. PUNCT
  SPACE
Studies NOUN
are AUX
doneand NOUN
papers NOUN
are AUX
published VERB
. PUNCT
  SPACE
Some DET
of ADP
them PRON
are AUX
even ADV
positive ADJ
. PUNCT
The DET
word NOUN
" PUNCT
licensed VERB
" PUNCT
in ADP
the DET
flyer NOUN
is AUX
an DET
interesting ADJ
one NOUN
. PUNCT
  SPACE
Licensed VERB
bywhom NOUN
? PUNCT
  SPACE
For ADP
what PRON
? PUNCT
  SPACE
It PRON
is AUX
quite ADV
possible ADJ
that SCONJ
the DET
herbology NOUN
is AUX
real ADJ
andrequires NOUN
a DET
license NOUN
: PUNCT
you PRON
can AUX
kill VERB
someone PRON
by ADP
giving VERB
them PRON
the DET
wrongplants NOUN
to PART
eat VERB
, PUNCT
and CCONJ
many ADJ
plants NOUN
contain VERB
very ADV
powerful ADJ
drugs NOUN
( PUNCT
Foxgloveand PROPN
Willow PROPN
spring NOUN
to ADP
mind NOUN
) PUNCT
. PUNCT
  SPACE
It PRON
is AUX
not PART
clear ADJ
whether SCONJ
the DET
licenseextends NOUN
to ADP
the DET
iridology NOUN
, PUNCT
and CCONJ
I PRON
suspect VERB
that SCONJ
if SCONJ
you PRON
ask VERB
you PRON
will AUX
betold VERB
that SCONJ
it PRON
means VERB
" PUNCT
( PUNCT
Licensed VERB
herbologist NOUN
) PUNCT
and CCONJ
iridologist" NOUN
. PUNCT
BTW ADV
, PUNCT
the DET
usual ADJ
term NOUN
is AUX
" PUNCT
herbalist ADJ
" PUNCT
. PUNCT
  SPACE
Why ADV
use VERB
a DET
different ADJ
word?-- NOUN
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59583From NUM
: PUNCT
paj@uk.co.gec-mrc PROPN
( PUNCT
Paul PROPN
Johnson)Subject PROPN
: PUNCT
Re ADP
: PUNCT
cats NOUN
and CCONJ
pregnancy NOUN
> X
Hello,>I PROPN
heard VERB
that SCONJ
a DET
certain ADJ
disease NOUN
( PUNCT
toxoplasmosys PROPN
? PUNCT
) PUNCT
is AUX
transmitted VERB
by ADP
cats NOUN
which PRON
> X
can AUX
harm VERB
the DET
unborn ADJ
fetus NOUN
. PUNCT
Does AUX
anybody PRON
know VERB
about ADP
it PRON
? PUNCT
Is AUX
it PRON
a DET
problem NOUN
to PART
> X
have AUX
a DET
cat NOUN
in ADP
the DET
same ADJ
apartment?See INTJ
the DET
rec.pets.cats NOUN
FAQ PROPN
or CCONJ
any DET
doctor NOUN
or CCONJ
vet NOUN
for ADP
more ADJ
information NOUN
. PUNCT
I PRON
am AUX
not PART
any DET
of ADP
the DET
above ADJ
, PUNCT
but CCONJ
we PRON
do AUX
have AUX
a DET
couple NOUN
of ADP
cats NOUN
. PUNCT
It PRON
is AUX
transmitted VERB
through ADP
the DET
fecal ADJ
matter NOUN
, PUNCT
so SCONJ
a DET
pregnant ADJ
woman NOUN
shouldavoid NOUN
cleaning VERB
the DET
cat NOUN
tray PROPN
and CCONJ
you PRON
should AUX
both DET
wash VERB
hands NOUN
beforepreparing VERB
or CCONJ
eating VERB
meals NOUN
. PUNCT
  SPACE
The DET
latter ADJ
is AUX
sound ADJ
advice NOUN
at ADP
any DET
time NOUN
ofcourse ADJ
. PUNCT
Apart ADV
from ADP
that DET
, PUNCT
its PRON
no DET
great ADJ
problem NOUN
. PUNCT
  SPACE
You PRON
certainly ADV
do AUX
not PART
need VERB
toget ADV
rid VERB
of ADP
your PRON
cats NOUN
. PUNCT
Paul.-- VERB
Paul PROPN
Johnson PROPN
( PUNCT
paj@gec-mrc.co.uk PROPN
) PUNCT
. PUNCT
	     SPACE
| PROPN
Tel PROPN
: PUNCT
+44 PROPN
245 NUM
73331 NUM
ext NOUN
3245 NUM
- PUNCT
-------------------------------------------+----------------------------------These ADJ
ideas NOUN
and CCONJ
others NOUN
like SCONJ
them PRON
can AUX
be AUX
had VERB
| PROPN
GEC PROPN
- PUNCT
Marconi PROPN
Research PROPN
is AUX
notfor NOUN
$ SYM
0.02 NUM
each DET
from ADP
any DET
reputable ADJ
idealist NOUN
. PUNCT
| ADV
responsible ADJ
for ADP
my PRON
opinionsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59584From NUM
: PUNCT
aldridge@netcom.com X
( PUNCT
Jacquelin PROPN
Aldridge)Subject NUM
: PUNCT
Re ADP
: PUNCT
thyroidal ADJ
deficiencyabruno@adobe NOUN
( PUNCT
Andrea PROPN
Bruno PROPN
) PUNCT
writes:>In X
article NOUN
< X
19930430140738SFB2763@MVS.draper.com X
> X
SFB2763@MVS.draper.com SYM
  SPACE
> X
( PUNCT
Eileen PROPN
Bauer PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Thyroxin NOUN
controls VERB
energy NOUN
production NOUN
which PRON
explains VERB
sleepiness ADJ
, PUNCT
coldness NOUN
, PUNCT
> X
> X
and CCONJ
weight NOUN
gain NOUN
. PUNCT
There PRON
is AUX
also ADV
water NOUN
retention NOUN
( PUNCT
possibly ADV
around ADP
heart NOUN
) PUNCT
, PUNCT
> X
> X
changes NOUN
in ADP
vision NOUN
, PUNCT
and CCONJ
coarser ADJ
hair NOUN
and CCONJ
skin NOUN
among ADP
other ADJ
things.>Is PUNCT
there PRON
any DET
relation NOUN
between ADP
thyroid NOUN
deficiency NOUN
and CCONJ
depression NOUN
? PUNCT
There PRON
can AUX
be AUX
. PUNCT
But CCONJ
depression NOUN
is AUX
not PART
diagnositic ADJ
of ADP
thyroid NOUN
deficiency NOUN
. PUNCT
Thyroid NOUN
blood NOUN
tests NOUN
are AUX
easy ADJ
, PUNCT
cheap ADJ
, PUNCT
and CCONJ
effective ADJ
in ADP
diagnosing VERB
thyroiddeficiencies.-Jackie PROPN
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59585From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
1rm29k$i7t@hsdndev.harvard.edu PROPN
> X
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes::In PROPN
article NOUN
< X
enea1-270493135255@enea.apple.com X
> X
: PUNCT
enea1@applelink.apple.com X
( PUNCT
Horace PROPN
Enea PROPN
) PUNCT
writes::>Can VERB
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
disease:>and VERB
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis PROPN
vs ADP
chronic:>hepatitis.::I PROPN
do AUX
n't PART
think VERB
there PRON
is AUX
a DET
general ADJ
distinction NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
there PRON
are AUX
: PUNCT
two NUM
classes NOUN
of ADP
chronic ADJ
hepatitis NOUN
: PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
and CCONJ
chronic PROPN
: PUNCT
persistent PROPN
hepatitis PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
think VERB
of ADP
any DET
other ADJ
disease NOUN
where ADV
the DET
: PUNCT
term NOUN
persistent NOUN
is AUX
used VERB
with ADP
or CCONJ
in ADP
preference NOUN
to ADP
chronic.::Much PROPN
as SCONJ
these DET
two NUM
terms NOUN
" PUNCT
chronic ADJ
active ADJ
" PUNCT
and CCONJ
" PUNCT
chronic ADJ
persistent":sound PROPN
fuzzy NOUN
, PUNCT
the DET
actual ADJ
distinction NOUN
between ADP
the DET
two NUM
conditions NOUN
: PUNCT
is AUX
often ADV
fairly ADV
fuzzy ADJ
as ADV
well ADV
. PUNCT
I PRON
beg VERB
to PART
differ VERB
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
active ADJ
* PUNCT
hepatitis PROPN
implies VERB
that SCONJ
the DET
diseaseremains NOUN
active ADJ
, PUNCT
and CCONJ
generally ADV
leads VERB
to ADP
liver NOUN
failure NOUN
. PUNCT
  SPACE
At ADP
the DET
veryminimum ADJ
, PUNCT
the DET
patient NOUN
has AUX
persistently ADV
elevated VERB
liver NOUN
enzymes NOUN
( PUNCT
what PRON
somecall VERB
" PUNCT
transaminitis NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
persistant ADJ
* PUNCT
hepatitis PROPN
simply ADV
means VERB
thatthe NOUN
patient NOUN
has AUX
HbSag PROPN
in ADP
his PRON
/ SYM
her PRON
blood NOUN
and CCONJ
can AUX
transmit VERB
the DET
infection NOUN
, PUNCT
butshows VERB
no DET
evidence NOUN
of ADP
progressive ADJ
disease NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
had AUX
to PART
choose VERB
, PUNCT
I PRON
'd AUX
muchrather ADV
have AUX
the DET
persistant ADJ
type.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59586From NUM
: PUNCT
kxgst1@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?Len PROPN
Howard PROPN
( PUNCT
tas@pegasus.com PROPN
) PUNCT
wrote VERB
: PUNCT
: PUNCT
Well INTJ
, PUNCT
now ADV
, PUNCT
Doc PROPN
, PUNCT
I PRON
sure ADV
would AUX
not PART
want VERB
to PART
bet VERB
my PRON
life NOUN
on ADP
those DET
little ADJ
: PUNCT
critters NOUN
not PART
being AUX
able ADJ
to PART
get AUX
thru ADP
one NUM
layer NOUN
of ADP
sweat NOUN
- PUNCT
soaked VERB
cotton NOUN
: PUNCT
on ADP
their PRON
way NOUN
to PART
do AUX
their PRON
programmed VERB
task NOUN
. PUNCT
  SPACE
Infrequent PROPN
, PUNCT
yes INTJ
, PUNCT
unlikely ADJ
, PUNCT
: PUNCT
yes INTJ
, PUNCT
but CCONJ
impossible ADJ
? PUNCT
  SPACE
I PRON
learned VERB
a DET
long ADJ
time NOUN
ago ADV
never ADV
to PART
say VERB
never ADV
in ADP
: PUNCT
medicine NOUN
   SPACE
< X
g NOUN
> X
                        SPACE
Len PROPN
Howard PROPN
MD PROPN
, PUNCT
FACOGYes PROPN
, PUNCT
I PRON
suppose VERB
a DET
single ADJ
layer NOUN
of ADP
wet ADJ
cotton NOUN
would AUX
be AUX
feasible ADJ
. PUNCT
  SPACE
After ADV
all ADV
, PUNCT
we PRON
certainly ADV
do AUX
not PART
make VERB
condoms NOUN
out SCONJ
of ADP
cotton NOUN
! PUNCT
] PUNCT
--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PUNCT
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59587From NUM
: PUNCT
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith)Subject PROPN
: PUNCT
Nose NOUN
PickingI PROPN
have AUX
two NUM
quations NOUN
to ADP
ask:1 NOUN
) PUNCT
  SPACE
Does AUX
it PRON
cause VERB
the DET
body NOUN
any DET
harm NOUN
if SCONJ
one NOUN
picks VERB
one PRON
's PART
nose NOUN
? PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
might AUX
it PRON
lead VERB
to ADP
a DET
loss NOUN
of ADP
ability NOUN
to ADP
smell?2 PROPN
) PUNCT
  SPACE
Is AUX
it PRON
harmful ADJ
for ADP
one NUM
to PART
eat VERB
one PRON
's PART
nose NOUN
pickings?StephenNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59588From NUM
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
Brian PROPN
Tao)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
, PUNCT
Harry PROPN
Matthews PROPN
writes VERB
... PUNCT
> X
> X
I PRON
've AUX
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
> X
else ADV
is AUX
going VERB
on ADP
? PUNCT
    SPACE
Do AUX
you PRON
swim VERB
nude ADJ
in ADP
a DET
public ADJ
swimming NOUN
pool NOUN
? PUNCT
  SPACE
:) PUNCT
  SPACE
I PRON
doubt VERB
sperm NOUN
canpenetrate PROPN
swimsuit NOUN
material NOUN
, PUNCT
assuming VERB
they PRON
are AUX
n't PART
immediately ADV
dispersedby ADJ
water NOUN
currents.-- PROPN
Brian PROPN
Tao PROPN
: PUNCT
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
r PROPN
- PUNCT
Node PROPN
BBS PROPN
, PUNCT
416 NUM
- SYM
249 NUM
- PUNCT
5366 NUM
, PUNCT
FREE ADJ
! PUNCT
) PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
90taobri@wave.scar.utoronto.ca NUM
( PUNCT
University PROPN
of ADP
Toronto)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59589From NUM
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
Brian PROPN
Tao)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
writes VERB
... PUNCT
> X
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
so ADV
- PUNCT
called VERB
" PUNCT
paranormal ADJ
" PUNCT
stuff NOUN
; PUNCT
but CCONJ
as ADV
far ADV
as SCONJ
I PRON
'm AUX
concerned VERB
, PUNCT
it PRON
is AUX
just ADV
> X
as ADV
likely ADV
as SCONJ
the DET
existence NOUN
of ADP
, PUNCT
for ADP
instance NOUN
, PUNCT
a DET
god NOUN
, PUNCT
which PRON
seems VERB
to PART
be AUX
> X
quite ADV
accepted VERB
in ADP
our PRON
societies NOUN
- PUNCT
without ADP
any DET
scientific ADJ
basis NOUN
. PUNCT
    SPACE
But CCONJ
no DET
one NOUN
( PUNCT
or CCONJ
at ADP
least ADJ
, PUNCT
not PART
many ADJ
people NOUN
) PUNCT
are AUX
trying VERB
to PART
pass VERB
off ADP
Godas PROPN
a DET
scientific ADJ
fact NOUN
. PUNCT
  SPACE
Not PART
so ADV
with ADP
Kirlian ADJ
photography NOUN
. PUNCT
  SPACE
I PRON
'll AUX
admit VERB
thatit PROPN
is AUX
possible ADJ
that SCONJ
some DET
superior ADJ
intelligence NOUN
exists VERB
elsewhere ADV
, PUNCT
and CCONJ
ifpeople NOUN
want VERB
to PART
label VERB
that DET
intelligence NOUN
" PUNCT
God PROPN
" PUNCT
, PUNCT
I PRON
'm AUX
not PART
going VERB
to ADP
stopthem PROPN
. PUNCT
  SPACE
Anyway INTJ
, PUNCT
let VERB
's PRON
_ VERB
not PART
_ ADV
turn VERB
this DET
into ADP
a DET
theological ADJ
debate NOUN
. PUNCT
  SPACE
;-) PUNCT
> X
I PRON
am AUX
convinced ADJ
that SCONJ
it PRON
is AUX
a DET
serious ADJ
mistake NOUN
to PART
close VERB
your PRON
mind NOUN
to ADP
> X
something PRON
, PUNCT
ANYTHING NOUN
, PUNCT
simply ADV
because SCONJ
it PRON
does AUX
n't PART
fit VERB
your PRON
current ADJ
frame NOUN
> X
of ADP
reference NOUN
. PUNCT
History NOUN
shows VERB
that SCONJ
many ADJ
great ADJ
people NOUN
, PUNCT
great ADJ
scientists NOUN
, PUNCT
> X
were AUX
people NOUN
who PRON
kept VERB
an DET
open ADJ
mind NOUN
- PUNCT
and CCONJ
were AUX
ridiculed VERB
by ADP
sceptics NOUN
. PUNCT
    SPACE
Read VERB
alt.fan.robert.mcelwaine PROPN
sometime ADV
. PUNCT
  SPACE
I PRON
've AUX
never ADV
been AUX
soclosed VERB
- PUNCT
minded ADJ
before ADP
subscribing VERB
to ADP
that DET
group NOUN
. PUNCT
  SPACE
: PUNCT
) PUNCT
-- PUNCT
Brian PROPN
Tao PROPN
: PUNCT
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
r PROPN
- PUNCT
Node PROPN
BBS PROPN
, PUNCT
416 NUM
- SYM
249 NUM
- PUNCT
5366 NUM
, PUNCT
FREE ADJ
! PUNCT
) PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
90taobri@wave.scar.utoronto.ca NUM
( PUNCT
University PROPN
of ADP
Toronto)Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59590From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
centi- PROPN
and CCONJ
milli- ADJ
pedesI PROPN
remember VERB
as SCONJ
a DET
kid NOUN
visiting VERB
my PRON
relatives NOUN
on ADP
Kauai PROPN
, PUNCT
and CCONJ
one NUM
of ADP
the DET
thingsthat NOUN
really ADV
frightened VERB
me PRON
was AUX
centipedes NOUN
. PUNCT
  SPACE
I PRON
'd AUX
been AUX
told VERB
they PRON
were AUX
poisonousand VERB
infrequently ADV
one PRON
would AUX
pop VERB
up ADP
and CCONJ
scare VERB
the DET
heck NOUN
out SCONJ
of ADP
me PRON
. PUNCT
  SPACE
Onceone PROPN
came VERB
out SCONJ
of ADP
the DET
vacuum NOUN
cleaner NOUN
and CCONJ
it PRON
seemed VERB
like SCONJ
it PRON
was AUX
at ADP
least ADJ
a DET
footlong ADJ
and CCONJ
moving VERB
at ADP
35 NUM
miles NOUN
an DET
hour!Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59591From NUM
: PUNCT
texx@ossi.com X
( PUNCT
" PUNCT
Texx")Subject PUNCT
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosmenon@boulder NOUN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon PROPN
) PUNCT
writes:>aezpete@deja-vu.aiss.uiuc.edu NOUN
( PUNCT
) PUNCT
writes:>>>The PUNCT
penile NOUN
cancer NOUN
thing NOUN
has AUX
been AUX
* PUNCT
completely ADV
* PUNCT
debunked VERB
... PUNCT
she PRON
must AUX
be>>>going VERB
to ADP
school NOUN
on ADP
a DET
South PROPN
Pacific PROPN
island NOUN
. PUNCT
Tell VERB
her PRON
to PART
check VERB
the DET
Journal>>>or ADJ
Urology PROPN
for ADP
circumcision NOUN
articles NOUN
. PUNCT
I PRON
remember VERB
at ADP
least ADJ
1 NUM
on ADP
an DET
old>>>Jewish ADJ
man NOUN
( PUNCT
cut VERB
at ADP
birth NOUN
) PUNCT
who PRON
developed VERB
penile NOUN
cancer NOUN
.... PUNCT
I PRON
mean VERB
, PUNCT
if SCONJ
the>>>cancer NOUN
risk NOUN
was AUX
that ADV
great ADJ
, PUNCT
the DET
Europe PROPN
who PRON
have AUX
been AUX
circumcising VERB
like>>>crazy PROPN
, PUNCT
too ADV
. PUNCT
Teaching VERB
a DET
boy NOUN
how ADV
to PART
keep VERB
his PRON
cockhead NOUN
clean ADJ
is AUX
the DET
issue NOUN
: PUNCT
a>>>little VERB
proper ADJ
hygiene NOUN
goes VERB
a DET
long ADJ
way NOUN
- PUNCT
Americans PROPN
are AUX
just ADV
too ADV
hung ADJ
up ADP
on>>>the PUNCT
penis NOUN
to PART
consider VERB
cleaning VERB
it PRON
: PUNCT
that DET
's AUX
just ADV
way ADV
too ADV
much ADJ
like>>>mastubation NOUN
. PUNCT
So ADV
you PRON
have AUX
surgical ADJ
intervention NOUN
that PRON
is AUX
basically>>>unnecessary.>>Peter PROPN
Schlumpf>>University PROPN
of ADP
Illinois PROPN
at ADP
Urbana PROPN
- PUNCT
ChampaignAs PROPN
I PRON
recall VERB
, PUNCT
it PRON
is AUX
a DET
statistical ADJ
anomaly NOUN
because SCONJ
of ADP
the DET
sample NOUN
involved VERB
in ADP
the DET
studies NOUN
. PUNCT
I PRON
am AUX
certain ADJ
that SCONJ
if SCONJ
it PRON
were AUX
true ADJ
the DET
Europeans PROPN
would AUX
be AUX
cutting VERB
kids NOUN
right INTJ
& CCONJ
left.>First PROPN
off ADP
, PUNCT
use VERB
some DET
decent ADJ
terms NOUN
if SCONJ
ya PRON
do AUX
n't PART
mind VERB
. PUNCT
  SPACE
This DET
is AUX
sci.med VERB
, PUNCT
not PART
> X
alt.sex.>Secondly ADV
, PUNCT
how ADV
absolutely ADV
bogus ADJ
to PART
assume VERB
that SCONJ
" PUNCT
American PROPN
's PART
are AUX
just ADV
too ADV
hung ADJ
> X
up ADV
on ADP
the DET
penis PROPN
.... PUNCT
blah INTJ
, PUNCT
blah INTJ
" PUNCT
. PUNCT
  SPACE
I PRON
think VERB
most ADJ
American PROPN
's PART
do AUX
n't PART
care VERB
about ADP
> X
anything PRON
so ADV
comlicated VERB
as SCONJ
that DET
. PUNCT
  SPACE
They PRON
just ADV
think VERB
it PRON
" PUNCT
looks VERB
nicer ADV
" PUNCT
. PUNCT
  SPACE
Ask VERB
> X
a DET
few ADJ
of ADP
them PRON
and CCONJ
see VERB
what PRON
response NOUN
you PRON
get VERB
. PUNCT
  SPACE
Others NOUN
still ADV
opt VERB
for ADP
> X
circumcision NOUN
due ADP
to ADP
religious ADJ
traditions NOUN
and CCONJ
beliefs NOUN
. PUNCT
  SPACE
Some DET
think VERB
it PRON
is AUX
> X
easier ADJ
to PART
clean VERB
. PUNCT
  SPACE
Still ADV
others NOUN
do AUX
it PRON
because SCONJ
" PUNCT
Daddy NOUN
was" ADV
. PUNCT
I PRON
think VERB
alot NOUN
do AUX
it PRON
blindly ADV
because SCONJ
" PUNCT
Dad PROPN
" PUNCT
had AUX
it PRON
done VERB
. PUNCT
  SPACE
But CCONJ
there PRON
are AUX
manywho ADJ
get VERB
bamboozled VERB
into ADP
it PRON
with ADP
the DET
bogus ADJ
cancer NOUN
thing NOUN
. PUNCT
  SPACE
Awhile ADV
back ADV
somequack PROPN
told VERB
a DET
friend NOUN
of ADP
mine PRON
that SCONJ
it PRON
would AUX
help VERB
prevent VERB
AIDS.Yeah PROPN
... PUNCT
Right INTJ
! PUNCT
( PUNCT
Sarchasm)>Dont INTJ
' PUNCT
be AUX
so ADV
naive ADJ
as SCONJ
to PART
think VERB
American PROPN
's PART
are AUX
afraid ADJ
of ADP
sexuality NOUN
. PUNCT
Oh INTJ
YEAH INTJ
? PUNCT
Scene NOUN
: PUNCT
Navy PROPN
boot NOUN
campDI PROPN
: PUNCT
		 SPACE
" PUNCT
Son PROPN
, PUNCT
you PRON
smel VERB
awful ADJ
! PUNCT
Do AUX
nt PART
you PRON
ever ADV
clean VERB
that SCONJ
thing?"Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
No DET
Sir PROPN
! PUNCT
" PUNCT
DI NOUN
: PUNCT
		 SPACE
" PUNCT
Why ADV
the DET
hell NOUN
NOT!"Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Your PRON
not PART
sposed VERB
to PART
touch VERB
down ADP
there?"DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
? PUNCT
" PUNCT
Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Cause NOUN
that DET
s VERB
the DET
eye NOUN
of ADP
god PROPN
down ADV
there ADV
, PUNCT
an DET
' PUNCT
your PRON
not PART
s'posed VERB
to PART
touch VERB
it PRON
... PUNCT
"This PUNCT
did AUX
not PART
happen VERB
40 NUM
years NOUN
ago ADV
, PUNCT
it PRON
happened VERB
2 NUM
years NOUN
ago ADV
. PUNCT
I PRON
think VERB
Americans PROPN
are AUX
QUITE ADV
hung VERB
up ADP
about ADP
sex NOUN
and CCONJ
the DET
involved VERB
plumbing!Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59592From NUM
: PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson)Subject NUM
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification PROPN
? PUNCT
> X
Not PART
everything PRON
that PRON
goes VERB
in ADV
comes VERB
out ADP
, PUNCT
and CCONJ
personaly NOUN
I PRON
do AUX
n't PART
mind VERB
giving VERB
> X
my PRON
body NOUN
a DET
hand NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
> X
> X
Just ADV
my PRON
experience NOUN
, PUNCT
> X
> X
George PROPN
PaapI've PROPN
got VERB
a DET
very ADV
nice ADJ
collection NOUN
of ADP
historical ADJ
books NOUN
on ADP
medical ADJ
quackery NOUN
, PUNCT
and CCONJ
on ADP
the DET
topic NOUN
of ADP
massage NOUN
this DET
is AUX
a DET
recurring VERB
theme NOUN
. PUNCT
  SPACE
Ordinary ADJ
massageis NOUN
intended VERB
to PART
make VERB
a DET
person NOUN
feel VERB
better ADJ
, PUNCT
especially ADV
if SCONJ
they PRON
have AUX
muscularor NOUN
joint ADJ
problems NOUN
. PUNCT
  SPACE
But CCONJ
-- PUNCT
like SCONJ
chiropracty NOUN
-- PUNCT
there PRON
are AUX
some DET
practitionerswho PROPN
take VERB
the DET
technique NOUN
to ADP
a DET
far ADV
extreme ADJ
, PUNCT
invoking VERB
what PRON
seems VERB
to ADP
me PRON
to PART
bequack VERB
science NOUN
to PART
justify VERB
their PRON
technique NOUN
. PUNCT
In ADP
the DET
case NOUN
of ADP
massage NOUN
, PUNCT
there PRON
is AUX
a DET
technique NOUN
called VERB
" PUNCT
deep ADJ
abdominal ADJ
massage"in PUNCT
which PRON
the DET
masseur NOUN
is AUX
literally ADV
attempting VERB
to PART
massage VERB
the DET
intestines!The ADJ
notion NOUN
is AUX
that SCONJ
undigested ADJ
food NOUN
adheres NOUN
to ADP
the DET
inner ADJ
surface NOUN
of ADP
theintestines NOUN
and CCONJ
putrifies NOUN
, PUNCT
releasing VERB
poisons NOUN
which PRON
cause VERB
various ADJ
diseasesyndromes NOUN
. PUNCT
  SPACE
By ADP
this DET
vigorous ADJ
and CCONJ
painful ADJ
procedure NOUN
, PUNCT
it PRON
is AUX
alleged VERB
thatthese ADJ
deposits NOUN
can AUX
be AUX
loosened VERB
up ADP
and CCONJ
passed VERB
out ADP
. PUNCT
I PRON
just ADV
ca AUX
n't PART
believe VERB
this DET
idea NOUN
has AUX
any DET
truth NOUN
behind ADP
it PRON
! PUNCT
  SPACE
The DET
human ADJ
intestineis NOUN
not PART
a DET
New PROPN
York PROPN
City PROPN
sewer NOUN
pipe NOUN
! PUNCT
  SPACE
And CCONJ
even ADV
if SCONJ
it PRON
were AUX
, PUNCT
you PRON
eat VERB
half ADV
ofa ADJ
small ADJ
box NOUN
of ADP
Triscuits PROPN
, PUNCT
and CCONJ
there PRON
ai VERB
n't PART
gon VERB
na PART
be AUX
nothin' NOUN
sticking VERB
to ADP
theinner NOUN
surface NOUN
of ADP
your PRON
intestine NOUN
  SPACE
: PUNCT
-)Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59593From NUM
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
Subject NOUN
: PUNCT
Data NOUN
of ADP
skullGT PROPN
> X
From ADP
: PUNCT
gary@concave.cs.wits.ac.za PROPN
( PUNCT
Gary PROPN
Taylor)GT PROPN
> X
Hi INTJ
, PUNCT
We PRON
are AUX
trying VERB
to PART
develop VERB
a DET
image NOUN
reconstruction NOUN
simulation NOUN
for ADP
the DET
skullYou PROPN
could AUX
do AUX
high ADJ
resolution NOUN
CT PROPN
( PUNCT
computed VERB
tomographic ADJ
) PUNCT
scanning NOUN
ofthe NOUN
skull NOUN
. PUNCT
  SPACE
Many ADJ
CT PROPN
scanners NOUN
have AUX
an DET
algorithm NOUN
to PART
do AUX
3-Dreconstructions NOUN
in ADP
any DET
plane NOUN
you PRON
want VERB
. PUNCT
  SPACE
If SCONJ
you PRON
did AUX
reconstructionsevery VERB
2 NUM
degrees NOUN
or CCONJ
so ADV
in ADP
all DET
planes NOUN
, PUNCT
you PRON
could AUX
use VERB
the DET
resultantimages NOUN
to PART
create VERB
user NOUN
- PUNCT
controlled VERB
animation.--- NOUN
. PUNCT
SLMR ADV
2.1 NUM
. PUNCT
E NOUN
- NOUN
mail NOUN
: PUNCT
jim.zisfein@factory.com X
( PUNCT
Jim PROPN
Zisfein PROPN
) PUNCT
                                                                                                                        SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59594From NUM
: PUNCT
draper@umcc.umcc.umich.edu PROPN
( PUNCT
Patrick PROPN
Draper)Subject VERB
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosIn NOUN
article NOUN
< X
1rsvgr$r13@nym.ossi.com NUM
> X
texx@ossi.com X
( PUNCT
" PUNCT
Texx PROPN
" PUNCT
) PUNCT
writes:>Oh ADJ
YEAH NOUN
? PUNCT
> X
> X
Scene NOUN
: PUNCT
Navy PROPN
boot NOUN
camp>>DI PROPN
: PUNCT
		 SPACE
" PUNCT
Son PROPN
, PUNCT
you PRON
smel VERB
awful ADJ
! PUNCT
Do AUX
nt PART
you PRON
ever ADV
clean VERB
that SCONJ
thing?">Recruit NOUN
: PUNCT
	 SPACE
" PUNCT
No DET
Sir PROPN
! PUNCT
" PUNCT
> X
DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
the DET
hell NOUN
NOT!">Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Your PRON
not PART
sposed VERB
to PART
touch VERB
down ADP
there?">DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
? PUNCT
" PUNCT
> X
Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Cause NOUN
that DET
s VERB
the DET
eye NOUN
of ADP
god PROPN
down ADV
there ADV
, PUNCT
an DET
' PUNCT
your PRON
not PART
s'posed VERB
to PART
touch VERB
it PRON
... PUNCT
">>This PUNCT
did AUX
not PART
happen VERB
40 NUM
years NOUN
ago ADV
, PUNCT
it PRON
happened VERB
2 NUM
years NOUN
ago.>>I NOUN
think VERB
Americans PROPN
are AUX
QUITE ADV
hung VERB
up ADP
about ADP
sex NOUN
and CCONJ
the DET
involved ADJ
plumbing!Wow NOUN
that PRON
certainly ADV
CONVINCED VERB
me PRON
that SCONJ
all DET
Americans PROPN
ar PROPN
hung VERB
up ADP
about ADP
sex NOUN
. PUNCT
Just ADV
one NUM
example NOUN
of ADP
something PRON
that PRON
probably ADV
ran VERB
in ADP
a DET
Hustler PROPN
mag NOUN
is AUX
enoughto ADJ
convince VERB
me PRON
. PUNCT
Sarchasm NOUN
off.------------------////////////////////\\\\\\\\\\\\\\\\\\\\------------------| NUM
Patrick PROPN
Draper PROPN
- PUNCT
ZBT PROPN
                 SPACE
We PRON
are AUX
a DET
nation NOUN
of ADP
laws NOUN
, PUNCT
not PART
people NOUN
. PUNCT
  SPACE
|| PROPN
draper@umcc.umich.edu PROPN
                    SPACE
Flames NOUN
> X
/dev PUNCT
/ PUNCT
Koresh PROPN
            SPACE
|| PROPN
                   SPACE
University PROPN
of ADP
Michigan PROPN
Computer PROPN
Club PROPN
                   SPACE
|------------------\\\\\\\\\\\\\\\\\\\\////////////////////------------------Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59595From NUM
: PUNCT
GWGREG01@ukcc.uky.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
Pregnency NOUN
without ADP
sex?In PROPN
article NOUN
< X
C6BotF.137@r-node.hub.org>taob@r-node.hub.org PROPN
( PUNCT
Brian PROPN
Tao PROPN
) PUNCT
writes VERB
: PUNCT
> X
In ADP
article NOUN
< X
1993Apr27.182155.23426@oswego NUM
. PUNCT
Oswego PROPN
. PUNCT
EDU PROPN
> X
, PUNCT
Harry PROPN
Matthews PROPN
writes VERB
... PUNCT
> X
> X
> X
> X
I PRON
've AUX
heard VERB
of ADP
community NOUN
swimming NOUN
pools NOUN
refered VERB
to ADP
as SCONJ
PUBLIC PROPN
URINALS PROPN
so ADV
what PRON
> X
> X
else ADV
is AUX
going VERB
on ADP
? PUNCT
> X
> X
    SPACE
Do AUX
you PRON
swim VERB
nude ADJ
in ADP
a DET
public ADJ
swimming NOUN
pool NOUN
? PUNCT
  SPACE
:) PUNCT
  SPACE
I PRON
doubt VERB
sperm NOUN
can AUX
> X
penetrate PROPN
swimsuit NOUN
material NOUN
, PUNCT
assuming VERB
they PRON
are AUX
n't PART
immediately ADV
dispersed VERB
> X
by ADP
water NOUN
currents.>-->Brian PROPN
Tao PROPN
: PUNCT
: PUNCT
taob@r-node.hub.org PROPN
( PUNCT
r PROPN
- PUNCT
Node PROPN
BBS PROPN
, PUNCT
416 NUM
- SYM
249 NUM
- PUNCT
5366 NUM
, PUNCT
FREE ADJ
! PUNCT
) PUNCT
> X
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
: PUNCT
90taobri@wave.scar.utoronto.ca NUM
( PUNCT
University PROPN
of ADP
Toronto PROPN
) PUNCT
Here ADV
we PRON
go VERB
again ADV
. PUNCT
= PUNCT
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= X
= PUNCT
U NOUN
   SPACE
UK PROPN
   SPACE
K PROPN
UNIVERSITY PROPN
                                 SPACE
GARY PROPN
W. PROPN
GREGORYU PROPN
   SPACE
UK PROPN
  SPACE
K PROPN
  SPACE
OF ADP
KENTUCKY PROPN
                          SPACE
GWGREG01@UKCC.UKY.EDUU PROPN
   SPACE
UKKK PROPN
   SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
UU PROPN
UUK PROPN
  SPACE
KK PROPN
UUU PROPN
K PROPN
   SPACE
KK PROPN
                                      SPACE
DEPARTMENT PROPN
OF ADP
OB PROPN
/ SYM
GYN PROPN
                                                SPACE
MS PROPN
335 NUM
MEDICAL PROPN
CENTER PROPN
                                       SPACE
LEXINGTON PROPN
, PUNCT
KENTUCKY PROPN
40536 NUM
- PUNCT
0084=====================================================================Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59596From NUM
: PUNCT
mmatusev@radford.vak12ed.edu PROPN
( PUNCT
Melissa PROPN
N. PROPN
Matusevich)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Nose NOUN
PickingI NOUN
do AUX
n't PART
know VERB
if SCONJ
it PRON
causes VERB
the DET
body NOUN
any DET
harm NOUN
, PUNCT
but CCONJ
in ADP
the DET
23years NUM
I PRON
've AUX
been AUX
teaching VERB
nine NUM
and CCONJ
ten NUM
years NOUN
olds NOUN
I PRON
've AUX
never ADV
hadone VERB
fall VERB
over ADP
from ADP
eating VERB
" PUNCT
boogers NOUN
" PUNCT
which PRON
many ADJ
kids NOUN
do AUX
on ADP
aregular NOUN
basis NOUN
[ PUNCT
when ADV
they PRON
think VERB
no DET
one NOUN
is AUX
looking VERB
. PUNCT
. PUNCT
.]Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59597From NUM
: PUNCT
turpin@cs.utexas.edu PROPN
( PUNCT
Russell PROPN
Turpin)Subject PROPN
: PUNCT
Meaning NOUN
of ADP
atheism NOUN
, PUNCT
agnosticism NOUN
  SPACE
( PUNCT
was AUX
: PUNCT
Krillean PROPN
Photography)-*----Sci.med VERB
removed VERB
from ADP
followups NOUN
. PUNCT
  SPACE
( PUNCT
And CCONJ
I PRON
do AUX
not PART
read VERB
any DET
of ADP
theother PROPN
newsgroups.)-*----In PROPN
article NOUN
< X
1993Apr30.170233.12510@rosevax.rosemount.com NUM
> X
grante@aquarius.rosemount.com PROPN
( PUNCT
Grant PROPN
Edwards PROPN
) PUNCT
writes VERB
: PUNCT
> X
As SCONJ
a DET
self NOUN
- PUNCT
proclaimed VERB
atheist NOUN
my PRON
position NOUN
is AUX
that SCONJ
I PRON
_ AUX
believe VERB
_ PROPN
that SCONJ
> X
there PRON
is AUX
no DET
god PROPN
. PUNCT
  SPACE
I PRON
do AUX
n't PART
claim VERB
to PART
have AUX
any DET
proof NOUN
. PUNCT
  SPACE
I PRON
interpret VERB
> X
the DET
agnostic ADJ
position NOUN
as SCONJ
having VERB
no DET
beliefs NOUN
about ADP
god PROPN
's PART
existence NOUN
. PUNCT
That DET
's AUX
fine ADJ
. PUNCT
  SPACE
These DET
words NOUN
have AUX
multiple ADJ
meanings NOUN
. PUNCT
As SCONJ
a DET
self NOUN
- PUNCT
proclaimed VERB
atheist NOUN
, PUNCT
I PRON
believe VERB
that SCONJ
* PUNCT
some DET
* PUNCT
conceptionsof PROPN
god PROPN
are AUX
inconsistent ADJ
or CCONJ
in ADP
conflict NOUN
with ADP
fact NOUN
, PUNCT
and CCONJ
I PRON
lackbelief VERB
in ADP
other ADJ
conceptions NOUN
of ADP
god PROPN
merely ADV
because SCONJ
there PRON
is AUX
noreason PROPN
for ADP
me PRON
to PART
believe VERB
in ADP
these DET
. PUNCT
  SPACE
I PRON
usually ADV
use VERB
the DET
wordagnostic NOUN
to PART
mean VERB
someone PRON
who PRON
believes VERB
that SCONJ
the DET
existence NOUN
ofa PROPN
god PROPN
is AUX
unknown ADJ
inherently ADV
unknowable ADJ
. PUNCT
  SPACE
Note VERB
that SCONJ
this DET
is AUX
apositive ADJ
belief NOUN
that PRON
is AUX
quite ADV
different ADJ
from ADP
not PART
believing VERB
in ADP
agod NOUN
; PUNCT
I PRON
do AUX
not PART
believe VERB
in ADP
a DET
god NOUN
, PUNCT
but CCONJ
I PRON
also ADV
do AUX
not PART
believe VERB
theagnostic ADJ
claim NOUN
. PUNCT
RussellNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59598From NUM
: PUNCT
ceci@lysator.liu.se PROPN
( PUNCT
Cecilia PROPN
Henningsson)Subject VERB
: PUNCT
Q NOUN
: PUNCT
Repelling PROPN
wasps?(This PROPN
is AUX
a DET
cross NOUN
post NOUN
to ADP
rec.gardens NOUN
and CCONJ
sci.med VERB
. PUNCT
Set VERB
the DET
follow NOUN
- PUNCT
up(line NOUN
in ADP
the DET
header NOUN
, PUNCT
depending VERB
on ADP
what PRON
kind NOUN
of ADP
advice NOUN
you PRON
give VERB
, PUNCT
or(e PROPN
- PUNCT
mail NOUN
directly ADV
to ADP
me PRON
: PUNCT
ceci@lysator.liu.se.)I PROPN
have AUX
a DET
problem NOUN
with ADP
wasps NOUN
-- PUNCT
they PRON
seem VERB
to PART
love VERB
me PRON
. PUNCT
Last ADJ
summer NOUN
Icouldn't PROPN
spend VERB
more ADJ
than SCONJ
ten NUM
to ADP
fifteen NUM
minutes NOUN
at ADP
a DET
time NOUN
in ADP
my PRON
gardenbefore NOUN
one NUM
or CCONJ
several ADJ
wasps NOUN
would AUX
come VERB
for ADP
me PRON
. PUNCT
I PRON
am AUX
asking VERB
for ADP
adviceon NOUN
how ADV
to PART
repel VERB
wasps NOUN
. PUNCT
   SPACE
This DET
year NOUN
the DET
wasps NOUN
have AUX
built VERB
their PRON
nest NOUN
under ADP
a DET
stone NOUN
next ADV
to PART
oneof VERB
my PRON
tiny ADJ
ponds NOUN
. PUNCT
The DET
caretaker NOUN
( PUNCT
poor ADJ
fellow NOUN
! PUNCT
) PUNCT
will AUX
have AUX
to PART
take VERB
careof ADV
them PRON
, PUNCT
and CCONJ
that DET
will AUX
give VERB
me PRON
a DET
head NOUN
start VERB
on ADP
them PRON
. PUNCT
Last ADJ
year NOUN
wecouldn't AUX
find VERB
any DET
nest NOUN
. PUNCT
Even ADV
after ADP
the DET
caretaker NOUN
has AUX
gassed VERB
the DET
nestin PROPN
my PRON
tiny ADJ
garden NOUN
of ADP
30 NUM
square ADJ
meter NOUN
, PUNCT
other ADJ
wasps NOUN
will AUX
most ADV
likely ADV
viefor ADP
the DET
territory NOUN
. PUNCT
Is AUX
there PRON
anything PRON
I PRON
can AUX
grow VERB
, PUNCT
rub VERB
on ADP
my PRON
skin NOUN
orspread NOUN
on ADP
the DET
soil NOUN
that PRON
will AUX
repel VERB
the DET
black ADJ
and CCONJ
yellow ADJ
bastards?Never NOUN
mind NOUN
if SCONJ
it PRON
turns VERB
my PRON
skin NOUN
purple NOUN
or CCONJ
kills VERB
off ADP
all DET
my PRON
belovedplants NOUN
, PUNCT
I PRON
want VERB
to PART
be AUX
able ADJ
to PART
spend VERB
time NOUN
in ADP
my PRON
garden NOUN
like SCONJ
everyoneelse NOUN
. PUNCT
   SPACE
Would AUX
it PRON
help VERB
to PART
remove VERB
the DET
ponds NOUN
and CCONJ
the DET
bird NOUN
bath NOUN
? PUNCT
The DET
wasps NOUN
seemto NOUN
come VERB
to PART
drink VERB
at ADP
them PRON
, PUNCT
and CCONJ
I PRON
suppose VERB
that SCONJ
their PRON
prey NOUN
will AUX
breed VERB
inthem NOUN
. PUNCT
The DET
black ADJ
tits NOUN
seem VERB
to PART
be AUX
afraid ADJ
of ADP
the DET
wasps NOUN
, PUNCT
because SCONJ
as SCONJ
soonas PROPN
the DET
wasp PROPN
season NOUN
starts VERB
, PUNCT
they PRON
stop VERB
coming VERB
to PART
have AUX
their PRON
bath NOUN
. PUNCT
Even ADV
when ADV
I PRON
am AUX
not PART
trying VERB
to PART
win VERB
back ADP
my PRON
patio NOUN
from ADP
15 NUM
- SYM
20 NUM
wasps NOUN
, PUNCT
theyseem VERB
to PART
love VERB
me PRON
. PUNCT
The DET
advice NOUN
I PRON
usually ADV
get VERB
when ADV
I PRON
ask VERB
what PRON
to PART
do AUX
aboutwasps PROPN
, PUNCT
is AUX
to PART
stand VERB
still ADV
and CCONJ
not PART
wave VERB
my PRON
arms NOUN
. PUNCT
I PRON
've AUX
got VERB
some DET
painfulstings NOUN
when ADV
trying VERB
to PART
follow VERB
that DET
advice NOUN
. PUNCT
I PRON
have AUX
also ADV
tried VERB
to ADP
usehygienic ADJ
products NOUN
without ADP
perfumes NOUN
, PUNCT
to ADP
no DET
avail NOUN
. PUNCT
They PRON
still ADV
love VERB
me PRON
, PUNCT
and CCONJ
come VERB
for ADP
me PRON
, PUNCT
even ADV
when ADV
I PRON
'm AUX
in ADP
the DET
middle NOUN
of ADP
a DET
crowd NOUN
. PUNCT
So ADV
far ADV
onlytwo NOUN
things NOUN
seem VERB
to PART
work VERB
: PUNCT
To PART
kill VERB
it PRON
dead ADJ
or CCONJ
to PART
run VERB
into ADP
the DET
house NOUN
andclose NOUN
all DET
doors NOUN
and CCONJ
windows NOUN
. PUNCT
NB PROPN
: PUNCT
I PRON
do AUX
n't PART
have AUX
a DET
problem NOUN
with ADP
bees NOUN
or CCONJ
bumble ADJ
- PUNCT
bees NOUN
, PUNCT
just ADV
wasps ADJ
. PUNCT
    SPACE
Patronizing VERB
advice NOUN
redirected VERB
to ADP
/dev PUNCT
/ SYM
null.--Ceci--=====ceci@lysator.liu.se==========================================="The NOUN
number NOUN
of ADP
rational ADJ
hypotheses NOUN
that PRON
can AUX
explain VERB
any DET
given VERB
phenomenon NOUN
is AUX
infinite ADJ
. PUNCT
"Phaedrus PUNCT
' PART
law NOUN
from ADP
RM PROPN
Pirsig PROPN
's PART
_ PROPN
Zen_and_the_Art_of_Motorcycle_Maintenance_Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59599From NUM
: PUNCT
< X
RFM@psuvm.psu.edu>Subject VERB
: PUNCT
Re ADP
: PUNCT
Lithium NOUN
questions NOUN
, PUNCT
Doctor PROPN
wants VERB
my PRON
10 NUM
year NOUN
old ADJ
on ADP
it PRON
... PUNCT
In ADP
article NOUN
< X
1rrv7i$7m7@dr NUM
- PUNCT
pepper NOUN
. PUNCT
East ADJ
. PUNCT
Sun PROPN
. PUNCT
COM NOUN
> X
, PUNCT
george@crayola PROPN
. PUNCT
East PROPN
. PUNCT
Sun PROPN
. PUNCT
COM>>I NOUN
would AUX
like VERB
to PART
know VERB
anything PRON
you PRON
folks NOUN
can AUX
tell VERB
me PRON
regarding VERB
Lithium.>>I NOUN
have AUX
a DET
10 NUM
year NOUN
old ADJ
son NOUN
that PRON
lives VERB
with ADP
my PRON
ex NOUN
- NOUN
wife NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
having VERB
> X
difficulty NOUN
with ADP
his PRON
behavior NOUN
and CCONJ
has AUX
had VERB
him PRON
on ADP
Ritalin PROPN
, PUNCT
Tofranil PROPN
, PUNCT
and CCONJ
now ADV
> X
wants VERB
to PART
try VERB
Lithuim PROPN
at ADP
the DET
local ADJ
doctors NOUN
suggestion NOUN
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to PART
> X
know VERB
whatever PRON
is AUX
important ADJ
that SCONJ
I PRON
should AUX
know VERB
. PUNCT
  SPACE
I PRON
worry VERB
about ADP
this DET
sort NOUN
of ADP
> NUM
thing NOUN
and CCONJ
would AUX
like VERB
pros NOUN
/ SYM
cons NOUN
regarding VERB
Lithium PROPN
therapy.>>I PROPN
have AUX
a DET
booklet NOUN
from ADP
the DET
" PUNCT
Lithium PROPN
Information PROPN
Center PROPN
" PUNCT
based VERB
at ADP
the DET
> X
University PROPN
of ADP
Wisconsin PROPN
, PUNCT
but CCONJ
feel VERB
that SCONJ
it PRON
is AUX
pro ADJ
- ADJ
lithium ADJ
and CCONJ
would AUX
be AUX
> X
interested ADJ
in ADP
comments NOUN
from ADP
the DET
" PUNCT
not PART
necessarily ADV
PRO PROPN
" PUNCT
side NOUN
of ADP
the DET
fence.>>I PROPN
am AUX
a DET
concerned ADJ
father NOUN
and CCONJ
just ADV
wish VERB
to PART
be AUX
well ADV
informed ADJ
... PUNCT
>I NUM
get VERB
" PUNCT
antsy NOUN
" PUNCT
about ADP
posts NOUN
like SCONJ
this DET
. PUNCT
Is AUX
the DET
concern NOUN
more ADJ
for ADP
son NOUN
or CCONJ
about ADP
ex NOUN
- NOUN
wife NOUN
? PUNCT
? PUNCT
? PUNCT
The DET
standard ADJ
impartial ADJ
procedure NOUN
is AUX
to PART
ask VERB
for ADP
a DET
second ADJ
opinionabout NOUN
son NOUN
's PART
condition NOUN
. PUNCT
Then ADV
too ADV
, PUNCT
is AUX
son NOUN
" PUNCT
acting VERB
out ADP
" PUNCT
games NOUN
between ADP
divorced ADJ
parents????Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59600From NUM
: PUNCT
mcovingt@aisun3.ai.uga.edu PROPN
( PUNCT
Michael PROPN
Covington)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Lithium NOUN
questions NOUN
, PUNCT
Doctor PROPN
wants VERB
my PRON
10 NUM
year NOUN
old ADJ
on ADP
it PRON
... PUNCT
In ADP
article NOUN
< X
93121.120223RFM@psuvm.psu.edu NUM
> X
< X
RFM@psuvm.psu.edu PROPN
> X
writes:>[Someone NOUN
writes:]>>I NOUN
have AUX
a DET
10 NUM
year NOUN
old ADJ
son NOUN
that PRON
lives VERB
with ADP
my PRON
ex NOUN
- NOUN
wife NOUN
. PUNCT
  SPACE
She PRON
has AUX
been AUX
having>>difficulty ADJ
with ADP
his PRON
behavior NOUN
and CCONJ
has AUX
had VERB
him PRON
on ADP
Ritalin PROPN
, PUNCT
Tofranil PROPN
, PUNCT
and CCONJ
now>>wants NOUN
to PART
try VERB
Lithuim PROPN
at ADP
the DET
local ADJ
doctors NOUN
suggestion NOUN
. PUNCT
  SPACE
I PRON
would AUX
like VERB
to>>know NOUN
whatever PRON
is AUX
important ADJ
that SCONJ
I PRON
should AUX
know VERB
. PUNCT
  SPACE
I PRON
worry VERB
about ADP
this DET
sort NOUN
of>>thing NOUN
and CCONJ
would AUX
like VERB
pros NOUN
/ SYM
cons NOUN
regarding VERB
Lithium PROPN
therapy.>I NOUN
get VERB
" PUNCT
antsy NOUN
" PUNCT
about ADP
posts NOUN
like SCONJ
this DET
. PUNCT
Is AUX
the DET
concern NOUN
more ADJ
for ADP
son NOUN
or CCONJ
about ADP
ex PROPN
- NOUN
w PROPN
> X
ife NOUN
? PUNCT
? PUNCT
? PUNCT
The DET
standard ADJ
impartial ADJ
procedure NOUN
is AUX
to PART
ask VERB
for ADP
a DET
second ADJ
opinion NOUN
> X
about ADP
son PROPN
's PART
condition.>Then PROPN
too ADV
, PUNCT
is AUX
son NOUN
" PUNCT
acting VERB
out ADP
" PUNCT
games NOUN
between ADP
divorced VERB
parents????Precisely ADV
. PUNCT
  SPACE
One NOUN
wonders VERB
what PRON
unusual ADJ
strain VERB
the DET
boy NOUN
might AUX
be AUX
under ADP
thatcould NOUN
be AUX
causing VERB
" PUNCT
difficulty NOUN
with ADP
his PRON
behavior NOUN
" PUNCT
. PUNCT
  SPACE
Standard ADJ
practice NOUN
wouldbe NOUN
to PART
get AUX
a DET
second ADJ
opinion NOUN
from ADP
a DET
child NOUN
psychiatrist NOUN
. PUNCT
  SPACE
One PRON
would AUX
want VERB
torule VERB
out ADP
the DET
possibility NOUN
that SCONJ
the DET
" PUNCT
bad ADJ
behavior NOUN
" PUNCT
is AUX
not PART
psychiatricillness ADJ
at ADP
all.(Disclaimer PROPN
: PUNCT
I PRON
am AUX
not PART
a DET
medic NOUN
. PUNCT
But CCONJ
I PRON
am AUX
a DET
parent.)-- PROPN
: PUNCT
- PUNCT
  SPACE
Michael PROPN
A. PROPN
Covington PROPN
, PUNCT
Associate PROPN
Research PROPN
Scientist PROPN
        SPACE
: PUNCT
    SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
Artificial PROPN
Intelligence PROPN
Programs PROPN
      SPACE
mcovingt@ai.uga.edu PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
: PUNCT
- PUNCT
  SPACE
The DET
University PROPN
of ADP
Georgia PROPN
              SPACE
phone NOUN
706 NUM
542 NUM
- PUNCT
0358 NUM
: PUNCT
   SPACE
* PUNCT
  SPACE
* PUNCT
  SPACE
* PUNCT
: PUNCT
- PUNCT
  SPACE
Athens PROPN
, PUNCT
Georgia PROPN
30602 NUM
- SYM
7415 NUM
U.S.A. PROPN
     SPACE
amateur NOUN
radio NOUN
N4TMI PROPN
: PUNCT
  SPACE
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
* PUNCT
  SPACE
< X
> X
< X
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59601From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10535@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>In PROPN
article NOUN
< X
1rm29k$i7t@hsdndev.harvard.edu NOUN
> X
rind@enterprise.bih.harvard.edu PROPN
( PUNCT
David PROPN
Rind PROPN
) PUNCT
writes:>:In NOUN
article NOUN
< X
enea1-270493135255@enea.apple.com X
> X
> X
: PUNCT
enea1@applelink.apple.com X
( PUNCT
Horace PROPN
Enea PROPN
) PUNCT
writes:>:>Can AUX
anyone PRON
out ADV
there ADV
tell VERB
me PRON
the DET
difference NOUN
between ADP
a DET
" PUNCT
persistent ADJ
" PUNCT
disease>:>and CCONJ
a DET
" PUNCT
chronic ADJ
" PUNCT
one NUM
? PUNCT
For ADP
example NOUN
, PUNCT
persistent ADJ
hepatitis NOUN
vs ADP
chronic>:>hepatitis.>:>:I PROPN
do AUX
n't PART
think VERB
there PRON
is AUX
a DET
general ADJ
distinction NOUN
. PUNCT
  SPACE
Rather ADV
, PUNCT
there ADV
are>:two PROPN
classes NOUN
of ADP
chronic ADJ
hepatitis NOUN
: PUNCT
chronic ADJ
active ADJ
hepatitis NOUN
and CCONJ
chronic>:persistent PUNCT
hepatitis PROPN
. PUNCT
  SPACE
I PRON
ca AUX
n't PART
think VERB
of ADP
any DET
other ADJ
disease NOUN
where ADV
the>:term ADJ
persistent NOUN
is AUX
used VERB
with ADP
or CCONJ
in ADP
preference NOUN
to ADP
chronic.>:>:Much DET
as SCONJ
these DET
two NUM
terms NOUN
" PUNCT
chronic ADJ
active ADJ
" PUNCT
and CCONJ
" PUNCT
chronic ADJ
persistent">:sound NOUN
fuzzy NOUN
, PUNCT
the DET
actual ADJ
distinction NOUN
between ADP
the DET
two NUM
conditions>:is PROPN
often ADV
fairly ADV
fuzzy ADJ
as SCONJ
well.>>I PROPN
beg VERB
to PART
differ VERB
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
active ADJ
* PUNCT
hepatitis PROPN
implies VERB
that SCONJ
the DET
disease NOUN
> X
remains VERB
active ADJ
, PUNCT
and CCONJ
generally ADV
leads VERB
to ADP
liver NOUN
failure NOUN
. PUNCT
  SPACE
At ADP
the DET
very ADV
> X
minimum NOUN
, PUNCT
the DET
patient NOUN
has AUX
persistently ADV
elevated VERB
liver NOUN
enzymes NOUN
( PUNCT
what PRON
some DET
> X
call NOUN
" PUNCT
transaminitis NOUN
" PUNCT
) PUNCT
. PUNCT
  SPACE
Chronic PROPN
* PUNCT
persistant ADJ
* PUNCT
hepatitis PROPN
simply ADV
means VERB
that SCONJ
> X
the DET
patient NOUN
has AUX
HbSag PROPN
in ADP
his PRON
/ SYM
her PRON
blood NOUN
and CCONJ
can AUX
transmit VERB
the DET
infection NOUN
, PUNCT
but CCONJ
> X
shows VERB
no DET
evidence NOUN
of ADP
progressive ADJ
disease NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
had AUX
to PART
choose VERB
, PUNCT
I PRON
'd AUX
much ADV
> X
rather ADV
have AUX
the DET
persistant ADJ
type NOUN
. PUNCT
Being AUX
a DET
chronic ADJ
HBsAg PROPN
carrier NOUN
does AUX
not PART
necessarily ADV
mean VERB
the DET
patient NOUN
has AUX
chronicpersistent ADJ
anything PRON
. PUNCT
Persons NOUN
who PRON
are AUX
chronic ADJ
carriers NOUN
may AUX
have AUX
no DET
clinical ADJ
, PUNCT
biochemical ADJ
, PUNCT
or CCONJ
histologic ADJ
evidence NOUN
of ADP
liver NOUN
disease NOUN
, PUNCT
or CCONJ
they PRON
may AUX
have AUX
chronicpersistent NOUN
hepatitis PROPN
, PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
, PUNCT
cirrhosis NOUN
, PUNCT
or CCONJ
hepatocellularcarcinoma PROPN
. PUNCT
Most ADJ
cases NOUN
of ADP
chronic ADJ
persistent ADJ
hepatitis PROPN
( PUNCT
CPH PROPN
) PUNCT
are AUX
probably ADV
the DET
result NOUN
ofa PROPN
viral ADJ
infection NOUN
, PUNCT
although SCONJ
in ADP
a DET
good ADJ
number NOUN
of ADP
cases NOUN
the DET
cause NOUN
can AUX
not PART
bedetermined VERB
. PUNCT
The DET
diagnosis NOUN
of ADP
CPH PROPN
is AUX
made VERB
on ADP
the DET
basis NOUN
of ADP
liver NOUN
biopsy NOUN
. PUNCT
Itconsists NOUN
of ADP
findings NOUN
of ADP
portal ADJ
inflammation NOUN
, PUNCT
an DET
intact ADJ
periportal ADJ
limitingplate NOUN
, PUNCT
and CCONJ
on ADP
occasion NOUN
isolated VERB
foci NOUN
of ADP
intralobular ADJ
necrosis NOUN
. PUNCT
But CCONJ
in ADP
contrastto PROPN
chronic PROPN
active ADJ
hepatitis NOUN
( PUNCT
CAH PROPN
) PUNCT
there PRON
is AUX
no DET
periportal ADJ
inflammation NOUN
, PUNCT
bridging VERB
necrosis NOUN
, PUNCT
or CCONJ
fibrosis NOUN
. PUNCT
CPH PROPN
has AUX
, PUNCT
indeed ADV
, PUNCT
an DET
excellent ADJ
prognosis NOUN
. PUNCT
If SCONJ
I PRON
had AUX
to PART
choose VERB
between ADP
CAH PROPN
andCPH NOUN
there PRON
is AUX
no DET
question NOUN
I PRON
would AUX
also ADV
choose VERB
CPH PROPN
. PUNCT
However ADV
, PUNCT
as SCONJ
David PROPN
pointedout NOUN
, PUNCT
the DET
distinction NOUN
between ADP
the DET
two NUM
is AUX
not PART
as ADV
neat ADJ
as SCONJ
some DET
of ADP
us PRON
would AUX
haveit VERB
. PUNCT
The DET
histology NOUN
can AUX
sometimes ADV
be AUX
pretty ADV
equivocal ADJ
, PUNCT
with ADP
biopsies NOUN
showingareas NOUN
compatible ADJ
with ADP
both DET
CPH PROPN
and CCONJ
CAH PROPN
. PUNCT
Maybe ADV
it PRON
is AUX
a DET
sampling ADJ
problem NOUN
. PUNCT
Maybeit PROPN
is AUX
a DET
continuum NOUN
. PUNCT
I PRON
do AUX
n't PART
know.=================================Howard VERB
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59602From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject ADV
: PUNCT
Re ADP
: PUNCT
INFO NOUN
: PUNCT
Colonics PROPN
and CCONJ
Purification?In PROPN
article NOUN
< X
80651@cup.portal.com NUM
> X
, PUNCT
mmm@cup.portal.com PROPN
( PUNCT
Mark PROPN
Robert PROPN
Thorson PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Not PART
everything PRON
that PRON
goes VERB
in ADV
comes VERB
out ADP
, PUNCT
and CCONJ
personaly NOUN
I PRON
do AUX
n't PART
mind VERB
giving VERB
> X
> X
my PRON
body NOUN
a DET
hand NOUN
once ADV
in ADP
a DET
while NOUN
. PUNCT
> X
> X
> X
> X
Just ADV
my PRON
experience NOUN
, PUNCT
> X
> X
> X
> X
George PROPN
Paap PROPN
> X
> X
I PRON
've AUX
got VERB
a DET
very ADV
nice ADJ
collection NOUN
of ADP
historical ADJ
books NOUN
on ADP
medical ADJ
quackery NOUN
, PUNCT
> X
and CCONJ
on ADP
the DET
topic NOUN
of ADP
massage NOUN
this DET
is AUX
a DET
recurring VERB
theme NOUN
. PUNCT
  SPACE
Ordinary ADJ
massage NOUN
> X
is AUX
intended VERB
to PART
make VERB
a DET
person NOUN
feel VERB
better ADJ
, PUNCT
especially ADV
if SCONJ
they PRON
have AUX
muscular ADJ
> NOUN
or CCONJ
joint ADJ
problems NOUN
. PUNCT
  SPACE
But CCONJ
-- PUNCT
like SCONJ
chiropracty NOUN
-- PUNCT
there PRON
are AUX
some DET
practitioners NOUN
> X
who PRON
take VERB
the DET
technique NOUN
to ADP
a DET
far ADV
extreme ADJ
, PUNCT
invoking VERB
what PRON
seems VERB
to ADP
me PRON
to PART
be AUX
> X
quack ADJ
science NOUN
to PART
justify VERB
their PRON
technique NOUN
. PUNCT
> X
> X
In ADP
the DET
case NOUN
of ADP
massage NOUN
, PUNCT
there PRON
is AUX
a DET
technique NOUN
called VERB
" PUNCT
deep ADJ
abdominal ADJ
massage NOUN
" PUNCT
> X
in ADP
which PRON
the DET
masseur NOUN
is AUX
literally ADV
attempting VERB
to PART
massage VERB
the DET
intestines NOUN
! PUNCT
> X
The DET
notion NOUN
is AUX
that SCONJ
undigested ADJ
food NOUN
adheres NOUN
to ADP
the DET
inner ADJ
surface NOUN
of ADP
the DET
> X
intestines NOUN
and CCONJ
putrifies NOUN
, PUNCT
releasing VERB
poisons NOUN
which PRON
cause VERB
various ADJ
disease NOUN
> X
syndromes NOUN
. PUNCT
  SPACE
By ADP
this DET
vigorous ADJ
and CCONJ
painful ADJ
procedure NOUN
, PUNCT
it PRON
is AUX
alleged VERB
that SCONJ
> X
these DET
deposits NOUN
can AUX
be AUX
loosened VERB
up ADP
and CCONJ
passed VERB
out ADP
. PUNCT
> X
> X
I PRON
just ADV
ca AUX
n't PART
believe VERB
this DET
idea NOUN
has AUX
any DET
truth NOUN
behind ADP
it PRON
! PUNCT
  SPACE
The DET
human ADJ
intestine NOUN
> X
is AUX
not PART
a DET
New PROPN
York PROPN
City PROPN
sewer NOUN
pipe NOUN
! PUNCT
  SPACE
And CCONJ
even ADV
if SCONJ
it PRON
were AUX
, PUNCT
you PRON
eat VERB
half NOUN
of ADP
> X
a DET
small ADJ
box NOUN
of ADP
Triscuits PROPN
, PUNCT
and CCONJ
there PRON
ai VERB
n't PART
gon VERB
na PART
be AUX
nothin' NOUN
sticking VERB
to ADP
the DET
> X
inner ADJ
surface NOUN
of ADP
your PRON
intestine NOUN
  SPACE
: PUNCT
-)Mark PUNCT
, PUNCT
this DET
is AUX
the DET
most ADV
reasonable ADJ
post NOUN
that PRON
I PRON
've AUX
seen VERB
in ADP
Sci PROPN
. PUNCT
Med PROPN
. PUNCT
on ADP
the DET
topic NOUN
of ADP
Colonic PROPN
Flushing PROPN
. PUNCT
  SPACE
I PRON
'm AUX
in ADP
a DET
profession NOUN
that PRON
uses VERB
manipulation(a PROPN
very ADV
refined ADJ
form NOUN
of ADP
massage NOUN
) PUNCT
to PART
treat VERB
various ADJ
human ADJ
diseases NOUN
. PUNCT
  SPACE
Proving VERB
that SCONJ
manipulation NOUN
works NOUN
has AUX
been AUX
extremely ADV
difficult(as ADJ
the DET
MD PROPN
's PART
delight NOUN
in ADP
pointing VERB
out ADP
) PUNCT
. PUNCT
  SPACE
The DET
Osteopathic PROPN
Profession PROPN
seems VERB
to PART
be AUX
making VERB
better ADJ
progress NOUN
than SCONJ
the DET
chiropractors NOUN
in ADP
proving(scientifically PROPN
) PUNCT
that SCONJ
their PRON
techingues NOUN
work VERB
. PUNCT
  SPACE
The DET
JAOA PROPN
recently ADV
had AUX
a DET
study NOUN
on ADP
the DET
use NOUN
of ADP
manipulation NOUN
to PART
relieve VERB
mensrual ADJ
cramps NOUN
in ADP
women NOUN
with ADP
results NOUN
that PRON
were AUX
as ADV
good ADJ
or CCONJ
better ADJ
than SCONJ
drug NOUN
treatment(using ADJ
physiological ADJ
measurements NOUN
, PUNCT
and CCONJ
not PART
just ADV
the DET
woman NOUN
's PART
preception NOUN
of ADP
improvement NOUN
) PUNCT
. PUNCT
  SPACE
This DET
study NOUN
was AUX
hailed VERB
by ADP
the DET
JAOA PROPN
editors NOUN
as SCONJ
the DET
turning NOUN
point NOUN
in ADP
the DET
profession NOUN
's PART
long ADJ
struggle NOUN
to PART
prove VERB
itself PRON
to ADP
the DET
medical ADJ
community NOUN
. PUNCT
I'm PRON
currently ADV
trying VERB
to PART
get AUX
the DET
AOA(American PROPN
Osteopathic PROPN
Association PROPN
) PUNCT
which PRON
has AUX
supported VERB
most ADJ
of ADP
the DET
Osteopathic ADJ
research NOUN
in ADP
the DET
U.S. PROPN
to PART
also ADV
support VERB
nutrition NOUN
education NOUN
and CCONJ
research NOUN
. PUNCT
  SPACE
I PRON
've AUX
pointed VERB
out ADP
, PUNCT
in ADP
a DET
grant NOUN
proposal NOUN
, PUNCT
that SCONJ
the DET
founder NOUN
of ADP
Osteopathic PROPN
Medicine(A.T. PROPN
Still ADV
) PUNCT
embraced VERB
both DET
diet NOUN
and CCONJ
manipulation NOUN
to PART
set VERB
himself PRON
apart ADV
from ADP
the DET
MD PROPN
's PART
of ADP
his PRON
time NOUN
who PRON
were AUX
pushing VERB
only ADV
drugs(Still PROPN
was AUX
himself PRON
an DET
MD NOUN
who PRON
got VERB
real ADV
dissillusioned VERB
with ADP
drugs NOUN
during ADP
his PRON
service NOUN
in ADP
the DET
Civil PROPN
War PROPN
) PUNCT
. PUNCT
  SPACE
He PRON
decided VERB
that SCONJ
there PRON
had AUX
to PART
be AUX
a DET
better ADJ
way NOUN
to PART
treat VERB
human ADJ
disease NOUN
since SCONJ
he PRON
saw VERB
the DET
cure(drugs NOUN
) PUNCT
as SCONJ
being AUX
worse ADJ
than SCONJ
the DET
disease NOUN
. PUNCT
  SPACE
Through ADP
his PRON
many ADJ
years NOUN
of ADP
study NOUN
of ADP
the DET
human ADJ
body NOUN
, PUNCT
he PRON
developed VERB
his PRON
manipulation NOUN
techniques NOUN
that PRON
he PRON
then ADV
taught VERB
to ADP
his PRON
students NOUN
in ADP
the DET
U.S PROPN
's PART
first ADJ
Osteopathic PROPN
Medical PROPN
school NOUN
. PUNCT
  SPACE
We PRON
now ADV
have AUX
17.Still NUM
used VERB
manipulation NOUN
to ADP
treat(and PROPN
also ADV
diagnose VERB
) PUNCT
human ADJ
disease NOUN
but CCONJ
he PRON
used VERB
diet NOUN
to PART
prevent VERB
human ADJ
disease NOUN
. PUNCT
  SPACE
I PRON
'm AUX
trying VERB
to PART
get AUX
the DET
Osteopathic PROPN
Profession PROPN
to PART
return VERB
to ADP
it PRON
's PART
roots NOUN
and CCONJ
beat VERB
the DET
MD PROPN
's PART
to ADP
the DET
punch(so PROPN
to PART
speak VERB
) PUNCT
. PUNCT
  SPACE
Both DET
DO PROPN
's PART
and CCONJ
MD PROPN
's PART
in ADP
current ADJ
medical ADJ
practice NOUN
have AUX
very ADV
little ADJ
understanding NOUN
of ADP
how ADV
diet PROPN
affects VERB
human PROPN
health NOUN
. PUNCT
  SPACE
This DET
has AUX
to PART
change VERB
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Professor PROPN
of ADP
Biochemistry PROPN
and CCONJ
ChairmanDepartment PROPN
of ADP
Biochemistry PROPN
and CCONJ
MicrobiologyOSU PROPN
COllege PROPN
of ADP
Osteopathic PROPN
Medicine"You PROPN
are AUX
what PRON
you PRON
eat VERB
. PUNCT
" PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59603From NUM
: PUNCT
kmldorf@utdallas.edu X
( PUNCT
George PROPN
Kimeldorf)Subject NUM
: PUNCT
Re ADP
: PUNCT
Opinions NOUN
on ADP
Allergy PROPN
( PUNCT
Hay PROPN
Fever PROPN
) PUNCT
shots?In PROPN
article NOUN
< X
1993Apr29.173817.25867@nntpd2.cxo.dec.com NUM
> X
tung@paaiec.enet.dec.com PROPN
( PUNCT
) PUNCT
writes:>>I NOUN
have AUX
just ADV
started VERB
taking VERB
allergy ADJ
shots NOUN
a DET
month NOUN
ago ADV
and CCONJ
is AUX
> X
still ADV
wondering VERB
what PRON
I PRON
am AUX
getting VERB
into ADP
. PUNCT
A DET
friend NOUN
of ADP
mine NOUN
told VERB
> X
me PRON
that SCONJ
the DET
body NOUN
change VERB
every DET
7 NUM
years NOUN
( PUNCT
whatever PRON
that DET
means)>and NOUN
I PRON
do AUX
n't PART
need VERB
those DET
antibody NOUN
- PUNCT
building VERB
allergy NOUN
shots NOUN
at ADP
all.>Does NOUN
that PRON
make VERB
sense NOUN
to ADP
anyone?>>BTW PROPN
, PUNCT
can AUX
someone PRON
summarize VERB
what PRON
is AUX
in ADP
the DET
Consumer PROPN
Report PROPN
> X
February PROPN
, PUNCT
1988 NUM
article?I PROPN
am AUX
reluctant ADJ
to PART
summarize VERB
it PRON
, PUNCT
for ADP
then ADV
you PRON
will AUX
have AUX
my PRON
opinion NOUN
of ADP
what PRON
thearticle NOUN
says VERB
, PUNCT
rather ADV
than SCONJ
your PRON
own ADJ
opinion NOUN
. PUNCT
  SPACE
I PRON
think VERB
it PRON
is AUX
important ADJ
enoughfor NOUN
you PRON
to PART
take VERB
the DET
trouble NOUN
to PART
go VERB
to ADP
the DET
library NOUN
and CCONJ
get AUX
the DET
article NOUN
. PUNCT
  SPACE
Thetitle PROPN
is AUX
" PUNCT
The DET
shot NOUN
doctors NOUN
" PUNCT
and CCONJ
it PRON
appears VERB
on ADP
Pages PROPN
96 NUM
- PUNCT
100 NUM
of ADP
the DET
February,1988 PROPN
issue NOUN
of ADP
Consumer PROPN
Reports PROPN
. PUNCT
  SPACE
The DET
following VERB
excerpt NOUN
from ADP
the DET
article NOUN
mayentice NOUN
you PRON
to PART
read VERB
the DET
whole ADJ
article NOUN
: PUNCT
     SPACE
Too ADV
often ADV
, PUNCT
shots NOUN
are AUX
overused ADJ
..... PUNCT
"When PUNCT
you PRON
put VERB
a DET
patient NOUN
on ADP
     SPACE
shots NOUN
, PUNCT
you PRON
've AUX
got VERB
an DET
annuity NOUN
for ADP
life NOUN
, PUNCT
" PUNCT
a DET
former ADJ
president NOUN
of ADP
     SPACE
the DET
American PROPN
Academy PROPN
of ADP
Allergy PROPN
and CCONJ
Immunology PROPN
told VERB
CU PROPN
. PUNCT
[ PUNCT
page NOUN
97]Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59604From NUM
: PUNCT
menon@boulder PROPN
. PUNCT
Colorado PROPN
. PUNCT
EDU PROPN
( PUNCT
Ravi PROPN
or CCONJ
Deantha PROPN
Menon)Subject NUM
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prostexx@ossi.com X
( PUNCT
" PUNCT
Texx PROPN
" PUNCT
) PUNCT
writes:>Scene ADV
: PUNCT
Navy PROPN
boot NOUN
camp NOUN
> X
DI PROPN
: PUNCT
		 SPACE
" PUNCT
Son PROPN
, PUNCT
you PRON
smel VERB
awful ADJ
! PUNCT
Do AUX
nt PART
you PRON
ever ADV
clean VERB
that SCONJ
thing?">Recruit NOUN
: PUNCT
	 SPACE
" PUNCT
No DET
Sir PROPN
! PUNCT
" PUNCT
> X
DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
the DET
hell NOUN
NOT!">Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Your PRON
not PART
sposed VERB
to PART
touch VERB
down ADP
there?">DI PROPN
: PUNCT
		 SPACE
" PUNCT
Why ADV
? PUNCT
" PUNCT
> X
Recruit PROPN
: PUNCT
	 SPACE
" PUNCT
Cause NOUN
that DET
s VERB
the DET
eye NOUN
of ADP
god PROPN
down ADV
there ADV
, PUNCT
an DET
' PUNCT
your PRON
not PART
s'posed VERB
to PART
touch VERB
it PRON
... PUNCT
">This PUNCT
did AUX
not PART
happen VERB
40 NUM
years NOUN
ago ADV
, PUNCT
it PRON
happened VERB
2 NUM
years NOUN
ago.>I PART
think VERB
Americans PROPN
are AUX
QUITE ADV
hung VERB
up ADP
about ADP
sex NOUN
and CCONJ
the DET
involved ADJ
plumbing!Cute PROPN
anecdote NOUN
, PUNCT
but CCONJ
hardly ADV
indicative ADJ
of ADP
the DET
population NOUN
. PUNCT
  SPACE
From ADP
the DET
responsesI've NOUN
received VERB
to ADP
that DET
post NOUN
( PUNCT
all ADV
from ADP
men NOUN
, PUNCT
by ADP
the DET
way NOUN
) PUNCT
I PRON
get VERB
the DET
impressionthat NOUN
unless SCONJ
a DET
person NOUN
is AUX
willing ADJ
to PART
drop VERB
down ADP
and CCONJ
masturbate VERB
whenever ADV
theneed NOUN
or CCONJ
desire NOUN
strikes NOUN
, PUNCT
then ADV
that DET
person NOUN
is AUX
very ADV
hung ADJ
up ADP
on ADP
sex NOUN
. PUNCT
With ADP
tv NOUN
programs NOUN
about ADP
" PUNCT
boobs X
" PUNCT
( PUNCT
Seinfeld PROPN
) PUNCT
and CCONJ
" PUNCT
masturbation NOUN
( PUNCT
again ADV
Seinfeld)and ADJ
with ADP
condoms NOUN
being AUX
handed VERB
out ADP
in ADP
high ADJ
schools NOUN
and CCONJ
with ADP
the DET
teenagepregnancy NOUN
rate NOUN
and CCONJ
the DET
high ADJ
abortion NOUN
rate NOUN
here ADV
in ADP
the DET
States PROPN
, PUNCT
I PRON
wouldnot VERB
assume VERB
that SCONJ
we PRON
American PROPN
's PART
are AUX
frightened ADJ
of ADP
sex NOUN
. PUNCT
  SPACE
Rather ADV
we PRON
are AUX
a DET
bitstupid NOUN
about ADP
it PRON
. PUNCT
  SPACE
Healthy PROPN
sexuality NOUN
does AUX
not PART
require VERB
flamboyance NOUN
orpromiscuity NOUN
. PUNCT
  SPACE
It PRON
requires VERB
responsibility NOUN
. PUNCT
DeanthaNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59605From NUM
: PUNCT
glskiles@carson.u.washington.edu PROPN
( PUNCT
Gary PROPN
Skiles)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Deadly PROPN
NyQuil???In PROPN
article NOUN
< X
C6BK0F.H7I@murdoch.acc.Virginia.EDU PROPN
> X
res4w@galen.med.Virginia.EDU NOUN
( PUNCT
Robert PROPN
E. PROPN
Schmieg PROPN
) PUNCT
writes:[Partial PROPN
deletion]>potentially ADV
fatal ADJ
from ADP
hepatic ADJ
necrosis NOUN
. PUNCT
  SPACE
If SCONJ
I PRON
recall VERB
> X
correctly ADV
, PUNCT
the DET
metabolism NOUN
of ADP
acetaminophen PROPN
at ADP
high ADJ
doses NOUN
> X
involves VERB
N PROPN
- PUNCT
hydroxylation NOUN
to ADP
N PROPN
- PUNCT
acetyl ADJ
- PUNCT
benzoquinoneimine NOUN
, PUNCT
which PRON
> X
is AUX
a DET
highly ADV
reactive ADJ
intermediate NOUN
, PUNCT
which PRON
then ADV
reacts VERB
with ADP
> PROPN
sulfhydryl ADJ
groups NOUN
of ADP
proteins NOUN
and CCONJ
glutathione NOUN
. PUNCT
  SPACE
When ADV
hepatic ADJ
> X
glutathione NOUN
is AUX
used VERB
up ADP
, PUNCT
this DET
intermediate NOUN
then ADV
starts VERB
> X
attacking VERB
the DET
hepatic ADJ
proteins NOUN
with ADP
resulting VERB
hepatic ADJ
> X
necrosis NOUN
. PUNCT
  SPACE
The DET
insidious ADJ
part NOUN
of ADP
acetaminophen PROPN
toxicity NOUN
is AUX
the DET
> X
delay NOUN
( PUNCT
2 NUM
- SYM
4 NUM
days NOUN
) PUNCT
between ADP
ingestion NOUN
and CCONJ
clinical ADJ
signs NOUN
of ADP
liver NOUN
> X
damage NOUN
. PUNCT
  SPACE
This DET
is AUX
NOT ADV
a DET
nice ADJ
way NOUN
to PART
die.>Nice VERB
explanation NOUN
except SCONJ
that SCONJ
it PRON
is AUX
n't PART
N PROPN
- PUNCT
hydroxylation NOUN
that PRON
causes VERB
theformation NOUN
of ADP
the DET
N PROPN
- PUNCT
acetyl ADJ
- PUNCT
p NOUN
- PUNCT
benzoquinone NOUN
imine NOUN
( PUNCT
NAPQI PROPN
) PUNCT
, PUNCT
but CCONJ
rather ADV
adirect VERB
two NUM
- PUNCT
electron NOUN
oxidation NOUN
. PUNCT
In ADP
addition NOUN
, PUNCT
there PRON
is AUX
one NUM
school NOUN
of ADP
thoughtthat PRON
contends VERB
that SCONJ
oxidative ADJ
stress NOUN
rather ADV
than SCONJ
arylation NOUN
of ADP
proteinis PROPN
the DET
more ADV
critical ADJ
factor NOUN
in ADP
the DET
hapatotoxcity NOUN
of ADP
acetaminophen PROPN
. PUNCT
  SPACE
As ADV
far ADV
as SCONJ
drug NOUN
toxicities NOUN
go VERB
, PUNCT
acetaminophen PROPN
has AUX
and CCONJ
continues VERB
to PART
be AUX
oneof ADV
the DET
most ADV
intensely ADV
scrutinized VERB
. PUNCT
An DET
excellent ADJ
recent ADJ
review NOUN
of ADP
the DET
topiccan PROPN
be AUX
found VERB
in ADP
: PUNCT
	 SPACE
Vermeulen PROPN
, PUNCT
Bessems PROPN
and CCONJ
Van PROPN
de PROPN
Straat PROPN
. PUNCT
		 SPACE
Molecular PROPN
Aspects PROPN
of ADP
Paracetamol PROPN
- PUNCT
induced VERB
hepatotoxicity NOUN
and CCONJ
its PRON
	 SPACE
Mechanism PROPN
- PUNCT
Based VERB
Prevention PROPN
. PUNCT
Drug NOUN
Metabolism PROPN
Reviews PROPN
, PUNCT
24(3 NUM
) PUNCT
367- NUM
	 SPACE
407 NUM
( PUNCT
1992 NUM
) PUNCT
. PUNCT
	 SPACE
( PUNCT
Acetaminophen PROPN
is AUX
known VERB
as SCONJ
paracetamol PROPN
in ADP
Europe)I PROPN
could AUX
n't PART
agree VERB
with ADP
you PRON
more ADV
about ADP
what PRON
an DET
awful ADJ
way NOUN
to PART
die VERB
a DET
toxicdose NOUN
of ADP
acetaminophen PROPN
causes VERB
. PUNCT
  SPACE
I PRON
've AUX
heard VERB
a DET
number NOUN
of ADP
descriptions NOUN
byphysicians NOUN
associated VERB
with ADP
poison NOUN
control NOUN
centers NOUN
, PUNCT
and CCONJ
they PRON
describe VERB
alingering VERB
very ADV
painful ADJ
death NOUN
. PUNCT
-Gary X
- PUNCT
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59606From NUM
: PUNCT
chungdan@leland NOUN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Zhong PROPN
Qi PROPN
Iao PROPN
( PUNCT
Daniel))Subject PROPN
: PUNCT
[ PUNCT
sleep NOUN
] PUNCT
the DET
pulse NOUN
of ADP
relaxation NOUN
; PUNCT
roaming VERB
while SCONJ
sleeping VERB
     SPACE
I PRON
posted VERB
about ADP
a DET
" PUNCT
pulse NOUN
of ADP
( PUNCT
relaxation NOUN
) PUNCT
electricity NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
now ADV
thinkit VERB
more ADV
like SCONJ
a DET
pulse NOUN
of ADP
" PUNCT
relaxation NOUN
" PUNCT
or CCONJ
comfort NOUN
than SCONJ
a DET
pulse ADJ
ofelectricity NOUN
. PUNCT
  SPACE
It PRON
is AUX
what PRON
you PRON
feel VERB
if SCONJ
you PRON
are AUX
overwhelmed ADJ
by ADP
a DET
feelingof NOUN
comfort NOUN
, PUNCT
such ADJ
as SCONJ
seeing VERB
or CCONJ
thinking VERB
about ADP
something PRON
beautiful ADJ
. PUNCT
     SPACE
Another DET
thing NOUN
. PUNCT
  SPACE
When ADV
you PRON
sleep VERB
, PUNCT
you PRON
lie VERB
down ADV
facing VERB
up ADP
, PUNCT
with ADP
yourpalms NOUN
aside ADV
of ADP
you PRON
and CCONJ
facing VERB
down ADP
on ADP
the DET
surface NOUN
of ADP
the DET
bed NOUN
. PUNCT
  SPACE
Then ADV
yourelax ADV
, PUNCT
and CCONJ
there PRON
start VERB
involuntary ADJ
nerve NOUN
firings NOUN
inside ADP
your PRON
flesh NOUN
. PUNCT
  SPACE
So ADV
, PUNCT
you PRON
feel VERB
a DET
" PUNCT
shiver NOUN
" PUNCT
below ADP
the DET
surface NOUN
of ADP
the DET
skin NOUN
( PUNCT
not PART
heart NOUN
- PUNCT
beat).Then NOUN
this DET
shiver NOUN
increases VERB
, PUNCT
and CCONJ
comes VERB
up ADP
to ADP
your PRON
head NOUN
, PUNCT
and CCONJ
the DET
roam NOUN
youhear NOUN
loudens PROPN
. PUNCT
  SPACE
( PUNCT
Note VERB
that SCONJ
you PRON
always ADV
hear VERB
a DET
high ADJ
- PUNCT
pitch NOUN
when ADV
you PRON
lie VERB
downin PROPN
bed NOUN
; PUNCT
this DET
is AUX
just ADV
the DET
noise NOUN
of ADP
your PRON
blood NOUN
running VERB
in ADP
your PRON
ear NOUN
. PUNCT
) PUNCT
  SPACE
Thisroam PROPN
is AUX
different ADJ
from ADP
the DET
high ADJ
pitch NOUN
, PUNCT
but CCONJ
follows VERB
the DET
shiver NOUN
of ADP
yourbody PROPN
. PUNCT
     SPACE
" PUNCT
Shiver PROPN
" PUNCT
is AUX
not PART
the DET
word NOUN
. PUNCT
  SPACE
It PRON
may AUX
be AUX
called VERB
a DET
mild ADJ
vibration NOUN
or CCONJ
quake NOUN
. PUNCT
What PRON
is AUX
this DET
shiver NOUN
and CCONJ
roam NOUN
? PUNCT
  SPACE
Can AUX
I PRON
use VERB
this DET
to PART
induce VERB
out SCONJ
- PUNCT
of ADP
- PUNCT
bodyexperience NOUN
? PUNCT
					 SPACE
Daniel PROPN
Chung PROPN
( PUNCT
Mr. PROPN
) PUNCT
, PUNCT
U.S.A.Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59615Subject NUM
: PUNCT
Help VERB
with ADP
antidepressants NOUN
requested VERB
. PUNCT
From ADP
: PUNCT
blubird@penguin.equinox.gen.nz PROPN
( PUNCT
Gordon PROPN
Taylor)Hello PROPN
all DET
, PUNCT
          SPACE
There PRON
is AUX
a DET
small ADJ
problem NOUN
a DET
friend NOUN
of ADP
mine NOUN
is AUX
experiencing VERB
and CCONJ
I PRON
would AUX
appreciate VERB
any DET
help NOUN
at ADV
all ADV
with ADP
it PRON
. PUNCT
My PRON
friend NOUN
has AUX
been AUX
diagnosed VERB
as SCONJ
having VERB
a DET
severe ADJ
case NOUN
of ADP
depression NOUN
requiring VERB
antidepressants NOUN
for ADP
a DET
cure NOUN
. PUNCT
The DET
main ADJ
problem NOUN
is AUX
the DET
side NOUN
effects NOUN
of ADP
these DET
. PUNCT
So ADV
far ADV
she PRON
has AUX
been AUX
prescribed VERB
Prozac PROPN
, PUNCT
Aurorix PROPN
, PUNCT
and CCONJ
tryptanol VERB
all DET
with ADP
different ADJ
but CCONJ
unbearable ADJ
side NOUN
effects NOUN
. PUNCT
The DET
Prozac PROPN
gave VERB
very ADV
bad ADJ
anxiety NOUN
/ SYM
jitters NOUN
and CCONJ
insomina PROPN
, PUNCT
it PRON
was AUX
impossible ADJ
to PART
sit VERB
still ADV
for ADP
more ADJ
than SCONJ
a DET
minute NOUN
or CCONJ
so ADV
. PUNCT
The DET
Aurorix PROPN
whilst SCONJ
having VERB
a DET
calming VERB
effect NOUN
, PUNCT
all DET
feelings NOUN
were AUX
lost VERB
and CCONJ
the DET
body NOUN
co NOUN
- NOUN
ordination NOUN
was AUX
similar ADJ
to ADP
a DET
drunken ADJ
person NOUN
. PUNCT
Her PRON
brain NOUN
was AUX
clouded VERB
over ADP
. PUNCT
The DET
tryptanol NOUN
gave VERB
tremors NOUN
in ADP
the DET
legs NOUN
and CCONJ
panic NOUN
attacks NOUN
along ADP
with ADP
unco- ADJ
ordination NOUN
occurred VERB
. PUNCT
She PRON
did AUX
not PART
know VERB
what PRON
she PRON
was AUX
doing VERB
as SCONJ
her PRON
brain NOUN
was AUX
" PUNCT
closed ADJ
down" NOUN
. PUNCT
Has AUX
anyone PRON
had AUX
similar ADJ
problems NOUN
and/or CCONJ
have AUX
any DET
suggestions NOUN
as SCONJ
to ADP
the DET
next ADJ
step?Thankyou NOUN
in ADP
advance NOUN
. PUNCT
Gordon PROPN
TaylorE PROPN
- PUNCT
mail NOUN
: PUNCT
blubird@penguin.equinox.gen.nzNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59616From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10557@blue.cis.pitt.edu NUM
> X
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R PROPN
Doyle PROPN
) PUNCT
writes::Being VERB
a DET
chronic ADJ
HBsAg PROPN
carrier NOUN
does AUX
not PART
necessarily ADV
mean VERB
the DET
patient NOUN
has AUX
chronic NOUN
: PUNCT
persistent ADJ
anything PRON
. PUNCT
Persons NOUN
who PRON
are AUX
chronic ADJ
carriers NOUN
may AUX
have AUX
no DET
clinical,:biochemical ADJ
, PUNCT
or CCONJ
histologic ADJ
evidence NOUN
of ADP
liver NOUN
disease NOUN
, PUNCT
or CCONJ
they PRON
may AUX
have AUX
chronic NOUN
: PUNCT
persistent PROPN
hepatitis PROPN
, PUNCT
chronic PROPN
active ADJ
hepatitis NOUN
, PUNCT
cirrhosis NOUN
, PUNCT
or CCONJ
hepatocellular NOUN
: PUNCT
carcinoma.::Most ADJ
cases NOUN
of ADP
chronic ADJ
persistent ADJ
hepatitis PROPN
( PUNCT
CPH PROPN
) PUNCT
are AUX
probably ADV
the DET
result NOUN
of ADP
: PUNCT
a DET
viral ADJ
infection NOUN
, PUNCT
although SCONJ
in ADP
a DET
good ADJ
number NOUN
of ADP
cases NOUN
the DET
cause NOUN
can AUX
not PART
be AUX
: PUNCT
determined VERB
. PUNCT
The DET
diagnosis NOUN
of ADP
CPH PROPN
is AUX
made VERB
on ADP
the DET
basis NOUN
of ADP
liver NOUN
biopsy NOUN
. PUNCT
It PRON
: PUNCT
consists VERB
of ADP
findings NOUN
of ADP
portal ADJ
inflammation NOUN
, PUNCT
an DET
intact ADJ
periportal ADJ
limiting NOUN
: PUNCT
plate NOUN
, PUNCT
and CCONJ
on ADP
occasion NOUN
isolated VERB
foci NOUN
of ADP
intralobular ADJ
necrosis NOUN
. PUNCT
But CCONJ
in ADP
contrast NOUN
: PUNCT
to PART
chronic VERB
active ADJ
hepatitis NOUN
( PUNCT
CAH PROPN
) PUNCT
there PRON
is AUX
no DET
periportal ADJ
inflammation NOUN
, PUNCT
: PUNCT
bridging VERB
necrosis NOUN
, PUNCT
or CCONJ
fibrosis NOUN
. PUNCT
: PUNCT
: PUNCT
CPH PROPN
has AUX
, PUNCT
indeed ADV
, PUNCT
an DET
excellent ADJ
prognosis NOUN
. PUNCT
If SCONJ
I PRON
had AUX
to PART
choose VERB
between ADP
CAH PROPN
and CCONJ
: PUNCT
CPH PROPN
there PRON
is AUX
no DET
question NOUN
I PRON
would AUX
also ADV
choose VERB
CPH PROPN
. PUNCT
However ADV
, PUNCT
as SCONJ
David PROPN
pointed VERB
: PUNCT
out ADV
, PUNCT
the DET
distinction NOUN
between ADP
the DET
two NUM
is AUX
not PART
as ADV
neat ADJ
as SCONJ
some DET
of ADP
us PRON
would AUX
have AUX
: PUNCT
it PRON
. PUNCT
The DET
histology NOUN
can AUX
sometimes ADV
be AUX
pretty ADV
equivocal ADJ
, PUNCT
with ADP
biopsies NOUN
showing VERB
: PUNCT
areas NOUN
compatible ADJ
with ADP
both DET
CPH PROPN
and CCONJ
CAH PROPN
. PUNCT
Maybe ADV
it PRON
is AUX
a DET
sampling ADJ
problem NOUN
. PUNCT
Maybe ADV
: PUNCT
it PRON
is AUX
a DET
continuum NOUN
. PUNCT
I PRON
do AUX
n't PART
know VERB
. PUNCT
Darn INTJ
. PUNCT
  SPACE
Just ADV
when ADV
I PRON
think VERB
I PRON
understand VERB
something PRON
someone PRON
who PRON
knows VERB
thepathology NOUN
has AUX
to PART
burst VERB
my PRON
bubble NOUN
:-( PUNCT
  SPACE
We PRON
'd AUX
better ADV
not PART
start VERB
talking VERB
aboutglomerular ADJ
diseases NOUN
, PUNCT
then ADV
I PRON
'll AUX
really ADV
get AUX
depressed ADJ
. PUNCT
Seriously ADV
though ADV
, PUNCT
I PRON
wonder VERB
how ADV
someone PRON
with ADP
CPH PROPN
would AUX
end VERB
up ADP
getting VERB
abiopsy ADJ
in ADP
the DET
first ADJ
place NOUN
? PUNCT
  SPACE
My PRON
understanding NOUN
( PUNCT
and CCONJ
feel VERB
free ADJ
to PART
correct VERB
me)is NOUN
that SCONJ
the DET
enzymes NOUN
are AUX
at ADP
worst ADJ
mildly ADV
elevated VERB
, PUNCT
with ADP
overall ADJ
normalhepatic ADJ
function NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
the DET
only ADJ
clue NOUN
might AUX
be AUX
a DET
history NOUN
ofprior ADJ
HepB PROPN
infection NOUN
and CCONJ
a DET
positive ADJ
HepB PROPN
- PUNCT
sAg PROPN
. PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
indeed ADV
on ADP
acontinuum NOUN
with ADP
CAH PROPN
, PUNCT
and CCONJ
the DET
distinction NOUN
merely ADV
one NUM
of ADP
pathology NOUN
andprognosis NOUN
, PUNCT
but CCONJ
otherwise ADV
identical ADJ
clinical ADJ
features?-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59617From NUM
: PUNCT
werner@soe.berkeley.edu PROPN
( PUNCT
John PROPN
Werner)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Help VERB
with ADP
antidepressants NOUN
requested VERB
. PUNCT
In ADP
article NOUN
< X
736250544snx@penguin.equinox.gen.nz>,blubird@penguin.equinox.gen.nz NUM
( PUNCT
Gordon PROPN
Taylor PROPN
) PUNCT
wrote VERB
: PUNCT
> X
The DET
Prozac PROPN
gave VERB
very ADV
bad ADJ
anxiety NOUN
/ SYM
jitters NOUN
and CCONJ
insomina PROPN
, PUNCT
it PRON
was AUX
impossible ADJ
to PART
> X
sit VERB
still ADV
for ADP
more ADJ
than SCONJ
a DET
minute NOUN
or CCONJ
so ADV
. PUNCT
I PRON
tried VERB
Prozac PROPN
a DET
few ADJ
months NOUN
ago ADV
, PUNCT
and CCONJ
had AUX
some DET
insomnia NOUN
from ADP
it PRON
, PUNCT
but CCONJ
noanxiety NOUN
or CCONJ
jitters NOUN
. PUNCT
  SPACE
I PRON
probably ADV
could AUX
have AUX
lived VERB
with ADP
the DET
insomnia NOUN
if SCONJ
theProzac PROPN
had AUX
done VERB
any DET
good ADJ
, PUNCT
but CCONJ
it PRON
only ADV
provided VERB
a DET
tiny ADJ
benefit NOUN
. PUNCT
  SPACE
Maybebecause VERB
the DET
person NOUN
who PRON
prescribed VERB
it PRON
did AUX
n't PART
know VERB
much ADJ
and CCONJ
gave VERB
up ADP
after ADP
a20 PROPN
mg PROPN
dose PROPN
did AUX
n't PART
work VERB
. PUNCT
Now ADV
I PRON
'm AUX
seeing VERB
a DET
psychiatrist NOUN
who PRON
has AUX
put VERB
me PRON
on ADP
Zoloft PROPN
( PUNCT
another DET
serotoninreuptake NOUN
inhibitor NOUN
like SCONJ
Prozac PROPN
) PUNCT
. PUNCT
  SPACE
One NUM
pill NOUN
/ SYM
day NOUN
( PUNCT
50 NUM
mg PROPN
) PUNCT
seemed VERB
to PART
help VERB
some DET
. PUNCT
Now ADV
I PRON
'm AUX
trying VERB
100mg PROPN
/ SYM
day NOUN
. PUNCT
  SPACE
Zoloft PROPN
has AUX
fewer ADJ
and CCONJ
milder VERB
side NOUN
effects NOUN
thanProzac NOUN
. PUNCT
  SPACE
I PRON
think VERB
my PRON
doctor NOUN
said VERB
that SCONJ
only ADV
4 NUM
% NOUN
of ADP
the DET
people NOUN
taking VERB
Zolofthave PROPN
to PART
discontinue VERB
it PRON
because SCONJ
of ADP
side NOUN
effects NOUN
. PUNCT
  SPACE
The DET
only ADJ
problem NOUN
I'mhaving PROPN
is AUX
some DET
minor ADJ
GI PROPN
distress NOUN
, PUNCT
but CCONJ
nothing PRON
too ADV
annoying ADJ
. PUNCT
  SPACE
Hopefully ADV
theZoloft PROPN
will AUX
work VERB
. PUNCT
  SPACE
Maybe ADV
your PRON
friend NOUN
should AUX
try VERB
this DET
one NOUN
next ADV
. PUNCT
My PRON
psychiatrist NOUN
's PART
strategy NOUN
seems VERB
to PART
be AUX
to PART
first ADV
try VERB
one NUM
of ADP
the DET
serotonindrugs NOUN
, PUNCT
usually ADV
Prozac VERB
. PUNCT
  SPACE
If SCONJ
that DET
works VERB
, PUNCT
great ADJ
. PUNCT
  SPACE
If SCONJ
it PRON
works VERB
but CCONJ
has AUX
too ADV
manyside ADJ
effects NOUN
, PUNCT
try VERB
Zoloft PROPN
or CCONJ
maybe ADV
Paxil PROPN
. PUNCT
  SPACE
If SCONJ
the DET
serotonin NOUN
drugs NOUN
do AUX
n't PART
workat VERB
all DET
, PUNCT
try VERB
one NUM
of ADP
the DET
tricyclics NOUN
like SCONJ
desipramine.> NOUN
... PUNCT
suggestions NOUN
as SCONJ
to ADP
the DET
next ADJ
step?Having NOUN
a DET
doctor NOUN
who PRON
knows VERB
something PRON
about ADP
antidepressants NOUN
can AUX
make VERB
a DET
bigdifference NOUN
. PUNCT
  SPACE
My PRON
psychiatrist NOUN
claims VERB
that SCONJ
most ADJ
GPs NOUN
and CCONJ
FPs NOUN
do AUX
n't PART
have AUX
muchexperience NOUN
in ADP
this DET
area NOUN
, PUNCT
and CCONJ
from ADP
what PRON
I PRON
've AUX
seen VERB
I PRON
'm AUX
inclined ADJ
to ADP
believehim VERB
. PUNCT
  SPACE
I PRON
think VERB
I PRON
know VERB
more ADJ
about ADP
antidepressants NOUN
than SCONJ
the DET
people NOUN
at ADP
myfamily ADV
practitioner PROPN
's PART
office NOUN
. PUNCT
Disclaimer NOUN
: PUNCT
I PRON
'm AUX
not PART
a DET
doctor NOUN
; PUNCT
what PRON
I PRON
know VERB
about ADP
this DET
comes VERB
from ADP
talking VERB
tomy NOUN
psychiatrist NOUN
and CCONJ
reading NOUN
sci.med VERB
. PUNCT
  SPACE
--John PROPN
Werner PROPN
                          SPACE
werner@soe.berkeley.eduUC PROPN
Berkeley PROPN
School PROPN
of ADP
Education PROPN
      SPACE
510 NUM
- PUNCT
596 NUM
- PUNCT
5868Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59619From NUM
: PUNCT
stanley@skyking VERB
. PUNCT
OCE.ORST.EDU PROPN
( PUNCT
John PROPN
Stanley)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Krillean PROPN
PhotographyIn PROPN
article NOUN
< X
C6Bot5.12A@r-node.hub.org PROPN
> X
taob@r-node.hub.org PROPN
writes:>In PROPN
article NOUN
< X
C65oIL.436@vuse.vanderbilt.edu PROPN
> X
, PUNCT
Alexander PROPN
P. PROPN
Zijdenbos PROPN
writes VERB
... PUNCT
> X
> X
I PRON
am AUX
neither CCONJ
a DET
real ADJ
believer NOUN
, PUNCT
nor CCONJ
a DET
disbeliever NOUN
when ADV
it PRON
comes VERB
to ADP
> X
    SPACE
But CCONJ
no DET
one NOUN
( PUNCT
or CCONJ
at ADP
least ADJ
, PUNCT
not PART
many ADJ
people NOUN
) PUNCT
are AUX
trying VERB
to PART
pass VERB
off ADP
GodWill NOUN
you PRON
please INTJ
keep VERB
this DET
crap NOUN
out SCONJ
of ADP
sci.image.processing?Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59620From NUM
: PUNCT
collopy@leland NOUN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Paul PROPN
Dennis PROPN
Collopy)Subject PROPN
: PUNCT
re ADP
: PUNCT
antidepressantsWithout ADV
restating VERB
the DET
thread NOUN
going VERB
here ADV
..... PUNCT
Zoloft NOUN
is AUX
a DET
stimulating ADJ
antidepressant NOUN
. PUNCT
It PRON
is AUX
unfortunate ADJ
that SCONJ
antidepressant ADJ
therapy NOUN
is AUX
trial NOUN
and CCONJ
error NOUN
, PUNCT
butif CCONJ
it PRON
is AUX
any DET
help NOUN
, PUNCT
there PRON
are AUX
a DET
lot NOUN
of ADP
people NOUN
using VERB
the DET
side NOUN
effects NOUN
ofthe VERB
many ADJ
medications NOUN
to PART
help VERB
manage VERB
other ADJ
conditions NOUN
. PUNCT
Hang VERB
in ADV
there ADV
, PUNCT
maybe ADV
someday ADV
a DET
" PUNCT
brain NOUN
chemistry NOUN
set NOUN
" PUNCT
will AUX
be AUX
availableand ADP
all DET
the DET
serotonin NOUN
questions NOUN
will AUX
have AUX
answers NOUN
. PUNCT
Please INTJ
, PUNCT
no DET
flames NOUN
........ PUNCT
I PRON
have AUX
enough ADJ
to PART
deal VERB
with ADP
   SPACE
: PUNCT
) PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59621From NUM
: PUNCT
haynes@cats.ucsc.edu PROPN
( PUNCT
Jim PROPN
Haynes)Subject PROPN
: PUNCT
Is AUX
this DET
a DET
total ADJ
or CCONJ
partial ADJ
scam?There NOUN
's AUX
a DET
chiropractor NOUN
who PRON
has AUX
a DET
stand NOUN
in ADP
the DET
middle NOUN
of ADP
a DET
shoppingmall NOUN
, PUNCT
offering VERB
free ADJ
examinations NOUN
. PUNCT
  SPACE
Part NOUN
of ADP
the DET
process NOUN
involves VERB
amultiple NOUN
- PUNCT
jointed VERB
sensor NOUN
arm NOUN
and CCONJ
a DET
computer NOUN
that PRON
says VERB
in ADP
a DET
computer NOUN
- PUNCT
sounding VERB
voice NOUN
" PUNCT
digitize VERB
left VERB
PSIS NOUN
" PUNCT
" PUNCT
digitize VERB
right ADJ
PSIS NOUN
" PUNCT
" PUNCT
digitizeC7 X
" PUNCT
" PUNCT
please INTJ
stand VERB
with ADP
spine NOUN
in ADP
neutral ADJ
position NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
wonderingwhether NOUN
this DET
does AUX
n't PART
really ADV
measure VERB
anything PRON
and CCONJ
the DET
computer NOUN
voiceis VERB
to PART
impress VERB
the DET
victims NOUN
, PUNCT
or CCONJ
whether SCONJ
it PRON
is AUX
measuring VERB
somethingthat ADP
chiropractors NOUN
think VERB
is AUX
useful ADJ
to ADP
measure.-- PROPN
haynes@cats.ucsc.eduhaynes@cats.bitnet"Ya NOUN
can AUX
talk VERB
all DET
ya PROPN
wanna PROPN
, PUNCT
but CCONJ
it PRON
's AUX
dif'rent ADJ
than SCONJ
it PRON
was!""No VERB
it PRON
ai VERB
nt PART
! PUNCT
  SPACE
But CCONJ
ya PRON
got VERB
ta PART
know VERB
the DET
territory NOUN
! PUNCT
" PUNCT
        SPACE
Meredith PROPN
Willson PROPN
: PUNCT
" PUNCT
The DET
Music NOUN
Man"Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59622From NUM
: PUNCT
romdas@uclink.berkeley.edu PROPN
( PUNCT
Ella PROPN
I PRON
Baff)Subject VERB
: PUNCT
IS VERB
THIS DET
A DET
SCAM NOUN
? PUNCT
    SPACE
Jim PROPN
Haynes PROPN
wants VERB
to PART
know VERB
the DET
following NOUN
is AUX
a DET
scam NOUN
.... PUNCT
       SPACE
There PRON
's AUX
a DET
chiropractor NOUN
who PRON
has AUX
a DET
stand NOUN
in ADP
the DET
middle NOUN
of ADP
a DET
shopping NOUN
       SPACE
mall NOUN
, PUNCT
offering VERB
free ADJ
examinations NOUN
. PUNCT
  SPACE
Part NOUN
of ADP
the DET
process NOUN
involves VERB
a DET
       SPACE
multiple NOUN
- PUNCT
jointed VERB
sensor NOUN
arm NOUN
and CCONJ
a DET
computer NOUN
that PRON
says VERB
in ADP
a DET
computer- ADJ
       SPACE
sounding VERB
voice NOUN
" PUNCT
digitize VERB
left VERB
PSIS NOUN
" PUNCT
" PUNCT
digitize VERB
right ADJ
PSIS NOUN
" PUNCT
" PUNCT
digitize VERB
       SPACE
C7 NOUN
" PUNCT
" PUNCT
please INTJ
stand VERB
with ADP
spine NOUN
in ADP
neutral ADJ
position NOUN
" PUNCT
. PUNCT
  SPACE
I PRON
'm AUX
wondering VERB
       SPACE
whether SCONJ
this DET
does AUX
n't PART
really ADV
measure VERB
anything PRON
and CCONJ
the DET
computer NOUN
voice NOUN
       SPACE
is AUX
to PART
impress VERB
the DET
victims NOUN
, PUNCT
or CCONJ
whether SCONJ
it PRON
is AUX
measuring VERB
something PRON
       SPACE
that PRON
chiropractors NOUN
think VERB
is AUX
useful ADJ
to PART
measure VERB
. PUNCT
Earth NOUN
to PART
sci.med....If PROPN
it PRON
looks VERB
like SCONJ
a DET
duck NOUN
... PUNCT
and CCONJ
quacks VERB
like SCONJ
a DET
duck NOUN
...... PUNCT
This DET
is AUX
a DET
TOTAL NOUN
scam NOUN
. PUNCT
Since SCONJ
the DET
beginning NOUN
of ADP
chiropraxis PROPN
, PUNCT
the DET
chiropractor NOUN
has AUX
tried VERB
to PART
sell VERB
The DET
Subluxation PROPN
as SCONJ
The DET
Problem PROPN
and CCONJ
then ADV
sell VERB
themselves PRON
andtheir VERB
Adjustments NOUN
as SCONJ
The DET
Solution PROPN
. PUNCT
The DET
Chiropractic PROPN
Subluxation PROPN
is AUX
a DET
delusional ADJ
diagnosis NOUN
and CCONJ
the DET
Adjustments NOUN
of ADP
Subluxations PROPN
by ADP
extension NOUN
constitute NOUN
a DET
delusional ADJ
medicine NOUN
. PUNCT
The DET
wide ADJ
spectrum NOUN
of ADP
chiropractic ADJ
Techniques NOUN
ALL DET
have AUX
their PRON
own ADJ
methods NOUN
for ADP
detecting VERB
Spinal PROPN
Demons PROPN
and CCONJ
unique ADJ
methodolgies NOUN
for ADP
Excorcizing PROPN
Them PRON
. PUNCT
The DET
computer NOUN
approach NOUN
is AUX
an DET
attempt NOUN
to PART
' PUNCT
sell VERB
with ADP
science NOUN
' PUNCT
but CCONJ
this DET
device NOUN
is AUX
nothing PRON
more ADJ
than SCONJ
a DET
' PUNCT
high ADJ
- PUNCT
tech NOUN
' PUNCT
Subluxation PROPN
Detector PROPN
..... PUNCT
and CCONJ
in ADP
the DET
end NOUN
... PUNCT
AMAZINGLY PROPN
... PUNCT
it PRON
will AUX
show VERB
the DET
potential ADJ
' PUNCT
patient NOUN
' PUNCT
to PART
suffer VERB
from ADP
... PUNCT
VS PROPN
...... PUNCT
Vertebral PROPN
Subluxation PROPN
.... PUNCT
The DET
Silent ADJ
Killer!John NOUN
Badanes PROPN
, PUNCT
DC PROPN
, PUNCT
CAromdas@uclink.berkeley.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59623From NUM
: PUNCT
mrbulli@btoy1.rochester.NY.US PROPN
( PUNCT
Mr. PROPN
Bulli PROPN
( PUNCT
private ADJ
account))Subject NOUN
: PUNCT
Re ADP
: PUNCT
Vasectomy NOUN
: PUNCT
Health PROPN
Effects PROPN
on ADP
Women?On SYM
28 NUM
Apr PROPN
93 NUM
20:54:04 NUM
GMT PROPN
joshm@yang.earlham.edu PROPN
wrote VERB
: PUNCT
: PUNCT
In ADP
article NOUN
< X
1993Apr27.110440.5069@nic.csu.net NUM
> X
, PUNCT
eskagerb@nermal.santarosa.edu PROPN
( PUNCT
Eric PROPN
Skagerberg PROPN
) PUNCT
writes VERB
: PUNCT
: PUNCT
> X
Does AUX
anyone PRON
know VERB
of ADP
any DET
studies NOUN
done VERB
on ADP
the DET
long ADJ
- PUNCT
term NOUN
health NOUN
effects NOUN
of ADP
a DET
: PUNCT
> X
man NOUN
's PART
vasectomy NOUN
on ADP
his PRON
female ADJ
partner NOUN
? PUNCT
: PUNCT
> X
: PUNCT
> X
... PUNCT
: PUNCT
I PRON
've AUX
heard VERB
of ADP
NO DET
studies NOUN
, PUNCT
but CCONJ
speculation NOUN
: PUNCT
: PUNCT
Why ADV
on ADP
_ DET
earth NOUN
_ PROPN
would AUX
there PRON
be AUX
any DET
effect NOUN
on ADP
women NOUN
's PART
health NOUN
? PUNCT
  SPACE
That DET
's AUX
about ADP
: PUNCT
the DET
most ADV
absurd ADJ
idea NOUN
I PRON
've AUX
heard VERB
since SCONJ
Ted PROPN
Kaldis PROPN
's PART
claim NOUN
that SCONJ
no DET
more ADJ
than SCONJ
: PUNCT
35,000 NUM
people NOUN
would AUX
march VERB
on ADP
Washington PROPN
. PUNCT
: PUNCT
Ok INTJ
, PUNCT
_ DET
one PRON
_ PROPN
point NOUN
: PUNCT
  SPACE
Greatly ADV
reduced ADJ
chance NOUN
of ADP
pregnancy NOUN
. PUNCT
  SPACE
But CCONJ
that DET
's AUX
it PRON
. PUNCT
: PUNCT
--JoshWell PUNCT
, PUNCT
there PRON
might AUX
be AUX
another DET
: PUNCT
Since SCONJ
I PRON
'm AUX
sterile ADJ
my PRON
wife NOUN
can AUX
enjoy VERB
sex NOUN
without ADP
fear NOUN
of ADP
getting VERB
pregnant.-- ADV
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
                             SPACE
_ PROPN
_ PROPN
        SPACE
_ PROPN
  SPACE
_ PROPN
    SPACE
/ SYM
   SPACE
/ SYM
                           SPACE
/ SYM
  SPACE
) PUNCT
      SPACE
// SYM
// SYM
                           SPACE
/ SYM
   SPACE
/ SYM
_ PROPN
  SPACE
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
_ PROPN
. PUNCT
  SPACE
_ PROPN
      SPACE
/-- PUNCT
< X
  SPACE
. PUNCT
. PUNCT
// PUNCT
// SYM
o X
_ NOUN
_ PROPN
_ PROPN
_ PROPN
  SPACE
_ PROPN
, PUNCT
  SPACE
_ PROPN
  SPACE
_ PROPN
_ PROPN
( PUNCT
_ PROPN
/ SYM
   SPACE
/ PUNCT
/ SYM
_ PROPN
( PUNCT
_ PROPN
) PUNCT
/ SYM
/ SYM
/ SYM
< X
_ PROPN
( PUNCT
_ PROPN
/|_/ PUNCT
_ PROPN
) PUNCT
    SPACE
/___/_(_/_</_</_<_/ PUNCT
/ PUNCT
< X
_ PROPN
( PUNCT
_ PROPN
) PUNCT
_ PROPN
< X
/_/ PUNCT
( PUNCT
_ INTJ
       SPACE
UUCP PROPN
: PUNCT
     SPACE
.. PUNCT
rutgers!ur PROPN
- PUNCT
valhalla!btoy1!mrbulli PROPN
      SPACE
/| PUNCT
  SPACE
Compu$erve NOUN
: PUNCT
       SPACE
Internet NOUN
: PUNCT
       SPACE
mrbulli@btoy1.rochester.NY.US PROPN
     SPACE
|/ PROPN
    SPACE
76535,2221Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59624From NUM
: PUNCT
sdl@linus.mitre.org PROPN
( PUNCT
Steven PROPN
D. PROPN
Litvintchouk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Antihistamine VERB
for ADP
sleep NOUN
aidIn NOUN
article NOUN
< X
1993Apr30.202808.19204@ux1.cts.eiu.edu PROPN
> X
cfaks@ux1.cts.eiu.edu NOUN
( PUNCT
Alice PROPN
Sanders PROPN
) PUNCT
writes VERB
: PUNCT
> X
But CCONJ
after ADP
you PRON
have AUX
taken VERB
antihistamines NOUN
for ADP
a DET
few ADJ
nights NOUN
, PUNCT
does AUX
n't PART
it PRON
start VERB
> X
to PART
have AUX
a DET
paradoxical ADJ
effect NOUN
? PUNCT
  SPACE
I PRON
used VERB
to PART
take VERB
one NUM
every DET
night NOUN
for ADP
> NUM
allergies NOUN
and CCONJ
could AUX
n't PART
figure VERB
out ADP
why ADV
I PRON
developed VERB
bad ADJ
insomnia NOUN
. PUNCT
  SPACE
Insomnia PROPN
is AUX
a DET
known VERB
, PUNCT
but CCONJ
relatively ADV
infrequent ADJ
, PUNCT
side NOUN
- PUNCT
effect NOUN
ofdiphenhydramine NOUN
. PUNCT
  SPACE
For ADP
most ADJ
people NOUN
, PUNCT
this DET
does AUX
not PART
occur VERB
. PUNCT
  SPACE
On ADP
the DET
other ADJ
hand NOUN
, PUNCT
most ADJ
peoplecan NOUN
build VERB
up ADP
a DET
tolerance NOUN
to ADP
an DET
antihistamine NOUN
with ADP
extended ADJ
use.(Allergy ADJ
sufferers NOUN
are AUX
often ADV
switched VERB
from ADP
one NUM
antihistamine NOUN
toanother NOUN
to PART
avoid VERB
this.)--Steven PROPN
LitvintchoukMITRE PROPN
Corporation202 PROPN
Burlington PROPN
RoadBedford PROPN
, PUNCT
MA PROPN
  SPACE
01730 NUM
- SYM
1420Fone NUM
: SYM
  SPACE
( PUNCT
617)271 NUM
- PUNCT
7753ARPA NUM
: PUNCT
  SPACE
sdl@mitre.orgUUCP X
: PUNCT
  SPACE
linus!sdlNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59625From NUM
: PUNCT
sdl@linus.mitre.org PROPN
( PUNCT
Steven PROPN
D. PROPN
Litvintchouk)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Nose NOUN
PickingIn PROPN
article NOUN
< X
stephen.736228799@mont PROPN
> X
stephen@mont.cs.missouri.edu NUM
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes VERB
: PUNCT
> X
1 NUM
) PUNCT
  SPACE
Does AUX
it PRON
cause VERB
the DET
body NOUN
any DET
harm NOUN
if SCONJ
one NOUN
picks VERB
one PRON
's PART
nose NOUN
? PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
> X
might AUX
it PRON
lead VERB
to ADP
a DET
loss NOUN
of ADP
ability NOUN
to ADP
smell?It PROPN
may AUX
be AUX
a DET
good ADJ
way NOUN
to PART
catch VERB
a DET
cold NOUN
. PUNCT
  SPACE
It PRON
's AUX
easy ADJ
to PART
pick VERB
up ADP
coldviruses NOUN
on ADP
your PRON
fingers NOUN
, PUNCT
either CCONJ
from ADP
touching VERB
a DET
contaminated ADJ
surface NOUN
, PUNCT
or CCONJ
by ADP
shaking VERB
hands NOUN
with ADP
someone PRON
that PRON
has AUX
a DET
cold NOUN
. PUNCT
  SPACE
Then ADV
putting VERB
yourfingers NOUN
in ADP
your PRON
nose NOUN
will AUX
transfer VERB
the DET
viruses NOUN
to ADP
your PRON
nose.--Steven VERB
LitvintchoukMITRE PROPN
Corporation202 PROPN
Burlington PROPN
RoadBedford PROPN
, PUNCT
MA PROPN
  SPACE
01730 NUM
- SYM
1420Fone NUM
: SYM
  SPACE
( PUNCT
617)271 NUM
- PUNCT
7753ARPA NUM
: PUNCT
  SPACE
sdl@mitre.orgUUCP X
: PUNCT
  SPACE
linus!sdlNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59626From NUM
: PUNCT
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R NOUN
Doyle)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10587@blue.cis.pitt.edu NUM
> X
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert PROPN
) PUNCT
writes:>>Seriously PROPN
though ADV
, PUNCT
I PRON
wonder VERB
how ADV
someone PRON
with ADP
CPH PROPN
would AUX
end VERB
up ADP
getting VERB
a DET
> X
biopsy NOUN
in ADP
the DET
first ADJ
place NOUN
? PUNCT
  SPACE
My PRON
understanding NOUN
( PUNCT
and CCONJ
feel VERB
free ADJ
to PART
correct VERB
me)>is PROPN
that SCONJ
the DET
enzymes NOUN
are AUX
at ADP
worst ADJ
mildly ADV
elevated VERB
, PUNCT
with ADP
overall ADJ
normal ADJ
> NUM
hepatic ADJ
function NOUN
. PUNCT
  SPACE
I PRON
would AUX
think VERB
that SCONJ
the DET
only ADJ
clue NOUN
might AUX
be AUX
a DET
history NOUN
of ADP
> X
prior ADJ
HepB NUM
infection NOUN
and CCONJ
a DET
positive ADJ
HepB PROPN
- PUNCT
sAg PROPN
. PUNCT
  SPACE
Or CCONJ
is AUX
it PRON
indeed ADV
on ADP
a DET
> X
continuum NOUN
with ADP
CAH PROPN
, PUNCT
and CCONJ
the DET
distinction NOUN
merely ADV
one NUM
of ADP
pathology NOUN
and CCONJ
> X
prognosis NOUN
, PUNCT
but CCONJ
otherwise ADV
identical ADJ
clinical ADJ
features?>Chronic NUM
persistent ADJ
hepatitis NOUN
is AUX
usually ADV
diagnosed VERB
when ADV
someone PRON
does AUX
a DET
liverbiopsy NOUN
on ADP
a DET
patient NOUN
that PRON
has AUX
persistently ADV
elevated VERB
serum ADJ
transaminases NOUN
monthsafter VERB
a DET
bout NOUN
of ADP
acute ADJ
viral ADJ
hepatitis NOUN
, PUNCT
or CCONJ
when ADV
someone PRON
is AUX
found VERB
to PART
havepersistently ADV
elevated VERB
transaminases NOUN
on ADP
routine ADJ
screening NOUN
tests NOUN
. PUNCT
The DET
degree NOUN
ofelevation NOUN
( PUNCT
in ADP
the DET
serum ADJ
transaminases NOUN
) PUNCT
can AUX
be AUX
trivial ADJ
, PUNCT
or CCONJ
as ADV
much ADJ
as SCONJ
ten NUM
timesnormal NOUN
. PUNCT
Other ADJ
blood NOUN
chemistries NOUN
are AUX
usually ADV
normal ADJ
. PUNCT
As SCONJ
a DET
rule NOUN
, PUNCT
patients NOUN
with ADP
CPH PROPN
have AUX
no DET
clinical ADJ
signs NOUN
of ADP
liver NOUN
disease NOUN
. PUNCT
Chronic ADJ
active ADJ
hepatitis NOUN
can AUX
also ADV
be AUX
asymptomatic ADJ
or CCONJ
minimally ADV
symptomatic ADJ
, PUNCT
atleast ADV
initially ADV
, PUNCT
and CCONJ
that DET
's AUX
why ADV
it PRON
's AUX
important ADJ
to PART
tell VERB
them PRON
apart ADV
by ADP
means NOUN
ofa PROPN
biopsy PROPN
. PUNCT
The DET
patient NOUN
with ADP
CPH PROPN
only ADV
needs VERB
to PART
be AUX
reassured VERB
. PUNCT
The DET
patient ADJ
withCAH NOUN
needs VERB
to PART
be AUX
treated.======================================Howard DET
Doyledoyle+@pitt.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59627From NUM
: PUNCT
sjha+@cs.cmu.edu PROPN
( PUNCT
Somesh PROPN
Jha)Subject X
: PUNCT
What PRON
is AUX
intersection NOUN
syndrome NOUN
and CCONJ
Feldene?Hi NUM
: PUNCT
I PRON
went VERB
to ADP
the DET
orthopedist NOUN
on ADP
Tuesday PROPN
. PUNCT
He PRON
diagnosed VERB
me PRON
as SCONJ
having"intersection NOUN
syndrome NOUN
" PUNCT
. PUNCT
He PRON
prescribed VERB
Feldene PROPN
for ADP
me PRON
. PUNCT
I PRON
wantto NOUN
know VERB
more ADJ
about ADP
the DET
disease NOUN
and CCONJ
the DET
drug NOUN
. PUNCT
ThanksSomeshNewsgroup VERB
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59628From NUM
: PUNCT
j.thornton@hawkesbury.uws.EDU.AU X
( PUNCT
Jason PROPN
Thornton PROPN
       SPACE
x640)Subject NOUN
: PUNCT
Cancer NOUN
of ADP
the DET
testisCould NOUN
someone PRON
give VERB
me PRON
some DET
information NOUN
on ADP
the DET
cause NOUN
, PUNCT
pathophysiology NOUN
and CCONJ
clinical ADJ
manifestations NOUN
and CCONJ
treatment NOUN
of ADP
this DET
type NOUN
of ADP
cancer NOUN
. PUNCT
Thank VERB
you PRON
in ADP
advance NOUN
, PUNCT
Jason PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59629From NUM
: PUNCT
ashwin@gatech.edu X
( PUNCT
Ashwin PROPN
Ram)Subject X
: PUNCT
How ADV
often ADV
do AUX
kids NOUN
fall VERB
sick ADJ
? PUNCT
etc X
. PUNCT
Our PRON
20-month NUM
son NOUN
has AUX
started VERB
falling VERB
sick ADJ
quite ADV
often ADV
every DET
since SCONJ
hestarted VERB
going VERB
to ADP
day NOUN
care NOUN
. PUNCT
  SPACE
He PRON
was AUX
at ADP
home NOUN
for ADP
the DET
first ADJ
year NOUN
and CCONJ
he PRON
didnot ADV
fall VERB
sick ADJ
even ADV
once ADV
. PUNCT
  SPACE
Now ADV
it PRON
seems VERB
like SCONJ
he PRON
has AUX
some DET
sort NOUN
of ADP
cold ADJ
orflu NOUN
pretty ADV
much ADV
once SCONJ
a DET
month NOUN
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
time NOUN
the DET
cold ADJ
leads VERB
to ADP
an DET
earinfection NOUN
as ADV
well ADV
, PUNCT
with ADP
the DET
result NOUN
that SCONJ
he PRON
ends VERB
up ADP
being AUX
on ADP
antibiotics3 NOUN
weeks NOUN
out SCONJ
of ADP
4 NUM
. PUNCT
  SPACE
I PRON
know VERB
kids NOUN
in ADP
day NOUN
care NOUN
fall NOUN
sick ADV
more ADV
often ADV
, PUNCT
but CCONJ
weare NOUN
beginning NOUN
to PART
wonder VERB
how ADV
often ADV
" PUNCT
more ADV
often ADV
" PUNCT
really ADV
is AUX
, PUNCT
whether SCONJ
ourson NOUN
is AUX
more ADV
susceptible ADJ
or CCONJ
has AUX
lower ADJ
immunity NOUN
than SCONJ
average ADJ
, PUNCT
what PRON
thelonger NOUN
- PUNCT
term NOUN
effects NOUN
of ADP
constantly ADV
being AUX
sick ADJ
and CCONJ
taking ADJ
antibiotics NOUN
are AUX
, PUNCT
and CCONJ
what PRON
we PRON
can AUX
do AUX
to PART
build VERB
up ADP
his PRON
resistance NOUN
. PUNCT
  SPACE
He PRON
really ADV
enjoys VERB
his PRON
daycare NOUN
and CCONJ
we PRON
think VERB
it PRON
's AUX
great ADJ
too ADV
, PUNCT
but CCONJ
we PRON
are AUX
beginning VERB
to PART
wonder NOUN
whetherwe NOUN
should AUX
think VERB
about ADP
getting VERB
a DET
nanny NOUN
. PUNCT
Are AUX
there PRON
any DET
studies NOUN
that PRON
can AUX
help VERB
answer VERB
some DET
of ADP
these DET
questions?-- NOUN
How ADV
often ADV
do AUX
kids NOUN
in ADP
their PRON
first ADJ
, PUNCT
second ADJ
and CCONJ
third ADJ
years NOUN
fall VERB
sick?How PROPN
often ADV
do AUX
they PRON
get AUX
colds NOUN
, PUNCT
flus NOUN
, PUNCT
ear NOUN
infections NOUN
? PUNCT
  SPACE
Is AUX
there PRON
any DET
data NOUN
onhome NOUN
care NOUN
vs. ADP
day NOUN
care?-- PROPN
Does AUX
being AUX
sick ADJ
" PUNCT
build VERB
immunity NOUN
" PUNCT
( PUNCT
leading VERB
to ADP
less ADJ
illness NOUN
later),does PUNCT
it PRON
make VERB
kids NOUN
" PUNCT
weaker ADJ
" PUNCT
( PUNCT
leading VERB
to ADP
more ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
or CCONJ
does AUX
itnot ADV
have AUX
any DET
long ADJ
term NOUN
effect?-- NOUN
Does AUX
taking VERB
antibiotics NOUN
on ADP
a DET
regular ADJ
basis NOUN
have AUX
any DET
negative ADJ
longterm NOUN
effects?-- PROPN
How ADV
does AUX
one PRON
tell VERB
if SCONJ
a DET
child NOUN
is AUX
more ADV
susceptible ADJ
to ADP
illness NOUN
thannormal PROPN
, PUNCT
and CCONJ
what PRON
does AUX
one PRON
do AUX
about ADP
it?-- NUM
Is AUX
there PRON
any DET
way NOUN
to PART
build VERB
immunity NOUN
and CCONJ
resistance?Any NOUN
data NOUN
, PUNCT
information NOUN
or CCONJ
advice NOUN
relating VERB
to ADP
this DET
would AUX
be AUX
muchappreciated VERB
. PUNCT
  SPACE
Thanks NOUN
a DET
lot NOUN
. PUNCT
Ashwin PROPN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59630From NUM
: PUNCT
Lawrence PROPN
Curcio PROPN
< X
lc2b+@andrew.cmu.edu>Subject NOUN
: PUNCT
Athlete PROPN
's PART
HeartI've NOUN
read VERB
that SCONJ
exercise NOUN
makes VERB
the DET
heart NOUN
pump VERB
more ADJ
blood NOUN
at ADP
a DET
stroke NOUN
, PUNCT
andthat ADP
it PRON
also ADV
makes VERB
the DET
heart NOUN
pumb NOUN
slower ADJ
, PUNCT
in ADP
order NOUN
to PART
make VERB
up ADP
for ADP
thegreater NOUN
volume NOUN
. PUNCT
My PRON
Internist PROPN
, PUNCT
who PRON
diagnosed VERB
my PRON
AV NOUN
block NOUN
, PUNCT
slow ADJ
heart NOUN
rateand PROPN
PVC PROPN
's PART
, PUNCT
told VERB
me PRON
something PRON
different ADJ
. PUNCT
She PRON
says VERB
that SCONJ
heart NOUN
rate NOUN
isassociated VERB
with ADP
the DET
electrical ADJ
properties NOUN
of ADP
the DET
hear PROPN
muscle NOUN
, PUNCT
not PART
itssize VERB
. PUNCT
Exercise NOUN
lowers VERB
heart NOUN
rate NOUN
and CCONJ
increases VERB
stroke NOUN
volume NOUN
, PUNCT
but CCONJ
theeffects NOUN
are AUX
unrelated ADJ
except SCONJ
for ADP
their PRON
common ADJ
source NOUN
. PUNCT
The DET
AV PROPN
block NOUN
, PUNCT
sheasserts NOUN
, PUNCT
is AUX
another DET
electrical ADJ
effect NOUN
, PUNCT
which PRON
is AUX
irreversable ADJ
- PUNCT
even ADV
whenexercise NOUN
is AUX
dicontinued VERB
. PUNCT
PVC PROPN
's PART
are AUX
also ADV
common ADJ
in ADP
runners NOUN
. PUNCT
So ADV
my PRON
EKG PROPN
puts VERB
me PRON
in ADP
a DET
class NOUN
with ADP
trained VERB
athletes NOUN
and CCONJ
also ADV
with ADP
heartpatients NOUN
. PUNCT
Is AUX
n't PART
that ADV
strange ADJ
, PUNCT
though ADV
? PUNCT
Are AUX
there PRON
any DET
not PART
- PUNCT
so ADV
- PUNCT
beneficialaspects NOUN
to PART
athlete NOUN
's PART
heart NOUN
? PUNCT
Is AUX
it PRON
all DET
good?Not NOUN
worried ADJ
, PUNCT
just ADV
curious,-Larry PROPN
C. PROPN
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59631From NUM
: PUNCT
Diane PROPN
. PUNCT
Mayronne@f232.n109.z1.cobaka.com PROPN
( PUNCT
Diane PROPN
Mayronne)Subject NOUN
: PUNCT
fever NOUN
blistersCause NOUN
and CCONJ
cures NOUN
for ADP
fever NOUN
blisters NOUN
respectfully ADV
requested VERB
. PUNCT
Thanks NOUN
! PUNCT
            SPACE
:-D PROPN
iane NOUN
* PUNCT
Origin PROPN
: PUNCT
Another DET
PerManNet NUM
Kit NOUN
( PUNCT
1:109/232)Newsgroup NUM
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59632From NUM
: PUNCT
banschbach@vms.ocom.okstate.eduSubject NOUN
: PUNCT
Re ADP
: PUNCT
How ADV
often ADV
do AUX
kids NOUN
fall VERB
sick ADJ
? PUNCT
etc X
. PUNCT
In ADP
article NOUN
< X
ASHWIN.93May2131021@leo.gatech.edu ADJ
> X
, PUNCT
ashwin@[Agatech.edu PRON
( PUNCT
Ashwin PROPN
Ram PROPN
) PUNCT
writes VERB
: PUNCT
> X
Our PRON
20-month NUM
son NOUN
has AUX
started VERB
falling VERB
sick ADJ
quite ADV
often ADV
every DET
since SCONJ
he PRON
> X
started VERB
going VERB
to ADP
day NOUN
care NOUN
. PUNCT
  SPACE
He PRON
was AUX
at ADP
home NOUN
for ADP
the DET
first ADJ
year NOUN
and CCONJ
he PRON
did AUX
> X
not PART
fall VERB
sick ADJ
even ADV
once ADV
. PUNCT
  SPACE
Now ADV
it PRON
seems VERB
like SCONJ
he PRON
has AUX
some DET
sort NOUN
of ADP
cold ADJ
or CCONJ
> X
flu NOUN
pretty ADV
much ADV
once SCONJ
a DET
month NOUN
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
time NOUN
the DET
cold ADJ
leads VERB
to ADP
an DET
ear NOUN
> X
infection NOUN
as ADV
well ADV
, PUNCT
with ADP
the DET
result NOUN
that SCONJ
he PRON
ends VERB
up ADP
being AUX
on ADP
antibiotics NOUN
> X
3 NUM
weeks NOUN
out SCONJ
of ADP
4 NUM
. PUNCT
  SPACE
I PRON
know VERB
kids NOUN
in ADP
day NOUN
care NOUN
fall NOUN
sick ADV
more ADV
often ADV
, PUNCT
but CCONJ
we PRON
> X
are AUX
beginning VERB
to PART
wonder VERB
how ADV
often ADV
" PUNCT
more ADV
often ADV
" PUNCT
really ADV
is AUX
, PUNCT
whether SCONJ
our PRON
> X
son NOUN
is AUX
more ADV
susceptible ADJ
or CCONJ
has AUX
lower ADJ
immunity NOUN
than SCONJ
average ADJ
... PUNCT
> X
Are AUX
there PRON
any DET
studies NOUN
that PRON
can AUX
help VERB
answer VERB
some DET
of ADP
these DET
questions?When PROPN
kids NOUN
stayed VERB
in ADP
the DET
home NOUN
until ADP
kindergarden PROPN
or CCONJ
1st ADJ
grade NOUN
, PUNCT
infection NOUN
incidence NOUN
was AUX
much ADV
lower ADJ
because SCONJ
exposure NOUN
was AUX
lower ADJ
. PUNCT
  SPACE
Some DET
studies NOUN
suggest VERB
that SCONJ
early ADJ
exposure NOUN
to ADP
various ADJ
infectious ADJ
diseases NOUN
is AUX
probably ADV
beneficial ADJ
because SCONJ
exposure NOUN
as SCONJ
an DET
adult NOUN
carries VERB
much ADV
more ADJ
risk NOUN
of ADP
morbitity NOUN
and CCONJ
mortality(mumps PROPN
, PUNCT
measles NOUN
. PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
> X
-- PUNCT
How ADV
often ADV
do AUX
kids NOUN
in ADP
their PRON
first ADJ
, PUNCT
second ADJ
and CCONJ
third ADJ
years NOUN
fall VERB
sick ADJ
? PUNCT
> X
How ADV
often ADV
do AUX
they PRON
get AUX
colds NOUN
, PUNCT
flus NOUN
, PUNCT
ear NOUN
infections NOUN
? PUNCT
  SPACE
Is AUX
there PRON
any DET
data NOUN
on ADP
> PROPN
home NOUN
care PROPN
vs. ADP
day NOUN
care?Daycare NOUN
will AUX
always ADV
carry VERB
a DET
higher ADJ
exposure NOUN
risk NOUN
than SCONJ
home NOUN
care NOUN
. PUNCT
> X
-- PUNCT
Does AUX
being AUX
sick ADJ
" PUNCT
build VERB
immunity NOUN
" PUNCT
( PUNCT
leading VERB
to ADP
less ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
> X
does AUX
it PRON
make VERB
kids NOUN
" PUNCT
weaker ADJ
" PUNCT
( PUNCT
leading VERB
to ADP
more ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
or CCONJ
does AUX
it PRON
> X
not PART
have AUX
any DET
long ADJ
term NOUN
effect?Exposure NOUN
to ADP
infectious ADJ
organisms NOUN
does AUX
build VERB
immunity NOUN
. PUNCT
  SPACE
But CCONJ
many ADJ
viruses NOUN
mutate VERB
and CCONJ
reexposure NOUN
to ADP
the DET
new ADJ
strain NOUN
requires VERB
another DET
immune ADJ
response(new PROPN
antibody NOUN
production NOUN
) PUNCT
. PUNCT
  SPACE
In ADP
addition NOUN
, PUNCT
antibody NOUN
levels NOUN
tend VERB
to PART
decline VERB
with ADP
time NOUN
and CCONJ
re NOUN
- NOUN
innoculation NOUN
is AUX
needed VERB
to PART
keep VERB
the DET
antibody NOUN
levels NOUN
high ADJ
. PUNCT
Chronic ADJ
overstimulation NOUN
of ADP
the DET
immune ADJ
response NOUN
can AUX
lead VERB
to ADP
immunosupression NOUN
but CCONJ
this DET
is AUX
rare ADJ
and CCONJ
very ADV
unlikely ADJ
to PART
occur VERB
in ADP
children NOUN
. PUNCT
> X
-- PUNCT
Does AUX
taking VERB
antibiotics NOUN
on ADP
a DET
regular ADJ
basis NOUN
have AUX
any DET
negative ADJ
long ADJ
> X
term NOUN
effects?Yes PROPN
, PUNCT
chronic ADJ
use NOUN
of ADP
antibiotics NOUN
can AUX
have AUX
an DET
adverse ADJ
effect NOUN
on ADP
the DET
good ADJ
bacteria NOUN
that PRON
are AUX
supposed VERB
to PART
be AUX
present ADJ
in ADP
and CCONJ
on ADP
the DET
body NOUN
. PUNCT
  SPACE
Health PROPN
effects NOUN
of ADP
this DET
depletion NOUN
of ADP
the DET
good ADJ
bacteria NOUN
is AUX
a DET
very ADV
hotly ADV
debated VERB
topic NOUN
in ADP
the DET
medical ADJ
community NOUN
with ADP
most ADJ
physicians NOUN
seeming VERB
to PART
discount VERB
any DET
health NOUN
effects NOUN
of ADP
chronic ADJ
antibiotic ADJ
use NOUN
( PUNCT
a DET
view NOUN
that PRON
I PRON
do AUX
not PART
support VERB
) PUNCT
. PUNCT
> X
-- PUNCT
How ADV
does AUX
one PRON
tell VERB
if SCONJ
a DET
child NOUN
is AUX
more ADV
susceptible ADJ
to ADP
illness NOUN
than SCONJ
> X
normal ADJ
, PUNCT
and CCONJ
what PRON
does AUX
one PRON
do AUX
about ADP
it?Chronic ADJ
infection NOUN
in ADP
an DET
adult NOUN
or CCONJ
a DET
child NOUN
needs VERB
to PART
be AUX
worked VERB
up ADP
( PUNCT
in ADP
my PRON
opinion NOUN
) PUNCT
. PUNCT
  SPACE
But CCONJ
most ADJ
physicians NOUN
feel VERB
that SCONJ
chronic ADJ
infection NOUN
in ADP
a DET
child NOUN
is AUX
normal ADJ
because SCONJ
of ADP
both DET
exposure NOUN
and CCONJ
lack NOUN
of ADP
prior ADJ
immunity NOUN
to ADP
many ADJ
infectious ADJ
diseases NOUN
. PUNCT
  SPACE
I PRON
do AUX
not PART
share VERB
this DET
view NOUN
and CCONJ
there PRON
are AUX
some DET
physicians NOUN
who PRON
also ADV
suspect VERB
that SCONJ
diet NOUN
plays VERB
a DET
big ADJ
role NOUN
in ADP
infection NOUN
frequency NOUN
and CCONJ
severity NOUN
. PUNCT
  SPACE
Exposure NOUN
to ADP
an DET
infectious ADJ
agent NOUN
does AUX
not PART
have AUX
to PART
result VERB
in ADP
a DET
severe ADJ
infection NOUN
. PUNCT
  SPACE
A DET
strong ADJ
immune ADJ
response NOUN
can AUX
minimize VERB
the DET
length NOUN
of ADP
time NOUN
needed VERB
to PART
deal VERB
with ADP
the DET
infection NOUN
as ADV
well ADV
as SCONJ
the DET
symptoms NOUN
associated VERB
with ADP
the DET
infection NOUN
. PUNCT
> X
-- PUNCT
Is AUX
there PRON
any DET
way NOUN
to PART
build VERB
immunity NOUN
and CCONJ
resistance?There NOUN
are AUX
five NUM
major ADJ
nutrients NOUN
that PRON
are AUX
responsible ADJ
for ADP
a DET
good ADJ
strong ADJ
immune ADJ
response NOUN
to ADP
infectious ADJ
agents NOUN
. PUNCT
  SPACE
They PRON
are AUX
: PUNCT
protein NOUN
, PUNCT
vitamin NOUN
C NOUN
, PUNCT
vitamin NOUN
A NOUN
, PUNCT
iron NOUN
and CCONJ
zinc NOUN
. PUNCT
  SPACE
The DET
American ADJ
diet NOUN
is AUX
not PART
low ADJ
in ADP
protein NOUN
so ADV
this DET
is AUX
rarely ADV
a DET
problem NOUN
. PUNCT
  SPACE
But CCONJ
vitamin NOUN
A NOUN
, PUNCT
vitamin NOUN
C NOUN
, PUNCT
iron NOUN
and CCONJ
zinc NOUN
are AUX
often ADV
low ADJ
and CCONJ
this DET
lack NOUN
of ADP
an DET
adequate ADJ
pool(nutrient ADJ
reserve NOUN
) PUNCT
can AUX
impair VERB
the DET
immune ADJ
response NOUN
. PUNCT
  SPACE
Iron PROPN
is AUX
know VERB
to PART
be AUX
low ADJ
in ADP
most ADJ
kids(as PROPN
is AUX
vitamin NOUN
A PROPN
) PUNCT
. PUNCT
  SPACE
There PRON
are AUX
distinct ADJ
biochemical ADJ
tests NOUN
that PRON
can AUX
be AUX
run VERB
to PART
check VERB
the DET
status NOUN
of ADP
each DET
of ADP
these DET
nutrients NOUN
in ADP
a DET
patient NOUN
who PRON
is AUX
having VERB
a DET
problem NOUN
with ADP
chronic ADJ
severe ADJ
infection NOUN
. PUNCT
  SPACE
Serum PROPN
ferritin PROPN
for ADP
iron NOUN
status NOUN
, PUNCT
dark ADJ
adaptation NOUN
for ADP
vitamin NOUN
A DET
status NOUN
, PUNCT
red ADJ
blood NOUN
cell NOUN
zinc NOUN
for ADP
zinc NOUN
status NOUN
and CCONJ
leckocyte PROPN
ascorbate NOUN
for ADP
vitamin NOUN
C NOUN
status NOUN
. PUNCT
  SPACE
I PRON
have AUX
attempted VERB
to PART
work VERB
up ADP
posts NOUN
on ADP
these DET
five NUM
nutrients NOUN
and CCONJ
their PRON
role NOUN
in ADP
infection NOUN
for ADP
this DET
news NOUN
group NOUN
as ADV
well ADV
as SCONJ
the DET
others NOUN
that PRON
I PRON
participate VERB
in ADP
. PUNCT
  SPACE
I PRON
can AUX
e NOUN
- NOUN
mail VERB
you PRON
what PRON
I PRON
've AUX
worked VERB
up ADP
so ADV
far ADV
. PUNCT
But CCONJ
my PRON
best ADJ
advice NOUN
to ADP
you PRON
is AUX
to PART
try VERB
to PART
find VERB
a DET
physician NOUN
who PRON
recognizes VERB
the DET
critical ADJ
role NOUN
that PRON
diet NOUN
plays VERB
in ADP
the DET
human ADJ
immune ADJ
response NOUN
. PUNCT
  SPACE
You PRON
may AUX
also ADV
be AUX
able ADJ
to PART
get AUX
help NOUN
from ADP
a DET
nutritionist NOUN
. PUNCT
  SPACE
Anyone PRON
can AUX
call VERB
themselves PRON
a DET
nutritionist NOUN
so SCONJ
you PRON
have AUX
to PART
be AUX
very ADV
carefull ADJ
. PUNCT
  SPACE
You PRON
want VERB
to PART
find VERB
someone(like ADP
myself PRON
) PUNCT
who PRON
has AUX
had VERB
some DET
formal ADJ
training NOUN
and CCONJ
education NOUN
in ADP
nutrition NOUN
. PUNCT
Many ADJ
Ph.D. NOUN
programs NOUN
in ADP
the DET
U.S. PROPN
now ADV
offer VERB
degrees NOUN
in ADP
Nutrition PROPN
and CCONJ
that DET
's AUX
what PRON
you PRON
need VERB
to PART
look VERB
for ADP
. PUNCT
  SPACE
Some DET
dieticians NOUN
will AUX
also ADV
call VERB
themselves PRON
nutritionists NOUN
but CCONJ
most ADJ
dieticians NOUN
have AUX
not PART
had VERB
the DET
biochemical ADJ
training NOUN
needed VERB
to PART
run VERB
specialized ADJ
nutritional ADJ
assessment NOUN
tests NOUN
. PUNCT
  SPACE
They PRON
are AUX
very ADV
good ADJ
for ADP
getting VERB
general ADJ
dietary ADJ
advice NOUN
from ADP
however ADV
. PUNCT
> X
Any DET
data NOUN
, PUNCT
information NOUN
or CCONJ
advice NOUN
relating VERB
to ADP
this DET
would AUX
be AUX
much ADV
> X
appreciated VERB
. PUNCT
  SPACE
Thanks NOUN
a DET
lot NOUN
. PUNCT
> X
> X
Ashwin PROPN
. PUNCT
Martin PROPN
Banschbach PROPN
, PUNCT
Ph PROPN
. PROPN
D.Graduate NOUN
degree NOUN
in ADP
Biochemistry PROPN
and CCONJ
Nutrition PROPN
from ADP
VPIand PROPN
developer NOUN
of ADP
a DET
course NOUN
on ADP
human ADJ
nutrition NOUN
for ADP
medical ADJ
studentsNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59633From NUM
: PUNCT
< X
ICGLN@ASUACAD.BITNET VERB
> X
Subject NOUN
: PUNCT
Re ADP
: PUNCT
Burzynski PROPN
's PART
" PUNCT
Antineoplastons"nnget NUM
93122.1300541In NUM
article NOUN
< X
C6BJyt.A1K@ssr.com NOUN
> X
, PUNCT
sdb@ssr.com X
( PUNCT
Scott PROPN
Ballantyne PROPN
) PUNCT
says:>>In PROPN
article NOUN
< X
93111.145432ICGLN@ASUACAD.BITNET NUM
> X
< X
ICGLN@ASUACAD.BITNET VERB
> X
writes:>>>Moss NOUN
is AUX
People PROPN
Against ADP
Cancer PROPN
's PART
Director PROPN
of ADP
Communications PROPN
. PUNCT
People NOUN
> X
Against ADP
Cancer NOUN
seems VERB
to PART
offer VERB
pretty ADV
questionable ADJ
information NOUN
, PUNCT
not PART
> X
exactly ADV
the DET
place NOUN
a DET
cancer NOUN
patient NOUN
should AUX
be AUX
advised VERB
to PART
turn VERB
to ADP
. PUNCT
And CCONJ
where ADV
do AUX
you PRON
advise VERB
people NOUN
to PART
turn VERB
for ADP
cancer NOUN
information NOUN
? PUNCT
Most>(maybe PROPN
all DET
) PUNCT
of ADP
the DET
infomation NOUN
in ADP
their PRON
latest ADJ
catalogue NOUN
concern NOUN
> X
treatments NOUN
that PRON
have AUX
been AUX
shown VERB
to PART
be AUX
ineffective ADJ
against ADP
cancer NOUN
, PUNCT
and CCONJ
> X
many ADJ
of ADP
the DET
treatments NOUN
are AUX
quite ADV
dangerous ADJ
as ADV
well ADV
. PUNCT
It PRON
seems VERB
to ADP
me PRON
you PRON
've AUX
offered VERB
a DET
circular ADJ
refutation NOUN
of ADP
Moss PROPN
's PART
organization NOUN
. PUNCT
Whohas PROPN
shown VERB
the DET
information NOUN
in ADP
the DET
latest ADJ
book NOUN
of ADP
PAC PROPN
to PART
be AUX
questionable ADJ
? PUNCT
Couldit PROPN
be VERB
those DET
' PUNCT
regulatory ADJ
' PUNCT
agencies NOUN
and CCONJ
medical ADJ
industries NOUN
which PRON
Moss PROPN
is AUX
showingto PROPN
be AUX
operating VERB
with ADP
* PUNCT
major ADJ
* SYM
vested ADJ
interests NOUN
. PUNCT
Whether SCONJ
one NOUN
believes VERB
that SCONJ
thesevested ADJ
interests NOUN
are AUX
real ADJ
or CCONJ
not PART
, PUNCT
or CCONJ
whether SCONJ
or CCONJ
not PART
they PRON
actually ADV
shape VERB
medicalresearch PROPN
is AUX
a DET
seperate ADJ
argument NOUN
. PUNCT
If SCONJ
one PRON
sees VERB
a DET
possibility NOUN
, PUNCT
however ADV
, PUNCT
that SCONJ
theseinterests NOUN
exist VERB
, PUNCT
then ADV
the DET
' PUNCT
fact NOUN
' PUNCT
that SCONJ
some DET
of ADP
the DET
information NOUN
put VERB
out ADP
by ADP
PAChas PROPN
been AUX
refuted VERB
by ADP
the DET
medical ADJ
industry NOUN
does AUX
n't PART
hold VERB
much ADJ
weight NOUN
. PUNCT
As SCONJ
for ADP
the DET
ineffectiveness NOUN
of ADP
antineoplasteons NOUN
, PUNCT
the DET
fact NOUN
that SCONJ
the DET
NIH PROPN
didn'tfind VERB
them PRON
effective ADJ
does AUX
n't PART
make VERB
much ADJ
sense NOUN
here ADV
. PUNCT
Of ADV
course ADV
they PRON
did AUX
n't PART
! PUNCT
Itend VERB
to PART
have AUX
more ADJ
faith NOUN
in ADP
the DET
word NOUN
of ADP
the DET
patients NOUN
who PRON
are AUX
now ADV
alive ADJ
afterbeing NOUN
told VERB
years NOUN
ago ADV
that SCONJ
they PRON
would AUX
be AUX
dead ADJ
of ADP
cancer NOUN
soon ADV
. PUNCT
They PRON
are AUX
fightinglike ADP
hell NOUN
to PART
keep VERB
that DET
clinic NOUN
open ADJ
, PUNCT
and CCONJ
they PRON
credit VERB
his PRON
treatment NOUN
with ADP
theirsurvival NOUN
. PUNCT
Anyone PRON
who PRON
looks VERB
at ADP
the DET
NIH PROPN
's PART
record NOUN
for ADP
investigation NOUN
of ADP
' PUNCT
alterna PROPN
- PUNCT
tive PROPN
' PART
cancer NOUN
therapies NOUN
will AUX
easily ADV
see VERB
that SCONJ
they PRON
have AUX
a DET
strange ADJ
knack NOUN
for ADP
find NOUN
- PUNCT
ing VERB
relatively ADV
cheap ADJ
and CCONJ
nontoxic ADJ
therapies NOUN
dangerous ADJ
or CCONJ
useless.gnNewsgroup ADJ
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59634From NUM
: PUNCT
marco@sdf.lonestar.org PROPN
( PUNCT
Steve PROPN
Giammarco)Subject PROPN
: PUNCT
Help NOUN
. PUNCT
Info NOUN
: PUNCT
CLARITIN PROPN
( PUNCT
Allergies)My PROPN
doc NOUN
handed VERB
me PRON
10 NUM
mg PROPN
samples NOUN
of ADP
CLARITIN PROPN
( PUNCT
brand NOUN
of ADP
Ioratadine PROPN
Tabletfrom PROPN
Schering PROPN
Corp. PROPN
) PUNCT
  SPACE
I PRON
tried VERB
to PART
find VERB
it PRON
in ADP
the DET
PDR PROPN
to ADP
no DET
avail NOUN
. PUNCT
Ido NOUN
remember VERB
she PRON
mentioned VERB
this DET
drug NOUN
was AUX
relatively ADV
new ADJ
to ADP
the DET
US PROPN
butavailable ADJ
overseas ADV
for ADP
quite DET
some DET
time NOUN
. PUNCT
Looking VERB
mostly ADV
for ADP
side NOUN
- PUNCT
effect NOUN
, PUNCT
contraindications NOUN
, PUNCT
and CCONJ
mode NOUN
of ADP
action NOUN
such ADJ
that SCONJ
it PRON
differs VERB
from ADP
Seldane PROPN
and CCONJ
Hismanal PROPN
. PUNCT
Email NOUN
or CCONJ
newsgroup NOUN
is AUX
fine ADJ
. PUNCT
Thanx PROPN
in ADP
advance.-- PROPN
Steve PROPN
Giammarco/5330 PROPN
Peterson PROPN
Lane PROPN
/ SYM
Dallas PROPN
TX PROPN
75240marco@sdf.lonestar.orgloveyameanit.Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59635From NUM
: PUNCT
thomas@mvac23.UUCP X
( PUNCT
Thomas PROPN
Lapp)Subject NUM
: PUNCT
Re ADP
: PUNCT
Nose PROPN
Pickingstephen@mont.cs.missouri.edu PROPN
( PUNCT
Stephen PROPN
Montgomery PROPN
- PUNCT
Smith PROPN
) PUNCT
writes VERB
: PUNCT
> X
1 NUM
) PUNCT
  SPACE
Does AUX
it PRON
cause VERB
the DET
body NOUN
any DET
harm NOUN
if SCONJ
one NOUN
picks VERB
one PRON
's PART
nose NOUN
? PUNCT
  SPACE
For ADP
example NOUN
, PUNCT
> X
might AUX
it PRON
lead VERB
to ADP
a DET
loss NOUN
of ADP
ability NOUN
to PART
smell VERB
? PUNCT
> X
> X
2 NUM
) PUNCT
  SPACE
Is AUX
it PRON
harmful ADJ
for ADP
one NUM
to PART
eat VERB
one PRON
's PART
nose NOUN
pickings?I've NOUN
seen VERB
children NOUN
do AUX
this DET
and CCONJ
wondered VERB
about ADP
something PRON
. PUNCT
  SPACE
If SCONJ
themucus NOUN
in ADP
one PRON
's PART
nose NOUN
collects NOUN
( PUNCT
filters NOUN
) PUNCT
particles VERB
going VERB
into ADP
theairway PROPN
, PUNCT
if SCONJ
a DET
child NOUN
then ADV
picks VERB
and CCONJ
ingests VERB
this DET
material NOUN
, PUNCT
mightit PROPN
have AUX
a DET
vaccinatory ADJ
effect NOUN
, PUNCT
since SCONJ
if SCONJ
the DET
body NOUN
ingests VERB
airbornediseases NOUN
or CCONJ
other ADJ
' PUNCT
stuff NOUN
' PUNCT
on ADP
the DET
mucus NOUN
, PUNCT
the DET
body NOUN
might AUX
generateantibodies NOUN
for ADP
this DET
small ADJ
" PUNCT
invasion"?Maybe NOUN
this DET
is AUX
why ADV
some DET
children NOUN
do AUX
n't PART
get AUX
sick ADJ
very ADV
often ADV
? PUNCT
:-) PUNCT
                         SPACE
- PUNCT
tom PROPN
-- PUNCT
internet NOUN
     SPACE
: PUNCT
mvac23!thomas@udel.edu PROPN
  SPACE
or CCONJ
  SPACE
thomas%mvac23@udel.edu PUNCT
( PUNCT
home NOUN
) PUNCT
             SPACE
: PUNCT
lapp@cdhub1.dnet.dupont.com NOUN
( PUNCT
work)OSI PROPN
          SPACE
: PUNCT
C PROPN
= SYM
US PROPN
/ SYM
A PROPN
= SYM
MCI PROPN
/ SYM
S PROPN
= SYM
LAPP PROPN
/ SYM
D NOUN
= SYM
ID=4398613uucp X
         SPACE
: PUNCT
{ PUNCT
ucbvax PROPN
, PUNCT
mcvax PROPN
, PUNCT
uunet}!udel!mvac23!thomasLocation PROPN
     SPACE
: PUNCT
Newark PROPN
, PUNCT
DE PROPN
, PUNCT
USANewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59636From NUM
: PUNCT
rob.welder@cccbbs.UUCP NOUN
( PUNCT
Rob PROPN
Welder PROPN
) PUNCT
Subject NOUN
: PUNCT
Thermoscan ADJ
ear NOUN
thermometeTo PRON
: PUNCT
ashwin@cc.gatech.edu PROPN
( PUNCT
Ashwin PROPN
Ram)AR NOUN
> X
Does AUX
the DET
" PUNCT
Thermoscan PROPN
" PUNCT
instrument NOUN
really ADV
work VERB
? PUNCT
  SPACE
It PRON
is AUX
supposed VERB
to PART
give VERB
you PRON
aABSOLUTELY!Ya NOUN
do AUX
n't PART
have AUX
to PART
do AUX
the DET
other ADJ
end!(it NUM
is AUX
accurate ADJ
- PUNCT
but CCONJ
technique NOUN
is AUX
important)cccbbs!rob.welder@uceng.uc.edu--- PROPN
. PUNCT
QMPro PROPN
1.02 NUM
41 NUM
- SYM
4771 NUM
. PUNCT
See VERB
? PUNCT
... PUNCT
It PRON
only ADV
hurts VERB
for ADP
a DET
little ADJ
while NOUN
! PUNCT
                                                                      SPACE
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59637From NUM
: PUNCT
wang@ssd.intel.com PROPN
( PUNCT
Wen PROPN
- PUNCT
Lin PROPN
Wang)Subject PROPN
: PUNCT
Re ADP
: PUNCT
How ADV
often ADV
do AUX
kids NOUN
fall VERB
sick ADJ
? PUNCT
etc X
. PUNCT
In ADP
article NOUN
< X
ASHWIN.93May2131021@leo.gatech.edu ADJ
> X
ashwin@cc.gatech.edu PROPN
( PUNCT
Ashwin PROPN
Ram PROPN
) PUNCT
writes:>Our NOUN
20-month NUM
son NOUN
has AUX
started VERB
falling VERB
sick ADJ
quite ADV
often ADV
every DET
since SCONJ
he PRON
> X
started VERB
going VERB
to ADP
day NOUN
care NOUN
. PUNCT
  SPACE
He PRON
was AUX
at ADP
home NOUN
for ADP
the DET
first ADJ
year NOUN
and CCONJ
he PRON
did AUX
> X
not PART
fall VERB
sick ADJ
even ADV
once ADV
. PUNCT
  SPACE
Now ADV
it PRON
seems VERB
like SCONJ
he PRON
has AUX
some DET
sort NOUN
of ADP
cold ADJ
or CCONJ
> X
flu NOUN
pretty ADV
much ADV
once SCONJ
a DET
month NOUN
. PUNCT
  SPACE
Most ADJ
of ADP
the DET
time NOUN
the DET
cold ADJ
leads VERB
to ADP
an DET
ear NOUN
> X
infection NOUN
as ADV
well ADV
, PUNCT
with ADP
the DET
result NOUN
that SCONJ
he PRON
ends VERB
up ADP
being AUX
on ADP
antibiotics>3 ADJ
weeks NOUN
out SCONJ
of ADP
4 NUM
. PUNCT
  SPACE
I PRON
know VERB
kids NOUN
in ADP
day NOUN
care NOUN
fall NOUN
sick ADV
more ADV
often ADV
, PUNCT
but CCONJ
we> NOUN
... PUNCT
Sounds VERB
pretty ADV
familiar ADJ
. PUNCT
  SPACE
I PRON
posted VERB
similar ADJ
cries NOUN
about ADP
last ADJ
September PROPN
whenCaroline NOUN
just ADV
entered VERB
daycare NOUN
. PUNCT
  SPACE
She PRON
was AUX
two NUM
, PUNCT
then ADV
, PUNCT
and CCONJ
have AUX
been AUX
with ADP
continuous ADJ
colds NOUN
since SCONJ
until ADP
last ADJ
March PROPN
. PUNCT
  SPACE
As SCONJ
spring NOUN
approaches NOUN
, PUNCT
her PRON
coldsslowed VERB
down ADP
. PUNCT
  SPACE
Meanwhile ADV
we PRON
grew VERB
more ADJ
and CCONJ
more ADV
relaxed ADJ
about ADP
her PRON
colds NOUN
. PUNCT
Only ADV
once ADV
did AUX
the DET
doctor NOUN
diagnosed VERB
an DET
ear NOUN
infection NOUN
and CCONJ
only ADV
twice DET
shehad ADJ
antibiotics NOUN
. PUNCT
  SPACE
( PUNCT
The DET
other ADJ
time NOUN
was AUX
due ADJ
to ADP
sinus NOUN
infection NOUN
, PUNCT
and CCONJ
I PRON
wishedthat PRON
I PRON
did AUX
not PART
give VERB
her PRON
that DET
awful ADJ
Septra PROPN
. PUNCT
) PUNCT
> X
Are AUX
there PRON
any DET
studies NOUN
that PRON
can AUX
help VERB
answer VERB
some DET
of ADP
these DET
questions?There NOUN
are AUX
the DET
' PUNCT
net ADJ
studies NOUN
' PUNCT
-- PUNCT
that ADV
is ADV
, PUNCT
if SCONJ
you PRON
read VERB
this DET
newsgroup NOUN
often ADV
, PUNCT
there PRON
will AUX
be AUX
a DET
round NOUN
of ADP
questions NOUN
like SCONJ
this DET
every DET
month NOUN
. PUNCT
  SPACE
There PRON
mightbe ADJ
formal ADJ
studies NOUN
like SCONJ
that DET
, PUNCT
but CCONJ
bear VERB
with ADP
my PRON
not PART
so ADV
academic ADJ
experience NOUN
. PUNCT
Okay?>>-- PROPN
How ADV
often ADV
do AUX
kids NOUN
in ADP
their PRON
first ADJ
, PUNCT
second ADJ
and CCONJ
third ADJ
years NOUN
fall VERB
sick?>How NOUN
often ADV
do AUX
they PRON
get AUX
colds NOUN
, PUNCT
flus NOUN
, PUNCT
ear NOUN
infections NOUN
? PUNCT
Gee PROPN
, PUNCT
I PRON
bet VERB
50/50 NUM
you PRON
'll AUX
hear VERB
cases NOUN
in ADP
all DET
these DET
catagories NOUN
. PUNCT
> X
Is AUX
there PRON
any DET
data NOUN
on ADP
home NOUN
care NOUN
vs. ADP
day NOUN
care?I PROPN
am AUX
pretty ADV
sure ADJ
, PUNCT
an DET
insulated ADJ
child NOUN
at ADP
home NOUN
sicks NOUN
less ADV
. PUNCT
  SPACE
But CCONJ
, PUNCT
that DET
child NOUN
still ADV
will AUX
face VERB
the DET
world NOUN
one NUM
day NOUN
. PUNCT
> X
> X
-- PUNCT
Does AUX
being AUX
sick ADJ
" PUNCT
build VERB
immunity NOUN
" PUNCT
( PUNCT
leading VERB
to ADP
less ADJ
illness NOUN
later),That PROPN
's AUX
what PRON
I PRON
believe VERB
and CCONJ
comfort VERB
myself PRON
with ADP
. PUNCT
  SPACE
Caroline PROPN
will AUX
get AUX
moreand NOUN
more ADJ
colds NOUN
for ADP
sure ADJ
before ADP
she PRON
learned VERB
not PART
to PART
stick VERB
her PRON
hand NOUN
in ADP
other ADJ
kid NOUN
's PART
mouth NOUN
nor CCONJ
let VERB
other ADJ
kids NOUN
do AUX
the DET
same ADJ
. PUNCT
  SPACE
Cold ADJ
virus NOUN
mutate NOUN
easily ADV
. PUNCT
However ADV
, PUNCT
I PRON
hope VERB
that SCONJ
her PRON
immune ADJ
system NOUN
will AUX
be AUX
stronger ADJ
to PART
fight VERB
thesediseases NOUN
, PUNCT
so ADV
she PRON
would AUX
be AUX
less ADV
severely ADV
affected VERB
. PUNCT
  SPACE
Everytime ADV
she PRON
has AUX
a DET
cold NOUN
, PUNCT
we PRON
make VERB
sure ADJ
she PRON
blow VERB
her PRON
nose NOUN
frequently ADV
and CCONJ
give VERB
her PRON
Dorcol PROPN
or CCONJ
Dimetapp PROPN
at ADP
night NOUN
so SCONJ
she PRON
can AUX
have AUX
good ADJ
rest NOUN
( PUNCT
thanks NOUN
to ADP
some DET
suggestions NOUN
from ADP
the DET
net).That NOUN
's AUX
about ADP
all DET
the DET
care NOUN
she PRON
needs VERB
from ADP
us PRON
. PUNCT
  SPACE
I PRON
try VERB
very ADV
hard ADV
to PART
keep VERB
heroff NOUN
antibiotics NOUN
. PUNCT
  SPACE
Twice ADV
her PRON
ped VERB
. PUNCT
gave VERB
me PRON
choice NOUN
to PART
decide VERB
whether SCONJ
she PRON
wouldhave VERB
antibiotics NOUN
. PUNCT
  SPACE
I PRON
waited VERB
just ADV
long ADV
enough ADV
( PUNCT
3 NUM
- SYM
4 NUM
days NOUN
) PUNCT
to PART
see VERB
that DET
shefought NOUN
the DET
illness NOUN
off ADP
. PUNCT
  SPACE
I PRON
do AUX
understand VERB
that SCONJ
you PRON
do AUX
n't PART
have AUX
much ADJ
choice NOUN
ifthe NOUN
child NOUN
is AUX
in ADP
pain NOUN
and/or CCONJ
high ADJ
fever NOUN
. PUNCT
> X
does AUX
it PRON
make VERB
kids NOUN
" PUNCT
weaker ADJ
" PUNCT
( PUNCT
leading VERB
to ADP
more ADJ
illness NOUN
later ADV
) PUNCT
, PUNCT
or CCONJ
does AUX
it PRON
> X
not PART
have AUX
any DET
long ADJ
term NOUN
effect?If PUNCT
the DET
child NOUN
does AUX
n't PART
rely VERB
on ADP
antibiotics NOUN
to PART
fight VERB
off ADP
the DET
sickness ADJ
everytime NOUN
, PUNCT
then ADV
the DET
child NOUN
should AUX
be AUX
stronger.>>-- X
Does AUX
taking VERB
antibiotics NOUN
on ADP
a DET
regular ADJ
basis NOUN
have AUX
any DET
negative ADJ
long ADJ
> ADJ
term NOUN
effects NOUN
? PUNCT
> X
I PRON
'll AUX
leave VERB
this DET
to ADP
expert.>-- DET
How ADV
does AUX
one PRON
tell VERB
if SCONJ
a DET
child NOUN
is AUX
more ADV
susceptible ADJ
to ADP
illness NOUN
than SCONJ
> X
normal ADJ
, PUNCT
and CCONJ
what PRON
does AUX
one NUM
do AUX
about ADP
it?>If PROPN
your PRON
child NOUN
just ADV
entered VERB
daycare NOUN
, PUNCT
I PRON
'm AUX
pretty ADV
sure ADJ
the DET
first ADJ
6 NUM
months NOUN
will AUX
bethe VERB
hardest ADV
. PUNCT
  SPACE
( PUNCT
Then ADV
, PUNCT
you PRON
get VERB
more ADV
used ADJ
to ADP
it PRON
. PUNCT
  SPACE
Boy INTJ
, PUNCT
do AUX
I PRON
hate VERB
to PART
see VERB
me PRON
typingthis DET
sentence NOUN
. PUNCT
  SPACE
I PRON
recall VERB
when ADV
I PRON
read VERB
something PRON
like SCONJ
this DET
last ADJ
September PROPN
, PUNCT
I PRON
said VERB
to ADP
myself PRON
, PUNCT
' PUNCT
oh INTJ
, PUNCT
sure INTJ
. PUNCT
' PUNCT
  SPACE
But CCONJ
, PUNCT
I PRON
do AUX
get AUX
used ADJ
to ADP
it PRON
, PUNCT
now ADV
. PUNCT
) PUNCT
  SPACE
However ADV
, PUNCT
I PRON
do AUX
hear VERB
people NOUN
say VERB
that SCONJ
it PRON
does AUX
get AUX
better ADJ
after ADP
a DET
year NOUN
or CCONJ
two NUM
. PUNCT
  SPACE
I PRON
am AUX
looking VERB
forward ADV
to ADP
a DET
healthier NOUN
next ADJ
winter NOUN
. PUNCT
  SPACE
As SCONJ
it PRON
gets VERB
warmer ADJ
, PUNCT
I PRON
hope VERB
you PRON
do AUX
get AUX
some DET
break NOUN
soon.>-- NUM
Is AUX
there PRON
any DET
way NOUN
to PART
build VERB
immunity NOUN
and CCONJ
resistance?>Eat X
well INTJ
, PUNCT
sleep VERB
well ADV
. PUNCT
  SPACE
Try VERB
not PART
to PART
use VERB
antibiotics NOUN
if SCONJ
not PART
absolutely ADV
necessary ADJ
. PUNCT
Good ADJ
luck NOUN
. PUNCT
Wen PROPN
- PUNCT
lin-- ADJ
Newsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59638Subject NUM
: PUNCT
Re ADP
: PUNCT
cure VERB
for ADP
dry ADJ
skin?From PROPN
: PUNCT
habersch@husc8.harvard.edu NOUN
( PUNCT
Oren PROPN
Haber-Schaim)jlecher@pbs.org PROPN
writes:>In PROPN
article NOUN
< X
1rmn0c$83v@morrow.stanford.edu PROPN
> X
, PUNCT
mou@nova1.stanford.edu PROPN
( PUNCT
Alex PROPN
Mou PROPN
) PUNCT
writes VERB
: PUNCT
> X
> X
Hi INTJ
all DET
, PUNCT
> X
> X
> X
> X
My PRON
skin NOUN
is AUX
very ADV
dry ADJ
in ADP
general ADJ
. PUNCT
But CCONJ
the DET
most ADV
serious ADJ
part NOUN
is AUX
located VERB
> X
> X
from ADP
knees NOUN
down ADV
. PUNCT
The DET
skin NOUN
there PRON
looks VERB
like SCONJ
segmented VERB
. PUNCT
The DET
segmentation NOUN
> X
> X
actually ADV
happens VERB
beneath ADP
the DET
skin NOUN
. PUNCT
I PRON
would AUX
like VERB
to PART
know VERB
if SCONJ
there PRON
is AUX
any DET
> X
> X
cure NOUN
for ADP
this DET
. PUNCT
> X
> X
> X
As SCONJ
a DET
matter NOUN
of ADP
fact NOUN
, PUNCT
I PRON
just ADV
saw VERB
a DET
dermatologist NOUN
the DET
other ADJ
day NOUN
, PUNCT
and CCONJ
while SCONJ
I PRON
> X
was AUX
there ADV
, PUNCT
I PRON
asked VERB
him PRON
about ADP
dry ADJ
skin NOUN
. PUNCT
I PRON
'd AUX
been AUX
spending VERB
a DET
small ADJ
fortune NOUN
> X
on ADP
various ADJ
creams NOUN
, PUNCT
lotions NOUN
, PUNCT
and CCONJ
other ADJ
dry ADJ
skin NOUN
treatments.>He PUNCT
said VERB
all DET
I PRON
needed VERB
was AUX
a DET
large ADJ
jar NOUN
of ADP
vaseline NOUN
. PUNCT
Soak VERB
in ADP
a DET
lukewarm ADJ
tub NOUN
> NOUN
of ADP
water NOUN
for ADP
10 NUM
minutes NOUN
( PUNCT
ONLY ADV
10 NUM
minutes NOUN
! PUNCT
) PUNCT
then ADV
massage VERB
in ADP
the DET
vaseline,>to NOUN
trap NOUN
the DET
moisture NOUN
in ADP
. PUNCT
That DET
is AUX
the DET
standard ADJ
advice NOUN
in ADP
dermatology NOUN
texts NOUN
. PUNCT
The DET
soak NOUN
part NOUN
greatly ADV
increases VERB
the DET
inconvenience NOUN
. PUNCT
  SPACE
Do AUX
n't PART
bother VERB
unlessit NOUN
does AUX
n't PART
work VERB
otherwise.>The ADP
hard ADJ
part NOUN
will AUX
be AUX
finding VERB
the DET
time NOUN
to PART
rub VERB
in ADP
the DET
> X
vaseline NOUN
properly ADV
. PUNCT
Exactly ADV
, PUNCT
but CCONJ
it PRON
adds VERB
to ADP
the DET
" PUNCT
ritual ADJ
" PUNCT
aspect NOUN
, PUNCT
which PRON
is AUX
important ADJ
forus ADJ
suggestible ADJ
patients NOUN
. PUNCT
  SPACE
( PUNCT
Posters PROPN
, PUNCT
do AUX
n't PART
bother VERB
to PART
repeat VERB
the DET
rationale NOUN
for ADP
the DET
soak.)>If PROPN
it PRON
's AUX
not PART
done VERB
right ADV
, PUNCT
you PRON
remain VERB
greasy NOUN
and CCONJ
stickGreasy NOUN
no ADV
matter ADV
what PRON
. PUNCT
Vaseline PROPN
( PUNCT
generically ADV
, PUNCT
petrolatum PROPN
) PUNCT
is AUX
famous ADJ
for ADP
that DET
. PUNCT
  SPACE
One NUM
text NOUN
states NOUN
that SCONJ
the DET
more ADJ
greasy NOUN
a DET
dry ADJ
- PUNCT
skincream NOUN
is AUX
, PUNCT
the DET
more ADV
effective ADJ
. PUNCT
  SPACE
> X
Try VERB
it PRON
. PUNCT
It PRON
's AUX
got VERB
to PART
be AUX
cheaper ADJ
then ADV
spending VERB
$ SYM
30 NUM
for ADP
8 NUM
oz PROPN
. PUNCT
of ADP
' PUNCT
natural'>lotion NOUN
. PUNCT
Try VERB
USP PROPN
lanolin NOUN
, PUNCT
at ADP
least ADJ
for ADP
maintenance NOUN
( PUNCT
preventive ADJ
) PUNCT
therapy NOUN
. PUNCT
  SPACE
USPlanolin PROPN
is AUX
natural ADJ
and CCONJ
much ADV
less ADJ
greasy NOUN
AND CCONJ
cheap ADJ
( PUNCT
do AUX
n't PART
buy VERB
the DET
moreexpensive ADJ
perfumed ADJ
lanolin NOUN
mixture NOUN
) PUNCT
. PUNCT
  SPACE
As SCONJ
I PRON
've AUX
commented VERB
before ADV
, PUNCT
petrolatumis VERB
a DET
poorly ADV
characterized ADJ
mixture NOUN
of ADP
hydrocarbons NOUN
which PRON
are AUX
not PART
found VERB
inbiological ADJ
systems NOUN
( PUNCT
that DET
is AUX
not PART
inherently ADV
bad ADJ
, PUNCT
but CCONJ
smell VERB
it PRON
up ADP
close ADV
, PUNCT
even ADV
on ADP
your PRON
hand NOUN
) PUNCT
, PUNCT
are AUX
partially ADV
absorbed VERB
into ADP
the DET
body NOUN
and CCONJ
remain VERB
therefor ADJ
months NOUN
or CCONJ
more ADJ
, PUNCT
and CCONJ
have AUX
associations NOUN
with ADP
cancer NOUN
. PUNCT
  SPACE
Do AUX
n't PART
panic VERB
, PUNCT
butalso ADV
do AUX
n't PART
believe VERB
it PRON
's AUX
God PROPN
's PART
gift NOUN
to ADP
the DET
human ADJ
skin NOUN
. PUNCT
Oren PROPN
Haber PROPN
- PUNCT
SchaimNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59639From NUM
: PUNCT
antonio@qualcom.qualcomm.com X
( PUNCT
Franklin PROPN
Antonio)Subject NUM
: PUNCT
Re ADP
: PUNCT
Thermoscan ADJ
ear NOUN
thermometerIn NUM
article NOUN
< X
ASHWIN.93May1225032@leo.gatech.edu NOUN
> X
ashwin@cc.gatech.edu PROPN
( PUNCT
Ashwin PROPN
Ram PROPN
) PUNCT
writes:>Does VERB
the DET
" PUNCT
Thermoscan PROPN
" PUNCT
instrument NOUN
really ADV
work VERB
? PUNCT
  SPACE
It PRON
is AUX
supposed VERB
to PART
give VERB
you PRON
a DET
> X
fast ADJ
and CCONJ
accurate ADJ
temperature NOUN
reading VERB
in ADP
the DET
ear NOUN
. PUNCT
  SPACE
How ADV
far ADV
in ADP
the DET
ear NOUN
does AUX
> X
one PRON
have AUX
to PART
insert VERB
the DET
instrument NOUN
? PUNCT
  SPACE
Is AUX
it PRON
worth ADJ
the DET
$ SYM
100 NUM
it PRON
is AUX
currently ADV
> X
selling NOUN
for?No NOUN
, PUNCT
they PRON
do AUX
not PART
work VERB
well ADV
. PUNCT
  SPACE
My PRON
doctor NOUN
started VERB
using VERB
one NUM
recently ADV
, PUNCT
and CCONJ
Ithought PROPN
the DET
concept NOUN
was AUX
so ADV
amazing ADJ
that SCONJ
I PRON
bought VERB
one NUM
too ADV
. PUNCT
  SPACE
The DET
thing NOUN
works VERB
by ADP
reading VERB
the DET
infrared ADJ
emissions NOUN
from ADP
the DET
ear NOUN
drum NOUN
. PUNCT
The DET
ear NOUN
drum NOUN
is AUX
hotter ADJ
than SCONJ
the DET
ear PROPN
canal NOUN
walls NOUN
, PUNCT
so ADV
you PRON
have AUX
to PART
pointthe VERB
thing NOUN
very ADV
carefully ADV
. PUNCT
  SPACE
This DET
means VERB
tugging VERB
on ADP
the DET
top NOUN
of ADP
the DET
earto NOUN
straighten VERB
out ADP
the DET
ear NOUN
canal NOUN
, PUNCT
then ADV
inserting VERB
the DET
thing NOUN
snugly ADV
, PUNCT
thenpushing VERB
a DET
button NOUN
. PUNCT
  SPACE
Unfortunately ADV
, PUNCT
there PRON
are AUX
many ADJ
things NOUN
that PRON
can AUX
go VERB
wrong ADJ
. PUNCT
It PRON
is AUX
almost ADV
impossible ADJ
to PART
aim VERB
the DET
thing NOUN
correctly ADV
when ADV
you PRON
do AUX
it PRON
on ADP
yourself PRON
. PUNCT
  SPACE
I PRON
get VERB
readings NOUN
which PRON
differ VERB
from ADP
each DET
other ADJ
by ADP
up ADP
to PART
2 NUM
degrees NOUN
, PUNCT
and CCONJ
may AUX
differ VERB
from ADP
an DET
oral ADJ
thermometer NOUN
by ADP
up ADP
to PART
2 NUM
degrees NOUN
. PUNCT
  SPACE
I PRON
talked VERB
to ADP
one NUM
of ADP
the DET
nurses NOUN
in ADP
my PRON
doctor NOUN
's PART
office NOUN
recently ADV
about ADP
this DET
, PUNCT
and CCONJ
she PRON
said VERB
she PRON
did AUX
n't PART
like VERB
them PRON
either ADV
, PUNCT
for ADP
same ADJ
reasons NOUN
. PUNCT
  SPACE
She PRON
did AUX
giveme VERB
some DET
instruction NOUN
on ADP
how ADV
to ADP
tug NOUN
on ADP
my PRON
ear NOUN
, PUNCT
and CCONJ
what PRON
correct ADJ
insertionfeels NOUN
like VERB
, PUNCT
but CCONJ
she PRON
said VERB
she PRON
thought VERB
it PRON
was AUX
impossible ADJ
to PART
do AUX
correctlyon NOUN
one NOUN
's PART
self NOUN
. PUNCT
  SPACE
She PRON
also ADV
said VERB
that SCONJ
she PRON
and CCONJ
other ADJ
nurses NOUN
had AUX
complained VERB
tothe DET
company NOUN
about ADP
inaccurate ADJ
readings NOUN
, PUNCT
and CCONJ
that SCONJ
someone PRON
from ADP
the DET
companyhad NOUN
told VERB
them PRON
to PART
take VERB
great ADJ
care NOUN
to PART
clean VERB
the DET
infrared ADJ
window NOUN
at ADP
the DET
endof PROPN
the DET
probe NOUN
with ADP
alcohol NOUN
from ADP
time NOUN
to ADP
time NOUN
. PUNCT
  SPACE
She PRON
demonstrated VERB
this DET
priorto NOUN
reading VERB
my PRON
temperature NOUN
, PUNCT
and CCONJ
managed VERB
to PART
get AUX
a DET
reading NOUN
within ADP
0.5 NUM
degreeof NOUN
the DET
oral ADJ
temperature NOUN
I PRON
took VERB
at ADP
home NOUN
before ADP
driving VERB
to ADP
the DET
Dr PROPN
's PART
office NOUN
. PUNCT
I PRON
have AUX
also ADV
noticed VERB
tha NOUN
some DET
nurses NOUN
click VERB
the DET
button NOUN
, PUNCT
then ADV
remove VERB
theprobe PROPN
immediately ADV
. PUNCT
  SPACE
This DET
causes VERB
wrong ADJ
readings NOUN
. PUNCT
  SPACE
In ADP
my PRON
experience NOUN
, PUNCT
youhave VERB
to PART
leave VERB
the DET
probe NOUN
in ADP
a DET
good ADJ
1 NUM
to ADP
2 NUM
seconds NOUN
after ADP
clicking VERB
the DET
buttonto NOUN
get VERB
a DET
good ADJ
measurement NOUN
. PUNCT
  SPACE
The DET
nurse NOUN
I PRON
talked VERB
with ADP
agreed VERB
. PUNCT
  SPACE
I PRON
suspectthat ADP
many ADJ
people NOUN
do AUX
n't PART
realize VERB
this DET
, PUNCT
and CCONJ
therefore ADV
get AUX
bad ADJ
readings NOUN
foryet ADP
another DET
reason NOUN
. PUNCT
In ADP
short ADJ
, PUNCT
it PRON
's AUX
a DET
great ADJ
idea NOUN
. PUNCT
  SPACE
It PRON
may AUX
work VERB
for ADP
some DET
folks NOUN
, PUNCT
but CCONJ
I PRON
believeit VERB
does AUX
n't PART
work VERB
well ADV
for ADP
a DET
person NOUN
who PRON
wants VERB
to PART
take VERB
his PRON
own ADJ
temperature NOUN
. PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59640From NUM
: PUNCT
Renee@cup.portal.com X
( PUNCT
Renee PROPN
Linda PROPN
Roberts)Subject VERB
: PUNCT
Muscle NOUN
spasms NOUN
post ADJ
- ADJ
surgicallyI PROPN
had AUX
ankle NOUN
reconstruction NOUN
( PUNCT
grafting VERB
the DET
extensor NOUN
digitorumlongus NOUN
to ADP
the DET
lateral ADJ
side NOUN
of ADP
the DET
ankle NOUN
, PUNCT
along ADP
with ADP
a DET
videoarthroscopy NOUN
of ADP
the DET
ankle NOUN
( PUNCT
interesting ADJ
to PART
watch VERB
, PUNCT
to PART
say VERB
theleast ADV
) PUNCT
. PUNCT
Since SCONJ
then ADV
, PUNCT
I PRON
have AUX
had VERB
periodic ADJ
muscle NOUN
spasms NOUN
( PUNCT
notcramping VERB
, PUNCT
but CCONJ
twitching VERB
that DET
is AUX
very ADV
fast ADJ
) PUNCT
in ADP
some DET
of ADP
themuscle NOUN
groups NOUN
along ADP
the DET
lateral ADJ
side NOUN
, PUNCT
and CCONJ
along ADP
the DET
top ADJ
ofmy PROPN
foot NOUN
. PUNCT
TX PROPN
with ADP
quinine NOUN
sulfate NOUN
produced VERB
ringing VERB
in ADP
my PRON
ears NOUN
, PUNCT
but CCONJ
didhelp NOUN
with ADP
the DET
spasms NOUN
. PUNCT
I PRON
am AUX
on ADP
flexeril PROPN
now ADV
, PUNCT
but CCONJ
no DET
discernable ADJ
help NOUN
with ADP
the DET
spasms NOUN
. PUNCT
Any DET
ideas?One ADJ
thing NOUN
- PUNCT
I PRON
am AUX
in ADP
a DET
short ADJ
leg NOUN
cast NOUN
, PUNCT
so SCONJ
heat NOUN
is AUX
not PART
the DET
answer NOUN
. PUNCT
Renee PROPN
RobertsNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59641From NUM
: PUNCT
bf455@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Bonita PROPN
Kale)Subject NUM
: PUNCT
Re ADP
: PUNCT
HELP PROPN
for ADP
Kidney PROPN
Stones PROPN
.............. PUNCT
In ADP
a DET
previous ADJ
article NOUN
, PUNCT
jeffs@sr.hp.com X
( PUNCT
Jeff PROPN
Silva PROPN
) PUNCT
says VERB
: PUNCT
I PRON
was AUX
told VERB
by ADP
my PRON
doctor NOUN
> X
at ADP
that DET
time NOUN
that SCONJ
the DET
pain NOUN
was AUX
comparable ADJ
to ADP
that DET
of ADP
childbirth ADJ
. PUNCT
( PUNCT
Yes,>by NOUN
a DET
male ADJ
doctor NOUN
, PUNCT
so CCONJ
I PRON
'm AUX
sure ADJ
some DET
of ADP
you PRON
women NOUN
will AUX
disagree VERB
) PUNCT
. PUNCT
I'd NOUN
> X
really ADV
like VERB
to PART
know VERB
the DET
truth NOUN
in ADP
this DET
, PUNCT
so ADV
maybe ADV
some DET
of ADP
you PRON
women NOUN
who PRON
> X
have AUX
had VERB
a DET
baby NOUN
and CCONJ
a DET
kidney NOUN
stone NOUN
could AUX
fill VERB
me PRON
in ADP
. PUNCT
I PRON
've AUX
had VERB
three NUM
children NOUN
and CCONJ
the DET
pain NOUN
was AUX
different ADJ
in ADP
degree NOUN
for ADP
each DET
. PUNCT
  SPACE
Ithink VERB
it PRON
just ADV
depends VERB
. PUNCT
  SPACE
I PRON
was AUX
impressed VERB
by ADP
how ADV
awful ADJ
a DET
kidney NOUN
stone NOUN
seemedto PROPN
be AUX
, PUNCT
when ADV
I PRON
saw VERB
a DET
relative NOUN
with ADP
one NUM
. PUNCT
  SPACE
I PRON
bet VERB
they PRON
depend VERB
, PUNCT
too ADV
-- PUNCT
some DET
areprobably ADV
worse ADJ
than SCONJ
others NOUN
. PUNCT
Pain NOUN
-- PUNCT
yucch PRON
. PUNCT
Bonita PROPN
KaleNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59642From NUM
: PUNCT
bf455@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Bonita PROPN
Kale)Subject PROPN
: PUNCT
arthritis NOUN
and CCONJ
diabetesI PROPN
have AUX
osteoarthritis NOUN
, PUNCT
and CCONJ
my PRON
huband NOUN
has AUX
just ADV
been AUX
diagnosed VERB
with ADP
diabetes(type NOUN
II PROPN
, PUNCT
I PRON
guess VERB
-- PUNCT
no DET
insulin NOUN
) PUNCT
. PUNCT
I PRON
've AUX
been AUX
trying VERB
to PART
read VERB
up ADP
on ADP
these DET
two NUM
conditions NOUN
, PUNCT
and CCONJ
what PRON
reallysurprises VERB
me PRON
is AUX
how ADV
few ADJ
experiments NOUN
have AUX
been AUX
done VERB
and CCONJ
how ADV
little ADJ
is AUX
known VERB
. PUNCT
Losing VERB
weight NOUN
appears VERB
to PART
be AUX
imperative ADJ
for ADP
diabetes NOUN
and CCONJ
advisable ADJ
forarthritis NOUN
( PUNCT
at ADP
least ADJ
, PUNCT
for ADP
-women- PUNCT
with ADP
arthritis NOUN
) PUNCT
, PUNCT
but CCONJ
, PUNCT
of ADP
course NOUN
, PUNCT
the DET
veryconditions NOUN
that PRON
make VERB
weight NOUN
loss NOUN
advisable ADJ
are AUX
part NOUN
of ADP
the DET
reason NOUN
for ADP
theweight NOUN
gain NOUN
. PUNCT
For ADP
myself PRON
, PUNCT
I PRON
'm AUX
almost ADV
afraid ADJ
to PART
lose VERB
weight NOUN
, PUNCT
because SCONJ
no DET
matter ADV
how ADV
gentleand NOUN
sensible VERB
a DET
diet NOUN
I PRON
use VERB
( PUNCT
the DET
last ADJ
one NOUN
was AUX
1800 NUM
- SYM
2000 NUM
calories NOUN
, PUNCT
in ADP
abouteight ADJ
small ADJ
meals NOUN
) PUNCT
, PUNCT
the DET
weight NOUN
wo AUX
n't PART
go VERB
off ADP
gradually ADV
and CCONJ
stay VERB
off ADP
. PUNCT
Instead ADV
, PUNCT
it PRON
drops VERB
off ADP
precipitously ADV
, PUNCT
and CCONJ
then ADV
comes VERB
back ADV
on ADV
with ADP
muchinterest NOUN
, PUNCT
like SCONJ
bread NOUN
on ADP
the DET
waters NOUN
. PUNCT
With ADP
this DET
experience NOUN
, PUNCT
it PRON
's AUX
hard ADJ
to PART
be AUX
encouraging ADJ
to ADP
my PRON
husband NOUN
. PUNCT
  SPACE
All DET
I PRON
cansuggest VERB
is AUX
to PART
make VERB
it PRON
as ADV
gradual ADJ
as SCONJ
possible ADJ
. PUNCT
Meanwhile ADV
, PUNCT
some DET
experts NOUN
recommend VERB
no DET
sugar NOUN
, PUNCT
others NOUN
, PUNCT
no DET
fat NOUN
, PUNCT
others NOUN
, PUNCT
just ADV
abalanced VERB
diet NOUN
. PUNCT
  SPACE
It PRON
's AUX
almost ADV
impossible ADJ
to PART
tell VERB
from ADP
their PRON
writings NOUN
-which NOUN
- PUNCT
parts NOUN
of ADP
their PRON
recommendations NOUN
are AUX
supposed VERB
to PART
help VERB
the DET
condition NOUN
, PUNCT
andwhich PROPN
are AUX
merely ADV
ideas NOUN
the DET
expert NOUN
thinks VERB
are AUX
nifty ADJ
. PUNCT
Is AUX
it PRON
my PRON
imagination NOUN
, PUNCT
or CCONJ
are AUX
these DET
very ADV
old ADJ
conditions NOUN
very ADV
poorlyunderstood ADJ
? PUNCT
  SPACE
Is AUX
it PRON
just ADV
that SCONJ
I PRON
'm AUX
used VERB
to ADP
pediatrician ADJ
- PUNCT
talk NOUN
( PUNCT
" PUNCT
It PRON
's AUX
strep;give VERB
him PRON
this DET
and CCONJ
he PRON
'll AUX
get AUX
well ADJ
. PUNCT
" PUNCT
) PUNCT
and CCONJ
so ADV
my PRON
expectations NOUN
are AUX
too ADV
high ADJ
? PUNCT
Bonita PROPN
KaleNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59643From NUM
: PUNCT
dkibbe@med.unc.edu NOUN
( PUNCT
David PROPN
C. PROPN
Kibbe)Subject PROPN
: PUNCT
quality NOUN
managementNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59644From NUM
: PUNCT
disraeli@leland NOUN
. PUNCT
Stanford PROPN
. PUNCT
EDU PROPN
( PUNCT
Jamie PROPN
Lara PROPN
Bronstein)Subject NOUN
: PUNCT
Re ADP
: PUNCT
Bacteria NOUN
invasion NOUN
and CCONJ
swimming NOUN
poolsI PROPN
have AUX
been AUX
struck VERB
down ADP
this DET
past ADJ
week NOUN
by ADP
a DET
stomach NOUN
bug NOUN
and CCONJ
feverwhich PROPN
went VERB
away ADV
quickly ADV
when ADV
treated VERB
with ADP
an DET
antibiotic NOUN
. PUNCT
Thepharmacist PROPN
told VERB
me PRON
the DET
antibiotic ADJ
is AUX
effective ADJ
against ADP
a DET
widevariety NOUN
of ADP
" PUNCT
gram NOUN
- PUNCT
negative ADJ
bacteria NOUN
. PUNCT
" PUNCT
I PRON
was AUX
wondering VERB
where ADV
Imight PROPN
have AUX
acquired VERB
such DET
a DET
bacteria NOUN
. PUNCT
Could AUX
they PRON
hang VERB
out ADP
in ADP
swimming NOUN
- PUNCT
pool NOUN
water NOUN
, PUNCT
or CCONJ
would AUX
the DET
chlorine NOUN
kill VERB
them PRON
? PUNCT
Feeling VERB
better ADJ
, PUNCT
I PRON
amJ. VERB
Bronsteindisraeli@leland.stanford.eduNewsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59645From NUM
: PUNCT
matthews@Oswego PROPN
. PUNCT
EDU PROPN
( PUNCT
Harry PROPN
Matthews)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Need VERB
info NOUN
on ADP
Circumcision PROPN
, PUNCT
medical ADJ
cons NOUN
and CCONJ
prosBULLSHIT NOUN
! PUNCT
! PUNCT
! PUNCT
Newsgroup NOUN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59646From NUM
: PUNCT
V5113E@VM.TEMPLE.EDU PROPN
( PUNCT
James PROPN
Arbuckle)Subject NUM
: PUNCT
Drop VERB
your PRON
drawers NOUN
and CCONJ
the DET
doctor NOUN
will AUX
see VERB
youOrganization PROPN
: PUNCT
Temple PROPN
UniversityX PROPN
- PUNCT
Newsreader PROPN
: PUNCT
NNR PROPN
/ SYM
VM PROPN
S_1.3.2Last NOUN
week NOUN
I PRON
went VERB
to PART
see VERB
a DET
gastroenterologist NOUN
. PUNCT
I PRON
had AUX
never ADV
met VERB
thisdoctor NOUN
before ADV
, PUNCT
and CCONJ
she PRON
did AUX
not PART
know VERB
what PRON
I PRON
was AUX
there ADV
for ADP
. PUNCT
As ADV
soon ADV
as SCONJ
Iarrived PROPN
, PUNCT
somebody PRON
showed VERB
me PRON
to ADP
an DET
examining VERB
room NOUN
and CCONJ
handed VERB
me PRON
a DET
gown NOUN
. PUNCT
They PRON
told VERB
me PRON
to PART
undress VERB
( PUNCT
from ADP
the DET
waist NOUN
down ADP
, PUNCT
to PART
be AUX
exact ADJ
) PUNCT
and CCONJ
wait VERB
for ADP
thedoctor NOUN
. PUNCT
Is AUX
this DET
the DET
usual ADJ
drill NOUN
when ADV
you PRON
go VERB
to ADP
a DET
doctor NOUN
for ADP
the DET
firsttime NOUN
? PUNCT
I PRON
do AUX
n't PART
have AUX
much ADJ
experience NOUN
going VERB
to ADP
doctors NOUN
( PUNCT
knock VERB
on ADP
wood NOUN
) PUNCT
, PUNCT
buton PROPN
the DET
couple NOUN
of ADP
occasions NOUN
when ADV
I PRON
've AUX
gone VERB
to ADP
a DET
new ADJ
doctor NOUN
, PUNCT
I PRON
met VERB
himwith NOUN
my PRON
clothes NOUN
on ADP
. PUNCT
First ADV
, PUNCT
he PRON
introduced VERB
himself PRON
, PUNCT
asked VERB
what PRON
I PRON
was AUX
therefor ADV
and CCONJ
took VERB
a DET
history NOUN
, PUNCT
all ADV
before ADP
I PRON
undressed VERB
. PUNCT
Are AUX
patients NOUN
usually ADV
expected VERB
to PART
get AUX
naked ADJ
before ADP
meeting VERB
a DET
doctorfor NOUN
the DET
first ADJ
time NOUN
? PUNCT
Personally ADV
, PUNCT
I PRON
'd AUX
prefer VERB
to PART
meet VERB
the DET
doctor NOUN
onsomething VERB
remotely ADV
resembling VERB
a DET
condition NOUN
of ADP
parity NOUN
and CCONJ
to PART
establish VERB
anidentity NOUN
as SCONJ
a DET
person NOUN
who PRON
wears VERB
clothes NOUN
before ADP
dropping VERB
my PRON
drawers NOUN
. PUNCT
Ifnothing VERB
else ADV
, PUNCT
it PRON
minimizes VERB
the DET
time NOUN
that PRON
I PRON
have AUX
to PART
spend VERB
in ADP
the DET
selfconscious ADJ
, PUNCT
ill ADJ
at ADP
ease NOUN
and CCONJ
vulnerable ADJ
condition NOUN
of ADP
a DET
person NOUN
with ADP
a DET
barebottom ADJ
talking VERB
to ADP
somebody PRON
who PRON
is AUX
fully ADV
clothed VERB
. PUNCT
Does AUX
anybody PRON
besides SCONJ
me PRON
regard VERB
this DET
get AUX
- PUNCT
naked ADJ
- PUNCT
first ADJ
- PUNCT
and CCONJ
- PUNCT
then ADV
- PUNCT
we PRON
- PUNCT
can AUX
- PUNCT
talkattitude NOUN
as SCONJ
insensitive ADJ
? PUNCT
Also ADV
, PUNCT
is AUX
it PRON
unusual ADJ
? PUNCT
  SPACE
James PROPN
Arbuckle PROPN
                          SPACE
Email NOUN
: PUNCT
  SPACE
v5113e@vm.temple.eduNewsgroup PROPN
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59648From NUM
: PUNCT
kxgst1+@pitt.edu PROPN
( PUNCT
Kenneth PROPN
Gilbert)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Persistent PROPN
vs ADP
ChronicIn PROPN
article NOUN
< X
10600@blue.cis.pitt.edu NUM
> X
doyle+@pitt.edu NOUN
( PUNCT
Howard PROPN
R PROPN
Doyle PROPN
) PUNCT
writes::Chronic ADJ
persistent ADJ
hepatitis NOUN
is AUX
usually ADV
diagnosed VERB
when ADV
someone PRON
does AUX
a DET
liver NOUN
: PUNCT
biopsy NOUN
on ADP
a DET
patient NOUN
that PRON
has AUX
persistently ADV
elevated VERB
serum ADJ
transaminases NOUN
months NOUN
: PUNCT
after ADP
a DET
bout NOUN
of ADP
acute ADJ
viral ADJ
hepatitis NOUN
, PUNCT
or CCONJ
when ADV
someone PRON
is AUX
found VERB
to PART
have AUX
: PUNCT
persistently ADV
elevated ADJ
transaminases NOUN
on ADP
routine ADJ
screening NOUN
tests NOUN
. PUNCT
The DET
degree NOUN
of ADP
: PUNCT
elevation NOUN
( PUNCT
in ADP
the DET
serum ADJ
transaminases NOUN
) PUNCT
can AUX
be AUX
trivial ADJ
, PUNCT
or CCONJ
as ADV
much ADJ
as SCONJ
ten NUM
times NOUN
: PUNCT
normal ADJ
. PUNCT
Other ADJ
blood NOUN
chemistries NOUN
are AUX
usually ADV
normal ADJ
. PUNCT
: PUNCT
As SCONJ
a DET
rule NOUN
, PUNCT
patients NOUN
with ADP
CPH PROPN
have AUX
no DET
clinical ADJ
signs NOUN
of ADP
liver NOUN
disease NOUN
. PUNCT
: PUNCT
Chronic ADJ
active ADJ
hepatitis NOUN
can AUX
also ADV
be AUX
asymptomatic ADJ
or CCONJ
minimally ADV
symptomatic ADJ
, PUNCT
at ADP
: PUNCT
least ADV
initially ADV
, PUNCT
and CCONJ
that DET
's AUX
why ADV
it PRON
's AUX
important ADJ
to PART
tell VERB
them PRON
apart ADV
by ADP
means NOUN
of ADP
: PUNCT
a DET
biopsy NOUN
. PUNCT
The DET
patient NOUN
with ADP
CPH PROPN
only ADV
needs VERB
to PART
be AUX
reassured VERB
. PUNCT
The DET
patient NOUN
with ADP
: PUNCT
CAH PROPN
needs VERB
to PART
be AUX
treated VERB
. PUNCT
I PRON
just ADV
went VERB
back ADV
to ADP
the DET
chapter NOUN
in ADP
Cecil PROPN
on ADP
chronic PROPN
hepatitis NOUN
. PUNCT
  SPACE
It PRON
seemsthat VERB
indeed ADV
most ADJ
cases NOUN
of ADP
CPH PROPN
are AUX
persistant ADJ
viral ADJ
hepatitis PROPN
, PUNCT
whereasthere ADV
are AUX
a DET
multitude NOUN
of ADP
potential ADJ
and CCONJ
probable ADJ
causes NOUN
for ADP
CAH PROPN
( PUNCT
viral NOUN
, PUNCT
drugs NOUN
, PUNCT
alcohol NOUN
, PUNCT
autoimmune PROPN
, PUNCT
etc X
. PUNCT
) PUNCT
. PUNCT
  SPACE
Physicians PROPN
seem VERB
to PART
have AUX
a DET
variety NOUN
of"thresholds NOUN
" PUNCT
for ADP
electing VERB
to ADP
biopsy NOUN
someone PRON
's PART
liver NOUN
. PUNCT
  SPACE
Personally ADV
, PUNCT
I PRON
thinkthat ADP
if SCONJ
the DET
patient NOUN
is AUX
asymptomatic ADJ
, PUNCT
with ADP
only ADJ
slight ADJ
transaminitis NOUN
andnormal NOUN
albumin NOUN
and CCONJ
PT PROPN
, PUNCT
one PRON
can AUX
simply ADV
follow VERB
them PRON
closely ADV
and CCONJ
not PART
add VERB
thepotential ADJ
risks NOUN
of ADP
a DET
biopsy NOUN
. PUNCT
  SPACE
Others NOUN
may AUX
well ADV
biopsy VERB
such DET
a DET
patient NOUN
, PUNCT
thusproviding VERB
these DET
samples NOUN
for ADP
study NOUN
. PUNCT
  SPACE
It PRON
would AUX
be AUX
interesting ADJ
to PART
see VERB
ifanyone NOUN
's AUX
done VERB
any DET
decision NOUN
analysis NOUN
on ADP
this.-- PROPN
= SYM
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-== PROPN
  SPACE
Kenneth PROPN
Gilbert PROPN
              SPACE
_ PROPN
_ PROPN
| PROPN
_ PROPN
_ PROPN
        SPACE
University PROPN
of ADP
Pittsburgh PROPN
   SPACE
= SYM
= PUNCT
  SPACE
General PROPN
Internal PROPN
Medicine PROPN
      SPACE
| PROPN
      SPACE
" PUNCT
... PUNCT
dammit PROPN
, PUNCT
not PART
a DET
programmer NOUN
! PUNCT
" PUNCT
= X
= PUNCT
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup PUNCT
: PUNCT
sci.medDocument_id NOUN
: PUNCT
59652From NUM
: PUNCT
bj368@cleveland PROPN
. PUNCT
Freenet NOUN
. PUNCT
Edu PROPN
( PUNCT
Mike PROPN
E. PROPN
Romano)Subject PROPN
: PUNCT
Re ADP
: PUNCT
Drop VERB
your PRON
drawers NOUN
and CCONJ
the DET
doctor NOUN
will AUX
see VERB
youThis PUNCT
is AUX
not PART
an DET
unusual ADJ
practice NOUN
if SCONJ
the DET
doctor NOUN
is AUX
also ADV
amember NOUN
of ADP
a DET
nudist NOUN
colony.-- PROPN
Sir PROPN
, PUNCT
I PRON
admit VERB
your PRON
gen'ral NOUN
ruleThat PROPN
every DET
poet NOUN
is AUX
a DET
fool;But PROPN
you PRON
yourself PRON
may AUX
serve VERB
to PART
show VERB
it PRON
, PUNCT
That SCONJ
every DET
fool NOUN
is AUX
not PART
a DET
poet NOUN
. PUNCT
    SPACE
A. NOUN
Pope PROPN

Stanfordnlp

In [107]:
from functools import reduce
nlp_stf = stanfordnlp.Pipeline(processors = 'tokenize,lemma,pos')
Use device: cpu
---
Loading: tokenize
With settings: 
{'model_path': '/Users/Sophie/stanfordnlp_resources/en_ewt_models/en_ewt_tokenizer.pt', 'lang': 'en', 'shorthand': 'en_ewt', 'mode': 'predict'}
---
Loading: lemma
With settings: 
{'model_path': '/Users/Sophie/stanfordnlp_resources/en_ewt_models/en_ewt_lemmatizer.pt', 'lang': 'en', 'shorthand': 'en_ewt', 'mode': 'predict'}
Building an attentional Seq2Seq model...
Using a Bi-LSTM encoder
Using soft attention for LSTM.
Finetune all embeddings.
[Running seq2seq lemmatizer with edit classifier]
---
Loading: pos
With settings: 
{'model_path': '/Users/Sophie/stanfordnlp_resources/en_ewt_models/en_ewt_tagger.pt', 'pretrain_path': '/Users/Sophie/stanfordnlp_resources/en_ewt_models/en_ewt.pretrain.pt', 'lang': 'en', 'shorthand': 'en_ewt', 'mode': 'predict'}
Done loading processors!
---
In [108]:
## sentence tokenize
now = time.time()
doc = nlp_stf(text)
sent_stf = [' '.join([token.text for token in sentence.tokens]).strip() for sentence in doc.sentences]
print('Stanfordnlp took %s seconds for sentence tokenize'%(time.time()-now))
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-108-b5e151eb961e> in <module>()
      1 ## sentence tokenize
      2 now = time.time()
----> 3 doc = nlp_stf(text)
      4 sent_stf = [' '.join([token.text for token in sentence.tokens]).strip() for sentence in doc.sentences]
      5 print('Stanfordnlp took %s seconds for sentence tokenize'%(time.time()-now))

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/core.py in __call__(self, doc)
    174         if isinstance(doc, str) or isinstance(doc, list):
    175             doc = Document(doc)
--> 176         self.process(doc)
    177         return doc

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/core.py in process(self, doc)
    168         for processor_name in self.processor_names:
    169             if self.processors[processor_name] is not None:
--> 170                 self.processors[processor_name].process(doc)
    171         doc.load_annotations()
    172 

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/tokenize_processor.py in process(self, doc)
     71             with io.StringIO() as conll_output_string:
     72                 output_predictions(conll_output_string, self.trainer, batches, self.vocab, None,
---> 73                                    self.config.get('max_seqlen', TokenizeProcessor.MAX_SEQ_LENGTH_DEFAULT))
     74                 # set conll file for doc
     75                 doc.conll_file = conll.CoNLLFile(input_str=conll_output_string.getvalue())

/anaconda/lib/python3.6/site-packages/stanfordnlp/models/tokenize/utils.py in output_predictions(output_file, trainer, data_generator, vocab, mwt_dict, max_seqlen)
     81                 en = max(ens)
     82                 batch1 = batch[0][:, :en], batch[1][:, :en], batch[2][:, :en], [x[:en] for x in batch[3]]
---> 83                 pred1 = np.argmax(trainer.predict(batch1), axis=2)
     84 
     85                 for j in range(len(batchparas)):

KeyboardInterrupt: 
In [114]:
## word tokenize
now = time.time()
doc = nlp_stf(text)
words_by_sentence = [[token.text for token in sentence.tokens] for sentence in doc.sentences]
word_stf = reduce(lambda lst1, lst2: lst1+lst2, words_by_sentence)
print('Stanfordnlp took %s seconds for word tokenize'%(time.time()-now))
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-114-4b7a43fff1f3> in <module>()
      1 ## word tokenize
      2 now = time.time()
----> 3 doc = nlp_stf(text)
      4 words_by_sentence = [[token.text for token in sentence.tokens] for sentence in doc.sentences]
      5 word_stf = reduce(lambda lst1, lst2: lst1+lst2, words_by_sentence)

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/core.py in __call__(self, doc)
    174         if isinstance(doc, str) or isinstance(doc, list):
    175             doc = Document(doc)
--> 176         self.process(doc)
    177         return doc

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/core.py in process(self, doc)
    168         for processor_name in self.processor_names:
    169             if self.processors[processor_name] is not None:
--> 170                 self.processors[processor_name].process(doc)
    171         doc.load_annotations()
    172 

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/tokenize_processor.py in process(self, doc)
     71             with io.StringIO() as conll_output_string:
     72                 output_predictions(conll_output_string, self.trainer, batches, self.vocab, None,
---> 73                                    self.config.get('max_seqlen', TokenizeProcessor.MAX_SEQ_LENGTH_DEFAULT))
     74                 # set conll file for doc
     75                 doc.conll_file = conll.CoNLLFile(input_str=conll_output_string.getvalue())

/anaconda/lib/python3.6/site-packages/stanfordnlp/models/tokenize/utils.py in output_predictions(output_file, trainer, data_generator, vocab, mwt_dict, max_seqlen)
     95                 if all([idx1 >= N for idx1, N in zip(idx, Ns)]):
     96                     break
---> 97                 batch = data_generator.next(eval_offsets=[x+y for x, y in zip(idx, offsets)])
     98 
     99             pred = [np.concatenate(p, 0) for p in pred]

/anaconda/lib/python3.6/site-packages/stanfordnlp/models/tokenize/data.py in next(self, eval_offsets, unit_dropout)
    166         convert = lambda t: (torch.from_numpy(np.array(t[0], dtype=t[1])))
    167 
--> 168         units, labels, features = list(map(convert, [(units, np.int64), (labels, np.int64), (features, np.float32)]))
    169 
    170         return units, labels, features, raw_units

/anaconda/lib/python3.6/site-packages/stanfordnlp/models/tokenize/data.py in <lambda>(t)
    164         raw_units = [[y[3] for y in x] for x in res]
    165 
--> 166         convert = lambda t: (torch.from_numpy(np.array(t[0], dtype=t[1])))
    167 
    168         units, labels, features = list(map(convert, [(units, np.int64), (labels, np.int64), (features, np.float32)]))

KeyboardInterrupt: 
In [135]:
## lemmatize
doc_stf = nlp_stf(text)
for sent in doc_stf.sentences:
    for word in sent.words:
        print(word.lemma)
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-135-10578c52a3a6> in <module>()
      1 ## lemmatize
----> 2 doc_stf = nlp_stf(text)
      3 for sent in doc_stf.sentences:
      4     for word in sent.words:
      5         print(word.lemma)

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/core.py in __call__(self, doc)
    174         if isinstance(doc, str) or isinstance(doc, list):
    175             doc = Document(doc)
--> 176         self.process(doc)
    177         return doc

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/core.py in process(self, doc)
    168         for processor_name in self.processor_names:
    169             if self.processors[processor_name] is not None:
--> 170                 self.processors[processor_name].process(doc)
    171         doc.load_annotations()
    172 

/anaconda/lib/python3.6/site-packages/stanfordnlp/pipeline/tokenize_processor.py in process(self, doc)
     67                 batches = DataLoader(self.config, input_data=data, vocab=self.vocab, evaluation=True)
     68             else:
---> 69                 batches = DataLoader(self.config, input_text=doc.text, vocab=self.vocab, evaluation=True)
     70             # set up StringIO to get conllu data, run output predictions, set doc's conll file
     71             with io.StringIO() as conll_output_string:

/anaconda/lib/python3.6/site-packages/stanfordnlp/models/tokenize/data.py in __init__(self, args, input_files, input_text, input_data, vocab, evaluation)
     46 
     47         # data comes in a list of paragraphs, where each paragraph is a list of units with unit-level labels
---> 48         self.sentences = [self.para_to_sentences(para) for para in self.data]
     49 
     50         self.init_sent_ids()

/anaconda/lib/python3.6/site-packages/stanfordnlp/models/tokenize/data.py in <listcomp>(.0)
     46 
     47         # data comes in a list of paragraphs, where each paragraph is a list of units with unit-level labels
---> 48         self.sentences = [self.para_to_sentences(para) for para in self.data]
     49 
     50         self.init_sent_ids()

/anaconda/lib/python3.6/site-packages/stanfordnlp/models/tokenize/data.py in para_to_sentences(self, para)
     87         for unit, label in para:
     88             label1 = label if not self.eval else 0
---> 89             current += [[unit, label]]
     90             if label1 == 2 or label1 == 4: # end of sentence
     91                 if len(current) <= self.args['max_seqlen']:

KeyboardInterrupt: 
In [49]:
## pos tagging
for sent in doc_stf.sentences:
    for word in sent.words:
        print(word, word.pos)
Out[49]:
'Newsgroup: sci.meddocument_id: 57110From: bed@intacc.uucp (Deb Waddington)Subject: INFO NEEDED: Gaucher\'s DiseaseI have a 42 yr old male friend, misdiagnosed as having osteopporosis for two years, who recently found out that his illness is the rare Gaucher\'s disease. Gaucher\'s disease symptoms include: brittle bones (he lost 9  inches off his hieght); enlarged liver and spleen; internal bleeding; and fatigue (all the time). The problem (in Type 1) is attributed to a genetic mutation where there is a lack of the enzyme glucocerebroside in macrophages so the cells swell up. This will eventually cause death.Enyzme replacement therapy has been successfully developed and approved by the FDA in the last few years so that those patients administered with this drug (called Ceredase) report a remarkable improvement in their condition. Ceredase, which is manufactured by biotech biggy company--Genzyme--costs the patient $380,000 per year. Gaucher\'s disease has justifyably been called "the most ex'

Parallelization of tokenization

In [110]:
from joblib import Parallel, delayed
In [112]:
sentences = sent_tokenize(text); sentences
Out[112]:
["Newsgroup: sci.meddocument_id: 57110From: bed@intacc.uucp (Deb Waddington)Subject: INFO NEEDED: Gaucher's DiseaseI have a 42 yr old male friend, misdiagnosed as having osteopporosis for two years, who recently found out that his illness is the rare Gaucher's disease.",
 "Gaucher's disease symptoms include: brittle bones (he lost 9  inches off his hieght); enlarged liver and spleen; internal bleeding; and fatigue (all the time).",
 'The problem (in Type 1) is attributed to a genetic mutation where there is a lack of the enzyme glucocerebroside in macrophages so the cells swell up.',
 'This will eventually cause death.Enyzme replacement therapy has been successfully developed and approved by the FDA in the last few years so that those patients administered with this drug (called Ceredase) report a remarkable improvement in their condition.',
 'Ceredase, which is manufactured by biotech biggy company--Genzyme--costs the patient $380,000 per year.',
 'Gaucher\'s disease has justifyably been called "the most expensive disease in the world".NEED INFO:I have researched Gaucher\'s disease at the library but am relying on netlanders to provide me with any additional information:**news, stories, reports**people you know with this disease**ideas, articles about Genzyme Corp, how to get a hold of   enough money to buy some, programs available to help with   costs.',
 "**Basically ANY HELP YOU CAN OFFERThanks so very much!Deborah Newsgroup: sci.meddocument_id: 58043From: mcdonald@aries.scs.uiuc.edu (J. D. McDonald)Subject: Re: jiggersIn article <78846@cup.portal.com> mmm@cup.portal.com (Mark Robert Thorson) writes:>This wouldn't happen to be the same thing as chiggers, would it?>A truly awful parasitic affliction, as I understand it.",
 'Tiny bugs>dig deeply into the skin, burying themselves.',
 'Yuck!',
 'They have these>things in Oklahoma.Close.',
 'My mother comes from Gainesville Tex, right across the border.They claim to be the chigger capitol of the world, and I believe them.When I grew up in Fort Worth it was bad enough, but in Gainesvillein the summer an attack was guaranteed.Doug McDonaldNewsgroup: sci.meddocument_id: 58045From: fulk@cs.rochester.edu (Mark Fulk)Subject: Re: Breech Baby Info NeededIn article <1993Apr5.151818.27409@trentu.ca> xtkmg@trentu.ca (Kate Gregory) writes:>In article <1993Apr3.161757.19612@cs.rochester.edu> fulk@cs.rochester.edu (Mark Fulk) writes:>>>>Another uncommon problem is maternal hemorrhage.',
 "I don't remember the>>incidence, but it is something like 1 in 1,000 or 10,000 births.",
 "It is hard>>to see how you could handle it at home, and you wouldn't have very much time.>>>>thing you might consider is that people's risk tradeoffs vary.",
 "I consider>>a 1/1,000 risk of loss of a loved one to require considerable effort in>>the avoiding.>>Mark, you seem to be terrified of the birth processThat's ridiculous!>and unable to>believe that women's bodies are actually designed to do it.They aren't designed, they evolved.",
 'And, much as it discomforts us, inhumans a trouble-free birth process was sacrificed to increased brain andcranial size.',
 'Wild animals have a much easier time with birth than humans do.Domestic horses and cows typically have a worse time.',
 'To give you an idea:my family tree is complicated because a few of my pioneer great-great-grandfathers had several wives, and we never could figure out which wifehad each child.',
 'One might ask why this happened.',
 'My great-great-grandfathers were, by the time they reached their forties, quite prosperousfarmers.',
 'Nonetheless, they lost several wives each to the rigors ofchildbirth; the graveyards in Spencer, Indiana, and Boswell, North Dakota,contain quite a few gravestones like "Ida, wf.',
 'of Jacob Liptrap, andbaby, May 6, 1853.',
 '">You wanted>to section all women carrying breech in case one in a hundred or a>thousand breech babies get hung up in second stage,More like one in ten.',
 "And the consequences can be devastating; I havedirect experience of more than a dozen victims of a fouled-up breech birth.>and now you want>all babies born in hospital based on a guess of how likely maternal>hemorrhage is and a false belief that it is fatal.It isn't always fatal.",
 'But it is often fatal, when it happens out ofreach of adequate help.',
 "More often, it permanently damages one's health.Clearly women's bodies _evolved_ to give birth (I am no believer in divinedesign); however, evolution did not favor trouble-free births for humans.",
 '>You have your kids where you want.',
 'You encourage your wife to>get six inch holes cut through her stomach muscles, expose herself>to anesthesia and infection, and whatever other "just in case" measures>you think are necessary.My, aren\'t we wroth!',
 "I haven't read a more outrageous straw man attackin months!",
 "I can practically see your mouth foam.We're statistically sophisticated enough to balance the risks.",
 "AlthoughI can't produce exact statistics 5 years after the last time we lookedthem up, rest assured that we balanced C-section risks against other risks.I wouldn't encourage my wife to have a Caesarean unless it was clearlyindicated; on the other hand, I am opposed (on obvious grounds) to waitinguntil an emergency to give in.And bear this in mind: my wife took the lead in all of these decisions.We talked things over, and I did a lot of the leg work, but the maindecisions were really hers.>But I for one am bothered by your continued>suggestions, especially to the misc.kidders pregnant for the first>time, that birth is dangerous, even fatal, and that all these>unpleasant things are far better than the risks you run just doing>it naturally.I don't know of very many home birth advocates, even, that think thata first-time mother should have her baby at home.>I'm no Luddite.",
 "I've had a section.",
 "I'm planning a hospital birth>this time.",
 "But for heaven's sake, not everyone needs that!But people should bother to find out the relative risks.",
 'My wife wasunwilling to take any significant risks in order to have nice surroundings.In view of the intensity of the birth experience, I doubt surroundingshave much importance anyway.',
 "Somehow the values you're advocating seemall lopsided to me: taking risks, even if fairly small, of seriouspermanent harm in order to preserve something that is, after all,an esthetic consideration.-- Mark A. Fulk\t\t\tUniversity of RochesterComputer Science Department\tfulk@cs.rochester.eduNewsgroup: sci.meddocument_id: 58046From: Lawrence Curcio <lc2b+@andrew.cmu.edu>Subject: Analgesics with DiureticsI sometimes see OTC preparations for muscle aches/back aches thatcombine aspirin with a diuretic.",
 'The idea seems to be to reduceinflammation by getting rid of fluid.',
 'Does this actually work?',
 'Thanks,-Larry C. Newsgroup: sci.meddocument_id: 58047From: uabdpo.dpo.uab.edu!gila005 (Stephen Holland)Subject: Re: Lactose intoleranceIn article <ng4.733990422@husc.harvard.edu>, ng4@husc11.harvard.edu (HoLeung Ng) wrote:> > >    When I was a kid in primary school, I used to drink tons of milk without> any problems.',
 'However, nowadays, I can hardly drink any at all without> experiencing some discomfort.',
 'What could be responsible for the change?> > Ho Leung Ng> ng4@husc.harvard.eduYou became older and your intestine normalized to the weaned state.',
 'Thatis, lactose tolerance is an unusual state for adults of most mammalsexcept for h. sapiens of northern European origin.',
 'As a h. sapiens of asian descent (assumption based on name) the loss of lactase is normalfor you.',
 "Steve Hollandgila005@uabdpo.dpo.uab.eduNewsgroup: sci.meddocument_id: 58048From: bennett@kuhub.cc.ukans.eduSubject: Smoker's LungsHow long does it take a smoker's lungs to clear of the tar after quitting?",
 "Does your chances of getting lung cancer decrease quickly or does it takea considerable amount of time for that to happen?Newsgroup: sci.meddocument_id: 58049From: dougb@comm.mot.com (Doug Bank)Subject: Re: Blood Cholesterol -  Gabe Mirkin's adviceIn article <1pka0uINNnqa@mojo.eng.umd.edu>, georgec@eng.umd.edu (George B. Clark) writes:|> Forget about total cholesterol when assessing health risk factors.|> Instead, use a relationship between LDL and HDL cholesterol:|> |> If your LDL is       You need an HDL of at least|> |>       90                 35|>      100                 45|>      110                 50|>      120                 55|>      130                 60|>      140                 70Gee, what do I do?",
 'My LDL is only 50-60.',
 '(and my HDL is only 23-25)I must be risking something, but Is it the same risk as those with very high LDL?|> If your triglycerides are above 300, and your HDL is below 30, the|> drug of choice is gemfibrozil (Lopid) taken as a 600mg tablet|> thirty minutes before your morning and evening meals.What about exercise and a low-fat diet?',
 'What are the long-term effects of this drug?-- Doug Bank                       Private Systems Divisiondougb@ecs.comm.mot.com          Motorola Communications Sectordougb@nwu.edu                   Schaumburg, Illinoisdougb@casbah.acns.nwu.edu       708-576-8207                    Newsgroup: sci.meddocument_id: 58050From: cliff@buster.stafford.tx.us (Cliff Tomplait)Subject: Re: sex problem.ls8139@albnyvms.bitnet (larry silverberg) writes:>I have question that I hope is taken seriously, despite the subject content.>Problem:  My long time girlfriend lately has not been initiating any sexual>\tactivity.',
 'For the last four months things have changed dramatically.>       ...>\t--to make this shorter-- Summary: nothing that I can think of has>\t\t\t\tchanged....>       ...>She suggested we go to a sex counselor, but I really don\'t want to (just yet).>Any suggestions would be appreciated.>If you think you can help me, please contact me by e-mail for further info.>PLEASE serious replies only.>Thanks, LarryLarry:The subject content IS serious; as is the question.On one hand you state that "things have changed dramatically" but, at thesame time nothing you "can think of has changed".',
 "Your girlfriend seemsto want to see a counselor, but you don't.",
 "I'd recommend that you examine your hesitation to see a counselor.",
 "It'sa very good environment to examine issues.",
 'The fact of the matter is:  your girlfriend has a different perception thanyou.',
 'The TWO of you need to address the issue in order to resolve it.Please consider going to a counselor with your girlfriend.',
 'What could itpossibly hurt?Cliff  (the paramedic)Newsgroup: sci.meddocument_id: 58051From: uabdpo.dpo.uab.edu!gila005 (Stephen Holland)Subject: Re: Prednisone...what are the significant long term side effects?> >I have been taking prednisone 5mg twice a day for a while to control> >Ulcerative Colitis.',
 'It seems like if I reduce the dosage, the problem> >becomes worse.',
 'At this point, i see myself taking prednisone for a long> >long time, perhaps for ever.',
 'I was wondering about long term major side> >effects, things like potential birth defects, arthritis etc.',
 'I have been> >putting on weight, my face looks puffed and round, experience sudden mood> >swings.',
 'As I understand, these are all short term.I second what Spenser Aden said in reply.',
 'Additionally, it is hard to saywhat type of response you ar3e having to prednisone since you did not sayhow long you have been on it.',
 'Patients are generally kept on steroids formonths before thinking about tapering.',
 'Alternatives to daily dosing are every other day dosing, in your case 20mg every other day would be a start.Another option if it is not possible to get you off prednisone is to startazathioprine.',
 'Like Spenser said, you should generally be on another drugin addition to your prednisone, like asulfidine.',
 'A lot of the specificsabout options, though, depends on severity, location, and duration of disease, as well as histology, so take advice off the net for what itis worth.',
 "I treat patients with UC and Crohn's.",
 'An educated patient is a good patient, but let your doctor know where the advice came from so thingscan be put in context.',
 "You should also be a member of the Crohn's andColitis Foundation of America.",
 '1-800-932-2423 office / 1-800-343-3637info hotline.Best of Luck to you.Steve Holland.gila005@uabdpo.dpo.uab.eduNewsgroup: sci.meddocument_id: 58054From: nyeda@cnsvax.uwec.edu (David Nye)Subject: Re: Mental Illness[reply to dabbott@augean.eleceng.adelaide.edu.AU (Derek Abbott)] >Are there any case histories of severe mental illness cases remarkably>recovering after a tragic accident or trauma (eg.',
 "through nobody's fault,>being trapped in a fire and losing your legs, say)?",
 'I know of a patient who was severely and chronically depressed and triedto kill himself with a bullet to the temple.',
 'He essentially gavehimself a prefrontal lobotomy, curing the depression.',
 'David Nye (nyeda@cnsvax.uwec.edu).',
 'Midelfort Clinic, Eau Claire WIThis is patently absurd; but whoever wishes to become a philosophermust learn not to be frightened by absurdities.',
 "-- Bertrand RussellNewsgroup: sci.meddocument_id: 58055From: nyeda@cnsvax.uwec.edu (David Nye)Subject: Re: Can't Breathe[reply to ron.roth@rose.com (ron roth)] >While you're right that the S vertebrae are attached to each other,>the sacrum, to my knowledge, *can* be adjusted either directly, or>by applying pressure on the pubic bone... Ron, you're an endless source of misinformation!",
 'There ARE no sacralvertebrae.',
 'There is a bone called the sacrum at the end of the spine.It is a single, solid bone except in a few patients who have alumbarized S1 as a normal variant.',
 'How do you adjust a solid bone,break it?',
 "No, don't tell me, I don't want to know.",
 'David Nye (nyeda@cnsvax.uwec.edu).',
 'Midelfort Clinic, Eau Claire WIThis is patently absurd; but whoever wishes to become a philosophermust learn not to be frightened by absurdities.',
 '-- Bertrand RussellNewsgroup: sci.meddocument_id: 58056From: rousseaua@immunex.comSubject: Re: Lactose intoleranceIn article <ng4.733990422@husc.harvard.edu>, ng4@husc11.harvard.edu (Ho Leung Ng) writes:> >    When I was a kid in primary school, I used to drink tons of milk without> any problems.',
 'However, nowadays, I can hardly drink any at all without> experiencing some discomfort.',
 'What could be responsible for the change?> > Ho Leung Ng> ng4@husc.harvard.eduNewsgroup: sci.meddocument_id: 58057From: rousseaua@immunex.comSubject: Re: Lactose intoleranceIn article <1993Apr5.165716.59@immunex.com>, rousseaua@immunex.com writes:> In article <ng4.733990422@husc.harvard.edu>, ng4@husc11.harvard.edu (Ho Leung Ng) writes:>> >>    When I was a kid in primary school, I used to drink tons of milk without>> any problems.',
 'However, nowadays, I can hardly drink any at all without>> experiencing some discomfort.',
 'What could be responsible for the change?>> >> Ho Leung Ng>> ng4@husc.harvard.eduOOPS.',
 'My original message died.',
 "I'll try again...I always understood (perhaps wrongly...:)) that the bacteria in our digestivetracts help us break down the components of milk.",
 'Perhaps the normal flora of the intestine changes as one passes from childhood.Is there a pathologist or microbiologist in the house?Anne-Marie Rousseaue-mail: rousseaua@immunex.com(Please note that these opinions are mine, and only mine.)',
 "Newsgroup: sci.meddocument_id: 58058From: kxgst1+@pitt.edu (Kenneth Gilbert)Subject: Re: Smoker's LungsIn article <1993Apr5.123315.48837@kuhub.cc.ukans.edu> bennett@kuhub.cc.ukans.edu writes:>How long does it take a smoker's lungs to clear of the tar after quitting?",
 '>Does your chances of getting lung cancer decrease quickly or does it take>a considerable amount of time for that to happen?The answer to your first question is rather difficult to answer withoutdoing a lot of autopsies.',
 "The second question is something that's beenknown for some time.",
 "It appears that within about 15 years of quittingsmoking a person's risk for developing lung cancer drops to that of theperson who never smoked (assuming you do not get lung cancer in theinterim!).",
 'The risk to someone who smoked the equivalent of a pack perday for 40 years is around 20 times as high as a non-smoker.',
 'Stillrather low overall, but significant.',
 'Personally, I\'d be more concernedabout heart disease secondary to smoking -- it\'s much more common, andeven a small increase in risk is significant there.-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==  Kenneth Gilbert              __|__        University of Pittsburgh   ==  General Internal Medicine      |      "...dammit, not a programmer!',
 "==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup: sci.meddocument_id: 58059From: kxgst1@pitt.edu (Kenneth Gilbert)Subject: Re: Can't BreatheDavid Nye (nyeda@cnsvax.uwec.edu) wrote:: [reply to ron.roth@rose.com (ron roth)]:  : >While you're right that the S vertebrae are attached to each other,: >the sacrum, to my knowledge, *can* be adjusted either directly, or: >by applying pressure on the pubic bone...:  : Ron, you're an endless source of misinformation!",
 'There ARE no sacral: vertebrae.',
 'There is a bone called the sacrum at the end of the spine.',
 ': It is a single, solid bone except in a few patients who have a: lumbarized S1 as a normal variant.',
 'How do you adjust a solid bone,: break it?',
 "No, don't tell me, I don't want to know.",
 ':  Oh come now, surely you know he only meant to measure the flow ofelectromagnetic energy about the sacrum and then adjust these flowswith a crystal of chromium applied to the right great toe.',
 'Don\'tyou know anything?--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==  Kenneth Gilbert              __|__        University of Pittsburgh   ==  General Internal Medicine      |      "...dammit, not a programmer!',
 '==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup: sci.meddocument_id: 58060From: euclid@mrcnext.cso.uiuc.edu (Euclid K.)Subject: Re: Anti-Viral Herbskxgst1+@pitt.edu (Kenneth Gilbert) writes:>Unfortunately it was rather poorly researched, and would not be available>today if it were just invented.',
 'Keep in mind however that those were>the days when a bottle of Coca Cola really did contain coca extract and>a certain amount of active cocaine.',
 'Times have changed, and our attitudes>need to change with them.',
 'Well, yes.',
 'That was a part of my point.',
 'Aspirin has its problems, butin some situations it is useful.',
 'Ditto stuff like licorice root.',
 'Takinganything as a drug for theraputic purposes implicitly carries the ideaof taking a dose where the benefits are not exceeded by any unwanted,additional effects.',
 'Taking any drug when the potential ill-effects arenot known is a risk assumed by the parties involved, and it may be thatin a given situation the risk is worthwhile.',
 'Like Prozac, for instance; Prozac has been shown to be theraputic insome cases where the tri-cyclics fail.',
 "But Prozac hasn't been in usethat long, and it really isn't clear what if any effects it may havewhen taken over long periods of time, even though it has been testedby present day standards.",
 'Should Prozac be taken off the market becauselong-term effects, if any, are not known?',
 'IMHO, i\'d say no.euclid>=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>=  Kenneth Gilbert                |          University of Pittsburgh   =>=  General Internal Medicine    --*--        Pittsburgh, PA             =>=  kxgst1+@pitt.edu               |      "...dammit, not a programmer!',
 '=>=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>-- >=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=>=  Kenneth Gilbert                |          University of Pittsburgh   =>=  General Internal Medicine    --*--        Pittsburgh, PA             =>=  kxgst1+@pitt.edu               |      "...dammit, not a programmer!',
 '=--Euclid K.       standard disclaimers apply"It is a bit ironic that we need the wave model [of light] to understand thepropagation of light only through that part of the system where it leaves notrace."',
 '--Hudson & Nelson (_University_Physics_)Newsgroup: sci.meddocument_id: 58061From: jfare@53iss6.Waterloo.NCR.COM (Jim Fare)Subject: ringing earsA friend of mine has a trouble with her ears ringing.',
 'The ringing is so loudthat she has great difficulty sleeping at night.',
 "She says that she hasn't had a normal night's sleep in about 6 months (she looks like it too :-().This is making her depressed so her doctor has put her on anti-depressants.The ringing started rather suddenly about 6 months ago.",
 'She is quickly losingsleep, social life and sanity over this.Does anyone know of any treatments for this?',
 'Any experience?',
 'Copingmechanisms?',
 'Any opinions on the anti-depressant drugs?',
 '[J.F.',
 "]Newsgroup: sci.meddocument_id: 58062From: mcovingt@aisun3.ai.uga.edu (Michael Covington)Subject: Re: Twitching eyelidI'm surprised nobody mentioned that twitching of the eyelid can be asymptom of an infection, especially if it also itches or stings.",
 '(It happened to me, and antibiotic eyedrops cleared it up nicely.)',
 '-- :-  Michael A. Covington         internet mcovingt@ai.uga.edu :    *****:-  Artificial Intelligence Programs       phone 706 542-0358 :  *********:-  The University of Georgia                fax 706 542-0349 :   *  *  *:-  Athens, Georgia 30602-7415 U.S.A.     amateur radio N4TMI :  ** *** **Newsgroup: sci.meddocument_id: 58063From: dyer@spdcc.com (Steve Dyer)Subject: Re: fibromyalgiaIn article <93Apr5.133521edt.1231@smoke.cs.toronto.edu> craig@cs.toronto.edu (Craig MacDonald) writes:>>  It may be extremely>>common, something like 5% of the population.',
 'It is treatable with>>tricyclic antidepressant-type drugs (Elavil, Pamelor).',
 '>>Why is it treated with antidepressants?',
 'Is it considered a>psychogenic condition?No.',
 'That these drugs happen to be useful as antidepressants is neitherhere nor there.-- Steve Dyerdyer@ursa-major.spdcc.com aka {ima,harvard,rayssd,linus,m2c}!spdcc!dyerNewsgroup: sci.meddocument_id: 58064From: dyer@spdcc.com (Steve Dyer)Subject: Re: Analgesics with DiureticsIn article <ofk=lve00WB2AvUktO@andrew.cmu.edu> Lawrence Curcio <lc2b+@andrew.cmu.edu> writes:>I sometimes see OTC preparations for muscle aches/back aches that>combine aspirin with a diuretic.You certainly do not see OTC preparations advertised as such.The only such ridiculous concoctions are nostrums for premenstrualsyndrome, ostensibly to treat headache and "bloating" simultaneously.They\'re worthless.>The idea seems to be to reduce>inflammation by getting rid of fluid.',
 'Does this actually work?',
 "That's not the idea, and no, they don't work.-- Steve Dyerdyer@ursa-major.spdcc.com aka {ima,harvard,rayssd,linus,m2c}!spdcc!dyerNewsgroup: sci.meddocument_id: 58065From: jmilhoan@magnus.acs.ohio-state.edu (JT)Subject: Re: ringing earsIn article <10893@ncrwat.Waterloo.NCR.COM> jfare@53iss6.Waterloo.NCR.COM (Jim Fare) writes:>>>A friend of mine has a trouble with her ears ringing.",
 'The ringing is so loud>that she has great difficulty sleeping at night.',
 "She says that she hasn't >had a normal night's sleep in about 6 months (she looks like it too :-().>This is making her depressed so her doctor has put her on anti-depressants.Sometimes I have a problem with doctor's prescribing medicine likethis.",
 "I of course don't know the exact situation, andanti-depressants may work, but it isn't helping the ringing at all, is it?>The ringing started rather suddenly about 6 months ago.",
 'She is quickly losing>sleep, social life and sanity over this.Mine started about three years back.',
 'Turns out I have tinnitusbilateral (translation: ringing in both ears, basically ;).',
 "If thisis what it is, she'll probably get used to it.",
 'It would keep me upand drive me nuts too, but nowadays, I have to plug both my ears withmy fingers to check to see if they are ringing.',
 'Usually they are, butyou get so used to it, it just gets tuned out.',
 "Yes, this is what I'veread about it... not just from my own personal experience.>Does anyone know of any treatments for this?",
 'Any experience?',
 'Coping>mechanisms?',
 'Any opinions on the anti-depressant drugs?Millions have it, according to my physician.',
 'You just learn to copewith it (like I mentioned earlier) by ignoring it.',
 'It eventuallybecomes unconscious.The doc also said it could be caused by diet (ie: too much caffeine)and stress, but I haven\'t changed my lifestyle much, and it just comesand goes (it is always there somewhat, but now I rarely notice it whenit really "kicks in").Also, it doesn\'t necessarily mean there is any hearing loss, eithercaused by it or causing it.',
 'I had an ENT (ear/nose/throat) exam, andpassed.',
 "In fact, my hearing is quite good considering I don't take asgood of care of my hearing as I should.Her reaction is normal.",
 "If it is tinnitus, chances are good she'llbegin to not even notice it.",
 'This info is taken mostly from a few "experts", my own experience, andsome readings (sorry, it was a few years back and don\'t have anyspecifics handy).JTNewsgroup: sci.meddocument_id: 58066From: amigan@cup.portal.com (Mike - Medwid)Subject: Emphysema questionA friend of mine is going in later this week for tests to see if hasemphysema.',
 'His lung capacity has decreased over time.',
 'His father diedof the disease.',
 'He works in woodworking.',
 'I believe he has a veryoccasional cigarette, perhaps one cigarette a day or even less.',
 "He tellsme this..I've never seen him light up.",
 'He has some pretty healthylife style habits, good diet, exercise, meditation, retreats, therapyetc.',
 'Anyhow..he is very concerned with this check up.',
 'I know reallynothing about the disease.',
 'I believe it interferes with the liningof the lung being able to exchange oxygen.',
 'Is a diagnosis of emphysema a death sentence?',
 'If he were to give up smokingentirely would that better his chances for recovery?',
 'What are some modern therapies used in people with this disease?',
 'I would appreciate any information.',
 'Thanks.',
 'amigan@cup.portal.comNewsgroup: sci.meddocument_id: 58067From: jfare@53iss6.Waterloo.NCR.COM (Jim Fare)Subject: Re: Oily skin - problem?In article <1993Apr5.044140.1@vaxc.stevens-tech.edu> u92_hwong@vaxc.stevens-tech.edu writes:>\tI have a very oily skin.',
 'My problem is when I wash my face, it becomes>oily in half an hour.',
 'Especially in the nose region.',
 'Is this an illness?',
 'How>can I prevent it from occuring in such short time?',
 "Is there a cleanser out>there that will do a better job -- that is after cleaning, my face won't become>oily in such a short time.I don't think that's a problem.",
 'My face is quite oily too.',
 'I had a moderateacne problem for many years.',
 'I then found that if I vigorously scrub my facewith a nail brush and soap (Irish Spring) twice a day the acne was not a problem.',
 "I can still leave a pretty health nose print on a mirror after 45 min(don't ask ;->) but acne is not a real problem anymore.",
 '[J.F.',
 ']Newsgroup: sci.meddocument_id: 58069From: jim.zisfein@factory.com (Jim Zisfein) Subject: Re: Migraines and scansDN> From: nyeda@cnsvax.uwec.edu (David Nye)DN> A neurologyDN> consultation is cheaper than a scan.And also better, because a neurologist can make a differentialdiagnosis between migraine, tension-type headache, cluster, benignintracranial hypertension, chronic paroxysmal hemicrania, and otherheadache syndromes that all appear normal on a scan.',
 "A neurologistcan also recommend a course of treatment that is appropriate to thediagnosis.DN> >>Also, since many people are convinced they have brain tumors or otherDN> >>serious pathology, it may be cheaper to just get a CT scan then haveDN> >>them come into the ER every few weeks.DN> And easier than taking the time to reassure the patient, right?DN> Personally, I don't think this can ever be justified.Sigh.",
 'It may never be justifiable, but I sometimes do it.',
 'Evenafter I try to show thoroughness with a detailed history, neurologicexamination, and discussion with the patient about my diagnosis,salted with lots of reassurance, patients still ask "why can\'t youorder a scan, so we can be absolutely sure?"',
 'Aunt Millie often getsinto the conversation, as in "they ignored Aunt Millie\'s headachesfor years", and then she died of a brain tumor, aneurysm, orwhatever.',
 'If you can get away without ever ordering imaging for apatient with an obviously benign headache syndrome, I\'d like to hearwhat your magic is.Every once in a while I am able to bypass imaging by getting an EEG.Mind you, I don\'t think EEG is terribly sensitive for brain tumor,but the patient feels like "something is being done" (as if thehours I spent talking with and examining the patient were"nothing"), the EEG has no ionizing radiation, it\'s *much* cheaperthan CT or MRI, and the EEG brings in some money to my department.--- .',
 'SLMR 2.1 .',
 'E-mail: jim.zisfein@factory.com (Jim Zisfein)                                                                         Newsgroup: sci.meddocument_id: 58070From: jim.zisfein@factory.com (Jim Zisfein) Subject: Re: migraine and exerciseJL> From: jlecher@pbs.orgJL> > I would not classify a mild headache that was continuous for weeksJL> > as migraine, even if the other typical features were there (e.g.,JL> > unilateral, nausea and vomiting, photophobia).',
 "Migraines are, byJL> > common agreement, episodic rather than constant.JL> >JL> Well, I'm glad that you aren't my doctor, then, or I'd still be suffering.JL> Remember, I was tested for any other cause, and there was nothing.",
 "I'mJL> otherwise very healthy.JL> The nagging pain has all of the qualifications: it's on one side, andJL> frequently included my entire right side: right arm, right leg, right eye,JL> even the right side of my tongue hurt or tingled.",
 'Noise hurt, light hurt,JL> thinking hurt.',
 'When it got bad, I would lose my ability to read.The differential diagnosis between migraine and non-migranous painis not *always* important, because some therapies are effective inboth (e.g., tricyclic antidepressants such as amitriptyline,non-steroidal anti-inflammatory drugs such as ibuprofen).',
 'Othertherapies may be more specific: beta-blockers such as propranololwork better in migraine than tension-type headache.The most important thing, from your perspective, is that you gotrelief.',
 'Also, please understand that a diagnosis other thanmigraine does not necessarily mean "psychogenic"; I suspect thatorganic factors play as large a role in tension-type headache as inmigraine.--- .',
 'SLMR 2.1 .',
 'E-mail: jim.zisfein@factory.com (Jim Zisfein)  Newsgroup: sci.meddocument_id: 58071From: julkunen@messi.uku.fi (Antero Julkunen)Subject: What about sci.med.chemistryThere is this newsgroup sci.med.physics and there has been quite a lotdiscussion in this group about many chemical items e.g.',
 'prolactincholesterol, TSH etc.',
 'Should there also be a newsgroup sci.med.chemistry?-- Antero Julkunen, Dept Clinical Chemistry, University of Kuopio, Finlande-mail: julkunen@messi.uku.fi, phone +358-71-162680, fax +358-71-162020Newsgroup: sci.meddocument_id: 58072From: kturner@copper.denver.colorado.edu (Kathleen J Turner)Subject: Mystery Illness with eye problems\tA friend has the following symptoms which have occurred periodicallyevery few months for the last 3 years.',
 'An episode begins with extremetiredness followed by:\t1. traveling joint pains and stiffness affecting mostly the elbows,\tknees, and hips.',
 '2. generalized muscle pains\t3. tinnitus and a feeling of pressure in her ears\t4. severe sweating occuring both at night and during the day\t5. hemorrhaging in both eyes.',
 'Her opthamologist calls it peripheral   retinal hemorhages and says it looks similar to diabetic retinopathy.',
 "(She        isn't diabetic--they checked.",
 '6. distorted color vision and distorted vision in general (telephone\t   poles do not appear to be straight)\t7. loss of peripheral vision.',
 'Many tests have been run and all are normal except for something called unidentified bright objects found on a MRI of her brain.',
 'The onlything that seems to alleviate one of these episodes is prednisone.',
 'Attimes she had been on 60 mg per day.',
 'Whenever she gets down to 10-15 mgthe symptoms become acute again.',
 'She is quite concerned because the retinal hemorrhages are becomingworse with each episode and her vision is suffering.',
 'None of the docs shehas seen have any idea what this condition is or what can be done to stopit.',
 'Any suggestions or advice would be greatly appreciated.',
 'Thanks in advance.',
 'Kathy Turner\tNewsgroup: sci.meddocument_id: 58073From: caf@omen.UUCP (Chuck Forsberg WA7KGX)Subject: Re: My New Diet --> IT WORKS GREAT !!!',
 '!In article <1993Apr5.191712.7543@inmet.camb.inmet.com> mazur@bluefin.camb.inmet.com (Beth Mazur) writes:>In <1993Apr03.1.6627@omen.UUCP> caf@omen.UUCP (Chuck Forsberg WA7KGX) writes:>>Gordon, your experience is valid for many, but not all.',
 'The>>fact that you know a few people who have been overweight and are>>now stable at a lower (normal or just less?)',
 'weight does not>>contradict the observation that only 5-10 per cent can maintain>>ideal weight with current technology.>>Actually, the observation is that only 5-10% of those who seek help>from your so-called "diet evangelists" can maintain their weight.',
 "I>happen to agree with Keith Lynch that there are many people who can>and do lose weight on their own, and who are not reflected in the>dismal failure rate that is often quoted.>>Wasn't there a study where a researcher asked a more general population,>perhaps some part of a university community, about weight loss and he/she>found that a much higher percentage had lost and maintained?",
 'In fact Adiposity 101 mentions a similar study (search for "lifeevents" in any recent version of Adiposity 101).The problem with anecdotal reports about individuals who havelost weight and kept it off is that we don\'t know what causedthe weight gain in the first place.',
 'This is critical becausesomeone who gains weight because of something temporary (drugeffect, life event, etc.)',
 'may appear successful at dieting whenthe weight loss was really the result of reversing the temporarycondition that caused the weight gain.-- Chuck Forsberg WA7KGX          ...!tektronix!reed!omen!caf Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, and DSZ  Omen Technology Inc    "The High Reliability Software"17505-V NW Sauvie IS RD   Portland OR 97231   503-621-3406Newsgroup: sci.meddocument_id: 58074From: swkirch@sun6850.nrl.navy.mil (Steve Kirchoefer)Subject: Re: Can\'t BreatheGetting back to the original question in this thread:I experienced breathing difficulties a few years ago similar to thosedescribed.',
 'In my case, it turned out that I was developing Type Idiabetes.',
 'Although I never sought direct confirmation of this from mydoctor, I think that the breathing problem was associated with thepresence of ketones due to the diabetes.I think that ketosis can occur in lesser degree if one is restrictingtheir food intake drastically.',
 "I don't know if this relevant in thiscase, but you might ask your daughter if she has been eatingproperly.-- Steve Kirchoefer                                             (202) 767-2862Code 6851                                      kirchoefer@estd.nrl.navy.milNaval Research Laboratory                       Microwave Technology BranchWashington, DC  20375-5000              Electronics Sci.",
 'and Tech.',
 "DivisionNewsgroup: sci.meddocument_id: 58075From: jperkski@kentcomm.uucp (Jim Perkowski)Subject: Re: jiggersIn article <1ppae1$bt0@bigboote.WPI.EDU> susan@wpi.WPI.EDU (susan) writes:> a friend of mine has a very severe cause of jiggers -> for over a year now - they cause him a lot of pain.>> i recently read (i don't know where) about a possible> cure for jiggers.",
 'does anyone have any information on> this?',
 "i can't remember the name of the treatment, or> where i read it.>I'll probably get flamed for this, but when I was a kid we would go tomy uncles cabin on Middle Bass Island on Lake Erie.",
 'We always came homewith a nasty case of jiggers (large red bumps where the buggers hadburrowed into the skin).',
 'My mother would paint the bumps with clearfinger nail polish.',
 'This was repeated daily for about a week or so.',
 'Theapplication of the polish is supposed to suffocate them as it seals ofthe skin.',
 'All I can say is it worked for us.',
 'One word of cautionthough.',
 'Putting finger nail polish on a jigger bite stings like hell.',
 '(If I do get flamed for this just put jam in my pockets and call metoast.',
 ':)--_______________________________________________________________________________kentcomm!jperkski@aldhfn.akron.oh.us (and) kentcomm!jperkski@legend.akron.oh.usNewsgroup: sci.meddocument_id: 58076Subject: Teenage acneFrom: pchurch@swell.actrix.gen.nz (Pat Churchill)My 14-y-o son has the usual teenage spotty chin and greasy nose.',
 'Ibought him Clearasil face wash and ointment.',
 'I think that is probablyenough, along with the usual good diet.',
 "However, he is on at me toget some product called Dalacin T, which used to be adoctor's-prescription only treatment but is not available over thechemist's counter.",
 'I have asked a couple of pharmacists who sayeither his acne is not severe enough for Dalacin T, or that Clearasilis OK.',
 'I had the odd spots as a teenager, nothing serious.',
 "Hisfather was the same, so I don't figure his acne is going to escalateinto something disfiguring.",
 'But I know kids are senstitive abouttheir appearance.',
 "I am wary because a neighbour's son had this wierdmalady that was eventually put down to an overdose of vitamin A fromacne treatment.",
 'I want to help - but with appropriate treatment.My son also has some scaliness around the hairline on his scalp.',
 'Sortof teenage cradle cap.',
 'Any pointers/advice on this?',
 "We have tried acouple of anti dandruff shampoos and some of these are inclined tomake the condition worse, not better.Shall I bury the kid till he's 21 :)-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^            The floggings will continue until morale improves                  pchurch@swell.actrix.gen.nz  Pat Churchill, Wellington New Zealand Newsgroup: sci.meddocument_id: 58077From: rog@cdc.hp.com (Roger Haaheim)Subject: Re: sex problem.larry silverberg (ls8139@albnyvms.bitnet) wrote:> Hello out there,> She suggested we go to a sex counselor, but I really don't want to (just yet).Interesting.",
 'Does she know you have placed this info request on thenet for the world to see?',
 'If not, how do you think she would reactif she found out?',
 'Why would you accept the advice of unknown entitiesrather than a counselor?> Any suggestions would be appreciated.See the counselor.Well, you asked.Newsgroup: sci.meddocument_id: 58078From: news&aio.jsc.nasa.gov (USENET News System)Subject: Re: Oily skin - problem?In article <1993Apr5.044140.1@vaxc.stevens-tech.edu>, u92_hwong@vaxc.stevens-tech.edu writes:> > Hi there,> > \tI have a very oily skin.',
 'My problem is when I wash my face, it becomes> oily in half an hour.',
 'Especially in the nose region.',
 'Is this an illness?',
 'How> can I prevent it from occuring in such short time?',
 "Is there a cleanser out> there that will do a better job -- that is after cleaning, my face won't become> oily in such a short time.> > \tThank you for any suggestion.> >if this is a disease, everyone should have it.",
 'My skin has always been oily -i used to say "if i were hot enough, you could fry an egg on my oily face".i am now 50 yrs old and my skin looks younger (i\'m told) than some people\'sskin at 30 (it\'s still oily).',
 'i have only a very few tiny wrinkles.',
 'Thankyour lucky stars for that skin.',
 'Newsgroup: sci.meddocument_id: 58079From: jec@watson.ibm.comSubject: Contraceptive pillA very simple question : it seems to me that the contraceptivepill just prevents the ovule to nest in the vagina and forces it tofall every month.',
 'But it does not prevent the fertilzation of the ovule.',
 'Is it true ?',
 "If yes, is there a risk of extra-uterinepregnancy, that is the development of the ovule inside the Fallopiantube ?J.Cherbonnierjec@zurich.ibm.comNewsgroup: sci.meddocument_id: 58080From: bmdelane@quads.uchicago.edu (brian manning delaney)Subject: Brain Tumor Treatment (thanks)There were a few people who responded to my request for info ontreatment for astrocytomas through email, whom I couldn't thankdirectly because of mail-bouncing probs (Sean, Debra, and Sharon).",
 "SoI thought I'd publicly thank everyone.Thanks!",
 '(I\'m sure glad I accidentally hit "rn" instead of "rm" when I wastrying to delete a file last September.',
 '"Hmmm...',
 "'News?'",
 'What\'sthis?"....',
 ")-BrianNewsgroup: sci.meddocument_id: 58081Subject: Re: Can't Breathe -- UpdateFrom: RGINZBERG@eagle.wesleyan.edu (Ruth Ginzberg)Thanks to all those who responded to my original post on this question.",
 'Thefinal diagnosis was Stress.',
 'I did not take her for a chiropractic adjustment.',
 '(Rachel receives all her medical care at Keller Army Hospital since she is amilitary dependant, and the Army does not yet provide chiropractic adjustmentsas part of its regular health care.)',
 'I am hoping that the arrival of (1)Spring Break, and (2) College Acceptance Letters, will help.',
 '*UNFORTUNATELY*she was wait-listed at the college she most dearly wanted to attend, so itseems as though that stressor may just continue for a while.',
 ":-(Meanwhile she is going on a camping trip with her religious youth group forspring break, which seems like a good stress-reliever to me.Thanks again for everybody's help/advice/suggestions/ideas.------------------------Ruth Ginzberg <rginzberg@eagle.wesleyan.edu>Philosophy Department;Wesleyan University;USANewsgroup: sci.meddocument_id: 58082From: kaminski@netcom.com (Peter Kaminski)Subject: Re: What about sci.med.chemistryIn <julkunen.734086202@messi.uku.fi> julkunen@messi.uku.fi (AnteroJulkunen) writes:>There is this newsgroup sci.med.physics and there has been quite a lot>discussion in this group about many chemical items e.g.",
 'prolactin>cholesterol, TSH etc.',
 "Should there also be a newsgroup sci.med.chemistry?It's got potential.",
 "Instead of *.chemistry, how about splitting theclassification into *.biochemistry (which are probably the topicsyou're thinking of) and *.pharmaceutical (which otherwise might end upin *.(bio)chemistry)?",
 '(This is separate from the issue of whether there is sufficient potentialnews volume to support either or both groups.',
 ")I'll add 'em to my medical/health newsgroup wish list (which I'm lookingforward to posting and discussing -- but not for another 10 days or so).PeteNewsgroup: sci.meddocument_id: 58083From: shafer@rigel.dfrf.nasa.gov (Mary Shafer)Subject: Re: Inner Ear Problems from Too Much Flying?On 5 Apr 93 23:27:26 GMT, vida@mdavcr.mda.ca (Vida Morkunas) said:Vida> Can one develop inner-ear problems from too much flying?",
 'I hearVida> that pilots and steward/esses have a limit as to the maximumVida> number of flying hours -- what are these limits?',
 'What are theVida> main problems associated with too many long-haul (over 4 hours)Vida> trips?The crew rest requirements are to prevent undue fatigue.',
 'The cockpitcrew (pilot) limits are somewhat more stringent than the cabin crewlimits for this reason.',
 'Crew rest requirements address amount of timeon duty plus rest time.',
 'A tired crew is an accident-prone crew.The only limits I know of for inner-ear problems are in militaryaircraft, which are frequently unpressurized or less reliablypressurized.',
 "Not being able to clear the ears renders aircrew membersDNIF (duties not involving flying) or grounded until the ears clear.Flying can accentuate problems if ears don't clear.",
 "If you don't havebig pressure changes, you may not know that you've got a problem.",
 "Butif you zip up to 5,000 or 6,000 ft (the usual cabin altitude in anairliner) and then back down to sea level, you may discover a problem.Ears don't clear readily because of allergies, colds, infections, andanatomical problems.",
 'The last won\'t change; the first three can.Medication (decongestants or antihistimines, usually) can help.Chewing gum, sucking hard candy (or a bottle for babies),yawning--these will help all four causes.--Mary Shafer  DoD #0362 KotFR NASA Dryden Flight Research Facility, Edwards, CAshafer@rigel.dfrf.nasa.gov                    Of course I don\'t speak for NASA "A MiG at your six is better than no MiG at all."',
 'Unknown US fighter pilotNewsgroup: sci.meddocument_id: 58084From: kxgst1@pitt.edu (Kenneth Gilbert)Subject: Re: Contraceptive pilljec@watson.ibm.com wrote:: A very simple question : it seems to me that the contraceptive: pill just prevents the ovule to nest in the vagina and forces it to: fall every month.',
 'But it does not prevent the fertilzation of the : ovule.',
 'Is it true ?',
 'If yes, is there a risk of extra-uterine: pregnancy, that is the development of the ovule inside the Fallopian: tube ?Actually that is not how the pill works, but it *is* how the IUD works.The oral contraceptive pill actually *prevents* ovulation from occuringby providing negatve feedback to the pituitary gland, and thus preventingthe LH surge that normally occurs at the time of ovulation.',
 'With the IUDwhat happens is that fertilization may occur, but the device preventsimplantation within the wall of the uterus (*not* the vagina).--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==  Kenneth Gilbert              __|__        University of Pittsburgh   ==  General Internal Medicine      |      "...dammit, not a programmer!',
 '==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-|-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Newsgroup: sci.meddocument_id: 58085From: bytor@cruzio.santa-cruz.ca.usSubject: LupusI have a friend who has just been diagnosed with Lupus, and I know nothingabout this disease.',
 'The only thing I do know is that this is some sort ofskin disease, and my friend shows no skin rashes - in fact, they used a blood test to determine what had been wrong with an on going sacro-illiac joint problem.',
 'I am finding a hard time finding information on this disease.',
 'Couldanyone please enlighten me as to the particulars of this disease.',
 'please feel free to E-mail me at bytor@cruzio.santa-cruz.ca.usThanks in advance.Newsgroup: sci.meddocument_id: 58086From: bbesler@ouchem.chem.oakland.edu (Brent H. Besler)Subject: Is an oral form of Imitrex(sumatriptan) available in CASumatriptan(Imitrex) just became available in the US in a subcutaneousinjectable form.',
 'Is there an oral form available in CA?',
 'A friend(yesreally not me!)',
 'has severe migranes about 2-3 times per week.',
 'Welive right by the CA border and he has gotten drugs for GERD prescribedby a US physician and filled in a CA pharmacy, but not yet FDA approvedin the US.',
 'What would be the cost of the oral form in CA$ also ifanyone would have that info?',
 'ThanksNewsgroup: sci.meddocument_id: 58087From: jmetz@austin.ibm.com ()Subject: Re: Twitching eye?',
 'I had this one time.',
 "I attributed it to a lack of sleep since it disappearedafter a few nights of good zzz's.Newsgroup: sci.meddocument_id: 58088From: vida@mdavcr.mda.ca (Vida Morkunas)Subject: Inner Ear Problems from Too Much Flying?Can one develop inner-ear problems from too much flying?",
 'I hear that pilotsand steward/esses have a limit as to the maximum number of flying hours --what are these limits?',
 'What are the main problems associated with too manylong-haul (over 4 hours) trips?Frequent Flyer.Newsgroup: sci.meddocument_id: 58089From: rjb3@cbnewsk.cb.att.com (robert.j.brown)Subject: Re: Human breast-feeding : Myths or reality ?In article <C4vHwo.HLt@tripos.com>, homer@tripos.com (Webster Homer) writes:> rjasoar@vnet.IBM.COM (Robert J. Alexander MD) writes:> > I have an additional question.',
 'How long should a mother breast feed her> child?',
 'A friend of mine is still nursing her two year old.',
 'Is this beneficial?> Her ex-husband is trying to use her coninued nursing of a two year old as> "proof" of her being unfit to be a mother.',
 'What studies have been done> on breast feeding past a year etc... upon the psychological health of the> child?',
 '> > > Web Homer> My wife breast-fed my three boys 12 months, 16 months, and 29 monthsrespectively and they are 18, 16, and 10 years old respectively.',
 'Sofar everybody seems fairly normal.',
 'I noticed a negative correlationwith ear infections and length of time nursed in my very small sample.I do notice that the 16 and 18 year old seem to eat a lot, could thatbe from the breast feeding :-)  ?I don\'t understand the "unfit mother" charge other than any tactic isnot too low down for some folks during divorce/child custody battles.Most of the developing nations practice breast feeding to 3 and 4 yearsold.',
 'Are they screwed up because of it ?',
 "Would they be much betteroff if they could use cow's milk or commercial formula ?",
 'Doctors ?Bobby - akgua!rjbNewsgroup: sci.meddocument_id: 58090From: jose@csd.uwo.ca (Jose Thekkumthala)Subject: recurrent volvulus    Recurrent Volvulus    -------------------     This is regarding recurrent volvulus which our little boy has been suffering from ever since he was an infant.',
 'He had a surgery when he was one year old.',
 'Another surgery had to be performed one year after, when he was two years old.',
 'He turned three this February and he is still getting afflicted by this illness, like having to get hospitalised for vomitting and accompanying stomach pain.He managed not having a third surgery so far.',
 '*  \tOne thing me and my wife noticed is that his affliction \tpeaks around the time he was born, on nearabouts, like in \tMarch every year.',
 'Any significance to this?',
 '*\tWhy does this recur?',
 'Me and my family go through severe pain \twhen our little boy have to undergo surgery.',
 'Why does surgery \tnot rectify the situation?',
 '*\tAlso, which hospital in US or Canada specialize in this malady?',
 '*\tWhat will be a good book explaining this disease in detail?',
 '*\tWill keeping a particular diet keep down the probability of  \trecurrence?',
 '*\tAs time goes on, will the probability of recurrence go down \tconsidering he is getting stronger and healthier and probably \tless prone to attacks?',
 'Or is this assumption wrong?',
 '*\tAny help throwing light on these queries will be highly appreciated.',
 'Thanks very much!',
 "jose@csd.uwo.caNewsgroup: sci.meddocument_id: 58091From: mrb@cbnewsj.cb.att.com (m..bruncati)Subject: Re: Smoker's LungsIn article <1993Apr5.123315.48837@kuhub.cc.ukans.edu>, bennett@kuhub.cc.ukans.edu writes:> How long does it take a smoker's lungs to clear of the tar after quitting?",
 "> Does your chances of getting lung cancer decrease quickly or does it take> a considerable amount of time for that to happen?Seems to me that I read in either a recent NY TimesScience Times or maybe it was Science News that there isevidence that ex-smoker's risk of lung cancer never returnsto that of a person who has never smoked (I think it mayget close).",
 "I'll find the article and post it since mymemory is hazy on the specifics - if you are interested.MichaelNewsgroup: sci.meddocument_id: 58092From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: various migraine therapiesIn article <C4HtMw.H3J@olsen.ch> lindy@olsen.ch (Lindy Foster) writes:>I've been treated to many therapies for migraine prophylaxis and treatment,>and it looks like they'll try a few more on me.",
 'I have taken propanolol>(I think it was 10mg 3xdaily) with no relief.',
 'I have just been started30mg per day of propranolol is a homeopathic dose in migraine.',
 'If you got fatigued at that level, it is unlikely that you willtolerate enough beta blocker to help you.',
 '>>If we go the antidepressant route, what is it likely to be?',
 'How do>antidepressants work in migraine prophylaxis?>Probably a single nightime dose.',
 'We don\'t know how they work in migraine, butit probably has something to do with seratonin.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58093From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: vangus nerve (vagus nerve)In article <52223@seismo.CSS.GOV> bwb@seismo.CSS.GOV (Brian W. Barker) writes:>mostly right.',
 'Is there a connection between vomiting>and fainting that has something to do with the vagus nerve?>Stimulation of the vagus nerve slows the heart and drops the bloodpressure.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 "----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58094From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: MigrainesIn article <DRAND.93Mar26112932@spinner.osf.org> drand@spinner.osf.org (Douglas S. Rand) writes:>So I'll ask this,  my neurologist just prescribed Cafergot and>Midrin as some alternatives for me to try.",
 'He stated that>the sublingual tablets of ergotamine were no longer available.>Any idea why?',
 'He also suggested trying 800 mg ibuprophen.>I just found out about the sublinguals disappearing too.',
 "I don'tknow why.",
 "Perhaps because they weren't as profitable as cafergot.Too bad, since tablets are sometimes vomited up by migraine patientsand they don't do any good flushed down the toilet.",
 'I suspectwe\'ll be moving those patients more and more to the DHE nasalspray, which is far more effective.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58095From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: 3 AIDS Related QuestionsIn article <93087.011308PXF3@psuvm.psu.edu> PXF3@psuvm.psu.edu (Paula Ford) writes:>A friend of mine was a regular volunteer blood donor.',
 'During surgery, he>was given five units of blood, and after a suitable recovery time, he went>to donate blood at a "bloodmobile."',
 'He was HIV+, and did not know it.>>The Red Cross notified him with a _registered letter_.',
 "That's all.",
 'No>counselling, no nothing.',
 'He died two years ago, this week.',
 'He left behindHow long ago was this?',
 "When I said you'd get counselling, I meant ifyou did it now.",
 'Long ago, practices varied and agencies had to gearup to provide the counselling.>a wife and a four-year-old son.',
 'Many people have suggested that his wife>should sue the Red Cross, but she would not.',
 'She says that without the>blood transfusions he would have died during the surgery.>Good for her.',
 "What we don't need is everyone suing community serviceagencies that provide blood that people need.",
 'Testing is not fool proof.The fact that he got AIDS from a transfusion (if he really did) doesnot mean the Red Cross screwed up.',
 "Prior to 1983 or so, there wasn'ta good test and a lot of bad blood got through.",
 "This wasn't the faultof the Red Cross.",
 'When did he get the transfusions?-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58096From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: health care reformIn article <LMC001@wrc.wrgrace.com> custer@wrc.wrgrace.com (Linda Custer) writes:>This is my first post, and I am not even sure it will work.',
 'Here goes.>>Did anyone read the editorial on page 70 in the 29 march 1993 edition of Time>Magazine, noting that managed care is extremely inefficient?',
 'Of all the possible>clients that Billary could be pandering to, the insurance industry is the worst!>>Comments?',
 'I agree.',
 'Adding layers of managers and bureaucrats simply eat upmoney that could be spent on those who actually are doing the worksuch as doctors and nurse, and supplies.',
 "The most efficient systemis probably one that has limited management and a fixed budget suchas England's or even Canada's.",
 "I'm afraid we are on the wrongtrack.",
 'The problem may be that the insurance lobby is too powerful.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58097From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: health care reformIn article <1993Mar28.200619.5371@cnsvax.uwec.edu> nyeda@cnsvax.uwec.edu (David Nye) writes:>and may be a total disaster and that the Canadian model is preferable, a>position with which I agree.',
 "The other is surprising sympathy for the>physicians in all of this, to the effect that beating up on us won't>help anything.> I'm not sure about that.",
 'Did you see the "poll" they took that showedthat most people thought physicians should be paid $80,000 per yeartops?',
 "That's all I make, but I doubt that most physicians are goingto work very hard for that kind of bread.",
 "Many wouldn't be ableto service their med school debts on that.",
 'Mike Royko had a goodcolumn about it.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58098From: km@cs.pitt.edu (Ken Mitchum)Subject: Re: Update (Help!)',
 '[was "What is This [Is it Lyme\'s?',
 ']"]In article <1993Mar24.182145.11004@equator.com> jod@equator.com (John Setel O\'Donnell) writes:>IMHO, you have Lyme disease.',
 'I told you this in private email and predicted>that you might next start having the migrating pains and further jointIMHO, the original poster has no business soliciting diagnoses off the net,nor does Dr./Mr.',
 "O'Donnell have any business supplying same.",
 'This is onemajor reason real physicians avoid this newsgroup like the plague.',
 'It isalso another example of the double standard: if I as a physician offeredto diagnose and treat on the net, I can be sued.',
 'But people withoutqualifications are free to do whatever they want and disclaim it all with"I\'m not a doctor.',
 '"Get and keep this crap off the net.',
 'Period.-kmNewsgroup: sci.meddocument_id: 58099From: km@cs.pitt.edu (Ken Mitchum)Subject: Re: Patient-Physician DiplomacyIn article <C4Hyou.1Iz@mentor.cc.purdue.edu> hrubin@pop.stat.purdue.edu (Herman Rubin) writes:>In article <188@ky3b.UUCP> km@ky3b.pgh.pa.us (Ken Mitchum) writes:>>>Ditto.',
 'Disease is a great leveling experience, however.',
 'Some people>>are very much afronted to find out that all the money in the world>>does not buy one health.',
 'Everyone looks the same when they die.>>If money does not buy one health, why are we talking about paying>for medical expenses for those not currently "adequately covered"?Herman, I would think you of all people would/could distinguishbetween "health" and "treatment of disease."',
 'All the preventionmedicine people preach this all the time.',
 'You cannot buy health.You can buy treatment of disease, assuming you are lucky enoughto have a disease which can be treated.',
 'A rich person with aterminal disease is a bit out of luck.',
 'There is no such thingas "adequately covered" and there never will be.',
 "And for what it's worth, I'll be the first to admit that all mypatients die.-kmNewsgroup: sci.meddocument_id: 58100From: km@cs.pitt.edu (Ken Mitchum)Subject: Re: Immotile Cilia SyndromeIn article <1993Mar26.213522.26224@ncsu.edu> andrea@unity.ncsu.edu (Andrea M Free-Kwiatkowski) writes:>I would like to know if there is any new information out there about the>subject or any new studies being conducted.",
 'I am confident in my>pediatrician and her communication with the people in Chapel Hill, but>since this is a life-long disorder and genetically transferred I would>like keep current.',
 'I do realize that since this is a relatively new>disorder (first documented in 1974 in a fertility clinic in Scandanavia)>and is therefore "controversial".I do not know a lot about this, except from seeing one patient with"Kartagener\'s syndrome", which is a form of immotile cilia syndromein which there is situs inversus, bronchiectasis, and chronicinfections.',
 '"Situs inversus" means that organs are on the wrongside of the body, and can be complete or partial.',
 'It is interestingmedically because the normal location of organs is caused in partby the "normal" rotation associated with ciliary motion, so that inabsence of this, laterality can be "random."',
 "People with situsinversus are quite popular at medical schools, because of theirrarity, and the fact that most doctors get a bit upset when theycan't find the patient's heart sounds (because they're on the wrongside).",
 "According to Harrison's, immotile cilia syndrom is an autosomalrecessive, which should imply that on average one child in fourin a family would be affected.",
 'But there may be much more currentinformation on this, and as usual in medicine, we may be talkingabout more than one conditiion.',
 'I would suggest that you ask yourpediatrician about contacting a medical geneticics specialist, ofwhich there is probably one at NCSU.-kmNewsgroup: sci.meddocument_id: 58101From: km@cs.pitt.edu (Ken Mitchum)Subject: Re: Lung disorders and clubbing of fingersIn article <SLAGLE.93Mar26205915@sgi417.msd.lmsc.lockheed.com> slagle@lmsc.lockheed.com writes:>Can anyone out there enlighten me on the relationship between>lung disorders and "clubbing", or swelling and widening, of the>fingertips?',
 'What is the mechanism and why would a physician>call for chest xrays to diagnose the cause of the clubbing?Purists often distinguish between "true" clubbing and "pseudo"clubbing, the difference being that with "true" clubbing theangle of the nail when viewed from the side is constantlynegative when proceeding distally (towards the fingertip).With "pseudo" clubbing, the angle is initially positive, thennegative, which is the normal situation.',
 '"Real" internistscan talk for hours about clubbing.',
 "I'm limited to a coupleof minutes.Whether this distinction has anything to do with reality isentirely unclear, but it is one of those things that internistslove to paw over during rounds.",
 'Supposedly, only "true" clubbingis associated with disease.',
 'The problem is that the list ofdiseases associated with clubbing is quite long, and includesboth congenital conditions and acquired disease.',
 'Since many ofthese diseases are associated with cardiopulmonary problemsleading to right to left shunts and chronic hypoxemia, it isvery reasonable to get a chest xray.',
 'However, many of the congenital abnormalities would only be diagnosed with a cardiaccatheterization.',
 'The cause of clubbing is unclear, but presumably relates tosome factor causing blood vessels in the distal fingertip todilate abnormally.',
 'Clubbing is one of those things from an examination which isa tipoff to do more extensive examination.',
 'Often, however,the cause of the clubbing is quite apparent.-kmNewsgroup: sci.meddocument_id: 58102From: km@cs.pitt.edu (Ken Mitchum)Subject: Re: Open letter to Hillary Rodham Clinton (#7)How about posting one of her replies to your letters?-kmNewsgroup: sci.meddocument_id: 58103From: km@cs.pitt.edu (Ken Mitchum)Subject: Re: Menangitis questionIn article <C4nzn6.Mzx@crdnns.crd.ge.com> brooksby@brigham.NoSubdomain.NoDomain (Glen W Brooksby) writes:>This past weekend a friend of mine lost his 13 month old>daughter in a matter of hours to a form of menangitis.',
 "The>person informing me called it 'Nicereal Meningicocis' (sp?",
 ').>In retrospect, the disease struck her probably sometime on >Friday evening and she passed away about 2:30pm on Saturday.>The symptoms seemed to be a rash that started small and>then began progressing rapidly.',
 'She began turning blue>eventually which was the tip-off that this was serious>but by that time it was too late (this is all second hand info.',
 ').>>My question is:>Is this an unusual form of Menangitis?',
 'How is it transmitted?>How does it work (ie.',
 'how does it kill so quickly)?There are many organisms, viral, bacterial, and fungal, which cancause meningitits, and the course of these infections varieswidely.',
 'The causes of bacterial meningitis vary with age: in adultspneumococcus (the same organism which causes pneumococcal pneumonia)is the most common cause, while in children Hemophilus influenzaeis the most common cause.What you are describing is meningitis from Neisseria meningitidis,which is the second most common cause of bacterial meningitis inboth groups, but with lower incidence in infants.',
 'This organismis also called the "meningococcus", and is the source of thecommon epidemics of meningitis that occur and are popularized inthe press.',
 'Without prompt treatment (and even WITH it in some cases),the organism typically causes death within a day.',
 'This organism, feared as it is, is actually grown from the throatsof many normal adults.',
 'It can get to the meninges by differentways, but blood borne spread is probably the usual case.',
 "Rifampin (an oral antibiotic) is often given to family and contactsof a case of meningococcal meningitis, by the way.Sorry, but I don't have time for a more detailed reply.",
 "Meningitisis a huge topic, and sci.med can't do it justice.-kmNewsgroup: sci.meddocument_id: 58104From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: 3 AIDS Related QuestionsIn article <93088.130924PXF3@psuvm.psu.edu> PXF3@psuvm.psu.edu (Paula Ford) writes:>we know ours is not HIV+ and people need it.",
 "I think my husband should give>blood, especially, because his is O+, and I understand that's a very useful>blood type.>It's O- that is especially useful.",
 "Still, he isn't punishing theRed Cross but some O+ person that needed his blood and couldn'tget it.",
 'You are right, nagging probably won\'t help.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58105From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Update (Help!)',
 '[was "What is This [Is it Lyme\'s?',
 ']"]In article <1993Mar29.181958.3224@equator.com> jod@equator.com (John Setel O\'Donnell) writes:>>I shouldn\'t have to be posting here.',
 "Physicians should know the Lyme>literature beyond Steere & co's denial merry-go-round.",
 'Patients>should get correctly diagnosed and treated.>Why do you think Steere is doing this?',
 'Isn\'t he acting in good faith?After all, as the "discoverer" of Lyme for all intents and purposes,the more famous Lyme gets, the more famous Steere gets.',
 "I don'tsee the ulterior motive here.",
 "It is easy for me to see it thethose physicians who call everything lyme and treat everything.There is a lot of money involved.>I'm a computer engineer, not a doctor (,Jim).",
 'I was building a >computer manufacturing company when I got Lyme.',
 "I lost several >years of my life to near-total disability; partially as a result,>the company failed, taking with it over 150 jobs, my savings,>and everything I'd worked for for years.",
 'I\'m one of the "lucky">ones in that I found a physician through the Lyme foundation>and now can work almost full-time, although I have persistent>infection and still suffer a variety of sypmtoms.',
 "And now>I try to follow the Lyme literature.>Well, it is tragic what has happened to you, but it doesn'tnecessarily make you the most objective source of informationabout it.",
 'If your whole life is focussed around this, youmay be too emotionally involved to be advising other peoplewho may or may not have Lyme.',
 'Certainly advocacy of more researchon Lyme would not be out of order, though, and people like youcan be very effective there.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 "----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58106From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: CAN'T BREATHEIn article <1p8t1p$mvv@agate.berkeley.edu> romdas@uclink.berkeley.edu (Ella I Baff) writes:>>Re: the prostate treatment is worse than the disease...In medicine there >really is something histologically identified as prostate tissue and >there are observable changes which take place, that whenever they occur, >can be identified as prostate cancer.",
 "What if I told you that most chiropractorstreat Subluxation (Spinal Demons), which don't exist at all.",
 'Therefore any >tissue damage incurred in a chiropractic treatment performed >in an effort to exorcise this elusive Silent Killer, such as ligamentous>damage and laxity, microfracture of the joint surfaces, rib fractures, >strokes, paralysis,etc., is by definition worse than non-treatment.>>John Badanes, DC, CA>email: romdas@uclink.berkeley.eduWhat does "DC" stand for?',
 "Couldn't be an antichiropractic postingfrom a chiropractor, could it?",
 'My curiosity is piqued.Prostate CA is an especially troublesome entity for chiropractors.It so typically causes bone pain due to spinal metastases that itgets manipulated frequently.',
 'Manipulating a cancer riddled boneis highly dangerous, since it can then fracture.',
 "I've seen atleast three cases where this happened with resulting neurologicdamage, including paraplegia.",
 'This is one instance where knowinghow to read x-rays can really help a chiropractor stay out of trouble.DO chiropractors know what bony mets from prostate look like?-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58107From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Menangitis questionIn article <C4nzn6.Mzx@crdnns.crd.ge.com> brooksby@brigham.NoSubdomain.NoDomain (Glen W Brooksby) writes:>This past weekend a friend of mine lost his 13 month old>daughter in a matter of hours to a form of menangitis.',
 "The>person informing me called it 'Nicereal Meningicocis' (sp?",
 ').>In retrospect, the disease struck her probably sometime on >Friday evening and she passed away about 2:30pm on Saturday.>The symptoms seemed to be a rash that started small and>then began progressing rapidly.',
 'She began turning blue>eventually which was the tip-off that this was serious>but by that time it was too late (this is all second hand info.',
 ').>>My question is:>Is this an unusual form of Menangitis?',
 'How is it transmitted?>How does it work (ie.',
 'how does it kill so quickly)?>No, the neiseria meningococcus is one of the most commonforms of meningitis.',
 "It's the one that sometimes sweepsschools or boot camp.",
 'It is contagious and kills by attackingthe covering of the brain, causing the blood vessels to thromboseand the brain to swell up.It is very treatable if caught in time.',
 "There isn't much time,however.",
 'The rash is the tip off.',
 'Infants are very susceptibleto dying from bacterial meningitis.',
 'Any infant with a fever whobecomes stiff or lethargic needs to be rushed to a hospital wherea spinal tap will show if they have meningitis.',
 "Seizures can alsooccur.>Immediate family members were told to take some kind of medication>to prevent them from being carriers, yet they didn't have>any concerns about my wife and I coming to visit them.>It can live in the throat of carriers.",
 'Don\'t worry, you won\'t get it from them, especially if they took the medication.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58108From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: "CAN\'T BREATHE"In article <1993Mar29.204003.26952@tijc02.uucp> pjs269@tijc02.uucp (Paul Schmidt) writes:>I think it is important to verify all procedures with proper studies to>show their worthiness and risk.',
 'I just read an interesting tidbit that >80% of the medical treatments are unproven and not based on scientific >fact.',
 'For example, many treatments of prostate cancer are unproven and>the treatment may be more dangerous than the disease (according to the>article I read.',
 ')Where did you read this?',
 "I don't think this is true.",
 'I think mostmedical treatments are based on science, although it is difficultto prove anything with certitude.',
 'It is true that there are somethings that have just been found "to work", but we have no goodexplanation for why.',
 'But almost everything does have a scientificrationale.',
 'The most common treatment for prostate cancer isprobably hormone therapy.',
 'It has been "proven" to work.',
 'So haveradiation and chemotherapy.',
 'What treatments did the article sayare not proven?',
 '-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58109From: jer@prefect.cc.bellcore.com (rathmann,janice e)Subject: Re: Sinus vs. Migraine (was Re: Sinus Endoscopy)I noticed several years ago that when I took analgesics fairly regularly,(motrin at the time), I seemed to get a lot of migraines.',
 "But hadforgotten about that until I started reading some of the posts here.I generally don't take NSAIDS or Tylenol for headaches, because I'vefound them to be ineffective.",
 'However, I have two other pain sourcesthat force me to take NSAIDS (currently Naprosyn).',
 'First, is somepelvic pain that I get at the beginning of my period, and then muchworse at midcycle.',
 'I have had surgery for endometriosis in the past(~12 years ago), so the Drs.',
 'tell me that my pain is probably dueto the endometriosis coming back.',
 "I've tried Synarel, it reducedthe pain while I took it (3 mos), but the pain returned immediatelyafter I stopped.",
 'Three doctors have suggested hysterectomy as theonly "real solution" to my problem.',
 "Although I don't expect to haveany more children, I don't like the idea of having my uterus andone remaining ovary removed (the first ovary was removed when I hadthe surgery for endometriosis).",
 'One of the Drs that suggestedI get a hysterectomy is an expert in laser surgery, but perhaps thinksthat type of procedure is only worthwhile on women who still planto have children.',
 "So basically all I'm left with is toughing outthe pain.",
 "This would be impossible without Naprosyn (or somethingsimilar - but not aspirin, that doesn't work, and Motrin gave mehorrible gastritis a few years ago, so I'm through with it).",
 "Infact, Naprosyn works very well at eliminating the pain if I takeit regularly as I did when I had severe back pain (and pain in both legs) as I'll discuss in a moment.",
 "Generally though, I wait untilI have the pain before I take the Naprosyn, but then it takesseveral hours for it reduce the pain (it's actually quite effectiveat reducing the pain, it just takes quite a while).",
 "In the meantimeI'm frequently in severe pain.The other pain source I have is chronic lower back pain resulting inbilateral radiculopathy.",
 "I've had MRIs, Xrays, CT scan, and EMGs(I've had 2 of them, and don't intend to ever do that again) withnerve conduction tests.",
 'The tests have not been conclusive as towhat is causing my back and leg pain.',
 'The MRI reports both say I haveseveral bulging, degeneratig disks, and from the Xrays (and MRI, I think)it is apparent that I have arthritis.',
 'The reading on the CT scanwas that there are two herniations (L3-L4, and L4-L5), but othershav looked at the films and concluded that there are no herniations.The second EMG and nerve conduction studies shows significant denervationcompared to the first EMG.',
 'Oh yeah, I had some other horrible test,called something like Somatic Evoked Response which showed that the"internal nerves" are working fine.',
 'Anyway, the bottom line is thatI sometimes have severe pain in both legs and back pain.',
 'The back painis there all the time, but I can live with it.',
 'When the leg pain is there,I need some analgesic/anti-inflammatory medication to reduce the painto a level where I can work.',
 "So I took Naprosyn regulary for 6-9months (every time I tried to stop the leg pain got worse, so I'd always resume).",
 'Since last November I have taken it much less frequently,and primarily for the pelvic pain.',
 'I have been going to physicaltherapy for the last 8 months (2-3 times a week).',
 'After the first monthor so, my therapist put me on pelvic traction (she had tried it earlier,but it had caused a lot of pain in my back, this time she tried it ata lower weight).',
 'After a month or two, the pain in my legs began goingaway (but the traction aways caused discomfort in my lower back, whichcould be reduced with ultrasound and massage).',
 "So now, I don't havenearly as much pain in my legs, in fact my therapist took me offtraction about 2 weeks ago.Getting back to my original reason for this post...",
 'Even if I can avoidtaking analgesic for headaches, I really can\'t avoid them entirely becauseI have other pain sources, that "force" me to use them (Oh, I forgotto mention that it has been suggested to me that I have back surgery,but I\'m avoiding that too).',
 "I find the migraines difficult to deal with,occassionally I have to take off work, but usually I can work, but ata reduced capacity (I'm a systems engineer and do a lot of readingand writing).",
 "When the pelvic pain is bad, I can't concentrate much,I usually end up jumping out of my chair every few minutes, becausethe pain is so bothersome.",
 "When the pain in my back is bad, it cancause severe burning in both legs, shooting pains in my legs, electricshock type of pain in my feet and toes, and basically when it gets badI can't really sit at all.",
 'Then I end up spending most of my time homeand in bed.',
 'So even if the analgesics contribute to the migraines, themigraines are more tolerable than the other pain sources.',
 "I get a lotof migraines, an average of 3 to 4 a month, which last 1-3 days.I've taken cafergot (the first time the caffiene really got to me soI reduced the dosage), but I don't like the side effects (if I takemore than two I get diahrea).",
 'If I get a very bad headache, I willeventually take the cafergot.',
 "My neurologist wasn't very helpful whenI told him my problems with cafergot, he said that when sumatriptanbecomes available, I should try that.",
 "I've tried several other medications(fiornal, midrin, fiornal with codeine, tegretol, and inderal) butthey either didn't work, or I couldn't tolerate them.",
 "So what can I do?My doctor's seem to be satisfied with me just trying to tolerate thepain, which I agree with most of the time, but not when I have a lot ofpain.",
 "I've had some bad experiences with surgery (my heart stoppedonce from the anesthesia - I was told that it was likely thesuccinylcholine), and I've already had surgery several times.Anyway, the point of what I'm saying is that even if analgesics can contributeto migraines, some people NEED to take them to tolerate other pain.Janice RathmannNewsgroup: sci.meddocument_id: 58110From: aldridge@netcom.com (Jacquelin Aldridge)Subject: Re: Teenage acnepchurch@swell.actrix.gen.nz (Pat Churchill) writes:>My 14-y-o son has the usual teenage spotty chin and greasy nose.",
 'I>bought him Clearasil face wash and ointment.',
 'I think that is probably>enough, along with the usual good diet.',
 "However, he is on at me to>get some product called Dalacin T, which used to be a>doctor's-prescription only treatment but is not available over the>chemist's counter.",
 'I have asked a couple of pharmacists who say>either his acne is not severe enough for Dalacin T, or that Clearasil>is OK.',
 'I had the odd spots as a teenager, nothing serious.',
 "His>father was the same, so I don't figure his acne is going to escalate>into something disfiguring.",
 'But I know kids are senstitive about>their appearance.',
 "I am wary because a neighbour's son had this wierd>malady that was eventually put down to an overdose of vitamin A from>acne treatment.",
 'I want to help - but with appropriate treatment.>My son also has some scaliness around the hairline on his scalp.',
 'Sort>of teenage cradle cap.',
 'Any pointers/advice on this?',
 "We have tried a>couple of anti dandruff shampoos and some of these are inclined to>make the condition worse, not better.>Shall I bury the kid till he's 21 :):) No...I was one of the lucky ones.",
 'Very little acne as a teenager.',
 "Ididn't have any luck with clearasil.",
 "Even though my skin gets oily itreally only gets miserable pimples when it's dry.",
 'Frequent lukewarm water rinses on the face might help.',
 "Getting the scalpthing under control might help (that could be as simple as submerging underthe bathwater till it's softened and washing it out).",
 'Taking a one a dayvitamin/mineral might help.',
 "I've heard iodine causes trouble and that it  is used in fast food restaurants to sterilize equipment which might bewhere the belief that greasy foods cause acne came from.",
 'I notice grease on my face, not immediately removed will cause acne (even from eatingmeat).Keeping hair rinse, mousse, dip, and spray off the face will help.',
 'Warmwater bath soaks or cloths on the face to soften the oil in the pores willhelp prevent blackheads.',
 'Body oil is hydrophilic, loves water and itsoftens and washes off when it has a chance.',
 "That's why hair goes limp withoilyness.",
 'Becoming convinced that the best thing to do witha whitehead is leave it alone will save him days of pimple misery.',
 'Anyprying of black or whiteheads can cause infections, the red spots ofpimples.',
 "Usually a whitehead will break naturally in a day and there won'tbe an infection afterwards.Tell him that it's normal to have some pimples but the cosmetic industrymakes it's money off of selling people on the idea that they are anincredible defect to be hidden at any cost (even that of causing more pimples).",
 '-Jackie-Newsgroup: sci.meddocument_id: 58111From: Mark W. DubinSubject: Re: ringing earsjfare@53iss6.Waterloo.NCR.COM (Jim Fare) writes:>A friend of mine has a trouble with her ears ringing.',
 '[etc.]A.',
 'Folks, do we have an FAQ on tinnitus yet?B.',
 'As a lo-o-o-ong time sufferer of tinnitus and as a neuroscientistwho has looked over the literature carefully I believe the followingare reasonable conclusions:1.',
 'Millions of people suffer from chronic tinnitus.2.',
 'The cause it not understood.3.',
 'There is no accepted treatment that cures it.4.',
 'Some experimental treatments may have helped some people a bit, butthere have be no reports--even anecdotal--of massive good results withany of these experimental drugs.5.',
 'Some people with chronic loud tinnitus use noise blocking to get to sleep.6.',
 'Sudden onset loud tinnitus can be caused by injuries and sometimesabates or goes away after a few months.7.',
 'Aspirin is well known to exacerbate tinnitus in some people.8.',
 'There is a national association of tinnitus sufferers in the US.9.',
 'One usually gets used to it.',
 'Especially when concentrating onsomething else the tinnitus becomes unnoticed.10.',
 'Stress and lack of sleep make tinnitus more annoying, sometimes.11.',
 "I'm sure those of us who have it wish there was a cure, but thereis not.Mark dubinthe ol' professorNewsgroup: sci.meddocument_id: 58112From: sasghm@theseus.unx.sas.com (Gary Merrill)Subject: Re: jiggersI may not be the world's greatest expert on chiggers (a type ofmite indigenous to the south), but I certainly have spent a lotof time contemplating the little buggers over the past six years(since we moved to N.C.).",
 'Here are some observations gained frompainful experience:  1.',
 'Reactions to chiggers vary greatly from person to person.',
 'Some people get tiny red bites.',
 'Others (like me) are more     sensitive and get fairly large swollen sore-like affairs.',
 '2.',
 'Chigger bites are the gift that keeps on giving.',
 'I swear     that these things will itch for months.',
 '3.',
 'There is a lot of folklore about chiggers.',
 'I think most of     it is fiction.',
 'I have tried to do research on the critters,     since they have such an effect on me.',
 "The only book I could     find on the subject was a *single* book in UNC's special     collections library.",
 'I have not yet gone through what is     required to get it.',
 '4.',
 "Based on my experience and that of my family members, the old     folk remedy of fingernail polish simply doesn't work.",
 'I recall     reading that the theory upon which it is based (that the chiggers     burrow into your skin and continue to party there) is false.',
 'I     think it is more likely that the reaction is to toxins of some     sort the little pests release.',
 'But this is speculation.',
 '5.',
 'The *best* approach is prevention.',
 'A couple of things work well.',
 'A good insect repellent (DEET) such as Deep Woods Off liberally     applied to ankles, waistband, etc.',
 'is a good start.',
 'There is     another preparation called "Chig Away" that is a combination of     sulfur and some kind of cream (cortisone?)',
 'that originally was     prepared for the Army and is not commercially available.',
 "In     the summer I put this on my ankles every morning when I get     up on weekends since I literally can't go outside where we     live (in the country) without serious consequences.",
 "(They     apparently don't like sulfur much at all.",
 'You can use sulfur     as a dust on your body or clothing to repel them.)',
 '6.',
 'No amount of prevention will be *completely* successful.',
 'Forget     the fingernail polish.',
 'I have finally settled upon a treatment     that involves topical application of a combination of cortisone     creme (reduces the inflamation and swelling) and benzocaine     (relieves the itch).',
 "I won't tell you all the things I've tried.",
 'Nor will I tell you some of the things my wife does since this     counts as minor surgery and is best not mentioned (I also think     it gains nothing).',
 '7.',
 'The swelling and itching can also be significantly relieved     by the application of hot packs, and this seems to speed recovery     as well.Doctors seem not to care much about chiggers.',
 "The urban and suburbandoctors apparently don't encounter them much.",
 'And the rural doctorsseem to regard them as a force of nature that one must endure.',
 'Isuspect that anyone who could come up with a good treatment for chiggerswould make a *lot* of money.-- Gary H. Merrill  [Principal Systems Developer, C Compiler Development]SAS Institute Inc. / SAS Campus Dr. / Cary, NC  27513 / (919) 677-8000sasghm@theseus.unx.sas.com ... !mcnc!sas!sasghmNewsgroup: sci.meddocument_id: 58113From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: My New Diet --> IT WORKS GREAT !!!',
 '!In article <1993Mar27.142431.25188@inmet.camb.inmet.com> mazur@bluefin.camb.inmet.com (Beth Mazur) writes:>In article <1ov4toINNh0h@lynx.unm.edu> bhjelle@carina.unm.edu () writes:>>On the other hand, we do a good job of implying that the person who>weighs 400lbs is "overeating" when in fact, the body probably doesn\'t>make any moral judgements about its composition.',
 "Conceivably, the >body works just as hard maintaining its weight at 400 as someone else's>does at 200.>Undoubtedly it does, to maintain such a weight.",
 'And it does soprimarily by overeating.',
 'If it didn\'t, the weight would dropback to normal.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58114From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: BlindsightIn article <werner-240393161954@tol7mac15.soe.berkeley.edu> werner@soe.berkeley.edu (John Werner) writes:>In article <19213@pitt.UUCP>, geb@cs.pitt.edu (Gordon Banks) wrote:>> >> Explain.',
 "I thought there were 3 types of cones, equivalent to RGB.>>You're basically right, but I think there are just 2 types.",
 'One is>sensitive to red and green, and the other is sensitive to blue and yellow.',
 '>This is why the two most common kinds of color-blindness are red-green and>blue-yellow.>Yes, I remember that now.',
 'Well, in that case, the cones are indeedcolor sensitive, contrary to what the original respondent had claimed.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 "----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58115From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Sinus vs. Migraine (was Re: Sinus Endoscopy)In article <Lauger-240393141539@lauger.mdc.com> Lauger@ssdgwy.mdc.com (John Lauger) writes:>In article <19201@pitt.UUCP>, geb@cs.pitt.edu (Gordon Banks) wrote:>What's the best approach to getting off the analgesics.",
 "Is there somethingTwo approaches that I've used: Tofranil, 50 mg qhs, Naproxen 250mg bid.The Naproxen doesn't seem to be as bad as things like Tylenol in promotingthe analgesic abuse Headache.",
 'DHE IV infusions for about 3 days (inhospital).',
 'Cold turkey is the only way I think.',
 "Tapering doesn'thelp.",
 "I wouldn't know how you can do this without your doctor.",
 "I haven'tseen anyone successfully do it alone.",
 'Doesn\'t mean it can\'t be done.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58116From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Sinus vs. Migraine (was Re: Sinus Endoscopy)In article <1993Mar26.001004.10983@news.eng.convex.com> cash@convex.com (Peter Cash) writes:>>By the way, does the brain even have pain receptors?',
 "I thought not--I heard>that brain surgery can be performed while the patient is conscious for>precisely this reason.>No, no, we aren't talking about receptors for the brain's sensory innervation, but structures such as the thalamus that handle painfor the entire organism.",
 'Apples and oranges.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58117From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: tuberculosisIn article <1993Mar25.020646.852@news.columbia.edu> jhl14@cunixa.cc.columbia.edu (Jonathan H. Lin) writes:>I was wondering what steps are being taken to prevent the spread of>multi-drug resistant tuberculosis.',
 "I've heard that some places are>thinking of incarcerating those with the disease.",
 "Doesn't this violate>the civil rights of these individuals?",
 'Are there any legal precedents>for such action?>Who knows in this legal climate, but there is tremendous legal precendentfor forcibly quarantining TB patients in sanitariums.',
 '100 yrs agoit was done all the time.',
 "It has been done sporadically all alongin patients who won't take their medicine.",
 'If you have TB youmay find yourself under surveilence of the Public Health Departmentand you may find they have the legal power to insist you make yourclinic visits.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58118From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: BlindsightIn article <1993Mar26.185117.21400@cs.rochester.edu> fulk@cs.rochester.edu (Mark Fulk) writes:>In article <33587@castle.ed.ac.uk> hrvoje@castle.ed.ac.uk (H Hecimovic) writes:>compensation?',
 'Or are lesions localized to the SC too rare to be able>to tell?Extremely rare in humans.',
 "Usually so much else is involved you'djust have a mess to sort out.",
 "Birds do all vision in the tectum,don't they?",
 '-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 "----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58119From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Name of MD's eyepiece?In article <C4IHM2.Gs9@watson.ibm.com> clarke@watson.ibm.com (Ed Clarke) writes:>|> |It's not an eyepiece.",
 'It is called a head mirror.',
 'All doctors never>>A speculum?The speculum is the little cone that fits on the end of the otoscope.There are also vaginal specula that females and gynecologists areall too familiar with.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58120From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Patient-Physician DiplomacyIn article <1993Mar29.130824.16629@aoa.aoa.utc.com> carl@aoa.aoa.utc.com (Carl Witthoft) writes:>What is "unacceptable" about this is that hospitals and MDs by law>have no choice but to treat you if you show up sick or mangled from>an accident.',
 "If you aren't rich and have no insurance, who is going>to foot your bills?",
 'Do you actually intend to tell the ambulance>"No, let me die in the gutter because I can\'t afford the treatment"?',
 '?By law, they would not be allowed to do that anyhow.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58121From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: "Exercise" HypertensionIn article <93084.140929RFM@psuvm.psu.edu> RFM@psuvm.psu.edu writes:>I took a stress test a couple weeks back, and results came back noting>"Exercise" Hypertension.',
 "Fool that I am, I didn't ask Doc what this meant,>and she didn't explain; and now I'm wondering.",
 'Can anyone out there>enlighten.',
 "And I promise, next time I'll ask!Probably she meant that your blood pressure went up while you were onthe treadmill.",
 'This is normal.',
 'You\'ll have to ask her if this iswhat she meant, since no one else can answer for another person.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58122From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Striato Nigral DegenerationIn article <9303252134.AA09923@walrus.mvhs.edu> ktodd@walrus.mvhs.edu ((Ken Todd)) writes:>I would like any information available on this rare disease.',
 'I understand>that an operation referred to as POLLIDOTOMY may be in order.',
 'Does anyone>know of a physician that performs this procedure.',
 'All responses will be>appreciated.',
 "Please respond via email to ktodd@walrus.mvhs.eduIt isn't that rare, actually.",
 "Many cases that are called Parkinson'sDisease turn out on autopsy to be SND.",
 'It should be suspected in anycase of Parkinsonism without tremor and which does not respond toL-dopa therapy.',
 'I don\'t believe pallidotomy will do much for SND.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58123From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: MORBUS MENIERE - is there a real remedy?In article <lindaeC4JGLK.FxM@netcom.com> lindae@netcom.com writes:>>My biggest resentment is the doctor who makes it seem like most>people with dizziness can be cured.',
 "That's definitely not the>case.",
 'In most cases, like I said above, it is a long, tedious>process that may or may not end up in a partial cure.',
 '>Be sure to say "chronic" dizziness, not just dizziness.',
 "Mostpatients with acute or subacute dizziness will get better.The vertiginous spells of Meniere's will also eventually goaway, however, the patient is left with a deaf ear.>To anyone suffering with vertigo, dizziness, or any variation>thereof, my best advice to you (as a fellow-sufferer) is this...>just keep searching...don't let the doctors tell you there's>nothing that can be done...do your own research...and let yourThis may have helped you, but I'm not sure it is good generaladvice.",
 'The odds that you are going to find some miracle withyour own research that is secret or hidden from general knowledgefor this or any other disease are slim.',
 'When good answers to theseproblems are found, it is usually in all the newspapers.',
 'Untilthen, spending a great deal of time and energy on the medicalproblem may divert that energy from more productive thingsin life.',
 'A limited amount should be spent to assure yourselfthat your doctor gave you the correct story, but after it becomesclear that you are dealing with a problem for which medicinehas no good solution, perhaps the best strategy is to jointhe support group and keep abreast of new findings but not tomake a career out of it.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58124From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Donating organsIn article <1993Mar25.161109.13101@sbcs.sunysb.edu> mhollowa@ic.sunysb.edu (Michael Holloway) writes:>Dr.',
 "Banks, >\tI don't know if you make a point of keeping up with liver transplant>research but you're certainly in the right place for these questions.",
 'Has >there been anything recent in "Transplant Proceedings" or somesuch, on >xenografts?',
 'How about liver section transplants from living donors?',
 ">I'm sure the Pittsburgh group has published the baboon work, but Idon't know where.",
 "In Chicago they were doing lobe transplants fromliving donors, and I'm sure they've published.",
 "I don't read thetransplant literature.",
 'I just see the liver transplant patientswhen they get into neurologic trouble (pretty frequent), so thatand the newspapers and scuttlebutt is the way I keep up with whatthey are doing.',
 'Howard Doyle works with them, and can tell you more.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58125From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Update (Help!)',
 '[was "What is This [Is it Lyme\'s?',
 ']"]In article <1993Mar24.182145.11004@equator.com> jod@equator.com (John Setel O\'Donnell) writes:>IMHO, you have Lyme disease.',
 '>I sent you in private email a summary of the treatment protocols put>forth by the Lyme Disease Foundation.',
 "I respectfully suggest that you>save yourself a great deal of suffering by contacting them for a>Lyme-knowledgeable physician referral and seek treatment at once.>You'll know in 2 weeks if you're on the right course; and the clock is>ticking on your 6 weeks if you have it.",
 '1-800-886-LYME.If these folks are who I think they are, Lyme-knowledgeable maymean a physician to whom everything that walks in the door islyme disease, and you will be treated for lyme, whether or notyou have it.',
 'Hope you have good insurance.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58126From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Use of codine in narcolepsy.In article <1993Mar26.005148.7899@aio.jsc.nasa.gov> stevel@aio.jsc.nasa.gov (Steve Lancaster) writes:>3) Is there any way around the scheduled drug mess so that he can use>just the substance that works and not one adulterated with Tylenol?',
 '>Can the MD perscribe a year long supply on one script?',
 'His doctor>basically refused to prescribe it, saying "His clinic does not prescribe>controled substances.',
 "Its is 'company' rule.!",
 '">Short of changes by the feds, there is no way.',
 'Codeine alone is verydifficult to prescribe without a lot of hassles.',
 'Tylenol #3 is thebest compromise.',
 'That way he can get refills.',
 'The amount of acetominophenhe is getting with his codeine won\'t hurt him any.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58127From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Migraines and EstrogenIn article <3FB51B6w165w@jupiter.spk.wa.us> pwageman@jupiter.spk.wa.us (Peggy Wageman) writes:>I read that hormonal fluctuations can contribute to migraines, could >taking supplemental estrogen (ERT) cause migraines?',
 'Any information I\'m not sure it is the fluctuation so much as the estrogen level.Taking Premarin can certainly cause migraines in some women.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58128From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: migraine and exerciseIn article <C4Iozx.7wx@world.std.com> rsilver@world.std.com (Richard Silver) writes:>I have two questions.',
 'Is there any obvious connection between the>flushed appearance and the migraine?',
 'Was I foolish to play through>the migraine (aside from the visual disturbance affecting my play)?>I just prefer to ignore it when possible.>The flushing is due to vascular dilation, part of a migraine attack.Some people event get puffy and swollen.',
 'As long as you are carefulyou can see well enough to avoid getting hit in the face or eye bythe ball, migraine will not hurt your health.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58129From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: new Multiple Sclerosis drug?In article <12252@news.duke.edu> adm@neuro.duke.edu (Alan Magid) writes:>Disclaimer: I speak only for myself.So just what was it you wanted to say?-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58130From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Need Info on RSDIn article <1993Mar27.004627.21258@rmtc.Central.Sun.COM> lrd@rmtc.Central.Sun.COM writes:>I just started working for a rehabilitation hospital and have seen RSD>come up as a diagnosis several times.',
 'What exactly is RSD and what is>the nature of it?',
 "If there is a FAQ on this subject, I'd really>appreciate it if someone would mail it to me.",
 'While any and allReflex sympathetic dystrophy.',
 'I\'m sure there\'s an FAQ, as I havemade at least 10 answers to questions on it in the last year or so.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58131From: km@ky3b.pgh.pa.us (Ken Mitchum)Subject: Re: tuberculosisIn article <1993Mar25.085526.914@news.wesleyan.edu>, RGINZBERG@eagle.wesleyan.edu (Ruth Ginzberg) writes:|> |> But I\'ll be damned, his "rights" to be sick & to fail to treat his disease & to|> spread it all over the place were, indeed preserved.',
 'Happy?Several years ago I tried to commit a patient who was growing Salmonella out of hisstool, blood, and an open ulcer for treatment.',
 'The idea was that the guy was awalking public health risk, and that forcing him to receive IV antibiotics fora few days was in the public interest.',
 'I will make a long story short by sayingthat the judge laughed at my idea, yelled at me for wasting his time, and letthe guy go.I found out that tuberculosis appears to be the only MEDICAL (as oppsed to psychiatric)condition that one can be committed for, and this is because very specific laws wereenacted many years ago regarding tb.',
 'I am certain these vary from state to state.Any legal experts out there to help us on this?-kmNewsgroup: sci.meddocument_id: 58132From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: amitriptylineIn article <1993Mar27.010702.8176@julian.uwo.ca> roberts@gaul.csd.uwo.ca (Eric Roberts) writes:>Could someone please tell me, what effect an overdose (900-1000mg) of>amitriptyline would have?Probably would not be fatal in an adult at that dose, but could killa child.',
 'Patient would be very somnolent, with dilated pupils, lowblood pressure.',
 'Possibly cardiac arrhythmias.',
 '-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58133From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Medication For ParkinsonsIn article <19621.3049.uupcb@factory.com> jim.zisfein@factory.com (Jim Zisfein) writes:>If you want to throw around names, Drs.',
 "Donald Calne, Terry Elizan,>and Jesse Cedarbaum don't recommend selegiline (not to mention Dr.>William Landau).>Gosh, Jesse is that famous now?",
 'He was my intern.',
 'Landau not likingit makes me like it out of spite.',
 '(Just kidding, Bill).',
 '-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58134From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Fingernail "moons"In article <733196190.AA00076@calcom.socal.com> Daniel.Prince@f129.n102.z1.calcom.socal.com (Daniel Prince) writes:>I only have lunulas on my thumbs.',
 'Is there any medical >significance to that finding?',
 "Thank you in advance for all >replies.>Try peeling the skin back at the base of your other fingernails(not too hard, now, don't want to hurt yourself).",
 "You'll findnice little lunulas there if you can peel it back enough.",
 '-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 "----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58135From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: health care reformIn article <LMC006@wrc.wrgrace.com> custer@wrc.wrgrace.com (Linda Custer) writes:>>Also, I'm not sure that physician fees at the very, very highest levels>don't have to come down.",
 "(I'm not talking about the bulk of physicians>making good but not great salaries who have mega-loans from medical school>debts.)",
 "I'd also like to see some strong ethics with teeth for physiciansI agree that some specialties have gotten way out of line.",
 'The mainproblem is the payment method for procedures rather than time distortsthe system.',
 'I hope they will fix that.',
 "But I'm afraid, as usual,the local doc is going to take the brunt.",
 "People grouse about paying$50 to see their home doctor in his office, but don't mind paying$20,000 to have brain surgery.",
 'They think their local doc is cheatingthem but worship the feet of the neurosurgeon who saved their life.What they don\'t realize is that we need more local docs and fewer-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58136From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: High ProlactinIn article <93088.112203JER4@psuvm.psu.edu> JER4@psuvm.psu.edu (John E. Rodway) writes:>Any comments on the use of the drug Parlodel for high prolactin in the blood?>It can suppress secretion of prolactin.',
 'Is useful in cases of galactorrhea.Some adenomas of the pituitary secret too much.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58137From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: ToxoplasmosisIn article <1240002@isoit109.BBN.HP.COM> sude@isoit109.BBN.HP.COM (#Susanne Denninger) writes:>>1.',
 'How dangerous is it ?',
 'From whom is it especially dangerous ?>Dangerous only to immune suppressed persons and fetuses.',
 'To them,it is extremely dangerous.',
 "Most of the rest of us have already hadit and it isn't dangerous at all.>2.",
 "How is it transmitted (I read about raw meat and cats, but I'd like to>   have more details) ?>Cat feces are the worst.",
 'Pregnant women should never touch the litter box.>3.',
 'What can be done to prevent infection ?>Cook your meat.',
 'Watch it with pets.>4.',
 "What are the symptoms and long-term effects ?>You'll have to read up on it.",
 '>5.',
 'What treatments are availble ?>There is an effective antibiotic that can keep it in check.Of course, it can\'t reverse damage already done, such as ina fetus.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58138From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: My New Diet --> IT WORKS GREAT !!!',
 '!In article <1993Mar30.030105.26772@omen.UUCP> caf@omen.UUCP (Chuck Forsberg WA7KGX) writes:>Sometime in the future diet evangelists may get off their "our>diet will work if only the obese would obey it" mode and do>useful research to allow prediction of which types of diet might>be useful to a given individual.>"Diet Evangelist".',
 'Good term.',
 'Fits Atkins to a "T".',
 '-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 "----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58139From: geb@cs.pitt.edu (Gordon Banks)Subject: Should patients read package inserts (PDR)?In article <1993Mar29.113528.930@news.wesleyan.edu> RGINZBERG@eagle.wesleyan.edu (Ruth Ginzberg) writes:>Hmmmm... here's one place where I really think the patient ought to take more>responsibility for him- or herself.",
 'There is absolutely no reason why you>can\'t ask the pharmacist filling the prescription for the "Physicians\' Package>Insert" for the medication when you pick it up at the pharmacy.',
 'Make sure to>tell the pharmacist that you want the "Physicians\' Package Insert" *NOT* theIf people are going to do this, I really wish they would tell me first.I\'d be happy to go over the insert (in the PDR) with them and explaineverything.',
 'All too many patients read the insert and panic and thenon the next visit sheepishly admit they were afraid to take the drugand we are starting over again at square one.',
 "Some of them probablydidn't even come back for followup because they didn't want to admitthey wouldn't take the drug or thought I was trying to kill them orsomething.",
 "What people don't understand about the inserts is that theyreport every adverse side effect ever reported, without substantiatingthat the drug was responsible.",
 'The insert is a legal document to sloughliability from the manufacturer to the physician if something was tohappen.',
 "If patients want to have the most useful and reliable informationon a drug they would be so much better off getting hold of one of theAMA drug evaluation books or something similar that is much more scientific.There are very few drugs that someone hasn't reported a death from taking.Patients don't realize that and don't usually appreciate the risksto themselves properly.",
 'I\'m sure Herman is going to "go ballistic",but so be it.',
 'Another problem is that probably most drugs have beenreported to cause impotence.',
 'Half the males who read that will falsely assumeit could permanently cause them to lose sexual function and so willrefuse to take any drug like that.',
 'This can be a real problem forPDR readers.',
 'There needs to be some way of providing patients withtools geared to them that allow them to get the information they need.I am involved in a research project to do that, with migraine as thedomain.',
 'It involves a computer system that will provide answers to questionsabout migraine as well as the therapy prescribed for the patient.For common illnesses, such as migraine and hypertension, this may helpquite a bit.',
 'The patient could spend as much time as needed with thecomputer and this would then not burden the physician.',
 "Clearly,physicians in large part fail to answer all the questions patients have,as is demonstrated over and over here on the net where we get askedthings that the patients should have found out from their physicianbut didn't.",
 "Why they didn't isn't always the physician's fault either.Sometimes the patients are afraid to ask.",
 'They won\'t be as afraid toask the system, we hope.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58140From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: tuberculosisIn article <206@ky3b.UUCP> km@ky3b.pgh.pa.us (Ken Mitchum) writes:>>I found out that tuberculosis appears to be the only MEDICAL (as oppsed to psychiatric)>condition that one can be committed for, and this is because very specific laws were>enacted many years ago regarding tb.',
 'I am certain these vary from state to state.I think in Illinois venereal disease (the old ones, not AIDS) was included.Syphillis was, for sure.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58141From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: tuberculosisIn article <1993Mar29.181406.11915@iscsvax.uni.edu> klier@iscsvax.uni.edu writes:>>Multiple drug resistance in TB is a relatively new phenomenon, and>one of the largest contributing factors is that people are no longer>as scared of TB as they were before antibiotics.',
 '(It was roughly as>feared as HIV is now...)>Not that new.',
 '20 years ago, we had drug addicts harboring active TBthat was resistant to everything (in Chicago).',
 'The difference nowis that such strains have become virulent.',
 'In the old days, suchTB was weak.',
 "It didn't spread to other people very easily and justinfected the one person in whom it developed (because of non-compliancewith medications).",
 'Non-compliance and development of resistant strainshas been a problem for a very long time.',
 'That is why we have like 9drugs against TB.',
 'There is always a need to develop new ones due tosuch strains.',
 'Now, however, with a virulent resistant strain, weare in more trouble, and measures to assure compliance may be necessaryeven if they entail force.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58142From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Fungus "epidemic" in CA?>In article steward@cup.portal.com (John Joseph Deltuvia) writes:>>>There was a story a few weeks ago on a network news show about some sort>>of fungus which supposedly attacks the bone structure and is somewhat>>widespread in California.',
 'Anybody hear anything about this one?>The only fungus I know of from California is Coccidiomycosis.',
 "Ihadn't heard that it attacked bone.",
 'It attacks lung and if youare especially unlucky, the central nervous system.',
 'Nothing newabout it.',
 "It's been around for years.",
 'THey call it "valleyfever", since it is found in the inland valleys, not on the coast.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58143From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: Travel outside US (Bangladesh)In article <1p7ciqINN3th@tamsun.tamu.edu> covingc@ee.tamu.edu (Just George) writes:>I will be traveling to Bangaldesh this summer, and am wondering>if there are any immunizations I should get before going.>You can probably get this information by calling your public healthdepartment in your county (in Pittsburgh, they give the shots free,as well).',
 'There are bulletins in medical libraries that giverecommendations, or you could call the infectious diseases sectionof the medicine department of your local medical school.',
 'You alsowill probably want to talk about Malaria prophylaxis.',
 'You willneed your doctor to get the prescription.',
 '-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58144From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: compartment syndrome - general information, references, etc.In article <639@cfdd50.boeing.com> lry1219@cfdd50.boeing.com (Larry Yeagley) writes:>I have an acquaintance who has been diagnosed as having blood clots and>"compartment syndrome".',
 'I searched the latest edition of the Columbia medical>encyclopedia and found nothing.',
 "Mosby's medical dictionary gives a very brief>description which suggests it's an arterial condition.",
 'Can someone point me (anCompartment syndrome occurs when swelling happens in a "compartment"bounded by fascia.',
 'The pressure rises in the compartment and bloodsupply and nerves are compromised.',
 'The treatment is to open thecompartment surgically.',
 'THe most common places for compartmentsyndromes are the forearm and calf.',
 'It is an emergency, sinceif the pressure is not relieved, stuff will die.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58145From: geb@cs.pitt.edu (Gordon Banks)Subject: Re: x-raysIn article <1993Mar30.195242.8070@leland.Stanford.EDU> iceskate@leland.Stanford.EDU ( Lin) writes:>>\tFirst question - how bad is x-ray?',
 "i've heard that it's nothing >compared to the amount of time spent under the sun and i've also heard that it>is very harmful.",
 'second question - is there anyway out of this yearly test for>me?The yearly chest x-ray provides a minute amount of radiation.',
 'It isa drop in the bucket as far as increased risk is concerned.',
 'Who cantell you whether you can get out of it or not?',
 'No one here controlsthat.',
 'It may well be a matter of the law, in which case, write yourlegislator, but don\'t hold your breath.-- ----------------------------------------------------------------------------Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, andgeb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 "----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58146From: wright@duca.hi.com (David Wright)Subject: Re: Name of MD's eyepiece?In article <19387@pitt.UUCP> geb@cs.pitt.edu (Gordon Banks) writes:>In article <C4IHM2.Gs9@watson.ibm.com> clarke@watson.ibm.com (Ed Clarke) writes:>>|> |It's not an eyepiece.",
 'It is called a head mirror.',
 'All doctors never>>>>A speculum?>>The speculum is the little cone that fits on the end of the otoscope.>There are also vaginal specula that females and gynecologists are>all too familiar with.In fairness, we should note that if you look up "speculum" in thedictionary (which I did when this question first surfaced), the firstdefinition is "a mirror or polished metal plate used as a reflector inoptical instruments.',
 '"Which doesn\'t mean the name fits in this context, but it\'s not as faroff as you might think.',
 "-- David Wright, Hitachi Computer Products (America), Inc.  Waltham, MA     wright@hicomb.hi.com  ::  These are my opinions, not necessarily      Hitachi's, though they are the opinions of all right-thinking peopleNewsgroup: sci.meddocument_id: 58147From: ritley@uimrl7.mrl.uiuc.edu ()Subject: MYSTERY ILLNESS WITH SPOTSI attended high school in the San Jose, California area in the early 1980's,and I remember a (smallish) outbreak of a strange illness, in whichpeople developed measles-like spots on their bodies.",
 "This conditionseemed to last only a few days, and I don't recall anyone reporting any othersymptoms.",
 "I seem to recall reading somewhere that this was believed to havebeen viral in nature, but I don't know for sure.However, I have been curious since then about this.Anyone have any ideas about what this might have been?Newsgroup: sci.meddocument_id: 58148From: walkup@cs.washington.edu (Elizabeth Walkup)Subject: Re: Menangitis questionIn article <19439@pitt.UUCP> geb@cs.pitt.edu (Gordon Banks) writes:>... the neiseria meningococcus is one of the most common>forms of meningitis.",
 "It's the one that sometimes sweeps>schools or boot camp.",
 'It is contagious and kills by attacking>the covering of the brain, causing the blood vessels to thrombose>and the brain to swell up.>>\t...>>It can live in the throat of carriers.',
 "Don't worry, you won't get >it from them, especially if they took the medication.Assuming one has been cultured as having a throat laden withneiseria meningococcus and given (and taken) a course of ERYC without the culture becoming negative, should one worry aboutbeing a carrier?",
 '-- Elizabeth   walkup@cs.washington.eduNewsgroup: sci.meddocument_id: 58149From: ns14@crux3.cit.cornell.edu (Nathan Otto Siemers)Subject: Re: Analgesics with Diuretics>>>>> On Tue, 6 Apr 1993 03:28:57 GMT, dyer@spdcc.com (Steve Dyer) said: | In article <ofk=lve00WB2AvUktO@andrew.cmu.edu> Lawrence Curcio <lc2b+@andrew.cmu.edu> writes:|>I sometimes see OTC preparations for muscle aches/back aches that|>combine aspirin with a diuretic.',
 '| You certainly do not see OTC preparations advertised as such.',
 '| The only such ridiculous concoctions are nostrums for premenstrual | syndrome, ostensibly to treat headache and "bloating" simultaneously.',
 "| They're worthless.|>The idea seems to be to reduce|>inflammation by getting rid of fluid.",
 'Does this actually work?',
 "| That's not the idea, and no, they don't work.",
 'I *believe* there is a known synergism between certainanalgesics and caffiene.',
 'For treating pain, not inflammation.',
 "Now that I am an ibuprofen convert I haven't taken it for sometime, but excedrin really works!",
 '(grin)Nathan | --  | Steve Dyer | dyer@ursa-major.spdcc.com aka {ima,harvard,rayssd,linus,m2c}!spdcc!dyer--  ......:bb|`:||,\tnathan@chemres.tn.cornell.edu    ...  .||:   `||bbbbb   ..   ,:`     .``"P$$$      .||.',
 ',  .',
 '`  .`P$Newsgroup: sci.meddocument_id: 58150From: eb3@world.std.com (Edwin Barkdoll)Subject: Re: BlindsightIn article <19382@pitt.UUCP> geb@cs.pitt.edu (Gordon Banks) writes:>In article <werner-240393161954@tol7mac15.soe.berkeley.edu> werner@soe.berkeley.edu (John Werner) writes:>>In article <19213@pitt.UUCP>, geb@cs.pitt.edu (Gordon Banks) wrote:>>> >>> Explain.',
 "I thought there were 3 types of cones, equivalent to RGB.>>>>You're basically right, but I think there are just 2 types.",
 'One is>>sensitive to red and green, and the other is sensitive to blue and yellow.',
 '>>This is why the two most common kinds of color-blindness are red-green and>>blue-yellow.>>>>Yes, I remember that now.',
 'Well, in that case, the cones are indeed>color sensitive, contrary to what the original respondent had claimed.',
 'I\'m not sure who the "original respondent" was but toreiterate cones respond to particular portions of the spectrum, justas _rods_ respond to certain parts of the visible spectrum (bluegreenin our case, reddish in certain amphibia), just as the hoseshoe crab_Limulus polyphemus_ photoreceptors respond to a certain portion ofthe spectrum etc.',
 'It is a common misconception to confound wavelengthspecificity with being color sensitive, however the two are notsynonymous.',
 'So in sum and to beat a dead horse:\t(1) When the outputs of a cone are matched for number ofabsorbed photons _irrespective_ of the absorbed photons wavelength,the cone outputs are _indistinguishable_.',
 '(2) Cones are simply detectors with different spectralsensitivities and are not any more "color sensitive" than are rods,ommatidia or other photoreceptors.',
 '(3) Color vision arises because outputs of receptors whichsample different parts of the spectrum (cones in this case) are"processed centrally".',
 '(The handwave is intentional)\tI\'ve worked and published research on rods and cones for over10 years so the adherence to the belief that cones can "detect color"is frustrating.',
 "But don't take my word for it.",
 "I'm reposting a fewexcellent articles together with two rather good but oldish colorvision texts.The texts:Robert Boynton (1979) _Human Color Vision_ Holt, Rhiehart and WinstonLeo M. Hurvich (1981) _Color Vision_, Sinauer Associates.The original articles:Baylor and Hodgkin (1973) Detection and resolution of visual stimuli byturtle phoreceptors, _J.",
 'Physiol._ 234 pp163-198.Baylor Lamb and Yau (1978) Reponses of retinal rods to single photons._J.',
 'Physiol._ 288 pp613-634.Schnapf et al.',
 '(1990) Visual transduction in cones of the monkey_Macaca fascicularis_.',
 'J. Physiol.',
 '427 pp681-713.-- Edwin Barkdollbarkdoll@lepomis.psych.upenn.edueb3@world.std.com-- Edwin Barkdolleb3@world.std.comNewsgroup: sci.meddocument_id: 58151From: doyle+@pitt.edu (Howard R Doyle)Subject: Re: Donating organsIn article <19393@pitt.UUCP> geb@cs.pitt.edu (Gordon Banks) writes:>In article <1993Mar25.161109.13101@sbcs.sunysb.edu> mhollowa@ic.sunysb.edu (Michael Holloway) writes:>>>there been anything recent in "Transplant Proceedings" or somesuch, on >>xenografts?',
 'How about liver section transplants from living donors?',
 ">>>>I'm sure the Pittsburgh group has published the baboon work, but I>don't know where.",
 "In Chicago they were doing lobe transplants from>living donors, and I'm sure they've published.",
 "The case report of the first xenotransplant was published in Lancet 1993; 341:65-71.I can send you a reprint if you are interested.There was  another paper, sort of a tour of the horizon, written by Starzl andpublished in the Resident's Edition of the Annals of Surgery (vol 216, October 1992).It's in the Surgical Resident's Newsletter section, so you won't find it in the regularissue of the Annals.",
 "I don't have any reprints of that one.A paper has been accepted for publication by Immunology Today, though I'm not surewhen it's coming out, describing our experience with the two xenografts done to date.As for segmental liver transplants from living related donors I must confess to a totalignorance of that literature.",
 'We are philosophically opposed to those, and I don\'t keep up with that particular field.=====================================================Howard Doyledoyle+@pitt.eduNewsgroup: sci.meddocument_id: 58152From: mcelwre@cnsvax.uwec.eduSubject: NATURAL ANTI-cancer/AIDS Remedies     The biggest reason why the cost of medical care is so EXTREMELY high andincreasing is that NATURAL methods of treatment and even diagnosis are stillbeing SYSTEMATICALLY IGNORED and SUPPRESSED by the MONEY-GRUBBING and POWER-MONGERING "medical" establishment.',
 'Some examples of very low cost NATURAL ANTI-cancer Remedies are listed inthe following article:                          NATURAL ANTI-CANCER REMEDIES                                 A 3RD OPINION                         ( Some of these Remedies also work against AIDS. )',
 'DISCLAIMER: This list was compiled from unorthodox sources           that have shown themselves to be reliable.',
 'The compiler of           this list is NOT a doctor of any kind, but is exercising his           First Amendment Constitutional RIGHT of FREE SPEECH on the           subjects of his choice.',
 '( MOST of these Remedies can be found in ANY Grocery Store.',
 'MOST of the rest of them can be found in ANY Health Food           Store.',
 'What is important is HOW they are used, and what           else is EXCLUDED DURING their use. )',
 '(1) THE 7-DAY FAST.',
 '1st day: Eat as much fresh fruit as you want, one kind           at a time, preferably grapes.',
 '2nd day: Eat all the vegetables you want, at least half           raw, including GARLIC; also, whole kernel corn to help scrape           clean the intestinal linings.',
 '3rd day: Drink all the fresh fruit and vegetable juice           you want.',
 'Preferably start with 16 to 32 ounces of prune           juice WITH PULP, followed by a gallon of pure (NOT from           concentrate) apple juice, then grape juice.',
 '(Stay close to           your home bathroom.)',
 '4th day: Eat all the UN-salted nuts (NO peanuts) and           dried fruit you want, preferably raisins and almonds (ALMONDS           CONTAIN LAETRILE.).',
 '5th day: ONE GALLON OF LEMONADE.',
 'Squeeze the juice from           two lemons into a gallon of water (preferably distilled), and           add 2 to 4 tablespoons of locally-made honey, (NO sugar).',
 'Drink one glass per hour.',
 '[EVERYone, including healthy people, should do this one day           every week, preceded by a large glass of prune juice WITH           PULP.]',
 '6th day: Same as 5th day.',
 '7th day: Same as 6th day.',
 'All 7 days, eat ONLY the foods listed above for each           day, along with your usual vitamin and mineral supplements,           plus as much DISTILLED WATER as you want.',
 '(2) THE GRAPE DIET.',
 'Eat 2 to 3 ounces of fresh grapes every 2 hours, 8 AM to           8 PM, every day for six days.',
 'Eat NOTHING else during the           six days, but drink as much DISTILLED WATER as you want.',
 '(3) APPLE CIDER VINEGAR.',
 'Mix a teaspoon of pure apple cider vinegar (NOT apple           cider "flavored" vinegar.',
 'Regular vinegar is HARMFUL.)',
 'in a           glass of water (preferably distilled) and drink all of it.',
 'Do this 3 or 4 times per day, for 3 weeks; then stop for a           week.',
 'Repeat if desired.',
 'Do this along with a normal           healthy diet of natural foods.',
 'This remedy is especially           effective against those types of cancer that resemble a           FUNGUS, as well as against other kinds of fungus infections.',
 '(4) THE SEA-SALT & SODA BATH.',
 '[Please keep an OPEN MIND.]',
 'Fill a bathtub with moderately warm water so the level           comes up almost to the overflow drain when you get in.',
 "Immerse yourself in it for a minute, and then completely           dissolve in the bath water 1 pound of SUN-evaporated SEA-salt           (regular salt won't work.)",
 'and 1 pound of fresh baking-soda.',
 'Soak in this bath for 10 to 20 minutes, while exercising           your fingers, toes, and limbs, turning sideways and onto your           stomach, dunking your head, sitting up and laying back down,           chomping your teeth together, etc..',
 'Among other things, the SEA-salt & Soda Bath neutralizes           the accumulated effects of X-rays, etc., as described in the           book "Born To Be Magnetic, Vol.',
 '2", by Frances Nixon, 1973.',
 'PRECAUTIONS: Only the ONE person using each bath should           prepare it and drain it.',
 'For at least 30 minutes after taking the bath, stay away           from, and even out of sight of, other people.',
 "(Your greatly           expanded Aura energy-field during that time could disrupt           other people's fields.)",
 'Two hours after the bath, eat at           least 8 ounces of yogurt containing ACTIVE Yogurt Cultures.',
 '(The bath may kill FRIENDLY bacteria also.)',
 'Better yet, take           a 2-Billion-bacteria "Acidophilus" capsule, which is also an           EXCELLENT DAILY REMEDY AGAINST THE EFFECTS OF "A.I.D.S."',
 '(because it kills all kinds of harmful bacteria in the           digestive tract, taking a big load off the remaining immune           system).',
 '[Because this external bath can kill IN-ternal           bacteria, it may also be a CURE for "Lyme disease".]',
 'Do NOT take this bath within a few hundred miles of a thunder           storm, within 3 days of a full moon, nor during "Major" or           "Minor Periods" as listed in the "Solunar Tables" published           bimonthly in "Field & Stream" Magazine, (because of the           measurable disruptive ambient environmental energy-fields           present at those times).',
 'Do NOT take this bath more than four times per year.',
 '(5) MISCELLANEOUS NATURAL ANTI-CANCER REMEDIES:                       For skin cancer, apply STABILIZED Aloe Vera Jel to the                affected skin twice daily, and take 2 to 4 tablespoons                per day of STABILIZED Aloe Vera Juice internally, for                about 2 months.',
 'D.M.S.O.',
 '(Dimethyl Sulfoxide) causes cancer cells to                perform NORMAL cell functions.',
 'ALMONDS (UN-blanched, UN-roasted) CONTAIN LAETRILE.',
 'To help prevent cancer, eat several almonds every day.',
 'To help cure cancer, eat several OUNCES of almonds per                day.',
 '[NEVER take large concentrated doses of Laetrile orally.',
 'IT WILL KILL YOU!',
 'Take it INTRAVENOUSLY ONLY.',
 '(Cancer                cells contain a certain enzyme which converts Laetrile                into cyanide, which then kills the cell.',
 'This enzyme is                ALSO present in the digestive system.)]',
 'ANTI-OXIDANTS are FREE-RADICAL SCAVENGERS, and include                Vitamin E, Selenium (200 mcg.',
 'per day is safe for most                people.',
 '), Chromium (up to 100 mcg.',
 'per day), Vitamin A                (25,000 IU per day is safe for most people.',
 '), Superoxide                Dismutase (up to 4,000,000 Units per day), Vitamin C (up                to 3000 mg. per day), and BHT (Butylated Hydroxy-               toluene), [1 to 4 capsules of BHT every night at bedtime                will also MAKE ONE IMMUNE AGAINST HERPES (BOTH types),                suppress herpes symptoms if one already has herpes,                prevent spreading herpes to other people, but will not                cure herpes.',
 'BHT MIGHT ALSO DO THESE THINGS AGAINST                "A.I.D.S.',
 '", which is really a form of cancer similar to                leukemia.]',
 '(See the book "Life Extension", by Durk                Pearson and Sandy Shaw.)',
 'HYDROGEN-PEROXIDE.',
 'Dilute twelve(12) drops of 3%                hydrogen-peroxide in a glass of pure water (preferably                DISTILLED) and drink it.',
 'Do this once or twice per day,                hours before or after eating or drinking anything else.',
 'Apply 3% hydrogen-peroxide directly to skin cancers                several times per day.',
 'Use hydrogen-peroxide ONLY if you are taking a good                daily dose of some of the various anti-oxidants                described above.',
 'VITAMIN & MINERAL SUPPLEMENTS are more effective, and                much less expensive, when COMBINED together in MEGA                doses into SINGLE tablets made from NATURAL sources.',
 'Cancer cells can NOT live in a strong (100,000 Maxwell)                NORTH MAGNETIC FIELD, especially if it is pulsating on                and off.',
 '[A strong south magnetic field is an                aphrodisiac.]',
 'In my opinion, ALL types of ionizing-               radiation treatments for cancer should be REPLACED with                daily 30-minute doses of pulsating 100,000-Maxwell NORTH                magnetic fields.',
 'Properly made and operated RADIONICS/PSIONICS MACHINES                can both diagnose and cure all forms of cancer, as well                as most other medical problems.',
 'Some Radionics/Psionics                Machines can even take cross-sectional X-ray-like photos                of cancer tumors, etc., with-OUT X-rays!',
 'INTERFERON tablets.',
 'TAHEEBO TEA, (Lapacho).',
 'HOMEOPATHY can cure cancer, and many other medical                problems (even drug addiction!).',
 '50 mg. per day of CHELATED ZINC can help prevent or cure                prostate trouble.',
 'This list is NOT exhaustive.',
 'The above NATURAL Remedies can CURE both diagnosed AND UN-          DIAGNOSED cancers, as well as PREVENT them, and also prevent           and cure many other medical problems including heart-          diseases.',
 'They are NOT too simple and inexpensive to work           effectively.',
 "Besides acting on a person biologically and chemically, these           remedies, especially The 7-Day Fast and The Grape Diet, send           a strong message to one's subconscious mind, PROGRAMMING it           to CURE the cancer.",
 'In my opinion, if a person finds out that s/he has cancer,           then s/he should promptly try at least the first 4 remedies           described above, in sequence (starting with The 7-Day Fast),           BEFORE resorting to the UN-natural and expensive mutilations           and agonies [POISON, BURN, and MUTILATE!]',
 'of orthodox cancer           treatment [organi$ed-CRIME!].',
 'DISCLAIMER: This list was compiled from unorthodox sources           that have shown themselves to be reliable.',
 'The compiler of           this list is NOT a doctor of any kind, but is exercising his           First Amendment Constitutional RIGHT of FREE SPEECH on the           subjects of his choice.',
 'FOR MORE INFORMATION, contact Cancer Control Society, 2043 N.           Berendo St., Los Angeles, CA  90027, and/or other organiza-          tions listed in the "Alternative Medicine" and "Holistic           Medicine" portions of the "Health and Medical Organizations"           Section (Section 8) of the latest edition of the "Encyclope-          dia of Associations" reference book in your local public or           university library.',
 'UN-altered REPRODUCTION and DISSEMINATION of this           IMPORTANT Information is ENCOURAGED.',
 'Robert E. McElwaine         Newsgroup: sci.meddocument_id: 58153From: bhjelle@carina.unm.edu ()Subject: Re: Fungus "epidemic" in CA?In article <19435@pitt.UUCP> geb@cs.pitt.edu (Gordon Banks) writes:>>In article steward@cup.portal.com (John Joseph Deltuvia) writes:>>>>>There was a story a few weeks ago on a network news show about some sort>>>of fungus which supposedly attacks the bone structure and is somewhat>>>widespread in California.',
 'Anybody hear anything about this one?>>>>The only fungus I know of from California is Coccidiomycosis.',
 "I>hadn't heard that it attacked bone.",
 'It attacks lung and if you>are especially unlucky, the central nervous system.',
 'Nothing new>about it.',
 "It's been around for years.",
 'THey call it "valley>fever", since it is found in the inland valleys, not on the coast.There is a mini-epidemic of Coccidiodes that is occurring in,I believe, the Owen\'s Valley/ Bishop area east of the Sierras.I don\'t believe there has been any great insight into theincreased incidence in that area.',
 'There is a low-levelof endemic infection in that region.',
 'Many people withevidence of past exposure to the organism did not haveserious disease.Brian>Newsgroup: sci.meddocument_id: 58154From: bshelley@ucs.indiana.edu ()Subject: Xanax...please provide infoI am currently doing a group research project on the drug Xanax.',
 'I wouldbe exponentially gracious to receive any and all information you couldprovideme regarding its usage, history, mechanism of reaction, side effects, andother pertinent information.',
 "I don't care how long or how short your response is.Thanks in advance!Brent E. ShelleyNewsgroup: sci.meddocument_id: 58155From: lindae@netcom.comSubject: Re: MORBUS MENIERE - is there a real remedy?In article <19392@pitt.UUCP> geb@cs.pitt.edu (Gordon Banks) writes:>In article <lindaeC4JGLK.FxM@netcom.com> lindae@netcom.com writes:>>>>>My biggest resentment is the doctor who makes it seem like most>>people with dizziness can be cured.",
 "That's definitely not the>>case.",
 'In most cases, like I said above, it is a long, tedious>>process that may or may not end up in a partial cure.',
 '>>>>Be sure to say "chronic" dizziness, not just dizziness.',
 "Most>patients with acute or subacute dizziness will get better.>The vertiginous spells of Meniere's will also eventually go>away, however, the patient is left with a deaf ear.All true.",
 "And all good points.>>>To anyone suffering with vertigo, dizziness, or any variation>>thereof, my best advice to you (as a fellow-sufferer) is this...>>just keep searching...don't let the doctors tell you there's>>nothing that can be done...do your own research...and let your>>This may have helped you, but I'm not sure it is good general>advice.",
 'The odds that you are going to find some miracle with>your own research that is secret or hidden from general knowledge>for this or any other disease are slim.',
 'When good answers to these>then, spending a great deal of time and energy on the medical>problem may divert that energy from more productive things>in life.',
 'A limited amount should be spent to assure yourself>that your doctor gave you the correct story, but after it becomes>clear that you are dealing with a problem for which medicine>has no good solution, perhaps the best strategy is to join>the support group and keep abreast of new findings but not to>make a career out of it.Well, making a career out of it is a bit strong.',
 'I still believethat doing your own research is very, very necessary.',
 "I wouldnot have progressed as much as I have today, unless I had spentthe many hours in Stanford's Med Library as I have done.And 5 years ago, it was clear that there was no medicine that would help me.",
 'So should I have stopped searching.',
 "Thankgoodness I didn't.",
 'Now I found that there is indeed medicinethat helps me.',
 "I think that what you've said is kind of idealistic.",
 'That youwould go to one doctor, get a diagnosis, maybe get a secondopinion, and then move on with your life.Just as an example... having seen 6 of the top specialists in this field in the country, I have received 6 different diagnoses.These are the top names, the ones that people come to from all overthe country.',
 'I have HAD to sort all of this out myself.',
 'Goingto a support group (and in fact, HEADING that support group) was helpful for a while, but after a point, I found it veryunproductive.',
 "It was much more productive to do library research,make phone calls and put together the pieces of the puzzle myself.A recent movie, Lorenzo's Oil, offers a perfect example of whatI'm talking about.",
 "If you haven't seen it, you should.",
 "It's nota put down of doctor's and neither is what I'm saying.",
 'Doctors areonly human and can only do so much.',
 "But there are those of usout here who are intelligent and able to sometimes find a missingpiece of the puzzle that might have otherwise gone unnoticed.I guess I'm biased because dizziness is one of those weird thingsthat is still so unknown.",
 'If I had a broken arm, or a weak heart,or failing kidneys, I might not have the same opinion.',
 "That's because those things are much more tangible and have much more concise definitions and treatments.",
 'With dizziness, you just have todecide to live with it or decide to live with it while trying tofind your way out of it.I have chosen the latter.Lindalindae@netcom.netcom.com>>-- >---------------------------------------------------------------------------->Gordon Banks  N3JXP      | "Skepticism is the chastity of the intellect, and>geb@cadre.dsl.pitt.edu   |  it is shameful to surrender it too soon."',
 '>----------------------------------------------------------------------------Newsgroup: sci.meddocument_id: 58568From: Dan Wallach <dwallach@cs.berkeley.edu>Subject: FAQ: Typing Injuries (3/4): Keyboard Alternatives [monthly posting]Archive-name: typing-injury-faq/keyboardsVersion: $Revision: 5.11 $ $Date: 1993/04/13 01:20:43 $-------------------------------------------------------------------------------      Answers To Frequently Asked Questions about Keyboard Alternatives-------------------------------------------------------------------------------The Alternative Keyboard FAQCopyright 1992,1993 By Dan Wallach <dwallach@cs.berkeley.edu>The opinions in here are my own, unless otherwise mentioned, and do notrepresent the opinions of any organization or vendor.',
 '[Current distribution: sci.med.occupational, sci.med, comp.human-factors, {news,sci,comp}.answers, and e-mail to c+health@iubvm.ucs.indiana.edu, sorehand@vm.ucsf.edu, and cstg-L@vtvm1.cc.vt.edu]Changes since previously distributed versions are marked with change        ||bars to the right of the text, as is this paragraph.',
 '||Information in this FAQ has been pieced together from phone conversations,e-mail, and product literature.',
 "While I hope it's useful, the informationin here is neither comprehensive nor error free.",
 "If you find somethingwrong or missing, please mail me, and I'll update my list.",
 "Thanks.All phone numbers, unless otherwise mentioned, are U.S.A. phone numbers.All monetary figures, unless otherwise mentioned, are U.S.A. dollars.Products covered in this FAQ:    Using a PC's keyboard on your workstation / compatibility issues    Apple Computer, Inc.    Key Tronic FlexPro    Dragon Systems    The Bat    DataHand    Comfort Keyboard System    Kinesis Ergonomic Keyboard    Maltron    The Tony!",
 "Ergonomic KeySystem    The Vertical    The MIKey    The Wave    The Minimal Motion Computer Access System    Twiddler    Half-QWERTY    Microwriter    Braille 'n Speak    Octima    AccuKeyGIF pictures of many of these products are available via anonymous ftpfrom soda.berkeley.edu:pub/typing-injury.",
 '(128.32.149.19)  I highlyrecommend getting the pictures.',
 "They tell much more than I can fitinto this file.If you can't ftp, send me mail, and I'll uuencode and mail them to you(they're pretty big...)==============Using a PC's keyboard on your workstation / compatibility issues    Mini outline:        1.",
 'Spoofing a keyboard over the serial port        2.',
 'X terminals        3.',
 'NeXT        4.',
 'Silicon Graphics        5.',
 'IBM RS/6000\t6.',
 'Other stuff    1.',
 "Spoofing a keyboard over the serial port\tIf you've got a proprietary computer which uses its own keyboard\t(Sun, HP, DEC, etc.)",
 "then you're going to have a hard time finding\ta vendor to sell you a compatible keyboard.",
 "If your workstation\truns the X window system, you're in luck.",
 'You can buy a cheap used\tPC, hook your expensive keyboard up to it, and run a serial cable\tto your workstation.',
 'Then, run a program on the workstation to read\tthe serial port and generate fake X keyboard events.',
 "The two main programs I've found to do this are KT and A2X.",
 'a2x is a sophisticated program, capable of controlling the mouse, and\teven moving among widgets on the screen.',
 ...]
In [113]:
## nltk word tokenize
now = time.time()
x1 = Parallel(n_jobs = 3)(delayed(word_tokenize)(sent) for sent in sentences)
print('NLTK took %s seconds for word tokenize with joblib'%(time.time()-now))
NLTK took 7.841717958450317 seconds for word tokenize with joblib
In [123]:
## spacy word tokenize
now = time.time()
for doc in sp.pipe(sentences, batch_size = 5000, n_threads = 3):
    [token.text for token in doc]

print('Spacy took %s seconds for word tokenize with n_thread'%(time.time() - now))
Spacy took 108.841796875 seconds for word tokenize with n_thread
In [124]:
## stanford word
def stf_word(text):
    doc = nlp_stf(text)
    words_by_sentence = [[token.text for token in sentence.tokens] for sentence in doc.sentences]
    word_stf = reduce(lambda lst1, lst2: lst1+lst2, words_by_sentence)
    return word_stf

now = time.time()
x = Parallel(n_jobs=3)(delayed(stf_word)(sent) for sent in sentences)
print('Stanfordnlp took %s seconds for word tokenize with joblib'%(time.time()-now))
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-124-50a5d285bbcd> in <module>()
      7 
      8 now = time.time()
----> 9 x = Parallel(n_jobs=3)(delayed(stf_word)(sent) for sent in sentences)
     10 print('Stanfordnlp took %s seconds for word tokenize with joblib'%(time.time()-now))

/anaconda/lib/python3.6/site-packages/joblib/parallel.py in __call__(self, iterable)
   1014 
   1015             with self._backend.retrieval_context():
-> 1016                 self.retrieve()
   1017             # Make sure that we get a last message telling us we are done
   1018             elapsed_time = time.time() - self._start_time

/anaconda/lib/python3.6/site-packages/joblib/parallel.py in retrieve(self)
    906             try:
    907                 if getattr(self._backend, 'supports_timeout', False):
--> 908                     self._output.extend(job.get(timeout=self.timeout))
    909                 else:
    910                     self._output.extend(job.get())

/anaconda/lib/python3.6/site-packages/joblib/_parallel_backends.py in wrap_future_result(future, timeout)
    552         AsyncResults.get from multiprocessing."""
    553         try:
--> 554             return future.result(timeout=timeout)
    555         except LokyTimeoutError:
    556             raise TimeoutError()

/anaconda/lib/python3.6/concurrent/futures/_base.py in result(self, timeout)
    425                 return self.__get_result()
    426 
--> 427             self._condition.wait(timeout)
    428 
    429             if self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]:

/anaconda/lib/python3.6/threading.py in wait(self, timeout)
    293         try:    # restore state no matter what (e.g., KeyboardInterrupt)
    294             if timeout is None:
--> 295                 waiter.acquire()
    296                 gotit = True
    297             else:

KeyboardInterrupt: 

Problem 2

In [125]:
import re
In [128]:
## match all emails in text and compile a set of all found email address
emails = []
emails_reg = re.findall('[a-zA-Z0-9_.]+@[a-zA-Z0-9.]+', text)
emails.extend(emails_reg)
emails = list(set(emails))
In [129]:
## find all dates in text (e.g. 04/12/2019, April 20th 2019, etc)
dates = []
## mm/dd/yy
reg1 = re.findall(r'[0-9]{2}/[0-9]{2}/[0-9]{2}', text)
## dd Month yyyy
reg2 = re.findall(r"[\d]{1,2}[th]? [ADFJMNOS]\w* [\d]{4}", text)
## Month dd yyyy
reg3 = re.findall(r"[ADFJMNOS]\w* [\d]{1,2}[\,]? [\d]{4}", text)
## yyyy/mm/dd
reg4 = re.findall(r"[\d]{4}/\w*/[\d]{1,2}", text)
## yyyyMonthdd
reg5 = re.findall(r"[\d]{4}[ADFJMNOS]\w*[\d]{1,2}", text)

dates.extend(reg1)
dates.extend(reg2)
dates.extend(reg3)
dates.extend(reg4)
dates.extend(reg5)

dates = list(set(dates))
In [134]:
dates
Out[134]:
['1993Mar30',
 'March 19, 1993',
 '1993Apr28',
 '31 Decembre 1992',
 '1993Mar25',
 'March 6, 1993',
 '1993Apr8',
 '04/03/93',
 '1993Apr27',
 '1993Apr23',
 '1993Apr5',
 '15 Apr 1993',
 'February 7, 1993',
 '04/12/93',
 '27 Apr 1993',
 '1993Apr22',
 '31 December 1992',
 '04/07/93',
 '04/15/93',
 'March 4, 1993',
 '1993Mar26',
 '1993Apr20',
 '1993Apr03',
 '1993Mar28',
 'March 31, 1990',
 '1993Apr25',
 '04/20/93',
 'January 1, 1989',
 '04/10/93',
 '17 Apr 1993',
 'February 16, 1993',
 '1993Mar29',
 'April 13, 1993',
 '0738SFB2763',
 '6 Apr 1993',
 'November 3, 1992',
 '04/05/93',
 '1993Apr19',
 'June 29, 1993',
 '23 April 1993',
 'May 6, 1853',
 '04/02/93',
 'April 22, 1993',
 '1993Apr15',
 'April 15, 1993',
 '1993Apr26',
 '1993Apr9',
 'April 23, 1993',
 'Apr 23, 1993',
 'December 26, 1992',
 'January 31, 1993',
 '1993/04/13',
 '2203JER4',
 '1993Apr14',
 '1993Apr13',
 '1993Apr17',
 '1993Apr7',
 'April 21, 1993',
 'April 19, 1993',
 'April 14, 1993',
 'July 7, 1993',
 '93/04/13',
 'December 28, 1991',
 '1993Apr24',
 'March 30, 1993',
 'December 1, 1992',
 '04/21/93',
 '19 Apr 1993',
 '20 Apr 1993',
 'June 30, 1992',
 '1993Apr12',
 '15 January 1993',
 '1993Apr11',
 '1993Apr16',
 '16 April 1993',
 'July 9, 1993',
 'April 20, 1993',
 '1993Apr30',
 'February 28, 1993',
 '1993Mar24',
 '1993Apr21',
 'January 1, 1991',
 'April 25, 1993',
 'December 11, 1992',
 'October 15, 1976',
 '1993Apr18',
 'January 1, 1978',
 'Apr 16, 1993',
 'March 29, 1993',
 '1993Apr29',
 '04/14/93',
 'November 19, 1992',
 '04/22/93',
 '23 Apr 1993',
 'November 15, 1992',
 'January 13, 1993',
 'November 20, 1992',
 'December 31, 1992',
 '04/01/93',
 '1993Mar27',
 'July 8, 1993',
 '1993Apr3',
 '1993Apr6',
 'April 12, 1993',
 '04/08/93']
In [ ]: